diff --git a/.classpath b/.classpath index 2514002..d3fbb4c 100644 --- a/.classpath +++ b/.classpath @@ -2,7 +2,7 @@ - + diff --git a/.settings/org.eclipse.jdt.core.prefs b/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 0000000..fb1077b --- /dev/null +++ b/.settings/org.eclipse.jdt.core.prefs @@ -0,0 +1,8 @@ +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 +org.eclipse.jdt.core.compiler.compliance=1.8 +org.eclipse.jdt.core.compiler.problem.assertIdentifier=error +org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.release=enabled +org.eclipse.jdt.core.compiler.source=1.8 diff --git a/build/prod/classes/overview.md b/build/prod/classes/overview.md new file mode 100644 index 0000000..b0996ca --- /dev/null +++ b/build/prod/classes/overview.md @@ -0,0 +1,250 @@ +# jCleanCim Overview + +jCleanCim is an open source tool for validation and documentation generation from Enterprise Architect CIM and IEC61850 UML models. + +Quick intro to jCleanCim +======================== + +**Note: The content below is hard to keep up to date. Please refer to the jCleanCim presentation, available in the documentation directory.** + +This is jCleanCim open source application, initially developed to perform validation of CIM EA model file, then extended to do clean-up of left-overs from Rose and to show some basic statistics (thus addressing combined CIM issue #1103). Finally, it has been extended to allow for IEC (and custom) document generation, mainly driven by special needs of generating IEC 61850-7-3 and IEC 61850-7-4 from UML model developed by ABB and handed over to IEC TC57 WG19 in October 2009. On the fly, the support for CIM-based IEC documents (IEC 61970-301 and IEC 61968-11) has been added - after all, this was an easy part :-). + +Since February 2010, jCleanCim has been used by CIM editors of IEC TC57 WG13, WG14 and recently WG16 to generate IEC 61970-301, IEC 61968-11 and IEC 62325-301 documents, respectively, as well as for the documentation describing CIM extensions developed in the European FP7 project [ADDRESS](http://www.addressfp7.org/). + +Since September 2010, it has also been used by 61850 UML taskforce of WG10 to validate IEC 61850 UML and to automatically generate IEC 61850-7-4 and IEC 61850-7-3. As other IEC working groups start moving their IEC 61850-based specifications to UML as master model, jCleanCim will allow for automatic document generation for these, as well. Furthermore, since 01v06, the tool supports serialisation of the UML model of IEC 61850 to an XML format, that would be suitable for publishing on the web, and in support of the WebAccess taskforce of WG10. As a by-product, the same feature is available for CIM UML model. + +NOTE: From this point on, the documentation is likely obsolete; we try to maintain up to date the jCleanCim presentation, so have a look there. + +Main functions +-------------- + +jCleanCim has four main functions: + +1. validation of a UML model provided in an .eap file, bulk or per IEC TC57 WG, +2. calculation and printing of statistics of the UML model, +3. generation of MS Word documentation from the UML model, +4. generation of XML documentation from the UML model. + +In addition to support for the standard IEC TC57 CIM and custom CIM extensions compliant with CIM desing rules, jCleanCim supports the same functionality for the UML model of IEC 61850 being developed by the 61850 UML taskforce. Having both families of standards in UML is expected to facilitate one day harmonisation efforts between CIM and 61850, lead by IEC TC57 WG19. Since the IEC 61850 _UML model_ is still not a standard, in the following we refer to CIM only, although the descriptions apply to the UML model of IEC 61850 as well. + +Intended users +-------------- + +(TODO: needs update) + +Intended users are primarily those who edit CIM UML and publish its documentation, thus: + +* official IEC CIM model editors, responsible for maintaining the CIM information model (UML) and for generating official IEC documents, and, +* those who define custom non-standard CIM extensions who want to ensure they have followed standard CIM rules and who want to generate documentation for those extensions. + +If you are already a user of the excellent [CIMTool](https://github.com/cimug-org/CIMTool), you may wonder where within the process of CIM development and maintenance the jCleanCim fits. The answer is: + +1. You would first use jCleanCim to validate correctness of the CIM information model (UML), and if required, to generate the information model documentation in MS Word format, as required by the IEC process. +2. You would then use CIMTool to create CIM profiles (XSD, RDF, OWL) and their documentation (HTML) from the imported CIM UML model, and to validate instance files created based on those profiles. + +Available distributions +----------------------- + +See [readme]({@docRoot}/../../README.md) file. + +Prerequisites +------------- + +See [readme]({@docRoot}/../../README.md) file. + +Installation +------------ + +See [readme]({@docRoot}/../../README.md) file. + +### Sample files + +Project's [input]({@docRoot}/../../input) directory contains a very small model file (you need at least one model file to run jCleanCim at all), and a sample template file (required for doc generation only). + +base-small.eap is a tiny subset of IEC 61970 UML plus home-made dumb extensions, with intentionally-introduced several modelling bugs and constructs never supposed to be found in CIM - this is for testing purposes. You can use base-small-template.doc and tailor it for your needs to produce the MS Word documentation. + +Tailoring the template for your needs means modifying, adding or removing different kinds of {@link org.tanjakostic.jcleancim.docgen.writer.Placeholder}s. + +If you want to run jCleanCim with your own models (and potentially template files), you need to copy them to the [input]({@docRoot}/../../input) directory. + +This directory also contains a blank image file that must be available when running jCleanCim for certain scenarios (e.g., if you don't generate documentation, but only run validation, this file will be used in place of real UML diagrams). + +Running jCleanCim out of the box +-------------------------------- + +### Binary distribution + +After you have unzipped the **eclipse-independent binary** distribution (jCleanCim-\[version\]-bin.zip), you will be using the run script `run.bat` from console. + +1. In the Windows Start menu, select "Run..." and type `cmd`. This will open a console window. +2. In the console window, type `cd` followed by a space. From the file explorer, just drag and drop the directory where you have unzipped the binary distribution onto the console window (so you don't have to type the whole path), then press enter. This will change the directory to where your jCleanCim has been installed. +3. In the console window, type `run` and press enter. This will run the jCleanCim jar with default configuration (validation and statistics) and the provided example files. + +### Source distribution + +After you have unzipped the **eclipse-independent source** distribution (jCleanCim-\[version\]-src.zip) and installed [Apache ant](http://ant.apache.org/bindownload.cgi), you will be using the Apache ant script `build.xml` from console. + +1. In the Windows Start menu, select "Run..." and type `cmd`. This will open a console window. +2. In the console window, type `cd` followed by a space. From the file explorer, just drag and drop the directory where you have unzipped the source distribution onto the console window (so you don't have to type the whole path), then press enter. This will change the directory to where your jCleanCim has been installed. +3. In the console window, type `ant jCleanCim` and press enter. This will build the jCleanCim jar from sources and run it with the default configuration (validation and statistics) and the provided example files. To see all available ant targets contained in the [ant build file]({@docRoot}/../../build.xml), type `ant -p` (or `ant -projecthelp`) and have a look at the [graph of targets and their dependencies]({@docRoot}/../../build-graph.jpg). + +Alternatively, you may want to unzip the directory and import the project into your eclipse installation. _Note: If you already have an earlier version of jCleanCim in your eclipse workspace, you will first have to rename old jCleanCim project before importing new one. For example, if you want to import new version 01v04, rename first your existing jCleanCim project to jCleanCim-01v03, then import the new one. If you want to keep the old project jCleanCim-01v03 and use it, you will also have to update the build path for the directory where dll-s reside, otherwise eclipse shows you classpath error (eclipse does not use relative paths for dlls directories!)._ + +After you have imported the **eclipse existing project** from unzipped source distribution (jCleanCim-\[version\]-src.zip), you should create the default eclipse launch configuration as follows: + +* Navigate to `src` directory +* locate the source file {@link org.tanjakostic.jcleancim.JCleanCim org.tanjakostic.jcleancim.JCleanCim} +* right click on the class and select "Run as / Java Application". + +This will launch the application and also create the run configuration, that you can later on copy to create custom configurations. Cached launch configurations are available from the eclipse "Run" icon (green icon with white arrow). + +Note that you can also open the [ant build file]({@docRoot}/../../build.xml) from within eclipse (Window / Show Views / ant) and run any of its tasks from the eclipse Outline window, the same way as from the console. + +Configuring jCleanCim +--------------------- + +### Application configuration + +To configure any run of jCleanCim application, you use the standard Java properties file available in the project's config directory. Default name for that properties file is [config.properties]({@docRoot}/../../config/config.properties) and you can override this default with a command line argument if you want to use different stable configurations for different jCleanCim runs - see documentation in the application class {@link org.tanjakostic.jcleancim.JCleanCim} and the configuration class {@link org.tanjakostic.jcleancim.common.Config}. + +The supplied default properties file contains reasonable defaults, and several tested configurations are commented. By default (out of the box), jCleanCim will run validation and statistics on base-small.eap model file, and will _not_ generate any documentation. + +### Logging configuration + +Project's config directory contains also the logging configuration file [log4j.xml]({@docRoot}/../../config/log4j.xml). We have set up the console output level to INFO (within the element `appender name="CONSOLE"...` ), and the level for everything else to the most verbose, TRACE (within the element `logger name="org.tanjakostic.jcleancim"` ). The first time you run jCleanCim application, the project's [log]({@docRoot}/../../log) directory gets created automatically. + +If you get too noisy log files, you can dicrease the jCleanCim logger level in the [log4j.xml]({@docRoot}/../../config/log4j.xml) file, from TRACE to DEBUG. If you want to post the jCleanCim log file with a model release, you can either: + +* Copy the console output to a jCleanCim-\[version\]-\[UMLpackageVersions\].log file - this is easy when running jCleanCim from within eclipse, but may be impossible if running from console window. +* First dicrease the log level for the jCleanCim logger in [log4j.xml]({@docRoot}/../../config/log4j.xml) file, from TRACE to INFO, then remove old log files, run jCleanCim and save the produced jCleanCim.log file as jCleanCim-\[version\]-\[UMLpackageVersions\].log; then revert the log level change in the [log4j.xml]({@docRoot}/../../config/log4j.xml) file. + +Typical usage patterns +---------------------- + +### UML model validation and statistics + +To select what functions of jCleanCim to run, you need to set one or more of the main properties in the [config/config.properties]({@docRoot}/../../config/config.properties) file: `validation.on` , `statistics.on` and `docgen.on` . In every case, you have to provide a valid EA model file name to work with, in the property `model.filename` . That file is expected to be on the jCleanCim classpath, so the best is to put the file in the [input]({@docRoot}/../../input) directory which is already set to be on the classpath. + +Typical usage will be to first enable validation and statistics mode after you have edited the model, then address the problems in the model, and revalidate before releasing. Here is an example of a minimum config.properties file to do that: + +model.filename = base-small.eap +validation.on = true +statistics.on = true + +validation.scope = + +If you are validating IEC 61850 UML models, there are several other properties; see documentation in {@link org.tanjakostic.jcleancim.common.Config}. + +If you have a big model, with potentially parts that are informative/buggy, you may want to set a filter and perform initial validation of your changes for only some top-level packages. For instance, to validate only standard CIM packages IEC61970 and IEC61968, you would set the `validation.scope` property so: + +validation.scope = WG13, WG14 + +and to validate only custom (non-IEC) extensions: + +validation.scope = OTHER\_CIM, OTHER\_IEC61850 + +It is recommended to _validate the full content of the EA model (by leaving the value of `validation.scope` property empty) at least before releasing the model_ , to ensure there are no cross-package issues. See classes in the package {@link org.tanjakostic.jcleancim.validation} for available validators and rules they fire - the names of classes should be descriptive enough. + +### MS Word documentation generation + +If you want to generate IEC (or custom) MS Word documentation from the UML model, in addition to the model file name in [config/config.properties]({@docRoot}/../../config/config.properties) you must provide the names for template (input) file, the resulting (output) file, and enable document generation by setting the property `docgen.on = true` . + +The template file is a regular MS Word document (_not_ Word template with .dot extension), in which you put placeholders to control what jCleanCim should pick from the UML model and print into MS Word document. Detailed description of available placeholders and their usage is provided in the {@link org.tanjakostic.jcleancim.docgen.writer.Placeholder} class, and the templates distributed with jCleanCim in the project's [input]({@docRoot}/../../input) directory should serve you as examples (of what is correct and what is not). If using your own template, you should put it into that directory before running jCleanCim for document generation. + +When generating documentation, jCleanCim does the following: + +* copies your template file into the projects `output` directory, created automatically the first time you run the document generation, +* renames the copied file to the name given in the properties file, and +* fills that copy with the contents from the EA model in place of the placeholders. + +You can safely run document generation several times with the same name of the output file, without overwriting existing output files - if the output file exists, jCleanCim will rename it by appending a system nanosecond time. The disadvantage is that you will need to delete those discarded files from the `output` directory from time to time, but at least nothing gets lost without your control. + +You may want to disable validation and statistics when enabling document generation to have the console log focused on document generation only. + +Because document generation takes pretty long, you will first want to ensure that the placeholders in your template are correct, without generating the full package content. Here the minimum configuration to do this for a CIM model (IEC61850 model needs more properties; see [config/config.properties]({@docRoot}/../../config/config.properties) file): + +model.filename = base-small.eap + +docgen.on = true +profiles.docgen.on = +docgen.inTemplate = base-small-template.doc +docgen.outDocument = base-small.doc + +docgen.analysePlaceholders = true + +Running only placeholder analysis ( `docgen.analysePlaceholders=true` ) will still produce the output document, but without UML package contents (classes, attributes, etc.). More importantly, that half-baked output document will contain placeholder errors, if any - do text search for string "$ERROR". + +After you have fixed the placeholders in the template, you can reset `docgen.analysePlaceholders` to empty string to generate the full documentation. + +There are further options documented in {@link org.tanjakostic.jcleancim.common.Config} and in properties file [config/config.properties]({@docRoot}/../../config/config.properties). Playing with the provided sample small model and template files will hopefully get you started. + +#### Other considerations + +When generating official IEC documentation, the template should contain the IEC styles (this is probably already the case with CDV or FDIS documents that you as editor already have). To prevent MS Word exceptions when generating non-IEC documentation for extensions, jCleanCim defines default MS Word styles as replacement for the IEC styles. So, for example, 'Caption' is used if 'FIGURE-title' and 'TABLE-title' are not present in the template, or 'Normal' is used if 'PARAGRAPH' is not present. Below is the code snippet of the static initialiser for {@link org.tanjakostic.jcleancim.docgen.writer.Style} for the full list of default mappings: first argument is IEC style name and the second is the MS Word default style: + + para("PARAGRAPH", "Normal"), + fig("Picture", "Normal"), + figcapt("FIGURE-title", "Caption"), + tabcapt("TABLE-title", "Caption"), + tabhead("TABLE-col-heading", "Normal"), + tabcell("TABLE-cell", "Normal"), + h1("Heading 1", "Heading 1"), + h2("Heading 2", "Heading 2"), + h3("Heading 3", "Heading 3"), + h4("Heading 4", "Heading 4"), + h5("Heading 5", "Heading 5"), + h6("Heading 6", "Heading 6"), + h7("Heading 7", "Heading 7"), + h8("Heading 8", "Heading 8"), + h9("Heading 9", "Heading 9"); + +**It is essential to use correct styles for paragraphs containing figure and table captions in the template,** because jCleanCim must deduce the number of figures and tables already existing in the template to calculate on the fly the correct numbering for new figures and tables (when inserting/appending the documentation for the UML model elements and diagrams). If jCleanCim throws an exception during document generation, it is very likely that the MS Word threw exception due to wrong/inexisting/negative number for the figure or table caption. _Note: We cannot check those numbers from within the code, because the MS Word automation API does not provide reliable access to them. In the worst case, when we catch an exception from MS Word, we gracefully close the MS Word document and exit the MS Word application, before exiting jCleanCim._ + +Document generation may take pretty long, depending on how many classes the UML model has. The reason is that MS Word updates its fields evey time there is a table or any numbered paragraph (heading or figure/table caption) added to the document. To make that time somewhat shorter, consider the following when editing the template: + +* disable automatic spell checking in the styles 'PARAGRAPH', 'TABLE-cell' and 'Normal' +* disable overall change tracking + +Since version 01v03, jCleanCim has the MS Word application run in background by default (which is faster than having the window visible and updating all the time). + +#### Known issues + +Doc generation obviously relies on MS Word automation API, accessed from within Java through Java-COM bridge ([Jacob](http://sourceforge.net/projects/jacob-project/files/)). With certain MS Word files (used as jCleanCim template), we encounter from time to time issues when invoking COM objects for unknown reason, and with undetermined patterns (= an absolute horror for a programmer!). Therefore, the Java implementation of the writer catches those COM exceptions, prints the stack trace and attempts to continue, so you get at least some of the desired output. + +Here some known issues related to MS Word automation API: + +* When you print a relatively large part of the UML model, you may get the Word pop-up window "memory insufficient. Do you want to continue?" several times. To prevent this, jCleanCim regularly invokes the COM method (`UndoClear`) in attempt to clear cache of the running Word instance, but this call sometimes fails for an unknown reason. Disabling change tracking, and spell checking in styles 'PARAGRAPH', 'TABLE-cell' and 'Normal' in the template document may help here. +* In most cases, despite the above COM exceptions (and those that follow), your generated Word document will be complete, even if it stays open. Just save it and see what is in it. In cases it does not work, try to create a fresh Word document as a jCleanCim template, and copy only necessary styles from the original template, disable change tracking and spell checking. +* We also suspect issues with localised versions of MS Word related to style definition. Michael Specht (OFFIS, Germany) reported COM exceptions with base-small-template.doc bundled in the [input]({@docRoot}/../../input) with JCleanCim-01v01. He also reported that installing English language pack for MS Office solves the problem. + +If the problems persist, feel free to help fixing jCleanCim/Jacob/MS Word stuff. + +If despite that we cannot find a workaround, we should convince IEC to allow us to generate our documents at least as HTML (or still better, as XML), to get rid of binary dependencies on MS Word. + +#### Success stories + +All that said, we have sucessfully generated: + +* IEC 61970-301 since Ed.4 (base CIM14) +* IEC 61968-11 since Ed.1 (DCIM10), and +* IEC 62325-301 since CDV (market CIM01), and various EU profile documents + +We have also demonstrated the generation of Ed.2 IEC 61850-7-4 and IEC 61850-7-3, but these auto-generated documents from UML are not the official IEC documents yet. + +The requirements for generation of the above documents (and what will be needed for IEC 61850-7-2 and other IEC CIM and 61850 family of standards) are the highest priority ones at this moment. + +Checklist for the developer that produces jCleanCim distributions +----------------------------------------------------------------- + +Once after you've fixed bugs or added new features to jCleanCim, follow these steps to build and publish the three jCleanCim distributions: + +1. update release notes (including date and version) in the [readme]({@docRoot}/../../readme.html) file. +2. in the [version properties file]({@docRoot}/../../config/build.properties), update the property `project.version`. +3. if you provide new libraries or upgraded versions, ensure you update appropriate ant properties. +4. clean-up local config.properties file (keep only public defaults). +5. run `ant clean, unzip-all` and verify that the content unzipped under the build directory is ok. +6. run jCleanCim from within both unzipped directories (to verify it actually runs as described) +7. (copy locally the content of dist directory into jCleanCim releases directory) +8. on CIMug SharePoint, create new sub-directory within jCleanCim directory under [CIM Methods & Tools for Enterprise Integration group Shared Documents](http://cimug.ucaiug.org/MTEI/Shared Documents); call it `jCleanCim-[version]` +9. upload into that new sub-directory all artefacts from dist directory +10. notify CIM model managers, IEC61850 UML task force and known users diff --git a/config/config-wg15.properties b/config/config-wg15.properties new file mode 100644 index 0000000..f606c60 --- /dev/null +++ b/config/config-wg15.properties @@ -0,0 +1,243 @@ +# $Id: config.properties 34 2019-12-20 18:37:17Z dev978 $ +# ################################################################ +# For detailed description of options, see javadoc for class +# org.tanjakostic.jcleancim.common.Config, that you can access from your +# installation subdirectory: doc/api/index.html. +# ################################################################ +app.skipTiming = +model.nature.iec62351 = IEC62351 +model.filename = \\IEC_62351-7_IS_Ed.2\\FDIS\\IEC62351-7-Ed2-FDIS-20240901.eap +#model.filename = base-small-dependencies_61850.eap + +#model.filename = iec61970cim17v37_iec61968cim13v12_iec62325cim03v17a.eap +#model.filename = FDIS03-iec61970-600-CGMES-v3_0_0.eap +#model.filename = wg10built6-wg18built1-wg17built4.3-jwg25built2-tc17built1-tc38built1.eap + +# one of {db | sqlxml | japi}; default is {db, , null} +# if you need diagrams or XMI export, use sqlxml; otherwise leave the value empty +model.builder = japi + +# e.g. output/pics (default), test/output/pics +model.picsRelpath = + +# e.g. input/profiles (default), test/input/profiles +profiles.relpath = + +# e.g., one or more of; empty value or absent property takes them all +# {WG13, WG14, WG16, OTHER_CIM, WG10, WG17, WG18, JWG25, WG19, OTHER_IEC61850} +profiles.dirnames = + +############################################# +# Top-level options +############################################# +xmiexport.on = +validation.on = false +statistics.on = false +profiles.crosscheck.on = +docgen.on = true +mibgen.on = true +profiles.docgen.on = + +#--------------------------------------------------------------------------- +# XMI export options. Make sense only if xmiexport.on = true. +#--------------------------------------------------------------------------- +# e.g., one or more of; empty value or absent property takes them all except for 'cimtool' +# {ea_xmi11, ea_xmi21, cimtool} +xmiexport.dialects = + +#--------------------------------------------------------------------------- +# General model validation options. Make sense only if validation.on = true. +#--------------------------------------------------------------------------- +# e.g., one or more of; empty value or absent property takes them all +# {WG13, WG14, WG16, OTHER_CIM, WG10, WG17, WG18, JWG25, WG19, OTHER_IEC61850} +validation.scope = + +# e.g., true | {false, , null} +validation.packages.off = +validation.classes.off = +validation.associations.off = +validation.attributes.off = +validation.operations.off = +validation.dependencies.off = +validation.diagrams.off = + +### sample below turns off validation rules for the doc/notes of UML-elements: +#validation.rules.off = \ +# ClassesMissingDoc, ClassesWithBadDocStart, ClassesWithBadDocEnd, \ +# PackagesMissingDoc, PackagesWithBadDocStart, PackagesWithBadDocEnd + +# true | {false, , null} +validation.logging.verbose = + +#--------------------------------------------------------------------------- +# Model statistics options. Make sense only if statistics.on = true. +#--------------------------------------------------------------------------- +# comma-separated list of strings, for UML stereotypes; or null for std WG documents +statistics.tagsToIgnore = GUIDBasedOn + +statistics.cim.ignoreIdObjectInheritance = true +statistics.cim.ignoreDomainClassAttributes = true + +#--------------------------------------------------------------------------- +# Doc generation options. Make sense only if docgen.on = true. +# The options are applicable for docgen from both UML model and CIM profiles, +# for both MS Word and XML writers, and for models of any nature. +# For boolean options, value can be: true | {false, , null}. +# For others, there is comment +#--------------------------------------------------------------------------- +docgen.includeInformative = +docgen.includeNonPublic = +docgen.printHtml = +docgen.showCustomStereotypes = true + +# comma-separated list of UML stereotypes +# enable for -30x main part and-4xx; disable for -60x or any custom printing +#docgen.skipForCustomStereotypes = European + +docgen.showNamespacePackages = Base, Dynamics, ExtEuBase, Ext1 + +# e.g., one or more of; empty value or absent property takes them all +# {WG13, WG14, WG16, OTHER_CIM, WG10, WG17, WG18, JWG25, WG19, OTHER_IEC61850} +docgen.xml.scope = + +docgen.word.analysePlaceholders = +docgen.word.saveReopenEvery = 12 +docgen.word.useDocFormat = true +docgen.word.introToFigureBefore = +docgen.word.useHyperlinks = true +docgen.word.includeInheritancePath = false + +# comma-separated list of strings, for style names; if empty, default is the +# built-in native style in English (config below is just to help you; the first name +# below corresponds to IEC document style names; there is NO need to have the same number +# of style names (here: 4 for all, but .fig), i.e., there is no relation between styles. only the order +# matters for you - first is your preferred, the rest are fallback solutions; if none found, the +# bult-in style is used. +#docgen.word.styles.prefix.toc = TOC, Verzeichnis, TM +#docgen.word.styles.prefix.head = Heading, Überschrift, Titre + +docgen.word.styles.para = PARAGRAPH, Normal, Standard, Normal +docgen.word.styles.fig = FIGURE, Picture, Normal, Standard, Normal +docgen.word.styles.tabhead = TABLE-col-heading, Normal, Standard, Normal +docgen.word.styles.tabcell = TABLE-cell, Normal, Standard, Normal +docgen.word.styles.figcapt = FIGURE-title, Caption, Beschriftung, Légende +docgen.word.styles.tabcapt = TABLE-title, Caption, Beschriftung, Légende + +# ----- File names - either docgen.word.* or docgen.xml.* should be given ------ + +#docgen.xml.outSpec = base-small-tool02v03-spec.xml +#docgen.xml.outDoc = base-small-tool02v03-doc.xml +docgen.word.inTemplate = \\IEC_62351-7_IS_Ed.2\\FDIS\\57-62351-7-Ed2-FDIS-template_20240901.docx +docgen.word.outDocument = \\IEC_62351-7_IS_Ed.2\\FDIS\\57-62351-7-Ed2-FDIS_20240901.docx +#docgen.word.inTemplate = Autogeneration_of_doc_template_v0.docx +#docgen.word.outDocument = Autogeneration_of_doc_result_v0-beta-3.docx + +#docgen.word.inTemplate = base-small-profiles-template.docx +#docgen.word.outDocument = base-small-profiles-tool02v03.docx + +#docgen.word.inTemplate = iecPackage-template.docx +#docgen.word.outDocument = iecPackage-template-namespaces.docx + +# ----------- CIM-family XML: ---------------- + +#docgen.xml.outSpec = TC57CIM-uml17v37.13v12.03v17a-tool02v03-spec.xml +#docgen.xml.outDoc = TC57CIM-uml17v37.13v12.03v17a-tool02v03-doc.xml + +#docgen.xml.outSpec = FDIS03-iec61970-600-CGMES-v3_0_0_tool02v03-spec.xml +#docgen.xml.outDoc = FDIS03-iec61970-600-CGMES-v3_0_0_tool02v03-doc.xml + +# ----------- CIM-family Word docs: ---------------- + +#docgen.word.inTemplate = template_iec61970-301_17-t17.docx +#docgen.word.outDocument = iec61970-301-Ed7-FDIS.docx +#docgen.word.saveReopenEvery = 23 +#docgen.word.includeInheritancePath = +#docgen.showCustomStereotypes = +#docgen.skipForCustomStereotypes = European + +#docgen.word.inTemplate = template_iec61970-600-2.docx +#docgen.word.outDocument = iec61970-600-2-IS-Ed1-CDV.docx + +#docgen.word.inTemplate = template_iec61970-452-Ed4-t00.docx +#docgen.word.outDocument = autogenDRAFT-iec61970-452-Ed4-CDV.docx +# ~25 min (without figures) + +#docgen.word.inTemplate = template_iec61970-453-EdX-t00.docx +#docgen.word.outDocument = autogenDRAFT-iec61970-453-EdX-CDV.docx +# ~0.8 min (without figures) + +#docgen.word.inTemplate = template_iec61970-456-Ed3-t04.docx +#docgen.word.outDocument = autogenDRAFT-iec61970-456-Ed3-CDV.docx +# ~2.5 min (without figures) + +#docgen.word.inTemplate = template_iec61970-457_CDV.docx +#docgen.word.outDocument = iec61970-457-CDV.docx +# ~15 min (without figures) + +#docgen.word.inTemplate = template_IEC61968-11-r14.docx +#docgen.word.outDocument = IEC61968-11-ed3-r14-uml16v26a-12v08-tool02v03.docx +#docgen.word.saveReopenEvery = 24 +# old PC: 0:06:44.626, figures (37 before 35 mine), tables (4 before 377 mine) +# new PC: 0:12:22 to 0:17:30, figures (38 before 37 mine), tables (4 before 399 mine) + +#docgen.word.inTemplate = template_iec62325_301r06.docx +#docgen.word.outDocument = Iec62325-301r06_iec62325cim03v01a-tool02v03.docx +#docgen.word.saveReopenEvery = 24 + +#docgen.word.inTemplate = template_iec61970-302_CD-noCompatMode.docx +#docgen.word.outDocument = iec61970-302_CD-tool02v03.docx +#docgen.word.saveReopenEvery = 24 + +# ----------- 61850-family XML: ---------------- +#docgen.xml.outSpec = auto-IEC61850-ed2.1-tool02v03-uml02v18-spec.xml +#docgen.xml.outDoc = auto-IEC61850-ed2.1-tool02v03-uml02v18-doc.xml + +# ----------- 61850-family Word docs: ---------------- +#docgen.showCustomStereotypes = +#docgen.skipForCustomStereotypes = + +#docgen.word.inTemplate = template_IEC61850-7-4-ed2.1-r19.docx +#docgen.word.outDocument = auto-IEC61850-7-4-ed2.1-r19-tool02v03-wg10uml02v18.docx +#docgen.word.saveReopenEvery = 27 +# old PC : (all: 0:21:33) 0:20:39, 266 tables, 52 figures +# new PC, Office 2013 templ: (all: 0:44:48) 0:43:58 saveReopenEvery = 27 +# 2:32:42 12136 hyperlink placeholders + +#docgen.word.inTemplate = template_IEC61850-7-3-ed2.1-r17.docx +#docgen.word.outDocument = auto-IEC61850-7-3-ed2.1-r17-tool02v03-wg10uml02v18.docx +#docgen.word.saveReopenEvery = 5 +# old PC: (all: 0:04:33) 0:03:40 saveReopenEvery = 5, 117 tables, 32 figures +# new PC, Office 2013 templ: (all: 0:05:34) 0:04:41 saveReopenEvery = 5 +# 0:08:42 1788 hyperlink placeholders + +#docgen.word.inTemplate = template_IEC61850-7-2-ed2.1-r16.docx +#docgen.word.outDocument = auto-IEC61850-7-2-ed2.1-r16-tool02v03-wg10uml02v18.docx +#docgen.word.saveReopenEvery = 27 +# old PC : (all: 0:03:31) 0:02:36, 22 tables, 5 figures +# new PC, Office 2010 templ: (all: 0:03:30) 0:02:40 +# 0:02:54 56 hyperlink placeholders + +#docgen.word.inTemplate = template_IEC61850-7-420-ed2-CD1_v2.docx +#docgen.word.outDocument = auto-IEC61850-7-420-ed2-CD1_v2-tool02v03-wg10uml02v18-wg17uml02v17c.docx +#docgen.word.inTemplate = template_7_420_namespace_2019-11-25.docx +#docgen.word.outDocument = auto-IEC61850-7-420-2019-11-25-tool02v03- wg10built6-wg17built4.3.docx +# ~13 min (no diagrams) + +#docgen.word.inTemplate = template_IEC61850-7-410-ed2-r1.docx +#docgen.word.outDocument = auto-IEC61850-7-410-ed2-r1-tool02v03-wg10uml02v18-wg18uml02v11b.docx + +#docgen.word.inTemplate = template_IEC61400-25-2-ed2-r1.docx +#docgen.word.outDocument = auto-IEC61400-25-2-ed2-r1-tool02v03-wg10uml02v18-jwg25uml02v04c.docx + +#docgen.word.inTemplate = template_IEC61850-90-3-ed1-r2.docx +#docgen.word.outDocument = auto-IEC61850-90-3-ed1-r2-tool02v03-wg10uml02v18.docx + +#docgen.word.inTemplate = template_IEC61850-90-4-ed1-r11.docx +#docgen.word.outDocument = auto-IEC61850-90-4-ed1-r9-tool02v03-wg10uml02v18.docx +#docgen.word.saveReopenEvery = 16 + +#--------------------------------------------------------------------------- +# MIB generation options. Make sense only if mibgen.on = true. +#--------------------------------------------------------------------------- +mibgen.outDirFull = \\IEC_62351-7_IS_Ed.2\\FDIS\\mibs +mibgen.outDirLight = \\IEC_62351-7_IS_Ed.2\\FDIS\\mibslight diff --git a/lib-doc/commons-lang3-3.14.0-sources.jar b/lib-doc/commons-lang3-3.14.0-sources.jar new file mode 100644 index 0000000..99571b8 Binary files /dev/null and b/lib-doc/commons-lang3-3.14.0-sources.jar differ diff --git a/lib/commons-lang3-3.14.0.jar b/lib/commons-lang3-3.14.0.jar new file mode 100644 index 0000000..da9302f Binary files /dev/null and b/lib/commons-lang3-3.14.0.jar differ diff --git a/lib/commons-logging-1.3.1.jar b/lib/commons-logging-1.3.1.jar new file mode 100644 index 0000000..0d508f6 Binary files /dev/null and b/lib/commons-logging-1.3.1.jar differ diff --git a/lib/sqlite-jdbc-3.45.2.0.jar b/lib/sqlite-jdbc-3.45.2.0.jar new file mode 100644 index 0000000..9b6e9db Binary files /dev/null and b/lib/sqlite-jdbc-3.45.2.0.jar differ diff --git a/log/jCleanCim-detailed.log.1 b/log/jCleanCim-detailed.log.1 new file mode 100644 index 0000000..20ccc26 --- /dev/null +++ b/log/jCleanCim-detailed.log.1 @@ -0,0 +1,104240 @@ +2024-09-07 12:38:47,186 [main] INFO JCleanCim - started at: Sat Sep 07 12:38:47 CEST 2024 +2024-09-07 12:38:47,187 [main] INFO JCleanCim - execution environment: +2024-09-07 12:38:47,187 [main] INFO JCleanCim - os.name = Windows 10 +2024-09-07 12:38:47,189 [main] INFO JCleanCim - java.version = 1.8.0_351 +2024-09-07 12:38:47,189 [main] INFO JCleanCim - java.home = C:\Program Files (x86)\Java\jre1.8.0_351 +2024-09-07 12:38:47,190 [main] INFO JCleanCim - java.class.path = C:\Users\gigi\git\jCleanCim\build\prod\classes;C:\Users\gigi\git\jCleanCim\lib\eaapi.jar;C:\Users\gigi\git\jCleanCim\dlls;C:\Users\gigi\git\jCleanCim\lib\commons-cli-1.2.jar;C:\Users\gigi\git\jCleanCim\config;C:\Users\gigi\git\jCleanCim\input;C:\Users\gigi\git\jCleanCim\lib\jacob.jar;C:\Users\gigi\git\jCleanCim\test\config;C:\Users\gigi\git\jCleanCim\test\input;C:\Users\gigi\git\jCleanCim\lib\commons-logging-1.1.1.jar;C:\Users\gigi\git\jCleanCim\lib\log4j-1.2.17.jar;C:\Users\gigi\git\jCleanCim\lib\commons-lang-2.6.jar;C:\Users\gigi\git\jCleanCim\lib\junit-4.8.2.jar;C:\Users\gigi\git\jCleanCim\lib\jackcess-2.1.0.jar;C:\Users\gigi\git\jCleanCim\lib\poi-ooxml-3.15-beta2.jar +2024-09-07 12:38:47,214 [main] INFO Util - loaded properties from resource build.properties +2024-09-07 12:38:47,214 [main] INFO JCleanCim - jCleanCim version: 02v03 +2024-09-07 12:38:47,214 [main] INFO JCleanCim - +2024-09-07 12:38:47,231 [main] INFO Util - loaded properties from resource config.properties +2024-09-07 12:38:47,233 [main] INFO Util - loaded properties from resource config61850.properties +2024-09-07 12:38:47,234 [main] INFO Util - loaded properties from resource build.properties +2024-09-07 12:38:47,240 [main] INFO Config - Unknown model builder value '', using default 'db' (you can use one of [db, sqlxml, japi]). +2024-09-07 12:38:47,244 [main] INFO Config - EA model specified in config.properties: 'C:\Users\gigi\git\jCleanCim\input\base-small.eap' +2024-09-07 12:38:47,245 [main] INFO Config - blank image file: 'C:\Users\gigi\git\jCleanCim\input\blank.png' +2024-09-07 12:38:47,256 [main] DEBUG Config - Property validation.rules.off not found in config.properties. +2024-09-07 12:38:47,259 [main] INFO Util - Creating backup of existing file: C:\Users\gigi\git\jCleanCim\output\pics.4602910773000 +2024-09-07 12:38:47,261 [main] INFO Config - pics output directory: 'C:\Users\gigi\git\jCleanCim\output\pics' +2024-09-07 12:38:47,263 [main] INFO Config - input MS Word template: 'C:\Users\gigi\git\jCleanCim\input\base-small-template.docx' +2024-09-07 12:38:47,264 [main] INFO Config - output MS Word file: 'C:\Users\gigi\git\jCleanCim\output\base-small-tool02v03.docx' +2024-09-07 12:38:47,264 [main] DEBUG Config - Property mibgen.on not found in config.properties. +2024-09-07 12:38:47,264 [main] DEBUG Config - Property docgen.word.styles.prefix.toc not found in config.properties. +2024-09-07 12:38:47,264 [main] DEBUG Config - Property docgen.word.styles.prefix.head not found in config.properties. +2024-09-07 12:38:47,265 [main] DEBUG Config - Property docgen.skipForCustomStereotypes not found in config.properties. +2024-09-07 12:38:47,265 [main] INFO JCleanCim - Config: +app.skipTiming = +docgen.iec61850.includeMetamodelInheritance = +docgen.iec61850.writeUmlTypes = +docgen.includeInformative = +docgen.includeNonPublic = +docgen.on = true +docgen.printHtml = +docgen.showCustomStereotypes = true +docgen.showNamespacePackages = Base, Dynamics, ExtEuBase, Ext1 +docgen.word.analysePlaceholders = +docgen.word.inTemplate = base-small-template.docx +docgen.word.includeInheritancePath = true +docgen.word.introToFigureBefore = +docgen.word.outDocument = base-small-tool02v03.docx +docgen.word.saveReopenEvery = 12 +docgen.word.styles.fig = FIGURE, Picture, Normal, Standard, Normal +docgen.word.styles.figcapt = FIGURE-title, Caption, Beschriftung, Légende +docgen.word.styles.para = PARAGRAPH, Normal, Standard, Normal +docgen.word.styles.tabcapt = TABLE-title, Caption, Beschriftung, Légende +docgen.word.styles.tabcell = TABLE-cell, Normal, Standard, Normal +docgen.word.styles.tabhead = TABLE-col-heading, Normal, Standard, Normal +docgen.word.useDocFormat = true +docgen.word.useHyperlinks = true +docgen.xml.scope = +model.builder = +model.filename = base-small.eap +model.nature.iec61850 = IEC61850Domain, My61850Extensions, NonCIM, IEC61850_SCL_mappings, MyNonCimExtensions +model.picsRelpath = +profiles.crosscheck.on = +profiles.dirnames = +profiles.docgen.on = +profiles.relpath = +project.version = 02v03 +statistics.cim.ignoreDomainClassAttributes = true +statistics.cim.ignoreIdObjectInheritance = true +statistics.on = true +statistics.tagsToIgnore = GUIDBasedOn +validation.associations.off = +validation.attributes.off = +validation.classes.off = +validation.dependencies.off = +validation.diagrams.off = +validation.iec61850.package72Top = IEC61850_7_2 +validation.iec61850.packageFC = FunctionalConstraints +validation.iec61850.packageLnMaps = Functions +validation.iec61850.packageMetaModel = MetaModel +validation.iec61850.packagePresCond = PresenceConditions +validation.iec61850.packageTrgOp = TriggerOptions +validation.iec61850.packages72 = FunctionalConstraints, TriggerOptions, ACSIEnums, CoreTypes, MetaModel +validation.iec61850.packages73 = PresenceConditions, ConstructedDAs, CommonDataClasses, DAEnums,CommonDataClasses_90_3, DAEnums_90_3,CommonDataClasses_90_4, DAEnums_90_4,CommonDataClasses_90_6, DAEnums_90_6,CommonDataClasses_90_8, DAEnums_90_8,CommonDataClasses_90_10, DAEnums_90_10,CommonDataClasses_90_17, DAEnums_90_17,CommonDataClasses_7_410, DAEnums_7_410,CommonDataClasses_7_420, DAEnums_7_420,CommonDataClasses_25_2, DAEnums_25_2 +validation.iec61850.packages74 = Functions, Abbreviations, LogicalNodes, DOEnums,Abbreviations_90_3, LogicalNodes_90_3, DOEnums_90_3,Abbreviations_90_4, LogicalNodes_90_4, DOEnums_90_4,Abbreviations_90_6, LogicalNodes_90_6, DOEnums_90_6,Abbreviations_90_8, LogicalNodes_90_8, DOEnums_90_8,Abbreviations_90_9, LogicalNodes_90_9, DOEnums_90_9,Abbreviations_90_10, LogicalNodes_90_10, DOEnums_90_10,Abbreviations_90_11, LogicalNodes_90_11, DOEnums_90_11,Abbreviations_90_17, LogicalNodes_90_17, DOEnums_90_17,Abbreviations_7_410, LogicalNodes_7_410, DOEnums_7_410,Abbreviations_7_420, LogicalNodes_7_420, DOEnums_7_420,Abbreviations_7_499, LogicalNodes_7_499, DOEnums_7_499,Abbreviations_61869-9, LogicalNodes_61869-9, Abbreviations_62271-3, LogicalNodes_62271-3, Abbreviations_25_2, LogicalNodes_25_2, DOEnums_25_2 +validation.iec61850.packagesBasic = CoreTypes +validation.iec61850.packagesCdc = CommonDataClasses, CommonDataClasses_90_3, CommonDataClasses_90_4, CommonDataClasses_90_6, CommonDataClasses_90_8, CommonDataClasses_90_9, CommonDataClasses_90_10, CommonDataClasses_90_17, CommonDataClasses_7_410, CommonDataClasses_7_420, CommonDataClasses_25_2 +validation.iec61850.packagesDa = ConstructedDAs +validation.iec61850.packagesDoAbbr = Abbreviations, Abbreviations_90_3, Abbreviations_90_4, Abbreviations_90_6, Abbreviations_90_8, Abbreviations_90_9, Abbreviations_90_10, Abbreviations_90_11, Abbreviations_90_17, Abbreviations_7_410, Abbreviations_7_420, Abbreviations_7_499, Abbreviations_61869-9, Abbreviations_62271-3, Abbreviations_25_2 +validation.iec61850.packagesEnumsXml = DomainTypesEnums, DOEnums, DAEnums, DOEnums_90_3, DAEnums_90_3, DOEnums_90_4, DAEnums_90_4, DOEnums_90_6, DAEnums_90_6, DOEnums_90_8, DAEnums_90_8, DOEnums_90_9, DAEnums_90_9, DOEnums_90_10, DAEnums_90_10, DOEnums_90_11, DAEnums_90_11, DOEnums_90_17, DAEnums_90_17, DOEnums_7_410, DAEnums_7_410, DOEnums_7_420, DAEnums_7_420, DOEnums_7_499, DAEnums_7_499, DOEnums_25_2, DAEnums_25_2 +validation.iec61850.packagesLn = LogicalNodes, LogicalNodes_90_3, LogicalNodes_90_4, LogicalNodes_90_6, LogicalNodes_90_8, LogicalNodes_90_9, LogicalNodes_90_10, LogicalNodes_90_11, LogicalNodes_90_17, LogicalNodes_7_410, LogicalNodes_7_420, LogicalNodes_7_499, LogicalNodes_61869-9, LogicalNodes_62271-3, LogicalNodes_7_420, LogicalNodes_25_2 +validation.logging.verbose = +validation.on = true +validation.operations.off = +validation.packages.off = +validation.packagesDataIndex = Core, LogicalNodes, CommonDataClasses, LogicalNodes_90_3, CommonDataClasses_90_3, LogicalNodes_90_4, CommonDataClasses_90_4, LogicalNodes_90_6, CommonDataClasses_90_6, LogicalNodes_90_8, CommonDataClasses_90_8, LogicalNodes_90_9, CommonDataClasses_90_9, LogicalNodes_90_10, CommonDataClasses_90_10, LogicalNodes_90_11, CommonDataClasses_90_11, LogicalNodes_90_17, CommonDataClasses_90_17, LogicalNodes_7_410, CommonDataClasses_7_410, LogicalNodes_7_420, LogicalNodes_7_499, CommonDataClasses_7_420, LogicalNodes_61869-9, LogicalNodes_62271-3, LogicalNodes_25_2, CommonDataClasses_25_2 +validation.scope = +xmiexport.dialects = +xmiexport.on = + +2024-09-07 12:38:47,278 [main] INFO Util - +2024-09-07 12:38:47,278 [main] INFO Util - ================================================ +2024-09-07 12:38:47,278 [main] INFO Util - building model from EA Access DB... +2024-09-07 12:38:47,278 [main] INFO Util - ================================================ +2024-09-07 12:38:47,302 [main] INFO Util - +2024-09-07 12:38:47,302 [main] INFO Util - ------------------------------------------------ +2024-09-07 12:38:47,302 [main] INFO Util - initialising EA builder... +2024-09-07 12:38:47,310 [main] INFO EaModelBuilder - EA version: build n/a +2024-09-07 12:38:47,331 [main] INFO Util - time=[0:00:00.008] initialised EA builder. +2024-09-07 12:38:47,331 [main] INFO Util - +2024-09-07 12:38:47,331 [main] INFO Util - +2024-09-07 12:38:47,331 [main] INFO Util - ------------------------------------------------ +2024-09-07 12:38:47,331 [main] INFO Util - opening EA file 'C:\Users\gigi\git\jCleanCim\input\base-small.eap'... +2024-09-07 12:38:47,572 [main] INFO Util - time=[0:00:00.241] opened EA file. +2024-09-07 12:38:47,572 [main] INFO Util - +2024-09-07 12:38:47,581 [main] INFO Util - +2024-09-07 12:38:47,581 [main] INFO Util - ------------------------------------------------ +2024-09-07 12:38:47,582 [main] INFO Util - running bulk queries... +2024-09-07 12:38:47,586 [main] INFO DbSelector - loading table t_xref +2024-09-07 12:38:47,698 [main] INFO DbSelector - 112 ms: populated 1240 items with tags: [Type, Description, Client, Name] +2024-09-07 12:38:47,698 [main] INFO DbSelector - .......... +2024-09-07 12:38:47,705 [main] INFO DbSelector - loading table t_package +2024-09-07 12:38:47,717 [main] INFO DbSelector - 12 ms: populated 84 items with tags: [Package_ID, TPos, Parent_ID, ea_guid, Notes, Name] +2024-09-07 12:38:47,717 [main] INFO DbSelector - .......... +2024-09-07 12:38:47,717 [main] INFO DbSelector - loading table t_diagram +2024-09-07 12:38:47,736 [main] INFO DbSelector - 19 ms: populated 104 items with tags: [ParentID, Package_ID, TPos, Stereotype, Diagram_Type, ea_guid, Orientation, Diagram_ID, Notes, Name] +2024-09-07 12:38:47,737 [main] INFO DbSelector - .......... +2024-09-07 12:38:47,737 [main] INFO DbSelector - loading table t_object +2024-09-07 12:38:47,786 [main] INFO DbSelector - 49 ms: populated 697 items with tags: [ParentID, Object_Type, IsRoot, IsLeaf, Package_ID, Abstract, TPos, ea_guid, Name, Persistence, Object_ID, Scope, Alias, Note, NType] +2024-09-07 12:38:47,786 [main] INFO DbSelector - .......... +2024-09-07 12:38:47,790 [main] INFO DbSelector - loading table t_objectconstraint +2024-09-07 12:38:47,793 [main] INFO DbSelector - 3 ms: populated 55 items with tags: [Object_ID, Constraint, Notes] +2024-09-07 12:38:47,794 [main] INFO DbSelector - .......... +2024-09-07 12:38:47,794 [main] INFO DbSelector - loading table t_objectproperties +2024-09-07 12:38:47,796 [main] INFO DbSelector - 2 ms: populated 50 items with tags: [Object_ID, Value, Property] +2024-09-07 12:38:47,796 [main] INFO DbSelector - .......... +2024-09-07 12:38:47,797 [main] INFO DbSelector - loading table t_attribute +2024-09-07 12:38:47,821 [main] INFO DbSelector - 24 ms: populated 762 items with tags: [LowerBound, Const, ea_guid, Classifier, IsStatic, Default, Name, Type, Object_ID, Scope, Pos, UpperBound, Style, ID, Notes] +2024-09-07 12:38:47,821 [main] INFO DbSelector - .......... +2024-09-07 12:38:47,823 [main] INFO DbSelector - loading table t_attributeconstraints +2024-09-07 12:38:47,825 [main] INFO DbSelector - 2 ms: populated 9 items with tags: [Constraint, ID, Notes] +2024-09-07 12:38:47,826 [main] INFO DbSelector - .......... +2024-09-07 12:38:47,828 [main] INFO DbSelector - loading table t_attributetag +2024-09-07 12:38:47,830 [main] INFO DbSelector - 2 ms: populated 12 items with tags: [VALUE, Property, ElementID] +2024-09-07 12:38:47,830 [main] INFO DbSelector - .......... +2024-09-07 12:38:47,831 [main] INFO DbSelector - loading table t_operation +2024-09-07 12:38:47,833 [main] INFO DbSelector - 2 ms: populated 17 items with tags: [ReturnArray, IsLeaf, OperationID, Abstract, ea_guid, Classifier, IsStatic, Name, Type, Object_ID, Scope, Pos, Style, Notes] +2024-09-07 12:38:47,833 [main] INFO DbSelector - .......... +2024-09-07 12:38:47,833 [main] INFO DbSelector - loading table t_operationtag +2024-09-07 12:38:47,834 [main] INFO DbSelector - 1 ms: populated 5 items with tags: [VALUE, Property, ElementID] +2024-09-07 12:38:47,834 [main] INFO DbSelector - .......... +2024-09-07 12:38:47,834 [main] INFO DbSelector - loading table t_operationparams +2024-09-07 12:38:47,836 [main] INFO DbSelector - 2 ms: populated 10 items with tags: [Type, Pos, OperationID, StyleEx, ea_guid, Classifier, Notes, Name] +2024-09-07 12:38:47,836 [main] INFO DbSelector - .......... +2024-09-07 12:38:47,836 [main] INFO DbSelector - loading table t_connector +2024-09-07 12:38:47,867 [main] INFO DbSelector - 31 ms: populated 501 items with tags: [SourceRole, Connector_Type, SourceCard, SourceStyle, DestStyle, DestIsAggregate, ea_guid, Connector_ID, Direction, SourceIsAggregate, DestAccess, Name, Start_Object_ID, End_Object_ID, DestRole, DestRoleNote, StyleEx, DestCard, SourceRoleNote, SourceAccess, Notes] +2024-09-07 12:38:47,867 [main] INFO DbSelector - .......... +2024-09-07 12:38:47,871 [main] INFO DbSelector - loading table t_connectortag +2024-09-07 12:38:47,872 [main] INFO DbSelector - 1 ms: populated 7 items with tags: [VALUE, Property, ElementID] +2024-09-07 12:38:47,872 [main] INFO DbSelector - .......... +2024-09-07 12:38:47,872 [main] INFO DbSelector - loading table t_taggedvalue +2024-09-07 12:38:47,878 [main] INFO DbSelector - 6 ms: populated 10 items with tags: [BaseClass, TagValue, ElementID, Notes] +2024-09-07 12:38:47,878 [main] INFO DbSelector - .......... +2024-09-07 12:38:47,880 [main] DEBUG EaTables - +++ no connRow for connGuid = {7D6344F7-A5AB-43fe-A844-BA70EA5BDFF9} +2024-09-07 12:38:47,880 [main] INFO Util - time=[0:00:00.298] done bulk queries. +2024-09-07 12:38:47,880 [main] INFO Util - +2024-09-07 12:38:47,880 [main] INFO Util - +2024-09-07 12:38:47,880 [main] INFO Util - ------------------------------------------------ +2024-09-07 12:38:47,880 [main] INFO Util - building model from EA tables (as EAP DB)... +2024-09-07 12:38:47,979 [main] INFO PackageBuilder - processing model package TC57CIMProfiles (0) ... +2024-09-07 12:38:48,000 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=TC57CIMProfiles, _objData=UmlObjectData [id=332, uuid={1F44F334-CECE-43de-BA4C-15818B04F849}, since=null, name=TC57CIMProfiles, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=PACKAGE] +2024-09-07 12:38:48,002 [main] TRACE PackageBuilder - read PackageBuilder [_kind=MODEL, _depth=-1, _eaElementID=3095, _objData=UmlObjectData [id=177, uuid={F1BAE623-69C8-4115-BD68-C48157E7637C}, since=null, name=TC57CIMProfiles, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=177, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=TC57CIMProfiles, _objData=UmlObjectData [id=332, uuid={1F44F334-CECE-43de-BA4C-15818B04F849}, since=null, name=TC57CIMProfiles, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=PACKAGE]] +2024-09-07 12:38:48,002 [main] INFO PackageBuilder - processing model package TC57CIM (1) ... +2024-09-07 12:38:48,017 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=TC57CIM, _objData=UmlObjectData [id=1, uuid={7ECA7523-5E2A-40a0-A7B1-BE02958F3D9C}, since=null, name=Main, alias=, stereotype=diagStereotype, oneMoreDiagStereo, visibility=public, txtDescription='This diagram shows all Packages included in this CIM model.', htmlDescription='

This diagram shows all Packages included in this CIM model.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,019 [main] INFO PackageBuilder - processing top package Informative (1) ... +2024-09-07 12:38:48,020 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Informative, _objData=UmlObjectData [id=171, uuid={42D53082-F199-4c03-89A0-15308EF3019C}, since=null, name=Informative, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,022 [main] ERROR EaTables - [+++ EA ordering problem for 6 class(s) in Informative (manually move back/forth a class to initiate EA internal ordering update!): +, +++ class Class1: pos = 0 +, +++ class End1ForAssocClass: pos = 0 DUPLICATE +, +++ class End2ForAssocClass: pos = 0 DUPLICATE +, +++ class AssocClass: pos = 0 DUPLICATE +, +++ class HasIllegalTypeForAttr: pos = 0 DUPLICATE +, +++ class SomeSimpleType: pos = 0 DUPLICATE +] +2024-09-07 12:38:48,047 [main] TRACE ClassBuilder - Class Class1 (0 in package Informative) +2024-09-07 12:38:48,074 [main] DEBUG AssociationEndBuilder - Updated target type to Class1 +2024-09-07 12:38:48,074 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=9, uuid=d9bbaaab-88c8-37ca-b324-ef05c8e21d9f, since=null, name=MyClass, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=10, uuid=eae8cb7a-f8f8-3531-a271-d09a8cc84d5c, since=null, name=Class1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class1, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2130, uuid={06ABE750-E688-496b-A200-8708982212FA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,075 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=9, uuid=d9bbaaab-88c8-37ca-b324-ef05c8e21d9f, since=null, name=MyClass, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=10, uuid=eae8cb7a-f8f8-3531-a271-d09a8cc84d5c, since=null, name=Class1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class1, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2130, uuid={06ABE750-E688-496b-A200-8708982212FA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Informative::Class1 +2024-09-07 12:38:48,075 [main] TRACE ClassBuilder - read from EA: Informative::Class1 +2024-09-07 12:38:48,075 [main] TRACE ClassBuilder - Class End1ForAssocClass (0 in package Informative) +2024-09-07 12:38:48,075 [main] DEBUG AssociationEndBuilder - Updated source type to End1ForAssocClass +2024-09-07 12:38:48,075 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=13, uuid=c51ce410-c124-310e-8db5-e4b97fc2af39, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=End1ForAssocClass, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=14, uuid=aab32389-22bc-325a-af60-6eb525ffdc56, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=unspecified], _objData=UmlObjectData [id=2133, uuid={175AA1AC-B15C-4ccc-8BE5-A8951025FF94}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,076 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=13, uuid=c51ce410-c124-310e-8db5-e4b97fc2af39, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=End1ForAssocClass, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=14, uuid=aab32389-22bc-325a-af60-6eb525ffdc56, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=unspecified], _objData=UmlObjectData [id=2133, uuid={175AA1AC-B15C-4ccc-8BE5-A8951025FF94}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Informative::End1ForAssocClass +2024-09-07 12:38:48,076 [main] TRACE ClassBuilder - read from EA: Informative::End1ForAssocClass +2024-09-07 12:38:48,076 [main] TRACE ClassBuilder - Class End2ForAssocClass (0 in package Informative) +2024-09-07 12:38:48,076 [main] DEBUG AssociationEndBuilder - Updated target type to End2ForAssocClass +2024-09-07 12:38:48,076 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=13, uuid=c51ce410-c124-310e-8db5-e4b97fc2af39, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=End1ForAssocClass, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=14, uuid=aab32389-22bc-325a-af60-6eb525ffdc56, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=End2ForAssocClass, _multiplicity=[?..?], _navigable=unspecified], _objData=UmlObjectData [id=2133, uuid={175AA1AC-B15C-4ccc-8BE5-A8951025FF94}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Informative::End2ForAssocClass +2024-09-07 12:38:48,076 [main] TRACE ClassBuilder - read from EA: Informative::End2ForAssocClass +2024-09-07 12:38:48,076 [main] TRACE ClassBuilder - Class AssocClass (0 in package Informative) +2024-09-07 12:38:48,077 [main] TRACE ClassBuilder - read from EA: Informative::AssocClass +2024-09-07 12:38:48,077 [main] TRACE ClassBuilder - Class HasIllegalTypeForAttr (0 in package Informative) +2024-09-07 12:38:48,078 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Informative::HasIllegalTypeForAttr, _objData=UmlObjectData [id=3284, uuid={37EE993E-B7A3-4940-8707-E8C0C720D620}, since=null, name=dummy, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=860, _eaTypeName=Bay, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,078 [main] TRACE ClassBuilder - read from EA: Informative::HasIllegalTypeForAttr +2024-09-07 12:38:48,078 [main] TRACE ClassBuilder - Class SomeSimpleType (0 in package Informative) +2024-09-07 12:38:48,078 [main] TRACE ClassBuilder - read from EA: Informative::SomeSimpleType +2024-09-07 12:38:48,078 [main] TRACE PackageBuilder - read PackageBuilder [_kind=TOP, _containingPackage=TC57CIM, _depth=0, _eaElementID=1494, _objData=UmlObjectData [id=71, uuid={00408437-C182-4d22-989A-93854EC27FFF}, since=null, name=Informative, alias=, stereotype=TempPckStereo, SecondPckStereo, visibility=public, txtDescription='', htmlDescription=''], _modelId=2, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=Informative, _objData=UmlObjectData [id=171, uuid={42D53082-F199-4c03-89A0-15308EF3019C}, since=null, name=Informative, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _classes=6 +2024-09-07 12:38:48,078 [main] INFO PackageBuilder - processing top package IEC61970 (2) ... +2024-09-07 12:38:48,079 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=IEC61970, _objData=UmlObjectData [id=111, uuid={FB07D92D-5F4D-4fdc-AD82-2376FAF51037}, since=null, name=Main, alias=, stereotype=, visibility=public, txtDescription=''This diagram shows all 61970 packages and their logical dependencies. +Test bold ignored.', htmlDescription='

'This diagram shows all 61970 packages and their logical dependencies.

Test bold ignored.

'], _portrait=false, _kind=LOGICAL] +2024-09-07 12:38:48,085 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->TC57CIM::IEC61970, _objData=UmlObjectData [id=3446, uuid={814038F7-206E-42aa-8183-AE2E302175F9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,085 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->TC57CIM::IEC61970, _objData=UmlObjectData [id=3447, uuid={78B6C7F1-FC16-4b0c-A685-CD6711DBB0A3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,085 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->TC57CIM::IEC61970, _objData=UmlObjectData [id=3449, uuid={51951675-AE25-4ac7-AA97-9DF3741A7BB9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,090 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=STATE, _isConnector=false, _objData=UmlObjectData [id=1497, uuid={5D5CC973-30B7-4d45-8CF7-92688076EFE3}, since=null, name=StateInPackage, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=IEC61970, _otherEndName=] +2024-09-07 12:38:48,090 [main] TRACE ClassBuilder - Class IEC61970CIMVersion (0 in package IEC61970) +2024-09-07 12:38:48,091 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61970::IEC61970CIMVersion, _objData=UmlObjectData [id=1271, uuid={8DADB97F-283D-40c7-A25A-D75E4C0D8507}, since=null, name=date, alias=, stereotype=, visibility=public, txtDescription='Form is YYYY-MM-DD for example for January 5, 2009 it is 2009-01-05. +Note: Bad date format on purpose.', htmlDescription='

Form is YYYY-MM-DD for example for January 5, 2009 it is 2009-01-05.

Note: Bad date format on purpose.

'], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=20119-08-01, _eaTypeId=640, _eaTypeName=AbsoluteDateTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,091 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61970::IEC61970CIMVersion, _objData=UmlObjectData [id=1272, uuid={B4E0B1B6-8794-406a-A4C6-CBB395E37A52}, since=null, name=version, alias=, stereotype=, visibility=public, txtDescription='Form is IEC61970CIMXXvYY where XX is the major CIM package version and the YY is the minor version. For ecample IEC61970CIM13v18.', htmlDescription='

Form is IEC61970CIMXXvYY where XX is the major CIM package version and the YY is the minor version. For ecample IEC61970CIM13v18.

'], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=IEC61970CIM14v12, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,091 [main] TRACE ClassBuilder - read from EA: IEC61970::IEC61970CIMVersion +2024-09-07 12:38:48,092 [main] INFO PackageBuilder - processing package InformativeAndPrivate (1) ... +2024-09-07 12:38:48,092 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=InformativeAndPrivate, _objData=UmlObjectData [id=157, uuid={92D3B208-D121-484b-A06A-60F4509332B7}, since=null, name=Informative, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,092 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=2102, uuid={6D2E1FAD-19CA-4e94-8EF5-ED52FEBE9A83}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=InformativeAndPrivate, _otherEndName=Package 'Other'] +2024-09-07 12:38:48,093 [main] TRACE ClassBuilder - Class InfClass2 (1 in package InformativeAndPrivate) +2024-09-07 12:38:48,093 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=InformativeAndPrivate::InfClass2, _objData=UmlObjectData [id=6709, uuid={2BFC1914-ECFF-49b5-8F28-BF20BD1E1FE3}, since=null, name=isToto, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,094 [main] DEBUG AssociationEndBuilder - Updated target type to InfClass2 +2024-09-07 12:38:48,095 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=35, uuid=2f9290f0-d27a-3d97-ae39-5fb8a74e9bfd, since=null, name=C1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified, 1_taggedValues{srcTag=a2}], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=36, uuid=085b8b1d-ca40-3c55-9182-189f9ca828d4, since=null, name=C2, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=InfClass2, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2096, uuid={5145D6E8-2DF0-42c7-9CB4-FF75741DBBFA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false, 1_taggedValues{assocTag=a1}] +2024-09-07 12:38:48,095 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=35, uuid=2f9290f0-d27a-3d97-ae39-5fb8a74e9bfd, since=null, name=C1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified, 1_taggedValues{srcTag=a2}], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=36, uuid=085b8b1d-ca40-3c55-9182-189f9ca828d4, since=null, name=C2, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=InfClass2, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2096, uuid={5145D6E8-2DF0-42c7-9CB4-FF75741DBBFA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false, 1_taggedValues{assocTag=a1}] as target to InformativeAndPrivate::InfClass2 +2024-09-07 12:38:48,095 [main] TRACE ClassBuilder - read from EA: InformativeAndPrivate::InfClass2 +2024-09-07 12:38:48,095 [main] TRACE ClassBuilder - Class InfClassContainingEmbeddedClass (2 in package InformativeAndPrivate) +2024-09-07 12:38:48,095 [main] TRACE ClassBuilder - Class EmbeddedClass (0 in package InformativeAndPrivate) +2024-09-07 12:38:48,096 [main] TRACE ClassBuilder - read from EA: InformativeAndPrivate::EmbeddedClass +2024-09-07 12:38:48,096 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=false, _objData=UmlObjectData [id=1496, uuid={A7ED1A2C-8304-40f4-8CF5-D03A18C789CF}, since=null, name=EmbeddedClass, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=InfClassContainingEmbeddedClass, _otherEndName=] +2024-09-07 12:38:48,096 [main] DEBUG AssociationEndBuilder - Updated source type to InfClassContainingEmbeddedClass +2024-09-07 12:38:48,096 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=35, uuid=2f9290f0-d27a-3d97-ae39-5fb8a74e9bfd, since=null, name=C1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=InfClassContainingEmbeddedClass, _multiplicity=[0..1], _navigable=unspecified, 1_taggedValues{srcTag=a2}], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=36, uuid=085b8b1d-ca40-3c55-9182-189f9ca828d4, since=null, name=C2, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=InfClass2, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2096, uuid={5145D6E8-2DF0-42c7-9CB4-FF75741DBBFA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false, 1_taggedValues{assocTag=a1}] as source to InformativeAndPrivate::InfClassContainingEmbeddedClass +2024-09-07 12:38:48,096 [main] TRACE ClassBuilder - read from EA: InformativeAndPrivate::InfClassContainingEmbeddedClass +2024-09-07 12:38:48,097 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61970, _depth=1, _eaElementID=1448, _objData=UmlObjectData [id=55, uuid={D77F6B2A-FE65-4b60-9074-2C6AE2A60EC4}, since=null, name=InformativeAndPrivate, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _modelId=2, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=2102, uuid={6D2E1FAD-19CA-4e94-8EF5-ED52FEBE9A83}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=InformativeAndPrivate, _otherEndName=Package 'Other']], 1_diagrams=[DiagramBuilder [_containingPackage=InformativeAndPrivate, _objData=UmlObjectData [id=157, uuid={92D3B208-D121-484b-A06A-60F4509332B7}, since=null, name=Informative, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _classes=2 +2024-09-07 12:38:48,097 [main] INFO PackageBuilder - processing package DocIEC61970 (2) ... +2024-09-07 12:38:48,097 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=DocIEC61970, _objData=UmlObjectData [id=321, uuid={0BB28151-6215-4b7c-B4B8-991AF32678BA}, since=null, name=MyDocFigure, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,098 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3028, uuid={FCA86298-2230-4142-B759-5A340015A28D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Documentation diagram: Although within an informative package, it should always be exported if generating doc enabled.', htmlDescription='

Documentation diagram: Although within an informative package, it should always be exported if generating doc enabled.

'], _containingPackage=DocIEC61970, _otherEndName=] +2024-09-07 12:38:48,098 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61970, _depth=1, _eaElementID=3027, _objData=UmlObjectData [id=166, uuid={295EC851-E939-47e6-AD36-5B756D64E8A3}, since=null, name=DocIEC61970, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=2, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3028, uuid={FCA86298-2230-4142-B759-5A340015A28D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Documentation diagram: Although within an informative package, it should always be exported if generating doc enabled.', htmlDescription='

Documentation diagram: Although within an informative package, it should always be exported if generating doc enabled.

'], _containingPackage=DocIEC61970, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=DocIEC61970, _objData=UmlObjectData [id=321, uuid={0BB28151-6215-4b7c-B4B8-991AF32678BA}, since=null, name=MyDocFigure, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]] +2024-09-07 12:38:48,099 [main] INFO PackageBuilder - processing package Domain (3) ... +2024-09-07 12:38:48,099 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Domain, _objData=UmlObjectData [id=119, uuid={DB3006EC-40EF-48f9-AE0B-54A4590505A4}, since=null, name=BasicDatatypes, alias=, stereotype=oneDiaStero, secondDiaStereo, visibility=public, txtDescription='This diagram shows basic datatypes that are the basis for all other datatypes.', htmlDescription='

This diagram shows basic datatypes that are the basis for all other datatypes.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,099 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Domain, _objData=UmlObjectData [id=117, uuid={83A53C50-B2DB-4b88-B1DB-E520708685BF}, since=null, name=TimeDatatypes, alias=, stereotype=docStero, visibility=public, txtDescription='This diagram show time related data types', htmlDescription='

This diagram show time related data types

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,100 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61970::Domain, _objData=UmlObjectData [id=485, uuid={0FBB1D80-1C4A-4f3f-9812-CD22581D58B6}, since=null, name=, alias=, stereotype=deprecated, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,102 [main] TRACE ClassBuilder - Class AbsoluteDateTime (1 in package Domain) +2024-09-07 12:38:48,102 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::AbsoluteDateTime, _objData=UmlObjectData [id=1440, uuid={CFF950F8-C337-424c-97FF-B8A4168598B5}, since=null, name=protectedAttribute, alias=, stereotype=, visibility=protected, txtDescription='String representation of date and time, refer to description of the class.', htmlDescription='

String representation of date and time, refer to description of the class.

'], _isConst=false, _isStatic=false, _multiplicity=[2..5], _initValue=, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,102 [main] TRACE ClassBuilder - read from EA: Domain::AbsoluteDateTime +2024-09-07 12:38:48,102 [main] TRACE ClassBuilder - Class ActivePower (2 in package Domain) +2024-09-07 12:38:48,103 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::ActivePower, _objData=UmlObjectData [id=1434, uuid={A3961E95-7DD0-4d68-A41A-FDC07295CD2B}, since=null, name=multiplier, alias=, stereotype=European, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=634, _eaTypeName=UnitMultiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,103 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::ActivePower, _objData=UmlObjectData [id=1435, uuid={8C27ACD4-E6D7-407f-B0AF-B545966B9337}, since=null, name=unit, alias=, stereotype=deprecated, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=W, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,103 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::ActivePower, _objData=UmlObjectData [id=1436, uuid={133597D7-9050-4335-B968-86AF7E16558C}, since=null, name=value, alias=, stereotype=custom, invalid, European, deprecated, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,103 [main] TRACE ClassBuilder - read from EA: Domain::ActivePower +2024-09-07 12:38:48,103 [main] TRACE ClassBuilder - Class ActivePowerChangeRate (3 in package Domain) +2024-09-07 12:38:48,103 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::ActivePowerChangeRate, _objData=UmlObjectData [id=1402, uuid={127E7AD6-A19D-4a00-84C2-6DE69D31A319}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=634, _eaTypeName=UnitMultiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,104 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::ActivePowerChangeRate, _objData=UmlObjectData [id=1403, uuid={D89B1C84-0EB0-4ea0-ACD8-F59965B01026}, since=null, name=unit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=true, _multiplicity=[0..1], _initValue=W/s, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,104 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::ActivePowerChangeRate, _objData=UmlObjectData [id=1404, uuid={9AC71195-FE05-4022-805D-524DFF496593}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=dummy, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,104 [main] TRACE ClassBuilder - read from EA: Domain::ActivePowerChangeRate +2024-09-07 12:38:48,104 [main] TRACE ClassBuilder - Class ApparentPower (4 in package Domain) +2024-09-07 12:38:48,104 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::ApparentPower, _objData=UmlObjectData [id=1368, uuid={C363463C-85C7-487f-BE31-B6444DAB07DD}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=634, _eaTypeName=UnitMultiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,104 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::ApparentPower, _objData=UmlObjectData [id=1369, uuid={C93DE952-5AF9-40cc-9792-4D2372DC5EEF}, since=null, name=unit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=VA, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,107 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::ApparentPower, _objData=UmlObjectData [id=1370, uuid={FEE24CD4-5876-4e4c-B179-AEAA3E11B738}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{tag=val}] +2024-09-07 12:38:48,108 [main] TRACE ClassBuilder - read from EA: Domain::ApparentPower +2024-09-07 12:38:48,108 [main] TRACE ClassBuilder - Class Boolean (5 in package Domain) +2024-09-07 12:38:48,108 [main] TRACE ClassBuilder - read from EA: Domain::Boolean +2024-09-07 12:38:48,108 [main] TRACE ClassBuilder - Class Currency (6 in package Domain) +2024-09-07 12:38:48,109 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Currency, _objData=UmlObjectData [id=1287, uuid={BD7715AD-8607-429e-905E-CA26C170ECBF}, since=null, name=USD, alias=, stereotype=enum, visibility=public, txtDescription='US dollar', htmlDescription='

US dollar

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,109 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Currency, _objData=UmlObjectData [id=1288, uuid={F9D2BF52-65C4-45f2-91C7-F0990AF9B19F}, since=null, name=EUR, alias=, stereotype=enum, visibility=public, txtDescription='European euro', htmlDescription='

European euro

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,109 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Currency, _objData=UmlObjectData [id=1289, uuid={B68ED9D0-E666-4c95-B4C8-3A2C8760C838}, since=null, name=AUD, alias=, stereotype=enum, visibility=public, txtDescription='Australian dollar', htmlDescription='

Australian dollar

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,109 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Currency, _objData=UmlObjectData [id=1290, uuid={911D1995-C80E-4d3e-914F-A68C43786DDB}, since=null, name=CAD, alias=, stereotype=enum, visibility=public, txtDescription='Canadian dollar', htmlDescription='

Canadian dollar

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,109 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Currency, _objData=UmlObjectData [id=1291, uuid={5EFD5A2E-31B9-4aea-84D5-914F1C0A31DC}, since=null, name=CHF, alias=, stereotype=enum, visibility=public, txtDescription='Swiss francs', htmlDescription='

Swiss francs

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,110 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Currency, _objData=UmlObjectData [id=1292, uuid={FE84795F-1D80-4a7f-B2FC-E502533890BD}, since=null, name=CNY, alias=, stereotype=enum, visibility=public, txtDescription='Chinese yuan renminbi', htmlDescription='

Chinese yuan renminbi

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,110 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Currency, _objData=UmlObjectData [id=1293, uuid={2B725900-37D7-430e-A696-95A9DE1853F5}, since=null, name=DKK, alias=, stereotype=enum, visibility=public, txtDescription='Danish crown', htmlDescription='

Danish crown

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,110 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Currency, _objData=UmlObjectData [id=1294, uuid={5284C310-CFA9-4f8c-9FC1-89878D959008}, since=null, name=GBP, alias=, stereotype=enum, visibility=public, txtDescription='British pound', htmlDescription='

British pound

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,110 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Currency, _objData=UmlObjectData [id=1295, uuid={D6821076-1C19-4116-9141-1E3B66B12E37}, since=null, name=JPY, alias=, stereotype=enum, visibility=public, txtDescription='Japanese yen', htmlDescription='

Japanese yen

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,110 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Currency, _objData=UmlObjectData [id=1296, uuid={C8641234-DC52-4a27-84B0-840661758085}, since=null, name=NOK, alias=, stereotype=enum, visibility=public, txtDescription='Norwegian crown', htmlDescription='

Norwegian crown

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,110 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Currency, _objData=UmlObjectData [id=1297, uuid={4EA192E2-0BD3-4085-8CE4-6078AEA30D97}, since=null, name=RUR, alias=, stereotype=enum, visibility=public, txtDescription='Russian ruble', htmlDescription='

Russian ruble

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,110 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Currency, _objData=UmlObjectData [id=1298, uuid={52FEE14B-6D80-4799-97EE-C8B3734C7B0F}, since=null, name=SEK, alias=, stereotype=enum, visibility=public, txtDescription='Swedish crown', htmlDescription='

Swedish crown

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,111 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Currency, _objData=UmlObjectData [id=1299, uuid={ABB74D98-5437-40d9-AB9B-575FF2F27A53}, since=null, name=INR, alias=, stereotype=enum, visibility=public, txtDescription='India rupees', htmlDescription='

India rupees

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,111 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Currency, _objData=UmlObjectData [id=1300, uuid={3D3DF56A-8E85-4f34-AD5D-C16CB7171783}, since=null, name=other, alias=, stereotype=enum, deprecated, visibility=public, txtDescription='Another type of currency.', htmlDescription='

Another type of currency.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,111 [main] TRACE ClassBuilder - read from EA: Domain::Currency +2024-09-07 12:38:48,111 [main] TRACE ClassBuilder - Class Float (7 in package Domain) +2024-09-07 12:38:48,112 [main] TRACE ClassBuilder - read from EA: Domain::Float +2024-09-07 12:38:48,112 [main] TRACE ClassBuilder - Class Integer (8 in package Domain) +2024-09-07 12:38:48,113 [main] TRACE ClassBuilder - read from EA: Domain::Integer +2024-09-07 12:38:48,113 [main] TRACE ClassBuilder - Class Money (9 in package Domain) +2024-09-07 12:38:48,113 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Money, _objData=UmlObjectData [id=1323, uuid={86CC9B3D-6DFC-4a34-9152-1BD808FBDD41}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=634, _eaTypeName=UnitMultiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,113 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Money, _objData=UmlObjectData [id=1324, uuid={FA0E49C2-B5F3-4084-948C-2A553D874695}, since=null, name=unit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=600, _eaTypeName=Currency, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,113 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Money, _objData=UmlObjectData [id=1325, uuid={FD1C5A68-05E0-448a-9515-88FB188D1A41}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,114 [main] TRACE ClassBuilder - read from EA: Domain::Money +2024-09-07 12:38:48,114 [main] TRACE ClassBuilder - Class PerCent (10 in package Domain) +2024-09-07 12:38:48,114 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::PerCent, _objData=UmlObjectData [id=1365, uuid={A2810EB7-9B4B-4386-9EE5-CAE5AB1E6E2C}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=none, _eaTypeId=634, _eaTypeName=UnitMultiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,114 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::PerCent, _objData=UmlObjectData [id=1366, uuid={A1336F58-9A3A-462d-A932-4C80CE9A24AB}, since=null, name=unit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=none, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,114 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::PerCent, _objData=UmlObjectData [id=1367, uuid={3F3F1095-2284-438d-89FF-699BCA187532}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='Normally 0 - 100 on a defined base', htmlDescription='

Normally 0 - 100 on a defined base

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,115 [main] TRACE ClassBuilder - read from EA: Domain::PerCent +2024-09-07 12:38:48,115 [main] TRACE ClassBuilder - Class Seconds (11 in package Domain) +2024-09-07 12:38:48,115 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Seconds, _objData=UmlObjectData [id=1377, uuid={DF58DF5F-F450-4b71-A1A9-1BBA5C696E5C}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=none, _eaTypeId=634, _eaTypeName=UnitMultiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,115 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Seconds, _objData=UmlObjectData [id=1378, uuid={383E0AEB-B11C-4c02-8C56-5E84FCDA0D3B}, since=null, name=unit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=s, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,115 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Seconds, _objData=UmlObjectData [id=1379, uuid={EC69405D-C44E-4c12-BAD5-58A3C1375649}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='Time, in seconds', htmlDescription='

Time, in seconds

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,116 [main] TRACE ClassBuilder - read from EA: Domain::Seconds +2024-09-07 12:38:48,116 [main] TRACE ClassBuilder - Class String (12 in package Domain) +2024-09-07 12:38:48,116 [main] TRACE ClassBuilder - read from EA: Domain::String +2024-09-07 12:38:48,116 [main] TRACE ClassBuilder - Class UnitMultiplier (13 in package Domain) +2024-09-07 12:38:48,116 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitMultiplier, _objData=UmlObjectData [id=1417, uuid={90F83546-DD55-4cf8-9E01-DD8F69D74A8D}, since=null, name=p, alias=, stereotype=enum, visibility=public, txtDescription='Pico 10-12', htmlDescription='

Pico 10-12

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,116 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitMultiplier, _objData=UmlObjectData [id=1418, uuid={EA61DA27-05DF-41c7-B459-F1194928062C}, since=null, name=n, alias=, stereotype=enum, visibility=public, txtDescription='Nano 10-9', htmlDescription='

Nano 10-9

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,117 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitMultiplier, _objData=UmlObjectData [id=1419, uuid={FF8E9CD6-A459-47ab-A71E-E69857742CE1}, since=null, name=micro, alias=, stereotype=enum, visibility=public, txtDescription='Micro 10**-6', htmlDescription='

Micro 10**-6

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,117 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitMultiplier, _objData=UmlObjectData [id=1420, uuid={E7A60C22-3D12-49c5-8F18-870B1A39A1AA}, since=null, name=m, alias=, stereotype=enum, visibility=public, txtDescription='Milli 10**-3', htmlDescription='

Milli 10**-3

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,117 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitMultiplier, _objData=UmlObjectData [id=1421, uuid={1219082C-9AED-439c-B862-8CA874195BA0}, since=null, name=c, alias=, stereotype=enum, visibility=public, txtDescription='Centi 10**-2', htmlDescription='

Centi 10**-2

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,117 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitMultiplier, _objData=UmlObjectData [id=1422, uuid={4E630955-DF5D-403d-A377-7ED5FF85978D}, since=null, name=d, alias=, stereotype=enum, visibility=public, txtDescription='Deci 10**-1', htmlDescription='

Deci 10**-1

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,117 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitMultiplier, _objData=UmlObjectData [id=1423, uuid={C868627C-3B72-4bc8-879D-E177E9059A22}, since=null, name=k, alias=, stereotype=enum, visibility=public, txtDescription='Kilo 10**3', htmlDescription='

Kilo 10**3

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,117 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitMultiplier, _objData=UmlObjectData [id=1424, uuid={F956FDD6-8C6E-427d-A51A-22A1D75BE1C3}, since=null, name=M, alias=, stereotype=enum, visibility=public, txtDescription='Mega 10**6', htmlDescription='

Mega 10**6

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,118 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitMultiplier, _objData=UmlObjectData [id=1425, uuid={351B5D79-6203-48e5-9D9E-ECD7FB7CA8A6}, since=null, name=G, alias=, stereotype=enum, visibility=public, txtDescription='Giga 10**9', htmlDescription='

Giga 10**9

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,118 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitMultiplier, _objData=UmlObjectData [id=1426, uuid={F5185FB9-24E6-47c6-BB4D-259FDF678329}, since=null, name=T, alias=, stereotype=enum, visibility=public, txtDescription='Tera 10**12', htmlDescription='

Tera 10**12

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,118 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitMultiplier, _objData=UmlObjectData [id=1427, uuid={C352D73C-B9DC-4e7d-B1DB-5BE6D4BAE868}, since=null, name=none, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,118 [main] TRACE ClassBuilder - read from EA: Domain::UnitMultiplier +2024-09-07 12:38:48,118 [main] TRACE ClassBuilder - Class UnitSymbol (14 in package Domain) +2024-09-07 12:38:48,118 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1344, uuid={F3C2C2B7-88D3-4144-A993-6BB01538909F}, since=null, name=min, alias=, stereotype=enum, visibility=public, txtDescription='Time in minutes', htmlDescription='

Time in minutes

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,119 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1345, uuid={8D5395D7-20D2-4d16-8AA0-46BE6B3A4905}, since=null, name=h, alias=, stereotype=enum, visibility=public, txtDescription='Time in hours', htmlDescription='

Time in hours

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,119 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1346, uuid={6F295BE4-CF54-4781-AE65-554D3DA58236}, since=null, name=deg, alias=, stereotype=enum, visibility=public, txtDescription='Plane angle in degrees', htmlDescription='

Plane angle in degrees

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,119 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1347, uuid={C45DCC7F-FD4A-4359-84C6-D740C56234E9}, since=null, name=rad, alias=, stereotype=enum, visibility=public, txtDescription='Plane angle in radians', htmlDescription='

Plane angle in radians

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,119 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1348, uuid={54E72D74-D283-4720-94FB-A411C9888D14}, since=null, name=J, alias=, stereotype=enum, visibility=public, txtDescription='Energy in joule', htmlDescription='

Energy in joule

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,119 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1349, uuid={B4811904-31E9-4915-A3CB-432E4AF2C744}, since=null, name=N, alias=, stereotype=enum, visibility=public, txtDescription='Force in newton', htmlDescription='

Force in newton

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,119 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1350, uuid={910795B5-E8CB-467a-B6DA-FCEB7F9C5AE0}, since=null, name=S, alias=, stereotype=enum, visibility=public, txtDescription='Conductance in siemens', htmlDescription='

Conductance in siemens

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,120 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1351, uuid={BBC06058-30E3-4851-A905-93E9B23F32D5}, since=null, name=none, alias=, stereotype=enum, visibility=public, txtDescription='Dimension less quantity, e.g. count, per unit, etc.', htmlDescription='

Dimension less quantity, e.g. count, per unit, etc.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,120 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1352, uuid={FEEB3794-F2F0-4f0e-AD18-3C217F641EE5}, since=null, name=Hz, alias=, stereotype=enum, visibility=public, txtDescription='Frequency in hertz', htmlDescription='

Frequency in hertz

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,120 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1353, uuid={8CB1FDE2-DF64-4bb1-AF2F-DF8025D92EAA}, since=null, name=g, alias=, stereotype=enum, visibility=public, txtDescription='Mass in gram', htmlDescription='

Mass in gram

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=4, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,120 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1354, uuid={23A2B824-9DCE-4fde-A626-A1D9C9F60C28}, since=null, name=Pa, alias=, stereotype=enum, visibility=public, txtDescription='Pressure in pascal (n/m2)', htmlDescription='

Pressure in pascal (n/m2)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,120 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1355, uuid={12DEDC13-8E22-481f-8DBE-977C82791D07}, since=null, name=m, alias=, stereotype=enum, visibility=public, txtDescription='Length in meter', htmlDescription='

Length in meter

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,120 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1356, uuid={38241F8A-C4AF-4a92-96AD-D80010BDCEC6}, since=null, name=m2, alias=, stereotype=enum, visibility=public, txtDescription='Area in square meters', htmlDescription='

Area in square meters

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,120 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1357, uuid={24D5EF94-21EB-4d21-9651-E1D865EEC09D}, since=null, name=m3, alias=, stereotype=enum, visibility=public, txtDescription='Volume in cubic meters', htmlDescription='

Volume in cubic meters

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,121 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1358, uuid={31446F6F-8A9C-4aa2-BFBA-C1B6E30C6F39}, since=null, name=V/VAr, alias=, stereotype=enum, visibility=public, txtDescription='Volt per volt ampere reactive', htmlDescription='

Volt per volt ampere reactive

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,121 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1359, uuid={FCF2F195-D0A1-421a-8210-46757087B50C}, since=null, name=W/Hz, alias=, stereotype=enum, visibility=public, txtDescription='Watt per hertz', htmlDescription='

Watt per hertz

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,121 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1360, uuid={2365E502-B3DD-4499-B7B5-3B888E047BC9}, since=null, name=J/s, alias=, stereotype=enum, visibility=public, txtDescription='Joule per second', htmlDescription='

Joule per second

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,121 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1361, uuid={203D16EC-F37B-4a03-8423-D8519C75B46F}, since=null, name=s-1, alias=, stereotype=enum, visibility=public, txtDescription='per second', htmlDescription='

per second

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,121 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1362, uuid={029189EA-27B3-48cd-BA61-6825B3E0679E}, since=null, name=kg/J, alias=, stereotype=enum, visibility=public, txtDescription='Mass per energy', htmlDescription='

Mass per energy

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,121 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1363, uuid={4C8D790D-7499-43cb-A78C-CCAAA0812F03}, since=null, name=W/s, alias=, stereotype=enum, visibility=public, txtDescription='Watt per second', htmlDescription='

Watt per second

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,121 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1364, uuid={EBC50519-2749-4d98-887C-A3BB259AA6D4}, since=null, name=Hz-1, alias=, stereotype=enum, visibility=public, txtDescription='per Hertz', htmlDescription='

per Hertz

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,122 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1331, uuid={2A6C639B-07EF-4ec1-90FE-7F3B55FEC466}, since=null, name=VA, alias=, stereotype=enum, visibility=public, txtDescription='Apparent power in volt ampere', htmlDescription='

Apparent power in volt ampere

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,122 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1332, uuid={0C6FC879-3330-40c5-840B-FA4D11DD92CA}, since=null, name=W, alias=, stereotype=enum, visibility=public, txtDescription='Active power in watt', htmlDescription='

Active power in watt

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,122 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1333, uuid={EB818682-FB29-4a83-ADDD-7D9A42DF05FA}, since=null, name=VAr, alias=, stereotype=enum, visibility=public, txtDescription='Reactive power in volt ampere reactive', htmlDescription='

Reactive power in volt ampere reactive

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,122 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1334, uuid={BC16CD17-F133-46fc-BA52-A3568AE7389E}, since=null, name=VAh, alias=, stereotype=enum, visibility=public, txtDescription='Apparent energy in volt ampere hours', htmlDescription='

Apparent energy in volt ampere hours

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=true, _type=null] +2024-09-07 12:38:48,122 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1335, uuid={7069D1E3-C2D9-4a10-8B91-0D9AC394F38F}, since=null, name=Wh, alias=, stereotype=, visibility=public, txtDescription='Real energy in what hours', htmlDescription='

Real energy in what hours

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,122 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1336, uuid={D0851FC4-83F3-4911-B874-CE37B0104941}, since=null, name=VArh, alias=, stereotype=enum, visibility=public, txtDescription='Reactive energy in volt ampere reactive hours', htmlDescription='

Reactive energy in volt ampere reactive hours

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,125 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1337, uuid={7B623DFC-A240-4023-AC11-C8A279608CFE}, since=null, name=V, alias=, stereotype=enum, visibility=public, txtDescription='Voltage in volt', htmlDescription='

Voltage in volt

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,125 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1338, uuid={4A304014-4EC4-4c01-AC1C-E1C9D68AF390}, since=null, name=ohm, alias=, stereotype=enum, visibility=public, txtDescription='Resistance in ohm', htmlDescription='

Resistance in ohm

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,125 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1339, uuid={B9C0CD6C-435E-4dbc-9613-BB1EF4A950C1}, since=null, name=A, alias=, stereotype=enum, visibility=public, txtDescription='Current in ampere', htmlDescription='

Current in ampere

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,126 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1340, uuid={DE960AB5-4C9B-4079-8BD4-F158F1785B5C}, since=null, name=F, alias=, stereotype=enum, visibility=public, txtDescription='Capacitance in farad', htmlDescription='

Capacitance in farad

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,126 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1341, uuid={7B87ECEA-CB89-4395-9C1A-BF342DBB00A7}, since=null, name=H, alias=, stereotype=enum, visibility=public, txtDescription='Inductance in henry', htmlDescription='

Inductance in henry

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,126 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1342, uuid={3D791F1B-3826-43c9-8B95-384A2CEC6B1D}, since=null, name=ºC, alias=, stereotype=enum, visibility=public, txtDescription='Relative temperature in degrees Celsius', htmlDescription='

Relative temperature in degrees Celsius

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,126 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1343, uuid={173DF248-0E38-42af-A33E-460F413D5C35}, since=null, name=s, alias=, stereotype=enum, visibility=public, txtDescription='Time in seconds', htmlDescription='

Time in seconds

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,127 [main] TRACE ClassBuilder - read from EA: Domain::UnitSymbol +2024-09-07 12:38:48,127 [main] TRACE ClassBuilder - Class Voltage (15 in package Domain) +2024-09-07 12:38:48,127 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Voltage, _objData=UmlObjectData [id=1304, uuid={5CFD034E-D7E1-4d20-BE0B-BB9E4F9D2D4B}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=634, _eaTypeName=UnitMultiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,127 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Voltage, _objData=UmlObjectData [id=1305, uuid={6E959BD4-0ACC-4884-99F5-0B158661A3D9}, since=null, name=unit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=V, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,127 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Voltage, _objData=UmlObjectData [id=1306, uuid={C86122FF-94E1-4244-975A-BA865D8135BC}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,127 [main] TRACE ClassBuilder - read from EA: Domain::Voltage +2024-09-07 12:38:48,128 [main] TRACE ClassBuilder - Class WithSingleLiteral (16 in package Domain) +2024-09-07 12:38:48,128 [main] DEBUG DbAttributeBuilder - fixing lower bound '' to 1 for enum:UmlObjectData [id=3289, uuid={121A7175-5FA9-45a6-81BF-B7266809B519}, since=null, name=singleLiteral, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''] +2024-09-07 12:38:48,128 [main] DEBUG DbAttributeBuilder - fixing upper bound '' to 1 for enum:UmlObjectData [id=3289, uuid={121A7175-5FA9-45a6-81BF-B7266809B519}, since=null, name=singleLiteral, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''] +2024-09-07 12:38:48,128 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::WithSingleLiteral, _objData=UmlObjectData [id=3289, uuid={121A7175-5FA9-45a6-81BF-B7266809B519}, since=null, name=singleLiteral, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,128 [main] TRACE ClassBuilder - read from EA: Domain::WithSingleLiteral +2024-09-07 12:38:48,128 [main] TRACE ClassBuilder - Class YesNo (17 in package Domain) +2024-09-07 12:38:48,128 [main] DEBUG DbAttributeBuilder - fixing lower bound '' to 1 for enum:UmlObjectData [id=3299, uuid={5F23052B-650E-405e-9FB0-71CD876FB873}, since=null, name=Yes, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''] +2024-09-07 12:38:48,129 [main] DEBUG DbAttributeBuilder - fixing upper bound '' to 1 for enum:UmlObjectData [id=3299, uuid={5F23052B-650E-405e-9FB0-71CD876FB873}, since=null, name=Yes, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''] +2024-09-07 12:38:48,129 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::YesNo, _objData=UmlObjectData [id=3299, uuid={5F23052B-650E-405e-9FB0-71CD876FB873}, since=null, name=Yes, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,129 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::YesNo, _objData=UmlObjectData [id=3300, uuid={3B880AE1-415A-482b-A5C8-B5FFF8D15CDF}, since=null, name=No, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,129 [main] TRACE ClassBuilder - read from EA: Domain::YesNo +2024-09-07 12:38:48,129 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61970, _depth=1, _eaElementID=573, _objData=UmlObjectData [id=41, uuid={0134E45C-F32A-4522-A725-E07B0AE4CB57}, since=null, name=Domain, alias=Example alias name, stereotype=Global, visibility=public, txtDescription='the domain package is a data dictionary of quantities and units that define datatypes for attributes (properties) that may be used by any class in any other package. +This package contains the definition of primitive datatypes, including units of measure and permissible values. Each datatype contains a value attribute and an optional unit of measure, which is specified as a static variable initialized to the textual description of the unit of measure. The value of the "units" string may be country or customer specific. Typical values are given. Permissible values for enumerations are listed in the documentation for the attribute using UML constraint syntax inside curly braces. Lengths of variable strings are listed in the descriptive text where required.', htmlDescription='

the domain package is a data dictionary of quantities and units that define datatypes for attributes (properties) that may be used by any class in any other package.

This package contains the definition of primitive datatypes, including units of measure and permissible values. Each datatype contains a value attribute and an optional unit of measure, which is specified as a static variable initialized to the textual description of the unit of measure. The value of the "units" string may be country or customer specific. Typical values are given. Permissible values for enumerations are listed in the documentation for the attribute using UML constraint syntax inside curly braces. Lengths of variable strings are listed in the descriptive text where required.

'], _modelId=2, _selfDependent=false, 2_diagrams=[DiagramBuilder [_containingPackage=Domain, _objData=UmlObjectData [id=119, uuid={DB3006EC-40EF-48f9-AE0B-54A4590505A4}, since=null, name=BasicDatatypes, alias=, stereotype=oneDiaStero, secondDiaStereo, visibility=public, txtDescription='This diagram shows basic datatypes that are the basis for all other datatypes.', htmlDescription='

This diagram shows basic datatypes that are the basis for all other datatypes.

'], _portrait=true, _kind=LOGICAL], DiagramBuilder [_containingPackage=Domain, _objData=UmlObjectData [id=117, uuid={83A53C50-B2DB-4b88-B1DB-E520708685BF}, since=null, name=TimeDatatypes, alias=, stereotype=docStero, visibility=public, txtDescription='This diagram show time related data types', htmlDescription='

This diagram show time related data types

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsTarget=1, _classes=17 +2024-09-07 12:38:48,129 [main] INFO PackageBuilder - processing package Core (4) ... +2024-09-07 12:38:48,130 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Core, _objData=UmlObjectData [id=153, uuid={F791662C-7488-4578-88E1-21352F9799CF}, since=null, name=Main, alias=, stereotype=, visibility=public, txtDescription='"This diagram is intended to show all classes needed for any application of the CIM for modeling transmission and generation systems. +Test bold ignored.', htmlDescription='

"This diagram is intended to show all classes needed for any application of the CIM for modeling transmission and generation systems.

Test bold ignored.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,130 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Core, _objData=UmlObjectData [id=155, uuid={88289F74-ECDD-42e8-A693-6744785B1A0C}, since=null, name=Ownership, alias=, stereotype=Deprecated, visibility=public, txtDescription='doc present (but missing "." at its end) and starting with lower case letter', htmlDescription='

doc present (but missing "." at its end) and starting with lower case letter

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,130 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61970::Core, _objData=UmlObjectData [id=480, uuid={285C8813-D098-4165-89FE-151394F8B419}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], 1_taggedValues{depTag=value}] +2024-09-07 12:38:48,130 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61970::Core->IEC61970::Domain, _objData=UmlObjectData [id=485, uuid={0FBB1D80-1C4A-4f3f-9812-CD22581D58B6}, since=null, name=, alias=, stereotype=deprecated, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,132 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3029, uuid={F8743013-1839-4100-8A7A-A8F62B12BF60}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Note: Diagram does have <> stereotype, but I don't seem to find the means to display that anywhere in EA: neither diagram itself nor Project Browser (in contrast to other UML elements, such as class, package, etc.).', htmlDescription='

Note: Diagram does have <<deprecated>> stereotype, but I don't seem to find the means to display that anywhere in EA: neither diagram itself nor Project Browser (in contrast to other UML elements, such as class, package, etc.).

'], _containingPackage=Core, _otherEndName=] +2024-09-07 12:38:48,132 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3082, uuid={597FAD1D-4901-4aae-9B6F-EA32A226A6A2}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Both class and attribute (here: literal 'singleBreaker') have constraints, we can visualise only those on class.', htmlDescription='

Both class and attribute (here: literal 'singleBreaker') have constraints, we can visualise only those on class.

'], _containingPackage=Core, _otherEndName=] +2024-09-07 12:38:48,133 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3083, uuid={C037F9C1-53F1-43ae-BBF4-92F9C66EE3D7}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='attribute has constraint, but it cannot be displayed...', htmlDescription='

attribute has constraint, but it cannot be displayed...

'], _containingPackage=Core, _otherEndName=] +2024-09-07 12:38:48,133 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3084, uuid={E1C2884E-0577-41a7-ACBD-0C789F87546C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='constraint on generalisation can be specified. seems to be always displayed - cannot be hidden.', htmlDescription='

constraint on generalisation can be specified. seems to be always displayed - cannot be hidden.

'], _containingPackage=Core, _otherEndName=] +2024-09-07 12:38:48,133 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3085, uuid={9A93B88B-4383-4d6a-8BB3-9ABEAB06A27B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Core, _otherEndName=] +2024-09-07 12:38:48,133 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3086, uuid={FE9DCCF0-64F8-47d0-95BE-6D22F3B70814}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Need to enable Diagram option to show constraints, and optionally (if desired) inherited constraints.', htmlDescription='

Need to enable Diagram option to show constraints, and optionally (if desired) inherited constraints.

'], _containingPackage=Core, _otherEndName=] +2024-09-07 12:38:48,133 [main] TRACE ClassBuilder - Class BasePower (1 in package Core) +2024-09-07 12:38:48,134 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::BasePower, _objData=UmlObjectData [id=2100, uuid={9F2DC83B-B801-4b29-BD57-4781BD53A50A}, since=null, name=basePower, alias=, stereotype=, visibility=public, txtDescription='definition of base power.', htmlDescription='

definition of base power.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=616, _eaTypeName=ApparentPower, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,134 [main] TRACE ClassBuilder - read from EA: Core::BasePower +2024-09-07 12:38:48,134 [main] TRACE ClassBuilder - Class BaseVoltage (2 in package Core) +2024-09-07 12:38:48,134 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::BaseVoltage, _objData=UmlObjectData [id=2053, uuid={D37DA22A-916B-4a33-88AB-B77C229DB882}, since=null, name=protectedNominalVoltage, alias=, stereotype=, visibility=protected, txtDescription=''the' PowerSystemResource's base voltage.', htmlDescription='

'the' PowerSystemResource's base voltage.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=602, _eaTypeName=Voltage, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,135 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::BaseVoltage, _objData=UmlObjectData [id=2981, uuid={9451DDA7-F7F4-4efe-A373-99B36F51A8C5}, since=null, name=packagePrivateIsDC, alias=, stereotype=, visibility=package, txtDescription='"if true", this is a direct current base voltage and items assigned to this base voltage are also associated with a direct current capabilities. False indicates alternating current.', htmlDescription='

"if true", this is a direct current base voltage and items assigned to this base voltage are also associated with a direct current capabilities. False indicates alternating current.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,135 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::BaseVoltage, _objData=UmlObjectData [id=3249, uuid={48F97F30-E8FD-4e3d-85E1-6009E26B1435}, since=null, name=basePower, alias=, stereotype=, visibility=public, txtDescription='This is to test whether we print correctly multiple attributes of the same name (defined on different classes) within the data index table.', htmlDescription='

This is to test whether we print correctly multiple attributes of the same name (defined on different classes) within the data index table.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,135 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::BaseVoltage, _objData=UmlObjectData [id=3317, uuid={B3B2A77F-3967-4163-917F-7EC3BC0EF50C}, since=null, name=privateDummy, alias=, stereotype=, visibility=private, txtDescription='This is to test whether we print correctly multiple attributes of the same name (defined on different classes) within the data index table.', htmlDescription='

This is to test whether we print correctly multiple attributes of the same name (defined on different classes) within the data index table.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,136 [main] DEBUG AssociationEndBuilder - Updated target type to BaseVoltage +2024-09-07 12:38:48,136 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=166, uuid=2df96825-3bf0-3160-a555-a54fda61527c, since=null, name=VoltageLevel, alias=, stereotype=, visibility=public, txtDescription='The VoltageLevels having this BaseVoltage.', htmlDescription='

The VoltageLevels having this BaseVoltage.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=167, uuid=7e385884-ee3f-3d72-af09-7657d3ecd905, since=null, name=BaseVoltage, alias=, stereotype=, visibility=public, txtDescription='The base voltage used for all equipment within the VoltageLevel.', htmlDescription='

The base voltage used for all equipment within the VoltageLevel.

'], _type=BaseVoltage, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=120, uuid={F610FDC8-D98D-4367-99A9-E9CA1C8A8CC5}, since=null, name=, alias=, stereotype=deprecated, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,136 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=166, uuid=2df96825-3bf0-3160-a555-a54fda61527c, since=null, name=VoltageLevel, alias=, stereotype=, visibility=public, txtDescription='The VoltageLevels having this BaseVoltage.', htmlDescription='

The VoltageLevels having this BaseVoltage.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=167, uuid=7e385884-ee3f-3d72-af09-7657d3ecd905, since=null, name=BaseVoltage, alias=, stereotype=, visibility=public, txtDescription='The base voltage used for all equipment within the VoltageLevel.', htmlDescription='

The base voltage used for all equipment within the VoltageLevel.

'], _type=BaseVoltage, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=120, uuid={F610FDC8-D98D-4367-99A9-E9CA1C8A8CC5}, since=null, name=, alias=, stereotype=deprecated, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Core::BaseVoltage +2024-09-07 12:38:48,136 [main] DEBUG AssociationEndBuilder - Updated source type to BaseVoltage +2024-09-07 12:38:48,137 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=169, uuid=a7c02e37-c767-3d25-b98f-fef014267b5e, since=null, name=ProtectedBaseVoltage, alias=, stereotype=, visibility=protected, txtDescription='Use association to ConductingEquipment only when there is no VoltageLevel container used.', htmlDescription='

Use association to ConductingEquipment only when there is no VoltageLevel container used.

'], _type=BaseVoltage, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=170, uuid=4ff0bdbf-dba0-3daa-9eee-87a1d4811557, since=null, name=ConductingEquipment, alias=, stereotype=, visibility=public, txtDescription='Use association to ConductingEquipment only when there is no VoltageLevel container used.', htmlDescription='

Use association to ConductingEquipment only when there is no VoltageLevel container used.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=121, uuid={B21687D9-2B46-4880-B016-06CCFA215EC3}, since=null, name=, alias=, stereotype=builds, visibility=public, txtDescription='Use association to ConductingEquipment only when there is no VoltageLevel container used.', htmlDescription='

Use association to ConductingEquipment only when there is no VoltageLevel container used.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,137 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=169, uuid=a7c02e37-c767-3d25-b98f-fef014267b5e, since=null, name=ProtectedBaseVoltage, alias=, stereotype=, visibility=protected, txtDescription='Use association to ConductingEquipment only when there is no VoltageLevel container used.', htmlDescription='

Use association to ConductingEquipment only when there is no VoltageLevel container used.

'], _type=BaseVoltage, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=170, uuid=4ff0bdbf-dba0-3daa-9eee-87a1d4811557, since=null, name=ConductingEquipment, alias=, stereotype=, visibility=public, txtDescription='Use association to ConductingEquipment only when there is no VoltageLevel container used.', htmlDescription='

Use association to ConductingEquipment only when there is no VoltageLevel container used.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=121, uuid={B21687D9-2B46-4880-B016-06CCFA215EC3}, since=null, name=, alias=, stereotype=builds, visibility=public, txtDescription='Use association to ConductingEquipment only when there is no VoltageLevel container used.', htmlDescription='

Use association to ConductingEquipment only when there is no VoltageLevel container used.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Core::BaseVoltage +2024-09-07 12:38:48,137 [main] DEBUG AssociationEndBuilder - Updated target type to BaseVoltage +2024-09-07 12:38:48,138 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=172, uuid=ddf38257-ed75-3694-81a7-e984049e0ecf, since=null, name=TopologicalNode, alias=, stereotype=, visibility=public, txtDescription='The topological nodes at the base voltage.', htmlDescription='

The topological nodes at the base voltage.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=173, uuid=56be42a8-abee-3a0d-ab13-c23730a949e3, since=null, name=BaseVoltage, alias=, stereotype=, visibility=public, txtDescription='The base voltage of the topologocial node.', htmlDescription='

The base voltage of the topologocial node.

'], _type=BaseVoltage, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2092, uuid={6F37A2BE-FB37-4a6c-8BB1-CFC6690C1867}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,138 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=172, uuid=ddf38257-ed75-3694-81a7-e984049e0ecf, since=null, name=TopologicalNode, alias=, stereotype=, visibility=public, txtDescription='The topological nodes at the base voltage.', htmlDescription='

The topological nodes at the base voltage.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=173, uuid=56be42a8-abee-3a0d-ab13-c23730a949e3, since=null, name=BaseVoltage, alias=, stereotype=, visibility=public, txtDescription='The base voltage of the topologocial node.', htmlDescription='

The base voltage of the topologocial node.

'], _type=BaseVoltage, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2092, uuid={6F37A2BE-FB37-4a6c-8BB1-CFC6690C1867}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Core::BaseVoltage +2024-09-07 12:38:48,138 [main] TRACE ClassBuilder - read from EA: Core::BaseVoltage +2024-09-07 12:38:48,138 [main] TRACE ClassBuilder - Class Bay (3 in package Core) +2024-09-07 12:38:48,138 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::Bay, _objData=UmlObjectData [id=2077, uuid={26D3924E-0222-4e9a-9373-CD7D256E9B19}, since=null, name=bayEnergyMeasFlag, alias=, stereotype=, visibility=public, txtDescription='Indicates the presence/absence of energy measurements.', htmlDescription='

Indicates the presence/absence of energy measurements.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,138 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::Bay, _objData=UmlObjectData [id=2078, uuid={B5F9E0A2-7BE7-4bb1-A035-0F5F849847F0}, since=null, name=bayPowerMeasFlag, alias=, stereotype=, visibility=public, txtDescription='Indicates the presence/absence of active/reactive power measurements.', htmlDescription='

Indicates the presence/absence of active/reactive power measurements.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,138 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::Bay, _objData=UmlObjectData [id=2079, uuid={94BB9838-29AB-4afe-853A-3BD683EF6B09}, since=null, name=breakerConfiguration, alias=, stereotype=, visibility=public, txtDescription='Breaker configuration.', htmlDescription='

Breaker configuration.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=858, _eaTypeName=BreakerConfiguration, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,139 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::Bay, _objData=UmlObjectData [id=2080, uuid={696CC695-DE24-423a-9CD6-A9FED27803F8}, since=null, name=busBarConfiguration, alias=, stereotype=, visibility=public, txtDescription='Bus bar configuration.', htmlDescription='

Bus bar configuration.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=878, _eaTypeName=BusbarConfiguration, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,139 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::Bay, _objData=UmlObjectData [id=3301, uuid={E893BA26-F5FD-49d7-94E0-CF2CC775E76D}, since=null, name=TestYesNo1, alias=, stereotype=, visibility=public, txtDescription='Indicates the presence/absence of energy measurements.', htmlDescription='

Indicates the presence/absence of energy measurements.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1540, _eaTypeName=YesNo, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,139 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::Bay, _objData=UmlObjectData [id=3302, uuid={57D31F0C-D03A-424d-AF4C-358109CC5473}, since=null, name=testYesNo2, alias=, stereotype=, visibility=public, txtDescription='Indicates the presence/absence of energy measurements.', htmlDescription='

Indicates the presence/absence of energy measurements.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1540, _eaTypeName=YesNo, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,139 [main] DEBUG AssociationEndBuilder - Updated target type to Bay +2024-09-07 12:38:48,140 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=true, _objData=UmlObjectData [id=182, uuid=da543f3e-ced1-3dc8-93da-d53ef6d9b078, since=null, name=VoltageLevel, alias=, stereotype=endStereo1, deprecated, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=183, uuid=ac2c3369-c00d-3e2e-b4b5-51330068bc70, since=null, name=Bays, alias=, stereotype=deprecated, endStereo2, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=Bay, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=115, uuid={5E328091-5BC1-4fa8-9BA3-F087A215492A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,140 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=true, _objData=UmlObjectData [id=182, uuid=da543f3e-ced1-3dc8-93da-d53ef6d9b078, since=null, name=VoltageLevel, alias=, stereotype=endStereo1, deprecated, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=183, uuid=ac2c3369-c00d-3e2e-b4b5-51330068bc70, since=null, name=Bays, alias=, stereotype=deprecated, endStereo2, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=Bay, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=115, uuid={5E328091-5BC1-4fa8-9BA3-F087A215492A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Core::Bay +2024-09-07 12:38:48,140 [main] DEBUG AssociationEndBuilder - Updated source type to Bay +2024-09-07 12:38:48,142 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=185, uuid=b3b3f64f-0f2d-3934-8f26-f0508da2c3ec, since=null, name=bays, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=Bay, _multiplicity=[0..*], _navigable=yes], _targetEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=false, _objData=UmlObjectData [id=186, uuid=b5299d65-7a4d-3948-9041-95c7efec55f6, since=null, name=Substation, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=null, _multiplicity=[0..1], _navigable=yes], _objData=UmlObjectData [id=116, uuid={51152F4A-1B03-451f-BA84-6A05A6AE1630}, since=null, name=, alias=, stereotype=European, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Bi-Directional, _directionUnspecified=false, _biDirectional=true] +2024-09-07 12:38:48,142 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=185, uuid=b3b3f64f-0f2d-3934-8f26-f0508da2c3ec, since=null, name=bays, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=Bay, _multiplicity=[0..*], _navigable=yes], _targetEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=false, _objData=UmlObjectData [id=186, uuid=b5299d65-7a4d-3948-9041-95c7efec55f6, since=null, name=Substation, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=null, _multiplicity=[0..1], _navigable=yes], _objData=UmlObjectData [id=116, uuid={51152F4A-1B03-451f-BA84-6A05A6AE1630}, since=null, name=, alias=, stereotype=European, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Bi-Directional, _directionUnspecified=false, _biDirectional=true] as source to Core::Bay +2024-09-07 12:38:48,142 [main] TRACE ClassBuilder - read from EA: Core::Bay +2024-09-07 12:38:48,142 [main] TRACE ClassBuilder - Class BreakerConfiguration (4 in package Core) +2024-09-07 12:38:48,150 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::BreakerConfiguration, _objData=UmlObjectData [id=2073, uuid={44DB9F68-B210-48a4-9625-F25A2CB91A8C}, since=null, name=singleBreaker, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null, 2 _constraints[ConstraintBuilder [_objData=UmlObjectData [id=190, uuid=ce702525-165b-3d51-83b2-ee47df3a8f89, since=null, name=singleBreakerConstraintNoType, alias=, stereotype=, visibility=public, txtDescription='text', htmlDescription='

text

'], _containingAttribute=singleBreaker, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=text], ConstraintBuilder [_objData=UmlObjectData [id=191, uuid=5b5b7544-e9ee-39ca-bd9e-409e9ffefff9, since=null, name=processContstraint, alias=, stereotype=, visibility=public, txtDescription='process constraint text', htmlDescription='

process constraint text

'], _containingAttribute=singleBreaker, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=process constraint text]]] +2024-09-07 12:38:48,150 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::BreakerConfiguration, _objData=UmlObjectData [id=2074, uuid={0B0C09C4-66E5-48db-85B5-7BBCB3FB2759}, since=null, name=breakerAndAHalf, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,151 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::BreakerConfiguration, _objData=UmlObjectData [id=2075, uuid={8D041086-6214-4bc0-8351-D8A680FEC6E3}, since=null, name=doubleBreaker, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,152 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::BreakerConfiguration, _objData=UmlObjectData [id=2076, uuid={00F5D8BD-3E07-4371-B7A3-29276B241276}, since=null, name=noBreaker, alias=, stereotype=enum, European, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,152 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3467, uuid={BAC620E2-FBB8-4f97-9C0D-E83963303215}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=BreakerConfiguration, _otherEndName=?] +2024-09-07 12:38:48,152 [main] TRACE ClassBuilder - read from EA: Core::BreakerConfiguration +2024-09-07 12:38:48,152 [main] TRACE ClassBuilder - Class BusbarConfiguration (5 in package Core) +2024-09-07 12:38:48,152 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::BusbarConfiguration, _objData=UmlObjectData [id=2110, uuid={C252873E-93AB-4837-BFA2-72F7ED949063}, since=null, name=singleBus, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,152 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::BusbarConfiguration, _objData=UmlObjectData [id=2111, uuid={4818CA4D-1A75-4e80-9364-CF5DF7873944}, since=null, name=doubleBus, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,153 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::BusbarConfiguration, _objData=UmlObjectData [id=2112, uuid={8DC02787-5BEC-4701-A919-193EEB5A6656}, since=null, name=mainWithTransfer, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,153 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::BusbarConfiguration, _objData=UmlObjectData [id=2113, uuid={51ADB6A4-ED54-49e2-95C0-85BF285C3C8F}, since=null, name=ringBus, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,153 [main] TRACE ClassBuilder - read from EA: Core::BusbarConfiguration +2024-09-07 12:38:48,153 [main] TRACE ClassBuilder - Class ConductingEquipment (6 in package Core) +2024-09-07 12:38:48,153 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::ConductingEquipment, _objData=UmlObjectData [id=2091, uuid={2A7C5A94-34E1-49c7-8E1C-A84F411EE17C}, since=null, name=phases, alias=, stereotype=, visibility=public, txtDescription='Describes the phases carried by a conducting equipment.', htmlDescription='

Describes the phases carried by a conducting equipment.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=856, _eaTypeName=PhaseCode, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,153 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3470, uuid={C18A7F11-DBB2-4114-AE38-3EE7922E092E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=ConductingEquipment, _otherEndName=?] +2024-09-07 12:38:48,153 [main] DEBUG AssociationEndBuilder - Updated target type to ConductingEquipment +2024-09-07 12:38:48,154 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=169, uuid=a7c02e37-c767-3d25-b98f-fef014267b5e, since=null, name=ProtectedBaseVoltage, alias=, stereotype=, visibility=protected, txtDescription='Use association to ConductingEquipment only when there is no VoltageLevel container used.', htmlDescription='

Use association to ConductingEquipment only when there is no VoltageLevel container used.

'], _type=BaseVoltage, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=170, uuid=4ff0bdbf-dba0-3daa-9eee-87a1d4811557, since=null, name=ConductingEquipment, alias=, stereotype=, visibility=public, txtDescription='Use association to ConductingEquipment only when there is no VoltageLevel container used.', htmlDescription='

Use association to ConductingEquipment only when there is no VoltageLevel container used.

'], _type=ConductingEquipment, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=121, uuid={B21687D9-2B46-4880-B016-06CCFA215EC3}, since=null, name=, alias=, stereotype=builds, visibility=public, txtDescription='Use association to ConductingEquipment only when there is no VoltageLevel container used.', htmlDescription='

Use association to ConductingEquipment only when there is no VoltageLevel container used.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Core::ConductingEquipment +2024-09-07 12:38:48,154 [main] DEBUG AssociationEndBuilder - Updated target type to ConductingEquipment +2024-09-07 12:38:48,154 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=205, uuid=3020dda1-bf9e-3f5b-9056-790543c07a77, since=null, name=Terminals, alias=Alias for terminal, stereotype=, visibility=public, txtDescription='ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes', htmlDescription='

ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes

'], _type=null, _multiplicity=[0..*], _navigable=unspecified, 1_taggedValues{Role1=abc}], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=206, uuid=87a7d63b-bff7-34ea-a364-5adbc3812350, since=null, name=ConductingEquipment, alias=Alias for conducting equipment, stereotype=, visibility=public, txtDescription='ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes', htmlDescription='

ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes

'], _type=ConductingEquipment, _multiplicity=[1..1], _navigable=unspecified, 3_taggedValues{AnotherRole2=abc, targetEndTag=blah, Role2=xyz}], _objData=UmlObjectData [id=123, uuid={5FEF5186-7804-4dad-8E18-8C5DB7FCE6B2}, since=null, name=NamedWithTagsEverywhere, alias=Alias for NamedWithTagsEverywhere, stereotype=, visibility=public, txtDescription='ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes', htmlDescription='

ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false, 2_taggedValues{CE-TermAssoc=1, MoreAssoc=}] +2024-09-07 12:38:48,154 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=205, uuid=3020dda1-bf9e-3f5b-9056-790543c07a77, since=null, name=Terminals, alias=Alias for terminal, stereotype=, visibility=public, txtDescription='ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes', htmlDescription='

ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes

'], _type=null, _multiplicity=[0..*], _navigable=unspecified, 1_taggedValues{Role1=abc}], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=206, uuid=87a7d63b-bff7-34ea-a364-5adbc3812350, since=null, name=ConductingEquipment, alias=Alias for conducting equipment, stereotype=, visibility=public, txtDescription='ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes', htmlDescription='

ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes

'], _type=ConductingEquipment, _multiplicity=[1..1], _navigable=unspecified, 3_taggedValues{AnotherRole2=abc, targetEndTag=blah, Role2=xyz}], _objData=UmlObjectData [id=123, uuid={5FEF5186-7804-4dad-8E18-8C5DB7FCE6B2}, since=null, name=NamedWithTagsEverywhere, alias=Alias for NamedWithTagsEverywhere, stereotype=, visibility=public, txtDescription='ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes', htmlDescription='

ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false, 2_taggedValues{CE-TermAssoc=1, MoreAssoc=}] as target to Core::ConductingEquipment +2024-09-07 12:38:48,154 [main] TRACE ClassBuilder - read from EA: Core::ConductingEquipment +2024-09-07 12:38:48,154 [main] TRACE ClassBuilder - Class ConnectivityNodeContainer (7 in package Core) +2024-09-07 12:38:48,155 [main] DEBUG AssociationEndBuilder - Updated target type to ConnectivityNodeContainer +2024-09-07 12:38:48,155 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=209, uuid=10ccce83-a67a-3505-a530-f2e7cdbc675c, since=null, name=ConnectivityNodes, alias=, stereotype=, visibility=public, txtDescription='Connectivity nodes contained by this container.', htmlDescription='

Connectivity nodes contained by this container.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=210, uuid=d334a62d-c53a-37a2-856c-81d5fe2c2186, since=null, name=ConnectivityNodeContainer, alias=, stereotype=, visibility=public, txtDescription='Container of this connectivity node.', htmlDescription='

Container of this connectivity node.

'], _type=ConnectivityNodeContainer, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=234, uuid={08EEABA6-269C-44a7-8F82-7BBEFE71ADD6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,155 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=209, uuid=10ccce83-a67a-3505-a530-f2e7cdbc675c, since=null, name=ConnectivityNodes, alias=, stereotype=, visibility=public, txtDescription='Connectivity nodes contained by this container.', htmlDescription='

Connectivity nodes contained by this container.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=210, uuid=d334a62d-c53a-37a2-856c-81d5fe2c2186, since=null, name=ConnectivityNodeContainer, alias=, stereotype=, visibility=public, txtDescription='Container of this connectivity node.', htmlDescription='

Container of this connectivity node.

'], _type=ConnectivityNodeContainer, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=234, uuid={08EEABA6-269C-44a7-8F82-7BBEFE71ADD6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Core::ConnectivityNodeContainer +2024-09-07 12:38:48,155 [main] DEBUG AssociationEndBuilder - Updated target type to ConnectivityNodeContainer +2024-09-07 12:38:48,155 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=212, uuid=273458f0-8dc9-3b97-8d72-736bec7303fd, since=null, name=TopologicalNode, alias=, stereotype=, visibility=public, txtDescription='The topological nodes which belong to this connectivity node container.', htmlDescription='

The topological nodes which belong to this connectivity node container.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=213, uuid=069cc4c5-6982-3d6a-b143-1664cb457595, since=null, name=ConnectivityNodeContainer, alias=, stereotype=, visibility=public, txtDescription='The connectivity node container to which the toplogical node belongs.', htmlDescription='

The connectivity node container to which the toplogical node belongs.

'], _type=ConnectivityNodeContainer, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=1974, uuid={88BD0C47-4CB3-44db-9A6B-20C783A24478}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,155 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=212, uuid=273458f0-8dc9-3b97-8d72-736bec7303fd, since=null, name=TopologicalNode, alias=, stereotype=, visibility=public, txtDescription='The topological nodes which belong to this connectivity node container.', htmlDescription='

The topological nodes which belong to this connectivity node container.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=213, uuid=069cc4c5-6982-3d6a-b143-1664cb457595, since=null, name=ConnectivityNodeContainer, alias=, stereotype=, visibility=public, txtDescription='The connectivity node container to which the toplogical node belongs.', htmlDescription='

The connectivity node container to which the toplogical node belongs.

'], _type=ConnectivityNodeContainer, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=1974, uuid={88BD0C47-4CB3-44db-9A6B-20C783A24478}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Core::ConnectivityNodeContainer +2024-09-07 12:38:48,155 [main] TRACE ClassBuilder - read from EA: Core::ConnectivityNodeContainer +2024-09-07 12:38:48,155 [main] TRACE ClassBuilder - Class Equipment (8 in package Core) +2024-09-07 12:38:48,156 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::Equipment, _objData=UmlObjectData [id=2117, uuid={410CEA04-CA77-46d9-A093-019230A2DE17}, since=null, name=normaIlyInService, alias=, stereotype=, visibility=public, txtDescription='The equipment is normally in service.', htmlDescription='

The equipment is normally in service.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,156 [main] DEBUG AssociationEndBuilder - Updated target type to Equipment +2024-09-07 12:38:48,156 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=true, _objData=UmlObjectData [id=217, uuid=0a5e7271-1477-3b5b-9d36-820d4b5102d3, since=null, name=EquipmentContainer, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=218, uuid=1b6ed2c9-b08a-3f97-b5b9-d68882a9511d, since=null, name=Equipments, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=Equipment, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=88, uuid={68BA73EF-8533-48ba-964A-DE0F722292D2}, since=null, name=, alias=, stereotype=European, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,156 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=true, _objData=UmlObjectData [id=217, uuid=0a5e7271-1477-3b5b-9d36-820d4b5102d3, since=null, name=EquipmentContainer, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=218, uuid=1b6ed2c9-b08a-3f97-b5b9-d68882a9511d, since=null, name=Equipments, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=Equipment, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=88, uuid={68BA73EF-8533-48ba-964A-DE0F722292D2}, since=null, name=, alias=, stereotype=European, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Core::Equipment +2024-09-07 12:38:48,156 [main] DEBUG ClassBuilder - Adding Equipment as superclass of ConductingEquipment +2024-09-07 12:38:48,157 [main] TRACE ClassBuilder - read from EA: Core::Equipment +2024-09-07 12:38:48,157 [main] TRACE ClassBuilder - Class EquipmentContainer (9 in package Core) +2024-09-07 12:38:48,157 [main] DEBUG AssociationEndBuilder - Updated source type to EquipmentContainer +2024-09-07 12:38:48,157 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=true, _objData=UmlObjectData [id=217, uuid=0a5e7271-1477-3b5b-9d36-820d4b5102d3, since=null, name=EquipmentContainer, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=EquipmentContainer, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=218, uuid=1b6ed2c9-b08a-3f97-b5b9-d68882a9511d, since=null, name=Equipments, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=Equipment, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=88, uuid={68BA73EF-8533-48ba-964A-DE0F722292D2}, since=null, name=, alias=, stereotype=European, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Core::EquipmentContainer +2024-09-07 12:38:48,157 [main] DEBUG ClassBuilder - Adding EquipmentContainer as subclass of ConnectivityNodeContainer +2024-09-07 12:38:48,157 [main] DEBUG ClassBuilder - Adding EquipmentContainer as superclass of Bay +2024-09-07 12:38:48,157 [main] TRACE ClassBuilder - read from EA: Core::EquipmentContainer +2024-09-07 12:38:48,157 [main] TRACE ClassBuilder - Class geographicalRegion (10 in package Core) +2024-09-07 12:38:48,158 [main] DEBUG AssociationEndBuilder - Updated source type to geographicalRegion +2024-09-07 12:38:48,158 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=true, _objData=UmlObjectData [id=222, uuid=c3a8465e-2594-3d17-92e7-b52af2b5181d, since=null, name=Region, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=geographicalRegion, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=223, uuid=920f4ca0-a433-3fb0-8721-59cbe7afeae0, since=null, name=Regions, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=90, uuid={023E20DF-DF02-4ffb-A047-E5BBDB18AB59}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,158 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=true, _objData=UmlObjectData [id=222, uuid=c3a8465e-2594-3d17-92e7-b52af2b5181d, since=null, name=Region, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=geographicalRegion, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=223, uuid=920f4ca0-a433-3fb0-8721-59cbe7afeae0, since=null, name=Regions, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=90, uuid={023E20DF-DF02-4ffb-A047-E5BBDB18AB59}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Core::geographicalRegion +2024-09-07 12:38:48,158 [main] TRACE ClassBuilder - read from EA: Core::geographicalRegion +2024-09-07 12:38:48,158 [main] TRACE ClassBuilder - Class OperatingParticipant (12 in package Core) +2024-09-07 12:38:48,159 [main] DEBUG AssociationEndBuilder - Updated target type to OperatingParticipant +2024-09-07 12:38:48,159 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=226, uuid=5288b2e1-b413-38f9-b1d7-feb5ade8564b, since=null, name=OperatingShare, alias=, stereotype=, visibility=public, txtDescription='the operating shares of an operating participant. An operating participant can be reused for any number of PSR's', htmlDescription='

the operating shares of an operating participant. An operating participant can be reused for any number of PSR's

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=227, uuid=082fce23-d7aa-3fe6-9bb0-de01cf50b285, since=null, name=OperatingParticipant, alias=, stereotype=, visibility=public, txtDescription='The linkage to a owners and its linkage attributes like percentage ownership. The ownership percentage should add to 100% for all owners of a PowerSystemResource, but a PSROwner may own any percentage of any number of PowerSystemResource objects.', htmlDescription='

The linkage to a owners and its linkage attributes like percentage ownership. The ownership percentage should add to 100% for all owners of a PowerSystemResource, but a PSROwner may own any percentage of any number of PowerSystemResource objects.

'], _type=OperatingParticipant, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=157, uuid={C8C2BA26-2410-41d8-9E77-EC3873BDCE5B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,159 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=226, uuid=5288b2e1-b413-38f9-b1d7-feb5ade8564b, since=null, name=OperatingShare, alias=, stereotype=, visibility=public, txtDescription='the operating shares of an operating participant. An operating participant can be reused for any number of PSR's', htmlDescription='

the operating shares of an operating participant. An operating participant can be reused for any number of PSR's

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=227, uuid=082fce23-d7aa-3fe6-9bb0-de01cf50b285, since=null, name=OperatingParticipant, alias=, stereotype=, visibility=public, txtDescription='The linkage to a owners and its linkage attributes like percentage ownership. The ownership percentage should add to 100% for all owners of a PowerSystemResource, but a PSROwner may own any percentage of any number of PowerSystemResource objects.', htmlDescription='

The linkage to a owners and its linkage attributes like percentage ownership. The ownership percentage should add to 100% for all owners of a PowerSystemResource, but a PSROwner may own any percentage of any number of PowerSystemResource objects.

'], _type=OperatingParticipant, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=157, uuid={C8C2BA26-2410-41d8-9E77-EC3873BDCE5B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Core::OperatingParticipant +2024-09-07 12:38:48,159 [main] TRACE ClassBuilder - read from EA: Core::OperatingParticipant +2024-09-07 12:38:48,159 [main] TRACE ClassBuilder - Class OperatingShare (13 in package Core) +2024-09-07 12:38:48,160 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::OperatingShare, _objData=UmlObjectData [id=2109, uuid={91E1E9AB-B240-4b98-9917-82000F0A4CFB}, since=null, name=percentage, alias=, stereotype=, visibility=public, txtDescription='Percentage ownership for this device. The percentage indicates the percentage ownership of the PSROwner for the PowerSystemResource. The total percentage ownership for a PowerSystemResource should add to 100%.', htmlDescription='

Percentage ownership for this device. The percentage indicates the percentage ownership of the PSROwner for the PowerSystemResource. The total percentage ownership for a PowerSystemResource should add to 100%.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=614, _eaTypeName=PerCent, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1 _constraints[ConstraintBuilder [_objData=UmlObjectData [id=230, uuid=5efb2328-1c5c-36d9-8c41-790fcb5a5558, since=null, name=constraintProcess, alias=, stereotype=, visibility=public, txtDescription='constraint description', htmlDescription='

constraint description

'], _containingAttribute=percentage, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=constraint description]]] +2024-09-07 12:38:48,161 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3468, uuid={D04C91E1-5D26-4805-9682-897D9D13D5B5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=OperatingShare, _otherEndName=?] +2024-09-07 12:38:48,161 [main] DEBUG AssociationEndBuilder - Updated source type to OperatingShare +2024-09-07 12:38:48,161 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=226, uuid=5288b2e1-b413-38f9-b1d7-feb5ade8564b, since=null, name=OperatingShare, alias=, stereotype=, visibility=public, txtDescription='the operating shares of an operating participant. An operating participant can be reused for any number of PSR's', htmlDescription='

the operating shares of an operating participant. An operating participant can be reused for any number of PSR's

'], _type=OperatingShare, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=227, uuid=082fce23-d7aa-3fe6-9bb0-de01cf50b285, since=null, name=OperatingParticipant, alias=, stereotype=, visibility=public, txtDescription='The linkage to a owners and its linkage attributes like percentage ownership. The ownership percentage should add to 100% for all owners of a PowerSystemResource, but a PSROwner may own any percentage of any number of PowerSystemResource objects.', htmlDescription='

The linkage to a owners and its linkage attributes like percentage ownership. The ownership percentage should add to 100% for all owners of a PowerSystemResource, but a PSROwner may own any percentage of any number of PowerSystemResource objects.

'], _type=OperatingParticipant, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=157, uuid={C8C2BA26-2410-41d8-9E77-EC3873BDCE5B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Core::OperatingShare +2024-09-07 12:38:48,161 [main] DEBUG AssociationEndBuilder - Updated source type to OperatingShare +2024-09-07 12:38:48,162 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=233, uuid=c6782162-e08a-3fc8-a4f3-3edb4cbcbaed, since=null, name=OperatingShare, alias=, stereotype=, visibility=public, txtDescription='"the linkage to any number of operating share objects.', htmlDescription='

"the linkage to any number of operating share objects.

'], _type=OperatingShare, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=234, uuid=ee60c1dd-309d-3dcc-9d34-e0b3493b0e8a, since=null, name=PowerSystemResource, alias=, stereotype=, visibility=public, txtDescription=''the PowerSystemResource to which the attribues apply. The percentage ownership of all owners of a PowerSystemResource should add to 100%.', htmlDescription='

'the PowerSystemResource to which the attribues apply. The percentage ownership of all owners of a PowerSystemResource should add to 100%.

'], _type=null, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=163, uuid={343B3487-FA8E-4906-A8F1-4D6E3B27F4AF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,162 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=233, uuid=c6782162-e08a-3fc8-a4f3-3edb4cbcbaed, since=null, name=OperatingShare, alias=, stereotype=, visibility=public, txtDescription='"the linkage to any number of operating share objects.', htmlDescription='

"the linkage to any number of operating share objects.

'], _type=OperatingShare, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=234, uuid=ee60c1dd-309d-3dcc-9d34-e0b3493b0e8a, since=null, name=PowerSystemResource, alias=, stereotype=, visibility=public, txtDescription=''the PowerSystemResource to which the attribues apply. The percentage ownership of all owners of a PowerSystemResource should add to 100%.', htmlDescription='

'the PowerSystemResource to which the attribues apply. The percentage ownership of all owners of a PowerSystemResource should add to 100%.

'], _type=null, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=163, uuid={343B3487-FA8E-4906-A8F1-4D6E3B27F4AF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Core::OperatingShare +2024-09-07 12:38:48,162 [main] TRACE ClassBuilder - read from EA: Core::OperatingShare +2024-09-07 12:38:48,162 [main] TRACE ClassBuilder - Class PhaseCode (14 in package Core) +2024-09-07 12:38:48,162 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=2054, uuid={8E38EE25-FD5C-4b01-938C-008998EDA526}, since=null, name=ABCN, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,162 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=2055, uuid={5A6F7D82-6A2C-4eb3-90BC-8F77AAD9D50F}, since=null, name=ABC, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,163 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=2056, uuid={C5F9ED62-CB15-4c15-98DB-6593686F63E2}, since=null, name=ABN, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,163 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=2057, uuid={0396E7F5-6112-49e7-A7C8-7B7FA0214AA7}, since=null, name=ACN, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,163 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=2058, uuid={F494A423-E865-4c3d-8C83-180728F30A66}, since=null, name=BCN, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,163 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=2059, uuid={77216F5E-3863-424c-91CD-4597AE97B61E}, since=null, name=AB, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,164 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=2060, uuid={598C4480-5C39-4889-8BD1-D1D2BCEB4DEA}, since=null, name=AC, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,164 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=2061, uuid={8124AC36-FD4D-4b64-A414-6F9B8D350469}, since=null, name=BC, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,164 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=2062, uuid={9B41A289-EDF6-4728-AABE-B11D2E617549}, since=null, name=AN, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,164 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=2063, uuid={2780D899-5467-4920-8DAA-117051620D3A}, since=null, name=BN, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,164 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=2064, uuid={DEB66611-AEAD-4b57-8CBD-65D1931709CE}, since=null, name=CN, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,164 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=2065, uuid={EA5174F8-A73C-4f4b-96AA-54EAFB16BC9F}, since=null, name=A, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,164 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=2066, uuid={DF516C67-D4FE-4a6b-9FE7-54E54036C7CA}, since=null, name=B, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,164 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=2067, uuid={8E5E8952-BD3F-4b06-A218-7A1EE85598D0}, since=null, name=C, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,164 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=2068, uuid={177D92A8-237D-4ec7-99BF-6BBE2AA2CE9E}, since=null, name=N, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,165 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=3246, uuid={7CBBF307-75C0-4255-B181-0BB16E0B4A23}, since=null, name=splitSecondary1N, alias=, stereotype=enum, visibility=public, txtDescription='Split-secondary phase 1 and Neutral.', htmlDescription='

Split-secondary phase 1 and Neutral.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,165 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=3247, uuid={16119B57-3431-4045-A8EB-1618E844A397}, since=null, name=splitSecondary2N, alias=, stereotype=enum, visibility=public, txtDescription='Split-secondary phase 2 and Neutral.', htmlDescription='

Split-secondary phase 2 and Neutral.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,166 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=3248, uuid={2E31EA79-AFF2-45bf-82E3-DD2DD070FDB6}, since=null, name=splitSecondary12N, alias=, stereotype=enum, visibility=public, txtDescription='Split-secondary phases 1 and 2, with Neutral.', htmlDescription='

Split-secondary phases 1 and 2, with Neutral.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,166 [main] TRACE ClassBuilder - read from EA: Core::PhaseCode +2024-09-07 12:38:48,167 [main] TRACE ClassBuilder - Class PowerSystemResource (15 in package Core) +2024-09-07 12:38:48,167 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [, _containingClass=PowerSystemResource, _objData=UmlObjectData [id=156, uuid={DCBCF26F-D99A-47b9-98AE-0086B1B9ED0A}, since=null, name=PSR-statechart, alias=, stereotype=, visibility=public, txtDescription='Added for testing only.', htmlDescription='

Added for testing only.

'], _portrait=true, _kind=STATECHART] +2024-09-07 12:38:48,167 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=STATE, _isConnector=false, _objData=UmlObjectData [id=1444, uuid={B4264243-743C-4b04-BDA6-3627169218AB}, since=null, name=DummyState, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=PowerSystemResource, _otherEndName=] +2024-09-07 12:38:48,167 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PowerSystemResource, _objData=UmlObjectData [id=6708, uuid={DB23468D-32C9-44cf-9032-193304520B0A}, since=null, name=attr, alias=, stereotype=deprecated, visibility=public, txtDescription='This is to test whether deprecated attribute gets its (deprecated) printed in Word.', htmlDescription='

This is to test whether deprecated attribute gets its (deprecated) printed in Word.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,183 [main] TRACE OperationBuilder - read from EA: OperationBuilder [_containingClass=PowerSystemResource, _objData=UmlObjectData [id=1, uuid={9AD2158A-F617-4a1b-8CFF-EDCB93CA91B6}, since=null, name=GetWhatevers, alias=get whatevers operation alias, stereotype=, visibility=public, txtDescription='dummy operation - will be inherited by many, so we can test doc generation. This doc also misses "." at its end and starts with lowe case', htmlDescription='

dummy operation - will be inherited by many, so we can test doc generation. This doc also misses "." at its end and starts with lowe case

'], _abstract=true, _static=false, _final=false, _kind=OP_RET_ARRAY, _returnType=null, _eaReturnTypeId=0, _eaReturnTypeName=void, 3_exceptionNames[Dummy, PSRType, Dummy2], 2_taggedValues{throws=Dummy,PSRType,Dummy2, dummyCimTag=on operation}, 1_parameters[ParameterBuilder [_containingOperation=GetWhatevers, _position=0, _kind=ARRAY, _objData=UmlObjectData [id=262, uuid={D8176E9D-04E7-4fae-871C-213740261833}, since=null, name=multiples, alias=parAlias, stereotype=parStereo1, parStereo2, visibility=public, txtDescription='Doc is present (but does not end with ".")', htmlDescription='

Doc is present (but does not end with ".")

'], _type=null, _eaTypeName=BasePower[], _eaTypeIdAsString=0]]] +2024-09-07 12:38:48,183 [main] TRACE OperationBuilder - read from EA: OperationBuilder [_containingClass=PowerSystemResource, _objData=UmlObjectData [id=2, uuid={9953ABA5-65EC-4f38-A180-776FECE065FC}, since=null, name=setSomething, alias=, stereotype=someStereotype, visibility=public, txtDescription='"This one will have an "exception" - again to test doc generation.', htmlDescription='

"This one will have an "exception" - again to test doc generation.

'], _abstract=false, _static=false, _final=false, _kind=OP_RET_VOID, _returnType=null, _eaReturnTypeId=0, _eaReturnTypeName=void, 1_exceptionNames[Unit], 1_taggedValues{throws=Unit}, 1_parameters[ParameterBuilder [_containingOperation=setSomething, _position=0, _kind=SIMPLE, _objData=UmlObjectData [id=264, uuid={568C59BD-0A22-4219-A56C-793C82CCD0B3}, since=null, name=name, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _eaTypeName=String, _eaTypeIdAsString=637]]] +2024-09-07 12:38:48,184 [main] TRACE OperationBuilder - read from EA: OperationBuilder [_containingClass=PowerSystemResource, _objData=UmlObjectData [id=4, uuid={05EA558B-9FDB-4094-B4EE-CAFD70F8E07E}, since=null, name=foo, alias=, stereotype=, visibility=public, txtDescription=''some doc.', htmlDescription='

'some doc.

'], _abstract=false, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=null, _eaReturnTypeId=0, _eaReturnTypeName=Dumb, 1_taggedValues{someTag=value}, 3_parameters[ParameterBuilder [_containingOperation=foo, _position=0, _kind=SIMPLE, _objData=UmlObjectData [id=266, uuid={859C2123-0BBB-4124-B4F4-E3EC8808A2B3}, since=null, name=par3, alias=, stereotype=, visibility=public, txtDescription=''doc OK.', htmlDescription='

'doc OK.

'], _type=null, _eaTypeName=NonExisting, _eaTypeIdAsString=0], ParameterBuilder [_containingOperation=foo, _position=1, _kind=SIMPLE, _objData=UmlObjectData [id=267, uuid={6BD64A42-70E1-49ed-8B76-8D80ECDB74DD}, since=null, name=par2, alias=, stereotype=deprecated, visibility=public, txtDescription='Doc OK.', htmlDescription='

Doc OK.

'], _type=null, _eaTypeName=float, _eaTypeIdAsString=615], ParameterBuilder [_containingOperation=foo, _position=2, _kind=SIMPLE, _objData=UmlObjectData [id=268, uuid={44BC9203-AC20-49b9-A650-F211CB06958A}, since=null, name=par, alias=, stereotype=, visibility=public, txtDescription='"Doc OK.', htmlDescription='

"Doc OK.

'], _type=null, _eaTypeName=Par, _eaTypeIdAsString=0]]] +2024-09-07 12:38:48,184 [main] TRACE OperationBuilder - read from EA: OperationBuilder [_containingClass=PowerSystemResource, _objData=UmlObjectData [id=5, uuid={B6F10C35-6FE6-4e7e-8669-D4C1E1085C3E}, since=null, name=bar, alias=, stereotype=deprecated, visibility=public, txtDescription='', htmlDescription=''], _abstract=false, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=null, _eaReturnTypeId=0, _eaReturnTypeName=Dumb, 1_taggedValues{someTag=value}, 3_parameters[ParameterBuilder [_containingOperation=bar, _position=0, _kind=SIMPLE, _objData=UmlObjectData [id=270, uuid={5720BF71-FF81-4ac8-9EED-4CA747418672}, since=null, name=par3, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _eaTypeName=NonExisting, _eaTypeIdAsString=0], ParameterBuilder [_containingOperation=bar, _position=1, _kind=SIMPLE, _objData=UmlObjectData [id=271, uuid={E8047328-87C3-481b-998B-FBFFE7B4CFD0}, since=null, name=par2, alias=, stereotype=, visibility=public, txtDescription='starting with lower case, missing "." at the end', htmlDescription='

starting with lower case, missing "." at the end

'], _type=null, _eaTypeName=float, _eaTypeIdAsString=615], ParameterBuilder [_containingOperation=bar, _position=2, _kind=SIMPLE, _objData=UmlObjectData [id=272, uuid={7D6344F7-A5AB-43fe-A844-BA70EA5BDFF9}, since=null, name=par, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _eaTypeName=Par, _eaTypeIdAsString=0]]] +2024-09-07 12:38:48,184 [main] DEBUG AssociationEndBuilder - Updated target type to PowerSystemResource +2024-09-07 12:38:48,184 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=233, uuid=c6782162-e08a-3fc8-a4f3-3edb4cbcbaed, since=null, name=OperatingShare, alias=, stereotype=, visibility=public, txtDescription='"the linkage to any number of operating share objects.', htmlDescription='

"the linkage to any number of operating share objects.

'], _type=OperatingShare, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=234, uuid=ee60c1dd-309d-3dcc-9d34-e0b3493b0e8a, since=null, name=PowerSystemResource, alias=, stereotype=, visibility=public, txtDescription=''the PowerSystemResource to which the attribues apply. The percentage ownership of all owners of a PowerSystemResource should add to 100%.', htmlDescription='

'the PowerSystemResource to which the attribues apply. The percentage ownership of all owners of a PowerSystemResource should add to 100%.

'], _type=PowerSystemResource, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=163, uuid={343B3487-FA8E-4906-A8F1-4D6E3B27F4AF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Core::PowerSystemResource +2024-09-07 12:38:48,184 [main] DEBUG AssociationEndBuilder - Updated target type to PowerSystemResource +2024-09-07 12:38:48,185 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=274, uuid=95687635-5e2c-38e8-a9f7-3fcbd94f561c, since=null, name=AssetInfos, alias=, stereotype=, visibility=public, txtDescription='FooBar', htmlDescription='

FooBar

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=275, uuid=1892b331-bca4-3a23-9fd8-dccf941cd095, since=null, name=PSRs, alias=, stereotype=, visibility=public, txtDescription='Blah', htmlDescription='

Blah

'], _type=PowerSystemResource, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=2148, uuid={D93167F8-2A16-4fbc-BC07-353D141C8E50}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,185 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=274, uuid=95687635-5e2c-38e8-a9f7-3fcbd94f561c, since=null, name=AssetInfos, alias=, stereotype=, visibility=public, txtDescription='FooBar', htmlDescription='

FooBar

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=275, uuid=1892b331-bca4-3a23-9fd8-dccf941cd095, since=null, name=PSRs, alias=, stereotype=, visibility=public, txtDescription='Blah', htmlDescription='

Blah

'], _type=PowerSystemResource, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=2148, uuid={D93167F8-2A16-4fbc-BC07-353D141C8E50}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Core::PowerSystemResource +2024-09-07 12:38:48,185 [main] DEBUG AssociationEndBuilder - Updated source type to PowerSystemResource +2024-09-07 12:38:48,185 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=277, uuid=85817ea6-b142-3397-946f-27d595f4836c, since=null, name=PSR, alias=, stereotype=, visibility=public, txtDescription='My assoc with Terminal is navigable, deprecated and as inherited should also be navigable and have deprecation.', htmlDescription='

My assoc with Terminal is navigable, deprecated and as inherited should also be navigable and have deprecation.

'], _type=PowerSystemResource, _multiplicity=[0..1], _navigable=yes], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=278, uuid=9551ee09-b70f-351e-920c-f63f92025740, since=null, name=Terminal, alias=, stereotype=, visibility=public, txtDescription='My association with PSR is deprecated and as inherited should also have deprecation.', htmlDescription='

My association with PSR is deprecated and as inherited should also have deprecation.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3463, uuid={78E829D4-34BC-4740-8E95-42DBBF386677}, since=null, name=, alias=, stereotype=deprecated, visibility=public, txtDescription='', htmlDescription=''], _direction=Destination -> Source, _directionUnspecified=false, _biDirectional=false] +2024-09-07 12:38:48,185 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=277, uuid=85817ea6-b142-3397-946f-27d595f4836c, since=null, name=PSR, alias=, stereotype=, visibility=public, txtDescription='My assoc with Terminal is navigable, deprecated and as inherited should also be navigable and have deprecation.', htmlDescription='

My assoc with Terminal is navigable, deprecated and as inherited should also be navigable and have deprecation.

'], _type=PowerSystemResource, _multiplicity=[0..1], _navigable=yes], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=278, uuid=9551ee09-b70f-351e-920c-f63f92025740, since=null, name=Terminal, alias=, stereotype=, visibility=public, txtDescription='My association with PSR is deprecated and as inherited should also have deprecation.', htmlDescription='

My association with PSR is deprecated and as inherited should also have deprecation.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3463, uuid={78E829D4-34BC-4740-8E95-42DBBF386677}, since=null, name=, alias=, stereotype=deprecated, visibility=public, txtDescription='', htmlDescription=''], _direction=Destination -> Source, _directionUnspecified=false, _biDirectional=false] as source to Core::PowerSystemResource +2024-09-07 12:38:48,185 [main] DEBUG ClassBuilder - Adding PowerSystemResource as superclass of ConnectivityNodeContainer +2024-09-07 12:38:48,185 [main] DEBUG ClassBuilder - Adding PowerSystemResource as superclass of Equipment +2024-09-07 12:38:48,185 [main] TRACE ClassBuilder - read from EA: Core::PowerSystemResource +2024-09-07 12:38:48,185 [main] TRACE ClassBuilder - Class SubGeographicalRegion (16 in package Core) +2024-09-07 12:38:48,186 [main] DEBUG AssociationEndBuilder - Updated target type to SubGeographicalRegion +2024-09-07 12:38:48,186 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=true, _objData=UmlObjectData [id=222, uuid=c3a8465e-2594-3d17-92e7-b52af2b5181d, since=null, name=Region, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=geographicalRegion, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=223, uuid=920f4ca0-a433-3fb0-8721-59cbe7afeae0, since=null, name=Regions, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=SubGeographicalRegion, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=90, uuid={023E20DF-DF02-4ffb-A047-E5BBDB18AB59}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Core::SubGeographicalRegion +2024-09-07 12:38:48,186 [main] DEBUG AssociationEndBuilder - Updated source type to SubGeographicalRegion +2024-09-07 12:38:48,186 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=true, _objData=UmlObjectData [id=281, uuid=5d9d12f6-3391-3f75-91fb-cc4617d58cde, since=null, name=Region, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=SubGeographicalRegion, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=282, uuid=c16eec64-cddc-309c-9ca5-ecb70b7b1f7d, since=null, name=Substations, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=91, uuid={66E7D72B-2889-483c-80A2-2E51B283F2B1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,186 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=true, _objData=UmlObjectData [id=281, uuid=5d9d12f6-3391-3f75-91fb-cc4617d58cde, since=null, name=Region, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=SubGeographicalRegion, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=282, uuid=c16eec64-cddc-309c-9ca5-ecb70b7b1f7d, since=null, name=Substations, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=91, uuid={66E7D72B-2889-483c-80A2-2E51B283F2B1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Core::SubGeographicalRegion +2024-09-07 12:38:48,186 [main] TRACE ClassBuilder - read from EA: Core::SubGeographicalRegion +2024-09-07 12:38:48,186 [main] TRACE ClassBuilder - Class Substation (17 in package Core) +2024-09-07 12:38:48,187 [main] DEBUG AssociationEndBuilder - Updated target type to Substation +2024-09-07 12:38:48,187 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=true, _objData=UmlObjectData [id=281, uuid=5d9d12f6-3391-3f75-91fb-cc4617d58cde, since=null, name=Region, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=SubGeographicalRegion, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=282, uuid=c16eec64-cddc-309c-9ca5-ecb70b7b1f7d, since=null, name=Substations, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=Substation, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=91, uuid={66E7D72B-2889-483c-80A2-2E51B283F2B1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Core::Substation +2024-09-07 12:38:48,187 [main] DEBUG AssociationEndBuilder - Updated source type to Substation +2024-09-07 12:38:48,187 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=true, _objData=UmlObjectData [id=285, uuid=760199e4-27b3-34be-97f9-49ff48b35cfe, since=null, name=Substation, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=Substation, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=286, uuid=732c1677-4a79-34a8-a236-a0a8e0fcd7ca, since=null, name=VoltageLevels, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=94, uuid={0E9E9E28-C575-47c5-BF01-7F4EB8B36D16}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,187 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=true, _objData=UmlObjectData [id=285, uuid=760199e4-27b3-34be-97f9-49ff48b35cfe, since=null, name=Substation, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=Substation, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=286, uuid=732c1677-4a79-34a8-a236-a0a8e0fcd7ca, since=null, name=VoltageLevels, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=94, uuid={0E9E9E28-C575-47c5-BF01-7F4EB8B36D16}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Core::Substation +2024-09-07 12:38:48,187 [main] DEBUG AssociationEndBuilder - Updated target type to Substation +2024-09-07 12:38:48,187 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=185, uuid=b3b3f64f-0f2d-3934-8f26-f0508da2c3ec, since=null, name=bays, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=Bay, _multiplicity=[0..*], _navigable=yes], _targetEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=false, _objData=UmlObjectData [id=186, uuid=b5299d65-7a4d-3948-9041-95c7efec55f6, since=null, name=Substation, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=Substation, _multiplicity=[0..1], _navigable=yes], _objData=UmlObjectData [id=116, uuid={51152F4A-1B03-451f-BA84-6A05A6AE1630}, since=null, name=, alias=, stereotype=European, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Bi-Directional, _directionUnspecified=false, _biDirectional=true] as target to Core::Substation +2024-09-07 12:38:48,187 [main] DEBUG ClassBuilder - Adding Substation as subclass of EquipmentContainer +2024-09-07 12:38:48,187 [main] TRACE ClassBuilder - read from EA: Core::Substation +2024-09-07 12:38:48,187 [main] TRACE ClassBuilder - Class Terminal (18 in package Core) +2024-09-07 12:38:48,188 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::Terminal, _objData=UmlObjectData [id=3125, uuid={C97C0B38-C62F-4f03-A3DE-A67F29A6C6DB}, since=null, name=connected, alias=, stereotype=, visibility=public, txtDescription='The terminal connection status. True implies the terminal is connected, and false implies the terminal is not connected. This is the result of topoplogical processing of a detailed Connectivity node and Switch model whether present in the model or not. A terminal that is not connected cannot support a current flow. A terminal that is connected may have flow. In general a multi-terminal device may simultaneously have connected and disconnected terminals. No other aspect of the algorithm', htmlDescription='

The terminal connection status. True implies the terminal is connected, and false implies the terminal is not connected. This is the result of topoplogical processing of a detailed Connectivity node and Switch model whether present in the model or not. A terminal that is not connected cannot support a current flow. A terminal that is connected may have flow. In general a multi-terminal device may simultaneously have connected and disconnected terminals. No other aspect of the algorithm

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,188 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::Terminal, _objData=UmlObjectData [id=3188, uuid={7C7195D3-DFCD-487f-BF92-F359BBE7AFD0}, since=null, name=sequenceNumber, alias=, stereotype=, visibility=public, txtDescription='The orientation of the terminal connections for a multiple terminal conducting equipment. The sequence numbering starts with 1 and additional terminals should follow in increasing order. The first terminal is the "starting point" for a two terminal branch. In the case of class TransformerWinding only one terminal is used so its sequenceNumber must be 1.', htmlDescription='

The orientation of the terminal connections for a multiple terminal conducting equipment. The sequence numbering starts with 1 and additional terminals should follow in increasing order. The first terminal is the "starting point" for a two terminal branch. In the case of class TransformerWinding only one terminal is used so its sequenceNumber must be 1.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,188 [main] DEBUG AssociationEndBuilder - Updated source type to Terminal +2024-09-07 12:38:48,188 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=205, uuid=3020dda1-bf9e-3f5b-9056-790543c07a77, since=null, name=Terminals, alias=Alias for terminal, stereotype=, visibility=public, txtDescription='ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes', htmlDescription='

ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes

'], _type=Terminal, _multiplicity=[0..*], _navigable=unspecified, 1_taggedValues{Role1=abc}], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=206, uuid=87a7d63b-bff7-34ea-a364-5adbc3812350, since=null, name=ConductingEquipment, alias=Alias for conducting equipment, stereotype=, visibility=public, txtDescription='ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes', htmlDescription='

ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes

'], _type=ConductingEquipment, _multiplicity=[1..1], _navigable=unspecified, 3_taggedValues{AnotherRole2=abc, targetEndTag=blah, Role2=xyz}], _objData=UmlObjectData [id=123, uuid={5FEF5186-7804-4dad-8E18-8C5DB7FCE6B2}, since=null, name=NamedWithTagsEverywhere, alias=Alias for NamedWithTagsEverywhere, stereotype=, visibility=public, txtDescription='ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes', htmlDescription='

ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false, 2_taggedValues{CE-TermAssoc=1, MoreAssoc=}] as source to Core::Terminal +2024-09-07 12:38:48,188 [main] DEBUG AssociationEndBuilder - Updated source type to Terminal +2024-09-07 12:38:48,188 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=291, uuid=90cbfea3-4fcc-3b34-8a4d-19b078519a40, since=null, name=Terminals, alias=, stereotype=, visibility=public, txtDescription='Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.', htmlDescription='

Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.

'], _type=Terminal, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=292, uuid=82cf9a85-6ff2-3238-844b-b1eb670bffb2, since=null, name=ConnectivityNode, alias=, stereotype=, visibility=public, txtDescription='Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.', htmlDescription='

Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=229, uuid={C7E01609-F4E6-4a6e-8ACF-BDD413E62DE3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.', htmlDescription='

Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,189 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=291, uuid=90cbfea3-4fcc-3b34-8a4d-19b078519a40, since=null, name=Terminals, alias=, stereotype=, visibility=public, txtDescription='Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.', htmlDescription='

Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.

'], _type=Terminal, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=292, uuid=82cf9a85-6ff2-3238-844b-b1eb670bffb2, since=null, name=ConnectivityNode, alias=, stereotype=, visibility=public, txtDescription='Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.', htmlDescription='

Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=229, uuid={C7E01609-F4E6-4a6e-8ACF-BDD413E62DE3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.', htmlDescription='

Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Core::Terminal +2024-09-07 12:38:48,189 [main] DEBUG AssociationEndBuilder - Updated source type to Terminal +2024-09-07 12:38:48,189 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=294, uuid=156aeee5-edcf-3620-8689-98f66c084af5, since=null, name=Terminal, alias=, stereotype=, visibility=public, txtDescription='The terminals associated with the topological node. This can be used as an alternative to the connectivity node path to terminal, thus making it unneccesary to model connedtivity nodes in some cases. Note that the if connectivity nodes are in the model, this association would proably not be used.', htmlDescription='

The terminals associated with the topological node. This can be used as an alternative to the connectivity node path to terminal, thus making it unneccesary to model connedtivity nodes in some cases. Note that the if connectivity nodes are in the model, this association would proably not be used.

'], _type=Terminal, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=false, _objData=UmlObjectData [id=295, uuid=347bba3d-4267-3d35-8f14-3bf34cfb435d, since=null, name=TopologicalNode, alias=, stereotype=, visibility=public, txtDescription='The topological node associated with the terminal. This can be used as an alternative to the connectivity node path to topological node, thus making it unneccesary to model connedtivity nodes in some cases. Note that the if connectivity nodes are in the model, this association would proably not be used.', htmlDescription='

The topological node associated with the terminal. This can be used as an alternative to the connectivity node path to topological node, thus making it unneccesary to model connedtivity nodes in some cases. Note that the if connectivity nodes are in the model, this association would proably not be used.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=1961, uuid={F490BFCA-36A8-4fe2-B28B-66466134B41E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,189 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=294, uuid=156aeee5-edcf-3620-8689-98f66c084af5, since=null, name=Terminal, alias=, stereotype=, visibility=public, txtDescription='The terminals associated with the topological node. This can be used as an alternative to the connectivity node path to terminal, thus making it unneccesary to model connedtivity nodes in some cases. Note that the if connectivity nodes are in the model, this association would proably not be used.', htmlDescription='

The terminals associated with the topological node. This can be used as an alternative to the connectivity node path to terminal, thus making it unneccesary to model connedtivity nodes in some cases. Note that the if connectivity nodes are in the model, this association would proably not be used.

'], _type=Terminal, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=false, _objData=UmlObjectData [id=295, uuid=347bba3d-4267-3d35-8f14-3bf34cfb435d, since=null, name=TopologicalNode, alias=, stereotype=, visibility=public, txtDescription='The topological node associated with the terminal. This can be used as an alternative to the connectivity node path to topological node, thus making it unneccesary to model connedtivity nodes in some cases. Note that the if connectivity nodes are in the model, this association would proably not be used.', htmlDescription='

The topological node associated with the terminal. This can be used as an alternative to the connectivity node path to topological node, thus making it unneccesary to model connedtivity nodes in some cases. Note that the if connectivity nodes are in the model, this association would proably not be used.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=1961, uuid={F490BFCA-36A8-4fe2-B28B-66466134B41E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Core::Terminal +2024-09-07 12:38:48,189 [main] DEBUG AssociationEndBuilder - Updated target type to Terminal +2024-09-07 12:38:48,189 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=277, uuid=85817ea6-b142-3397-946f-27d595f4836c, since=null, name=PSR, alias=, stereotype=, visibility=public, txtDescription='My assoc with Terminal is navigable, deprecated and as inherited should also be navigable and have deprecation.', htmlDescription='

My assoc with Terminal is navigable, deprecated and as inherited should also be navigable and have deprecation.

'], _type=PowerSystemResource, _multiplicity=[0..1], _navigable=yes], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=278, uuid=9551ee09-b70f-351e-920c-f63f92025740, since=null, name=Terminal, alias=, stereotype=, visibility=public, txtDescription='My association with PSR is deprecated and as inherited should also have deprecation.', htmlDescription='

My association with PSR is deprecated and as inherited should also have deprecation.

'], _type=Terminal, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3463, uuid={78E829D4-34BC-4740-8E95-42DBBF386677}, since=null, name=, alias=, stereotype=deprecated, visibility=public, txtDescription='', htmlDescription=''], _direction=Destination -> Source, _directionUnspecified=false, _biDirectional=false] as target to Core::Terminal +2024-09-07 12:38:48,189 [main] TRACE ClassBuilder - read from EA: Core::Terminal +2024-09-07 12:38:48,189 [main] TRACE ClassBuilder - Class VoltageLevel (19 in package Core) +2024-09-07 12:38:48,189 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::VoltageLevel, _objData=UmlObjectData [id=2106, uuid={D1BAD493-B22A-497f-B6A6-CDFDF46EA012}, since=null, name=highVoltageLimit, alias=, stereotype=, visibility=public, txtDescription='The bus bar's high voltage limit', htmlDescription='

The bus bar's high voltage limit

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=602, _eaTypeName=Voltage, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,190 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::VoltageLevel, _objData=UmlObjectData [id=2107, uuid={EB17FEAC-CDBA-4bbd-B45E-86D3EA333C08}, since=null, name=lowVoltageLimit, alias=, stereotype=, visibility=public, txtDescription='The bus bar's low voltage limit', htmlDescription='

The bus bar's low voltage limit

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=602, _eaTypeName=Voltage, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,190 [main] TRACE OperationBuilder - read from EA: OperationBuilder [_containingClass=VoltageLevel, _objData=UmlObjectData [id=3, uuid={4334506A-A0EC-4e66-AD2B-2DBEBB2B1561}, since=null, name=getVoltage, alias=, stereotype=, visibility=public, txtDescription='Third and last dumb operation for doc generation testing.', htmlDescription='

Third and last dumb operation for doc generation testing.

'], _abstract=false, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=null, _eaReturnTypeId=602, _eaReturnTypeName=Voltage] +2024-09-07 12:38:48,190 [main] DEBUG AssociationEndBuilder - Updated target type to VoltageLevel +2024-09-07 12:38:48,191 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=true, _objData=UmlObjectData [id=285, uuid=760199e4-27b3-34be-97f9-49ff48b35cfe, since=null, name=Substation, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=Substation, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=286, uuid=732c1677-4a79-34a8-a236-a0a8e0fcd7ca, since=null, name=VoltageLevels, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=VoltageLevel, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=94, uuid={0E9E9E28-C575-47c5-BF01-7F4EB8B36D16}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Core::VoltageLevel +2024-09-07 12:38:48,191 [main] DEBUG AssociationEndBuilder - Updated source type to VoltageLevel +2024-09-07 12:38:48,191 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=true, _objData=UmlObjectData [id=182, uuid=da543f3e-ced1-3dc8-93da-d53ef6d9b078, since=null, name=VoltageLevel, alias=, stereotype=endStereo1, deprecated, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=VoltageLevel, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=183, uuid=ac2c3369-c00d-3e2e-b4b5-51330068bc70, since=null, name=Bays, alias=, stereotype=deprecated, endStereo2, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=Bay, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=115, uuid={5E328091-5BC1-4fa8-9BA3-F087A215492A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Core::VoltageLevel +2024-09-07 12:38:48,192 [main] DEBUG AssociationEndBuilder - Updated source type to VoltageLevel +2024-09-07 12:38:48,192 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=166, uuid=2df96825-3bf0-3160-a555-a54fda61527c, since=null, name=VoltageLevel, alias=, stereotype=, visibility=public, txtDescription='The VoltageLevels having this BaseVoltage.', htmlDescription='

The VoltageLevels having this BaseVoltage.

'], _type=VoltageLevel, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=167, uuid=7e385884-ee3f-3d72-af09-7657d3ecd905, since=null, name=BaseVoltage, alias=, stereotype=, visibility=public, txtDescription='The base voltage used for all equipment within the VoltageLevel.', htmlDescription='

The base voltage used for all equipment within the VoltageLevel.

'], _type=BaseVoltage, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=120, uuid={F610FDC8-D98D-4367-99A9-E9CA1C8A8CC5}, since=null, name=, alias=, stereotype=deprecated, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Core::VoltageLevel +2024-09-07 12:38:48,192 [main] DEBUG ClassBuilder - Adding VoltageLevel as subclass of EquipmentContainer +2024-09-07 12:38:48,192 [main] TRACE ClassBuilder - read from EA: Core::VoltageLevel +2024-09-07 12:38:48,192 [main] TRACE ClassBuilder - Class IdentifiedObject (20 in package Core) +2024-09-07 12:38:48,192 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::IdentifiedObject, _objData=UmlObjectData [id=6646, uuid={D4F8B75D-CDAD-4440-8092-1425101E5ABC}, since=null, name=aliasName, alias=, stereotype=, visibility=public, txtDescription='The aliasName is free text human readable name of the object alternative to IdentifiedObject.name. It may be non unique and may not correlate to a naming hierarchy. +The attribute aliasName is retained because of backwards compatibility between CIM relases. It is however recommended to replace aliasName with the Name class as aliasName is planned for retirement at a future time.', htmlDescription='

The aliasName is free text human readable name of the object alternative to IdentifiedObject.name. It may be non unique and may not correlate to a naming hierarchy.

The attribute aliasName is retained because of backwards compatibility between CIM relases. It is however recommended to replace aliasName with the Name class as aliasName is planned for retirement at a future time.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,192 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::IdentifiedObject, _objData=UmlObjectData [id=6647, uuid={C775F80A-A23D-4f38-AB9D-49D1FA882337}, since=null, name=mRID, alias=, stereotype=, visibility=public, txtDescription='Master resource identifier issued by a model authority. The mRID must semantically be a UUID as specified in RFC 4122. The mRID is globally unique. +For CIMXML data files in RDF syntax, the mRID is mapped to rdf:ID or rdf:about attributes that identify CIM object elements.', htmlDescription='

Master resource identifier issued by a model authority. The mRID must semantically be a UUID as specified in RFC 4122. The mRID is globally unique.

For CIMXML data files in RDF syntax, the mRID is mapped to rdf:ID or rdf:about attributes that identify CIM object elements.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,193 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::IdentifiedObject, _objData=UmlObjectData [id=6648, uuid={870F033B-EDA6-4a32-A5AD-47DCBBFE2997}, since=null, name=name, alias=, stereotype=, visibility=public, txtDescription='The name is any free human readable and possibly non unique text naming the object.', htmlDescription='

The name is any free human readable and possibly non unique text naming the object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,193 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::IdentifiedObject, _objData=UmlObjectData [id=6649, uuid={870F033B-EDA6-4a32-A5AD-47DCBBFE2997}, since=null, name=description, alias=, stereotype=, visibility=public, txtDescription='The description is a free human readable text describing or naming the object. It may be non unique and may not correlate to a naming hierarchy.', htmlDescription='

The description is a free human readable text describing or naming the object. It may be non unique and may not correlate to a naming hierarchy.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,193 [main] DEBUG ClassBuilder - Adding IdentifiedObject as superclass of Terminal +2024-09-07 12:38:48,193 [main] DEBUG ClassBuilder - Adding IdentifiedObject as superclass of BaseVoltage +2024-09-07 12:38:48,193 [main] DEBUG ClassBuilder - Adding IdentifiedObject as superclass of BasePower +2024-09-07 12:38:48,193 [main] DEBUG ClassBuilder - Adding IdentifiedObject as superclass of SubGeographicalRegion +2024-09-07 12:38:48,193 [main] DEBUG ClassBuilder - Adding IdentifiedObject as superclass of geographicalRegion +2024-09-07 12:38:48,193 [main] DEBUG ClassBuilder - Adding IdentifiedObject as superclass of OperatingParticipant +2024-09-07 12:38:48,194 [main] DEBUG ClassBuilder - Adding IdentifiedObject as superclass of PowerSystemResource +2024-09-07 12:38:48,194 [main] TRACE ClassBuilder - read from EA: Core::IdentifiedObject +2024-09-07 12:38:48,194 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61970, _depth=1, _eaElementID=579, _objData=UmlObjectData [id=54, uuid={6A503B72-6E15-4cd1-B92D-DDF6D14DBE29}, since=null, name=Core, alias=, stereotype=, visibility=public, txtDescription='"Contains the core PowerSystemResource and ConductingEquipment entities shared by all applications plus common collections of those entities. Not all applications require all the Core entities. This package does not depend on any other package except the Domain package, but most of the other packages have associations and generalizations that depend on it. +Test bold ignored.', htmlDescription='

"Contains the core PowerSystemResource and ConductingEquipment entities shared by all applications plus common collections of those entities. Not all applications require all the Core entities. This package does not depend on any other package except the Domain package, but most of the other packages have associations and generalizations that depend on it.

Test bold ignored.

'], _modelId=2, _selfDependent=false, 6_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3029, uuid={F8743013-1839-4100-8A7A-A8F62B12BF60}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Note: Diagram does have <> stereotype, but I don't seem to find the means to display that anywhere in EA: neither diagram itself nor Project Browser (in contrast to other UML elements, such as class, package, etc.).', htmlDescription='

Note: Diagram does have <<deprecated>> stereotype, but I don't seem to find the means to display that anywhere in EA: neither diagram itself nor Project Browser (in contrast to other UML elements, such as class, package, etc.).

'], _containingPackage=Core, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3082, uuid={597FAD1D-4901-4aae-9B6F-EA32A226A6A2}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Both class and attribute (here: literal 'singleBreaker') have constraints, we can visualise only those on class.', htmlDescription='

Both class and attribute (here: literal 'singleBreaker') have constraints, we can visualise only those on class.

'], _containingPackage=Core, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3083, uuid={C037F9C1-53F1-43ae-BBF4-92F9C66EE3D7}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='attribute has constraint, but it cannot be displayed...', htmlDescription='

attribute has constraint, but it cannot be displayed...

'], _containingPackage=Core, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3084, uuid={E1C2884E-0577-41a7-ACBD-0C789F87546C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='constraint on generalisation can be specified. seems to be always displayed - cannot be hidden.', htmlDescription='

constraint on generalisation can be specified. seems to be always displayed - cannot be hidden.

'], _containingPackage=Core, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3085, uuid={9A93B88B-4383-4d6a-8BB3-9ABEAB06A27B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Core, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3086, uuid={FE9DCCF0-64F8-47d0-95BE-6D22F3B70814}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Need to enable Diagram option to show constraints, and optionally (if desired) inherited constraints.', htmlDescription='

Need to enable Diagram option to show constraints, and optionally (if desired) inherited constraints.

'], _containingPackage=Core, _otherEndName=]], 2_diagrams=[DiagramBuilder [_containingPackage=Core, _objData=UmlObjectData [id=153, uuid={F791662C-7488-4578-88E1-21352F9799CF}, since=null, name=Main, alias=, stereotype=, visibility=public, txtDescription='"This diagram is intended to show all classes needed for any application of the CIM for modeling transmission and generation systems. +Test bold ignored.', htmlDescription='

"This diagram is intended to show all classes needed for any application of the CIM for modeling transmission and generation systems.

Test bold ignored.

'], _portrait=true, _kind=LOGICAL], DiagramBuilder [_containingPackage=Core, _objData=UmlObjectData [id=155, uuid={88289F74-ECDD-42e8-A693-6744785B1A0C}, since=null, name=Ownership, alias=, stereotype=Deprecated, visibility=public, txtDescription='doc present (but missing "." at its end) and starting with lower case letter', htmlDescription='

doc present (but missing "." at its end) and starting with lower case letter

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=1, _dependenciesAsTarget=1, _classes=19 +2024-09-07 12:38:48,194 [main] INFO PackageBuilder - processing package Topology (5) ... +2024-09-07 12:38:48,194 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Topology, _objData=UmlObjectData [id=142, uuid={BED90F47-24EF-4af0-A8CD-1DB3BE1E6A2E}, since=null, name=Main, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all classes included in the Topology package as well as the key external classes that have associations with Topology classes.', htmlDescription='

This diagram shows all classes included in the Topology package as well as the key external classes that have associations with Topology classes.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,195 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Topology, _objData=UmlObjectData [id=175, uuid={812B4853-1CF3-409f-A123-486DC421E542}, since=null, name=DiagramWithoutComment, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,195 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61970::Topology->IEC61970::Core, _objData=UmlObjectData [id=480, uuid={285C8813-D098-4165-89FE-151394F8B419}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], 1_taggedValues{depTag=value}] +2024-09-07 12:38:48,195 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = IEC61970::Topology->null, _objData=UmlObjectData [id=2132, uuid={FE9A0E08-9542-4980-B6A9-7CFE59DFDF87}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,196 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=792, uuid={28BA82FD-7570-4c86-9A3A-050C731746F5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Bus/Branch bus naming specificaiton static model.', htmlDescription='

Bus/Branch bus naming specificaiton static model.

'], _containingPackage=Topology, _otherEndName=] +2024-09-07 12:38:48,196 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=793, uuid={3080379F-A230-42b0-B079-E64E9C2C4C0E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Bus/Branch calculated Model', htmlDescription='

Bus/Branch calculated Model

'], _containingPackage=Topology, _otherEndName=] +2024-09-07 12:38:48,196 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=798, uuid={F181AA99-3812-4aea-BBD5-6AFFAC73C51E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Switch/Node static Model', htmlDescription='

Switch/Node static Model

'], _containingPackage=Topology, _otherEndName=] +2024-09-07 12:38:48,196 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1445, uuid={7A16D86A-89E8-448d-9921-85B3C3F84B61}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='C2_1: {constrained1, constrained2: all present or all absent}', htmlDescription='

C2_1: {constrained1, constrained2: all present or all absent}

'], _containingPackage=Topology, _otherEndName=] +2024-09-07 12:38:48,196 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1446, uuid={99D566C7-C1FF-4a61-8F98-9BF57F54E99C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='C2_2: {constrained3, constrained4: all present or all absent}', htmlDescription='

C2_2: {constrained3, constrained4: all present or all absent}

'], _containingPackage=Topology, _otherEndName=] +2024-09-07 12:38:48,196 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1447, uuid={30E75C31-A0AF-4889-9B1B-86955E51DB15}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='PICS_SUBST: {constrained5, if substitution defined}', htmlDescription='

PICS_SUBST: {constrained5, if substitution defined}

'], _containingPackage=Topology, _otherEndName=] +2024-09-07 12:38:48,197 [main] TRACE ClassBuilder - Class DumbSubterminal (0 in package Topology) +2024-09-07 12:38:48,197 [main] DEBUG ClassBuilder - Adding DumbSubterminal as subclass of Terminal +2024-09-07 12:38:48,197 [main] TRACE ClassBuilder - read from EA: Topology::DumbSubterminal +2024-09-07 12:38:48,197 [main] TRACE ClassBuilder - Class BusNameMarker (1 in package Topology) +2024-09-07 12:38:48,198 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Topology::BusNameMarker, _objData=UmlObjectData [id=3250, uuid={C375C88C-1BD9-4f29-874F-85F591975EEE}, since=null, name=constrained1, alias=, stereotype=, visibility=public, txtDescription='Added to test parsing and assigning constraints.', htmlDescription='

Added to test parsing and assigning constraints.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2 _constraints[ConstraintBuilder [_objData=UmlObjectData [id=322, uuid=e7838b89-c1f1-3846-82c2-b51c40441fcd, since=null, name=maxIdx, alias=, stereotype=, visibility=public, txtDescription='count+1', htmlDescription='

count+1

'], _containingAttribute=constrained1, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=count+1], ConstraintBuilder [_objData=UmlObjectData [id=323, uuid=504022e1-a42d-3d7e-a7ab-50f48306f4f8, since=null, name=minIdx, alias=, stereotype=, visibility=public, txtDescription='0', htmlDescription='

0

'], _containingAttribute=constrained1, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=0]]] +2024-09-07 12:38:48,198 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Topology::BusNameMarker, _objData=UmlObjectData [id=3251, uuid={6EA50EAF-292F-4f17-A3F5-EB732279F805}, since=null, name=constrained2, alias=, stereotype=, visibility=public, txtDescription='Added to test parsing and assigning constraints.', htmlDescription='

Added to test parsing and assigning constraints.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,198 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Topology::BusNameMarker, _objData=UmlObjectData [id=3252, uuid={31FC9762-65CA-42b7-ABCB-83EFD97D28CE}, since=null, name=constrained3, alias=, stereotype=, visibility=public, txtDescription='Added to test parsing and assigning constraints.', htmlDescription='

Added to test parsing and assigning constraints.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,198 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Topology::BusNameMarker, _objData=UmlObjectData [id=3253, uuid={96BA1CD3-C66C-4ea0-9D8F-B6776C6C49AE}, since=null, name=constrained4, alias=, stereotype=, visibility=public, txtDescription='Added to test parsing and assigning constraints.', htmlDescription='

Added to test parsing and assigning constraints.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,199 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3, uuid={590BBDE0-69DD-4470-B132-44CEC789B123}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=BusNameMarker, _otherEndName=?] +2024-09-07 12:38:48,199 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2093, uuid={96400D51-E956-4b4e-B06B-7F9CBA5E04C2}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=BusNameMarker, _otherEndName=?] +2024-09-07 12:38:48,199 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2094, uuid={70FC92E4-E2D8-4b16-8737-2A47F81F86AF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=BusNameMarker, _otherEndName=?] +2024-09-07 12:38:48,199 [main] DEBUG AssociationEndBuilder - Updated source type to BusNameMarker +2024-09-07 12:38:48,199 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=331, uuid=2167dbf0-972a-3c64-9926-ceb9eb42028e, since=null, name=BusNameMarker, alias=, stereotype=srcStereo1, srcStereo2, visibility=public, txtDescription='The associated name of the bus (TopologicalNode) containing the ConnectivityNode is derived by an algorithm that uses the bus name marker.', htmlDescription='

The associated name of the bus (TopologicalNode) containing the ConnectivityNode is derived by an algorithm that uses the bus name marker.

'], _type=BusNameMarker, _multiplicity=[0..1], _navigable=unspecified, 1_taggedValues{srcTag=valueSrcTag}], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=332, uuid=1135f63d-8caf-3807-b40b-8c38abc7f979, since=null, name=PrivateConnectivityNode, alias=, stereotype=endStereo1, endStereo2, visibility=private, txtDescription='The list of nodes which have the same bus name in the normal topology. Note that this list of ConnectivityNodes should be connected by objects derived from Switch that are normally closed.', htmlDescription='

The list of nodes which have the same bus name in the normal topology. Note that this list of ConnectivityNodes should be connected by objects derived from Switch that are normally closed.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified, 1_taggedValues{endTag=valueEndTag}], _objData=UmlObjectData [id=228, uuid={EE3B8B0F-5740-4380-91F9-563BFD5783D7}, since=null, name=, alias=, stereotype=otherStereo, deprecated, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false, 1_taggedValues{assocTag=val}] +2024-09-07 12:38:48,200 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=331, uuid=2167dbf0-972a-3c64-9926-ceb9eb42028e, since=null, name=BusNameMarker, alias=, stereotype=srcStereo1, srcStereo2, visibility=public, txtDescription='The associated name of the bus (TopologicalNode) containing the ConnectivityNode is derived by an algorithm that uses the bus name marker.', htmlDescription='

The associated name of the bus (TopologicalNode) containing the ConnectivityNode is derived by an algorithm that uses the bus name marker.

'], _type=BusNameMarker, _multiplicity=[0..1], _navigable=unspecified, 1_taggedValues{srcTag=valueSrcTag}], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=332, uuid=1135f63d-8caf-3807-b40b-8c38abc7f979, since=null, name=PrivateConnectivityNode, alias=, stereotype=endStereo1, endStereo2, visibility=private, txtDescription='The list of nodes which have the same bus name in the normal topology. Note that this list of ConnectivityNodes should be connected by objects derived from Switch that are normally closed.', htmlDescription='

The list of nodes which have the same bus name in the normal topology. Note that this list of ConnectivityNodes should be connected by objects derived from Switch that are normally closed.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified, 1_taggedValues{endTag=valueEndTag}], _objData=UmlObjectData [id=228, uuid={EE3B8B0F-5740-4380-91F9-563BFD5783D7}, since=null, name=, alias=, stereotype=otherStereo, deprecated, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false, 1_taggedValues{assocTag=val}] as source to Topology::BusNameMarker +2024-09-07 12:38:48,200 [main] DEBUG ClassBuilder - Adding BusNameMarker as subclass of IdentifiedObject +2024-09-07 12:38:48,200 [main] DEBUG ClassBuilder - Adding BusNameMarker as subclass of InfClass2 +2024-09-07 12:38:48,200 [main] TRACE ClassBuilder - read from EA: Topology::BusNameMarker +2024-09-07 12:38:48,200 [main] TRACE ClassBuilder - Class ConnectivityNode (2 in package Topology) +2024-09-07 12:38:48,200 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=1, uuid={88A0C200-EEC6-4046-94D0-E55191619276}, since=null, name=Switch/Node static Model, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=ConnectivityNode, _otherEndName=?] +2024-09-07 12:38:48,200 [main] DEBUG AssociationEndBuilder - Updated target type to ConnectivityNode +2024-09-07 12:38:48,200 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=331, uuid=2167dbf0-972a-3c64-9926-ceb9eb42028e, since=null, name=BusNameMarker, alias=, stereotype=srcStereo1, srcStereo2, visibility=public, txtDescription='The associated name of the bus (TopologicalNode) containing the ConnectivityNode is derived by an algorithm that uses the bus name marker.', htmlDescription='

The associated name of the bus (TopologicalNode) containing the ConnectivityNode is derived by an algorithm that uses the bus name marker.

'], _type=BusNameMarker, _multiplicity=[0..1], _navigable=unspecified, 1_taggedValues{srcTag=valueSrcTag}], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=332, uuid=1135f63d-8caf-3807-b40b-8c38abc7f979, since=null, name=PrivateConnectivityNode, alias=, stereotype=endStereo1, endStereo2, visibility=private, txtDescription='The list of nodes which have the same bus name in the normal topology. Note that this list of ConnectivityNodes should be connected by objects derived from Switch that are normally closed.', htmlDescription='

The list of nodes which have the same bus name in the normal topology. Note that this list of ConnectivityNodes should be connected by objects derived from Switch that are normally closed.

'], _type=ConnectivityNode, _multiplicity=[0..*], _navigable=unspecified, 1_taggedValues{endTag=valueEndTag}], _objData=UmlObjectData [id=228, uuid={EE3B8B0F-5740-4380-91F9-563BFD5783D7}, since=null, name=, alias=, stereotype=otherStereo, deprecated, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false, 1_taggedValues{assocTag=val}] as target to Topology::ConnectivityNode +2024-09-07 12:38:48,200 [main] DEBUG AssociationEndBuilder - Updated target type to ConnectivityNode +2024-09-07 12:38:48,200 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=291, uuid=90cbfea3-4fcc-3b34-8a4d-19b078519a40, since=null, name=Terminals, alias=, stereotype=, visibility=public, txtDescription='Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.', htmlDescription='

Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.

'], _type=Terminal, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=292, uuid=82cf9a85-6ff2-3238-844b-b1eb670bffb2, since=null, name=ConnectivityNode, alias=, stereotype=, visibility=public, txtDescription='Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.', htmlDescription='

Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.

'], _type=ConnectivityNode, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=229, uuid={C7E01609-F4E6-4a6e-8ACF-BDD413E62DE3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.', htmlDescription='

Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Topology::ConnectivityNode +2024-09-07 12:38:48,200 [main] DEBUG AssociationEndBuilder - Updated source type to ConnectivityNode +2024-09-07 12:38:48,200 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=209, uuid=10ccce83-a67a-3505-a530-f2e7cdbc675c, since=null, name=ConnectivityNodes, alias=, stereotype=, visibility=public, txtDescription='Connectivity nodes contained by this container.', htmlDescription='

Connectivity nodes contained by this container.

'], _type=ConnectivityNode, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=210, uuid=d334a62d-c53a-37a2-856c-81d5fe2c2186, since=null, name=ConnectivityNodeContainer, alias=, stereotype=, visibility=public, txtDescription='Container of this connectivity node.', htmlDescription='

Container of this connectivity node.

'], _type=ConnectivityNodeContainer, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=234, uuid={08EEABA6-269C-44a7-8F82-7BBEFE71ADD6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Topology::ConnectivityNode +2024-09-07 12:38:48,201 [main] DEBUG AssociationEndBuilder - Updated source type to ConnectivityNode +2024-09-07 12:38:48,201 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=336, uuid=9982ac3a-53c9-35df-b268-40e8edd622bf, since=null, name=ConnectivityNodes, alias=, stereotype=, visibility=public, txtDescription='Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.', htmlDescription='

Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.

'], _type=ConnectivityNode, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=false, _objData=UmlObjectData [id=337, uuid=8d0d5545-4ebe-371a-9bc8-3b3ad0fe2ba2, since=null, name=TopologicalNode, alias=, stereotype=, visibility=public, txtDescription='Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.', htmlDescription='

Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=235, uuid={ACD76E10-125A-4f7a-A20A-475AC4334414}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.', htmlDescription='

Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,201 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=336, uuid=9982ac3a-53c9-35df-b268-40e8edd622bf, since=null, name=ConnectivityNodes, alias=, stereotype=, visibility=public, txtDescription='Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.', htmlDescription='

Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.

'], _type=ConnectivityNode, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=false, _objData=UmlObjectData [id=337, uuid=8d0d5545-4ebe-371a-9bc8-3b3ad0fe2ba2, since=null, name=TopologicalNode, alias=, stereotype=, visibility=public, txtDescription='Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.', htmlDescription='

Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=235, uuid={ACD76E10-125A-4f7a-A20A-475AC4334414}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.', htmlDescription='

Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Topology::ConnectivityNode +2024-09-07 12:38:48,201 [main] DEBUG ClassBuilder - Adding ConnectivityNode as subclass of IdentifiedObject +2024-09-07 12:38:48,201 [main] TRACE ClassBuilder - read from EA: Topology::ConnectivityNode +2024-09-07 12:38:48,201 [main] TRACE ClassBuilder - Class TestEnum (3 in package Topology) +2024-09-07 12:38:48,201 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Topology::TestEnum, _objData=UmlObjectData [id=3282, uuid={448B9ABD-3F52-4aec-9426-7C21A75B18F6}, since=null, name=J/m², alias=alias J/m², stereotype=enum, visibility=public, txtDescription='(note) J/m².', htmlDescription='

(note) J/.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=initial J/m², _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,202 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Topology::TestEnum, _objData=UmlObjectData [id=3283, uuid={56A57775-5935-4c7a-B94E-C28F50A063F0}, since=null, name=µ, alias=alias µ, stereotype=enum, visibility=public, txtDescription='(note) bold µ', htmlDescription='

(note) bold µ

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=initial µ, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,202 [main] TRACE ClassBuilder - read from EA: Topology::TestEnum +2024-09-07 12:38:48,202 [main] TRACE ClassBuilder - Class TopologicalIsland (4 in package Topology) +2024-09-07 12:38:48,202 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Topology::TopologicalIsland, _objData=UmlObjectData [id=3254, uuid={71F47E96-66A9-469f-9B94-D81BAECFCBD5}, since=null, name=constrained5, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,202 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Topology::TopologicalIsland, _objData=UmlObjectData [id=3255, uuid={DCE02A31-C635-4cf0-AB24-4C475CEDCC93}, since=null, name=nonConstrained, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,203 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2095, uuid={CCC3E00F-0EDA-4c10-9ECD-2D3218F35E39}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=TopologicalIsland, _otherEndName=?] +2024-09-07 12:38:48,203 [main] DEBUG AssociationEndBuilder - Updated target type to TopologicalIsland +2024-09-07 12:38:48,203 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=347, uuid=b0a14ef2-f9f4-3b4b-a0d5-07cacaf1f168, since=null, name=TopologicalNodes, alias=, stereotype=, visibility=public, txtDescription='A topological node belongs to a topological island', htmlDescription='

A topological node belongs to a topological island

'], _type=null, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=false, _objData=UmlObjectData [id=348, uuid=024ca73f-724b-35af-9fee-7352265f18ed, since=null, name=TopologicalIsland, alias=, stereotype=, visibility=public, txtDescription='A topological node belongs to a topological island', htmlDescription='

A topological node belongs to a topological island

'], _type=TopologicalIsland, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=237, uuid={C890568A-2C06-4a80-B381-F84EBB81CE0A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='A topological node belongs to a topological island', htmlDescription='

A topological node belongs to a topological island

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,204 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=347, uuid=b0a14ef2-f9f4-3b4b-a0d5-07cacaf1f168, since=null, name=TopologicalNodes, alias=, stereotype=, visibility=public, txtDescription='A topological node belongs to a topological island', htmlDescription='

A topological node belongs to a topological island

'], _type=null, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=false, _objData=UmlObjectData [id=348, uuid=024ca73f-724b-35af-9fee-7352265f18ed, since=null, name=TopologicalIsland, alias=, stereotype=, visibility=public, txtDescription='A topological node belongs to a topological island', htmlDescription='

A topological node belongs to a topological island

'], _type=TopologicalIsland, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=237, uuid={C890568A-2C06-4a80-B381-F84EBB81CE0A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='A topological node belongs to a topological island', htmlDescription='

A topological node belongs to a topological island

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Topology::TopologicalIsland +2024-09-07 12:38:48,204 [main] DEBUG AssociationEndBuilder - Updated source type to TopologicalIsland +2024-09-07 12:38:48,205 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=350, uuid=fcdfa1af-63f6-3e94-93b3-1876ca1e670b, since=null, name=AngleRef_TopologicalIsland, alias=, stereotype=, visibility=public, txtDescription='The island for which the node is an angle reference. Normally there is one angle reference node for each island.', htmlDescription='

The island for which the node is an angle reference. Normally there is one angle reference node for each island.

'], _type=TopologicalIsland, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=351, uuid=1a38743d-3df1-3b3d-883a-b2ed5775c465, since=null, name=AngleRef_TopologicalNode, alias=, stereotype=, visibility=public, txtDescription='The angle reference for the island. Normally there is one TopologicalNode that is selected as the angle reference for each island. Other reference schemes exist, so the association is optional.', htmlDescription='

The angle reference for the island. Normally there is one TopologicalNode that is selected as the angle reference for each island. Other reference schemes exist, so the association is optional.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=1947, uuid={7537BE85-0F89-40e3-89A0-C8C7F534F430}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,205 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=350, uuid=fcdfa1af-63f6-3e94-93b3-1876ca1e670b, since=null, name=AngleRef_TopologicalIsland, alias=, stereotype=, visibility=public, txtDescription='The island for which the node is an angle reference. Normally there is one angle reference node for each island.', htmlDescription='

The island for which the node is an angle reference. Normally there is one angle reference node for each island.

'], _type=TopologicalIsland, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=351, uuid=1a38743d-3df1-3b3d-883a-b2ed5775c465, since=null, name=AngleRef_TopologicalNode, alias=, stereotype=, visibility=public, txtDescription='The angle reference for the island. Normally there is one TopologicalNode that is selected as the angle reference for each island. Other reference schemes exist, so the association is optional.', htmlDescription='

The angle reference for the island. Normally there is one TopologicalNode that is selected as the angle reference for each island. Other reference schemes exist, so the association is optional.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=1947, uuid={7537BE85-0F89-40e3-89A0-C8C7F534F430}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Topology::TopologicalIsland +2024-09-07 12:38:48,205 [main] DEBUG ClassBuilder - Adding TopologicalIsland as subclass of IdentifiedObject +2024-09-07 12:38:48,205 [main] TRACE ClassBuilder - read from EA: Topology::TopologicalIsland +2024-09-07 12:38:48,205 [main] TRACE ClassBuilder - Class TopologicalNode (5 in package Topology) +2024-09-07 12:38:48,205 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2, uuid={9F62C0A5-1313-44e0-B47D-FC9F1A31ADD0}, since=null, name=Bus/Branch calculated Model, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=TopologicalNode, _otherEndName=?] +2024-09-07 12:38:48,205 [main] DEBUG AssociationEndBuilder - Updated target type to TopologicalNode +2024-09-07 12:38:48,205 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=336, uuid=9982ac3a-53c9-35df-b268-40e8edd622bf, since=null, name=ConnectivityNodes, alias=, stereotype=, visibility=public, txtDescription='Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.', htmlDescription='

Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.

'], _type=ConnectivityNode, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=false, _objData=UmlObjectData [id=337, uuid=8d0d5545-4ebe-371a-9bc8-3b3ad0fe2ba2, since=null, name=TopologicalNode, alias=, stereotype=, visibility=public, txtDescription='Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.', htmlDescription='

Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.

'], _type=TopologicalNode, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=235, uuid={ACD76E10-125A-4f7a-A20A-475AC4334414}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.', htmlDescription='

Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Topology::TopologicalNode +2024-09-07 12:38:48,205 [main] DEBUG AssociationEndBuilder - Updated source type to TopologicalNode +2024-09-07 12:38:48,206 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=347, uuid=b0a14ef2-f9f4-3b4b-a0d5-07cacaf1f168, since=null, name=TopologicalNodes, alias=, stereotype=, visibility=public, txtDescription='A topological node belongs to a topological island', htmlDescription='

A topological node belongs to a topological island

'], _type=TopologicalNode, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=false, _objData=UmlObjectData [id=348, uuid=024ca73f-724b-35af-9fee-7352265f18ed, since=null, name=TopologicalIsland, alias=, stereotype=, visibility=public, txtDescription='A topological node belongs to a topological island', htmlDescription='

A topological node belongs to a topological island

'], _type=TopologicalIsland, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=237, uuid={C890568A-2C06-4a80-B381-F84EBB81CE0A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='A topological node belongs to a topological island', htmlDescription='

A topological node belongs to a topological island

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Topology::TopologicalNode +2024-09-07 12:38:48,206 [main] DEBUG AssociationEndBuilder - Updated target type to TopologicalNode +2024-09-07 12:38:48,206 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=350, uuid=fcdfa1af-63f6-3e94-93b3-1876ca1e670b, since=null, name=AngleRef_TopologicalIsland, alias=, stereotype=, visibility=public, txtDescription='The island for which the node is an angle reference. Normally there is one angle reference node for each island.', htmlDescription='

The island for which the node is an angle reference. Normally there is one angle reference node for each island.

'], _type=TopologicalIsland, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=351, uuid=1a38743d-3df1-3b3d-883a-b2ed5775c465, since=null, name=AngleRef_TopologicalNode, alias=, stereotype=, visibility=public, txtDescription='The angle reference for the island. Normally there is one TopologicalNode that is selected as the angle reference for each island. Other reference schemes exist, so the association is optional.', htmlDescription='

The angle reference for the island. Normally there is one TopologicalNode that is selected as the angle reference for each island. Other reference schemes exist, so the association is optional.

'], _type=TopologicalNode, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=1947, uuid={7537BE85-0F89-40e3-89A0-C8C7F534F430}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Topology::TopologicalNode +2024-09-07 12:38:48,206 [main] DEBUG AssociationEndBuilder - Updated target type to TopologicalNode +2024-09-07 12:38:48,206 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=294, uuid=156aeee5-edcf-3620-8689-98f66c084af5, since=null, name=Terminal, alias=, stereotype=, visibility=public, txtDescription='The terminals associated with the topological node. This can be used as an alternative to the connectivity node path to terminal, thus making it unneccesary to model connedtivity nodes in some cases. Note that the if connectivity nodes are in the model, this association would proably not be used.', htmlDescription='

The terminals associated with the topological node. This can be used as an alternative to the connectivity node path to terminal, thus making it unneccesary to model connedtivity nodes in some cases. Note that the if connectivity nodes are in the model, this association would proably not be used.

'], _type=Terminal, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=false, _objData=UmlObjectData [id=295, uuid=347bba3d-4267-3d35-8f14-3bf34cfb435d, since=null, name=TopologicalNode, alias=, stereotype=, visibility=public, txtDescription='The topological node associated with the terminal. This can be used as an alternative to the connectivity node path to topological node, thus making it unneccesary to model connedtivity nodes in some cases. Note that the if connectivity nodes are in the model, this association would proably not be used.', htmlDescription='

The topological node associated with the terminal. This can be used as an alternative to the connectivity node path to topological node, thus making it unneccesary to model connedtivity nodes in some cases. Note that the if connectivity nodes are in the model, this association would proably not be used.

'], _type=TopologicalNode, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=1961, uuid={F490BFCA-36A8-4fe2-B28B-66466134B41E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Topology::TopologicalNode +2024-09-07 12:38:48,206 [main] DEBUG AssociationEndBuilder - Updated source type to TopologicalNode +2024-09-07 12:38:48,206 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=212, uuid=273458f0-8dc9-3b97-8d72-736bec7303fd, since=null, name=TopologicalNode, alias=, stereotype=, visibility=public, txtDescription='The topological nodes which belong to this connectivity node container.', htmlDescription='

The topological nodes which belong to this connectivity node container.

'], _type=TopologicalNode, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=213, uuid=069cc4c5-6982-3d6a-b143-1664cb457595, since=null, name=ConnectivityNodeContainer, alias=, stereotype=, visibility=public, txtDescription='The connectivity node container to which the toplogical node belongs.', htmlDescription='

The connectivity node container to which the toplogical node belongs.

'], _type=ConnectivityNodeContainer, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=1974, uuid={88BD0C47-4CB3-44db-9A6B-20C783A24478}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Topology::TopologicalNode +2024-09-07 12:38:48,206 [main] DEBUG AssociationEndBuilder - Updated source type to TopologicalNode +2024-09-07 12:38:48,206 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=172, uuid=ddf38257-ed75-3694-81a7-e984049e0ecf, since=null, name=TopologicalNode, alias=, stereotype=, visibility=public, txtDescription='The topological nodes at the base voltage.', htmlDescription='

The topological nodes at the base voltage.

'], _type=TopologicalNode, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=173, uuid=56be42a8-abee-3a0d-ab13-c23730a949e3, since=null, name=BaseVoltage, alias=, stereotype=, visibility=public, txtDescription='The base voltage of the topologocial node.', htmlDescription='

The base voltage of the topologocial node.

'], _type=BaseVoltage, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2092, uuid={6F37A2BE-FB37-4a6c-8BB1-CFC6690C1867}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Topology::TopologicalNode +2024-09-07 12:38:48,206 [main] DEBUG ClassBuilder - Adding TopologicalNode as subclass of IdentifiedObject +2024-09-07 12:38:48,206 [main] TRACE ClassBuilder - read from EA: Topology::TopologicalNode +2024-09-07 12:38:48,206 [main] INFO PackageBuilder - processing package TestEnums (0) ... +2024-09-07 12:38:48,207 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=TestEnums, _objData=UmlObjectData [id=322, uuid={EB85622E-6F55-437f-8452-4BC5F0CD56EA}, since=null, name=TestEnums, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,207 [main] ERROR EaTables - [+++ EA ordering problem for 3 class(s) in TestEnums (manually move back/forth a class to initiate EA internal ordering update!): +, +++ class EnumWithSomeIntCodes: pos = 0 +, +++ class EnumWithStringCodes: pos = 0 DUPLICATE +, +++ class EnumWithNonUniqueCodes: pos = 0 DUPLICATE +] +2024-09-07 12:38:48,208 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3046, uuid={9C4E5333-2EF4-4e2a-896D-5483E24C814F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='to test missing codes; and also number codes.', htmlDescription='

to test missing codes; and also number codes.

'], _containingPackage=TestEnums, _otherEndName=] +2024-09-07 12:38:48,208 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3048, uuid={74B8B3CB-8367-40f8-85C6-B3069AC1558A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='(will be picked for missing codes) +also to test that we correctly conclude 'type=string' and not integer (type is useful when sorting values and finding the "free" ones for integers)', htmlDescription='

(will be picked for missing codes)

also to test that we correctly conclude 'type=string' and not integer (type is useful when sorting values and finding the "free" ones for integers)

'], _containingPackage=TestEnums, _otherEndName=] +2024-09-07 12:38:48,208 [main] TRACE ClassBuilder - Class EnumWithSomeIntCodes (0 in package TestEnums) +2024-09-07 12:38:48,209 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithSomeIntCodes, _objData=UmlObjectData [id=6663, uuid={97764136-F1CA-4ee2-AA97-54F873C39045}, since=null, name=lit10, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=10, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,209 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithSomeIntCodes, _objData=UmlObjectData [id=6664, uuid={B65824BB-92BD-45a3-8F03-50001545F733}, since=null, name=lit20noCode, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,209 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithSomeIntCodes, _objData=UmlObjectData [id=6665, uuid={F5F0C134-4646-431c-98A0-7D365357DAF0}, since=null, name=lit30, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,209 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithSomeIntCodes, _objData=UmlObjectData [id=6666, uuid={A50E49A0-5BA7-4ed5-B3C5-7B55938B0EB6}, since=null, name=lit40, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,209 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithSomeIntCodes, _objData=UmlObjectData [id=6667, uuid={FD887BC2-C8C7-45c3-9E46-87FA1FA16E37}, since=null, name=lit50, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,210 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithSomeIntCodes, _objData=UmlObjectData [id=6668, uuid={57C382A8-48C8-4296-9B79-DE5AFE8BF6B6}, since=null, name=lit60noCode, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,210 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithSomeIntCodes, _objData=UmlObjectData [id=6669, uuid={8A457DE1-5D50-4034-8F5F-11A64BBFD2D8}, since=null, name=lit70, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,210 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3428, uuid={E99F9C5D-7CCC-4a92-9042-F3B035F5A21B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=EnumWithSomeIntCodes, _otherEndName=?] +2024-09-07 12:38:48,210 [main] TRACE ClassBuilder - read from EA: TestEnums::EnumWithSomeIntCodes +2024-09-07 12:38:48,210 [main] TRACE ClassBuilder - Class EnumWithStringCodes (0 in package TestEnums) +2024-09-07 12:38:48,210 [main] DEBUG DbAttributeBuilder - fixing lower bound '' to 1 for enum:UmlObjectData [id=6670, uuid={BC79B050-3201-4100-9EE4-8B07DAD5B090}, since=null, name=str1, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''] +2024-09-07 12:38:48,210 [main] DEBUG DbAttributeBuilder - fixing upper bound '' to 1 for enum:UmlObjectData [id=6670, uuid={BC79B050-3201-4100-9EE4-8B07DAD5B090}, since=null, name=str1, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''] +2024-09-07 12:38:48,210 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithStringCodes, _objData=UmlObjectData [id=6670, uuid={BC79B050-3201-4100-9EE4-8B07DAD5B090}, since=null, name=str1, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,211 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithStringCodes, _objData=UmlObjectData [id=6671, uuid={26D63869-DE55-4cd8-B09C-9BC6640C5FCC}, since=null, name=str2, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=some string, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,211 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithStringCodes, _objData=UmlObjectData [id=6672, uuid={4EEBA555-6530-4b24-83E9-B9778D9F8865}, since=null, name=str3noCode, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,211 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithStringCodes, _objData=UmlObjectData [id=6673, uuid={C8F2DAE7-B3EA-435f-B32B-9ACD7F6D4A89}, since=null, name=str4, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3.14, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,211 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithStringCodes, _objData=UmlObjectData [id=6674, uuid={E860CE78-27BE-453d-A09A-F3648DB49F54}, since=null, name=str5, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=another string, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,212 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3429, uuid={40539FAF-0122-4915-8114-EA11C771BB8F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=EnumWithStringCodes, _otherEndName=?] +2024-09-07 12:38:48,212 [main] TRACE ClassBuilder - read from EA: TestEnums::EnumWithStringCodes +2024-09-07 12:38:48,212 [main] TRACE ClassBuilder - Class EnumWithNonUniqueCodes (0 in package TestEnums) +2024-09-07 12:38:48,212 [main] DEBUG DbAttributeBuilder - fixing lower bound '' to 1 for enum:UmlObjectData [id=6675, uuid={AF9195CE-3B58-49bd-AAFF-5096B17E7CC3}, since=null, name=c1, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''] +2024-09-07 12:38:48,212 [main] DEBUG DbAttributeBuilder - fixing upper bound '' to 1 for enum:UmlObjectData [id=6675, uuid={AF9195CE-3B58-49bd-AAFF-5096B17E7CC3}, since=null, name=c1, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''] +2024-09-07 12:38:48,212 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithNonUniqueCodes, _objData=UmlObjectData [id=6675, uuid={AF9195CE-3B58-49bd-AAFF-5096B17E7CC3}, since=null, name=c1, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,212 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithNonUniqueCodes, _objData=UmlObjectData [id=6676, uuid={6EAFF992-8224-4275-8BDC-F4AF84806841}, since=null, name=c2, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,212 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithNonUniqueCodes, _objData=UmlObjectData [id=6677, uuid={50FA5150-C952-4da4-8B39-BFCB3A0AE516}, since=null, name=c3, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,212 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithNonUniqueCodes, _objData=UmlObjectData [id=6678, uuid={EB583897-4EF4-4540-ABD7-AE37AEE8A545}, since=null, name=c4, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,213 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithNonUniqueCodes, _objData=UmlObjectData [id=6679, uuid={AD689D8B-2CA4-4e25-8827-4E946E5577D6}, since=null, name=c5, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,213 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithNonUniqueCodes, _objData=UmlObjectData [id=6680, uuid={91464270-40F1-4f40-BE47-ACFFFD42962C}, since=null, name=c6, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=6, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,213 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithNonUniqueCodes, _objData=UmlObjectData [id=6681, uuid={43B6F39E-662B-4646-B1DF-C63F8E6306D5}, since=null, name=c7, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,213 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithNonUniqueCodes, _objData=UmlObjectData [id=6682, uuid={4E9F146E-EF05-4d8f-8488-9CC79243CD2A}, since=null, name=c8, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=8, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,213 [main] TRACE ClassBuilder - read from EA: TestEnums::EnumWithNonUniqueCodes +2024-09-07 12:38:48,213 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Topology, _depth=2, _eaElementID=3044, _objData=UmlObjectData [id=168, uuid={985DB921-A357-472b-AA9D-8533D25EB928}, since=null, name=TestEnums, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=2, _selfDependent=false, 2_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3046, uuid={9C4E5333-2EF4-4e2a-896D-5483E24C814F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='to test missing codes; and also number codes.', htmlDescription='

to test missing codes; and also number codes.

'], _containingPackage=TestEnums, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3048, uuid={74B8B3CB-8367-40f8-85C6-B3069AC1558A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='(will be picked for missing codes) +also to test that we correctly conclude 'type=string' and not integer (type is useful when sorting values and finding the "free" ones for integers)', htmlDescription='

(will be picked for missing codes)

also to test that we correctly conclude 'type=string' and not integer (type is useful when sorting values and finding the "free" ones for integers)

'], _containingPackage=TestEnums, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=TestEnums, _objData=UmlObjectData [id=322, uuid={EB85622E-6F55-437f-8452-4BC5F0CD56EA}, since=null, name=TestEnums, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _classes=3 +2024-09-07 12:38:48,213 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61970, _depth=1, _eaElementID=586, _objData=UmlObjectData [id=52, uuid={E44AA599-D1DD-4d0c-8487-AE8BE9E6FEEB}, since=null, name=Topology, alias=, stereotype=deprecated, visibility=public, txtDescription=''An extension to the Core Package that in association with the Terminal class models Connectivity, that is the physical definition of how equipment is connected together. In addition it models Topology, that is the logical definition of how equipment is connected via closed switches. The Topology definition is independent of the other electrical characteristics.', htmlDescription='

'An extension to the Core Package that in association with the Terminal class models Connectivity, that is the physical definition of how equipment is connected together. In addition it models Topology, that is the logical definition of how equipment is connected via closed switches. The Topology definition is independent of the other electrical characteristics.

'], _modelId=2, _selfDependent=false, 6_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=792, uuid={28BA82FD-7570-4c86-9A3A-050C731746F5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Bus/Branch bus naming specificaiton static model.', htmlDescription='

Bus/Branch bus naming specificaiton static model.

'], _containingPackage=Topology, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=793, uuid={3080379F-A230-42b0-B079-E64E9C2C4C0E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Bus/Branch calculated Model', htmlDescription='

Bus/Branch calculated Model

'], _containingPackage=Topology, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=798, uuid={F181AA99-3812-4aea-BBD5-6AFFAC73C51E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Switch/Node static Model', htmlDescription='

Switch/Node static Model

'], _containingPackage=Topology, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1445, uuid={7A16D86A-89E8-448d-9921-85B3C3F84B61}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='C2_1: {constrained1, constrained2: all present or all absent}', htmlDescription='

C2_1: {constrained1, constrained2: all present or all absent}

'], _containingPackage=Topology, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1446, uuid={99D566C7-C1FF-4a61-8F98-9BF57F54E99C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='C2_2: {constrained3, constrained4: all present or all absent}', htmlDescription='

C2_2: {constrained3, constrained4: all present or all absent}

'], _containingPackage=Topology, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1447, uuid={30E75C31-A0AF-4889-9B1B-86955E51DB15}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='PICS_SUBST: {constrained5, if substitution defined}', htmlDescription='

PICS_SUBST: {constrained5, if substitution defined}

'], _containingPackage=Topology, _otherEndName=]], 2_diagrams=[DiagramBuilder [_containingPackage=Topology, _objData=UmlObjectData [id=142, uuid={BED90F47-24EF-4af0-A8CD-1DB3BE1E6A2E}, since=null, name=Main, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all classes included in the Topology package as well as the key external classes that have associations with Topology classes.', htmlDescription='

This diagram shows all classes included in the Topology package as well as the key external classes that have associations with Topology classes.

'], _portrait=true, _kind=LOGICAL], DiagramBuilder [_containingPackage=Topology, _objData=UmlObjectData [id=175, uuid={812B4853-1CF3-409f-A123-486DC421E542}, since=null, name=DiagramWithoutComment, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=2, _classes=6, _childPackages=1] +2024-09-07 12:38:48,214 [main] TRACE PackageBuilder - read PackageBuilder [_kind=TOP, _containingPackage=TC57CIM, _depth=0, _eaElementID=16, _objData=UmlObjectData [id=39, uuid={21D32832-FF64-4213-B81C-55ACE35EEBFF}, since=null, name=IEC61970, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=2, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=STATE, _isConnector=false, _objData=UmlObjectData [id=1497, uuid={5D5CC973-30B7-4d45-8CF7-92688076EFE3}, since=null, name=StateInPackage, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=IEC61970, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=IEC61970, _objData=UmlObjectData [id=111, uuid={FB07D92D-5F4D-4fdc-AD82-2376FAF51037}, since=null, name=Main, alias=, stereotype=, visibility=public, txtDescription=''This diagram shows all 61970 packages and their logical dependencies. +Test bold ignored.', htmlDescription='

'This diagram shows all 61970 packages and their logical dependencies.

Test bold ignored.

'], _portrait=false, _kind=LOGICAL]], _dependenciesAsTarget=3, _classes=1, _childPackages=5] +2024-09-07 12:38:48,214 [main] INFO PackageBuilder - processing top package IEC61968 (3) ... +2024-09-07 12:38:48,214 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=IEC61968, _objData=UmlObjectData [id=158, uuid={B3B5E06E-B00E-4cb6-B697-39D4D8476DC2}, since=null, name=IEC61968, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,214 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = TC57CIM::IEC61968->TC57CIM::IEC61970, _objData=UmlObjectData [id=3447, uuid={78B6C7F1-FC16-4b0c-A685-CD6711DBB0A3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,214 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->TC57CIM::IEC61968, _objData=UmlObjectData [id=3448, uuid={BEB08626-C0F2-4a9d-860D-F205594F0FE9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,215 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1478, uuid={5081A538-2556-474f-88ED-7C7DF4A5AFC6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='duplicate name in same parent package', htmlDescription='

duplicate name in same parent package

'], _containingPackage=IEC61968, _otherEndName=] +2024-09-07 12:38:48,215 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1479, uuid={9D7409F2-ED2C-4db6-8F47-491CE2A1844E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='duplicate name with other parent package', htmlDescription='

duplicate name with other parent package

'], _containingPackage=IEC61968, _otherEndName=] +2024-09-07 12:38:48,215 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1499, uuid={15CB1C37-5F9F-43ea-BD54-22E99CD16F24}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='wrong dependency direction', htmlDescription='

wrong dependency direction

'], _containingPackage=IEC61968, _otherEndName=] +2024-09-07 12:38:48,215 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3075, uuid={4E5B9BC5-C441-4553-80A7-70B7D074D066}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='- extension tags with namespaces', htmlDescription='

- extension tags with namespaces

'], _containingPackage=IEC61968, _otherEndName=] +2024-09-07 12:38:48,215 [main] TRACE ClassBuilder - Class IEC61968Version (0 in package IEC61968) +2024-09-07 12:38:48,215 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61968::IEC61968Version, _objData=UmlObjectData [id=3256, uuid={9FE72A7E-8CF0-40a9-A6CF-4F41D1B5BF82}, since=null, name=date, alias=, stereotype=, visibility=public, txtDescription='Form is YYYY-MM-DD for example for January 5, 2009 it is 2009-01-05 (not ending with dot)', htmlDescription='

Form is YYYY-MM-DD for example for January 5, 2009 it is 2009-01-05 (not ending with dot)

'], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=2010-05-07, _eaTypeId=640, _eaTypeName=AbsoluteDateTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,216 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61968::IEC61968Version, _objData=UmlObjectData [id=3257, uuid={CB9E6808-E556-4c14-AB7D-D4245FA445B6}, since=null, name=version, alias=, stereotype=, visibility=public, txtDescription='Form is IEC61970CIMXXvYY where XX is the major CIM package version and the YY is the minor version. For ecample IEC61970CIM13v18.', htmlDescription='

Form is IEC61970CIMXXvYY where XX is the major CIM package version and the YY is the minor version. For ecample IEC61970CIM13v18.

'], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=IEC62325CIM01v02, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,216 [main] TRACE ClassBuilder - read from EA: IEC61968::IEC61968Version +2024-09-07 12:38:48,216 [main] INFO PackageBuilder - processing package EmbeddedExtension (0) ... +2024-09-07 12:38:48,217 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=EmbeddedExtension, _objData=UmlObjectData [id=328, uuid={9E98C833-9774-4ea6-A2CF-95D39952B4EB}, since=null, name=EmbeddedExtension, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=PACKAGE] +2024-09-07 12:38:48,217 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3457, uuid={87BB5BD5-B379-4ea5-AE8F-4EAD0B5884E4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=EmbeddedExtension, _otherEndName=Note ''] +2024-09-07 12:38:48,217 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61968, _depth=1, _eaElementID=3074, _objData=UmlObjectData [id=173, uuid={FFD756A8-FFD9-477f-86B1-77DCB78D7FF1}, since=null, name=EmbeddedExtension, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=2, _selfDependent=false, 2_taggedValues{nsuri=http://embeddedExt, nsprefix=eext}, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3457, uuid={87BB5BD5-B379-4ea5-AE8F-4EAD0B5884E4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=EmbeddedExtension, _otherEndName=Note '']], 1_diagrams=[DiagramBuilder [_containingPackage=EmbeddedExtension, _objData=UmlObjectData [id=328, uuid={9E98C833-9774-4ea6-A2CF-95D39952B4EB}, since=null, name=EmbeddedExtension, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=PACKAGE]] +2024-09-07 12:38:48,218 [main] INFO PackageBuilder - processing package Assets (2) ... +2024-09-07 12:38:48,218 [main] ERROR EaTables - [+++ EA ordering problem for 2 diagram(s) in Assets (manually move back/forth a diagram to initiate EA internal ordering update!): +, +++ diagram Assets: pos = 0 +, +++ diagram AssetsObjDia: pos = 0 DUPLICATE +] +2024-09-07 12:38:48,218 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Assets, _objData=UmlObjectData [id=184, uuid={F773A826-B339-4839-9D00-9F1FECC8C458}, since=null, name=Assets, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,218 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Assets, _objData=UmlObjectData [id=326, uuid={669D2D40-80CD-42ed-AC0A-EC34B7B214AD}, since=null, name=AssetsObjDia, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=OBJECT] +2024-09-07 12:38:48,219 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=false, _objData=UmlObjectData [id=3064, uuid={E11F1530-D301-48de-9638-0D6673F15252}, since=null, name=Object1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Assets, _otherEndName=] +2024-09-07 12:38:48,219 [main] TRACE ClassBuilder - Class AssetInfo (0 in package Assets) +2024-09-07 12:38:48,220 [main] DEBUG AssociationEndBuilder - Updated source type to AssetInfo +2024-09-07 12:38:48,220 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=274, uuid=95687635-5e2c-38e8-a9f7-3fcbd94f561c, since=null, name=AssetInfos, alias=, stereotype=, visibility=public, txtDescription='FooBar', htmlDescription='

FooBar

'], _type=AssetInfo, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=275, uuid=1892b331-bca4-3a23-9fd8-dccf941cd095, since=null, name=PSRs, alias=, stereotype=, visibility=public, txtDescription='Blah', htmlDescription='

Blah

'], _type=PowerSystemResource, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=2148, uuid={D93167F8-2A16-4fbc-BC07-353D141C8E50}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Assets::AssetInfo +2024-09-07 12:38:48,220 [main] TRACE ClassBuilder - read from EA: Assets::AssetInfo +2024-09-07 12:38:48,220 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61968, _depth=1, _eaElementID=1545, _objData=UmlObjectData [id=83, uuid={516376C4-BBFB-448f-8E87-F13D9134F402}, since=null, name=Assets, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=2, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=OTHER, _isConnector=false, _objData=UmlObjectData [id=3064, uuid={E11F1530-D301-48de-9638-0D6673F15252}, since=null, name=Object1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Assets, _otherEndName=]], 2_diagrams=[DiagramBuilder [_containingPackage=Assets, _objData=UmlObjectData [id=184, uuid={F773A826-B339-4839-9D00-9F1FECC8C458}, since=null, name=Assets, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL], DiagramBuilder [_containingPackage=Assets, _objData=UmlObjectData [id=326, uuid={669D2D40-80CD-42ed-AC0A-EC34B7B214AD}, since=null, name=AssetsObjDia, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=OBJECT]], _classes=1 +2024-09-07 12:38:48,220 [main] INFO PackageBuilder - processing package Core (3) ... +2024-09-07 12:38:48,221 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2117, uuid={B4428907-2937-498f-B1F3-851FBB0EB26C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Core, _otherEndName=Note ''] +2024-09-07 12:38:48,221 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61968, _depth=1, _eaElementID=1477, _objData=UmlObjectData [id=67, uuid={C35E89DD-6049-4d6a-99CA-1ABA9173925F}, since=null, name=Core, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=2, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2117, uuid={B4428907-2937-498f-B1F3-851FBB0EB26C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Core, _otherEndName=Note '']] +2024-09-07 12:38:48,221 [main] INFO PackageBuilder - processing package Other (4) ... +2024-09-07 12:38:48,222 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2115, uuid={7C673B7E-956E-4fc2-A092-AAA82B46AFA0}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Other, _otherEndName=Note ''] +2024-09-07 12:38:48,222 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61968, _depth=1, _eaElementID=1476, _objData=UmlObjectData [id=66, uuid={EE65731A-B398-425a-8EC6-8E983569A255}, since=null, name=Other, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=2, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2115, uuid={7C673B7E-956E-4fc2-A092-AAA82B46AFA0}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Other, _otherEndName=Note '']] +2024-09-07 12:38:48,222 [main] INFO PackageBuilder - processing package Other (5) ... +2024-09-07 12:38:48,222 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Other, _objData=UmlObjectData [id=159, uuid={59EDD10A-D974-45e0-A31F-52E31C9E72E2}, since=null, name=Other, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,223 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2116, uuid={8DAFD989-CBA3-41d5-983A-7F645DDC20FF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Other, _otherEndName=Note ''] +2024-09-07 12:38:48,223 [main] DEBUG PackageBuilder - Updated target of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61970::Topology->IEC61968::Other, _objData=UmlObjectData [id=2132, uuid={FE9A0E08-9542-4980-B6A9-7CFE59DFDF87}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,223 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61968::Other->TC57CIM::IEC61970, _objData=UmlObjectData [id=3446, uuid={814038F7-206E-42aa-8183-AE2E302175F9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,223 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=2102, uuid={6D2E1FAD-19CA-4e94-8EF5-ED52FEBE9A83}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Other, _otherEndName=Package 'InformativeAndPrivate'] +2024-09-07 12:38:48,225 [main] ERROR EaTables - [+++ EA ordering problem for 9 class(s) in Other (manually move back/forth a class to initiate EA internal ordering update!): +, +++ class MyClass: pos = 0 +, +++ class BadDatatypes: pos = 0 DUPLICATE +, +++ class Equipment: pos = 0 DUPLICATE +, +++ class MyClass: pos = 0 DUPLICATE +, +++ class EmptyEnum: pos = 0 DUPLICATE +, +++ class NonEmptyPrimitive: pos = 0 DUPLICATE +, +++ class AttrDuplication: pos = 0 DUPLICATE +, +++ class AnotherBadDatatype: pos = 0 DUPLICATE +, +++ class EmptyCompound: pos = 0 DUPLICATE +] +2024-09-07 12:38:48,225 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1473, uuid={FA571FE9-EE28-49a6-9207-B35052E0F3B7}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='duplicate name in different package', htmlDescription='

duplicate name in different package

'], _containingPackage=Other, _otherEndName=] +2024-09-07 12:38:48,225 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1475, uuid={F36DC8B7-9274-4ebb-8686-5098D1637616}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='duplicate name in same package', htmlDescription='

duplicate name in same package

'], _containingPackage=Other, _otherEndName=] +2024-09-07 12:38:48,226 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1483, uuid={37C5FA4D-63DF-47b7-8A7C-DB93FE2C2D71}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='inherits 'value' and defines own one', htmlDescription='

inherits 'value' and defines own one

'], _containingPackage=Other, _otherEndName=] +2024-09-07 12:38:48,226 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1484, uuid={B97F5679-D419-49de-BD30-AFDE18E7E84E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='inherits 'curveStyle' and 'normallyInService' and defines own ones', htmlDescription='

inherits 'curveStyle' and 'normallyInService' and defines own ones

'], _containingPackage=Other, _otherEndName=] +2024-09-07 12:38:48,226 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1498, uuid={016D0725-554C-4993-855A-7606A90A1838}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='illegal relationship direction', htmlDescription='

illegal relationship direction

'], _containingPackage=Other, _otherEndName=] +2024-09-07 12:38:48,226 [main] TRACE ClassBuilder - Class MyClass (0 in package Other) +2024-09-07 12:38:48,226 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Other::MyClass, _objData=UmlObjectData [id=3263, uuid={A1BFCA1B-0A22-4a7c-B2A1-A31E2F46493F}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,226 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Other::MyClass, _objData=UmlObjectData [id=3264, uuid={B3F14AC4-4719-4d52-9C16-348079C67ADC}, since=null, name=normaIlyInService, alias=, stereotype=, visibility=public, txtDescription='The equipment is normally in service.', htmlDescription='

The equipment is normally in service.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,226 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Other::MyClass, _objData=UmlObjectData [id=3265, uuid={9A619402-AE3F-4dcd-B272-F500DB9A42A4}, since=null, name=curveStyle, alias=, stereotype=, visibility=public, txtDescription='The style or shape of the curve.', htmlDescription='

The style or shape of the curve.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=857, _eaTypeName=CurveStyle, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,226 [main] ERROR ClassBuilder - [+++ EA problem: attr count on MyClass = 3 +, +++ attr value: pos = 0 +, +++ attr normaIlyInService: pos = 1 +, +++ attr curveStyle: pos = 0 DUPLICATE +] +2024-09-07 12:38:48,227 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2114, uuid={2D8EFA65-B348-4b41-99AE-85B5659C4446}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=MyClass, _otherEndName=?] +2024-09-07 12:38:48,227 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2119, uuid={865200D2-0483-4458-A233-940669D18204}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=MyClass, _otherEndName=?] +2024-09-07 12:38:48,227 [main] DEBUG AssociationEndBuilder - Updated target type to MyClass +2024-09-07 12:38:48,229 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=421, uuid=6c544e13-4bed-30e6-9c43-414c284b3d34, since=null, name=T1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=422, uuid=e9deedbb-e28d-30fa-9873-205f58f0a25c, since=null, name=T2, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=MyClass, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2110, uuid={FD1E09B1-75C2-4b94-9C2A-F115B67BC95F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,229 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=421, uuid=6c544e13-4bed-30e6-9c43-414c284b3d34, since=null, name=T1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=422, uuid=e9deedbb-e28d-30fa-9873-205f58f0a25c, since=null, name=T2, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=MyClass, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2110, uuid={FD1E09B1-75C2-4b94-9C2A-F115B67BC95F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Other::MyClass +2024-09-07 12:38:48,229 [main] DEBUG AssociationEndBuilder - Updated source type to MyClass +2024-09-07 12:38:48,229 [main] DEBUG AssociationEndBuilder - Updated target type to MyClass +2024-09-07 12:38:48,229 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=424, uuid=90bbb497-40a1-36db-869f-50041f00062b, since=null, name=From, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=MyClass, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=425, uuid=accbcada-0ecc-3dcb-abd1-03a1d88469ad, since=null, name=To, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=MyClass, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2124, uuid={533F71BE-C7E0-4a3d-B55E-3A0FF93A34CA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,230 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = null->Other::MyClass, _objData=UmlObjectData [id=2111, uuid={4DC88475-280C-4309-A943-F5283967A111}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,230 [main] TRACE ClassBuilder - read from EA: Other::MyClass +2024-09-07 12:38:48,230 [main] TRACE ClassBuilder - Class BadDatatypes (0 in package Other) +2024-09-07 12:38:48,230 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Other::BadDatatypes, _objData=UmlObjectData [id=3261, uuid={5401BAC7-97BF-4c99-BF58-3352B0F67F23}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='text', htmlDescription='

text

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1467, _eaTypeName=BadDatatypes, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,230 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Other::BadDatatypes, _objData=UmlObjectData [id=3268, uuid={5074CED7-7500-4ea1-A49F-4FF08173FA21}, since=null, name=unit, alias=, stereotype=, visibility=public, txtDescription='text', htmlDescription='

text

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=badEnumVal, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,230 [main] DEBUG AssociationEndBuilder - Updated source type to BadDatatypes +2024-09-07 12:38:48,230 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=421, uuid=6c544e13-4bed-30e6-9c43-414c284b3d34, since=null, name=T1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=BadDatatypes, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=422, uuid=e9deedbb-e28d-30fa-9873-205f58f0a25c, since=null, name=T2, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=MyClass, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2110, uuid={FD1E09B1-75C2-4b94-9C2A-F115B67BC95F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Other::BadDatatypes +2024-09-07 12:38:48,231 [main] DEBUG AssociationEndBuilder - Updated target type to BadDatatypes +2024-09-07 12:38:48,231 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=431, uuid=edb86b54-fcfe-3390-ba3e-ccaf323dcccb, since=null, name=Something, alias=, stereotype=, visibility=public, txtDescription='Same doc at both ends of association.', htmlDescription='

Same doc at both ends of association.

'], _type=null, _multiplicity=[0..1], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=432, uuid=c73a853f-cbeb-365d-8380-53e86e51c996, since=null, name=T1, alias=, stereotype=, visibility=public, txtDescription='Same doc at both ends of association.', htmlDescription='

Same doc at both ends of association.

'], _type=BadDatatypes, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2122, uuid={A4CF1EA0-A25A-4e76-991E-231C452748F5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,231 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=431, uuid=edb86b54-fcfe-3390-ba3e-ccaf323dcccb, since=null, name=Something, alias=, stereotype=, visibility=public, txtDescription='Same doc at both ends of association.', htmlDescription='

Same doc at both ends of association.

'], _type=null, _multiplicity=[0..1], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=432, uuid=c73a853f-cbeb-365d-8380-53e86e51c996, since=null, name=T1, alias=, stereotype=, visibility=public, txtDescription='Same doc at both ends of association.', htmlDescription='

Same doc at both ends of association.

'], _type=BadDatatypes, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2122, uuid={A4CF1EA0-A25A-4e76-991E-231C452748F5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Other::BadDatatypes +2024-09-07 12:38:48,231 [main] DEBUG ClassBuilder - Adding BadDatatypes as superclass of MyClass +2024-09-07 12:38:48,231 [main] DEBUG ClassBuilder - Adding BadDatatypes as superclass of BaseVoltage +2024-09-07 12:38:48,231 [main] DEBUG ClassBuilder - Updated source of class dependency DependencyBuilder [_kind=CLASS, qName = Other::BadDatatypes->Other::MyClass, _objData=UmlObjectData [id=2111, uuid={4DC88475-280C-4309-A943-F5283967A111}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,231 [main] TRACE ClassBuilder - read from EA: Other::BadDatatypes +2024-09-07 12:38:48,231 [main] TRACE ClassBuilder - Class Equipment (0 in package Other) +2024-09-07 12:38:48,231 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Other::Equipment, _objData=UmlObjectData [id=3303, uuid={B4BA5ED2-2B91-44fc-993D-3097CF99F899}, since=null, name=testYesNo1, alias=, stereotype=, visibility=public, txtDescription='Indicates the presence/absence of energy measurements.', htmlDescription='

Indicates the presence/absence of energy measurements.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1540, _eaTypeName=YesNo, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,231 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Other::Equipment, _objData=UmlObjectData [id=6707, uuid={11C51946-4599-4acb-B5AF-2B8F0CD45996}, since=null, name=myExtension, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{nsuri=http://extensions, nsprefix=eext}] +2024-09-07 12:38:48,232 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2112, uuid={DD8A2F85-66BE-4d24-A560-A9D3748E755D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=Equipment, _otherEndName=?] +2024-09-07 12:38:48,232 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3456, uuid={B41914F1-0549-4ba6-B050-78DC32FB9514}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=Equipment, _otherEndName=?] +2024-09-07 12:38:48,232 [main] TRACE ClassBuilder - read from EA: Other::Equipment +2024-09-07 12:38:48,232 [main] TRACE ClassBuilder - Class MyClass (0 in package Other) +2024-09-07 12:38:48,232 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2113, uuid={2532D99C-9B37-40c2-B38B-6C7EE08B9273}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=MyClass, _otherEndName=?] +2024-09-07 12:38:48,232 [main] DEBUG AssociationEndBuilder - Updated source type to MyClass +2024-09-07 12:38:48,232 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=9, uuid=d9bbaaab-88c8-37ca-b324-ef05c8e21d9f, since=null, name=MyClass, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=MyClass, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=10, uuid=eae8cb7a-f8f8-3531-a271-d09a8cc84d5c, since=null, name=Class1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class1, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2130, uuid={06ABE750-E688-496b-A200-8708982212FA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Other::MyClass +2024-09-07 12:38:48,232 [main] TRACE ClassBuilder - read from EA: Other::MyClass +2024-09-07 12:38:48,232 [main] TRACE ClassBuilder - Class EmptyEnum (0 in package Other) +2024-09-07 12:38:48,232 [main] TRACE ClassBuilder - read from EA: Other::EmptyEnum +2024-09-07 12:38:48,232 [main] TRACE ClassBuilder - Class NonEmptyPrimitive (0 in package Other) +2024-09-07 12:38:48,233 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Other::NonEmptyPrimitive, _objData=UmlObjectData [id=3262, uuid={D496D1A8-C362-435f-83E4-B2247E25C84D}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,233 [main] TRACE ClassBuilder - read from EA: Other::NonEmptyPrimitive +2024-09-07 12:38:48,233 [main] TRACE ClassBuilder - Class AttrDuplication (0 in package Other) +2024-09-07 12:38:48,233 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Other::AttrDuplication, _objData=UmlObjectData [id=3266, uuid={0A43D4DB-192A-4274-95BC-F8772D4CF23B}, since=null, name=curveStyle, alias=, stereotype=, visibility=public, txtDescription='The style or shape of the curve.', htmlDescription='

The style or shape of the curve.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=857, _eaTypeName=CurveStyle, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,233 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Other::AttrDuplication, _objData=UmlObjectData [id=3267, uuid={D6C73EE7-83B0-45e6-BDC8-B0E3F46D8DE2}, since=null, name=normaIlyInService, alias=, stereotype=, visibility=public, txtDescription='The equipment is normally in service.', htmlDescription='

The equipment is normally in service.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,233 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2120, uuid={965A7FC1-9DF2-43a9-8B26-E7FE52309B76}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=AttrDuplication, _otherEndName=?] +2024-09-07 12:38:48,233 [main] DEBUG AssociationEndBuilder - Updated source type to AttrDuplication +2024-09-07 12:38:48,233 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=431, uuid=edb86b54-fcfe-3390-ba3e-ccaf323dcccb, since=null, name=Something, alias=, stereotype=, visibility=public, txtDescription='Same doc at both ends of association.', htmlDescription='

Same doc at both ends of association.

'], _type=AttrDuplication, _multiplicity=[0..1], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=432, uuid=c73a853f-cbeb-365d-8380-53e86e51c996, since=null, name=T1, alias=, stereotype=, visibility=public, txtDescription='Same doc at both ends of association.', htmlDescription='

Same doc at both ends of association.

'], _type=BadDatatypes, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2122, uuid={A4CF1EA0-A25A-4e76-991E-231C452748F5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Other::AttrDuplication +2024-09-07 12:38:48,234 [main] DEBUG AssociationEndBuilder - Updated source type to AttrDuplication +2024-09-07 12:38:48,234 [main] DEBUG AssociationEndBuilder - Updated target type to AttrDuplication +2024-09-07 12:38:48,234 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=448, uuid=2d140b83-084c-3b26-be93-2e7588dad441, since=null, name=From, alias=, stereotype=, visibility=public, txtDescription='Doc (not ending with ".")', htmlDescription='

Doc (not ending with ".")

'], _type=AttrDuplication, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=449, uuid=fa4a781a-b03c-3226-a3ba-f42dc479ab2a, since=null, name=To, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=AttrDuplication, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2123, uuid={A1CCBAF4-F270-46fe-9E5A-B090BAB212D7}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,234 [main] DEBUG AssociationEndBuilder - Updated source type to AttrDuplication +2024-09-07 12:38:48,234 [main] DEBUG AssociationEndBuilder - Updated target type to AttrDuplication +2024-09-07 12:38:48,234 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=451, uuid=d3446429-5444-3540-858e-0f8c1386de5e, since=null, name=From, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=AttrDuplication, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=452, uuid=de1bf03b-1d5b-366e-a262-f23a5ecd7497, since=null, name=To, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=AttrDuplication, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2125, uuid={AB460976-516D-47c3-A895-C3ADCF551734}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,234 [main] DEBUG ClassBuilder - Adding AttrDuplication as subclass of MyClass +2024-09-07 12:38:48,234 [main] TRACE ClassBuilder - read from EA: Other::AttrDuplication +2024-09-07 12:38:48,234 [main] TRACE ClassBuilder - Class AnotherBadDatatype (0 in package Other) +2024-09-07 12:38:48,234 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Other::AnotherBadDatatype, _objData=UmlObjectData [id=3296, uuid={01D99E0F-A7B9-4546-8F76-3E092E9942AE}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,234 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Other::AnotherBadDatatype, _objData=UmlObjectData [id=3297, uuid={415FDB87-B93D-41ca-906E-B88DD94D9F04}, since=null, name=unit, alias=, stereotype=unallowed, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,235 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Other::AnotherBadDatatype, _objData=UmlObjectData [id=3298, uuid={C055FF1A-F57E-4169-A823-AB41EB439A1C}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1538, _eaTypeName=EmptyCompound, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,235 [main] TRACE ClassBuilder - read from EA: Other::AnotherBadDatatype +2024-09-07 12:38:48,235 [main] TRACE ClassBuilder - Class EmptyCompound (0 in package Other) +2024-09-07 12:38:48,235 [main] TRACE ClassBuilder - read from EA: Other::EmptyCompound +2024-09-07 12:38:48,235 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61968, _depth=1, _eaElementID=1453, _objData=UmlObjectData [id=57, uuid={29A1BBDF-45EC-430a-913B-21BB1C8962E3}, since=null, name=Other, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=2, _selfDependent=true, 7_skippedEaItems=[SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2116, uuid={8DAFD989-CBA3-41d5-983A-7F645DDC20FF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Other, _otherEndName=Note ''], SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=2102, uuid={6D2E1FAD-19CA-4e94-8EF5-ED52FEBE9A83}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Other, _otherEndName=Package 'InformativeAndPrivate'], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1473, uuid={FA571FE9-EE28-49a6-9207-B35052E0F3B7}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='duplicate name in different package', htmlDescription='

duplicate name in different package

'], _containingPackage=Other, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1475, uuid={F36DC8B7-9274-4ebb-8686-5098D1637616}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='duplicate name in same package', htmlDescription='

duplicate name in same package

'], _containingPackage=Other, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1483, uuid={37C5FA4D-63DF-47b7-8A7C-DB93FE2C2D71}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='inherits 'value' and defines own one', htmlDescription='

inherits 'value' and defines own one

'], _containingPackage=Other, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1484, uuid={B97F5679-D419-49de-BD30-AFDE18E7E84E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='inherits 'curveStyle' and 'normallyInService' and defines own ones', htmlDescription='

inherits 'curveStyle' and 'normallyInService' and defines own ones

'], _containingPackage=Other, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1498, uuid={016D0725-554C-4993-855A-7606A90A1838}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='illegal relationship direction', htmlDescription='

illegal relationship direction

'], _containingPackage=Other, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=Other, _objData=UmlObjectData [id=159, uuid={59EDD10A-D974-45e0-A31F-52E31C9E72E2}, since=null, name=Other, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=1, _dependenciesAsTarget=1, _classes=9 +2024-09-07 12:38:48,235 [main] TRACE PackageBuilder - read PackageBuilder [_kind=TOP, _containingPackage=TC57CIM, _depth=0, _eaElementID=1451, _objData=UmlObjectData [id=56, uuid={5C322A25-309C-4917-B239-BC81A86E828B}, since=null, name=IEC61968, alias=, stereotype=, visibility=public, txtDescription='Blah (not ending with ".")', htmlDescription='

Blah (not ending with ".")

'], _modelId=2, _selfDependent=false, 2_taggedValues{nsprefix=n14, nsuri=http://wg14/customNamespace}, 4_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1478, uuid={5081A538-2556-474f-88ED-7C7DF4A5AFC6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='duplicate name in same parent package', htmlDescription='

duplicate name in same parent package

'], _containingPackage=IEC61968, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1479, uuid={9D7409F2-ED2C-4db6-8F47-491CE2A1844E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='duplicate name with other parent package', htmlDescription='

duplicate name with other parent package

'], _containingPackage=IEC61968, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1499, uuid={15CB1C37-5F9F-43ea-BD54-22E99CD16F24}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='wrong dependency direction', htmlDescription='

wrong dependency direction

'], _containingPackage=IEC61968, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3075, uuid={4E5B9BC5-C441-4553-80A7-70B7D074D066}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='- extension tags with namespaces', htmlDescription='

- extension tags with namespaces

'], _containingPackage=IEC61968, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=IEC61968, _objData=UmlObjectData [id=158, uuid={B3B5E06E-B00E-4cb6-B697-39D4D8476DC2}, since=null, name=IEC61968, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=1, _dependenciesAsTarget=1, _classes=1, _childPackages=5] +2024-09-07 12:38:48,235 [main] INFO PackageBuilder - processing top package IEC62325 (4) ... +2024-09-07 12:38:48,236 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=IEC62325, _objData=UmlObjectData [id=183, uuid={5F0F9749-799A-479d-8043-53264E198D5A}, since=null, name=IEC62325, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,236 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = TC57CIM::IEC62325->TC57CIM::IEC61968, _objData=UmlObjectData [id=3448, uuid={BEB08626-C0F2-4a9d-860D-F205594F0FE9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,236 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = TC57CIM::IEC62325->TC57CIM::IEC61970, _objData=UmlObjectData [id=3449, uuid={51951675-AE25-4ac7-AA97-9DF3741A7BB9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,237 [main] TRACE PackageBuilder - read PackageBuilder [_kind=TOP, _containingPackage=TC57CIM, _depth=0, _eaElementID=1544, _objData=UmlObjectData [id=82, uuid={7809EE61-C748-4772-9925-330FC1498016}, since=null, name=IEC62325, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=2, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=IEC62325, _objData=UmlObjectData [id=183, uuid={5F0F9749-799A-479d-8043-53264E198D5A}, since=null, name=IEC62325, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=2 +2024-09-07 12:38:48,237 [main] TRACE PackageBuilder - read PackageBuilder [_kind=MODEL, _depth=-1, _eaElementID=1, _objData=UmlObjectData [id=2, uuid={39AA7E64-A03A-4934-AF09-E74943F7E6C0}, since=null, name=TC57CIM, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=2, _selfDependent=false, 2_taggedValues{nsprefix=cim, nsuri=http://cim123}, 1_diagrams=[DiagramBuilder [_containingPackage=TC57CIM, _objData=UmlObjectData [id=1, uuid={7ECA7523-5E2A-40a0-A7B1-BE02958F3D9C}, since=null, name=Main, alias=, stereotype=diagStereotype, oneMoreDiagStereo, visibility=public, txtDescription='This diagram shows all Packages included in this CIM model.', htmlDescription='

This diagram shows all Packages included in this CIM model.

'], _portrait=true, _kind=LOGICAL]], _childPackages=4] +2024-09-07 12:38:48,237 [main] INFO PackageBuilder - processing model package IEC61850Domain (2) ... +2024-09-07 12:38:48,237 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=IEC61850Domain, _objData=UmlObjectData [id=160, uuid={6CF56053-B50F-4cfd-9886-2785DAD0964E}, since=null, name=IEC61850Domain, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,238 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3068, uuid={89AF424B-7761-4043-BDAB-5A10CE7C0549}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Tool should derive from this dependency that "any namespace under WG17 depends on 7-4".', htmlDescription='

Tool should derive from this dependency that "any namespace under WG17 depends on 7-4".

'], _containingPackage=IEC61850Domain, _otherEndName=] +2024-09-07 12:38:48,238 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3069, uuid={BFBF085D-757B-45ee-87C8-AA171DB3EB73}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='7_3 and 7_4 packages: +1. One of (circular) dependencies should be caught as invalid and the search stopped. +2. Both self-dependencies should be also caught as invalid and the search stopped.', htmlDescription='

7_3 and 7_4 packages:

  1. One of (circular) dependencies should be caught as invalid and the search stopped.
  2. Both self-dependencies should be also caught as invalid and the search stopped.
'], _containingPackage=IEC61850Domain, _otherEndName=] +2024-09-07 12:38:48,238 [main] INFO PackageBuilder - processing top package WG10 (1) ... +2024-09-07 12:38:48,239 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=WG10, _objData=UmlObjectData [id=186, uuid={60DE7B56-E18B-4c76-BAE9-F26279C1F965}, since=null, name=WG10, alias=, stereotype=, visibility=public, txtDescription='Sub-packages contained in this IEC61850 model. +UML model of IEC 61850 contains concrete specifications for logical nodes (part 7-4), the whole data type system (part 7-3), and ACSI services (part 7-2), including the meta-model that represents the whole of the standard.', htmlDescription='

Sub-packages contained in this IEC61850 model.

UML model of IEC 61850 contains concrete specifications for logical nodes (part 7-4), the whole data type system (part 7-3), and ACSI services (part 7-2), including the meta-model that represents the whole of the standard.

'], _portrait=true, _kind=PACKAGE] +2024-09-07 12:38:48,239 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=WG10, _objData=UmlObjectData [id=187, uuid={3AD43F3E-BF5F-4d70-B8EB-D0104CA1E17D}, since=null, name=Parts7, alias=, stereotype=, visibility=public, txtDescription='This diagram shows main packages and sub-packages included in this IEC61850-7-x model. +Colours show in which part of the standard the types are originally defined (or deduced from): +- green: IEC 61850-7-2 +- pink: IEC 61850-7-3 +- yellow: IEC 61850-7-4 +Elipses in packages (e.g., CDCs and DomainLNs) indicate that they have more sub-packages, but they are not shown in this diagram.', htmlDescription='

This diagram shows main packages and sub-packages included in this IEC61850-7-x model.

Colours show in which part of the standard the types are originally defined (or deduced from):

- green: IEC 61850-7-2

- pink: IEC 61850-7-3

- yellow: IEC 61850-7-4

Elipses in packages (e.g., CDCs and DomainLNs) indicate that they have more sub-packages, but they are not shown in this diagram.

'], _portrait=true, _kind=PACKAGE] +2024-09-07 12:38:48,239 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=WG10, _objData=UmlObjectData [id=188, uuid={7BD8A88D-424B-4ea2-B24A-F09076F9051B}, since=null, name=DataModelExample, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the most complex example with one concrete subclass for data-related classes of the meta-model, i.e., LNs, CDCs, FCDAs and DAs (classes in colour). On the diagram, we hide all the attributes but those used for the example.', htmlDescription='

This diagram shows the most complex example with one concrete subclass for data-related classes of the meta-model, i.e., LNs, CDCs, FCDAs and DAs (classes in colour). On the diagram, we hide all the attributes but those used for the example.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,241 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1553, uuid={D94F6B33-4624-48cd-AEBC-C0FDE476430F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling notes: +- We have tried to stick to the definition of concepts per Part of IEC61850, by grouping them into corresponding packages. This would allow relatively straight forward generation of IEC word documents directly from this model (this has been successfully done with another UML tool for Part 7, in 2003). For a software, it is certainly possible to think of a better grouping. +- In addition to the objective of documentation generation mentioned above, the design of the model aimed at facilitating initial, skeletal code generation. For that reason, there are many dependency relationships between packages (because UML dependencies are not transitive). If the model is not to be used for code generation, explicit dependencies among sub-packages can be greatly simplified, by replacing them with top-level package dependencies. +- This model has initially been developed from mid-2002 to mid-2004 with Rational Rose CASE tool, then imported into Enterprise Architect CASE tool. Parts of the original version have indeed been successfully used for skeleton code generation (MetaModel, ACSI and DA packages). We cannot guarantee that the present model is absolutely fit for painless code generation, but it should be a good starting point. +- We "order" packages in a bottom-up way, i.e., from the least dependent (most basic) towards the most dependent. In this way, if documentation gets generated, the basic concepts are seen first, then those that use them. However, for presentation purposes, it is probably better to introduce things top-down. +How to browse the model: +- Clicking on any package will automatically open the main diagram of that package. There are many diagrams in the model, and many of them contain hyperlinks to other, related diagrams. Most of the diagram should fit onto an A4 page. +- Domain experts and those who would like to extend the model, will care the most for the content of high level packages (LogicalNodes and CommonDataClasses). +- Implementors will have to start from ACSI package, in particular from its MetaModel sub-package. +Position statement: +- If you find the model complex, please blame the authors of IEC61850, not us :-)', htmlDescription='

Modelling notes:

  • We have tried to stick to the definition of concepts per Part of IEC61850, by grouping them into corresponding packages. This would allow relatively straight forward generation of IEC word documents directly from this model (this has been successfully done with another UML tool for Part 7, in 2003). For a software, it is certainly possible to think of a better grouping.
  • In addition to the objective of documentation generation mentioned above, the design of the model aimed at facilitating initial, skeletal code generation. For that reason, there are many dependency relationships between packages (because UML dependencies are not transitive). If the model is not to be used for code generation, explicit dependencies among sub-packages can be greatly simplified, by replacing them with top-level package dependencies.
  • This model has initially been developed from mid-2002 to mid-2004 with Rational Rose CASE tool, then imported into Enterprise Architect CASE tool. Parts of the original version have indeed been successfully used for skeleton code generation (MetaModel, ACSI and DA packages). We cannot guarantee that the present model is absolutely fit for painless code generation, but it should be a good starting point.
  • We "order" packages in a bottom-up way, i.e., from the least dependent (most basic) towards the most dependent. In this way, if documentation gets generated, the basic concepts are seen first, then those that use them. However, for presentation purposes, it is probably better to introduce things top-down.

How to browse the model:

  • Clicking on any package will automatically open the main diagram of that package. There are many diagrams in the model, and many of them contain hyperlinks to other, related diagrams. Most of the diagram should fit onto an A4 page.
  • Domain experts and those who would like to extend the model, will care the most for the content of high level packages (LogicalNodes and CommonDataClasses).
  • Implementors will have to start from ACSI package, in particular from its MetaModel sub-package.

Position statement:

  • If you find the model complex, please blame the authors of IEC61850, not us :-)
'], _containingPackage=WG10, _otherEndName=] +2024-09-07 12:38:48,242 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1554, uuid={8ECEFF06-BAD2-41e0-B468-9E73B7693BE3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='We describe the meta-model example shown in the bottom-up manner, as follows: +- VISIBLE_STRING255 and FLOAT32 are PrimitiveDAs. In this model, we have explicitly defined primitive types with the prefix 'P_', which can be used as implementation artefacts, and to protect the overall model from any potential implementation language detail. Therefore, VISIBLE_STRING255 and FLOAT32 simply hold an attribute 'val' of the corresponding primitive data type (as would be defined in a particular programming language), and inherit from the meta-model class PrimitiveDA. +- Vector and AnalogueValue are both ComposedDAs. A ComposedDA must contain at least one DA, be it ComposedDA or PrimitiveDA: Vector contains AnalogueValue 'mag', as a ComposedDA, and AnalogueValue contains FLOAT32 'f' as a PrimitiveDA. +- VISIBLE_STRING255_DC, AnalogueValue_MX and Vector_MX_dchg are all FCDAs, i.e., they provide the explicit definition for all the combinations of available functional constraints and triggering options, with DAs. Therefore, each of them simply contains an attribute, 'attr', of the corresponding DA type, either ComposedDA (in the case of AnalogueValue_MX and Vector_MX_dchg) or PrimitiveDA (in the case of VISIBLE_STRING255_DC). +- MV, CMV and WYE are all CDCs. The first two are PrimitiveCDCs and the last one is a ComposedCDC. As CDCs, they must contain one or more FCDAs - all have attribute 'd' of type VISIBLE_STRING255, and MV and CMV have attributes 'mag' and 'cVal', respectively, of types AnalogueValue_MX and Vector_MX_dchg, respectively. A ComposedCDC must additionally contain one or more PrimitiveCDCs - example for WYE is the attribute 'phsA', which is a PrimitiveCDC. +- Finally, MMXU is an LN and must contain one or more CDCs - attribute 'A' is a CDC. +With this meta-model approach, all the complexity of the datatype system is hidden below CDCs, and the essential of the domain is contained in the LNs.', htmlDescription='

We describe the meta-model example shown in the bottom-up manner, as follows:

  • VISIBLE_STRING255 and FLOAT32 are PrimitiveDAs. In this model, we have explicitly defined primitive types with the prefix 'P_', which can be used as implementation artefacts, and to protect the overall model from any potential implementation language detail. Therefore, VISIBLE_STRING255 and FLOAT32 simply hold an attribute 'val' of the corresponding primitive data type (as would be defined in a particular programming language), and inherit from the meta-model class PrimitiveDA.
  • Vector and AnalogueValue are both ComposedDAs. A ComposedDA must contain at least one DA, be it ComposedDA or PrimitiveDA: Vector contains AnalogueValue 'mag', as a ComposedDA, and AnalogueValue contains FLOAT32 'f' as a PrimitiveDA.
  • VISIBLE_STRING255_DC, AnalogueValue_MX and Vector_MX_dchg are all FCDAs, i.e., they provide the explicit definition for all the combinations of available functional constraints and triggering options, with DAs. Therefore, each of them simply contains an attribute, 'attr', of the corresponding DA type, either ComposedDA (in the case of AnalogueValue_MX and Vector_MX_dchg) or PrimitiveDA (in the case of VISIBLE_STRING255_DC).
  • MV, CMV and WYE are all CDCs. The first two are PrimitiveCDCs and the last one is a ComposedCDC. As CDCs, they must contain one or more FCDAs - all have attribute 'd' of type VISIBLE_STRING255, and MV and CMV have attributes 'mag' and 'cVal', respectively, of types AnalogueValue_MX and Vector_MX_dchg, respectively. A ComposedCDC must additionally contain one or more PrimitiveCDCs - example for WYE is the attribute 'phsA', which is a PrimitiveCDC.
  • Finally, MMXU is an LN and must contain one or more CDCs - attribute 'A' is a CDC.

With this meta-model approach, all the complexity of the datatype system is hidden below CDCs, and the essential of the domain is contained in the LNs.

'], _containingPackage=WG10, _otherEndName=] +2024-09-07 12:38:48,242 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1556, uuid={1FE867FD-79B7-464f-8052-435DD1687820}, since=null, name=Parts7 : DataModelExample, alias=, stereotype=, visibility=public, txtDescription='Parts7 : DataModelExample', htmlDescription='

Parts7 : DataModelExample

'], _containingPackage=WG10, _otherEndName=] +2024-09-07 12:38:48,242 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1557, uuid={256FF05A-27ED-4887-B5FE-EDF4614593EB}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='mag', htmlDescription='

mag

'], _containingPackage=WG10, _otherEndName=] +2024-09-07 12:38:48,242 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1558, uuid={26E40582-F186-466d-86B4-F8DD7DBC54F0}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='Part 7-2 (ACSI, meta-model) Parts 7-4, 7-3 (concrete LNs, CDCs, DAs)', htmlDescription='

Part 7-2 (ACSI, meta-model) Parts 7-4, 7-3 (concrete LNs, CDCs, DAs)

'], _containingPackage=WG10, _otherEndName=] +2024-09-07 12:38:48,243 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1559, uuid={2D4E4EBF-44BB-4c48-894D-39CD41A54738}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='...', htmlDescription='

...

'], _containingPackage=WG10, _otherEndName=] +2024-09-07 12:38:48,243 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1560, uuid={3BAA5323-14E0-439f-84A0-1B5952B05C8F}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='A', htmlDescription='

A

'], _containingPackage=WG10, _otherEndName=] +2024-09-07 12:38:48,243 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1561, uuid={3ECBDF79-B2DB-41b1-91F7-ECA45C2F64EB}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='attr', htmlDescription='

attr

'], _containingPackage=WG10, _otherEndName=] +2024-09-07 12:38:48,243 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1562, uuid={4322E030-F287-4017-9D95-2A8AF934BE65}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='attr', htmlDescription='

attr

'], _containingPackage=WG10, _otherEndName=] +2024-09-07 12:38:48,243 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1563, uuid={4A5F30B1-B039-4ef0-BDD6-3F7630BB47ED}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='cVal', htmlDescription='

cVal

'], _containingPackage=WG10, _otherEndName=] +2024-09-07 12:38:48,243 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1564, uuid={581893B5-516E-4999-B0A4-0C8538B87209}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='...', htmlDescription='

...

'], _containingPackage=WG10, _otherEndName=] +2024-09-07 12:38:48,243 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1565, uuid={5FED3E4A-CE83-456a-814C-A684836C1338}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='d', htmlDescription='

d

'], _containingPackage=WG10, _otherEndName=] +2024-09-07 12:38:48,243 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1566, uuid={884347DF-162A-4b48-A9A5-9BBF0523A2E9}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='phsA', htmlDescription='

phsA

'], _containingPackage=WG10, _otherEndName=] +2024-09-07 12:38:48,244 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1567, uuid={952F1499-B3A1-4f4d-A950-5C65655720DD}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='attr', htmlDescription='

attr

'], _containingPackage=WG10, _otherEndName=] +2024-09-07 12:38:48,244 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1568, uuid={9FAF5191-B3F7-48ad-862E-9462DA86C059}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='f', htmlDescription='

f

'], _containingPackage=WG10, _otherEndName=] +2024-09-07 12:38:48,244 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1569, uuid={A48C44FE-7EB4-4639-86A3-953DBE7DDC26}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='mag', htmlDescription='

mag

'], _containingPackage=WG10, _otherEndName=] +2024-09-07 12:38:48,244 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1570, uuid={BC2B22A4-E338-426a-AA6B-13C8C105619C}, since=null, name=IEC61850 : Parts7, alias=, stereotype=, visibility=public, txtDescription='IEC61850 : Parts7', htmlDescription='

IEC61850 : Parts7

'], _containingPackage=WG10, _otherEndName=] +2024-09-07 12:38:48,244 [main] TRACE ClassBuilder - Class WG10UMLVersion (0 in package WG10) +2024-09-07 12:38:48,244 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=WG10::WG10UMLVersion, _objData=UmlObjectData [id=3318, uuid={8E43EF7F-9119-4973-84F0-FE4DF5855943}, since=null, name=version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=IEC61850UML02v07, _eaTypeId=1665, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,244 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=WG10::WG10UMLVersion, _objData=UmlObjectData [id=3319, uuid={8DDEC565-E0D2-4614-9615-D066B409C1D6}, since=null, name=date, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=2011-07-02, _eaTypeId=1665, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,244 [main] TRACE ClassBuilder - read from EA: WG10::WG10UMLVersion +2024-09-07 12:38:48,245 [main] INFO PackageBuilder - processing package NewIEC61850_7_2 (1) ... +2024-09-07 12:38:48,245 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=NewIEC61850_7_2, _objData=UmlObjectData [id=189, uuid={FDB3BD59-D66E-4646-A4E7-B08D4F787BFD}, since=null, name=NewIEC61850_7_2, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=PACKAGE] +2024-09-07 12:38:48,245 [main] INFO PackageBuilder - processing package GenericModel (0) ... +2024-09-07 12:38:48,246 [main] ERROR EaTables - [+++ EA ordering problem for 2 diagram(s) in GenericModel (manually move back/forth a diagram to initiate EA internal ordering update!): +, +++ diagram GenericModel: pos = 0 +, +++ diagram GenericModelTypes: pos = 0 DUPLICATE +] +2024-09-07 12:38:48,246 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=GenericModel, _objData=UmlObjectData [id=190, uuid={741656D9-DFE5-45fb-A169-AC974992B5BE}, since=null, name=GenericModel, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,246 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=GenericModel, _objData=UmlObjectData [id=191, uuid={2A0F8CC2-20D8-47e7-AA5D-1CEE6D0192D2}, since=null, name=GenericModelTypes, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,249 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1573, uuid={E96EFCB6-7CB3-4a02-B716-C76F98A92BF8}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='All from 6.2 CommonACSI types, except for ARRAY and the 3 moved to atomic. +Stereotype: <>', htmlDescription='

All from 6.2 CommonACSI types, except for ARRAY and the 3 moved to atomic.

Stereotype: <<compact>>

'], _containingPackage=GenericModel, _otherEndName=] +2024-09-07 12:38:48,249 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1574, uuid={E36DC6AA-4511-4f84-A9DD-E9B6D5994E58}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Agreement to rename some primitive types in 7-2, to align with SCL names, as follows: +- use actual 7-2 name as alias in UML class (printed as title) +- use SCL type name as class name', htmlDescription='

Agreement to rename some primitive types in 7-2, to align with SCL names, as follows:

- use actual 7-2 name as alias in UML class (printed as title)

- use SCL type name as class name

'], _containingPackage=GenericModel, _otherEndName=] +2024-09-07 12:38:48,250 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1575, uuid={D47037FC-BEA0-47eb-B37B-6E74F8B3D551}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Note: Review classification after addressing 7-2 core type system. +GenBaseType is meant to be used for "pure" primitives, GenCommonACSIType is for all the others.', htmlDescription='

Note: Review classification after addressing 7-2 core type system.

GenBaseType is meant to be used for "pure" primitives, GenCommonACSIType is for all the others.

'], _containingPackage=GenericModel, _otherEndName=] +2024-09-07 12:38:48,250 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1576, uuid={BCAC7CCF-A942-48a4-B258-771D38A021F9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: We'll need to move PresenceConditions from 7-3 into 7-2, to use them in 7-2 as well.', htmlDescription='

TODO: We'll need to move PresenceConditions from 7-3 into 7-2, to use them in 7-2 as well.

'], _containingPackage=GenericModel, _otherEndName=] +2024-09-07 12:38:48,250 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1577, uuid={A60B825D-7A9A-494d-BA42-33219F1893C4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Change "FileName" with "FileRef" wherever it appears. +Do not include FileDirectory.', htmlDescription='

TODO: Change "FileName" with "FileRef" wherever it appears.

Do not include FileDirectory.

'], _containingPackage=GenericModel, _otherEndName=] +2024-09-07 12:38:48,250 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1578, uuid={8528A6C3-CA81-4578-B54F-7A7DE355C9F9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- Andre to see how to express: At least one of FCDMember or FCDAMember. +- Tanja to add DSRef as ObjectReference, similar to existing meta-model. +- Tanja to trace associations similar to existing meta-model, they're ok.', htmlDescription='

TODO:

  • Andre to see how to express: At least one of FCDMember or FCDAMember.
  • Tanja to add DSRef as ObjectReference, similar to existing meta-model.
  • Tanja to trace associations similar to existing meta-model, they're ok.
'], _containingPackage=GenericModel, _otherEndName=] +2024-09-07 12:38:48,250 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1579, uuid={7C7CE85D-2B99-46ed-82E5-2B2F36BDB3B6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Decision: Start with packages that will reflect Clause 6 through Clause 23 (Files).', htmlDescription='

Decision: Start with packages that will reflect Clause 6 through Clause 23 (Files).

'], _containingPackage=GenericModel, _otherEndName=] +2024-09-07 12:38:48,250 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1580, uuid={65AFCFF7-8512-4e11-BCFA-DBF2FD664BE5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Deal with GenClient.', htmlDescription='

TODO: Deal with GenClient.

'], _containingPackage=GenericModel, _otherEndName=] +2024-09-07 12:38:48,251 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1581, uuid={578E5DF8-ED23-4bfe-9A4C-626AA2F125CE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='All from 6.1 Basic types + ObjectReference, ObjectName and ServiceError. +Plus other non-packed/coded types. +Steretypes: <>, <>, <>', htmlDescription='

All from 6.1 Basic types + ObjectReference, ObjectName and ServiceError.

Plus other non-packed/coded types.

Steretypes: <<atomic>>, <<enumeration>>, <<enumeration,coded>>

'], _containingPackage=GenericModel, _otherEndName=] +2024-09-07 12:38:48,251 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1582, uuid={574B78D4-385A-44c8-9038-ACC8AA6D4343}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- Ensure RCB.DatSet etc. are reflected as assoc. end names in the generic model. +OPEN QUESTION: +- Case of RCB.DatSet that should be of type ObjectReference, but in the generic model it is linked to DataSet.', htmlDescription='

TODO:

  • Ensure RCB.DatSet etc. are reflected as assoc. end names in the generic model.

OPEN QUESTION:

  • Case of RCB.DatSet that should be of type ObjectReference, but in the generic model it is linked to DataSet.
'], _containingPackage=GenericModel, _otherEndName=] +2024-09-07 12:38:48,251 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1583, uuid={3E98F8C3-5801-4840-9C6D-489098AD95CC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: We've added "Gen" to types where we already have an existing one - to make it less error-prone to refactor. E.g., GenFCD will in the end be called FCD.', htmlDescription='

Modelling note: We've added "Gen" to types where we already have an existing one - to make it less error-prone to refactor. E.g., GenFCD will in the end be called FCD.

'], _containingPackage=GenericModel, _otherEndName=] +2024-09-07 12:38:48,251 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1584, uuid={3D07741F-191D-47a1-8F4D-01CADA1023F3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- Tanja to add GenAuthenticationParameter type (similar to Authentication in meta-model).', htmlDescription='

TODO:

  • Tanja to add GenAuthenticationParameter type (similar to Authentication in meta-model).
'], _containingPackage=GenericModel, _otherEndName=] +2024-09-07 12:38:48,251 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=false, _objData=UmlObjectData [id=1618, uuid={1DA81ADB-7526-4988-B94A-615589F034CF}, since=null, name=, alias=, stereotype=invariant, visibility=public, txtDescription='xor', htmlDescription='

xor

'], _containingPackage=GenericModel, _otherEndName=] +2024-09-07 12:38:48,251 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=false, _objData=UmlObjectData [id=1619, uuid={46AE4BB9-5995-47bf-B7A2-3500BDA63832}, since=null, name=, alias=, stereotype=invariant, visibility=public, txtDescription='xor', htmlDescription='

xor

'], _containingPackage=GenericModel, _otherEndName=] +2024-09-07 12:38:48,251 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=false, _objData=UmlObjectData [id=1620, uuid={5D9BD1EA-00B1-4644-A7F4-6F0FA14A9F8B}, since=null, name=, alias=, stereotype=invariant, visibility=public, txtDescription='xor', htmlDescription='

xor

'], _containingPackage=GenericModel, _otherEndName=] +2024-09-07 12:38:48,251 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=false, _objData=UmlObjectData [id=1621, uuid={A15F46E8-FDE8-40f1-8D27-9BF33615BDA5}, since=null, name=, alias=, stereotype=invariant, visibility=public, txtDescription='xor', htmlDescription='

xor

'], _containingPackage=GenericModel, _otherEndName=] +2024-09-07 12:38:48,251 [main] TRACE ClassBuilder - Class CommAddress (1 in package GenericModel) +2024-09-07 12:38:48,252 [main] TRACE ClassBuilder - read from EA: GenericModel::CommAddress +2024-09-07 12:38:48,252 [main] TRACE ClassBuilder - Class GenAssociationID (2 in package GenericModel) +2024-09-07 12:38:48,252 [main] TRACE ClassBuilder - read from EA: GenericModel::GenAssociationID +2024-09-07 12:38:48,252 [main] TRACE ClassBuilder - Class GenFC (3 in package GenericModel) +2024-09-07 12:38:48,253 [main] TRACE ClassBuilder - read from EA: GenericModel::GenFC +2024-09-07 12:38:48,253 [main] TRACE ClassBuilder - Class GenPresenceConditions (4 in package GenericModel) +2024-09-07 12:38:48,253 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2173, uuid={841EA8A2-BC21-499e-AE58-48F0BEB2CA88}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=GenPresenceConditions, _otherEndName=?] +2024-09-07 12:38:48,253 [main] TRACE ClassBuilder - read from EA: GenericModel::GenPresenceConditions +2024-09-07 12:38:48,253 [main] TRACE ClassBuilder - Class GenTimeStamp (5 in package GenericModel) +2024-09-07 12:38:48,253 [main] TRACE ClassBuilder - read from EA: GenericModel::GenTimeStamp +2024-09-07 12:38:48,253 [main] TRACE ClassBuilder - Class AccessPoint (6 in package GenericModel) +2024-09-07 12:38:48,254 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::AccessPoint, _objData=UmlObjectData [id=3320, uuid={40D9CE14-376C-43eb-9583-238284A8F3CC}, since=null, name=Address, alias=, stereotype=, visibility=public, txtDescription='Address is optional, e.g. in case of GOOSE subscriber where physical link exists (and no comm link).', htmlDescription='

Address is optional, e.g. in case of GOOSE subscriber where physical link exists (and no comm link).

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=1586, _eaTypeName=CommAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,254 [main] DEBUG AssociationEndBuilder - Updated target type to AccessPoint +2024-09-07 12:38:48,254 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=518, uuid=80bbc98a-7b14-32ed-857c-7ea140eba257, since=null, name=IED, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=519, uuid=af3ad1a5-482a-35af-9cc0-9d827b1e93ad, since=null, name=AP, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=AccessPoint, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3400, uuid={DAE49C76-967F-474e-89A1-F794712D37D6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,254 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=518, uuid=80bbc98a-7b14-32ed-857c-7ea140eba257, since=null, name=IED, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=519, uuid=af3ad1a5-482a-35af-9cc0-9d827b1e93ad, since=null, name=AP, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=AccessPoint, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3400, uuid={DAE49C76-967F-474e-89A1-F794712D37D6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::AccessPoint +2024-09-07 12:38:48,254 [main] TRACE ClassBuilder - read from EA: GenericModel::AccessPoint +2024-09-07 12:38:48,255 [main] TRACE ClassBuilder - Class FileSystem (7 in package GenericModel) +2024-09-07 12:38:48,255 [main] DEBUG AssociationEndBuilder - Updated target type to FileSystem +2024-09-07 12:38:48,255 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=522, uuid=5c265ff5-ecbc-320f-84a3-73adfc3724de, since=null, name=Server, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=523, uuid=ac3325c9-54ef-30e7-a39e-24d3911757c6, since=null, name=FileSystem, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=FileSystem, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3398, uuid={5982398B-EDCC-45cd-A1AA-C9F8D62D2A4A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,255 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=522, uuid=5c265ff5-ecbc-320f-84a3-73adfc3724de, since=null, name=Server, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=523, uuid=ac3325c9-54ef-30e7-a39e-24d3911757c6, since=null, name=FileSystem, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=FileSystem, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3398, uuid={5982398B-EDCC-45cd-A1AA-C9F8D62D2A4A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::FileSystem +2024-09-07 12:38:48,255 [main] DEBUG AssociationEndBuilder - Updated source type to FileSystem +2024-09-07 12:38:48,255 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=525, uuid=158bf549-2e71-324e-b38d-7e4cd827cb19, since=null, name=FileSystem, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=FileSystem, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=526, uuid=13a4997f-10e4-3d32-a1f5-52a90ed16321, since=null, name=Files, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3399, uuid={207F6219-301F-4e30-BD21-E099498AD645}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,255 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=525, uuid=158bf549-2e71-324e-b38d-7e4cd827cb19, since=null, name=FileSystem, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=FileSystem, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=526, uuid=13a4997f-10e4-3d32-a1f5-52a90ed16321, since=null, name=Files, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3399, uuid={207F6219-301F-4e30-BD21-E099498AD645}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::FileSystem +2024-09-07 12:38:48,256 [main] TRACE ClassBuilder - read from EA: GenericModel::FileSystem +2024-09-07 12:38:48,256 [main] TRACE ClassBuilder - Class GenAtomicType (8 in package GenericModel) +2024-09-07 12:38:48,256 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2177, uuid={08379421-292F-4878-A9D7-941924C93BAA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=GenAtomicType, _otherEndName=?] +2024-09-07 12:38:48,256 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = null->GenericModel::GenAtomicType, _objData=UmlObjectData [id=3375, uuid={7804C7F3-3958-4464-9E4D-6125308CB9FF}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,256 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = null->GenericModel::GenAtomicType, _objData=UmlObjectData [id=3393, uuid={CC81D6A1-8E39-4a90-A7C3-B7DF34975EF8}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,256 [main] TRACE ClassBuilder - read from EA: GenericModel::GenAtomicType +2024-09-07 12:38:48,256 [main] TRACE ClassBuilder - Class GenBOOLEAN (9 in package GenericModel) +2024-09-07 12:38:48,257 [main] TRACE ClassBuilder - read from EA: GenericModel::GenBOOLEAN +2024-09-07 12:38:48,257 [main] TRACE ClassBuilder - Class GenCommonDataClass (10 in package GenericModel) +2024-09-07 12:38:48,257 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenCommonDataClass, _objData=UmlObjectData [id=3321, uuid={556405B0-426B-4a24-8F13-B0569BCCB145}, since=null, name=CDC-ID, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,258 [main] DEBUG AssociationEndBuilder - Updated source type to GenCommonDataClass +2024-09-07 12:38:48,258 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=535, uuid=91bf0cdf-215d-3292-9f6b-9c233a225df7, since=null, name=CommonDataClass, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenCommonDataClass, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=536, uuid=8710bb08-2a02-358b-9586-eb781cdcd818, since=null, name=DataAttribute, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3396, uuid={F8919942-6ADD-48fb-BBC0-6A23A34F0D8D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,258 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=535, uuid=91bf0cdf-215d-3292-9f6b-9c233a225df7, since=null, name=CommonDataClass, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenCommonDataClass, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=536, uuid=8710bb08-2a02-358b-9586-eb781cdcd818, since=null, name=DataAttribute, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3396, uuid={F8919942-6ADD-48fb-BBC0-6A23A34F0D8D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenCommonDataClass +2024-09-07 12:38:48,258 [main] DEBUG AssociationEndBuilder - Updated source type to GenCommonDataClass +2024-09-07 12:38:48,258 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=538, uuid=720b4f72-8ffd-31c3-aae1-0bf72487de2b, since=null, name=CommonDataClass, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenCommonDataClass, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=539, uuid=3225b7f5-1129-3f07-a8a8-f676c210cb89, since=null, name=SubDataObject, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3397, uuid={4B987438-5F99-4fad-895C-8F6087C8705B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,258 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=538, uuid=720b4f72-8ffd-31c3-aae1-0bf72487de2b, since=null, name=CommonDataClass, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenCommonDataClass, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=539, uuid=3225b7f5-1129-3f07-a8a8-f676c210cb89, since=null, name=SubDataObject, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3397, uuid={4B987438-5F99-4fad-895C-8F6087C8705B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenCommonDataClass +2024-09-07 12:38:48,258 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = null->GenericModel::GenCommonDataClass, _objData=UmlObjectData [id=3372, uuid={959E91AF-330B-466d-9B20-63A1C6A648DF}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,258 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = null->GenericModel::GenCommonDataClass, _objData=UmlObjectData [id=3390, uuid={3D585BC8-7580-4967-AA20-7FE4307815A5}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,258 [main] TRACE ClassBuilder - read from EA: GenericModel::GenCommonDataClass +2024-09-07 12:38:48,258 [main] TRACE ClassBuilder - Class GenCompactType (11 in package GenericModel) +2024-09-07 12:38:48,259 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2172, uuid={CC9479A4-9DD7-4f7c-A2DD-42B53F5DA3AA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=GenCompactType, _otherEndName=?] +2024-09-07 12:38:48,259 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = null->GenericModel::GenCompactType, _objData=UmlObjectData [id=3374, uuid={8BEF7BE6-3453-4f7b-B1A4-1A0F6CD943B2}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,259 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = null->GenericModel::GenCompactType, _objData=UmlObjectData [id=3394, uuid={79A7DA9F-D786-4132-9D2F-6D10B1E0DD60}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,259 [main] TRACE ClassBuilder - read from EA: GenericModel::GenCompactType +2024-09-07 12:38:48,259 [main] TRACE ClassBuilder - Class GenConstructedType (12 in package GenericModel) +2024-09-07 12:38:48,259 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenConstructedType, _objData=UmlObjectData [id=3322, uuid={3672BC56-9890-4355-861B-45B1B841A9A8}, since=null, name=DA-ID, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,259 [main] DEBUG AssociationEndBuilder - Updated source type to GenConstructedType +2024-09-07 12:38:48,260 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=549, uuid=8da8b7fc-8347-3c95-b7ef-6ec97c09bb62, since=null, name=DataAttribute, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenConstructedType, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=550, uuid=88c87443-8ee9-3acb-8e3a-15b428a73cb3, since=null, name=SubDataAttribute, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3395, uuid={4953EDB6-E8A3-44b8-BA29-DD3366F6B3F1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,260 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=549, uuid=8da8b7fc-8347-3c95-b7ef-6ec97c09bb62, since=null, name=DataAttribute, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenConstructedType, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=550, uuid=88c87443-8ee9-3acb-8e3a-15b428a73cb3, since=null, name=SubDataAttribute, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3395, uuid={4953EDB6-E8A3-44b8-BA29-DD3366F6B3F1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenConstructedType +2024-09-07 12:38:48,260 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = null->GenericModel::GenConstructedType, _objData=UmlObjectData [id=3373, uuid={C583C2FA-340A-40e7-B9E0-E3B2C0F214E4}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,260 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = null->GenericModel::GenConstructedType, _objData=UmlObjectData [id=3392, uuid={E394C333-7434-47f4-8C30-3E48F8FF98FF}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,260 [main] TRACE ClassBuilder - read from EA: GenericModel::GenConstructedType +2024-09-07 12:38:48,260 [main] TRACE ClassBuilder - Class GenDataAttribute (13 in package GenericModel) +2024-09-07 12:38:48,260 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenDataAttribute, _objData=UmlObjectData [id=3323, uuid={FD001E99-4132-4975-B26D-2B9F17395F66}, since=null, name=DAName, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,260 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenDataAttribute, _objData=UmlObjectData [id=3324, uuid={34285ABB-FB3B-404a-ACC4-4709533FA4BF}, since=null, name=DARef, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1607, _eaTypeName=GenObjRef, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,260 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenDataAttribute, _objData=UmlObjectData [id=3325, uuid={6E718A2A-A12C-4100-80D3-84B5550862E0}, since=null, name=FC, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1597, _eaTypeName=GenFC, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,260 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenDataAttribute, _objData=UmlObjectData [id=3326, uuid={4F3B8CEE-ECAE-43cc-ACC9-68F61865042C}, since=null, name=TrgOp, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1615, _eaTypeName=GenTriggerConditions, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,260 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenDataAttribute, _objData=UmlObjectData [id=3327, uuid={807AE164-D149-4d18-9790-FCE87600CD9E}, since=null, name=Presence, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1609, _eaTypeName=GenPresenceConditions, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,261 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenDataAttribute, _objData=UmlObjectData [id=3328, uuid={B8650C5E-BC73-4968-B86C-C84775721C80}, since=null, name=Index, alias=, stereotype=, visibility=public, txtDescription='Index of this data attribute in case it is member of an array.', htmlDescription='

Index of this data attribute in case it is member of an array.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1602, _eaTypeName=GenINT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,261 [main] DEBUG AssociationEndBuilder - Updated target type to GenDataAttribute +2024-09-07 12:38:48,261 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=561, uuid=0283bad7-01c9-3c74-859a-bc73c4a20580, since=null, name=FCDA, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=562, uuid=9bb47694-c8c9-3c6b-8e46-d36d39c9d9e9, since=null, name=DataAttribute, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataAttribute, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3391, uuid={F5615202-FD44-43cf-A5FB-ACEEE58CA690}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,261 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=561, uuid=0283bad7-01c9-3c74-859a-bc73c4a20580, since=null, name=FCDA, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=562, uuid=9bb47694-c8c9-3c6b-8e46-d36d39c9d9e9, since=null, name=DataAttribute, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataAttribute, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3391, uuid={F5615202-FD44-43cf-A5FB-ACEEE58CA690}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenDataAttribute +2024-09-07 12:38:48,261 [main] DEBUG AssociationEndBuilder - Updated target type to GenDataAttribute +2024-09-07 12:38:48,261 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=535, uuid=91bf0cdf-215d-3292-9f6b-9c233a225df7, since=null, name=CommonDataClass, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenCommonDataClass, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=536, uuid=8710bb08-2a02-358b-9586-eb781cdcd818, since=null, name=DataAttribute, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataAttribute, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3396, uuid={F8919942-6ADD-48fb-BBC0-6A23A34F0D8D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenDataAttribute +2024-09-07 12:38:48,261 [main] DEBUG ClassBuilder - Updated source of class dependency DependencyBuilder [_kind=CLASS, qName = GenericModel::GenDataAttribute->GenericModel::GenConstructedType, _objData=UmlObjectData [id=3392, uuid={E394C333-7434-47f4-8C30-3E48F8FF98FF}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,261 [main] DEBUG ClassBuilder - Updated source of class dependency DependencyBuilder [_kind=CLASS, qName = GenericModel::GenDataAttribute->GenericModel::GenAtomicType, _objData=UmlObjectData [id=3393, uuid={CC81D6A1-8E39-4a90-A7C3-B7DF34975EF8}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,261 [main] DEBUG ClassBuilder - Updated source of class dependency DependencyBuilder [_kind=CLASS, qName = GenericModel::GenDataAttribute->GenericModel::GenCompactType, _objData=UmlObjectData [id=3394, uuid={79A7DA9F-D786-4132-9D2F-6D10B1E0DD60}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,261 [main] TRACE ClassBuilder - read from EA: GenericModel::GenDataAttribute +2024-09-07 12:38:48,261 [main] TRACE ClassBuilder - Class GenDataObject (14 in package GenericModel) +2024-09-07 12:38:48,262 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenDataObject, _objData=UmlObjectData [id=3329, uuid={493B8A67-86FF-4718-BA8F-D78707C1FD65}, since=null, name=DOName, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,262 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenDataObject, _objData=UmlObjectData [id=3330, uuid={B926F4CF-F07E-4264-B8E0-B1E7B6A83C0C}, since=null, name=DORef, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1607, _eaTypeName=GenObjRef, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,262 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenDataObject, _objData=UmlObjectData [id=3331, uuid={0100601D-CE5C-477e-9468-C76C14D215E9}, since=null, name=Transient, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1590, _eaTypeName=GenBOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,262 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenDataObject, _objData=UmlObjectData [id=3332, uuid={32D55A3C-F89A-4a1b-B987-40A0A56F35F7}, since=null, name=Presence, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1609, _eaTypeName=GenPresenceConditions, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,262 [main] DEBUG AssociationEndBuilder - Updated target type to GenDataObject +2024-09-07 12:38:48,262 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=569, uuid=96984ad5-0058-3f92-8de1-1b9d9abb7efd, since=null, name=LogicalNode, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=570, uuid=29c429cd-a5a2-375a-bb2f-bcda005a00b6, since=null, name=DataObject, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataObject, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3388, uuid={E7750FB2-2AAD-43fb-B285-DB6600EAB0EB}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,262 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=569, uuid=96984ad5-0058-3f92-8de1-1b9d9abb7efd, since=null, name=LogicalNode, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=570, uuid=29c429cd-a5a2-375a-bb2f-bcda005a00b6, since=null, name=DataObject, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataObject, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3388, uuid={E7750FB2-2AAD-43fb-B285-DB6600EAB0EB}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenDataObject +2024-09-07 12:38:48,262 [main] DEBUG AssociationEndBuilder - Updated target type to GenDataObject +2024-09-07 12:38:48,263 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=572, uuid=bb00dad9-2c30-3ebc-b229-204a8ddb766a, since=null, name=FCD, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=573, uuid=49609e32-471e-3791-82a5-0a36afa7137d, since=null, name=DataObject, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataObject, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3389, uuid={78EB6F05-C9FD-4e65-85A2-6AF87F8A18C4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,263 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=572, uuid=bb00dad9-2c30-3ebc-b229-204a8ddb766a, since=null, name=FCD, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=573, uuid=49609e32-471e-3791-82a5-0a36afa7137d, since=null, name=DataObject, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataObject, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3389, uuid={78EB6F05-C9FD-4e65-85A2-6AF87F8A18C4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenDataObject +2024-09-07 12:38:48,263 [main] DEBUG ClassBuilder - Updated source of class dependency DependencyBuilder [_kind=CLASS, qName = GenericModel::GenDataObject->GenericModel::GenCommonDataClass, _objData=UmlObjectData [id=3390, uuid={3D585BC8-7580-4967-AA20-7FE4307815A5}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,263 [main] TRACE ClassBuilder - read from EA: GenericModel::GenDataObject +2024-09-07 12:38:48,263 [main] TRACE ClassBuilder - Class GenDataSet (15 in package GenericModel) +2024-09-07 12:38:48,263 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenDataSet, _objData=UmlObjectData [id=3333, uuid={17678D76-CE06-4c20-80A5-7682C8099F48}, since=null, name=DSName, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,263 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2175, uuid={4ADC5A0E-73C6-4f94-933A-7BD93D4E55E9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=GenDataSet, _otherEndName=?] +2024-09-07 12:38:48,263 [main] DEBUG AssociationEndBuilder - Updated source type to GenDataSet +2024-09-07 12:38:48,264 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=578, uuid=09587696-3043-308e-a75d-131ab811c497, since=null, name=DataSet, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataSet, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=579, uuid=475e6c6d-6978-3182-aded-86ac1f2bb2e1, since=null, name=FCDMember, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3386, uuid={D623819D-C786-49de-9F8E-98626B2B744B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,264 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=578, uuid=09587696-3043-308e-a75d-131ab811c497, since=null, name=DataSet, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataSet, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=579, uuid=475e6c6d-6978-3182-aded-86ac1f2bb2e1, since=null, name=FCDMember, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3386, uuid={D623819D-C786-49de-9F8E-98626B2B744B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenDataSet +2024-09-07 12:38:48,264 [main] DEBUG AssociationEndBuilder - Updated source type to GenDataSet +2024-09-07 12:38:48,264 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=581, uuid=cdcafc61-7ebc-397c-8f40-c6a7d59a7b76, since=null, name=DataSet, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataSet, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=582, uuid=61df83a8-7948-3eab-83fe-e100cb412dfc, since=null, name=FCDAMember, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3387, uuid={3ABF489F-5EB8-40e8-9A9E-3506943CEB22}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,264 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=581, uuid=cdcafc61-7ebc-397c-8f40-c6a7d59a7b76, since=null, name=DataSet, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataSet, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=582, uuid=61df83a8-7948-3eab-83fe-e100cb412dfc, since=null, name=FCDAMember, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3387, uuid={3ABF489F-5EB8-40e8-9A9E-3506943CEB22}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenDataSet +2024-09-07 12:38:48,264 [main] TRACE ClassBuilder - read from EA: GenericModel::GenDataSet +2024-09-07 12:38:48,264 [main] TRACE ClassBuilder - Class GenFCD (16 in package GenericModel) +2024-09-07 12:38:48,264 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenFCD, _objData=UmlObjectData [id=3334, uuid={B8189F42-4859-4645-8DB8-09B9081EF712}, since=null, name=FC, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1597, _eaTypeName=GenFC, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,265 [main] DEBUG AssociationEndBuilder - Updated source type to GenFCD +2024-09-07 12:38:48,265 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=586, uuid=4091962f-2a68-3a45-b148-a6600433babf, since=null, name=FCD, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenFCD, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=587, uuid=b6c8689e-5c4b-309d-9d9c-3575a5963f92, since=null, name=SubDataObject, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3385, uuid={7CDEE923-AC2B-4918-9C4B-19EDE68B3746}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,265 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=586, uuid=4091962f-2a68-3a45-b148-a6600433babf, since=null, name=FCD, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenFCD, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=587, uuid=b6c8689e-5c4b-309d-9d9c-3575a5963f92, since=null, name=SubDataObject, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3385, uuid={7CDEE923-AC2B-4918-9C4B-19EDE68B3746}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenFCD +2024-09-07 12:38:48,265 [main] DEBUG AssociationEndBuilder - Updated target type to GenFCD +2024-09-07 12:38:48,265 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=578, uuid=09587696-3043-308e-a75d-131ab811c497, since=null, name=DataSet, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataSet, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=579, uuid=475e6c6d-6978-3182-aded-86ac1f2bb2e1, since=null, name=FCDMember, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenFCD, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3386, uuid={D623819D-C786-49de-9F8E-98626B2B744B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenFCD +2024-09-07 12:38:48,265 [main] DEBUG AssociationEndBuilder - Updated source type to GenFCD +2024-09-07 12:38:48,265 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=572, uuid=bb00dad9-2c30-3ebc-b229-204a8ddb766a, since=null, name=FCD, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenFCD, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=573, uuid=49609e32-471e-3791-82a5-0a36afa7137d, since=null, name=DataObject, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataObject, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3389, uuid={78EB6F05-C9FD-4e65-85A2-6AF87F8A18C4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenFCD +2024-09-07 12:38:48,265 [main] TRACE ClassBuilder - read from EA: GenericModel::GenFCD +2024-09-07 12:38:48,265 [main] TRACE ClassBuilder - Class GenFCDA (17 in package GenericModel) +2024-09-07 12:38:48,267 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenFCDA, _objData=UmlObjectData [id=3335, uuid={EA599362-A0A3-4d27-A9F4-915F9082C9B6}, since=null, name=FC, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1597, _eaTypeName=GenFC, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,267 [main] DEBUG AssociationEndBuilder - Updated source type to GenFCDA +2024-09-07 12:38:48,267 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=592, uuid=bb9175b9-bb3f-3d15-aa6a-130c512891ca, since=null, name=FCDA, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenFCDA, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=593, uuid=e1ea2ad5-2229-3293-a9e5-50442f8c10a7, since=null, name=SubDataAttribute, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3384, uuid={0C3230CE-0D7F-4853-B330-F6792DD4AE2F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,268 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=592, uuid=bb9175b9-bb3f-3d15-aa6a-130c512891ca, since=null, name=FCDA, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenFCDA, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=593, uuid=e1ea2ad5-2229-3293-a9e5-50442f8c10a7, since=null, name=SubDataAttribute, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3384, uuid={0C3230CE-0D7F-4853-B330-F6792DD4AE2F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenFCDA +2024-09-07 12:38:48,268 [main] DEBUG AssociationEndBuilder - Updated target type to GenFCDA +2024-09-07 12:38:48,268 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=581, uuid=cdcafc61-7ebc-397c-8f40-c6a7d59a7b76, since=null, name=DataSet, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataSet, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=582, uuid=61df83a8-7948-3eab-83fe-e100cb412dfc, since=null, name=FCDAMember, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenFCDA, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3387, uuid={3ABF489F-5EB8-40e8-9A9E-3506943CEB22}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenFCDA +2024-09-07 12:38:48,268 [main] DEBUG AssociationEndBuilder - Updated source type to GenFCDA +2024-09-07 12:38:48,268 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=561, uuid=0283bad7-01c9-3c74-859a-bc73c4a20580, since=null, name=FCDA, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenFCDA, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=562, uuid=9bb47694-c8c9-3c6b-8e46-d36d39c9d9e9, since=null, name=DataAttribute, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataAttribute, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3391, uuid={F5615202-FD44-43cf-A5FB-ACEEE58CA690}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenFCDA +2024-09-07 12:38:48,268 [main] TRACE ClassBuilder - read from EA: GenericModel::GenFCDA +2024-09-07 12:38:48,268 [main] TRACE ClassBuilder - Class GenFile (18 in package GenericModel) +2024-09-07 12:38:48,268 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenFile, _objData=UmlObjectData [id=3336, uuid={4AD7728F-4A39-4b7e-AC32-D31BDA8E2033}, since=null, name=FileRef, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1616, _eaTypeName=GenVisString255, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,268 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenFile, _objData=UmlObjectData [id=3337, uuid={C372B3E2-9671-4ff3-A6DD-A2322FB8438C}, since=null, name=FileSize, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1602, _eaTypeName=GenINT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,268 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenFile, _objData=UmlObjectData [id=3338, uuid={9A695829-F4E7-45cd-AD65-90CA0669786C}, since=null, name=LastModified, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1614, _eaTypeName=GenTimeStamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,269 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2174, uuid={EFFCA8B9-4A53-4f9d-BD54-FD315EEF6AE0}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=GenFile, _otherEndName=?] +2024-09-07 12:38:48,269 [main] DEBUG AssociationEndBuilder - Updated target type to GenFile +2024-09-07 12:38:48,269 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=525, uuid=158bf549-2e71-324e-b38d-7e4cd827cb19, since=null, name=FileSystem, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=FileSystem, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=526, uuid=13a4997f-10e4-3d32-a1f5-52a90ed16321, since=null, name=Files, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenFile, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3399, uuid={207F6219-301F-4e30-BD21-E099498AD645}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenFile +2024-09-07 12:38:48,269 [main] TRACE ClassBuilder - read from EA: GenericModel::GenFile +2024-09-07 12:38:48,269 [main] TRACE ClassBuilder - Class GenIED (19 in package GenericModel) +2024-09-07 12:38:48,269 [main] DEBUG AssociationEndBuilder - Updated source type to GenIED +2024-09-07 12:38:48,269 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=518, uuid=80bbc98a-7b14-32ed-857c-7ea140eba257, since=null, name=IED, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenIED, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=519, uuid=af3ad1a5-482a-35af-9cc0-9d827b1e93ad, since=null, name=AP, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=AccessPoint, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3400, uuid={DAE49C76-967F-474e-89A1-F794712D37D6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenIED +2024-09-07 12:38:48,269 [main] TRACE ClassBuilder - read from EA: GenericModel::GenIED +2024-09-07 12:38:48,269 [main] TRACE ClassBuilder - Class GenINT32U (20 in package GenericModel) +2024-09-07 12:38:48,269 [main] TRACE ClassBuilder - read from EA: GenericModel::GenINT32U +2024-09-07 12:38:48,269 [main] TRACE ClassBuilder - Class GenLN0 (21 in package GenericModel) +2024-09-07 12:38:48,270 [main] DEBUG AssociationEndBuilder - Updated target type to GenLN0 +2024-09-07 12:38:48,270 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=604, uuid=0160b03b-f1e6-36c7-8c5a-aa3c5e9482d6, since=null, name=LogicalDevice, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=605, uuid=c02aa9e9-0ab9-3cc3-9be2-1d15dc5a673a, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenLN0, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3382, uuid={0FC17B94-D523-4606-865E-FC632787BE10}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,270 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=604, uuid=0160b03b-f1e6-36c7-8c5a-aa3c5e9482d6, since=null, name=LogicalDevice, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=605, uuid=c02aa9e9-0ab9-3cc3-9be2-1d15dc5a673a, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenLN0, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3382, uuid={0FC17B94-D523-4606-865E-FC632787BE10}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenLN0 +2024-09-07 12:38:48,270 [main] TRACE ClassBuilder - read from EA: GenericModel::GenLN0 +2024-09-07 12:38:48,270 [main] TRACE ClassBuilder - Class GenLogicalDevice (22 in package GenericModel) +2024-09-07 12:38:48,270 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenLogicalDevice, _objData=UmlObjectData [id=3339, uuid={132BB1C1-B4D8-4218-941F-B5A60919E81F}, since=null, name=LDName, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,271 [main] DEBUG AssociationEndBuilder - Updated target type to GenLogicalDevice +2024-09-07 12:38:48,271 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=609, uuid=14a2fde0-353c-3b36-88de-6a4a12389d88, since=null, name=Server, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=610, uuid=1b9bc6c2-ddf0-3ccb-b0a2-6df5ed81f74d, since=null, name=LogicalDevice, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenLogicalDevice, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3379, uuid={A9AFC9DC-AA63-41f8-8694-C834EE5ED8AA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,271 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=609, uuid=14a2fde0-353c-3b36-88de-6a4a12389d88, since=null, name=Server, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=610, uuid=1b9bc6c2-ddf0-3ccb-b0a2-6df5ed81f74d, since=null, name=LogicalDevice, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenLogicalDevice, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3379, uuid={A9AFC9DC-AA63-41f8-8694-C834EE5ED8AA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenLogicalDevice +2024-09-07 12:38:48,271 [main] DEBUG AssociationEndBuilder - Updated source type to GenLogicalDevice +2024-09-07 12:38:48,271 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=612, uuid=52746bb8-d69d-3ce4-8651-c0466dab2cd0, since=null, name=LogicalDevice, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenLogicalDevice, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=613, uuid=66414be7-d09b-3778-942c-f13f75da619e, since=null, name=LogicalNode, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3380, uuid={BCBEB4BD-C882-44ab-B862-54FB7A4BC7B4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,271 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=612, uuid=52746bb8-d69d-3ce4-8651-c0466dab2cd0, since=null, name=LogicalDevice, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenLogicalDevice, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=613, uuid=66414be7-d09b-3778-942c-f13f75da619e, since=null, name=LogicalNode, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3380, uuid={BCBEB4BD-C882-44ab-B862-54FB7A4BC7B4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenLogicalDevice +2024-09-07 12:38:48,271 [main] DEBUG AssociationEndBuilder - Updated source type to GenLogicalDevice +2024-09-07 12:38:48,271 [main] DEBUG AssociationEndBuilder - Updated target type to GenLogicalDevice +2024-09-07 12:38:48,271 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=615, uuid=cf75d479-60cd-3cbb-8f0a-f16929a62d5c, since=null, name=ParentLogicalDevice, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenLogicalDevice, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=616, uuid=0a44a3a7-32a3-381c-9ee0-165513bf642d, since=null, name=ChildLogicalDevice, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenLogicalDevice, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3381, uuid={9A42BA8C-41A7-484c-AB6D-5987B2592B5F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,271 [main] DEBUG AssociationEndBuilder - Updated source type to GenLogicalDevice +2024-09-07 12:38:48,271 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=604, uuid=0160b03b-f1e6-36c7-8c5a-aa3c5e9482d6, since=null, name=LogicalDevice, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenLogicalDevice, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=605, uuid=c02aa9e9-0ab9-3cc3-9be2-1d15dc5a673a, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenLN0, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3382, uuid={0FC17B94-D523-4606-865E-FC632787BE10}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenLogicalDevice +2024-09-07 12:38:48,271 [main] TRACE ClassBuilder - read from EA: GenericModel::GenLogicalDevice +2024-09-07 12:38:48,272 [main] TRACE ClassBuilder - Class GenLogicalNode (23 in package GenericModel) +2024-09-07 12:38:48,272 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenLogicalNode, _objData=UmlObjectData [id=3340, uuid={BE685D25-FF44-42ae-805A-D77E32E208B3}, since=null, name=LNName, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,272 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenLogicalNode, _objData=UmlObjectData [id=3341, uuid={7A4CFF68-F4E3-47f5-BD82-708786CBC6E8}, since=null, name=LNRef, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1607, _eaTypeName=GenObjRef, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,273 [main] DEBUG AssociationEndBuilder - Updated target type to GenLogicalNode +2024-09-07 12:38:48,273 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=612, uuid=52746bb8-d69d-3ce4-8651-c0466dab2cd0, since=null, name=LogicalDevice, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenLogicalDevice, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=613, uuid=66414be7-d09b-3778-942c-f13f75da619e, since=null, name=LogicalNode, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenLogicalNode, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3380, uuid={BCBEB4BD-C882-44ab-B862-54FB7A4BC7B4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenLogicalNode +2024-09-07 12:38:48,273 [main] DEBUG AssociationEndBuilder - Updated source type to GenLogicalNode +2024-09-07 12:38:48,273 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=569, uuid=96984ad5-0058-3f92-8de1-1b9d9abb7efd, since=null, name=LogicalNode, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenLogicalNode, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=570, uuid=29c429cd-a5a2-375a-bb2f-bcda005a00b6, since=null, name=DataObject, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataObject, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3388, uuid={E7750FB2-2AAD-43fb-B285-DB6600EAB0EB}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenLogicalNode +2024-09-07 12:38:48,273 [main] DEBUG ClassBuilder - Adding GenLogicalNode as superclass of GenLN0 +2024-09-07 12:38:48,273 [main] TRACE ClassBuilder - read from EA: GenericModel::GenLogicalNode +2024-09-07 12:38:48,273 [main] TRACE ClassBuilder - Class GenMCAA (24 in package GenericModel) +2024-09-07 12:38:48,274 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2179, uuid={77710498-12E5-4036-BCFB-EB971851FBAC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=GenMCAA, _otherEndName=?] +2024-09-07 12:38:48,274 [main] DEBUG AssociationEndBuilder - Updated target type to GenMCAA +2024-09-07 12:38:48,274 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=623, uuid=216d0e04-1ef6-38d2-87ae-f9e96b329ddc, since=null, name=Server, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=624, uuid=93c97c83-b766-3523-b4ce-c000ed12a196, since=null, name=MCAppAssociation, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenMCAA, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3378, uuid={B4BAE755-B235-470d-BF31-155B403538E7}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,274 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=623, uuid=216d0e04-1ef6-38d2-87ae-f9e96b329ddc, since=null, name=Server, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=624, uuid=93c97c83-b766-3523-b4ce-c000ed12a196, since=null, name=MCAppAssociation, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenMCAA, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3378, uuid={B4BAE755-B235-470d-BF31-155B403538E7}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenMCAA +2024-09-07 12:38:48,274 [main] TRACE ClassBuilder - read from EA: GenericModel::GenMCAA +2024-09-07 12:38:48,274 [main] TRACE ClassBuilder - Class GenObjRef (25 in package GenericModel) +2024-09-07 12:38:48,275 [main] TRACE ClassBuilder - read from EA: GenericModel::GenObjRef +2024-09-07 12:38:48,275 [main] TRACE ClassBuilder - Class GenObjectName (26 in package GenericModel) +2024-09-07 12:38:48,275 [main] TRACE ClassBuilder - read from EA: GenericModel::GenObjectName +2024-09-07 12:38:48,275 [main] TRACE ClassBuilder - Class GenServer (27 in package GenericModel) +2024-09-07 12:38:48,275 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2176, uuid={CC75E8C6-70B4-4b01-9024-1EFA47EB1834}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=GenServer, _otherEndName=?] +2024-09-07 12:38:48,275 [main] DEBUG AssociationEndBuilder - Updated target type to GenServer +2024-09-07 12:38:48,276 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=630, uuid=6b4d5eb0-2d7d-305e-8b76-851596229a82, since=null, name=SAP, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=631, uuid=67fdc058-4b48-36a8-a6ac-987f880b7c06, since=null, name=Server, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenServer, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3376, uuid={41FFDF61-37BF-42f1-9E81-E1CB9B834F84}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,276 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=630, uuid=6b4d5eb0-2d7d-305e-8b76-851596229a82, since=null, name=SAP, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=631, uuid=67fdc058-4b48-36a8-a6ac-987f880b7c06, since=null, name=Server, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenServer, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3376, uuid={41FFDF61-37BF-42f1-9E81-E1CB9B834F84}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenServer +2024-09-07 12:38:48,276 [main] DEBUG AssociationEndBuilder - Updated source type to GenServer +2024-09-07 12:38:48,276 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=633, uuid=dd430889-064a-36b2-8756-9b8b51ddef50, since=null, name=Server, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenServer, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=634, uuid=c1acc12f-5221-3984-89ca-8fa76e33b410, since=null, name=TPAppAssociation, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3377, uuid={60020B56-90A7-4deb-9086-9463678D6B57}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,276 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=633, uuid=dd430889-064a-36b2-8756-9b8b51ddef50, since=null, name=Server, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenServer, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=634, uuid=c1acc12f-5221-3984-89ca-8fa76e33b410, since=null, name=TPAppAssociation, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3377, uuid={60020B56-90A7-4deb-9086-9463678D6B57}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenServer +2024-09-07 12:38:48,276 [main] DEBUG AssociationEndBuilder - Updated source type to GenServer +2024-09-07 12:38:48,276 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=623, uuid=216d0e04-1ef6-38d2-87ae-f9e96b329ddc, since=null, name=Server, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenServer, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=624, uuid=93c97c83-b766-3523-b4ce-c000ed12a196, since=null, name=MCAppAssociation, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenMCAA, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3378, uuid={B4BAE755-B235-470d-BF31-155B403538E7}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenServer +2024-09-07 12:38:48,276 [main] DEBUG AssociationEndBuilder - Updated source type to GenServer +2024-09-07 12:38:48,276 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=609, uuid=14a2fde0-353c-3b36-88de-6a4a12389d88, since=null, name=Server, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenServer, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=610, uuid=1b9bc6c2-ddf0-3ccb-b0a2-6df5ed81f74d, since=null, name=LogicalDevice, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenLogicalDevice, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3379, uuid={A9AFC9DC-AA63-41f8-8694-C834EE5ED8AA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenServer +2024-09-07 12:38:48,276 [main] DEBUG AssociationEndBuilder - Updated source type to GenServer +2024-09-07 12:38:48,276 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=522, uuid=5c265ff5-ecbc-320f-84a3-73adfc3724de, since=null, name=Server, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenServer, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=523, uuid=ac3325c9-54ef-30e7-a39e-24d3911757c6, since=null, name=FileSystem, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=FileSystem, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3398, uuid={5982398B-EDCC-45cd-A1AA-C9F8D62D2A4A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenServer +2024-09-07 12:38:48,276 [main] TRACE ClassBuilder - read from EA: GenericModel::GenServer +2024-09-07 12:38:48,276 [main] TRACE ClassBuilder - Class GenSubDataAttribute (28 in package GenericModel) +2024-09-07 12:38:48,276 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenSubDataAttribute, _objData=UmlObjectData [id=3342, uuid={AB7D51A9-8986-4bfc-8BA6-4836DC8814DE}, since=null, name=SubDAName, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,277 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenSubDataAttribute, _objData=UmlObjectData [id=3343, uuid={94A40232-E6EE-4682-B41D-2FCF1207E36B}, since=null, name=SubDARef, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1607, _eaTypeName=GenObjRef, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,277 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenSubDataAttribute, _objData=UmlObjectData [id=3344, uuid={227F3C1B-21E7-46e7-92B5-A36942028DC0}, since=null, name=FC, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1597, _eaTypeName=GenFC, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,277 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenSubDataAttribute, _objData=UmlObjectData [id=3345, uuid={AB4449FC-BDC1-43fe-9AA0-B699FD684B7F}, since=null, name=Presence, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1609, _eaTypeName=GenPresenceConditions, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,277 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenSubDataAttribute, _objData=UmlObjectData [id=3346, uuid={F3DE8E30-A6D7-41b5-B2B6-B3006D7AEBCC}, since=null, name=Index, alias=, stereotype=, visibility=public, txtDescription='Index of this sub-data attribute in case it is member of an array.', htmlDescription='

Index of this sub-data attribute in case it is member of an array.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1602, _eaTypeName=GenINT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,277 [main] DEBUG AssociationEndBuilder - Updated target type to GenSubDataAttribute +2024-09-07 12:38:48,277 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=592, uuid=bb9175b9-bb3f-3d15-aa6a-130c512891ca, since=null, name=FCDA, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenFCDA, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=593, uuid=e1ea2ad5-2229-3293-a9e5-50442f8c10a7, since=null, name=SubDataAttribute, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenSubDataAttribute, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3384, uuid={0C3230CE-0D7F-4853-B330-F6792DD4AE2F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenSubDataAttribute +2024-09-07 12:38:48,277 [main] DEBUG AssociationEndBuilder - Updated target type to GenSubDataAttribute +2024-09-07 12:38:48,277 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=549, uuid=8da8b7fc-8347-3c95-b7ef-6ec97c09bb62, since=null, name=DataAttribute, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenConstructedType, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=550, uuid=88c87443-8ee9-3acb-8e3a-15b428a73cb3, since=null, name=SubDataAttribute, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenSubDataAttribute, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3395, uuid={4953EDB6-E8A3-44b8-BA29-DD3366F6B3F1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenSubDataAttribute +2024-09-07 12:38:48,277 [main] DEBUG ClassBuilder - Updated source of class dependency DependencyBuilder [_kind=CLASS, qName = GenericModel::GenSubDataAttribute->GenericModel::GenConstructedType, _objData=UmlObjectData [id=3373, uuid={C583C2FA-340A-40e7-B9E0-E3B2C0F214E4}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,277 [main] DEBUG ClassBuilder - Updated source of class dependency DependencyBuilder [_kind=CLASS, qName = GenericModel::GenSubDataAttribute->GenericModel::GenCompactType, _objData=UmlObjectData [id=3374, uuid={8BEF7BE6-3453-4f7b-B1A4-1A0F6CD943B2}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,277 [main] DEBUG ClassBuilder - Updated source of class dependency DependencyBuilder [_kind=CLASS, qName = GenericModel::GenSubDataAttribute->GenericModel::GenAtomicType, _objData=UmlObjectData [id=3375, uuid={7804C7F3-3958-4464-9E4D-6125308CB9FF}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,277 [main] TRACE ClassBuilder - read from EA: GenericModel::GenSubDataAttribute +2024-09-07 12:38:48,277 [main] TRACE ClassBuilder - Class GenSubDataObject (29 in package GenericModel) +2024-09-07 12:38:48,278 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenSubDataObject, _objData=UmlObjectData [id=3347, uuid={5336B078-D51A-4310-BFC9-7B4828112B1D}, since=null, name=SDOName, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,278 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenSubDataObject, _objData=UmlObjectData [id=3348, uuid={7314D9C2-528D-4907-A459-ECDA44ADE0E0}, since=null, name=SDORef, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1607, _eaTypeName=GenObjRef, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,278 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenSubDataObject, _objData=UmlObjectData [id=3349, uuid={C1410F0D-BF9E-4f1d-B38F-884B17F8F161}, since=null, name=Presence, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1609, _eaTypeName=GenPresenceConditions, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,278 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenSubDataObject, _objData=UmlObjectData [id=3350, uuid={4276E214-E0D7-476f-BAA6-ED3DF54ABF91}, since=null, name=Index, alias=, stereotype=, visibility=public, txtDescription='Index of this sub data object in case it is member of an array.', htmlDescription='

Index of this sub data object in case it is member of an array.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1602, _eaTypeName=GenINT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,278 [main] DEBUG AssociationEndBuilder - Updated target type to GenSubDataObject +2024-09-07 12:38:48,278 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=586, uuid=4091962f-2a68-3a45-b148-a6600433babf, since=null, name=FCD, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenFCD, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=587, uuid=b6c8689e-5c4b-309d-9d9c-3575a5963f92, since=null, name=SubDataObject, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenSubDataObject, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3385, uuid={7CDEE923-AC2B-4918-9C4B-19EDE68B3746}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenSubDataObject +2024-09-07 12:38:48,278 [main] DEBUG AssociationEndBuilder - Updated target type to GenSubDataObject +2024-09-07 12:38:48,278 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=538, uuid=720b4f72-8ffd-31c3-aae1-0bf72487de2b, since=null, name=CommonDataClass, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenCommonDataClass, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=539, uuid=3225b7f5-1129-3f07-a8a8-f676c210cb89, since=null, name=SubDataObject, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenSubDataObject, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3397, uuid={4B987438-5F99-4fad-895C-8F6087C8705B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenSubDataObject +2024-09-07 12:38:48,278 [main] DEBUG ClassBuilder - Updated source of class dependency DependencyBuilder [_kind=CLASS, qName = GenericModel::GenSubDataObject->GenericModel::GenCommonDataClass, _objData=UmlObjectData [id=3372, uuid={959E91AF-330B-466d-9B20-63A1C6A648DF}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,278 [main] TRACE ClassBuilder - read from EA: GenericModel::GenSubDataObject +2024-09-07 12:38:48,278 [main] TRACE ClassBuilder - Class GenTPAA (30 in package GenericModel) +2024-09-07 12:38:48,278 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenTPAA, _objData=UmlObjectData [id=3351, uuid={24BE7E13-5125-43e0-9D7F-1F75F29C6A19}, since=null, name=AssociationId, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1588, _eaTypeName=GenAssociationID, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,279 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2178, uuid={D4EC38C0-71B1-494a-AED1-A5DCF0AC5CAB}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=GenTPAA, _otherEndName=?] +2024-09-07 12:38:48,279 [main] DEBUG AssociationEndBuilder - Updated target type to GenTPAA +2024-09-07 12:38:48,279 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=633, uuid=dd430889-064a-36b2-8756-9b8b51ddef50, since=null, name=Server, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenServer, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=634, uuid=c1acc12f-5221-3984-89ca-8fa76e33b410, since=null, name=TPAppAssociation, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenTPAA, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3377, uuid={60020B56-90A7-4deb-9086-9463678D6B57}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenTPAA +2024-09-07 12:38:48,279 [main] TRACE ClassBuilder - read from EA: GenericModel::GenTPAA +2024-09-07 12:38:48,279 [main] TRACE ClassBuilder - Class GenTriggerConditions (31 in package GenericModel) +2024-09-07 12:38:48,279 [main] TRACE ClassBuilder - read from EA: GenericModel::GenTriggerConditions +2024-09-07 12:38:48,279 [main] TRACE ClassBuilder - Class GenVisString255 (32 in package GenericModel) +2024-09-07 12:38:48,279 [main] TRACE ClassBuilder - read from EA: GenericModel::GenVisString255 +2024-09-07 12:38:48,279 [main] TRACE ClassBuilder - Class ServiceAccessPoint (33 in package GenericModel) +2024-09-07 12:38:48,280 [main] DEBUG AssociationEndBuilder - Updated source type to ServiceAccessPoint +2024-09-07 12:38:48,280 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=630, uuid=6b4d5eb0-2d7d-305e-8b76-851596229a82, since=null, name=SAP, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=ServiceAccessPoint, _multiplicity=[1..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=631, uuid=67fdc058-4b48-36a8-a6ac-987f880b7c06, since=null, name=Server, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenServer, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3376, uuid={41FFDF61-37BF-42f1-9E81-E1CB9B834F84}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::ServiceAccessPoint +2024-09-07 12:38:48,280 [main] DEBUG ClassBuilder - Adding ServiceAccessPoint as subclass of AccessPoint +2024-09-07 12:38:48,280 [main] TRACE ClassBuilder - read from EA: GenericModel::ServiceAccessPoint +2024-09-07 12:38:48,280 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=NewIEC61850_7_2, _depth=2, _eaElementID=1572, _objData=UmlObjectData [id=87, uuid={40C1B298-2113-4638-AEA1-473E2A94C689}, since=null, name=GenericModel, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=58, _selfDependent=false, 16_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1573, uuid={E96EFCB6-7CB3-4a02-B716-C76F98A92BF8}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='All from 6.2 CommonACSI types, except for ARRAY and the 3 moved to atomic. +Stereotype: <>', htmlDescription='

All from 6.2 CommonACSI types, except for ARRAY and the 3 moved to atomic.

Stereotype: <<compact>>

'], _containingPackage=GenericModel, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1574, uuid={E36DC6AA-4511-4f84-A9DD-E9B6D5994E58}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Agreement to rename some primitive types in 7-2, to align with SCL names, as follows: +- use actual 7-2 name as alias in UML class (printed as title) +- use SCL type name as class name', htmlDescription='

Agreement to rename some primitive types in 7-2, to align with SCL names, as follows:

- use actual 7-2 name as alias in UML class (printed as title)

- use SCL type name as class name

'], _containingPackage=GenericModel, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1575, uuid={D47037FC-BEA0-47eb-B37B-6E74F8B3D551}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Note: Review classification after addressing 7-2 core type system. +GenBaseType is meant to be used for "pure" primitives, GenCommonACSIType is for all the others.', htmlDescription='

Note: Review classification after addressing 7-2 core type system.

GenBaseType is meant to be used for "pure" primitives, GenCommonACSIType is for all the others.

'], _containingPackage=GenericModel, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1576, uuid={BCAC7CCF-A942-48a4-B258-771D38A021F9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: We'll need to move PresenceConditions from 7-3 into 7-2, to use them in 7-2 as well.', htmlDescription='

TODO: We'll need to move PresenceConditions from 7-3 into 7-2, to use them in 7-2 as well.

'], _containingPackage=GenericModel, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1577, uuid={A60B825D-7A9A-494d-BA42-33219F1893C4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Change "FileName" with "FileRef" wherever it appears. +Do not include FileDirectory.', htmlDescription='

TODO: Change "FileName" with "FileRef" wherever it appears.

Do not include FileDirectory.

'], _containingPackage=GenericModel, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1578, uuid={8528A6C3-CA81-4578-B54F-7A7DE355C9F9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- Andre to see how to express: At least one of FCDMember or FCDAMember. +- Tanja to add DSRef as ObjectReference, similar to existing meta-model. +- Tanja to trace associations similar to existing meta-model, they're ok.', htmlDescription='

TODO:

  • Andre to see how to express: At least one of FCDMember or FCDAMember.
  • Tanja to add DSRef as ObjectReference, similar to existing meta-model.
  • Tanja to trace associations similar to existing meta-model, they're ok.
'], _containingPackage=GenericModel, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1579, uuid={7C7CE85D-2B99-46ed-82E5-2B2F36BDB3B6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Decision: Start with packages that will reflect Clause 6 through Clause 23 (Files).', htmlDescription='

Decision: Start with packages that will reflect Clause 6 through Clause 23 (Files).

'], _containingPackage=GenericModel, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1580, uuid={65AFCFF7-8512-4e11-BCFA-DBF2FD664BE5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Deal with GenClient.', htmlDescription='

TODO: Deal with GenClient.

'], _containingPackage=GenericModel, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1581, uuid={578E5DF8-ED23-4bfe-9A4C-626AA2F125CE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='All from 6.1 Basic types + ObjectReference, ObjectName and ServiceError. +Plus other non-packed/coded types. +Steretypes: <>, <>, <>', htmlDescription='

All from 6.1 Basic types + ObjectReference, ObjectName and ServiceError.

Plus other non-packed/coded types.

Steretypes: <<atomic>>, <<enumeration>>, <<enumeration,coded>>

'], _containingPackage=GenericModel, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1582, uuid={574B78D4-385A-44c8-9038-ACC8AA6D4343}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- Ensure RCB.DatSet etc. are reflected as assoc. end names in the generic model. +OPEN QUESTION: +- Case of RCB.DatSet that should be of type ObjectReference, but in the generic model it is linked to DataSet.', htmlDescription='

TODO:

  • Ensure RCB.DatSet etc. are reflected as assoc. end names in the generic model.

OPEN QUESTION:

  • Case of RCB.DatSet that should be of type ObjectReference, but in the generic model it is linked to DataSet.
'], _containingPackage=GenericModel, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1583, uuid={3E98F8C3-5801-4840-9C6D-489098AD95CC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: We've added "Gen" to types where we already have an existing one - to make it less error-prone to refactor. E.g., GenFCD will in the end be called FCD.', htmlDescription='

Modelling note: We've added "Gen" to types where we already have an existing one - to make it less error-prone to refactor. E.g., GenFCD will in the end be called FCD.

'], _containingPackage=GenericModel, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1584, uuid={3D07741F-191D-47a1-8F4D-01CADA1023F3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- Tanja to add GenAuthenticationParameter type (similar to Authentication in meta-model).', htmlDescription='

TODO:

  • Tanja to add GenAuthenticationParameter type (similar to Authentication in meta-model).
'], _containingPackage=GenericModel, _otherEndName=], SkippedBuilder [, _kind=OTHER, _isConnector=false, _objData=UmlObjectData [id=1618, uuid={1DA81ADB-7526-4988-B94A-615589F034CF}, since=null, name=, alias=, stereotype=invariant, visibility=public, txtDescription='xor', htmlDescription='

xor

'], _containingPackage=GenericModel, _otherEndName=], SkippedBuilder [, _kind=OTHER, _isConnector=false, _objData=UmlObjectData [id=1619, uuid={46AE4BB9-5995-47bf-B7A2-3500BDA63832}, since=null, name=, alias=, stereotype=invariant, visibility=public, txtDescription='xor', htmlDescription='

xor

'], _containingPackage=GenericModel, _otherEndName=], SkippedBuilder [, _kind=OTHER, _isConnector=false, _objData=UmlObjectData [id=1620, uuid={5D9BD1EA-00B1-4644-A7F4-6F0FA14A9F8B}, since=null, name=, alias=, stereotype=invariant, visibility=public, txtDescription='xor', htmlDescription='

xor

'], _containingPackage=GenericModel, _otherEndName=], SkippedBuilder [, _kind=OTHER, _isConnector=false, _objData=UmlObjectData [id=1621, uuid={A15F46E8-FDE8-40f1-8D27-9BF33615BDA5}, since=null, name=, alias=, stereotype=invariant, visibility=public, txtDescription='xor', htmlDescription='

xor

'], _containingPackage=GenericModel, _otherEndName=]], 2_diagrams=[DiagramBuilder [_containingPackage=GenericModel, _objData=UmlObjectData [id=190, uuid={741656D9-DFE5-45fb-A169-AC974992B5BE}, since=null, name=GenericModel, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL], DiagramBuilder [_containingPackage=GenericModel, _objData=UmlObjectData [id=191, uuid={2A0F8CC2-20D8-47e7-AA5D-1CEE6D0192D2}, since=null, name=GenericModelTypes, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _classes=33 +2024-09-07 12:38:48,280 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=WG10, _depth=1, _eaElementID=1571, _objData=UmlObjectData [id=86, uuid={10D446D7-D0E6-4c6d-801D-81468949F8F8}, since=null, name=NewIEC61850_7_2, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=NewIEC61850_7_2, _objData=UmlObjectData [id=189, uuid={FDB3BD59-D66E-4646-A4E7-B08D4F787BFD}, since=null, name=NewIEC61850_7_2, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=PACKAGE]], _childPackages=1] +2024-09-07 12:38:48,280 [main] INFO PackageBuilder - processing package IEC61850_7_2 (2) ... +2024-09-07 12:38:48,280 [main] ERROR EaTables - [+++ EA ordering problem for 2 diagram(s) in IEC61850_7_2 (manually move back/forth a diagram to initiate EA internal ordering update!): +, +++ diagram IEC61850_7_2: pos = 0 +, +++ diagram IEC61850_7_2ModellingNotes: pos = 0 DUPLICATE +] +2024-09-07 12:38:48,281 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=IEC61850_7_2, _objData=UmlObjectData [id=192, uuid={90AA6E54-26D6-43d4-94A7-5F7B4B772910}, since=null, name=IEC61850_7_2, alias=, stereotype=, visibility=public, txtDescription='Overview of packages and their dependencies. +Dependencies among sub-packages are not shown on this diagram.', htmlDescription='

Overview of packages and their dependencies.

Dependencies among sub-packages are not shown on this diagram.

'], _portrait=true, _kind=PACKAGE] +2024-09-07 12:38:48,281 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=IEC61850_7_2, _objData=UmlObjectData [id=193, uuid={4F40E7C3-3463-44fe-85FB-8E5B2084B8A6}, since=null, name=IEC61850_7_2ModellingNotes, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,281 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->WG10::IEC61850_7_2, _objData=UmlObjectData [id=2896, uuid={601FCB98-A23F-4bb9-9093-C5EB70806F8B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,281 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->WG10::IEC61850_7_2, _objData=UmlObjectData [id=3104, uuid={3AE23F98-46A7-4956-8947-FA3AD8CE26AC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,282 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1623, uuid={EABD0CB1-194A-4ad7-A014-C0F4FF33A957}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- With tracking CDCs in Part 7-2, we have circular dependency with Part 7-3! (not shown here). Proposed to move these into Part 7-3.', htmlDescription='

TODO:

  • With tracking CDCs in Part 7-2, we have circular dependency with Part 7-3! (not shown here). Proposed to move these into Part 7-3.
'], _containingPackage=IEC61850_7_2, _otherEndName=] +2024-09-07 12:38:48,283 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1624, uuid={70D0C33E-CC65-47c7-9DD8-B1A5DB8EEB7B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Arrange the diagram when we settlle on modelling.', htmlDescription='

TODO: Arrange the diagram when we settlle on modelling.

'], _containingPackage=IEC61850_7_2, _otherEndName=] +2024-09-07 12:38:48,284 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1625, uuid={5D73B6B5-C29B-4bc3-842B-49DA8C366102}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='NOT UPDATED YET! + +How to read this model? +Automatically generated documentation prints the packages and their contents in the order they are defined in the model. And in the model, we took a bottom-up approach, i.e., starting from least-dependent packages and going up to most dependent packages: +- if you need an overview, look first into the packages that depend on others +- if you want the description of items before their first usage, look into the packages upon which the others depend. +Dependencies have been manually drawn (the tool does not do it by itself). +API (operations) conventions: +Packages CoreTypes, CoreEnums and AcsiType contain classes with data only, while AcsiTypes, MetaModel and CoreAcsi have classes (and interfaces) with operations, as well. Conventions for operations are as follows: +- Null argument in operations is by default not allowed, unless specified otherwise. +- When return value is a collection, and it has "nothing" to return, a non-null empty collection must be returned. +UML: +- In the diagrams, the black diamond on associations is on the side of a container, and its implicit multiplicity, as defined by UML, is [0..1], i.e., the contained class may belong to one or no container. For the sake or readability, we do not show the multiplicity on the container side. +- On the side of contained object, mandatory association ([1] or [1..*]) is considered as mandatory once the model is initialised. In other words, while building the model, it is possible to violate this constraint, but the valid completely built model must respect the given cardinalities. +- In the API (AcsiTypes, MetaModel, CoreAcsi), we define only methods that describe the required interface; definition of attributes (and names of association ends) is left to the implementation. +Design rationale: +We have on purpose kept services in CoreAcsi (API) separate from the MetaModel, because: +- CoreAcsi API is meant to be used for communication with a live device. +- CoreAcsi API models communication services, which are not object-oriented with respect to the domain model, as they deal with object references (strings), not with objects themselves (e.g., control blocks). However, the API itself is object oriented. +- CoreAcsi API reflects relatively closely what is specified in Part 7-2, Ed. 1, so those who know Part 7-2 and would like to use the API can easily find their way through the API. If this API is meant to be part of the standard, most of services should be renamed (to have less clumsy names). +- CoreAcsi API can be used without any configuration (SCL), to connect and communicate with the live device. It can be thus useful for simple browsing applications. +In contrast to this: +- MetaModel need not be used with a live device - it can be instantiated from SCL and used for different off-line applications. +- MetaModel is object-oriented - it deals with objects (e.g., control blocks) and as part of the interface provides navigation and object reference information. +- MetaModel enhances what is specified in Part 7-2, Ed. 1 and provides a strict definition of concepts developed in Parts 7-3 and 7-4, which is the must for software or data store designs. +- MetaModel can be used with a live device, as well, provided there is an intermediate implementation layer (not shown here) that will take care of using CoreAcsi API or even a direct MMS access. In that case, the semantics of the methods that influence behaviour on the CoreAcsi API level may not be the same as desired by a particular application using MetaModel (e.g., multiple clients/servers, who "owns" what, invalid names, etc.). Therefore, the MetaModel contains only the necessary minimum of methods (connecting to the server, naming and navigation), and different applications have to extend it for their needs (e.g., control block attributes). +Many useful applications can be developed with just this package, without using details of common data classes and logical nodes, while these latter will enable more advanced ones (as they provide for the semantics of data).', htmlDescription='

NOT UPDATED YET!

How to read this model?

Automatically generated documentation prints the packages and their contents in the order they are defined in the model. And in the model, we took a bottom-up approach, i.e., starting from least-dependent packages and going up to most dependent packages:

  • if you need an overview, look first into the packages that depend on others
  • if you want the description of items before their first usage, look into the packages upon which the others depend.

Dependencies have been manually drawn (the tool does not do it by itself).

API (operations) conventions:

Packages CoreTypes, CoreEnums and AcsiType contain classes with data only, while AcsiTypes, MetaModel and CoreAcsi have classes (and interfaces) with operations, as well. Conventions for operations are as follows:

  • Null argument in operations is by default not allowed, unless specified otherwise.
  • When return value is a collection, and it has "nothing" to return, a non-null empty collection must be returned.

UML:

  • In the diagrams, the black diamond on associations is on the side of a container, and its implicit multiplicity, as defined by UML, is [0..1], i.e., the contained class may belong to one or no container. For the sake or readability, we do not show the multiplicity on the container side.
  • On the side of contained object, mandatory association ([1] or [1..*]) is considered as mandatory once the model is initialised. In other words, while building the model, it is possible to violate this constraint, but the valid completely built model must respect the given cardinalities.
  • In the API (AcsiTypes, MetaModel, CoreAcsi), we define only methods that describe the required interface; definition of attributes (and names of association ends) is left to the implementation.

Design rationale:

We have on purpose kept services in CoreAcsi (API) separate from the MetaModel, because:

  • CoreAcsi API is meant to be used for communication with a live device.
  • CoreAcsi API models communication services, which are not object-oriented with respect to the domain model, as they deal with object references (strings), not with objects themselves (e.g., control blocks). However, the API itself is object oriented.
  • CoreAcsi API reflects relatively closely what is specified in Part 7-2, Ed. 1, so those who know Part 7-2 and would like to use the API can easily find their way through the API. If this API is meant to be part of the standard, most of services should be renamed (to have less clumsy names).
  • CoreAcsi API can be used without any configuration (SCL), to connect and communicate with the live device. It can be thus useful for simple browsing applications.

In contrast to this:

  • MetaModel need not be used with a live device - it can be instantiated from SCL and used for different off-line applications.
  • MetaModel is object-oriented - it deals with objects (e.g., control blocks) and as part of the interface provides navigation and object reference information.
  • MetaModel enhances what is specified in Part 7-2, Ed. 1 and provides a strict definition of concepts developed in Parts 7-3 and 7-4, which is the must for software or data store designs.
  • MetaModel can be used with a live device, as well, provided there is an intermediate implementation layer (not shown here) that will take care of using CoreAcsi API or even a direct MMS access. In that case, the semantics of the methods that influence behaviour on the CoreAcsi API level may not be the same as desired by a particular application using MetaModel (e.g., multiple clients/servers, who "owns" what, invalid names, etc.). Therefore, the MetaModel contains only the necessary minimum of methods (connecting to the server, naming and navigation), and different applications have to extend it for their needs (e.g., control block attributes).

Many useful applications can be developed with just this package, without using details of common data classes and logical nodes, while these latter will enable more advanced ones (as they provide for the semantics of data).

'], _containingPackage=IEC61850_7_2, _otherEndName=] +2024-09-07 12:38:48,284 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1627, uuid={15563EAD-20D1-4edb-BCBF-F3184AF0B515}, since=null, name=IEC61850_7_2 : IEC61850_7_2ModellingNotes, alias=, stereotype=, visibility=public, txtDescription='IEC61850_7_2 : IEC61850_7_2ModellingNotes', htmlDescription='

IEC61850_7_2 : IEC61850_7_2ModellingNotes

'], _containingPackage=IEC61850_7_2, _otherEndName=] +2024-09-07 12:38:48,284 [main] TRACE ClassBuilder - Class IEC61850_7_2Namespace (0 in package IEC61850_7_2) +2024-09-07 12:38:48,284 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61850_7_2::IEC61850_7_2Namespace, _objData=UmlObjectData [id=6701, uuid={312B16B6-CA4B-4093-AD7C-DC9FB8F7CFA0}, since=null, name=name, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=IEC61850-7-2:2007, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,284 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61850_7_2::IEC61850_7_2Namespace, _objData=UmlObjectData [id=3305, uuid={A72EC82F-45EC-45d4-B1A5-81F7A8E24B64}, since=null, name=id, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=IEC61850-7-2, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,284 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61850_7_2::IEC61850_7_2Namespace, _objData=UmlObjectData [id=3306, uuid={78825892-2BE3-4fff-9A89-CA4556B98A10}, since=null, name=version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2007, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,284 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61850_7_2::IEC61850_7_2Namespace, _objData=UmlObjectData [id=3307, uuid={9318F048-1784-4c0c-99F8-5907A8A9FC72}, since=null, name=revision, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,284 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61850_7_2::IEC61850_7_2Namespace, _objData=UmlObjectData [id=3308, uuid={3E48ED76-846C-4664-BEFE-64F6FC7262BE}, since=null, name=date, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2011-08-01, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,285 [main] TRACE ClassBuilder - read from EA: IEC61850_7_2::IEC61850_7_2Namespace +2024-09-07 12:38:48,285 [main] INFO PackageBuilder - processing package FunctionalConstraints (2) ... +2024-09-07 12:38:48,285 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=FunctionalConstraints, _objData=UmlObjectData [id=195, uuid={A27A2F0C-3508-49d0-BE2E-DCD85EACEC54}, since=null, name=FunctionalConstraints, alias=, stereotype=, visibility=public, txtDescription='This diagram shows functional constraints.', htmlDescription='

This diagram shows functional constraints.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,285 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::FunctionalConstraints, _objData=UmlObjectData [id=3175, uuid={24606FEA-EE8B-41c7-B098-E006E81B3F44}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,286 [main] TRACE ClassBuilder - Class FcKind (22 in package FunctionalConstraints) +2024-09-07 12:38:48,286 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FunctionalConstraints::FcKind, _objData=UmlObjectData [id=3356, uuid={745EF837-06B1-4ffb-8713-FF2924758753}, since=null, name=ST, alias=Status information, stereotype=enum, visibility=public, txtDescription='DataAttribute shall represent status information whose value may be read, substituted, reported, and logged but shall not be writeable. +Initial value shall be taken from the process. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- if member of dataset, may be contained in the Report, GOOSEMessage and SVMessage.', htmlDescription='

DataAttribute shall represent status information whose value may be read, substituted, reported, and logged but shall not be writeable.

Initial value shall be taken from the process.

Modelling note: Applicable ACSI services:

  • AcsiCDC.getDataValues()
  • AcsiCDC.getDataDefinition()
  • AcsiCDC.getDataDirectory()
  • AcsiDS.getDataSetValues()
  • if member of dataset, may be contained in the Report, GOOSEMessage and SVMessage.
'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,286 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FunctionalConstraints::FcKind, _objData=UmlObjectData [id=3357, uuid={B4588BCF-2CAE-4204-9971-58128FCC1138}, since=null, name=MX, alias=Measurands (analogue values), stereotype=enum, visibility=public, txtDescription='DataAttribute shall represent measurand information whose value may be read, substituted, reported, and logged but shall not be writeable. +Initial value shall be taken from the process. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- if member of dataset, may be contained in the Report, GOOSEMessage and SVMessage.', htmlDescription='

DataAttribute shall represent measurand information whose value may be read, substituted, reported, and logged but shall not be writeable.

Initial value shall be taken from the process.

Modelling note: Applicable ACSI services:

  • AcsiCDC.getDataValues()
  • AcsiCDC.getDataDefinition()
  • AcsiCDC.getDataDirectory()
  • AcsiDS.getDataSetValues()
  • if member of dataset, may be contained in the Report, GOOSEMessage and SVMessage.
'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,286 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FunctionalConstraints::FcKind, _objData=UmlObjectData [id=3358, uuid={BB95C791-97E6-442c-B5EB-F0BD68C29E7F}, since=null, name=SP, alias=Setting (outside setting group), stereotype=enum, visibility=public, txtDescription='DataAttribute shall represent setting parameter information whose value is read and may be written. Changes of values shall become effective immediately, and may be reported. +Initial value shall be as configured; value shall be non-volatile. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.setDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- if member of dataset, may be contained in the Report, GOOSEMessage.', htmlDescription='

DataAttribute shall represent setting parameter information whose value is read and may be written. Changes of values shall become effective immediately, and may be reported.

Initial value shall be as configured; value shall be non-volatile.

Modelling note: Applicable ACSI services:

  • AcsiCDC.getDataValues()
  • AcsiCDC.setDataValues()
  • AcsiCDC.getDataDefinition()
  • AcsiCDC.getDataDirectory()
  • AcsiDS.getDataSetValues()
  • if member of dataset, may be contained in the Report, GOOSEMessage.
'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,287 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FunctionalConstraints::FcKind, _objData=UmlObjectData [id=3359, uuid={89A38396-2A3C-4c7e-B4D9-2DF5C1244B91}, since=null, name=SV, alias=Substitution, stereotype=enum, visibility=public, txtDescription='DataAttribute shall represent substitution information whose value may be written to substitute the value attribute and read. A value change may be reported. +If the value is volatile then the initial value shall be false, otherwise the value should be as set or configured. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.setDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- AcsiDS.setDataSetValues() +- if member of dataset, may be contained in the Report.', htmlDescription='

DataAttribute shall represent substitution information whose value may be written to substitute the value attribute and read. A value change may be reported.

If the value is volatile then the initial value shall be false, otherwise the value should be as set or configured.

Modelling note: Applicable ACSI services:

  • AcsiCDC.getDataValues()
  • AcsiCDC.setDataValues()
  • AcsiCDC.getDataDefinition()
  • AcsiCDC.getDataDirectory()
  • AcsiDS.getDataSetValues()
  • AcsiDS.setDataSetValues()
  • if member of dataset, may be contained in the Report.
'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,287 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FunctionalConstraints::FcKind, _objData=UmlObjectData [id=3360, uuid={672C8541-F9B3-4f36-B180-158B53453964}, since=null, name=CF, alias=Configuration, stereotype=enum, visibility=public, txtDescription='DataAttribute shall represent configuration information whose value may be written and read. Values written may become effective immediately or deferred by reasons outside the scope of this standard. Value changes may be reported. +Initial value shall be as configured; value shall be non-volatile. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.setDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- AcsiDS.setDataSetValues() +- if member of dataset, may be contained in the Report.', htmlDescription='

DataAttribute shall represent configuration information whose value may be written and read. Values written may become effective immediately or deferred by reasons outside the scope of this standard. Value changes may be reported.

Initial value shall be as configured; value shall be non-volatile.

Modelling note: Applicable ACSI services:

  • AcsiCDC.getDataValues()
  • AcsiCDC.setDataValues()
  • AcsiCDC.getDataDefinition()
  • AcsiCDC.getDataDirectory()
  • AcsiDS.getDataSetValues()
  • AcsiDS.setDataSetValues()
  • if member of dataset, may be contained in the Report.
'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,287 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FunctionalConstraints::FcKind, _objData=UmlObjectData [id=3361, uuid={8A165B36-7064-44f0-AEB1-BE4316E39AB2}, since=null, name=DC, alias=Description, stereotype=enum, visibility=public, txtDescription='DataAttribute shall represent description information whose value may be written and read. +Initial value shall be as configured; value shall be non-volatile. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.setDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- AcsiDS.setDataSetValues() +- if member of dataset, may be contained in the Report.', htmlDescription='

DataAttribute shall represent description information whose value may be written and read.

Initial value shall be as configured; value shall be non-volatile.

Modelling note: Applicable ACSI services:

  • AcsiCDC.getDataValues()
  • AcsiCDC.setDataValues()
  • AcsiCDC.getDataDefinition()
  • AcsiCDC.getDataDirectory()
  • AcsiDS.getDataSetValues()
  • AcsiDS.setDataSetValues()
  • if member of dataset, may be contained in the Report.
'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,287 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FunctionalConstraints::FcKind, _objData=UmlObjectData [id=3362, uuid={BC4A5B29-928D-4dc9-8896-9E43B03529E0}, since=null, name=SG, alias=Setting group, stereotype=enum, visibility=public, txtDescription='Logical devices that implement the SGCB class maintain multiple grouped values of all instances of DataAttributes with functional constraint SG. Each group contains one value for each DataAttribute. DataAttributes with functional constraint SG shall be the current active value. DataAttributes with FC=SG shall not be writeable. +Initial value shall be as configured; value shall be non-volatile. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- AcsiSGCB.getSGValues() +- if member of dataset, may be contained in the Report.', htmlDescription='

Logical devices that implement the SGCB class maintain multiple grouped values of all instances of DataAttributes with functional constraint SG. Each group contains one value for each DataAttribute. DataAttributes with functional constraint SG shall be the current active value. DataAttributes with FC=SG shall not be writeable.

Initial value shall be as configured; value shall be non-volatile.

Modelling note: Applicable ACSI services:

  • AcsiCDC.getDataValues()
  • AcsiCDC.getDataDefinition()
  • AcsiCDC.getDataDirectory()
  • AcsiDS.getDataSetValues()
  • AcsiSGCB.getSGValues()
  • if member of dataset, may be contained in the Report.
'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,287 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FunctionalConstraints::FcKind, _objData=UmlObjectData [id=3363, uuid={DB4C1F49-C8C9-4ee3-A713-437D5F7A9974}, since=null, name=SE, alias=Setting group editable, stereotype=enum, visibility=public, txtDescription='DataAttribute that can be edited by SGCB services. Defines the edit buffer for the value sets belonging to attributes with FC=SG. +Value shall be as resulting from the chain of SGCB services: selectEditSG() -> setSGValues() -> confirmEditSGValues(). +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiSGCB.getSGValues() +- AcsiSGCB.setSGValues()', htmlDescription='

DataAttribute that can be edited by SGCB services. Defines the edit buffer for the value sets belonging to attributes with FC=SG.

Value shall be as resulting from the chain of SGCB services: selectEditSG() -> setSGValues() -> confirmEditSGValues().

Modelling note: Applicable ACSI services:

  • AcsiCDC.getDataDefinition()
  • AcsiCDC.getDataDirectory()
  • AcsiSGCB.getSGValues()
  • AcsiSGCB.setSGValues()
'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,288 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FunctionalConstraints::FcKind, _objData=UmlObjectData [id=3364, uuid={411D4F8E-1B62-4476-A036-284D25D5F896}, since=null, name=SR, alias=Service response, stereotype=enum, visibility=public, txtDescription='DataAttribute shall represent data from different process objects with the same tracking object whose values can be used to be reported and logged; the values shall not be writeable. These attributes are used for service tracking (see 15.3.2). +Initial value of the DataAttribute are a private issue, e.g., all zero (except for times stamp). +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- if member of dataset, may be contained in the Report.', htmlDescription='

DataAttribute shall represent data from different process objects with the same tracking object whose values can be used to be reported and logged; the values shall not be writeable. These attributes are used for service tracking (see 15.3.2).

Initial value of the DataAttribute are a private issue, e.g., all zero (except for times stamp).

Modelling note: Applicable ACSI services:

  • AcsiCDC.getDataValues()
  • AcsiCDC.getDataDefinition()
  • AcsiCDC.getDataDirectory()
  • AcsiDS.getDataSetValues()
  • if member of dataset, may be contained in the Report.
'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,288 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FunctionalConstraints::FcKind, _objData=UmlObjectData [id=3365, uuid={6BC4E2F3-847B-4fae-97FF-AACCDE8CFD7C}, since=null, name=OR, alias=Operate received, stereotype=enum, visibility=public, txtDescription='DataAttribute shall represent the result of an Operate request at the data object receiving the Operate request, even if the execution of the Operate is blocked. +Initial value is irrelevant / arbitrary. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- if member of dataset, may be contained in the Report.', htmlDescription='

DataAttribute shall represent the result of an Operate request at the data object receiving the Operate request, even if the execution of the Operate is blocked.

Initial value is irrelevant / arbitrary.

Modelling note: Applicable ACSI services:

  • AcsiCDC.getDataValues()
  • AcsiCDC.getDataDefinition()
  • AcsiCDC.getDataDirectory()
  • AcsiDS.getDataSetValues()
  • if member of dataset, may be contained in the Report.
'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,288 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FunctionalConstraints::FcKind, _objData=UmlObjectData [id=3366, uuid={A41CC031-1E28-4293-B5BA-DF28D668035F}, since=null, name=BL, alias=Blocking, stereotype=enum, visibility=public, txtDescription='DataAttribute is used for blocking value updates. +If the value of the DataAttribute is volatile then the initial value shall be false, otherwise the value should be as set or configured. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.setDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- AcsiDS.setDataSetValues() +- if member of dataset, may be contained in the Report.', htmlDescription='

DataAttribute is used for blocking value updates.

If the value of the DataAttribute is volatile then the initial value shall be false, otherwise the value should be as set or configured.

Modelling note: Applicable ACSI services:

  • AcsiCDC.getDataValues()
  • AcsiCDC.setDataValues()
  • AcsiCDC.getDataDefinition()
  • AcsiCDC.getDataDirectory()
  • AcsiDS.getDataSetValues()
  • AcsiDS.setDataSetValues()
  • if member of dataset, may be contained in the Report.
'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,288 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FunctionalConstraints::FcKind, _objData=UmlObjectData [id=3367, uuid={8DBED157-424A-4a37-BC94-8C0BDE69431B}, since=null, name=EX, alias=Extended definition (application name space), stereotype=enum, visibility=public, txtDescription='DataAttribute shall represent an application name space. Application name spaces are used to define the semantic definitions of LNs, data object class, and DataAttributes as specified in 61850-7-3 and IEC 61850-7-4. DataAttributes with FC=EX shall not be writeable, +Note that private extensions of control blocks may use the FC EX at SCSM level. +Value of the DataAttribute shall be as configured; value shall be non-volatile. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- if member of dataset, may be contained in the Report.', htmlDescription='

DataAttribute shall represent an application name space. Application name spaces are used to define the semantic definitions of LNs, data object class, and DataAttributes as specified in 61850-7-3 and IEC 61850-7-4. DataAttributes with FC=EX shall not be writeable,

Note that private extensions of control blocks may use the FC EX at SCSM level.

Value of the DataAttribute shall be as configured; value shall be non-volatile.

Modelling note: Applicable ACSI services:

  • AcsiCDC.getDataValues()
  • AcsiCDC.getDataDefinition()
  • AcsiCDC.getDataDirectory()
  • AcsiDS.getDataSetValues()
  • if member of dataset, may be contained in the Report.
'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,288 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FunctionalConstraints::FcKind, _objData=UmlObjectData [id=3368, uuid={1FFA680C-4680-473f-B353-B4FC19ED9F26}, since=null, name=XX, alias=, stereotype=enum, visibility=public, txtDescription='Used as a wildcard in services only, with the semantics: representing DataAttributes of any functional constraint.', htmlDescription='

Used as a wildcard in services only, with the semantics: representing DataAttributes of any functional constraint.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,289 [main] TRACE ClassBuilder - read from EA: FunctionalConstraints::FcKind +2024-09-07 12:38:48,289 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_2, _depth=2, _eaElementID=1630, _objData=UmlObjectData [id=90, uuid={DAAE2E83-BC59-4835-9783-03AD311188B6}, since=null, name=FunctionalConstraints, alias=Functional constraints, stereotype=, visibility=public, txtDescription='From an application point of view, the DataAttributes are classified according to their specific use. Some attributes are used for controlling, other for reporting and logging, or measurements or setting groups, or the description of a specific DataAttribute. +The functional constraint (FC) serves as a data filter in the sense of defining the services applicable to specific DataAttributes of CommonDataClasses (defined in part IEC 61850-7-3). +NOTE: The possibility to write an Attribute or a DataAttribute may be further constrained by a view or an implementation, as discussed in clause 7. +EXAMPLE: The CommonDataClass single point status (SPS) according to IEC 61850-7-3 has the following DataAttributes: stVal (status value), q (quality), and t (time stamp) with the functional constraint ST (status information).', htmlDescription='

From an application point of view, the DataAttributes are classified according to their specific use. Some attributes are used for controlling, other for reporting and logging, or measurements or setting groups, or the description of a specific DataAttribute.

The functional constraint (FC) serves as a data filter in the sense of defining the services applicable to specific DataAttributes of CommonDataClasses (defined in part IEC 61850-7-3).

NOTE: The possibility to write an Attribute or a DataAttribute may be further constrained by a view or an implementation, as discussed in clause 7.

EXAMPLE: The CommonDataClass single point status (SPS) according to IEC 61850-7-3 has the following DataAttributes: stVal (status value), q (quality), and t (time stamp) with the functional constraint ST (status information).

'], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=FunctionalConstraints, _objData=UmlObjectData [id=195, uuid={A27A2F0C-3508-49d0-BE2E-DCD85EACEC54}, since=null, name=FunctionalConstraints, alias=, stereotype=, visibility=public, txtDescription='This diagram shows functional constraints.', htmlDescription='

This diagram shows functional constraints.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsTarget=1, _classes=1 +2024-09-07 12:38:48,289 [main] INFO PackageBuilder - processing package TriggerOptions (3) ... +2024-09-07 12:38:48,289 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=TriggerOptions, _objData=UmlObjectData [id=196, uuid={0BFCB4F3-0E2A-4790-BB7D-934E0D484D9C}, since=null, name=TriggerOptions, alias=, stereotype=, visibility=public, txtDescription='This diagram shows trigger options.', htmlDescription='

This diagram shows trigger options.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,289 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::TriggerOptions, _objData=UmlObjectData [id=3173, uuid={855C6728-1BC9-4283-8A19-59ADC04C72DF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,290 [main] TRACE ClassBuilder - Class TrgOpKind (23 in package TriggerOptions) +2024-09-07 12:38:48,291 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TriggerOptions::TrgOpKind, _objData=UmlObjectData [id=3369, uuid={1A22EF7A-2C16-4726-BCEB-CB30D71E8479}, since=null, name=dchg, alias=data-change, stereotype=enum, visibility=public, txtDescription='The reason for report or log entry generation is the change of the value of a process-related data attribute with trigger option dchg.', htmlDescription='

The reason for report or log entry generation is the change of the value of a process-related data attribute with trigger option dchg.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,291 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TriggerOptions::TrgOpKind, _objData=UmlObjectData [id=3370, uuid={5BCEDA2C-1A76-454c-8F22-6BB56A1B33BF}, since=null, name=qchg, alias=quality-change, stereotype=enum, visibility=public, txtDescription='The reason for report or log entry generation is the change of the value of a quality-related data attribute with trigger option qchg.', htmlDescription='

The reason for report or log entry generation is the change of the value of a quality-related data attribute with trigger option qchg.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,291 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TriggerOptions::TrgOpKind, _objData=UmlObjectData [id=3371, uuid={55E317AA-C068-4b0c-B2A0-D61D7B794819}, since=null, name=dupd, alias=data-update, stereotype=enum, visibility=public, txtDescription='The reason for report or log entry generation is an update of the value of a data attribute with trigger option dupd. The updated value may be the same as the old value. An example is freezing the value of a freezable data attribute updating the value of another data attribute, which could lead to the same value it already has.', htmlDescription='

The reason for report or log entry generation is an update of the value of a data attribute with trigger option dupd. The updated value may be the same as the old value. An example is freezing the value of a freezable data attribute updating the value of another data attribute, which could lead to the same value it already has.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,291 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TriggerOptions::TrgOpKind, _objData=UmlObjectData [id=3372, uuid={1DA88179-4E3F-4338-9FC7-409360696D17}, since=null, name=dchg, dupd, alias=dchg or dupd, stereotype=enum, visibility=public, txtDescription='Either dchg or dupd.', htmlDescription='

Either dchg or dupd.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,292 [main] TRACE ClassBuilder - read from EA: TriggerOptions::TrgOpKind +2024-09-07 12:38:48,292 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_2, _depth=2, _eaElementID=1632, _objData=UmlObjectData [id=91, uuid={4133AFE1-D3E2-4e28-914F-4556B5EB2A7D}, since=null, name=TriggerOptions, alias=Trigger options, stereotype=, visibility=public, txtDescription='To support reporting and logging control logic (see clause 17) related to process data changes, one of these values can be associated as a trigger option, TrgOp, to a data attribute within a data object or sub-data object.', htmlDescription='

To support reporting and logging control logic (see clause 17) related to process data changes, one of these values can be associated as a trigger option, TrgOp, to a data attribute within a data object or sub-data object.

'], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=TriggerOptions, _objData=UmlObjectData [id=196, uuid={0BFCB4F3-0E2A-4790-BB7D-934E0D484D9C}, since=null, name=TriggerOptions, alias=, stereotype=, visibility=public, txtDescription='This diagram shows trigger options.', htmlDescription='

This diagram shows trigger options.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsTarget=1, _classes=1 +2024-09-07 12:38:48,292 [main] INFO PackageBuilder - processing package ACSIEnums (4) ... +2024-09-07 12:38:48,292 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=ACSIEnums, _objData=UmlObjectData [id=197, uuid={95AEB859-896B-4a25-A880-7441C1646A15}, since=null, name=ACSIEnums, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all explicit enumerated types defined in 61850-7-3.', htmlDescription='

This diagram shows all explicit enumerated types defined in 61850-7-3.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,293 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::ACSIEnums, _objData=UmlObjectData [id=3298, uuid={F56ADDA0-372E-4056-B822-00216243BD63}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,293 [main] TRACE ClassBuilder - Class BsControlKind (25 in package ACSIEnums) +2024-09-07 12:38:48,294 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSIEnums::BsControlKind, _objData=UmlObjectData [id=3373, uuid={CA1E7FE8-E979-4eed-A9C0-1DC2F42D98E7}, since=null, name=stop, alias=, stereotype=enum, visibility=public, txtDescription='Deactivate persistent output.', htmlDescription='

Deactivate persistent output.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,294 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSIEnums::BsControlKind, _objData=UmlObjectData [id=3374, uuid={5527E172-7D24-4618-8F0B-D9FEBB3DAE6B}, since=null, name=lower, alias=, stereotype=enum, visibility=public, txtDescription='Decrease the controlled value for one step.', htmlDescription='

Decrease the controlled value for one step.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,295 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSIEnums::BsControlKind, _objData=UmlObjectData [id=3375, uuid={BCFFB99D-0331-4d56-B87B-4F0F796DBDF7}, since=null, name=higher, alias=, stereotype=enum, visibility=public, txtDescription='Increase the controlled value for one step.', htmlDescription='

Increase the controlled value for one step.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,296 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSIEnums::BsControlKind, _objData=UmlObjectData [id=3376, uuid={7232D032-E577-45dd-ADE8-906578AF1EAC}, since=null, name=reserved, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,296 [main] TRACE ClassBuilder - read from EA: ACSIEnums::BsControlKind +2024-09-07 12:38:48,296 [main] TRACE ClassBuilder - Class DpStatusKind (26 in package ACSIEnums) +2024-09-07 12:38:48,296 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSIEnums::DpStatusKind, _objData=UmlObjectData [id=3377, uuid={9DE6568E-7A11-4e23-A50E-0F1E6C4BEEDC}, since=null, name=intermediateState, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,296 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSIEnums::DpStatusKind, _objData=UmlObjectData [id=3378, uuid={14B04D4A-522F-4d16-965B-5007F7B82E36}, since=null, name=offOrFalse, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,297 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSIEnums::DpStatusKind, _objData=UmlObjectData [id=3379, uuid={C137BA8B-F03D-4729-B1E2-2098B6F3A69C}, since=null, name=onOrTrue, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,297 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSIEnums::DpStatusKind, _objData=UmlObjectData [id=3380, uuid={4682DAAD-411E-40b2-8954-EC7AEEA93B42}, since=null, name=badState, alias=, stereotype=enum, visibility=public, txtDescription='The server cannot detect whether the position is open (off), closed (on) or in intermediate state.', htmlDescription='

The server cannot detect whether the position is open (off), closed (on) or in intermediate state.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,297 [main] TRACE ClassBuilder - read from EA: ACSIEnums::DpStatusKind +2024-09-07 12:38:48,297 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_2, _depth=2, _eaElementID=1634, _objData=UmlObjectData [id=92, uuid={90255F83-2BE0-44ac-8B56-6AA33A4B99FF}, since=null, name=ACSIEnums, alias=Enumerated data attribute types, stereotype=, visibility=public, txtDescription='This subclause contains explicit definition of enumerated types used in IEC 61850-7-2; some of them are also used in IEC 61850-7-3.', htmlDescription='

This subclause contains explicit definition of enumerated types used in IEC 61850-7-2; some of them are also used in IEC 61850-7-3.

'], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=ACSIEnums, _objData=UmlObjectData [id=197, uuid={95AEB859-896B-4a25-A880-7441C1646A15}, since=null, name=ACSIEnums, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all explicit enumerated types defined in 61850-7-3.', htmlDescription='

This diagram shows all explicit enumerated types defined in 61850-7-3.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsTarget=1, _classes=2 +2024-09-07 12:38:48,297 [main] INFO PackageBuilder - processing package CoreTypes (5) ... +2024-09-07 12:38:48,298 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=CoreTypes, _objData=UmlObjectData [id=198, uuid={F7AC59CA-0DEA-40c0-9004-81B0EA306E87}, since=null, name=CoreTypes, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the core types, defined in part 7-2. +- white: have their DA counterparts for CDCs in part 7-3 (and in 7-2 Ed.2!). +- blue: used for both services and data model. +Other types (under clause 6 TypeDefinitions) are used for services in 7-2 only, and are defined where used (in other packages under 7-2).', htmlDescription='

This diagram shows the core types, defined in part 7-2.

  • white: have their DA counterparts for CDCs in part 7-3 (and in 7-2 Ed.2!).
  • blue: used for both services and data model.

Other types (under clause 6 TypeDefinitions) are used for services in 7-2 only, and are defined where used (in other packages under 7-2).

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,298 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::CoreTypes, _objData=UmlObjectData [id=3064, uuid={108535CE-A6F8-4674-9586-860C06077B0A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,298 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::CoreTypes, _objData=UmlObjectData [id=3174, uuid={5FE3C8F2-1E89-4705-9543-F7961C8261AE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,298 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::CoreTypes, _objData=UmlObjectData [id=3288, uuid={38E71389-9629-4cc5-9975-FC4214E837B4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,298 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::CoreTypes, _objData=UmlObjectData [id=3297, uuid={FCD42B62-BC4F-4487-B6C7-E7E726D09A02}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,298 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::CoreTypes, _objData=UmlObjectData [id=3301, uuid={58E49D9F-1448-4082-AF53-C39A20175114}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,298 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::CoreTypes, _objData=UmlObjectData [id=3322, uuid={4007F42C-AD2B-4122-ADB0-BE0A33C62F71}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,298 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::CoreTypes, _objData=UmlObjectData [id=3347, uuid={B1DAE8E8-95A2-4465-BBD5-25F52D1CD86F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,299 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1650, uuid={244828C0-55B7-474f-98ED-FAF904B5131B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Missing " " (space) for e.g. +- "[ST] myLD/myXCBR1.Pos.stVal", or, +- "myLD/myXCBR1.Pos.stVal [ST]".', htmlDescription='

TODO: Missing " " (space) for e.g.

  • "[ST] myLD/myXCBR1.Pos.stVal", or,
  • "myLD/myXCBR1.Pos.stVal [ST]".
'], _containingPackage=CoreTypes, _otherEndName=] +2024-09-07 12:38:48,300 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1675, uuid={590D88C4-5102-427a-883A-BD4D95C63509}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='=========================================== +TimeStamp and related types', htmlDescription='

===========================================

TimeStamp and related types

'], _containingPackage=CoreTypes, _otherEndName=] +2024-09-07 12:38:48,300 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1676, uuid={5CD0E8B5-9B88-4098-8E91-7ED55F9E9C10}, since=null, name=CoreTypes : CoreTypesModellingNotes, alias=, stereotype=, visibility=public, txtDescription='CoreTypes : CoreTypesModellingNotes', htmlDescription='

CoreTypes : CoreTypesModellingNotes

'], _containingPackage=CoreTypes, _otherEndName=] +2024-09-07 12:38:48,300 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1677, uuid={82DEAA6D-9304-4b9f-B7F8-248DB8CF30F2}, since=null, name=CoreTypes :ImplementationNote-LanguageMappings, alias=, stereotype=, visibility=public, txtDescription='CoreTypes :ImplementationNote-LanguageMappings', htmlDescription='

CoreTypes :ImplementationNote-LanguageMappings

'], _containingPackage=CoreTypes, _otherEndName=] +2024-09-07 12:38:48,300 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1678, uuid={9A7C4175-6A24-48a2-AF0B-94C9020096B6}, since=null, name=BasicDAs :Relation between trigger conditions, applicable trigger options and reporting, alias=, stereotype=, visibility=public, txtDescription='P_TriggerConditions : Relation between trigger conditions and reporting', htmlDescription='

P_TriggerConditions : Relation between trigger conditions and reporting

'], _containingPackage=CoreTypes, _otherEndName=] +2024-09-07 12:38:48,300 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1679, uuid={CC1FA7BA-2804-418e-B6FD-4333F4794A27}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='=========================================== +Primitive types', htmlDescription='

===========================================

Primitive types

'], _containingPackage=CoreTypes, _otherEndName=] +2024-09-07 12:38:48,301 [main] TRACE ClassBuilder - Class P_BOOLEAN (1 in package CoreTypes) +2024-09-07 12:38:48,301 [main] TRACE ClassBuilder - read from EA: CoreTypes::P_BOOLEAN +2024-09-07 12:38:48,301 [main] TRACE ClassBuilder - Class P_INT16U (2 in package CoreTypes) +2024-09-07 12:38:48,302 [main] TRACE ClassBuilder - read from EA: CoreTypes::P_INT16U +2024-09-07 12:38:48,302 [main] TRACE ClassBuilder - Class P_INT32 (3 in package CoreTypes) +2024-09-07 12:38:48,302 [main] TRACE ClassBuilder - read from EA: CoreTypes::P_INT32 +2024-09-07 12:38:48,302 [main] TRACE ClassBuilder - Class P_INT32U (4 in package CoreTypes) +2024-09-07 12:38:48,302 [main] TRACE ClassBuilder - read from EA: CoreTypes::P_INT32U +2024-09-07 12:38:48,303 [main] TRACE ClassBuilder - Class P_FLOAT32 (5 in package CoreTypes) +2024-09-07 12:38:48,303 [main] TRACE ClassBuilder - read from EA: CoreTypes::P_FLOAT32 +2024-09-07 12:38:48,303 [main] TRACE ClassBuilder - Class P_UNICODE_STRING255 (6 in package CoreTypes) +2024-09-07 12:38:48,303 [main] TRACE ClassBuilder - read from EA: CoreTypes::P_UNICODE_STRING255 +2024-09-07 12:38:48,303 [main] TRACE ClassBuilder - Class P_VISIBLE_STRING255 (7 in package CoreTypes) +2024-09-07 12:38:48,304 [main] TRACE ClassBuilder - read from EA: CoreTypes::P_VISIBLE_STRING255 +2024-09-07 12:38:48,304 [main] TRACE ClassBuilder - Class ObjectName (16 in package CoreTypes) +2024-09-07 12:38:48,304 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::ObjectName, _objData=UmlObjectData [id=3381, uuid={5D6F9BB0-6DB5-412a-A3CE-6BB9F80F9725}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1665, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,305 [main] TRACE ClassBuilder - read from EA: CoreTypes::ObjectName +2024-09-07 12:38:48,305 [main] TRACE ClassBuilder - Class P_ObjectReference (17 in package CoreTypes) +2024-09-07 12:38:48,305 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::P_ObjectReference, _objData=UmlObjectData [id=3382, uuid={48586FE0-4215-4fbf-AD7E-3041B6C594CC}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1666, _eaTypeName=P_VISIBLE_STRING129, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,306 [main] TRACE ClassBuilder - read from EA: CoreTypes::P_ObjectReference +2024-09-07 12:38:48,306 [main] TRACE ClassBuilder - Class P_PHYCOMADDR (18 in package CoreTypes) +2024-09-07 12:38:48,306 [main] TRACE ClassBuilder - read from EA: CoreTypes::P_PHYCOMADDR +2024-09-07 12:38:48,307 [main] TRACE ClassBuilder - Class P_TimeStamp (19 in package CoreTypes) +2024-09-07 12:38:48,307 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::P_TimeStamp, _objData=UmlObjectData [id=3383, uuid={CDA8BF64-6FF8-4ba2-ABBC-382E39C0B24C}, since=null, name=SecondSinceEpoch, alias=, stereotype=, visibility=public, txtDescription='Interval in seconds continuously counted from the epoch 1970-01-01 00:00:00 UTC.', htmlDescription='

Interval in seconds continuously counted from the epoch 1970-01-01 00:00:00 UTC.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1656, _eaTypeName=P_INT32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,307 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::P_TimeStamp, _objData=UmlObjectData [id=3384, uuid={2958A724-7898-4448-9E67-CC2402C4DBBA}, since=null, name=FractionOfSecond, alias=, stereotype=, visibility=public, txtDescription='Fraction of the current second when the value of time stamp has been determined. It shall be calculated as (SUM from i = 0 to 23 of bi*2**–(i+1) [s]). +NOTE 1 The resolution is the smallest unit by which the time stamp is updated. The 24 bits of the integer provide 1 out of 16 777 216 counts as the smallest unit; calculated by 1/2**24 which equals approximately 60 ns. +NOTE 2 The resolution of a time stamp may be 1/2**1 (= 0.5 s) if only the first bit is used; or may be 1/2**2 (= 0.25 s) if the first two bits are used; or may be approximately 60 ns if all 24 bits are used. The resolution provided by an IED is outside the scope of this standard.', htmlDescription='

Fraction of the current second when the value of time stamp has been determined. It shall be calculated as (SUM from i = 0 to 23 of bi*2**–(i+1) [s]).

NOTE 1 The resolution is the smallest unit by which the time stamp is updated. The 24 bits of the integer provide 1 out of 16 777 216 counts as the smallest unit; calculated by 1/2**24 which equals approximately 60 ns.

NOTE 2 The resolution of a time stamp may be 1/2**1 (= 0.5 s) if only the first bit is used; or may be 1/2**2 (= 0.25 s) if the first two bits are used; or may be approximately 60 ns if all 24 bits are used. The resolution provided by an IED is outside the scope of this standard.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1660, _eaTypeName=P_INT24U, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,307 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::P_TimeStamp, _objData=UmlObjectData [id=3385, uuid={1C4E5EB3-6199-4ce6-976E-E81B1E3D3D26}, since=null, name=TimeQuality, alias=, stereotype=, visibility=public, txtDescription='Information about the time source of the sending IED.', htmlDescription='

Information about the time source of the sending IED.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1672, _eaTypeName=TimeQuality, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,308 [main] TRACE ClassBuilder - read from EA: CoreTypes::P_TimeStamp +2024-09-07 12:38:48,308 [main] TRACE ClassBuilder - Class TimeQuality (20 in package CoreTypes) +2024-09-07 12:38:48,308 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::TimeQuality, _objData=UmlObjectData [id=3386, uuid={9C35C39B-81CF-412d-A57E-9706FE60A4E9}, since=null, name=LeapSecondsKnown, alias=, stereotype=, visibility=public, txtDescription='If true, the value in 'P_TimeStamp.SecondSinceEpoch' contains all leap seconds occurred. Otherwise, it does not take into account the leap seconds that occurred before the initialization of the time source of the device. Instead, the seconds since start of the epoch are calculated from the current date assuming a constant day length of 86400 seconds. +Note: If a UTC time master clock is used and accessible, this value should always be true.', htmlDescription='

If true, the value in 'P_TimeStamp.SecondSinceEpoch' contains all leap seconds occurred. Otherwise, it does not take into account the leap seconds that occurred before the initialization of the time source of the device. Instead, the seconds since start of the epoch are calculated from the current date assuming a constant day length of 86400 seconds.

Note: If a UTC time master clock is used and accessible, this value should always be true.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,308 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::TimeQuality, _objData=UmlObjectData [id=3387, uuid={5FDA2BA2-85CD-4f5d-9FC8-AA4C892E9904}, since=null, name=ClockFailure, alias=, stereotype=, visibility=public, txtDescription='If true, the time source of the sending device is unreliable and the value of the time stamp shall be ignored.', htmlDescription='

If true, the time source of the sending device is unreliable and the value of the time stamp shall be ignored.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,308 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::TimeQuality, _objData=UmlObjectData [id=3388, uuid={C371C41F-4D3F-4129-A08C-AA2AB445051F}, since=null, name=ClockNotSynchronized, alias=, stereotype=, visibility=public, txtDescription='If true, the time source of the sending device is not synchronised with the external UTC time.', htmlDescription='

If true, the time source of the sending device is not synchronised with the external UTC time.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,308 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::TimeQuality, _objData=UmlObjectData [id=3389, uuid={4B73DC7D-52D2-4627-A70B-1027E72F218F}, since=null, name=TimeAccuracy, alias=, stereotype=, visibility=public, txtDescription='Class of time accuracy in terms of number of significant bits in 'P_TimeStamp.FractionOfSecond'.', htmlDescription='

Class of time accuracy in terms of number of significant bits in 'P_TimeStamp.FractionOfSecond'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1673, _eaTypeName=TimeAccuracyKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,309 [main] TRACE ClassBuilder - read from EA: CoreTypes::TimeQuality +2024-09-07 12:38:48,309 [main] TRACE ClassBuilder - Class TimeAccuracyKind (21 in package CoreTypes) +2024-09-07 12:38:48,309 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::TimeAccuracyKind, _objData=UmlObjectData [id=3390, uuid={0DF1E1A1-F1B0-474f-A236-87FAA78F7FF3}, since=null, name=T0, alias=, stereotype=enum, visibility=public, txtDescription='Has 7 significant bits => 2**-7 = ~ 7.8 ms, corresponding to performance class 10 ms.', htmlDescription='

Has 7 significant bits => 2**-7 = ~ 7.8 ms, corresponding to performance class 10 ms.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=7, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,309 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::TimeAccuracyKind, _objData=UmlObjectData [id=3391, uuid={AA4952C9-467B-4ccb-8C1D-8F8E960A40F4}, since=null, name=T1, alias=, stereotype=enum, visibility=public, txtDescription='Has 10 significant bits => 2**-10 = ~ 0.9 ms, corresponding to performance class 1 ms.', htmlDescription='

Has 10 significant bits => 2**-10 = ~ 0.9 ms, corresponding to performance class 1 ms.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=10, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,309 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::TimeAccuracyKind, _objData=UmlObjectData [id=3392, uuid={45A0A753-7EEC-41f7-992F-83F9BA70FE16}, since=null, name=T2, alias=, stereotype=enum, visibility=public, txtDescription='Has 14 significant bits => 2**-14 = ~ 61 µs, corresponding to performance class 100 µs.', htmlDescription='

Has 14 significant bits => 2**-14 = ~ 61 µs, corresponding to performance class 100 µs.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=14, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,310 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::TimeAccuracyKind, _objData=UmlObjectData [id=3393, uuid={28ED8D22-B685-456c-A17F-CD2F7BBB78CE}, since=null, name=T3, alias=, stereotype=enum, visibility=public, txtDescription='Has 16 significant bits => 2**-16 = ~ 15 µs, corresponding to performance class 25 µs.', htmlDescription='

Has 16 significant bits => 2**-16 = ~ 15 µs, corresponding to performance class 25 µs.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=16, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,310 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::TimeAccuracyKind, _objData=UmlObjectData [id=3394, uuid={BBC61680-CCA1-4ed5-A53A-AA7917C1C391}, since=null, name=T4, alias=, stereotype=enum, visibility=public, txtDescription='Has 18 significant bits => 2**-18 = ~ 3.8 µs, corresponding to performance class 4 µs.', htmlDescription='

Has 18 significant bits => 2**-18 = ~ 3.8 µs, corresponding to performance class 4 µs.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=18, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,310 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::TimeAccuracyKind, _objData=UmlObjectData [id=3395, uuid={0B1B2383-20B4-413a-9508-6194243A18B1}, since=null, name=T5, alias=, stereotype=enum, visibility=public, txtDescription='Has 20 significant bits => 2**-20 = ~ 0.9 µs, corresponding to performance class 1 µs.', htmlDescription='

Has 20 significant bits => 2**-20 = ~ 0.9 µs, corresponding to performance class 1 µs.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=20, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,310 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::TimeAccuracyKind, _objData=UmlObjectData [id=3396, uuid={1F0511E7-8E96-4ddd-87F8-F75D9D9503D0}, since=null, name=unspecified, alias=, stereotype=enum, visibility=public, txtDescription='Has 31 significant bits.', htmlDescription='

Has 31 significant bits.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=31, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,311 [main] TRACE ClassBuilder - read from EA: CoreTypes::TimeAccuracyKind +2024-09-07 12:38:48,311 [main] TRACE ClassBuilder - Class P_TriggerConditions (24 in package CoreTypes) +2024-09-07 12:38:48,311 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::P_TriggerConditions, _objData=UmlObjectData [id=3397, uuid={A829B7C4-40ED-4e43-A520-BB42588381F0}, since=null, name=data-change, alias=, stereotype=, visibility=public, txtDescription='If true, a value change of a process-related data attribute, tagged with dchg, will trigger the generation of a report or log entry. If false, no entry should be generated on value change.', htmlDescription='

If true, a value change of a process-related data attribute, tagged with dchg, will trigger the generation of a report or log entry. If false, no entry should be generated on value change.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,311 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::P_TriggerConditions, _objData=UmlObjectData [id=3398, uuid={088AE2AE-C484-4fb7-B17D-D9D712044645}, since=null, name=quality-change, alias=, stereotype=, visibility=public, txtDescription='If true, a value change of a quality-related data attribute, tagged with qchg, will trigger the generation of a report or log entry. If false, no entry should be generated on quality change.', htmlDescription='

If true, a value change of a quality-related data attribute, tagged with qchg, will trigger the generation of a report or log entry. If false, no entry should be generated on quality change.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,311 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::P_TriggerConditions, _objData=UmlObjectData [id=3399, uuid={57A3C8E0-5424-4100-90E2-3EFA7B5D1F57}, since=null, name=data-update, alias=, stereotype=, visibility=public, txtDescription='If true, a value freezing of a freezable data attribute (e.g., frozen counters) or a value update of any other data attribute, tagged with dupd, will trigger the generation of a report or log entry. If false, no entry should be generated on value update. +This trigger condition may be used to issue sending a report or storing a log entry into a log when a value has changed or has been "overwritten" with the same value as before. It may then be a trigger for reporting or logging of the statistics values (which may be calculated and updated periodically), independently of whether the value has changed or not.', htmlDescription='

If true, a value freezing of a freezable data attribute (e.g., frozen counters) or a value update of any other data attribute, tagged with dupd, will trigger the generation of a report or log entry. If false, no entry should be generated on value update.

This trigger condition may be used to issue sending a report or storing a log entry into a log when a value has changed or has been "overwritten" with the same value as before. It may then be a trigger for reporting or logging of the statistics values (which may be calculated and updated periodically), independently of whether the value has changed or not.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,312 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::P_TriggerConditions, _objData=UmlObjectData [id=3400, uuid={197A7EEE-CC0C-481d-B006-99BE3C9041A5}, since=null, name=integrity, alias=, stereotype=, visibility=public, txtDescription='If true, the control block in the server shall generate periodical Report or Log entries on every expiration of the integrity timer (period trigger option).', htmlDescription='

If true, the control block in the server shall generate periodical Report or Log entries on every expiration of the integrity timer (period trigger option).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,312 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::P_TriggerConditions, _objData=UmlObjectData [id=3401, uuid={2154CDDF-8F70-47dc-929D-406C98AC6E48}, since=null, name=general-interrogation, alias=, stereotype=, visibility=public, txtDescription='If true, the RCB in the server shall generate general interrogation Report entries on user request.', htmlDescription='

If true, the RCB in the server shall generate general interrogation Report entries on user request.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,312 [main] TRACE ClassBuilder - read from EA: CoreTypes::P_TriggerConditions +2024-09-07 12:38:48,312 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_2, _depth=2, _eaElementID=1637, _objData=UmlObjectData [id=93, uuid={869C1377-AA3A-4b9e-A541-9130C780FF6D}, since=null, name=CoreTypes, alias=Core types, stereotype=, visibility=public, txtDescription='This clause defines core types, mainly primitive, common to the IEC 61850 both data and service models.', htmlDescription='

This clause defines core types, mainly primitive, common to the IEC 61850 both data and service models.

'], _modelId=58, _selfDependent=false, 6_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1650, uuid={244828C0-55B7-474f-98ED-FAF904B5131B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Missing " " (space) for e.g. +- "[ST] myLD/myXCBR1.Pos.stVal", or, +- "myLD/myXCBR1.Pos.stVal [ST]".', htmlDescription='

TODO: Missing " " (space) for e.g.

  • "[ST] myLD/myXCBR1.Pos.stVal", or,
  • "myLD/myXCBR1.Pos.stVal [ST]".
'], _containingPackage=CoreTypes, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1675, uuid={590D88C4-5102-427a-883A-BD4D95C63509}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='=========================================== +TimeStamp and related types', htmlDescription='

===========================================

TimeStamp and related types

'], _containingPackage=CoreTypes, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1676, uuid={5CD0E8B5-9B88-4098-8E91-7ED55F9E9C10}, since=null, name=CoreTypes : CoreTypesModellingNotes, alias=, stereotype=, visibility=public, txtDescription='CoreTypes : CoreTypesModellingNotes', htmlDescription='

CoreTypes : CoreTypesModellingNotes

'], _containingPackage=CoreTypes, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1677, uuid={82DEAA6D-9304-4b9f-B7F8-248DB8CF30F2}, since=null, name=CoreTypes :ImplementationNote-LanguageMappings, alias=, stereotype=, visibility=public, txtDescription='CoreTypes :ImplementationNote-LanguageMappings', htmlDescription='

CoreTypes :ImplementationNote-LanguageMappings

'], _containingPackage=CoreTypes, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1678, uuid={9A7C4175-6A24-48a2-AF0B-94C9020096B6}, since=null, name=BasicDAs :Relation between trigger conditions, applicable trigger options and reporting, alias=, stereotype=, visibility=public, txtDescription='P_TriggerConditions : Relation between trigger conditions and reporting', htmlDescription='

P_TriggerConditions : Relation between trigger conditions and reporting

'], _containingPackage=CoreTypes, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1679, uuid={CC1FA7BA-2804-418e-B6FD-4333F4794A27}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='=========================================== +Primitive types', htmlDescription='

===========================================

Primitive types

'], _containingPackage=CoreTypes, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=CoreTypes, _objData=UmlObjectData [id=198, uuid={F7AC59CA-0DEA-40c0-9004-81B0EA306E87}, since=null, name=CoreTypes, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the core types, defined in part 7-2. +- white: have their DA counterparts for CDCs in part 7-3 (and in 7-2 Ed.2!). +- blue: used for both services and data model. +Other types (under clause 6 TypeDefinitions) are used for services in 7-2 only, and are defined where used (in other packages under 7-2).', htmlDescription='

This diagram shows the core types, defined in part 7-2.

  • white: have their DA counterparts for CDCs in part 7-3 (and in 7-2 Ed.2!).
  • blue: used for both services and data model.

Other types (under clause 6 TypeDefinitions) are used for services in 7-2 only, and are defined where used (in other packages under 7-2).

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsTarget=7, _classes=14 +2024-09-07 12:38:48,312 [main] INFO PackageBuilder - processing package ObjectReferences (6) ... +2024-09-07 12:38:48,313 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=ObjectReferences, _objData=UmlObjectData [id=201, uuid={5DEE7E4C-4C25-4a75-B590-A96364073A9E}, since=null, name=ObjectReferences, alias=, stereotype=, visibility=public, txtDescription='This diagram shows an overview of strongly typed object references, not explicitly specified in the standard.', htmlDescription='

This diagram shows an overview of strongly typed object references, not explicitly specified in the standard.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,313 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::ObjectReferences, _objData=UmlObjectData [id=3172, uuid={C5C582B9-299E-483d-9480-D0C500F8176D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,313 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::ObjectReferences, _objData=UmlObjectData [id=3323, uuid={0B7067BC-EDBC-4ae5-AF55-5FBD1BE1F769}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,313 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::ObjectReferences->IEC61850_7_2::CoreTypes, _objData=UmlObjectData [id=3347, uuid={B1DAE8E8-95A2-4465-BBD5-25F52D1CD86F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,316 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1684, uuid={A20EACAA-52B0-4123-8FE8-AC7004CDFF73}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Implementation note: To identify ComposedCDCs from e.g. MMS strings (to correctly assign dataName and SubDataName), you have to construct the hashmap based on definitions from IEC 61850-7-3, since MMS does not provide information about PrimitiveCDC and ComposedCDC. See diagram ObjectReferences::ImlementationNotes-ComplexCDCs.', htmlDescription='

Implementation note: To identify ComposedCDCs from e.g. MMS strings (to correctly assign dataName and SubDataName), you have to construct the hashmap based on definitions from IEC 61850-7-3, since MMS does not provide information about PrimitiveCDC and ComposedCDC. See diagram ObjectReferences::ImlementationNotes-ComplexCDCs.

'], _containingPackage=ObjectReferences, _otherEndName=] +2024-09-07 12:38:48,316 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1690, uuid={3601A814-6336-4e81-A0C4-605A030114AF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Do have a better name for LNOwnedDSReference (and LNOwnedDS)?', htmlDescription='

TODO: Do have a better name for LNOwnedDSReference (and LNOwnedDS)?

'], _containingPackage=ObjectReferences, _otherEndName=] +2024-09-07 12:38:48,316 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1704, uuid={B91F5E3E-1FE7-42cc-B656-C9B2CCB194E9}, since=null, name=ObjectReferences : ObjectReferencesModellingNotes, alias=, stereotype=, visibility=public, txtDescription='ObjectReferences : ObjectReferencesModellingNotes', htmlDescription='

ObjectReferences : ObjectReferencesModellingNotes

'], _containingPackage=ObjectReferences, _otherEndName=] +2024-09-07 12:38:48,317 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1705, uuid={C0FD65FA-8022-455d-A4A4-9198F69255B4}, since=null, name=ObjectReferences : ImplementationNotes-ComposedCDCs, alias=, stereotype=, visibility=public, txtDescription='ObjectReferences : ImplementationNotes-ComposedCDCs', htmlDescription='

ObjectReferences : ImplementationNotes-ComposedCDCs

'], _containingPackage=ObjectReferences, _otherEndName=] +2024-09-07 12:38:48,317 [main] TRACE ClassBuilder - Class FILEReference (2 in package ObjectReferences) +2024-09-07 12:38:48,317 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::FILEReference, _objData=UmlObjectData [id=3402, uuid={CD8C78D7-23ED-4c5e-95D6-113A8B0CD1D1}, since=null, name=FileRef, alias=, stereotype=, visibility=public, txtDescription='Path-name of the FILE instance (= FileName).', htmlDescription='

Path-name of the FILE instance (= FileName).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1666, _eaTypeName=P_VISIBLE_STRING129, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,317 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::FILEReference, _objData=UmlObjectData [id=3403, uuid={1E88DE78-F248-4982-ACD2-E5FA0516775A}, since=null, name=FileName, alias=, stereotype=, visibility=public, txtDescription='name of a FILE instance, unambiguously identifying the file within the ACSI file store. File names may be structured to differentiate file types, for example, disturbance records, programs, and parameter and configuration data. +Modelling note 1: Corresponds to FileName. Original definition: "FileAttribute: Name of the file in the ACSI file store. File names may be structured to differentiate file types, e.g. disturbance records, programs, and parameter and configuration data." +Modelling note 2: Although this is called "FileName", it should have been called "FileRef" to follow the logic of the whole ACSI naming scheme. Note that the type is not ObjectName, but P_VISIBLE_STRING255.', htmlDescription='

name of a FILE instance, unambiguously identifying the file within the ACSI file store. File names may be structured to differentiate file types, for example, disturbance records, programs, and parameter and configuration data.

Modelling note 1: Corresponds to FileName. Original definition: "FileAttribute: Name of the file in the ACSI file store. File names may be structured to differentiate file types, e.g. disturbance records, programs, and parameter and configuration data."

Modelling note 2: Although this is called "FileName", it should have been called "FileRef" to follow the logic of the whole ACSI naming scheme. Note that the type is not ObjectName, but P_VISIBLE_STRING255.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1666, _eaTypeName=P_VISIBLE_STRING129, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,317 [main] DEBUG ClassBuilder - Adding FILEReference as subclass of P_ObjectReference +2024-09-07 12:38:48,317 [main] TRACE ClassBuilder - read from EA: ObjectReferences::FILEReference +2024-09-07 12:38:48,317 [main] TRACE ClassBuilder - Class LDReference (3 in package ObjectReferences) +2024-09-07 12:38:48,318 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::LDReference, _objData=UmlObjectData [id=3404, uuid={4125604B-3595-465d-92D7-879F9A4352C7}, since=null, name=LDRef, alias=, stereotype=, visibility=public, txtDescription='Path-name of the LD instance (= LDName).', htmlDescription='

Path-name of the LD instance (= LDName).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1666, _eaTypeName=P_VISIBLE_STRING129, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,318 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::LDReference, _objData=UmlObjectData [id=3405, uuid={18337A58-4439-456a-8BCA-A1B7AF8715A1}, since=null, name=LDName, alias=, stereotype=, visibility=public, txtDescription='Name of an LD instance, unambiguously identifying the LD within the system.', htmlDescription='

Name of an LD instance, unambiguously identifying the LD within the system.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,318 [main] DEBUG ClassBuilder - Adding LDReference as subclass of P_ObjectReference +2024-09-07 12:38:48,318 [main] TRACE ClassBuilder - read from EA: ObjectReferences::LDReference +2024-09-07 12:38:48,318 [main] TRACE ClassBuilder - Class NonPersistentDSReference (4 in package ObjectReferences) +2024-09-07 12:38:48,318 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::NonPersistentDSReference, _objData=UmlObjectData [id=3406, uuid={7F5608C0-BE6D-4ac8-9786-C6EF27B7CD6B}, since=null, name=DSRef, alias=, stereotype=, visibility=public, txtDescription='Path-name of the non-persistent dataset instance (= @DSName).', htmlDescription='

Path-name of the non-persistent dataset instance (= @DSName).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1666, _eaTypeName=P_VISIBLE_STRING129, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,318 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::NonPersistentDSReference, _objData=UmlObjectData [id=3407, uuid={4F62D406-E0F0-45ea-9C34-3DB7262EDE88}, since=null, name=DSName, alias=, stereotype=, visibility=public, txtDescription='Name of a dataset instance, unambiguously identifying it within the scope of a two party application association.', htmlDescription='

Name of a dataset instance, unambiguously identifying it within the scope of a two party application association.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,319 [main] DEBUG ClassBuilder - Adding NonPersistentDSReference as subclass of P_ObjectReference +2024-09-07 12:38:48,319 [main] TRACE ClassBuilder - read from EA: ObjectReferences::NonPersistentDSReference +2024-09-07 12:38:48,319 [main] TRACE ClassBuilder - Class LNReference (5 in package ObjectReferences) +2024-09-07 12:38:48,319 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::LNReference, _objData=UmlObjectData [id=3408, uuid={79CF69C4-43F8-45a0-947C-DDF3F0986B34}, since=null, name=LNRef, alias=, stereotype=, visibility=public, txtDescription='Path-name of the LN instance (= LDName/LNName).', htmlDescription='

Path-name of the LN instance (= LDName/LNName).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1666, _eaTypeName=P_VISIBLE_STRING129, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,319 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::LNReference, _objData=UmlObjectData [id=3409, uuid={315FD389-CF79-4476-9221-E8EF466FE456}, since=null, name=LNName, alias=, stereotype=, visibility=public, txtDescription='Name of an LN instance, unambiguously identifying the LN within the scope of an LD.', htmlDescription='

Name of an LN instance, unambiguously identifying the LN within the scope of an LD.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,319 [main] DEBUG ClassBuilder - Adding LNReference as subclass of LDReference +2024-09-07 12:38:48,319 [main] TRACE ClassBuilder - read from EA: ObjectReferences::LNReference +2024-09-07 12:38:48,319 [main] TRACE ClassBuilder - Class CDCReference (6 in package ObjectReferences) +2024-09-07 12:38:48,319 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::CDCReference, _objData=UmlObjectData [id=3410, uuid={D1CFBC9C-966D-4b0b-BA52-A320E5422583}, since=null, name=DataRef, alias=, stereotype=, visibility=public, txtDescription='Path-name of the CDC instance, i.e. data object or sub-data object (= LDName/LNName.DataName for PrimitiveCDC or LDName/LNName.DataName.SubDataName for ComposedCDC, respectively).', htmlDescription='

Path-name of the CDC instance, i.e. data object or sub-data object (= LDName/LNName.DataName for PrimitiveCDC or LDName/LNName.DataName.SubDataName for ComposedCDC, respectively).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1666, _eaTypeName=P_VISIBLE_STRING129, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,319 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::CDCReference, _objData=UmlObjectData [id=3411, uuid={27B4D2D6-7DD0-4a73-8DD4-3E27211B8FE4}, since=null, name=DataName, alias=, stereotype=, visibility=public, txtDescription='Name of a CDC instance (data object) contained in the LN. The CDC may be: +1. PrimitiveCDC: Example is "Auto" from the reference myLD3/RREC1.Auto (where myLD3/RREC1.Auto is of type SPC:PrimitiveCDC). +2. ComposedCDC: example is "PhV" from the reference myLD3/MMXU1.PhV.phsA (where myLD3/MMXU1.PhV is of type WYE:ComposedCDC).', htmlDescription='

Name of a CDC instance (data object) contained in the LN. The CDC may be:

  1. PrimitiveCDC: Example is "Auto" from the reference myLD3/RREC1.Auto (where myLD3/RREC1.Auto is of type SPC:PrimitiveCDC).
  2. ComposedCDC: example is "PhV" from the reference myLD3/MMXU1.PhV.phsA (where myLD3/MMXU1.PhV is of type WYE:ComposedCDC).
'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,320 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::CDCReference, _objData=UmlObjectData [id=3412, uuid={11F81F23-C9EF-4f7e-A783-E4ECC12CB884}, since=null, name=SubDataName, alias=, stereotype=, visibility=public, txtDescription='Empty string in case the PrimitiveCDC is contained in LN, non-empty name of sub-data object if PrimitiveCDC is contained in ComposedCDC. Example of this latter is "phsA" from the reference myLD3/MMXU1.PhV.phsA (where PhV is of type WYE:ComposedCDC, and one level further, PhV.phsA is of type SPC:PrimitiveCDC).', htmlDescription='

Empty string in case the PrimitiveCDC is contained in LN, non-empty name of sub-data object if PrimitiveCDC is contained in ComposedCDC. Example of this latter is "phsA" from the reference myLD3/MMXU1.PhV.phsA (where PhV is of type WYE:ComposedCDC, and one level further, PhV.phsA is of type SPC:PrimitiveCDC).

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,320 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2192, uuid={4500C0CF-C86B-4dd8-B508-9332FFF71356}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=CDCReference, _otherEndName=?] +2024-09-07 12:38:48,320 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2200, uuid={E51AEAD0-DD4C-497d-A091-1B0E68FF4FF4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=CDCReference, _otherEndName=?] +2024-09-07 12:38:48,320 [main] DEBUG ClassBuilder - Adding CDCReference as subclass of LNReference +2024-09-07 12:38:48,321 [main] TRACE ClassBuilder - read from EA: ObjectReferences::CDCReference +2024-09-07 12:38:48,321 [main] TRACE ClassBuilder - Class CBReference (7 in package ObjectReferences) +2024-09-07 12:38:48,321 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::CBReference, _objData=UmlObjectData [id=3413, uuid={A942512C-9018-4df2-B39B-445CC9389B21}, since=null, name=CBRef, alias=, stereotype=, visibility=public, txtDescription='Path-name of the control block (SGCB, BRCB, URCB, LCB, GCB, USVCB, MSVCB) instance. Corresponds to one of the following: +- SGCBRef=LDName/LNName.SGCBName [SP], +- BRCBRef=LDName/LNName.BRCBName [BR], +- URCBRef=LDName/LNName.URCBName [RP], +- LCBRef=LDName/LNName.LCBName [LG], +- GoCBRef=LDName/LNName.GoCBName [GO], +- USVCBRef=LDName/LNName.USVCBName [US], +- MSVCBRef=LDName/LNName.MSVCBName [MS].', htmlDescription='

Path-name of the control block (SGCB, BRCB, URCB, LCB, GCB, USVCB, MSVCB) instance. Corresponds to one of the following:

  • SGCBRef=LDName/LNName.SGCBName [SP],
  • BRCBRef=LDName/LNName.BRCBName [BR],
  • URCBRef=LDName/LNName.URCBName [RP],
  • LCBRef=LDName/LNName.LCBName [LG],
  • GoCBRef=LDName/LNName.GoCBName [GO],
  • USVCBRef=LDName/LNName.USVCBName [US],
  • MSVCBRef=LDName/LNName.MSVCBName [MS].
'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1666, _eaTypeName=P_VISIBLE_STRING129, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,321 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::CBReference, _objData=UmlObjectData [id=3414, uuid={8A834972-A898-4f3a-8CF5-9896102F4C43}, since=null, name=CBName, alias=, stereotype=, visibility=public, txtDescription='Name of a BRCB or URCB instance, unambiguously identifying it within the scope of an LN, or name of an SGCB, LCB, GCB, USVCB or MSVCB instance, unambiguously identifying it within the scope of the LN0. To find out which control block it describes, use FC. Corresponds to one of the following: +- SGCBName = "SGCB", +- BRCBName, +- URCBName, +- LCBName, +- GoCBName, +- USVCBName, +- MSVCBName.', htmlDescription='

Name of a BRCB or URCB instance, unambiguously identifying it within the scope of an LN, or name of an SGCB, LCB, GCB, USVCB or MSVCB instance, unambiguously identifying it within the scope of the LN0. To find out which control block it describes, use FC. Corresponds to one of the following:

  • SGCBName = "SGCB",
  • BRCBName,
  • URCBName,
  • LCBName,
  • GoCBName,
  • USVCBName,
  • MSVCBName.
'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,322 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::CBReference, _objData=UmlObjectData [id=3415, uuid={801D665B-C42E-46a1-91D9-8131A8FA1630}, since=null, name=FC, alias=, stereotype=, visibility=public, txtDescription='Kind of control block described by this reference: +- ServiceFcKind.SP for SGCB, +- ServiceFcKind.BR for BRCB, +- ServiceFcKind.RP for URCB, +- ServiceFcKind.LG for LCB, +- ServiceFcKind.GO for GCB, +- ServiceFcKind.MS for MSVCB, +- ServiceFcKind.US for USVCB.', htmlDescription='

Kind of control block described by this reference:

  • ServiceFcKind.SP for SGCB,
  • ServiceFcKind.BR for BRCB,
  • ServiceFcKind.RP for URCB,
  • ServiceFcKind.LG for LCB,
  • ServiceFcKind.GO for GCB,
  • ServiceFcKind.MS for MSVCB,
  • ServiceFcKind.US for USVCB.
'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1699, _eaTypeName=ServiceFcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,322 [main] DEBUG ClassBuilder - Adding CBReference as subclass of LNReference +2024-09-07 12:38:48,322 [main] TRACE ClassBuilder - read from EA: ObjectReferences::CBReference +2024-09-07 12:38:48,322 [main] TRACE ClassBuilder - Class ServiceFcKind (8 in package ObjectReferences) +2024-09-07 12:38:48,322 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::ServiceFcKind, _objData=UmlObjectData [id=3416, uuid={2F543DEF-F532-436c-9D42-C64E87442953}, since=null, name=SP, alias=, stereotype=enum, visibility=public, txtDescription='Setpoint +Modelling note: This is the only functional constraint used for both DataAttribute (within FcKind) and services (within ServiceFcKind). In the context of services, it identifies an SGCB. +Implementation note: This one must be handled when interacting with MMS for SGCB (hard-coded) to distinguish it from the one used for DataAttributes. Since the name of the SGCB is "SGCB", and its fc=SP, and there will be one (or no) instance of SGCB within the LN, the following MMS reference should designate where the SGCB and its attributes start: "myLD/LLN0$SP$SGCB".', htmlDescription='

Setpoint

Modelling note: This is the only functional constraint used for both DataAttribute (within FcKind) and services (within ServiceFcKind). In the context of services, it identifies an SGCB.

Implementation note: This one must be handled when interacting with MMS for SGCB (hard-coded) to distinguish it from the one used for DataAttributes. Since the name of the SGCB is "SGCB", and its fc=SP, and there will be one (or no) instance of SGCB within the LN, the following MMS reference should designate where the SGCB and its attributes start: "myLD/LLN0$SP$SGCB".

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,323 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::ServiceFcKind, _objData=UmlObjectData [id=3417, uuid={B6D5F0C6-2DCD-4b57-9DF3-5FCC6A43041A}, since=null, name=BR, alias=, stereotype=enum, visibility=public, txtDescription='Buffered report - Attribute shall represent report control information of a BRCB whose value may be written and read. +Initial value shall be as configured; value shall be persistent.', htmlDescription='

Buffered report - Attribute shall represent report control information of a BRCB whose value may be written and read.

Initial value shall be as configured; value shall be persistent.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,323 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::ServiceFcKind, _objData=UmlObjectData [id=3418, uuid={84ECCAD9-38ED-4a56-8764-D3B964636DAA}, since=null, name=RP, alias=, stereotype=enum, visibility=public, txtDescription='Unbuffered report - Attribute shall represent report control information of a URCB whose value may be written and read. +Initial value shall be as configured; value shall be persistent.', htmlDescription='

Unbuffered report - Attribute shall represent report control information of a URCB whose value may be written and read.

Initial value shall be as configured; value shall be persistent.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,323 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::ServiceFcKind, _objData=UmlObjectData [id=3419, uuid={A7789B7A-AFD7-4050-8B89-68AE9943C706}, since=null, name=LG, alias=, stereotype=enum, visibility=public, txtDescription='Logging - Attribute shall represent log control information of a LCB whose value may be written and read. +Initial value shall be as configured; value shall be persistent.', htmlDescription='

Logging - Attribute shall represent log control information of a LCB whose value may be written and read.

Initial value shall be as configured; value shall be persistent.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,323 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::ServiceFcKind, _objData=UmlObjectData [id=3420, uuid={035D0B1A-7719-4ab5-9B93-BC6880629FD2}, since=null, name=GO, alias=, stereotype=enum, visibility=public, txtDescription='GOOSE control - Attribute shall represent goose control information of a GCB whose value may be written and read. +Initial value shall be as configured; value shall be persistent.', htmlDescription='

GOOSE control - Attribute shall represent goose control information of a GCB whose value may be written and read.

Initial value shall be as configured; value shall be persistent.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,323 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::ServiceFcKind, _objData=UmlObjectData [id=3421, uuid={0E8A4639-1A06-44d6-BD78-456F276956D5}, since=null, name=MS, alias=, stereotype=enum, visibility=public, txtDescription='Multicast sampled value control - Attribute shall represent sampled value control information of a MSVCB whose value may be written and read. +Initial value shall be as configured; value shall be persistent.', htmlDescription='

Multicast sampled value control - Attribute shall represent sampled value control information of a MSVCB whose value may be written and read.

Initial value shall be as configured; value shall be persistent.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,324 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::ServiceFcKind, _objData=UmlObjectData [id=3422, uuid={21046EB7-E2E3-44d9-A9D7-9C72DAE1D446}, since=null, name=US, alias=, stereotype=enum, visibility=public, txtDescription='Unicast sampled value control - Attribute shall represent sampled value control information of a USVCB whose value may be written and read. +Initial value shall be as configured; value shall be persistent.', htmlDescription='

Unicast sampled value control - Attribute shall represent sampled value control information of a USVCB whose value may be written and read.

Initial value shall be as configured; value shall be persistent.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,324 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::ServiceFcKind, _objData=UmlObjectData [id=3423, uuid={150A5A6D-9FF2-4148-907F-C231C6CB0EFC}, since=null, name=XX, alias=, stereotype=enum, visibility=public, txtDescription='Used as a wildcard in services, only, with the semantics: representing Attributes of any functional constraint.', htmlDescription='

Used as a wildcard in services, only, with the semantics: representing Attributes of any functional constraint.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,324 [main] TRACE ClassBuilder - read from EA: ObjectReferences::ServiceFcKind +2024-09-07 12:38:48,324 [main] TRACE ClassBuilder - Class LOGReference (9 in package ObjectReferences) +2024-09-07 12:38:48,324 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::LOGReference, _objData=UmlObjectData [id=3424, uuid={F7098AC8-CDAB-441c-AC10-33A78F44FF4A}, since=null, name=LogRef, alias=, stereotype=, visibility=public, txtDescription='Path-name of the LOG instance (= LDName/LNName.LogName).', htmlDescription='

Path-name of the LOG instance (= LDName/LNName.LogName).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1666, _eaTypeName=P_VISIBLE_STRING129, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,324 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::LOGReference, _objData=UmlObjectData [id=3425, uuid={E6AF9494-0CB6-469c-B908-B6EFD9D95BF2}, since=null, name=LogName, alias=, stereotype=, visibility=public, txtDescription='Name of a LOG instance, unambiguously identifying it within the scope of an LN0.', htmlDescription='

Name of a LOG instance, unambiguously identifying it within the scope of an LN0.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,324 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::LOGReference, _objData=UmlObjectData [id=3426, uuid={DA9F9473-FD92-4da5-85D5-D15BE37BADB8}, since=null, name=FC, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=LG, _eaTypeId=1699, _eaTypeName=ServiceFcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,325 [main] DEBUG ClassBuilder - Adding LOGReference as subclass of LNReference +2024-09-07 12:38:48,325 [main] TRACE ClassBuilder - read from EA: ObjectReferences::LOGReference +2024-09-07 12:38:48,325 [main] TRACE ClassBuilder - Class LNOwnedDSReference (10 in package ObjectReferences) +2024-09-07 12:38:48,325 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::LNOwnedDSReference, _objData=UmlObjectData [id=3427, uuid={3116B08C-7D30-4ec7-AC48-8E0C602D1640}, since=null, name=DSRef, alias=, stereotype=, visibility=public, txtDescription='Path-name of the ConfiguredDS or PersistentDS instance (= LDName/LNName.DSName).', htmlDescription='

Path-name of the ConfiguredDS or PersistentDS instance (= LDName/LNName.DSName).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1666, _eaTypeName=P_VISIBLE_STRING129, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,325 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::LNOwnedDSReference, _objData=UmlObjectData [id=3428, uuid={098059FE-54F8-4eef-805F-94F5F8358D6F}, since=null, name=DSName, alias=, stereotype=, visibility=public, txtDescription='Name of a DS instance, unambiguously identifying the DS within the scope of an LN.', htmlDescription='

Name of a DS instance, unambiguously identifying the DS within the scope of an LN.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,325 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2197, uuid={D8DD6FD7-E4C3-4a71-A7A7-6449EE515566}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=LNOwnedDSReference, _otherEndName=?] +2024-09-07 12:38:48,325 [main] DEBUG ClassBuilder - Adding LNOwnedDSReference as subclass of LNReference +2024-09-07 12:38:48,325 [main] TRACE ClassBuilder - read from EA: ObjectReferences::LNOwnedDSReference +2024-09-07 12:38:48,326 [main] TRACE ClassBuilder - Class FCDReference (11 in package ObjectReferences) +2024-09-07 12:38:48,326 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::FCDReference, _objData=UmlObjectData [id=3429, uuid={EAAE1C56-FED7-4d69-BF98-90C0809A9FB1}, since=null, name=FCDRef, alias=, stereotype=, visibility=public, txtDescription='Path-name of the PrimitiveCDC instance (i.e., data object when contained in LN, or sub-data object when contained in ComposedCDC), accompanied with a functional constraint (= [FC] DataRef).', htmlDescription='

Path-name of the PrimitiveCDC instance (i.e., data object when contained in LN, or sub-data object when contained in ComposedCDC), accompanied with a functional constraint (= [FC] DataRef).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1666, _eaTypeName=P_VISIBLE_STRING129, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,326 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::FCDReference, _objData=UmlObjectData [id=3430, uuid={2D72DE98-BB2A-44ad-B44D-45DEE23C6E0C}, since=null, name=FCDRefWithoutFC, alias=, stereotype=, visibility=public, txtDescription='Path-name of the PrimitiveCDC instance (contained in LN or in ComposedCDC) without functional constraint (= DataRef).', htmlDescription='

Path-name of the PrimitiveCDC instance (contained in LN or in ComposedCDC) without functional constraint (= DataRef).

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1666, _eaTypeName=P_VISIBLE_STRING129, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,326 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::FCDReference, _objData=UmlObjectData [id=3431, uuid={F261F75D-C2F6-4b2d-9261-38E92897916A}, since=null, name=FC, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,326 [main] DEBUG ClassBuilder - Adding FCDReference as subclass of CDCReference +2024-09-07 12:38:48,326 [main] TRACE ClassBuilder - read from EA: ObjectReferences::FCDReference +2024-09-07 12:38:48,326 [main] TRACE ClassBuilder - Class FCDAReference (12 in package ObjectReferences) +2024-09-07 12:38:48,326 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::FCDAReference, _objData=UmlObjectData [id=3432, uuid={5B3E1679-F475-4a48-B642-92D8EAC54344}, since=null, name=FCDARef, alias=, stereotype=, visibility=public, txtDescription='Path-name of the PrimitiveDA instance (i.e., leaf attribute contained in CDC or in ComposedDA) accompanied with a functional constraint and (if applicable) index within array (= [FC] DataAttrRef(m)).', htmlDescription='

Path-name of the PrimitiveDA instance (i.e., leaf attribute contained in CDC or in ComposedDA) accompanied with a functional constraint and (if applicable) index within array (= [FC] DataAttrRef(m)).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1666, _eaTypeName=P_VISIBLE_STRING129, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,326 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::FCDAReference, _objData=UmlObjectData [id=3433, uuid={71B22A59-B87D-4866-B0BD-DF359940497E}, since=null, name=FCDARefWithoutFC, alias=, stereotype=, visibility=public, txtDescription='Path-name of the PrimitiveDA instance (i.e., attribute contained in CDC or in ComposedDA) without functional constraint (= DataAttrRef).', htmlDescription='

Path-name of the PrimitiveDA instance (i.e., attribute contained in CDC or in ComposedDA) without functional constraint (= DataAttrRef).

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1667, _eaTypeName=P_VISIBLE_STRING255, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,328 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::FCDAReference, _objData=UmlObjectData [id=3434, uuid={39C98C0B-3EBC-457d-ADB8-6E0955A9AAAC}, since=null, name=LeafAttrName, alias=, stereotype=, visibility=public, txtDescription='Concatenation of one or more names of instances of DA, as follows: +1. For a PrimitiveDA, it is a single name. Example is "stVal" from the reference [ST] myLD3/XCBR1.Pos.stVal (where stVal is of type DpStatus:EnumDA). +2. For a ComposedDA, it is concatenation of two or more names, starting from the ComposedDA down to the PrimitiveDA it contains. One example is "cVal.mag.f" from the reference [MX] myLD3/MMXU1.PhV.phsA.cVal.mag.f. In this example: +- cVal is of type Vector:ComposedDA; one level further, +- cVal.mag is of type AnalogueValue:ComposedDA; one level further, +- cVal.mag.f is of type FLOAT32:PrimitiveDA. +Modelling note: Corresponds to DataAttributeName.[DataAttributeName...]. +Implementation note: After DataName and SubDataName of CDCReference have been correctly parsed, this is the concatenation of all names down to the leaf.', htmlDescription='

Concatenation of one or more names of instances of DA, as follows:

  1. For a PrimitiveDA, it is a single name. Example is "stVal" from the reference [ST] myLD3/XCBR1.Pos.stVal (where stVal is of type DpStatus:EnumDA).
  2. For a ComposedDA, it is concatenation of two or more names, starting from the ComposedDA down to the PrimitiveDA it contains. One example is "cVal.mag.f" from the reference [MX] myLD3/MMXU1.PhV.phsA.cVal.mag.f. In this example:
  • cVal is of type Vector:ComposedDA; one level further,
  • cVal.mag is of type AnalogueValue:ComposedDA; one level further,
  • cVal.mag.f is of type FLOAT32:PrimitiveDA.

Modelling note: Corresponds to DataAttributeName.[DataAttributeName...].

Implementation note: After DataName and SubDataName of CDCReference have been correctly parsed, this is the concatenation of all names down to the leaf.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,329 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::FCDAReference, _objData=UmlObjectData [id=3435, uuid={4358ED41-699C-4b19-A10D-D41877B1B0FF}, since=null, name=NumArrayElement, alias=, stereotype=, visibility=public, txtDescription='If the reference contains an array of DAs or CDCs, this is the index of the array element (e.g., reference [MX] myHWYE1.phsAHar(3).cVal.mag.f references the value of cVal with NumArrayElement=3), ignored otherwise. +Modelling note: Corresponds to NumArrayElement in one of the following: +- LDName/LNName.DataObjectName[.SubDataObjectName(NumArrayElement)[. ...]].DataAttributeName[.SubDataAttributeName[. ...]] +- LDName/LNName.DataObjectName[.SubDataObjectName[. ...]].DataAttributeName[(NumArrayElement)][.SubDataAttributeName[. ...]] +- LDName/LNName.DataObjectName[.SubDataObjectName[. ...]].DataAttributeName(NumArrayElement)', htmlDescription='

If the reference contains an array of DAs or CDCs, this is the index of the array element (e.g., reference [MX] myHWYE1.phsAHar(3).cVal.mag.f references the value of cVal with NumArrayElement=3), ignored otherwise.

Modelling note: Corresponds to NumArrayElement in one of the following:

  • LDName/LNName.DataObjectName[.SubDataObjectName(NumArrayElement)[. ...]].DataAttributeName[.SubDataAttributeName[. ...]]
  • LDName/LNName.DataObjectName[.SubDataObjectName[. ...]].DataAttributeName[(NumArrayElement)][.SubDataAttributeName[. ...]]
  • LDName/LNName.DataObjectName[.SubDataObjectName[. ...]].DataAttributeName(NumArrayElement)
'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1661, _eaTypeName=P_INT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,329 [main] DEBUG ClassBuilder - Adding FCDAReference as subclass of FCDReference +2024-09-07 12:38:48,329 [main] TRACE ClassBuilder - read from EA: ObjectReferences::FCDAReference +2024-09-07 12:38:48,329 [main] INFO PackageBuilder - processing package DetailedDiagrams (0) ... +2024-09-07 12:38:48,329 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=DetailedDiagrams, _objData=UmlObjectData [id=203, uuid={A331E064-B559-441c-A56E-9A7DB01E7188}, since=null, name=ImplementationNotes-ComposedCDCs, alias=, stereotype=, visibility=public, txtDescription='(no doc)', htmlDescription='

(no doc)

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,330 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1707, uuid={676CE2C4-A1DA-47ad-9651-9F449F390614}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='NOT UPDATED TO ED.2 YET! +When communicating with an underlying MMS API and without the detailed CDC/LN model, but only through the MetaModel, there is no automatic way (e.g., through reflection) to distinguish composed from primitive CDCs. +Therefore, one would need to define a resource file holding somehow the three composed CDCs: +- WYE = {phsA, phsB, phsC, neut, net, res} +- DEL = {phsAB, phsBC, phsCA} and +- SEQ = {c1, c2, c3} +as well as triplets like in the right two notes below (either one or the other), and store these as hash maps.', htmlDescription='

NOT UPDATED TO ED.2 YET!

When communicating with an underlying MMS API and without the detailed CDC/LN model, but only through the MetaModel, there is no automatic way (e.g., through reflection) to distinguish composed from primitive CDCs.

Therefore, one would need to define a resource file holding somehow the three composed CDCs:

- WYE = {phsA, phsB, phsC, neut, net, res}

- DEL = {phsAB, phsBC, phsCA} and

- SEQ = {c1, c2, c3}

as well as triplets like in the right two notes below (either one or the other), and store these as hash maps.

'], _containingPackage=DetailedDiagrams, _otherEndName=] +2024-09-07 12:38:48,330 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=ObjectReferences, _depth=3, _eaElementID=1706, _objData=UmlObjectData [id=96, uuid={431DCB78-8654-440e-9A98-54860605771F}, since=null, name=DetailedDiagrams, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=58, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1707, uuid={676CE2C4-A1DA-47ad-9651-9F449F390614}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='NOT UPDATED TO ED.2 YET! +When communicating with an underlying MMS API and without the detailed CDC/LN model, but only through the MetaModel, there is no automatic way (e.g., through reflection) to distinguish composed from primitive CDCs. +Therefore, one would need to define a resource file holding somehow the three composed CDCs: +- WYE = {phsA, phsB, phsC, neut, net, res} +- DEL = {phsAB, phsBC, phsCA} and +- SEQ = {c1, c2, c3} +as well as triplets like in the right two notes below (either one or the other), and store these as hash maps.', htmlDescription='

NOT UPDATED TO ED.2 YET!

When communicating with an underlying MMS API and without the detailed CDC/LN model, but only through the MetaModel, there is no automatic way (e.g., through reflection) to distinguish composed from primitive CDCs.

Therefore, one would need to define a resource file holding somehow the three composed CDCs:

- WYE = {phsA, phsB, phsC, neut, net, res}

- DEL = {phsAB, phsBC, phsCA} and

- SEQ = {c1, c2, c3}

as well as triplets like in the right two notes below (either one or the other), and store these as hash maps.

'], _containingPackage=DetailedDiagrams, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=DetailedDiagrams, _objData=UmlObjectData [id=203, uuid={A331E064-B559-441c-A56E-9A7DB01E7188}, since=null, name=ImplementationNotes-ComposedCDCs, alias=, stereotype=, visibility=public, txtDescription='(no doc)', htmlDescription='

(no doc)

'], _portrait=true, _kind=LOGICAL]] +2024-09-07 12:38:48,330 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_2, _depth=2, _eaElementID=1682, _objData=UmlObjectData [id=95, uuid={C7D34776-13CF-4d1a-A441-C737F9FC7E0F}, since=null, name=ObjectReferences, alias=, stereotype=, visibility=public, txtDescription='Not explicitly defined in the standard. We define subtypes for P_ObjectReference type (which is just a string), so as to allow for validation per type of element. This is useful when there is no detailed LN/CDC/FCDA/DA model, and when an application receives only strings as references from the underlying MMS stack - it allows for easy building of the meta-model objects.', htmlDescription='

Not explicitly defined in the standard. We define subtypes for P_ObjectReference type (which is just a string), so as to allow for validation per type of element. This is useful when there is no detailed LN/CDC/FCDA/DA model, and when an application receives only strings as references from the underlying MMS stack - it allows for easy building of the meta-model objects.

'], _modelId=58, _selfDependent=false, 4_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1684, uuid={A20EACAA-52B0-4123-8FE8-AC7004CDFF73}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Implementation note: To identify ComposedCDCs from e.g. MMS strings (to correctly assign dataName and SubDataName), you have to construct the hashmap based on definitions from IEC 61850-7-3, since MMS does not provide information about PrimitiveCDC and ComposedCDC. See diagram ObjectReferences::ImlementationNotes-ComplexCDCs.', htmlDescription='

Implementation note: To identify ComposedCDCs from e.g. MMS strings (to correctly assign dataName and SubDataName), you have to construct the hashmap based on definitions from IEC 61850-7-3, since MMS does not provide information about PrimitiveCDC and ComposedCDC. See diagram ObjectReferences::ImlementationNotes-ComplexCDCs.

'], _containingPackage=ObjectReferences, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1690, uuid={3601A814-6336-4e81-A0C4-605A030114AF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Do have a better name for LNOwnedDSReference (and LNOwnedDS)?', htmlDescription='

TODO: Do have a better name for LNOwnedDSReference (and LNOwnedDS)?

'], _containingPackage=ObjectReferences, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1704, uuid={B91F5E3E-1FE7-42cc-B656-C9B2CCB194E9}, since=null, name=ObjectReferences : ObjectReferencesModellingNotes, alias=, stereotype=, visibility=public, txtDescription='ObjectReferences : ObjectReferencesModellingNotes', htmlDescription='

ObjectReferences : ObjectReferencesModellingNotes

'], _containingPackage=ObjectReferences, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1705, uuid={C0FD65FA-8022-455d-A4A4-9198F69255B4}, since=null, name=ObjectReferences : ImplementationNotes-ComposedCDCs, alias=, stereotype=, visibility=public, txtDescription='ObjectReferences : ImplementationNotes-ComposedCDCs', htmlDescription='

ObjectReferences : ImplementationNotes-ComposedCDCs

'], _containingPackage=ObjectReferences, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=ObjectReferences, _objData=UmlObjectData [id=201, uuid={5DEE7E4C-4C25-4a75-B590-A96364073A9E}, since=null, name=ObjectReferences, alias=, stereotype=, visibility=public, txtDescription='This diagram shows an overview of strongly typed object references, not explicitly specified in the standard.', htmlDescription='

This diagram shows an overview of strongly typed object references, not explicitly specified in the standard.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=1, _dependenciesAsTarget=2, _classes=11, _childPackages=1] +2024-09-07 12:38:48,330 [main] INFO PackageBuilder - processing package AttrValues (7) ... +2024-09-07 12:38:48,331 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=AttrValues, _objData=UmlObjectData [id=204, uuid={5B6649AF-5F96-4bae-8755-C501F26C4F08}, since=null, name=AttrValues, alias=, stereotype=, visibility=public, txtDescription='Diagram shows AttrValue abstract class and its subclasses, parallelling concrete types defined in the enumeration AttrValueKind. +The package also contains two types used in get services as formal arguments or return values.', htmlDescription='

Diagram shows AttrValue abstract class and its subclasses, parallelling concrete types defined in the enumeration AttrValueKind.

The package also contains two types used in get services as formal arguments or return values.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,331 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::AttrValues, _objData=UmlObjectData [id=3171, uuid={EA333334-32A1-48ab-9F19-ADED674571F6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,331 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::AttrValues, _objData=UmlObjectData [id=3300, uuid={66306DED-57E5-415a-9801-4DB8B70544E8}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,331 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::AttrValues->IEC61850_7_2::CoreTypes, _objData=UmlObjectData [id=3322, uuid={4007F42C-AD2B-4122-ADB0-BE0A33C62F71}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,331 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::AttrValues->IEC61850_7_2::ObjectReferences, _objData=UmlObjectData [id=3323, uuid={0B7067BC-EDBC-4ae5-AF55-5FBD1BE1F769}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,332 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1712, uuid={6B183322-A2BA-4c8c-A524-72DFE3024027}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: We have an option to replace all methods with attributes. This was implementation model and we never had public attributes, only public methods (so to be able to add e.g. events in the code when value changes). Having public attribute in the code is bad OO software design, because it becomes uncontrollable global variable...', htmlDescription='

TODO: We have an option to replace all methods with attributes. This was implementation model and we never had public attributes, only public methods (so to be able to add e.g. events in the code when value changes). Having public attribute in the code is bad OO software design, because it becomes uncontrollable global variable...

'], _containingPackage=AttrValues, _otherEndName=] +2024-09-07 12:38:48,332 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1713, uuid={14891725-B9B9-459d-9CD3-68EA062CCFC9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling notes: +In C/C++, you'll typically use a union, so we could stay with AttrValue class without subclasses. In an OO language, for a value (getVal() method return) type, or an equivalent attribute instead, we need to cast what is received from the underlying protocol stack to a specific primitive type, and continue working with that correctly typed value. We cannot use "void *" here as return value (or alternatively, attribute) type, because that is +This would have been a place to use UML parameterised class (corresponding to e.g., Java generics or C++ templates: AttrValue etc.). Type for return value could be parameter class (). For the implementation, we would not need the AttrValue subclasses, but for modelling still would (in UML: so called bindings, e.g. AttrValue would inherit from AttrValue), in order to explicitly specify applicable types. We cannot work with subtyping of primitives, because they don't have a common superclass. UML parameterised classes wouldn't bring us anything for modelling, so we avoided that somewhat advanced UML construct for the sake of simplicity.', htmlDescription='

Modelling notes:

In C/C++, you'll typically use a union, so we could stay with AttrValue class without subclasses. In an OO language, for a value (getVal() method return) type, or an equivalent attribute instead, we need to cast what is received from the underlying protocol stack to a specific primitive type, and continue working with that correctly typed value. We cannot use "void *" here as return value (or alternatively, attribute) type, because that is

This would have been a place to use UML parameterised class (corresponding to e.g., Java generics or C++ templates: AttrValue<T> etc.). Type for return value could be parameter class (<T>). For the implementation, we would not need the AttrValue subclasses, but for modelling still would (in UML: so called bindings, e.g. AttrValue<P_INT32U> would inherit from AttrValue<T>), in order to explicitly specify applicable types. We cannot work with subtyping of primitives, because they don't have a common superclass. UML parameterised classes wouldn't bring us anything for modelling, so we avoided that somewhat advanced UML construct for the sake of simplicity.

'], _containingPackage=AttrValues, _otherEndName=] +2024-09-07 12:38:48,332 [main] TRACE ClassBuilder - Class AttrValueKind (1 in package AttrValues) +2024-09-07 12:38:48,332 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3436, uuid={0CD618D6-9894-4ff8-BC73-423F6893A6A5}, since=null, name=P_BOOLEAN, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,332 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3437, uuid={6551C5E8-D6E9-49d5-9AF7-A7CB6CFF3B7A}, since=null, name=P_INT8, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,333 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3438, uuid={EADD9C1B-B2F3-4f4d-AE79-24D99E1B9CF3}, since=null, name=P_INT8U, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,333 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3439, uuid={48A227DF-953F-4b3d-A61B-C2F13533F51E}, since=null, name=P_INT16, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,333 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3440, uuid={53AB324D-B98F-4eda-B714-33C0D8546C51}, since=null, name=P_INT16U, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,333 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3441, uuid={A1C5625F-CF14-42eb-89D7-E965C05D4E05}, since=null, name=P_INT24U, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,333 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3442, uuid={41B37AC4-C6E3-4c3c-982E-0748EE076D1D}, since=null, name=P_INT32, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,334 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3443, uuid={DDAD6ABA-D92C-47da-8952-80F1F44B667E}, since=null, name=P_INT32U, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,334 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3444, uuid={C43183EC-848C-4a18-974D-39FAF587D5BB}, since=null, name=P_INT64, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,334 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3445, uuid={88992818-F730-42a6-A4EA-07B399C3B510}, since=null, name=P_FLOAT32, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,334 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3446, uuid={AC9E1A64-778C-4b51-B404-3CEA2673F0B0}, since=null, name=P_OCTET_STRING64, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,334 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3447, uuid={B7E4700E-57CD-471d-A7CB-F8187FAD8581}, since=null, name=P_VISIBLE_STRING64, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,335 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3448, uuid={3AF6EDF2-E22A-4422-B62B-530F48F0FBB6}, since=null, name=P_VISIBLE_STRING255, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,335 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3449, uuid={9658B919-5427-489d-A52B-A60B68BC8902}, since=null, name=P_UNICODE_STRING255, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,335 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3450, uuid={6F88E821-D670-4523-872E-7DDE609D3297}, since=null, name=P_TimeStamp, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,335 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3451, uuid={43CDF85A-8A50-45b9-86BC-B379EA3F8454}, since=null, name=Quality, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,335 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3452, uuid={F5F5EC82-34DD-42b7-8D3E-9E5992F28140}, since=null, name=P_ObjectReference, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,335 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3453, uuid={DCA0A1E1-F5A5-4b5d-80F8-555908D760AA}, since=null, name=P_PHYCOMADDR, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,335 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3454, uuid={F943622C-C2DA-4ce0-A28D-781203285269}, since=null, name=P_TriggerConditions, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,335 [main] TRACE ClassBuilder - read from EA: AttrValues::AttrValueKind +2024-09-07 12:38:48,336 [main] TRACE ClassBuilder - Class AttrValue (2 in package AttrValues) +2024-09-07 12:38:48,336 [main] TRACE OperationBuilder - read from EA: OperationBuilder [_containingClass=AttrValue, _objData=UmlObjectData [id=7, uuid={AE278709-6801-41ab-B747-96509456D69B}, since=null, name=getType, alias=, stereotype=, visibility=public, txtDescription='Returns the type of this value.', htmlDescription='

Returns the type of this value.

'], _abstract=true, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=null, _eaReturnTypeId=1714, _eaReturnTypeName=AttrValueKind] +2024-09-07 12:38:48,337 [main] TRACE ClassBuilder - read from EA: AttrValues::AttrValue +2024-09-07 12:38:48,337 [main] TRACE ClassBuilder - Class AttrDefinition (22 in package AttrValues) +2024-09-07 12:38:48,337 [main] TRACE OperationBuilder - read from EA: OperationBuilder [_containingClass=AttrDefinition, _objData=UmlObjectData [id=46, uuid={C67D899D-E6F2-43a4-A6F8-1ECB42761E65}, since=null, name=getFcdaRef, alias=, stereotype=, visibility=public, txtDescription='Returns attribute's FCDAReference.', htmlDescription='

Returns attribute's FCDAReference.

'], _abstract=false, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=null, _eaReturnTypeId=1703, _eaReturnTypeName=FCDAReference] +2024-09-07 12:38:48,337 [main] TRACE OperationBuilder - read from EA: OperationBuilder [_containingClass=AttrDefinition, _objData=UmlObjectData [id=47, uuid={F41461CE-0224-4867-9FC5-05D412807A13}, since=null, name=getValType, alias=, stereotype=, visibility=public, txtDescription='Returns type of attribute's value.', htmlDescription='

Returns type of attribute's value.

'], _abstract=false, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=null, _eaReturnTypeId=1714, _eaReturnTypeName=AttrValueKind] +2024-09-07 12:38:48,337 [main] TRACE ClassBuilder - read from EA: AttrValues::AttrDefinition +2024-09-07 12:38:48,338 [main] TRACE ClassBuilder - Class NamedAttrValue (23 in package AttrValues) +2024-09-07 12:38:48,338 [main] TRACE OperationBuilder - read from EA: OperationBuilder [_containingClass=NamedAttrValue, _objData=UmlObjectData [id=48, uuid={129BA9AB-F84D-4f61-863F-E9AD33EC1D36}, since=null, name=getFcdaRef, alias=, stereotype=, visibility=public, txtDescription='Returns attribute's FCDAReference.', htmlDescription='

Returns attribute's FCDAReference.

'], _abstract=false, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=null, _eaReturnTypeId=1703, _eaReturnTypeName=FCDAReference] +2024-09-07 12:38:48,338 [main] TRACE OperationBuilder - read from EA: OperationBuilder [_containingClass=NamedAttrValue, _objData=UmlObjectData [id=49, uuid={91C84065-1E39-4d4a-8927-B426FCFEB686}, since=null, name=getVal, alias=, stereotype=, visibility=public, txtDescription='Returns attribute's value.', htmlDescription='

Returns attribute's value.

'], _abstract=false, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=null, _eaReturnTypeId=1715, _eaReturnTypeName=AttrValue] +2024-09-07 12:38:48,338 [main] TRACE ClassBuilder - read from EA: AttrValues::NamedAttrValue +2024-09-07 12:38:48,339 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_2, _depth=2, _eaElementID=1711, _objData=UmlObjectData [id=97, uuid={2BC6E948-C1D9-4e30-9568-7F9E4ECAF602}, since=null, name=AttrValues, alias=, stereotype=, visibility=public, txtDescription='This clause defines classes that hold primitive values with type information. They are all used for different get and set services that operate on leaf data attributes without knowledge of detailed data model (i.e., data attributes, functional constraints, common data classes and logical nodes). In particular, the abstract class AttrValue is also used within the meta-model's BasicDA to hold the actual value. This decoupling allows to instantiate meta-model classes from "raw" services provided by live servers, as well as from SCL instance file.', htmlDescription='

This clause defines classes that hold primitive values with type information. They are all used for different get and set services that operate on leaf data attributes without knowledge of detailed data model (i.e., data attributes, functional constraints, common data classes and logical nodes). In particular, the abstract class AttrValue is also used within the meta-model's BasicDA to hold the actual value. This decoupling allows to instantiate meta-model classes from "raw" services provided by live servers, as well as from SCL instance file.

'], _modelId=58, _selfDependent=false, 2_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1712, uuid={6B183322-A2BA-4c8c-A524-72DFE3024027}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: We have an option to replace all methods with attributes. This was implementation model and we never had public attributes, only public methods (so to be able to add e.g. events in the code when value changes). Having public attribute in the code is bad OO software design, because it becomes uncontrollable global variable...', htmlDescription='

TODO: We have an option to replace all methods with attributes. This was implementation model and we never had public attributes, only public methods (so to be able to add e.g. events in the code when value changes). Having public attribute in the code is bad OO software design, because it becomes uncontrollable global variable...

'], _containingPackage=AttrValues, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1713, uuid={14891725-B9B9-459d-9CD3-68EA062CCFC9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling notes: +In C/C++, you'll typically use a union, so we could stay with AttrValue class without subclasses. In an OO language, for a value (getVal() method return) type, or an equivalent attribute instead, we need to cast what is received from the underlying protocol stack to a specific primitive type, and continue working with that correctly typed value. We cannot use "void *" here as return value (or alternatively, attribute) type, because that is +This would have been a place to use UML parameterised class (corresponding to e.g., Java generics or C++ templates: AttrValue etc.). Type for return value could be parameter class (). For the implementation, we would not need the AttrValue subclasses, but for modelling still would (in UML: so called bindings, e.g. AttrValue would inherit from AttrValue), in order to explicitly specify applicable types. We cannot work with subtyping of primitives, because they don't have a common superclass. UML parameterised classes wouldn't bring us anything for modelling, so we avoided that somewhat advanced UML construct for the sake of simplicity.', htmlDescription='

Modelling notes:

In C/C++, you'll typically use a union, so we could stay with AttrValue class without subclasses. In an OO language, for a value (getVal() method return) type, or an equivalent attribute instead, we need to cast what is received from the underlying protocol stack to a specific primitive type, and continue working with that correctly typed value. We cannot use "void *" here as return value (or alternatively, attribute) type, because that is

This would have been a place to use UML parameterised class (corresponding to e.g., Java generics or C++ templates: AttrValue<T> etc.). Type for return value could be parameter class (<T>). For the implementation, we would not need the AttrValue subclasses, but for modelling still would (in UML: so called bindings, e.g. AttrValue<P_INT32U> would inherit from AttrValue<T>), in order to explicitly specify applicable types. We cannot work with subtyping of primitives, because they don't have a common superclass. UML parameterised classes wouldn't bring us anything for modelling, so we avoided that somewhat advanced UML construct for the sake of simplicity.

'], _containingPackage=AttrValues, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=AttrValues, _objData=UmlObjectData [id=204, uuid={5B6649AF-5F96-4bae-8755-C501F26C4F08}, since=null, name=AttrValues, alias=, stereotype=, visibility=public, txtDescription='Diagram shows AttrValue abstract class and its subclasses, parallelling concrete types defined in the enumeration AttrValueKind. +The package also contains two types used in get services as formal arguments or return values.', htmlDescription='

Diagram shows AttrValue abstract class and its subclasses, parallelling concrete types defined in the enumeration AttrValueKind.

The package also contains two types used in get services as formal arguments or return values.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=2, _dependenciesAsTarget=2, _classes=4 +2024-09-07 12:38:48,339 [main] INFO PackageBuilder - processing package BasicDAs (8) ... +2024-09-07 12:38:48,341 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=BasicDAs, _objData=UmlObjectData [id=205, uuid={E958D99A-04E8-4d71-B3E2-881E285B60E2}, since=null, name=BasicDAs, alias=, stereotype=, visibility=public, txtDescription='Shows all primitive data attributes with superclasses that define services (from Part 7-2).', htmlDescription='

Shows all primitive data attributes with superclasses that define services (from Part 7-2).

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,341 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::BasicDAs, _objData=UmlObjectData [id=2947, uuid={34CA4A5E-1E27-47e9-BA6A-04938395F510}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,341 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::BasicDAs, _objData=UmlObjectData [id=3063, uuid={3A733EFE-40F7-4e54-BAA6-405269B1FDDC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,342 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::BasicDAs->IEC61850_7_2::ACSIEnums, _objData=UmlObjectData [id=3298, uuid={F56ADDA0-372E-4056-B822-00216243BD63}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,342 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::BasicDAs->null, _objData=UmlObjectData [id=3299, uuid={79251C03-047F-49a4-8FBC-DA669F5E0A6A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,342 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::BasicDAs->IEC61850_7_2::AttrValues, _objData=UmlObjectData [id=3300, uuid={66306DED-57E5-415a-9801-4DB8B70544E8}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,342 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::BasicDAs->IEC61850_7_2::CoreTypes, _objData=UmlObjectData [id=3301, uuid={58E49D9F-1448-4082-AF53-C39A20175114}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,343 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1738, uuid={987E6C0E-BF15-4719-B21A-79267A56B63B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: May be more DA types needed (for 7-2 CDCs - not analysed yet).', htmlDescription='

TODO: May be more DA types needed (for 7-2 CDCs - not analysed yet).

'], _containingPackage=BasicDAs, _otherEndName=] +2024-09-07 12:38:48,343 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1739, uuid={7B5436EB-4D27-4e20-AC62-E425926FD970}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: +New types (not in Ed.1) are in green: +- INT24U is required for 61850-7-420 (SCR). +- PHYCOMADDR is new in Ed.2, for tracking CDCs.', htmlDescription='

Modelling note:

New types (not in Ed.1) are in green:

  • INT24U is required for 61850-7-420 (SCR).
  • PHYCOMADDR is new in Ed.2, for tracking CDCs.
'], _containingPackage=BasicDAs, _otherEndName=] +2024-09-07 12:38:48,344 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=1761, uuid={70C484F0-F4C0-481a-8E0A-779A50F8FA2D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=BasicDAs, _otherEndName=] +2024-09-07 12:38:48,344 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1762, uuid={824A4FE4-06C3-4d28-B5D5-E0393B87144C}, since=null, name=ACSIEnums : ACSIEnums, alias=, stereotype=, visibility=public, txtDescription='ACSIEnums : ACSIEnums', htmlDescription='

ACSIEnums : ACSIEnums

'], _containingPackage=BasicDAs, _otherEndName=] +2024-09-07 12:38:48,344 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1763, uuid={96D47867-4801-46a3-9334-C828BB8AB79C}, since=null, name=ObjectReferences : ObjectReferences, alias=, stereotype=, visibility=public, txtDescription='ObjectReferences : ObjectReferences', htmlDescription='

ObjectReferences : ObjectReferences

'], _containingPackage=BasicDAs, _otherEndName=] +2024-09-07 12:38:48,344 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1764, uuid={CDDB2815-C23A-43ef-9CD4-D977BA51D3D0}, since=null, name=CoreTypes : CoreTypes, alias=, stereotype=, visibility=public, txtDescription='CoreTypes : CoreTypes', htmlDescription='

CoreTypes : CoreTypes

'], _containingPackage=BasicDAs, _otherEndName=] +2024-09-07 12:38:48,344 [main] TRACE ClassBuilder - Class BOOLEAN (1 in package BasicDAs) +2024-09-07 12:38:48,344 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BasicDAs::BOOLEAN, _objData=UmlObjectData [id=3455, uuid={26303763-5425-4eb3-9E6B-A0E20714D69E}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,345 [main] TRACE ClassBuilder - read from EA: BasicDAs::BOOLEAN +2024-09-07 12:38:48,345 [main] TRACE ClassBuilder - Class INT16U (2 in package BasicDAs) +2024-09-07 12:38:48,345 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BasicDAs::INT16U, _objData=UmlObjectData [id=3458, uuid={5CAC1927-5377-434f-B9CF-DF014080FF25}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1659, _eaTypeName=P_INT16U, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,346 [main] TRACE ClassBuilder - read from EA: BasicDAs::INT16U +2024-09-07 12:38:48,346 [main] TRACE ClassBuilder - Class INT32 (3 in package BasicDAs) +2024-09-07 12:38:48,346 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BasicDAs::INT32, _objData=UmlObjectData [id=3460, uuid={8AB19364-EBA3-46e8-9A28-836D4BE3184E}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1656, _eaTypeName=P_INT32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,346 [main] TRACE ClassBuilder - read from EA: BasicDAs::INT32 +2024-09-07 12:38:48,346 [main] TRACE ClassBuilder - Class INT32U (4 in package BasicDAs) +2024-09-07 12:38:48,347 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BasicDAs::INT32U, _objData=UmlObjectData [id=3461, uuid={4E98F434-E893-4dd8-A976-1F47F85F096D}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1661, _eaTypeName=P_INT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,347 [main] TRACE ClassBuilder - read from EA: BasicDAs::INT32U +2024-09-07 12:38:48,347 [main] TRACE ClassBuilder - Class FLOAT32 (5 in package BasicDAs) +2024-09-07 12:38:48,347 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BasicDAs::FLOAT32, _objData=UmlObjectData [id=3456, uuid={0C453C24-788C-4b79-936D-F8ED7B6AC349}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1662, _eaTypeName=P_FLOAT32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,348 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2168, uuid={21EDCBE7-7D84-47c0-9FC1-19B43E26586E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=FLOAT32, _otherEndName=?] +2024-09-07 12:38:48,348 [main] TRACE ClassBuilder - read from EA: BasicDAs::FLOAT32 +2024-09-07 12:38:48,348 [main] TRACE ClassBuilder - Class UNICODE_STRING255 (6 in package BasicDAs) +2024-09-07 12:38:48,348 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BasicDAs::UNICODE_STRING255, _objData=UmlObjectData [id=3466, uuid={2D5EC3D2-2D30-4dcd-A716-1DDCC1D03618}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1663, _eaTypeName=P_UNICODE_STRING255, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,349 [main] TRACE ClassBuilder - read from EA: BasicDAs::UNICODE_STRING255 +2024-09-07 12:38:48,349 [main] TRACE ClassBuilder - Class VISIBLE_STRING255 (7 in package BasicDAs) +2024-09-07 12:38:48,349 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BasicDAs::VISIBLE_STRING255, _objData=UmlObjectData [id=3467, uuid={98E04197-6A6E-47dc-9801-656386DF6B28}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1667, _eaTypeName=P_VISIBLE_STRING255, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,349 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2166, uuid={4D18ADD4-1BA8-404b-8D95-DC3AA61AC6AD}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=VISIBLE_STRING255, _otherEndName=?] +2024-09-07 12:38:48,349 [main] TRACE ClassBuilder - read from EA: BasicDAs::VISIBLE_STRING255 +2024-09-07 12:38:48,350 [main] TRACE ClassBuilder - Class ObjectReference (15 in package BasicDAs) +2024-09-07 12:38:48,350 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BasicDAs::ObjectReference, _objData=UmlObjectData [id=3469, uuid={D656053C-0AC9-4b40-B071-8DCD708B0AF0}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1669, _eaTypeName=P_ObjectReference, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,350 [main] TRACE ClassBuilder - read from EA: BasicDAs::ObjectReference +2024-09-07 12:38:48,350 [main] TRACE ClassBuilder - Class PHYCOMADDR (16 in package BasicDAs) +2024-09-07 12:38:48,351 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BasicDAs::PHYCOMADDR, _objData=UmlObjectData [id=3470, uuid={601E9D69-6691-49ad-B034-6C76CA60A811}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1670, _eaTypeName=P_PHYCOMADDR, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,351 [main] TRACE ClassBuilder - read from EA: BasicDAs::PHYCOMADDR +2024-09-07 12:38:48,351 [main] TRACE ClassBuilder - Class TimeStamp (17 in package BasicDAs) +2024-09-07 12:38:48,351 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BasicDAs::TimeStamp, _objData=UmlObjectData [id=3471, uuid={3ABEB6F9-DB10-42c0-BB49-17EA3703AFBC}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1671, _eaTypeName=P_TimeStamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,352 [main] TRACE ClassBuilder - read from EA: BasicDAs::TimeStamp +2024-09-07 12:38:48,352 [main] TRACE ClassBuilder - Class TriggerConditions (18 in package BasicDAs) +2024-09-07 12:38:48,354 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [, _containingClass=TriggerConditions, _objData=UmlObjectData [id=206, uuid={ED500A2B-E7F0-4605-945F-0380F29C01D7}, since=null, name=Relation between trigger conditions, applicable trigger options and reporting, alias=, stereotype=, visibility=public, txtDescription='This diagram illustrates the relation between trigger conditions, applicable trigger options and reporting. The value of a data attribute that provides a specific trigger option (TrgOp) shall be monitored for reporting or logging if the report control block or the log control block, respectively has the specific trigger option (TrgOp) enabled. +In the Report Control Block 1, the TrgOp is dchg; the TrgOp of the first data attribute is dchg, dupd for the second, and qchg for the third data attribute. Reports of the Report Control Block 1 are sent on data changes only, because only dchg is enabled in the report control block. +In the Report Control Block 2, four trigger options are enabled. Therefore, all changes on respective data attributes will be reported (dchg for the first, dupd for the second, qchg for the third). In addition, a report will be sent on the expiration of the integrity period (see clause 17).', htmlDescription='

This diagram illustrates the relation between trigger conditions, applicable trigger options and reporting. The value of a data attribute that provides a specific trigger option (TrgOp) shall be monitored for reporting or logging if the report control block or the log control block, respectively has the specific trigger option (TrgOp) enabled.

In the Report Control Block 1, the TrgOp is dchg; the TrgOp of the first data attribute is dchg, dupd for the second, and qchg for the third data attribute. Reports of the Report Control Block 1 are sent on data changes only, because only dchg is enabled in the report control block.

In the Report Control Block 2, four trigger options are enabled. Therefore, all changes on respective data attributes will be reported (dchg for the first, dupd for the second, qchg for the third). In addition, a report will be sent on the expiration of the integrity period (see clause 17).

'], _portrait=true, _kind=CUSTOM] +2024-09-07 12:38:48,354 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=1758, uuid={69E28EB1-B299-4f6e-8446-73078B0B9916}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=TriggerConditions, _otherEndName=] +2024-09-07 12:38:48,354 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BasicDAs::TriggerConditions, _objData=UmlObjectData [id=3472, uuid={808EC92B-30E6-4882-A08E-64D4B5E48217}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1674, _eaTypeName=P_TriggerConditions, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,355 [main] TRACE ClassBuilder - read from EA: BasicDAs::TriggerConditions +2024-09-07 12:38:48,355 [main] TRACE ClassBuilder - Class DpStatus (19 in package BasicDAs) +2024-09-07 12:38:48,355 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BasicDAs::DpStatus, _objData=UmlObjectData [id=3473, uuid={B1D71CDD-86A6-4d33-A64E-6E6089FFAD0E}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1636, _eaTypeName=DpStatusKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,356 [main] TRACE ClassBuilder - read from EA: BasicDAs::DpStatus +2024-09-07 12:38:48,356 [main] TRACE ClassBuilder - Class BsControl (20 in package BasicDAs) +2024-09-07 12:38:48,356 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BasicDAs::BsControl, _objData=UmlObjectData [id=3474, uuid={5CF376EC-A611-4feb-9E92-1A3A726D9788}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1635, _eaTypeName=BsControlKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,357 [main] TRACE ClassBuilder - read from EA: BasicDAs::BsControl +2024-09-07 12:38:48,357 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_2, _depth=2, _eaElementID=1737, _objData=UmlObjectData [id=98, uuid={FEA6A5F2-17EE-4d01-BBD1-186F04DFE39C}, since=null, name=BasicDAs, alias=Basic data attributes, stereotype=, visibility=public, txtDescription='Part 7-2, sec.5 +Primitive data attribute types.', htmlDescription='

Part 7-2, sec.5

Primitive data attribute types.

'], _modelId=58, _selfDependent=false, 6_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1738, uuid={987E6C0E-BF15-4719-B21A-79267A56B63B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: May be more DA types needed (for 7-2 CDCs - not analysed yet).', htmlDescription='

TODO: May be more DA types needed (for 7-2 CDCs - not analysed yet).

'], _containingPackage=BasicDAs, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1739, uuid={7B5436EB-4D27-4e20-AC62-E425926FD970}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: +New types (not in Ed.1) are in green: +- INT24U is required for 61850-7-420 (SCR). +- PHYCOMADDR is new in Ed.2, for tracking CDCs.', htmlDescription='

Modelling note:

New types (not in Ed.1) are in green:

  • INT24U is required for 61850-7-420 (SCR).
  • PHYCOMADDR is new in Ed.2, for tracking CDCs.
'], _containingPackage=BasicDAs, _otherEndName=], SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=1761, uuid={70C484F0-F4C0-481a-8E0A-779A50F8FA2D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=BasicDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1762, uuid={824A4FE4-06C3-4d28-B5D5-E0393B87144C}, since=null, name=ACSIEnums : ACSIEnums, alias=, stereotype=, visibility=public, txtDescription='ACSIEnums : ACSIEnums', htmlDescription='

ACSIEnums : ACSIEnums

'], _containingPackage=BasicDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1763, uuid={96D47867-4801-46a3-9334-C828BB8AB79C}, since=null, name=ObjectReferences : ObjectReferences, alias=, stereotype=, visibility=public, txtDescription='ObjectReferences : ObjectReferences', htmlDescription='

ObjectReferences : ObjectReferences

'], _containingPackage=BasicDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1764, uuid={CDDB2815-C23A-43ef-9CD4-D977BA51D3D0}, since=null, name=CoreTypes : CoreTypes, alias=, stereotype=, visibility=public, txtDescription='CoreTypes : CoreTypes', htmlDescription='

CoreTypes : CoreTypes

'], _containingPackage=BasicDAs, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=BasicDAs, _objData=UmlObjectData [id=205, uuid={E958D99A-04E8-4d71-B3E2-881E285B60E2}, since=null, name=BasicDAs, alias=, stereotype=, visibility=public, txtDescription='Shows all primitive data attributes with superclasses that define services (from Part 7-2).', htmlDescription='

Shows all primitive data attributes with superclasses that define services (from Part 7-2).

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=4, _dependenciesAsTarget=2, _classes=13 +2024-09-07 12:38:48,357 [main] INFO PackageBuilder - processing package AcsiTypes (9) ... +2024-09-07 12:38:48,358 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=AcsiTypes, _objData=UmlObjectData [id=207, uuid={CA618DB9-D548-4fc1-B2E7-2AE6F2EE786D}, since=null, name=AcsiTypes, alias=, stereotype=, visibility=public, txtDescription='Overview of packages, their contents and dependencies.', htmlDescription='

Overview of packages, their contents and dependencies.

'], _portrait=true, _kind=PACKAGE] +2024-09-07 12:38:48,358 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::AcsiTypes, _objData=UmlObjectData [id=3176, uuid={18113968-8A0F-43a2-8F30-9621210BBB79}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,358 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::AcsiTypes->IEC61850_7_2::CoreTypes, _objData=UmlObjectData [id=3297, uuid={FCD42B62-BC4F-4487-B6C7-E7E726D09A02}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,359 [main] INFO PackageBuilder - processing package CommonAcsiTypes (1) ... +2024-09-07 12:38:48,359 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=CommonAcsiTypes, _objData=UmlObjectData [id=208, uuid={9C0EB421-7334-4ece-ACC5-6C0E720E63B2}, since=null, name=CommonAcsiTypes, alias=, stereotype=, visibility=public, txtDescription='Types used only in CoreAcsi or MetaModel, but not in parts 7-3 and 7-4.', htmlDescription='

Types used only in CoreAcsi or MetaModel, but not in parts 7-3 and 7-4.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,360 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = AcsiTypes::CommonAcsiTypes->IEC61850_7_2::CoreTypes, _objData=UmlObjectData [id=3288, uuid={38E71389-9629-4cc5-9975-FC4214E837B4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,361 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1768, uuid={ED8223CD-9A7C-4260-9BF0-4C8591BFABCE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: We have modelled service errors, originally defined in 6.1.2.6 ServiceError type enumeration, as exceptions (instead of return parameters). Using exceptions allowed us for: +- an OO way of explicitly defining multiple "error" conditions, and, +- explicit specification of all "error" conditions that can apply to any one service. +We need to decide when working on services (CoreAcsi) on how to proceed with this: +- Keeping exceptions, adding enum, and an attribute on exception giving the corresponding enum literal/value? And also explicitly defining which exception(s) may apply to which service. +- Totally removing exceptions, and somehow incorporating negative response into classes used as return values from service formal arguments? +In every case, we must document the enumerated values, because the semantic of many of them is not clear to a (poor) software engineer...', htmlDescription='

TODO: We have modelled service errors, originally defined in 6.1.2.6 ServiceError type enumeration, as exceptions (instead of return parameters). Using exceptions allowed us for:

  • an OO way of explicitly defining multiple "error" conditions, and,
  • explicit specification of all "error" conditions that can apply to any one service.

We need to decide when working on services (CoreAcsi) on how to proceed with this:

  • Keeping exceptions, adding enum, and an attribute on exception giving the corresponding enum literal/value? And also explicitly defining which exception(s) may apply to which service.
  • Totally removing exceptions, and somehow incorporating negative response into classes used as return values from service formal arguments?

In every case, we must document the enumerated values, because the semantic of many of them is not clear to a (poor) software engineer...

'], _containingPackage=CommonAcsiTypes, _otherEndName=] +2024-09-07 12:38:48,361 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1769, uuid={3D82FEF1-77B0-4982-A9B8-0E99C62D3DF5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Update classes in blue to Ed.2. Possibly more to come after detailed analysis.', htmlDescription='

TODO: Update classes in blue to Ed.2. Possibly more to come after detailed analysis.

'], _containingPackage=CommonAcsiTypes, _otherEndName=] +2024-09-07 12:38:48,361 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1778, uuid={8C2A80C7-34D1-4797-977D-C78CF31CDE06}, since=null, name=CoreAcsi : CoreAcsi, alias=, stereotype=, visibility=public, txtDescription='CoreAcsi : CoreAcsi', htmlDescription='

CoreAcsi : CoreAcsi

'], _containingPackage=CommonAcsiTypes, _otherEndName=] +2024-09-07 12:38:48,361 [main] TRACE ClassBuilder - Class P_OCTET_STRING (0 in package CommonAcsiTypes) +2024-09-07 12:38:48,362 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = null->CommonAcsiTypes::P_OCTET_STRING, _objData=UmlObjectData [id=3424, uuid={BE25D6E1-D428-445f-B6CD-81B3E0FC5922}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], 1_taggedValues{dummyDepTag=}] +2024-09-07 12:38:48,362 [main] TRACE ClassBuilder - read from EA: CommonAcsiTypes::P_OCTET_STRING +2024-09-07 12:38:48,362 [main] TRACE ClassBuilder - Class IPAddress (2 in package CommonAcsiTypes) +2024-09-07 12:38:48,362 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CommonAcsiTypes::IPAddress, _objData=UmlObjectData [id=3475, uuid={28C574C1-8CFC-48da-A893-39B865E93E7A}, since=null, name=address, alias=, stereotype=, visibility=public, txtDescription='String value of this address.', htmlDescription='

String value of this address.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1665, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,363 [main] TRACE ClassBuilder - read from EA: CommonAcsiTypes::IPAddress +2024-09-07 12:38:48,363 [main] TRACE ClassBuilder - Class MulticastAddress (3 in package CommonAcsiTypes) +2024-09-07 12:38:48,363 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CommonAcsiTypes::MulticastAddress, _objData=UmlObjectData [id=3476, uuid={C721043C-0E9C-4aab-B84C-CD1963CF8571}, since=null, name=address, alias=, stereotype=, visibility=public, txtDescription='Destination MAC (Media Access Control) address to which a multicast sessage is to be sent. The address shall be an Ethernet address that has the multicast bit set true.', htmlDescription='

Destination MAC (Media Access Control) address to which a multicast sessage is to be sent. The address shall be an Ethernet address that has the multicast bit set true.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1665, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,363 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CommonAcsiTypes::MulticastAddress, _objData=UmlObjectData [id=3477, uuid={E27F3331-52B6-4f2d-B3EB-FADBC5F63EB2}, since=null, name=priority, alias=, stereotype=, visibility=public, txtDescription='Virtual LAN user priority. Shall be a single character from the range [0-7].', htmlDescription='

Virtual LAN user priority. Shall be a single character from the range [0-7].

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1658, _eaTypeName=P_INT8U, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,363 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CommonAcsiTypes::MulticastAddress, _objData=UmlObjectData [id=3478, uuid={E313732A-C2CB-4dbd-B5D6-C20398D08EAA}, since=null, name=vid, alias=, stereotype=, visibility=public, txtDescription='Virtual LAN ID. Shall be 3 characters from the range [0-9] and [A-F].', htmlDescription='

Virtual LAN ID. Shall be 3 characters from the range [0-9] and [A-F].

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1659, _eaTypeName=P_INT16U, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,363 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CommonAcsiTypes::MulticastAddress, _objData=UmlObjectData [id=3479, uuid={DE23C4C9-F440-4437-9F96-B5C3040716E9}, since=null, name=appid, alias=, stereotype=, visibility=public, txtDescription='Application identifier. Shall be 4 characters from the range [0-9] and [A-F].', htmlDescription='

Application identifier. Shall be 4 characters from the range [0-9] and [A-F].

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1659, _eaTypeName=P_INT16U, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,364 [main] DEBUG ClassBuilder - Updated source of class dependency DependencyBuilder [_kind=CLASS, qName = CommonAcsiTypes::MulticastAddress->CommonAcsiTypes::P_OCTET_STRING, _objData=UmlObjectData [id=3424, uuid={BE25D6E1-D428-445f-B6CD-81B3E0FC5922}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], 1_taggedValues{dummyDepTag=}] +2024-09-07 12:38:48,364 [main] TRACE ClassBuilder - read from EA: CommonAcsiTypes::MulticastAddress +2024-09-07 12:38:48,364 [main] TRACE ClassBuilder - Class Authentication (4 in package CommonAcsiTypes) +2024-09-07 12:38:48,364 [main] TRACE OperationBuilder - read from EA: OperationBuilder [_containingClass=Authentication, _objData=UmlObjectData [id=50, uuid={EF56EEFA-4DC1-4ce1-8567-805D0F17603A}, since=null, name=getPassword, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _abstract=false, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=null, _eaReturnTypeId=1665, _eaReturnTypeName=P_VISIBLE_STRING64] +2024-09-07 12:38:48,364 [main] TRACE OperationBuilder - read from EA: OperationBuilder [_containingClass=Authentication, _objData=UmlObjectData [id=51, uuid={2AF0B875-978F-4d0a-BEC1-B2DAA6C215AD}, since=null, name=geUserID, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _abstract=false, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=null, _eaReturnTypeId=1665, _eaReturnTypeName=P_VISIBLE_STRING64] +2024-09-07 12:38:48,364 [main] TRACE OperationBuilder - read from EA: OperationBuilder [_containingClass=Authentication, _objData=UmlObjectData [id=52, uuid={3DD3175C-C019-4f8a-A82F-1641C5702FFD}, since=null, name=getViews, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _abstract=false, _static=false, _final=false, _kind=OP_RET_ARRAY, _returnType=null, _eaReturnTypeId=1774, _eaReturnTypeName=AccessView] +2024-09-07 12:38:48,365 [main] DEBUG AssociationEndBuilder - Updated target type to Authentication +2024-09-07 12:38:48,365 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=911, uuid=b56a18e0-eacd-351a-a2a5-306b0f533204, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=912, uuid=2a9d121c-d9c3-3183-abb6-d2cc6bd7a8a7, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=Authentication, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3289, uuid={CAF47EAD-E095-4308-8875-40BFFEE47E22}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,365 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=911, uuid=b56a18e0-eacd-351a-a2a5-306b0f533204, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=912, uuid=2a9d121c-d9c3-3183-abb6-d2cc6bd7a8a7, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=Authentication, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3289, uuid={CAF47EAD-E095-4308-8875-40BFFEE47E22}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to CommonAcsiTypes::Authentication +2024-09-07 12:38:48,365 [main] DEBUG AssociationEndBuilder - Updated target type to Authentication +2024-09-07 12:38:48,365 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=914, uuid=7634ea65-a4e6-3904-9cfd-3f7de18e334a, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=915, uuid=24896ee4-c652-3356-8c12-7852413ea3b4, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=Authentication, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3290, uuid={31BEB254-DD54-415a-9492-3044318CA98D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,365 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=914, uuid=7634ea65-a4e6-3904-9cfd-3f7de18e334a, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=915, uuid=24896ee4-c652-3356-8c12-7852413ea3b4, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=Authentication, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3290, uuid={31BEB254-DD54-415a-9492-3044318CA98D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to CommonAcsiTypes::Authentication +2024-09-07 12:38:48,365 [main] DEBUG AssociationEndBuilder - Updated source type to Authentication +2024-09-07 12:38:48,365 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=917, uuid=da0d1111-d2dc-3d48-9242-e60ebcbaf988, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=Authentication, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=918, uuid=1e056d2b-0ebd-3c87-8c55-0da6ac5d3724, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..*], _navigable=yes], _objData=UmlObjectData [id=3291, uuid={073AC7A9-A1FE-4209-854E-FCD42DCF7B22}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 12:38:48,366 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=917, uuid=da0d1111-d2dc-3d48-9242-e60ebcbaf988, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=Authentication, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=918, uuid=1e056d2b-0ebd-3c87-8c55-0da6ac5d3724, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..*], _navigable=yes], _objData=UmlObjectData [id=3291, uuid={073AC7A9-A1FE-4209-854E-FCD42DCF7B22}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to CommonAcsiTypes::Authentication +2024-09-07 12:38:48,366 [main] DEBUG AssociationEndBuilder - Updated source type to Authentication +2024-09-07 12:38:48,366 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=920, uuid=1283c202-b766-3b73-88cd-d9914d6e38aa, since=null, name=privateAuth, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=Authentication, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=921, uuid=430c3626-b879-3400-9d41-b8a46172e0c0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=unspecified], _objData=UmlObjectData [id=3422, uuid={8E002563-61E8-49cf-87D8-44F188BB906E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,366 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=920, uuid=1283c202-b766-3b73-88cd-d9914d6e38aa, since=null, name=privateAuth, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=Authentication, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=921, uuid=430c3626-b879-3400-9d41-b8a46172e0c0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=unspecified], _objData=UmlObjectData [id=3422, uuid={8E002563-61E8-49cf-87D8-44F188BB906E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to CommonAcsiTypes::Authentication +2024-09-07 12:38:48,366 [main] DEBUG AssociationEndBuilder - Updated source type to Authentication +2024-09-07 12:38:48,366 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=923, uuid=a64baa44-3270-3c92-af89-f369eab89800, since=null, name=publicAuth, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Authentication, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=924, uuid=913fdbc9-c7e8-38b8-84b7-c3492b9bea64, since=null, name=publicEntryID, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=unspecified], _objData=UmlObjectData [id=3423, uuid={0B0CD019-7FF9-4655-A7A2-E9E78FFBE612}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,367 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=923, uuid=a64baa44-3270-3c92-af89-f369eab89800, since=null, name=publicAuth, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Authentication, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=924, uuid=913fdbc9-c7e8-38b8-84b7-c3492b9bea64, since=null, name=publicEntryID, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=unspecified], _objData=UmlObjectData [id=3423, uuid={0B0CD019-7FF9-4655-A7A2-E9E78FFBE612}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to CommonAcsiTypes::Authentication +2024-09-07 12:38:48,367 [main] TRACE ClassBuilder - read from EA: CommonAcsiTypes::Authentication +2024-09-07 12:38:48,367 [main] TRACE ClassBuilder - Class AccessView (5 in package CommonAcsiTypes) +2024-09-07 12:38:48,367 [main] DEBUG AssociationEndBuilder - Updated target type to AccessView +2024-09-07 12:38:48,367 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=917, uuid=da0d1111-d2dc-3d48-9242-e60ebcbaf988, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=Authentication, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=918, uuid=1e056d2b-0ebd-3c87-8c55-0da6ac5d3724, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=AccessView, _multiplicity=[1..*], _navigable=yes], _objData=UmlObjectData [id=3291, uuid={073AC7A9-A1FE-4209-854E-FCD42DCF7B22}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to CommonAcsiTypes::AccessView +2024-09-07 12:38:48,367 [main] TRACE ClassBuilder - read from EA: CommonAcsiTypes::AccessView +2024-09-07 12:38:48,368 [main] TRACE ClassBuilder - Class ReportID (7 in package CommonAcsiTypes) +2024-09-07 12:38:48,368 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CommonAcsiTypes::ReportID, _objData=UmlObjectData [id=3480, uuid={D961FAD3-CB7D-40b4-B627-CE6BEE60B02A}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1666, _eaTypeName=P_VISIBLE_STRING129, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,368 [main] DEBUG AssociationEndBuilder - Updated target type to ReportID +2024-09-07 12:38:48,369 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=920, uuid=1283c202-b766-3b73-88cd-d9914d6e38aa, since=null, name=privateAuth, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=Authentication, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=921, uuid=430c3626-b879-3400-9d41-b8a46172e0c0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=ReportID, _multiplicity=[?..?], _navigable=unspecified], _objData=UmlObjectData [id=3422, uuid={8E002563-61E8-49cf-87D8-44F188BB906E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to CommonAcsiTypes::ReportID +2024-09-07 12:38:48,369 [main] TRACE ClassBuilder - read from EA: CommonAcsiTypes::ReportID +2024-09-07 12:38:48,369 [main] TRACE ClassBuilder - Class EntryID (8 in package CommonAcsiTypes) +2024-09-07 12:38:48,369 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CommonAcsiTypes::EntryID, _objData=UmlObjectData [id=3481, uuid={D3228FA9-B272-4ce2-B085-A15C466C9489}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1770, _eaTypeName=P_OCTET_STRING, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,370 [main] DEBUG AssociationEndBuilder - Updated target type to EntryID +2024-09-07 12:38:48,370 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=923, uuid=a64baa44-3270-3c92-af89-f369eab89800, since=null, name=publicAuth, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Authentication, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=924, uuid=913fdbc9-c7e8-38b8-84b7-c3492b9bea64, since=null, name=publicEntryID, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=EntryID, _multiplicity=[?..?], _navigable=unspecified], _objData=UmlObjectData [id=3423, uuid={0B0CD019-7FF9-4655-A7A2-E9E78FFBE612}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to CommonAcsiTypes::EntryID +2024-09-07 12:38:48,370 [main] TRACE ClassBuilder - read from EA: CommonAcsiTypes::EntryID +2024-09-07 12:38:48,370 [main] TRACE ClassBuilder - Class EntryTime (9 in package CommonAcsiTypes) +2024-09-07 12:38:48,370 [main] TRACE ClassBuilder - read from EA: CommonAcsiTypes::EntryTime +2024-09-07 12:38:48,371 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=AcsiTypes, _depth=3, _eaElementID=1767, _objData=UmlObjectData [id=100, uuid={D453AA70-1C81-4abd-88A9-F861958E6769}, since=null, name=CommonAcsiTypes, alias=, stereotype=, visibility=public, txtDescription='Types implicitly or explicitly defined throughout part 7-2, used only in CoreAcsi or MetaModel, but not in parts 7-3 and 7-4.', htmlDescription='

Types implicitly or explicitly defined throughout part 7-2, used only in CoreAcsi or MetaModel, but not in parts 7-3 and 7-4.

'], _modelId=58, _selfDependent=false, 3_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1768, uuid={ED8223CD-9A7C-4260-9BF0-4C8591BFABCE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: We have modelled service errors, originally defined in 6.1.2.6 ServiceError type enumeration, as exceptions (instead of return parameters). Using exceptions allowed us for: +- an OO way of explicitly defining multiple "error" conditions, and, +- explicit specification of all "error" conditions that can apply to any one service. +We need to decide when working on services (CoreAcsi) on how to proceed with this: +- Keeping exceptions, adding enum, and an attribute on exception giving the corresponding enum literal/value? And also explicitly defining which exception(s) may apply to which service. +- Totally removing exceptions, and somehow incorporating negative response into classes used as return values from service formal arguments? +In every case, we must document the enumerated values, because the semantic of many of them is not clear to a (poor) software engineer...', htmlDescription='

TODO: We have modelled service errors, originally defined in 6.1.2.6 ServiceError type enumeration, as exceptions (instead of return parameters). Using exceptions allowed us for:

  • an OO way of explicitly defining multiple "error" conditions, and,
  • explicit specification of all "error" conditions that can apply to any one service.

We need to decide when working on services (CoreAcsi) on how to proceed with this:

  • Keeping exceptions, adding enum, and an attribute on exception giving the corresponding enum literal/value? And also explicitly defining which exception(s) may apply to which service.
  • Totally removing exceptions, and somehow incorporating negative response into classes used as return values from service formal arguments?

In every case, we must document the enumerated values, because the semantic of many of them is not clear to a (poor) software engineer...

'], _containingPackage=CommonAcsiTypes, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1769, uuid={3D82FEF1-77B0-4982-A9B8-0E99C62D3DF5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Update classes in blue to Ed.2. Possibly more to come after detailed analysis.', htmlDescription='

TODO: Update classes in blue to Ed.2. Possibly more to come after detailed analysis.

'], _containingPackage=CommonAcsiTypes, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1778, uuid={8C2A80C7-34D1-4797-977D-C78CF31CDE06}, since=null, name=CoreAcsi : CoreAcsi, alias=, stereotype=, visibility=public, txtDescription='CoreAcsi : CoreAcsi', htmlDescription='

CoreAcsi : CoreAcsi

'], _containingPackage=CommonAcsiTypes, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=CommonAcsiTypes, _objData=UmlObjectData [id=208, uuid={9C0EB421-7334-4ece-ACC5-6C0E720E63B2}, since=null, name=CommonAcsiTypes, alias=, stereotype=, visibility=public, txtDescription='Types used only in CoreAcsi or MetaModel, but not in parts 7-3 and 7-4.', htmlDescription='

Types used only in CoreAcsi or MetaModel, but not in parts 7-3 and 7-4.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=1, _classes=8 +2024-09-07 12:38:48,371 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_2, _depth=2, _eaElementID=1765, _objData=UmlObjectData [id=99, uuid={25B40E58-28CB-491d-8FD2-AAF5420CAF67}, since=null, name=AcsiTypes, alias=, stereotype=, visibility=public, txtDescription='Types common to several ACSI sub-packages.', htmlDescription='

Types common to several ACSI sub-packages.

'], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=AcsiTypes, _objData=UmlObjectData [id=207, uuid={CA618DB9-D548-4fc1-B2E7-2AE6F2EE786D}, since=null, name=AcsiTypes, alias=, stereotype=, visibility=public, txtDescription='Overview of packages, their contents and dependencies.', htmlDescription='

Overview of packages, their contents and dependencies.

'], _portrait=true, _kind=PACKAGE]], _dependenciesAsSource=1, _dependenciesAsTarget=1, _childPackages=1] +2024-09-07 12:38:48,371 [main] INFO PackageBuilder - processing package MetaModel (10) ... +2024-09-07 12:38:48,372 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=MetaModel, _objData=UmlObjectData [id=218, uuid={EA8FE1C2-3BBB-4b1a-A375-D361A61B8806}, since=null, name=MetaModelClasses, alias=, stereotype=, visibility=public, txtDescription='Overview of meta-model classes. We emphasize two groups of meta-model classes: +- Within the blue frame are those classes that are refined in parts 7-3 and 7-4, i.e., those that represent the data model. +- Within the pink frame are the classes that directly manipulate or refer to the data of logical nodes. +The other classes are control blocks, fully defined in IEC61850-2.', htmlDescription='

Overview of meta-model classes. We emphasize two groups of meta-model classes:

  • Within the blue frame are those classes that are refined in parts 7-3 and 7-4, i.e., those that represent the data model.
  • Within the pink frame are the classes that directly manipulate or refer to the data of logical nodes.

The other classes are control blocks, fully defined in IEC61850-2.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,372 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=MetaModel, _objData=UmlObjectData [id=219, uuid={60A801DD-2905-46a7-AEE1-1F7B4914E50C}, since=null, name=MetaModelRelationships, alias=, stereotype=, visibility=public, txtDescription='The full representation of all ACSI relationships, as defined in Part 7-2.', htmlDescription='

The full representation of all ACSI relationships, as defined in Part 7-2.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,372 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=MetaModel, _objData=UmlObjectData [id=220, uuid={C831274A-F7F7-46d5-8FEC-95178AC6650E}, since=null, name=MetaModelNaming, alias=, stereotype=, visibility=public, txtDescription='Shows naming hierarchy. Highlighted classes are not explicitly defined in the standard.', htmlDescription='

Shows naming hierarchy. Highlighted classes are not explicitly defined in the standard.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,372 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=MetaModel, _objData=UmlObjectData [id=217, uuid={14C7D050-A508-40f5-95B8-5C83BBADB168}, since=null, name=MetaModelDataModel, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the subset of the meta-model with details about LNs and their data. Hyperlinks are provided to an example, and to definitions of concrete classes deriving from the meta-model (in parts 7-4 and 7-3).', htmlDescription='

This diagram shows the subset of the meta-model with details about LNs and their data. Hyperlinks are provided to an example, and to definitions of concrete classes deriving from the meta-model (in parts 7-4 and 7-3).

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,373 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=MetaModel, _objData=UmlObjectData [id=221, uuid={30729B8C-2FAA-41b6-B913-DD00F5E640FC}, since=null, name=MetaModelDataSetsAndControlBlocks, alias=, stereotype=, visibility=public, txtDescription='Shows data sets and control blocks defined in IEC61850-7-2. Highlighted classes are not explicitly defined in the standard.', htmlDescription='

Shows data sets and control blocks defined in IEC61850-7-2. Highlighted classes are not explicitly defined in the standard.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,373 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::MetaModel, _objData=UmlObjectData [id=2549, uuid={8DDA0A46-B4B5-429b-B942-52E274F06ACA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,374 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::MetaModel, _objData=UmlObjectData [id=2612, uuid={22858E00-8E19-47ff-8008-4F59161AEA7F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,374 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::MetaModel, _objData=UmlObjectData [id=2940, uuid={E5F4FF55-D88D-4216-BB8C-AFDA680AADE9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,374 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::MetaModel, _objData=UmlObjectData [id=2948, uuid={2EB94D27-B372-4888-A920-88C823F08BBD}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,374 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::MetaModel, _objData=UmlObjectData [id=3061, uuid={56397421-AB0D-4458-80FC-5FB07F2DD3F2}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,374 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::MetaModel->IEC61850_7_2::AttrValues, _objData=UmlObjectData [id=3171, uuid={EA333334-32A1-48ab-9F19-ADED674571F6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,374 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::MetaModel->IEC61850_7_2::ObjectReferences, _objData=UmlObjectData [id=3172, uuid={C5C582B9-299E-483d-9480-D0C500F8176D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,374 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::MetaModel->IEC61850_7_2::TriggerOptions, _objData=UmlObjectData [id=3173, uuid={855C6728-1BC9-4283-8A19-59ADC04C72DF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,374 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::MetaModel->IEC61850_7_2::CoreTypes, _objData=UmlObjectData [id=3174, uuid={5FE3C8F2-1E89-4705-9543-F7961C8261AE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,374 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::MetaModel->IEC61850_7_2::FunctionalConstraints, _objData=UmlObjectData [id=3175, uuid={24606FEA-EE8B-41c7-B098-E006E81B3F44}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,374 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::MetaModel->IEC61850_7_2::AcsiTypes, _objData=UmlObjectData [id=3176, uuid={18113968-8A0F-43a2-8F30-9621210BBB79}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,374 [main] DEBUG PackageBuilder - Updated target of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::BasicDAs->IEC61850_7_2::MetaModel, _objData=UmlObjectData [id=3299, uuid={79251C03-047F-49a4-8FBC-DA669F5E0A6A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,376 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1830, uuid={D543D4D9-E49F-40ad-B995-3A107B4BD536}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- Directory services should be allowed for FC=SE as well - this is currently not the case according to 61850-7-3, Ed.2.', htmlDescription='

TODO:

  • Directory services should be allowed for FC=SE as well - this is currently not the case according to 61850-7-3, Ed.2.
'], _containingPackage=MetaModel, _otherEndName=] +2024-09-07 12:38:48,377 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1831, uuid={8C76A17B-E8A6-4ec6-8298-D8261FE3C0F4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: Classes *IEC61850Object have been introduced to facilitate instantiation of a meta-model for the use case where no SCL is available (e.g., when connecting directly to one or more IEDs with IEC61850 ACSI SERVERs without any previous configuration).', htmlDescription='

Modelling note: Classes *IEC61850Object have been introduced to facilitate instantiation of a meta-model for the use case where no SCL is available (e.g., when connecting directly to one or more IEDs with IEC61850 ACSI SERVERs without any previous configuration).

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-07 12:38:48,377 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1833, uuid={1695C190-3DB9-46c9-B2A3-463C26BEF9DD}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Except for SGCB, control blocks refer to a data set and listen to changes in the values of data set members (i.e., leaf attributes when unfolding logical nodes' data) in order to produce some event: +- RCBs produce reports on data value changes as appropriate for non-time-critical clients +- LCBs produce log entries +- GCBs produce GOOSE messages (similar to RCB reports, but for time-critical clients) +- SVCBs produce messages containing sampled values (also for time-critical clients). +Finally, SGCB models the ability to edit IED settings (e.g., configuration parameters for protection algorithms) - they also work on leaf attributes of logical nodes, but those are not specified in a data set. +Modelling note: Control blocks in this MetaModel provide pure navigation capability, while their configuration by client is available as ACSI service. It is up to applications to extend this MetaModel in the desired way to implement the functionality similar to that provided by ACSI services.', htmlDescription='

Except for SGCB, control blocks refer to a data set and listen to changes in the values of data set members (i.e., leaf attributes when unfolding logical nodes' data) in order to produce some event:

- RCBs produce reports on data value changes as appropriate for non-time-critical clients

- LCBs produce log entries

- GCBs produce GOOSE messages (similar to RCB reports, but for time-critical clients)

- SVCBs produce messages containing sampled values (also for time-critical clients).

Finally, SGCB models the ability to edit IED settings (e.g., configuration parameters for protection algorithms) - they also work on leaf attributes of logical nodes, but those are not specified in a data set.

Modelling note: Control blocks in this MetaModel provide pure navigation capability, while their configuration by client is available as ACSI service. It is up to applications to extend this MetaModel in the desired way to implement the functionality similar to that provided by ACSI services.

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-07 12:38:48,379 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1834, uuid={0E537513-A86C-4374-B08C-A61D599461C5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Datasets are list of signal references, used for logging and eventing on data and/or quality change. They allow the application to "read" that list of references once, and then receive value updates as ordered lists of values. In the meta-model, datasets contain thus only information on contained references, as well as the naming-related services. Communication services are defined in CoreAcsi API.', htmlDescription='

Datasets are list of signal references, used for logging and eventing on data and/or quality change. They allow the application to "read" that list of references once, and then receive value updates as ordered lists of values. In the meta-model, datasets contain thus only information on contained references, as well as the naming-related services. Communication services are defined in CoreAcsi API.

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-07 12:38:48,379 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1878, uuid={049E7F63-9C87-465e-9BF6-5E03046F685B}, since=null, name=DerivedCDCs : DerivedCDCs, alias=, stereotype=, visibility=public, txtDescription='DerivedCDCs : DerivedCDCs', htmlDescription='

DerivedCDCs : DerivedCDCs

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-07 12:38:48,379 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1879, uuid={05AAA379-8620-4bf0-9374-95F42FAFA135}, since=null, name=MetaModel :MetaModelFCsAndTrgOps, alias=, stereotype=, visibility=public, txtDescription='MetaModel : MetaModelFCsAndTrgOps', htmlDescription='

MetaModel : MetaModelFCsAndTrgOps

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-07 12:38:48,379 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1880, uuid={112FC848-042A-4696-99ED-8E35A13F87A4}, since=null, name=MetaModel :MetaModelNaming, alias=, stereotype=, visibility=public, txtDescription='MetaModel : MetaModelNaming', htmlDescription='

MetaModel : MetaModelNaming

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-07 12:38:48,379 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1881, uuid={2200A07E-E0BC-46ee-B7FB-832A35C51ACB}, since=null, name=LogicalNodeEnums :DOEnums-1, alias=, stereotype=, visibility=public, txtDescription='DOEnums : DOEnums-1', htmlDescription='

DOEnums : DOEnums-1

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-07 12:38:48,379 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1882, uuid={3CEEBEF3-65F0-45bf-956A-AAFF0BB39A6E}, since=null, name=BasicDAs : BasicDAs, alias=, stereotype=, visibility=public, txtDescription='BasicDAs : BasicDAs', htmlDescription='

BasicDAs : BasicDAs

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-07 12:38:48,391 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1883, uuid={3D42A8E2-6E81-482d-B902-79859AB23652}, since=null, name=LogicalNodes : LogicalNodes, alias=, stereotype=, visibility=public, txtDescription='LogicalNodes : LogicalNodes', htmlDescription='

LogicalNodes : LogicalNodes

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-07 12:38:48,391 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1884, uuid={4651CC45-E97C-474c-96E5-E964AEE537AE}, since=null, name=CommonDataClasses : CommonDataClasses, alias=, stereotype=, visibility=public, txtDescription='CommonDataClasses : CommonDataClasses', htmlDescription='

CommonDataClasses : CommonDataClasses

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-07 12:38:48,391 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1885, uuid={485DE912-F88A-4727-ABC3-E12BDD3137CA}, since=null, name=IEC61850 : DataModelExample, alias=, stereotype=, visibility=public, txtDescription='IEC61850 : DataModelExample', htmlDescription='

IEC61850 : DataModelExample

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-07 12:38:48,391 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1886, uuid={4F5B7A51-D0D5-46eb-9755-D89E38C8D44A}, since=null, name=DerivedDAs : DerivedDAs, alias=, stereotype=, visibility=public, txtDescription='DerivedDAs : DerivedDAs', htmlDescription='

DerivedDAs : DerivedDAs

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-07 12:38:48,392 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1887, uuid={7010DA64-6EFF-4ecc-906B-D63D21B68B3D}, since=null, name=LogicalNodeEnums :DOEnums-3, alias=, stereotype=, visibility=public, txtDescription='DOEnums : DOEnums-3', htmlDescription='

DOEnums : DOEnums-3

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-07 12:38:48,392 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1888, uuid={77539A0B-E854-4966-82D3-2AC914854572}, since=null, name=DAEnums : DAEnums-1, alias=, stereotype=, visibility=public, txtDescription='DAEnums : DAEnums-1', htmlDescription='

DAEnums : DAEnums-1

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-07 12:38:48,392 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1889, uuid={777613E1-5BED-4530-A6C1-909690FCEF4E}, since=null, name=ObjectReferences : ObjectReferences, alias=, stereotype=, visibility=public, txtDescription='ObjectReferences : ObjectReferences', htmlDescription='

ObjectReferences : ObjectReferences

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-07 12:38:48,392 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1890, uuid={82D225D9-1F34-4a05-840E-0EA119432E5C}, since=null, name=CoreTypes : CoreTypes, alias=, stereotype=, visibility=public, txtDescription='CoreTypes : CoreTypes', htmlDescription='

CoreTypes : CoreTypes

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-07 12:38:48,392 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1891, uuid={86223FF2-1449-43c7-83BA-3DB43365033B}, since=null, name=ConstructedDAs : ConstructedDAs, alias=, stereotype=, visibility=public, txtDescription='ConstructedDAs : ConstructedDAs', htmlDescription='

ConstructedDAs : ConstructedDAs

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-07 12:38:48,392 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1892, uuid={A298ABDC-AA9E-4b4b-8B6A-E5C5C539F90F}, since=null, name=LogicalNodeEnums :DOEnums-2, alias=, stereotype=, visibility=public, txtDescription='DOEnums : DOEnums-2', htmlDescription='

DOEnums : DOEnums-2

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-07 12:38:48,392 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=1893, uuid={A34DDCC5-BBB7-443d-92EF-22F3B2CADE16}, since=null, name=Data model (logical nodes, common data classes, functionally constrained data attributes and data attributes), alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=MetaModel, _otherEndName=] +2024-09-07 12:38:48,392 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1894, uuid={B2AD30FE-ADAE-495a-8589-272241F89E2F}, since=null, name=FCDAs : FCDAs, alias=, stereotype=, visibility=public, txtDescription='FCDAs : FCDAs', htmlDescription='

FCDAs : FCDAs

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-07 12:38:48,393 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1895, uuid={B4020DF2-0ADE-443d-82D1-19018AF93AEE}, since=null, name=ImplicitDAs : ImplicitDAs, alias=, stereotype=, visibility=public, txtDescription='ImplicitDAs : ImplicitDAs', htmlDescription='

ImplicitDAs : ImplicitDAs

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-07 12:38:48,393 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1896, uuid={C1318DFD-188F-43f2-9064-60021D23A7AF}, since=null, name=MetaModel :MetaModelDataSetsAndControlBlocks, alias=, stereotype=, visibility=public, txtDescription='MetaModel : MetaModelDataSetsAndControlBlocks', htmlDescription='

MetaModel : MetaModelDataSetsAndControlBlocks

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-07 12:38:48,393 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1897, uuid={C39E2CF4-C5E8-4816-8777-01F58112789C}, since=null, name=MetaModel : MetaModelDataModel, alias=, stereotype=, visibility=public, txtDescription='MetaModel : MetaModelDataModel', htmlDescription='

MetaModel : MetaModelDataModel

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-07 12:38:48,393 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=1898, uuid={F6822C92-5DD8-48be-A724-A584C56FF7E0}, since=null, name=Directly related to data model, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=MetaModel, _otherEndName=] +2024-09-07 12:38:48,393 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1899, uuid={F6EF86F0-4241-402f-84DB-0F3BACF329BA}, since=null, name=MetaModel :MetaModelRelationships, alias=, stereotype=, visibility=public, txtDescription='MetaModel : MetaModelRelationships', htmlDescription='

MetaModel : MetaModelRelationships

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-07 12:38:48,393 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1900, uuid={FFAB6E12-0255-4fed-A1DB-D18F797B7AED}, since=null, name=DAEnums : DAEnums-2, alias=, stereotype=, visibility=public, txtDescription='DAEnums : DAEnums-2', htmlDescription='

DAEnums : DAEnums-2

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-07 12:38:48,393 [main] TRACE ClassBuilder - Class IEC61850Object (1 in package MetaModel) +2024-09-07 12:38:48,394 [main] TRACE ClassBuilder - read from EA: MetaModel::IEC61850Object +2024-09-07 12:38:48,394 [main] TRACE ClassBuilder - Class HierarchyIEC61850Object (2 in package MetaModel) +2024-09-07 12:38:48,394 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::HierarchyIEC61850Object, _objData=UmlObjectData [id=3584, uuid={C32A6B6B-F4DC-4498-A469-C006B9625420}, since=null, name=parent, alias=, stereotype=, visibility=public, txtDescription='Parent of this hierarchy object.', htmlDescription='

Parent of this hierarchy object.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1835, _eaTypeName=IEC61850Object, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,394 [main] DEBUG ClassBuilder - Adding HierarchyIEC61850Object as subclass of IEC61850Object +2024-09-07 12:38:48,394 [main] TRACE ClassBuilder - read from EA: MetaModel::HierarchyIEC61850Object +2024-09-07 12:38:48,395 [main] TRACE ClassBuilder - Class NamedIEC61850Object (3 in package MetaModel) +2024-09-07 12:38:48,395 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::NamedIEC61850Object, _objData=UmlObjectData [id=3585, uuid={E8F8F2B7-045C-402f-BA7A-4880C9570B06}, since=null, name=objName, alias=, stereotype=, visibility=public, txtDescription='Object name.', htmlDescription='

Object name.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,395 [main] DEBUG ClassBuilder - Adding NamedIEC61850Object as subclass of HierarchyIEC61850Object +2024-09-07 12:38:48,395 [main] TRACE ClassBuilder - read from EA: MetaModel::NamedIEC61850Object +2024-09-07 12:38:48,395 [main] TRACE ClassBuilder - Class IED (4 in package MetaModel) +2024-09-07 12:38:48,395 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::IED, _objData=UmlObjectData [id=3586, uuid={E22C75AC-F551-4b8c-B5E7-24BE86D31EF0}, since=null, name=name, alias=, stereotype=, visibility=public, txtDescription='Name of this IED, unambiguously identifying it within the substation. +Modelling note: This is not defined in the standard, but is useful in applications that deal with more then one IED.', htmlDescription='

Name of this IED, unambiguously identifying it within the substation.

Modelling note: This is not defined in the standard, but is useful in applications that deal with more then one IED.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1665, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,396 [main] DEBUG AssociationEndBuilder - Updated source type to IED +2024-09-07 12:38:48,396 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=977, uuid=cb169ad4-3224-3879-b41c-caa51a820c58, since=null, name=IED, alias=, stereotype=, visibility=public, txtDescription='IED providing this server.', htmlDescription='

IED providing this server.

'], _type=IED, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=978, uuid=cd79ff9a-2c41-3e45-a4c2-d1f848c67f94, since=null, name=SERVERs, alias=, stereotype=, visibility=public, txtDescription='All servers within this IED.', htmlDescription='

All servers within this IED.

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3249, uuid={7678C3FF-3EEF-4837-A876-DC57EC8A839A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,397 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=977, uuid=cb169ad4-3224-3879-b41c-caa51a820c58, since=null, name=IED, alias=, stereotype=, visibility=public, txtDescription='IED providing this server.', htmlDescription='

IED providing this server.

'], _type=IED, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=978, uuid=cd79ff9a-2c41-3e45-a4c2-d1f848c67f94, since=null, name=SERVERs, alias=, stereotype=, visibility=public, txtDescription='All servers within this IED.', htmlDescription='

All servers within this IED.

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3249, uuid={7678C3FF-3EEF-4837-A876-DC57EC8A839A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::IED +2024-09-07 12:38:48,397 [main] DEBUG ClassBuilder - Adding IED as subclass of HierarchyIEC61850Object +2024-09-07 12:38:48,397 [main] TRACE ClassBuilder - read from EA: MetaModel::IED +2024-09-07 12:38:48,397 [main] TRACE ClassBuilder - Class SERVER (5 in package MetaModel) +2024-09-07 12:38:48,397 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::SERVER, _objData=UmlObjectData [id=3587, uuid={060F6381-464E-42a5-AECB-7413FD53EB45}, since=null, name=name, alias=, stereotype=, visibility=public, txtDescription='Name of this server, unambiguously identifying it within an IED. +Modelling note: This is not defined in the standard, but is useful in applications that deal with more then one SERVER per IED.', htmlDescription='

Name of this server, unambiguously identifying it within an IED.

Modelling note: This is not defined in the standard, but is useful in applications that deal with more then one SERVER per IED.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1665, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,397 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::SERVER, _objData=UmlObjectData [id=3588, uuid={8C8AC9D6-5A54-4110-A15C-61F37484AB7D}, since=null, name=serviceAccessPoints, alias=, stereotype=, visibility=public, txtDescription='All service access points of the server, unambiguously identifying it within a system. +Modelling note 1: Corresponds to SERVER.ServiceAccessPoint. +Modelling note 2: Original documentation reads: "Shall identify a SERVER within the scope of a system. NOTE: The ServiceAccessPoint is an abstraction of an address used to identify the server in the underlying SCSM. The type depends on the SCSM and shall be defined there. Although most services require a specific ServiceAccessPoint to address a server, it has not been included explicitly in the service parameter tables throughout this part of the standard." Currently, here is defined the type IPAddress; see also MulticastAddress.', htmlDescription='

All service access points of the server, unambiguously identifying it within a system.

Modelling note 1: Corresponds to SERVER.ServiceAccessPoint.

Modelling note 2: Original documentation reads: "Shall identify a SERVER within the scope of a system. NOTE: The ServiceAccessPoint is an abstraction of an address used to identify the server in the underlying SCSM. The type depends on the SCSM and shall be defined there. Although most services require a specific ServiceAccessPoint to address a server, it has not been included explicitly in the service parameter tables throughout this part of the standard." Currently, here is defined the type IPAddress; see also MulticastAddress.

'], _isConst=false, _isStatic=false, _multiplicity=[1..*], _initValue=, _eaTypeId=1771, _eaTypeName=IPAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,398 [main] DEBUG AssociationEndBuilder - Updated source type to SERVER +2024-09-07 12:38:48,398 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=983, uuid=6aab1270-668d-3cac-bcef-2566a1c5f569, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=SERVER, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=984, uuid=f05f85ae-88c5-35eb-852e-07f5d4493b43, since=null, name=MCAAs, alias=, stereotype=, visibility=public, txtDescription='All the clients with which the server maintains a multicast application association. +Modelling note: Corresponds to SERVER.MCAppAssociation.', htmlDescription='

All the clients with which the server maintains a multicast application association.

Modelling note: Corresponds to SERVER.MCAppAssociation.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3244, uuid={D04B1B2A-7259-4d38-9B9D-5FA4893DF2CE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,398 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=983, uuid=6aab1270-668d-3cac-bcef-2566a1c5f569, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=SERVER, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=984, uuid=f05f85ae-88c5-35eb-852e-07f5d4493b43, since=null, name=MCAAs, alias=, stereotype=, visibility=public, txtDescription='All the clients with which the server maintains a multicast application association. +Modelling note: Corresponds to SERVER.MCAppAssociation.', htmlDescription='

All the clients with which the server maintains a multicast application association.

Modelling note: Corresponds to SERVER.MCAppAssociation.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3244, uuid={D04B1B2A-7259-4d38-9B9D-5FA4893DF2CE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::SERVER +2024-09-07 12:38:48,398 [main] DEBUG AssociationEndBuilder - Updated source type to SERVER +2024-09-07 12:38:48,399 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=986, uuid=fe7ee8fc-1959-3c72-94fa-21c4840dff0a, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='Server that hosts this file.', htmlDescription='

Server that hosts this file.

'], _type=SERVER, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=987, uuid=3270eb7e-b5b0-39ac-9f02-6f3b15106228, since=null, name=FILEs, alias=, stereotype=, visibility=public, txtDescription='All files within the server. +Modelling note: Corresponds to SERVER.File.', htmlDescription='

All files within the server.

Modelling note: Corresponds to SERVER.File.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3245, uuid={BD48CF11-B1F9-4a40-B020-BE7D3C205E87}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,399 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=986, uuid=fe7ee8fc-1959-3c72-94fa-21c4840dff0a, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='Server that hosts this file.', htmlDescription='

Server that hosts this file.

'], _type=SERVER, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=987, uuid=3270eb7e-b5b0-39ac-9f02-6f3b15106228, since=null, name=FILEs, alias=, stereotype=, visibility=public, txtDescription='All files within the server. +Modelling note: Corresponds to SERVER.File.', htmlDescription='

All files within the server.

Modelling note: Corresponds to SERVER.File.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3245, uuid={BD48CF11-B1F9-4a40-B020-BE7D3C205E87}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::SERVER +2024-09-07 12:38:48,399 [main] DEBUG AssociationEndBuilder - Updated source type to SERVER +2024-09-07 12:38:48,400 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=989, uuid=a1140a3d-0df1-381e-a4ae-954d935e8926, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=SERVER, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=990, uuid=5fa76d69-62a7-33da-9639-4f685ed9cbcc, since=null, name=TPAAs, alias=, stereotype=, visibility=public, txtDescription='All clients with which the server maintains a two party application association. +Modelling note: Corresponds to SERVER.TPAppAssociation.', htmlDescription='

All clients with which the server maintains a two party application association.

Modelling note: Corresponds to SERVER.TPAppAssociation.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3246, uuid={4D043A51-4541-4252-97A5-E280E52416EC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,400 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=989, uuid=a1140a3d-0df1-381e-a4ae-954d935e8926, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=SERVER, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=990, uuid=5fa76d69-62a7-33da-9639-4f685ed9cbcc, since=null, name=TPAAs, alias=, stereotype=, visibility=public, txtDescription='All clients with which the server maintains a two party application association. +Modelling note: Corresponds to SERVER.TPAppAssociation.', htmlDescription='

All clients with which the server maintains a two party application association.

Modelling note: Corresponds to SERVER.TPAppAssociation.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3246, uuid={4D043A51-4541-4252-97A5-E280E52416EC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::SERVER +2024-09-07 12:38:48,400 [main] DEBUG AssociationEndBuilder - Updated source type to SERVER +2024-09-07 12:38:48,400 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=992, uuid=4c73668e-534f-38ce-97a9-1214069d7dc4, since=null, name=SERVER, alias=, stereotype=, visibility=public, txtDescription='Server that contains this logical device.', htmlDescription='

Server that contains this logical device.

'], _type=SERVER, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=993, uuid=61735bea-9856-3d36-bcac-5fb78a87b7c9, since=null, name=LDs, alias=, stereotype=, visibility=public, txtDescription='All logical devices within the server. +Modelling note: Corresponds to SERVER.LogicalDevice.', htmlDescription='

All logical devices within the server.

Modelling note: Corresponds to SERVER.LogicalDevice.

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3247, uuid={222A684C-E024-4d07-A10A-FEB2E101E186}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,400 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=992, uuid=4c73668e-534f-38ce-97a9-1214069d7dc4, since=null, name=SERVER, alias=, stereotype=, visibility=public, txtDescription='Server that contains this logical device.', htmlDescription='

Server that contains this logical device.

'], _type=SERVER, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=993, uuid=61735bea-9856-3d36-bcac-5fb78a87b7c9, since=null, name=LDs, alias=, stereotype=, visibility=public, txtDescription='All logical devices within the server. +Modelling note: Corresponds to SERVER.LogicalDevice.', htmlDescription='

All logical devices within the server.

Modelling note: Corresponds to SERVER.LogicalDevice.

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3247, uuid={222A684C-E024-4d07-A10A-FEB2E101E186}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::SERVER +2024-09-07 12:38:48,400 [main] DEBUG AssociationEndBuilder - Updated target type to SERVER +2024-09-07 12:38:48,400 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=977, uuid=cb169ad4-3224-3879-b41c-caa51a820c58, since=null, name=IED, alias=, stereotype=, visibility=public, txtDescription='IED providing this server.', htmlDescription='

IED providing this server.

'], _type=IED, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=978, uuid=cd79ff9a-2c41-3e45-a4c2-d1f848c67f94, since=null, name=SERVERs, alias=, stereotype=, visibility=public, txtDescription='All servers within this IED.', htmlDescription='

All servers within this IED.

'], _type=SERVER, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3249, uuid={7678C3FF-3EEF-4837-A876-DC57EC8A839A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::SERVER +2024-09-07 12:38:48,400 [main] DEBUG ClassBuilder - Adding SERVER as subclass of HierarchyIEC61850Object +2024-09-07 12:38:48,400 [main] TRACE ClassBuilder - read from EA: MetaModel::SERVER +2024-09-07 12:38:48,400 [main] TRACE ClassBuilder - Class TPAA (6 in package MetaModel) +2024-09-07 12:38:48,401 [main] DEBUG AssociationEndBuilder - Updated source type to TPAA +2024-09-07 12:38:48,401 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=996, uuid=33873e04-2b68-3050-9013-5d6a42a0a6e5, since=null, name=TPAA, alias=, stereotype=, visibility=public, txtDescription='Two-party application association that contains this non-persistent data set.', htmlDescription='

Two-party application association that contains this non-persistent data set.

'], _type=TPAA, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=997, uuid=5880d6da-097a-3fed-aae8-1381cf23315b, since=null, name=NonPersistentDSs, alias=, stereotype=, visibility=public, txtDescription='All non-persistent data sets contained within this two-party application association.', htmlDescription='

All non-persistent data sets contained within this two-party application association.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3242, uuid={B9ECE073-A02C-48da-93A7-2B8F2E8C9059}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,401 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=996, uuid=33873e04-2b68-3050-9013-5d6a42a0a6e5, since=null, name=TPAA, alias=, stereotype=, visibility=public, txtDescription='Two-party application association that contains this non-persistent data set.', htmlDescription='

Two-party application association that contains this non-persistent data set.

'], _type=TPAA, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=997, uuid=5880d6da-097a-3fed-aae8-1381cf23315b, since=null, name=NonPersistentDSs, alias=, stereotype=, visibility=public, txtDescription='All non-persistent data sets contained within this two-party application association.', htmlDescription='

All non-persistent data sets contained within this two-party application association.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3242, uuid={B9ECE073-A02C-48da-93A7-2B8F2E8C9059}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::TPAA +2024-09-07 12:38:48,401 [main] DEBUG AssociationEndBuilder - Updated target type to TPAA +2024-09-07 12:38:48,401 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=989, uuid=a1140a3d-0df1-381e-a4ae-954d935e8926, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=SERVER, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=990, uuid=5fa76d69-62a7-33da-9639-4f685ed9cbcc, since=null, name=TPAAs, alias=, stereotype=, visibility=public, txtDescription='All clients with which the server maintains a two party application association. +Modelling note: Corresponds to SERVER.TPAppAssociation.', htmlDescription='

All clients with which the server maintains a two party application association.

Modelling note: Corresponds to SERVER.TPAppAssociation.

'], _type=TPAA, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3246, uuid={4D043A51-4541-4252-97A5-E280E52416EC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::TPAA +2024-09-07 12:38:48,401 [main] DEBUG AssociationEndBuilder - Updated source type to TPAA +2024-09-07 12:38:48,401 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=914, uuid=7634ea65-a4e6-3904-9cfd-3f7de18e334a, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=TPAA, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=915, uuid=24896ee4-c652-3356-8c12-7852413ea3b4, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=Authentication, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3290, uuid={31BEB254-DD54-415a-9492-3044318CA98D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::TPAA +2024-09-07 12:38:48,401 [main] DEBUG ClassBuilder - Adding TPAA as subclass of IEC61850Object +2024-09-07 12:38:48,401 [main] TRACE ClassBuilder - read from EA: MetaModel::TPAA +2024-09-07 12:38:48,401 [main] TRACE ClassBuilder - Class MCAA (7 in package MetaModel) +2024-09-07 12:38:48,402 [main] DEBUG AssociationEndBuilder - Updated target type to MCAA +2024-09-07 12:38:48,402 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=983, uuid=6aab1270-668d-3cac-bcef-2566a1c5f569, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=SERVER, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=984, uuid=f05f85ae-88c5-35eb-852e-07f5d4493b43, since=null, name=MCAAs, alias=, stereotype=, visibility=public, txtDescription='All the clients with which the server maintains a multicast application association. +Modelling note: Corresponds to SERVER.MCAppAssociation.', htmlDescription='

All the clients with which the server maintains a multicast application association.

Modelling note: Corresponds to SERVER.MCAppAssociation.

'], _type=MCAA, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3244, uuid={D04B1B2A-7259-4d38-9B9D-5FA4893DF2CE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::MCAA +2024-09-07 12:38:48,402 [main] DEBUG AssociationEndBuilder - Updated source type to MCAA +2024-09-07 12:38:48,402 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=911, uuid=b56a18e0-eacd-351a-a2a5-306b0f533204, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=MCAA, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=912, uuid=2a9d121c-d9c3-3183-abb6-d2cc6bd7a8a7, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=Authentication, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3289, uuid={CAF47EAD-E095-4308-8875-40BFFEE47E22}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::MCAA +2024-09-07 12:38:48,402 [main] DEBUG ClassBuilder - Adding MCAA as subclass of IEC61850Object +2024-09-07 12:38:48,402 [main] TRACE ClassBuilder - read from EA: MetaModel::MCAA +2024-09-07 12:38:48,421 [main] TRACE ClassBuilder - Class LD (8 in package MetaModel) +2024-09-07 12:38:48,422 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::LD, _objData=UmlObjectData [id=3589, uuid={877F93ED-1944-4701-A29D-57C6810B68CB}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1694, _eaTypeName=LDReference, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,422 [main] DEBUG AssociationEndBuilder - Updated source type to LD +2024-09-07 12:38:48,422 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1002, uuid=2a2d94c6-5bc5-3b4f-a3eb-8ba85bbf0fda, since=null, name=LD, alias=, stereotype=, visibility=public, txtDescription='Logical device that contains this domain logical node.', htmlDescription='

Logical device that contains this domain logical node.

'], _type=LD, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1003, uuid=88c8ad81-3e70-3bd6-b58d-176b991035bb, since=null, name=LNDOMs, alias=, stereotype=, visibility=public, txtDescription='All domain logical nodes contained within this logical device.', htmlDescription='

All domain logical nodes contained within this logical device.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3237, uuid={EA8D56D0-764A-4bd8-9215-10E541F2BCF3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,422 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1002, uuid=2a2d94c6-5bc5-3b4f-a3eb-8ba85bbf0fda, since=null, name=LD, alias=, stereotype=, visibility=public, txtDescription='Logical device that contains this domain logical node.', htmlDescription='

Logical device that contains this domain logical node.

'], _type=LD, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1003, uuid=88c8ad81-3e70-3bd6-b58d-176b991035bb, since=null, name=LNDOMs, alias=, stereotype=, visibility=public, txtDescription='All domain logical nodes contained within this logical device.', htmlDescription='

All domain logical nodes contained within this logical device.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3237, uuid={EA8D56D0-764A-4bd8-9215-10E541F2BCF3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::LD +2024-09-07 12:38:48,422 [main] DEBUG AssociationEndBuilder - Updated source type to LD +2024-09-07 12:38:48,422 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1005, uuid=80eaa78c-0d7a-3689-a506-56d1057b11a6, since=null, name=LD, alias=, stereotype=, visibility=public, txtDescription='Logical device that contains this device logical node.', htmlDescription='

Logical device that contains this device logical node.

'], _type=LD, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1006, uuid=5b67250a-8925-33fa-aa8a-c97ffc0d9310, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='Device logical node contained within this logical device.', htmlDescription='

Device logical node contained within this logical device.

'], _type=null, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3238, uuid={58088780-AE38-465b-92C6-DF8923DEBADA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,423 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1005, uuid=80eaa78c-0d7a-3689-a506-56d1057b11a6, since=null, name=LD, alias=, stereotype=, visibility=public, txtDescription='Logical device that contains this device logical node.', htmlDescription='

Logical device that contains this device logical node.

'], _type=LD, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1006, uuid=5b67250a-8925-33fa-aa8a-c97ffc0d9310, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='Device logical node contained within this logical device.', htmlDescription='

Device logical node contained within this logical device.

'], _type=null, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3238, uuid={58088780-AE38-465b-92C6-DF8923DEBADA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::LD +2024-09-07 12:38:48,423 [main] DEBUG AssociationEndBuilder - Updated source type to LD +2024-09-07 12:38:48,423 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1008, uuid=f342deb7-6bc7-3383-b781-4619d8d326dc, since=null, name=LD, alias=, stereotype=, visibility=public, txtDescription='Logical device that contains this physical device logical node.', htmlDescription='

Logical device that contains this physical device logical node.

'], _type=LD, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1009, uuid=dc9432da-d9a4-391b-864a-519a2dcd1421, since=null, name=LNPHD, alias=, stereotype=, visibility=public, txtDescription='Physical device logical node contained within this logical device.', htmlDescription='

Physical device logical node contained within this logical device.

'], _type=null, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3239, uuid={351DD042-6AD0-47f6-A9D1-9EA465461A1E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,423 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1008, uuid=f342deb7-6bc7-3383-b781-4619d8d326dc, since=null, name=LD, alias=, stereotype=, visibility=public, txtDescription='Logical device that contains this physical device logical node.', htmlDescription='

Logical device that contains this physical device logical node.

'], _type=LD, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1009, uuid=dc9432da-d9a4-391b-864a-519a2dcd1421, since=null, name=LNPHD, alias=, stereotype=, visibility=public, txtDescription='Physical device logical node contained within this logical device.', htmlDescription='

Physical device logical node contained within this logical device.

'], _type=null, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3239, uuid={351DD042-6AD0-47f6-A9D1-9EA465461A1E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::LD +2024-09-07 12:38:48,423 [main] DEBUG AssociationEndBuilder - Updated target type to LD +2024-09-07 12:38:48,423 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=992, uuid=4c73668e-534f-38ce-97a9-1214069d7dc4, since=null, name=SERVER, alias=, stereotype=, visibility=public, txtDescription='Server that contains this logical device.', htmlDescription='

Server that contains this logical device.

'], _type=SERVER, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=993, uuid=61735bea-9856-3d36-bcac-5fb78a87b7c9, since=null, name=LDs, alias=, stereotype=, visibility=public, txtDescription='All logical devices within the server. +Modelling note: Corresponds to SERVER.LogicalDevice.', htmlDescription='

All logical devices within the server.

Modelling note: Corresponds to SERVER.LogicalDevice.

'], _type=LD, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3247, uuid={222A684C-E024-4d07-A10A-FEB2E101E186}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::LD +2024-09-07 12:38:48,423 [main] DEBUG ClassBuilder - Adding LD as subclass of NamedIEC61850Object +2024-09-07 12:38:48,423 [main] TRACE ClassBuilder - read from EA: MetaModel::LD +2024-09-07 12:38:48,423 [main] TRACE ClassBuilder - Class LN (9 in package MetaModel) +2024-09-07 12:38:48,423 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::LN, _objData=UmlObjectData [id=3590, uuid={B9201E1F-0FBA-4eee-A567-31539F09E245}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1696, _eaTypeName=LNReference, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,424 [main] DEBUG AssociationEndBuilder - Updated source type to LN +2024-09-07 12:38:48,424 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1013, uuid=f02885d1-1972-3e41-a471-a8ae4471db15, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this common data class.', htmlDescription='

Logical node that contains this common data class.

'], _type=LN, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1014, uuid=2a6fc3f6-97e0-3b10-a832-cfe6bb54065c, since=null, name=CDCs, alias=, stereotype=, visibility=public, txtDescription='All common data classes contained within the logical node. +Example of references for an XCBR: +myLD3/XCBR1.Pos +myLD3/XCBR1.Loc +myLD3/XCBR1.CBOpCap +...', htmlDescription='

All common data classes contained within the logical node.

Example of references for an XCBR:

myLD3/XCBR1.Pos

myLD3/XCBR1.Loc

myLD3/XCBR1.CBOpCap

...

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3230, uuid={DA3E0358-0E30-4308-8391-CC6F3D34D501}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,424 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1013, uuid=f02885d1-1972-3e41-a471-a8ae4471db15, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this common data class.', htmlDescription='

Logical node that contains this common data class.

'], _type=LN, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1014, uuid=2a6fc3f6-97e0-3b10-a832-cfe6bb54065c, since=null, name=CDCs, alias=, stereotype=, visibility=public, txtDescription='All common data classes contained within the logical node. +Example of references for an XCBR: +myLD3/XCBR1.Pos +myLD3/XCBR1.Loc +myLD3/XCBR1.CBOpCap +...', htmlDescription='

All common data classes contained within the logical node.

Example of references for an XCBR:

myLD3/XCBR1.Pos

myLD3/XCBR1.Loc

myLD3/XCBR1.CBOpCap

...

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3230, uuid={DA3E0358-0E30-4308-8391-CC6F3D34D501}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::LN +2024-09-07 12:38:48,424 [main] DEBUG AssociationEndBuilder - Updated source type to LN +2024-09-07 12:38:48,424 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1016, uuid=598e95ae-dfa7-39fb-88a4-4b35a32d16a6, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this data set.', htmlDescription='

Logical node that contains this data set.

'], _type=LN, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1017, uuid=ad95f35b-687c-3ff8-8d6f-753ec8310166, since=null, name=LNOwnedDSs, alias=, stereotype=, visibility=public, txtDescription='All datasets contained within the logical node. +Modelling note: To distinguish between data sets effectively contained by LN, and non-persistent data sets (which are owned by the TPAA over which they have been created), we introduced an abstract LNOwnedDS class, which excludes non-persistent DSs.', htmlDescription='

All datasets contained within the logical node.

Modelling note: To distinguish between data sets effectively contained by LN, and non-persistent data sets (which are owned by the TPAA over which they have been created), we introduced an abstract LNOwnedDS class, which excludes non-persistent DSs.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3231, uuid={7F7F081B-F2D6-484c-963B-F44D4FE8F9CC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,424 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1016, uuid=598e95ae-dfa7-39fb-88a4-4b35a32d16a6, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this data set.', htmlDescription='

Logical node that contains this data set.

'], _type=LN, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1017, uuid=ad95f35b-687c-3ff8-8d6f-753ec8310166, since=null, name=LNOwnedDSs, alias=, stereotype=, visibility=public, txtDescription='All datasets contained within the logical node. +Modelling note: To distinguish between data sets effectively contained by LN, and non-persistent data sets (which are owned by the TPAA over which they have been created), we introduced an abstract LNOwnedDS class, which excludes non-persistent DSs.', htmlDescription='

All datasets contained within the logical node.

Modelling note: To distinguish between data sets effectively contained by LN, and non-persistent data sets (which are owned by the TPAA over which they have been created), we introduced an abstract LNOwnedDS class, which excludes non-persistent DSs.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3231, uuid={7F7F081B-F2D6-484c-963B-F44D4FE8F9CC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::LN +2024-09-07 12:38:48,424 [main] DEBUG AssociationEndBuilder - Updated source type to LN +2024-09-07 12:38:48,425 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1019, uuid=91389a73-8253-3920-bb6e-2ca4b6596579, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this log.', htmlDescription='

Logical node that contains this log.

'], _type=LN, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1020, uuid=6dba35d3-b8a8-39a0-96f5-63c3fb0ca786, since=null, name=LOGs, alias=, stereotype=, visibility=public, txtDescription='All logs contained in this device logical node.', htmlDescription='

All logs contained in this device logical node.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3232, uuid={7F440C52-EE5C-4b8b-A1A0-DC7AA86473A0}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,425 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1019, uuid=91389a73-8253-3920-bb6e-2ca4b6596579, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this log.', htmlDescription='

Logical node that contains this log.

'], _type=LN, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1020, uuid=6dba35d3-b8a8-39a0-96f5-63c3fb0ca786, since=null, name=LOGs, alias=, stereotype=, visibility=public, txtDescription='All logs contained in this device logical node.', htmlDescription='

All logs contained in this device logical node.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3232, uuid={7F440C52-EE5C-4b8b-A1A0-DC7AA86473A0}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::LN +2024-09-07 12:38:48,425 [main] DEBUG AssociationEndBuilder - Updated source type to LN +2024-09-07 12:38:48,425 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1022, uuid=87feb7ab-da8f-3ba7-aae0-aa46758eaf0f, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this log control block.', htmlDescription='

Logical node that contains this log control block.

'], _type=LN, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1023, uuid=c7ae4357-23e6-374c-a634-364fe49cda56, since=null, name=LCBs, alias=, stereotype=, visibility=public, txtDescription='All log control blocks contained in this device logical node.', htmlDescription='

All log control blocks contained in this device logical node.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3233, uuid={4EDAC9DF-298C-4398-A217-F8EE4F5B1585}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,425 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1022, uuid=87feb7ab-da8f-3ba7-aae0-aa46758eaf0f, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this log control block.', htmlDescription='

Logical node that contains this log control block.

'], _type=LN, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1023, uuid=c7ae4357-23e6-374c-a634-364fe49cda56, since=null, name=LCBs, alias=, stereotype=, visibility=public, txtDescription='All log control blocks contained in this device logical node.', htmlDescription='

All log control blocks contained in this device logical node.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3233, uuid={4EDAC9DF-298C-4398-A217-F8EE4F5B1585}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::LN +2024-09-07 12:38:48,425 [main] DEBUG AssociationEndBuilder - Updated source type to LN +2024-09-07 12:38:48,425 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1025, uuid=a356009c-e249-3887-a8c2-5efc8b789aeb, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this unbuffered report control block.', htmlDescription='

Logical node that contains this unbuffered report control block.

'], _type=LN, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1026, uuid=a98e6c87-71bd-3819-b3e8-db240e74bd95, since=null, name=URCBs, alias=, stereotype=, visibility=public, txtDescription='All unbuffered report control blocks contained in this logical node.', htmlDescription='

All unbuffered report control blocks contained in this logical node.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3234, uuid={1CDCF8AA-E5B2-490a-AC9E-28949329C1F9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,426 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1025, uuid=a356009c-e249-3887-a8c2-5efc8b789aeb, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this unbuffered report control block.', htmlDescription='

Logical node that contains this unbuffered report control block.

'], _type=LN, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1026, uuid=a98e6c87-71bd-3819-b3e8-db240e74bd95, since=null, name=URCBs, alias=, stereotype=, visibility=public, txtDescription='All unbuffered report control blocks contained in this logical node.', htmlDescription='

All unbuffered report control blocks contained in this logical node.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3234, uuid={1CDCF8AA-E5B2-490a-AC9E-28949329C1F9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::LN +2024-09-07 12:38:48,426 [main] DEBUG AssociationEndBuilder - Updated source type to LN +2024-09-07 12:38:48,426 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1028, uuid=e7603d9e-d7ed-34d2-a8c2-fe57012d3517, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this buffered report control block.', htmlDescription='

Logical node that contains this buffered report control block.

'], _type=LN, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1029, uuid=3e1af449-26b3-33ce-8b0e-bca6ed828fdc, since=null, name=BRCBs, alias=, stereotype=, visibility=public, txtDescription='All buffered report control blocks contained in this logical node.', htmlDescription='

All buffered report control blocks contained in this logical node.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3235, uuid={0F20B431-6EE2-469b-8223-819230E9C43E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,426 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1028, uuid=e7603d9e-d7ed-34d2-a8c2-fe57012d3517, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this buffered report control block.', htmlDescription='

Logical node that contains this buffered report control block.

'], _type=LN, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1029, uuid=3e1af449-26b3-33ce-8b0e-bca6ed828fdc, since=null, name=BRCBs, alias=, stereotype=, visibility=public, txtDescription='All buffered report control blocks contained in this logical node.', htmlDescription='

All buffered report control blocks contained in this logical node.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3235, uuid={0F20B431-6EE2-469b-8223-819230E9C43E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::LN +2024-09-07 12:38:48,426 [main] DEBUG ClassBuilder - Adding LN as subclass of NamedIEC61850Object +2024-09-07 12:38:48,426 [main] TRACE ClassBuilder - read from EA: MetaModel::LN +2024-09-07 12:38:48,426 [main] TRACE ClassBuilder - Class LNPHD (10 in package MetaModel) +2024-09-07 12:38:48,427 [main] DEBUG AssociationEndBuilder - Updated target type to LNPHD +2024-09-07 12:38:48,427 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1008, uuid=f342deb7-6bc7-3383-b781-4619d8d326dc, since=null, name=LD, alias=, stereotype=, visibility=public, txtDescription='Logical device that contains this physical device logical node.', htmlDescription='

Logical device that contains this physical device logical node.

'], _type=LD, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1009, uuid=dc9432da-d9a4-391b-864a-519a2dcd1421, since=null, name=LNPHD, alias=, stereotype=, visibility=public, txtDescription='Physical device logical node contained within this logical device.', htmlDescription='

Physical device logical node contained within this logical device.

'], _type=LNPHD, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3239, uuid={351DD042-6AD0-47f6-A9D1-9EA465461A1E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::LNPHD +2024-09-07 12:38:48,427 [main] DEBUG ClassBuilder - Adding LNPHD as subclass of LN +2024-09-07 12:38:48,427 [main] TRACE ClassBuilder - read from EA: MetaModel::LNPHD +2024-09-07 12:38:48,427 [main] TRACE ClassBuilder - Class LN0 (11 in package MetaModel) +2024-09-07 12:38:48,427 [main] DEBUG AssociationEndBuilder - Updated source type to LN0 +2024-09-07 12:38:48,428 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1033, uuid=b9c7430f-005d-37b1-96f1-0969d56fb74b, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='Device logical node that contains this unicast sampled values control block.', htmlDescription='

Device logical node that contains this unicast sampled values control block.

'], _type=LN0, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1034, uuid=2149586b-93ab-366c-b7d5-585dd8ab2dcb, since=null, name=USVCBs, alias=, stereotype=, visibility=public, txtDescription='All unicast simpled values control blocks contained in this device logical node.', htmlDescription='

All unicast simpled values control blocks contained in this device logical node.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3224, uuid={BA890AF8-70A6-4685-8215-9B7A0C34827D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,428 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1033, uuid=b9c7430f-005d-37b1-96f1-0969d56fb74b, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='Device logical node that contains this unicast sampled values control block.', htmlDescription='

Device logical node that contains this unicast sampled values control block.

'], _type=LN0, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1034, uuid=2149586b-93ab-366c-b7d5-585dd8ab2dcb, since=null, name=USVCBs, alias=, stereotype=, visibility=public, txtDescription='All unicast simpled values control blocks contained in this device logical node.', htmlDescription='

All unicast simpled values control blocks contained in this device logical node.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3224, uuid={BA890AF8-70A6-4685-8215-9B7A0C34827D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::LN0 +2024-09-07 12:38:48,428 [main] DEBUG AssociationEndBuilder - Updated source type to LN0 +2024-09-07 12:38:48,429 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1036, uuid=c18773d5-9ab1-31dd-8e87-e416e5c518dd, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='Device logical node that contains this GOOSE control block.', htmlDescription='

Device logical node that contains this GOOSE control block.

'], _type=LN0, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1037, uuid=43d0dac2-11b5-3602-9cdb-c87fd6c9ed1e, since=null, name=GCBs, alias=, stereotype=, visibility=public, txtDescription='All GOOSE control blocks contained in this device logical node.', htmlDescription='

All GOOSE control blocks contained in this device logical node.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3225, uuid={5B28CB32-75ED-4ce9-970B-A054C0FE6AF2}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,429 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1036, uuid=c18773d5-9ab1-31dd-8e87-e416e5c518dd, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='Device logical node that contains this GOOSE control block.', htmlDescription='

Device logical node that contains this GOOSE control block.

'], _type=LN0, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1037, uuid=43d0dac2-11b5-3602-9cdb-c87fd6c9ed1e, since=null, name=GCBs, alias=, stereotype=, visibility=public, txtDescription='All GOOSE control blocks contained in this device logical node.', htmlDescription='

All GOOSE control blocks contained in this device logical node.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3225, uuid={5B28CB32-75ED-4ce9-970B-A054C0FE6AF2}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::LN0 +2024-09-07 12:38:48,429 [main] DEBUG AssociationEndBuilder - Updated source type to LN0 +2024-09-07 12:38:48,429 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1039, uuid=9322d900-a7a3-35be-a2fc-8dc05f438e73, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='Device logical node that contains this multicast sampled values control block.', htmlDescription='

Device logical node that contains this multicast sampled values control block.

'], _type=LN0, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1040, uuid=1d3ff9d3-58c1-37bd-ae64-3a515789448b, since=null, name=MSVCBs, alias=, stereotype=, visibility=public, txtDescription='All multicast simpled values control blocks contained in this device logical node.', htmlDescription='

All multicast simpled values control blocks contained in this device logical node.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3226, uuid={3FE94B8A-D716-44df-98C2-B7C222CEE5E8}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,429 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1039, uuid=9322d900-a7a3-35be-a2fc-8dc05f438e73, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='Device logical node that contains this multicast sampled values control block.', htmlDescription='

Device logical node that contains this multicast sampled values control block.

'], _type=LN0, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1040, uuid=1d3ff9d3-58c1-37bd-ae64-3a515789448b, since=null, name=MSVCBs, alias=, stereotype=, visibility=public, txtDescription='All multicast simpled values control blocks contained in this device logical node.', htmlDescription='

All multicast simpled values control blocks contained in this device logical node.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3226, uuid={3FE94B8A-D716-44df-98C2-B7C222CEE5E8}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::LN0 +2024-09-07 12:38:48,429 [main] DEBUG AssociationEndBuilder - Updated source type to LN0 +2024-09-07 12:38:48,430 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1042, uuid=c6a9f569-0770-3ffe-bdc0-a645b0387d2f, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='Device logical node that contains this setting group control block.', htmlDescription='

Device logical node that contains this setting group control block.

'], _type=LN0, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1043, uuid=69a2696d-a46f-38f0-a20e-b7cca875605c, since=null, name=SGCB, alias=, stereotype=, visibility=public, txtDescription='Setting group control block contained in this device logical node.', htmlDescription='

Setting group control block contained in this device logical node.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3227, uuid={16912038-2F54-4108-A868-FEDEFD36C7B1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,430 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1042, uuid=c6a9f569-0770-3ffe-bdc0-a645b0387d2f, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='Device logical node that contains this setting group control block.', htmlDescription='

Device logical node that contains this setting group control block.

'], _type=LN0, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1043, uuid=69a2696d-a46f-38f0-a20e-b7cca875605c, since=null, name=SGCB, alias=, stereotype=, visibility=public, txtDescription='Setting group control block contained in this device logical node.', htmlDescription='

Setting group control block contained in this device logical node.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3227, uuid={16912038-2F54-4108-A868-FEDEFD36C7B1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::LN0 +2024-09-07 12:38:48,430 [main] DEBUG AssociationEndBuilder - Updated target type to LN0 +2024-09-07 12:38:48,430 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1005, uuid=80eaa78c-0d7a-3689-a506-56d1057b11a6, since=null, name=LD, alias=, stereotype=, visibility=public, txtDescription='Logical device that contains this device logical node.', htmlDescription='

Logical device that contains this device logical node.

'], _type=LD, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1006, uuid=5b67250a-8925-33fa-aa8a-c97ffc0d9310, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='Device logical node contained within this logical device.', htmlDescription='

Device logical node contained within this logical device.

'], _type=LN0, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3238, uuid={58088780-AE38-465b-92C6-DF8923DEBADA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::LN0 +2024-09-07 12:38:48,430 [main] DEBUG ClassBuilder - Adding LN0 as subclass of LN +2024-09-07 12:38:48,430 [main] TRACE ClassBuilder - read from EA: MetaModel::LN0 +2024-09-07 12:38:48,430 [main] TRACE ClassBuilder - Class LNDOM (12 in package MetaModel) +2024-09-07 12:38:48,431 [main] DEBUG AssociationEndBuilder - Updated target type to LNDOM +2024-09-07 12:38:48,432 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1002, uuid=2a2d94c6-5bc5-3b4f-a3eb-8ba85bbf0fda, since=null, name=LD, alias=, stereotype=, visibility=public, txtDescription='Logical device that contains this domain logical node.', htmlDescription='

Logical device that contains this domain logical node.

'], _type=LD, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1003, uuid=88c8ad81-3e70-3bd6-b58d-176b991035bb, since=null, name=LNDOMs, alias=, stereotype=, visibility=public, txtDescription='All domain logical nodes contained within this logical device.', htmlDescription='

All domain logical nodes contained within this logical device.

'], _type=LNDOM, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3237, uuid={EA8D56D0-764A-4bd8-9215-10E541F2BCF3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::LNDOM +2024-09-07 12:38:48,432 [main] DEBUG ClassBuilder - Adding LNDOM as subclass of LN +2024-09-07 12:38:48,432 [main] TRACE ClassBuilder - read from EA: MetaModel::LNDOM +2024-09-07 12:38:48,432 [main] TRACE ClassBuilder - Class CDC (14 in package MetaModel) +2024-09-07 12:38:48,432 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::CDC, _objData=UmlObjectData [id=3591, uuid={6520578A-E479-4aca-8AD6-7A973E895B9F}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1697, _eaTypeName=CDCReference, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,433 [main] DEBUG AssociationEndBuilder - Updated source type to CDC +2024-09-07 12:38:48,433 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1048, uuid=90ab812d-8564-3c32-80cf-4046e6691d91, since=null, name=CDC, alias=, stereotype=, visibility=public, txtDescription='Common data class containing this functionally constrained data attribute.', htmlDescription='

Common data class containing this functionally constrained data attribute.

'], _type=CDC, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1049, uuid=8dd3979e-5576-34db-99c5-b55e818bdea5, since=null, name=FCDAs, alias=, stereotype=, visibility=public, txtDescription='All functionally constrained data attributes contained within this common data class.', htmlDescription='

All functionally constrained data attributes contained within this common data class.

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3220, uuid={56217EE0-7F5F-4b89-A6EB-C65850A000AB}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,433 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1048, uuid=90ab812d-8564-3c32-80cf-4046e6691d91, since=null, name=CDC, alias=, stereotype=, visibility=public, txtDescription='Common data class containing this functionally constrained data attribute.', htmlDescription='

Common data class containing this functionally constrained data attribute.

'], _type=CDC, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1049, uuid=8dd3979e-5576-34db-99c5-b55e818bdea5, since=null, name=FCDAs, alias=, stereotype=, visibility=public, txtDescription='All functionally constrained data attributes contained within this common data class.', htmlDescription='

All functionally constrained data attributes contained within this common data class.

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3220, uuid={56217EE0-7F5F-4b89-A6EB-C65850A000AB}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::CDC +2024-09-07 12:38:48,433 [main] DEBUG AssociationEndBuilder - Updated source type to CDC +2024-09-07 12:38:48,434 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1051, uuid=db457cb8-fd6e-3808-a5d7-596d1be04931, since=null, name=CDC, alias=, stereotype=, visibility=public, txtDescription='Common data class containing this functionally constrained data.', htmlDescription='

Common data class containing this functionally constrained data.

'], _type=CDC, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1052, uuid=fcd20342-876e-32fc-9adf-8e834b5621bf, since=null, name=FCDs, alias=, stereotype=, visibility=public, txtDescription='All functionally constrained data (groups of data with the same functional constraint) contained within this common data class.', htmlDescription='

All functionally constrained data (groups of data with the same functional constraint) contained within this common data class.

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3221, uuid={025EB020-6F7B-4dbf-A870-ABE4EE81547D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,434 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1051, uuid=db457cb8-fd6e-3808-a5d7-596d1be04931, since=null, name=CDC, alias=, stereotype=, visibility=public, txtDescription='Common data class containing this functionally constrained data.', htmlDescription='

Common data class containing this functionally constrained data.

'], _type=CDC, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1052, uuid=fcd20342-876e-32fc-9adf-8e834b5621bf, since=null, name=FCDs, alias=, stereotype=, visibility=public, txtDescription='All functionally constrained data (groups of data with the same functional constraint) contained within this common data class.', htmlDescription='

All functionally constrained data (groups of data with the same functional constraint) contained within this common data class.

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3221, uuid={025EB020-6F7B-4dbf-A870-ABE4EE81547D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::CDC +2024-09-07 12:38:48,434 [main] DEBUG AssociationEndBuilder - Updated target type to CDC +2024-09-07 12:38:48,434 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1013, uuid=f02885d1-1972-3e41-a471-a8ae4471db15, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this common data class.', htmlDescription='

Logical node that contains this common data class.

'], _type=LN, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1014, uuid=2a6fc3f6-97e0-3b10-a832-cfe6bb54065c, since=null, name=CDCs, alias=, stereotype=, visibility=public, txtDescription='All common data classes contained within the logical node. +Example of references for an XCBR: +myLD3/XCBR1.Pos +myLD3/XCBR1.Loc +myLD3/XCBR1.CBOpCap +...', htmlDescription='

All common data classes contained within the logical node.

Example of references for an XCBR:

myLD3/XCBR1.Pos

myLD3/XCBR1.Loc

myLD3/XCBR1.CBOpCap

...

'], _type=CDC, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3230, uuid={DA3E0358-0E30-4308-8391-CC6F3D34D501}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::CDC +2024-09-07 12:38:48,434 [main] DEBUG ClassBuilder - Adding CDC as subclass of NamedIEC61850Object +2024-09-07 12:38:48,434 [main] TRACE ClassBuilder - read from EA: MetaModel::CDC +2024-09-07 12:38:48,434 [main] TRACE ClassBuilder - Class PrimitiveCDC (15 in package MetaModel) +2024-09-07 12:38:48,435 [main] DEBUG AssociationEndBuilder - Updated target type to PrimitiveCDC +2024-09-07 12:38:48,435 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1055, uuid=085d2cf9-8bab-3abb-9e28-3b952007063e, since=null, name=ComposedCDC, alias=, stereotype=, visibility=public, txtDescription='Common data class that contains this primitive common data class.', htmlDescription='

Common data class that contains this primitive common data class.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1056, uuid=013c3903-15f7-330c-8042-61fff5a34cf0, since=null, name=PrimitiveCDCs, alias=, stereotype=, visibility=public, txtDescription='All common data classes (data objects) contained within this composed common data class.', htmlDescription='

All common data classes (data objects) contained within this composed common data class.

'], _type=PrimitiveCDC, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3217, uuid={0BB1440F-02BC-40ba-9047-E0D8BBFBC02F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,435 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1055, uuid=085d2cf9-8bab-3abb-9e28-3b952007063e, since=null, name=ComposedCDC, alias=, stereotype=, visibility=public, txtDescription='Common data class that contains this primitive common data class.', htmlDescription='

Common data class that contains this primitive common data class.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1056, uuid=013c3903-15f7-330c-8042-61fff5a34cf0, since=null, name=PrimitiveCDCs, alias=, stereotype=, visibility=public, txtDescription='All common data classes (data objects) contained within this composed common data class.', htmlDescription='

All common data classes (data objects) contained within this composed common data class.

'], _type=PrimitiveCDC, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3217, uuid={0BB1440F-02BC-40ba-9047-E0D8BBFBC02F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::PrimitiveCDC +2024-09-07 12:38:48,435 [main] DEBUG AssociationEndBuilder - Updated source type to PrimitiveCDC +2024-09-07 12:38:48,435 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1058, uuid=c04fbe8d-887c-3da6-bd2b-a05c91e01d78, since=null, name=ControlCDC, alias=, stereotype=, visibility=public, txtDescription='Common data class defining this service parameter.', htmlDescription='

Common data class defining this service parameter.

'], _type=PrimitiveCDC, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1059, uuid=025d5e72-45d4-399f-b6e3-77175140acfa, since=null, name=ServiceParameter, alias=, stereotype=, visibility=public, txtDescription='Service parameter defined within this primitive common data class.', htmlDescription='

Service parameter defined within this primitive common data class.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3218, uuid={7238D4C2-55BD-4263-8221-888C7557A666}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,435 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1058, uuid=c04fbe8d-887c-3da6-bd2b-a05c91e01d78, since=null, name=ControlCDC, alias=, stereotype=, visibility=public, txtDescription='Common data class defining this service parameter.', htmlDescription='

Common data class defining this service parameter.

'], _type=PrimitiveCDC, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1059, uuid=025d5e72-45d4-399f-b6e3-77175140acfa, since=null, name=ServiceParameter, alias=, stereotype=, visibility=public, txtDescription='Service parameter defined within this primitive common data class.', htmlDescription='

Service parameter defined within this primitive common data class.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3218, uuid={7238D4C2-55BD-4263-8221-888C7557A666}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::PrimitiveCDC +2024-09-07 12:38:48,435 [main] DEBUG ClassBuilder - Adding PrimitiveCDC as subclass of CDC +2024-09-07 12:38:48,435 [main] TRACE ClassBuilder - read from EA: MetaModel::PrimitiveCDC +2024-09-07 12:38:48,436 [main] TRACE ClassBuilder - Class ComposedCDC (16 in package MetaModel) +2024-09-07 12:38:48,436 [main] DEBUG AssociationEndBuilder - Updated source type to ComposedCDC +2024-09-07 12:38:48,436 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1055, uuid=085d2cf9-8bab-3abb-9e28-3b952007063e, since=null, name=ComposedCDC, alias=, stereotype=, visibility=public, txtDescription='Common data class that contains this primitive common data class.', htmlDescription='

Common data class that contains this primitive common data class.

'], _type=ComposedCDC, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1056, uuid=013c3903-15f7-330c-8042-61fff5a34cf0, since=null, name=PrimitiveCDCs, alias=, stereotype=, visibility=public, txtDescription='All common data classes (data objects) contained within this composed common data class.', htmlDescription='

All common data classes (data objects) contained within this composed common data class.

'], _type=PrimitiveCDC, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3217, uuid={0BB1440F-02BC-40ba-9047-E0D8BBFBC02F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::ComposedCDC +2024-09-07 12:38:48,436 [main] DEBUG ClassBuilder - Adding ComposedCDC as subclass of CDC +2024-09-07 12:38:48,436 [main] TRACE ClassBuilder - read from EA: MetaModel::ComposedCDC +2024-09-07 12:38:48,436 [main] TRACE ClassBuilder - Class FCD (17 in package MetaModel) +2024-09-07 12:38:48,436 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::FCD, _objData=UmlObjectData [id=3592, uuid={71280780-DF48-46ed-94CA-4B5679065AE1}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1702, _eaTypeName=FCDReference, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,437 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::FCD, _objData=UmlObjectData [id=3593, uuid={000364EA-747B-48d9-9EFC-91F8A514AEF3}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,437 [main] DEBUG AssociationEndBuilder - Updated source type to FCD +2024-09-07 12:38:48,437 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1065, uuid=af6863de-3ae1-3883-a3d6-9967fc6b0a46, since=null, name=DataSetFCDMember, alias=, stereotype=, visibility=public, txtDescription='All functionally constrained data (groups of data with the same functional constraint) that this data set refers to. +Modelling note: This is FDC part of the originally defined DSMemberRef.', htmlDescription='

All functionally constrained data (groups of data with the same functional constraint) that this data set refers to.

Modelling note: This is FDC part of the originally defined DSMemberRef.

'], _type=FCD, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1066, uuid=77e6639b-28de-3cd4-bfa8-c57f8a18185d, since=null, name=DSs, alias=, stereotype=, visibility=public, txtDescription='All data sets that hold reference to this FCD. +Modelling note: FCD must maintain the link to DSs that reference it, so that the DSs can get notified before the FCD disappears. This enforces the following part of the DS spec: "The persistent existence of DATA and DataAttribute is expected as long as they are referenced as members of a DS. A system has to take special measures to ensure their persistent existence".', htmlDescription='

All data sets that hold reference to this FCD.

Modelling note: FCD must maintain the link to DSs that reference it, so that the DSs can get notified before the FCD disappears. This enforces the following part of the DS spec: "The persistent existence of DATA and DataAttribute is expected as long as they are referenced as members of a DS. A system has to take special measures to ensure their persistent existence".

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3213, uuid={70E5708A-376A-4ead-A513-A89DD752D037}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,437 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1065, uuid=af6863de-3ae1-3883-a3d6-9967fc6b0a46, since=null, name=DataSetFCDMember, alias=, stereotype=, visibility=public, txtDescription='All functionally constrained data (groups of data with the same functional constraint) that this data set refers to. +Modelling note: This is FDC part of the originally defined DSMemberRef.', htmlDescription='

All functionally constrained data (groups of data with the same functional constraint) that this data set refers to.

Modelling note: This is FDC part of the originally defined DSMemberRef.

'], _type=FCD, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1066, uuid=77e6639b-28de-3cd4-bfa8-c57f8a18185d, since=null, name=DSs, alias=, stereotype=, visibility=public, txtDescription='All data sets that hold reference to this FCD. +Modelling note: FCD must maintain the link to DSs that reference it, so that the DSs can get notified before the FCD disappears. This enforces the following part of the DS spec: "The persistent existence of DATA and DataAttribute is expected as long as they are referenced as members of a DS. A system has to take special measures to ensure their persistent existence".', htmlDescription='

All data sets that hold reference to this FCD.

Modelling note: FCD must maintain the link to DSs that reference it, so that the DSs can get notified before the FCD disappears. This enforces the following part of the DS spec: "The persistent existence of DATA and DataAttribute is expected as long as they are referenced as members of a DS. A system has to take special measures to ensure their persistent existence".

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3213, uuid={70E5708A-376A-4ead-A513-A89DD752D037}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::FCD +2024-09-07 12:38:48,437 [main] DEBUG AssociationEndBuilder - Updated source type to FCD +2024-09-07 12:38:48,438 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1068, uuid=6a604f4f-84f8-335a-b10f-66d33d9869a9, since=null, name=FCD, alias=, stereotype=, visibility=public, txtDescription='Functionally constrained data of the containing common data class, that refers to this instance.', htmlDescription='

Functionally constrained data of the containing common data class, that refers to this instance.

'], _type=FCD, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1069, uuid=e151d1f0-dc6a-388b-ad1b-01b2da6c99da, since=null, name=FCDAs, alias=, stereotype=, visibility=public, txtDescription='All functionally constrained data attributes contained within the owning common data class, that have the functional constraint same as this functionally constrained data.', htmlDescription='

All functionally constrained data attributes contained within the owning common data class, that have the functional constraint same as this functionally constrained data.

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3214, uuid={1717A86E-6CE8-47b8-A41A-A4738DCDF5AE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,438 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1068, uuid=6a604f4f-84f8-335a-b10f-66d33d9869a9, since=null, name=FCD, alias=, stereotype=, visibility=public, txtDescription='Functionally constrained data of the containing common data class, that refers to this instance.', htmlDescription='

Functionally constrained data of the containing common data class, that refers to this instance.

'], _type=FCD, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1069, uuid=e151d1f0-dc6a-388b-ad1b-01b2da6c99da, since=null, name=FCDAs, alias=, stereotype=, visibility=public, txtDescription='All functionally constrained data attributes contained within the owning common data class, that have the functional constraint same as this functionally constrained data.', htmlDescription='

All functionally constrained data attributes contained within the owning common data class, that have the functional constraint same as this functionally constrained data.

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3214, uuid={1717A86E-6CE8-47b8-A41A-A4738DCDF5AE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::FCD +2024-09-07 12:38:48,438 [main] DEBUG AssociationEndBuilder - Updated target type to FCD +2024-09-07 12:38:48,438 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1051, uuid=db457cb8-fd6e-3808-a5d7-596d1be04931, since=null, name=CDC, alias=, stereotype=, visibility=public, txtDescription='Common data class containing this functionally constrained data.', htmlDescription='

Common data class containing this functionally constrained data.

'], _type=CDC, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1052, uuid=fcd20342-876e-32fc-9adf-8e834b5621bf, since=null, name=FCDs, alias=, stereotype=, visibility=public, txtDescription='All functionally constrained data (groups of data with the same functional constraint) contained within this common data class.', htmlDescription='

All functionally constrained data (groups of data with the same functional constraint) contained within this common data class.

'], _type=FCD, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3221, uuid={025EB020-6F7B-4dbf-A870-ABE4EE81547D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::FCD +2024-09-07 12:38:48,438 [main] DEBUG ClassBuilder - Adding FCD as subclass of HierarchyIEC61850Object +2024-09-07 12:38:48,438 [main] TRACE ClassBuilder - read from EA: MetaModel::FCD +2024-09-07 12:38:48,438 [main] TRACE ClassBuilder - Class FCDA (18 in package MetaModel) +2024-09-07 12:38:48,438 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::FCDA, _objData=UmlObjectData [id=3594, uuid={B87818BA-192E-4a1d-8AD7-0549A1C7944B}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1703, _eaTypeName=FCDAReference, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,439 [main] DEBUG AssociationEndBuilder - Updated source type to FCDA +2024-09-07 12:38:48,439 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1073, uuid=023c4245-5b20-33ca-9d0c-fef9777c4177, since=null, name=FCDA, alias=, stereotype=, visibility=public, txtDescription='FCDA constraining this data attribute; in case the parent is another (composed) data attribute, this is the FCDA of the parent.', htmlDescription='

FCDA constraining this data attribute; in case the parent is another (composed) data attribute, this is the FCDA of the parent.

'], _type=FCDA, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1074, uuid=835dfdc9-b932-364d-9142-830ef629df67, since=null, name=DA, alias=, stereotype=, visibility=public, txtDescription='Data attribute constrained by this instance.', htmlDescription='

Data attribute constrained by this instance.

'], _type=null, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3210, uuid={92EADAAE-DAF5-4c4a-9F54-A165DADB3054}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,439 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1073, uuid=023c4245-5b20-33ca-9d0c-fef9777c4177, since=null, name=FCDA, alias=, stereotype=, visibility=public, txtDescription='FCDA constraining this data attribute; in case the parent is another (composed) data attribute, this is the FCDA of the parent.', htmlDescription='

FCDA constraining this data attribute; in case the parent is another (composed) data attribute, this is the FCDA of the parent.

'], _type=FCDA, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1074, uuid=835dfdc9-b932-364d-9142-830ef629df67, since=null, name=DA, alias=, stereotype=, visibility=public, txtDescription='Data attribute constrained by this instance.', htmlDescription='

Data attribute constrained by this instance.

'], _type=null, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3210, uuid={92EADAAE-DAF5-4c4a-9F54-A165DADB3054}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::FCDA +2024-09-07 12:38:48,439 [main] DEBUG AssociationEndBuilder - Updated source type to FCDA +2024-09-07 12:38:48,440 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1076, uuid=38e6f351-6cf4-386b-a3b5-0becb7ec25e9, since=null, name=DataSetFCDAMember, alias=, stereotype=, visibility=public, txtDescription='All functionally constrained data attributes that this data set refers to. +Modelling note: This is FDCA part of the originally defined DSMemberRef.', htmlDescription='

All functionally constrained data attributes that this data set refers to.

Modelling note: This is FDCA part of the originally defined DSMemberRef.

'], _type=FCDA, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1077, uuid=32266325-8527-338f-9a6e-6389184bdc7e, since=null, name=DSs, alias=, stereotype=, visibility=public, txtDescription='All data sets that hold reference to this FCD. +Modelling note: FCDA must maintain the link to DSs that reference it, so that the DSs can get notified before the FCDA disappears. This enforces the following part of the DS spec: "The persistent existence of DATA and DataAttribute is expected as long as they are referenced as members of a DS. A system has to take special measures to ensure their persistent existence".', htmlDescription='

All data sets that hold reference to this FCD.

Modelling note: FCDA must maintain the link to DSs that reference it, so that the DSs can get notified before the FCDA disappears. This enforces the following part of the DS spec: "The persistent existence of DATA and DataAttribute is expected as long as they are referenced as members of a DS. A system has to take special measures to ensure their persistent existence".

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3211, uuid={25BC4E18-D9E0-4573-8B6F-6D80E6D61916}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,440 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1076, uuid=38e6f351-6cf4-386b-a3b5-0becb7ec25e9, since=null, name=DataSetFCDAMember, alias=, stereotype=, visibility=public, txtDescription='All functionally constrained data attributes that this data set refers to. +Modelling note: This is FDCA part of the originally defined DSMemberRef.', htmlDescription='

All functionally constrained data attributes that this data set refers to.

Modelling note: This is FDCA part of the originally defined DSMemberRef.

'], _type=FCDA, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1077, uuid=32266325-8527-338f-9a6e-6389184bdc7e, since=null, name=DSs, alias=, stereotype=, visibility=public, txtDescription='All data sets that hold reference to this FCD. +Modelling note: FCDA must maintain the link to DSs that reference it, so that the DSs can get notified before the FCDA disappears. This enforces the following part of the DS spec: "The persistent existence of DATA and DataAttribute is expected as long as they are referenced as members of a DS. A system has to take special measures to ensure their persistent existence".', htmlDescription='

All data sets that hold reference to this FCD.

Modelling note: FCDA must maintain the link to DSs that reference it, so that the DSs can get notified before the FCDA disappears. This enforces the following part of the DS spec: "The persistent existence of DATA and DataAttribute is expected as long as they are referenced as members of a DS. A system has to take special measures to ensure their persistent existence".

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3211, uuid={25BC4E18-D9E0-4573-8B6F-6D80E6D61916}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::FCDA +2024-09-07 12:38:48,440 [main] DEBUG AssociationEndBuilder - Updated target type to FCDA +2024-09-07 12:38:48,440 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1068, uuid=6a604f4f-84f8-335a-b10f-66d33d9869a9, since=null, name=FCD, alias=, stereotype=, visibility=public, txtDescription='Functionally constrained data of the containing common data class, that refers to this instance.', htmlDescription='

Functionally constrained data of the containing common data class, that refers to this instance.

'], _type=FCD, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1069, uuid=e151d1f0-dc6a-388b-ad1b-01b2da6c99da, since=null, name=FCDAs, alias=, stereotype=, visibility=public, txtDescription='All functionally constrained data attributes contained within the owning common data class, that have the functional constraint same as this functionally constrained data.', htmlDescription='

All functionally constrained data attributes contained within the owning common data class, that have the functional constraint same as this functionally constrained data.

'], _type=FCDA, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3214, uuid={1717A86E-6CE8-47b8-A41A-A4738DCDF5AE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::FCDA +2024-09-07 12:38:48,440 [main] DEBUG AssociationEndBuilder - Updated target type to FCDA +2024-09-07 12:38:48,440 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1048, uuid=90ab812d-8564-3c32-80cf-4046e6691d91, since=null, name=CDC, alias=, stereotype=, visibility=public, txtDescription='Common data class containing this functionally constrained data attribute.', htmlDescription='

Common data class containing this functionally constrained data attribute.

'], _type=CDC, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1049, uuid=8dd3979e-5576-34db-99c5-b55e818bdea5, since=null, name=FCDAs, alias=, stereotype=, visibility=public, txtDescription='All functionally constrained data attributes contained within this common data class.', htmlDescription='

All functionally constrained data attributes contained within this common data class.

'], _type=FCDA, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3220, uuid={56217EE0-7F5F-4b89-A6EB-C65850A000AB}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::FCDA +2024-09-07 12:38:48,440 [main] DEBUG ClassBuilder - Adding FCDA as subclass of NamedIEC61850Object +2024-09-07 12:38:48,440 [main] TRACE ClassBuilder - read from EA: MetaModel::FCDA +2024-09-07 12:38:48,440 [main] TRACE ClassBuilder - Class DA (19 in package MetaModel) +2024-09-07 12:38:48,441 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::DA, _objData=UmlObjectData [id=3595, uuid={9BCB520F-E69E-42f6-B46B-C5CD184D0DC6}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1703, _eaTypeName=FCDAReference, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,441 [main] DEBUG AssociationEndBuilder - Updated target type to DA +2024-09-07 12:38:48,441 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1081, uuid=0851a593-0b50-32c5-80a4-4db4afdc1911, since=null, name=ComposedDA, alias=, stereotype=, visibility=public, txtDescription='Composed data attribute containing this data attribute; null in case this is primitive data attribute.', htmlDescription='

Composed data attribute containing this data attribute; null in case this is primitive data attribute.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1082, uuid=d9f8258b-5288-3a70-a818-5fba64c2ab77, since=null, name=DAs, alias=, stereotype=, visibility=public, txtDescription='All data attributes contained within this composed data attribute.', htmlDescription='

All data attributes contained within this composed data attribute.

'], _type=DA, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3208, uuid={D12489B7-C2EE-4a0f-869F-F857A942FDEF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,442 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1081, uuid=0851a593-0b50-32c5-80a4-4db4afdc1911, since=null, name=ComposedDA, alias=, stereotype=, visibility=public, txtDescription='Composed data attribute containing this data attribute; null in case this is primitive data attribute.', htmlDescription='

Composed data attribute containing this data attribute; null in case this is primitive data attribute.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1082, uuid=d9f8258b-5288-3a70-a818-5fba64c2ab77, since=null, name=DAs, alias=, stereotype=, visibility=public, txtDescription='All data attributes contained within this composed data attribute.', htmlDescription='

All data attributes contained within this composed data attribute.

'], _type=DA, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3208, uuid={D12489B7-C2EE-4a0f-869F-F857A942FDEF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::DA +2024-09-07 12:38:48,442 [main] DEBUG AssociationEndBuilder - Updated target type to DA +2024-09-07 12:38:48,442 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1073, uuid=023c4245-5b20-33ca-9d0c-fef9777c4177, since=null, name=FCDA, alias=, stereotype=, visibility=public, txtDescription='FCDA constraining this data attribute; in case the parent is another (composed) data attribute, this is the FCDA of the parent.', htmlDescription='

FCDA constraining this data attribute; in case the parent is another (composed) data attribute, this is the FCDA of the parent.

'], _type=FCDA, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1074, uuid=835dfdc9-b932-364d-9142-830ef629df67, since=null, name=DA, alias=, stereotype=, visibility=public, txtDescription='Data attribute constrained by this instance.', htmlDescription='

Data attribute constrained by this instance.

'], _type=DA, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3210, uuid={92EADAAE-DAF5-4c4a-9F54-A165DADB3054}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::DA +2024-09-07 12:38:48,443 [main] DEBUG ClassBuilder - Adding DA as subclass of NamedIEC61850Object +2024-09-07 12:38:48,443 [main] TRACE ClassBuilder - read from EA: MetaModel::DA +2024-09-07 12:38:48,443 [main] TRACE ClassBuilder - Class PrimitiveDA (20 in package MetaModel) +2024-09-07 12:38:48,443 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::PrimitiveDA, _objData=UmlObjectData [id=3596, uuid={6D0553ED-7183-49b8-AA89-281C5ED4C156}, since=null, name=attrVal, alias=, stereotype=, visibility=public, txtDescription='Attribute value.', htmlDescription='

Attribute value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1715, _eaTypeName=AttrValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,443 [main] DEBUG AssociationEndBuilder - Updated target type to PrimitiveDA +2024-09-07 12:38:48,443 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1058, uuid=c04fbe8d-887c-3da6-bd2b-a05c91e01d78, since=null, name=ControlCDC, alias=, stereotype=, visibility=public, txtDescription='Common data class defining this service parameter.', htmlDescription='

Common data class defining this service parameter.

'], _type=PrimitiveCDC, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1059, uuid=025d5e72-45d4-399f-b6e3-77175140acfa, since=null, name=ServiceParameter, alias=, stereotype=, visibility=public, txtDescription='Service parameter defined within this primitive common data class.', htmlDescription='

Service parameter defined within this primitive common data class.

'], _type=PrimitiveDA, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3218, uuid={7238D4C2-55BD-4263-8221-888C7557A666}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::PrimitiveDA +2024-09-07 12:38:48,444 [main] DEBUG ClassBuilder - Adding PrimitiveDA as subclass of DA +2024-09-07 12:38:48,444 [main] DEBUG ClassBuilder - Adding PrimitiveDA as superclass of PHYCOMADDR +2024-09-07 12:38:48,444 [main] DEBUG ClassBuilder - Adding PrimitiveDA as superclass of ObjectReference +2024-09-07 12:38:48,444 [main] DEBUG ClassBuilder - Adding PrimitiveDA as superclass of VISIBLE_STRING255 +2024-09-07 12:38:48,444 [main] DEBUG ClassBuilder - Adding PrimitiveDA as superclass of UNICODE_STRING255 +2024-09-07 12:38:48,444 [main] DEBUG ClassBuilder - Adding PrimitiveDA as superclass of INT32U +2024-09-07 12:38:48,444 [main] DEBUG ClassBuilder - Adding PrimitiveDA as superclass of INT32 +2024-09-07 12:38:48,444 [main] DEBUG ClassBuilder - Adding PrimitiveDA as superclass of INT16U +2024-09-07 12:38:48,444 [main] DEBUG ClassBuilder - Adding PrimitiveDA as superclass of FLOAT32 +2024-09-07 12:38:48,444 [main] DEBUG ClassBuilder - Adding PrimitiveDA as superclass of BOOLEAN +2024-09-07 12:38:48,444 [main] TRACE ClassBuilder - read from EA: MetaModel::PrimitiveDA +2024-09-07 12:38:48,444 [main] TRACE ClassBuilder - Class PackedPrimitiveDA (21 in package MetaModel) +2024-09-07 12:38:48,444 [main] DEBUG ClassBuilder - Adding PackedPrimitiveDA as subclass of PrimitiveDA +2024-09-07 12:38:48,444 [main] DEBUG ClassBuilder - Adding PackedPrimitiveDA as superclass of TriggerConditions +2024-09-07 12:38:48,444 [main] DEBUG ClassBuilder - Adding PackedPrimitiveDA as superclass of TimeStamp +2024-09-07 12:38:48,444 [main] TRACE ClassBuilder - read from EA: MetaModel::PackedPrimitiveDA +2024-09-07 12:38:48,444 [main] TRACE ClassBuilder - Class EnumDA (22 in package MetaModel) +2024-09-07 12:38:48,445 [main] DEBUG ClassBuilder - Adding EnumDA as subclass of PrimitiveDA +2024-09-07 12:38:48,445 [main] TRACE ClassBuilder - read from EA: MetaModel::EnumDA +2024-09-07 12:38:48,445 [main] TRACE ClassBuilder - Class PackedEnumDA (23 in package MetaModel) +2024-09-07 12:38:48,445 [main] DEBUG ClassBuilder - Adding PackedEnumDA as subclass of EnumDA +2024-09-07 12:38:48,445 [main] DEBUG ClassBuilder - Adding PackedEnumDA as superclass of BsControl +2024-09-07 12:38:48,446 [main] DEBUG ClassBuilder - Adding PackedEnumDA as superclass of DpStatus +2024-09-07 12:38:48,446 [main] TRACE ClassBuilder - read from EA: MetaModel::PackedEnumDA +2024-09-07 12:38:48,446 [main] TRACE ClassBuilder - Class ComposedDA (24 in package MetaModel) +2024-09-07 12:38:48,446 [main] DEBUG AssociationEndBuilder - Updated source type to ComposedDA +2024-09-07 12:38:48,446 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1081, uuid=0851a593-0b50-32c5-80a4-4db4afdc1911, since=null, name=ComposedDA, alias=, stereotype=, visibility=public, txtDescription='Composed data attribute containing this data attribute; null in case this is primitive data attribute.', htmlDescription='

Composed data attribute containing this data attribute; null in case this is primitive data attribute.

'], _type=ComposedDA, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1082, uuid=d9f8258b-5288-3a70-a818-5fba64c2ab77, since=null, name=DAs, alias=, stereotype=, visibility=public, txtDescription='All data attributes contained within this composed data attribute.', htmlDescription='

All data attributes contained within this composed data attribute.

'], _type=DA, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3208, uuid={D12489B7-C2EE-4a0f-869F-F857A942FDEF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::ComposedDA +2024-09-07 12:38:48,446 [main] DEBUG ClassBuilder - Adding ComposedDA as subclass of DA +2024-09-07 12:38:48,446 [main] TRACE ClassBuilder - read from EA: MetaModel::ComposedDA +2024-09-07 12:38:48,446 [main] TRACE ClassBuilder - Class DS (25 in package MetaModel) +2024-09-07 12:38:48,448 [main] DEBUG AssociationEndBuilder - Updated target type to DS +2024-09-07 12:38:48,448 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1091, uuid=754dda4b-1ba3-3c6f-a897-16b85d68532b, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1092, uuid=1031f846-1193-396c-a0c8-926a4fe94212, since=null, name=DS, alias=, stereotype=, visibility=public, txtDescription='Dataset on which this control block does reporting.', htmlDescription='

Dataset on which this control block does reporting.

'], _type=DS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3200, uuid={6ED5A47C-6FE5-4d6c-9066-A0852F973D51}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,448 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1091, uuid=754dda4b-1ba3-3c6f-a897-16b85d68532b, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1092, uuid=1031f846-1193-396c-a0c8-926a4fe94212, since=null, name=DS, alias=, stereotype=, visibility=public, txtDescription='Dataset on which this control block does reporting.', htmlDescription='

Dataset on which this control block does reporting.

'], _type=DS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3200, uuid={6ED5A47C-6FE5-4d6c-9066-A0852F973D51}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::DS +2024-09-07 12:38:48,449 [main] DEBUG AssociationEndBuilder - Updated target type to DS +2024-09-07 12:38:48,449 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1094, uuid=41bfd20a-38bb-3b0b-ac75-acf0845530a7, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1095, uuid=642e8482-67c3-35c6-bed8-242064f73265, since=null, name=DS, alias=, stereotype=, visibility=public, txtDescription='Dataset on which this control block does samples reporting.', htmlDescription='

Dataset on which this control block does samples reporting.

'], _type=DS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3201, uuid={050244CD-359B-4516-B382-B2C560ECFCA1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,449 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1094, uuid=41bfd20a-38bb-3b0b-ac75-acf0845530a7, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1095, uuid=642e8482-67c3-35c6-bed8-242064f73265, since=null, name=DS, alias=, stereotype=, visibility=public, txtDescription='Dataset on which this control block does samples reporting.', htmlDescription='

Dataset on which this control block does samples reporting.

'], _type=DS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3201, uuid={050244CD-359B-4516-B382-B2C560ECFCA1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::DS +2024-09-07 12:38:48,449 [main] DEBUG AssociationEndBuilder - Updated target type to DS +2024-09-07 12:38:48,449 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1076, uuid=38e6f351-6cf4-386b-a3b5-0becb7ec25e9, since=null, name=DataSetFCDAMember, alias=, stereotype=, visibility=public, txtDescription='All functionally constrained data attributes that this data set refers to. +Modelling note: This is FDCA part of the originally defined DSMemberRef.', htmlDescription='

All functionally constrained data attributes that this data set refers to.

Modelling note: This is FDCA part of the originally defined DSMemberRef.

'], _type=FCDA, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1077, uuid=32266325-8527-338f-9a6e-6389184bdc7e, since=null, name=DSs, alias=, stereotype=, visibility=public, txtDescription='All data sets that hold reference to this FCD. +Modelling note: FCDA must maintain the link to DSs that reference it, so that the DSs can get notified before the FCDA disappears. This enforces the following part of the DS spec: "The persistent existence of DATA and DataAttribute is expected as long as they are referenced as members of a DS. A system has to take special measures to ensure their persistent existence".', htmlDescription='

All data sets that hold reference to this FCD.

Modelling note: FCDA must maintain the link to DSs that reference it, so that the DSs can get notified before the FCDA disappears. This enforces the following part of the DS spec: "The persistent existence of DATA and DataAttribute is expected as long as they are referenced as members of a DS. A system has to take special measures to ensure their persistent existence".

'], _type=DS, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3211, uuid={25BC4E18-D9E0-4573-8B6F-6D80E6D61916}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::DS +2024-09-07 12:38:48,449 [main] DEBUG AssociationEndBuilder - Updated target type to DS +2024-09-07 12:38:48,449 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1065, uuid=af6863de-3ae1-3883-a3d6-9967fc6b0a46, since=null, name=DataSetFCDMember, alias=, stereotype=, visibility=public, txtDescription='All functionally constrained data (groups of data with the same functional constraint) that this data set refers to. +Modelling note: This is FDC part of the originally defined DSMemberRef.', htmlDescription='

All functionally constrained data (groups of data with the same functional constraint) that this data set refers to.

Modelling note: This is FDC part of the originally defined DSMemberRef.

'], _type=FCD, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1066, uuid=77e6639b-28de-3cd4-bfa8-c57f8a18185d, since=null, name=DSs, alias=, stereotype=, visibility=public, txtDescription='All data sets that hold reference to this FCD. +Modelling note: FCD must maintain the link to DSs that reference it, so that the DSs can get notified before the FCD disappears. This enforces the following part of the DS spec: "The persistent existence of DATA and DataAttribute is expected as long as they are referenced as members of a DS. A system has to take special measures to ensure their persistent existence".', htmlDescription='

All data sets that hold reference to this FCD.

Modelling note: FCD must maintain the link to DSs that reference it, so that the DSs can get notified before the FCD disappears. This enforces the following part of the DS spec: "The persistent existence of DATA and DataAttribute is expected as long as they are referenced as members of a DS. A system has to take special measures to ensure their persistent existence".

'], _type=DS, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3213, uuid={70E5708A-376A-4ead-A513-A89DD752D037}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::DS +2024-09-07 12:38:48,449 [main] DEBUG ClassBuilder - Adding DS as subclass of NamedIEC61850Object +2024-09-07 12:38:48,449 [main] TRACE ClassBuilder - read from EA: MetaModel::DS +2024-09-07 12:38:48,449 [main] TRACE ClassBuilder - Class LNOwnedDS (26 in package MetaModel) +2024-09-07 12:38:48,449 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::LNOwnedDS, _objData=UmlObjectData [id=3597, uuid={178D709F-C872-44cb-9A6B-41E324507F65}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1701, _eaTypeName=LNOwnedDSReference, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,450 [main] DEBUG AssociationEndBuilder - Updated target type to LNOwnedDS +2024-09-07 12:38:48,450 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1099, uuid=a0160709-7011-3070-8575-d499c997b6ca, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1100, uuid=017c9fb8-6160-374a-b89a-e95c279b0b44, since=null, name=LNOwnedDS, alias=, stereotype=, visibility=public, txtDescription='Configured or persistent dataset on which this control block does samples reporting.', htmlDescription='

Configured or persistent dataset on which this control block does samples reporting.

'], _type=LNOwnedDS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3195, uuid={F357D381-3044-4cd1-8CFA-38A2B656F174}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,450 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1099, uuid=a0160709-7011-3070-8575-d499c997b6ca, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1100, uuid=017c9fb8-6160-374a-b89a-e95c279b0b44, since=null, name=LNOwnedDS, alias=, stereotype=, visibility=public, txtDescription='Configured or persistent dataset on which this control block does samples reporting.', htmlDescription='

Configured or persistent dataset on which this control block does samples reporting.

'], _type=LNOwnedDS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3195, uuid={F357D381-3044-4cd1-8CFA-38A2B656F174}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::LNOwnedDS +2024-09-07 12:38:48,450 [main] DEBUG AssociationEndBuilder - Updated target type to LNOwnedDS +2024-09-07 12:38:48,450 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1102, uuid=c667d53a-cd89-3a97-a85d-e0c201ba99be, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1103, uuid=c06bb548-4faa-374b-8c34-fd0edfe9524d, since=null, name=LNOwnedDS, alias=, stereotype=, visibility=public, txtDescription='Configured or persistent dataset on which this control block does logging.', htmlDescription='

Configured or persistent dataset on which this control block does logging.

'], _type=LNOwnedDS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3196, uuid={EA54B291-68A6-4335-8F83-75866CFEC3A8}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,450 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1102, uuid=c667d53a-cd89-3a97-a85d-e0c201ba99be, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1103, uuid=c06bb548-4faa-374b-8c34-fd0edfe9524d, since=null, name=LNOwnedDS, alias=, stereotype=, visibility=public, txtDescription='Configured or persistent dataset on which this control block does logging.', htmlDescription='

Configured or persistent dataset on which this control block does logging.

'], _type=LNOwnedDS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3196, uuid={EA54B291-68A6-4335-8F83-75866CFEC3A8}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::LNOwnedDS +2024-09-07 12:38:48,450 [main] DEBUG AssociationEndBuilder - Updated target type to LNOwnedDS +2024-09-07 12:38:48,450 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1105, uuid=af21d0c9-7db2-327e-9357-2cbf59eb343d, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1106, uuid=e6823309-c63d-36d0-90f4-432dbb9633f8, since=null, name=LNOwnedDS, alias=, stereotype=, visibility=public, txtDescription='Configured or persistent dataset on which this control block does reporting.', htmlDescription='

Configured or persistent dataset on which this control block does reporting.

'], _type=LNOwnedDS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3197, uuid={76C586C4-9922-4d73-A4FD-C5D18503439E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,451 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1105, uuid=af21d0c9-7db2-327e-9357-2cbf59eb343d, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1106, uuid=e6823309-c63d-36d0-90f4-432dbb9633f8, since=null, name=LNOwnedDS, alias=, stereotype=, visibility=public, txtDescription='Configured or persistent dataset on which this control block does reporting.', htmlDescription='

Configured or persistent dataset on which this control block does reporting.

'], _type=LNOwnedDS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3197, uuid={76C586C4-9922-4d73-A4FD-C5D18503439E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::LNOwnedDS +2024-09-07 12:38:48,451 [main] DEBUG AssociationEndBuilder - Updated target type to LNOwnedDS +2024-09-07 12:38:48,451 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1108, uuid=b9d487a3-0398-342e-8ff5-5c228ed5652b, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1109, uuid=829fb6e1-1ddd-3d1d-bd66-36feb14446c7, since=null, name=LNOwnedDS, alias=, stereotype=, visibility=public, txtDescription='Configured or persistent dataset on which this control block does GOOSE eventing.', htmlDescription='

Configured or persistent dataset on which this control block does GOOSE eventing.

'], _type=LNOwnedDS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3198, uuid={3F8B1E7F-FBA3-44e0-8B59-38EF2CB27164}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,451 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1108, uuid=b9d487a3-0398-342e-8ff5-5c228ed5652b, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1109, uuid=829fb6e1-1ddd-3d1d-bd66-36feb14446c7, since=null, name=LNOwnedDS, alias=, stereotype=, visibility=public, txtDescription='Configured or persistent dataset on which this control block does GOOSE eventing.', htmlDescription='

Configured or persistent dataset on which this control block does GOOSE eventing.

'], _type=LNOwnedDS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3198, uuid={3F8B1E7F-FBA3-44e0-8B59-38EF2CB27164}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::LNOwnedDS +2024-09-07 12:38:48,451 [main] DEBUG AssociationEndBuilder - Updated target type to LNOwnedDS +2024-09-07 12:38:48,451 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1016, uuid=598e95ae-dfa7-39fb-88a4-4b35a32d16a6, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this data set.', htmlDescription='

Logical node that contains this data set.

'], _type=LN, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1017, uuid=ad95f35b-687c-3ff8-8d6f-753ec8310166, since=null, name=LNOwnedDSs, alias=, stereotype=, visibility=public, txtDescription='All datasets contained within the logical node. +Modelling note: To distinguish between data sets effectively contained by LN, and non-persistent data sets (which are owned by the TPAA over which they have been created), we introduced an abstract LNOwnedDS class, which excludes non-persistent DSs.', htmlDescription='

All datasets contained within the logical node.

Modelling note: To distinguish between data sets effectively contained by LN, and non-persistent data sets (which are owned by the TPAA over which they have been created), we introduced an abstract LNOwnedDS class, which excludes non-persistent DSs.

'], _type=LNOwnedDS, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3231, uuid={7F7F081B-F2D6-484c-963B-F44D4FE8F9CC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::LNOwnedDS +2024-09-07 12:38:48,451 [main] DEBUG ClassBuilder - Adding LNOwnedDS as subclass of DS +2024-09-07 12:38:48,451 [main] TRACE ClassBuilder - read from EA: MetaModel::LNOwnedDS +2024-09-07 12:38:48,451 [main] TRACE ClassBuilder - Class NonPersistentDS (27 in package MetaModel) +2024-09-07 12:38:48,451 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::NonPersistentDS, _objData=UmlObjectData [id=3598, uuid={D70F19B4-50F6-4ef3-B474-4097F3C69C1D}, since=null, name=isReferenced, alias=, stereotype=, visibility=public, txtDescription='Whether this persistent data set is referenced by any control block. +Modelling note: Persistent data set has to maintain the count of control blocks that refer to it. As long as any control block refers to it, the data set must not be deleted.', htmlDescription='

Whether this persistent data set is referenced by any control block.

Modelling note: Persistent data set has to maintain the count of control blocks that refer to it. As long as any control block refers to it, the data set must not be deleted.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,451 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::NonPersistentDS, _objData=UmlObjectData [id=3599, uuid={621B00EC-B4C7-4e96-B78E-699BDF150650}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1695, _eaTypeName=NonPersistentDSReference, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,452 [main] DEBUG AssociationEndBuilder - Updated target type to NonPersistentDS +2024-09-07 12:38:48,452 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=996, uuid=33873e04-2b68-3050-9013-5d6a42a0a6e5, since=null, name=TPAA, alias=, stereotype=, visibility=public, txtDescription='Two-party application association that contains this non-persistent data set.', htmlDescription='

Two-party application association that contains this non-persistent data set.

'], _type=TPAA, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=997, uuid=5880d6da-097a-3fed-aae8-1381cf23315b, since=null, name=NonPersistentDSs, alias=, stereotype=, visibility=public, txtDescription='All non-persistent data sets contained within this two-party application association.', htmlDescription='

All non-persistent data sets contained within this two-party application association.

'], _type=NonPersistentDS, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3242, uuid={B9ECE073-A02C-48da-93A7-2B8F2E8C9059}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::NonPersistentDS +2024-09-07 12:38:48,452 [main] DEBUG ClassBuilder - Adding NonPersistentDS as subclass of DS +2024-09-07 12:38:48,452 [main] TRACE ClassBuilder - read from EA: MetaModel::NonPersistentDS +2024-09-07 12:38:48,452 [main] TRACE ClassBuilder - Class ConfiguredDS (28 in package MetaModel) +2024-09-07 12:38:48,452 [main] DEBUG ClassBuilder - Adding ConfiguredDS as subclass of LNOwnedDS +2024-09-07 12:38:48,452 [main] TRACE ClassBuilder - read from EA: MetaModel::ConfiguredDS +2024-09-07 12:38:48,452 [main] TRACE ClassBuilder - Class PersistentDS (29 in package MetaModel) +2024-09-07 12:38:48,453 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::PersistentDS, _objData=UmlObjectData [id=3600, uuid={6031C78B-0DF2-4ebc-B8D9-F1536979D005}, since=null, name=isReferenced, alias=, stereotype=, visibility=public, txtDescription='Whether this persistent data set is referenced by any control block. +Modelling note: Persistent data set has to maintain the count of control blocks that refer to it. As long as any control block refers to it, the data set must not be deleted.', htmlDescription='

Whether this persistent data set is referenced by any control block.

Modelling note: Persistent data set has to maintain the count of control blocks that refer to it. As long as any control block refers to it, the data set must not be deleted.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,453 [main] DEBUG ClassBuilder - Adding PersistentDS as subclass of LNOwnedDS +2024-09-07 12:38:48,453 [main] TRACE ClassBuilder - read from EA: MetaModel::PersistentDS +2024-09-07 12:38:48,453 [main] TRACE ClassBuilder - Class SUBSTITUTION (30 in package MetaModel) +2024-09-07 12:38:48,454 [main] TRACE ClassBuilder - read from EA: MetaModel::SUBSTITUTION +2024-09-07 12:38:48,454 [main] TRACE ClassBuilder - Class ControlBlock (31 in package MetaModel) +2024-09-07 12:38:48,454 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::ControlBlock, _objData=UmlObjectData [id=3601, uuid={A222DE94-3FCC-4552-ABD6-E06CD9D4785A}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1698, _eaTypeName=CBReference, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,454 [main] DEBUG ClassBuilder - Adding ControlBlock as subclass of NamedIEC61850Object +2024-09-07 12:38:48,454 [main] TRACE ClassBuilder - read from EA: MetaModel::ControlBlock +2024-09-07 12:38:48,454 [main] TRACE ClassBuilder - Class RCB (32 in package MetaModel) +2024-09-07 12:38:48,454 [main] DEBUG ClassBuilder - Adding RCB as subclass of ControlBlock +2024-09-07 12:38:48,454 [main] TRACE ClassBuilder - read from EA: MetaModel::RCB +2024-09-07 12:38:48,454 [main] TRACE ClassBuilder - Class BRCB (33 in package MetaModel) +2024-09-07 12:38:48,455 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::BRCB, _objData=UmlObjectData [id=3602, uuid={49A42927-00D7-4419-B76E-ED5F48ECCCB8}, since=null, name=clientAddress, alias=, stereotype=, visibility=public, txtDescription='Address of the client configured to use this buffered sampled values control block.', htmlDescription='

Address of the client configured to use this buffered sampled values control block.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1771, _eaTypeName=IPAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,455 [main] DEBUG AssociationEndBuilder - Updated source type to BRCB +2024-09-07 12:38:48,455 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1105, uuid=af21d0c9-7db2-327e-9357-2cbf59eb343d, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=BRCB, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1106, uuid=e6823309-c63d-36d0-90f4-432dbb9633f8, since=null, name=LNOwnedDS, alias=, stereotype=, visibility=public, txtDescription='Configured or persistent dataset on which this control block does reporting.', htmlDescription='

Configured or persistent dataset on which this control block does reporting.

'], _type=LNOwnedDS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3197, uuid={76C586C4-9922-4d73-A4FD-C5D18503439E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::BRCB +2024-09-07 12:38:48,455 [main] DEBUG AssociationEndBuilder - Updated target type to BRCB +2024-09-07 12:38:48,455 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1028, uuid=e7603d9e-d7ed-34d2-a8c2-fe57012d3517, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this buffered report control block.', htmlDescription='

Logical node that contains this buffered report control block.

'], _type=LN, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1029, uuid=3e1af449-26b3-33ce-8b0e-bca6ed828fdc, since=null, name=BRCBs, alias=, stereotype=, visibility=public, txtDescription='All buffered report control blocks contained in this logical node.', htmlDescription='

All buffered report control blocks contained in this logical node.

'], _type=BRCB, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3235, uuid={0F20B431-6EE2-469b-8223-819230E9C43E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::BRCB +2024-09-07 12:38:48,455 [main] DEBUG ClassBuilder - Adding BRCB as subclass of RCB +2024-09-07 12:38:48,455 [main] TRACE ClassBuilder - read from EA: MetaModel::BRCB +2024-09-07 12:38:48,455 [main] TRACE ClassBuilder - Class URCB (34 in package MetaModel) +2024-09-07 12:38:48,455 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::URCB, _objData=UmlObjectData [id=3603, uuid={B5927ACC-713E-4617-AA8C-BC2DF96653FC}, since=null, name=clientAddress, alias=, stereotype=, visibility=public, txtDescription='Address of the client currently using this unbuffered report control block.', htmlDescription='

Address of the client currently using this unbuffered report control block.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1771, _eaTypeName=IPAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,455 [main] DEBUG AssociationEndBuilder - Updated source type to URCB +2024-09-07 12:38:48,455 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1091, uuid=754dda4b-1ba3-3c6f-a897-16b85d68532b, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=URCB, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1092, uuid=1031f846-1193-396c-a0c8-926a4fe94212, since=null, name=DS, alias=, stereotype=, visibility=public, txtDescription='Dataset on which this control block does reporting.', htmlDescription='

Dataset on which this control block does reporting.

'], _type=DS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3200, uuid={6ED5A47C-6FE5-4d6c-9066-A0852F973D51}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::URCB +2024-09-07 12:38:48,456 [main] DEBUG AssociationEndBuilder - Updated target type to URCB +2024-09-07 12:38:48,456 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1025, uuid=a356009c-e249-3887-a8c2-5efc8b789aeb, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this unbuffered report control block.', htmlDescription='

Logical node that contains this unbuffered report control block.

'], _type=LN, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1026, uuid=a98e6c87-71bd-3819-b3e8-db240e74bd95, since=null, name=URCBs, alias=, stereotype=, visibility=public, txtDescription='All unbuffered report control blocks contained in this logical node.', htmlDescription='

All unbuffered report control blocks contained in this logical node.

'], _type=URCB, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3234, uuid={1CDCF8AA-E5B2-490a-AC9E-28949329C1F9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::URCB +2024-09-07 12:38:48,456 [main] DEBUG ClassBuilder - Adding URCB as subclass of RCB +2024-09-07 12:38:48,457 [main] TRACE ClassBuilder - read from EA: MetaModel::URCB +2024-09-07 12:38:48,457 [main] TRACE ClassBuilder - Class LCB (35 in package MetaModel) +2024-09-07 12:38:48,457 [main] DEBUG AssociationEndBuilder - Updated source type to LCB +2024-09-07 12:38:48,457 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1126, uuid=ffeed84c-7cb1-3e7b-b4ec-4bd78275bb98, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=LCB, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1127, uuid=956f45df-c33e-36bb-a970-1eec7ebf4d41, since=null, name=LOG, alias=, stereotype=, visibility=public, txtDescription='Log to which this control block logs entries.', htmlDescription='

Log to which this control block logs entries.

'], _type=null, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3186, uuid={E2E6813C-06BC-49cd-A3E4-BFAD1AFF3150}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,458 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1126, uuid=ffeed84c-7cb1-3e7b-b4ec-4bd78275bb98, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=LCB, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1127, uuid=956f45df-c33e-36bb-a970-1eec7ebf4d41, since=null, name=LOG, alias=, stereotype=, visibility=public, txtDescription='Log to which this control block logs entries.', htmlDescription='

Log to which this control block logs entries.

'], _type=null, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3186, uuid={E2E6813C-06BC-49cd-A3E4-BFAD1AFF3150}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::LCB +2024-09-07 12:38:48,458 [main] DEBUG AssociationEndBuilder - Updated source type to LCB +2024-09-07 12:38:48,458 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1102, uuid=c667d53a-cd89-3a97-a85d-e0c201ba99be, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=LCB, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1103, uuid=c06bb548-4faa-374b-8c34-fd0edfe9524d, since=null, name=LNOwnedDS, alias=, stereotype=, visibility=public, txtDescription='Configured or persistent dataset on which this control block does logging.', htmlDescription='

Configured or persistent dataset on which this control block does logging.

'], _type=LNOwnedDS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3196, uuid={EA54B291-68A6-4335-8F83-75866CFEC3A8}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::LCB +2024-09-07 12:38:48,458 [main] DEBUG AssociationEndBuilder - Updated target type to LCB +2024-09-07 12:38:48,458 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1022, uuid=87feb7ab-da8f-3ba7-aae0-aa46758eaf0f, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this log control block.', htmlDescription='

Logical node that contains this log control block.

'], _type=LN, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1023, uuid=c7ae4357-23e6-374c-a634-364fe49cda56, since=null, name=LCBs, alias=, stereotype=, visibility=public, txtDescription='All log control blocks contained in this device logical node.', htmlDescription='

All log control blocks contained in this device logical node.

'], _type=LCB, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3233, uuid={4EDAC9DF-298C-4398-A217-F8EE4F5B1585}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::LCB +2024-09-07 12:38:48,458 [main] DEBUG ClassBuilder - Adding LCB as subclass of ControlBlock +2024-09-07 12:38:48,458 [main] TRACE ClassBuilder - read from EA: MetaModel::LCB +2024-09-07 12:38:48,458 [main] TRACE ClassBuilder - Class LOG (36 in package MetaModel) +2024-09-07 12:38:48,458 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::LOG, _objData=UmlObjectData [id=3604, uuid={83B4C180-8173-4ced-91C7-171BCA34F649}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1700, _eaTypeName=LOGReference, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,459 [main] DEBUG AssociationEndBuilder - Updated target type to LOG +2024-09-07 12:38:48,459 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1126, uuid=ffeed84c-7cb1-3e7b-b4ec-4bd78275bb98, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=LCB, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1127, uuid=956f45df-c33e-36bb-a970-1eec7ebf4d41, since=null, name=LOG, alias=, stereotype=, visibility=public, txtDescription='Log to which this control block logs entries.', htmlDescription='

Log to which this control block logs entries.

'], _type=LOG, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3186, uuid={E2E6813C-06BC-49cd-A3E4-BFAD1AFF3150}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::LOG +2024-09-07 12:38:48,459 [main] DEBUG AssociationEndBuilder - Updated target type to LOG +2024-09-07 12:38:48,459 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1019, uuid=91389a73-8253-3920-bb6e-2ca4b6596579, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this log.', htmlDescription='

Logical node that contains this log.

'], _type=LN, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1020, uuid=6dba35d3-b8a8-39a0-96f5-63c3fb0ca786, since=null, name=LOGs, alias=, stereotype=, visibility=public, txtDescription='All logs contained in this device logical node.', htmlDescription='

All logs contained in this device logical node.

'], _type=LOG, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3232, uuid={7F440C52-EE5C-4b8b-A1A0-DC7AA86473A0}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::LOG +2024-09-07 12:38:48,459 [main] DEBUG ClassBuilder - Adding LOG as subclass of NamedIEC61850Object +2024-09-07 12:38:48,459 [main] TRACE ClassBuilder - read from EA: MetaModel::LOG +2024-09-07 12:38:48,459 [main] TRACE ClassBuilder - Class GCB (37 in package MetaModel) +2024-09-07 12:38:48,459 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::GCB, _objData=UmlObjectData [id=3605, uuid={8D35BDEB-211F-478a-B3F2-87A92379A926}, since=null, name=destinationAddress, alias=, stereotype=, visibility=public, txtDescription='Address to which this control block publishes GOOSE messages.', htmlDescription='

Address to which this control block publishes GOOSE messages.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1772, _eaTypeName=MulticastAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,460 [main] DEBUG AssociationEndBuilder - Updated source type to GCB +2024-09-07 12:38:48,460 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1108, uuid=b9d487a3-0398-342e-8ff5-5c228ed5652b, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=GCB, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1109, uuid=829fb6e1-1ddd-3d1d-bd66-36feb14446c7, since=null, name=LNOwnedDS, alias=, stereotype=, visibility=public, txtDescription='Configured or persistent dataset on which this control block does GOOSE eventing.', htmlDescription='

Configured or persistent dataset on which this control block does GOOSE eventing.

'], _type=LNOwnedDS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3198, uuid={3F8B1E7F-FBA3-44e0-8B59-38EF2CB27164}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::GCB +2024-09-07 12:38:48,460 [main] DEBUG AssociationEndBuilder - Updated target type to GCB +2024-09-07 12:38:48,460 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1036, uuid=c18773d5-9ab1-31dd-8e87-e416e5c518dd, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='Device logical node that contains this GOOSE control block.', htmlDescription='

Device logical node that contains this GOOSE control block.

'], _type=LN0, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1037, uuid=43d0dac2-11b5-3602-9cdb-c87fd6c9ed1e, since=null, name=GCBs, alias=, stereotype=, visibility=public, txtDescription='All GOOSE control blocks contained in this device logical node.', htmlDescription='

All GOOSE control blocks contained in this device logical node.

'], _type=GCB, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3225, uuid={5B28CB32-75ED-4ce9-970B-A054C0FE6AF2}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::GCB +2024-09-07 12:38:48,460 [main] DEBUG ClassBuilder - Adding GCB as subclass of ControlBlock +2024-09-07 12:38:48,460 [main] TRACE ClassBuilder - read from EA: MetaModel::GCB +2024-09-07 12:38:48,460 [main] TRACE ClassBuilder - Class SVCB (38 in package MetaModel) +2024-09-07 12:38:48,461 [main] DEBUG ClassBuilder - Adding SVCB as subclass of ControlBlock +2024-09-07 12:38:48,461 [main] TRACE ClassBuilder - read from EA: MetaModel::SVCB +2024-09-07 12:38:48,461 [main] TRACE ClassBuilder - Class MSVCB (39 in package MetaModel) +2024-09-07 12:38:48,461 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::MSVCB, _objData=UmlObjectData [id=3606, uuid={98ABF189-48F0-466b-9B2F-580948BB965B}, since=null, name=destinationAddress, alias=, stereotype=, visibility=public, txtDescription='Address to which this control block publishes sampled values.', htmlDescription='

Address to which this control block publishes sampled values.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1772, _eaTypeName=MulticastAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,461 [main] DEBUG AssociationEndBuilder - Updated source type to MSVCB +2024-09-07 12:38:48,461 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1099, uuid=a0160709-7011-3070-8575-d499c997b6ca, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=MSVCB, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1100, uuid=017c9fb8-6160-374a-b89a-e95c279b0b44, since=null, name=LNOwnedDS, alias=, stereotype=, visibility=public, txtDescription='Configured or persistent dataset on which this control block does samples reporting.', htmlDescription='

Configured or persistent dataset on which this control block does samples reporting.

'], _type=LNOwnedDS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3195, uuid={F357D381-3044-4cd1-8CFA-38A2B656F174}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::MSVCB +2024-09-07 12:38:48,461 [main] DEBUG AssociationEndBuilder - Updated target type to MSVCB +2024-09-07 12:38:48,461 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1039, uuid=9322d900-a7a3-35be-a2fc-8dc05f438e73, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='Device logical node that contains this multicast sampled values control block.', htmlDescription='

Device logical node that contains this multicast sampled values control block.

'], _type=LN0, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1040, uuid=1d3ff9d3-58c1-37bd-ae64-3a515789448b, since=null, name=MSVCBs, alias=, stereotype=, visibility=public, txtDescription='All multicast simpled values control blocks contained in this device logical node.', htmlDescription='

All multicast simpled values control blocks contained in this device logical node.

'], _type=MSVCB, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3226, uuid={3FE94B8A-D716-44df-98C2-B7C222CEE5E8}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::MSVCB +2024-09-07 12:38:48,462 [main] DEBUG ClassBuilder - Adding MSVCB as subclass of SVCB +2024-09-07 12:38:48,462 [main] TRACE ClassBuilder - read from EA: MetaModel::MSVCB +2024-09-07 12:38:48,462 [main] TRACE ClassBuilder - Class USVCB (40 in package MetaModel) +2024-09-07 12:38:48,462 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::USVCB, _objData=UmlObjectData [id=3607, uuid={84624C3F-9B45-49b5-94A3-491A476383AF}, since=null, name=clientAddress, alias=, stereotype=, visibility=public, txtDescription='Address of the client currently using this unbuffered sampled values control block.', htmlDescription='

Address of the client currently using this unbuffered sampled values control block.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1771, _eaTypeName=IPAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,462 [main] DEBUG AssociationEndBuilder - Updated source type to USVCB +2024-09-07 12:38:48,462 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1094, uuid=41bfd20a-38bb-3b0b-ac75-acf0845530a7, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=USVCB, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1095, uuid=642e8482-67c3-35c6-bed8-242064f73265, since=null, name=DS, alias=, stereotype=, visibility=public, txtDescription='Dataset on which this control block does samples reporting.', htmlDescription='

Dataset on which this control block does samples reporting.

'], _type=DS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3201, uuid={050244CD-359B-4516-B382-B2C560ECFCA1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::USVCB +2024-09-07 12:38:48,462 [main] DEBUG AssociationEndBuilder - Updated target type to USVCB +2024-09-07 12:38:48,462 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1033, uuid=b9c7430f-005d-37b1-96f1-0969d56fb74b, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='Device logical node that contains this unicast sampled values control block.', htmlDescription='

Device logical node that contains this unicast sampled values control block.

'], _type=LN0, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1034, uuid=2149586b-93ab-366c-b7d5-585dd8ab2dcb, since=null, name=USVCBs, alias=, stereotype=, visibility=public, txtDescription='All unicast simpled values control blocks contained in this device logical node.', htmlDescription='

All unicast simpled values control blocks contained in this device logical node.

'], _type=USVCB, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3224, uuid={BA890AF8-70A6-4685-8215-9B7A0C34827D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::USVCB +2024-09-07 12:38:48,462 [main] DEBUG ClassBuilder - Adding USVCB as subclass of SVCB +2024-09-07 12:38:48,462 [main] TRACE ClassBuilder - read from EA: MetaModel::USVCB +2024-09-07 12:38:48,463 [main] TRACE ClassBuilder - Class SGCB (41 in package MetaModel) +2024-09-07 12:38:48,463 [main] DEBUG AssociationEndBuilder - Updated source type to SGCB +2024-09-07 12:38:48,463 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1139, uuid=18426034-8236-3955-8fe9-375772ff966e, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=SGCB, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1140, uuid=d79bb6de-81ab-3e4d-a392-21dd7df714c9, since=null, name=ActiveFCDAs, alias=, stereotype=, visibility=public, txtDescription='All leaf attribute references with FC=SG within the LD to which belongs this SGCB. +Examples: +- [SG] myLD/PTOV_1.StrVal.setMag.f +- [SG] myLD/PVOC_2.MinOpTmms.setVal. +Modelling note 1: This is for one of 2 new directory services. +Modelling note 2: The rule to build the return collection is as follows (source: W.Wimmer): For an LD, take all its LNs, and then all its CDCs, and all the FCDAReference-s (leaf Attributes) with FC=SG.', htmlDescription='

All leaf attribute references with FC=SG within the LD to which belongs this SGCB.

Examples:

- [SG] myLD/PTOV_1.StrVal.setMag.f

- [SG] myLD/PVOC_2.MinOpTmms.setVal.

Modelling note 1: This is for one of 2 new directory services.

Modelling note 2: The rule to build the return collection is as follows (source: W.Wimmer): For an LD, take all its LNs, and then all its CDCs, and all the FCDAReference-s (leaf Attributes) with FC=SG.

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3178, uuid={E46DDC5E-E997-47da-8CC0-F6747118E269}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,463 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1139, uuid=18426034-8236-3955-8fe9-375772ff966e, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=SGCB, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1140, uuid=d79bb6de-81ab-3e4d-a392-21dd7df714c9, since=null, name=ActiveFCDAs, alias=, stereotype=, visibility=public, txtDescription='All leaf attribute references with FC=SG within the LD to which belongs this SGCB. +Examples: +- [SG] myLD/PTOV_1.StrVal.setMag.f +- [SG] myLD/PVOC_2.MinOpTmms.setVal. +Modelling note 1: This is for one of 2 new directory services. +Modelling note 2: The rule to build the return collection is as follows (source: W.Wimmer): For an LD, take all its LNs, and then all its CDCs, and all the FCDAReference-s (leaf Attributes) with FC=SG.', htmlDescription='

All leaf attribute references with FC=SG within the LD to which belongs this SGCB.

Examples:

- [SG] myLD/PTOV_1.StrVal.setMag.f

- [SG] myLD/PVOC_2.MinOpTmms.setVal.

Modelling note 1: This is for one of 2 new directory services.

Modelling note 2: The rule to build the return collection is as follows (source: W.Wimmer): For an LD, take all its LNs, and then all its CDCs, and all the FCDAReference-s (leaf Attributes) with FC=SG.

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3178, uuid={E46DDC5E-E997-47da-8CC0-F6747118E269}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::SGCB +2024-09-07 12:38:48,464 [main] DEBUG AssociationEndBuilder - Updated source type to SGCB +2024-09-07 12:38:48,464 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1142, uuid=8ce6790c-c6a9-3e65-b17f-908f462fae85, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=SGCB, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1143, uuid=98745af8-980b-3541-a397-1788a097390f, since=null, name=EditFCDAs, alias=, stereotype=, visibility=public, txtDescription='All leaf attribute references with FC=SE within the LD to which this SGCB belongs. +Examples: +- [SE] myLD/PTOV_1.StrVal.setMag.f +- [SE] myLD/PVOC_2.MinOpTmms.setVal. +Modelling note 1: This is for one of 2 new directory services. +Modelling note 2: The rule to build the return collection is as follows (source: W.Wimmer): For an LD, take all its LNs, and then all its CDCs, and all the FCDAReference-s (leaf Attributes) with FC=SE.', htmlDescription='

All leaf attribute references with FC=SE within the LD to which this SGCB belongs.

Examples:

- [SE] myLD/PTOV_1.StrVal.setMag.f

- [SE] myLD/PVOC_2.MinOpTmms.setVal.

Modelling note 1: This is for one of 2 new directory services.

Modelling note 2: The rule to build the return collection is as follows (source: W.Wimmer): For an LD, take all its LNs, and then all its CDCs, and all the FCDAReference-s (leaf Attributes) with FC=SE.

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3179, uuid={DD43C193-FAAE-4a01-956E-1EBAF2E500D3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,464 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1142, uuid=8ce6790c-c6a9-3e65-b17f-908f462fae85, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=SGCB, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1143, uuid=98745af8-980b-3541-a397-1788a097390f, since=null, name=EditFCDAs, alias=, stereotype=, visibility=public, txtDescription='All leaf attribute references with FC=SE within the LD to which this SGCB belongs. +Examples: +- [SE] myLD/PTOV_1.StrVal.setMag.f +- [SE] myLD/PVOC_2.MinOpTmms.setVal. +Modelling note 1: This is for one of 2 new directory services. +Modelling note 2: The rule to build the return collection is as follows (source: W.Wimmer): For an LD, take all its LNs, and then all its CDCs, and all the FCDAReference-s (leaf Attributes) with FC=SE.', htmlDescription='

All leaf attribute references with FC=SE within the LD to which this SGCB belongs.

Examples:

- [SE] myLD/PTOV_1.StrVal.setMag.f

- [SE] myLD/PVOC_2.MinOpTmms.setVal.

Modelling note 1: This is for one of 2 new directory services.

Modelling note 2: The rule to build the return collection is as follows (source: W.Wimmer): For an LD, take all its LNs, and then all its CDCs, and all the FCDAReference-s (leaf Attributes) with FC=SE.

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3179, uuid={DD43C193-FAAE-4a01-956E-1EBAF2E500D3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::SGCB +2024-09-07 12:38:48,464 [main] DEBUG AssociationEndBuilder - Updated target type to SGCB +2024-09-07 12:38:48,464 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1042, uuid=c6a9f569-0770-3ffe-bdc0-a645b0387d2f, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='Device logical node that contains this setting group control block.', htmlDescription='

Device logical node that contains this setting group control block.

'], _type=LN0, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1043, uuid=69a2696d-a46f-38f0-a20e-b7cca875605c, since=null, name=SGCB, alias=, stereotype=, visibility=public, txtDescription='Setting group control block contained in this device logical node.', htmlDescription='

Setting group control block contained in this device logical node.

'], _type=SGCB, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3227, uuid={16912038-2F54-4108-A868-FEDEFD36C7B1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::SGCB +2024-09-07 12:38:48,464 [main] DEBUG ClassBuilder - Adding SGCB as subclass of ControlBlock +2024-09-07 12:38:48,464 [main] TRACE ClassBuilder - read from EA: MetaModel::SGCB +2024-09-07 12:38:48,464 [main] TRACE ClassBuilder - Class CONTROL (42 in package MetaModel) +2024-09-07 12:38:48,465 [main] TRACE ClassBuilder - read from EA: MetaModel::CONTROL +2024-09-07 12:38:48,465 [main] TRACE ClassBuilder - Class TIME (43 in package MetaModel) +2024-09-07 12:38:48,465 [main] TRACE ClassBuilder - read from EA: MetaModel::TIME +2024-09-07 12:38:48,465 [main] TRACE ClassBuilder - Class FILE (44 in package MetaModel) +2024-09-07 12:38:48,465 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::FILE, _objData=UmlObjectData [id=3608, uuid={9EB09CC5-3C74-4cf6-A8B4-C65928A972B6}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1693, _eaTypeName=FILEReference, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,465 [main] DEBUG AssociationEndBuilder - Updated target type to FILE +2024-09-07 12:38:48,466 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=986, uuid=fe7ee8fc-1959-3c72-94fa-21c4840dff0a, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='Server that hosts this file.', htmlDescription='

Server that hosts this file.

'], _type=SERVER, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=987, uuid=3270eb7e-b5b0-39ac-9f02-6f3b15106228, since=null, name=FILEs, alias=, stereotype=, visibility=public, txtDescription='All files within the server. +Modelling note: Corresponds to SERVER.File.', htmlDescription='

All files within the server.

Modelling note: Corresponds to SERVER.File.

'], _type=FILE, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3245, uuid={BD48CF11-B1F9-4a40-B020-BE7D3C205E87}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::FILE +2024-09-07 12:38:48,466 [main] DEBUG ClassBuilder - Adding FILE as subclass of HierarchyIEC61850Object +2024-09-07 12:38:48,466 [main] TRACE ClassBuilder - read from EA: MetaModel::FILE +2024-09-07 12:38:48,466 [main] INFO PackageBuilder - processing package MetaModelFCsAndTrgOps (0) ... +2024-09-07 12:38:48,466 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=MetaModelFCsAndTrgOps, _objData=UmlObjectData [id=222, uuid={3C4182DC-EB84-4975-BC93-18C32C6AC1AD}, since=null, name=MetaModelFCsAndTrgOps, alias=, stereotype=, visibility=public, txtDescription='These are all the possible combinations of FC and TrgOp, as abstract supertypes for the concrete ones defined in IEC61850-7-3.', htmlDescription='

These are all the possible combinations of FC and TrgOp, as abstract supertypes for the concrete ones defined in IEC61850-7-3.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,468 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1902, uuid={56AA79CA-7530-4d3f-B3D7-A6394D2388FF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note 1: Attributes 'isReadable' and 'isWritable' reflect the services of AcsiCDC. +Modelling note 2: In white are explicit FCDAs from Ed.1, in green are extensions from Ed.2 (no more FCDA_CO in Ed.2). +Modelling note 3: In pink, we have added a couple more meta-model abstract classes, to support 61850-7-420.', htmlDescription='

Modelling note 1: Attributes 'isReadable' and 'isWritable' reflect the services of AcsiCDC.

Modelling note 2: In white are explicit FCDAs from Ed.1, in green are extensions from Ed.2 (no more FCDA_CO in Ed.2).

Modelling note 3: In pink, we have added a couple more meta-model abstract classes, to support 61850-7-420.

'], _containingPackage=MetaModelFCsAndTrgOps, _otherEndName=] +2024-09-07 12:38:48,468 [main] TRACE ClassBuilder - Class EnumFCDA_CF (0 in package MetaModelFCsAndTrgOps) +2024-09-07 12:38:48,468 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::EnumFCDA_CF +2024-09-07 12:38:48,469 [main] TRACE ClassBuilder - Class EnumFCDA_CF_dchg (1 in package MetaModelFCsAndTrgOps) +2024-09-07 12:38:48,469 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::EnumFCDA_CF_dchg +2024-09-07 12:38:48,469 [main] TRACE ClassBuilder - Class EnumFCDA_MX (2 in package MetaModelFCsAndTrgOps) +2024-09-07 12:38:48,469 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::EnumFCDA_MX +2024-09-07 12:38:48,469 [main] TRACE ClassBuilder - Class EnumFCDA_SE_dchg (5 in package MetaModelFCsAndTrgOps) +2024-09-07 12:38:48,469 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::EnumFCDA_SE_dchg +2024-09-07 12:38:48,469 [main] TRACE ClassBuilder - Class EnumFCDA_SG_dchg (7 in package MetaModelFCsAndTrgOps) +2024-09-07 12:38:48,470 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::EnumFCDA_SG_dchg +2024-09-07 12:38:48,470 [main] TRACE ClassBuilder - Class EnumFCDA_ST (9 in package MetaModelFCsAndTrgOps) +2024-09-07 12:38:48,470 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::EnumFCDA_ST +2024-09-07 12:38:48,470 [main] TRACE ClassBuilder - Class EnumFCDA_ST_dchg (10 in package MetaModelFCsAndTrgOps) +2024-09-07 12:38:48,470 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::EnumFCDA_ST_dchg +2024-09-07 12:38:48,470 [main] TRACE ClassBuilder - Class EnumFCDA_ST_dchg_dupd (11 in package MetaModelFCsAndTrgOps) +2024-09-07 12:38:48,471 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::EnumFCDA_ST_dchg_dupd +2024-09-07 12:38:48,471 [main] TRACE ClassBuilder - Class EnumFCDA_SV (12 in package MetaModelFCsAndTrgOps) +2024-09-07 12:38:48,471 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::EnumFCDA_SV +2024-09-07 12:38:48,471 [main] TRACE ClassBuilder - Class FCDA_BL (13 in package MetaModelFCsAndTrgOps) +2024-09-07 12:38:48,471 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_BL, _objData=UmlObjectData [id=3609, uuid={5D2587D3-3485-4d8e-A54A-B3968B0ACD55}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=BL, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,471 [main] DEBUG ClassBuilder - Adding FCDA_BL as subclass of FCDA +2024-09-07 12:38:48,471 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_BL +2024-09-07 12:38:48,471 [main] TRACE ClassBuilder - Class FCDA_CF (14 in package MetaModelFCsAndTrgOps) +2024-09-07 12:38:48,471 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_CF, _objData=UmlObjectData [id=3610, uuid={09B06C9E-4F11-4e82-8034-F5CC45FAC900}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=CF, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,472 [main] DEBUG ClassBuilder - Adding FCDA_CF as subclass of FCDA +2024-09-07 12:38:48,472 [main] DEBUG ClassBuilder - Adding FCDA_CF as superclass of EnumFCDA_CF +2024-09-07 12:38:48,472 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_CF +2024-09-07 12:38:48,472 [main] TRACE ClassBuilder - Class FCDA_CF_dchg (15 in package MetaModelFCsAndTrgOps) +2024-09-07 12:38:48,472 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_CF_dchg, _objData=UmlObjectData [id=3611, uuid={09BA6106-FB5B-46d5-B9EB-69EF40ADE216}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,472 [main] DEBUG ClassBuilder - Adding FCDA_CF_dchg as subclass of FCDA_CF +2024-09-07 12:38:48,472 [main] DEBUG ClassBuilder - Adding FCDA_CF_dchg as superclass of EnumFCDA_CF_dchg +2024-09-07 12:38:48,472 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_CF_dchg +2024-09-07 12:38:48,472 [main] TRACE ClassBuilder - Class FCDA_DC (16 in package MetaModelFCsAndTrgOps) +2024-09-07 12:38:48,472 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_DC, _objData=UmlObjectData [id=3612, uuid={683D28A6-85D9-4a30-9858-1FD32EE25D71}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=DC, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,474 [main] DEBUG ClassBuilder - Adding FCDA_DC as subclass of FCDA +2024-09-07 12:38:48,474 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_DC +2024-09-07 12:38:48,474 [main] TRACE ClassBuilder - Class FCDA_EX (17 in package MetaModelFCsAndTrgOps) +2024-09-07 12:38:48,474 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_EX, _objData=UmlObjectData [id=3613, uuid={CEFBDE9B-5BF0-4b36-856A-CA994924738A}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=EX, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,474 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_EX, _objData=UmlObjectData [id=3614, uuid={5A327143-156F-48dd-AAF5-6B96335A4246}, since=null, name=isWritable, alias=, stereotype=, visibility=public, txtDescription='Whether the data attribute is writable through services.', htmlDescription='

Whether the data attribute is writable through services.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,475 [main] DEBUG ClassBuilder - Adding FCDA_EX as subclass of FCDA +2024-09-07 12:38:48,475 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_EX +2024-09-07 12:38:48,475 [main] TRACE ClassBuilder - Class FCDA_MX (18 in package MetaModelFCsAndTrgOps) +2024-09-07 12:38:48,475 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_MX, _objData=UmlObjectData [id=3615, uuid={C595F449-EECA-490f-86C4-52A016827CF5}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=MX, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,475 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_MX, _objData=UmlObjectData [id=3616, uuid={26C44A44-AB3A-4d2f-9A1C-F09A40CD7503}, since=null, name=isWritable, alias=, stereotype=, visibility=public, txtDescription='Whether the data attribute is writable through services.', htmlDescription='

Whether the data attribute is writable through services.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,475 [main] DEBUG ClassBuilder - Adding FCDA_MX as subclass of FCDA +2024-09-07 12:38:48,475 [main] DEBUG ClassBuilder - Adding FCDA_MX as superclass of EnumFCDA_MX +2024-09-07 12:38:48,475 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_MX +2024-09-07 12:38:48,475 [main] TRACE ClassBuilder - Class FCDA_MX_dchg (19 in package MetaModelFCsAndTrgOps) +2024-09-07 12:38:48,476 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_MX_dchg, _objData=UmlObjectData [id=3617, uuid={DA6E63F6-73E7-48a9-B61B-B3DF59A04B4E}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,476 [main] DEBUG ClassBuilder - Adding FCDA_MX_dchg as subclass of FCDA_MX +2024-09-07 12:38:48,476 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_MX_dchg +2024-09-07 12:38:48,476 [main] TRACE ClassBuilder - Class FCDA_MX_dchg_dupd (20 in package MetaModelFCsAndTrgOps) +2024-09-07 12:38:48,476 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_MX_dchg_dupd, _objData=UmlObjectData [id=3618, uuid={22AFD6F7-773C-4cac-A2E0-545134B61149}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, dupd, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,476 [main] DEBUG ClassBuilder - Adding FCDA_MX_dchg_dupd as subclass of FCDA_MX +2024-09-07 12:38:48,477 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_MX_dchg_dupd +2024-09-07 12:38:48,477 [main] TRACE ClassBuilder - Class FCDA_MX_qchg (21 in package MetaModelFCsAndTrgOps) +2024-09-07 12:38:48,477 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_MX_qchg, _objData=UmlObjectData [id=3619, uuid={3F395C8A-6D62-4c56-87E6-027F1F594183}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=qchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,477 [main] DEBUG ClassBuilder - Adding FCDA_MX_qchg as subclass of FCDA_MX +2024-09-07 12:38:48,477 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_MX_qchg +2024-09-07 12:38:48,477 [main] TRACE ClassBuilder - Class FCDA_OR (22 in package MetaModelFCsAndTrgOps) +2024-09-07 12:38:48,477 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_OR, _objData=UmlObjectData [id=3620, uuid={282951AC-7E92-4c83-97E3-19FBCC94D012}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=OR, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,477 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_OR, _objData=UmlObjectData [id=3621, uuid={558DB516-1CFD-4554-81F5-FA0755D271D8}, since=null, name=isWritable, alias=, stereotype=, visibility=public, txtDescription='Whether the data attribute is writable through services.', htmlDescription='

Whether the data attribute is writable through services.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,478 [main] DEBUG ClassBuilder - Adding FCDA_OR as subclass of FCDA +2024-09-07 12:38:48,478 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_OR +2024-09-07 12:38:48,478 [main] TRACE ClassBuilder - Class FCDA_OR_dchg (23 in package MetaModelFCsAndTrgOps) +2024-09-07 12:38:48,478 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_OR_dchg, _objData=UmlObjectData [id=3622, uuid={3A006018-162B-46b7-AC78-9652BF2385BD}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,478 [main] DEBUG ClassBuilder - Adding FCDA_OR_dchg as subclass of FCDA_OR +2024-09-07 12:38:48,478 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_OR_dchg +2024-09-07 12:38:48,478 [main] TRACE ClassBuilder - Class FCDA_SE (24 in package MetaModelFCsAndTrgOps) +2024-09-07 12:38:48,479 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SE, _objData=UmlObjectData [id=3623, uuid={EE451B41-BF45-40e4-8CF7-515359A61448}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=SE, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,479 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SE, _objData=UmlObjectData [id=3624, uuid={C6F2D29C-73F2-45a2-852C-36D93C110DE8}, since=null, name=isReadable, alias=, stereotype=, visibility=public, txtDescription='Whether the data attribute is readable through services.', htmlDescription='

Whether the data attribute is readable through services.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,479 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SE, _objData=UmlObjectData [id=3625, uuid={4CFFCD7F-9E74-4b7a-B957-5A62F07BBB56}, since=null, name=isWritable, alias=, stereotype=, visibility=public, txtDescription='Whether the data attribute is writable through services.', htmlDescription='

Whether the data attribute is writable through services.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,479 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2203, uuid={399F8C95-DFA6-4b8b-B34F-C40D6720E62F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=FCDA_SE, _otherEndName=?] +2024-09-07 12:38:48,480 [main] DEBUG AssociationEndBuilder - Updated target type to FCDA_SE +2024-09-07 12:38:48,480 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1142, uuid=8ce6790c-c6a9-3e65-b17f-908f462fae85, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=SGCB, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1143, uuid=98745af8-980b-3541-a397-1788a097390f, since=null, name=EditFCDAs, alias=, stereotype=, visibility=public, txtDescription='All leaf attribute references with FC=SE within the LD to which this SGCB belongs. +Examples: +- [SE] myLD/PTOV_1.StrVal.setMag.f +- [SE] myLD/PVOC_2.MinOpTmms.setVal. +Modelling note 1: This is for one of 2 new directory services. +Modelling note 2: The rule to build the return collection is as follows (source: W.Wimmer): For an LD, take all its LNs, and then all its CDCs, and all the FCDAReference-s (leaf Attributes) with FC=SE.', htmlDescription='

All leaf attribute references with FC=SE within the LD to which this SGCB belongs.

Examples:

- [SE] myLD/PTOV_1.StrVal.setMag.f

- [SE] myLD/PVOC_2.MinOpTmms.setVal.

Modelling note 1: This is for one of 2 new directory services.

Modelling note 2: The rule to build the return collection is as follows (source: W.Wimmer): For an LD, take all its LNs, and then all its CDCs, and all the FCDAReference-s (leaf Attributes) with FC=SE.

'], _type=FCDA_SE, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3179, uuid={DD43C193-FAAE-4a01-956E-1EBAF2E500D3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModelFCsAndTrgOps::FCDA_SE +2024-09-07 12:38:48,480 [main] DEBUG ClassBuilder - Adding FCDA_SE as subclass of FCDA +2024-09-07 12:38:48,480 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_SE +2024-09-07 12:38:48,480 [main] TRACE ClassBuilder - Class FCDA_SE_dchg (25 in package MetaModelFCsAndTrgOps) +2024-09-07 12:38:48,480 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SE_dchg, _objData=UmlObjectData [id=3626, uuid={CF74494C-A546-4a41-A807-684E97FE1B68}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,480 [main] DEBUG ClassBuilder - Adding FCDA_SE_dchg as subclass of FCDA_SE +2024-09-07 12:38:48,480 [main] DEBUG ClassBuilder - Adding FCDA_SE_dchg as superclass of EnumFCDA_SE_dchg +2024-09-07 12:38:48,480 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_SE_dchg +2024-09-07 12:38:48,480 [main] TRACE ClassBuilder - Class FCDA_SG (26 in package MetaModelFCsAndTrgOps) +2024-09-07 12:38:48,481 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SG, _objData=UmlObjectData [id=3627, uuid={1810C2D0-E27B-4e1e-A0B6-2A5F2E8E16D6}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=SG, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,481 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SG, _objData=UmlObjectData [id=3628, uuid={1BD03152-B959-4fff-8DC0-B6BE8542DDD2}, since=null, name=isWritable, alias=, stereotype=, visibility=public, txtDescription='Whether the data attribute is writable through services.', htmlDescription='

Whether the data attribute is writable through services.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,481 [main] DEBUG AssociationEndBuilder - Updated target type to FCDA_SG +2024-09-07 12:38:48,481 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1139, uuid=18426034-8236-3955-8fe9-375772ff966e, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=SGCB, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1140, uuid=d79bb6de-81ab-3e4d-a392-21dd7df714c9, since=null, name=ActiveFCDAs, alias=, stereotype=, visibility=public, txtDescription='All leaf attribute references with FC=SG within the LD to which belongs this SGCB. +Examples: +- [SG] myLD/PTOV_1.StrVal.setMag.f +- [SG] myLD/PVOC_2.MinOpTmms.setVal. +Modelling note 1: This is for one of 2 new directory services. +Modelling note 2: The rule to build the return collection is as follows (source: W.Wimmer): For an LD, take all its LNs, and then all its CDCs, and all the FCDAReference-s (leaf Attributes) with FC=SG.', htmlDescription='

All leaf attribute references with FC=SG within the LD to which belongs this SGCB.

Examples:

- [SG] myLD/PTOV_1.StrVal.setMag.f

- [SG] myLD/PVOC_2.MinOpTmms.setVal.

Modelling note 1: This is for one of 2 new directory services.

Modelling note 2: The rule to build the return collection is as follows (source: W.Wimmer): For an LD, take all its LNs, and then all its CDCs, and all the FCDAReference-s (leaf Attributes) with FC=SG.

'], _type=FCDA_SG, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3178, uuid={E46DDC5E-E997-47da-8CC0-F6747118E269}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModelFCsAndTrgOps::FCDA_SG +2024-09-07 12:38:48,481 [main] DEBUG ClassBuilder - Adding FCDA_SG as subclass of FCDA +2024-09-07 12:38:48,481 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_SG +2024-09-07 12:38:48,481 [main] TRACE ClassBuilder - Class FCDA_SG_dchg (27 in package MetaModelFCsAndTrgOps) +2024-09-07 12:38:48,482 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SG_dchg, _objData=UmlObjectData [id=3629, uuid={D993FACE-FF1E-47a8-9E52-C03D6CB09D7D}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,482 [main] DEBUG ClassBuilder - Adding FCDA_SG_dchg as subclass of FCDA_SG +2024-09-07 12:38:48,482 [main] DEBUG ClassBuilder - Adding FCDA_SG_dchg as superclass of EnumFCDA_SG_dchg +2024-09-07 12:38:48,482 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_SG_dchg +2024-09-07 12:38:48,482 [main] TRACE ClassBuilder - Class FCDA_SP (28 in package MetaModelFCsAndTrgOps) +2024-09-07 12:38:48,482 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SP, _objData=UmlObjectData [id=3630, uuid={6DC7D1CB-F4DC-4ef4-9756-98C8AD7FF1B6}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=SP, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,482 [main] DEBUG ClassBuilder - Adding FCDA_SP as subclass of FCDA +2024-09-07 12:38:48,482 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_SP +2024-09-07 12:38:48,482 [main] TRACE ClassBuilder - Class FCDA_SP_dchg (29 in package MetaModelFCsAndTrgOps) +2024-09-07 12:38:48,483 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SP_dchg, _objData=UmlObjectData [id=3631, uuid={CA035F21-EC50-4322-8BD7-B8C7FD19CF46}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,483 [main] DEBUG ClassBuilder - Adding FCDA_SP_dchg as subclass of FCDA_SP +2024-09-07 12:38:48,483 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_SP_dchg +2024-09-07 12:38:48,483 [main] TRACE ClassBuilder - Class FCDA_ST (30 in package MetaModelFCsAndTrgOps) +2024-09-07 12:38:48,483 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_ST, _objData=UmlObjectData [id=3632, uuid={55FA60DB-3F3A-4bb9-9E91-8BA73393B836}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=ST, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,483 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_ST, _objData=UmlObjectData [id=3633, uuid={A00991C4-8B92-478e-AC41-A628210ED3B7}, since=null, name=isWritable, alias=, stereotype=, visibility=public, txtDescription='Whether the data attribute is writable through services.', htmlDescription='

Whether the data attribute is writable through services.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,483 [main] DEBUG ClassBuilder - Adding FCDA_ST as subclass of FCDA +2024-09-07 12:38:48,483 [main] DEBUG ClassBuilder - Adding FCDA_ST as superclass of EnumFCDA_ST +2024-09-07 12:38:48,483 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_ST +2024-09-07 12:38:48,483 [main] TRACE ClassBuilder - Class FCDA_ST_dchg (31 in package MetaModelFCsAndTrgOps) +2024-09-07 12:38:48,483 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_ST_dchg, _objData=UmlObjectData [id=3634, uuid={3899F2B2-1233-40b3-9997-370CF1FD073A}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,483 [main] DEBUG ClassBuilder - Adding FCDA_ST_dchg as subclass of FCDA_ST +2024-09-07 12:38:48,483 [main] DEBUG ClassBuilder - Adding FCDA_ST_dchg as superclass of EnumFCDA_ST_dchg +2024-09-07 12:38:48,483 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_ST_dchg +2024-09-07 12:38:48,484 [main] TRACE ClassBuilder - Class FCDA_ST_dchg_dupd (32 in package MetaModelFCsAndTrgOps) +2024-09-07 12:38:48,484 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_ST_dchg_dupd, _objData=UmlObjectData [id=3635, uuid={41740EB1-4C6B-4265-A5A9-D1853C7B873B}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, dupd, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,484 [main] DEBUG ClassBuilder - Adding FCDA_ST_dchg_dupd as subclass of FCDA_ST +2024-09-07 12:38:48,484 [main] DEBUG ClassBuilder - Adding FCDA_ST_dchg_dupd as superclass of EnumFCDA_ST_dchg_dupd +2024-09-07 12:38:48,484 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_ST_dchg_dupd +2024-09-07 12:38:48,484 [main] TRACE ClassBuilder - Class FCDA_ST_dupd (33 in package MetaModelFCsAndTrgOps) +2024-09-07 12:38:48,484 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_ST_dupd, _objData=UmlObjectData [id=3636, uuid={332CF62D-D37E-431d-8EC4-6A1EBADAAFB3}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dupd, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,484 [main] DEBUG ClassBuilder - Adding FCDA_ST_dupd as subclass of FCDA_ST +2024-09-07 12:38:48,484 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_ST_dupd +2024-09-07 12:38:48,484 [main] TRACE ClassBuilder - Class FCDA_ST_qchg (34 in package MetaModelFCsAndTrgOps) +2024-09-07 12:38:48,484 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_ST_qchg, _objData=UmlObjectData [id=3637, uuid={2735A83D-F0E0-4aab-ADB5-AECB30212656}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=qchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,484 [main] DEBUG ClassBuilder - Adding FCDA_ST_qchg as subclass of FCDA_ST +2024-09-07 12:38:48,484 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_ST_qchg +2024-09-07 12:38:48,484 [main] TRACE ClassBuilder - Class FCDA_SV (35 in package MetaModelFCsAndTrgOps) +2024-09-07 12:38:48,484 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SV, _objData=UmlObjectData [id=3638, uuid={4D38B4C1-5DEC-47cf-90C9-BF37000D95AC}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=SV, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,485 [main] DEBUG ClassBuilder - Adding FCDA_SV as subclass of FCDA +2024-09-07 12:38:48,485 [main] DEBUG ClassBuilder - Adding FCDA_SV as superclass of EnumFCDA_SV +2024-09-07 12:38:48,485 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_SV +2024-09-07 12:38:48,485 [main] TRACE ClassBuilder - Class PackedEnumFCDA_SP_dchg (36 in package MetaModelFCsAndTrgOps) +2024-09-07 12:38:48,485 [main] DEBUG ClassBuilder - Adding PackedEnumFCDA_SP_dchg as subclass of EnumFCDA_ST_dchg +2024-09-07 12:38:48,485 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::PackedEnumFCDA_SP_dchg +2024-09-07 12:38:48,485 [main] TRACE ClassBuilder - Class PackedEnumFCDA_SV (37 in package MetaModelFCsAndTrgOps) +2024-09-07 12:38:48,485 [main] DEBUG ClassBuilder - Adding PackedEnumFCDA_SV as subclass of EnumFCDA_SV +2024-09-07 12:38:48,485 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::PackedEnumFCDA_SV +2024-09-07 12:38:48,485 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=MetaModel, _depth=3, _eaElementID=1901, _objData=UmlObjectData [id=110, uuid={7CF8CCE4-A893-44f0-9850-7A964C6FB7CE}, since=null, name=MetaModelFCsAndTrgOps, alias=, stereotype=, visibility=public, txtDescription='These are all the possible combinations of FC and TrgOp, as abstract supertypes for the concrete ones defined in IEC61850-7-3.', htmlDescription='

These are all the possible combinations of FC and TrgOp, as abstract supertypes for the concrete ones defined in IEC61850-7-3.

'], _modelId=58, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1902, uuid={56AA79CA-7530-4d3f-B3D7-A6394D2388FF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note 1: Attributes 'isReadable' and 'isWritable' reflect the services of AcsiCDC. +Modelling note 2: In white are explicit FCDAs from Ed.1, in green are extensions from Ed.2 (no more FCDA_CO in Ed.2). +Modelling note 3: In pink, we have added a couple more meta-model abstract classes, to support 61850-7-420.', htmlDescription='

Modelling note 1: Attributes 'isReadable' and 'isWritable' reflect the services of AcsiCDC.

Modelling note 2: In white are explicit FCDAs from Ed.1, in green are extensions from Ed.2 (no more FCDA_CO in Ed.2).

Modelling note 3: In pink, we have added a couple more meta-model abstract classes, to support 61850-7-420.

'], _containingPackage=MetaModelFCsAndTrgOps, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=MetaModelFCsAndTrgOps, _objData=UmlObjectData [id=222, uuid={3C4182DC-EB84-4975-BC93-18C32C6AC1AD}, since=null, name=MetaModelFCsAndTrgOps, alias=, stereotype=, visibility=public, txtDescription='These are all the possible combinations of FC and TrgOp, as abstract supertypes for the concrete ones defined in IEC61850-7-3.', htmlDescription='

These are all the possible combinations of FC and TrgOp, as abstract supertypes for the concrete ones defined in IEC61850-7-3.

'], _portrait=true, _kind=LOGICAL]], _classes=34 +2024-09-07 12:38:48,486 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_2, _depth=2, _eaElementID=1829, _objData=UmlObjectData [id=109, uuid={1CD34912-38A5-4bd0-AD94-FC8A5712A5AF}, since=null, name=MetaModel, alias=, stereotype=, visibility=public, txtDescription='Meta-model reflecting contents of IEC61850-7-x. Can be instantiated in at least two ways: +1. By connecting to one or more ACSI Servers at the given IP address(es), without any other configuration required. +2. By reading SCL file (and potentially connecting to one or more ACSI Servers).', htmlDescription='

Meta-model reflecting contents of IEC61850-7-x. Can be instantiated in at least two ways:

  1. By connecting to one or more ACSI Servers at the given IP address(es), without any other configuration required.
  2. By reading SCL file (and potentially connecting to one or more ACSI Servers).
'], _modelId=58, _selfDependent=false, 27_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1830, uuid={D543D4D9-E49F-40ad-B995-3A107B4BD536}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- Directory services should be allowed for FC=SE as well - this is currently not the case according to 61850-7-3, Ed.2.', htmlDescription='

TODO:

  • Directory services should be allowed for FC=SE as well - this is currently not the case according to 61850-7-3, Ed.2.
'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1831, uuid={8C76A17B-E8A6-4ec6-8298-D8261FE3C0F4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: Classes *IEC61850Object have been introduced to facilitate instantiation of a meta-model for the use case where no SCL is available (e.g., when connecting directly to one or more IEDs with IEC61850 ACSI SERVERs without any previous configuration).', htmlDescription='

Modelling note: Classes *IEC61850Object have been introduced to facilitate instantiation of a meta-model for the use case where no SCL is available (e.g., when connecting directly to one or more IEDs with IEC61850 ACSI SERVERs without any previous configuration).

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1833, uuid={1695C190-3DB9-46c9-B2A3-463C26BEF9DD}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Except for SGCB, control blocks refer to a data set and listen to changes in the values of data set members (i.e., leaf attributes when unfolding logical nodes' data) in order to produce some event: +- RCBs produce reports on data value changes as appropriate for non-time-critical clients +- LCBs produce log entries +- GCBs produce GOOSE messages (similar to RCB reports, but for time-critical clients) +- SVCBs produce messages containing sampled values (also for time-critical clients). +Finally, SGCB models the ability to edit IED settings (e.g., configuration parameters for protection algorithms) - they also work on leaf attributes of logical nodes, but those are not specified in a data set. +Modelling note: Control blocks in this MetaModel provide pure navigation capability, while their configuration by client is available as ACSI service. It is up to applications to extend this MetaModel in the desired way to implement the functionality similar to that provided by ACSI services.', htmlDescription='

Except for SGCB, control blocks refer to a data set and listen to changes in the values of data set members (i.e., leaf attributes when unfolding logical nodes' data) in order to produce some event:

- RCBs produce reports on data value changes as appropriate for non-time-critical clients

- LCBs produce log entries

- GCBs produce GOOSE messages (similar to RCB reports, but for time-critical clients)

- SVCBs produce messages containing sampled values (also for time-critical clients).

Finally, SGCB models the ability to edit IED settings (e.g., configuration parameters for protection algorithms) - they also work on leaf attributes of logical nodes, but those are not specified in a data set.

Modelling note: Control blocks in this MetaModel provide pure navigation capability, while their configuration by client is available as ACSI service. It is up to applications to extend this MetaModel in the desired way to implement the functionality similar to that provided by ACSI services.

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1834, uuid={0E537513-A86C-4374-B08C-A61D599461C5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Datasets are list of signal references, used for logging and eventing on data and/or quality change. They allow the application to "read" that list of references once, and then receive value updates as ordered lists of values. In the meta-model, datasets contain thus only information on contained references, as well as the naming-related services. Communication services are defined in CoreAcsi API.', htmlDescription='

Datasets are list of signal references, used for logging and eventing on data and/or quality change. They allow the application to "read" that list of references once, and then receive value updates as ordered lists of values. In the meta-model, datasets contain thus only information on contained references, as well as the naming-related services. Communication services are defined in CoreAcsi API.

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1878, uuid={049E7F63-9C87-465e-9BF6-5E03046F685B}, since=null, name=DerivedCDCs : DerivedCDCs, alias=, stereotype=, visibility=public, txtDescription='DerivedCDCs : DerivedCDCs', htmlDescription='

DerivedCDCs : DerivedCDCs

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1879, uuid={05AAA379-8620-4bf0-9374-95F42FAFA135}, since=null, name=MetaModel :MetaModelFCsAndTrgOps, alias=, stereotype=, visibility=public, txtDescription='MetaModel : MetaModelFCsAndTrgOps', htmlDescription='

MetaModel : MetaModelFCsAndTrgOps

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1880, uuid={112FC848-042A-4696-99ED-8E35A13F87A4}, since=null, name=MetaModel :MetaModelNaming, alias=, stereotype=, visibility=public, txtDescription='MetaModel : MetaModelNaming', htmlDescription='

MetaModel : MetaModelNaming

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1881, uuid={2200A07E-E0BC-46ee-B7FB-832A35C51ACB}, since=null, name=LogicalNodeEnums :DOEnums-1, alias=, stereotype=, visibility=public, txtDescription='DOEnums : DOEnums-1', htmlDescription='

DOEnums : DOEnums-1

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1882, uuid={3CEEBEF3-65F0-45bf-956A-AAFF0BB39A6E}, since=null, name=BasicDAs : BasicDAs, alias=, stereotype=, visibility=public, txtDescription='BasicDAs : BasicDAs', htmlDescription='

BasicDAs : BasicDAs

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1883, uuid={3D42A8E2-6E81-482d-B902-79859AB23652}, since=null, name=LogicalNodes : LogicalNodes, alias=, stereotype=, visibility=public, txtDescription='LogicalNodes : LogicalNodes', htmlDescription='

LogicalNodes : LogicalNodes

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1884, uuid={4651CC45-E97C-474c-96E5-E964AEE537AE}, since=null, name=CommonDataClasses : CommonDataClasses, alias=, stereotype=, visibility=public, txtDescription='CommonDataClasses : CommonDataClasses', htmlDescription='

CommonDataClasses : CommonDataClasses

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1885, uuid={485DE912-F88A-4727-ABC3-E12BDD3137CA}, since=null, name=IEC61850 : DataModelExample, alias=, stereotype=, visibility=public, txtDescription='IEC61850 : DataModelExample', htmlDescription='

IEC61850 : DataModelExample

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1886, uuid={4F5B7A51-D0D5-46eb-9755-D89E38C8D44A}, since=null, name=DerivedDAs : DerivedDAs, alias=, stereotype=, visibility=public, txtDescription='DerivedDAs : DerivedDAs', htmlDescription='

DerivedDAs : DerivedDAs

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1887, uuid={7010DA64-6EFF-4ecc-906B-D63D21B68B3D}, since=null, name=LogicalNodeEnums :DOEnums-3, alias=, stereotype=, visibility=public, txtDescription='DOEnums : DOEnums-3', htmlDescription='

DOEnums : DOEnums-3

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1888, uuid={77539A0B-E854-4966-82D3-2AC914854572}, since=null, name=DAEnums : DAEnums-1, alias=, stereotype=, visibility=public, txtDescription='DAEnums : DAEnums-1', htmlDescription='

DAEnums : DAEnums-1

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1889, uuid={777613E1-5BED-4530-A6C1-909690FCEF4E}, since=null, name=ObjectReferences : ObjectReferences, alias=, stereotype=, visibility=public, txtDescription='ObjectReferences : ObjectReferences', htmlDescription='

ObjectReferences : ObjectReferences

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1890, uuid={82D225D9-1F34-4a05-840E-0EA119432E5C}, since=null, name=CoreTypes : CoreTypes, alias=, stereotype=, visibility=public, txtDescription='CoreTypes : CoreTypes', htmlDescription='

CoreTypes : CoreTypes

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1891, uuid={86223FF2-1449-43c7-83BA-3DB43365033B}, since=null, name=ConstructedDAs : ConstructedDAs, alias=, stereotype=, visibility=public, txtDescription='ConstructedDAs : ConstructedDAs', htmlDescription='

ConstructedDAs : ConstructedDAs

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1892, uuid={A298ABDC-AA9E-4b4b-8B6A-E5C5C539F90F}, since=null, name=LogicalNodeEnums :DOEnums-2, alias=, stereotype=, visibility=public, txtDescription='DOEnums : DOEnums-2', htmlDescription='

DOEnums : DOEnums-2

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=1893, uuid={A34DDCC5-BBB7-443d-92EF-22F3B2CADE16}, since=null, name=Data model (logical nodes, common data classes, functionally constrained data attributes and data attributes), alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1894, uuid={B2AD30FE-ADAE-495a-8589-272241F89E2F}, since=null, name=FCDAs : FCDAs, alias=, stereotype=, visibility=public, txtDescription='FCDAs : FCDAs', htmlDescription='

FCDAs : FCDAs

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1895, uuid={B4020DF2-0ADE-443d-82D1-19018AF93AEE}, since=null, name=ImplicitDAs : ImplicitDAs, alias=, stereotype=, visibility=public, txtDescription='ImplicitDAs : ImplicitDAs', htmlDescription='

ImplicitDAs : ImplicitDAs

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1896, uuid={C1318DFD-188F-43f2-9064-60021D23A7AF}, since=null, name=MetaModel :MetaModelDataSetsAndControlBlocks, alias=, stereotype=, visibility=public, txtDescription='MetaModel : MetaModelDataSetsAndControlBlocks', htmlDescription='

MetaModel : MetaModelDataSetsAndControlBlocks

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1897, uuid={C39E2CF4-C5E8-4816-8777-01F58112789C}, since=null, name=MetaModel : MetaModelDataModel, alias=, stereotype=, visibility=public, txtDescription='MetaModel : MetaModelDataModel', htmlDescription='

MetaModel : MetaModelDataModel

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=1898, uuid={F6822C92-5DD8-48be-A724-A584C56FF7E0}, since=null, name=Directly related to data model, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1899, uuid={F6EF86F0-4241-402f-84DB-0F3BACF329BA}, since=null, name=MetaModel :MetaModelRelationships, alias=, stereotype=, visibility=public, txtDescription='MetaModel : MetaModelRelationships', htmlDescription='

MetaModel : MetaModelRelationships

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1900, uuid={FFAB6E12-0255-4fed-A1DB-D18F797B7AED}, since=null, name=DAEnums : DAEnums-2, alias=, stereotype=, visibility=public, txtDescription='DAEnums : DAEnums-2', htmlDescription='

DAEnums : DAEnums-2

'], _containingPackage=MetaModel, _otherEndName=]], 5_diagrams=[DiagramBuilder [_containingPackage=MetaModel, _objData=UmlObjectData [id=218, uuid={EA8FE1C2-3BBB-4b1a-A375-D361A61B8806}, since=null, name=MetaModelClasses, alias=, stereotype=, visibility=public, txtDescription='Overview of meta-model classes. We emphasize two groups of meta-model classes: +- Within the blue frame are those classes that are refined in parts 7-3 and 7-4, i.e., those that represent the data model. +- Within the pink frame are the classes that directly manipulate or refer to the data of logical nodes. +The other classes are control blocks, fully defined in IEC61850-2.', htmlDescription='

Overview of meta-model classes. We emphasize two groups of meta-model classes:

  • Within the blue frame are those classes that are refined in parts 7-3 and 7-4, i.e., those that represent the data model.
  • Within the pink frame are the classes that directly manipulate or refer to the data of logical nodes.

The other classes are control blocks, fully defined in IEC61850-2.

'], _portrait=true, _kind=LOGICAL], DiagramBuilder [_containingPackage=MetaModel, _objData=UmlObjectData [id=219, uuid={60A801DD-2905-46a7-AEE1-1F7B4914E50C}, since=null, name=MetaModelRelationships, alias=, stereotype=, visibility=public, txtDescription='The full representation of all ACSI relationships, as defined in Part 7-2.', htmlDescription='

The full representation of all ACSI relationships, as defined in Part 7-2.

'], _portrait=true, _kind=LOGICAL], DiagramBuilder [_containingPackage=MetaModel, _objData=UmlObjectData [id=220, uuid={C831274A-F7F7-46d5-8FEC-95178AC6650E}, since=null, name=MetaModelNaming, alias=, stereotype=, visibility=public, txtDescription='Shows naming hierarchy. Highlighted classes are not explicitly defined in the standard.', htmlDescription='

Shows naming hierarchy. Highlighted classes are not explicitly defined in the standard.

'], _portrait=true, _kind=LOGICAL], DiagramBuilder [_containingPackage=MetaModel, _objData=UmlObjectData [id=217, uuid={14C7D050-A508-40f5-95B8-5C83BBADB168}, since=null, name=MetaModelDataModel, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the subset of the meta-model with details about LNs and their data. Hyperlinks are provided to an example, and to definitions of concrete classes deriving from the meta-model (in parts 7-4 and 7-3).', htmlDescription='

This diagram shows the subset of the meta-model with details about LNs and their data. Hyperlinks are provided to an example, and to definitions of concrete classes deriving from the meta-model (in parts 7-4 and 7-3).

'], _portrait=true, _kind=LOGICAL], DiagramBuilder [_containingPackage=MetaModel, _objData=UmlObjectData [id=221, uuid={30729B8C-2FAA-41b6-B913-DD00F5E640FC}, since=null, name=MetaModelDataSetsAndControlBlocks, alias=, stereotype=, visibility=public, txtDescription='Shows data sets and control blocks defined in IEC61850-7-2. Highlighted classes are not explicitly defined in the standard.', htmlDescription='

Shows data sets and control blocks defined in IEC61850-7-2. Highlighted classes are not explicitly defined in the standard.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=6, _dependenciesAsTarget=6, _classes=43, _childPackages=1] +2024-09-07 12:38:48,487 [main] INFO PackageBuilder - processing package CDCServiceTracking (12) ... +2024-09-07 12:38:48,487 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=CDCServiceTracking, _objData=UmlObjectData [id=226, uuid={2E9A6046-6F09-499d-8DED-04126F464CF1}, since=null, name=CDCServiceTracking, alias=, stereotype=, visibility=public, txtDescription='Shows all service tracking CDCs defined in the standard with supertypes that factor their common attributes.', htmlDescription='

Shows all service tracking CDCs defined in the standard with supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,487 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2180, uuid={B029563B-4F5A-4fe0-994D-0C0BE8208EB4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=CDCServiceTracking, _otherEndName=Note ''] +2024-09-07 12:38:48,488 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::CDCServiceTracking->null, _objData=UmlObjectData [id=3105, uuid={1ACFCE23-05F0-4f6f-A7FF-F1999DF5DEBB}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,488 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1993, uuid={AE9C15F2-8B3D-49df-B6A7-32BE35190F6A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: Since the base classes for CDCs (and the data attributes) are defined in 7-3, we have circular dependency!', htmlDescription='

Modelling note: Since the base classes for CDCs (and the data attributes) are defined in 7-3, we have circular dependency!

'], _containingPackage=CDCServiceTracking, _otherEndName=] +2024-09-07 12:38:48,489 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1994, uuid={85196720-0A4F-4a77-9F16-5DA9E02CCAA9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- Consider renaming to 'ServiceTrackingCDC'', htmlDescription='

TODO:

  • Consider renaming to 'ServiceTrackingCDC'
'], _containingPackage=CDCServiceTracking, _otherEndName=] +2024-09-07 12:38:48,489 [main] TRACE ClassBuilder - Class CST (1 in package CDCServiceTracking) +2024-09-07 12:38:48,489 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2204, uuid={9E09D002-22E5-42b2-8883-6CF5959AA141}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=CST, _otherEndName=?] +2024-09-07 12:38:48,490 [main] TRACE ClassBuilder - read from EA: CDCServiceTracking::CST +2024-09-07 12:38:48,490 [main] TRACE ClassBuilder - Class BTS (2 in package CDCServiceTracking) +2024-09-07 12:38:48,490 [main] DEBUG ClassBuilder - Adding BTS as subclass of CST +2024-09-07 12:38:48,490 [main] TRACE ClassBuilder - read from EA: CDCServiceTracking::BTS +2024-09-07 12:38:48,491 [main] TRACE ClassBuilder - Class CTS (3 in package CDCServiceTracking) +2024-09-07 12:38:48,491 [main] DEBUG ClassBuilder - Adding CTS as subclass of CST +2024-09-07 12:38:48,491 [main] TRACE ClassBuilder - read from EA: CDCServiceTracking::CTS +2024-09-07 12:38:48,491 [main] TRACE ClassBuilder - Class GTS (4 in package CDCServiceTracking) +2024-09-07 12:38:48,491 [main] DEBUG ClassBuilder - Adding GTS as subclass of CST +2024-09-07 12:38:48,491 [main] TRACE ClassBuilder - read from EA: CDCServiceTracking::GTS +2024-09-07 12:38:48,491 [main] TRACE ClassBuilder - Class LTS (5 in package CDCServiceTracking) +2024-09-07 12:38:48,492 [main] DEBUG ClassBuilder - Adding LTS as subclass of CST +2024-09-07 12:38:48,492 [main] TRACE ClassBuilder - read from EA: CDCServiceTracking::LTS +2024-09-07 12:38:48,492 [main] TRACE ClassBuilder - Class MTS (6 in package CDCServiceTracking) +2024-09-07 12:38:48,492 [main] DEBUG ClassBuilder - Adding MTS as subclass of CST +2024-09-07 12:38:48,492 [main] TRACE ClassBuilder - read from EA: CDCServiceTracking::MTS +2024-09-07 12:38:48,492 [main] TRACE ClassBuilder - Class NTS (7 in package CDCServiceTracking) +2024-09-07 12:38:48,492 [main] DEBUG ClassBuilder - Adding NTS as subclass of CST +2024-09-07 12:38:48,492 [main] TRACE ClassBuilder - read from EA: CDCServiceTracking::NTS +2024-09-07 12:38:48,492 [main] TRACE ClassBuilder - Class OTS (8 in package CDCServiceTracking) +2024-09-07 12:38:48,492 [main] DEBUG ClassBuilder - Adding OTS as subclass of CST +2024-09-07 12:38:48,492 [main] TRACE ClassBuilder - read from EA: CDCServiceTracking::OTS +2024-09-07 12:38:48,492 [main] TRACE ClassBuilder - Class STS (9 in package CDCServiceTracking) +2024-09-07 12:38:48,492 [main] DEBUG ClassBuilder - Adding STS as subclass of CST +2024-09-07 12:38:48,492 [main] TRACE ClassBuilder - read from EA: CDCServiceTracking::STS +2024-09-07 12:38:48,492 [main] TRACE ClassBuilder - Class UTS (10 in package CDCServiceTracking) +2024-09-07 12:38:48,493 [main] DEBUG ClassBuilder - Adding UTS as subclass of CST +2024-09-07 12:38:48,493 [main] TRACE ClassBuilder - read from EA: CDCServiceTracking::UTS +2024-09-07 12:38:48,493 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_2, _depth=2, _eaElementID=1992, _objData=UmlObjectData [id=112, uuid={3C674902-0080-4e6c-A692-059B653701E8}, since=null, name=CDCServiceTracking, alias=Service tracking, stereotype=, visibility=public, txtDescription='The reporting and logging functions based on the process and function related data model as defined in IEC 61850-7-4 and 7-3 allow to track what happens in the process. For tracking what happens communicationwise in the system itself, this part of the standard provides the possibility to track all services, even those with negative responses. For this purpose the services are classified as follows: +- Control block related services (see IEC 61850-7-2, 15.3) +- Command related services (see IEC 61850-7-2, 20.6) +- Other services (see IEC 61850-7-2, 14.2) +The base concept consists in defining within the data model where to store the values of the service parameters used by a service. Therefore this part of the standard defines common data classes for each type of service to be reported resp. logged. For a given Server, there shall be a single data object instance (tracking data object) available in the object directory for each kind of service, that will mirror the value of the service parameters and its acceptance by the server. This allows that a service can be logged or reported to any client, as soon as the tracking data object is a DATA-SET member of the DATA-SET associated to a LCB or to a BRCB / URCB. +No (0) or one (1) instance of a needed tracking data object class (derived from the common service tracking data class) shall be defined in a logical device. IEC 61850-7-4 defines the data object name per tracking CDC.', htmlDescription='

The reporting and logging functions based on the process and function related data model as defined in IEC 61850-7-4 and 7-3 allow to track what happens in the process. For tracking what happens communicationwise in the system itself, this part of the standard provides the possibility to track all services, even those with negative responses. For this purpose the services are classified as follows:

  • Control block related services (see IEC 61850-7-2, 15.3)
  • Command related services (see IEC 61850-7-2, 20.6)
  • Other services (see IEC 61850-7-2, 14.2)

The base concept consists in defining within the data model where to store the values of the service parameters used by a service. Therefore this part of the standard defines common data classes for each type of service to be reported resp. logged. For a given Server, there shall be a single data object instance (tracking data object) available in the object directory for each kind of service, that will mirror the value of the service parameters and its acceptance by the server. This allows that a service can be logged or reported to any client, as soon as the tracking data object is a DATA-SET member of the DATA-SET associated to a LCB or to a BRCB / URCB.

No (0) or one (1) instance of a needed tracking data object class (derived from the common service tracking data class) shall be defined in a logical device. IEC 61850-7-4 defines the data object name per tracking CDC.

'], _modelId=58, _selfDependent=false, 3_skippedEaItems=[SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2180, uuid={B029563B-4F5A-4fe0-994D-0C0BE8208EB4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=CDCServiceTracking, _otherEndName=Note ''], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1993, uuid={AE9C15F2-8B3D-49df-B6A7-32BE35190F6A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: Since the base classes for CDCs (and the data attributes) are defined in 7-3, we have circular dependency!', htmlDescription='

Modelling note: Since the base classes for CDCs (and the data attributes) are defined in 7-3, we have circular dependency!

'], _containingPackage=CDCServiceTracking, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1994, uuid={85196720-0A4F-4a77-9F16-5DA9E02CCAA9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- Consider renaming to 'ServiceTrackingCDC'', htmlDescription='

TODO:

  • Consider renaming to 'ServiceTrackingCDC'
'], _containingPackage=CDCServiceTracking, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=CDCServiceTracking, _objData=UmlObjectData [id=226, uuid={2E9A6046-6F09-499d-8DED-04126F464CF1}, since=null, name=CDCServiceTracking, alias=, stereotype=, visibility=public, txtDescription='Shows all service tracking CDCs defined in the standard with supertypes that factor their common attributes.', htmlDescription='

Shows all service tracking CDCs defined in the standard with supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=1, _classes=10 +2024-09-07 12:38:48,493 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=WG10, _depth=1, _eaElementID=1622, _objData=UmlObjectData [id=88, uuid={F9CDEDC5-EC7E-4adc-B579-F2264159E7B7}, since=null, name=IEC61850_7_2, alias=, stereotype=, visibility=public, txtDescription='A formal meta-model and CoreAcsi API, which should reflect (and hopefully improve) the contents of IEC61850-2 Ed.1. Meta-model allows, among others, for a uniform definition of data-related concepts (LNs, CDCs, FCDAs), while the CoreAcsi API defines ACSI services. +TODO: We have started updating to Ed.2, but there still lot to do...', htmlDescription='

A formal meta-model and CoreAcsi API, which should reflect (and hopefully improve) the contents of IEC61850-2 Ed.1. Meta-model allows, among others, for a uniform definition of data-related concepts (LNs, CDCs, FCDAs), while the CoreAcsi API defines ACSI services.

TODO: We have started updating to Ed.2, but there still lot to do...

'], _modelId=58, _selfDependent=false, 4_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1623, uuid={EABD0CB1-194A-4ad7-A014-C0F4FF33A957}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- With tracking CDCs in Part 7-2, we have circular dependency with Part 7-3! (not shown here). Proposed to move these into Part 7-3.', htmlDescription='

TODO:

  • With tracking CDCs in Part 7-2, we have circular dependency with Part 7-3! (not shown here). Proposed to move these into Part 7-3.
'], _containingPackage=IEC61850_7_2, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1624, uuid={70D0C33E-CC65-47c7-9DD8-B1A5DB8EEB7B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Arrange the diagram when we settlle on modelling.', htmlDescription='

TODO: Arrange the diagram when we settlle on modelling.

'], _containingPackage=IEC61850_7_2, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1625, uuid={5D73B6B5-C29B-4bc3-842B-49DA8C366102}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='NOT UPDATED YET! + +How to read this model? +Automatically generated documentation prints the packages and their contents in the order they are defined in the model. And in the model, we took a bottom-up approach, i.e., starting from least-dependent packages and going up to most dependent packages: +- if you need an overview, look first into the packages that depend on others +- if you want the description of items before their first usage, look into the packages upon which the others depend. +Dependencies have been manually drawn (the tool does not do it by itself). +API (operations) conventions: +Packages CoreTypes, CoreEnums and AcsiType contain classes with data only, while AcsiTypes, MetaModel and CoreAcsi have classes (and interfaces) with operations, as well. Conventions for operations are as follows: +- Null argument in operations is by default not allowed, unless specified otherwise. +- When return value is a collection, and it has "nothing" to return, a non-null empty collection must be returned. +UML: +- In the diagrams, the black diamond on associations is on the side of a container, and its implicit multiplicity, as defined by UML, is [0..1], i.e., the contained class may belong to one or no container. For the sake or readability, we do not show the multiplicity on the container side. +- On the side of contained object, mandatory association ([1] or [1..*]) is considered as mandatory once the model is initialised. In other words, while building the model, it is possible to violate this constraint, but the valid completely built model must respect the given cardinalities. +- In the API (AcsiTypes, MetaModel, CoreAcsi), we define only methods that describe the required interface; definition of attributes (and names of association ends) is left to the implementation. +Design rationale: +We have on purpose kept services in CoreAcsi (API) separate from the MetaModel, because: +- CoreAcsi API is meant to be used for communication with a live device. +- CoreAcsi API models communication services, which are not object-oriented with respect to the domain model, as they deal with object references (strings), not with objects themselves (e.g., control blocks). However, the API itself is object oriented. +- CoreAcsi API reflects relatively closely what is specified in Part 7-2, Ed. 1, so those who know Part 7-2 and would like to use the API can easily find their way through the API. If this API is meant to be part of the standard, most of services should be renamed (to have less clumsy names). +- CoreAcsi API can be used without any configuration (SCL), to connect and communicate with the live device. It can be thus useful for simple browsing applications. +In contrast to this: +- MetaModel need not be used with a live device - it can be instantiated from SCL and used for different off-line applications. +- MetaModel is object-oriented - it deals with objects (e.g., control blocks) and as part of the interface provides navigation and object reference information. +- MetaModel enhances what is specified in Part 7-2, Ed. 1 and provides a strict definition of concepts developed in Parts 7-3 and 7-4, which is the must for software or data store designs. +- MetaModel can be used with a live device, as well, provided there is an intermediate implementation layer (not shown here) that will take care of using CoreAcsi API or even a direct MMS access. In that case, the semantics of the methods that influence behaviour on the CoreAcsi API level may not be the same as desired by a particular application using MetaModel (e.g., multiple clients/servers, who "owns" what, invalid names, etc.). Therefore, the MetaModel contains only the necessary minimum of methods (connecting to the server, naming and navigation), and different applications have to extend it for their needs (e.g., control block attributes). +Many useful applications can be developed with just this package, without using details of common data classes and logical nodes, while these latter will enable more advanced ones (as they provide for the semantics of data).', htmlDescription='

NOT UPDATED YET!

How to read this model?

Automatically generated documentation prints the packages and their contents in the order they are defined in the model. And in the model, we took a bottom-up approach, i.e., starting from least-dependent packages and going up to most dependent packages:

  • if you need an overview, look first into the packages that depend on others
  • if you want the description of items before their first usage, look into the packages upon which the others depend.

Dependencies have been manually drawn (the tool does not do it by itself).

API (operations) conventions:

Packages CoreTypes, CoreEnums and AcsiType contain classes with data only, while AcsiTypes, MetaModel and CoreAcsi have classes (and interfaces) with operations, as well. Conventions for operations are as follows:

  • Null argument in operations is by default not allowed, unless specified otherwise.
  • When return value is a collection, and it has "nothing" to return, a non-null empty collection must be returned.

UML:

  • In the diagrams, the black diamond on associations is on the side of a container, and its implicit multiplicity, as defined by UML, is [0..1], i.e., the contained class may belong to one or no container. For the sake or readability, we do not show the multiplicity on the container side.
  • On the side of contained object, mandatory association ([1] or [1..*]) is considered as mandatory once the model is initialised. In other words, while building the model, it is possible to violate this constraint, but the valid completely built model must respect the given cardinalities.
  • In the API (AcsiTypes, MetaModel, CoreAcsi), we define only methods that describe the required interface; definition of attributes (and names of association ends) is left to the implementation.

Design rationale:

We have on purpose kept services in CoreAcsi (API) separate from the MetaModel, because:

  • CoreAcsi API is meant to be used for communication with a live device.
  • CoreAcsi API models communication services, which are not object-oriented with respect to the domain model, as they deal with object references (strings), not with objects themselves (e.g., control blocks). However, the API itself is object oriented.
  • CoreAcsi API reflects relatively closely what is specified in Part 7-2, Ed. 1, so those who know Part 7-2 and would like to use the API can easily find their way through the API. If this API is meant to be part of the standard, most of services should be renamed (to have less clumsy names).
  • CoreAcsi API can be used without any configuration (SCL), to connect and communicate with the live device. It can be thus useful for simple browsing applications.

In contrast to this:

  • MetaModel need not be used with a live device - it can be instantiated from SCL and used for different off-line applications.
  • MetaModel is object-oriented - it deals with objects (e.g., control blocks) and as part of the interface provides navigation and object reference information.
  • MetaModel enhances what is specified in Part 7-2, Ed. 1 and provides a strict definition of concepts developed in Parts 7-3 and 7-4, which is the must for software or data store designs.
  • MetaModel can be used with a live device, as well, provided there is an intermediate implementation layer (not shown here) that will take care of using CoreAcsi API or even a direct MMS access. In that case, the semantics of the methods that influence behaviour on the CoreAcsi API level may not be the same as desired by a particular application using MetaModel (e.g., multiple clients/servers, who "owns" what, invalid names, etc.). Therefore, the MetaModel contains only the necessary minimum of methods (connecting to the server, naming and navigation), and different applications have to extend it for their needs (e.g., control block attributes).

Many useful applications can be developed with just this package, without using details of common data classes and logical nodes, while these latter will enable more advanced ones (as they provide for the semantics of data).

'], _containingPackage=IEC61850_7_2, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1627, uuid={15563EAD-20D1-4edb-BCBF-F3184AF0B515}, since=null, name=IEC61850_7_2 : IEC61850_7_2ModellingNotes, alias=, stereotype=, visibility=public, txtDescription='IEC61850_7_2 : IEC61850_7_2ModellingNotes', htmlDescription='

IEC61850_7_2 : IEC61850_7_2ModellingNotes

'], _containingPackage=IEC61850_7_2, _otherEndName=]], 2_diagrams=[DiagramBuilder [_containingPackage=IEC61850_7_2, _objData=UmlObjectData [id=192, uuid={90AA6E54-26D6-43d4-94A7-5F7B4B772910}, since=null, name=IEC61850_7_2, alias=, stereotype=, visibility=public, txtDescription='Overview of packages and their dependencies. +Dependencies among sub-packages are not shown on this diagram.', htmlDescription='

Overview of packages and their dependencies.

Dependencies among sub-packages are not shown on this diagram.

'], _portrait=true, _kind=PACKAGE], DiagramBuilder [_containingPackage=IEC61850_7_2, _objData=UmlObjectData [id=193, uuid={4F40E7C3-3463-44fe-85FB-8E5B2084B8A6}, since=null, name=IEC61850_7_2ModellingNotes, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _dependenciesAsTarget=2, _classes=1, _childPackages=10] +2024-09-07 12:38:48,493 [main] INFO PackageBuilder - processing package IEC61850_7_3 (3) ... +2024-09-07 12:38:48,494 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=IEC61850_7_3, _objData=UmlObjectData [id=227, uuid={F484E7B4-1E12-4de6-B276-87F2C5E6E00D}, since=null, name=IEC61850_7_3, alias=, stereotype=, visibility=public, txtDescription='This diagram: +- shows the content of this package, as well as dependencies to other parts of the model, and, +- highlights the sub-packages contained in IEC61850-7-3 required to generate the document automatically (note: for FC table in Annex B, we also need the enum FcKind from 7-2, not shown here). +About dependencies of DA sub-packages: +- CommonAcsiDAs, BasicDAs and ConstructedDAs are all DataAttribute-s from the meta-model, thus they depend on MetaModel, which in turn uses core types and thus depends on CoreTypes. +- CommonAcsiDAs, BasicDAs and ConstructedDAs use also core types, thus they depend on CoreTypes. +- ConstructedDAs use enumerations, so they depend on DAEnums. +- Finally, ConstructedDAs types are composed of primitive DAs, thus dependency to BasicDAs. +FCDAs package contains "helper" explicit types, which shield CDCs and LNs from all the complexity of IEC61850 datatype system. These are the types used to define attributes of CommonDataClass-es. Since FCDAs derive from an abstract meta-model type, they depend on MetaModel. And since they "decorate" data attribute types, they also depend on ConstructedDAs, CommonAcsiDAs and BasicDAs. +Finally, CDCs derive from the meta-model PrimitiveCDC and ComposedCDC and thus depend on MetaModel. Also, their attributes use FCDAs as types, so they all depend on FCDAs package.', htmlDescription='

This diagram:

  • shows the content of this package, as well as dependencies to other parts of the model, and,
  • highlights the sub-packages contained in IEC61850-7-3 required to generate the document automatically (note: for FC table in Annex B, we also need the enum FcKind from 7-2, not shown here).

About dependencies of DA sub-packages:

  • CommonAcsiDAs, BasicDAs and ConstructedDAs are all DataAttribute-s from the meta-model, thus they depend on MetaModel, which in turn uses core types and thus depends on CoreTypes.
  • CommonAcsiDAs, BasicDAs and ConstructedDAs use also core types, thus they depend on CoreTypes.
  • ConstructedDAs use enumerations, so they depend on DAEnums.
  • Finally, ConstructedDAs types are composed of primitive DAs, thus dependency to BasicDAs.

FCDAs package contains "helper" explicit types, which shield CDCs and LNs from all the complexity of IEC61850 datatype system. These are the types used to define attributes of CommonDataClass-es. Since FCDAs derive from an abstract meta-model type, they depend on MetaModel. And since they "decorate" data attribute types, they also depend on ConstructedDAs, CommonAcsiDAs and BasicDAs.

Finally, CDCs derive from the meta-model PrimitiveCDC and ComposedCDC and thus depend on MetaModel. Also, their attributes use FCDAs as types, so they all depend on FCDAs package.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,494 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->WG10::IEC61850_7_3, _objData=UmlObjectData [id=2897, uuid={5A68C091-F611-4fb1-91BF-9B547D41800A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,494 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = WG10::IEC61850_7_3->WG10::IEC61850_7_2, _objData=UmlObjectData [id=3104, uuid={3AE23F98-46A7-4956-8947-FA3AD8CE26AC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,494 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = WG10::IEC61850_7_3->null, _objData=UmlObjectData [id=3445, uuid={59C2B380-F257-47a2-9628-193034DD739F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,496 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2006, uuid={D48A9837-1371-4b1a-8D7F-00C9E8036560}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: This should move to 7-2.', htmlDescription='

TODO: This should move to 7-2.

'], _containingPackage=IEC61850_7_3, _otherEndName=] +2024-09-07 12:38:48,496 [main] TRACE ClassBuilder - Class IEC61850_7_3Namespace (0 in package IEC61850_7_3) +2024-09-07 12:38:48,496 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61850_7_3::IEC61850_7_3Namespace, _objData=UmlObjectData [id=3309, uuid={8477CDCF-B7B1-4c61-85E7-FF98E6FDDE43}, since=null, name=id, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=IEC61850-7-3, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,496 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61850_7_3::IEC61850_7_3Namespace, _objData=UmlObjectData [id=3310, uuid={F2B463B5-AACF-4e36-8199-A0B8EC0D5BE9}, since=null, name=version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2011, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,496 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61850_7_3::IEC61850_7_3Namespace, _objData=UmlObjectData [id=3311, uuid={699C3EA2-B230-4407-9EC4-D45951E6BC5E}, since=null, name=revision, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=B, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,497 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61850_7_3::IEC61850_7_3Namespace, _objData=UmlObjectData [id=3312, uuid={54B9DB98-DA2A-4c6e-BF98-F5D9803F3976}, since=null, name=date, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2011-08-01, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,497 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61850_7_3::IEC61850_7_3Namespace, _objData=UmlObjectData [id=6703, uuid={4DF1C9DC-C4F9-4191-B626-67DCF091C04B}, since=null, name=name, alias=, stereotype=, visibility=public, txtDescription='Note: This name is mal-formed and should be caught through validation.', htmlDescription='

Note: This name is mal-formed and should be caught through validation.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=IEC61850-7-3 B 2011, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,497 [main] TRACE ClassBuilder - read from EA: IEC61850_7_3::IEC61850_7_3Namespace +2024-09-07 12:38:48,497 [main] INFO PackageBuilder - processing package PresenceConditions (1) ... +2024-09-07 12:38:48,497 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=PresenceConditions, _objData=UmlObjectData [id=228, uuid={634BF46C-EC95-4ed7-A28F-26085CE40A21}, since=null, name=PresenceConditions, alias=, stereotype=, visibility=public, txtDescription='Shows possible values for presence conditions on attributes - these are modelled in UML with either attribute multiplicities (1 or 0..1, 0..n or 1..n) or with named constraints attached to a class.', htmlDescription='

Shows possible values for presence conditions on attributes - these are modelled in UML with either attribute multiplicities (1 or 0..1, 0..n or 1..n) or with named constraints attached to a class.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,498 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2205, uuid={680F9294-3A48-4c36-86F7-9867633896E3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=PresenceConditions, _otherEndName=Note ''] +2024-09-07 12:38:48,498 [main] TRACE ClassBuilder - Class PresenceCondition (3 in package PresenceConditions) +2024-09-07 12:38:48,498 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3644, uuid={F4EF1C45-2871-41c4-AF32-AE92183C1583}, since=null, name=M, alias=, stereotype=enum, visibility=public, txtDescription='Element is mandatory.', htmlDescription='

Element is mandatory.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,498 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3645, uuid={C1540269-ADF7-48c8-B368-69B6589AB9A6}, since=null, name=O, alias=, stereotype=enum, visibility=public, txtDescription='Element is optional.', htmlDescription='

Element is optional.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,498 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3646, uuid={2F450550-CA87-4a05-9021-60108958AD61}, since=null, name=MFsubst, alias=, stereotype=enum, deprecated, visibility=public, txtDescription='Element is mandatory if substitution is supported (for substitution, see IEC 61850-7-2), otherwise forbidden.', htmlDescription='

Element is mandatory if substitution is supported (for substitution, see IEC 61850-7-2), otherwise forbidden.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,498 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3647, uuid={FCC1F07D-4B22-42b0-9EAC-57DBDAE3A8AD}, since=null, name=AtLeastOne(n), alias=, stereotype=enum, visibility=public, txtDescription='At least one of marked elements shall be present.', htmlDescription='

At least one of marked elements shall be present.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,499 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3648, uuid={9A572771-42A8-4263-95A1-5DF17AF4726A}, since=null, name=AllOrNonePerGroup(n), alias=, stereotype=enum, visibility=public, txtDescription='Parameter n: group number (>0). +All or none of the elements of a group n shall be present.', htmlDescription='

Parameter n: group number (>0).

All or none of the elements of a group n shall be present.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,499 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3649, uuid={2D37A902-9C71-4c49-8BCF-977F00AD59A3}, since=null, name=AtMostOne, alias=, stereotype=enum, visibility=public, txtDescription='At most one of marked elements shall be present.', htmlDescription='

At most one of marked elements shall be present.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,499 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3650, uuid={4F6AD1D1-AC14-4546-9F1B-F8FDB5FD92FF}, since=null, name=MF(sibling), alias=, stereotype=enum, visibility=public, txtDescription='Parameter sibling: sibling element name. +Mandatory if sibling element is present, otherwise forbidden.', htmlDescription='

Parameter sibling: sibling element name.

Mandatory if sibling element is present, otherwise forbidden.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,499 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3651, uuid={2EC85437-8295-49c2-95FF-373A0A6FC519}, since=null, name=AllOnlyOneGroup(n), alias=, stereotype=enum, visibility=public, txtDescription='Parameter n: group number (>0). +All elements of only one group n shall be present.', htmlDescription='

Parameter n: group number (>0).

All elements of only one group n shall be present.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,499 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3652, uuid={F0FE764D-4E0C-4102-8165-64143B91C0AB}, since=null, name=MOln0, alias=, stereotype=enum, visibility=public, txtDescription='The element is mandatory in the context of LLN0; otherwise optional.', htmlDescription='

The element is mandatory in the context of LLN0; otherwise optional.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,499 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3653, uuid={7B0A327F-98A2-4c73-BDAD-B9DA2DE66069}, since=null, name=MFln0, alias=, stereotype=enum, visibility=public, txtDescription='The element is mandatory in the context of LLN0; otherwise forbidden.', htmlDescription='

The element is mandatory in the context of LLN0; otherwise forbidden.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,499 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3654, uuid={3322A988-15C7-482d-826D-29EB3EF9AFE3}, since=null, name=MOlnNs, alias=, stereotype=enum, visibility=public, txtDescription='The element is mandatory if the name space of its logical node deviates from the name space of the containing logical device, otherwise optional. +Notes: +- The logical device name space is given in LLN0.NamPlt.ldNs. +- Applies to LPL.lnNs only.', htmlDescription='

The element is mandatory if the name space of its logical node deviates from the name space of the containing logical device, otherwise optional.

Notes:

- The logical device name space is given in LLN0.NamPlt.ldNs.

- Applies to LPL.lnNs only.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,500 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3655, uuid={A15532FB-7577-4c76-9FBB-0F62F6942510}, since=null, name=MOdataNs, alias=, stereotype=enum, visibility=public, txtDescription='The element is mandatory if the name space of its data object deviates from the name space of its logical node, otherwise optional. +Notes: +- The name space a logical node LN belongs to is given by: +- The data attribute NamPlt.lnNs if available, otherwise +- The containing logical device name space, i.e., the data attribute NamPlt.ldNs of the relevant LLN0. +- Applies to the data attribute dataNs of any CDC only.', htmlDescription='

The element is mandatory if the name space of its data object deviates from the name space of its logical node, otherwise optional.

Notes:

- The name space a logical node LN belongs to is given by:

- The data attribute NamPlt.lnNs if available, otherwise

- The containing logical device name space, i.e., the data attribute NamPlt.ldNs of the relevant LLN0.

- Applies to the data attribute dataNs of any CDC only.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,500 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3656, uuid={B15E9280-9EAE-41c0-B993-15F3CDF0DE0A}, since=null, name=MOcdcNs, alias=, stereotype=enum, visibility=public, txtDescription='The element is mandatory if the name space of its CDC deviates from the name space of its data object, otherwise optional. +Notes: +- The name space a data object belongs to is given by: +- The data attribute dataNs in the same CDC if it exists, otherwise +- The containing logical node’s namespace, i.e., the attribute NamPlt.lnNs if it exist, otherwise +- The containing logical device name space, i.e., the data attribute NamPlt.ldNs of the relevant LLN0. +- Applies to data attributes 'cdcNs' and 'cdcName' only. +- From Ed. 2 on shall only be used for logical node definitions of other name spaces (e.g., Wind) to refer to the standardized CDC definitions.', htmlDescription='

The element is mandatory if the name space of its CDC deviates from the name space of its data object, otherwise optional.

Notes:

- The name space a data object belongs to is given by:

- The data attribute dataNs in the same CDC if it exists, otherwise

- The containing logical node’s namespace, i.e., the attribute NamPlt.lnNs if it exist, otherwise

- The containing logical device name space, i.e., the data attribute NamPlt.ldNs of the relevant LLN0.

- Applies to data attributes 'cdcNs' and 'cdcName' only.

- From Ed. 2 on shall only be used for logical node definitions of other name spaces (e.g., Wind) to refer to the standardized CDC definitions.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,501 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3657, uuid={5D6EC8F8-E493-4733-B940-7E40E92C051F}, since=null, name=MFscaledAV, alias=, stereotype=enum, visibility=public, txtDescription='The element is mandatory if any sibling elements of type AnalogueValue include 'i' as a child, otherwise forbidden.', htmlDescription='

The element is mandatory if any sibling elements of type AnalogueValue include 'i' as a child, otherwise forbidden.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,501 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3658, uuid={97C80B99-BD1A-47ab-83B5-0D2DD5512516}, since=null, name=MFscaledMagV, alias=, stereotype=enum, visibility=public, txtDescription='The element is mandatory if any sibling elements of type Vector include 'i' as a child of their 'mag' attribute, otherwise forbidden.', htmlDescription='

The element is mandatory if any sibling elements of type Vector include 'i' as a child of their 'mag' attribute, otherwise forbidden.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,501 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3659, uuid={3257052D-F198-4dbc-B790-C3547F95B0E8}, since=null, name=MFscaledAngV, alias=, stereotype=enum, visibility=public, txtDescription='The element is mandatory if any sibling elements of type Vector include 'i' as a child of their 'ang' attribute, otherwise forbidden.', htmlDescription='

The element is mandatory if any sibling elements of type Vector include 'i' as a child of their 'ang' attribute, otherwise forbidden.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,501 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3660, uuid={A0996056-2831-4d43-9C7B-5574248176AD}, since=null, name=MFsg, alias=, stereotype=enum, visibility=public, txtDescription='The element is mandatory if it is member of setting group, otherwise forbidden. +Note: MFsg, OFsg, and MFsgAtLeastOne always all apply or all do not apply in a given context.', htmlDescription='

The element is mandatory if it is member of setting group, otherwise forbidden.

Note: MFsg, OFsg, and MFsgAtLeastOne always all apply or all do not apply in a given context.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,501 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3661, uuid={B20F037A-DC4B-4c52-9533-758FA9A53328}, since=null, name=OFsg, alias=, stereotype=enum, visibility=public, txtDescription='The element is optional and may be used only if it is member of setting groups, otherwise forbidden. +Note: MFsg, OFsg, and MFsgAtLeastOne always all apply or all do not apply in a given context.', htmlDescription='

The element is optional and may be used only if it is member of setting groups, otherwise forbidden.

Note: MFsg, OFsg, and MFsgAtLeastOne always all apply or all do not apply in a given context.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,501 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3662, uuid={1D58D1EE-A6A5-4f30-A5C6-4F3236EEFFF8}, since=null, name=MFsgAtLeastOne, alias=, stereotype=enum, visibility=public, txtDescription='At least one of the elements is mandatory if it is member of setting group (the others are optional). Otherwise, they are all forbidden. +Note: MFsg, OFsg, and MFsgAtLeastOne always all apply or all do not apply in a given context.', htmlDescription='

At least one of the elements is mandatory if it is member of setting group (the others are optional). Otherwise, they are all forbidden.

Note: MFsg, OFsg, and MFsgAtLeastOne always all apply or all do not apply in a given context.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,501 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3663, uuid={7774FF73-DB7C-4e45-AA3A-8A65E1574F4E}, since=null, name=MFnsg, alias=, stereotype=enum, visibility=public, txtDescription='The element is mandatory for settings outside setting groups, otherwise forbidden. +Note: MFnsg, OFnsg, and MFnsgAtLeastOne always all apply or all do not apply in a given context.', htmlDescription='

The element is mandatory for settings outside setting groups, otherwise forbidden.

Note: MFnsg, OFnsg, and MFnsgAtLeastOne always all apply or all do not apply in a given context.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,501 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3664, uuid={7D08016E-0C38-4c0c-9BEB-20CF98CE447D}, since=null, name=OFnsg, alias=, stereotype=enum, visibility=public, txtDescription='The element is optional and may be used only for settings outside setting groups, otherwise forbidden. +Note: MFnsg, OFnsg, and MFnsgAtLeastOne always all apply or all do not apply in a given context.', htmlDescription='

The element is optional and may be used only for settings outside setting groups, otherwise forbidden.

Note: MFnsg, OFnsg, and MFnsgAtLeastOne always all apply or all do not apply in a given context.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,501 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3665, uuid={ABFA9AFE-2FE5-49be-851F-A593E13688AE}, since=null, name=MFnsgAtLeastOne, alias=, stereotype=enum, visibility=public, txtDescription='At least one of the elements is mandatory for settings outside setting groups (the others are optional). Otherwise, they are all forbidden. +Note: MFnsg, OFnsg, and MFnsgAtLeastOne always all apply or all do not apply in a given context.', htmlDescription='

At least one of the elements is mandatory for settings outside setting groups (the others are optional). Otherwise, they are all forbidden.

Note: MFnsg, OFnsg, and MFnsgAtLeastOne always all apply or all do not apply in a given context.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,502 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3666, uuid={F2BC4852-69BD-4946-91F0-E04C38F36C74}, since=null, name=MFrms, alias=, stereotype=enum, visibility=public, txtDescription='The element is mandatory if the harmonic values in the context are calculated as a ratio to RMS value (value of data attribute 'hvRef' is 'rms'), forbidden otherwise.', htmlDescription='

The element is mandatory if the harmonic values in the context are calculated as a ratio to RMS value (value of data attribute 'hvRef' is 'rms'), forbidden otherwise.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,502 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3667, uuid={9C892A2D-B8CE-4b5f-8D86-48035F6BCD24}, since=null, name=Mmulti, alias=, stereotype=enum, visibility=public, txtDescription='At least one element shall be present; all instances have an instance number within range [1, 99] (see Part 7-1).', htmlDescription='

At least one element shall be present; all instances have an instance number within range [1, 99] (see Part 7-1).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,502 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3668, uuid={558E4EF7-DB17-4e50-A0E8-6AAAEA184142}, since=null, name=Omulti, alias=, stereotype=enum, visibility=public, txtDescription='Zero or more elements may be present; all instances have an instance number within range [1, 99] (see Part 7-1).', htmlDescription='

Zero or more elements may be present; all instances have an instance number within range [1, 99] (see Part 7-1).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,502 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3669, uuid={ED2CBEA5-F54A-45aa-AEF7-DC07AEC4A691}, since=null, name=OmultiRange(min, max), alias=, stereotype=enum, visibility=public, txtDescription='Parameters min, max: limits for instance number (>0). +Zero or more elements may be present; all instances have an instance number within range [min, max] (see Part 7-1).', htmlDescription='

Parameters min, max: limits for instance number (>0).

Zero or more elements may be present; all instances have an instance number within range [min, max] (see Part 7-1).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,502 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3670, uuid={FA6DB59B-35D6-4d82-AD8A-9706B804EFBD}, since=null, name=MOcond(condID), alias=, stereotype=enum, visibility=public, txtDescription='Parameter condID: condition number (>0). +Textual presence condition (non-machine processable) with reference condID to context specific text. If satisfied, the element is mandatory, otherwise optional.', htmlDescription='

Parameter condID: condition number (>0).

Textual presence condition (non-machine processable) with reference condID to context specific text. If satisfied, the element is mandatory, otherwise optional.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,502 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3671, uuid={FCDB744D-87C0-45b7-9453-4427AE31FAD4}, since=null, name=MF(condID), alias=, stereotype=enum, visibility=public, txtDescription='Parameter condID: condition number (>0). +Textual presence condition (non-machine processable) with reference condID to context specific text. If satisfied, the element is mandatory, otherwise forbidden.', htmlDescription='

Parameter condID: condition number (>0).

Textual presence condition (non-machine processable) with reference condID to context specific text. If satisfied, the element is mandatory, otherwise forbidden.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,502 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3672, uuid={DE62505B-BF27-4256-B43A-95160539CB04}, since=null, name=OF(condID), alias=, stereotype=enum, visibility=public, txtDescription='Parameter condID: condition number (>0). +Textual presence condition (non-machine processable) with reference condID to context specific text. If satisfied, the element is optional, otherwise forbidden.', htmlDescription='

Parameter condID: condition number (>0).

Textual presence condition (non-machine processable) with reference condID to context specific text. If satisfied, the element is optional, otherwise forbidden.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,502 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3673, uuid={953CC820-47FE-4695-B3A4-B72AB7F2B578}, since=null, name=MOrootLD, alias=, stereotype=enum, visibility=public, txtDescription='The element is mandatory in the context of a root logical device; otherwise it is optional.', htmlDescription='

The element is mandatory in the context of a root logical device; otherwise it is optional.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,502 [main] TRACE ClassBuilder - read from EA: PresenceConditions::PresenceCondition +2024-09-07 12:38:48,502 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_3, _depth=2, _eaElementID=2008, _objData=UmlObjectData [id=114, uuid={A4B0B13F-5618-4cb2-B112-2B54AED01457}, since=null, name=PresenceConditions, alias=Conditions for element inclusion, stereotype=, visibility=public, txtDescription='This clause introduces conditions that specify presence of elements in a given context (one LN, or one CDC, or one data object for dataNs).', htmlDescription='

This clause introduces conditions that specify presence of elements in a given context (one LN, or one CDC, or one data object for dataNs).

'], _modelId=58, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2205, uuid={680F9294-3A48-4c36-86F7-9867633896E3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=PresenceConditions, _otherEndName=Note '']], 1_diagrams=[DiagramBuilder [_containingPackage=PresenceConditions, _objData=UmlObjectData [id=228, uuid={634BF46C-EC95-4ed7-A28F-26085CE40A21}, since=null, name=PresenceConditions, alias=, stereotype=, visibility=public, txtDescription='Shows possible values for presence conditions on attributes - these are modelled in UML with either attribute multiplicities (1 or 0..1, 0..n or 1..n) or with named constraints attached to a class.', htmlDescription='

Shows possible values for presence conditions on attributes - these are modelled in UML with either attribute multiplicities (1 or 0..1, 0..n or 1..n) or with named constraints attached to a class.

'], _portrait=true, _kind=LOGICAL]], _classes=1 +2024-09-07 12:38:48,503 [main] INFO PackageBuilder - processing package DAEnums (2) ... +2024-09-07 12:38:48,503 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=DAEnums, _objData=UmlObjectData [id=229, uuid={22E1DAA3-405F-4df7-8882-EEBD5D0DA11B}, since=null, name=DAEnums-1, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the first part of explicit enumerated types defined in 61850-7-3.', htmlDescription='

This diagram shows the first part of explicit enumerated types defined in 61850-7-3.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,503 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_3::DAEnums, _objData=UmlObjectData [id=2558, uuid={8E80EB80-DCE3-4c3d-B7B7-BA538068A4E4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,503 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_3::DAEnums, _objData=UmlObjectData [id=3082, uuid={9E3DBD1A-4941-4c00-A64C-0B9D8112CFF9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,504 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2015, uuid={D1139F92-EB4A-4746-A43B-E28AB69E55E4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling notes 1: +- Within the definitions of both Common Data Attribute Types (section 6) and Common Data Classes (section 7) in IEC 61850-7-3, when the type of attribute is ENUMERATED or CODED_ENUM, the possible values are given, but the type is not defined (i.e., no name is given). Then, in section 8 (Data attribute semantics), the values are repeated per attribute, again without name for the type. Only 'SboClass' and 'CtlModel' have been explicitly defined among all enumerations. We define concrete types for all of those, as enumerations. +- Enumeration literal strings are literally copy-pasted from IEC 61850-7-3 (so they correspond to definitions in SCL2.0), except for CurveChar, SIUnit and Multiplier, whose literal strings are directly copied from SCL2.0. +Modelling notes 2: +- In SCL, EnumType-s are not XML enumerations (i.e., they are not defined as types that restrict string), but rather have an id attribute that mainly refers to the name of attribute that has those literals as possible value range - but not always! (see orCategory, used for orCat attribute). +- SCL defines one element (EnumType) per attribute of CDC/DA, so there are in some cases two EnumType-s with exactly same literals, but different id. +- At present, we store that id attribute in the EA tagged value of enumeration (class). In cases there is repetition, this string will be a comma-separated list of SCL id-s. +- The order of types in the diagrams and in the EA project browser is the one as in Ed.2 Annex H, to be able to compare the original with this model.', htmlDescription='

Modelling notes 1:

  • Within the definitions of both Common Data Attribute Types (section 6) and Common Data Classes (section 7) in IEC 61850-7-3, when the type of attribute is ENUMERATED or CODED_ENUM, the possible values are given, but the type is not defined (i.e., no name is given). Then, in section 8 (Data attribute semantics), the values are repeated per attribute, again without name for the type. Only 'SboClass' and 'CtlModel' have been explicitly defined among all enumerations. We define concrete types for all of those, as enumerations.
  • Enumeration literal strings are literally copy-pasted from IEC 61850-7-3 (so they correspond to definitions in SCL2.0), except for CurveChar, SIUnit and Multiplier, whose literal strings are directly copied from SCL2.0.

Modelling notes 2:

  • In SCL, EnumType-s are not XML enumerations (i.e., they are not defined as types that restrict string), but rather have an id attribute that mainly refers to the name of attribute that has those literals as possible value range - but not always! (see orCategory, used for orCat attribute).
  • SCL defines one element (EnumType) per attribute of CDC/DA, so there are in some cases two EnumType-s with exactly same literals, but different id.
  • At present, we store that id attribute in the EA tagged value of enumeration (class). In cases there is repetition, this string will be a comma-separated list of SCL id-s.
  • The order of types in the diagrams and in the EA project browser is the one as in Ed.2 Annex H, to be able to compare the original with this model.
'], _containingPackage=DAEnums, _otherEndName=] +2024-09-07 12:38:48,504 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2016, uuid={A05F1A3E-4A44-4cba-89B2-22FD97F14AF9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='- SCL defines two EnumType-s (id=hvRef and id=hvid) with exactly same values; 'hvid' is useless (there is no such attribute). +- Confirmed: Definition here is OK (Baden WS, with TD & WW).', htmlDescription='
  • SCL defines two EnumType-s (id=hvRef and id=hvid) with exactly same values; 'hvid' is useless (there is no such attribute).
  • Confirmed: Definition here is OK (Baden WS, with TD & WW).
'], _containingPackage=DAEnums, _otherEndName=] +2024-09-07 12:38:48,504 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2021, uuid={6BE98B3D-9F27-4d95-9E1C-FD9B624525BC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='SCL defines two EnumType-s (id=angRef and id=angid) with exactly same values; 'angid' is useless (there is no such attribute). +SCL also defines a third EnumType (id=angidCMV) with only 4 values. It does not seem to be used as defined nowhere. Is it that CMV.angRef should be using only these values? If so, the spec in 7-3 is wrong, because it enumerates all values like in id=angRef. +- Confirmed: 7-3 is wrong for CMV.angRef - define type with 5 values only (Baden WS, with TD & WW).', htmlDescription='

SCL defines two EnumType-s (id=angRef and id=angid) with exactly same values; 'angid' is useless (there is no such attribute).

SCL also defines a third EnumType (id=angidCMV) with only 4 values. It does not seem to be used as defined nowhere. Is it that CMV.angRef should be using only these values? If so, the spec in 7-3 is wrong, because it enumerates all values like in id=angRef.

  • Confirmed: 7-3 is wrong for CMV.angRef - define type with 5 values only (Baden WS, with TD & WW).
'], _containingPackage=DAEnums, _otherEndName=] +2024-09-07 12:38:48,504 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2022, uuid={5A11F146-E3D4-4bab-8BA6-82AD6CB57804}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='- SCL defines two EnumType-s (id=phsRef and id=phsid) with exactly same values; 'phsid' is useless (there is no such attribute). +- Confirmed: Definition here is OK (Baden WS, with TD & WW).', htmlDescription='
  • SCL defines two EnumType-s (id=phsRef and id=phsid) with exactly same values; 'phsid' is useless (there is no such attribute).
  • Confirmed: Definition here is OK (Baden WS, with TD & WW).
'], _containingPackage=DAEnums, _otherEndName=] +2024-09-07 12:38:48,504 [main] TRACE ClassBuilder - Class SIUnitKind (1 in package DAEnums) +2024-09-07 12:38:48,504 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3834, uuid={BF785F0A-2A56-4621-B0A1-DAAB8F3EE85B}, since=null, name=none, alias=, stereotype=enum, visibility=public, txtDescription='Dimensionless', htmlDescription='

Dimensionless

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null, 1_taggedValues{scl:emptyValue=}] +2024-09-07 12:38:48,504 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3835, uuid={6DF44984-61E4-44a3-A5EE-4C2290415A9B}, since=null, name=m, alias=, stereotype=enum, visibility=public, txtDescription='Length', htmlDescription='

Length

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,504 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3836, uuid={B34B087D-ECF3-4743-8E65-600ED7521212}, since=null, name=kg, alias=, stereotype=enum, visibility=public, txtDescription='Mass', htmlDescription='

Mass

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,504 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3837, uuid={42A5DD44-C9F5-4656-8ACF-C090569255E2}, since=null, name=s, alias=, stereotype=enum, visibility=public, txtDescription='Time', htmlDescription='

Time

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,504 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3838, uuid={130724A3-1381-420a-844F-B51C24143F8E}, since=null, name=A, alias=, stereotype=enum, visibility=public, txtDescription='Current', htmlDescription='

Current

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=5, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,504 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3839, uuid={F1030625-D53E-45e5-9D29-4940A44165B5}, since=null, name=K, alias=, stereotype=enum, visibility=public, txtDescription='Temperature', htmlDescription='

Temperature

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=6, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,504 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3840, uuid={AE2FD9E1-D38B-4e9f-8335-4B65A749974D}, since=null, name=mol, alias=, stereotype=enum, visibility=public, txtDescription='Amount of substance', htmlDescription='

Amount of substance

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=7, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,505 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3841, uuid={B5FF5AD0-E9AE-4bb5-BF76-FC88E2D17EB6}, since=null, name=cd, alias=, stereotype=enum, visibility=public, txtDescription='Luminous intensity', htmlDescription='

Luminous intensity

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=8, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,505 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3842, uuid={80EB1A36-849C-46ff-9996-06A9C9483738}, since=null, name=deg, alias=, stereotype=enum, visibility=public, txtDescription='Plane angle', htmlDescription='

Plane angle

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=9, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,505 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3843, uuid={E377BEE0-C104-440f-9D8B-729C4C9260FB}, since=null, name=rad, alias=, stereotype=enum, visibility=public, txtDescription='Plane angle', htmlDescription='

Plane angle

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=10, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,505 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3844, uuid={FCAFD15F-9B98-4480-9FEA-2F23568D4CAC}, since=null, name=sr, alias=, stereotype=enum, visibility=public, txtDescription='Solid angle', htmlDescription='

Solid angle

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=11, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,505 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3845, uuid={9A01E986-3499-4252-9A72-C4049F2655AC}, since=null, name=Gy, alias=, stereotype=enum, visibility=public, txtDescription='Absorbed dose (J/kg)', htmlDescription='

Absorbed dose (J/kg)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=21, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,505 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3846, uuid={4E669A21-8B03-47a5-8B77-2FDE37A30C6A}, since=null, name=Bq, alias=, stereotype=enum, visibility=public, txtDescription='Activity (1/s)', htmlDescription='

Activity (1/s)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=22, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,505 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3847, uuid={520E858D-8B34-451c-8895-40892ACCF50E}, since=null, name=°C, alias=, stereotype=enum, visibility=public, txtDescription='Relative temperature', htmlDescription='

Relative temperature

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=23, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,506 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3848, uuid={D1749A3B-FE6D-49dd-BA79-7FFCB48480E3}, since=null, name=Sv, alias=, stereotype=enum, visibility=public, txtDescription='Dose equivalent (J/kg)', htmlDescription='

Dose equivalent (J/kg)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=24, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,506 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3849, uuid={0C8209F7-18E8-408f-AF2E-CB3CF6B56287}, since=null, name=F, alias=, stereotype=enum, visibility=public, txtDescription='Electric capacitance', htmlDescription='

Electric capacitance

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=25, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,506 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3850, uuid={F632CA5C-8824-4ae5-A523-BBAE12929F13}, since=null, name=C, alias=, stereotype=enum, visibility=public, txtDescription='Electric charge (A S)', htmlDescription='

Electric charge (A S)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=26, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,506 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3851, uuid={6A52F2C9-C32B-4795-9CAF-AB54E2E98475}, since=null, name=S, alias=, stereotype=enum, visibility=public, txtDescription='Electric conductance (A/V)', htmlDescription='

Electric conductance (A/V)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=27, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,506 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3852, uuid={C12E0C24-6370-4f9e-AF71-A111ED01D592}, since=null, name=H, alias=, stereotype=enum, visibility=public, txtDescription='Electric inductance (Wb/A)', htmlDescription='

Electric inductance (Wb/A)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=28, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,506 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3853, uuid={F3F8EFA6-66DE-4012-B0E7-73775B3AE13D}, since=null, name=V, alias=, stereotype=enum, visibility=public, txtDescription='Electric potential (W/A)', htmlDescription='

Electric potential (W/A)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=29, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,506 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3854, uuid={7DE9814F-6BC3-42c8-AD7C-3E93C74D077B}, since=null, name=ohm, alias=, stereotype=enum, visibility=public, txtDescription='Electric resistance (V/A)', htmlDescription='

Electric resistance (V/A)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=30, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,507 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3855, uuid={FE7FD54D-EA36-4fbe-A3FD-7BCFCC00F34A}, since=null, name=J, alias=, stereotype=enum, visibility=public, txtDescription='Energy (N m)', htmlDescription='

Energy (N m)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=31, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,507 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3856, uuid={B03A8CAE-D159-41a1-96FE-900DCF66F192}, since=null, name=N, alias=, stereotype=enum, visibility=public, txtDescription='Force (kg m / s2)', htmlDescription='

Force (kg m / s2)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=32, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,507 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3857, uuid={81BFC441-9980-4fb5-8BA1-E8F752221238}, since=null, name=Hz, alias=, stereotype=enum, visibility=public, txtDescription='Frequency (1/s)', htmlDescription='

Frequency (1/s)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=33, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,507 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3858, uuid={06DC51E8-D7E4-47b4-8E84-C59EFCC076A1}, since=null, name=lx, alias=, stereotype=enum, visibility=public, txtDescription='Illuminance (Lm/m2)', htmlDescription='

Illuminance (Lm/m2)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=34, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,507 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3859, uuid={695EF603-FCBB-4d63-8EE4-822DAF7B06F7}, since=null, name=Lm, alias=, stereotype=enum, visibility=public, txtDescription='Luminous flux (cd sr)', htmlDescription='

Luminous flux (cd sr)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=35, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,507 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3860, uuid={88797613-50B0-4614-9F01-D73561DF4C70}, since=null, name=Wb, alias=, stereotype=enum, visibility=public, txtDescription='Magnetic flux (V s)', htmlDescription='

Magnetic flux (V s)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=36, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,507 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3861, uuid={CAC0C9AC-54BF-45d8-A303-7F6B8A0D489D}, since=null, name=T, alias=, stereotype=enum, visibility=public, txtDescription='Magnetic flux density (Wb / m2)', htmlDescription='

Magnetic flux density (Wb / m2)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=37, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,507 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3862, uuid={3206BE17-1CB2-4674-88C8-ED9932F4F45E}, since=null, name=W, alias=, stereotype=enum, visibility=public, txtDescription='Power (J/s)', htmlDescription='

Power (J/s)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=38, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,508 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3863, uuid={093E7D33-D82B-4658-8E66-6529606CD4E7}, since=null, name=Pa, alias=, stereotype=enum, visibility=public, txtDescription='Pressure (N / m2)', htmlDescription='

Pressure (N / m2)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=39, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,508 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3864, uuid={F3996E68-F1F5-47ac-9868-025E731EA889}, since=null, name=m², alias=, stereotype=enum, visibility=public, txtDescription='Area', htmlDescription='

Area

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=41, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,508 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3865, uuid={A839006B-9203-4d7f-8EA6-57BACAD4D126}, since=null, name=m³, alias=, stereotype=enum, visibility=public, txtDescription='Volume', htmlDescription='

Volume

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=42, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,509 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3866, uuid={01CA7E85-9F4F-40df-AD70-7DEED2B304F8}, since=null, name=m/s, alias=, stereotype=enum, visibility=public, txtDescription='Velocity', htmlDescription='

Velocity

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=43, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,509 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3867, uuid={4480A19E-7AD5-4bda-8AD3-73B91E734BDD}, since=null, name=m/s², alias=, stereotype=enum, visibility=public, txtDescription='Acceleration', htmlDescription='

Acceleration

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=44, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,509 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3868, uuid={1774C91B-1C0C-41d7-9825-ADE012AA3F80}, since=null, name=m³/s, alias=, stereotype=enum, visibility=public, txtDescription='Volumetric flow rate', htmlDescription='

Volumetric flow rate

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=45, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,509 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3869, uuid={87C49CAE-44F7-4870-A2E4-4109061F7FB1}, since=null, name=m/m³, alias=, stereotype=enum, visibility=public, txtDescription='Fuel efficiency', htmlDescription='

Fuel efficiency

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=46, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,509 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3870, uuid={7559AB73-2A13-4cf7-8FD4-55685781E975}, since=null, name=M, alias=, stereotype=enum, visibility=public, txtDescription='Moment of mass (kg m)', htmlDescription='

Moment of mass (kg m)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=47, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,509 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3871, uuid={DAA7E5EF-F3F8-4193-9231-13579474FA39}, since=null, name=kg/m³, alias=, stereotype=enum, visibility=public, txtDescription='Density', htmlDescription='

Density

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=48, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,509 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3872, uuid={AFE3FFEE-3BE3-430f-8660-7B3EBC4E8951}, since=null, name=m²/s, alias=, stereotype=enum, visibility=public, txtDescription='Viscosity', htmlDescription='

Viscosity

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=49, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,509 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3873, uuid={BCFC3375-64FB-4f3a-94E3-95D1A3A5CBBE}, since=null, name=W/m K, alias=, stereotype=enum, visibility=public, txtDescription='Thermal conductivity', htmlDescription='

Thermal conductivity

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=50, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,509 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3874, uuid={3D94638E-4FDC-462c-87C3-ADC8B96D7B7E}, since=null, name=J/K, alias=, stereotype=enum, visibility=public, txtDescription='Heat capacity', htmlDescription='

Heat capacity

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=51, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,509 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3875, uuid={90F28F14-0C7C-45c7-B631-13548FBBA81B}, since=null, name=ppm, alias=, stereotype=enum, visibility=public, txtDescription='Concentration', htmlDescription='

Concentration

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=52, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,509 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3876, uuid={4A4CCECE-2AAA-4c8c-B936-C6108D16263F}, since=null, name=1/s, alias=, stereotype=enum, visibility=public, txtDescription='Rotational speed', htmlDescription='

Rotational speed

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=53, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,509 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3877, uuid={7D96211B-D5AD-4a47-9626-D17F9CB4CDEB}, since=null, name=rad/s, alias=, stereotype=enum, visibility=public, txtDescription='Angular velocity', htmlDescription='

Angular velocity

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=54, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,509 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3878, uuid={336B86CA-E1FB-4302-864F-F24E2A6D94C3}, since=null, name=W/m², alias=, stereotype=enum, visibility=public, txtDescription='Insolation', htmlDescription='

Insolation

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=55, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,509 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3879, uuid={C9521B26-D482-453f-945D-74369F773538}, since=null, name=J/m², alias=, stereotype=enum, visibility=public, txtDescription='Insolation energy', htmlDescription='

Insolation energy

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=56, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,510 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3880, uuid={ED41A0C0-8218-4409-B4EF-9E3F40AA0609}, since=null, name=S/m, alias=, stereotype=enum, visibility=public, txtDescription='Electric conductivity', htmlDescription='

Electric conductivity

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=57, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,510 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3881, uuid={7EA46B10-B356-4e5a-951C-3D6D32267576}, since=null, name=K/s, alias=, stereotype=enum, visibility=public, txtDescription='Temperature change rate', htmlDescription='

Temperature change rate

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=58, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,510 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3882, uuid={487E4ED6-B199-4909-9199-CE6D29ED4032}, since=null, name=Pa/s, alias=, stereotype=enum, visibility=public, txtDescription='Pressure change rate', htmlDescription='

Pressure change rate

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=59, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,510 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3883, uuid={AD5FA589-E00C-44dd-9ACD-9CF342D5968F}, since=null, name=J/kg K, alias=, stereotype=enum, visibility=public, txtDescription='Specific heat', htmlDescription='

Specific heat

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=60, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,510 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3884, uuid={6389AEE4-7FB9-4c07-B618-FB53EC254BEC}, since=null, name=VA, alias=, stereotype=enum, visibility=public, txtDescription='Apparent power', htmlDescription='

Apparent power

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=61, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,510 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3885, uuid={A318152C-4902-4d06-987B-93B642559783}, since=null, name=Watts, alias=, stereotype=enum, visibility=public, txtDescription='Real power (I2 R)', htmlDescription='

Real power (I2 R)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=62, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,510 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3886, uuid={F0EB0FAF-2328-47c0-BD89-3BC3A855BA2D}, since=null, name=VAr, alias=, stereotype=enum, visibility=public, txtDescription='Reactive power (V I sinTheta)', htmlDescription='

Reactive power (V I sinTheta)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=63, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,510 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3887, uuid={7ACF674F-0405-4ce6-B1CE-9BE8345B3E1F}, since=null, name=phi, alias=, stereotype=enum, visibility=public, txtDescription='Phase angle', htmlDescription='

Phase angle

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=64, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,511 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3888, uuid={75FEC2A7-74A6-4b04-9BB4-A017C3B2071A}, since=null, name=cos(phi), alias=, stereotype=enum, visibility=public, txtDescription='Power factor', htmlDescription='

Power factor

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=65, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,511 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3889, uuid={3519D3DF-FC67-43df-89C4-EFC973A9E571}, since=null, name=Vs, alias=, stereotype=enum, visibility=public, txtDescription='Volt second (Ws/A)', htmlDescription='

Volt second (Ws/A)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=66, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,511 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3890, uuid={6078EDDB-89EB-4e87-A142-CEDD5B6533D5}, since=null, name=V², alias=, stereotype=enum, visibility=public, txtDescription='Volt squared (W2/A2)', htmlDescription='

Volt squared (W2/A2)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=67, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,511 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3891, uuid={6E134111-596F-42b2-9FD5-C3711E33BDED}, since=null, name=As, alias=, stereotype=enum, visibility=public, txtDescription='Amp second', htmlDescription='

Amp second

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=68, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,511 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3892, uuid={F793B57F-FA76-42d9-89A9-7629864E64B3}, since=null, name=A², alias=, stereotype=enum, visibility=public, txtDescription='Amp squared', htmlDescription='

Amp squared

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=69, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,511 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3893, uuid={EA1DDC8A-87AD-4a1f-B2B0-91751FF53837}, since=null, name=A²t, alias=, stereotype=enum, visibility=public, txtDescription='Amps squared time', htmlDescription='

Amps squared time

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=70, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,511 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3894, uuid={D9CEC63F-76E2-485d-B2F7-FFA81AA6BEBC}, since=null, name=VAh, alias=, stereotype=enum, visibility=public, txtDescription='Apparent energy', htmlDescription='

Apparent energy

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=71, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,511 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3895, uuid={44599BAF-291C-4166-9A77-42A3007271CF}, since=null, name=Wh, alias=, stereotype=enum, visibility=public, txtDescription='Real energy', htmlDescription='

Real energy

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=72, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,511 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3896, uuid={A59B8D3B-DA91-4657-9E91-B1ADA13FAAAC}, since=null, name=VArh, alias=, stereotype=enum, visibility=public, txtDescription='Reactive energy', htmlDescription='

Reactive energy

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=73, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,511 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3897, uuid={0480C7F4-2D9A-47e9-A2E1-2D8C32D2E9D3}, since=null, name=V/Hz, alias=, stereotype=enum, visibility=public, txtDescription='Magnetic flux', htmlDescription='

Magnetic flux

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=74, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,511 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3898, uuid={7F582058-C00F-4944-A3AC-5789A6E2E24F}, since=null, name=Hz/s, alias=, stereotype=enum, visibility=public, txtDescription='Rate of change of frequency', htmlDescription='

Rate of change of frequency

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=75, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,511 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3899, uuid={081C90EE-8E06-46f7-80F9-01C1B233EB91}, since=null, name=char, alias=, stereotype=enum, visibility=public, txtDescription='Number of characters', htmlDescription='

Number of characters

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=76, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,512 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3900, uuid={3EF944A7-7515-4e91-B70B-7A85D85F8ECA}, since=null, name=char/s, alias=, stereotype=enum, visibility=public, txtDescription='Baud', htmlDescription='

Baud

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=77, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,512 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3901, uuid={12C213D8-D6B9-4954-A3B5-3BA81731565F}, since=null, name=kgm², alias=, stereotype=enum, visibility=public, txtDescription='Turbine inertia', htmlDescription='

Turbine inertia

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=78, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,512 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3902, uuid={947D393B-8686-4ee9-AA29-7D4A01819DF4}, since=null, name=dB, alias=, stereotype=enum, visibility=public, txtDescription='Sound pressure level', htmlDescription='

Sound pressure level

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=79, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,512 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3903, uuid={335D464A-2497-4981-B2E3-950C7282AA6F}, since=null, name=J/Wh, alias=, stereotype=enum, visibility=public, txtDescription='Heat rate', htmlDescription='

Heat rate

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=80, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,512 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3904, uuid={7BEC4924-EF16-420c-A67D-5D76EABD7938}, since=null, name=W/s, alias=, stereotype=enum, visibility=public, txtDescription='Ramp rate', htmlDescription='

Ramp rate

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=81, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,512 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3905, uuid={3E349D70-4DD2-4990-8071-0063B88752B2}, since=null, name=l/s, alias=, stereotype=enum, visibility=public, txtDescription='Flow rate', htmlDescription='

Flow rate

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=82, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,512 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3906, uuid={7C5691F4-364C-4707-BFE6-CFBB055B1933}, since=null, name=dBm, alias=, stereotype=enum, visibility=public, txtDescription='Power level relative to 1 mW', htmlDescription='

Power level relative to 1 mW

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=83, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,512 [main] TRACE ClassBuilder - read from EA: DAEnums::SIUnitKind +2024-09-07 12:38:48,512 [main] TRACE ClassBuilder - Class MultiplierKind (2 in package DAEnums) +2024-09-07 12:38:48,512 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3813, uuid={F826384A-55D1-42d3-9E74-6989CEF256A9}, since=null, name=y, alias=, stereotype=enum, visibility=public, txtDescription='yocto (10-24)', htmlDescription='

yocto (10-24)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=-24, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,512 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3814, uuid={F856AB16-B194-4a54-A86D-ACE6DC6E65CF}, since=null, name=z, alias=, stereotype=enum, visibility=public, txtDescription='zepto (10-21)', htmlDescription='

zepto (10-21)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=-21, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,513 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3815, uuid={BDA0FA31-E452-4098-AB0D-720C1EF7B263}, since=null, name=a, alias=, stereotype=enum, visibility=public, txtDescription='atto (10-18)', htmlDescription='

atto (10-18)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=-18, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,513 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3816, uuid={11100351-8534-4376-BA83-4B47E5A0A126}, since=null, name=f, alias=, stereotype=enum, visibility=public, txtDescription='femto (10-15)', htmlDescription='

femto (10-15)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=-15, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,513 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3817, uuid={B6750A53-7A9C-4a07-ABEF-C1950A5939E0}, since=null, name=p, alias=, stereotype=enum, visibility=public, txtDescription='pico (10-12)', htmlDescription='

pico (10-12)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=-12, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,513 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3818, uuid={80AC5E72-B19E-4d7a-BD11-45DE37C82C16}, since=null, name=n, alias=, stereotype=enum, visibility=public, txtDescription='nano (10-9)', htmlDescription='

nano (10-9)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=-9, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,513 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3819, uuid={980F02A3-80C1-4d12-9648-7D6ABDC0053D}, since=null, name=µ, alias=, stereotype=enum, visibility=public, txtDescription='micro (10-6)', htmlDescription='

micro (10-6)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=-6, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,513 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3820, uuid={1592FEF4-6C1C-41f7-AB2F-F0075A85180D}, since=null, name=m, alias=, stereotype=enum, visibility=public, txtDescription='milli (10-3)', htmlDescription='

milli (10-3)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=-3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,513 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3821, uuid={44DBD5F4-440B-4693-A842-A7E414EE13CD}, since=null, name=c, alias=, stereotype=enum, visibility=public, txtDescription='centi (10-2)', htmlDescription='

centi (10-2)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=-2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,513 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3822, uuid={C1C66E19-BAB8-404e-83AC-B5AD8D1079DD}, since=null, name=d, alias=, stereotype=enum, visibility=public, txtDescription='deci (10-1)', htmlDescription='

deci (10-1)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=-1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,513 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3823, uuid={37848CD5-ABCF-4b0c-8316-436D2949DECE}, since=null, name=none, alias=, stereotype=enum, visibility=public, txtDescription='1 (100)', htmlDescription='

1 (100)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null, 1_taggedValues{scl:emptyValue=}] +2024-09-07 12:38:48,513 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3824, uuid={806BC64F-53C4-47bf-9D81-C23922A32759}, since=null, name=da, alias=, stereotype=enum, visibility=public, txtDescription='deca (101)', htmlDescription='

deca (101)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,513 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3825, uuid={DF66919F-34C9-413d-9499-D9D908F7D739}, since=null, name=h, alias=, stereotype=enum, visibility=public, txtDescription='hecto (102)', htmlDescription='

hecto (102)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,513 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3826, uuid={B23AC6F0-4362-4f51-9373-0584969C4027}, since=null, name=k, alias=, stereotype=enum, visibility=public, txtDescription='kilo (103)', htmlDescription='

kilo (103)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,513 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3827, uuid={A5852706-12D9-4192-BF05-94ED73EBB9CC}, since=null, name=M, alias=, stereotype=enum, visibility=public, txtDescription='mega (106)', htmlDescription='

mega (106)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=6, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,513 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3828, uuid={D2C2F3AF-A64A-4c08-B3EE-607EDAD828CC}, since=null, name=G, alias=, stereotype=enum, visibility=public, txtDescription='giga (109)', htmlDescription='

giga (109)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=9, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,514 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3829, uuid={806D1BFD-EC1C-4178-A2D4-BB165F3C9663}, since=null, name=T, alias=, stereotype=enum, visibility=public, txtDescription='tera (1012)', htmlDescription='

tera (1012)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=12, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,514 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3830, uuid={CDBB3281-D3CE-4053-B43B-D71C85737FFA}, since=null, name=P, alias=, stereotype=enum, visibility=public, txtDescription='petra (1015)', htmlDescription='

petra (1015)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=15, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,514 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3831, uuid={B5C0D72E-3CA0-46b4-BB7C-9454DD9BD091}, since=null, name=E, alias=, stereotype=enum, visibility=public, txtDescription='exa (1018)', htmlDescription='

exa (1018)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=18, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,514 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3832, uuid={FED6FE87-E395-4d6f-A8B0-DD5D59FB6BA3}, since=null, name=Z, alias=, stereotype=enum, visibility=public, txtDescription='zetta (1021)', htmlDescription='

zetta (1021)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=21, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,514 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3833, uuid={A2445C1D-0C0D-4ed6-983A-07A413E8E101}, since=null, name=Y, alias=, stereotype=enum, visibility=public, txtDescription='yotta (1024)', htmlDescription='

yotta (1024)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=24, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,514 [main] TRACE ClassBuilder - read from EA: DAEnums::MultiplierKind +2024-09-07 12:38:48,514 [main] TRACE ClassBuilder - Class PhaseFaultDirectionKind (3 in package DAEnums) +2024-09-07 12:38:48,514 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::PhaseFaultDirectionKind, _objData=UmlObjectData [id=3727, uuid={EA96AD4A-7F81-4faf-B172-CBD2E21DEC1E}, since=null, name=unknown, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,514 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::PhaseFaultDirectionKind, _objData=UmlObjectData [id=3728, uuid={EC44966A-7711-467b-A1E4-EF556315A60F}, since=null, name=forward, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,514 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::PhaseFaultDirectionKind, _objData=UmlObjectData [id=3729, uuid={6F661D14-B716-49d2-9CF5-C28EEA0F0880}, since=null, name=backward, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,514 [main] TRACE ClassBuilder - read from EA: DAEnums::PhaseFaultDirectionKind +2024-09-07 12:38:48,515 [main] TRACE ClassBuilder - Class PhaseAngleReferenceKind (4 in package DAEnums) +2024-09-07 12:38:48,515 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::PhaseAngleReferenceKind, _objData=UmlObjectData [id=3744, uuid={7A67A6EA-76C8-44db-BD19-900566F16BB1}, since=null, name=Va, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,516 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::PhaseAngleReferenceKind, _objData=UmlObjectData [id=3745, uuid={F5236EB4-23F5-4a14-A3A7-8F39E7837FB5}, since=null, name=Vb, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,516 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::PhaseAngleReferenceKind, _objData=UmlObjectData [id=3746, uuid={01D3B189-1334-47af-89D9-A708632D204B}, since=null, name=Vc, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,516 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::PhaseAngleReferenceKind, _objData=UmlObjectData [id=3747, uuid={8DF9CA9A-853B-411c-866B-883703C9769F}, since=null, name=Aa, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,516 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::PhaseAngleReferenceKind, _objData=UmlObjectData [id=3748, uuid={B78874F7-0651-4f51-89DE-8440EA1F00F8}, since=null, name=Ab, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,516 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::PhaseAngleReferenceKind, _objData=UmlObjectData [id=3749, uuid={E501A6FB-0BE3-4bee-AF95-447C1DA0BB8F}, since=null, name=Ac, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=5, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,516 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::PhaseAngleReferenceKind, _objData=UmlObjectData [id=3750, uuid={C0323DE2-E47A-4d41-BE14-6EBD7358E29F}, since=null, name=Vab, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=6, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,516 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::PhaseAngleReferenceKind, _objData=UmlObjectData [id=3751, uuid={D01AB035-9562-48cd-A622-AAF405D8F050}, since=null, name=Vbc, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=7, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,516 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::PhaseAngleReferenceKind, _objData=UmlObjectData [id=3752, uuid={8C1740DF-DB25-461a-809A-A416E19CA325}, since=null, name=Vca, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=8, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,516 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::PhaseAngleReferenceKind, _objData=UmlObjectData [id=3753, uuid={21136935-359E-4178-BC13-03C11742DC27}, since=null, name=Vother, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=9, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,516 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::PhaseAngleReferenceKind, _objData=UmlObjectData [id=3754, uuid={CA201514-B2C2-4dab-B0D5-239188B4D640}, since=null, name=Aother, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=10, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,516 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::PhaseAngleReferenceKind, _objData=UmlObjectData [id=3755, uuid={85D43CCE-3CEB-4d00-BCDF-52BCE7FF33A0}, since=null, name=Synchrophasor, alias=, stereotype=enum, visibility=public, txtDescription='Reference of the angle is as defined in 4.2 of IEEE C37.118.', htmlDescription='

Reference of the angle is as defined in 4.2 of IEEE C37.118.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=11, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,517 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2214, uuid={19AF449A-8D04-40ed-80BC-D379DB38BF66}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=PhaseAngleReferenceKind, _otherEndName=?] +2024-09-07 12:38:48,517 [main] TRACE ClassBuilder - read from EA: DAEnums::PhaseAngleReferenceKind +2024-09-07 12:38:48,517 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_3, _depth=2, _eaElementID=2012, _objData=UmlObjectData [id=115, uuid={BA5F048C-51D9-4dc8-A0E9-617F4174CCE6}, since=null, name=DAEnums, alias=Enumerated data attribute types, stereotype=, visibility=public, txtDescription='This subclause contains explicit definition of enumerated types used in IEC 61850-7-3; some of them are also used in IEC 61850-7-4.', htmlDescription='

This subclause contains explicit definition of enumerated types used in IEC 61850-7-3; some of them are also used in IEC 61850-7-4.

'], _modelId=58, _selfDependent=false, 4_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2015, uuid={D1139F92-EB4A-4746-A43B-E28AB69E55E4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling notes 1: +- Within the definitions of both Common Data Attribute Types (section 6) and Common Data Classes (section 7) in IEC 61850-7-3, when the type of attribute is ENUMERATED or CODED_ENUM, the possible values are given, but the type is not defined (i.e., no name is given). Then, in section 8 (Data attribute semantics), the values are repeated per attribute, again without name for the type. Only 'SboClass' and 'CtlModel' have been explicitly defined among all enumerations. We define concrete types for all of those, as enumerations. +- Enumeration literal strings are literally copy-pasted from IEC 61850-7-3 (so they correspond to definitions in SCL2.0), except for CurveChar, SIUnit and Multiplier, whose literal strings are directly copied from SCL2.0. +Modelling notes 2: +- In SCL, EnumType-s are not XML enumerations (i.e., they are not defined as types that restrict string), but rather have an id attribute that mainly refers to the name of attribute that has those literals as possible value range - but not always! (see orCategory, used for orCat attribute). +- SCL defines one element (EnumType) per attribute of CDC/DA, so there are in some cases two EnumType-s with exactly same literals, but different id. +- At present, we store that id attribute in the EA tagged value of enumeration (class). In cases there is repetition, this string will be a comma-separated list of SCL id-s. +- The order of types in the diagrams and in the EA project browser is the one as in Ed.2 Annex H, to be able to compare the original with this model.', htmlDescription='

Modelling notes 1:

  • Within the definitions of both Common Data Attribute Types (section 6) and Common Data Classes (section 7) in IEC 61850-7-3, when the type of attribute is ENUMERATED or CODED_ENUM, the possible values are given, but the type is not defined (i.e., no name is given). Then, in section 8 (Data attribute semantics), the values are repeated per attribute, again without name for the type. Only 'SboClass' and 'CtlModel' have been explicitly defined among all enumerations. We define concrete types for all of those, as enumerations.
  • Enumeration literal strings are literally copy-pasted from IEC 61850-7-3 (so they correspond to definitions in SCL2.0), except for CurveChar, SIUnit and Multiplier, whose literal strings are directly copied from SCL2.0.

Modelling notes 2:

  • In SCL, EnumType-s are not XML enumerations (i.e., they are not defined as types that restrict string), but rather have an id attribute that mainly refers to the name of attribute that has those literals as possible value range - but not always! (see orCategory, used for orCat attribute).
  • SCL defines one element (EnumType) per attribute of CDC/DA, so there are in some cases two EnumType-s with exactly same literals, but different id.
  • At present, we store that id attribute in the EA tagged value of enumeration (class). In cases there is repetition, this string will be a comma-separated list of SCL id-s.
  • The order of types in the diagrams and in the EA project browser is the one as in Ed.2 Annex H, to be able to compare the original with this model.
'], _containingPackage=DAEnums, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2016, uuid={A05F1A3E-4A44-4cba-89B2-22FD97F14AF9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='- SCL defines two EnumType-s (id=hvRef and id=hvid) with exactly same values; 'hvid' is useless (there is no such attribute). +- Confirmed: Definition here is OK (Baden WS, with TD & WW).', htmlDescription='
  • SCL defines two EnumType-s (id=hvRef and id=hvid) with exactly same values; 'hvid' is useless (there is no such attribute).
  • Confirmed: Definition here is OK (Baden WS, with TD & WW).
'], _containingPackage=DAEnums, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2021, uuid={6BE98B3D-9F27-4d95-9E1C-FD9B624525BC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='SCL defines two EnumType-s (id=angRef and id=angid) with exactly same values; 'angid' is useless (there is no such attribute). +SCL also defines a third EnumType (id=angidCMV) with only 4 values. It does not seem to be used as defined nowhere. Is it that CMV.angRef should be using only these values? If so, the spec in 7-3 is wrong, because it enumerates all values like in id=angRef. +- Confirmed: 7-3 is wrong for CMV.angRef - define type with 5 values only (Baden WS, with TD & WW).', htmlDescription='

SCL defines two EnumType-s (id=angRef and id=angid) with exactly same values; 'angid' is useless (there is no such attribute).

SCL also defines a third EnumType (id=angidCMV) with only 4 values. It does not seem to be used as defined nowhere. Is it that CMV.angRef should be using only these values? If so, the spec in 7-3 is wrong, because it enumerates all values like in id=angRef.

  • Confirmed: 7-3 is wrong for CMV.angRef - define type with 5 values only (Baden WS, with TD & WW).
'], _containingPackage=DAEnums, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2022, uuid={5A11F146-E3D4-4bab-8BA6-82AD6CB57804}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='- SCL defines two EnumType-s (id=phsRef and id=phsid) with exactly same values; 'phsid' is useless (there is no such attribute). +- Confirmed: Definition here is OK (Baden WS, with TD & WW).', htmlDescription='
  • SCL defines two EnumType-s (id=phsRef and id=phsid) with exactly same values; 'phsid' is useless (there is no such attribute).
  • Confirmed: Definition here is OK (Baden WS, with TD & WW).
'], _containingPackage=DAEnums, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=DAEnums, _objData=UmlObjectData [id=229, uuid={22E1DAA3-405F-4df7-8882-EEBD5D0DA11B}, since=null, name=DAEnums-1, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the first part of explicit enumerated types defined in 61850-7-3.', htmlDescription='

This diagram shows the first part of explicit enumerated types defined in 61850-7-3.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsTarget=2, _classes=4 +2024-09-07 12:38:48,517 [main] INFO PackageBuilder - processing package ImplicitDAs (3) ... +2024-09-07 12:38:48,517 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=ImplicitDAs, _objData=UmlObjectData [id=231, uuid={20749D5F-87AE-475f-ABB6-7C52B08B808F}, since=null, name=ImplicitDAs, alias=, stereotype=, visibility=public, txtDescription='Shows all enumerated data attributes used for composed data attributes (beige) and common data classes (pink).', htmlDescription='

Shows all enumerated data attributes used for composed data attributes (beige) and common data classes (pink).

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,517 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_3::ImplicitDAs, _objData=UmlObjectData [id=2945, uuid={FA78D59B-10C4-462d-BB8D-AF291F0DB4BC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,517 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_3::ImplicitDAs, _objData=UmlObjectData [id=3062, uuid={4D544FA6-8E09-4013-A7BF-26D3FD028926}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,517 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_3::ImplicitDAs->IEC61850_7_3::DAEnums, _objData=UmlObjectData [id=3082, uuid={9E3DBD1A-4941-4c00-A64C-0B9D8112CFF9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,518 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2050, uuid={FD4E3B51-E3C1-4d2a-B91C-EA10EAD0F309}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling notes: +- DpStatus (double-point status) and BsControlKind (binary-controlled step) are in BasicDAs (part 7-2), and their coded enums in CoreTypes (part 7-2).', htmlDescription='

Modelling notes:

  • DpStatus (double-point status) and BsControlKind (binary-controlled step) are in BasicDAs (part 7-2), and their coded enums in CoreTypes (part 7-2).
'], _containingPackage=ImplicitDAs, _otherEndName=] +2024-09-07 12:38:48,518 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2073, uuid={7DBFCC58-6812-4b7a-99E7-8EB6CAA23B98}, since=null, name=DAEnums :DAEnums-2, alias=, stereotype=, visibility=public, txtDescription='DAEnums : DAEnums-2', htmlDescription='

DAEnums : DAEnums-2

'], _containingPackage=ImplicitDAs, _otherEndName=] +2024-09-07 12:38:48,518 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2074, uuid={CA5A2AEE-A355-4a54-B231-8F8A8E1AD807}, since=null, name=DAEnums :DAEnums-1, alias=, stereotype=, visibility=public, txtDescription='DAEnums : DAEnums-1', htmlDescription='

DAEnums : DAEnums-1

'], _containingPackage=ImplicitDAs, _otherEndName=] +2024-09-07 12:38:48,518 [main] TRACE ClassBuilder - Class SIUnit (1 in package ImplicitDAs) +2024-09-07 12:38:48,519 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ImplicitDAs::SIUnit, _objData=UmlObjectData [id=4088, uuid={04E61BC5-2DEF-41ba-AF8F-3A302F4A6063}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2045, _eaTypeName=SIUnitKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,519 [main] DEBUG ClassBuilder - Adding SIUnit as subclass of EnumDA +2024-09-07 12:38:48,519 [main] TRACE ClassBuilder - read from EA: ImplicitDAs::SIUnit +2024-09-07 12:38:48,519 [main] TRACE ClassBuilder - Class Multiplier (2 in package ImplicitDAs) +2024-09-07 12:38:48,519 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ImplicitDAs::Multiplier, _objData=UmlObjectData [id=4077, uuid={D9A6C35F-4CCF-4f73-83E5-5F4AD6A1400F}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2044, _eaTypeName=MultiplierKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,520 [main] DEBUG ClassBuilder - Adding Multiplier as subclass of EnumDA +2024-09-07 12:38:48,520 [main] TRACE ClassBuilder - read from EA: ImplicitDAs::Multiplier +2024-09-07 12:38:48,520 [main] TRACE ClassBuilder - Class PhaseFaultDirection (3 in package ImplicitDAs) +2024-09-07 12:38:48,521 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ImplicitDAs::PhaseFaultDirection, _objData=UmlObjectData [id=4082, uuid={686FDE41-9545-4055-876E-D830A36C9D9B}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2035, _eaTypeName=PhaseFaultDirectionKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,521 [main] DEBUG ClassBuilder - Adding PhaseFaultDirection as subclass of EnumDA +2024-09-07 12:38:48,521 [main] TRACE ClassBuilder - read from EA: ImplicitDAs::PhaseFaultDirection +2024-09-07 12:38:48,521 [main] TRACE ClassBuilder - Class PhaseAngleReference (4 in package ImplicitDAs) +2024-09-07 12:38:48,521 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ImplicitDAs::PhaseAngleReference, _objData=UmlObjectData [id=4081, uuid={C147EDDB-E173-43f3-A14E-937A40EA0619}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2039, _eaTypeName=PhaseAngleReferenceKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,522 [main] DEBUG ClassBuilder - Adding PhaseAngleReference as subclass of EnumDA +2024-09-07 12:38:48,522 [main] TRACE ClassBuilder - read from EA: ImplicitDAs::PhaseAngleReference +2024-09-07 12:38:48,522 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_3, _depth=2, _eaElementID=2049, _objData=UmlObjectData [id=116, uuid={D5AC8C44-FA9C-471c-8531-3431C335B69D}, since=null, name=ImplicitDAs, alias=, stereotype=, visibility=public, txtDescription='This package contains enumerated data attributes (EnumDA) used for composed data attributes and common data classes. Not explicitly defined in the standard.', htmlDescription='

This package contains enumerated data attributes (EnumDA) used for composed data attributes and common data classes. Not explicitly defined in the standard.

'], _modelId=58, _selfDependent=false, 3_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2050, uuid={FD4E3B51-E3C1-4d2a-B91C-EA10EAD0F309}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling notes: +- DpStatus (double-point status) and BsControlKind (binary-controlled step) are in BasicDAs (part 7-2), and their coded enums in CoreTypes (part 7-2).', htmlDescription='

Modelling notes:

  • DpStatus (double-point status) and BsControlKind (binary-controlled step) are in BasicDAs (part 7-2), and their coded enums in CoreTypes (part 7-2).
'], _containingPackage=ImplicitDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2073, uuid={7DBFCC58-6812-4b7a-99E7-8EB6CAA23B98}, since=null, name=DAEnums :DAEnums-2, alias=, stereotype=, visibility=public, txtDescription='DAEnums : DAEnums-2', htmlDescription='

DAEnums : DAEnums-2

'], _containingPackage=ImplicitDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2074, uuid={CA5A2AEE-A355-4a54-B231-8F8A8E1AD807}, since=null, name=DAEnums :DAEnums-1, alias=, stereotype=, visibility=public, txtDescription='DAEnums : DAEnums-1', htmlDescription='

DAEnums : DAEnums-1

'], _containingPackage=ImplicitDAs, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=ImplicitDAs, _objData=UmlObjectData [id=231, uuid={20749D5F-87AE-475f-ABB6-7C52B08B808F}, since=null, name=ImplicitDAs, alias=, stereotype=, visibility=public, txtDescription='Shows all enumerated data attributes used for composed data attributes (beige) and common data classes (pink).', htmlDescription='

Shows all enumerated data attributes used for composed data attributes (beige) and common data classes (pink).

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=1, _dependenciesAsTarget=2, _classes=4 +2024-09-07 12:38:48,522 [main] INFO PackageBuilder - processing package ConstructedDAs (4) ... +2024-09-07 12:38:48,523 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=ConstructedDAs, _objData=UmlObjectData [id=233, uuid={464DD3CC-A65D-4fac-94C9-4A99ECC02510}, since=null, name=ConstructedDAs, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all constructed attribute classes with their meta-model superclasses.', htmlDescription='

This diagram shows all constructed attribute classes with their meta-model superclasses.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,523 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_3::ConstructedDAs, _objData=UmlObjectData [id=2946, uuid={C39E7C1F-3EFB-476b-8296-6ED38A067033}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,524 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_3::ConstructedDAs->IEC61850_7_2::MetaModel, _objData=UmlObjectData [id=3061, uuid={56397421-AB0D-4458-80FC-5FB07F2DD3F2}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,524 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_3::ConstructedDAs->IEC61850_7_3::ImplicitDAs, _objData=UmlObjectData [id=3062, uuid={4D544FA6-8E09-4013-A7BF-26D3FD028926}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,524 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_3::ConstructedDAs->IEC61850_7_2::BasicDAs, _objData=UmlObjectData [id=3063, uuid={3A733EFE-40F7-4e54-BAA6-405269B1FDDC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,524 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_3::ConstructedDAs->IEC61850_7_2::CoreTypes, _objData=UmlObjectData [id=3064, uuid={108535CE-A6F8-4674-9586-860C06077B0A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,524 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2077, uuid={A2DB359E-D081-478e-8841-E4D73D4EE769}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- Complete the statechart Quality.validity.', htmlDescription='

TODO:

  • Complete the statechart Quality.validity.
'], _containingPackage=ConstructedDAs, _otherEndName=] +2024-09-07 12:38:48,524 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2078, uuid={2589FB5D-7AE6-4890-B8A2-4F3261625EAE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: finish transitions +- (see oscillatory): questionable -> invalid +- questionable -> good +- invalid -> good +Somehow: When operator sets 'blkEna' in a CDC to true (or when automatic function freezes communications), the server should set Quality.detailQual.oldData to true.', htmlDescription='

TODO: finish transitions

  • (see oscillatory): questionable -> invalid
  • questionable -> good
  • invalid -> good

Somehow: When operator sets 'blkEna' in a CDC to true (or when automatic function freezes communications), the server should set Quality.detailQual.oldData to true.

'], _containingPackage=ConstructedDAs, _otherEndName=] +2024-09-07 12:38:48,524 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2102, uuid={048EE573-AFDD-4dd7-9AF5-11D2B0EC5B46}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='rangeC range validity detailQual +high-high questionable outOfRange +max +high-high good +hhLim +high good +hLim +normal good +lLim +low good +llLim +low-low good +min +low-low questionable outOfRange', htmlDescription='

rangeC range validity detailQual

high-high questionable outOfRange

max

high-high good

hhLim

high good

hLim

normal good

lLim

low good

llLim

low-low good

min

low-low questionable outOfRange

'], _containingPackage=ConstructedDAs, _otherEndName=] +2024-09-07 12:38:48,524 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2104, uuid={33A3CF9B-3587-46f7-ABE2-EC231CA8A590}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='[ server decides is invalid ]', htmlDescription='

[ server decides is invalid ]

'], _containingPackage=ConstructedDAs, _otherEndName=] +2024-09-07 12:38:48,524 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2105, uuid={4BC921B0-EB32-46bb-B58C-BABA12FB3919}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='[ server decides is questionable ]', htmlDescription='

[ server decides is questionable ]

'], _containingPackage=ConstructedDAs, _otherEndName=] +2024-09-07 12:38:48,524 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2106, uuid={59D32E9F-0F12-4294-8C09-111E6652D60B}, since=null, name=ConstructedDAs : Quality.validity, alias=, stereotype=, visibility=public, txtDescription='ConstructedDAs : Quality.validity', htmlDescription='

ConstructedDAs : Quality.validity

'], _containingPackage=ConstructedDAs, _otherEndName=] +2024-09-07 12:38:48,525 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2107, uuid={5CCAFF50-1F52-4703-A048-CF8E0D90B88F}, since=null, name=ConstructedDAs :Range configuration, alias=, stereotype=, visibility=public, txtDescription='ConstructedDAs : Range configuration', htmlDescription='

ConstructedDAs : Range configuration

'], _containingPackage=ConstructedDAs, _otherEndName=] +2024-09-07 12:38:48,525 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2108, uuid={7F553FDB-F3EA-473e-823B-CAEB77B786F5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=ConstructedDAs, _otherEndName=] +2024-09-07 12:38:48,525 [main] TRACE ClassBuilder - Class Quality (1 in package ConstructedDAs) +2024-09-07 12:38:48,525 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [, _containingClass=Quality, _objData=UmlObjectData [id=232, uuid={21B55DC7-E4EF-4080-AB01-30D0901B9429}, since=null, name=Quality.validity, alias=, stereotype=, visibility=public, txtDescription='This diagram shows how validity depends on detailQual. The state names parallel enumeration literals of ValidityKind.', htmlDescription='

This diagram shows how validity depends on detailQual. The state names parallel enumeration literals of ValidityKind.

'], _portrait=true, _kind=STATECHART] +2024-09-07 12:38:48,525 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=STATE_MACHINE, _isConnector=false, _objData=UmlObjectData [id=2081, uuid={CE37CFF6-FD41-4c3b-92FC-95B5B9B6346E}, since=null, name=validityStateMachine, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=Quality, _otherEndName=] +2024-09-07 12:38:48,525 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::Quality, _objData=UmlObjectData [id=4089, uuid={6B873BB6-307E-4f25-9992-6EB6CF12F6ED}, since=null, name=validity, alias=, stereotype=, visibility=public, txtDescription='Validity of the value, as condensed information for the client. In case this value is not 'good', the reasons may be found in the 'detailQual'. See statechart diagram 'Quality.validity'.', htmlDescription='

Validity of the value, as condensed information for the client. In case this value is not 'good', the reasons may be found in the 'detailQual'. See statechart diagram 'Quality.validity'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2086, _eaTypeName=ValidityKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,525 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::Quality, _objData=UmlObjectData [id=4090, uuid={F9945558-C141-4c08-8066-C29D603832D6}, since=null, name=detailQual, alias=, stereotype=, visibility=public, txtDescription='Describes reason in case 'validity' is not 'good'. See statechart diagram 'Quality.validity'.', htmlDescription='

Describes reason in case 'validity' is not 'good'. See statechart diagram 'Quality.validity'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2087, _eaTypeName=DetailQual, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,525 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::Quality, _objData=UmlObjectData [id=4091, uuid={5A199508-269E-4da4-9486-1CFDD6D76F69}, since=null, name=source, alias=, stereotype=, visibility=public, txtDescription='Defines the source of a value. +NOTE 1 Substitution may be done locally or via the communication services. In the second case, specific attributes with a FC=SV are used. +NOTE 2 There are various means to clear a substitution. As an example, a substitution that was done following an invalid condition may be cleared automatically if the invalid condition is cleared. However, this is a local issue and therefore not within the scope of this standard.', htmlDescription='

Defines the source of a value.

NOTE 1 Substitution may be done locally or via the communication services. In the second case, specific attributes with a FC=SV are used.

NOTE 2 There are various means to clear a substitution. As an example, a substitution that was done following an invalid condition may be cleared automatically if the invalid condition is cleared. However, this is a local issue and therefore not within the scope of this standard.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=process, _eaTypeId=2088, _eaTypeName=SourceKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,525 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::Quality, _objData=UmlObjectData [id=4092, uuid={AAF0A359-5525-42e5-AC60-220D2A34F946}, since=null, name=test, alias=, stereotype=, visibility=public, txtDescription='If true, the value is a test value and not to be used for operational purposes. The processing of the test quality in the client shall be as described in IEC 61850-7-4. This bit shall be completely independent from the other bits within the quality descriptor.', htmlDescription='

If true, the value is a test value and not to be used for operational purposes. The processing of the test quality in the client shall be as described in IEC 61850-7-4. This bit shall be completely independent from the other bits within the quality descriptor.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,525 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::Quality, _objData=UmlObjectData [id=4093, uuid={3CD5913A-B2E1-43bd-ABC3-943477516A2E}, since=null, name=operatorBlocked, alias=, stereotype=, visibility=public, txtDescription='If true, further update of the value has been blocked by an operator. The value shall be the information that was acquired before blocking. If this flag is set, then the 'detailQual.oldData' shall also be set. +The operator shall use the data attribute 'CDC.blkEna' to block the update of the value. +NOTE Both an operator as well as an automatic function may freeze communication updating as well as input updating. In both cases, 'detailQual.oldData' will be set. If the blocking is done by an operator, then this flag is set additionally, and an operator activity is required to clear the condition. +EXAMPLE An operator may freeze the update of an input, to save the old value before the auxiliary supply is switched off.', htmlDescription='

If true, further update of the value has been blocked by an operator. The value shall be the information that was acquired before blocking. If this flag is set, then the 'detailQual.oldData' shall also be set.

The operator shall use the data attribute 'CDC.blkEna' to block the update of the value.

NOTE Both an operator as well as an automatic function may freeze communication updating as well as input updating. In both cases, 'detailQual.oldData' will be set. If the blocking is done by an operator, then this flag is set additionally, and an operator activity is required to clear the condition.

EXAMPLE An operator may freeze the update of an input, to save the old value before the auxiliary supply is switched off.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,526 [main] DEBUG ClassBuilder - Adding Quality as subclass of PackedPrimitiveDA +2024-09-07 12:38:48,526 [main] TRACE ClassBuilder - read from EA: ConstructedDAs::Quality +2024-09-07 12:38:48,526 [main] TRACE ClassBuilder - Class ValidityKind (2 in package ConstructedDAs) +2024-09-07 12:38:48,526 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::ValidityKind, _objData=UmlObjectData [id=4094, uuid={030DE06F-529B-41d7-9127-03B3AEF8FE6F}, since=null, name=good, alias=, stereotype=enum, visibility=public, txtDescription='Supervision function has detected no abnormal condition of either the acquisition function or the information source.', htmlDescription='

Supervision function has detected no abnormal condition of either the acquisition function or the information source.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,527 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::ValidityKind, _objData=UmlObjectData [id=4095, uuid={BF716691-116B-41c2-A6DF-135F1A6CA348}, since=null, name=invalid, alias=, stereotype=enum, visibility=public, txtDescription='Supervision function has detected an abnormal condition of the acquisition function or the information source (missing or non-operating updating devices). The value shall not be defined under this condition. It shall be used to indicate to the client that the value may be incorrect and shall not be used. +EXAMPLE If an input unit detects an oscillation of one input it will mark the related information as invalid.', htmlDescription='

Supervision function has detected an abnormal condition of the acquisition function or the information source (missing or non-operating updating devices). The value shall not be defined under this condition. It shall be used to indicate to the client that the value may be incorrect and shall not be used.

EXAMPLE If an input unit detects an oscillation of one input it will mark the related information as invalid.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,527 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::ValidityKind, _objData=UmlObjectData [id=4096, uuid={2CF37216-7413-46f8-B44A-6FEADC4F0F74}, since=null, name=reserved, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,527 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::ValidityKind, _objData=UmlObjectData [id=4097, uuid={EFB07102-7C09-497e-8013-6656894679E1}, since=null, name=questionable, alias=, stereotype=enum, visibility=public, txtDescription='Supervision function has detected any abnormal behaviour. However, the value could still be valid. It is client's responsibility to determine whether the values should be used.', htmlDescription='

Supervision function has detected any abnormal behaviour. However, the value could still be valid. It is client's responsibility to determine whether the values should be used.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,527 [main] TRACE ClassBuilder - read from EA: ConstructedDAs::ValidityKind +2024-09-07 12:38:48,527 [main] TRACE ClassBuilder - Class DetailQual (3 in package ConstructedDAs) +2024-09-07 12:38:48,528 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4098, uuid={F718393A-BF8D-43d5-838D-8E98DDBD0E12}, since=null, name=overflow, alias=, stereotype=, visibility=public, txtDescription='If true, the value of the attribute to which the quality has been associated is beyond the capability of being represented properly (used for measurand information only). +EXAMPLE A measured value may exceed the range that may be represented by the selected data type, for example the data type is a 16-bit unsigned integer and the value exceeds 65 535.', htmlDescription='

If true, the value of the attribute to which the quality has been associated is beyond the capability of being represented properly (used for measurand information only).

EXAMPLE A measured value may exceed the range that may be represented by the selected data type, for example the data type is a 16-bit unsigned integer and the value exceeds 65 535.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,528 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4099, uuid={59AA133B-4EF6-45b2-8F72-65890F8CB3B3}, since=null, name=outOfRange, alias=, stereotype=, visibility=public, txtDescription='If true, the attribute to which the quality has been associated is beyond a predefined range of values. The server shall decide if validity shall be set to invalid or questionable (used for measurand information only). +EXAMPLE A measured value may exceed a predefined range, however the selected data type can still represent the value, for example the data type is a 16-bit unsigned integer, the predefined range is 0 to 40 000, if the value is between 40 001 and 65 535 it is considered to be out of range.', htmlDescription='

If true, the attribute to which the quality has been associated is beyond a predefined range of values. The server shall decide if validity shall be set to invalid or questionable (used for measurand information only).

EXAMPLE A measured value may exceed a predefined range, however the selected data type can still represent the value, for example the data type is a 16-bit unsigned integer, the predefined range is 0 to 40 000, if the value is between 40 001 and 65 535 it is considered to be out of range.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,528 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4100, uuid={11996C00-CB4B-4a28-8EE7-BEF71773138F}, since=null, name=badReference, alias=, stereotype=, visibility=public, txtDescription='If true, the value may not be a correct value due to a reference being out of calibration. The server shall decide if validity shall be set to invalid or questionable (used for measurand information and binary counter information only).', htmlDescription='

If true, the value may not be a correct value due to a reference being out of calibration. The server shall decide if validity shall be set to invalid or questionable (used for measurand information and binary counter information only).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,528 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4101, uuid={8BDDF6AD-167F-4b25-B87B-675BA127832A}, since=null, name=oscillatory, alias=, stereotype=, visibility=public, txtDescription='To prevent overloading of event driven communication channels, it is desirable to detect and suppress oscillating (fast changing) binary inputs. If a signal changes in a defined time (tosc) twice in the same direction (from 0 to 1 or from 1 to 0), then it shall be defined as an oscillation and this attribute shall be set to true. If a configured number of transient changes is detected, they shall be suppressed. In this time, the 'Quality.validity' shall be set to 'questionable'. If the signal is still in the oscillating state after the defined number of changes, the value shall be left in the state it was in when this flag was set. In this case, the 'Quality.validity' shall be changed from 'questionable' to 'invalid' and kept so as long as the signal is oscillating. +If the configuration is such that all transient changes should be suppressed, the 'Quality.validity' shall be set immediately to 'invalid' and this flag to true (used for status information only).', htmlDescription='

To prevent overloading of event driven communication channels, it is desirable to detect and suppress oscillating (fast changing) binary inputs. If a signal changes in a defined time (tosc) twice in the same direction (from 0 to 1 or from 1 to 0), then it shall be defined as an oscillation and this attribute shall be set to true. If a configured number of transient changes is detected, they shall be suppressed. In this time, the 'Quality.validity' shall be set to 'questionable'. If the signal is still in the oscillating state after the defined number of changes, the value shall be left in the state it was in when this flag was set. In this case, the 'Quality.validity' shall be changed from 'questionable' to 'invalid' and kept so as long as the signal is oscillating.

If the configuration is such that all transient changes should be suppressed, the 'Quality.validity' shall be set immediately to 'invalid' and this flag to true (used for status information only).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,530 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4102, uuid={3B8BF4EE-E8EF-4aff-A496-55A1F7D43008}, since=null, name=failure, alias=, stereotype=, visibility=public, txtDescription='If true, a supervision function has detected an internal or external failure.', htmlDescription='

If true, a supervision function has detected an internal or external failure.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,530 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4103, uuid={818F9F91-476A-49f8-86B4-58D7E97343BD}, since=null, name=oldData, alias=, stereotype=, visibility=public, txtDescription='If true, an update is not made during a specific time interval. The value may be an old value that may have changed in the meantime. This specific time interval may be defined by an allowed-age attribute. +NOTE "Fail silent" errors, where the equipment stops sending data, will cause setting this flag to true. In this case, the last received information was correct.', htmlDescription='

If true, an update is not made during a specific time interval. The value may be an old value that may have changed in the meantime. This specific time interval may be defined by an allowed-age attribute.

NOTE "Fail silent" errors, where the equipment stops sending data, will cause setting this flag to true. In this case, the last received information was correct.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,530 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4104, uuid={BD955C3B-2E26-40fa-ADBC-F1FD970D24FF}, since=null, name=inconsistent, alias=, stereotype=, visibility=public, txtDescription='If true, an evaluation function has detected an inconsistency.', htmlDescription='

If true, an evaluation function has detected an inconsistency.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,530 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4105, uuid={8936AB8B-A0A9-4132-817E-D2B7C850E919}, since=null, name=inaccurate, alias=, stereotype=, visibility=public, txtDescription='If true, the value does not meet the stated accuracy of the source. +EXAMPLE The measured value of power factor may be noisy (inaccurate) when the current is very small.', htmlDescription='

If true, the value does not meet the stated accuracy of the source.

EXAMPLE The measured value of power factor may be noisy (inaccurate) when the current is very small.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,530 [main] TRACE ClassBuilder - read from EA: ConstructedDAs::DetailQual +2024-09-07 12:38:48,530 [main] TRACE ClassBuilder - Class SourceKind (4 in package ConstructedDAs) +2024-09-07 12:38:48,530 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::SourceKind, _objData=UmlObjectData [id=4106, uuid={E89E2DD9-CE54-483c-AB72-C94BD9BAA4B4}, since=null, name=process, alias=, stereotype=enum, visibility=public, txtDescription='The value is provided by an input function from the process I/O or is calculated from some application function.', htmlDescription='

The value is provided by an input function from the process I/O or is calculated from some application function.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,530 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::SourceKind, _objData=UmlObjectData [id=4107, uuid={964EA014-4393-43b8-9C10-DDADF714D6C3}, since=null, name=substituted, alias=, stereotype=enum, visibility=public, txtDescription='The value is provided by an operator input or by an automatic source.', htmlDescription='

The value is provided by an operator input or by an automatic source.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,531 [main] TRACE ClassBuilder - read from EA: ConstructedDAs::SourceKind +2024-09-07 12:38:48,531 [main] TRACE ClassBuilder - Class AnalogueValue (5 in package ConstructedDAs) +2024-09-07 12:38:48,531 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::AnalogueValue, _objData=UmlObjectData [id=4108, uuid={22DBDBF4-0BD6-4ae9-83E7-28C1B98CD72A}, since=null, name=i, alias=, stereotype=, visibility=public, txtDescription='Integer representation of the measured value. The formula to convert between 'i' and the process value (pVal) shall be: pVal=('i'*'ScaledValueConfig.scaleFactor')+'ScaledValueConfig.offset'.', htmlDescription='

Integer representation of the measured value. The formula to convert between 'i' and the process value (pVal) shall be: pVal=('i'*'ScaledValueConfig.scaleFactor')+'ScaledValueConfig.offset'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1745, _eaTypeName=INT32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,531 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::AnalogueValue, _objData=UmlObjectData [id=4109, uuid={B5A81241-061A-410d-8E63-9847A2F26D4D}, since=null, name=f, alias=, stereotype=, visibility=public, txtDescription='Floating point representation of the measured value. The formula to convert between 'f' and the process value (pVal) shall be: pVal='f'*10'Unit.multiplier'.', htmlDescription='

Floating point representation of the measured value. The formula to convert between 'f' and the process value (pVal) shall be: pVal='f'*10'Unit.multiplier'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1741, _eaTypeName=FLOAT32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,531 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2152, uuid={0F0E174C-0CD4-499c-A6CF-A9F87D68899D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=AnalogueValue, _otherEndName=?] +2024-09-07 12:38:48,531 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2158, uuid={53CF3599-2538-412f-94D6-1B312A04978B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=AnalogueValue, _otherEndName=?] +2024-09-07 12:38:48,531 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2169, uuid={6BB80DFD-60FA-4bd1-8AC0-70CFB9AC73AF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=AnalogueValue, _otherEndName=?] +2024-09-07 12:38:48,531 [main] DEBUG ClassBuilder - Adding AnalogueValue as subclass of ComposedDA +2024-09-07 12:38:48,531 [main] TRACE ClassBuilder - read from EA: ConstructedDAs::AnalogueValue +2024-09-07 12:38:48,531 [main] TRACE ClassBuilder - Class RangeConfig (6 in package ConstructedDAs) +2024-09-07 12:38:48,532 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [, _containingClass=RangeConfig, _objData=UmlObjectData [id=235, uuid={6CB79C53-CB9F-4de4-804C-04A77C5B22A9}, since=null, name=Range configuration, alias=, stereotype=, visibility=public, txtDescription='This diagram illustrates relationships between range, range configuration and quality of measured process value.', htmlDescription='

This diagram illustrates relationships between range, range configuration and quality of measured process value.

'], _portrait=true, _kind=CUSTOM] +2024-09-07 12:38:48,532 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::RangeConfig, _objData=UmlObjectData [id=4112, uuid={2BFD6A66-6A28-44b9-BD6A-9BFF5FEEF286}, since=null, name=hhLim, alias=, stereotype=, visibility=public, txtDescription='Setting for 'CDC.range' transition between 'high' and 'high-high'.', htmlDescription='

Setting for 'CDC.range' transition between 'high' and 'high-high'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,532 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::RangeConfig, _objData=UmlObjectData [id=4113, uuid={8FE22512-90C7-4798-9E7E-7595B41EA770}, since=null, name=hLim, alias=, stereotype=, visibility=public, txtDescription='Setting for 'CDC.range' transition between 'normal' and 'high'.', htmlDescription='

Setting for 'CDC.range' transition between 'normal' and 'high'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,532 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::RangeConfig, _objData=UmlObjectData [id=4114, uuid={E4180E64-6824-4aa0-8D9F-A32F749903E0}, since=null, name=lLim, alias=, stereotype=, visibility=public, txtDescription='Setting for 'CDC.range' transition between 'normal' and 'low'.', htmlDescription='

Setting for 'CDC.range' transition between 'normal' and 'low'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,532 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::RangeConfig, _objData=UmlObjectData [id=4115, uuid={A928E883-FC18-4c21-8227-53F8B3A89A08}, since=null, name=llLim, alias=, stereotype=, visibility=public, txtDescription='Setting for 'CDC.range' transition between 'low' and 'low-low'.', htmlDescription='

Setting for 'CDC.range' transition between 'low' and 'low-low'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,532 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::RangeConfig, _objData=UmlObjectData [id=4116, uuid={FDC77E3A-4EF4-4ace-93FD-7CC6C14FB3D0}, since=null, name=min, alias=, stereotype=, visibility=public, txtDescription='The minimum process measurement for which 'AnalogueValue.[i,f]' is considered within process limits. If the value is lower, quality shall be set accordingly ('Quality.detailQual.outOfRange'=true => 'Quality.validity'='questionable'; see statechart diagram 'Quality.validity').', htmlDescription='

The minimum process measurement for which 'AnalogueValue.[i,f]' is considered within process limits. If the value is lower, quality shall be set accordingly ('Quality.detailQual.outOfRange'=true => 'Quality.validity'='questionable'; see statechart diagram 'Quality.validity').

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,532 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::RangeConfig, _objData=UmlObjectData [id=4117, uuid={470D1B89-7BB1-4e75-BEAE-A838976EFA5A}, since=null, name=max, alias=, stereotype=, visibility=public, txtDescription='The maximum process measurement for which 'AnalogueValue.[i,f]' is considered within process limits. If the value is higher, quality shall be set accordingly ('Quality.detailQual.outOfRange'=true => 'Quality.validity'='questionable'; see statechart diagram 'Quality.validity').', htmlDescription='

The maximum process measurement for which 'AnalogueValue.[i,f]' is considered within process limits. If the value is higher, quality shall be set accordingly ('Quality.detailQual.outOfRange'=true => 'Quality.validity'='questionable'; see statechart diagram 'Quality.validity').

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,532 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::RangeConfig, _objData=UmlObjectData [id=4118, uuid={EE10B700-EDF1-4e03-B234-D881D49750CC}, since=null, name=limDb, alias=, stereotype=, visibility=public, txtDescription='When present, the value used to introduce a hysteresis in the calculation of 'range'. When a high/low limit has been crossed, 'range' is immediately set to the higher/lower value. However, 'range' is only set back to the lower/higher value when the value of the high limit minus/low limit plut 'limDb' has been crossed. The value shall represent the percentage between 'max' and 'min' in units of 0.001 %.', htmlDescription='

When present, the value used to introduce a hysteresis in the calculation of 'range'. When a high/low limit has been crossed, 'range' is immediately set to the higher/lower value. However, 'range' is only set back to the lower/higher value when the value of the high limit minus/low limit plut 'limDb' has been crossed. The value shall represent the percentage between 'max' and 'min' in units of 0.001 %.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0...100000, _eaTypeId=1746, _eaTypeName=INT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,532 [main] DEBUG ClassBuilder - Adding RangeConfig as subclass of ComposedDA +2024-09-07 12:38:48,532 [main] TRACE ClassBuilder - read from EA: ConstructedDAs::RangeConfig +2024-09-07 12:38:48,532 [main] TRACE ClassBuilder - Class Unit (7 in package ConstructedDAs) +2024-09-07 12:38:48,533 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::Unit, _objData=UmlObjectData [id=4127, uuid={E11B7BFF-E809-4175-9618-B2A63F15871E}, since=null, name=SIUnit, alias=, stereotype=, visibility=public, txtDescription='SI unit of measure.', htmlDescription='

SI unit of measure.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2072, _eaTypeName=SIUnit, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,533 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::Unit, _objData=UmlObjectData [id=4128, uuid={0327BF79-19B2-4e38-AD4E-6944E32735D3}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='Unit multiplier.', htmlDescription='

Unit multiplier.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=none, _eaTypeId=2061, _eaTypeName=Multiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,533 [main] DEBUG ClassBuilder - Adding Unit as subclass of ComposedDA +2024-09-07 12:38:48,533 [main] TRACE ClassBuilder - read from EA: ConstructedDAs::Unit +2024-09-07 12:38:48,533 [main] TRACE ClassBuilder - Class Point (8 in package ConstructedDAs) +2024-09-07 12:38:48,533 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::Point, _objData=UmlObjectData [id=4131, uuid={FE6F09B0-454A-4c96-8FDD-76F86A4128A3}, since=null, name=xVal, alias=, stereotype=, visibility=public, txtDescription='X-axis value.', htmlDescription='

X-axis value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1741, _eaTypeName=FLOAT32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,533 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::Point, _objData=UmlObjectData [id=4132, uuid={77130ABC-BB1E-4259-96F0-AF62EF68F9CB}, since=null, name=yVal, alias=, stereotype=, visibility=public, txtDescription='Y-axis value.', htmlDescription='

Y-axis value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1741, _eaTypeName=FLOAT32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,533 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::Point, _objData=UmlObjectData [id=4133, uuid={1A9EA6E0-B105-4386-8B25-4F2F99670EE0}, since=null, name=zVal, alias=, stereotype=, visibility=public, txtDescription='Z-axis value.', htmlDescription='

Z-axis value.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1741, _eaTypeName=FLOAT32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,533 [main] DEBUG ClassBuilder - Adding Point as subclass of ComposedDA +2024-09-07 12:38:48,533 [main] TRACE ClassBuilder - read from EA: ConstructedDAs::Point +2024-09-07 12:38:48,534 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_3, _depth=2, _eaElementID=2075, _objData=UmlObjectData [id=117, uuid={49A06BEB-3924-4b2c-A29E-A5E992AFE35F}, since=null, name=ConstructedDAs, alias=Constructed attribute classes, stereotype=, visibility=public, txtDescription='Constructed attribute classes are defined for the use in common data classes (CDC) in Clause 7. +IEC 61850-7-1 provides an overview of all IEC 61850-7 documents (IEC 61850-7-2, IEC 61850-7-3, and IEC 61850-7-4). IEC 61850-7-1 also describes the basic notation used in IEC 61850-7-3 and the description of the relations between the IEC 61850-7 documents. +NOTE The common ACSI type 'TimeStamp' is specified in IEC 61850-7-2.', htmlDescription='

Constructed attribute classes are defined for the use in common data classes (CDC) in Clause 7.

IEC 61850-7-1 provides an overview of all IEC 61850-7 documents (IEC 61850-7-2, IEC 61850-7-3, and IEC 61850-7-4). IEC 61850-7-1 also describes the basic notation used in IEC 61850-7-3 and the description of the relations between the IEC 61850-7 documents.

NOTE The common ACSI type 'TimeStamp' is specified in IEC 61850-7-2.

'], _modelId=58, _selfDependent=false, 8_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2077, uuid={A2DB359E-D081-478e-8841-E4D73D4EE769}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- Complete the statechart Quality.validity.', htmlDescription='

TODO:

  • Complete the statechart Quality.validity.
'], _containingPackage=ConstructedDAs, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2078, uuid={2589FB5D-7AE6-4890-B8A2-4F3261625EAE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: finish transitions +- (see oscillatory): questionable -> invalid +- questionable -> good +- invalid -> good +Somehow: When operator sets 'blkEna' in a CDC to true (or when automatic function freezes communications), the server should set Quality.detailQual.oldData to true.', htmlDescription='

TODO: finish transitions

  • (see oscillatory): questionable -> invalid
  • questionable -> good
  • invalid -> good

Somehow: When operator sets 'blkEna' in a CDC to true (or when automatic function freezes communications), the server should set Quality.detailQual.oldData to true.

'], _containingPackage=ConstructedDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2102, uuid={048EE573-AFDD-4dd7-9AF5-11D2B0EC5B46}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='rangeC range validity detailQual +high-high questionable outOfRange +max +high-high good +hhLim +high good +hLim +normal good +lLim +low good +llLim +low-low good +min +low-low questionable outOfRange', htmlDescription='

rangeC range validity detailQual

high-high questionable outOfRange

max

high-high good

hhLim

high good

hLim

normal good

lLim

low good

llLim

low-low good

min

low-low questionable outOfRange

'], _containingPackage=ConstructedDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2104, uuid={33A3CF9B-3587-46f7-ABE2-EC231CA8A590}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='[ server decides is invalid ]', htmlDescription='

[ server decides is invalid ]

'], _containingPackage=ConstructedDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2105, uuid={4BC921B0-EB32-46bb-B58C-BABA12FB3919}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='[ server decides is questionable ]', htmlDescription='

[ server decides is questionable ]

'], _containingPackage=ConstructedDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2106, uuid={59D32E9F-0F12-4294-8C09-111E6652D60B}, since=null, name=ConstructedDAs : Quality.validity, alias=, stereotype=, visibility=public, txtDescription='ConstructedDAs : Quality.validity', htmlDescription='

ConstructedDAs : Quality.validity

'], _containingPackage=ConstructedDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2107, uuid={5CCAFF50-1F52-4703-A048-CF8E0D90B88F}, since=null, name=ConstructedDAs :Range configuration, alias=, stereotype=, visibility=public, txtDescription='ConstructedDAs : Range configuration', htmlDescription='

ConstructedDAs : Range configuration

'], _containingPackage=ConstructedDAs, _otherEndName=], SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2108, uuid={7F553FDB-F3EA-473e-823B-CAEB77B786F5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=ConstructedDAs, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=ConstructedDAs, _objData=UmlObjectData [id=233, uuid={464DD3CC-A65D-4fac-94C9-4A99ECC02510}, since=null, name=ConstructedDAs, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all constructed attribute classes with their meta-model superclasses.', htmlDescription='

This diagram shows all constructed attribute classes with their meta-model superclasses.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=4, _dependenciesAsTarget=1, _classes=8 +2024-09-07 12:38:48,534 [main] INFO PackageBuilder - processing package FCDAs (5) ... +2024-09-07 12:38:48,534 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=FCDAs, _objData=UmlObjectData [id=238, uuid={B97F330A-F926-4f40-9E70-74A8D9B4C7CD}, since=null, name=FCDAs, alias=, stereotype=, visibility=public, txtDescription='Shows meta-model types for functionally constrained DAs, and links to diagrams that group them per category (for easier model maintenance purposes only).', htmlDescription='

Shows meta-model types for functionally constrained DAs, and links to diagrams that group them per category (for easier model maintenance purposes only).

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,534 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_3::FCDAs, _objData=UmlObjectData [id=2941, uuid={B3EA1C0F-AF13-4b91-9725-55E231C1F103}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,534 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_3::FCDAs->IEC61850_7_3::ImplicitDAs, _objData=UmlObjectData [id=2945, uuid={FA78D59B-10C4-462d-BB8D-AF291F0DB4BC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,534 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_3::FCDAs->IEC61850_7_3::ConstructedDAs, _objData=UmlObjectData [id=2946, uuid={C39E7C1F-3EFB-476b-8296-6ED38A067033}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,534 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_3::FCDAs->IEC61850_7_2::BasicDAs, _objData=UmlObjectData [id=2947, uuid={34CA4A5E-1E27-47e9-BA6A-04938395F510}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,534 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_3::FCDAs->IEC61850_7_2::MetaModel, _objData=UmlObjectData [id=2948, uuid={2EB94D27-B372-4888-A920-88C823F08BBD}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,535 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2225, uuid={38462576-628F-455c-A4E1-CF71CEC5C013}, since=null, name=IEC61850 : DataModelExample, alias=, stereotype=, visibility=public, txtDescription='IEC61850 : DataModelExample', htmlDescription='

IEC61850 : DataModelExample

'], _containingPackage=FCDAs, _otherEndName=] +2024-09-07 12:38:48,535 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2226, uuid={6EB11409-AD95-49fc-9606-5F1D6C4F3CE4}, since=null, name=FCDAs :FCDAs-ST-OR, alias=, stereotype=, visibility=public, txtDescription='FCDAs : FCDAs-ST-OR', htmlDescription='

FCDAs : FCDAs-ST-OR

'], _containingPackage=FCDAs, _otherEndName=] +2024-09-07 12:38:48,535 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2227, uuid={8CFF212D-D163-4ed6-92FE-7CC414DB287E}, since=null, name=FCDAs :FCDAs-SV-BL, alias=, stereotype=, visibility=public, txtDescription='FCDAs : FCDAs-SV-BL', htmlDescription='

FCDAs : FCDAs-SV-BL

'], _containingPackage=FCDAs, _otherEndName=] +2024-09-07 12:38:48,535 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2228, uuid={AA244A47-7DD9-4915-9F09-4A0EC38AD1BB}, since=null, name=FCDAs :FCDAs-SP-SG-SE, alias=, stereotype=, visibility=public, txtDescription='FCDAs : FCDAs-SP-SG-SE', htmlDescription='

FCDAs : FCDAs-SP-SG-SE

'], _containingPackage=FCDAs, _otherEndName=] +2024-09-07 12:38:48,535 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2229, uuid={DE18AEAE-AFC9-40b0-B744-CD47FB2D193C}, since=null, name=FCDAs :FCDAs-MX, alias=, stereotype=, visibility=public, txtDescription='FCDAs : FCDAs-MX', htmlDescription='

FCDAs : FCDAs-MX

'], _containingPackage=FCDAs, _otherEndName=] +2024-09-07 12:38:48,536 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2230, uuid={F38238A8-E1FB-4d0d-8A6B-D9C28216CAB3}, since=null, name=FCDAs :FCDAs-CF-DC-EX, alias=, stereotype=, visibility=public, txtDescription='FCDAs : FCDAs-CF-DC-EX', htmlDescription='

FCDAs : FCDAs-CF-DC-EX

'], _containingPackage=FCDAs, _otherEndName=] +2024-09-07 12:38:48,536 [main] TRACE ClassBuilder - Class AnalogueValue_MX (3 in package FCDAs) +2024-09-07 12:38:48,536 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::AnalogueValue_MX, _objData=UmlObjectData [id=4148, uuid={FDD0542C-EDDF-4b7f-AF56-B928F6DD6505}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,536 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2159, uuid={F1E56107-55BC-4b64-8D96-C9D3A4FE1F57}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=AnalogueValue_MX, _otherEndName=?] +2024-09-07 12:38:48,536 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2171, uuid={310E7E62-BA83-4479-AC06-B8B54758BAFF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=AnalogueValue_MX, _otherEndName=?] +2024-09-07 12:38:48,536 [main] DEBUG ClassBuilder - Adding AnalogueValue_MX as subclass of FCDA_MX +2024-09-07 12:38:48,536 [main] TRACE ClassBuilder - read from EA: FCDAs::AnalogueValue_MX +2024-09-07 12:38:48,536 [main] TRACE ClassBuilder - Class AnalogueValue_MX_dchg (4 in package FCDAs) +2024-09-07 12:38:48,536 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::AnalogueValue_MX_dchg, _objData=UmlObjectData [id=4149, uuid={F527B9F4-F3F6-495e-820C-D82F97FAABF8}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,537 [main] DEBUG ClassBuilder - Adding AnalogueValue_MX_dchg as subclass of FCDA_MX_dchg +2024-09-07 12:38:48,537 [main] TRACE ClassBuilder - read from EA: FCDAs::AnalogueValue_MX_dchg +2024-09-07 12:38:48,537 [main] TRACE ClassBuilder - Class AnalogueValue_MX_dchg_dupd (5 in package FCDAs) +2024-09-07 12:38:48,537 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::AnalogueValue_MX_dchg_dupd, _objData=UmlObjectData [id=4150, uuid={35CFD056-5391-4884-AB18-91299F6FCBFB}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,537 [main] DEBUG ClassBuilder - Adding AnalogueValue_MX_dchg_dupd as subclass of FCDA_MX_dchg_dupd +2024-09-07 12:38:48,537 [main] TRACE ClassBuilder - read from EA: FCDAs::AnalogueValue_MX_dchg_dupd +2024-09-07 12:38:48,537 [main] TRACE ClassBuilder - Class BOOLEAN_BL (10 in package FCDAs) +2024-09-07 12:38:48,537 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::BOOLEAN_BL, _objData=UmlObjectData [id=4155, uuid={3695DD4C-AE46-467e-862D-F6B7D2805EE9}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,537 [main] DEBUG ClassBuilder - Adding BOOLEAN_BL as subclass of FCDA_BL +2024-09-07 12:38:48,537 [main] TRACE ClassBuilder - read from EA: FCDAs::BOOLEAN_BL +2024-09-07 12:38:48,537 [main] TRACE ClassBuilder - Class BOOLEAN_CF_dchg (11 in package FCDAs) +2024-09-07 12:38:48,538 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::BOOLEAN_CF_dchg, _objData=UmlObjectData [id=4156, uuid={D005BFC1-C9FF-4904-9176-3E49D541A4CE}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,538 [main] DEBUG ClassBuilder - Adding BOOLEAN_CF_dchg as subclass of FCDA_CF_dchg +2024-09-07 12:38:48,538 [main] TRACE ClassBuilder - read from EA: FCDAs::BOOLEAN_CF_dchg +2024-09-07 12:38:48,538 [main] TRACE ClassBuilder - Class BOOLEAN_MX_dchg (12 in package FCDAs) +2024-09-07 12:38:48,538 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::BOOLEAN_MX_dchg, _objData=UmlObjectData [id=4157, uuid={C48BB5A5-75F6-482b-B673-C2130F3A3343}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,538 [main] DEBUG ClassBuilder - Adding BOOLEAN_MX_dchg as subclass of FCDA_MX_dchg +2024-09-07 12:38:48,538 [main] TRACE ClassBuilder - read from EA: FCDAs::BOOLEAN_MX_dchg +2024-09-07 12:38:48,538 [main] TRACE ClassBuilder - Class BOOLEAN_OR_dchg (13 in package FCDAs) +2024-09-07 12:38:48,538 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::BOOLEAN_OR_dchg, _objData=UmlObjectData [id=4158, uuid={E52B552D-B1AD-48ee-8F84-581743CA0034}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,538 [main] DEBUG ClassBuilder - Adding BOOLEAN_OR_dchg as subclass of FCDA_OR_dchg +2024-09-07 12:38:48,538 [main] TRACE ClassBuilder - read from EA: FCDAs::BOOLEAN_OR_dchg +2024-09-07 12:38:48,538 [main] TRACE ClassBuilder - Class BOOLEAN_SE (14 in package FCDAs) +2024-09-07 12:38:48,539 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::BOOLEAN_SE, _objData=UmlObjectData [id=4159, uuid={EA1C486D-C490-4b0e-B0F8-803E519E584A}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,539 [main] DEBUG ClassBuilder - Adding BOOLEAN_SE as subclass of FCDA_SE +2024-09-07 12:38:48,539 [main] TRACE ClassBuilder - read from EA: FCDAs::BOOLEAN_SE +2024-09-07 12:38:48,539 [main] TRACE ClassBuilder - Class BOOLEAN_SG (15 in package FCDAs) +2024-09-07 12:38:48,540 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::BOOLEAN_SG, _objData=UmlObjectData [id=4160, uuid={F978D268-CA2C-4ff8-B7CD-CDD03C517BAE}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,540 [main] DEBUG ClassBuilder - Adding BOOLEAN_SG as subclass of FCDA_SG +2024-09-07 12:38:48,540 [main] TRACE ClassBuilder - read from EA: FCDAs::BOOLEAN_SG +2024-09-07 12:38:48,541 [main] TRACE ClassBuilder - Class BOOLEAN_SP_dchg (16 in package FCDAs) +2024-09-07 12:38:48,541 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::BOOLEAN_SP_dchg, _objData=UmlObjectData [id=4161, uuid={8DEC3BB4-1BED-4961-B836-457537D9227E}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,541 [main] DEBUG ClassBuilder - Adding BOOLEAN_SP_dchg as subclass of FCDA_SP_dchg +2024-09-07 12:38:48,541 [main] TRACE ClassBuilder - read from EA: FCDAs::BOOLEAN_SP_dchg +2024-09-07 12:38:48,541 [main] TRACE ClassBuilder - Class BOOLEAN_ST_dchg (17 in package FCDAs) +2024-09-07 12:38:48,541 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::BOOLEAN_ST_dchg, _objData=UmlObjectData [id=4162, uuid={7480B397-4199-4840-B073-D855605E4C7A}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,542 [main] DEBUG ClassBuilder - Adding BOOLEAN_ST_dchg as subclass of FCDA_ST_dchg +2024-09-07 12:38:48,542 [main] TRACE ClassBuilder - read from EA: FCDAs::BOOLEAN_ST_dchg +2024-09-07 12:38:48,542 [main] TRACE ClassBuilder - Class BOOLEAN_SV (18 in package FCDAs) +2024-09-07 12:38:48,542 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::BOOLEAN_SV, _objData=UmlObjectData [id=4163, uuid={13C32585-2DE2-4dad-8F00-5BDC2660E5D8}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,542 [main] DEBUG ClassBuilder - Adding BOOLEAN_SV as subclass of FCDA_SV +2024-09-07 12:38:48,542 [main] TRACE ClassBuilder - read from EA: FCDAs::BOOLEAN_SV +2024-09-07 12:38:48,543 [main] TRACE ClassBuilder - Class DpStatus_ST_dchg (30 in package FCDAs) +2024-09-07 12:38:48,543 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::DpStatus_ST_dchg, _objData=UmlObjectData [id=4175, uuid={6669EA33-E870-48c7-9A70-675DF65FCDE1}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1759, _eaTypeName=DpStatus, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,543 [main] DEBUG ClassBuilder - Adding DpStatus_ST_dchg as subclass of PackedEnumFCDA_SP_dchg +2024-09-07 12:38:48,543 [main] TRACE ClassBuilder - read from EA: FCDAs::DpStatus_ST_dchg +2024-09-07 12:38:48,543 [main] TRACE ClassBuilder - Class DpStatus_SV (31 in package FCDAs) +2024-09-07 12:38:48,543 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::DpStatus_SV, _objData=UmlObjectData [id=4176, uuid={0F2878FA-ABC8-4aab-91D7-41F3D0B45817}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1759, _eaTypeName=DpStatus, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,544 [main] DEBUG ClassBuilder - Adding DpStatus_SV as subclass of PackedEnumFCDA_SV +2024-09-07 12:38:48,544 [main] TRACE ClassBuilder - read from EA: FCDAs::DpStatus_SV +2024-09-07 12:38:48,544 [main] TRACE ClassBuilder - Class EnumDA_CF_dchg (32 in package FCDAs) +2024-09-07 12:38:48,544 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::EnumDA_CF_dchg, _objData=UmlObjectData [id=4177, uuid={AB3915C1-C27C-48ea-B3F9-A9FDE30FAEB0}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1855, _eaTypeName=EnumDA, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,544 [main] DEBUG ClassBuilder - Adding EnumDA_CF_dchg as subclass of EnumFCDA_CF_dchg +2024-09-07 12:38:48,544 [main] TRACE ClassBuilder - read from EA: FCDAs::EnumDA_CF_dchg +2024-09-07 12:38:48,544 [main] TRACE ClassBuilder - Class EnumDA_ST_dchg (38 in package FCDAs) +2024-09-07 12:38:48,544 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::EnumDA_ST_dchg, _objData=UmlObjectData [id=4181, uuid={FDBA0552-772A-4e56-B666-9B4EADE4572B}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1855, _eaTypeName=EnumDA, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,545 [main] DEBUG ClassBuilder - Adding EnumDA_ST_dchg as subclass of EnumFCDA_ST_dchg +2024-09-07 12:38:48,545 [main] TRACE ClassBuilder - read from EA: FCDAs::EnumDA_ST_dchg +2024-09-07 12:38:48,545 [main] TRACE ClassBuilder - Class EnumDA_ST_dchg_dupd (39 in package FCDAs) +2024-09-07 12:38:48,545 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::EnumDA_ST_dchg_dupd, _objData=UmlObjectData [id=4182, uuid={A26C4B75-BDBC-47d7-8F84-1AEB40536B37}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1855, _eaTypeName=EnumDA, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,545 [main] DEBUG ClassBuilder - Adding EnumDA_ST_dchg_dupd as subclass of EnumFCDA_ST_dchg_dupd +2024-09-07 12:38:48,545 [main] TRACE ClassBuilder - read from EA: FCDAs::EnumDA_ST_dchg_dupd +2024-09-07 12:38:48,545 [main] TRACE ClassBuilder - Class EnumDA_SV (40 in package FCDAs) +2024-09-07 12:38:48,545 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::EnumDA_SV, _objData=UmlObjectData [id=4183, uuid={85FBD660-4ECF-4fe6-A3CB-7CE93AD92682}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1855, _eaTypeName=EnumDA, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,545 [main] DEBUG ClassBuilder - Adding EnumDA_SV as subclass of EnumFCDA_SV +2024-09-07 12:38:48,546 [main] TRACE ClassBuilder - read from EA: FCDAs::EnumDA_SV +2024-09-07 12:38:48,546 [main] TRACE ClassBuilder - Class INT16U_CF (49 in package FCDAs) +2024-09-07 12:38:48,546 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::INT16U_CF, _objData=UmlObjectData [id=4192, uuid={D557D453-45C5-4562-97A4-DF8E6C3ABE03}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1743, _eaTypeName=INT16U, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,546 [main] DEBUG ClassBuilder - Adding INT16U_CF as subclass of FCDA_CF +2024-09-07 12:38:48,546 [main] TRACE ClassBuilder - read from EA: FCDAs::INT16U_CF +2024-09-07 12:38:48,546 [main] TRACE ClassBuilder - Class INT16U_CF_dchg (50 in package FCDAs) +2024-09-07 12:38:48,546 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::INT16U_CF_dchg, _objData=UmlObjectData [id=4193, uuid={CF5B7211-78ED-4a54-943A-4C6076784FAA}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1743, _eaTypeName=INT16U, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,548 [main] DEBUG ClassBuilder - Adding INT16U_CF_dchg as subclass of FCDA_CF_dchg +2024-09-07 12:38:48,548 [main] TRACE ClassBuilder - read from EA: FCDAs::INT16U_CF_dchg +2024-09-07 12:38:48,548 [main] TRACE ClassBuilder - Class INT32U_CF_dchg (55 in package FCDAs) +2024-09-07 12:38:48,548 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::INT32U_CF_dchg, _objData=UmlObjectData [id=4198, uuid={B6014F46-BB76-4b26-B95B-414DEBFE5627}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1746, _eaTypeName=INT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,548 [main] DEBUG ClassBuilder - Adding INT32U_CF_dchg as subclass of FCDA_CF_dchg +2024-09-07 12:38:48,548 [main] TRACE ClassBuilder - read from EA: FCDAs::INT32U_CF_dchg +2024-09-07 12:38:48,548 [main] TRACE ClassBuilder - Class INT32_CF_dchg (57 in package FCDAs) +2024-09-07 12:38:48,548 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::INT32_CF_dchg, _objData=UmlObjectData [id=4200, uuid={7A8322EF-35B6-45e2-B29B-24495242697D}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1745, _eaTypeName=INT32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,549 [main] DEBUG ClassBuilder - Adding INT32_CF_dchg as subclass of FCDA_CF_dchg +2024-09-07 12:38:48,549 [main] TRACE ClassBuilder - read from EA: FCDAs::INT32_CF_dchg +2024-09-07 12:38:48,549 [main] TRACE ClassBuilder - Class INT32_ST_dchg (61 in package FCDAs) +2024-09-07 12:38:48,549 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::INT32_ST_dchg, _objData=UmlObjectData [id=4204, uuid={BD683E05-ABAE-402d-B588-081B1F3BA2FB}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1745, _eaTypeName=INT32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,549 [main] DEBUG ClassBuilder - Adding INT32_ST_dchg as subclass of FCDA_ST_dchg +2024-09-07 12:38:48,549 [main] TRACE ClassBuilder - read from EA: FCDAs::INT32_ST_dchg +2024-09-07 12:38:48,549 [main] TRACE ClassBuilder - Class INT32_ST_dchg_dupd (62 in package FCDAs) +2024-09-07 12:38:48,549 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::INT32_ST_dchg_dupd, _objData=UmlObjectData [id=4205, uuid={84EA5D4B-9E4B-4a73-A3A5-9E8D42A60F3C}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1745, _eaTypeName=INT32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,550 [main] DEBUG ClassBuilder - Adding INT32_ST_dchg_dupd as subclass of FCDA_ST_dchg_dupd +2024-09-07 12:38:48,550 [main] TRACE ClassBuilder - read from EA: FCDAs::INT32_ST_dchg_dupd +2024-09-07 12:38:48,550 [main] TRACE ClassBuilder - Class PhaseAngleReference_CF_dchg (73 in package FCDAs) +2024-09-07 12:38:48,550 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::PhaseAngleReference_CF_dchg, _objData=UmlObjectData [id=4216, uuid={7B9C230D-AF50-4613-AFD8-CA5D41088526}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2065, _eaTypeName=PhaseAngleReference, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,550 [main] DEBUG ClassBuilder - Adding PhaseAngleReference_CF_dchg as subclass of EnumFCDA_CF_dchg +2024-09-07 12:38:48,550 [main] TRACE ClassBuilder - read from EA: FCDAs::PhaseAngleReference_CF_dchg +2024-09-07 12:38:48,550 [main] TRACE ClassBuilder - Class PhaseFaultDirection_ST_dchg (74 in package FCDAs) +2024-09-07 12:38:48,550 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::PhaseFaultDirection_ST_dchg, _objData=UmlObjectData [id=4217, uuid={FEA43715-0A9A-4812-A093-3FAD2A6B464D}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2066, _eaTypeName=PhaseFaultDirection, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,551 [main] DEBUG ClassBuilder - Adding PhaseFaultDirection_ST_dchg as subclass of EnumFCDA_ST_dchg +2024-09-07 12:38:48,551 [main] TRACE ClassBuilder - read from EA: FCDAs::PhaseFaultDirection_ST_dchg +2024-09-07 12:38:48,551 [main] TRACE ClassBuilder - Class Point_DC (76 in package FCDAs) +2024-09-07 12:38:48,551 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::Point_DC, _objData=UmlObjectData [id=4219, uuid={EFCD6ECB-36A0-4997-82B8-301C6C666369}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2098, _eaTypeName=Point, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,551 [main] DEBUG ClassBuilder - Adding Point_DC as subclass of FCDA_DC +2024-09-07 12:38:48,551 [main] TRACE ClassBuilder - read from EA: FCDAs::Point_DC +2024-09-07 12:38:48,551 [main] TRACE ClassBuilder - Class Point_SE (77 in package FCDAs) +2024-09-07 12:38:48,551 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::Point_SE, _objData=UmlObjectData [id=4220, uuid={C756E7B6-1F5F-4ead-B882-CE7EDB83001D}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2098, _eaTypeName=Point, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,552 [main] DEBUG ClassBuilder - Adding Point_SE as subclass of FCDA_SE +2024-09-07 12:38:48,552 [main] TRACE ClassBuilder - read from EA: FCDAs::Point_SE +2024-09-07 12:38:48,552 [main] TRACE ClassBuilder - Class Point_SG (78 in package FCDAs) +2024-09-07 12:38:48,552 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::Point_SG, _objData=UmlObjectData [id=4221, uuid={871B23C7-8CF2-43a0-A9FE-4627CB0BFA2D}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2098, _eaTypeName=Point, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,552 [main] DEBUG ClassBuilder - Adding Point_SG as subclass of FCDA_SG +2024-09-07 12:38:48,552 [main] TRACE ClassBuilder - read from EA: FCDAs::Point_SG +2024-09-07 12:38:48,552 [main] TRACE ClassBuilder - Class Point_SP (79 in package FCDAs) +2024-09-07 12:38:48,552 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::Point_SP, _objData=UmlObjectData [id=4222, uuid={A9FC2C2B-E6E7-4210-80D8-B786506D9BCF}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2098, _eaTypeName=Point, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,553 [main] DEBUG ClassBuilder - Adding Point_SP as subclass of FCDA_SP +2024-09-07 12:38:48,553 [main] TRACE ClassBuilder - read from EA: FCDAs::Point_SP +2024-09-07 12:38:48,553 [main] TRACE ClassBuilder - Class Quality_MX_qchg (81 in package FCDAs) +2024-09-07 12:38:48,553 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::Quality_MX_qchg, _objData=UmlObjectData [id=4224, uuid={909716F1-245A-42ae-9D75-E906E4300337}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2080, _eaTypeName=Quality, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,553 [main] DEBUG ClassBuilder - Adding Quality_MX_qchg as subclass of FCDA_MX_qchg +2024-09-07 12:38:48,553 [main] TRACE ClassBuilder - read from EA: FCDAs::Quality_MX_qchg +2024-09-07 12:38:48,553 [main] TRACE ClassBuilder - Class Quality_ST_qchg (82 in package FCDAs) +2024-09-07 12:38:48,553 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::Quality_ST_qchg, _objData=UmlObjectData [id=4225, uuid={63B2543A-C5CB-4e42-AE3C-D89A5D6092F8}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2080, _eaTypeName=Quality, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,554 [main] DEBUG ClassBuilder - Adding Quality_ST_qchg as subclass of FCDA_ST_qchg +2024-09-07 12:38:48,554 [main] TRACE ClassBuilder - read from EA: FCDAs::Quality_ST_qchg +2024-09-07 12:38:48,554 [main] TRACE ClassBuilder - Class Quality_SV (83 in package FCDAs) +2024-09-07 12:38:48,554 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::Quality_SV, _objData=UmlObjectData [id=4226, uuid={25019ADF-C815-49c4-A33A-932B7EC41FD5}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2080, _eaTypeName=Quality, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,554 [main] DEBUG ClassBuilder - Adding Quality_SV as subclass of FCDA_SV +2024-09-07 12:38:48,554 [main] TRACE ClassBuilder - read from EA: FCDAs::Quality_SV +2024-09-07 12:38:48,554 [main] TRACE ClassBuilder - Class RangeConfig_CF_dchg (84 in package FCDAs) +2024-09-07 12:38:48,554 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::RangeConfig_CF_dchg, _objData=UmlObjectData [id=4227, uuid={7DC0C70D-A279-420a-A4C9-8EC142118EE0}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2091, _eaTypeName=RangeConfig, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,555 [main] DEBUG ClassBuilder - Adding RangeConfig_CF_dchg as subclass of FCDA_CF_dchg +2024-09-07 12:38:48,555 [main] TRACE ClassBuilder - read from EA: FCDAs::RangeConfig_CF_dchg +2024-09-07 12:38:48,555 [main] TRACE ClassBuilder - Class TimeStamp_ST (96 in package FCDAs) +2024-09-07 12:38:48,555 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::TimeStamp_ST, _objData=UmlObjectData [id=4239, uuid={F793BE16-86C2-4d94-9076-25682F5C5800}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1756, _eaTypeName=TimeStamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,555 [main] DEBUG ClassBuilder - Adding TimeStamp_ST as subclass of FCDA_ST +2024-09-07 12:38:48,555 [main] TRACE ClassBuilder - read from EA: FCDAs::TimeStamp_ST +2024-09-07 12:38:48,555 [main] TRACE ClassBuilder - Class UNICODE_STRING255_DC (97 in package FCDAs) +2024-09-07 12:38:48,555 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::UNICODE_STRING255_DC, _objData=UmlObjectData [id=4240, uuid={6753F868-EDDC-4b85-BB22-F0505BC5964F}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1751, _eaTypeName=UNICODE_STRING255, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,556 [main] DEBUG ClassBuilder - Adding UNICODE_STRING255_DC as subclass of FCDA_DC +2024-09-07 12:38:48,556 [main] TRACE ClassBuilder - read from EA: FCDAs::UNICODE_STRING255_DC +2024-09-07 12:38:48,556 [main] TRACE ClassBuilder - Class VISIBLE_STRING255_EX (107 in package FCDAs) +2024-09-07 12:38:48,556 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::VISIBLE_STRING255_EX, _objData=UmlObjectData [id=4250, uuid={27C9FF27-9CA7-4829-BDDC-00EC8B17AA1F}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1752, _eaTypeName=VISIBLE_STRING255, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,556 [main] DEBUG ClassBuilder - Adding VISIBLE_STRING255_EX as subclass of FCDA_EX +2024-09-07 12:38:48,556 [main] TRACE ClassBuilder - read from EA: FCDAs::VISIBLE_STRING255_EX +2024-09-07 12:38:48,556 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_3, _depth=2, _eaElementID=2112, _objData=UmlObjectData [id=118, uuid={D3FD84BB-3702-4f8a-896F-5CA8D1A0B5DB}, since=null, name=FCDAs, alias=Functionally constrained data attributes, stereotype=, visibility=public, txtDescription='Contains functionally constrained DAs, used as types for attributes of CDCs. They consist of combinations of DAs with functional constraints and trigger options (where applicable). These types "shield" CDCs and LNs from all the complexity of the IEC61850 data type system.', htmlDescription='

Contains functionally constrained DAs, used as types for attributes of CDCs. They consist of combinations of DAs with functional constraints and trigger options (where applicable). These types "shield" CDCs and LNs from all the complexity of the IEC61850 data type system.

'], _modelId=58, _selfDependent=false, 6_skippedEaItems=[SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2225, uuid={38462576-628F-455c-A4E1-CF71CEC5C013}, since=null, name=IEC61850 : DataModelExample, alias=, stereotype=, visibility=public, txtDescription='IEC61850 : DataModelExample', htmlDescription='

IEC61850 : DataModelExample

'], _containingPackage=FCDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2226, uuid={6EB11409-AD95-49fc-9606-5F1D6C4F3CE4}, since=null, name=FCDAs :FCDAs-ST-OR, alias=, stereotype=, visibility=public, txtDescription='FCDAs : FCDAs-ST-OR', htmlDescription='

FCDAs : FCDAs-ST-OR

'], _containingPackage=FCDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2227, uuid={8CFF212D-D163-4ed6-92FE-7CC414DB287E}, since=null, name=FCDAs :FCDAs-SV-BL, alias=, stereotype=, visibility=public, txtDescription='FCDAs : FCDAs-SV-BL', htmlDescription='

FCDAs : FCDAs-SV-BL

'], _containingPackage=FCDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2228, uuid={AA244A47-7DD9-4915-9F09-4A0EC38AD1BB}, since=null, name=FCDAs :FCDAs-SP-SG-SE, alias=, stereotype=, visibility=public, txtDescription='FCDAs : FCDAs-SP-SG-SE', htmlDescription='

FCDAs : FCDAs-SP-SG-SE

'], _containingPackage=FCDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2229, uuid={DE18AEAE-AFC9-40b0-B744-CD47FB2D193C}, since=null, name=FCDAs :FCDAs-MX, alias=, stereotype=, visibility=public, txtDescription='FCDAs : FCDAs-MX', htmlDescription='

FCDAs : FCDAs-MX

'], _containingPackage=FCDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2230, uuid={F38238A8-E1FB-4d0d-8A6B-D9C28216CAB3}, since=null, name=FCDAs :FCDAs-CF-DC-EX, alias=, stereotype=, visibility=public, txtDescription='FCDAs : FCDAs-CF-DC-EX', htmlDescription='

FCDAs : FCDAs-CF-DC-EX

'], _containingPackage=FCDAs, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=FCDAs, _objData=UmlObjectData [id=238, uuid={B97F330A-F926-4f40-9E70-74A8D9B4C7CD}, since=null, name=FCDAs, alias=, stereotype=, visibility=public, txtDescription='Shows meta-model types for functionally constrained DAs, and links to diagrams that group them per category (for easier model maintenance purposes only).', htmlDescription='

Shows meta-model types for functionally constrained DAs, and links to diagrams that group them per category (for easier model maintenance purposes only).

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=4, _dependenciesAsTarget=1, _classes=37 +2024-09-07 12:38:48,557 [main] INFO PackageBuilder - processing package CommonDataClasses (6) ... +2024-09-07 12:38:48,557 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=CommonDataClasses, _objData=UmlObjectData [id=244, uuid={9116C46B-DD92-40ff-9928-FB3E309093AC}, since=null, name=CommonDataClasses, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all the common data class groups, with their contents. +Classes displayed in italic and ending with "CDC" are abstract common data classes that allow to avoid duplication in definition of attributes used by multiple concrete common data classes. Abstract common data classes are never instantiated; Their attributes are inheritied by concrete common data classes which are instantiable.', htmlDescription='

This diagram shows all the common data class groups, with their contents.

Classes displayed in italic and ending with "CDC" are abstract common data classes that allow to avoid duplication in definition of attributes used by multiple concrete common data classes. Abstract common data classes are never instantiated; Their attributes are inheritied by concrete common data classes which are instantiable.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,557 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=CommonDataClasses, _objData=UmlObjectData [id=245, uuid={31D2AD7A-7057-4e53-9C03-88B813B80849}, since=null, name=CDCRelationToACSI, alias=, stereotype=, visibility=public, txtDescription='All common data classes defined in this document inherit their structure from the abstract CDC class defined in IEC 61850-7-2, or more precisely, from one of its abstract subclasses (PrimitiveCDC or ComposedCDC). Common data classes (CDC-s) are used as types for data objects of logical nodes, and are composed of data attributes, which are of type FCDA (functionally constrained data attribute), and some are CDCs themselves. The generic structure of common data classes defined in IEC61850-7-2 comprises the attributes (e.g., name and reference, functional constraints and trigger options), and the services depending on a functional constraint. Currently, they are all modelled with operations (services). +IEC 61850-7-3 adds concrete data attributes, starting with common ones defined in abstract classes BasePrimitiveCDC and BaseComposedCDC, in order to complete the definition of concrete common data classes. Having this kind of definition at one place avoids error-prone repeating of these common attributes within the definition of every concrete common data class. +The diagram shows also the attributes per type of common data class defined in this document. Optional attributes have multiplicity [0..1]. Some common data classes define conditions on one or more of their attributes. In this diagram, this is the case for both BaseComposedCDC and BasePrimitiveCDC, with conditions "AC_DLNDA_M" and "AC_DLN_M"; The definition of condition is available for each data object involved in the condition and refers to Presence conditions introduced in IEC61850-7-3, Clause 5.', htmlDescription='

All common data classes defined in this document inherit their structure from the abstract CDC class defined in IEC 61850-7-2, or more precisely, from one of its abstract subclasses (PrimitiveCDC or ComposedCDC). Common data classes (CDC-s) are used as types for data objects of logical nodes, and are composed of data attributes, which are of type FCDA (functionally constrained data attribute), and some are CDCs themselves. The generic structure of common data classes defined in IEC61850-7-2 comprises the attributes (e.g., name and reference, functional constraints and trigger options), and the services depending on a functional constraint. Currently, they are all modelled with operations (services).

IEC 61850-7-3 adds concrete data attributes, starting with common ones defined in abstract classes BasePrimitiveCDC and BaseComposedCDC, in order to complete the definition of concrete common data classes. Having this kind of definition at one place avoids error-prone repeating of these common attributes within the definition of every concrete common data class.

The diagram shows also the attributes per type of common data class defined in this document. Optional attributes have multiplicity [0..1]. Some common data classes define conditions on one or more of their attributes. In this diagram, this is the case for both BaseComposedCDC and BasePrimitiveCDC, with conditions "AC_DLNDA_M" and "AC_DLN_M"; The definition of condition is available for each data object involved in the condition and refers to Presence conditions introduced in IEC61850-7-3, Clause 5.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,558 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_3::CommonDataClasses, _objData=UmlObjectData [id=2550, uuid={66DD71D8-83CD-4fb8-A5D8-44AE4E4C3795}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,558 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_3::CommonDataClasses, _objData=UmlObjectData [id=2557, uuid={95185C57-90F7-4989-93BB-36A01651B273}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,558 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_3::CommonDataClasses->IEC61850_7_2::MetaModel, _objData=UmlObjectData [id=2940, uuid={E5F4FF55-D88D-4216-BB8C-AFDA680AADE9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,558 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_3::CommonDataClasses->IEC61850_7_3::FCDAs, _objData=UmlObjectData [id=2941, uuid={B3EA1C0F-AF13-4b91-9725-55E231C1F103}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,558 [main] DEBUG PackageBuilder - Updated target of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::CDCServiceTracking->IEC61850_7_3::CommonDataClasses, _objData=UmlObjectData [id=3105, uuid={1ACFCE23-05F0-4f6f-A7FF-F1999DF5DEBB}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,559 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2239, uuid={264C9AAE-B7F6-46b0-8EEE-F73431C6AD63}, since=null, name=CommonDataClasses : Concept of substitution, alias=, stereotype=, visibility=public, txtDescription='SubstitutionCDC : Concept of substitution', htmlDescription='

SubstitutionCDC : Concept of substitution

'], _containingPackage=CommonDataClasses, _otherEndName=] +2024-09-07 12:38:48,559 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2241, uuid={AD3492F7-906E-41fa-A99E-09F725CB2769}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=CommonDataClasses, _otherEndName=] +2024-09-07 12:38:48,559 [main] TRACE ClassBuilder - Class BasePrimitiveCDC (1 in package CommonDataClasses) +2024-09-07 12:38:48,560 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CommonDataClasses::BasePrimitiveCDC, _objData=UmlObjectData [id=4259, uuid={70157B11-247A-45cc-805C-2311A2402464}, since=null, name=dU, alias=, stereotype=, visibility=public, txtDescription='Textual description of the data using unicode characters. In case of LPL, the description refers to the logical node.', htmlDescription='

Textual description of the data using unicode characters. In case of LPL, the description refers to the logical node.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2207, _eaTypeName=UNICODE_STRING255_DC, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,560 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CommonDataClasses::BasePrimitiveCDC, _objData=UmlObjectData [id=4260, uuid={CB9D22B8-9916-44d7-AB74-A7E8767612D1}, since=null, name=cdcNs, alias=, stereotype=, visibility=public, txtDescription='Common data class name space. Scope of the standard specified with the attribute is CDC definition. For details see IEC 61850-7-1.', htmlDescription='

Common data class name space. Scope of the standard specified with the attribute is CDC definition. For details see IEC 61850-7-1.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2217, _eaTypeName=VISIBLE_STRING255_EX, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,561 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2163, uuid={A6D40A7D-0B29-4624-B705-175D0AA64477}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=BasePrimitiveCDC, _otherEndName=?] +2024-09-07 12:38:48,561 [main] DEBUG ClassBuilder - Adding BasePrimitiveCDC as subclass of PrimitiveCDC +2024-09-07 12:38:48,561 [main] DEBUG ClassBuilder - Adding BasePrimitiveCDC as superclass of CST +2024-09-07 12:38:48,561 [main] TRACE ClassBuilder - read from EA: CommonDataClasses::BasePrimitiveCDC +2024-09-07 12:38:48,561 [main] TRACE ClassBuilder - Class BaseComposedCDC (2 in package CommonDataClasses) +2024-09-07 12:38:48,562 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CommonDataClasses::BaseComposedCDC, _objData=UmlObjectData [id=4264, uuid={DA02A7F1-6B04-48c6-9571-CD453B3D1CED}, since=null, name=dU, alias=, stereotype=, visibility=public, txtDescription='See 'BasePrimitiveCDC.dU'.', htmlDescription='

See 'BasePrimitiveCDC.dU'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2207, _eaTypeName=UNICODE_STRING255_DC, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,562 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CommonDataClasses::BaseComposedCDC, _objData=UmlObjectData [id=4265, uuid={E299B631-8163-4dbd-B5B7-4C83B2303E19}, since=null, name=cdcNs, alias=, stereotype=, visibility=public, txtDescription='See 'BasePrimitiveCDC.cdcNs'.', htmlDescription='

See 'BasePrimitiveCDC.cdcNs'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2217, _eaTypeName=VISIBLE_STRING255_EX, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,562 [main] DEBUG ClassBuilder - Adding BaseComposedCDC as subclass of ComposedCDC +2024-09-07 12:38:48,562 [main] TRACE ClassBuilder - read from EA: CommonDataClasses::BaseComposedCDC +2024-09-07 12:38:48,562 [main] TRACE ClassBuilder - Class SubstitutionCDC (3 in package CommonDataClasses) +2024-09-07 12:38:48,563 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [, _containingClass=SubstitutionCDC, _objData=UmlObjectData [id=246, uuid={314D3B8E-96FD-4400-8A62-2BE1FD745BBA}, since=null, name=Concept of substitution, alias=, stereotype=, visibility=public, txtDescription='This diagram illustrates the concept of substitution. Usually, input from the process or the result of the calculation from a function provides the value of a DataAttribute. In that case, 'CDC.q.source'='process'. In case of substitution, the value of a DataAttribute may be provided by an operator making use of a client, and in that case 'CDC.q.source'='substituted'. This selection of the source of the value (substitution value or process value) shall be controlled by the service SetDataValue ('SubstitutionCDC.subEna'=true) to substitute or SetDataValue ('SubstitutionCDC.subEna'=false) to unsubstitute. The service SetDataValue shall also be used to set the substituted value ('CDC.subVal'=value-for-substitution). There may be cases where a local automatic function disables substitution, for example, if blocking of information exchange is disabled or communication is no longer interrupted. +It is the responsibility of the client application, in particular in the case of multiple attributes to be substituted, to set all relevant substitution values ('{SPS,DPS,INS,ENS,SPC,DPC,INC,ENC}.subVal', 'MV.subMag', 'CMV.subCVal', 'SubstitutionCDC.subQ', 'SubstitutionCDC.subID') before enabling substitution ('SubstitutionCDC.subEna'=true). While substitution is enabled, changing of all substitution-related atttibutes is allowed but it is the responsibility of the implementation to avoid inconsistent transient value combination.', htmlDescription='

This diagram illustrates the concept of substitution. Usually, input from the process or the result of the calculation from a function provides the value of a DataAttribute. In that case, 'CDC.q.source'='process'. In case of substitution, the value of a DataAttribute may be provided by an operator making use of a client, and in that case 'CDC.q.source'='substituted'. This selection of the source of the value (substitution value or process value) shall be controlled by the service SetDataValue ('SubstitutionCDC.subEna'=true) to substitute or SetDataValue ('SubstitutionCDC.subEna'=false) to unsubstitute. The service SetDataValue shall also be used to set the substituted value ('CDC.subVal'=value-for-substitution). There may be cases where a local automatic function disables substitution, for example, if blocking of information exchange is disabled or communication is no longer interrupted.

It is the responsibility of the client application, in particular in the case of multiple attributes to be substituted, to set all relevant substitution values ('{SPS,DPS,INS,ENS,SPC,DPC,INC,ENC}.subVal', 'MV.subMag', 'CMV.subCVal', 'SubstitutionCDC.subQ', 'SubstitutionCDC.subID') before enabling substitution ('SubstitutionCDC.subEna'=true). While substitution is enabled, changing of all substitution-related atttibutes is allowed but it is the responsibility of the implementation to avoid inconsistent transient value combination.

'], _portrait=true, _kind=CUSTOM] +2024-09-07 12:38:48,563 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2237, uuid={7785102C-64D8-4109-AAE2-DB0C7732A6F0}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=SubstitutionCDC, _otherEndName=] +2024-09-07 12:38:48,563 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CommonDataClasses::SubstitutionCDC, _objData=UmlObjectData [id=4268, uuid={079F2530-74C1-408f-90FE-5292130BB10D}, since=null, name=subEna, alias=, stereotype=, visibility=public, txtDescription='Used to enable and disable substitution. If 'subEna'=true, the main data value and quality shall always be set to the same value as the attributes used to store the substitution data value and quality, as follows: +- for SPS, DPS, INS, ENS, SPC, DPC, INC, ENC: 'stVal' to 'subVal', 'q' to 'subQ'; +- for MV: 'instMag' to 'subMag', 'q' to 'subQ'; +- for CMV: 'instCVal' to 'subCVal', 'q' to 'subQ'; +- for BSC, ISC: 'valWTr' to 'subVal, 'q' to 'subQ'; and, +- for APC, BAC: 'mxVal' to 'subVal; 'q' to 'subQ'. +Otherwise, the data value shall be based on the process value.', htmlDescription='

Used to enable and disable substitution. If 'subEna'=true, the main data value and quality shall always be set to the same value as the attributes used to store the substitution data value and quality, as follows:

  • for SPS, DPS, INS, ENS, SPC, DPC, INC, ENC: 'stVal' to 'subVal', 'q' to 'subQ';
  • for MV: 'instMag' to 'subMag', 'q' to 'subQ';
  • for CMV: 'instCVal' to 'subCVal', 'q' to 'subQ';
  • for BSC, ISC: 'valWTr' to 'subVal, 'q' to 'subQ'; and,
  • for APC, BAC: 'mxVal' to 'subVal; 'q' to 'subQ'.

Otherwise, the data value shall be based on the process value.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2130, _eaTypeName=BOOLEAN_SV, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,563 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CommonDataClasses::SubstitutionCDC, _objData=UmlObjectData [id=4269, uuid={CC8123A6-0C41-47f6-B66F-FCB538FAC8C5}, since=null, name=subQ, alias=, stereotype=, visibility=public, txtDescription='Value used to substitute 'q'.', htmlDescription='

Value used to substitute 'q'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2193, _eaTypeName=Quality_SV, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,563 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CommonDataClasses::SubstitutionCDC, _objData=UmlObjectData [id=4271, uuid={D0484592-24B0-4f23-BBA1-47AB63EDEB24}, since=null, name=blkEna, alias=, stereotype=, visibility=public, txtDescription='If true, 'q.operatorBlocked'=true, and the process value is no longer updated.', htmlDescription='

If true, 'q.operatorBlocked'=true, and the process value is no longer updated.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2122, _eaTypeName=BOOLEAN_BL, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,563 [main] DEBUG ClassBuilder - Adding SubstitutionCDC as subclass of BasePrimitiveCDC +2024-09-07 12:38:48,563 [main] TRACE ClassBuilder - read from EA: CommonDataClasses::SubstitutionCDC +2024-09-07 12:38:48,564 [main] INFO PackageBuilder - processing package CDCStatusInfo (3) ... +2024-09-07 12:38:48,564 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=CDCStatusInfo, _objData=UmlObjectData [id=248, uuid={8E8D0A5B-4D29-400f-A3AF-1184FB57CC93}, since=null, name=CDCStatusInfo, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all status information CDCs defined in the standard with supertypes that factor their common attributes.', htmlDescription='

This diagram shows all status information CDCs defined in the standard with supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,565 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2259, uuid={58471C21-0D37-4d5e-B74F-BD101D8729FC}, since=null, name=CDCStatusInfo : Two-dimensional histogram, alias=, stereotype=, visibility=public, txtDescription='CDCStatusInfo : Two-dimensional histogram', htmlDescription='

CDCStatusInfo : Two-dimensional histogram

'], _containingPackage=CDCStatusInfo, _otherEndName=] +2024-09-07 12:38:48,565 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2260, uuid={698239AD-7E8C-42c8-A1EB-0DBE752F57EC}, since=null, name=CDCStatusInfo : One-dimensional histogram, alias=, stereotype=, visibility=public, txtDescription='CDCStatusInfo : One-dimensional histogram', htmlDescription='

CDCStatusInfo : One-dimensional histogram

'], _containingPackage=CDCStatusInfo, _otherEndName=] +2024-09-07 12:38:48,565 [main] TRACE ClassBuilder - Class DPS (1 in package CDCStatusInfo) +2024-09-07 12:38:48,565 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::DPS, _objData=UmlObjectData [id=4276, uuid={5BAF192B-559A-4c20-9FF4-15FDE99E17C8}, since=null, name=stVal, alias=, stereotype=, visibility=public, txtDescription='Status data value.', htmlDescription='

Status data value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2142, _eaTypeName=DpStatus_ST_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,565 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::DPS, _objData=UmlObjectData [id=4277, uuid={4442F743-451D-4ac2-8362-F2C586E6ACFC}, since=null, name=q, alias=, stereotype=, visibility=public, txtDescription='Quality of the data value 'stVal'.', htmlDescription='

Quality of the data value 'stVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2192, _eaTypeName=Quality_ST_qchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,565 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::DPS, _objData=UmlObjectData [id=4278, uuid={18394E45-54E3-4a63-85BB-63611B632E39}, since=null, name=t, alias=, stereotype=, visibility=public, txtDescription='Timestamp of the last change of the data value 'stVal' or quality 'q'.', htmlDescription='

Timestamp of the last change of the data value 'stVal' or quality 'q'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2206, _eaTypeName=TimeStamp_ST, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,566 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::DPS, _objData=UmlObjectData [id=4279, uuid={F3D27F61-E9C4-4fc2-8AA6-662D6F85C26F}, since=null, name=subVal, alias=, stereotype=, visibility=public, txtDescription='Value used to substitute 'stVal'.', htmlDescription='

Value used to substitute 'stVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2143, _eaTypeName=DpStatus_SV, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{moveAfter=wrongsubEna, secondTagName=secondTagValue}] +2024-09-07 12:38:48,566 [main] DEBUG ClassBuilder - Adding DPS as subclass of SubstitutionCDC +2024-09-07 12:38:48,566 [main] TRACE ClassBuilder - read from EA: CDCStatusInfo::DPS +2024-09-07 12:38:48,566 [main] TRACE ClassBuilder - Class ENS (2 in package CDCStatusInfo) +2024-09-07 12:38:48,566 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::ENS, _objData=UmlObjectData [id=4285, uuid={929E3BA6-6FC1-4cef-A0A3-AFC3397057FD}, since=null, name=stVal, alias=, stereotype=, visibility=public, txtDescription='Status data value.', htmlDescription='

Status data value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2149, _eaTypeName=EnumDA_ST_dchg_dupd, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,567 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::ENS, _objData=UmlObjectData [id=4286, uuid={973C16BC-0B6B-4787-9456-6A3C5D86703B}, since=null, name=q, alias=, stereotype=, visibility=public, txtDescription='Quality of the data value 'stVal'.', htmlDescription='

Quality of the data value 'stVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2192, _eaTypeName=Quality_ST_qchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,567 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::ENS, _objData=UmlObjectData [id=4287, uuid={A5C38D4B-AA0F-49b6-B868-27C0036F5163}, since=null, name=t, alias=, stereotype=, visibility=public, txtDescription='Timestamp of the last change of the data value 'stVal' or quality 'q'.', htmlDescription='

Timestamp of the last change of the data value 'stVal' or quality 'q'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2206, _eaTypeName=TimeStamp_ST, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,567 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::ENS, _objData=UmlObjectData [id=4288, uuid={5895B5B3-C6B8-4321-BCF5-F17A3FE76872}, since=null, name=subVal, alias=, stereotype=, visibility=public, txtDescription='Value used to substitute 'stVal'.', htmlDescription='

Value used to substitute 'stVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2150, _eaTypeName=EnumDA_SV, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{moveAfter=subEna}] +2024-09-07 12:38:48,567 [main] DEBUG ClassBuilder - Adding ENS as subclass of SubstitutionCDC +2024-09-07 12:38:48,567 [main] TRACE ClassBuilder - read from EA: CDCStatusInfo::ENS +2024-09-07 12:38:48,567 [main] TRACE ClassBuilder - Class EXY (3 in package CDCStatusInfo) +2024-09-07 12:38:48,567 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::EXY, _objData=UmlObjectData [id=6653, uuid={C45B42C1-992F-47fa-978C-87A6AFC4F512}, since=null, name=stVal, alias=, stereotype=, visibility=public, txtDescription='Status data value.', htmlDescription='

Status data value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2149, _eaTypeName=EnumDA_ST_dchg_dupd, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,567 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::EXY, _objData=UmlObjectData [id=6654, uuid={B5AC751A-B7F5-4848-8382-2072203D80D8}, since=null, name=q, alias=, stereotype=, visibility=public, txtDescription='Quality of the data value 'stVal'.', htmlDescription='

Quality of the data value 'stVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2192, _eaTypeName=Quality_ST_qchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,567 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::EXY, _objData=UmlObjectData [id=6655, uuid={CADD5FD8-0F27-4735-9D3F-4CE322754EA7}, since=null, name=t, alias=, stereotype=, visibility=public, txtDescription='Timestamp of the last change of the data value 'stVal' or quality 'q'.', htmlDescription='

Timestamp of the last change of the data value 'stVal' or quality 'q'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2206, _eaTypeName=TimeStamp_ST, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,568 [main] DEBUG ClassBuilder - Adding EXY as subclass of BasePrimitiveCDC +2024-09-07 12:38:48,568 [main] TRACE ClassBuilder - read from EA: CDCStatusInfo::EXY +2024-09-07 12:38:48,568 [main] TRACE ClassBuilder - Class ACD (4 in package CDCStatusInfo) +2024-09-07 12:38:48,569 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::ACD, _objData=UmlObjectData [id=4301, uuid={532F20FD-1464-482b-838D-48B80E9F6631}, since=null, name=dirGeneral, alias=, stereotype=, visibility=public, txtDescription='General direction of the fault. If the faults of individual phases have different directions, this attribute shall be set to 'dirGeneral'='both'.', htmlDescription='

General direction of the fault. If the faults of individual phases have different directions, this attribute shall be set to 'dirGeneral'='both'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2151, _eaTypeName=FaultDirection_ST_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,570 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::ACD, _objData=UmlObjectData [id=4302, uuid={22C4C4D2-4D10-4cad-8B98-2C5BB64AFEC2}, since=null, name=phsA, alias=, stereotype=, visibility=public, txtDescription='See 'ACT.phsA'.', htmlDescription='

See 'ACT.phsA'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2129, _eaTypeName=BOOLEAN_ST_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,570 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::ACD, _objData=UmlObjectData [id=4304, uuid={78BD96A5-A044-4ee0-BDF2-6207BF482F50}, since=null, name=phsB, alias=, stereotype=, visibility=public, txtDescription='See 'ACT.phsB.', htmlDescription='

See 'ACT.phsB.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2129, _eaTypeName=BOOLEAN_ST_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,570 [main] DEBUG ClassBuilder - Adding ACD as subclass of BasePrimitiveCDC +2024-09-07 12:38:48,570 [main] TRACE ClassBuilder - read from EA: CDCStatusInfo::ACD +2024-09-07 12:38:48,570 [main] TRACE ClassBuilder - Class HST (5 in package CDCStatusInfo) +2024-09-07 12:38:48,570 [main] ERROR EaTables - [+++ EA ordering problem for 2 diagram(s) in HST (manually move back/forth a diagram to initiate EA internal ordering update!): +, +++ diagram One-dimensional histogram: pos = 0 +, +++ diagram Two-dimensional histogram: pos = 0 DUPLICATE +] +2024-09-07 12:38:48,570 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [, _containingClass=HST, _objData=UmlObjectData [id=249, uuid={ED4BABDE-840A-4983-AD56-49D11AE71F72}, since=null, name=One-dimensional histogram, alias=, stereotype=, visibility=public, txtDescription='This diagram illustrates usage of data attributes for a one-dimensional histogram representation.', htmlDescription='

This diagram illustrates usage of data attributes for a one-dimensional histogram representation.

'], _portrait=true, _kind=CUSTOM] +2024-09-07 12:38:48,571 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [, _containingClass=HST, _objData=UmlObjectData [id=250, uuid={D4BFD754-29E5-467c-8CBD-D17D9FD3F5DF}, since=null, name=Two-dimensional histogram, alias=, stereotype=, visibility=public, txtDescription='This diagram shows an example of a two-dimensional histogram along with the corresponding values for related data attributes. Each of the rectangles represents one range; there is no rule, how to order the ranges.', htmlDescription='

This diagram shows an example of a two-dimensional histogram along with the corresponding values for related data attributes. Each of the rectangles represents one range; there is no rule, how to order the ranges.

'], _portrait=true, _kind=CUSTOM] +2024-09-07 12:38:48,571 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2256, uuid={30BBC730-8918-41fd-AEF8-EFA8F6E6B530}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=HST, _otherEndName=] +2024-09-07 12:38:48,571 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2257, uuid={F31CA204-48C6-416e-A7F6-46A746CF99E0}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=HST, _otherEndName=] +2024-09-07 12:38:48,571 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::HST, _objData=UmlObjectData [id=4328, uuid={CE8A66F5-D42E-4f4f-8087-F15C910C8D17}, since=null, name=hstVal, alias=, stereotype=, visibility=public, txtDescription='Array of data values for the histogram entries.', htmlDescription='

Array of data values for the histogram entries.

'], _isConst=false, _isStatic=false, _multiplicity=[1..*], _initValue=, _eaTypeId=2172, _eaTypeName=INT32_ST_dchg_dupd, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1 _constraints[ConstraintBuilder [_objData=UmlObjectData [id=1618, uuid=720fe959-ac7a-331d-b329-3988eb2bff13, since=null, name=maxIdx, alias=, stereotype=, visibility=public, txtDescription='maxPts-1', htmlDescription='

maxPts-1

'], _containingAttribute=hstVal, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=maxPts-1]]] +2024-09-07 12:38:48,571 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::HST, _objData=UmlObjectData [id=4331, uuid={B6E3704C-05B5-4c84-AEBB-CE3F2A3DB9F0}, since=null, name=numPts, alias=, stereotype=, visibility=public, txtDescription='Actual size of 'hstVal[]', 'hstRangeC[]'.', htmlDescription='

Actual size of 'hstVal[]', 'hstRangeC[]'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1...maxPts, _eaTypeId=2159, _eaTypeName=INT16U_CF, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,571 [main] DEBUG ClassBuilder - Adding HST as subclass of BasePrimitiveCDC +2024-09-07 12:38:48,571 [main] TRACE ClassBuilder - read from EA: CDCStatusInfo::HST +2024-09-07 12:38:48,572 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=CommonDataClasses, _depth=3, _eaElementID=2245, _objData=UmlObjectData [id=121, uuid={3E1C875A-F26E-40d8-9846-9BB1405D4F1A}, since=null, name=CDCStatusInfo, alias=Status information, stereotype=, visibility=public, txtDescription='For applicable services, see Annex B.', htmlDescription='

For applicable services, see Annex B.

'], _modelId=58, _selfDependent=false, 2_skippedEaItems=[SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2259, uuid={58471C21-0D37-4d5e-B74F-BD101D8729FC}, since=null, name=CDCStatusInfo : Two-dimensional histogram, alias=, stereotype=, visibility=public, txtDescription='CDCStatusInfo : Two-dimensional histogram', htmlDescription='

CDCStatusInfo : Two-dimensional histogram

'], _containingPackage=CDCStatusInfo, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2260, uuid={698239AD-7E8C-42c8-A1EB-0DBE752F57EC}, since=null, name=CDCStatusInfo : One-dimensional histogram, alias=, stereotype=, visibility=public, txtDescription='CDCStatusInfo : One-dimensional histogram', htmlDescription='

CDCStatusInfo : One-dimensional histogram

'], _containingPackage=CDCStatusInfo, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=CDCStatusInfo, _objData=UmlObjectData [id=248, uuid={8E8D0A5B-4D29-400f-A3AF-1184FB57CC93}, since=null, name=CDCStatusInfo, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all status information CDCs defined in the standard with supertypes that factor their common attributes.', htmlDescription='

This diagram shows all status information CDCs defined in the standard with supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL]], _classes=5 +2024-09-07 12:38:48,572 [main] INFO PackageBuilder - processing package CDCAnalogueInfo (4) ... +2024-09-07 12:38:48,572 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=CDCAnalogueInfo, _objData=UmlObjectData [id=251, uuid={7318BCE5-A2F7-4ec0-9888-C0DED1487FCD}, since=null, name=CDCAnalogueInfo, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all measurand info primitive CDCs defined in the standard with supertypes that factor their common attributes.', htmlDescription='

This diagram shows all measurand info primitive CDCs defined in the standard with supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,575 [main] TRACE ClassBuilder - Class HarmonicMeasurandCDC (2 in package CDCAnalogueInfo) +2024-09-07 12:38:48,575 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCAnalogueInfo::HarmonicMeasurandCDC, _objData=UmlObjectData [id=4346, uuid={2B6FCE4E-A827-467a-B3FA-B2DA520A2B0E}, since=null, name=evalTm, alias=, stereotype=, visibility=public, txtDescription='Time window [ms] applied to interharmonic calculations. See 'numHar'.', htmlDescription='

Time window [ms] applied to interharmonic calculations. See 'numHar'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2160, _eaTypeName=INT16U_CF_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,575 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCAnalogueInfo::HarmonicMeasurandCDC, _objData=UmlObjectData [id=4347, uuid={9CA4C0A7-81A8-4f80-A178-0E3461E29662}, since=null, name=smpRate, alias=, stereotype=, visibility=public, txtDescription='Determines the highest possible harmonic or interharmonic detectable, according to the sampling theorem; the minimum value is 'smpRate'=2 * 'frequency'. 'smpRate' is the number of samples per nominal period. In the case of a dc system, it is number of samples per s.', htmlDescription='

Determines the highest possible harmonic or interharmonic detectable, according to the sampling theorem; the minimum value is 'smpRate'=2 * 'frequency'. 'smpRate' is the number of samples per nominal period. In the case of a dc system, it is number of samples per s.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2165, _eaTypeName=INT32U_CF_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,576 [main] DEBUG ClassBuilder - Adding HarmonicMeasurandCDC as subclass of BaseComposedCDC +2024-09-07 12:38:48,576 [main] TRACE ClassBuilder - read from EA: CDCAnalogueInfo::HarmonicMeasurandCDC +2024-09-07 12:38:48,576 [main] TRACE ClassBuilder - Class CMV (4 in package CDCAnalogueInfo) +2024-09-07 12:38:48,577 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCAnalogueInfo::CMV, _objData=UmlObjectData [id=4363, uuid={EF92B9C1-3C1D-47e0-A976-0BC4ABB0A956}, since=null, name=instCVal, alias=, stereotype=, visibility=public, txtDescription='Instantaneous complex (phasor) value, with magnitude and angle.', htmlDescription='

Instantaneous complex (phasor) value, with magnitude and angle.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2213, _eaTypeName=Vector_MX, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,577 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCAnalogueInfo::CMV, _objData=UmlObjectData [id=4369, uuid={5BEFF6EB-D761-40ac-AF78-8EDB1CB222A6}, since=null, name=subCVal, alias=, stereotype=, visibility=public, txtDescription='Value used to substitute 'instCVal'.', htmlDescription='

Value used to substitute 'instCVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2215, _eaTypeName=Vector_SV, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{moveAfter=subEna}] +2024-09-07 12:38:48,577 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCAnalogueInfo::CMV, _objData=UmlObjectData [id=4374, uuid={163EDE34-974C-42be-93A3-DC32CCFC09F6}, since=null, name=rangeC, alias=, stereotype=, visibility=public, txtDescription='Configuration for 'range'.', htmlDescription='

Configuration for 'range'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2194, _eaTypeName=RangeConfig_CF_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,577 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCAnalogueInfo::CMV, _objData=UmlObjectData [id=4375, uuid={64C3ECAC-5E57-4cbe-8469-96F13ACDF920}, since=null, name=rangeAngC, alias=, stereotype=, visibility=public, txtDescription='Configuration for 'rangeAng'.', htmlDescription='

Configuration for 'rangeAng'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2194, _eaTypeName=RangeConfig_CF_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,577 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2161, uuid={83E0A355-0A5F-4120-B11B-A884EE35EBCF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=CMV, _otherEndName=?] +2024-09-07 12:38:48,577 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2165, uuid={C4A6DE53-4818-409e-A935-BD597D32CC62}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=CMV, _otherEndName=?] +2024-09-07 12:38:48,577 [main] DEBUG ClassBuilder - Adding CMV as subclass of SubstitutionCDC +2024-09-07 12:38:48,577 [main] TRACE ClassBuilder - read from EA: CDCAnalogueInfo::CMV +2024-09-07 12:38:48,578 [main] TRACE ClassBuilder - Class HWYE (5 in package CDCAnalogueInfo) +2024-09-07 12:38:48,578 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCAnalogueInfo::HWYE, _objData=UmlObjectData [id=4405, uuid={3BE5F231-7684-425e-A062-905D40593DE8}, since=null, name=phsAHar, alias=, stereotype=, visibility=public, txtDescription='Array of harmonic and subharmonics, or interharmonic values related to phase A.', htmlDescription='

Array of harmonic and subharmonics, or interharmonic values related to phase A.

'], _isConst=false, _isStatic=false, _multiplicity=[1..*], _initValue=, _eaTypeId=2266, _eaTypeName=CMV, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2 _constraints[ConstraintBuilder [_objData=UmlObjectData [id=1640, uuid=2d5f2699-414e-322c-ac9b-12faab7bf7a1, since=null, name=maxIdx, alias=, stereotype=, visibility=public, txtDescription='numHar', htmlDescription='

numHar

'], _containingAttribute=phsAHar, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=numHar], ConstraintBuilder [_objData=UmlObjectData [id=1641, uuid=9681cda7-090b-3bd8-acfe-51a75f594dfa, since=null, name=minIdx, alias=, stereotype=, visibility=public, txtDescription='0', htmlDescription='

0

'], _containingAttribute=phsAHar, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=0]]] +2024-09-07 12:38:48,578 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCAnalogueInfo::HWYE, _objData=UmlObjectData [id=4411, uuid={E41EFDD0-9E50-45f3-B665-D9884218AC67}, since=null, name=angRef, alias=, stereotype=, visibility=public, txtDescription='Angle reference, indicating the quantity that is used as reference for the phase angles {'phsAHar', 'phsBHar', 'phsCHar', 'neutHar', 'netHar', 'resHar'}[i].ang', instead of their own 'angRef'. For the indicated quantity, the fundamental frequency (index = 1) is used as reference by convention.', htmlDescription='

Angle reference, indicating the quantity that is used as reference for the phase angles {'phsAHar', 'phsBHar', 'phsCHar', 'neutHar', 'netHar', 'resHar'}[i].ang', instead of their own 'angRef'. For the indicated quantity, the fundamental frequency (index = 1) is used as reference by convention.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2183, _eaTypeName=PhaseAngleReference_CF_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{moveAfter=evalTm}] +2024-09-07 12:38:48,578 [main] DEBUG ClassBuilder - Adding HWYE as subclass of HarmonicMeasurandCDC +2024-09-07 12:38:48,578 [main] TRACE ClassBuilder - read from EA: CDCAnalogueInfo::HWYE +2024-09-07 12:38:48,579 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=CommonDataClasses, _depth=3, _eaElementID=2261, _objData=UmlObjectData [id=122, uuid={1648BF5D-1715-4c8a-B570-BAC092CDCC20}, since=null, name=CDCAnalogueInfo, alias=Measurand information, stereotype=, visibility=public, txtDescription='Measured values as defined in the following clauses may also be applied to calculated values. +For applicable services, see Annex B.', htmlDescription='

Measured values as defined in the following clauses may also be applied to calculated values.

For applicable services, see Annex B.

'], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=CDCAnalogueInfo, _objData=UmlObjectData [id=251, uuid={7318BCE5-A2F7-4ec0-9888-C0DED1487FCD}, since=null, name=CDCAnalogueInfo, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all measurand info primitive CDCs defined in the standard with supertypes that factor their common attributes.', htmlDescription='

This diagram shows all measurand info primitive CDCs defined in the standard with supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL]], _classes=3 +2024-09-07 12:38:48,579 [main] INFO PackageBuilder - processing package CDCControl (5) ... +2024-09-07 12:38:48,579 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=CDCControl, _objData=UmlObjectData [id=255, uuid={672B46BC-EEBD-413a-8A1E-B08E4D73BBF9}, since=null, name=CDCControl, alias=, stereotype=, visibility=public, txtDescription='This diagram shows first part of controllable CDCs defined in the standard with supertypes that factor their common attributes.', htmlDescription='

This diagram shows first part of controllable CDCs defined in the standard with supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,580 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2289, uuid={5B33C75B-7824-4ca5-9553-55D1D80034BF}, since=null, name=CDCControl :Attributes for command testing, alias=, stereotype=, visibility=public, txtDescription='CDCControl : Attributes for command testing', htmlDescription='

CDCControl : Attributes for command testing

'], _containingPackage=CDCControl, _otherEndName=] +2024-09-07 12:38:48,580 [main] TRACE ClassBuilder - Class SPC (0 in package CDCControl) +2024-09-07 12:38:48,581 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = CDCControl::SPC->null, _objData=UmlObjectData [id=3452, uuid={1BDAABDC-478E-4284-B67C-2D8C94FA3E1C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,581 [main] TRACE ClassBuilder - read from EA: CDCControl::SPC +2024-09-07 12:38:48,581 [main] TRACE ClassBuilder - Class ControllableCDC (1 in package CDCControl) +2024-09-07 12:38:48,581 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [, _containingClass=ControllableCDC, _objData=UmlObjectData [id=256, uuid={7A8C741F-2259-403c-9867-8F51C3D154A9}, since=null, name=Attributes for command testing, alias=, stereotype=, visibility=public, txtDescription='This diagram illustrates usage of attributes related to testing commands, suitable for use when 'LN.Mode='testBlocked'. +The command is received ('opRcvd') by the IED as a control service or as a GOOSE message with a data object that is interpreted as an 'operate' request on the controllable object. The command is then processed. If the command is accepted, the wired output would be activated. The data attribute 'opOk' confirms that the command has been accepted and reflects the timing of the wired output; i.e. the duration of that signal is determined by the configuration attribute 'pulseConfig' if the output is a pulse. The data attribute 'tOpOk' is a timestamp indicating when the output would be activated.', htmlDescription='

This diagram illustrates usage of attributes related to testing commands, suitable for use when 'LN.Mode='testBlocked'.

The command is received ('opRcvd') by the IED as a control service or as a GOOSE message with a data object that is interpreted as an 'operate' request on the controllable object. The command is then processed. If the command is accepted, the wired output would be activated. The data attribute 'opOk' confirms that the command has been accepted and reflects the timing of the wired output; i.e. the duration of that signal is determined by the configuration attribute 'pulseConfig' if the output is a pulse. The data attribute 'tOpOk' is a timestamp indicating when the output would be activated.

'], _portrait=true, _kind=CUSTOM] +2024-09-07 12:38:48,581 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2279, uuid={28B618C5-AFD6-4e02-B638-732E00A18C5F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=ControllableCDC, _otherEndName=] +2024-09-07 12:38:48,581 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCControl::ControllableCDC, _objData=UmlObjectData [id=4417, uuid={47B971C5-D6FE-4d4d-A1B9-DAD685D360FE}, since=null, name=opOk, alias=, stereotype=, visibility=public, txtDescription='True indicates that an operate command for a controllable data object has been evaluated and accepted.', htmlDescription='

True indicates that an operate command for a controllable data object has been evaluated and accepted.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2125, _eaTypeName=BOOLEAN_OR_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,581 [main] DEBUG ClassBuilder - Adding ControllableCDC as subclass of SubstitutionCDC +2024-09-07 12:38:48,582 [main] DEBUG ClassBuilder - Updated target of class dependency DependencyBuilder [_kind=CLASS, qName = CDCControl::SPC->CDCControl::ControllableCDC, _objData=UmlObjectData [id=3452, uuid={1BDAABDC-478E-4284-B67C-2D8C94FA3E1C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,582 [main] TRACE ClassBuilder - read from EA: CDCControl::ControllableCDC +2024-09-07 12:38:48,582 [main] TRACE ClassBuilder - Class ENC (2 in package CDCControl) +2024-09-07 12:38:48,582 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCControl::ENC, _objData=UmlObjectData [id=4463, uuid={9C28209D-6C12-48ff-B6AD-C1817BAAFC47}, since=null, name=stVal, alias=, stereotype=, visibility=public, txtDescription='Status data value.', htmlDescription='

Status data value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2148, _eaTypeName=EnumDA_ST_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,582 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCControl::ENC, _objData=UmlObjectData [id=4467, uuid={938DEDD5-1A89-4d8f-84B9-3BD409127DC1}, since=null, name=subVal, alias=, stereotype=, visibility=public, txtDescription='Value used to substitute 'stVal'.', htmlDescription='

Value used to substitute 'stVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2150, _eaTypeName=EnumDA_SV, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{moveAfter=subEna}] +2024-09-07 12:38:48,582 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCControl::ENC, _objData=UmlObjectData [id=4472, uuid={3AE4A32F-B7CE-4d34-96B9-72D29B257EC1}, since=null, name=ctlVal, alias=, stereotype=, visibility=public, txtDescription='Service parameter that determines the control activity, containing the new value for 'stVal'.', htmlDescription='

Service parameter that determines the control activity, containing the new value for 'stVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1855, _eaTypeName=EnumDA, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,583 [main] DEBUG ClassBuilder - Adding ENC as subclass of ControllableCDC +2024-09-07 12:38:48,583 [main] TRACE ClassBuilder - read from EA: CDCControl::ENC +2024-09-07 12:38:48,583 [main] TRACE ClassBuilder - Class BAC (10 in package CDCControl) +2024-09-07 12:38:48,583 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCControl::BAC, _objData=UmlObjectData [id=4522, uuid={88F3132A-BE85-476d-A4AB-2F929A4B1EBA}, since=null, name=mxVal, alias=, stereotype=, visibility=public, txtDescription='See 'APC.mxVal'.', htmlDescription='

See 'APC.mxVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2116, _eaTypeName=AnalogueValue_MX_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,583 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCControl::BAC, _objData=UmlObjectData [id=4526, uuid={2E517833-BEAC-420a-9351-E80AE2D456F2}, since=null, name=subVal, alias=, stereotype=, visibility=public, txtDescription='Value used to substitute 'mxVal'.', htmlDescription='

Value used to substitute 'mxVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2121, _eaTypeName=AnalogueValue_SV, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{moveAfter=subEna}] +2024-09-07 12:38:48,583 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCControl::BAC, _objData=UmlObjectData [id=4538, uuid={0E7EE54F-A469-4769-AB77-ECC48A74EF0E}, since=null, name=ctlVal, alias=, stereotype=, visibility=public, txtDescription='Service parameter that determines the control activity, containing the desired change for 'mxVal'. If 'persistent'=false, 'ctlVal'='higher'|'lower' refers to one step in 'mxVal'.', htmlDescription='

Service parameter that determines the control activity, containing the desired change for 'mxVal'. If 'persistent'=false, 'ctlVal'='higher'|'lower' refers to one step in 'mxVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1760, _eaTypeName=BsControl, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,584 [main] DEBUG ClassBuilder - Adding BAC as subclass of ControllableCDC +2024-09-07 12:38:48,584 [main] TRACE ClassBuilder - read from EA: CDCControl::BAC +2024-09-07 12:38:48,584 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=CommonDataClasses, _depth=3, _eaElementID=2276, _objData=UmlObjectData [id=123, uuid={5494102F-33E9-4de2-84A9-31FAC8CF7B73}, since=null, name=CDCControl, alias=Controls, stereotype=, visibility=public, txtDescription='All common data classes for control include both the control and the related status information. +For applicable services, see Annex B. +NOTE The service parameter of the control, which belongs to the control model defined in IEC 61850-7-2, is included here, since the type is defined by the CDC.', htmlDescription='

All common data classes for control include both the control and the related status information.

For applicable services, see Annex B.

NOTE The service parameter of the control, which belongs to the control model defined in IEC 61850-7-2, is included here, since the type is defined by the CDC.

'], _modelId=58, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2289, uuid={5B33C75B-7824-4ca5-9553-55D1D80034BF}, since=null, name=CDCControl :Attributes for command testing, alias=, stereotype=, visibility=public, txtDescription='CDCControl : Attributes for command testing', htmlDescription='

CDCControl : Attributes for command testing

'], _containingPackage=CDCControl, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=CDCControl, _objData=UmlObjectData [id=255, uuid={672B46BC-EEBD-413a-8A1E-B08E4D73BBF9}, since=null, name=CDCControl, alias=, stereotype=, visibility=public, txtDescription='This diagram shows first part of controllable CDCs defined in the standard with supertypes that factor their common attributes.', htmlDescription='

This diagram shows first part of controllable CDCs defined in the standard with supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL]], _classes=4 +2024-09-07 12:38:48,584 [main] INFO PackageBuilder - processing package CDCStatusSet (6) ... +2024-09-07 12:38:48,584 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=CDCStatusSet, _objData=UmlObjectData [id=258, uuid={FAA0BF16-93C1-4fea-BA5D-7C2485A2822D}, since=null, name=CDCStatusSet, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all status setting CDCs defined in the standard with supertypes that factor their common attributes.', htmlDescription='

This diagram shows all status setting CDCs defined in the standard with supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,585 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2292, uuid={72A3A6D5-C9BF-490d-869B-FD21BCFDCE72}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note 1: CUG in not used in 61850-7-4 at all (but may be is in other WGs' LNs). +Modelling note 2: For "tripled" attributes (setVal), we rename two of them by adding the prefixes "_" and "__" (_setVal, __setVal for SG, SE, respectively), since it is impossible to have two or more attributes of the same name in a class, even if they have different functional constraint. For producing the documentation, the tool has to: +- produce one row for SG and SE, with the name of SP, and, +- ignore printing these in data semantic table.', htmlDescription='

Modelling note 1: CUG in not used in 61850-7-4 at all (but may be is in other WGs' LNs).

Modelling note 2: For "tripled" attributes (setVal), we rename two of them by adding the prefixes "_" and "__" (_setVal, __setVal for SG, SE, respectively), since it is impossible to have two or more attributes of the same name in a class, even if they have different functional constraint. For producing the documentation, the tool has to:

  • produce one row for SG and SE, with the name of SP, and,
  • ignore printing these in data semantic table.
'], _containingPackage=CDCStatusSet, _otherEndName=] +2024-09-07 12:38:48,585 [main] TRACE ClassBuilder - Class ENG (2 in package CDCStatusSet) +2024-09-07 12:38:48,586 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusSet::ENG, _objData=UmlObjectData [id=4549, uuid={1D960CE3-43BF-406e-A140-BC2239A785AA}, since=null, name=setVal, alias=, stereotype=, visibility=public, txtDescription='The value of the status setting.', htmlDescription='

The value of the status setting.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2147, _eaTypeName=EnumDA_SP_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,586 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusSet::ENG, _objData=UmlObjectData [id=4550, uuid={230465FC-CF1D-489e-8A2F-06A473C05873}, since=null, name=_setVal, alias=, stereotype=, visibility=public, txtDescription='See 'setVal'.', htmlDescription='

See 'setVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2146, _eaTypeName=EnumDA_SG, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,586 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusSet::ENG, _objData=UmlObjectData [id=4551, uuid={CCF13BCF-8FA8-4586-B31F-3CD9088513A4}, since=null, name=__setVal, alias=, stereotype=, visibility=public, txtDescription='See 'setVal'.', htmlDescription='

See 'setVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2145, _eaTypeName=EnumDA_SE, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,587 [main] DEBUG ClassBuilder - Adding ENG as subclass of BasePrimitiveCDC +2024-09-07 12:38:48,587 [main] TRACE ClassBuilder - read from EA: CDCStatusSet::ENG +2024-09-07 12:38:48,588 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=CommonDataClasses, _depth=3, _eaElementID=2291, _objData=UmlObjectData [id=124, uuid={24BEB580-2588-4b5f-8AEB-5D57AAAAE2FA}, since=null, name=CDCStatusSet, alias=Status settings, stereotype=, visibility=public, txtDescription='For applicable services, see Annex B.', htmlDescription='

For applicable services, see Annex B.

'], _modelId=58, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2292, uuid={72A3A6D5-C9BF-490d-869B-FD21BCFDCE72}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note 1: CUG in not used in 61850-7-4 at all (but may be is in other WGs' LNs). +Modelling note 2: For "tripled" attributes (setVal), we rename two of them by adding the prefixes "_" and "__" (_setVal, __setVal for SG, SE, respectively), since it is impossible to have two or more attributes of the same name in a class, even if they have different functional constraint. For producing the documentation, the tool has to: +- produce one row for SG and SE, with the name of SP, and, +- ignore printing these in data semantic table.', htmlDescription='

Modelling note 1: CUG in not used in 61850-7-4 at all (but may be is in other WGs' LNs).

Modelling note 2: For "tripled" attributes (setVal), we rename two of them by adding the prefixes "_" and "__" (_setVal, __setVal for SG, SE, respectively), since it is impossible to have two or more attributes of the same name in a class, even if they have different functional constraint. For producing the documentation, the tool has to:

  • produce one row for SG and SE, with the name of SP, and,
  • ignore printing these in data semantic table.
'], _containingPackage=CDCStatusSet, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=CDCStatusSet, _objData=UmlObjectData [id=258, uuid={FAA0BF16-93C1-4fea-BA5D-7C2485A2822D}, since=null, name=CDCStatusSet, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all status setting CDCs defined in the standard with supertypes that factor their common attributes.', htmlDescription='

This diagram shows all status setting CDCs defined in the standard with supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL]], _classes=1 +2024-09-07 12:38:48,588 [main] INFO PackageBuilder - processing package CDCAnalogueSet (8) ... +2024-09-07 12:38:48,588 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=CDCAnalogueSet, _objData=UmlObjectData [id=260, uuid={C2AB69BB-C368-4dc2-ABD8-D20CA5670A59}, since=null, name=CDCAnalogueSet, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all analogue setting CDCs defined in the standard with supertypes that factor their common attributes.', htmlDescription='

This diagram shows all analogue setting CDCs defined in the standard with supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,590 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2302, uuid={3EC42D78-B2EB-4f59-9E25-E272DB4E33D6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- CSG.xUnits, yUnits, zUnits should probably also have dchg?', htmlDescription='

TODO:

  • CSG.xUnits, yUnits, zUnits should probably also have dchg?
'], _containingPackage=CDCAnalogueSet, _otherEndName=] +2024-09-07 12:38:48,590 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2303, uuid={02178B42-E5E3-4d47-96D5-4CE0FB51E96B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: +For "tripled" attributes (e.g., setMag), we rename two of them by adding the prefixes "_" and "__" (_setMag, __setMag for SG, SE, respectively), since it is impossible to have two or more attributes of the same name in a class, even if they have different functional constraint. For producing the documentation, the tool has to: +- produce one row for SG and SE, with the name of SP, and, +- ignore printing these in data semantic table.', htmlDescription='

Modelling note:

For "tripled" attributes (e.g., setMag), we rename two of them by adding the prefixes "_" and "__" (_setMag, __setMag for SG, SE, respectively), since it is impossible to have two or more attributes of the same name in a class, even if they have different functional constraint. For producing the documentation, the tool has to:

  • produce one row for SG and SE, with the name of SP, and,
  • ignore printing these in data semantic table.
'], _containingPackage=CDCAnalogueSet, _otherEndName=] +2024-09-07 12:38:48,591 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2309, uuid={08494FEF-49BE-42b8-A5CA-F4B052BA0C5D}, since=null, name=CDCAnalogueSet : Two-dimensional curve, alias=, stereotype=, visibility=public, txtDescription='CDCAnalogueSet : Two-dimensional curve', htmlDescription='

CDCAnalogueSet : Two-dimensional curve

'], _containingPackage=CDCAnalogueSet, _otherEndName=] +2024-09-07 12:38:48,591 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2310, uuid={7E7E303E-D1E2-46b3-A331-865220F17B13}, since=null, name=CDCAnalogueSet : Multiple two-dimensional curves, alias=, stereotype=, visibility=public, txtDescription='CDCAnalogueSet : Multiple two-dimensional curves', htmlDescription='

CDCAnalogueSet : Multiple two-dimensional curves

'], _containingPackage=CDCAnalogueSet, _otherEndName=] +2024-09-07 12:38:48,591 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=CommonDataClasses, _depth=3, _eaElementID=2301, _objData=UmlObjectData [id=125, uuid={BBFCDF63-5251-459a-AA56-3369E8D0EB79}, since=null, name=CDCAnalogueSet, alias=Analogue settings, stereotype=, visibility=public, txtDescription='For applicable services, see Annex B.', htmlDescription='

For applicable services, see Annex B.

'], _modelId=58, _selfDependent=false, 4_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2302, uuid={3EC42D78-B2EB-4f59-9E25-E272DB4E33D6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- CSG.xUnits, yUnits, zUnits should probably also have dchg?', htmlDescription='

TODO:

  • CSG.xUnits, yUnits, zUnits should probably also have dchg?
'], _containingPackage=CDCAnalogueSet, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2303, uuid={02178B42-E5E3-4d47-96D5-4CE0FB51E96B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: +For "tripled" attributes (e.g., setMag), we rename two of them by adding the prefixes "_" and "__" (_setMag, __setMag for SG, SE, respectively), since it is impossible to have two or more attributes of the same name in a class, even if they have different functional constraint. For producing the documentation, the tool has to: +- produce one row for SG and SE, with the name of SP, and, +- ignore printing these in data semantic table.', htmlDescription='

Modelling note:

For "tripled" attributes (e.g., setMag), we rename two of them by adding the prefixes "_" and "__" (_setMag, __setMag for SG, SE, respectively), since it is impossible to have two or more attributes of the same name in a class, even if they have different functional constraint. For producing the documentation, the tool has to:

  • produce one row for SG and SE, with the name of SP, and,
  • ignore printing these in data semantic table.
'], _containingPackage=CDCAnalogueSet, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2309, uuid={08494FEF-49BE-42b8-A5CA-F4B052BA0C5D}, since=null, name=CDCAnalogueSet : Two-dimensional curve, alias=, stereotype=, visibility=public, txtDescription='CDCAnalogueSet : Two-dimensional curve', htmlDescription='

CDCAnalogueSet : Two-dimensional curve

'], _containingPackage=CDCAnalogueSet, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2310, uuid={7E7E303E-D1E2-46b3-A331-865220F17B13}, since=null, name=CDCAnalogueSet : Multiple two-dimensional curves, alias=, stereotype=, visibility=public, txtDescription='CDCAnalogueSet : Multiple two-dimensional curves', htmlDescription='

CDCAnalogueSet : Multiple two-dimensional curves

'], _containingPackage=CDCAnalogueSet, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=CDCAnalogueSet, _objData=UmlObjectData [id=260, uuid={C2AB69BB-C368-4dc2-ABD8-D20CA5670A59}, since=null, name=CDCAnalogueSet, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all analogue setting CDCs defined in the standard with supertypes that factor their common attributes.', htmlDescription='

This diagram shows all analogue setting CDCs defined in the standard with supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL]] +2024-09-07 12:38:48,591 [main] INFO PackageBuilder - processing package CDCDescription (9) ... +2024-09-07 12:38:48,591 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=CDCDescription, _objData=UmlObjectData [id=263, uuid={A4DD44BD-4EEA-42ae-B4BE-6A1186741171}, since=null, name=CDCDescription, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all description CDCs defined in the standard with supertypes that factor their common attributes.', htmlDescription='

This diagram shows all description CDCs defined in the standard with supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,592 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2312, uuid={92EF3889-55BA-4cd5-8E09-ADDB24ECF2EB}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- DPL.ePSName says “Name of electric power system the device is connected to.” This is strange description. What would be examples of “named power systems”? Why not stay just with owner (e.g., utility)? Proposal: Remove attribute. +- DPL.mrID, if referencing CIM's mRID, has very limited use, because it allows to store mRID-s of only primary equipment from CIM model. Most of the attributes contained in this DPL are spread over at least 5 classes in CIM, and most of these CIM classes have an mRID (e.g., Owner, Company, Location, CoordinateSystem, PositionPoint, Asset, AssetModel). This kind of information should not be modelled within a 61850 logical node, but with a real domain model. Proposal: Remove attribute. +- If DPL.mrID is to stay: DPL.mrID says "unique identification of an asset or device". What is the scope of uniqueness? Globally unique? If this is reference to CIM IdentifiedObject.mRID, use correct case for letters (r is should be R). Proposal: State the scope of uniqueness and if reference to CIM, rename attribute to ‘mRID’.', htmlDescription='

TODO:

  • DPL.ePSName says “Name of electric power system the device is connected to.” This is strange description. What would be examples of “named power systems”? Why not stay just with owner (e.g., utility)? Proposal: Remove attribute.
  • DPL.mrID, if referencing CIM's mRID, has very limited use, because it allows to store mRID-s of only primary equipment from CIM model. Most of the attributes contained in this DPL are spread over at least 5 classes in CIM, and most of these CIM classes have an mRID (e.g., Owner, Company, Location, CoordinateSystem, PositionPoint, Asset, AssetModel). This kind of information should not be modelled within a 61850 logical node, but with a real domain model. Proposal: Remove attribute.
  • If DPL.mrID is to stay: DPL.mrID says "unique identification of an asset or device". What is the scope of uniqueness? Globally unique? If this is reference to CIM IdentifiedObject.mRID, use correct case for letters (r is should be R). Proposal: State the scope of uniqueness and if reference to CIM, rename attribute to ‘mRID’.
'], _containingPackage=CDCDescription, _otherEndName=] +2024-09-07 12:38:48,592 [main] TRACE ClassBuilder - Class LPL (2 in package CDCDescription) +2024-09-07 12:38:48,592 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCDescription::LPL, _objData=UmlObjectData [id=4639, uuid={5F84B791-8DB9-403b-B63E-B8E33716E74A}, since=null, name=ldNs, alias=, stereotype=, visibility=public, txtDescription='Logical device name space. Scope of the standard specified with the attribute is LN class definition (CDC definition by reference), for example "IEC 61850-7-4:2010". For details see IEC 61850-7-1.', htmlDescription='

Logical device name space. Scope of the standard specified with the attribute is LN class definition (CDC definition by reference), for example "IEC 61850-7-4:2010". For details see IEC 61850-7-1.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2217, _eaTypeName=VISIBLE_STRING255_EX, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,593 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCDescription::LPL, _objData=UmlObjectData [id=4640, uuid={AAD5655E-83DF-4906-9302-14396644A3AF}, since=null, name=lnNs, alias=, stereotype=, visibility=public, txtDescription='Logical node name space. Scope of the standard specified with the attribute is LN class definition (CDC definition by reference). For details see IEC 61850-7-1.', htmlDescription='

Logical node name space. Scope of the standard specified with the attribute is LN class definition (CDC definition by reference). For details see IEC 61850-7-1.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2217, _eaTypeName=VISIBLE_STRING255_EX, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,593 [main] DEBUG ClassBuilder - Adding LPL as subclass of BasePrimitiveCDC +2024-09-07 12:38:48,593 [main] TRACE ClassBuilder - read from EA: CDCDescription::LPL +2024-09-07 12:38:48,593 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=CommonDataClasses, _depth=3, _eaElementID=2311, _objData=UmlObjectData [id=126, uuid={D4B2A745-B7DE-4120-82C9-1D12138D250F}, since=null, name=CDCDescription, alias=Description information, stereotype=, visibility=public, txtDescription='For applicable services, see Annex B.', htmlDescription='

For applicable services, see Annex B.

'], _modelId=58, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2312, uuid={92EF3889-55BA-4cd5-8E09-ADDB24ECF2EB}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- DPL.ePSName says “Name of electric power system the device is connected to.” This is strange description. What would be examples of “named power systems”? Why not stay just with owner (e.g., utility)? Proposal: Remove attribute. +- DPL.mrID, if referencing CIM's mRID, has very limited use, because it allows to store mRID-s of only primary equipment from CIM model. Most of the attributes contained in this DPL are spread over at least 5 classes in CIM, and most of these CIM classes have an mRID (e.g., Owner, Company, Location, CoordinateSystem, PositionPoint, Asset, AssetModel). This kind of information should not be modelled within a 61850 logical node, but with a real domain model. Proposal: Remove attribute. +- If DPL.mrID is to stay: DPL.mrID says "unique identification of an asset or device". What is the scope of uniqueness? Globally unique? If this is reference to CIM IdentifiedObject.mRID, use correct case for letters (r is should be R). Proposal: State the scope of uniqueness and if reference to CIM, rename attribute to ‘mRID’.', htmlDescription='

TODO:

  • DPL.ePSName says “Name of electric power system the device is connected to.” This is strange description. What would be examples of “named power systems”? Why not stay just with owner (e.g., utility)? Proposal: Remove attribute.
  • DPL.mrID, if referencing CIM's mRID, has very limited use, because it allows to store mRID-s of only primary equipment from CIM model. Most of the attributes contained in this DPL are spread over at least 5 classes in CIM, and most of these CIM classes have an mRID (e.g., Owner, Company, Location, CoordinateSystem, PositionPoint, Asset, AssetModel). This kind of information should not be modelled within a 61850 logical node, but with a real domain model. Proposal: Remove attribute.
  • If DPL.mrID is to stay: DPL.mrID says "unique identification of an asset or device". What is the scope of uniqueness? Globally unique? If this is reference to CIM IdentifiedObject.mRID, use correct case for letters (r is should be R). Proposal: State the scope of uniqueness and if reference to CIM, rename attribute to ‘mRID’.
'], _containingPackage=CDCDescription, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=CDCDescription, _objData=UmlObjectData [id=263, uuid={A4DD44BD-4EEA-42ae-B4BE-6A1186741171}, since=null, name=CDCDescription, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all description CDCs defined in the standard with supertypes that factor their common attributes.', htmlDescription='

This diagram shows all description CDCs defined in the standard with supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL]], _classes=1 +2024-09-07 12:38:48,593 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_3, _depth=2, _eaElementID=2231, _objData=UmlObjectData [id=119, uuid={AF2BB0D4-22E0-440c-BEF8-B5E9EDCE3BC3}, since=null, name=CommonDataClasses, alias=Common data class specifications, stereotype=, visibility=public, txtDescription='Common data classes are defined for use in IEC 61850-7-4. Common data classes are composed of constructed attribute classes defined in Clause 6 of this document or of types defined in IEC 61850-7-2 or of common data classes defined in this clause. IEC 61850-7-1 provides the basic notation used in this clause. +The common data classes define the relation between their attributes and the functional constraint as well as the possible trigger options. If two trigger options are stated, then a concrete implementation shall select one of them. The selection is based on the purpose of the data object of this common data class and is fixed for the data object within a LN class. +The semantic of the attributes is defined in Clause 8.', htmlDescription='

Common data classes are defined for use in IEC 61850-7-4. Common data classes are composed of constructed attribute classes defined in Clause 6 of this document or of types defined in IEC 61850-7-2 or of common data classes defined in this clause. IEC 61850-7-1 provides the basic notation used in this clause.

The common data classes define the relation between their attributes and the functional constraint as well as the possible trigger options. If two trigger options are stated, then a concrete implementation shall select one of them. The selection is based on the purpose of the data object of this common data class and is fixed for the data object within a LN class.

The semantic of the attributes is defined in Clause 8.

'], _modelId=58, _selfDependent=false, 2_skippedEaItems=[SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2239, uuid={264C9AAE-B7F6-46b0-8EEE-F73431C6AD63}, since=null, name=CommonDataClasses : Concept of substitution, alias=, stereotype=, visibility=public, txtDescription='SubstitutionCDC : Concept of substitution', htmlDescription='

SubstitutionCDC : Concept of substitution

'], _containingPackage=CommonDataClasses, _otherEndName=], SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2241, uuid={AD3492F7-906E-41fa-A99E-09F725CB2769}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=CommonDataClasses, _otherEndName=]], 2_diagrams=[DiagramBuilder [_containingPackage=CommonDataClasses, _objData=UmlObjectData [id=244, uuid={9116C46B-DD92-40ff-9928-FB3E309093AC}, since=null, name=CommonDataClasses, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all the common data class groups, with their contents. +Classes displayed in italic and ending with "CDC" are abstract common data classes that allow to avoid duplication in definition of attributes used by multiple concrete common data classes. Abstract common data classes are never instantiated; Their attributes are inheritied by concrete common data classes which are instantiable.', htmlDescription='

This diagram shows all the common data class groups, with their contents.

Classes displayed in italic and ending with "CDC" are abstract common data classes that allow to avoid duplication in definition of attributes used by multiple concrete common data classes. Abstract common data classes are never instantiated; Their attributes are inheritied by concrete common data classes which are instantiable.

'], _portrait=true, _kind=LOGICAL], DiagramBuilder [_containingPackage=CommonDataClasses, _objData=UmlObjectData [id=245, uuid={31D2AD7A-7057-4e53-9C03-88B813B80849}, since=null, name=CDCRelationToACSI, alias=, stereotype=, visibility=public, txtDescription='All common data classes defined in this document inherit their structure from the abstract CDC class defined in IEC 61850-7-2, or more precisely, from one of its abstract subclasses (PrimitiveCDC or ComposedCDC). Common data classes (CDC-s) are used as types for data objects of logical nodes, and are composed of data attributes, which are of type FCDA (functionally constrained data attribute), and some are CDCs themselves. The generic structure of common data classes defined in IEC61850-7-2 comprises the attributes (e.g., name and reference, functional constraints and trigger options), and the services depending on a functional constraint. Currently, they are all modelled with operations (services). +IEC 61850-7-3 adds concrete data attributes, starting with common ones defined in abstract classes BasePrimitiveCDC and BaseComposedCDC, in order to complete the definition of concrete common data classes. Having this kind of definition at one place avoids error-prone repeating of these common attributes within the definition of every concrete common data class. +The diagram shows also the attributes per type of common data class defined in this document. Optional attributes have multiplicity [0..1]. Some common data classes define conditions on one or more of their attributes. In this diagram, this is the case for both BaseComposedCDC and BasePrimitiveCDC, with conditions "AC_DLNDA_M" and "AC_DLN_M"; The definition of condition is available for each data object involved in the condition and refers to Presence conditions introduced in IEC61850-7-3, Clause 5.', htmlDescription='

All common data classes defined in this document inherit their structure from the abstract CDC class defined in IEC 61850-7-2, or more precisely, from one of its abstract subclasses (PrimitiveCDC or ComposedCDC). Common data classes (CDC-s) are used as types for data objects of logical nodes, and are composed of data attributes, which are of type FCDA (functionally constrained data attribute), and some are CDCs themselves. The generic structure of common data classes defined in IEC61850-7-2 comprises the attributes (e.g., name and reference, functional constraints and trigger options), and the services depending on a functional constraint. Currently, they are all modelled with operations (services).

IEC 61850-7-3 adds concrete data attributes, starting with common ones defined in abstract classes BasePrimitiveCDC and BaseComposedCDC, in order to complete the definition of concrete common data classes. Having this kind of definition at one place avoids error-prone repeating of these common attributes within the definition of every concrete common data class.

The diagram shows also the attributes per type of common data class defined in this document. Optional attributes have multiplicity [0..1]. Some common data classes define conditions on one or more of their attributes. In this diagram, this is the case for both BaseComposedCDC and BasePrimitiveCDC, with conditions "AC_DLNDA_M" and "AC_DLN_M"; The definition of condition is available for each data object involved in the condition and refers to Presence conditions introduced in IEC61850-7-3, Clause 5.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=2, _dependenciesAsTarget=3, _classes=3, _childPackages=6] +2024-09-07 12:38:48,593 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=WG10, _depth=1, _eaElementID=2005, _objData=UmlObjectData [id=113, uuid={4164E3FE-EFCF-425a-9566-C2A5F26DD145}, since=null, name=IEC61850_7_3, alias=, stereotype=, visibility=public, txtDescription='Part 7-3, clauses 5, 6 (except for 6.2.7 and 6.2.8 - discussion on quality), 7, 8, annex A, annex D.', htmlDescription='

Part 7-3, clauses 5, 6 (except for 6.2.7 and 6.2.8 - discussion on quality), 7, 8, annex A, annex D.

'], _modelId=58, _selfDependent=true, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2006, uuid={D48A9837-1371-4b1a-8D7F-00C9E8036560}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: This should move to 7-2.', htmlDescription='

TODO: This should move to 7-2.

'], _containingPackage=IEC61850_7_3, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=IEC61850_7_3, _objData=UmlObjectData [id=227, uuid={F484E7B4-1E12-4de6-B276-87F2C5E6E00D}, since=null, name=IEC61850_7_3, alias=, stereotype=, visibility=public, txtDescription='This diagram: +- shows the content of this package, as well as dependencies to other parts of the model, and, +- highlights the sub-packages contained in IEC61850-7-3 required to generate the document automatically (note: for FC table in Annex B, we also need the enum FcKind from 7-2, not shown here). +About dependencies of DA sub-packages: +- CommonAcsiDAs, BasicDAs and ConstructedDAs are all DataAttribute-s from the meta-model, thus they depend on MetaModel, which in turn uses core types and thus depends on CoreTypes. +- CommonAcsiDAs, BasicDAs and ConstructedDAs use also core types, thus they depend on CoreTypes. +- ConstructedDAs use enumerations, so they depend on DAEnums. +- Finally, ConstructedDAs types are composed of primitive DAs, thus dependency to BasicDAs. +FCDAs package contains "helper" explicit types, which shield CDCs and LNs from all the complexity of IEC61850 datatype system. These are the types used to define attributes of CommonDataClass-es. Since FCDAs derive from an abstract meta-model type, they depend on MetaModel. And since they "decorate" data attribute types, they also depend on ConstructedDAs, CommonAcsiDAs and BasicDAs. +Finally, CDCs derive from the meta-model PrimitiveCDC and ComposedCDC and thus depend on MetaModel. Also, their attributes use FCDAs as types, so they all depend on FCDAs package.', htmlDescription='

This diagram:

  • shows the content of this package, as well as dependencies to other parts of the model, and,
  • highlights the sub-packages contained in IEC61850-7-3 required to generate the document automatically (note: for FC table in Annex B, we also need the enum FcKind from 7-2, not shown here).

About dependencies of DA sub-packages:

  • CommonAcsiDAs, BasicDAs and ConstructedDAs are all DataAttribute-s from the meta-model, thus they depend on MetaModel, which in turn uses core types and thus depends on CoreTypes.
  • CommonAcsiDAs, BasicDAs and ConstructedDAs use also core types, thus they depend on CoreTypes.
  • ConstructedDAs use enumerations, so they depend on DAEnums.
  • Finally, ConstructedDAs types are composed of primitive DAs, thus dependency to BasicDAs.

FCDAs package contains "helper" explicit types, which shield CDCs and LNs from all the complexity of IEC61850 datatype system. These are the types used to define attributes of CommonDataClass-es. Since FCDAs derive from an abstract meta-model type, they depend on MetaModel. And since they "decorate" data attribute types, they also depend on ConstructedDAs, CommonAcsiDAs and BasicDAs.

Finally, CDCs derive from the meta-model PrimitiveCDC and ComposedCDC and thus depend on MetaModel. Also, their attributes use FCDAs as types, so they all depend on FCDAs package.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=2, _dependenciesAsTarget=1, _classes=1, _childPackages=6] +2024-09-07 12:38:48,593 [main] INFO PackageBuilder - processing package IEC61850_7_4 (4) ... +2024-09-07 12:38:48,593 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=IEC61850_7_4, _objData=UmlObjectData [id=264, uuid={53319A3A-F127-44ff-9189-57CBBD02C7D3}, since=null, name=IEC61850_7_4, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the content of this package, as well as dependencies to other parts of the model. +Note: Highlighted sub-packages contained in IEC61850-7-4 are required to generate the document automatically. Package IEC61850_5::Functions is also required to generate IEC61850-7-4, but is not shown here.', htmlDescription='

This diagram shows the content of this package, as well as dependencies to other parts of the model.

Note: Highlighted sub-packages contained in IEC61850-7-4 are required to generate the document automatically. Package IEC61850_5::Functions is also required to generate IEC61850-7-4, but is not shown here.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,594 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = WG10::IEC61850_7_4->WG10::IEC61850_7_2, _objData=UmlObjectData [id=2896, uuid={601FCB98-A23F-4bb9-9093-C5EB70806F8B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,594 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = WG10::IEC61850_7_4->WG10::IEC61850_7_3, _objData=UmlObjectData [id=2897, uuid={5A68C091-F611-4fb1-91BF-9B547D41800A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,594 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->WG10::IEC61850_7_4, _objData=UmlObjectData [id=3439, uuid={E2817A04-CD9C-40de-8B67-F4454ADA8AB4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,594 [main] DEBUG PackageBuilder - Updated target of package dependency DependencyBuilder [_kind=PACKAGE, qName = WG10::IEC61850_7_3->WG10::IEC61850_7_4, _objData=UmlObjectData [id=3445, uuid={59C2B380-F257-47a2-9628-193034DD739F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,594 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = WG10::IEC61850_7_4->null, _objData=UmlObjectData [id=3451, uuid={B8B9C543-69FC-4204-9AA3-FDDAAAD9C3EF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,595 [main] TRACE ClassBuilder - Class IEC61850_7_4Namespace (0 in package IEC61850_7_4) +2024-09-07 12:38:48,595 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61850_7_4::IEC61850_7_4Namespace, _objData=UmlObjectData [id=6702, uuid={6527593D-CDA0-4903-8ABF-513B14D57D7E}, since=null, name=name, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=IEC61850-7-4:2009A, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,595 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61850_7_4::IEC61850_7_4Namespace, _objData=UmlObjectData [id=3313, uuid={297A50AD-D312-4db9-91AC-4AB583AB4C61}, since=null, name=id, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=IEC61850-7-4, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,595 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61850_7_4::IEC61850_7_4Namespace, _objData=UmlObjectData [id=3314, uuid={57E389F5-DA9F-44fa-BF8F-A75E17BA3A9C}, since=null, name=version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2009, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,595 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61850_7_4::IEC61850_7_4Namespace, _objData=UmlObjectData [id=3315, uuid={371CE8BB-CE62-4896-B315-2FC5882E6E96}, since=null, name=revision, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=A, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,595 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61850_7_4::IEC61850_7_4Namespace, _objData=UmlObjectData [id=3316, uuid={19D2D8C1-58E8-4bb8-A010-3E816E9BB6A7}, since=null, name=date, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2011-08-01, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,596 [main] TRACE ClassBuilder - read from EA: IEC61850_7_4::IEC61850_7_4Namespace +2024-09-07 12:38:48,596 [main] INFO PackageBuilder - processing package Abbreviations (2) ... +2024-09-07 12:38:48,597 [main] ERROR EaTables - [+++ EA ordering problem for 2 class(s) in Abbreviations (manually move back/forth a class to initiate EA internal ordering update!): +, +++ class AbbrTermAny: pos = 0 +, +++ class AbbrTermZ: pos = 0 DUPLICATE +] +2024-09-07 12:38:48,597 [main] TRACE ClassBuilder - Class AbbrTermAny (0 in package Abbreviations) +2024-09-07 12:38:48,597 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abbreviations::AbbrTermAny, _objData=UmlObjectData [id=4656, uuid={DB31AFEA-95CB-4f26-851B-C6845001F6A1}, since=null, name=A, alias=, stereotype=enum, visibility=public, txtDescription='Current', htmlDescription='

Current

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,597 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abbreviations::AbbrTermAny, _objData=UmlObjectData [id=4669, uuid={8FEF349C-B8A3-4472-AA7A-25B33DD6504C}, since=null, name=Alm, alias=, stereotype=enum, visibility=public, txtDescription='Alarm', htmlDescription='

Alarm

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,597 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abbreviations::AbbrTermAny, _objData=UmlObjectData [id=4670, uuid={6802A396-10CF-4962-9B8D-234241010FB0}, since=null, name=Amp, alias=, stereotype=enum, visibility=public, txtDescription='Current non-phase-related', htmlDescription='

Current non-phase-related

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,597 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abbreviations::AbbrTermAny, _objData=UmlObjectData [id=5118, uuid={6D8C6E2C-0BE4-4fa0-84E6-245887A91960}, since=null, name=Z, alias=, stereotype=enum, visibility=public, txtDescription='Impedance', htmlDescription='

Impedance

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,597 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abbreviations::AbbrTermAny, _objData=UmlObjectData [id=5120, uuid={8BE86F70-CEF5-44f5-B0DB-FBF9CFB13D99}, since=null, name=Z1, alias=, stereotype=enum, visibility=public, txtDescription='Positive sequence impedance', htmlDescription='

Positive sequence impedance

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,598 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abbreviations::AbbrTermAny, _objData=UmlObjectData [id=6659, uuid={8D280E43-C576-4d95-935C-6E530468F36F}, since=null, name=aDummy, alias=, stereotype=enum, visibility=public, txtDescription='Dummy lower-case term.', htmlDescription='

Dummy lower-case term.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,598 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abbreviations::AbbrTermAny, _objData=UmlObjectData [id=6660, uuid={B809BFED-578C-4b26-8C61-FED747E2A4DD}, since=null, name=ppm, alias=, stereotype=enum, visibility=public, txtDescription='ppm', htmlDescription='

ppm

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,598 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abbreviations::AbbrTermAny, _objData=UmlObjectData [id=6661, uuid={5C1D9A82-2A47-462d-A1D9-C380BD2030D2}, since=null, name=km, alias=, stereotype=enum, visibility=public, txtDescription='Kilometer', htmlDescription='

Kilometer

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,598 [main] TRACE ClassBuilder - read from EA: Abbreviations::AbbrTermAny +2024-09-07 12:38:48,598 [main] TRACE ClassBuilder - Class AbbrTermZ (0 in package Abbreviations) +2024-09-07 12:38:48,599 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abbreviations::AbbrTermZ, _objData=UmlObjectData [id=5119, uuid={2C408652-0CD1-4f36-9DFA-D77659E3BBEB}, since=null, name=Z0, alias=, stereotype=enum, visibility=public, txtDescription='Zero sequence impedance', htmlDescription='

Zero sequence impedance

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,599 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abbreviations::AbbrTermZ, _objData=UmlObjectData [id=5123, uuid={F07FBC36-F939-4600-ADDC-9CBE7ECE7805}, since=null, name=Zro, alias=, stereotype=enum, visibility=public, txtDescription='Zero sequence method', htmlDescription='

Zero sequence method

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,599 [main] TRACE ClassBuilder - read from EA: Abbreviations::AbbrTermZ +2024-09-07 12:38:48,599 [main] INFO PackageBuilder - processing package DetailedDiagrams (0) ... +2024-09-07 12:38:48,599 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=DetailedDiagrams, _objData=UmlObjectData [id=274, uuid={078C1121-0816-48b8-9FBD-88404F5CB846}, since=null, name=AbbreviationsA-O, alias=, stereotype=, visibility=public, txtDescription='Abbreviations (A-O) used to create names of data objects within logical nodes.', htmlDescription='

Abbreviations (A-O) used to create names of data objects within logical nodes.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,600 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Abbreviations, _depth=3, _eaElementID=3043, _objData=UmlObjectData [id=167, uuid={E0A5EC9F-B83F-4cb0-A4D3-B089CBBF0467}, since=null, name=DetailedDiagrams, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=DetailedDiagrams, _objData=UmlObjectData [id=274, uuid={078C1121-0816-48b8-9FBD-88404F5CB846}, since=null, name=AbbreviationsA-O, alias=, stereotype=, visibility=public, txtDescription='Abbreviations (A-O) used to create names of data objects within logical nodes.', htmlDescription='

Abbreviations (A-O) used to create names of data objects within logical nodes.

'], _portrait=true, _kind=LOGICAL]] +2024-09-07 12:38:48,600 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_4, _depth=2, _eaElementID=2330, _objData=UmlObjectData [id=131, uuid={18FE7477-F22D-4936-90FF-AC0956DBE9EB}, since=null, name=Abbreviations, alias=Abbreviated terms, stereotype=, visibility=public, txtDescription='The following terms are used to build concatenated data object names. For example, ChNum is constructed by using two terms "Ch" which stands for "Channel" and "Num" which stands for "Number". Thus the concatenated name represents a "channel number".', htmlDescription='

The following terms are used to build concatenated data object names. For example, ChNum is constructed by using two terms "Ch" which stands for "Channel" and "Num" which stands for "Number". Thus the concatenated name represents a "channel number".

'], _modelId=58, _selfDependent=false, _classes=2, _childPackages=1] +2024-09-07 12:38:48,600 [main] INFO PackageBuilder - processing package Functions (3) ... +2024-09-07 12:38:48,601 [main] INFO PackageBuilder - processing package ProtectionEq (1) ... +2024-09-07 12:38:48,601 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=ProtectionEq, _objData=UmlObjectData [id=276, uuid={AAE06D8B-8D39-45e1-8B2E-518C8AAB94CC}, since=null, name=ProtectionEq, alias=, stereotype=, visibility=public, txtDescription='Overview of relations between protection functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).', htmlDescription='

Overview of relations between protection functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,602 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = Functions::ProtectionEq->null, _objData=UmlObjectData [id=2796, uuid={5B01DA92-2B41-4efd-9319-7B4B6E111957}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,602 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = Functions::ProtectionEq->null, _objData=UmlObjectData [id=2797, uuid={22C10575-60D8-4d36-9D17-44F610D9BC33}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,602 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2362, uuid={E011FC6A-3D65-49f6-B8DF-958F54773350}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling notes: +- In two cases, we did not create function (RDIR, directional element, and RMXU, differential measurements), but provide dependencies of other functions to the 61850-7-4 RDIR and RMXU directly. +- The supertype "CurrentRelay61850" has been created for the needs of mapping to CIM model only and is ignored for 61850. +- Classes in violet (temporarily) are those that have unicode hex-numbers in their iecRef tag - we'll change the colour to white after the tool gets support for correct displaying of those unicode numbers. +Modelling notes 2: +- PowerOverspeed is called POWS in 61850-5, but has no LN in 61850-7-4. +- Synchrocheck (RSYN, 25) is defined twice in 61850-5 (in P and in R). +- RPSB (PowerSwingBlockingProt) has the same IEEE ref and definition like PPAM (PhaseAngleOrOutOfStepProt).', htmlDescription='

Modelling notes:

  • In two cases, we did not create function (RDIR, directional element, and RMXU, differential measurements), but provide dependencies of other functions to the 61850-7-4 RDIR and RMXU directly.
  • The supertype "CurrentRelay61850" has been created for the needs of mapping to CIM model only and is ignored for 61850.
  • Classes in violet (temporarily) are those that have unicode hex-numbers in their iecRef tag - we'll change the colour to white after the tool gets support for correct displaying of those unicode numbers.

Modelling notes 2:

  • PowerOverspeed is called POWS in 61850-5, but has no LN in 61850-7-4.
  • Synchrocheck (RSYN, 25) is defined twice in 61850-5 (in P and in R).
  • RPSB (PowerSwingBlockingProt) has the same IEEE ref and definition like PPAM (PhaseAngleOrOutOfStepProt).
'], _containingPackage=ProtectionEq, _otherEndName=] +2024-09-07 12:38:48,603 [main] TRACE ClassBuilder - Class BusbarProt (6 in package ProtectionEq) +2024-09-07 12:38:48,603 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = ProtectionEq::BusbarProt->null, _objData=UmlObjectData [id=2888, uuid={666DE986-59DC-40fa-9FF2-C90F6F83395B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,603 [main] TRACE ClassBuilder - read from EA: ProtectionEq::BusbarProt +2024-09-07 12:38:48,603 [main] TRACE ClassBuilder - Class DirectionalProt (12 in package ProtectionEq) +2024-09-07 12:38:48,604 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = ProtectionEq::DirectionalProt->null, _objData=UmlObjectData [id=2876, uuid={1D8C878B-9F8C-4292-A1AD-714B0D1A64F0}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,604 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = ProtectionEq::DirectionalProt->null, _objData=UmlObjectData [id=3401, uuid={EE87DADE-74B8-44be-9DFA-6D6A6425C350}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,604 [main] TRACE ClassBuilder - read from EA: ProtectionEq::DirectionalProt +2024-09-07 12:38:48,604 [main] TRACE ClassBuilder - Class DirectionalPowerProt (13 in package ProtectionEq) +2024-09-07 12:38:48,605 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = ProtectionEq::DirectionalPowerProt->null, _objData=UmlObjectData [id=2872, uuid={DD4B3FA8-B91D-4755-89D6-176AA40B2C8A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,605 [main] TRACE ClassBuilder - read from EA: ProtectionEq::DirectionalPowerProt +2024-09-07 12:38:48,605 [main] TRACE ClassBuilder - Class LineDifferentialProt (23 in package ProtectionEq) +2024-09-07 12:38:48,605 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = ProtectionEq::LineDifferentialProt->null, _objData=UmlObjectData [id=2849, uuid={DA0D3EC5-D7E4-421c-B2B4-821CAC8B845A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,605 [main] TRACE ClassBuilder - read from EA: ProtectionEq::LineDifferentialProt +2024-09-07 12:38:48,607 [main] TRACE ClassBuilder - Class PowerFactorProt (32 in package ProtectionEq) +2024-09-07 12:38:48,607 [main] TRACE ClassBuilder - read from EA: ProtectionEq::PowerFactorProt +2024-09-07 12:38:48,607 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Functions, _depth=3, _eaElementID=2361, _objData=UmlObjectData [id=133, uuid={CC31C623-D0D5-4dd4-9355-2765A359BC33}, since=null, name=ProtectionEq, alias=Protection functions, stereotype=, visibility=public, txtDescription='IEC61850-7-4: groups P, R. +IEC61850-5: clause 8.7.1, 8.7.2.', htmlDescription='

IEC61850-7-4: groups P, R.

IEC61850-5: clause 8.7.1, 8.7.2.

'], _modelId=58, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2362, uuid={E011FC6A-3D65-49f6-B8DF-958F54773350}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling notes: +- In two cases, we did not create function (RDIR, directional element, and RMXU, differential measurements), but provide dependencies of other functions to the 61850-7-4 RDIR and RMXU directly. +- The supertype "CurrentRelay61850" has been created for the needs of mapping to CIM model only and is ignored for 61850. +- Classes in violet (temporarily) are those that have unicode hex-numbers in their iecRef tag - we'll change the colour to white after the tool gets support for correct displaying of those unicode numbers. +Modelling notes 2: +- PowerOverspeed is called POWS in 61850-5, but has no LN in 61850-7-4. +- Synchrocheck (RSYN, 25) is defined twice in 61850-5 (in P and in R). +- RPSB (PowerSwingBlockingProt) has the same IEEE ref and definition like PPAM (PhaseAngleOrOutOfStepProt).', htmlDescription='

Modelling notes:

  • In two cases, we did not create function (RDIR, directional element, and RMXU, differential measurements), but provide dependencies of other functions to the 61850-7-4 RDIR and RMXU directly.
  • The supertype "CurrentRelay61850" has been created for the needs of mapping to CIM model only and is ignored for 61850.
  • Classes in violet (temporarily) are those that have unicode hex-numbers in their iecRef tag - we'll change the colour to white after the tool gets support for correct displaying of those unicode numbers.

Modelling notes 2:

  • PowerOverspeed is called POWS in 61850-5, but has no LN in 61850-7-4.
  • Synchrocheck (RSYN, 25) is defined twice in 61850-5 (in P and in R).
  • RPSB (PowerSwingBlockingProt) has the same IEEE ref and definition like PPAM (PhaseAngleOrOutOfStepProt).
'], _containingPackage=ProtectionEq, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=ProtectionEq, _objData=UmlObjectData [id=276, uuid={AAE06D8B-8D39-45e1-8B2E-518C8AAB94CC}, since=null, name=ProtectionEq, alias=, stereotype=, visibility=public, txtDescription='Overview of relations between protection functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).', htmlDescription='

Overview of relations between protection functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=2, _classes=5 +2024-09-07 12:38:48,608 [main] INFO PackageBuilder - processing package ControlEq (2) ... +2024-09-07 12:38:48,608 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=ControlEq, _objData=UmlObjectData [id=277, uuid={67D0A185-B526-46a0-BD98-E5FF9C802050}, since=null, name=ControlEq, alias=, stereotype=, visibility=public, txtDescription='Overview of relations between control functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).', htmlDescription='

Overview of relations between control functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,608 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = Functions::ControlEq->null, _objData=UmlObjectData [id=2780, uuid={CB8A7C56-CC80-40db-9240-39C0BC8FCF3A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,608 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = Functions::ControlEq->null, _objData=UmlObjectData [id=2781, uuid={BC522B12-05AB-4532-A2CA-EC73B8363658}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,608 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = Functions::ControlEq->null, _objData=UmlObjectData [id=2782, uuid={8390B365-348E-4e04-966A-68665FB8F8F6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,609 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2419, uuid={8B884C42-85F3-4dd6-BE1D-08B251F8B706}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: +61850-5 defines CILO (Interlocking) twice: in P and in C sub-clauses. We keep the more comprehensive (C) definition in one place.', htmlDescription='

Modelling note:

61850-5 defines CILO (Interlocking) twice: in P and in C sub-clauses. We keep the more comprehensive (C) definition in one place.

'], _containingPackage=ControlEq, _otherEndName=] +2024-09-07 12:38:48,609 [main] TRACE ClassBuilder - Class AlarmHandler (0 in package ControlEq) +2024-09-07 12:38:48,610 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = ControlEq::AlarmHandler->null, _objData=UmlObjectData [id=2795, uuid={D1DB0DF8-3CC9-4c3e-84B5-B1A6AFDFB19B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,610 [main] TRACE ClassBuilder - read from EA: ControlEq::AlarmHandler +2024-09-07 12:38:48,610 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Functions, _depth=3, _eaElementID=2418, _objData=UmlObjectData [id=134, uuid={B4C6979B-468E-486a-A2F8-E066A73DABC7}, since=null, name=ControlEq, alias=Control functions, stereotype=, visibility=public, txtDescription='IEC61850-7-4: groups C, A (some P and G). +IEC61850-5: clause 8.8.1, 8.8.3.', htmlDescription='

IEC61850-7-4: groups C, A (some P and G).

IEC61850-5: clause 8.8.1, 8.8.3.

'], _modelId=58, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2419, uuid={8B884C42-85F3-4dd6-BE1D-08B251F8B706}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: +61850-5 defines CILO (Interlocking) twice: in P and in C sub-clauses. We keep the more comprehensive (C) definition in one place.', htmlDescription='

Modelling note:

61850-5 defines CILO (Interlocking) twice: in P and in C sub-clauses. We keep the more comprehensive (C) definition in one place.

'], _containingPackage=ControlEq, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=ControlEq, _objData=UmlObjectData [id=277, uuid={67D0A185-B526-46a0-BD98-E5FF9C802050}, since=null, name=ControlEq, alias=, stereotype=, visibility=public, txtDescription='Overview of relations between control functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).', htmlDescription='

Overview of relations between control functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=3, _classes=1 +2024-09-07 12:38:48,610 [main] INFO PackageBuilder - processing package MeasurementsAndMetering (5) ... +2024-09-07 12:38:48,610 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=MeasurementsAndMetering, _objData=UmlObjectData [id=280, uuid={F63C5BE7-8D4F-4037-A98E-93A41FFE8E55}, since=null, name=MeasurementsAndMetering, alias=, stereotype=, visibility=public, txtDescription='Overview of relations between measurement and metering functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).', htmlDescription='

Overview of relations between measurement and metering functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,610 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = Functions::MeasurementsAndMetering->null, _objData=UmlObjectData [id=2742, uuid={CC5085F3-A137-4156-AC8A-24B9D984F2EC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,611 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2451, uuid={E9622742-71B7-43fd-9AB4-D3130C376E8C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling notes: +- We have split Measurement, Meter, Harmonics and interharmonics, and Environmental measurement into explicit concepts, to make their difference obvious (since they are realised by different LNs). +- In IEC61850-5, power quality functions are a separate clause.', htmlDescription='

Modelling notes:

  • We have split Measurement, Meter, Harmonics and interharmonics, and Environmental measurement into explicit concepts, to make their difference obvious (since they are realised by different LNs).
  • In IEC61850-5, power quality functions are a separate clause.
'], _containingPackage=MeasurementsAndMetering, _otherEndName=] +2024-09-07 12:38:48,611 [main] TRACE ClassBuilder - Class ThreePhaseMeasurement (0 in package MeasurementsAndMetering) +2024-09-07 12:38:48,611 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = MeasurementsAndMetering::ThreePhaseMeasurement->null, _objData=UmlObjectData [id=2748, uuid={58E9D6B7-D856-4627-A9CD-FFB197524811}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,611 [main] TRACE ClassBuilder - read from EA: MeasurementsAndMetering::ThreePhaseMeasurement +2024-09-07 12:38:48,612 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Functions, _depth=3, _eaElementID=2450, _objData=UmlObjectData [id=137, uuid={762C49D7-5396-40df-AF24-E06C6F1D6D68}, since=null, name=MeasurementsAndMetering, alias=Measuring and metering functions, stereotype=, visibility=public, txtDescription='IEC61850-7-4: groups M, Q. +IEC61850-5: clause 8.8.5, 8.8.6.', htmlDescription='

IEC61850-7-4: groups M, Q.

IEC61850-5: clause 8.8.5, 8.8.6.

'], _modelId=58, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2451, uuid={E9622742-71B7-43fd-9AB4-D3130C376E8C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling notes: +- We have split Measurement, Meter, Harmonics and interharmonics, and Environmental measurement into explicit concepts, to make their difference obvious (since they are realised by different LNs). +- In IEC61850-5, power quality functions are a separate clause.', htmlDescription='

Modelling notes:

  • We have split Measurement, Meter, Harmonics and interharmonics, and Environmental measurement into explicit concepts, to make their difference obvious (since they are realised by different LNs).
  • In IEC61850-5, power quality functions are a separate clause.
'], _containingPackage=MeasurementsAndMetering, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=MeasurementsAndMetering, _objData=UmlObjectData [id=280, uuid={F63C5BE7-8D4F-4037-A98E-93A41FFE8E55}, since=null, name=MeasurementsAndMetering, alias=, stereotype=, visibility=public, txtDescription='Overview of relations between measurement and metering functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).', htmlDescription='

Overview of relations between measurement and metering functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=1, _classes=1 +2024-09-07 12:38:48,612 [main] INFO PackageBuilder - processing package SystemWide (6) ... +2024-09-07 12:38:48,612 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=SystemWide, _objData=UmlObjectData [id=281, uuid={A35E2C46-366F-432c-A641-28D8BAD7D922}, since=null, name=SystemWide, alias=, stereotype=, visibility=public, txtDescription='Overview of relations between system-wide functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).', htmlDescription='

Overview of relations between system-wide functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,612 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = Functions::SystemWide->null, _objData=UmlObjectData [id=2730, uuid={D14B5B90-8C79-4598-A45C-DAD660474084}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,612 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = Functions::SystemWide->null, _objData=UmlObjectData [id=2731, uuid={0ABB3171-2EAE-446b-B81C-098AD39433C9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,612 [main] TRACE ClassBuilder - Class LogicalDeviceData (4 in package SystemWide) +2024-09-07 12:38:48,613 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = SystemWide::LogicalDeviceData->null, _objData=UmlObjectData [id=2738, uuid={A065F8ED-0114-4e46-8A81-404C86385F2A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,613 [main] TRACE ClassBuilder - read from EA: SystemWide::LogicalDeviceData +2024-09-07 12:38:48,613 [main] TRACE ClassBuilder - Class PhysicalDeviceData (6 in package SystemWide) +2024-09-07 12:38:48,614 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = SystemWide::PhysicalDeviceData->null, _objData=UmlObjectData [id=2735, uuid={E0D934B8-520F-44c2-9AF8-B3B81C663ABF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,614 [main] TRACE ClassBuilder - read from EA: SystemWide::PhysicalDeviceData +2024-09-07 12:38:48,614 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Functions, _depth=3, _eaElementID=2470, _objData=UmlObjectData [id=138, uuid={26D07281-1EB3-4a50-AB7A-51B9DA70BC2E}, since=null, name=SystemWide, alias=System-wide functions, stereotype=, visibility=public, txtDescription='IEC61850-7-4: group L (some G), annex D. +IEC61850-5: clause 8.9, 8.10, 8.11.', htmlDescription='

IEC61850-7-4: group L (some G), annex D.

IEC61850-5: clause 8.9, 8.10, 8.11.

'], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=SystemWide, _objData=UmlObjectData [id=281, uuid={A35E2C46-366F-432c-A641-28D8BAD7D922}, since=null, name=SystemWide, alias=, stereotype=, visibility=public, txtDescription='Overview of relations between system-wide functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).', htmlDescription='

Overview of relations between system-wide functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=2, _classes=2 +2024-09-07 12:38:48,614 [main] INFO PackageBuilder - processing package PrimaryEq (7) ... +2024-09-07 12:38:48,614 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=PrimaryEq, _objData=UmlObjectData [id=282, uuid={B463DCB4-0C4A-4ce6-8BBB-FFB3955B7D76}, since=null, name=PrimaryEq, alias=, stereotype=, visibility=public, txtDescription='Overview of relations between primary equipment functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).', htmlDescription='

Overview of relations between primary equipment functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,615 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = Functions::PrimaryEq->null, _objData=UmlObjectData [id=2665, uuid={FD1D4851-6E6B-4b6e-B70D-5845E5626820}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,615 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = Functions::PrimaryEq->null, _objData=UmlObjectData [id=2670, uuid={0CE7939E-BB12-453e-A921-2F7AC739D7F0}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,616 [main] ERROR EaTables - [+++ EA ordering problem for 2 class(s) in PrimaryEq (manually move back/forth a class to initiate EA internal ordering update!): +, +++ class AuxiliaryNetwork: pos = 0 +, +++ class GenericIO: pos = 0 DUPLICATE +] +2024-09-07 12:38:48,616 [main] TRACE ClassBuilder - Class AuxiliaryNetwork (0 in package PrimaryEq) +2024-09-07 12:38:48,616 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = PrimaryEq::AuxiliaryNetwork->null, _objData=UmlObjectData [id=2727, uuid={71C8F66D-33AE-4d0c-8B16-EE0E777397A2}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,616 [main] TRACE ClassBuilder - read from EA: PrimaryEq::AuxiliaryNetwork +2024-09-07 12:38:48,616 [main] TRACE ClassBuilder - Class GenericIO (0 in package PrimaryEq) +2024-09-07 12:38:48,617 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = PrimaryEq::GenericIO->null, _objData=UmlObjectData [id=2713, uuid={974BA3EA-23AA-4b70-8964-EA8FD90B4327}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,617 [main] TRACE ClassBuilder - read from EA: PrimaryEq::GenericIO +2024-09-07 12:38:48,617 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Functions, _depth=3, _eaElementID=2483, _objData=UmlObjectData [id=139, uuid={B932ABA6-66E2-4b24-999D-953BAB28FBE0}, since=null, name=PrimaryEq, alias=Primary equipment functions, stereotype=, visibility=public, txtDescription='IEC61850-7-4: groups X, S, T, Y, Z. +IEC61850-5: clause 8.12.', htmlDescription='

IEC61850-7-4: groups X, S, T, Y, Z.

IEC61850-5: clause 8.12.

'], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=PrimaryEq, _objData=UmlObjectData [id=282, uuid={B463DCB4-0C4A-4ce6-8BBB-FFB3955B7D76}, since=null, name=PrimaryEq, alias=, stereotype=, visibility=public, txtDescription='Overview of relations between primary equipment functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).', htmlDescription='

Overview of relations between primary equipment functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=2, _classes=2 +2024-09-07 12:38:48,617 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_4, _depth=2, _eaElementID=2360, _objData=UmlObjectData [id=132, uuid={12880302-6F76-4cde-A027-F5E26FE47C00}, since=null, name=Functions, alias=Relationship between this standard and IEC 61850-5, stereotype=, visibility=public, txtDescription='This subclause presents the mappings between the logical nodes defined in IEC61850-5 (as functional requirements) and the concrete logical nodes in this IEC 61850-7-4, in form of table. +The meaning of the table columns is as follows: +- Functionality: Domain concept represented by the function. +- IEEE C37.2: Device function numbers and contact designations used in IEEE C37.2-2008, if applicable. Note that the reference to the IEEE device number does not mean the related device, but its core functionality in the context of the IEC 61850. Because of their device related definition there is not always a 1:1 relation to the function related definition of logical nodes. +- IEC 60617: Alphanumeric representation of graphical symbols according to IEC 60617, if applicable. +- LN IEC 61850-5: "requirements" logical node designation. +- LN IEC 61850-7-4: Standard (concrete) logical node designation. Note that mappings may not be one-to-one. +- Description: slightly modified description of the IEEE device number if applicable, or/and other descriptive text.', htmlDescription='

This subclause presents the mappings between the logical nodes defined in IEC61850-5 (as functional requirements) and the concrete logical nodes in this IEC 61850-7-4, in form of table.

The meaning of the table columns is as follows:

  • Functionality: Domain concept represented by the function.
  • IEEE C37.2: Device function numbers and contact designations used in IEEE C37.2-2008, if applicable. Note that the reference to the IEEE device number does not mean the related device, but its core functionality in the context of the IEC 61850. Because of their device related definition there is not always a 1:1 relation to the function related definition of logical nodes.
  • IEC 60617: Alphanumeric representation of graphical symbols according to IEC 60617, if applicable.
  • LN IEC 61850-5: "requirements" logical node designation.
  • LN IEC 61850-7-4: Standard (concrete) logical node designation. Note that mappings may not be one-to-one.
  • Description: slightly modified description of the IEEE device number if applicable, or/and other descriptive text.
'], _modelId=58, _selfDependent=false, _childPackages=5] +2024-09-07 12:38:48,617 [main] INFO PackageBuilder - processing package DOEnums (4) ... +2024-09-07 12:38:48,618 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=DOEnums, _objData=UmlObjectData [id=284, uuid={9C6AB80C-57AC-4a99-8EE8-D6B0728EF6E9}, since=null, name=DOEnums-1, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the first part of explicit enumerated types defined in 61850-7-4.', htmlDescription='

This diagram shows the first part of explicit enumerated types defined in 61850-7-4.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,618 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_4::DOEnums, _objData=UmlObjectData [id=2611, uuid={8EADFEEC-3679-4f92-938E-AC59BFA38B37}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,619 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2554, uuid={74ED9607-D187-49a7-AC82-2F437068C3F1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Doc says unspecified is default. This must be put on data object that uses it, unless there is an agreement that all first (=1) literals are default.', htmlDescription='

TODO: Doc says unspecified is default. This must be put on data object that uses it, unless there is an agreement that all first (=1) literals are default.

'], _containingPackage=DOEnums, _otherEndName=] +2024-09-07 12:38:48,619 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2555, uuid={7297D74B-7585-4cbe-AE50-BD9A22D99287}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling notes 1: +- In white, the enums for LNs from Ed.1 the way they have been modelled in 2003/2004 (and updated to reflect Ed.2). These concepts appeared in Ed.1 implicitly in section 6 (Data name semantics) of IEC 61850-7-4). The types are used to restrict the possible values that some INT32 attributes of Common Data Classes INS, INC or ING can take. +- In green, new ones from Ed.2. +- We have given meaningful names for types, based on the description. By convention, "Kind" is appended for all enumerated types, to distinguish them from their DA (data attribute) counterparts (this follows CIM naming rules). +- Enumeration literal strings are literally copy-pasted from IEC 61850-7-4 (so they correspond to definitions in SCL2.0). +Modelling notes 2: +- In SCL, EnumType-s are not XML enumerations (i.e., they are not defined as types that restrict string), but rather have an id attribute that mainly refers to the name of attribute that has those literals as possible value range - but not always! (see orCategory, used for orCat attribute). +- SCL defines one element (EnumType) per data object of LN, so there are in some cases two or more EnumType-s with exactly same literals, but different id. +- At present, we store that id attribute in the EA tagged value of enumeration (class). In cases there is repetition, this string will be a comma-separated list of SCL id-s. +- The order of types in the diagrams and in the EA project browser is the one as in Ed.2 Annex H, to be able to compare the original with this model.', htmlDescription='

Modelling notes 1:

  • In white, the enums for LNs from Ed.1 the way they have been modelled in 2003/2004 (and updated to reflect Ed.2). These concepts appeared in Ed.1 implicitly in section 6 (Data name semantics) of IEC 61850-7-4). The types are used to restrict the possible values that some INT32 attributes of Common Data Classes INS, INC or ING can take.
  • In green, new ones from Ed.2.
  • We have given meaningful names for types, based on the description. By convention, "Kind" is appended for all enumerated types, to distinguish them from their DA (data attribute) counterparts (this follows CIM naming rules).
  • Enumeration literal strings are literally copy-pasted from IEC 61850-7-4 (so they correspond to definitions in SCL2.0).

Modelling notes 2:

  • In SCL, EnumType-s are not XML enumerations (i.e., they are not defined as types that restrict string), but rather have an id attribute that mainly refers to the name of attribute that has those literals as possible value range - but not always! (see orCategory, used for orCat attribute).
  • SCL defines one element (EnumType) per data object of LN, so there are in some cases two or more EnumType-s with exactly same literals, but different id.
  • At present, we store that id attribute in the EA tagged value of enumeration (class). In cases there is repetition, this string will be a comma-separated list of SCL id-s.
  • The order of types in the diagrams and in the EA project browser is the one as in Ed.2 Annex H, to be able to compare the original with this model.
'], _containingPackage=DOEnums, _otherEndName=] +2024-09-07 12:38:48,619 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2556, uuid={63CF33D2-A70F-4049-98D4-82A4BA7BBB2D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: duplicate type for Mod and Beh - we use this one.', htmlDescription='

TODO: duplicate type for Mod and Beh - we use this one.

'], _containingPackage=DOEnums, _otherEndName=] +2024-09-07 12:38:48,619 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2563, uuid={02F8EA97-A4A4-4a9e-AEB0-D11FCFDD6540}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='[wg10-0234] 2 enums: CycTrMod (with first 3 literals, in text) and TrMod (with all 4 literals, using numbers). Here is single enum, like TrMod. Do we however need the two?', htmlDescription='

[wg10-0234] 2 enums: CycTrMod (with first 3 literals, in text) and TrMod (with all 4 literals, using numbers). Here is single enum, like TrMod. Do we however need the two?

'], _containingPackage=DOEnums, _otherEndName=] +2024-09-07 12:38:48,619 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2615, uuid={A6F875C8-26D2-4bf0-A5B5-DA541B8C9205}, since=null, name=$diagram://{0D26B081-293D-4b46-BF1C-0EDBD3055405}, alias=, stereotype=, visibility=public, txtDescription='DOEnums :DOEnums-3', htmlDescription='

DOEnums :DOEnums-3

'], _containingPackage=DOEnums, _otherEndName=] +2024-09-07 12:38:48,619 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2617, uuid={FA4722F2-B1BD-4ffd-9207-CD9D874F6B06}, since=null, name=LogicalNodeEnums :DOEnums-2, alias=, stereotype=, visibility=public, txtDescription='DOEnums :DOEnums-2', htmlDescription='

DOEnums :DOEnums-2

'], _containingPackage=DOEnums, _otherEndName=] +2024-09-07 12:38:48,619 [main] TRACE ClassBuilder - Class HealthKind (1 in package DOEnums) +2024-09-07 12:38:48,620 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::HealthKind, _objData=UmlObjectData [id=5150, uuid={A83AE529-BD5E-4590-BA53-C4365C995224}, since=null, name=Ok, alias=, stereotype=enum, visibility=public, txtDescription='No problems, normal operation ("green").', htmlDescription='

No problems, normal operation ("green").

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,620 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::HealthKind, _objData=UmlObjectData [id=5151, uuid={CF205A3A-45F4-4a4d-A415-331FD7BBA2F4}, since=null, name=Warning, alias=, stereotype=enum, visibility=public, txtDescription='Minor problems, but in safe operating mode ("yellow"). The exact meaning is a local issue, depending on the dedicated function/device.', htmlDescription='

Minor problems, but in safe operating mode ("yellow"). The exact meaning is a local issue, depending on the dedicated function/device.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,620 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::HealthKind, _objData=UmlObjectData [id=5152, uuid={4F6F1D0C-B192-4e03-9C10-90B88DC99D90}, since=null, name=Alarm, alias=, stereotype=enum, visibility=public, txtDescription='Severe problem, no operation possible ("red").', htmlDescription='

Severe problem, no operation possible ("red").

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,620 [main] TRACE ClassBuilder - read from EA: DOEnums::HealthKind +2024-09-07 12:38:48,620 [main] TRACE ClassBuilder - Class BehaviourModeKind (2 in package DOEnums) +2024-09-07 12:38:48,620 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::BehaviourModeKind, _objData=UmlObjectData [id=5124, uuid={FBE701F9-FCE5-43bf-B990-08ABA81BB67E}, since=null, name=on, alias=, stereotype=enum, visibility=public, txtDescription='Normal enabled state.', htmlDescription='

Normal enabled state.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,620 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::BehaviourModeKind, _objData=UmlObjectData [id=5125, uuid={0A9F8C1A-93E4-4d68-98D2-F4CED3D13B60}, since=null, name=on-blocked, alias=, stereotype=enum, visibility=public, txtDescription='Process is passively supervised.', htmlDescription='

Process is passively supervised.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,620 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::BehaviourModeKind, _objData=UmlObjectData [id=5126, uuid={7F0E8F8E-38F6-4195-A912-64FEF394A338}, since=null, name=test, alias=, stereotype=enum, visibility=public, txtDescription='Function is operated but results are indicated as test results.', htmlDescription='

Function is operated but results are indicated as test results.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,620 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::BehaviourModeKind, _objData=UmlObjectData [id=5127, uuid={004E6B35-666A-4bfc-8D09-A8C1FD0702F9}, since=null, name=test/blocked, alias=, stereotype=enum, visibility=public, txtDescription='Function is operated in test mode, but with no impact to the process.', htmlDescription='

Function is operated in test mode, but with no impact to the process.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,620 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::BehaviourModeKind, _objData=UmlObjectData [id=5128, uuid={AE0B2E23-E3AA-4aa8-96DD-5F008D2B4BD4}, since=null, name=off, alias=, stereotype=enum, visibility=public, txtDescription='Function is inactive but shows its configutation capability.', htmlDescription='

Function is inactive but shows its configutation capability.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=5, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,621 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2230, uuid={5B51D714-7804-407c-B205-E3D76E9400BC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=BehaviourModeKind, _otherEndName=?] +2024-09-07 12:38:48,621 [main] TRACE ClassBuilder - read from EA: DOEnums::BehaviourModeKind +2024-09-07 12:38:48,621 [main] TRACE ClassBuilder - Class CalcMethodKind (3 in package DOEnums) +2024-09-07 12:38:48,621 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::CalcMethodKind, _objData=UmlObjectData [id=5140, uuid={87CA6D1D-F8DE-4372-B851-A3F4D44A8D35}, since=null, name=UNSPECIFIED, alias=, stereotype=enum, visibility=public, txtDescription='Calculation of the analogue values is unspecified.', htmlDescription='

Calculation of the analogue values is unspecified.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,621 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::CalcMethodKind, _objData=UmlObjectData [id=5141, uuid={2832380C-E2BE-4076-B474-EE7315763D96}, since=null, name=TRUE_RMS, alias=, stereotype=enum, visibility=public, txtDescription='All analogue values are true r.m.s. values.', htmlDescription='

All analogue values are true r.m.s. values.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,621 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::CalcMethodKind, _objData=UmlObjectData [id=5142, uuid={F494300E-3B37-4f28-AF4A-AC4A3784781F}, since=null, name=PEAK_FUNDAMENTAL, alias=, stereotype=enum, visibility=public, txtDescription='All analogue values are peak fundamental values.', htmlDescription='

All analogue values are peak fundamental values.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,621 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::CalcMethodKind, _objData=UmlObjectData [id=5143, uuid={38FEAC7E-C6FE-4f27-AEB7-D39E85819FD9}, since=null, name=RMS_FUNDAMENTAL, alias=, stereotype=enum, visibility=public, txtDescription='All analogue values are r.m.s. fundamental values.', htmlDescription='

All analogue values are r.m.s. fundamental values.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,621 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::CalcMethodKind, _objData=UmlObjectData [id=5144, uuid={8EBEABA5-8967-4617-B131-6C656E5EFF56}, since=null, name=MIN, alias=, stereotype=enum, visibility=public, txtDescription='All analogue values are minimum values.', htmlDescription='

All analogue values are minimum values.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=5, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,621 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::CalcMethodKind, _objData=UmlObjectData [id=5145, uuid={48DA99EC-341A-48ca-9BD6-A5EA5E0DCEAE}, since=null, name=MAX, alias=, stereotype=enum, visibility=public, txtDescription='All analogue values are maximum values.', htmlDescription='

All analogue values are maximum values.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=6, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,621 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::CalcMethodKind, _objData=UmlObjectData [id=5146, uuid={44A310C3-A4A1-45ec-83E3-6107258DCADF}, since=null, name=AVG, alias=, stereotype=enum, visibility=public, txtDescription='All analogue values are average values.', htmlDescription='

All analogue values are average values.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=7, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,621 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::CalcMethodKind, _objData=UmlObjectData [id=5147, uuid={2F61A346-3145-4484-9149-9336128EC27E}, since=null, name=SDV, alias=, stereotype=enum, visibility=public, txtDescription='All analogue values are standard deviation values.', htmlDescription='

All analogue values are standard deviation values.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=8, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,621 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::CalcMethodKind, _objData=UmlObjectData [id=5148, uuid={F821777C-260D-4104-98BC-C4E6AD190C1B}, since=null, name=PREDICTION, alias=, stereotype=enum, visibility=public, txtDescription='All analogue values are long term changes over time.', htmlDescription='

All analogue values are long term changes over time.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=9, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,621 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::CalcMethodKind, _objData=UmlObjectData [id=5149, uuid={E98D045F-FE91-4988-8050-38490C7BD699}, since=null, name=RATE, alias=, stereotype=enum, visibility=public, txtDescription='All analogue values are actual changes over time calculated with the actual and previous value.', htmlDescription='

All analogue values are actual changes over time calculated with the actual and previous value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=10, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,622 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2229, uuid={FD4FE164-EB08-407d-ACA5-F90EAEBAE239}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=CalcMethodKind, _otherEndName=?] +2024-09-07 12:38:48,622 [main] TRACE ClassBuilder - read from EA: DOEnums::CalcMethodKind +2024-09-07 12:38:48,622 [main] TRACE ClassBuilder - Class BaseKind (4 in package DOEnums) +2024-09-07 12:38:48,622 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::BaseKind, _objData=UmlObjectData [id=6714, uuid={F0BE5AD0-3D10-4ed4-A903-F7D80769B82C}, since=null, name=bk1, alias=, stereotype=enum, visibility=public, txtDescription='Desc bk1.', htmlDescription='

Desc bk1.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,622 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::BaseKind, _objData=UmlObjectData [id=6715, uuid={D90B7F5B-CF15-4f40-9C36-09BB31D926B2}, since=null, name=bk2, alias=, stereotype=enum, deprecated, visibility=public, txtDescription='Desc bk2.', htmlDescription='

Desc bk2.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,622 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::BaseKind, _objData=UmlObjectData [id=6716, uuid={910C7B3B-F66D-4965-B8C2-F0684BB5DA40}, since=null, name=bk3, alias=, stereotype=enum, visibility=public, txtDescription='Desc bk3.', htmlDescription='

Desc bk3.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,623 [main] TRACE ClassBuilder - read from EA: DOEnums::BaseKind +2024-09-07 12:38:48,624 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_4, _depth=2, _eaElementID=2549, _objData=UmlObjectData [id=141, uuid={C8A5511C-BE78-4e37-8AB0-DB3EB55BEAA0}, since=null, name=DOEnums, alias=, stereotype=, visibility=public, txtDescription='This subclause contains explicit definition of enumerated types used in 61850-7-4.', htmlDescription='

This subclause contains explicit definition of enumerated types used in 61850-7-4.

'], _modelId=58, _selfDependent=false, 1_taggedValues{dummyPackageTag=tagValue}, 6_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2554, uuid={74ED9607-D187-49a7-AC82-2F437068C3F1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Doc says unspecified is default. This must be put on data object that uses it, unless there is an agreement that all first (=1) literals are default.', htmlDescription='

TODO: Doc says unspecified is default. This must be put on data object that uses it, unless there is an agreement that all first (=1) literals are default.

'], _containingPackage=DOEnums, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2555, uuid={7297D74B-7585-4cbe-AE50-BD9A22D99287}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling notes 1: +- In white, the enums for LNs from Ed.1 the way they have been modelled in 2003/2004 (and updated to reflect Ed.2). These concepts appeared in Ed.1 implicitly in section 6 (Data name semantics) of IEC 61850-7-4). The types are used to restrict the possible values that some INT32 attributes of Common Data Classes INS, INC or ING can take. +- In green, new ones from Ed.2. +- We have given meaningful names for types, based on the description. By convention, "Kind" is appended for all enumerated types, to distinguish them from their DA (data attribute) counterparts (this follows CIM naming rules). +- Enumeration literal strings are literally copy-pasted from IEC 61850-7-4 (so they correspond to definitions in SCL2.0). +Modelling notes 2: +- In SCL, EnumType-s are not XML enumerations (i.e., they are not defined as types that restrict string), but rather have an id attribute that mainly refers to the name of attribute that has those literals as possible value range - but not always! (see orCategory, used for orCat attribute). +- SCL defines one element (EnumType) per data object of LN, so there are in some cases two or more EnumType-s with exactly same literals, but different id. +- At present, we store that id attribute in the EA tagged value of enumeration (class). In cases there is repetition, this string will be a comma-separated list of SCL id-s. +- The order of types in the diagrams and in the EA project browser is the one as in Ed.2 Annex H, to be able to compare the original with this model.', htmlDescription='

Modelling notes 1:

  • In white, the enums for LNs from Ed.1 the way they have been modelled in 2003/2004 (and updated to reflect Ed.2). These concepts appeared in Ed.1 implicitly in section 6 (Data name semantics) of IEC 61850-7-4). The types are used to restrict the possible values that some INT32 attributes of Common Data Classes INS, INC or ING can take.
  • In green, new ones from Ed.2.
  • We have given meaningful names for types, based on the description. By convention, "Kind" is appended for all enumerated types, to distinguish them from their DA (data attribute) counterparts (this follows CIM naming rules).
  • Enumeration literal strings are literally copy-pasted from IEC 61850-7-4 (so they correspond to definitions in SCL2.0).

Modelling notes 2:

  • In SCL, EnumType-s are not XML enumerations (i.e., they are not defined as types that restrict string), but rather have an id attribute that mainly refers to the name of attribute that has those literals as possible value range - but not always! (see orCategory, used for orCat attribute).
  • SCL defines one element (EnumType) per data object of LN, so there are in some cases two or more EnumType-s with exactly same literals, but different id.
  • At present, we store that id attribute in the EA tagged value of enumeration (class). In cases there is repetition, this string will be a comma-separated list of SCL id-s.
  • The order of types in the diagrams and in the EA project browser is the one as in Ed.2 Annex H, to be able to compare the original with this model.
'], _containingPackage=DOEnums, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2556, uuid={63CF33D2-A70F-4049-98D4-82A4BA7BBB2D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: duplicate type for Mod and Beh - we use this one.', htmlDescription='

TODO: duplicate type for Mod and Beh - we use this one.

'], _containingPackage=DOEnums, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2563, uuid={02F8EA97-A4A4-4a9e-AEB0-D11FCFDD6540}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='[wg10-0234] 2 enums: CycTrMod (with first 3 literals, in text) and TrMod (with all 4 literals, using numbers). Here is single enum, like TrMod. Do we however need the two?', htmlDescription='

[wg10-0234] 2 enums: CycTrMod (with first 3 literals, in text) and TrMod (with all 4 literals, using numbers). Here is single enum, like TrMod. Do we however need the two?

'], _containingPackage=DOEnums, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2615, uuid={A6F875C8-26D2-4bf0-A5B5-DA541B8C9205}, since=null, name=$diagram://{0D26B081-293D-4b46-BF1C-0EDBD3055405}, alias=, stereotype=, visibility=public, txtDescription='DOEnums :DOEnums-3', htmlDescription='

DOEnums :DOEnums-3

'], _containingPackage=DOEnums, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2617, uuid={FA4722F2-B1BD-4ffd-9207-CD9D874F6B06}, since=null, name=LogicalNodeEnums :DOEnums-2, alias=, stereotype=, visibility=public, txtDescription='DOEnums :DOEnums-2', htmlDescription='

DOEnums :DOEnums-2

'], _containingPackage=DOEnums, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=DOEnums, _objData=UmlObjectData [id=284, uuid={9C6AB80C-57AC-4a99-8EE8-D6B0728EF6E9}, since=null, name=DOEnums-1, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the first part of explicit enumerated types defined in 61850-7-4.', htmlDescription='

This diagram shows the first part of explicit enumerated types defined in 61850-7-4.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsTarget=1, _classes=4 +2024-09-07 12:38:48,624 [main] INFO PackageBuilder - processing package DerivedDAs (5) ... +2024-09-07 12:38:48,624 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=DerivedDAs, _objData=UmlObjectData [id=288, uuid={3E30CA7E-B664-4783-8B11-7F528680EA42}, since=null, name=DerivedDAs, alias=, stereotype=, visibility=public, txtDescription='Shows all enumerated data attributes used for logical nodes, with their superclasses.', htmlDescription='

Shows all enumerated data attributes used for logical nodes, with their superclasses.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,625 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_4::DerivedDAs, _objData=UmlObjectData [id=2559, uuid={6301627D-AA6F-45e6-85D8-0CFA45EC7C23}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,625 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_4::DerivedDAs->IEC61850_7_4::DOEnums, _objData=UmlObjectData [id=2611, uuid={8EADFEEC-3679-4f92-938E-AC59BFA38B37}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,625 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_4::DerivedDAs->IEC61850_7_2::MetaModel, _objData=UmlObjectData [id=2612, uuid={22858E00-8E19-47ff-8008-4F59161AEA7F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,626 [main] ERROR EaTables - [+++ EA ordering problem for 3 class(s) in DerivedDAs (manually move back/forth a class to initiate EA internal ordering update!): +, +++ class BehaviourMode: pos = 0 +, +++ class CalcMethod: pos = 0 DUPLICATE +, +++ class Health: pos = 0 DUPLICATE +] +2024-09-07 12:38:48,626 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2619, uuid={63FEDF68-E3BF-45a0-B4C6-263C42137E2A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: Weekday is defined in 7-3, ImplicitDAs, because it is used both in 7-3 and 7-4.', htmlDescription='

Modelling note: Weekday is defined in 7-3, ImplicitDAs, because it is used both in 7-3 and 7-4.

'], _containingPackage=DerivedDAs, _otherEndName=] +2024-09-07 12:38:48,626 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2666, uuid={523C0E7E-6F3D-4573-8E2D-308095505B6B}, since=null, name=LogicalNodeEnums :DOEnums-1, alias=, stereotype=, visibility=public, txtDescription='DOEnums: DOEnums-1', htmlDescription='

DOEnums: DOEnums-1

'], _containingPackage=DerivedDAs, _otherEndName=] +2024-09-07 12:38:48,626 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2667, uuid={9F29F90E-73EE-4b08-AFB6-D320E69C8939}, since=null, name=LogicalNodeEnums :DOEnums-2, alias=, stereotype=, visibility=public, txtDescription='DOEnums :DOEnums-2', htmlDescription='

DOEnums :DOEnums-2

'], _containingPackage=DerivedDAs, _otherEndName=] +2024-09-07 12:38:48,626 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2668, uuid={D9664C31-D02F-46d1-BC9C-9705402614FA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=DerivedDAs, _otherEndName=] +2024-09-07 12:38:48,626 [main] TRACE ClassBuilder - Class BehaviourMode (0 in package DerivedDAs) +2024-09-07 12:38:48,626 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DerivedDAs::BehaviourMode, _objData=UmlObjectData [id=5360, uuid={9ADCD45E-59E9-45ab-AC04-7BCAD34EE103}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2564, _eaTypeName=BehaviourModeKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,627 [main] DEBUG ClassBuilder - Adding BehaviourMode as subclass of EnumDA +2024-09-07 12:38:48,627 [main] TRACE ClassBuilder - read from EA: DerivedDAs::BehaviourMode +2024-09-07 12:38:48,627 [main] TRACE ClassBuilder - Class CalcMethod (0 in package DerivedDAs) +2024-09-07 12:38:48,627 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DerivedDAs::CalcMethod, _objData=UmlObjectData [id=5363, uuid={5FCE2C6C-5EFA-4fe3-88D2-F747922B4960}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2567, _eaTypeName=CalcMethodKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,627 [main] DEBUG ClassBuilder - Adding CalcMethod as subclass of EnumDA +2024-09-07 12:38:48,627 [main] TRACE ClassBuilder - read from EA: DerivedDAs::CalcMethod +2024-09-07 12:38:48,628 [main] TRACE ClassBuilder - Class Health (0 in package DerivedDAs) +2024-09-07 12:38:48,628 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DerivedDAs::Health, _objData=UmlObjectData [id=5372, uuid={D08C43FA-8B3B-4128-AC21-F8A40BC57CE0}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2568, _eaTypeName=HealthKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,628 [main] DEBUG ClassBuilder - Adding Health as subclass of EnumDA +2024-09-07 12:38:48,628 [main] TRACE ClassBuilder - read from EA: DerivedDAs::Health +2024-09-07 12:38:48,628 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_4, _depth=2, _eaElementID=2618, _objData=UmlObjectData [id=142, uuid={DD10BA94-E28D-4358-9271-2B96FF3A822A}, since=null, name=DerivedDAs, alias=Logical node enumeration data attributes, stereotype=, visibility=public, txtDescription='This package contains enumerated data attributes used for logical nodes. Not explicitly defined in the standard.', htmlDescription='

This package contains enumerated data attributes used for logical nodes. Not explicitly defined in the standard.

'], _modelId=58, _selfDependent=false, 4_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2619, uuid={63FEDF68-E3BF-45a0-B4C6-263C42137E2A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: Weekday is defined in 7-3, ImplicitDAs, because it is used both in 7-3 and 7-4.', htmlDescription='

Modelling note: Weekday is defined in 7-3, ImplicitDAs, because it is used both in 7-3 and 7-4.

'], _containingPackage=DerivedDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2666, uuid={523C0E7E-6F3D-4573-8E2D-308095505B6B}, since=null, name=LogicalNodeEnums :DOEnums-1, alias=, stereotype=, visibility=public, txtDescription='DOEnums: DOEnums-1', htmlDescription='

DOEnums: DOEnums-1

'], _containingPackage=DerivedDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2667, uuid={9F29F90E-73EE-4b08-AFB6-D320E69C8939}, since=null, name=LogicalNodeEnums :DOEnums-2, alias=, stereotype=, visibility=public, txtDescription='DOEnums :DOEnums-2', htmlDescription='

DOEnums :DOEnums-2

'], _containingPackage=DerivedDAs, _otherEndName=], SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2668, uuid={D9664C31-D02F-46d1-BC9C-9705402614FA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=DerivedDAs, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=DerivedDAs, _objData=UmlObjectData [id=288, uuid={3E30CA7E-B664-4783-8B11-7F528680EA42}, since=null, name=DerivedDAs, alias=, stereotype=, visibility=public, txtDescription='Shows all enumerated data attributes used for logical nodes, with their superclasses.', htmlDescription='

Shows all enumerated data attributes used for logical nodes, with their superclasses.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=2, _dependenciesAsTarget=1, _classes=3 +2024-09-07 12:38:48,628 [main] INFO PackageBuilder - processing package DerivedCDCs (6) ... +2024-09-07 12:38:48,628 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=DerivedCDCs, _objData=UmlObjectData [id=289, uuid={CF4B4204-5A58-4f1c-9E61-68920610276D}, since=null, name=DerivedCDCs, alias=, stereotype=, visibility=public, txtDescription='Shows all derived CDCs with their supertypes.', htmlDescription='

Shows all derived CDCs with their supertypes.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,629 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_4::DerivedCDCs, _objData=UmlObjectData [id=2548, uuid={B4AE6551-4F69-4f85-88CD-7F5018FA54F5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,629 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_4::DerivedCDCs->IEC61850_7_3::CommonDataClasses, _objData=UmlObjectData [id=2557, uuid={95185C57-90F7-4989-93BB-36A01651B273}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,629 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_4::DerivedCDCs->IEC61850_7_3::DAEnums, _objData=UmlObjectData [id=2558, uuid={8E80EB80-DCE3-4c3d-B7B7-BA538068A4E4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,629 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_4::DerivedCDCs->IEC61850_7_4::DerivedDAs, _objData=UmlObjectData [id=2559, uuid={6301627D-AA6F-45e6-85D8-0CFA45EC7C23}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,629 [main] ERROR EaTables - [+++ EA ordering problem for 9 class(s) in DerivedCDCs (manually move back/forth a class to initiate EA internal ordering update!): +, +++ class ACTTransient: pos = 1 +, +++ class ENCBehaviourMode: pos = 3 +, +++ class ENGCalcMethod: pos = 7 +, +++ class ENSBehaviourMode: pos = 37 +, +++ class ENSHealth: pos = 42 +, +++ class SPCTransient: pos = 50 +, +++ class SPSTransient: pos = 51 +, +++ class EXYBehaviourMode: pos = 0 +, +++ class ENSEnumDA: pos = 0 DUPLICATE +] +2024-09-07 12:38:48,630 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2670, uuid={D5D49DAF-81EF-48d7-A8B6-7484F8365345}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note 1: All enumerated CDCs could have been modelled in UML as parameterized types, with the parameters for (in case of ENS) 'stVal' and 'subVal' attributes being 'BOOLEAN', 'DpStatus' and 'INT32U', respectively. We have chosen not to do it, because: +- It would be impossible to 'nicely' represent the native IEC 61850-7-3 types +- Parameterisation in UML is somewhat "exotic" concept and pretty clumsy to use, and we preferred keeping the model simple. +Modelling note 2: In white, the enum and transient CDCs from Ed.1 the way we have modelled them. In green, new ones from Ed.2.', htmlDescription='

Modelling note 1: All enumerated CDCs could have been modelled in UML as parameterized types, with the parameters for (in case of ENS) 'stVal' and 'subVal' attributes being 'BOOLEAN', 'DpStatus' and 'INT32U', respectively. We have chosen not to do it, because:

  • It would be impossible to 'nicely' represent the native IEC 61850-7-3 types
  • Parameterisation in UML is somewhat "exotic" concept and pretty clumsy to use, and we preferred keeping the model simple.

Modelling note 2: In white, the enum and transient CDCs from Ed.1 the way we have modelled them. In green, new ones from Ed.2.

'], _containingPackage=DerivedCDCs, _otherEndName=] +2024-09-07 12:38:48,630 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2722, uuid={4DF187B9-1693-4a91-AD3B-6F3DFA5768E4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=DerivedCDCs, _otherEndName=] +2024-09-07 12:38:48,630 [main] TRACE ClassBuilder - Class ACTTransient (1 in package DerivedCDCs) +2024-09-07 12:38:48,630 [main] TRACE ClassBuilder - read from EA: DerivedCDCs::ACTTransient +2024-09-07 12:38:48,631 [main] TRACE ClassBuilder - Class ENCBehaviourMode (3 in package DerivedCDCs) +2024-09-07 12:38:48,631 [main] DEBUG ClassBuilder - Adding ENCBehaviourMode as subclass of ENC +2024-09-07 12:38:48,631 [main] TRACE ClassBuilder - read from EA: DerivedCDCs::ENCBehaviourMode +2024-09-07 12:38:48,631 [main] TRACE ClassBuilder - Class ENGCalcMethod (7 in package DerivedCDCs) +2024-09-07 12:38:48,632 [main] DEBUG ClassBuilder - Adding ENGCalcMethod as subclass of ENG +2024-09-07 12:38:48,632 [main] TRACE ClassBuilder - read from EA: DerivedCDCs::ENGCalcMethod +2024-09-07 12:38:48,632 [main] TRACE ClassBuilder - Class ENSBehaviourMode (37 in package DerivedCDCs) +2024-09-07 12:38:48,632 [main] DEBUG ClassBuilder - Adding ENSBehaviourMode as subclass of ENS +2024-09-07 12:38:48,632 [main] TRACE ClassBuilder - read from EA: DerivedCDCs::ENSBehaviourMode +2024-09-07 12:38:48,632 [main] TRACE ClassBuilder - Class ENSHealth (42 in package DerivedCDCs) +2024-09-07 12:38:48,632 [main] DEBUG ClassBuilder - Adding ENSHealth as subclass of ENS +2024-09-07 12:38:48,632 [main] TRACE ClassBuilder - read from EA: DerivedCDCs::ENSHealth +2024-09-07 12:38:48,632 [main] TRACE ClassBuilder - Class SPCTransient (50 in package DerivedCDCs) +2024-09-07 12:38:48,633 [main] DEBUG ClassBuilder - Adding SPCTransient as subclass of SPC +2024-09-07 12:38:48,633 [main] TRACE ClassBuilder - read from EA: DerivedCDCs::SPCTransient +2024-09-07 12:38:48,633 [main] TRACE ClassBuilder - Class SPSTransient (51 in package DerivedCDCs) +2024-09-07 12:38:48,633 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3466, uuid={0C9FFC4C-2FE1-4b43-ACAE-7B411DBD8398}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=SPSTransient, _otherEndName=?] +2024-09-07 12:38:48,633 [main] TRACE ClassBuilder - read from EA: DerivedCDCs::SPSTransient +2024-09-07 12:38:48,633 [main] TRACE ClassBuilder - Class EXYBehaviourMode (0 in package DerivedCDCs) +2024-09-07 12:38:48,633 [main] DEBUG ClassBuilder - Adding EXYBehaviourMode as subclass of EXY +2024-09-07 12:38:48,633 [main] TRACE ClassBuilder - read from EA: DerivedCDCs::EXYBehaviourMode +2024-09-07 12:38:48,633 [main] TRACE ClassBuilder - Class ENSEnumDA (0 in package DerivedCDCs) +2024-09-07 12:38:48,634 [main] DEBUG ClassBuilder - Adding ENSEnumDA as subclass of ENS +2024-09-07 12:38:48,634 [main] TRACE ClassBuilder - read from EA: DerivedCDCs::ENSEnumDA +2024-09-07 12:38:48,634 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_4, _depth=2, _eaElementID=2669, _objData=UmlObjectData [id=143, uuid={FFA495EF-8CF0-4a81-BB6B-F1A5EEFE9F6E}, since=null, name=DerivedCDCs, alias=, stereotype=, visibility=public, txtDescription='This package contains CDC specialisations through enumeration or transient. Not explicitly defined in the standard.', htmlDescription='

This package contains CDC specialisations through enumeration or transient. Not explicitly defined in the standard.

'], _modelId=58, _selfDependent=false, 2_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2670, uuid={D5D49DAF-81EF-48d7-A8B6-7484F8365345}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note 1: All enumerated CDCs could have been modelled in UML as parameterized types, with the parameters for (in case of ENS) 'stVal' and 'subVal' attributes being 'BOOLEAN', 'DpStatus' and 'INT32U', respectively. We have chosen not to do it, because: +- It would be impossible to 'nicely' represent the native IEC 61850-7-3 types +- Parameterisation in UML is somewhat "exotic" concept and pretty clumsy to use, and we preferred keeping the model simple. +Modelling note 2: In white, the enum and transient CDCs from Ed.1 the way we have modelled them. In green, new ones from Ed.2.', htmlDescription='

Modelling note 1: All enumerated CDCs could have been modelled in UML as parameterized types, with the parameters for (in case of ENS) 'stVal' and 'subVal' attributes being 'BOOLEAN', 'DpStatus' and 'INT32U', respectively. We have chosen not to do it, because:

  • It would be impossible to 'nicely' represent the native IEC 61850-7-3 types
  • Parameterisation in UML is somewhat "exotic" concept and pretty clumsy to use, and we preferred keeping the model simple.

Modelling note 2: In white, the enum and transient CDCs from Ed.1 the way we have modelled them. In green, new ones from Ed.2.

'], _containingPackage=DerivedCDCs, _otherEndName=], SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2722, uuid={4DF187B9-1693-4a91-AD3B-6F3DFA5768E4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=DerivedCDCs, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=DerivedCDCs, _objData=UmlObjectData [id=289, uuid={CF4B4204-5A58-4f1c-9E61-68920610276D}, since=null, name=DerivedCDCs, alias=, stereotype=, visibility=public, txtDescription='Shows all derived CDCs with their supertypes.', htmlDescription='

Shows all derived CDCs with their supertypes.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=3, _dependenciesAsTarget=1, _classes=9 +2024-09-07 12:38:48,634 [main] INFO PackageBuilder - processing package LogicalNodes (7) ... +2024-09-07 12:38:48,634 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=LogicalNodes, _objData=UmlObjectData [id=291, uuid={9C304E21-9AF5-4868-98F3-894BF0B82CA2}, since=null, name=LogicalNodes, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all the logical node groups, with their contents, as well as the abstract logical nodes used by concrete logical nodes from multiple groups. The purpose of abstract logical nodes is to avoid duplication in definition of data objects which are used by multiple concrete logical nodes. Abstract logical nodes are never instantiated; Their attributes are inheritied by concrete logical nodes which are instantiable.', htmlDescription='

This diagram shows all the logical node groups, with their contents, as well as the abstract logical nodes used by concrete logical nodes from multiple groups. The purpose of abstract logical nodes is to avoid duplication in definition of data objects which are used by multiple concrete logical nodes. Abstract logical nodes are never instantiated; Their attributes are inheritied by concrete logical nodes which are instantiable.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,634 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=LogicalNodes, _objData=UmlObjectData [id=290, uuid={13255AEB-A18C-4620-B272-CD274CE0D4D3}, since=null, name=LNRelationToACSI, alias=, stereotype=, visibility=public, txtDescription='All logical node classes defined in this document inherit their structure from the abstract LN class defined in IEC 61850-7-2. The structure comprises the attributes (e.g., name and reference), and the services and applicable control blocks defined in IEC 61850-7-2. Currently, they are all modelled with operations (services). +IEC 61850-7-4 adds data objects as attributes, in order to complete the definition of concrete logical nodes. +The diagram shows also the attributes per type of logical node defined in this document (optional attributes have multiplicity [0..1]. Physical device logical node (LPHD) and Logical device logical node (LLN0) are concrete logical node types. On the contrary, DomainLN is an abstract logical node type (its name is shown in italic), because it serves to define the attributes that shall be inherited by every concrete domain logical node type (e.g., XCBR, PDIS). Having this kind of definition at one place avoids error-prone repeating of these common attributes within the definition of every concrete domain logical node. +Some logical nodes define conditions on one or more data objects. In this diagram, this is the case for LLN0, with the condition "C1"; The definition of condition is available for each data object involved in the condition and refers to Presence conditions introduced in IEC61850-7-3, Clause 5.', htmlDescription='

All logical node classes defined in this document inherit their structure from the abstract LN class defined in IEC 61850-7-2. The structure comprises the attributes (e.g., name and reference), and the services and applicable control blocks defined in IEC 61850-7-2. Currently, they are all modelled with operations (services).

IEC 61850-7-4 adds data objects as attributes, in order to complete the definition of concrete logical nodes.

The diagram shows also the attributes per type of logical node defined in this document (optional attributes have multiplicity [0..1]. Physical device logical node (LPHD) and Logical device logical node (LLN0) are concrete logical node types. On the contrary, DomainLN is an abstract logical node type (its name is shown in italic), because it serves to define the attributes that shall be inherited by every concrete domain logical node type (e.g., XCBR, PDIS). Having this kind of definition at one place avoids error-prone repeating of these common attributes within the definition of every concrete domain logical node.

Some logical nodes define conditions on one or more data objects. In this diagram, this is the case for LLN0, with the condition "C1"; The definition of condition is available for each data object involved in the condition and refers to Presence conditions introduced in IEC61850-7-3, Clause 5.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,635 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_4::LogicalNodes->IEC61850_7_4::DerivedCDCs, _objData=UmlObjectData [id=2548, uuid={B4AE6551-4F69-4f85-88CD-7F5018FA54F5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,635 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_4::LogicalNodes->IEC61850_7_2::MetaModel, _objData=UmlObjectData [id=2549, uuid={8DDA0A46-B4B5-429b-B942-52E274F06ACA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,635 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_4::LogicalNodes->IEC61850_7_3::CommonDataClasses, _objData=UmlObjectData [id=2550, uuid={66DD71D8-83CD-4fb8-A5D8-44AE4E4C3795}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,635 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2724, uuid={D0767D8F-CFB4-484b-B888-3084B98E911B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: Original IEC 61850-7-4 explicitly defines a "Common Logical Node", which inherits from the (abstract) Logical Node, defined in ACSI, and has as subtypes the LLN0 and all the Domain Logical Nodes. It only serves to specify the common mandatory attributes of the subtypes (i.e., of all logical nodes but the LPHD). The "Common Logical Node" specifies also some optional attributes, which are application independent, such as external equipment health and name plate, or operation counters. The standard states that the derived logical nodes can do 3 different things with those optional attributes: +- not inherit them, or, +- inherit them as optional, or, +- inherit them as mandatory. +Therefore, there is no way to show optional attributes at "Common Logical Node" level - they must be (and are in the original standard itself) defined within the concrete logical nodes' definitions. +For the above reasons, this model does not specify the type "Common Logical Node": it simply defines mandatory attributes for both (abstract) DomainLN and (concrete) LLN0. Grouping data objects that are common to several LNs into abstract classes happens at a finer level of granularity.', htmlDescription='

Modelling note: Original IEC 61850-7-4 explicitly defines a "Common Logical Node", which inherits from the (abstract) Logical Node, defined in ACSI, and has as subtypes the LLN0 and all the Domain Logical Nodes. It only serves to specify the common mandatory attributes of the subtypes (i.e., of all logical nodes but the LPHD). The "Common Logical Node" specifies also some optional attributes, which are application independent, such as external equipment health and name plate, or operation counters. The standard states that the derived logical nodes can do 3 different things with those optional attributes:

- not inherit them, or,

- inherit them as optional, or,

- inherit them as mandatory.

Therefore, there is no way to show optional attributes at "Common Logical Node" level - they must be (and are in the original standard itself) defined within the concrete logical nodes' definitions.

For the above reasons, this model does not specify the type "Common Logical Node": it simply defines mandatory attributes for both (abstract) DomainLN and (concrete) LLN0. Grouping data objects that are common to several LNs into abstract classes happens at a finer level of granularity.

'], _containingPackage=LogicalNodes, _otherEndName=] +2024-09-07 12:38:48,635 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2725, uuid={B228C148-1E21-47b2-A886-159F0BE9A50A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='LNMode LDMode LNBeh (read only) LNBeh +XXXX.Mod LLN0.Mod XXXX.Beh Value +on on on 1 +on blocked blocked 2 +on test test 3 +on test/blocked test/blocked 4 +on off off 5 +blocked on blocked 2 +blocked blocked blocked 2 +blocked test test/blocked 4 +blocked test/blocked test/blocked 4 +blocked off off 5 +test on test 3 +test blocked test/blocked 4 +test test test 3 +test test/blocked test/blocked 4 +test off off 5 +test/blocked on test/blocked 4 +test/blocked blocked test/blocked 4 +test/blocked test test/blocked 4 +test/blocked test/blocked test/blocked 4 +test/blocked off off 5 +off on off 5 +off blocked off 5 +off test off 5 +off test/blocked off 5 +off off off 5', htmlDescription='

LNMode LDMode LNBeh (read only) LNBeh

XXXX.Mod LLN0.Mod XXXX.Beh Value

on on on 1

on blocked blocked 2

on test test 3

on test/blocked test/blocked 4

on off off 5

blocked on blocked 2

blocked blocked blocked 2

blocked test test/blocked 4

blocked test/blocked test/blocked 4

blocked off off 5

test on test 3

test blocked test/blocked 4

test test test 3

test test/blocked test/blocked 4

test off off 5

test/blocked on test/blocked 4

test/blocked blocked test/blocked 4

test/blocked test test/blocked 4

test/blocked test/blocked test/blocked 4

test/blocked off off 5

off on off 5

off blocked off 5

off test off 5

off test/blocked off 5

off off off 5

'], _containingPackage=LogicalNodes, _otherEndName=] +2024-09-07 12:38:48,635 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2727, uuid={1E36F7F7-68C3-4b87-8A96-CBE243CB505D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Describe these somehow... +Note: There should be a link between the LLN0 (which is "the data of LD") and all the DomainLNs contained in the LD.', htmlDescription='

TODO: Describe these somehow...

Note: There should be a link between the LLN0 (which is "the data of LD") and all the DomainLNs contained in the LD.

'], _containingPackage=LogicalNodes, _otherEndName=] +2024-09-07 12:38:48,635 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2740, uuid={70BF6490-0829-4499-B3F1-91B1F53AB7E5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=LogicalNodes, _otherEndName=] +2024-09-07 12:38:48,636 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3031, uuid={2B7E85C1-2253-47e1-9F2A-A1A6C3FD8E78}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Only GGIO and MMXU inherit from it in this sample model.', htmlDescription='

Only GGIO and MMXU inherit from it in this sample model.

'], _containingPackage=LogicalNodes, _otherEndName=] +2024-09-07 12:38:48,636 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3081, uuid={728AF8F8-AE9D-44d5-BDC8-10BD5014B6DD}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='SPSTransient has no parents, i.e., it's a badly defined CDC and doesn't get recognised as CDC.', htmlDescription='

SPSTransient has no parents, i.e., it's a badly defined CDC and doesn't get recognised as CDC.

'], _containingPackage=LogicalNodes, _otherEndName=] +2024-09-07 12:38:48,636 [main] TRACE ClassBuilder - Class DomainLN (1 in package LogicalNodes) +2024-09-07 12:38:48,636 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [, _containingClass=DomainLN, _objData=UmlObjectData [id=292, uuid={2BCCF7D7-1651-44c0-B7CA-3083B5307CAB}, since=null, name=Beh, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=STATECHART] +2024-09-07 12:38:48,636 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=STATE_MACHINE, _isConnector=false, _objData=UmlObjectData [id=2729, uuid={67E0C7B2-C75B-4211-AD2A-08F2FA2D9BFD}, since=null, name=behStateMachine, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=DomainLN, _otherEndName=] +2024-09-07 12:38:48,636 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LogicalNodes::DomainLN, _objData=UmlObjectData [id=5404, uuid={BD8EED96-B614-4741-BE24-E8A509A772CF}, since=null, name=NamPlt, alias=, stereotype=, visibility=public, txtDescription='Name plate of the logical node.', htmlDescription='

Name plate of the logical node.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2314, _eaTypeName=LPL, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,636 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LogicalNodes::DomainLN, _objData=UmlObjectData [id=5406, uuid={02A6EFA0-CD2A-44ed-99B7-4440CDC49598}, since=null, name=Health, alias=, stereotype=, visibility=public, txtDescription=''Health.stVal' reflects the state of the logical node related hardware and software. More detailed information related to the source of the problem may be provided by specific attribute of the logical node.', htmlDescription='

'Health.stVal' reflects the state of the logical node related hardware and software. More detailed information related to the source of the problem may be provided by specific attribute of the logical node.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2712, _eaTypeName=ENSHealth, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,636 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LogicalNodes::DomainLN, _objData=UmlObjectData [id=5408, uuid={F3F9E7F6-D65F-49b8-A25D-A6D5B8129BB1}, since=null, name=Mod, alias=, stereotype=, visibility=public, txtDescription=''DomainLN.Mod.ctlVal' is used by operator to initiate the change in the operating mode of the domain logical node. The resulting operating mode is 'DomainLN.Mod.stVal'. Processing of the quality status (q) of the received data is the prerequisite for correct interpretation of 'DomainLN.Mod.stVal'. See statechart diagram 'DomainLN.behStateMachine'.', htmlDescription='

'DomainLN.Mod.ctlVal' is used by operator to initiate the change in the operating mode of the domain logical node. The resulting operating mode is 'DomainLN.Mod.stVal'. Processing of the quality status (q) of the received data is the prerequisite for correct interpretation of 'DomainLN.Mod.stVal'. See statechart diagram 'DomainLN.behStateMachine'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2673, _eaTypeName=ENCBehaviourMode, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,636 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LogicalNodes::DomainLN, _objData=UmlObjectData [id=6644, uuid={7D68988B-2556-4fad-AF56-2801E5AB7EE7}, since=null, name=CntRs, alias=, stereotype=, visibility=public, txtDescription='Dumb DO, of type CMV for testing inheriting statistics-derived presence conditions.', htmlDescription='

Dumb DO, of type CMV for testing inheriting statistics-derived presence conditions.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2266, _eaTypeName=CMV, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,636 [main] DEBUG ClassBuilder - Adding DomainLN as subclass of LNDOM +2024-09-07 12:38:48,636 [main] TRACE ClassBuilder - read from EA: LogicalNodes::DomainLN +2024-09-07 12:38:48,637 [main] TRACE ClassBuilder - Class StatisticsLN (2 in package LogicalNodes) +2024-09-07 12:38:48,637 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LogicalNodes::StatisticsLN, _objData=UmlObjectData [id=5411, uuid={AD8AD979-4412-496c-88CF-BC2F0016F824}, since=null, name=ClcExp, alias=, stereotype=, visibility=public, txtDescription='If 'ClcExp.stVal=true', the calculation period of a statistical logical node has expired.', htmlDescription='

If 'ClcExp.stVal=true', the calculation period of a statistical logical node has expired.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2721, _eaTypeName=SPSTransient, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,637 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LogicalNodes::StatisticsLN, _objData=UmlObjectData [id=5413, uuid={1FE86953-F8BC-4e0b-A301-DD037C26CD2D}, since=null, name=ClcMth, alias=, stereotype=, visibility=public, txtDescription=''ClcMth.setVal' is the kind of statistical calculation, specifying how the data attributes that represent analogue values have been calculated. The calculation method shall be the same for all data objects of the logical node instance. +If the value is 'PEAK_FUNDAMENTAL', angle may be present in a data object of complex measured value type (CMV, such as in WYE, DEL, etc.), otherwise angle is not used (if ‘TRUE_RMS’ and ‘RMS_FUNDAMENTAL’). +The dependent data objects may be meaningless in case the value of 'ClcMth' is 'unspecified'.', htmlDescription='

'ClcMth.setVal' is the kind of statistical calculation, specifying how the data attributes that represent analogue values have been calculated. The calculation method shall be the same for all data objects of the logical node instance.

If the value is 'PEAK_FUNDAMENTAL', angle may be present in a data object of complex measured value type (CMV, such as in WYE, DEL, etc.), otherwise angle is not used (if ‘TRUE_RMS’ and ‘RMS_FUNDAMENTAL’).

The dependent data objects may be meaningless in case the value of 'ClcMth' is 'unspecified'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2677, _eaTypeName=ENGCalcMethod, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,637 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3465, uuid={92732B68-B08E-4ab3-AD99-839A98DABC97}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=StatisticsLN, _otherEndName=?] +2024-09-07 12:38:48,637 [main] DEBUG ClassBuilder - Adding StatisticsLN as subclass of DomainLN +2024-09-07 12:38:48,637 [main] TRACE ClassBuilder - read from EA: LogicalNodes::StatisticsLN +2024-09-07 12:38:48,637 [main] TRACE ClassBuilder - Class EquipmentInterfaceLN (3 in package LogicalNodes) +2024-09-07 12:38:48,638 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LogicalNodes::EquipmentInterfaceLN, _objData=UmlObjectData [id=5423, uuid={9D014151-D573-4c4e-A898-CE2DA3B5BBBA}, since=null, name=EEHealthAlmClc, alias=, stereotype=, visibility=public, txtDescription='(too long name) State of external (electrical, mechanical or communication) equipment to which the logical node is associated.', htmlDescription='

(too long name) State of external (electrical, mechanical or communication) equipment to which the logical node is associated.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2712, _eaTypeName=ENSHealth, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,638 [main] DEBUG ClassBuilder - Adding EquipmentInterfaceLN as subclass of DomainLN +2024-09-07 12:38:48,638 [main] TRACE ClassBuilder - read from EA: LogicalNodes::EquipmentInterfaceLN +2024-09-07 12:38:48,639 [main] INFO PackageBuilder - processing package DocLogicalNodes (0) ... +2024-09-07 12:38:48,640 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=DocLogicalNodes, _objData=UmlObjectData [id=294, uuid={E8779C38-C14E-43db-BEC0-F2F30FA58304}, since=null, name=DocLogicalNodes, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=PACKAGE] +2024-09-07 12:38:48,641 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2742, uuid={895D35A9-B786-4190-99D6-129AB09C66C1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='This recloser state machine is located in LN RREC and operates in association with a LN PTRC and a LN XCBR +Note : only the general protection activation information case has been modeled here (no single phasis activation)', htmlDescription='

This recloser state machine is located in LN RREC and operates in association with a LN PTRC and a LN XCBR

Note : only the general protection activation information case has been modeled here (no single phasis activation)

'], _containingPackage=DocLogicalNodes, _otherEndName=] +2024-09-07 12:38:48,641 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2743, uuid={4F9E02ED-6436-49e1-B435-12225F0317E1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Following the UML tool, for expressing the behaviour into the state chart, the language can be SDL (TAU from IBM Rational), C++ (Rhapsody from IBM rational) and ?? for EA.', htmlDescription='

Following the UML tool, for expressing the behaviour into the state chart, the language can be SDL (TAU from IBM Rational), C++ (Rhapsody from IBM rational) and ?? for EA.

'], _containingPackage=DocLogicalNodes, _otherEndName=] +2024-09-07 12:38:48,643 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2744, uuid={00EAE61D-1D3F-4e6b-A870-98B8669C0163}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='AutoRecSt Aborted', htmlDescription='

AutoRecSt Aborted

'], _containingPackage=DocLogicalNodes, _otherEndName=] +2024-09-07 12:38:48,643 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=DocLogicalNodes, _objData=UmlObjectData [id=293, uuid={FA477B2F-B0CB-40a8-B651-6E46E37A03D0}, since=null, name=RecloserState, alias=, stereotype=, visibility=public, txtDescription='This diagram is an example state machine illustrating some of the data objects of recloser logical node.', htmlDescription='

This diagram is an example state machine illustrating some of the data objects of recloser logical node.

'], _portrait=true, _kind=STATECHART] +2024-09-07 12:38:48,643 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=STATE_MACHINE, _isConnector=false, _objData=UmlObjectData [id=2745, uuid={577A2E6F-0174-4583-BE5E-E6B2837C83C4}, since=null, name=RecloserState, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=DocLogicalNodes, _otherEndName=] +2024-09-07 12:38:48,643 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=LogicalNodes, _depth=3, _eaElementID=2741, _objData=UmlObjectData [id=145, uuid={6C95E1EE-7117-492e-915D-D9984DC2CFB1}, since=null, name=DocLogicalNodes, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=58, _selfDependent=false, 4_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2742, uuid={895D35A9-B786-4190-99D6-129AB09C66C1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='This recloser state machine is located in LN RREC and operates in association with a LN PTRC and a LN XCBR +Note : only the general protection activation information case has been modeled here (no single phasis activation)', htmlDescription='

This recloser state machine is located in LN RREC and operates in association with a LN PTRC and a LN XCBR

Note : only the general protection activation information case has been modeled here (no single phasis activation)

'], _containingPackage=DocLogicalNodes, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2743, uuid={4F9E02ED-6436-49e1-B435-12225F0317E1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Following the UML tool, for expressing the behaviour into the state chart, the language can be SDL (TAU from IBM Rational), C++ (Rhapsody from IBM rational) and ?? for EA.', htmlDescription='

Following the UML tool, for expressing the behaviour into the state chart, the language can be SDL (TAU from IBM Rational), C++ (Rhapsody from IBM rational) and ?? for EA.

'], _containingPackage=DocLogicalNodes, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2744, uuid={00EAE61D-1D3F-4e6b-A870-98B8669C0163}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='AutoRecSt Aborted', htmlDescription='

AutoRecSt Aborted

'], _containingPackage=DocLogicalNodes, _otherEndName=], SkippedBuilder [, _kind=STATE_MACHINE, _isConnector=false, _objData=UmlObjectData [id=2745, uuid={577A2E6F-0174-4583-BE5E-E6B2837C83C4}, since=null, name=RecloserState, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=DocLogicalNodes, _otherEndName=]], 2_diagrams=[DiagramBuilder [_containingPackage=DocLogicalNodes, _objData=UmlObjectData [id=294, uuid={E8779C38-C14E-43db-BEC0-F2F30FA58304}, since=null, name=DocLogicalNodes, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=PACKAGE], DiagramBuilder [_containingPackage=DocLogicalNodes, _objData=UmlObjectData [id=293, uuid={FA477B2F-B0CB-40a8-B651-6E46E37A03D0}, since=null, name=RecloserState, alias=, stereotype=, visibility=public, txtDescription='This diagram is an example state machine illustrating some of the data objects of recloser logical node.', htmlDescription='

This diagram is an example state machine illustrating some of the data objects of recloser logical node.

'], _portrait=true, _kind=STATECHART]] +2024-09-07 12:38:48,643 [main] INFO PackageBuilder - processing package LNGroupL (2) ... +2024-09-07 12:38:48,644 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=LNGroupL, _objData=UmlObjectData [id=295, uuid={332E02C5-1CD4-4f01-914F-089D6CAA1B2B}, since=null, name=LNGroupL, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all logical nodes of this group.', htmlDescription='

This diagram shows all logical nodes of this group.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,644 [main] DEBUG PackageBuilder - Updated target of package dependency DependencyBuilder [_kind=PACKAGE, qName = Functions::SystemWide->LogicalNodes::LNGroupL, _objData=UmlObjectData [id=2730, uuid={D14B5B90-8C79-4598-A45C-DAD660474084}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,645 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3040, uuid={926472AA-E063-4c71-B6F4-E0E19285A547}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='- misplaced (should be in package LNGroupK) +- bad DO name +- using CDC ENS - never use ENS, ENG, ENC in an LN, you must use a derived CDC instead.', htmlDescription='

- misplaced (should be in package LNGroupK)

- bad DO name

- using CDC ENS - never use ENS, ENG, ENC in an LN, you must use a derived CDC instead.

'], _containingPackage=LNGroupL, _otherEndName=] +2024-09-07 12:38:48,645 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3072, uuid={BC4F5403-9311-4498-9D8E-D31A2A2ECFD5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='StatAlmMthClc should be detected as defined but not detected as CDC (SPSTransient is not recognised as CDC).', htmlDescription='

StatAlmMthClc should be detected as defined but not detected as CDC (SPSTransient is not recognised as CDC).

'], _containingPackage=LNGroupL, _otherEndName=] +2024-09-07 12:38:48,645 [main] TRACE ClassBuilder - Class KXYZ (0 in package LNGroupL) +2024-09-07 12:38:48,645 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupL::KXYZ, _objData=UmlObjectData [id=6643, uuid={5F6F358B-D118-4f13-B9C6-A2B2F099FAAD}, since=null, name=TotW, alias=, stereotype=, visibility=public, txtDescription=''TotW.mag.f' is the total real power in a three-phase circuit [W].', htmlDescription='

'TotW.mag.f' is the total real power in a three-phase circuit [W].

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2266, _eaTypeName=CMV, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,645 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupL::KXYZ, _objData=UmlObjectData [id=6662, uuid={14E48849-D4A8-4f20-943F-FE6D90B87DA5}, since=null, name=aDummyAlm, alias=, stereotype=, visibility=public, txtDescription='Whatever (testing lower case DO name).', htmlDescription='

Whatever (testing lower case DO name).

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2266, _eaTypeName=CMV, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,646 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupL::KXYZ, _objData=UmlObjectData [id=6705, uuid={830D0CE1-6AF2-4651-9D80-CBB0ADE6102C}, since=null, name=WrongA, alias=, stereotype=, visibility=public, txtDescription='Misused ENS (or ENG or ENC). Use derived CDC instead.', htmlDescription='

Misused ENS (or ENG or ENC). Use derived CDC instead.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2250, _eaTypeName=ENS, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,646 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupL::KXYZ, _objData=UmlObjectData [id=6706, uuid={BCF2F02E-3F65-4819-9456-55527BBD0571}, since=null, name=CorrectA, alias=, stereotype=, visibility=public, txtDescription='Correctly using derived CDC for enums.', htmlDescription='

Correctly using derived CDC for enums.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=3073, _eaTypeName=ENSEnumDA, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,646 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3425, uuid={FACFBBE4-5FBA-401d-A6A7-D6985D37842E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=KXYZ, _otherEndName=?] +2024-09-07 12:38:48,646 [main] DEBUG ClassBuilder - Adding KXYZ as subclass of DomainLN +2024-09-07 12:38:48,646 [main] TRACE ClassBuilder - read from EA: LNGroupL::KXYZ +2024-09-07 12:38:48,646 [main] TRACE ClassBuilder - Class LPHD (1 in package LNGroupL) +2024-09-07 12:38:48,647 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupL::LPHD, _objData=UmlObjectData [id=5434, uuid={2B188929-F3F0-481e-81FA-33B1F6DDFABE}, since=null, name=PhyHealth, alias=, stereotype=, visibility=public, txtDescription=''PhyHealth.stVal' reflects the state of the physical device related hardware and software.', htmlDescription='

'PhyHealth.stVal' reflects the state of the physical device related hardware and software.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2712, _eaTypeName=ENSHealth, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,647 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupL::LPHD, _objData=UmlObjectData [id=5445, uuid={33F4BBA2-6001-4f56-B6D7-7B166C646FD2}, since=null, name=RsStatAlmMthClc, alias=, stereotype=, visibility=public, txtDescription='(too long name) 'RsStat.ctlVal=true' initiates the resetting of the IED statistics.', htmlDescription='

(too long name) 'RsStat.ctlVal=true' initiates the resetting of the IED statistics.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2720, _eaTypeName=SPCTransient, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,647 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupL::LPHD, _objData=UmlObjectData [id=6704, uuid={F8B2B570-FB4D-461e-AFBB-76B285FC176A}, since=null, name=StatAlmMthClc, alias=, stereotype=, visibility=public, txtDescription='(too long name) 'RsStat.ctlVal=true' initiates the resetting of the IED statistics.', htmlDescription='

(too long name) 'RsStat.ctlVal=true' initiates the resetting of the IED statistics.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2721, _eaTypeName=SPSTransient, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,647 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3454, uuid={8AB0F6F3-2554-4343-80F7-0F7C34C50F94}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=LPHD, _otherEndName=?] +2024-09-07 12:38:48,647 [main] DEBUG ClassBuilder - Adding LPHD as subclass of LNPHD +2024-09-07 12:38:48,647 [main] DEBUG ClassBuilder - Updated target of class dependency DependencyBuilder [_kind=CLASS, qName = SystemWide::PhysicalDeviceData->LNGroupL::LPHD, _objData=UmlObjectData [id=2735, uuid={E0D934B8-520F-44c2-9AF8-B3B81C663ABF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,647 [main] TRACE ClassBuilder - read from EA: LNGroupL::LPHD +2024-09-07 12:38:48,647 [main] TRACE ClassBuilder - Class LLN0 (2 in package LNGroupL) +2024-09-07 12:38:48,648 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupL::LLN0, _objData=UmlObjectData [id=5447, uuid={ABAE4652-FBC7-4033-A5F3-F34D0A7D6805}, since=null, name=NamPlt, alias=, stereotype=, visibility=public, txtDescription='Name plate of the logical device.', htmlDescription='

Name plate of the logical device.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2314, _eaTypeName=LPL, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,648 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupL::LLN0, _objData=UmlObjectData [id=5448, uuid={757A91B5-C931-43d4-8660-F0918821C72E}, since=null, name=Beh, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2707, _eaTypeName=ENSBehaviourMode, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,648 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupL::LLN0, _objData=UmlObjectData [id=5449, uuid={9D65803B-3C9E-4491-B2F7-46597B3A2963}, since=null, name=Health, alias=, stereotype=, visibility=public, txtDescription=''Health.stVal' reflects the state of the logical device related hardware and software. It is derived from the worst (most critical) value of the health attribute of all the domain logical nodes contained in the logical device: 'Health.stVal' = max('DomainLN[i].Health.stVal').', htmlDescription='

'Health.stVal' reflects the state of the logical device related hardware and software. It is derived from the worst (most critical) value of the health attribute of all the domain logical nodes contained in the logical device: 'Health.stVal' = max('DomainLN[i].Health.stVal').

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2712, _eaTypeName=ENSHealth, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,649 [main] DEBUG ClassBuilder - Adding LLN0 as subclass of LN0 +2024-09-07 12:38:48,649 [main] DEBUG ClassBuilder - Updated target of class dependency DependencyBuilder [_kind=CLASS, qName = SystemWide::LogicalDeviceData->LNGroupL::LLN0, _objData=UmlObjectData [id=2738, uuid={A065F8ED-0114-4e46-8A81-404C86385F2A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,649 [main] TRACE ClassBuilder - read from EA: LNGroupL::LLN0 +2024-09-07 12:38:48,649 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=LogicalNodes, _depth=3, _eaElementID=2759, _objData=UmlObjectData [id=146, uuid={094D04C6-6C60-4c07-B2AB-2B62AEE4FA5F}, since=null, name=LNGroupL, alias=System logical nodes, stereotype=, visibility=public, txtDescription='This group of logical nodes defines the system specific information. This includes information related to the physical device (represented by logical node LPHD), which contains the logical devices (represented by logical node LLN0) and the domain specific logical nodes (represented by DomainLN and all the concrete logical nodes, defined in the rest of this clause). This information (e.g., logical node mode control, nameplate information, operation counters) is independent of the application domain.', htmlDescription='

This group of logical nodes defines the system specific information. This includes information related to the physical device (represented by logical node LPHD), which contains the logical devices (represented by logical node LLN0) and the domain specific logical nodes (represented by DomainLN and all the concrete logical nodes, defined in the rest of this clause). This information (e.g., logical node mode control, nameplate information, operation counters) is independent of the application domain.

'], _modelId=58, _selfDependent=false, 2_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3040, uuid={926472AA-E063-4c71-B6F4-E0E19285A547}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='- misplaced (should be in package LNGroupK) +- bad DO name +- using CDC ENS - never use ENS, ENG, ENC in an LN, you must use a derived CDC instead.', htmlDescription='

- misplaced (should be in package LNGroupK)

- bad DO name

- using CDC ENS - never use ENS, ENG, ENC in an LN, you must use a derived CDC instead.

'], _containingPackage=LNGroupL, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3072, uuid={BC4F5403-9311-4498-9D8E-D31A2A2ECFD5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='StatAlmMthClc should be detected as defined but not detected as CDC (SPSTransient is not recognised as CDC).', htmlDescription='

StatAlmMthClc should be detected as defined but not detected as CDC (SPSTransient is not recognised as CDC).

'], _containingPackage=LNGroupL, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=LNGroupL, _objData=UmlObjectData [id=295, uuid={332E02C5-1CD4-4f01-914F-089D6CAA1B2B}, since=null, name=LNGroupL, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all logical nodes of this group.', htmlDescription='

This diagram shows all logical nodes of this group.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsTarget=1, _classes=3 +2024-09-07 12:38:48,649 [main] INFO PackageBuilder - processing package LNGroupC (4) ... +2024-09-07 12:38:48,649 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=LNGroupC, _objData=UmlObjectData [id=297, uuid={13560566-9203-4f26-A29B-B6758F013F1B}, since=null, name=LNGroupC, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all concrete logical nodes of this group, with the supertypes that factor their common attributes.', htmlDescription='

This diagram shows all concrete logical nodes of this group, with the supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,649 [main] DEBUG PackageBuilder - Updated target of package dependency DependencyBuilder [_kind=PACKAGE, qName = Functions::ControlEq->LogicalNodes::LNGroupC, _objData=UmlObjectData [id=2782, uuid={8390B365-348E-4e04-966A-68665FB8F8F6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,650 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3065, uuid={292CA34F-3CFF-4e6a-AB8E-9718E86E1D49}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='tests for constraints', htmlDescription='

tests for constraints

'], _containingPackage=LNGroupC, _otherEndName=] +2024-09-07 12:38:48,650 [main] TRACE ClassBuilder - Class CALH (2 in package LNGroupC) +2024-09-07 12:38:48,650 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupC::CALH, _objData=UmlObjectData [id=5599, uuid={1D7F87B8-C884-44eb-9055-53ED045B2C1C}, since=null, name=GrAlm, alias=, stereotype=, visibility=public, txtDescription='If 'GrAlm.stVal=true', a new group alarm has been activated by one of individual alarms. Group alarm summarises different alarms, as assigned via configuration.', htmlDescription='

If 'GrAlm.stVal=true', a new group alarm has been activated by one of individual alarms. Group alarm summarises different alarms, as assigned via configuration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2248, _eaTypeName=DPS, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,650 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupC::CALH, _objData=UmlObjectData [id=5600, uuid={0C2C7397-C0B9-4d43-8E0B-31F71AA4EA5A}, since=null, name=GrWrn, alias=, stereotype=, visibility=public, txtDescription='If 'GrWrn.stVal=true', a new group warning has been activated by one of individual warnings. Group warning summarises different warnings, as assigned via configuration.', htmlDescription='

If 'GrWrn.stVal=true', a new group warning has been activated by one of individual warnings. Group warning summarises different warnings, as assigned via configuration.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2248, _eaTypeName=DPS, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,650 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupC::CALH, _objData=UmlObjectData [id=6657, uuid={E31E67B3-BB2E-4eca-8A24-56CB50965FEF}, since=null, name=ModBeh, alias=, stereotype=, visibility=public, txtDescription='If 'GrWrn.stVal=true', a new group warning has been activated by one of individual warnings. Group warning summarises different warnings, as assigned via configuration.', htmlDescription='

If 'GrWrn.stVal=true', a new group warning has been activated by one of individual warnings. Group warning summarises different warnings, as assigned via configuration.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=3039, _eaTypeName=ERYBehaviourMode, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,651 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3438, uuid={60D14E81-5B27-492d-9F64-0989F5A0891E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=CALH, _otherEndName=?] +2024-09-07 12:38:48,651 [main] DEBUG ClassBuilder - Adding CALH as subclass of DomainLN +2024-09-07 12:38:48,651 [main] DEBUG ClassBuilder - Updated target of class dependency DependencyBuilder [_kind=CLASS, qName = ControlEq::AlarmHandler->LNGroupC::CALH, _objData=UmlObjectData [id=2795, uuid={D1DB0DF8-3CC9-4c3e-84B5-B1A6AFDFB19B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,651 [main] TRACE ClassBuilder - read from EA: LNGroupC::CALH +2024-09-07 12:38:48,651 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=LogicalNodes, _depth=3, _eaElementID=2784, _objData=UmlObjectData [id=148, uuid={AE0DD6CD-8C31-48ad-A0F4-34012EBFF823}, since=null, name=LNGroupC, alias=Logical nodes for control, stereotype=, visibility=public, txtDescription='This group of logical nodes represents process control functions.', htmlDescription='

This group of logical nodes represents process control functions.

'], _modelId=58, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3065, uuid={292CA34F-3CFF-4e6a-AB8E-9718E86E1D49}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='tests for constraints', htmlDescription='

tests for constraints

'], _containingPackage=LNGroupC, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=LNGroupC, _objData=UmlObjectData [id=297, uuid={13560566-9203-4f26-A29B-B6758F013F1B}, since=null, name=LNGroupC, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all concrete logical nodes of this group, with the supertypes that factor their common attributes.', htmlDescription='

This diagram shows all concrete logical nodes of this group, with the supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsTarget=1, _classes=1 +2024-09-07 12:38:48,651 [main] INFO PackageBuilder - processing package LNGroupG (7) ... +2024-09-07 12:38:48,651 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=LNGroupG, _objData=UmlObjectData [id=300, uuid={CE239FB0-6306-42ea-86F7-B64F0899B487}, since=null, name=LNGroupG, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all concrete logical nodes of this group, with the supertypes that factor their common attributes.', htmlDescription='

This diagram shows all concrete logical nodes of this group, with the supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,651 [main] DEBUG PackageBuilder - Updated target of package dependency DependencyBuilder [_kind=PACKAGE, qName = Functions::PrimaryEq->LogicalNodes::LNGroupG, _objData=UmlObjectData [id=2665, uuid={FD1D4851-6E6B-4b6e-B70D-5845E5626820}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,651 [main] DEBUG PackageBuilder - Updated target of package dependency DependencyBuilder [_kind=PACKAGE, qName = Functions::SystemWide->LogicalNodes::LNGroupG, _objData=UmlObjectData [id=2731, uuid={0ABB3171-2EAE-446b-B81C-098AD39433C9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,651 [main] DEBUG PackageBuilder - Updated target of package dependency DependencyBuilder [_kind=PACKAGE, qName = Functions::ControlEq->LogicalNodes::LNGroupG, _objData=UmlObjectData [id=2780, uuid={CB8A7C56-CC80-40db-9240-39C0BC8FCF3A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,652 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2813, uuid={991272D0-E1F1-46eb-A44A-28072E7E9A37}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- GSAL.OpCntRs is M, all the others are O. Is this intentional?', htmlDescription='

TODO:

  • GSAL.OpCntRs is M, all the others are O. Is this intentional?
'], _containingPackage=LNGroupG, _otherEndName=] +2024-09-07 12:38:48,652 [main] TRACE ClassBuilder - Class GGIO (3 in package LNGroupG) +2024-09-07 12:38:48,652 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupG::GGIO, _objData=UmlObjectData [id=5775, uuid={870B8E8E-1CE1-48a5-B4DF-5EDF733EF7FD}, since=null, name=EEHealth, alias=, stereotype=, visibility=public, txtDescription=''EEHealth.stVal' reflects the state of external (primary) equipment to which the logical node is associated.', htmlDescription='

'EEHealth.stVal' reflects the state of external (primary) equipment to which the logical node is associated.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2712, _eaTypeName=ENSHealth, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,652 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupG::GGIO, _objData=UmlObjectData [id=5782, uuid={A3049550-4E72-4228-8BD0-D2ECA1D9305C}, since=null, name=AnIn, alias=, stereotype=, visibility=public, txtDescription=''AnIn.mag.f' is the generic analogue input n.', htmlDescription='

'AnIn.mag.f' is the generic analogue input n.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2266, _eaTypeName=CMV, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,653 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupG::GGIO, _objData=UmlObjectData [id=5788, uuid={C1C99243-DCC4-48ff-A71B-D0E2B01DA933}, since=null, name=DPCSO, alias=, stereotype=, visibility=public, txtDescription=''DPCSO.ctlVal=true' or 'DPCSO.ctlVal=false' controls the generic double point controllable status output n. The resulting status is 'DPCSO.stVal'.', htmlDescription='

'DPCSO.ctlVal=true' or 'DPCSO.ctlVal=false' controls the generic double point controllable status output n. The resulting status is 'DPCSO.stVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2281, _eaTypeName=DPC, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,653 [main] ERROR ClassBuilder - [+++ EA problem: attr count on GGIO = 3 +, +++ attr EEHealth: pos = 1 +, +++ attr AnIn: pos = 1 DUPLICATE +, +++ attr DPCSO: pos = 2 +] +2024-09-07 12:38:48,653 [main] DEBUG ClassBuilder - Adding GGIO as subclass of StatisticsLN +2024-09-07 12:38:48,653 [main] DEBUG ClassBuilder - Updated target of class dependency DependencyBuilder [_kind=CLASS, qName = PrimaryEq::GenericIO->LNGroupG::GGIO, _objData=UmlObjectData [id=2713, uuid={974BA3EA-23AA-4b70-8964-EA8FD90B4327}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,653 [main] TRACE ClassBuilder - read from EA: LNGroupG::GGIO +2024-09-07 12:38:48,653 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=LogicalNodes, _depth=3, _eaElementID=2811, _objData=UmlObjectData [id=150, uuid={F4FA3C38-E2BE-4ca2-9D34-D8E9E0191F21}, since=null, name=LNGroupG, alias=Logical nodes for generic references, stereotype=, visibility=public, txtDescription='This group of logical nodes is used only for modelling functions without a dedicated logical node with appropriate semantics. Therefore, no description and requirements for the logical nodes of group G are given in IEC 61850-5.', htmlDescription='

This group of logical nodes is used only for modelling functions without a dedicated logical node with appropriate semantics. Therefore, no description and requirements for the logical nodes of group G are given in IEC 61850-5.

'], _modelId=58, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2813, uuid={991272D0-E1F1-46eb-A44A-28072E7E9A37}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- GSAL.OpCntRs is M, all the others are O. Is this intentional?', htmlDescription='

TODO:

  • GSAL.OpCntRs is M, all the others are O. Is this intentional?
'], _containingPackage=LNGroupG, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=LNGroupG, _objData=UmlObjectData [id=300, uuid={CE239FB0-6306-42ea-86F7-B64F0899B487}, since=null, name=LNGroupG, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all concrete logical nodes of this group, with the supertypes that factor their common attributes.', htmlDescription='

This diagram shows all concrete logical nodes of this group, with the supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsTarget=3, _classes=1 +2024-09-07 12:38:48,653 [main] INFO PackageBuilder - processing package LNGroupM (10) ... +2024-09-07 12:38:48,654 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=LNGroupM, _objData=UmlObjectData [id=304, uuid={A2B85C49-4EA0-4bf9-AF07-7DF01DE50BB0}, since=null, name=LNGroupM2, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the second part of concrete logical nodes of this group, with the supertypes that factor their common attributes.', htmlDescription='

This diagram shows the second part of concrete logical nodes of this group, with the supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,654 [main] DEBUG PackageBuilder - Updated target of package dependency DependencyBuilder [_kind=PACKAGE, qName = Functions::MeasurementsAndMetering->LogicalNodes::LNGroupM, _objData=UmlObjectData [id=2742, uuid={CC5085F3-A137-4156-AC8A-24B9D984F2EC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,655 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2843, uuid={20A12C6C-CD49-4de7-9597-70F609138E31}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- MMET.DlDur is duration, name should end with Tm or Tmm, to be consistent?', htmlDescription='

TODO:

  • MMET.DlDur is duration, name should end with Tm or Tmm, to be consistent?
'], _containingPackage=LNGroupM, _otherEndName=] +2024-09-07 12:38:48,655 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2858, uuid={8AFDC6A7-5812-48e1-92DD-570EC5800A88}, since=null, name=LNGroupM : LNGroupM1, alias=, stereotype=, visibility=public, txtDescription='LNGroupM : LNGroupM1', htmlDescription='

LNGroupM : LNGroupM1

'], _containingPackage=LNGroupM, _otherEndName=] +2024-09-07 12:38:48,656 [main] TRACE ClassBuilder - Class MMXU (13 in package LNGroupM) +2024-09-07 12:38:48,656 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupM::MMXU, _objData=UmlObjectData [id=6036, uuid={AB0A2202-6CAE-4f4c-9ADE-E1367D015FD1}, since=null, name=TotW, alias=, stereotype=, visibility=public, txtDescription=''TotW.mag.f' is the total real power in a three-phase circuit [W].', htmlDescription='

'TotW.mag.f' is the total real power in a three-phase circuit [W].

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2266, _eaTypeName=CMV, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,656 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupM::MMXU, _objData=UmlObjectData [id=6044, uuid={70F20DF1-D205-419a-A546-B00A930F4EF1}, since=null, name=A, alias=, stereotype=, visibility=public, txtDescription=''A' holds the currents for three phases.', htmlDescription='

'A' holds the currents for three phases.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2273, _eaTypeName=HWYE, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,657 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupM::MMXU, _objData=UmlObjectData [id=6645, uuid={4261E17B-01F7-4d5c-AD2B-D01366C474C1}, since=null, name=Desc, alias=, stereotype=, visibility=public, txtDescription='Dummy native DO of non-statistical type.', htmlDescription='

Dummy native DO of non-statistical type.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2255, _eaTypeName=HST, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,657 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2154, uuid={5A85C57C-77E4-4ded-B768-59A27D105EFC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=MMXU, _otherEndName=?] +2024-09-07 12:38:48,657 [main] DEBUG ClassBuilder - Adding MMXU as subclass of StatisticsLN +2024-09-07 12:38:48,657 [main] DEBUG ClassBuilder - Updated target of class dependency DependencyBuilder [_kind=CLASS, qName = MeasurementsAndMetering::ThreePhaseMeasurement->LNGroupM::MMXU, _objData=UmlObjectData [id=2748, uuid={58E9D6B7-D856-4627-A9CD-FFB197524811}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,657 [main] TRACE ClassBuilder - read from EA: LNGroupM::MMXU +2024-09-07 12:38:48,657 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=LogicalNodes, _depth=3, _eaElementID=2839, _objData=UmlObjectData [id=153, uuid={7B986191-8A53-43e0-BA3D-04C419D5591D}, since=null, name=LNGroupM, alias=Logical nodes for metering and measurement, stereotype=, visibility=public, txtDescription='This group of logical nodes represents metering and measuring functions.', htmlDescription='

This group of logical nodes represents metering and measuring functions.

'], _modelId=58, _selfDependent=false, 2_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2843, uuid={20A12C6C-CD49-4de7-9597-70F609138E31}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- MMET.DlDur is duration, name should end with Tm or Tmm, to be consistent?', htmlDescription='

TODO:

  • MMET.DlDur is duration, name should end with Tm or Tmm, to be consistent?
'], _containingPackage=LNGroupM, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2858, uuid={8AFDC6A7-5812-48e1-92DD-570EC5800A88}, since=null, name=LNGroupM : LNGroupM1, alias=, stereotype=, visibility=public, txtDescription='LNGroupM : LNGroupM1', htmlDescription='

LNGroupM : LNGroupM1

'], _containingPackage=LNGroupM, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=LNGroupM, _objData=UmlObjectData [id=304, uuid={A2B85C49-4EA0-4bf9-AF07-7DF01DE50BB0}, since=null, name=LNGroupM2, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the second part of concrete logical nodes of this group, with the supertypes that factor their common attributes.', htmlDescription='

This diagram shows the second part of concrete logical nodes of this group, with the supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsTarget=1, _classes=1 +2024-09-07 12:38:48,658 [main] INFO PackageBuilder - processing package LNGroupP (11) ... +2024-09-07 12:38:48,658 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=LNGroupP, _objData=UmlObjectData [id=305, uuid={ABE7863D-71A3-4c74-9C55-17754D2F2757}, since=null, name=LNGroupP1, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the first part of concrete logical nodes of this group, with the supertypes that factor their common attributes.', htmlDescription='

This diagram shows the first part of concrete logical nodes of this group, with the supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,658 [main] DEBUG PackageBuilder - Updated target of package dependency DependencyBuilder [_kind=PACKAGE, qName = Functions::ControlEq->LogicalNodes::LNGroupP, _objData=UmlObjectData [id=2781, uuid={BC522B12-05AB-4532-A2CA-EC73B8363658}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,658 [main] DEBUG PackageBuilder - Updated target of package dependency DependencyBuilder [_kind=PACKAGE, qName = Functions::ProtectionEq->LogicalNodes::LNGroupP, _objData=UmlObjectData [id=2796, uuid={5B01DA92-2B41-4efd-9319-7B4B6E111957}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,659 [main] ERROR EaTables - [+++ EA ordering problem for 5 class(s) in LNGroupP (manually move back/forth a class to initiate EA internal ordering update!): +, +++ class PDISExt: pos = 0 +, +++ class ProtectionLN: pos = 1 +, +++ class PDIF: pos = 10 +, +++ class PDIS: pos = 12 +, +++ class PDF2: pos = 0 DUPLICATE +] +2024-09-07 12:38:48,659 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2869, uuid={6CFEF5A7-49B5-4e9a-BE63-BDB6015512BD}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: PMRI has only Op, PHAR has only Str, and all other Pxxx have both Str and Op. However, they are sometimes O, sometimes M, so it is impossible to extract these two as common attributes into an abstract class...', htmlDescription='

Modelling note: PMRI has only Op, PHAR has only Str, and all other Pxxx have both Str and Op. However, they are sometimes O, sometimes M, so it is impossible to extract these two as common attributes into an abstract class...

'], _containingPackage=LNGroupP, _otherEndName=] +2024-09-07 12:38:48,659 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2914, uuid={2D25BDBB-CCC8-450c-A8DC-8B8D4E627EF9}, since=null, name=LNGroupP : LNGroupP2, alias=, stereotype=, visibility=public, txtDescription='LNGroupP : LNGroupP2', htmlDescription='

LNGroupP : LNGroupP2

'], _containingPackage=LNGroupP, _otherEndName=] +2024-09-07 12:38:48,661 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2915, uuid={3BC40F33-6D62-4df9-B06B-E62A6E08B5AB}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='b)', htmlDescription='

b)

'], _containingPackage=LNGroupP, _otherEndName=] +2024-09-07 12:38:48,661 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2916, uuid={3FFE9196-E649-4890-A5F8-035B7648E2CC}, since=null, name=LNGroupP : Load area and reach settings, alias=, stereotype=, visibility=public, txtDescription='PDIS : Load area and reach settings', htmlDescription='

PDIS : Load area and reach settings

'], _containingPackage=LNGroupP, _otherEndName=] +2024-09-07 12:38:48,661 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2917, uuid={6E282E4F-15CA-4304-AED8-6CB9D129ACE5}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='a)', htmlDescription='

a)

'], _containingPackage=LNGroupP, _otherEndName=] +2024-09-07 12:38:48,661 [main] TRACE ClassBuilder - Class PDISExt (0 in package LNGroupP) +2024-09-07 12:38:48,661 [main] TRACE ClassBuilder - read from EA: LNGroupP::PDISExt +2024-09-07 12:38:48,661 [main] TRACE ClassBuilder - Class ProtectionLN (1 in package LNGroupP) +2024-09-07 12:38:48,661 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupP::ProtectionLN, _objData=UmlObjectData [id=6089, uuid={1F112DF7-7748-4d99-9AD2-FD1D39A5923B}, since=null, name=OpCntRs, alias=, stereotype=, visibility=public, txtDescription=''OpCntRs.stVal' is the count of operations. It can be reset from remote, with the specified new counter value 'OpCntRs.ctlVal', which may be other than 0.', htmlDescription='

'OpCntRs.stVal' is the count of operations. It can be reset from remote, with the specified new counter value 'OpCntRs.ctlVal', which may be other than 0.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2282, _eaTypeName=INC, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,661 [main] DEBUG ClassBuilder - Adding ProtectionLN as subclass of DomainLN +2024-09-07 12:38:48,662 [main] TRACE ClassBuilder - read from EA: LNGroupP::ProtectionLN +2024-09-07 12:38:48,662 [main] TRACE ClassBuilder - Class PDIF (10 in package LNGroupP) +2024-09-07 12:38:48,662 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupP::PDIF, _objData=UmlObjectData [id=6139, uuid={6EDDE740-6CB2-49bd-B85C-F85BBC4D3339}, since=null, name=Str, alias=, stereotype=, visibility=public, txtDescription='If 'Str.general=true', a fault has been detected.', htmlDescription='

If 'Str.general=true', a fault has been detected.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2252, _eaTypeName=ACD, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,662 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupP::PDIF, _objData=UmlObjectData [id=6140, uuid={83CA9289-614E-43d2-B931-EDAA62BA0C42}, since=null, name=Op, alias=, stereotype=, visibility=public, txtDescription='If 'Op.general=true', the function decided to trip. The trip itself is issued by PTRC.', htmlDescription='

If 'Op.general=true', the function decided to trip. The trip itself is issued by PTRC.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2671, _eaTypeName=ACTTransient, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,662 [main] DEBUG ClassBuilder - Adding PDIF as subclass of ProtectionLN +2024-09-07 12:38:48,662 [main] DEBUG ClassBuilder - Updated target of class dependency DependencyBuilder [_kind=CLASS, qName = ProtectionEq::LineDifferentialProt->LNGroupP::PDIF, _objData=UmlObjectData [id=2849, uuid={DA0D3EC5-D7E4-421c-B2B4-821CAC8B845A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,662 [main] DEBUG ClassBuilder - Updated target of class dependency DependencyBuilder [_kind=CLASS, qName = ProtectionEq::BusbarProt->LNGroupP::PDIF, _objData=UmlObjectData [id=2888, uuid={666DE986-59DC-40fa-9FF2-C90F6F83395B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,662 [main] TRACE ClassBuilder - read from EA: LNGroupP::PDIF +2024-09-07 12:38:48,662 [main] TRACE ClassBuilder - Class PDIS (12 in package LNGroupP) +2024-09-07 12:38:48,663 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [, _containingClass=PDIS, _objData=UmlObjectData [id=307, uuid={F295ADA8-766F-49f5-8DF6-BE32D5A00DE9}, since=null, name=Load area and reach settings, alias=, stereotype=, visibility=public, txtDescription='This diagram illustrates settings related to load area (a) and to reach (b).', htmlDescription='

This diagram illustrates settings related to load area (a) and to reach (b).

'], _portrait=true, _kind=CUSTOM] +2024-09-07 12:38:48,663 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2884, uuid={355244D3-5BEA-42d6-8053-57771C13D184}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=PDIS, _otherEndName=] +2024-09-07 12:38:48,663 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2885, uuid={79A7F745-214C-49bf-B038-AB993B6E5572}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=PDIS, _otherEndName=] +2024-09-07 12:38:48,663 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2886, uuid={8B5A2AB3-D18F-478a-8E23-446102C54184}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=PDIS, _otherEndName=] +2024-09-07 12:38:48,663 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupP::PDIS, _objData=UmlObjectData [id=6156, uuid={0D273A67-FAF9-482f-8CB2-72A7096B42D7}, since=null, name=Str, alias=, stereotype=, visibility=public, txtDescription='If 'Str.general=true', a distance fault has been detected.', htmlDescription='

If 'Str.general=true', a distance fault has been detected.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2252, _eaTypeName=ACD, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,663 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupP::PDIS, _objData=UmlObjectData [id=6157, uuid={6F969465-C33F-4910-868B-353A7D2C9A2D}, since=null, name=Op, alias=, stereotype=, visibility=public, txtDescription='If 'Op.general=true', the function decided to trip due to distance fault. The trip itself is issued by PTRC.', htmlDescription='

If 'Op.general=true', the function decided to trip due to distance fault. The trip itself is issued by PTRC.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2671, _eaTypeName=ACTTransient, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,663 [main] DEBUG ClassBuilder - Adding PDIS as subclass of ProtectionLN +2024-09-07 12:38:48,663 [main] DEBUG ClassBuilder - Adding PDIS as superclass of PDISExt +2024-09-07 12:38:48,663 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = LNGroupP::PDIS->null, _objData=UmlObjectData [id=2447, uuid={800FD118-B060-44a3-9247-F3468A78EBF5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,663 [main] DEBUG ClassBuilder - Updated target of class dependency DependencyBuilder [_kind=CLASS, qName = ProtectionEq::DirectionalProt->LNGroupP::PDIS, _objData=UmlObjectData [id=3401, uuid={EE87DADE-74B8-44be-9DFA-6D6A6425C350}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,663 [main] TRACE ClassBuilder - read from EA: LNGroupP::PDIS +2024-09-07 12:38:48,663 [main] TRACE ClassBuilder - Class PDF2 (0 in package LNGroupP) +2024-09-07 12:38:48,664 [main] DEBUG ClassBuilder - Adding PDF2 as subclass of ProtectionLN +2024-09-07 12:38:48,664 [main] TRACE ClassBuilder - read from EA: LNGroupP::PDF2 +2024-09-07 12:38:48,664 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=LogicalNodes, _depth=3, _eaElementID=2860, _objData=UmlObjectData [id=154, uuid={67F071FD-8EE7-474d-85C3-9ECB565EFFDB}, since=null, name=LNGroupP, alias=Logical nodes for protection functions, stereotype=, visibility=public, txtDescription='This group of logical nodes refers to modelling of protection and protection related functions. Follow some modelling remarks. +- If there are several stages to one function (i.e. for multi-zone relay), each stage shall be a separate instance of the LN. Examples are PDIS (n zones) or PTOV (2 stages). +- Multiple instances shall be used if LNs of the same LN class are operating with different settings in parallel. +- If different measuring principles such as phase or ground are required, each shall be represented by an instance of the same basic function. An example is PTOC (used for phase or ground in dedicated instances). +- The logical nodes are defined in IEC 61850-5 from protection requirements (see Table 7), however, for modelling purposes, some logical nodes have been split. +- Logical nodes from IEC 61850-5 are modelled using combinations of the LNs defined in this standard. +- Other logical nodes have been added to model complex protection devices and schemes (see the following subclauses). As an example, line protection uses LN PSCH to combine the outputs from multiple protection LNs. +- The protection functions provide (if applicable) the data object Str (Start) with direction information. In the case of a protection function which provides no direction information, the direction "unknown" shall be transmitted. The data object Str is summarised by LN PTRC. +- If the fault direction is provided in Str (Start), the directional protection may be modelled without the directional element LN RDIR. If any of the settings provided by LN RDIR are needed, the LN RDIR shall be used. +- The protection functions provide (if applicable) the data object Op (Operate) without direction information. The data object Op is conditioned by LN PTRC resulting in the data object Tr (Real Trip), that is between every protection LN and the circuit breaker node XCBR shall be a LN PTRC.', htmlDescription='

This group of logical nodes refers to modelling of protection and protection related functions. Follow some modelling remarks.

  • If there are several stages to one function (i.e. for multi-zone relay), each stage shall be a separate instance of the LN. Examples are PDIS (n zones) or PTOV (2 stages).
  • Multiple instances shall be used if LNs of the same LN class are operating with different settings in parallel.
  • If different measuring principles such as phase or ground are required, each shall be represented by an instance of the same basic function. An example is PTOC (used for phase or ground in dedicated instances).
  • The logical nodes are defined in IEC 61850-5 from protection requirements (see Table 7), however, for modelling purposes, some logical nodes have been split.
  • Logical nodes from IEC 61850-5 are modelled using combinations of the LNs defined in this standard.
  • Other logical nodes have been added to model complex protection devices and schemes (see the following subclauses). As an example, line protection uses LN PSCH to combine the outputs from multiple protection LNs.
  • The protection functions provide (if applicable) the data object Str (Start) with direction information. In the case of a protection function which provides no direction information, the direction "unknown" shall be transmitted. The data object Str is summarised by LN PTRC.
  • If the fault direction is provided in Str (Start), the directional protection may be modelled without the directional element LN RDIR. If any of the settings provided by LN RDIR are needed, the LN RDIR shall be used.
  • The protection functions provide (if applicable) the data object Op (Operate) without direction information. The data object Op is conditioned by LN PTRC resulting in the data object Tr (Real Trip), that is between every protection LN and the circuit breaker node XCBR shall be a LN PTRC.
'], _modelId=58, _selfDependent=false, 5_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2869, uuid={6CFEF5A7-49B5-4e9a-BE63-BDB6015512BD}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: PMRI has only Op, PHAR has only Str, and all other Pxxx have both Str and Op. However, they are sometimes O, sometimes M, so it is impossible to extract these two as common attributes into an abstract class...', htmlDescription='

Modelling note: PMRI has only Op, PHAR has only Str, and all other Pxxx have both Str and Op. However, they are sometimes O, sometimes M, so it is impossible to extract these two as common attributes into an abstract class...

'], _containingPackage=LNGroupP, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2914, uuid={2D25BDBB-CCC8-450c-A8DC-8B8D4E627EF9}, since=null, name=LNGroupP : LNGroupP2, alias=, stereotype=, visibility=public, txtDescription='LNGroupP : LNGroupP2', htmlDescription='

LNGroupP : LNGroupP2

'], _containingPackage=LNGroupP, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2915, uuid={3BC40F33-6D62-4df9-B06B-E62A6E08B5AB}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='b)', htmlDescription='

b)

'], _containingPackage=LNGroupP, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2916, uuid={3FFE9196-E649-4890-A5F8-035B7648E2CC}, since=null, name=LNGroupP : Load area and reach settings, alias=, stereotype=, visibility=public, txtDescription='PDIS : Load area and reach settings', htmlDescription='

PDIS : Load area and reach settings

'], _containingPackage=LNGroupP, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2917, uuid={6E282E4F-15CA-4304-AED8-6CB9D129ACE5}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='a)', htmlDescription='

a)

'], _containingPackage=LNGroupP, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=LNGroupP, _objData=UmlObjectData [id=305, uuid={ABE7863D-71A3-4c74-9C55-17754D2F2757}, since=null, name=LNGroupP1, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the first part of concrete logical nodes of this group, with the supertypes that factor their common attributes.', htmlDescription='

This diagram shows the first part of concrete logical nodes of this group, with the supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsTarget=2, _classes=5 +2024-09-07 12:38:48,664 [main] INFO PackageBuilder - processing package LNGroupR (13) ... +2024-09-07 12:38:48,664 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=LNGroupR, _objData=UmlObjectData [id=309, uuid={28D82044-73B8-4b6a-81BB-87DDDB9BF469}, since=null, name=LNGroupR, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all concrete logical nodes of this group, with the supertypes that factor their common attributes.', htmlDescription='

This diagram shows all concrete logical nodes of this group, with the supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,664 [main] DEBUG PackageBuilder - Updated target of package dependency DependencyBuilder [_kind=PACKAGE, qName = Functions::ProtectionEq->LogicalNodes::LNGroupR, _objData=UmlObjectData [id=2797, uuid={22C10575-60D8-4d36-9D17-44F610D9BC33}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,665 [main] TRACE ClassBuilder - Class RDIR (2 in package LNGroupR) +2024-09-07 12:38:48,665 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupR::RDIR, _objData=UmlObjectData [id=6339, uuid={969DA200-CE87-48c0-9C84-E86508A81D4B}, since=null, name=Dir, alias=, stereotype=, visibility=public, txtDescription='If 'Dir.general=true', a fault has been detected. 'Dir.dirGeneral' is the direction of the fault.', htmlDescription='

If 'Dir.general=true', a fault has been detected. 'Dir.dirGeneral' is the direction of the fault.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2252, _eaTypeName=ACD, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,666 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupR::RDIR, _objData=UmlObjectData [id=6658, uuid={FD102340-AB93-4aec-A54A-6DA7F5AC4487}, since=null, name=TotW, alias=, stereotype=, visibility=public, txtDescription=''TotW.mag.f' is the total real power in a three-phase circuit [W].', htmlDescription='

'TotW.mag.f' is the total real power in a three-phase circuit [W].

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2721, _eaTypeName=SPSTransient, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,666 [main] DEBUG ClassBuilder - Adding RDIR as subclass of DomainLN +2024-09-07 12:38:48,666 [main] DEBUG ClassBuilder - Updated target of class dependency DependencyBuilder [_kind=CLASS, qName = LNGroupP::PDIS->LNGroupR::RDIR, _objData=UmlObjectData [id=2447, uuid={800FD118-B060-44a3-9247-F3468A78EBF5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,666 [main] DEBUG ClassBuilder - Updated target of class dependency DependencyBuilder [_kind=CLASS, qName = ProtectionEq::DirectionalPowerProt->LNGroupR::RDIR, _objData=UmlObjectData [id=2872, uuid={DD4B3FA8-B91D-4755-89D6-176AA40B2C8A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,666 [main] DEBUG ClassBuilder - Updated target of class dependency DependencyBuilder [_kind=CLASS, qName = ProtectionEq::DirectionalProt->LNGroupR::RDIR, _objData=UmlObjectData [id=2876, uuid={1D8C878B-9F8C-4292-A1AD-714B0D1A64F0}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,666 [main] TRACE ClassBuilder - read from EA: LNGroupR::RDIR +2024-09-07 12:38:48,666 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=LogicalNodes, _depth=3, _eaElementID=2929, _objData=UmlObjectData [id=156, uuid={583E5BD1-AE27-4631-BA31-97CA219935FF}, since=null, name=LNGroupR, alias=Logical nodes for protection related functions, stereotype=, visibility=public, txtDescription='This group of logical nodes represents protection-related functions (they contribute to, but do not do protection).', htmlDescription='

This group of logical nodes represents protection-related functions (they contribute to, but do not do protection).

'], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=LNGroupR, _objData=UmlObjectData [id=309, uuid={28D82044-73B8-4b6a-81BB-87DDDB9BF469}, since=null, name=LNGroupR, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all concrete logical nodes of this group, with the supertypes that factor their common attributes.', htmlDescription='

This diagram shows all concrete logical nodes of this group, with the supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsTarget=1, _classes=1 +2024-09-07 12:38:48,667 [main] INFO PackageBuilder - processing package LNGroupZ (18) ... +2024-09-07 12:38:48,667 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=LNGroupZ, _objData=UmlObjectData [id=316, uuid={433F6130-268E-42aa-8A3B-A11C21FFA74B}, since=null, name=LNGroupZ-1, alias=, stereotype=, visibility=public, txtDescription='This diagram shows first part of concrete logical nodes of this group, with the supertypes that factor their common attributes.', htmlDescription='

This diagram shows first part of concrete logical nodes of this group, with the supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,667 [main] DEBUG PackageBuilder - Updated target of package dependency DependencyBuilder [_kind=PACKAGE, qName = Functions::PrimaryEq->LogicalNodes::LNGroupZ, _objData=UmlObjectData [id=2670, uuid={0CE7939E-BB12-453e-A921-2F7AC739D7F0}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,668 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3063, uuid={F1B15CD9-392C-47a7-AC84-4EC49476E5CE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Testing several things with this one: +- constraint parsing (identifying uninstantiated argument) +- usage of types from unallowed namespace (wrong dependency direction) +- bad deducing of 'basedOn' type if PrimitiveDA subtype defines its 'val' attribute as public (should be private = hidden).', htmlDescription='

Testing several things with this one:

- constraint parsing (identifying uninstantiated argument)

- usage of types from unallowed namespace (wrong dependency direction)

- bad deducing of 'basedOn' type if PrimitiveDA subtype defines its 'val' attribute as public (should be private = hidden).

'], _containingPackage=LNGroupZ, _otherEndName=] +2024-09-07 12:38:48,668 [main] TRACE ClassBuilder - Class ZAXN (2 in package LNGroupZ) +2024-09-07 12:38:48,668 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupZ::ZAXN, _objData=UmlObjectData [id=6638, uuid={1BB69D0F-6A5C-42a9-BA05-66201FD25912}, since=null, name=Vol, alias=, stereotype=, visibility=public, txtDescription=''Vol.mag.f' is the non-phase-related or DC voltage of the auxiliary network.', htmlDescription='

'Vol.mag.f' is the non-phase-related or DC voltage of the auxiliary network.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2266, _eaTypeName=CMV, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,668 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupZ::ZAXN, _objData=UmlObjectData [id=6639, uuid={D663E9D5-E794-4ef3-9105-84C63DA293E9}, since=null, name=Amp, alias=, stereotype=, visibility=public, txtDescription=''Amp.mag.f' is the non-phase-related current of the auxiliary network.', htmlDescription='

'Amp.mag.f' is the non-phase-related current of the auxiliary network.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2264, _eaTypeName=MV, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,668 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupZ::ZAXN, _objData=UmlObjectData [id=6691, uuid={D79127BE-EF55-4d56-A80C-A80263BAFAE0}, since=null, name=Mat, alias=, stereotype=, visibility=public, txtDescription='For testing usage of class from other namespace.', htmlDescription='

For testing usage of class from other namespace.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=3060, _eaTypeName=ENSMaterial, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,668 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupZ::ZAXN, _objData=UmlObjectData [id=6692, uuid={F095BA66-9343-47d5-9E9E-D3A6CD6DCAE2}, since=null, name=MatCtl, alias=, stereotype=, visibility=public, txtDescription='One more, for testing usage of class from other namespace.', htmlDescription='

One more, for testing usage of class from other namespace.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=3059, _eaTypeName=ENCMaterial, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,669 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupZ::ZAXN, _objData=UmlObjectData [id=6693, uuid={95F61B3E-0763-4162-AD6C-4769946A79EC}, since=null, name=Oth, alias=, stereotype=, visibility=public, txtDescription='One more, for testing usage of class from other namespace and also underlying type (where initially 'val' defined as public).', htmlDescription='

One more, for testing usage of class from other namespace and also underlying type (where initially 'val' defined as public).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=3062, _eaTypeName=ENSOther, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,669 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3437, uuid={527DD4FB-2F7D-4215-A7BB-079B0D75CD15}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=ZAXN, _otherEndName=?] +2024-09-07 12:38:48,669 [main] DEBUG ClassBuilder - Adding ZAXN as subclass of EquipmentInterfaceLN +2024-09-07 12:38:48,669 [main] DEBUG ClassBuilder - Updated target of class dependency DependencyBuilder [_kind=CLASS, qName = PrimaryEq::AuxiliaryNetwork->LNGroupZ::ZAXN, _objData=UmlObjectData [id=2727, uuid={71C8F66D-33AE-4d0c-8B16-EE0E777397A2}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,669 [main] TRACE ClassBuilder - read from EA: LNGroupZ::ZAXN +2024-09-07 12:38:48,669 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=LogicalNodes, _depth=3, _eaElementID=3010, _objData=UmlObjectData [id=161, uuid={D4A13BFB-0C2B-419c-9AEA-5CADB6EE8E62}, since=null, name=LNGroupZ, alias=Logical nodes for further power system equipment, stereotype=, visibility=public, txtDescription='This group of logical nodes refers all to power system objects which are reusable in other power systems domains but not modelled in other logical node groups of this standard.', htmlDescription='

This group of logical nodes refers all to power system objects which are reusable in other power systems domains but not modelled in other logical node groups of this standard.

'], _modelId=58, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3063, uuid={F1B15CD9-392C-47a7-AC84-4EC49476E5CE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Testing several things with this one: +- constraint parsing (identifying uninstantiated argument) +- usage of types from unallowed namespace (wrong dependency direction) +- bad deducing of 'basedOn' type if PrimitiveDA subtype defines its 'val' attribute as public (should be private = hidden).', htmlDescription='

Testing several things with this one:

- constraint parsing (identifying uninstantiated argument)

- usage of types from unallowed namespace (wrong dependency direction)

- bad deducing of 'basedOn' type if PrimitiveDA subtype defines its 'val' attribute as public (should be private = hidden).

'], _containingPackage=LNGroupZ, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=LNGroupZ, _objData=UmlObjectData [id=316, uuid={433F6130-268E-42aa-8A3B-A11C21FFA74B}, since=null, name=LNGroupZ-1, alias=, stereotype=, visibility=public, txtDescription='This diagram shows first part of concrete logical nodes of this group, with the supertypes that factor their common attributes.', htmlDescription='

This diagram shows first part of concrete logical nodes of this group, with the supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsTarget=1, _classes=1 +2024-09-07 12:38:48,669 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_4, _depth=2, _eaElementID=2723, _objData=UmlObjectData [id=144, uuid={EC861B7F-893F-4665-858B-F7E3FB83F3C1}, since=null, name=LogicalNodes, alias=Logical node classes, stereotype=, visibility=public, txtDescription='This clause specifies logical nodes defined in IEC 61850-7-4. The types for logical nodes' data (common data classes) are defined in IEC 61850-7-3, while logical nodes' services and relationships to different control blocks are defined in IEC 61850-7-2. +In IEC 61850-7-4, concrete logical nodes are grouped into 16 groups: +- 1 containing 'special', or system logical nodes, and, +- 15 groups of domain logical nodes. +The names of logical nodes shall begin with the character representing the group to which the logical node belongs. For modelling per phase (for example switches or instrument transformers), one instance per phase shall be created; for modelling protection per zone or level, one instance per zone or level shall be created.', htmlDescription='

This clause specifies logical nodes defined in IEC 61850-7-4. The types for logical nodes' data (common data classes) are defined in IEC 61850-7-3, while logical nodes' services and relationships to different control blocks are defined in IEC 61850-7-2.

In IEC 61850-7-4, concrete logical nodes are grouped into 16 groups:

  • 1 containing 'special', or system logical nodes, and,
  • 15 groups of domain logical nodes.

The names of logical nodes shall begin with the character representing the group to which the logical node belongs. For modelling per phase (for example switches or instrument transformers), one instance per phase shall be created; for modelling protection per zone or level, one instance per zone or level shall be created.

'], _modelId=58, _selfDependent=false, 6_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2724, uuid={D0767D8F-CFB4-484b-B888-3084B98E911B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: Original IEC 61850-7-4 explicitly defines a "Common Logical Node", which inherits from the (abstract) Logical Node, defined in ACSI, and has as subtypes the LLN0 and all the Domain Logical Nodes. It only serves to specify the common mandatory attributes of the subtypes (i.e., of all logical nodes but the LPHD). The "Common Logical Node" specifies also some optional attributes, which are application independent, such as external equipment health and name plate, or operation counters. The standard states that the derived logical nodes can do 3 different things with those optional attributes: +- not inherit them, or, +- inherit them as optional, or, +- inherit them as mandatory. +Therefore, there is no way to show optional attributes at "Common Logical Node" level - they must be (and are in the original standard itself) defined within the concrete logical nodes' definitions. +For the above reasons, this model does not specify the type "Common Logical Node": it simply defines mandatory attributes for both (abstract) DomainLN and (concrete) LLN0. Grouping data objects that are common to several LNs into abstract classes happens at a finer level of granularity.', htmlDescription='

Modelling note: Original IEC 61850-7-4 explicitly defines a "Common Logical Node", which inherits from the (abstract) Logical Node, defined in ACSI, and has as subtypes the LLN0 and all the Domain Logical Nodes. It only serves to specify the common mandatory attributes of the subtypes (i.e., of all logical nodes but the LPHD). The "Common Logical Node" specifies also some optional attributes, which are application independent, such as external equipment health and name plate, or operation counters. The standard states that the derived logical nodes can do 3 different things with those optional attributes:

- not inherit them, or,

- inherit them as optional, or,

- inherit them as mandatory.

Therefore, there is no way to show optional attributes at "Common Logical Node" level - they must be (and are in the original standard itself) defined within the concrete logical nodes' definitions.

For the above reasons, this model does not specify the type "Common Logical Node": it simply defines mandatory attributes for both (abstract) DomainLN and (concrete) LLN0. Grouping data objects that are common to several LNs into abstract classes happens at a finer level of granularity.

'], _containingPackage=LogicalNodes, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2725, uuid={B228C148-1E21-47b2-A886-159F0BE9A50A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='LNMode LDMode LNBeh (read only) LNBeh +XXXX.Mod LLN0.Mod XXXX.Beh Value +on on on 1 +on blocked blocked 2 +on test test 3 +on test/blocked test/blocked 4 +on off off 5 +blocked on blocked 2 +blocked blocked blocked 2 +blocked test test/blocked 4 +blocked test/blocked test/blocked 4 +blocked off off 5 +test on test 3 +test blocked test/blocked 4 +test test test 3 +test test/blocked test/blocked 4 +test off off 5 +test/blocked on test/blocked 4 +test/blocked blocked test/blocked 4 +test/blocked test test/blocked 4 +test/blocked test/blocked test/blocked 4 +test/blocked off off 5 +off on off 5 +off blocked off 5 +off test off 5 +off test/blocked off 5 +off off off 5', htmlDescription='

LNMode LDMode LNBeh (read only) LNBeh

XXXX.Mod LLN0.Mod XXXX.Beh Value

on on on 1

on blocked blocked 2

on test test 3

on test/blocked test/blocked 4

on off off 5

blocked on blocked 2

blocked blocked blocked 2

blocked test test/blocked 4

blocked test/blocked test/blocked 4

blocked off off 5

test on test 3

test blocked test/blocked 4

test test test 3

test test/blocked test/blocked 4

test off off 5

test/blocked on test/blocked 4

test/blocked blocked test/blocked 4

test/blocked test test/blocked 4

test/blocked test/blocked test/blocked 4

test/blocked off off 5

off on off 5

off blocked off 5

off test off 5

off test/blocked off 5

off off off 5

'], _containingPackage=LogicalNodes, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2727, uuid={1E36F7F7-68C3-4b87-8A96-CBE243CB505D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Describe these somehow... +Note: There should be a link between the LLN0 (which is "the data of LD") and all the DomainLNs contained in the LD.', htmlDescription='

TODO: Describe these somehow...

Note: There should be a link between the LLN0 (which is "the data of LD") and all the DomainLNs contained in the LD.

'], _containingPackage=LogicalNodes, _otherEndName=], SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2740, uuid={70BF6490-0829-4499-B3F1-91B1F53AB7E5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=LogicalNodes, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3031, uuid={2B7E85C1-2253-47e1-9F2A-A1A6C3FD8E78}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Only GGIO and MMXU inherit from it in this sample model.', htmlDescription='

Only GGIO and MMXU inherit from it in this sample model.

'], _containingPackage=LogicalNodes, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3081, uuid={728AF8F8-AE9D-44d5-BDC8-10BD5014B6DD}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='SPSTransient has no parents, i.e., it's a badly defined CDC and doesn't get recognised as CDC.', htmlDescription='

SPSTransient has no parents, i.e., it's a badly defined CDC and doesn't get recognised as CDC.

'], _containingPackage=LogicalNodes, _otherEndName=]], 2_diagrams=[DiagramBuilder [_containingPackage=LogicalNodes, _objData=UmlObjectData [id=291, uuid={9C304E21-9AF5-4868-98F3-894BF0B82CA2}, since=null, name=LogicalNodes, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all the logical node groups, with their contents, as well as the abstract logical nodes used by concrete logical nodes from multiple groups. The purpose of abstract logical nodes is to avoid duplication in definition of data objects which are used by multiple concrete logical nodes. Abstract logical nodes are never instantiated; Their attributes are inheritied by concrete logical nodes which are instantiable.', htmlDescription='

This diagram shows all the logical node groups, with their contents, as well as the abstract logical nodes used by concrete logical nodes from multiple groups. The purpose of abstract logical nodes is to avoid duplication in definition of data objects which are used by multiple concrete logical nodes. Abstract logical nodes are never instantiated; Their attributes are inheritied by concrete logical nodes which are instantiable.

'], _portrait=true, _kind=LOGICAL], DiagramBuilder [_containingPackage=LogicalNodes, _objData=UmlObjectData [id=290, uuid={13255AEB-A18C-4620-B272-CD274CE0D4D3}, since=null, name=LNRelationToACSI, alias=, stereotype=, visibility=public, txtDescription='All logical node classes defined in this document inherit their structure from the abstract LN class defined in IEC 61850-7-2. The structure comprises the attributes (e.g., name and reference), and the services and applicable control blocks defined in IEC 61850-7-2. Currently, they are all modelled with operations (services). +IEC 61850-7-4 adds data objects as attributes, in order to complete the definition of concrete logical nodes. +The diagram shows also the attributes per type of logical node defined in this document (optional attributes have multiplicity [0..1]. Physical device logical node (LPHD) and Logical device logical node (LLN0) are concrete logical node types. On the contrary, DomainLN is an abstract logical node type (its name is shown in italic), because it serves to define the attributes that shall be inherited by every concrete domain logical node type (e.g., XCBR, PDIS). Having this kind of definition at one place avoids error-prone repeating of these common attributes within the definition of every concrete domain logical node. +Some logical nodes define conditions on one or more data objects. In this diagram, this is the case for LLN0, with the condition "C1"; The definition of condition is available for each data object involved in the condition and refers to Presence conditions introduced in IEC61850-7-3, Clause 5.', htmlDescription='

All logical node classes defined in this document inherit their structure from the abstract LN class defined in IEC 61850-7-2. The structure comprises the attributes (e.g., name and reference), and the services and applicable control blocks defined in IEC 61850-7-2. Currently, they are all modelled with operations (services).

IEC 61850-7-4 adds data objects as attributes, in order to complete the definition of concrete logical nodes.

The diagram shows also the attributes per type of logical node defined in this document (optional attributes have multiplicity [0..1]. Physical device logical node (LPHD) and Logical device logical node (LLN0) are concrete logical node types. On the contrary, DomainLN is an abstract logical node type (its name is shown in italic), because it serves to define the attributes that shall be inherited by every concrete domain logical node type (e.g., XCBR, PDIS). Having this kind of definition at one place avoids error-prone repeating of these common attributes within the definition of every concrete domain logical node.

Some logical nodes define conditions on one or more data objects. In this diagram, this is the case for LLN0, with the condition "C1"; The definition of condition is available for each data object involved in the condition and refers to Presence conditions introduced in IEC61850-7-3, Clause 5.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=3, _classes=3, _childPackages=8] +2024-09-07 12:38:48,670 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=WG10, _depth=1, _eaElementID=2316, _objData=UmlObjectData [id=127, uuid={D48BF303-DE06-47d5-ACB4-80C8B5BDF58E}, since=null, name=IEC61850_7_4, alias=Logical nodes, stereotype=, visibility=public, txtDescription='Part 7-4, from clause 5.3 to the end of clause 6, annex H, and content of annex A (but wihtout table).', htmlDescription='

Part 7-4, from clause 5.3 to the end of clause 6, annex H, and content of annex A (but wihtout table).

'], _modelId=58, _selfDependent=true, 1_diagrams=[DiagramBuilder [_containingPackage=IEC61850_7_4, _objData=UmlObjectData [id=264, uuid={53319A3A-F127-44ff-9189-57CBBD02C7D3}, since=null, name=IEC61850_7_4, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the content of this package, as well as dependencies to other parts of the model. +Note: Highlighted sub-packages contained in IEC61850-7-4 are required to generate the document automatically. Package IEC61850_5::Functions is also required to generate IEC61850-7-4, but is not shown here.', htmlDescription='

This diagram shows the content of this package, as well as dependencies to other parts of the model.

Note: Highlighted sub-packages contained in IEC61850-7-4 are required to generate the document automatically. Package IEC61850_5::Functions is also required to generate IEC61850-7-4, but is not shown here.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=3, _dependenciesAsTarget=2, _classes=1, _childPackages=6] +2024-09-07 12:38:48,672 [main] TRACE PackageBuilder - read PackageBuilder [_kind=TOP, _containingPackage=IEC61850Domain, _depth=0, _eaElementID=1552, _objData=UmlObjectData [id=85, uuid={13005C9D-76D7-4089-8B2E-FE8E67CC563E}, since=null, name=WG10, alias=, stereotype=, visibility=public, txtDescription='This package contains the UML model of IEC61850-7-* Ed.2. +Disclaimer: Initial version of this model has been developed by ABB Switzerland, Corporate Research and donated to IEC TC57 for further maintenance.', htmlDescription='

This package contains the UML model of IEC61850-7-* Ed.2.

Disclaimer: Initial version of this model has been developed by ABB Switzerland, Corporate Research and donated to IEC TC57 for further maintenance.

'], _modelId=58, _selfDependent=false, 17_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1553, uuid={D94F6B33-4624-48cd-AEBC-C0FDE476430F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling notes: +- We have tried to stick to the definition of concepts per Part of IEC61850, by grouping them into corresponding packages. This would allow relatively straight forward generation of IEC word documents directly from this model (this has been successfully done with another UML tool for Part 7, in 2003). For a software, it is certainly possible to think of a better grouping. +- In addition to the objective of documentation generation mentioned above, the design of the model aimed at facilitating initial, skeletal code generation. For that reason, there are many dependency relationships between packages (because UML dependencies are not transitive). If the model is not to be used for code generation, explicit dependencies among sub-packages can be greatly simplified, by replacing them with top-level package dependencies. +- This model has initially been developed from mid-2002 to mid-2004 with Rational Rose CASE tool, then imported into Enterprise Architect CASE tool. Parts of the original version have indeed been successfully used for skeleton code generation (MetaModel, ACSI and DA packages). We cannot guarantee that the present model is absolutely fit for painless code generation, but it should be a good starting point. +- We "order" packages in a bottom-up way, i.e., from the least dependent (most basic) towards the most dependent. In this way, if documentation gets generated, the basic concepts are seen first, then those that use them. However, for presentation purposes, it is probably better to introduce things top-down. +How to browse the model: +- Clicking on any package will automatically open the main diagram of that package. There are many diagrams in the model, and many of them contain hyperlinks to other, related diagrams. Most of the diagram should fit onto an A4 page. +- Domain experts and those who would like to extend the model, will care the most for the content of high level packages (LogicalNodes and CommonDataClasses). +- Implementors will have to start from ACSI package, in particular from its MetaModel sub-package. +Position statement: +- If you find the model complex, please blame the authors of IEC61850, not us :-)', htmlDescription='

Modelling notes:

  • We have tried to stick to the definition of concepts per Part of IEC61850, by grouping them into corresponding packages. This would allow relatively straight forward generation of IEC word documents directly from this model (this has been successfully done with another UML tool for Part 7, in 2003). For a software, it is certainly possible to think of a better grouping.
  • In addition to the objective of documentation generation mentioned above, the design of the model aimed at facilitating initial, skeletal code generation. For that reason, there are many dependency relationships between packages (because UML dependencies are not transitive). If the model is not to be used for code generation, explicit dependencies among sub-packages can be greatly simplified, by replacing them with top-level package dependencies.
  • This model has initially been developed from mid-2002 to mid-2004 with Rational Rose CASE tool, then imported into Enterprise Architect CASE tool. Parts of the original version have indeed been successfully used for skeleton code generation (MetaModel, ACSI and DA packages). We cannot guarantee that the present model is absolutely fit for painless code generation, but it should be a good starting point.
  • We "order" packages in a bottom-up way, i.e., from the least dependent (most basic) towards the most dependent. In this way, if documentation gets generated, the basic concepts are seen first, then those that use them. However, for presentation purposes, it is probably better to introduce things top-down.

How to browse the model:

  • Clicking on any package will automatically open the main diagram of that package. There are many diagrams in the model, and many of them contain hyperlinks to other, related diagrams. Most of the diagram should fit onto an A4 page.
  • Domain experts and those who would like to extend the model, will care the most for the content of high level packages (LogicalNodes and CommonDataClasses).
  • Implementors will have to start from ACSI package, in particular from its MetaModel sub-package.

Position statement:

  • If you find the model complex, please blame the authors of IEC61850, not us :-)
'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1554, uuid={8ECEFF06-BAD2-41e0-B468-9E73B7693BE3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='We describe the meta-model example shown in the bottom-up manner, as follows: +- VISIBLE_STRING255 and FLOAT32 are PrimitiveDAs. In this model, we have explicitly defined primitive types with the prefix 'P_', which can be used as implementation artefacts, and to protect the overall model from any potential implementation language detail. Therefore, VISIBLE_STRING255 and FLOAT32 simply hold an attribute 'val' of the corresponding primitive data type (as would be defined in a particular programming language), and inherit from the meta-model class PrimitiveDA. +- Vector and AnalogueValue are both ComposedDAs. A ComposedDA must contain at least one DA, be it ComposedDA or PrimitiveDA: Vector contains AnalogueValue 'mag', as a ComposedDA, and AnalogueValue contains FLOAT32 'f' as a PrimitiveDA. +- VISIBLE_STRING255_DC, AnalogueValue_MX and Vector_MX_dchg are all FCDAs, i.e., they provide the explicit definition for all the combinations of available functional constraints and triggering options, with DAs. Therefore, each of them simply contains an attribute, 'attr', of the corresponding DA type, either ComposedDA (in the case of AnalogueValue_MX and Vector_MX_dchg) or PrimitiveDA (in the case of VISIBLE_STRING255_DC). +- MV, CMV and WYE are all CDCs. The first two are PrimitiveCDCs and the last one is a ComposedCDC. As CDCs, they must contain one or more FCDAs - all have attribute 'd' of type VISIBLE_STRING255, and MV and CMV have attributes 'mag' and 'cVal', respectively, of types AnalogueValue_MX and Vector_MX_dchg, respectively. A ComposedCDC must additionally contain one or more PrimitiveCDCs - example for WYE is the attribute 'phsA', which is a PrimitiveCDC. +- Finally, MMXU is an LN and must contain one or more CDCs - attribute 'A' is a CDC. +With this meta-model approach, all the complexity of the datatype system is hidden below CDCs, and the essential of the domain is contained in the LNs.', htmlDescription='

We describe the meta-model example shown in the bottom-up manner, as follows:

  • VISIBLE_STRING255 and FLOAT32 are PrimitiveDAs. In this model, we have explicitly defined primitive types with the prefix 'P_', which can be used as implementation artefacts, and to protect the overall model from any potential implementation language detail. Therefore, VISIBLE_STRING255 and FLOAT32 simply hold an attribute 'val' of the corresponding primitive data type (as would be defined in a particular programming language), and inherit from the meta-model class PrimitiveDA.
  • Vector and AnalogueValue are both ComposedDAs. A ComposedDA must contain at least one DA, be it ComposedDA or PrimitiveDA: Vector contains AnalogueValue 'mag', as a ComposedDA, and AnalogueValue contains FLOAT32 'f' as a PrimitiveDA.
  • VISIBLE_STRING255_DC, AnalogueValue_MX and Vector_MX_dchg are all FCDAs, i.e., they provide the explicit definition for all the combinations of available functional constraints and triggering options, with DAs. Therefore, each of them simply contains an attribute, 'attr', of the corresponding DA type, either ComposedDA (in the case of AnalogueValue_MX and Vector_MX_dchg) or PrimitiveDA (in the case of VISIBLE_STRING255_DC).
  • MV, CMV and WYE are all CDCs. The first two are PrimitiveCDCs and the last one is a ComposedCDC. As CDCs, they must contain one or more FCDAs - all have attribute 'd' of type VISIBLE_STRING255, and MV and CMV have attributes 'mag' and 'cVal', respectively, of types AnalogueValue_MX and Vector_MX_dchg, respectively. A ComposedCDC must additionally contain one or more PrimitiveCDCs - example for WYE is the attribute 'phsA', which is a PrimitiveCDC.
  • Finally, MMXU is an LN and must contain one or more CDCs - attribute 'A' is a CDC.

With this meta-model approach, all the complexity of the datatype system is hidden below CDCs, and the essential of the domain is contained in the LNs.

'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1556, uuid={1FE867FD-79B7-464f-8052-435DD1687820}, since=null, name=Parts7 : DataModelExample, alias=, stereotype=, visibility=public, txtDescription='Parts7 : DataModelExample', htmlDescription='

Parts7 : DataModelExample

'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1557, uuid={256FF05A-27ED-4887-B5FE-EDF4614593EB}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='mag', htmlDescription='

mag

'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1558, uuid={26E40582-F186-466d-86B4-F8DD7DBC54F0}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='Part 7-2 (ACSI, meta-model) Parts 7-4, 7-3 (concrete LNs, CDCs, DAs)', htmlDescription='

Part 7-2 (ACSI, meta-model) Parts 7-4, 7-3 (concrete LNs, CDCs, DAs)

'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1559, uuid={2D4E4EBF-44BB-4c48-894D-39CD41A54738}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='...', htmlDescription='

...

'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1560, uuid={3BAA5323-14E0-439f-84A0-1B5952B05C8F}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='A', htmlDescription='

A

'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1561, uuid={3ECBDF79-B2DB-41b1-91F7-ECA45C2F64EB}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='attr', htmlDescription='

attr

'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1562, uuid={4322E030-F287-4017-9D95-2A8AF934BE65}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='attr', htmlDescription='

attr

'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1563, uuid={4A5F30B1-B039-4ef0-BDD6-3F7630BB47ED}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='cVal', htmlDescription='

cVal

'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1564, uuid={581893B5-516E-4999-B0A4-0C8538B87209}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='...', htmlDescription='

...

'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1565, uuid={5FED3E4A-CE83-456a-814C-A684836C1338}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='d', htmlDescription='

d

'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1566, uuid={884347DF-162A-4b48-A9A5-9BBF0523A2E9}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='phsA', htmlDescription='

phsA

'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1567, uuid={952F1499-B3A1-4f4d-A950-5C65655720DD}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='attr', htmlDescription='

attr

'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1568, uuid={9FAF5191-B3F7-48ad-862E-9462DA86C059}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='f', htmlDescription='

f

'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1569, uuid={A48C44FE-7EB4-4639-86A3-953DBE7DDC26}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='mag', htmlDescription='

mag

'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1570, uuid={BC2B22A4-E338-426a-AA6B-13C8C105619C}, since=null, name=IEC61850 : Parts7, alias=, stereotype=, visibility=public, txtDescription='IEC61850 : Parts7', htmlDescription='

IEC61850 : Parts7

'], _containingPackage=WG10, _otherEndName=]], 3_diagrams=[DiagramBuilder [_containingPackage=WG10, _objData=UmlObjectData [id=186, uuid={60DE7B56-E18B-4c76-BAE9-F26279C1F965}, since=null, name=WG10, alias=, stereotype=, visibility=public, txtDescription='Sub-packages contained in this IEC61850 model. +UML model of IEC 61850 contains concrete specifications for logical nodes (part 7-4), the whole data type system (part 7-3), and ACSI services (part 7-2), including the meta-model that represents the whole of the standard.', htmlDescription='

Sub-packages contained in this IEC61850 model.

UML model of IEC 61850 contains concrete specifications for logical nodes (part 7-4), the whole data type system (part 7-3), and ACSI services (part 7-2), including the meta-model that represents the whole of the standard.

'], _portrait=true, _kind=PACKAGE], DiagramBuilder [_containingPackage=WG10, _objData=UmlObjectData [id=187, uuid={3AD43F3E-BF5F-4d70-B8EB-D0104CA1E17D}, since=null, name=Parts7, alias=, stereotype=, visibility=public, txtDescription='This diagram shows main packages and sub-packages included in this IEC61850-7-x model. +Colours show in which part of the standard the types are originally defined (or deduced from): +- green: IEC 61850-7-2 +- pink: IEC 61850-7-3 +- yellow: IEC 61850-7-4 +Elipses in packages (e.g., CDCs and DomainLNs) indicate that they have more sub-packages, but they are not shown in this diagram.', htmlDescription='

This diagram shows main packages and sub-packages included in this IEC61850-7-x model.

Colours show in which part of the standard the types are originally defined (or deduced from):

- green: IEC 61850-7-2

- pink: IEC 61850-7-3

- yellow: IEC 61850-7-4

Elipses in packages (e.g., CDCs and DomainLNs) indicate that they have more sub-packages, but they are not shown in this diagram.

'], _portrait=true, _kind=PACKAGE], DiagramBuilder [_containingPackage=WG10, _objData=UmlObjectData [id=188, uuid={7BD8A88D-424B-4ea2-B24A-F09076F9051B}, since=null, name=DataModelExample, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the most complex example with one concrete subclass for data-related classes of the meta-model, i.e., LNs, CDCs, FCDAs and DAs (classes in colour). On the diagram, we hide all the attributes but those used for the example.', htmlDescription='

This diagram shows the most complex example with one concrete subclass for data-related classes of the meta-model, i.e., LNs, CDCs, FCDAs and DAs (classes in colour). On the diagram, we hide all the attributes but those used for the example.

'], _portrait=true, _kind=LOGICAL]], _classes=1, _childPackages=4] +2024-09-07 12:38:48,673 [main] INFO PackageBuilder - processing top package WG17 (2) ... +2024-09-07 12:38:48,673 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=WG17, _objData=UmlObjectData [id=318, uuid={39B0DD35-E4C9-45d0-B13B-0D9A0122F543}, since=null, name=WG17, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,674 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850Domain::WG17->WG10::IEC61850_7_4, _objData=UmlObjectData [id=3439, uuid={E2817A04-CD9C-40de-8B67-F4454ADA8AB4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,674 [main] TRACE ClassBuilder - Class WG17UMLVersion (0 in package WG17) +2024-09-07 12:38:48,674 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=WG17::WG17UMLVersion, _objData=UmlObjectData [id=6699, uuid={099DC0EB-9CC5-4542-93AA-C75609272A32}, since=null, name=version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=IEC61850UML02v07, _eaTypeId=1665, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,674 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=WG17::WG17UMLVersion, _objData=UmlObjectData [id=6700, uuid={9E25E042-164C-49d4-8FF5-4CDD536755AF}, since=null, name=date, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=2011-07-02, _eaTypeId=1665, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,675 [main] TRACE ClassBuilder - read from EA: WG17::WG17UMLVersion +2024-09-07 12:38:48,675 [main] INFO PackageBuilder - processing package IEC51850_7_420 (0) ... +2024-09-07 12:38:48,676 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=IEC51850_7_420, _objData=UmlObjectData [id=327, uuid={71125DD0-14D6-4873-AE6E-3FB7FC4D4C43}, since=null, name=IEC51850_7_420, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=PACKAGE] +2024-09-07 12:38:48,677 [main] DEBUG PackageBuilder - Updated target of package dependency DependencyBuilder [_kind=PACKAGE, qName = WG10::IEC61850_7_4->WG17::IEC51850_7_420, _objData=UmlObjectData [id=3451, uuid={B8B9C543-69FC-4204-9AA3-FDDAAAD9C3EF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-07 12:38:48,677 [main] TRACE ClassBuilder - Class IEC61850_7_420Namespace (0 in package IEC51850_7_420) +2024-09-07 12:38:48,677 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC51850_7_420::IEC61850_7_420Namespace, _objData=UmlObjectData [id=6694, uuid={37A50D0D-25D0-40f9-A970-0C0181B4083C}, since=null, name=id, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=IEC61850-7-4, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,677 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC51850_7_420::IEC61850_7_420Namespace, _objData=UmlObjectData [id=6695, uuid={DB395AA8-3595-4eac-9425-EE064A3088CF}, since=null, name=version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2009, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,677 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC51850_7_420::IEC61850_7_420Namespace, _objData=UmlObjectData [id=6696, uuid={A915165D-45F3-4091-95B9-A7D11078449A}, since=null, name=revision, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=A, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,677 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC51850_7_420::IEC61850_7_420Namespace, _objData=UmlObjectData [id=6697, uuid={E9E37DBA-80F5-4c0d-88BA-82D6818D500E}, since=null, name=date, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2011-08-01, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,677 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC51850_7_420::IEC61850_7_420Namespace, _objData=UmlObjectData [id=6698, uuid={B24D4729-DFA5-4699-9D34-2DE999F86048}, since=null, name=tissuesApplied, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1,2, 3, 127,200, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,678 [main] TRACE ClassBuilder - read from EA: IEC51850_7_420::IEC61850_7_420Namespace +2024-09-07 12:38:48,678 [main] INFO PackageBuilder - processing package DOEnums_7_420 (1) ... +2024-09-07 12:38:48,678 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=DOEnums_7_420, _objData=UmlObjectData [id=323, uuid={5F9E18A6-6667-4939-8B1A-86E53DCA46D0}, since=null, name=DOEnums_7_420, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,679 [main] TRACE ClassBuilder - Class ExtBaseKind (0 in package DOEnums_7_420) +2024-09-07 12:38:48,679 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums_7_420::ExtBaseKind, _objData=UmlObjectData [id=6717, uuid={F996EDFA-F779-4248-A73C-4FB8EB5EDCFD}, since=null, name=ebk1, alias=, stereotype=enum, deprecated, visibility=public, txtDescription='Desc ebk1.', htmlDescription='

Desc ebk1.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,679 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums_7_420::ExtBaseKind, _objData=UmlObjectData [id=6718, uuid={D508A0F6-E720-4549-BD42-B88FF76B26DA}, since=null, name=ebk2, alias=, stereotype=enum, visibility=public, txtDescription='Desc ebk2.', htmlDescription='

Desc ebk2.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,679 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums_7_420::ExtBaseKind, _objData=UmlObjectData [id=6719, uuid={26234119-2BB1-48b7-ADCA-F06484AA8B48}, since=null, name=ebk3, alias=, stereotype=enum, visibility=public, txtDescription='Desc ebk3.', htmlDescription='

Desc ebk3.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,679 [main] DEBUG ClassBuilder - Adding ExtBaseKind as subclass of BaseKind +2024-09-07 12:38:48,679 [main] TRACE ClassBuilder - read from EA: DOEnums_7_420::ExtBaseKind +2024-09-07 12:38:48,679 [main] TRACE ClassBuilder - Class MaterialKind (1 in package DOEnums_7_420) +2024-09-07 12:38:48,680 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums_7_420::MaterialKind, _objData=UmlObjectData [id=6683, uuid={163334D0-2A8C-4397-8A83-050F7445E0D4}, since=null, name=mat1, alias=, stereotype=enum, visibility=public, txtDescription='Material 1.', htmlDescription='

Material 1.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,680 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums_7_420::MaterialKind, _objData=UmlObjectData [id=6684, uuid={84642B03-0044-43ea-9A41-5CE5254CA942}, since=null, name=mat2, alias=, stereotype=enum, visibility=public, txtDescription='Sample material 2.', htmlDescription='

Sample material 2.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,680 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums_7_420::MaterialKind, _objData=UmlObjectData [id=6685, uuid={D8CF9E32-600F-425b-A2C1-881AD70C3F43}, since=null, name=mat3, alias=, stereotype=enum, visibility=public, txtDescription='Some material 3.', htmlDescription='

Some material 3.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,680 [main] TRACE ClassBuilder - read from EA: DOEnums_7_420::MaterialKind +2024-09-07 12:38:48,680 [main] TRACE ClassBuilder - Class MaterialTransitionKind (2 in package DOEnums_7_420) +2024-09-07 12:38:48,680 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums_7_420::MaterialTransitionKind, _objData=UmlObjectData [id=6710, uuid={5AD84B53-B213-40b4-9A28-DE90FF4F1CDD}, since=null, name=trans1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,680 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums_7_420::MaterialTransitionKind, _objData=UmlObjectData [id=6711, uuid={164BCB4A-9F0D-4c38-B6D7-A15C5308DB62}, since=null, name=trans2, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,680 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums_7_420::MaterialTransitionKind, _objData=UmlObjectData [id=6712, uuid={4CCCD663-6C81-49ee-8E3B-2F0D2F705275}, since=null, name=trans3, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,680 [main] TRACE ClassBuilder - read from EA: DOEnums_7_420::MaterialTransitionKind +2024-09-07 12:38:48,680 [main] TRACE ClassBuilder - Class OtherKind (3 in package DOEnums_7_420) +2024-09-07 12:38:48,681 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums_7_420::OtherKind, _objData=UmlObjectData [id=6686, uuid={F640B955-0B9F-40dc-86DD-775AF6EB58CC}, since=null, name=mat1, alias=, stereotype=enum, visibility=public, txtDescription='Material 1.', htmlDescription='

Material 1.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,681 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums_7_420::OtherKind, _objData=UmlObjectData [id=6687, uuid={4D059DA8-1951-46b6-BB23-919182E397F3}, since=null, name=mat2, alias=, stereotype=enum, visibility=public, txtDescription='Sample material 2.', htmlDescription='

Sample material 2.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,681 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums_7_420::OtherKind, _objData=UmlObjectData [id=6688, uuid={E516361C-D992-4e52-9818-C19539445D9A}, since=null, name=mat3, alias=, stereotype=enum, visibility=public, txtDescription='Some material 3.', htmlDescription='

Some material 3.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,681 [main] TRACE ClassBuilder - read from EA: DOEnums_7_420::OtherKind +2024-09-07 12:38:48,681 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC51850_7_420, _depth=2, _eaElementID=3050, _objData=UmlObjectData [id=169, uuid={812209B5-E759-41f0-8D9A-E65D27EE7093}, since=null, name=DOEnums_7_420, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=DOEnums_7_420, _objData=UmlObjectData [id=323, uuid={5F9E18A6-6667-4939-8B1A-86E53DCA46D0}, since=null, name=DOEnums_7_420, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _classes=4 +2024-09-07 12:38:48,681 [main] INFO PackageBuilder - processing package DerivedDAs_7_420 (2) ... +2024-09-07 12:38:48,681 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=DerivedDAs_7_420, _objData=UmlObjectData [id=324, uuid={E18B19D0-B575-453a-96C4-042C4072EE83}, since=null, name=DerivedDAs_7_420, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,682 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3057, uuid={E197B961-F8ED-4cf7-B160-357A93E6A745}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Created this one to validate usage of types from unexpected namespace (e.g., WG10 uses something from WG17).', htmlDescription='

Created this one to validate usage of types from unexpected namespace (e.g., WG10 uses something from WG17).

'], _containingPackage=DerivedDAs_7_420, _otherEndName=] +2024-09-07 12:38:48,682 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3058, uuid={67416752-6F39-45f6-9391-FB685969A442}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='And created this one to validate that 'val' on PrimitiveDA subtypes must be private to ensure correct type deduction (for basedOn enum type in XML, and also detail within 7-4xx tables for ENS/ENG/ENC extensions).', htmlDescription='

And created this one to validate that 'val' on PrimitiveDA subtypes must be private to ensure correct type deduction (for basedOn enum type in XML, and also detail within 7-4xx tables for ENS/ENG/ENC extensions).

'], _containingPackage=DerivedDAs_7_420, _otherEndName=] +2024-09-07 12:38:48,682 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3089, uuid={56DA0CA4-E8E6-4ea1-AA45-A7A3CAC4D1A9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Crated this one to mimic double underlying type for ENC enums.', htmlDescription='

Crated this one to mimic double underlying type for ENC enums.

'], _containingPackage=DerivedDAs_7_420, _otherEndName=] +2024-09-07 12:38:48,682 [main] TRACE ClassBuilder - Class Material (1 in package DerivedDAs_7_420) +2024-09-07 12:38:48,683 [main] DEBUG DbAttributeBuilder - fixing lower bound '' to 1 for attr:UmlObjectData [id=6689, uuid={47188E9E-FFB6-4e55-A604-306AF82D676C}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''] +2024-09-07 12:38:48,683 [main] DEBUG DbAttributeBuilder - fixing upper bound '' to 1 for attr:UmlObjectData [id=6689, uuid={47188E9E-FFB6-4e55-A604-306AF82D676C}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''] +2024-09-07 12:38:48,683 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DerivedDAs_7_420::Material, _objData=UmlObjectData [id=6689, uuid={47188E9E-FFB6-4e55-A604-306AF82D676C}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=3053, _eaTypeName=MaterialKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,683 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3433, uuid={1E6FAD6B-C919-48f3-A1C2-27E29C0502E4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=Material, _otherEndName=?] +2024-09-07 12:38:48,683 [main] DEBUG ClassBuilder - Adding Material as subclass of EnumDA +2024-09-07 12:38:48,683 [main] TRACE ClassBuilder - read from EA: DerivedDAs_7_420::Material +2024-09-07 12:38:48,683 [main] TRACE ClassBuilder - Class Material_control (2 in package DerivedDAs_7_420) +2024-09-07 12:38:48,683 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DerivedDAs_7_420::Material_control, _objData=UmlObjectData [id=6713, uuid={6C2F0C32-0A2D-4e50-AAC2-A5830B1AB795}, since=null, name=ctlVal, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=3087, _eaTypeName=MaterialTransitionKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,683 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3474, uuid={1D882B25-52D7-41ad-B9D2-4D53B31FC4B0}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=Material_control, _otherEndName=?] +2024-09-07 12:38:48,683 [main] DEBUG ClassBuilder - Adding Material_control as subclass of EnumDA +2024-09-07 12:38:48,684 [main] TRACE ClassBuilder - read from EA: DerivedDAs_7_420::Material_control +2024-09-07 12:38:48,684 [main] TRACE ClassBuilder - Class Other (3 in package DerivedDAs_7_420) +2024-09-07 12:38:48,684 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DerivedDAs_7_420::Other, _objData=UmlObjectData [id=6690, uuid={F04B56ED-9BE4-4ac4-8482-893675D15119}, since=null, name=val, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=3054, _eaTypeName=OtherKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,684 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3432, uuid={A6301D0F-D756-4e6f-8E7F-B85510838DDC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=Other, _otherEndName=?] +2024-09-07 12:38:48,684 [main] DEBUG ClassBuilder - Adding Other as subclass of EnumDA +2024-09-07 12:38:48,684 [main] TRACE ClassBuilder - read from EA: DerivedDAs_7_420::Other +2024-09-07 12:38:48,684 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC51850_7_420, _depth=2, _eaElementID=3051, _objData=UmlObjectData [id=170, uuid={65B8CA71-5586-433a-A4D0-F6A6D2CA451F}, since=null, name=DerivedDAs_7_420, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=58, _selfDependent=false, 3_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3057, uuid={E197B961-F8ED-4cf7-B160-357A93E6A745}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Created this one to validate usage of types from unexpected namespace (e.g., WG10 uses something from WG17).', htmlDescription='

Created this one to validate usage of types from unexpected namespace (e.g., WG10 uses something from WG17).

'], _containingPackage=DerivedDAs_7_420, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3058, uuid={67416752-6F39-45f6-9391-FB685969A442}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='And created this one to validate that 'val' on PrimitiveDA subtypes must be private to ensure correct type deduction (for basedOn enum type in XML, and also detail within 7-4xx tables for ENS/ENG/ENC extensions).', htmlDescription='

And created this one to validate that 'val' on PrimitiveDA subtypes must be private to ensure correct type deduction (for basedOn enum type in XML, and also detail within 7-4xx tables for ENS/ENG/ENC extensions).

'], _containingPackage=DerivedDAs_7_420, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3089, uuid={56DA0CA4-E8E6-4ea1-AA45-A7A3CAC4D1A9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Crated this one to mimic double underlying type for ENC enums.', htmlDescription='

Crated this one to mimic double underlying type for ENC enums.

'], _containingPackage=DerivedDAs_7_420, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=DerivedDAs_7_420, _objData=UmlObjectData [id=324, uuid={E18B19D0-B575-453a-96C4-042C4072EE83}, since=null, name=DerivedDAs_7_420, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _classes=3 +2024-09-07 12:38:48,684 [main] INFO PackageBuilder - processing package DerivedCDCs_7_420 (3) ... +2024-09-07 12:38:48,684 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=DerivedCDCs_7_420, _objData=UmlObjectData [id=325, uuid={62D05D73-23D6-489d-88E9-17E97E7D29B3}, since=null, name=DerivedCDCs_7_420, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,685 [main] TRACE ClassBuilder - Class ENCMaterial (1 in package DerivedCDCs_7_420) +2024-09-07 12:38:48,685 [main] DEBUG ClassBuilder - Adding ENCMaterial as subclass of ENC +2024-09-07 12:38:48,685 [main] TRACE ClassBuilder - read from EA: DerivedCDCs_7_420::ENCMaterial +2024-09-07 12:38:48,685 [main] TRACE ClassBuilder - Class ENSMaterial (2 in package DerivedCDCs_7_420) +2024-09-07 12:38:48,686 [main] DEBUG ClassBuilder - Adding ENSMaterial as subclass of ENS +2024-09-07 12:38:48,686 [main] TRACE ClassBuilder - read from EA: DerivedCDCs_7_420::ENSMaterial +2024-09-07 12:38:48,686 [main] TRACE ClassBuilder - Class ENSOther (3 in package DerivedCDCs_7_420) +2024-09-07 12:38:48,687 [main] DEBUG ClassBuilder - Adding ENSOther as subclass of ENS +2024-09-07 12:38:48,687 [main] TRACE ClassBuilder - read from EA: DerivedCDCs_7_420::ENSOther +2024-09-07 12:38:48,687 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC51850_7_420, _depth=2, _eaElementID=3052, _objData=UmlObjectData [id=171, uuid={D1A96A51-C6DC-489e-8678-53F18F4D4D5F}, since=null, name=DerivedCDCs_7_420, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=DerivedCDCs_7_420, _objData=UmlObjectData [id=325, uuid={62D05D73-23D6-489d-88E9-17E97E7D29B3}, since=null, name=DerivedCDCs_7_420, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _classes=3 +2024-09-07 12:38:48,687 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=WG17, _depth=1, _eaElementID=3066, _objData=UmlObjectData [id=172, uuid={B02D55B6-1DEA-4d56-8263-22121C981945}, since=null, name=IEC51850_7_420, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=IEC51850_7_420, _objData=UmlObjectData [id=327, uuid={71125DD0-14D6-4873-AE6E-3FB7FC4D4C43}, since=null, name=IEC51850_7_420, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=PACKAGE]], _dependenciesAsTarget=1, _classes=1, _childPackages=3] +2024-09-07 12:38:48,687 [main] TRACE PackageBuilder - read PackageBuilder [_kind=TOP, _containingPackage=IEC61850Domain, _depth=0, _eaElementID=3023, _objData=UmlObjectData [id=163, uuid={4D3252F7-18AA-4c62-9BE1-6A4EB93DC22D}, since=null, name=WG17, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=WG17, _objData=UmlObjectData [id=318, uuid={39B0DD35-E4C9-45d0-B13B-0D9A0122F543}, since=null, name=WG17, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=1, _classes=1, _childPackages=1] +2024-09-07 12:38:48,687 [main] INFO PackageBuilder - processing top package WG18 (3) ... +2024-09-07 12:38:48,687 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=WG18, _objData=UmlObjectData [id=319, uuid={56FFDD54-06CF-4a86-BA72-EC64D3EB8342}, since=null, name=WG18, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,689 [main] INFO PackageBuilder - processing package Abbreviations_410 (0) ... +2024-09-07 12:38:48,689 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Abbreviations_410, _objData=UmlObjectData [id=320, uuid={674B8FBD-E147-4fd6-97E2-B2AFE39A9735}, since=null, name=Abbreviations_410, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,690 [main] TRACE ClassBuilder - Class AbbrTermA (0 in package Abbreviations_410) +2024-09-07 12:38:48,690 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abbreviations_410::AbbrTermA, _objData=UmlObjectData [id=6640, uuid={123063FC-3D58-4faa-96F9-EAAE4724384A}, since=null, name=Abc, alias=, stereotype=enum, visibility=public, txtDescription='Any', htmlDescription='

Any

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,691 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abbreviations_410::AbbrTermA, _objData=UmlObjectData [id=6641, uuid={94B8FDB5-0CB3-4f0b-B930-B99E0ECE16C1}, since=null, name=Alm2, alias=, stereotype=enum, visibility=public, txtDescription='Alarm', htmlDescription='

Alarm

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,691 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abbreviations_410::AbbrTermA, _objData=UmlObjectData [id=6642, uuid={28072DCB-1DCE-439e-A69C-4E654D628880}, since=null, name=Amp, alias=, stereotype=enum, visibility=public, txtDescription='Duplicated definition: Current non-phase-related', htmlDescription='

Duplicated definition: Current non-phase-related

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,691 [main] TRACE ClassBuilder - read from EA: Abbreviations_410::AbbrTermA +2024-09-07 12:38:48,691 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=WG18, _depth=1, _eaElementID=3025, _objData=UmlObjectData [id=165, uuid={68E0B9A6-EF24-475e-AECE-93E2A716EEFB}, since=null, name=Abbreviations_410, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=Abbreviations_410, _objData=UmlObjectData [id=320, uuid={674B8FBD-E147-4fd6-97E2-B2AFE39A9735}, since=null, name=Abbreviations_410, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _classes=1 +2024-09-07 12:38:48,691 [main] TRACE PackageBuilder - read PackageBuilder [_kind=TOP, _containingPackage=IEC61850Domain, _depth=0, _eaElementID=3024, _objData=UmlObjectData [id=164, uuid={CB64D339-80A8-4da3-AFF7-D465DC0A98FB}, since=null, name=WG18, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=WG18, _objData=UmlObjectData [id=319, uuid={56FFDD54-06CF-4a86-BA72-EC64D3EB8342}, since=null, name=WG18, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _childPackages=1] +2024-09-07 12:38:48,691 [main] INFO PackageBuilder - processing top package JWG25 (4) ... +2024-09-07 12:38:48,691 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=JWG25, _objData=UmlObjectData [id=317, uuid={4D04D6E8-E7D9-4b40-B94E-35253E69429A}, since=null, name=JWG25, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,692 [main] TRACE PackageBuilder - read PackageBuilder [_kind=TOP, _containingPackage=IEC61850Domain, _depth=0, _eaElementID=3022, _objData=UmlObjectData [id=162, uuid={420923C3-C122-4d55-8CCF-7C90FFAF7514}, since=null, name=JWG25, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=JWG25, _objData=UmlObjectData [id=317, uuid={4D04D6E8-E7D9-4b40-B94E-35253E69429A}, since=null, name=JWG25, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]] +2024-09-07 12:38:48,692 [main] TRACE PackageBuilder - read PackageBuilder [_kind=MODEL, _depth=-1, _eaElementID=1455, _objData=UmlObjectData [id=58, uuid={5302BB59-9354-4acd-ACB1-2EE1C53C8BEB}, since=null, name=IEC61850Domain, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=58, _selfDependent=false, 2_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3068, uuid={89AF424B-7761-4043-BDAB-5A10CE7C0549}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Tool should derive from this dependency that "any namespace under WG17 depends on 7-4".', htmlDescription='

Tool should derive from this dependency that "any namespace under WG17 depends on 7-4".

'], _containingPackage=IEC61850Domain, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3069, uuid={BFBF085D-757B-45ee-87C8-AA171DB3EB73}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='7_3 and 7_4 packages: +1. One of (circular) dependencies should be caught as invalid and the search stopped. +2. Both self-dependencies should be also caught as invalid and the search stopped.', htmlDescription='

7_3 and 7_4 packages:

  1. One of (circular) dependencies should be caught as invalid and the search stopped.
  2. Both self-dependencies should be also caught as invalid and the search stopped.
'], _containingPackage=IEC61850Domain, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=IEC61850Domain, _objData=UmlObjectData [id=160, uuid={6CF56053-B50F-4cfd-9886-2785DAD0964E}, since=null, name=IEC61850Domain, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _childPackages=4] +2024-09-07 12:38:48,692 [main] INFO PackageBuilder - processing model package MyCimExtensions (3) ... +2024-09-07 12:38:48,692 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=MyCimExtensions, _objData=UmlObjectData [id=168, uuid={60D66409-416D-40a4-B387-83D4978AF099}, since=null, name=MyCimExtensions, alias=, stereotype=European, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,693 [main] ERROR EaTables - [+++ EA ordering problem for 2 class(s) in MyCimExtensions (manually move back/forth a class to initiate EA internal ordering update!): +, +++ class DFD_External1: pos = 0 +, +++ class DFD_DataStore1: pos = 0 DUPLICATE +] +2024-09-07 12:38:48,693 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=false, _objData=UmlObjectData [id=3076, uuid={93440207-D561-463c-AFEC-2CCBD3A1C02C}, since=null, name=DFD_Process1, alias=, stereotype=DFD_Process, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=MyCimExtensions, _otherEndName=] +2024-09-07 12:38:48,693 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3079, uuid={4D1094DE-526D-437b-8E6C-BA2ADCBB8B84}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='All these dependencies created to test that they get skipped when non-sense. +Also new kind of EA elements (from Data Flow Diagram toolbox).', htmlDescription='

All these dependencies created to test that they get skipped when non-sense.

Also new kind of EA elements (from Data Flow Diagram toolbox).

'], _containingPackage=MyCimExtensions, _otherEndName=] +2024-09-07 12:38:48,693 [main] TRACE ClassBuilder - Class DFD_External1 (0 in package MyCimExtensions) +2024-09-07 12:38:48,693 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=3462, uuid={4C44DD9C-CFA6-409f-96DF-DC5B995BA889}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=DFD_External1, _otherEndName=?] +2024-09-07 12:38:48,693 [main] TRACE ClassBuilder - read from EA: MyCimExtensions::DFD_External1 +2024-09-07 12:38:48,694 [main] TRACE ClassBuilder - Class DFD_DataStore1 (0 in package MyCimExtensions) +2024-09-07 12:38:48,694 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=3461, uuid={A511BB57-6587-4b01-91B6-07FA73F4CC34}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=DFD_DataStore1, _otherEndName=?] +2024-09-07 12:38:48,694 [main] TRACE ClassBuilder - read from EA: MyCimExtensions::DFD_DataStore1 +2024-09-07 12:38:48,694 [main] INFO PackageBuilder - processing top package Ext1 (1) ... +2024-09-07 12:38:48,694 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Ext1, _objData=UmlObjectData [id=169, uuid={D5D8113F-F068-47b9-AD5E-A6E3EAC3B4A5}, since=null, name=Ext1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,694 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=3458, uuid={0DF96453-9F41-4fd0-B153-AA73C8BBA90C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Ext1, _otherEndName=Class 'Apple'] +2024-09-07 12:38:48,694 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=3460, uuid={7E090DCF-7AE3-4850-A950-821D06B4204F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Ext1, _otherEndName=Activity 'DFD_Process1'] +2024-09-07 12:38:48,695 [main] ERROR EaTables - [+++ EA ordering problem for 5 class(s) in Ext1 (manually move back/forth a class to initiate EA internal ordering update!): +, +++ class Apple: pos = 0 +, +++ class Fruit: pos = 0 DUPLICATE +, +++ class Pear: pos = 0 DUPLICATE +, +++ class FruitBinKind: pos = 0 DUPLICATE +, +++ class Village: pos = 0 DUPLICATE +] +2024-09-07 12:38:48,695 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1527, uuid={8FFE60E7-D67F-4a78-83C3-8F0957CAB288}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Associations are for testing multiple associations between two classes, and recursive (self) associations; tags and stereotypes on associations and their ends.', htmlDescription='

Associations are for testing multiple associations between two classes, and recursive (self) associations; tags and stereotypes on associations and their ends.

'], _containingPackage=Ext1, _otherEndName=] +2024-09-07 12:38:48,695 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3037, uuid={DED259D4-C7E8-4e3b-8718-6CB951B07762}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Replicates bug reported by Pat Brown on version 01v07: +- Class having an association inadvertently embedded into an enumerated type. +- model builder throws NPE when cross-checking associations.', htmlDescription='

Replicates bug reported by Pat Brown on version 01v07:

- Class having an association inadvertently embedded into an enumerated type.

- model builder throws NPE when cross-checking associations.

'], _containingPackage=Ext1, _otherEndName=] +2024-09-07 12:38:48,695 [main] TRACE ClassBuilder - Class Apple (0 in package Ext1) +2024-09-07 12:38:48,695 [main] DEBUG DbAttributeBuilder - fixing lower bound '' to 1 for enum:UmlObjectData [id=3286, uuid={A7C8D399-77B9-43bf-81E0-5CD276C86FE6}, since=null, name=shouldNotBeEnum, alias=, stereotype=enum, visibility=private, txtDescription='', htmlDescription=''] +2024-09-07 12:38:48,695 [main] DEBUG DbAttributeBuilder - fixing upper bound '' to 1 for enum:UmlObjectData [id=3286, uuid={A7C8D399-77B9-43bf-81E0-5CD276C86FE6}, since=null, name=shouldNotBeEnum, alias=, stereotype=enum, visibility=private, txtDescription='', htmlDescription=''] +2024-09-07 12:38:48,695 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Ext1::Apple, _objData=UmlObjectData [id=3286, uuid={A7C8D399-77B9-43bf-81E0-5CD276C86FE6}, since=null, name=shouldNotBeEnum, alias=, stereotype=enum, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,695 [main] DEBUG AssociationEndBuilder - Updated source type to Apple +2024-09-07 12:38:48,696 [main] DEBUG AssociationEndBuilder - Updated target type to Apple +2024-09-07 12:38:48,696 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2025, uuid=72dc638c-d696-3922-b96a-fa5f53958681, since=null, name=SelfFromApple, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Apple, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2026, uuid=65f3723c-2924-3fb9-8feb-07ff58485105, since=null, name=SelfToApples, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Apple, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=2140, uuid={0D57F849-565B-4f3b-80BE-57B70D69A932}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,696 [main] DEBUG AssociationEndBuilder - Updated target type to Apple +2024-09-07 12:38:48,696 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2028, uuid=1bba8621-dd6e-3ce5-8d7b-b8589d4e1b6a, since=null, name=Pear, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified, 1_taggedValues{assocEndTag=value}], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2029, uuid=7be9b48e-224b-3878-a982-788c533facf9, since=null, name=Apple, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Apple, _multiplicity=[0..*], _navigable=unspecified, 1_taggedValues{targetEndTag=value2}], _objData=UmlObjectData [id=2141, uuid={954F6518-04E4-4b31-8F4B-8B9F6E690AE3}, since=null, name=, alias=, stereotype=dumbStereotype, European, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,696 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2028, uuid=1bba8621-dd6e-3ce5-8d7b-b8589d4e1b6a, since=null, name=Pear, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified, 1_taggedValues{assocEndTag=value}], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2029, uuid=7be9b48e-224b-3878-a982-788c533facf9, since=null, name=Apple, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Apple, _multiplicity=[0..*], _navigable=unspecified, 1_taggedValues{targetEndTag=value2}], _objData=UmlObjectData [id=2141, uuid={954F6518-04E4-4b31-8F4B-8B9F6E690AE3}, since=null, name=, alias=, stereotype=dumbStereotype, European, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Ext1::Apple +2024-09-07 12:38:48,696 [main] DEBUG AssociationEndBuilder - Updated target type to Apple +2024-09-07 12:38:48,698 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2031, uuid=6fc97e58-ed3b-38ec-8ac6-0e4c451f40bc, since=null, name=SecondPear, alias=, stereotype=sourceStereo, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2032, uuid=e128a404-9ba6-3f7d-b760-72f20970e33c, since=null, name=SecondApple, alias=, stereotype=targetStereo, European, visibility=public, txtDescription='', htmlDescription=''], _type=Apple, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=2142, uuid={624196D8-07C7-45ee-961A-BC80925C1D8C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false, 1_taggedValues{assocTag=value0}] +2024-09-07 12:38:48,698 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2031, uuid=6fc97e58-ed3b-38ec-8ac6-0e4c451f40bc, since=null, name=SecondPear, alias=, stereotype=sourceStereo, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2032, uuid=e128a404-9ba6-3f7d-b760-72f20970e33c, since=null, name=SecondApple, alias=, stereotype=targetStereo, European, visibility=public, txtDescription='', htmlDescription=''], _type=Apple, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=2142, uuid={624196D8-07C7-45ee-961A-BC80925C1D8C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false, 1_taggedValues{assocTag=value0}] as target to Ext1::Apple +2024-09-07 12:38:48,698 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=3458, uuid={0DF96453-9F41-4fd0-B153-AA73C8BBA90C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=Apple, _otherEndName=?] +2024-09-07 12:38:48,698 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=3459, uuid={DCF3BEE2-32C5-4328-B679-92D2087B4019}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=Apple, _otherEndName=?] +2024-09-07 12:38:48,698 [main] TRACE ClassBuilder - read from EA: Ext1::Apple +2024-09-07 12:38:48,698 [main] TRACE ClassBuilder - Class Fruit (0 in package Ext1) +2024-09-07 12:38:48,698 [main] DEBUG AssociationEndBuilder - Updated target type to Fruit +2024-09-07 12:38:48,699 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2037, uuid=846c3cd9-8238-3d7f-b379-955bd684f4cd, since=null, name=Animal, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2038, uuid=264476c8-aa4a-328e-8d0c-f9841b559539, since=null, name=Fruit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Fruit, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=2143, uuid={22327B79-0B9D-43d4-8435-A05F123D2CDA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,699 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2037, uuid=846c3cd9-8238-3d7f-b379-955bd684f4cd, since=null, name=Animal, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2038, uuid=264476c8-aa4a-328e-8d0c-f9841b559539, since=null, name=Fruit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Fruit, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=2143, uuid={22327B79-0B9D-43d4-8435-A05F123D2CDA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Ext1::Fruit +2024-09-07 12:38:48,699 [main] DEBUG AssociationEndBuilder - Updated target type to Fruit +2024-09-07 12:38:48,699 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2040, uuid=8cd3a8e5-c4f8-36f6-8896-6e7d87ec1730, since=null, name=SecondAnimal, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2041, uuid=1e4b2298-d2b3-33d1-afe4-b959166b0c74, since=null, name=SecondFruit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Fruit, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=2144, uuid={2C4806C9-BA94-4210-8DA4-94FAF9D3A7A2}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,699 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2040, uuid=8cd3a8e5-c4f8-36f6-8896-6e7d87ec1730, since=null, name=SecondAnimal, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2041, uuid=1e4b2298-d2b3-33d1-afe4-b959166b0c74, since=null, name=SecondFruit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Fruit, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=2144, uuid={2C4806C9-BA94-4210-8DA4-94FAF9D3A7A2}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Ext1::Fruit +2024-09-07 12:38:48,699 [main] DEBUG ClassBuilder - Adding Fruit as superclass of Apple +2024-09-07 12:38:48,699 [main] TRACE ClassBuilder - read from EA: Ext1::Fruit +2024-09-07 12:38:48,699 [main] TRACE ClassBuilder - Class Pear (0 in package Ext1) +2024-09-07 12:38:48,699 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Ext1::Pear, _objData=UmlObjectData [id=3287, uuid={6AE12819-CBFF-4c5c-A47A-AA188AD4F76C}, since=null, name=typeIsInformative, alias=, stereotype=European, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1532, _eaTypeName=SomeSimpleType, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,700 [main] DEBUG AssociationEndBuilder - Updated source type to Pear +2024-09-07 12:38:48,700 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2028, uuid=1bba8621-dd6e-3ce5-8d7b-b8589d4e1b6a, since=null, name=Pear, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Pear, _multiplicity=[0..1], _navigable=unspecified, 1_taggedValues{assocEndTag=value}], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2029, uuid=7be9b48e-224b-3878-a982-788c533facf9, since=null, name=Apple, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Apple, _multiplicity=[0..*], _navigable=unspecified, 1_taggedValues{targetEndTag=value2}], _objData=UmlObjectData [id=2141, uuid={954F6518-04E4-4b31-8F4B-8B9F6E690AE3}, since=null, name=, alias=, stereotype=dumbStereotype, European, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Ext1::Pear +2024-09-07 12:38:48,700 [main] DEBUG AssociationEndBuilder - Updated source type to Pear +2024-09-07 12:38:48,700 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2031, uuid=6fc97e58-ed3b-38ec-8ac6-0e4c451f40bc, since=null, name=SecondPear, alias=, stereotype=sourceStereo, visibility=public, txtDescription='', htmlDescription=''], _type=Pear, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2032, uuid=e128a404-9ba6-3f7d-b760-72f20970e33c, since=null, name=SecondApple, alias=, stereotype=targetStereo, European, visibility=public, txtDescription='', htmlDescription=''], _type=Apple, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=2142, uuid={624196D8-07C7-45ee-961A-BC80925C1D8C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false, 1_taggedValues{assocTag=value0}] as source to Ext1::Pear +2024-09-07 12:38:48,700 [main] DEBUG ClassBuilder - Adding Pear as subclass of Fruit +2024-09-07 12:38:48,700 [main] DEBUG ClassBuilder - Adding Pear as superclass of EquipmentContainer +2024-09-07 12:38:48,700 [main] TRACE ClassBuilder - read from EA: Ext1::Pear +2024-09-07 12:38:48,700 [main] TRACE ClassBuilder - Class FruitBinKind (0 in package Ext1) +2024-09-07 12:38:48,700 [main] TRACE ClassBuilder - Class Strawberry (0 in package Ext1) +2024-09-07 12:38:48,701 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3419, uuid={590BAC4B-6B4F-40f3-8180-3395A271DB36}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=Strawberry, _otherEndName=?] +2024-09-07 12:38:48,701 [main] DEBUG AssociationEndBuilder - Updated target type to Strawberry +2024-09-07 12:38:48,701 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2048, uuid=b5207e67-b517-3722-8ba6-339538c65d89, since=null, name=Vilage, alias=, stereotype=, visibility=public, txtDescription='Village as origin.', htmlDescription='

Village as origin.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2049, uuid=898161ef-8025-3ed9-8a66-75f5385a12ed, since=null, name=Strawberries, alias=, stereotype=, visibility=public, txtDescription='Strawberries...', htmlDescription='

Strawberries...

'], _type=Strawberry, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3418, uuid={B41F211E-720A-4af2-AAC9-285E735D4A7C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,701 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2048, uuid=b5207e67-b517-3722-8ba6-339538c65d89, since=null, name=Vilage, alias=, stereotype=, visibility=public, txtDescription='Village as origin.', htmlDescription='

Village as origin.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2049, uuid=898161ef-8025-3ed9-8a66-75f5385a12ed, since=null, name=Strawberries, alias=, stereotype=, visibility=public, txtDescription='Strawberries...', htmlDescription='

Strawberries...

'], _type=Strawberry, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3418, uuid={B41F211E-720A-4af2-AAC9-285E735D4A7C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Ext1::Strawberry +2024-09-07 12:38:48,701 [main] DEBUG ClassBuilder - Adding Strawberry as subclass of Fruit +2024-09-07 12:38:48,701 [main] TRACE ClassBuilder - read from EA: Ext1::Strawberry +2024-09-07 12:38:48,701 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=false, _objData=UmlObjectData [id=3035, uuid={68164654-247A-4ba2-8690-1CF436EB4730}, since=null, name=Strawberry, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=FruitBinKind, _otherEndName=] +2024-09-07 12:38:48,701 [main] DEBUG DbAttributeBuilder - fixing lower bound '' to 1 for enum:UmlObjectData [id=6650, uuid={D041A1EC-198E-4ce2-9312-3C465931E469}, since=null, name=plastic, alias=, stereotype=enum, European, visibility=public, txtDescription='', htmlDescription=''] +2024-09-07 12:38:48,701 [main] DEBUG DbAttributeBuilder - fixing upper bound '' to 1 for enum:UmlObjectData [id=6650, uuid={D041A1EC-198E-4ce2-9312-3C465931E469}, since=null, name=plastic, alias=, stereotype=enum, European, visibility=public, txtDescription='', htmlDescription=''] +2024-09-07 12:38:48,701 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Ext1::FruitBinKind, _objData=UmlObjectData [id=6650, uuid={D041A1EC-198E-4ce2-9312-3C465931E469}, since=null, name=plastic, alias=, stereotype=enum, European, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,702 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Ext1::FruitBinKind, _objData=UmlObjectData [id=6651, uuid={F5BFB4E5-ECCB-4a7f-A21E-D4029DE0CA3A}, since=null, name=straw, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,702 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Ext1::FruitBinKind, _objData=UmlObjectData [id=6652, uuid={9E795ABE-F825-45c8-AC06-4B80E5E67680}, since=null, name=glass, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,702 [main] TRACE ClassBuilder - read from EA: Ext1::FruitBinKind +2024-09-07 12:38:48,702 [main] TRACE ClassBuilder - Class Village (0 in package Ext1) +2024-09-07 12:38:48,703 [main] DEBUG AssociationEndBuilder - Updated source type to Village +2024-09-07 12:38:48,703 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2048, uuid=b5207e67-b517-3722-8ba6-339538c65d89, since=null, name=Vilage, alias=, stereotype=, visibility=public, txtDescription='Village as origin.', htmlDescription='

Village as origin.

'], _type=Village, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2049, uuid=898161ef-8025-3ed9-8a66-75f5385a12ed, since=null, name=Strawberries, alias=, stereotype=, visibility=public, txtDescription='Strawberries...', htmlDescription='

Strawberries...

'], _type=Strawberry, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3418, uuid={B41F211E-720A-4af2-AAC9-285E735D4A7C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Ext1::Village +2024-09-07 12:38:48,703 [main] TRACE ClassBuilder - read from EA: Ext1::Village +2024-09-07 12:38:48,703 [main] TRACE PackageBuilder - read PackageBuilder [_kind=TOP, _containingPackage=MyCimExtensions, _depth=0, _eaElementID=1486, _objData=UmlObjectData [id=69, uuid={450FC7C5-E381-456c-A96D-7BC87AE64D11}, since=null, name=Ext1, alias=, stereotype=European, visibility=public, txtDescription='For testing multiple and recursive associations.', htmlDescription='

For testing multiple and recursive associations.

'], _modelId=68, _selfDependent=false, 2_taggedValues{nsuri=http://toto, nsprefix=ext2}, 4_skippedEaItems=[SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=3458, uuid={0DF96453-9F41-4fd0-B153-AA73C8BBA90C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Ext1, _otherEndName=Class 'Apple'], SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=3460, uuid={7E090DCF-7AE3-4850-A950-821D06B4204F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Ext1, _otherEndName=Activity 'DFD_Process1'], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1527, uuid={8FFE60E7-D67F-4a78-83C3-8F0957CAB288}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Associations are for testing multiple associations between two classes, and recursive (self) associations; tags and stereotypes on associations and their ends.', htmlDescription='

Associations are for testing multiple associations between two classes, and recursive (self) associations; tags and stereotypes on associations and their ends.

'], _containingPackage=Ext1, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3037, uuid={DED259D4-C7E8-4e3b-8718-6CB951B07762}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Replicates bug reported by Pat Brown on version 01v07: +- Class having an association inadvertently embedded into an enumerated type. +- model builder throws NPE when cross-checking associations.', htmlDescription='

Replicates bug reported by Pat Brown on version 01v07:

- Class having an association inadvertently embedded into an enumerated type.

- model builder throws NPE when cross-checking associations.

'], _containingPackage=Ext1, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=Ext1, _objData=UmlObjectData [id=169, uuid={D5D8113F-F068-47b9-AD5E-A6E3EAC3B4A5}, since=null, name=Ext1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _classes=5 +2024-09-07 12:38:48,703 [main] INFO PackageBuilder - processing top package Package with space (2) ... +2024-09-07 12:38:48,703 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Package with space, _objData=UmlObjectData [id=182, uuid={88693A7A-BB38-4644-9FE6-0360687DF33F}, since=null, name=Package with space, alias=, stereotype=, visibility=public, txtDescription='Doc.', htmlDescription='

Doc.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,703 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=3461, uuid={A511BB57-6587-4b01-91B6-07FA73F4CC34}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Package with space, _otherEndName=Class 'DFD_DataStore1'] +2024-09-07 12:38:48,703 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=3462, uuid={4C44DD9C-CFA6-409f-96DF-DC5B995BA889}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Package with space, _otherEndName=Class 'DFD_External1'] +2024-09-07 12:38:48,704 [main] ERROR EaTables - [+++ EA ordering problem for 2 class(s) in Package with space (manually move back/forth a class to initiate EA internal ordering update!): +, +++ class My class: pos = 0 +, +++ class Other-with_invalid name: pos = 0 DUPLICATE +] +2024-09-07 12:38:48,704 [main] TRACE ClassBuilder - Class My class (0 in package Package with space) +2024-09-07 12:38:48,704 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Package with space::My class, _objData=UmlObjectData [id=3304, uuid={612A61C0-C06B-425e-A24C-2581B6D63928}, since=null, name=_attr, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=640, _eaTypeName=AbsoluteDateTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1 _constraints[ConstraintBuilder [_objData=UmlObjectData [id=2061, uuid=7d2d346d-0f9c-3a65-93d3-09e5415a6f1d, since=null, name= attr-constraint, alias=, stereotype=, visibility=public, txtDescription='lala', htmlDescription='

lala

'], _containingAttribute=_attr, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=lala]]] +2024-09-07 12:38:48,704 [main] TRACE OperationBuilder - read from EA: OperationBuilder [_containingClass=My class, _objData=UmlObjectData [id=6, uuid={A4CA59B1-5E80-4cb9-A2AB-1FEA377A0A33}, since=null, name=ope-ration, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _abstract=false, _static=false, _final=false, _kind=OP_RET_VOID, _returnType=null, _eaReturnTypeId=0, _eaReturnTypeName=void, 2_parameters[ParameterBuilder [_containingOperation=ope-ration, _position=0, _kind=SIMPLE, _objData=UmlObjectData [id=2063, uuid={B9E929B4-3E5D-4b39-83CB-4EFAC956A019}, since=null, name=other param, alias=, stereotype=, visibility=public, txtDescription='Doc for parameter is ok.', htmlDescription='

Doc for parameter is ok.

'], _type=null, _eaTypeName=Boolean, _eaTypeIdAsString=619], ParameterBuilder [_containingOperation=ope-ration, _position=1, _kind=SIMPLE, _objData=UmlObjectData [id=2064, uuid={82D97A41-4B66-40ae-ADF4-3BFA2BD0E201}, since=null, name=_par, alias=, stereotype=, visibility=public, txtDescription='doc', htmlDescription='

doc

'], _type=null, _eaTypeName=ApparentPower, _eaTypeIdAsString=616]]] +2024-09-07 12:38:48,705 [main] DEBUG AssociationEndBuilder - Updated source type to My class +2024-09-07 12:38:48,706 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2066, uuid=15faecc4-978a-3b54-b8fc-e6b3eb6b2612, since=null, name=Role 1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=My class, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2067, uuid=2891d36d-913e-3c71-a838-f547f15a8f48, since=null, name=_role 2&x, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2147, uuid={7F169184-56EB-4777-AFF0-237C0E3C7368}, since=null, name=, alias=, stereotype=European, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-07 12:38:48,706 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2066, uuid=15faecc4-978a-3b54-b8fc-e6b3eb6b2612, since=null, name=Role 1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=My class, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2067, uuid=2891d36d-913e-3c71-a838-f547f15a8f48, since=null, name=_role 2&x, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2147, uuid={7F169184-56EB-4777-AFF0-237C0E3C7368}, since=null, name=, alias=, stereotype=European, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Package with space::My class +2024-09-07 12:38:48,706 [main] TRACE ClassBuilder - read from EA: Package with space::My class +2024-09-07 12:38:48,706 [main] TRACE ClassBuilder - Class Other-with_invalid name (0 in package Package with space) +2024-09-07 12:38:48,707 [main] DEBUG AssociationEndBuilder - Updated target type to Other-with_invalid name +2024-09-07 12:38:48,707 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2066, uuid=15faecc4-978a-3b54-b8fc-e6b3eb6b2612, since=null, name=Role 1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=My class, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2067, uuid=2891d36d-913e-3c71-a838-f547f15a8f48, since=null, name=_role 2&x, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Other-with_invalid name, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2147, uuid={7F169184-56EB-4777-AFF0-237C0E3C7368}, since=null, name=, alias=, stereotype=European, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Package with space::Other-with_invalid name +2024-09-07 12:38:48,707 [main] TRACE ClassBuilder - read from EA: Package with space::Other-with_invalid name +2024-09-07 12:38:48,707 [main] TRACE PackageBuilder - read PackageBuilder [_kind=TOP, _containingPackage=MyCimExtensions, _depth=0, _eaElementID=1541, _objData=UmlObjectData [id=81, uuid={6FCD7A13-00E7-4896-B745-7659F0CD6B48}, since=null, name=Package with space, alias=, stereotype=, visibility=public, txtDescription='Doc.', htmlDescription='

Doc.

'], _modelId=68, _selfDependent=false, 2_skippedEaItems=[SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=3461, uuid={A511BB57-6587-4b01-91B6-07FA73F4CC34}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Package with space, _otherEndName=Class 'DFD_DataStore1'], SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=3462, uuid={4C44DD9C-CFA6-409f-96DF-DC5B995BA889}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Package with space, _otherEndName=Class 'DFD_External1']], 1_diagrams=[DiagramBuilder [_containingPackage=Package with space, _objData=UmlObjectData [id=182, uuid={88693A7A-BB38-4644-9FE6-0360687DF33F}, since=null, name=Package with space, alias=, stereotype=, visibility=public, txtDescription='Doc.', htmlDescription='

Doc.

'], _portrait=true, _kind=LOGICAL]], _classes=2 +2024-09-07 12:38:48,707 [main] TRACE PackageBuilder - read PackageBuilder [_kind=MODEL, _depth=-1, _eaElementID=1485, _objData=UmlObjectData [id=68, uuid={A40B29B1-859B-48be-BBE9-59093417C5D4}, since=null, name=MyCimExtensions, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=68, _selfDependent=false, 2_skippedEaItems=[SkippedBuilder [, _kind=OTHER, _isConnector=false, _objData=UmlObjectData [id=3076, uuid={93440207-D561-463c-AFEC-2CCBD3A1C02C}, since=null, name=DFD_Process1, alias=, stereotype=DFD_Process, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=MyCimExtensions, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3079, uuid={4D1094DE-526D-437b-8E6C-BA2ADCBB8B84}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='All these dependencies created to test that they get skipped when non-sense. +Also new kind of EA elements (from Data Flow Diagram toolbox).', htmlDescription='

All these dependencies created to test that they get skipped when non-sense.

Also new kind of EA elements (from Data Flow Diagram toolbox).

'], _containingPackage=MyCimExtensions, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=MyCimExtensions, _objData=UmlObjectData [id=168, uuid={60D66409-416D-40a4-B387-83D4978AF099}, since=null, name=MyCimExtensions, alias=, stereotype=European, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _classes=2, _childPackages=2] +2024-09-07 12:38:48,708 [main] INFO PackageBuilder - processing model package My61850Extensions (4) ... +2024-09-07 12:38:48,708 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=My61850Extensions, _objData=UmlObjectData [id=172, uuid={0E92FC72-40C8-4400-A4FD-D7210BCA75F7}, since=null, name=My61850Extensions, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=PACKAGE] +2024-09-07 12:38:48,709 [main] INFO PackageBuilder - processing top package Ext2 (0) ... +2024-09-07 12:38:48,709 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Ext2, _objData=UmlObjectData [id=170, uuid={CB8EA802-16A3-4db9-8A4F-960049C664F5}, since=null, name=Ext2, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-07 12:38:48,710 [main] ERROR EaTables - [+++ EA ordering problem for 3 class(s) in Ext2 (manually move back/forth a class to initiate EA internal ordering update!): +, +++ class Animal: pos = 0 +, +++ class Dog: pos = 0 DUPLICATE +, +++ class Horse: pos = 0 DUPLICATE +] +2024-09-07 12:38:48,710 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1528, uuid={0FF45B1A-C31A-4a38-8B90-9528C242BB0D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='For testing 2 association between same classes from different owners.', htmlDescription='

For testing 2 association between same classes from different owners.

'], _containingPackage=Ext2, _otherEndName=] +2024-09-07 12:38:48,710 [main] TRACE ClassBuilder - Class Animal (0 in package Ext2) +2024-09-07 12:38:48,710 [main] DEBUG AssociationEndBuilder - Updated source type to Animal +2024-09-07 12:38:48,710 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2037, uuid=846c3cd9-8238-3d7f-b379-955bd684f4cd, since=null, name=Animal, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Animal, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2038, uuid=264476c8-aa4a-328e-8d0c-f9841b559539, since=null, name=Fruit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Fruit, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=2143, uuid={22327B79-0B9D-43d4-8435-A05F123D2CDA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Ext2::Animal +2024-09-07 12:38:48,710 [main] DEBUG AssociationEndBuilder - Updated source type to Animal +2024-09-07 12:38:48,710 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2040, uuid=8cd3a8e5-c4f8-36f6-8896-6e7d87ec1730, since=null, name=SecondAnimal, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Animal, _multiplicity=[1..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2041, uuid=1e4b2298-d2b3-33d1-afe4-b959166b0c74, since=null, name=SecondFruit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Fruit, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=2144, uuid={2C4806C9-BA94-4210-8DA4-94FAF9D3A7A2}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Ext2::Animal +2024-09-07 12:38:48,711 [main] TRACE ClassBuilder - read from EA: Ext2::Animal +2024-09-07 12:38:48,711 [main] TRACE ClassBuilder - Class Dog (0 in package Ext2) +2024-09-07 12:38:48,711 [main] DEBUG ClassBuilder - Adding Dog as subclass of Animal +2024-09-07 12:38:48,711 [main] TRACE ClassBuilder - read from EA: Ext2::Dog +2024-09-07 12:38:48,711 [main] TRACE ClassBuilder - Class Horse (0 in package Ext2) +2024-09-07 12:38:48,711 [main] DEBUG ClassBuilder - Adding Horse as subclass of Animal +2024-09-07 12:38:48,711 [main] TRACE ClassBuilder - read from EA: Ext2::Horse +2024-09-07 12:38:48,711 [main] TRACE PackageBuilder - read PackageBuilder [_kind=TOP, _containingPackage=My61850Extensions, _depth=0, _eaElementID=1487, _objData=UmlObjectData [id=70, uuid={FB7850F3-DFDE-43b7-BED8-204CAF1C5116}, since=null, name=Ext2, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=72, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1528, uuid={0FF45B1A-C31A-4a38-8B90-9528C242BB0D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='For testing 2 association between same classes from different owners.', htmlDescription='

For testing 2 association between same classes from different owners.

'], _containingPackage=Ext2, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=Ext2, _objData=UmlObjectData [id=170, uuid={CB8EA802-16A3-4db9-8A4F-960049C664F5}, since=null, name=Ext2, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _classes=3 +2024-09-07 12:38:48,711 [main] TRACE PackageBuilder - read PackageBuilder [_kind=MODEL, _depth=-1, _eaElementID=1500, _objData=UmlObjectData [id=72, uuid={5483020F-EEDB-4171-B23E-4927E68B2715}, since=null, name=My61850Extensions, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=72, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=My61850Extensions, _objData=UmlObjectData [id=172, uuid={0E92FC72-40C8-4400-A4FD-D7210BCA75F7}, since=null, name=My61850Extensions, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=PACKAGE]], _childPackages=1] +2024-09-07 12:38:48,712 [main] INFO PackageBuilder - processing model package NewNature (5) ... +2024-09-07 12:38:48,712 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=NewNature, _objData=UmlObjectData [id=329, uuid={3A67127C-19D1-40d8-BAB3-6D032837AC24}, since=null, name=NewNature, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=PACKAGE] +2024-09-07 12:38:48,712 [main] TRACE PackageBuilder - read PackageBuilder [_kind=MODEL, _depth=-1, _eaElementID=3092, _objData=UmlObjectData [id=174, uuid={25561F14-776F-4c4c-A475-E9D194EFE1BA}, since=null, name=NewNature, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=174, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=NewNature, _objData=UmlObjectData [id=329, uuid={3A67127C-19D1-40d8-BAB3-6D032837AC24}, since=null, name=NewNature, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=PACKAGE]] +2024-09-07 12:38:48,712 [main] ERROR EaModelBuilder - +++ EA consistency error - duplicate EA GUID: +2024-09-07 12:38:48,713 [main] ERROR EaModelBuilder - {870F033B-EDA6-4a32-A5AD-47DCBBFE2997} +2024-09-07 12:38:48,713 [main] ERROR EaModelBuilder - AttributeBuilder [_containingClass=Core::IdentifiedObject, _objData=UmlObjectData [id=6648, uuid={870F033B-EDA6-4a32-A5AD-47DCBBFE2997}, since=null, name=name, alias=, stereotype=, visibility=public, txtDescription='The name is any free human readable and possibly non unique text naming the object.', htmlDescription='

The name is any free human readable and possibly non unique text naming the object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,713 [main] ERROR EaModelBuilder - AttributeBuilder [_containingClass=Core::IdentifiedObject, _objData=UmlObjectData [id=6649, uuid={870F033B-EDA6-4a32-A5AD-47DCBBFE2997}, since=null, name=description, alias=, stereotype=, visibility=public, txtDescription='The description is a free human readable text describing or naming the object. It may be non unique and may not correlate to a naming hierarchy.', htmlDescription='

The description is a free human readable text describing or naming the object. It may be non unique and may not correlate to a naming hierarchy.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 12:38:48,713 [main] INFO Util - time=[0:00:00.833] built model from EA tables (as EAP DB) +2024-09-07 12:38:48,713 [main] INFO Util - +2024-09-07 12:38:48,714 [main] INFO Util - +2024-09-07 12:38:48,714 [main] INFO Util - ------------------------------------------------ +2024-09-07 12:38:48,714 [main] INFO Util - linking builders... +2024-09-07 12:38:48,714 [main] INFO EaModelBuilder - assigning type to attributes ... +2024-09-07 12:38:48,714 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Informative::HasIllegalTypeForAttr, _objData=UmlObjectData [id=3284, uuid={37EE993E-B7A3-4940-8707-E8C0C720D620}, since=null, name=dummy, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=860, _eaTypeName=Bay, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1e8284b]. +2024-09-07 12:38:48,714 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC61970::IEC61970CIMVersion, _objData=UmlObjectData [id=1271, uuid={8DADB97F-283D-40c7-A25A-D75E4C0D8507}, since=null, name=date, alias=, stereotype=, visibility=public, txtDescription='Form is YYYY-MM-DD for example for January 5, 2009 it is 2009-01-05. +Note: Bad date format on purpose.', htmlDescription='

Form is YYYY-MM-DD for example for January 5, 2009 it is 2009-01-05.

Note: Bad date format on purpose.

'], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=20119-08-01, _eaTypeId=640, _eaTypeName=AbsoluteDateTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@74868d]. +2024-09-07 12:38:48,714 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC61970::IEC61970CIMVersion, _objData=UmlObjectData [id=1272, uuid={B4E0B1B6-8794-406a-A4C6-CBB395E37A52}, since=null, name=version, alias=, stereotype=, visibility=public, txtDescription='Form is IEC61970CIMXXvYY where XX is the major CIM package version and the YY is the minor version. For ecample IEC61970CIM13v18.', htmlDescription='

Form is IEC61970CIMXXvYY where XX is the major CIM package version and the YY is the minor version. For ecample IEC61970CIM13v18.

'], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=IEC61970CIM14v12, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@e6aa2]. +2024-09-07 12:38:48,714 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=InformativeAndPrivate::InfClass2, _objData=UmlObjectData [id=6709, uuid={2BFC1914-ECFF-49b5-8F28-BF20BD1E1FE3}, since=null, name=isToto, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@5185bd]. +2024-09-07 12:38:48,714 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::AbsoluteDateTime, _objData=UmlObjectData [id=1440, uuid={CFF950F8-C337-424c-97FF-B8A4168598B5}, since=null, name=protectedAttribute, alias=, stereotype=, visibility=protected, txtDescription='String representation of date and time, refer to description of the class.', htmlDescription='

String representation of date and time, refer to description of the class.

'], _isConst=false, _isStatic=false, _multiplicity=[2..5], _initValue=, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@e6aa2]. +2024-09-07 12:38:48,714 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::ActivePower, _objData=UmlObjectData [id=1434, uuid={A3961E95-7DD0-4d68-A41A-FDC07295CD2B}, since=null, name=multiplier, alias=, stereotype=European, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=634, _eaTypeName=UnitMultiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b64261]. +2024-09-07 12:38:48,714 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::ActivePower, _objData=UmlObjectData [id=1435, uuid={8C27ACD4-E6D7-407f-B0AF-B545966B9337}, since=null, name=unit, alias=, stereotype=deprecated, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=W, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@2663d3]. +2024-09-07 12:38:48,714 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::ActivePower, _objData=UmlObjectData [id=1436, uuid={133597D7-9050-4335-B968-86AF7E16558C}, since=null, name=value, alias=, stereotype=custom, invalid, European, deprecated, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@190a65e]. +2024-09-07 12:38:48,714 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::ActivePowerChangeRate, _objData=UmlObjectData [id=1402, uuid={127E7AD6-A19D-4a00-84C2-6DE69D31A319}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=634, _eaTypeName=UnitMultiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b64261]. +2024-09-07 12:38:48,714 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::ActivePowerChangeRate, _objData=UmlObjectData [id=1403, uuid={D89B1C84-0EB0-4ea0-ACD8-F59965B01026}, since=null, name=unit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=true, _multiplicity=[0..1], _initValue=W/s, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@2663d3]. +2024-09-07 12:38:48,715 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::ApparentPower, _objData=UmlObjectData [id=1368, uuid={C363463C-85C7-487f-BE31-B6444DAB07DD}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=634, _eaTypeName=UnitMultiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b64261]. +2024-09-07 12:38:48,715 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::ApparentPower, _objData=UmlObjectData [id=1369, uuid={C93DE952-5AF9-40cc-9792-4D2372DC5EEF}, since=null, name=unit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=VA, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@2663d3]. +2024-09-07 12:38:48,715 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::ApparentPower, _objData=UmlObjectData [id=1370, uuid={FEE24CD4-5876-4e4c-B179-AEAA3E11B738}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@190a65e, 1_taggedValues{tag=val}]. +2024-09-07 12:38:48,715 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::Money, _objData=UmlObjectData [id=1323, uuid={86CC9B3D-6DFC-4a34-9152-1BD808FBDD41}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=634, _eaTypeName=UnitMultiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b64261]. +2024-09-07 12:38:48,715 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::Money, _objData=UmlObjectData [id=1324, uuid={FA0E49C2-B5F3-4084-948C-2A553D874695}, since=null, name=unit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=600, _eaTypeName=Currency, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@76c8cd]. +2024-09-07 12:38:48,715 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::Money, _objData=UmlObjectData [id=1325, uuid={FD1C5A68-05E0-448a-9515-88FB188D1A41}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@190a65e]. +2024-09-07 12:38:48,715 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::PerCent, _objData=UmlObjectData [id=1365, uuid={A2810EB7-9B4B-4386-9EE5-CAE5AB1E6E2C}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=none, _eaTypeId=634, _eaTypeName=UnitMultiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b64261]. +2024-09-07 12:38:48,715 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::PerCent, _objData=UmlObjectData [id=1366, uuid={A1336F58-9A3A-462d-A932-4C80CE9A24AB}, since=null, name=unit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=none, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@2663d3]. +2024-09-07 12:38:48,715 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::PerCent, _objData=UmlObjectData [id=1367, uuid={3F3F1095-2284-438d-89FF-699BCA187532}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='Normally 0 - 100 on a defined base', htmlDescription='

Normally 0 - 100 on a defined base

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@190a65e]. +2024-09-07 12:38:48,715 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::Seconds, _objData=UmlObjectData [id=1377, uuid={DF58DF5F-F450-4b71-A1A9-1BBA5C696E5C}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=none, _eaTypeId=634, _eaTypeName=UnitMultiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b64261]. +2024-09-07 12:38:48,716 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::Seconds, _objData=UmlObjectData [id=1378, uuid={383E0AEB-B11C-4c02-8C56-5E84FCDA0D3B}, since=null, name=unit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=s, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@2663d3]. +2024-09-07 12:38:48,716 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::Seconds, _objData=UmlObjectData [id=1379, uuid={EC69405D-C44E-4c12-BAD5-58A3C1375649}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='Time, in seconds', htmlDescription='

Time, in seconds

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@190a65e]. +2024-09-07 12:38:48,716 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::Voltage, _objData=UmlObjectData [id=1304, uuid={5CFD034E-D7E1-4d20-BE0B-BB9E4F9D2D4B}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=634, _eaTypeName=UnitMultiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b64261]. +2024-09-07 12:38:48,716 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::Voltage, _objData=UmlObjectData [id=1305, uuid={6E959BD4-0ACC-4884-99F5-0B158661A3D9}, since=null, name=unit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=V, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@2663d3]. +2024-09-07 12:38:48,716 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::Voltage, _objData=UmlObjectData [id=1306, uuid={C86122FF-94E1-4244-975A-BA865D8135BC}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@190a65e]. +2024-09-07 12:38:48,716 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::BasePower, _objData=UmlObjectData [id=2100, uuid={9F2DC83B-B801-4b29-BD57-4781BD53A50A}, since=null, name=basePower, alias=, stereotype=, visibility=public, txtDescription='definition of base power.', htmlDescription='

definition of base power.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=616, _eaTypeName=ApparentPower, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1bbf683]. +2024-09-07 12:38:48,716 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::BaseVoltage, _objData=UmlObjectData [id=2053, uuid={D37DA22A-916B-4a33-88AB-B77C229DB882}, since=null, name=protectedNominalVoltage, alias=, stereotype=, visibility=protected, txtDescription=''the' PowerSystemResource's base voltage.', htmlDescription='

'the' PowerSystemResource's base voltage.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=602, _eaTypeName=Voltage, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@150c158]. +2024-09-07 12:38:48,716 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::BaseVoltage, _objData=UmlObjectData [id=2981, uuid={9451DDA7-F7F4-4efe-A373-99B36F51A8C5}, since=null, name=packagePrivateIsDC, alias=, stereotype=, visibility=package, txtDescription='"if true", this is a direct current base voltage and items assigned to this base voltage are also associated with a direct current capabilities. False indicates alternating current.', htmlDescription='

"if true", this is a direct current base voltage and items assigned to this base voltage are also associated with a direct current capabilities. False indicates alternating current.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@5185bd]. +2024-09-07 12:38:48,716 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::BaseVoltage, _objData=UmlObjectData [id=3249, uuid={48F97F30-E8FD-4e3d-85E1-6009E26B1435}, since=null, name=basePower, alias=, stereotype=, visibility=public, txtDescription='This is to test whether we print correctly multiple attributes of the same name (defined on different classes) within the data index table.', htmlDescription='

This is to test whether we print correctly multiple attributes of the same name (defined on different classes) within the data index table.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@5185bd]. +2024-09-07 12:38:48,716 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::BaseVoltage, _objData=UmlObjectData [id=3317, uuid={B3B2A77F-3967-4163-917F-7EC3BC0EF50C}, since=null, name=privateDummy, alias=, stereotype=, visibility=private, txtDescription='This is to test whether we print correctly multiple attributes of the same name (defined on different classes) within the data index table.', htmlDescription='

This is to test whether we print correctly multiple attributes of the same name (defined on different classes) within the data index table.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@5185bd]. +2024-09-07 12:38:48,716 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::Bay, _objData=UmlObjectData [id=2077, uuid={26D3924E-0222-4e9a-9373-CD7D256E9B19}, since=null, name=bayEnergyMeasFlag, alias=, stereotype=, visibility=public, txtDescription='Indicates the presence/absence of energy measurements.', htmlDescription='

Indicates the presence/absence of energy measurements.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@5185bd]. +2024-09-07 12:38:48,716 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::Bay, _objData=UmlObjectData [id=2078, uuid={B5F9E0A2-7BE7-4bb1-A035-0F5F849847F0}, since=null, name=bayPowerMeasFlag, alias=, stereotype=, visibility=public, txtDescription='Indicates the presence/absence of active/reactive power measurements.', htmlDescription='

Indicates the presence/absence of active/reactive power measurements.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@5185bd]. +2024-09-07 12:38:48,716 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::Bay, _objData=UmlObjectData [id=2079, uuid={94BB9838-29AB-4afe-853A-3BD683EF6B09}, since=null, name=breakerConfiguration, alias=, stereotype=, visibility=public, txtDescription='Breaker configuration.', htmlDescription='

Breaker configuration.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=858, _eaTypeName=BreakerConfiguration, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@dba097]. +2024-09-07 12:38:48,716 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::Bay, _objData=UmlObjectData [id=2080, uuid={696CC695-DE24-423a-9CD6-A9FED27803F8}, since=null, name=busBarConfiguration, alias=, stereotype=, visibility=public, txtDescription='Bus bar configuration.', htmlDescription='

Bus bar configuration.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=878, _eaTypeName=BusbarConfiguration, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@186f9d5]. +2024-09-07 12:38:48,716 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::Bay, _objData=UmlObjectData [id=3301, uuid={E893BA26-F5FD-49d7-94E0-CF2CC775E76D}, since=null, name=TestYesNo1, alias=, stereotype=, visibility=public, txtDescription='Indicates the presence/absence of energy measurements.', htmlDescription='

Indicates the presence/absence of energy measurements.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1540, _eaTypeName=YesNo, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@4d6e83]. +2024-09-07 12:38:48,716 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::Bay, _objData=UmlObjectData [id=3302, uuid={57D31F0C-D03A-424d-AF4C-358109CC5473}, since=null, name=testYesNo2, alias=, stereotype=, visibility=public, txtDescription='Indicates the presence/absence of energy measurements.', htmlDescription='

Indicates the presence/absence of energy measurements.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1540, _eaTypeName=YesNo, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@4d6e83]. +2024-09-07 12:38:48,716 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::ConductingEquipment, _objData=UmlObjectData [id=2091, uuid={2A7C5A94-34E1-49c7-8E1C-A84F411EE17C}, since=null, name=phases, alias=, stereotype=, visibility=public, txtDescription='Describes the phases carried by a conducting equipment.', htmlDescription='

Describes the phases carried by a conducting equipment.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=856, _eaTypeName=PhaseCode, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1a0cee9]. +2024-09-07 12:38:48,717 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::Equipment, _objData=UmlObjectData [id=2117, uuid={410CEA04-CA77-46d9-A093-019230A2DE17}, since=null, name=normaIlyInService, alias=, stereotype=, visibility=public, txtDescription='The equipment is normally in service.', htmlDescription='

The equipment is normally in service.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@5185bd]. +2024-09-07 12:38:48,717 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::OperatingShare, _objData=UmlObjectData [id=2109, uuid={91E1E9AB-B240-4b98-9917-82000F0A4CFB}, since=null, name=percentage, alias=, stereotype=, visibility=public, txtDescription='Percentage ownership for this device. The percentage indicates the percentage ownership of the PSROwner for the PowerSystemResource. The total percentage ownership for a PowerSystemResource should add to 100%.', htmlDescription='

Percentage ownership for this device. The percentage indicates the percentage ownership of the PSROwner for the PowerSystemResource. The total percentage ownership for a PowerSystemResource should add to 100%.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=614, _eaTypeName=PerCent, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@4a2ea6, 1 _constraints[ConstraintBuilder [_objData=UmlObjectData [id=230, uuid=5efb2328-1c5c-36d9-8c41-790fcb5a5558, since=null, name=constraintProcess, alias=, stereotype=, visibility=public, txtDescription='constraint description', htmlDescription='

constraint description

'], _containingAttribute=percentage, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=constraint description]]]. +2024-09-07 12:38:48,718 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::PowerSystemResource, _objData=UmlObjectData [id=6708, uuid={DB23468D-32C9-44cf-9032-193304520B0A}, since=null, name=attr, alias=, stereotype=deprecated, visibility=public, txtDescription='This is to test whether deprecated attribute gets its (deprecated) printed in Word.', htmlDescription='

This is to test whether deprecated attribute gets its (deprecated) printed in Word.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@e6aa2]. +2024-09-07 12:38:48,718 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::Terminal, _objData=UmlObjectData [id=3125, uuid={C97C0B38-C62F-4f03-A3DE-A67F29A6C6DB}, since=null, name=connected, alias=, stereotype=, visibility=public, txtDescription='The terminal connection status. True implies the terminal is connected, and false implies the terminal is not connected. This is the result of topoplogical processing of a detailed Connectivity node and Switch model whether present in the model or not. A terminal that is not connected cannot support a current flow. A terminal that is connected may have flow. In general a multi-terminal device may simultaneously have connected and disconnected terminals. No other aspect of the algorithm', htmlDescription='

The terminal connection status. True implies the terminal is connected, and false implies the terminal is not connected. This is the result of topoplogical processing of a detailed Connectivity node and Switch model whether present in the model or not. A terminal that is not connected cannot support a current flow. A terminal that is connected may have flow. In general a multi-terminal device may simultaneously have connected and disconnected terminals. No other aspect of the algorithm

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@5185bd]. +2024-09-07 12:38:48,718 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::Terminal, _objData=UmlObjectData [id=3188, uuid={7C7195D3-DFCD-487f-BF92-F359BBE7AFD0}, since=null, name=sequenceNumber, alias=, stereotype=, visibility=public, txtDescription='The orientation of the terminal connections for a multiple terminal conducting equipment. The sequence numbering starts with 1 and additional terminals should follow in increasing order. The first terminal is the "starting point" for a two terminal branch. In the case of class TransformerWinding only one terminal is used so its sequenceNumber must be 1.', htmlDescription='

The orientation of the terminal connections for a multiple terminal conducting equipment. The sequence numbering starts with 1 and additional terminals should follow in increasing order. The first terminal is the "starting point" for a two terminal branch. In the case of class TransformerWinding only one terminal is used so its sequenceNumber must be 1.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a035a0]. +2024-09-07 12:38:48,718 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::VoltageLevel, _objData=UmlObjectData [id=2106, uuid={D1BAD493-B22A-497f-B6A6-CDFDF46EA012}, since=null, name=highVoltageLimit, alias=, stereotype=, visibility=public, txtDescription='The bus bar's high voltage limit', htmlDescription='

The bus bar's high voltage limit

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=602, _eaTypeName=Voltage, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@150c158]. +2024-09-07 12:38:48,718 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::VoltageLevel, _objData=UmlObjectData [id=2107, uuid={EB17FEAC-CDBA-4bbd-B45E-86D3EA333C08}, since=null, name=lowVoltageLimit, alias=, stereotype=, visibility=public, txtDescription='The bus bar's low voltage limit', htmlDescription='

The bus bar's low voltage limit

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=602, _eaTypeName=Voltage, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@150c158]. +2024-09-07 12:38:48,718 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::IdentifiedObject, _objData=UmlObjectData [id=6646, uuid={D4F8B75D-CDAD-4440-8092-1425101E5ABC}, since=null, name=aliasName, alias=, stereotype=, visibility=public, txtDescription='The aliasName is free text human readable name of the object alternative to IdentifiedObject.name. It may be non unique and may not correlate to a naming hierarchy. +The attribute aliasName is retained because of backwards compatibility between CIM relases. It is however recommended to replace aliasName with the Name class as aliasName is planned for retirement at a future time.', htmlDescription='

The aliasName is free text human readable name of the object alternative to IdentifiedObject.name. It may be non unique and may not correlate to a naming hierarchy.

The attribute aliasName is retained because of backwards compatibility between CIM relases. It is however recommended to replace aliasName with the Name class as aliasName is planned for retirement at a future time.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@e6aa2]. +2024-09-07 12:38:48,718 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::IdentifiedObject, _objData=UmlObjectData [id=6647, uuid={C775F80A-A23D-4f38-AB9D-49D1FA882337}, since=null, name=mRID, alias=, stereotype=, visibility=public, txtDescription='Master resource identifier issued by a model authority. The mRID must semantically be a UUID as specified in RFC 4122. The mRID is globally unique. +For CIMXML data files in RDF syntax, the mRID is mapped to rdf:ID or rdf:about attributes that identify CIM object elements.', htmlDescription='

Master resource identifier issued by a model authority. The mRID must semantically be a UUID as specified in RFC 4122. The mRID is globally unique.

For CIMXML data files in RDF syntax, the mRID is mapped to rdf:ID or rdf:about attributes that identify CIM object elements.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@e6aa2]. +2024-09-07 12:38:48,718 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::IdentifiedObject, _objData=UmlObjectData [id=6648, uuid={870F033B-EDA6-4a32-A5AD-47DCBBFE2997}, since=null, name=name, alias=, stereotype=, visibility=public, txtDescription='The name is any free human readable and possibly non unique text naming the object.', htmlDescription='

The name is any free human readable and possibly non unique text naming the object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@e6aa2]. +2024-09-07 12:38:48,718 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::IdentifiedObject, _objData=UmlObjectData [id=6649, uuid={870F033B-EDA6-4a32-A5AD-47DCBBFE2997}, since=null, name=description, alias=, stereotype=, visibility=public, txtDescription='The description is a free human readable text describing or naming the object. It may be non unique and may not correlate to a naming hierarchy.', htmlDescription='

The description is a free human readable text describing or naming the object. It may be non unique and may not correlate to a naming hierarchy.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@e6aa2]. +2024-09-07 12:38:48,718 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Topology::BusNameMarker, _objData=UmlObjectData [id=3250, uuid={C375C88C-1BD9-4f29-874F-85F591975EEE}, since=null, name=constrained1, alias=, stereotype=, visibility=public, txtDescription='Added to test parsing and assigning constraints.', htmlDescription='

Added to test parsing and assigning constraints.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a035a0, 2 _constraints[ConstraintBuilder [_objData=UmlObjectData [id=322, uuid=e7838b89-c1f1-3846-82c2-b51c40441fcd, since=null, name=maxIdx, alias=, stereotype=, visibility=public, txtDescription='count+1', htmlDescription='

count+1

'], _containingAttribute=constrained1, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=count+1], ConstraintBuilder [_objData=UmlObjectData [id=323, uuid=504022e1-a42d-3d7e-a7ab-50f48306f4f8, since=null, name=minIdx, alias=, stereotype=, visibility=public, txtDescription='0', htmlDescription='

0

'], _containingAttribute=constrained1, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=0]]]. +2024-09-07 12:38:48,718 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Topology::BusNameMarker, _objData=UmlObjectData [id=3251, uuid={6EA50EAF-292F-4f17-A3F5-EB732279F805}, since=null, name=constrained2, alias=, stereotype=, visibility=public, txtDescription='Added to test parsing and assigning constraints.', htmlDescription='

Added to test parsing and assigning constraints.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a035a0]. +2024-09-07 12:38:48,718 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Topology::BusNameMarker, _objData=UmlObjectData [id=3252, uuid={31FC9762-65CA-42b7-ABCB-83EFD97D28CE}, since=null, name=constrained3, alias=, stereotype=, visibility=public, txtDescription='Added to test parsing and assigning constraints.', htmlDescription='

Added to test parsing and assigning constraints.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a035a0]. +2024-09-07 12:38:48,719 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Topology::BusNameMarker, _objData=UmlObjectData [id=3253, uuid={96BA1CD3-C66C-4ea0-9D8F-B6776C6C49AE}, since=null, name=constrained4, alias=, stereotype=, visibility=public, txtDescription='Added to test parsing and assigning constraints.', htmlDescription='

Added to test parsing and assigning constraints.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a035a0]. +2024-09-07 12:38:48,719 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Topology::TopologicalIsland, _objData=UmlObjectData [id=3254, uuid={71F47E96-66A9-469f-9B94-D81BAECFCBD5}, since=null, name=constrained5, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a035a0]. +2024-09-07 12:38:48,719 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Topology::TopologicalIsland, _objData=UmlObjectData [id=3255, uuid={DCE02A31-C635-4cf0-AB24-4C475CEDCC93}, since=null, name=nonConstrained, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a035a0]. +2024-09-07 12:38:48,719 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC61968::IEC61968Version, _objData=UmlObjectData [id=3256, uuid={9FE72A7E-8CF0-40a9-A6CF-4F41D1B5BF82}, since=null, name=date, alias=, stereotype=, visibility=public, txtDescription='Form is YYYY-MM-DD for example for January 5, 2009 it is 2009-01-05 (not ending with dot)', htmlDescription='

Form is YYYY-MM-DD for example for January 5, 2009 it is 2009-01-05 (not ending with dot)

'], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=2010-05-07, _eaTypeId=640, _eaTypeName=AbsoluteDateTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@74868d]. +2024-09-07 12:38:48,719 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC61968::IEC61968Version, _objData=UmlObjectData [id=3257, uuid={CB9E6808-E556-4c14-AB7D-D4245FA445B6}, since=null, name=version, alias=, stereotype=, visibility=public, txtDescription='Form is IEC61970CIMXXvYY where XX is the major CIM package version and the YY is the minor version. For ecample IEC61970CIM13v18.', htmlDescription='

Form is IEC61970CIMXXvYY where XX is the major CIM package version and the YY is the minor version. For ecample IEC61970CIM13v18.

'], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=IEC62325CIM01v02, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@e6aa2]. +2024-09-07 12:38:48,719 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Other::MyClass, _objData=UmlObjectData [id=3263, uuid={A1BFCA1B-0A22-4a7c-B2A1-A31E2F46493F}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@190a65e]. +2024-09-07 12:38:48,719 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Other::MyClass, _objData=UmlObjectData [id=3264, uuid={B3F14AC4-4719-4d52-9C16-348079C67ADC}, since=null, name=normaIlyInService, alias=, stereotype=, visibility=public, txtDescription='The equipment is normally in service.', htmlDescription='

The equipment is normally in service.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@5185bd]. +2024-09-07 12:38:48,719 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Other::BadDatatypes, _objData=UmlObjectData [id=3261, uuid={5401BAC7-97BF-4c99-BF58-3352B0F67F23}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='text', htmlDescription='

text

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1467, _eaTypeName=BadDatatypes, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@10726a3]. +2024-09-07 12:38:48,719 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Other::BadDatatypes, _objData=UmlObjectData [id=3268, uuid={5074CED7-7500-4ea1-A49F-4FF08173FA21}, since=null, name=unit, alias=, stereotype=, visibility=public, txtDescription='text', htmlDescription='

text

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=badEnumVal, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@2663d3]. +2024-09-07 12:38:48,719 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Other::Equipment, _objData=UmlObjectData [id=3303, uuid={B4BA5ED2-2B91-44fc-993D-3097CF99F899}, since=null, name=testYesNo1, alias=, stereotype=, visibility=public, txtDescription='Indicates the presence/absence of energy measurements.', htmlDescription='

Indicates the presence/absence of energy measurements.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1540, _eaTypeName=YesNo, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@4d6e83]. +2024-09-07 12:38:48,719 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Other::Equipment, _objData=UmlObjectData [id=6707, uuid={11C51946-4599-4acb-B5AF-2B8F0CD45996}, since=null, name=myExtension, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a035a0, 2_taggedValues{nsuri=http://extensions, nsprefix=eext}]. +2024-09-07 12:38:48,719 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Other::NonEmptyPrimitive, _objData=UmlObjectData [id=3262, uuid={D496D1A8-C362-435f-83E4-B2247E25C84D}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@190a65e]. +2024-09-07 12:38:48,719 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Other::AttrDuplication, _objData=UmlObjectData [id=3267, uuid={D6C73EE7-83B0-45e6-BDC8-B0E3F46D8DE2}, since=null, name=normaIlyInService, alias=, stereotype=, visibility=public, txtDescription='The equipment is normally in service.', htmlDescription='

The equipment is normally in service.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@5185bd]. +2024-09-07 12:38:48,719 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Other::AnotherBadDatatype, _objData=UmlObjectData [id=3296, uuid={01D99E0F-A7B9-4546-8F76-3E092E9942AE}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@2663d3]. +2024-09-07 12:38:48,719 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Other::AnotherBadDatatype, _objData=UmlObjectData [id=3297, uuid={415FDB87-B93D-41ca-906E-B88DD94D9F04}, since=null, name=unit, alias=, stereotype=unallowed, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a035a0]. +2024-09-07 12:38:48,719 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Other::AnotherBadDatatype, _objData=UmlObjectData [id=3298, uuid={C055FF1A-F57E-4169-A823-AB41EB439A1C}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1538, _eaTypeName=EmptyCompound, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@5997b1]. +2024-09-07 12:38:48,719 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::AccessPoint, _objData=UmlObjectData [id=3320, uuid={40D9CE14-376C-43eb-9583-238284A8F3CC}, since=null, name=Address, alias=, stereotype=, visibility=public, txtDescription='Address is optional, e.g. in case of GOOSE subscriber where physical link exists (and no comm link).', htmlDescription='

Address is optional, e.g. in case of GOOSE subscriber where physical link exists (and no comm link).

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=1586, _eaTypeName=CommAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@f4d528]. +2024-09-07 12:38:48,719 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenCommonDataClass, _objData=UmlObjectData [id=3321, uuid={556405B0-426B-4a24-8F13-B0569BCCB145}, since=null, name=CDC-ID, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@8ad73b]. +2024-09-07 12:38:48,719 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenConstructedType, _objData=UmlObjectData [id=3322, uuid={3672BC56-9890-4355-861B-45B1B841A9A8}, since=null, name=DA-ID, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@8ad73b]. +2024-09-07 12:38:48,719 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenDataAttribute, _objData=UmlObjectData [id=3323, uuid={FD001E99-4132-4975-B26D-2B9F17395F66}, since=null, name=DAName, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@8ad73b]. +2024-09-07 12:38:48,719 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenDataAttribute, _objData=UmlObjectData [id=3324, uuid={34285ABB-FB3B-404a-ACC4-4709533FA4BF}, since=null, name=DARef, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1607, _eaTypeName=GenObjRef, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@4921a5]. +2024-09-07 12:38:48,719 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenDataAttribute, _objData=UmlObjectData [id=3325, uuid={6E718A2A-A12C-4100-80D3-84B5550862E0}, since=null, name=FC, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1597, _eaTypeName=GenFC, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1f27fae]. +2024-09-07 12:38:48,719 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenDataAttribute, _objData=UmlObjectData [id=3326, uuid={4F3B8CEE-ECAE-43cc-ACC9-68F61865042C}, since=null, name=TrgOp, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1615, _eaTypeName=GenTriggerConditions, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a35978]. +2024-09-07 12:38:48,719 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenDataAttribute, _objData=UmlObjectData [id=3327, uuid={807AE164-D149-4d18-9790-FCE87600CD9E}, since=null, name=Presence, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1609, _eaTypeName=GenPresenceConditions, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@f7c8c1]. +2024-09-07 12:38:48,719 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenDataAttribute, _objData=UmlObjectData [id=3328, uuid={B8650C5E-BC73-4968-B86C-C84775721C80}, since=null, name=Index, alias=, stereotype=, visibility=public, txtDescription='Index of this data attribute in case it is member of an array.', htmlDescription='

Index of this data attribute in case it is member of an array.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1602, _eaTypeName=GenINT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@10a87b3]. +2024-09-07 12:38:48,719 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenDataObject, _objData=UmlObjectData [id=3329, uuid={493B8A67-86FF-4718-BA8F-D78707C1FD65}, since=null, name=DOName, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@8ad73b]. +2024-09-07 12:38:48,719 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenDataObject, _objData=UmlObjectData [id=3330, uuid={B926F4CF-F07E-4264-B8E0-B1E7B6A83C0C}, since=null, name=DORef, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1607, _eaTypeName=GenObjRef, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@4921a5]. +2024-09-07 12:38:48,719 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenDataObject, _objData=UmlObjectData [id=3331, uuid={0100601D-CE5C-477e-9468-C76C14D215E9}, since=null, name=Transient, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1590, _eaTypeName=GenBOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1cd6521]. +2024-09-07 12:38:48,720 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenDataObject, _objData=UmlObjectData [id=3332, uuid={32D55A3C-F89A-4a1b-B987-40A0A56F35F7}, since=null, name=Presence, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1609, _eaTypeName=GenPresenceConditions, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@f7c8c1]. +2024-09-07 12:38:48,720 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenDataSet, _objData=UmlObjectData [id=3333, uuid={17678D76-CE06-4c20-80A5-7682C8099F48}, since=null, name=DSName, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@8ad73b]. +2024-09-07 12:38:48,720 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenFCD, _objData=UmlObjectData [id=3334, uuid={B8189F42-4859-4645-8DB8-09B9081EF712}, since=null, name=FC, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1597, _eaTypeName=GenFC, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1f27fae]. +2024-09-07 12:38:48,720 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenFCDA, _objData=UmlObjectData [id=3335, uuid={EA599362-A0A3-4d27-A9F4-915F9082C9B6}, since=null, name=FC, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1597, _eaTypeName=GenFC, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1f27fae]. +2024-09-07 12:38:48,720 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenFile, _objData=UmlObjectData [id=3336, uuid={4AD7728F-4A39-4b7e-AC32-D31BDA8E2033}, since=null, name=FileRef, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1616, _eaTypeName=GenVisString255, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@179bb86]. +2024-09-07 12:38:48,720 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenFile, _objData=UmlObjectData [id=3337, uuid={C372B3E2-9671-4ff3-A6DD-A2322FB8438C}, since=null, name=FileSize, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1602, _eaTypeName=GenINT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@10a87b3]. +2024-09-07 12:38:48,720 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenFile, _objData=UmlObjectData [id=3338, uuid={9A695829-F4E7-45cd-AD65-90CA0669786C}, since=null, name=LastModified, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1614, _eaTypeName=GenTimeStamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1cd19b3]. +2024-09-07 12:38:48,720 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenLogicalDevice, _objData=UmlObjectData [id=3339, uuid={132BB1C1-B4D8-4218-941F-B5A60919E81F}, since=null, name=LDName, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@8ad73b]. +2024-09-07 12:38:48,720 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenLogicalNode, _objData=UmlObjectData [id=3340, uuid={BE685D25-FF44-42ae-805A-D77E32E208B3}, since=null, name=LNName, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@8ad73b]. +2024-09-07 12:38:48,720 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenLogicalNode, _objData=UmlObjectData [id=3341, uuid={7A4CFF68-F4E3-47f5-BD82-708786CBC6E8}, since=null, name=LNRef, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1607, _eaTypeName=GenObjRef, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@4921a5]. +2024-09-07 12:38:48,720 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenSubDataAttribute, _objData=UmlObjectData [id=3342, uuid={AB7D51A9-8986-4bfc-8BA6-4836DC8814DE}, since=null, name=SubDAName, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@8ad73b]. +2024-09-07 12:38:48,720 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenSubDataAttribute, _objData=UmlObjectData [id=3343, uuid={94A40232-E6EE-4682-B41D-2FCF1207E36B}, since=null, name=SubDARef, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1607, _eaTypeName=GenObjRef, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@4921a5]. +2024-09-07 12:38:48,720 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenSubDataAttribute, _objData=UmlObjectData [id=3344, uuid={227F3C1B-21E7-46e7-92B5-A36942028DC0}, since=null, name=FC, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1597, _eaTypeName=GenFC, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1f27fae]. +2024-09-07 12:38:48,720 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenSubDataAttribute, _objData=UmlObjectData [id=3345, uuid={AB4449FC-BDC1-43fe-9AA0-B699FD684B7F}, since=null, name=Presence, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1609, _eaTypeName=GenPresenceConditions, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@f7c8c1]. +2024-09-07 12:38:48,720 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenSubDataAttribute, _objData=UmlObjectData [id=3346, uuid={F3DE8E30-A6D7-41b5-B2B6-B3006D7AEBCC}, since=null, name=Index, alias=, stereotype=, visibility=public, txtDescription='Index of this sub-data attribute in case it is member of an array.', htmlDescription='

Index of this sub-data attribute in case it is member of an array.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1602, _eaTypeName=GenINT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@10a87b3]. +2024-09-07 12:38:48,720 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenSubDataObject, _objData=UmlObjectData [id=3347, uuid={5336B078-D51A-4310-BFC9-7B4828112B1D}, since=null, name=SDOName, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@8ad73b]. +2024-09-07 12:38:48,720 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenSubDataObject, _objData=UmlObjectData [id=3348, uuid={7314D9C2-528D-4907-A459-ECDA44ADE0E0}, since=null, name=SDORef, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1607, _eaTypeName=GenObjRef, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@4921a5]. +2024-09-07 12:38:48,720 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenSubDataObject, _objData=UmlObjectData [id=3349, uuid={C1410F0D-BF9E-4f1d-B38F-884B17F8F161}, since=null, name=Presence, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1609, _eaTypeName=GenPresenceConditions, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@f7c8c1]. +2024-09-07 12:38:48,720 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenSubDataObject, _objData=UmlObjectData [id=3350, uuid={4276E214-E0D7-476f-BAA6-ED3DF54ABF91}, since=null, name=Index, alias=, stereotype=, visibility=public, txtDescription='Index of this sub data object in case it is member of an array.', htmlDescription='

Index of this sub data object in case it is member of an array.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1602, _eaTypeName=GenINT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@10a87b3]. +2024-09-07 12:38:48,720 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenTPAA, _objData=UmlObjectData [id=3351, uuid={24BE7E13-5125-43e0-9D7F-1F75F29C6A19}, since=null, name=AssociationId, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1588, _eaTypeName=GenAssociationID, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1211155]. +2024-09-07 12:38:48,720 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CoreTypes::P_TimeStamp, _objData=UmlObjectData [id=3383, uuid={CDA8BF64-6FF8-4ba2-ABBC-382E39C0B24C}, since=null, name=SecondSinceEpoch, alias=, stereotype=, visibility=public, txtDescription='Interval in seconds continuously counted from the epoch 1970-01-01 00:00:00 UTC.', htmlDescription='

Interval in seconds continuously counted from the epoch 1970-01-01 00:00:00 UTC.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1656, _eaTypeName=P_INT32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1dba6f9]. +2024-09-07 12:38:48,721 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CoreTypes::P_TimeStamp, _objData=UmlObjectData [id=3385, uuid={1C4E5EB3-6199-4ce6-976E-E81B1E3D3D26}, since=null, name=TimeQuality, alias=, stereotype=, visibility=public, txtDescription='Information about the time source of the sending IED.', htmlDescription='

Information about the time source of the sending IED.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1672, _eaTypeName=TimeQuality, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1e18270]. +2024-09-07 12:38:48,721 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CoreTypes::TimeQuality, _objData=UmlObjectData [id=3386, uuid={9C35C39B-81CF-412d-A57E-9706FE60A4E9}, since=null, name=LeapSecondsKnown, alias=, stereotype=, visibility=public, txtDescription='If true, the value in 'P_TimeStamp.SecondSinceEpoch' contains all leap seconds occurred. Otherwise, it does not take into account the leap seconds that occurred before the initialization of the time source of the device. Instead, the seconds since start of the epoch are calculated from the current date assuming a constant day length of 86400 seconds. +Note: If a UTC time master clock is used and accessible, this value should always be true.', htmlDescription='

If true, the value in 'P_TimeStamp.SecondSinceEpoch' contains all leap seconds occurred. Otherwise, it does not take into account the leap seconds that occurred before the initialization of the time source of the device. Instead, the seconds since start of the epoch are calculated from the current date assuming a constant day length of 86400 seconds.

Note: If a UTC time master clock is used and accessible, this value should always be true.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-07 12:38:48,721 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CoreTypes::TimeQuality, _objData=UmlObjectData [id=3387, uuid={5FDA2BA2-85CD-4f5d-9FC8-AA4C892E9904}, since=null, name=ClockFailure, alias=, stereotype=, visibility=public, txtDescription='If true, the time source of the sending device is unreliable and the value of the time stamp shall be ignored.', htmlDescription='

If true, the time source of the sending device is unreliable and the value of the time stamp shall be ignored.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-07 12:38:48,721 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CoreTypes::TimeQuality, _objData=UmlObjectData [id=3388, uuid={C371C41F-4D3F-4129-A08C-AA2AB445051F}, since=null, name=ClockNotSynchronized, alias=, stereotype=, visibility=public, txtDescription='If true, the time source of the sending device is not synchronised with the external UTC time.', htmlDescription='

If true, the time source of the sending device is not synchronised with the external UTC time.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-07 12:38:48,721 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CoreTypes::TimeQuality, _objData=UmlObjectData [id=3389, uuid={4B73DC7D-52D2-4627-A70B-1027E72F218F}, since=null, name=TimeAccuracy, alias=, stereotype=, visibility=public, txtDescription='Class of time accuracy in terms of number of significant bits in 'P_TimeStamp.FractionOfSecond'.', htmlDescription='

Class of time accuracy in terms of number of significant bits in 'P_TimeStamp.FractionOfSecond'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1673, _eaTypeName=TimeAccuracyKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1de5c8c]. +2024-09-07 12:38:48,721 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CoreTypes::P_TriggerConditions, _objData=UmlObjectData [id=3397, uuid={A829B7C4-40ED-4e43-A520-BB42588381F0}, since=null, name=data-change, alias=, stereotype=, visibility=public, txtDescription='If true, a value change of a process-related data attribute, tagged with dchg, will trigger the generation of a report or log entry. If false, no entry should be generated on value change.', htmlDescription='

If true, a value change of a process-related data attribute, tagged with dchg, will trigger the generation of a report or log entry. If false, no entry should be generated on value change.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-07 12:38:48,721 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CoreTypes::P_TriggerConditions, _objData=UmlObjectData [id=3398, uuid={088AE2AE-C484-4fb7-B17D-D9D712044645}, since=null, name=quality-change, alias=, stereotype=, visibility=public, txtDescription='If true, a value change of a quality-related data attribute, tagged with qchg, will trigger the generation of a report or log entry. If false, no entry should be generated on quality change.', htmlDescription='

If true, a value change of a quality-related data attribute, tagged with qchg, will trigger the generation of a report or log entry. If false, no entry should be generated on quality change.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-07 12:38:48,721 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CoreTypes::P_TriggerConditions, _objData=UmlObjectData [id=3399, uuid={57A3C8E0-5424-4100-90E2-3EFA7B5D1F57}, since=null, name=data-update, alias=, stereotype=, visibility=public, txtDescription='If true, a value freezing of a freezable data attribute (e.g., frozen counters) or a value update of any other data attribute, tagged with dupd, will trigger the generation of a report or log entry. If false, no entry should be generated on value update. +This trigger condition may be used to issue sending a report or storing a log entry into a log when a value has changed or has been "overwritten" with the same value as before. It may then be a trigger for reporting or logging of the statistics values (which may be calculated and updated periodically), independently of whether the value has changed or not.', htmlDescription='

If true, a value freezing of a freezable data attribute (e.g., frozen counters) or a value update of any other data attribute, tagged with dupd, will trigger the generation of a report or log entry. If false, no entry should be generated on value update.

This trigger condition may be used to issue sending a report or storing a log entry into a log when a value has changed or has been "overwritten" with the same value as before. It may then be a trigger for reporting or logging of the statistics values (which may be calculated and updated periodically), independently of whether the value has changed or not.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-07 12:38:48,721 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CoreTypes::P_TriggerConditions, _objData=UmlObjectData [id=3400, uuid={197A7EEE-CC0C-481d-B006-99BE3C9041A5}, since=null, name=integrity, alias=, stereotype=, visibility=public, txtDescription='If true, the control block in the server shall generate periodical Report or Log entries on every expiration of the integrity timer (period trigger option).', htmlDescription='

If true, the control block in the server shall generate periodical Report or Log entries on every expiration of the integrity timer (period trigger option).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-07 12:38:48,721 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CoreTypes::P_TriggerConditions, _objData=UmlObjectData [id=3401, uuid={2154CDDF-8F70-47dc-929D-406C98AC6E48}, since=null, name=general-interrogation, alias=, stereotype=, visibility=public, txtDescription='If true, the RCB in the server shall generate general interrogation Report entries on user request.', htmlDescription='

If true, the RCB in the server shall generate general interrogation Report entries on user request.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-07 12:38:48,721 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ObjectReferences::LDReference, _objData=UmlObjectData [id=3405, uuid={18337A58-4439-456a-8BCA-A1B7AF8715A1}, since=null, name=LDName, alias=, stereotype=, visibility=public, txtDescription='Name of an LD instance, unambiguously identifying the LD within the system.', htmlDescription='

Name of an LD instance, unambiguously identifying the LD within the system.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@525845]. +2024-09-07 12:38:48,721 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ObjectReferences::NonPersistentDSReference, _objData=UmlObjectData [id=3407, uuid={4F62D406-E0F0-45ea-9C34-3DB7262EDE88}, since=null, name=DSName, alias=, stereotype=, visibility=public, txtDescription='Name of a dataset instance, unambiguously identifying it within the scope of a two party application association.', htmlDescription='

Name of a dataset instance, unambiguously identifying it within the scope of a two party application association.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@525845]. +2024-09-07 12:38:48,721 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ObjectReferences::LNReference, _objData=UmlObjectData [id=3409, uuid={315FD389-CF79-4476-9221-E8EF466FE456}, since=null, name=LNName, alias=, stereotype=, visibility=public, txtDescription='Name of an LN instance, unambiguously identifying the LN within the scope of an LD.', htmlDescription='

Name of an LN instance, unambiguously identifying the LN within the scope of an LD.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@525845]. +2024-09-07 12:38:48,721 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ObjectReferences::CDCReference, _objData=UmlObjectData [id=3411, uuid={27B4D2D6-7DD0-4a73-8DD4-3E27211B8FE4}, since=null, name=DataName, alias=, stereotype=, visibility=public, txtDescription='Name of a CDC instance (data object) contained in the LN. The CDC may be: +1. PrimitiveCDC: Example is "Auto" from the reference myLD3/RREC1.Auto (where myLD3/RREC1.Auto is of type SPC:PrimitiveCDC). +2. ComposedCDC: example is "PhV" from the reference myLD3/MMXU1.PhV.phsA (where myLD3/MMXU1.PhV is of type WYE:ComposedCDC).', htmlDescription='

Name of a CDC instance (data object) contained in the LN. The CDC may be:

  1. PrimitiveCDC: Example is "Auto" from the reference myLD3/RREC1.Auto (where myLD3/RREC1.Auto is of type SPC:PrimitiveCDC).
  2. ComposedCDC: example is "PhV" from the reference myLD3/MMXU1.PhV.phsA (where myLD3/MMXU1.PhV is of type WYE:ComposedCDC).
'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@525845]. +2024-09-07 12:38:48,721 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ObjectReferences::CDCReference, _objData=UmlObjectData [id=3412, uuid={11F81F23-C9EF-4f7e-A783-E4ECC12CB884}, since=null, name=SubDataName, alias=, stereotype=, visibility=public, txtDescription='Empty string in case the PrimitiveCDC is contained in LN, non-empty name of sub-data object if PrimitiveCDC is contained in ComposedCDC. Example of this latter is "phsA" from the reference myLD3/MMXU1.PhV.phsA (where PhV is of type WYE:ComposedCDC, and one level further, PhV.phsA is of type SPC:PrimitiveCDC).', htmlDescription='

Empty string in case the PrimitiveCDC is contained in LN, non-empty name of sub-data object if PrimitiveCDC is contained in ComposedCDC. Example of this latter is "phsA" from the reference myLD3/MMXU1.PhV.phsA (where PhV is of type WYE:ComposedCDC, and one level further, PhV.phsA is of type SPC:PrimitiveCDC).

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@525845]. +2024-09-07 12:38:48,721 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ObjectReferences::CBReference, _objData=UmlObjectData [id=3414, uuid={8A834972-A898-4f3a-8CF5-9896102F4C43}, since=null, name=CBName, alias=, stereotype=, visibility=public, txtDescription='Name of a BRCB or URCB instance, unambiguously identifying it within the scope of an LN, or name of an SGCB, LCB, GCB, USVCB or MSVCB instance, unambiguously identifying it within the scope of the LN0. To find out which control block it describes, use FC. Corresponds to one of the following: +- SGCBName = "SGCB", +- BRCBName, +- URCBName, +- LCBName, +- GoCBName, +- USVCBName, +- MSVCBName.', htmlDescription='

Name of a BRCB or URCB instance, unambiguously identifying it within the scope of an LN, or name of an SGCB, LCB, GCB, USVCB or MSVCB instance, unambiguously identifying it within the scope of the LN0. To find out which control block it describes, use FC. Corresponds to one of the following:

  • SGCBName = "SGCB",
  • BRCBName,
  • URCBName,
  • LCBName,
  • GoCBName,
  • USVCBName,
  • MSVCBName.
'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@525845]. +2024-09-07 12:38:48,721 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ObjectReferences::CBReference, _objData=UmlObjectData [id=3415, uuid={801D665B-C42E-46a1-91D9-8131A8FA1630}, since=null, name=FC, alias=, stereotype=, visibility=public, txtDescription='Kind of control block described by this reference: +- ServiceFcKind.SP for SGCB, +- ServiceFcKind.BR for BRCB, +- ServiceFcKind.RP for URCB, +- ServiceFcKind.LG for LCB, +- ServiceFcKind.GO for GCB, +- ServiceFcKind.MS for MSVCB, +- ServiceFcKind.US for USVCB.', htmlDescription='

Kind of control block described by this reference:

  • ServiceFcKind.SP for SGCB,
  • ServiceFcKind.BR for BRCB,
  • ServiceFcKind.RP for URCB,
  • ServiceFcKind.LG for LCB,
  • ServiceFcKind.GO for GCB,
  • ServiceFcKind.MS for MSVCB,
  • ServiceFcKind.US for USVCB.
'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1699, _eaTypeName=ServiceFcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1021e6c]. +2024-09-07 12:38:48,721 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ObjectReferences::LOGReference, _objData=UmlObjectData [id=3425, uuid={E6AF9494-0CB6-469c-B908-B6EFD9D95BF2}, since=null, name=LogName, alias=, stereotype=, visibility=public, txtDescription='Name of a LOG instance, unambiguously identifying it within the scope of an LN0.', htmlDescription='

Name of a LOG instance, unambiguously identifying it within the scope of an LN0.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@525845]. +2024-09-07 12:38:48,722 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ObjectReferences::LOGReference, _objData=UmlObjectData [id=3426, uuid={DA9F9473-FD92-4da5-85D5-D15BE37BADB8}, since=null, name=FC, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=LG, _eaTypeId=1699, _eaTypeName=ServiceFcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1021e6c]. +2024-09-07 12:38:48,723 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ObjectReferences::LNOwnedDSReference, _objData=UmlObjectData [id=3428, uuid={098059FE-54F8-4eef-805F-94F5F8358D6F}, since=null, name=DSName, alias=, stereotype=, visibility=public, txtDescription='Name of a DS instance, unambiguously identifying the DS within the scope of an LN.', htmlDescription='

Name of a DS instance, unambiguously identifying the DS within the scope of an LN.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@525845]. +2024-09-07 12:38:48,723 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ObjectReferences::FCDReference, _objData=UmlObjectData [id=3431, uuid={F261F75D-C2F6-4b2d-9261-38E92897916A}, since=null, name=FC, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@116af24]. +2024-09-07 12:38:48,723 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ObjectReferences::FCDAReference, _objData=UmlObjectData [id=3433, uuid={71B22A59-B87D-4866-B0BD-DF359940497E}, since=null, name=FCDARefWithoutFC, alias=, stereotype=, visibility=public, txtDescription='Path-name of the PrimitiveDA instance (i.e., attribute contained in CDC or in ComposedDA) without functional constraint (= DataAttrRef).', htmlDescription='

Path-name of the PrimitiveDA instance (i.e., attribute contained in CDC or in ComposedDA) without functional constraint (= DataAttrRef).

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1667, _eaTypeName=P_VISIBLE_STRING255, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@3788f3]. +2024-09-07 12:38:48,723 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ObjectReferences::FCDAReference, _objData=UmlObjectData [id=3434, uuid={39C98C0B-3EBC-457d-ADB8-6E0955A9AAAC}, since=null, name=LeafAttrName, alias=, stereotype=, visibility=public, txtDescription='Concatenation of one or more names of instances of DA, as follows: +1. For a PrimitiveDA, it is a single name. Example is "stVal" from the reference [ST] myLD3/XCBR1.Pos.stVal (where stVal is of type DpStatus:EnumDA). +2. For a ComposedDA, it is concatenation of two or more names, starting from the ComposedDA down to the PrimitiveDA it contains. One example is "cVal.mag.f" from the reference [MX] myLD3/MMXU1.PhV.phsA.cVal.mag.f. In this example: +- cVal is of type Vector:ComposedDA; one level further, +- cVal.mag is of type AnalogueValue:ComposedDA; one level further, +- cVal.mag.f is of type FLOAT32:PrimitiveDA. +Modelling note: Corresponds to DataAttributeName.[DataAttributeName...]. +Implementation note: After DataName and SubDataName of CDCReference have been correctly parsed, this is the concatenation of all names down to the leaf.', htmlDescription='

Concatenation of one or more names of instances of DA, as follows:

  1. For a PrimitiveDA, it is a single name. Example is "stVal" from the reference [ST] myLD3/XCBR1.Pos.stVal (where stVal is of type DpStatus:EnumDA).
  2. For a ComposedDA, it is concatenation of two or more names, starting from the ComposedDA down to the PrimitiveDA it contains. One example is "cVal.mag.f" from the reference [MX] myLD3/MMXU1.PhV.phsA.cVal.mag.f. In this example:
  • cVal is of type Vector:ComposedDA; one level further,
  • cVal.mag is of type AnalogueValue:ComposedDA; one level further,
  • cVal.mag.f is of type FLOAT32:PrimitiveDA.

Modelling note: Corresponds to DataAttributeName.[DataAttributeName...].

Implementation note: After DataName and SubDataName of CDCReference have been correctly parsed, this is the concatenation of all names down to the leaf.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@525845]. +2024-09-07 12:38:48,723 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ObjectReferences::FCDAReference, _objData=UmlObjectData [id=3435, uuid={4358ED41-699C-4b19-A10D-D41877B1B0FF}, since=null, name=NumArrayElement, alias=, stereotype=, visibility=public, txtDescription='If the reference contains an array of DAs or CDCs, this is the index of the array element (e.g., reference [MX] myHWYE1.phsAHar(3).cVal.mag.f references the value of cVal with NumArrayElement=3), ignored otherwise. +Modelling note: Corresponds to NumArrayElement in one of the following: +- LDName/LNName.DataObjectName[.SubDataObjectName(NumArrayElement)[. ...]].DataAttributeName[.SubDataAttributeName[. ...]] +- LDName/LNName.DataObjectName[.SubDataObjectName[. ...]].DataAttributeName[(NumArrayElement)][.SubDataAttributeName[. ...]] +- LDName/LNName.DataObjectName[.SubDataObjectName[. ...]].DataAttributeName(NumArrayElement)', htmlDescription='

If the reference contains an array of DAs or CDCs, this is the index of the array element (e.g., reference [MX] myHWYE1.phsAHar(3).cVal.mag.f references the value of cVal with NumArrayElement=3), ignored otherwise.

Modelling note: Corresponds to NumArrayElement in one of the following:

  • LDName/LNName.DataObjectName[.SubDataObjectName(NumArrayElement)[. ...]].DataAttributeName[.SubDataAttributeName[. ...]]
  • LDName/LNName.DataObjectName[.SubDataObjectName[. ...]].DataAttributeName[(NumArrayElement)][.SubDataAttributeName[. ...]]
  • LDName/LNName.DataObjectName[.SubDataObjectName[. ...]].DataAttributeName(NumArrayElement)
'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1661, _eaTypeName=P_INT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1a51a35]. +2024-09-07 12:38:48,723 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=BasicDAs::BOOLEAN, _objData=UmlObjectData [id=3455, uuid={26303763-5425-4eb3-9E6B-A0E20714D69E}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-07 12:38:48,723 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=BasicDAs::INT16U, _objData=UmlObjectData [id=3458, uuid={5CAC1927-5377-434f-B9CF-DF014080FF25}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1659, _eaTypeName=P_INT16U, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@9a5fbe]. +2024-09-07 12:38:48,724 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=BasicDAs::INT32, _objData=UmlObjectData [id=3460, uuid={8AB19364-EBA3-46e8-9A28-836D4BE3184E}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1656, _eaTypeName=P_INT32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1dba6f9]. +2024-09-07 12:38:48,724 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=BasicDAs::INT32U, _objData=UmlObjectData [id=3461, uuid={4E98F434-E893-4dd8-A976-1F47F85F096D}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1661, _eaTypeName=P_INT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1a51a35]. +2024-09-07 12:38:48,724 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=BasicDAs::FLOAT32, _objData=UmlObjectData [id=3456, uuid={0C453C24-788C-4b79-936D-F8ED7B6AC349}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1662, _eaTypeName=P_FLOAT32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@4041cc]. +2024-09-07 12:38:48,724 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=BasicDAs::UNICODE_STRING255, _objData=UmlObjectData [id=3466, uuid={2D5EC3D2-2D30-4dcd-A716-1DDCC1D03618}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1663, _eaTypeName=P_UNICODE_STRING255, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1ca2dfa]. +2024-09-07 12:38:48,724 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=BasicDAs::VISIBLE_STRING255, _objData=UmlObjectData [id=3467, uuid={98E04197-6A6E-47dc-9801-656386DF6B28}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1667, _eaTypeName=P_VISIBLE_STRING255, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@3788f3]. +2024-09-07 12:38:48,724 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=BasicDAs::ObjectReference, _objData=UmlObjectData [id=3469, uuid={D656053C-0AC9-4b40-B071-8DCD708B0AF0}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1669, _eaTypeName=P_ObjectReference, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b4de6a]. +2024-09-07 12:38:48,724 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=BasicDAs::PHYCOMADDR, _objData=UmlObjectData [id=3470, uuid={601E9D69-6691-49ad-B034-6C76CA60A811}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1670, _eaTypeName=P_PHYCOMADDR, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@18f5f62]. +2024-09-07 12:38:48,724 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=BasicDAs::TimeStamp, _objData=UmlObjectData [id=3471, uuid={3ABEB6F9-DB10-42c0-BB49-17EA3703AFBC}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1671, _eaTypeName=P_TimeStamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@d59286]. +2024-09-07 12:38:48,724 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=BasicDAs::TriggerConditions, _objData=UmlObjectData [id=3472, uuid={808EC92B-30E6-4882-A08E-64D4B5E48217}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1674, _eaTypeName=P_TriggerConditions, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@123a213]. +2024-09-07 12:38:48,724 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=BasicDAs::DpStatus, _objData=UmlObjectData [id=3473, uuid={B1D71CDD-86A6-4d33-A64E-6E6089FFAD0E}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1636, _eaTypeName=DpStatusKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1cd892a]. +2024-09-07 12:38:48,724 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=BasicDAs::BsControl, _objData=UmlObjectData [id=3474, uuid={5CF376EC-A611-4feb-9E92-1A3A726D9788}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1635, _eaTypeName=BsControlKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@83f5ae]. +2024-09-07 12:38:48,724 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CommonAcsiTypes::MulticastAddress, _objData=UmlObjectData [id=3478, uuid={E313732A-C2CB-4dbd-B5D6-C20398D08EAA}, since=null, name=vid, alias=, stereotype=, visibility=public, txtDescription='Virtual LAN ID. Shall be 3 characters from the range [0-9] and [A-F].', htmlDescription='

Virtual LAN ID. Shall be 3 characters from the range [0-9] and [A-F].

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1659, _eaTypeName=P_INT16U, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@9a5fbe]. +2024-09-07 12:38:48,724 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CommonAcsiTypes::MulticastAddress, _objData=UmlObjectData [id=3479, uuid={DE23C4C9-F440-4437-9F96-B5C3040716E9}, since=null, name=appid, alias=, stereotype=, visibility=public, txtDescription='Application identifier. Shall be 4 characters from the range [0-9] and [A-F].', htmlDescription='

Application identifier. Shall be 4 characters from the range [0-9] and [A-F].

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1659, _eaTypeName=P_INT16U, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@9a5fbe]. +2024-09-07 12:38:48,724 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CommonAcsiTypes::EntryID, _objData=UmlObjectData [id=3481, uuid={D3228FA9-B272-4ce2-B085-A15C466C9489}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1770, _eaTypeName=P_OCTET_STRING, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1d4cc9e]. +2024-09-07 12:38:48,724 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::HierarchyIEC61850Object, _objData=UmlObjectData [id=3584, uuid={C32A6B6B-F4DC-4498-A469-C006B9625420}, since=null, name=parent, alias=, stereotype=, visibility=public, txtDescription='Parent of this hierarchy object.', htmlDescription='

Parent of this hierarchy object.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1835, _eaTypeName=IEC61850Object, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@27c60c]. +2024-09-07 12:38:48,724 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::NamedIEC61850Object, _objData=UmlObjectData [id=3585, uuid={E8F8F2B7-045C-402f-BA7A-4880C9570B06}, since=null, name=objName, alias=, stereotype=, visibility=public, txtDescription='Object name.', htmlDescription='

Object name.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@525845]. +2024-09-07 12:38:48,724 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::SERVER, _objData=UmlObjectData [id=3588, uuid={8C8AC9D6-5A54-4110-A15C-61F37484AB7D}, since=null, name=serviceAccessPoints, alias=, stereotype=, visibility=public, txtDescription='All service access points of the server, unambiguously identifying it within a system. +Modelling note 1: Corresponds to SERVER.ServiceAccessPoint. +Modelling note 2: Original documentation reads: "Shall identify a SERVER within the scope of a system. NOTE: The ServiceAccessPoint is an abstraction of an address used to identify the server in the underlying SCSM. The type depends on the SCSM and shall be defined there. Although most services require a specific ServiceAccessPoint to address a server, it has not been included explicitly in the service parameter tables throughout this part of the standard." Currently, here is defined the type IPAddress; see also MulticastAddress.', htmlDescription='

All service access points of the server, unambiguously identifying it within a system.

Modelling note 1: Corresponds to SERVER.ServiceAccessPoint.

Modelling note 2: Original documentation reads: "Shall identify a SERVER within the scope of a system. NOTE: The ServiceAccessPoint is an abstraction of an address used to identify the server in the underlying SCSM. The type depends on the SCSM and shall be defined there. Although most services require a specific ServiceAccessPoint to address a server, it has not been included explicitly in the service parameter tables throughout this part of the standard." Currently, here is defined the type IPAddress; see also MulticastAddress.

'], _isConst=false, _isStatic=false, _multiplicity=[1..*], _initValue=, _eaTypeId=1771, _eaTypeName=IPAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1f23557]. +2024-09-07 12:38:48,724 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::LD, _objData=UmlObjectData [id=3589, uuid={877F93ED-1944-4701-A29D-57C6810B68CB}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1694, _eaTypeName=LDReference, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@194d659]. +2024-09-07 12:38:48,724 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::LN, _objData=UmlObjectData [id=3590, uuid={B9201E1F-0FBA-4eee-A567-31539F09E245}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1696, _eaTypeName=LNReference, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@ceda24]. +2024-09-07 12:38:48,724 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::CDC, _objData=UmlObjectData [id=3591, uuid={6520578A-E479-4aca-8AD6-7A973E895B9F}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1697, _eaTypeName=CDCReference, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1e3708]. +2024-09-07 12:38:48,724 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::FCD, _objData=UmlObjectData [id=3592, uuid={71280780-DF48-46ed-94CA-4B5679065AE1}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1702, _eaTypeName=FCDReference, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@e82894]. +2024-09-07 12:38:48,724 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::FCD, _objData=UmlObjectData [id=3593, uuid={000364EA-747B-48d9-9EFC-91F8A514AEF3}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@116af24]. +2024-09-07 12:38:48,724 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::FCDA, _objData=UmlObjectData [id=3594, uuid={B87818BA-192E-4a1d-8AD7-0549A1C7944B}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1703, _eaTypeName=FCDAReference, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@13af739]. +2024-09-07 12:38:48,724 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::DA, _objData=UmlObjectData [id=3595, uuid={9BCB520F-E69E-42f6-B46B-C5CD184D0DC6}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1703, _eaTypeName=FCDAReference, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@13af739]. +2024-09-07 12:38:48,725 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::PrimitiveDA, _objData=UmlObjectData [id=3596, uuid={6D0553ED-7183-49b8-AA89-281C5ED4C156}, since=null, name=attrVal, alias=, stereotype=, visibility=public, txtDescription='Attribute value.', htmlDescription='

Attribute value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1715, _eaTypeName=AttrValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1fe3806]. +2024-09-07 12:38:48,725 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::LNOwnedDS, _objData=UmlObjectData [id=3597, uuid={178D709F-C872-44cb-9A6B-41E324507F65}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1701, _eaTypeName=LNOwnedDSReference, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@7c290d]. +2024-09-07 12:38:48,725 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::NonPersistentDS, _objData=UmlObjectData [id=3598, uuid={D70F19B4-50F6-4ef3-B474-4097F3C69C1D}, since=null, name=isReferenced, alias=, stereotype=, visibility=public, txtDescription='Whether this persistent data set is referenced by any control block. +Modelling note: Persistent data set has to maintain the count of control blocks that refer to it. As long as any control block refers to it, the data set must not be deleted.', htmlDescription='

Whether this persistent data set is referenced by any control block.

Modelling note: Persistent data set has to maintain the count of control blocks that refer to it. As long as any control block refers to it, the data set must not be deleted.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-07 12:38:48,725 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::NonPersistentDS, _objData=UmlObjectData [id=3599, uuid={621B00EC-B4C7-4e96-B78E-699BDF150650}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1695, _eaTypeName=NonPersistentDSReference, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@b1d79b]. +2024-09-07 12:38:48,725 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::PersistentDS, _objData=UmlObjectData [id=3600, uuid={6031C78B-0DF2-4ebc-B8D9-F1536979D005}, since=null, name=isReferenced, alias=, stereotype=, visibility=public, txtDescription='Whether this persistent data set is referenced by any control block. +Modelling note: Persistent data set has to maintain the count of control blocks that refer to it. As long as any control block refers to it, the data set must not be deleted.', htmlDescription='

Whether this persistent data set is referenced by any control block.

Modelling note: Persistent data set has to maintain the count of control blocks that refer to it. As long as any control block refers to it, the data set must not be deleted.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-07 12:38:48,725 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::ControlBlock, _objData=UmlObjectData [id=3601, uuid={A222DE94-3FCC-4552-ABD6-E06CD9D4785A}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1698, _eaTypeName=CBReference, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1a50a4c]. +2024-09-07 12:38:48,725 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::BRCB, _objData=UmlObjectData [id=3602, uuid={49A42927-00D7-4419-B76E-ED5F48ECCCB8}, since=null, name=clientAddress, alias=, stereotype=, visibility=public, txtDescription='Address of the client configured to use this buffered sampled values control block.', htmlDescription='

Address of the client configured to use this buffered sampled values control block.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1771, _eaTypeName=IPAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1f23557]. +2024-09-07 12:38:48,725 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::URCB, _objData=UmlObjectData [id=3603, uuid={B5927ACC-713E-4617-AA8C-BC2DF96653FC}, since=null, name=clientAddress, alias=, stereotype=, visibility=public, txtDescription='Address of the client currently using this unbuffered report control block.', htmlDescription='

Address of the client currently using this unbuffered report control block.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1771, _eaTypeName=IPAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1f23557]. +2024-09-07 12:38:48,725 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::LOG, _objData=UmlObjectData [id=3604, uuid={83B4C180-8173-4ced-91C7-171BCA34F649}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1700, _eaTypeName=LOGReference, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@103f852]. +2024-09-07 12:38:48,725 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::GCB, _objData=UmlObjectData [id=3605, uuid={8D35BDEB-211F-478a-B3F2-87A92379A926}, since=null, name=destinationAddress, alias=, stereotype=, visibility=public, txtDescription='Address to which this control block publishes GOOSE messages.', htmlDescription='

Address to which this control block publishes GOOSE messages.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1772, _eaTypeName=MulticastAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@2db087]. +2024-09-07 12:38:48,725 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::MSVCB, _objData=UmlObjectData [id=3606, uuid={98ABF189-48F0-466b-9B2F-580948BB965B}, since=null, name=destinationAddress, alias=, stereotype=, visibility=public, txtDescription='Address to which this control block publishes sampled values.', htmlDescription='

Address to which this control block publishes sampled values.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1772, _eaTypeName=MulticastAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@2db087]. +2024-09-07 12:38:48,725 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::USVCB, _objData=UmlObjectData [id=3607, uuid={84624C3F-9B45-49b5-94A3-491A476383AF}, since=null, name=clientAddress, alias=, stereotype=, visibility=public, txtDescription='Address of the client currently using this unbuffered sampled values control block.', htmlDescription='

Address of the client currently using this unbuffered sampled values control block.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1771, _eaTypeName=IPAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1f23557]. +2024-09-07 12:38:48,725 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::FILE, _objData=UmlObjectData [id=3608, uuid={9EB09CC5-3C74-4cf6-A8B4-C65928A972B6}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1693, _eaTypeName=FILEReference, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@ab0bfb]. +2024-09-07 12:38:48,725 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_BL, _objData=UmlObjectData [id=3609, uuid={5D2587D3-3485-4d8e-A54A-B3968B0ACD55}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=BL, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@116af24]. +2024-09-07 12:38:48,725 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_CF, _objData=UmlObjectData [id=3610, uuid={09B06C9E-4F11-4e82-8034-F5CC45FAC900}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=CF, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@116af24]. +2024-09-07 12:38:48,725 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_CF_dchg, _objData=UmlObjectData [id=3611, uuid={09BA6106-FB5B-46d5-B9EB-69EF40ADE216}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@438a68]. +2024-09-07 12:38:48,725 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_DC, _objData=UmlObjectData [id=3612, uuid={683D28A6-85D9-4a30-9858-1FD32EE25D71}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=DC, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@116af24]. +2024-09-07 12:38:48,725 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_EX, _objData=UmlObjectData [id=3613, uuid={CEFBDE9B-5BF0-4b36-856A-CA994924738A}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=EX, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@116af24]. +2024-09-07 12:38:48,725 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_EX, _objData=UmlObjectData [id=3614, uuid={5A327143-156F-48dd-AAF5-6B96335A4246}, since=null, name=isWritable, alias=, stereotype=, visibility=public, txtDescription='Whether the data attribute is writable through services.', htmlDescription='

Whether the data attribute is writable through services.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-07 12:38:48,725 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_MX, _objData=UmlObjectData [id=3615, uuid={C595F449-EECA-490f-86C4-52A016827CF5}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=MX, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@116af24]. +2024-09-07 12:38:48,725 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_MX, _objData=UmlObjectData [id=3616, uuid={26C44A44-AB3A-4d2f-9A1C-F09A40CD7503}, since=null, name=isWritable, alias=, stereotype=, visibility=public, txtDescription='Whether the data attribute is writable through services.', htmlDescription='

Whether the data attribute is writable through services.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-07 12:38:48,725 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_MX_dchg, _objData=UmlObjectData [id=3617, uuid={DA6E63F6-73E7-48a9-B61B-B3DF59A04B4E}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@438a68]. +2024-09-07 12:38:48,725 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_MX_dchg_dupd, _objData=UmlObjectData [id=3618, uuid={22AFD6F7-773C-4cac-A2E0-545134B61149}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, dupd, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@438a68]. +2024-09-07 12:38:48,726 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_MX_qchg, _objData=UmlObjectData [id=3619, uuid={3F395C8A-6D62-4c56-87E6-027F1F594183}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=qchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@438a68]. +2024-09-07 12:38:48,726 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_OR, _objData=UmlObjectData [id=3620, uuid={282951AC-7E92-4c83-97E3-19FBCC94D012}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=OR, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@116af24]. +2024-09-07 12:38:48,726 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_OR, _objData=UmlObjectData [id=3621, uuid={558DB516-1CFD-4554-81F5-FA0755D271D8}, since=null, name=isWritable, alias=, stereotype=, visibility=public, txtDescription='Whether the data attribute is writable through services.', htmlDescription='

Whether the data attribute is writable through services.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-07 12:38:48,726 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_OR_dchg, _objData=UmlObjectData [id=3622, uuid={3A006018-162B-46b7-AC78-9652BF2385BD}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@438a68]. +2024-09-07 12:38:48,726 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SE, _objData=UmlObjectData [id=3623, uuid={EE451B41-BF45-40e4-8CF7-515359A61448}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=SE, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@116af24]. +2024-09-07 12:38:48,726 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SE, _objData=UmlObjectData [id=3624, uuid={C6F2D29C-73F2-45a2-852C-36D93C110DE8}, since=null, name=isReadable, alias=, stereotype=, visibility=public, txtDescription='Whether the data attribute is readable through services.', htmlDescription='

Whether the data attribute is readable through services.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-07 12:38:48,726 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SE, _objData=UmlObjectData [id=3625, uuid={4CFFCD7F-9E74-4b7a-B957-5A62F07BBB56}, since=null, name=isWritable, alias=, stereotype=, visibility=public, txtDescription='Whether the data attribute is writable through services.', htmlDescription='

Whether the data attribute is writable through services.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-07 12:38:48,726 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SE_dchg, _objData=UmlObjectData [id=3626, uuid={CF74494C-A546-4a41-A807-684E97FE1B68}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@438a68]. +2024-09-07 12:38:48,726 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SG, _objData=UmlObjectData [id=3627, uuid={1810C2D0-E27B-4e1e-A0B6-2A5F2E8E16D6}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=SG, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@116af24]. +2024-09-07 12:38:48,726 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SG, _objData=UmlObjectData [id=3628, uuid={1BD03152-B959-4fff-8DC0-B6BE8542DDD2}, since=null, name=isWritable, alias=, stereotype=, visibility=public, txtDescription='Whether the data attribute is writable through services.', htmlDescription='

Whether the data attribute is writable through services.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-07 12:38:48,726 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SG_dchg, _objData=UmlObjectData [id=3629, uuid={D993FACE-FF1E-47a8-9E52-C03D6CB09D7D}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@438a68]. +2024-09-07 12:38:48,726 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SP, _objData=UmlObjectData [id=3630, uuid={6DC7D1CB-F4DC-4ef4-9756-98C8AD7FF1B6}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=SP, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@116af24]. +2024-09-07 12:38:48,726 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SP_dchg, _objData=UmlObjectData [id=3631, uuid={CA035F21-EC50-4322-8BD7-B8C7FD19CF46}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@438a68]. +2024-09-07 12:38:48,726 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_ST, _objData=UmlObjectData [id=3632, uuid={55FA60DB-3F3A-4bb9-9E91-8BA73393B836}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=ST, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@116af24]. +2024-09-07 12:38:48,726 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_ST, _objData=UmlObjectData [id=3633, uuid={A00991C4-8B92-478e-AC41-A628210ED3B7}, since=null, name=isWritable, alias=, stereotype=, visibility=public, txtDescription='Whether the data attribute is writable through services.', htmlDescription='

Whether the data attribute is writable through services.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-07 12:38:48,726 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_ST_dchg, _objData=UmlObjectData [id=3634, uuid={3899F2B2-1233-40b3-9997-370CF1FD073A}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@438a68]. +2024-09-07 12:38:48,726 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_ST_dchg_dupd, _objData=UmlObjectData [id=3635, uuid={41740EB1-4C6B-4265-A5A9-D1853C7B873B}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, dupd, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@438a68]. +2024-09-07 12:38:48,726 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_ST_dupd, _objData=UmlObjectData [id=3636, uuid={332CF62D-D37E-431d-8EC4-6A1EBADAAFB3}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dupd, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@438a68]. +2024-09-07 12:38:48,726 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_ST_qchg, _objData=UmlObjectData [id=3637, uuid={2735A83D-F0E0-4aab-ADB5-AECB30212656}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=qchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@438a68]. +2024-09-07 12:38:48,726 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SV, _objData=UmlObjectData [id=3638, uuid={4D38B4C1-5DEC-47cf-90C9-BF37000D95AC}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=SV, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@116af24]. +2024-09-07 12:38:48,727 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ImplicitDAs::SIUnit, _objData=UmlObjectData [id=4088, uuid={04E61BC5-2DEF-41ba-AF8F-3A302F4A6063}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2045, _eaTypeName=SIUnitKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1df177]. +2024-09-07 12:38:48,727 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ImplicitDAs::Multiplier, _objData=UmlObjectData [id=4077, uuid={D9A6C35F-4CCF-4f73-83E5-5F4AD6A1400F}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2044, _eaTypeName=MultiplierKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@f08448]. +2024-09-07 12:38:48,727 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ImplicitDAs::PhaseFaultDirection, _objData=UmlObjectData [id=4082, uuid={686FDE41-9545-4055-876E-D830A36C9D9B}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2035, _eaTypeName=PhaseFaultDirectionKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@8df31b]. +2024-09-07 12:38:48,727 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ImplicitDAs::PhaseAngleReference, _objData=UmlObjectData [id=4081, uuid={C147EDDB-E173-43f3-A14E-937A40EA0619}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2039, _eaTypeName=PhaseAngleReferenceKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1a57272]. +2024-09-07 12:38:48,727 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::Quality, _objData=UmlObjectData [id=4089, uuid={6B873BB6-307E-4f25-9992-6EB6CF12F6ED}, since=null, name=validity, alias=, stereotype=, visibility=public, txtDescription='Validity of the value, as condensed information for the client. In case this value is not 'good', the reasons may be found in the 'detailQual'. See statechart diagram 'Quality.validity'.', htmlDescription='

Validity of the value, as condensed information for the client. In case this value is not 'good', the reasons may be found in the 'detailQual'. See statechart diagram 'Quality.validity'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2086, _eaTypeName=ValidityKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@238e3f]. +2024-09-07 12:38:48,727 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::Quality, _objData=UmlObjectData [id=4090, uuid={F9945558-C141-4c08-8066-C29D603832D6}, since=null, name=detailQual, alias=, stereotype=, visibility=public, txtDescription='Describes reason in case 'validity' is not 'good'. See statechart diagram 'Quality.validity'.', htmlDescription='

Describes reason in case 'validity' is not 'good'. See statechart diagram 'Quality.validity'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2087, _eaTypeName=DetailQual, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@464a14]. +2024-09-07 12:38:48,727 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::Quality, _objData=UmlObjectData [id=4091, uuid={5A199508-269E-4da4-9486-1CFDD6D76F69}, since=null, name=source, alias=, stereotype=, visibility=public, txtDescription='Defines the source of a value. +NOTE 1 Substitution may be done locally or via the communication services. In the second case, specific attributes with a FC=SV are used. +NOTE 2 There are various means to clear a substitution. As an example, a substitution that was done following an invalid condition may be cleared automatically if the invalid condition is cleared. However, this is a local issue and therefore not within the scope of this standard.', htmlDescription='

Defines the source of a value.

NOTE 1 Substitution may be done locally or via the communication services. In the second case, specific attributes with a FC=SV are used.

NOTE 2 There are various means to clear a substitution. As an example, a substitution that was done following an invalid condition may be cleared automatically if the invalid condition is cleared. However, this is a local issue and therefore not within the scope of this standard.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=process, _eaTypeId=2088, _eaTypeName=SourceKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@4aea35]. +2024-09-07 12:38:48,727 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::Quality, _objData=UmlObjectData [id=4092, uuid={AAF0A359-5525-42e5-AC60-220D2A34F946}, since=null, name=test, alias=, stereotype=, visibility=public, txtDescription='If true, the value is a test value and not to be used for operational purposes. The processing of the test quality in the client shall be as described in IEC 61850-7-4. This bit shall be completely independent from the other bits within the quality descriptor.', htmlDescription='

If true, the value is a test value and not to be used for operational purposes. The processing of the test quality in the client shall be as described in IEC 61850-7-4. This bit shall be completely independent from the other bits within the quality descriptor.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-07 12:38:48,727 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::Quality, _objData=UmlObjectData [id=4093, uuid={3CD5913A-B2E1-43bd-ABC3-943477516A2E}, since=null, name=operatorBlocked, alias=, stereotype=, visibility=public, txtDescription='If true, further update of the value has been blocked by an operator. The value shall be the information that was acquired before blocking. If this flag is set, then the 'detailQual.oldData' shall also be set. +The operator shall use the data attribute 'CDC.blkEna' to block the update of the value. +NOTE Both an operator as well as an automatic function may freeze communication updating as well as input updating. In both cases, 'detailQual.oldData' will be set. If the blocking is done by an operator, then this flag is set additionally, and an operator activity is required to clear the condition. +EXAMPLE An operator may freeze the update of an input, to save the old value before the auxiliary supply is switched off.', htmlDescription='

If true, further update of the value has been blocked by an operator. The value shall be the information that was acquired before blocking. If this flag is set, then the 'detailQual.oldData' shall also be set.

The operator shall use the data attribute 'CDC.blkEna' to block the update of the value.

NOTE Both an operator as well as an automatic function may freeze communication updating as well as input updating. In both cases, 'detailQual.oldData' will be set. If the blocking is done by an operator, then this flag is set additionally, and an operator activity is required to clear the condition.

EXAMPLE An operator may freeze the update of an input, to save the old value before the auxiliary supply is switched off.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-07 12:38:48,727 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4098, uuid={F718393A-BF8D-43d5-838D-8E98DDBD0E12}, since=null, name=overflow, alias=, stereotype=, visibility=public, txtDescription='If true, the value of the attribute to which the quality has been associated is beyond the capability of being represented properly (used for measurand information only). +EXAMPLE A measured value may exceed the range that may be represented by the selected data type, for example the data type is a 16-bit unsigned integer and the value exceeds 65 535.', htmlDescription='

If true, the value of the attribute to which the quality has been associated is beyond the capability of being represented properly (used for measurand information only).

EXAMPLE A measured value may exceed the range that may be represented by the selected data type, for example the data type is a 16-bit unsigned integer and the value exceeds 65 535.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-07 12:38:48,728 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4099, uuid={59AA133B-4EF6-45b2-8F72-65890F8CB3B3}, since=null, name=outOfRange, alias=, stereotype=, visibility=public, txtDescription='If true, the attribute to which the quality has been associated is beyond a predefined range of values. The server shall decide if validity shall be set to invalid or questionable (used for measurand information only). +EXAMPLE A measured value may exceed a predefined range, however the selected data type can still represent the value, for example the data type is a 16-bit unsigned integer, the predefined range is 0 to 40 000, if the value is between 40 001 and 65 535 it is considered to be out of range.', htmlDescription='

If true, the attribute to which the quality has been associated is beyond a predefined range of values. The server shall decide if validity shall be set to invalid or questionable (used for measurand information only).

EXAMPLE A measured value may exceed a predefined range, however the selected data type can still represent the value, for example the data type is a 16-bit unsigned integer, the predefined range is 0 to 40 000, if the value is between 40 001 and 65 535 it is considered to be out of range.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-07 12:38:48,728 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4100, uuid={11996C00-CB4B-4a28-8EE7-BEF71773138F}, since=null, name=badReference, alias=, stereotype=, visibility=public, txtDescription='If true, the value may not be a correct value due to a reference being out of calibration. The server shall decide if validity shall be set to invalid or questionable (used for measurand information and binary counter information only).', htmlDescription='

If true, the value may not be a correct value due to a reference being out of calibration. The server shall decide if validity shall be set to invalid or questionable (used for measurand information and binary counter information only).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-07 12:38:48,728 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4101, uuid={8BDDF6AD-167F-4b25-B87B-675BA127832A}, since=null, name=oscillatory, alias=, stereotype=, visibility=public, txtDescription='To prevent overloading of event driven communication channels, it is desirable to detect and suppress oscillating (fast changing) binary inputs. If a signal changes in a defined time (tosc) twice in the same direction (from 0 to 1 or from 1 to 0), then it shall be defined as an oscillation and this attribute shall be set to true. If a configured number of transient changes is detected, they shall be suppressed. In this time, the 'Quality.validity' shall be set to 'questionable'. If the signal is still in the oscillating state after the defined number of changes, the value shall be left in the state it was in when this flag was set. In this case, the 'Quality.validity' shall be changed from 'questionable' to 'invalid' and kept so as long as the signal is oscillating. +If the configuration is such that all transient changes should be suppressed, the 'Quality.validity' shall be set immediately to 'invalid' and this flag to true (used for status information only).', htmlDescription='

To prevent overloading of event driven communication channels, it is desirable to detect and suppress oscillating (fast changing) binary inputs. If a signal changes in a defined time (tosc) twice in the same direction (from 0 to 1 or from 1 to 0), then it shall be defined as an oscillation and this attribute shall be set to true. If a configured number of transient changes is detected, they shall be suppressed. In this time, the 'Quality.validity' shall be set to 'questionable'. If the signal is still in the oscillating state after the defined number of changes, the value shall be left in the state it was in when this flag was set. In this case, the 'Quality.validity' shall be changed from 'questionable' to 'invalid' and kept so as long as the signal is oscillating.

If the configuration is such that all transient changes should be suppressed, the 'Quality.validity' shall be set immediately to 'invalid' and this flag to true (used for status information only).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-07 12:38:48,728 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4102, uuid={3B8BF4EE-E8EF-4aff-A496-55A1F7D43008}, since=null, name=failure, alias=, stereotype=, visibility=public, txtDescription='If true, a supervision function has detected an internal or external failure.', htmlDescription='

If true, a supervision function has detected an internal or external failure.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-07 12:38:48,728 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4103, uuid={818F9F91-476A-49f8-86B4-58D7E97343BD}, since=null, name=oldData, alias=, stereotype=, visibility=public, txtDescription='If true, an update is not made during a specific time interval. The value may be an old value that may have changed in the meantime. This specific time interval may be defined by an allowed-age attribute. +NOTE "Fail silent" errors, where the equipment stops sending data, will cause setting this flag to true. In this case, the last received information was correct.', htmlDescription='

If true, an update is not made during a specific time interval. The value may be an old value that may have changed in the meantime. This specific time interval may be defined by an allowed-age attribute.

NOTE "Fail silent" errors, where the equipment stops sending data, will cause setting this flag to true. In this case, the last received information was correct.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-07 12:38:48,729 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4104, uuid={BD955C3B-2E26-40fa-ADBC-F1FD970D24FF}, since=null, name=inconsistent, alias=, stereotype=, visibility=public, txtDescription='If true, an evaluation function has detected an inconsistency.', htmlDescription='

If true, an evaluation function has detected an inconsistency.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-07 12:38:48,729 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4105, uuid={8936AB8B-A0A9-4132-817E-D2B7C850E919}, since=null, name=inaccurate, alias=, stereotype=, visibility=public, txtDescription='If true, the value does not meet the stated accuracy of the source. +EXAMPLE The measured value of power factor may be noisy (inaccurate) when the current is very small.', htmlDescription='

If true, the value does not meet the stated accuracy of the source.

EXAMPLE The measured value of power factor may be noisy (inaccurate) when the current is very small.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-07 12:38:48,729 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::AnalogueValue, _objData=UmlObjectData [id=4108, uuid={22DBDBF4-0BD6-4ae9-83E7-28C1B98CD72A}, since=null, name=i, alias=, stereotype=, visibility=public, txtDescription='Integer representation of the measured value. The formula to convert between 'i' and the process value (pVal) shall be: pVal=('i'*'ScaledValueConfig.scaleFactor')+'ScaledValueConfig.offset'.', htmlDescription='

Integer representation of the measured value. The formula to convert between 'i' and the process value (pVal) shall be: pVal=('i'*'ScaledValueConfig.scaleFactor')+'ScaledValueConfig.offset'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1745, _eaTypeName=INT32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1623278]. +2024-09-07 12:38:48,729 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::AnalogueValue, _objData=UmlObjectData [id=4109, uuid={B5A81241-061A-410d-8E63-9847A2F26D4D}, since=null, name=f, alias=, stereotype=, visibility=public, txtDescription='Floating point representation of the measured value. The formula to convert between 'f' and the process value (pVal) shall be: pVal='f'*10'Unit.multiplier'.', htmlDescription='

Floating point representation of the measured value. The formula to convert between 'f' and the process value (pVal) shall be: pVal='f'*10'Unit.multiplier'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1741, _eaTypeName=FLOAT32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@15b3e5b]. +2024-09-07 12:38:48,729 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::RangeConfig, _objData=UmlObjectData [id=4112, uuid={2BFD6A66-6A28-44b9-BD6A-9BFF5FEEF286}, since=null, name=hhLim, alias=, stereotype=, visibility=public, txtDescription='Setting for 'CDC.range' transition between 'high' and 'high-high'.', htmlDescription='

Setting for 'CDC.range' transition between 'high' and 'high-high'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@42d7b5]. +2024-09-07 12:38:48,729 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::RangeConfig, _objData=UmlObjectData [id=4113, uuid={8FE22512-90C7-4798-9E7E-7595B41EA770}, since=null, name=hLim, alias=, stereotype=, visibility=public, txtDescription='Setting for 'CDC.range' transition between 'normal' and 'high'.', htmlDescription='

Setting for 'CDC.range' transition between 'normal' and 'high'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@42d7b5]. +2024-09-07 12:38:48,729 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::RangeConfig, _objData=UmlObjectData [id=4114, uuid={E4180E64-6824-4aa0-8D9F-A32F749903E0}, since=null, name=lLim, alias=, stereotype=, visibility=public, txtDescription='Setting for 'CDC.range' transition between 'normal' and 'low'.', htmlDescription='

Setting for 'CDC.range' transition between 'normal' and 'low'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@42d7b5]. +2024-09-07 12:38:48,729 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::RangeConfig, _objData=UmlObjectData [id=4115, uuid={A928E883-FC18-4c21-8227-53F8B3A89A08}, since=null, name=llLim, alias=, stereotype=, visibility=public, txtDescription='Setting for 'CDC.range' transition between 'low' and 'low-low'.', htmlDescription='

Setting for 'CDC.range' transition between 'low' and 'low-low'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@42d7b5]. +2024-09-07 12:38:48,729 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::RangeConfig, _objData=UmlObjectData [id=4116, uuid={FDC77E3A-4EF4-4ace-93FD-7CC6C14FB3D0}, since=null, name=min, alias=, stereotype=, visibility=public, txtDescription='The minimum process measurement for which 'AnalogueValue.[i,f]' is considered within process limits. If the value is lower, quality shall be set accordingly ('Quality.detailQual.outOfRange'=true => 'Quality.validity'='questionable'; see statechart diagram 'Quality.validity').', htmlDescription='

The minimum process measurement for which 'AnalogueValue.[i,f]' is considered within process limits. If the value is lower, quality shall be set accordingly ('Quality.detailQual.outOfRange'=true => 'Quality.validity'='questionable'; see statechart diagram 'Quality.validity').

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@42d7b5]. +2024-09-07 12:38:48,729 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::RangeConfig, _objData=UmlObjectData [id=4117, uuid={470D1B89-7BB1-4e75-BEAE-A838976EFA5A}, since=null, name=max, alias=, stereotype=, visibility=public, txtDescription='The maximum process measurement for which 'AnalogueValue.[i,f]' is considered within process limits. If the value is higher, quality shall be set accordingly ('Quality.detailQual.outOfRange'=true => 'Quality.validity'='questionable'; see statechart diagram 'Quality.validity').', htmlDescription='

The maximum process measurement for which 'AnalogueValue.[i,f]' is considered within process limits. If the value is higher, quality shall be set accordingly ('Quality.detailQual.outOfRange'=true => 'Quality.validity'='questionable'; see statechart diagram 'Quality.validity').

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@42d7b5]. +2024-09-07 12:38:48,729 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::RangeConfig, _objData=UmlObjectData [id=4118, uuid={EE10B700-EDF1-4e03-B234-D881D49750CC}, since=null, name=limDb, alias=, stereotype=, visibility=public, txtDescription='When present, the value used to introduce a hysteresis in the calculation of 'range'. When a high/low limit has been crossed, 'range' is immediately set to the higher/lower value. However, 'range' is only set back to the lower/higher value when the value of the high limit minus/low limit plut 'limDb' has been crossed. The value shall represent the percentage between 'max' and 'min' in units of 0.001 %.', htmlDescription='

When present, the value used to introduce a hysteresis in the calculation of 'range'. When a high/low limit has been crossed, 'range' is immediately set to the higher/lower value. However, 'range' is only set back to the lower/higher value when the value of the high limit minus/low limit plut 'limDb' has been crossed. The value shall represent the percentage between 'max' and 'min' in units of 0.001 %.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0...100000, _eaTypeId=1746, _eaTypeName=INT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@8b970c]. +2024-09-07 12:38:48,729 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::Unit, _objData=UmlObjectData [id=4127, uuid={E11B7BFF-E809-4175-9618-B2A63F15871E}, since=null, name=SIUnit, alias=, stereotype=, visibility=public, txtDescription='SI unit of measure.', htmlDescription='

SI unit of measure.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2072, _eaTypeName=SIUnit, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@6fa74d]. +2024-09-07 12:38:48,729 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::Unit, _objData=UmlObjectData [id=4128, uuid={0327BF79-19B2-4e38-AD4E-6944E32735D3}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='Unit multiplier.', htmlDescription='

Unit multiplier.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=none, _eaTypeId=2061, _eaTypeName=Multiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@16438c9]. +2024-09-07 12:38:48,729 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::Point, _objData=UmlObjectData [id=4131, uuid={FE6F09B0-454A-4c96-8FDD-76F86A4128A3}, since=null, name=xVal, alias=, stereotype=, visibility=public, txtDescription='X-axis value.', htmlDescription='

X-axis value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1741, _eaTypeName=FLOAT32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@15b3e5b]. +2024-09-07 12:38:48,729 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::Point, _objData=UmlObjectData [id=4132, uuid={77130ABC-BB1E-4259-96F0-AF62EF68F9CB}, since=null, name=yVal, alias=, stereotype=, visibility=public, txtDescription='Y-axis value.', htmlDescription='

Y-axis value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1741, _eaTypeName=FLOAT32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@15b3e5b]. +2024-09-07 12:38:48,729 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::Point, _objData=UmlObjectData [id=4133, uuid={1A9EA6E0-B105-4386-8B25-4F2F99670EE0}, since=null, name=zVal, alias=, stereotype=, visibility=public, txtDescription='Z-axis value.', htmlDescription='

Z-axis value.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1741, _eaTypeName=FLOAT32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@15b3e5b]. +2024-09-07 12:38:48,729 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::AnalogueValue_MX, _objData=UmlObjectData [id=4148, uuid={FDD0542C-EDDF-4b7f-AF56-B928F6DD6505}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@42d7b5]. +2024-09-07 12:38:48,729 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::AnalogueValue_MX_dchg, _objData=UmlObjectData [id=4149, uuid={F527B9F4-F3F6-495e-820C-D82F97FAABF8}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@42d7b5]. +2024-09-07 12:38:48,729 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::AnalogueValue_MX_dchg_dupd, _objData=UmlObjectData [id=4150, uuid={35CFD056-5391-4884-AB18-91299F6FCBFB}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@42d7b5]. +2024-09-07 12:38:48,729 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::BOOLEAN_BL, _objData=UmlObjectData [id=4155, uuid={3695DD4C-AE46-467e-862D-F6B7D2805EE9}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@22d9d]. +2024-09-07 12:38:48,729 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::BOOLEAN_CF_dchg, _objData=UmlObjectData [id=4156, uuid={D005BFC1-C9FF-4904-9176-3E49D541A4CE}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@22d9d]. +2024-09-07 12:38:48,729 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::BOOLEAN_MX_dchg, _objData=UmlObjectData [id=4157, uuid={C48BB5A5-75F6-482b-B673-C2130F3A3343}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@22d9d]. +2024-09-07 12:38:48,729 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::BOOLEAN_OR_dchg, _objData=UmlObjectData [id=4158, uuid={E52B552D-B1AD-48ee-8F84-581743CA0034}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@22d9d]. +2024-09-07 12:38:48,729 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::BOOLEAN_SE, _objData=UmlObjectData [id=4159, uuid={EA1C486D-C490-4b0e-B0F8-803E519E584A}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@22d9d]. +2024-09-07 12:38:48,730 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::BOOLEAN_SG, _objData=UmlObjectData [id=4160, uuid={F978D268-CA2C-4ff8-B7CD-CDD03C517BAE}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@22d9d]. +2024-09-07 12:38:48,730 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::BOOLEAN_SP_dchg, _objData=UmlObjectData [id=4161, uuid={8DEC3BB4-1BED-4961-B836-457537D9227E}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@22d9d]. +2024-09-07 12:38:48,730 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::BOOLEAN_ST_dchg, _objData=UmlObjectData [id=4162, uuid={7480B397-4199-4840-B073-D855605E4C7A}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@22d9d]. +2024-09-07 12:38:48,730 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::BOOLEAN_SV, _objData=UmlObjectData [id=4163, uuid={13C32585-2DE2-4dad-8F00-5BDC2660E5D8}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@22d9d]. +2024-09-07 12:38:48,730 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::DpStatus_ST_dchg, _objData=UmlObjectData [id=4175, uuid={6669EA33-E870-48c7-9A70-675DF65FCDE1}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1759, _eaTypeName=DpStatus, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@b87145]. +2024-09-07 12:38:48,730 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::DpStatus_SV, _objData=UmlObjectData [id=4176, uuid={0F2878FA-ABC8-4aab-91D7-41F3D0B45817}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1759, _eaTypeName=DpStatus, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@b87145]. +2024-09-07 12:38:48,730 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::EnumDA_CF_dchg, _objData=UmlObjectData [id=4177, uuid={AB3915C1-C27C-48ea-B3F9-A9FDE30FAEB0}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1855, _eaTypeName=EnumDA, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1baf4f0]. +2024-09-07 12:38:48,730 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::EnumDA_ST_dchg, _objData=UmlObjectData [id=4181, uuid={FDBA0552-772A-4e56-B666-9B4EADE4572B}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1855, _eaTypeName=EnumDA, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1baf4f0]. +2024-09-07 12:38:48,730 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::EnumDA_ST_dchg_dupd, _objData=UmlObjectData [id=4182, uuid={A26C4B75-BDBC-47d7-8F84-1AEB40536B37}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1855, _eaTypeName=EnumDA, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1baf4f0]. +2024-09-07 12:38:48,730 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::EnumDA_SV, _objData=UmlObjectData [id=4183, uuid={85FBD660-4ECF-4fe6-A3CB-7CE93AD92682}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1855, _eaTypeName=EnumDA, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1baf4f0]. +2024-09-07 12:38:48,730 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::INT16U_CF, _objData=UmlObjectData [id=4192, uuid={D557D453-45C5-4562-97A4-DF8E6C3ABE03}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1743, _eaTypeName=INT16U, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a3ec6b]. +2024-09-07 12:38:48,730 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::INT16U_CF_dchg, _objData=UmlObjectData [id=4193, uuid={CF5B7211-78ED-4a54-943A-4C6076784FAA}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1743, _eaTypeName=INT16U, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a3ec6b]. +2024-09-07 12:38:48,730 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::INT32U_CF_dchg, _objData=UmlObjectData [id=4198, uuid={B6014F46-BB76-4b26-B95B-414DEBFE5627}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1746, _eaTypeName=INT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@8b970c]. +2024-09-07 12:38:48,730 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::INT32_CF_dchg, _objData=UmlObjectData [id=4200, uuid={7A8322EF-35B6-45e2-B29B-24495242697D}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1745, _eaTypeName=INT32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1623278]. +2024-09-07 12:38:48,730 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::INT32_ST_dchg, _objData=UmlObjectData [id=4204, uuid={BD683E05-ABAE-402d-B588-081B1F3BA2FB}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1745, _eaTypeName=INT32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1623278]. +2024-09-07 12:38:48,730 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::INT32_ST_dchg_dupd, _objData=UmlObjectData [id=4205, uuid={84EA5D4B-9E4B-4a73-A3A5-9E8D42A60F3C}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1745, _eaTypeName=INT32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1623278]. +2024-09-07 12:38:48,730 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::PhaseAngleReference_CF_dchg, _objData=UmlObjectData [id=4216, uuid={7B9C230D-AF50-4613-AFD8-CA5D41088526}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2065, _eaTypeName=PhaseAngleReference, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@181ae3f]. +2024-09-07 12:38:48,730 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::PhaseFaultDirection_ST_dchg, _objData=UmlObjectData [id=4217, uuid={FEA43715-0A9A-4812-A093-3FAD2A6B464D}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2066, _eaTypeName=PhaseFaultDirection, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b37288]. +2024-09-07 12:38:48,730 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::Point_DC, _objData=UmlObjectData [id=4219, uuid={EFCD6ECB-36A0-4997-82B8-301C6C666369}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2098, _eaTypeName=Point, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@16a4d6c]. +2024-09-07 12:38:48,730 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::Point_SE, _objData=UmlObjectData [id=4220, uuid={C756E7B6-1F5F-4ead-B882-CE7EDB83001D}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2098, _eaTypeName=Point, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@16a4d6c]. +2024-09-07 12:38:48,730 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::Point_SG, _objData=UmlObjectData [id=4221, uuid={871B23C7-8CF2-43a0-A9FE-4627CB0BFA2D}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2098, _eaTypeName=Point, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@16a4d6c]. +2024-09-07 12:38:48,730 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::Point_SP, _objData=UmlObjectData [id=4222, uuid={A9FC2C2B-E6E7-4210-80D8-B786506D9BCF}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2098, _eaTypeName=Point, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@16a4d6c]. +2024-09-07 12:38:48,730 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::Quality_MX_qchg, _objData=UmlObjectData [id=4224, uuid={909716F1-245A-42ae-9D75-E906E4300337}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2080, _eaTypeName=Quality, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@2c9341]. +2024-09-07 12:38:48,730 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::Quality_ST_qchg, _objData=UmlObjectData [id=4225, uuid={63B2543A-C5CB-4e42-AE3C-D89A5D6092F8}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2080, _eaTypeName=Quality, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@2c9341]. +2024-09-07 12:38:48,730 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::Quality_SV, _objData=UmlObjectData [id=4226, uuid={25019ADF-C815-49c4-A33A-932B7EC41FD5}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2080, _eaTypeName=Quality, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@2c9341]. +2024-09-07 12:38:48,730 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::RangeConfig_CF_dchg, _objData=UmlObjectData [id=4227, uuid={7DC0C70D-A279-420a-A4C9-8EC142118EE0}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2091, _eaTypeName=RangeConfig, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@fee8e7]. +2024-09-07 12:38:48,730 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::TimeStamp_ST, _objData=UmlObjectData [id=4239, uuid={F793BE16-86C2-4d94-9076-25682F5C5800}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1756, _eaTypeName=TimeStamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1c222ae]. +2024-09-07 12:38:48,730 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::UNICODE_STRING255_DC, _objData=UmlObjectData [id=4240, uuid={6753F868-EDDC-4b85-BB22-F0505BC5964F}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1751, _eaTypeName=UNICODE_STRING255, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@153f538]. +2024-09-07 12:38:48,730 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::VISIBLE_STRING255_EX, _objData=UmlObjectData [id=4250, uuid={27C9FF27-9CA7-4829-BDDC-00EC8B17AA1F}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1752, _eaTypeName=VISIBLE_STRING255, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@14593bf]. +2024-09-07 12:38:48,731 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CommonDataClasses::BasePrimitiveCDC, _objData=UmlObjectData [id=4259, uuid={70157B11-247A-45cc-805C-2311A2402464}, since=null, name=dU, alias=, stereotype=, visibility=public, txtDescription='Textual description of the data using unicode characters. In case of LPL, the description refers to the logical node.', htmlDescription='

Textual description of the data using unicode characters. In case of LPL, the description refers to the logical node.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2207, _eaTypeName=UNICODE_STRING255_DC, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1bb8443]. +2024-09-07 12:38:48,731 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CommonDataClasses::BasePrimitiveCDC, _objData=UmlObjectData [id=4260, uuid={CB9D22B8-9916-44d7-AB74-A7E8767612D1}, since=null, name=cdcNs, alias=, stereotype=, visibility=public, txtDescription='Common data class name space. Scope of the standard specified with the attribute is CDC definition. For details see IEC 61850-7-1.', htmlDescription='

Common data class name space. Scope of the standard specified with the attribute is CDC definition. For details see IEC 61850-7-1.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2217, _eaTypeName=VISIBLE_STRING255_EX, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@176dcec]. +2024-09-07 12:38:48,731 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CommonDataClasses::BaseComposedCDC, _objData=UmlObjectData [id=4264, uuid={DA02A7F1-6B04-48c6-9571-CD453B3D1CED}, since=null, name=dU, alias=, stereotype=, visibility=public, txtDescription='See 'BasePrimitiveCDC.dU'.', htmlDescription='

See 'BasePrimitiveCDC.dU'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2207, _eaTypeName=UNICODE_STRING255_DC, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1bb8443]. +2024-09-07 12:38:48,731 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CommonDataClasses::BaseComposedCDC, _objData=UmlObjectData [id=4265, uuid={E299B631-8163-4dbd-B5B7-4C83B2303E19}, since=null, name=cdcNs, alias=, stereotype=, visibility=public, txtDescription='See 'BasePrimitiveCDC.cdcNs'.', htmlDescription='

See 'BasePrimitiveCDC.cdcNs'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2217, _eaTypeName=VISIBLE_STRING255_EX, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@176dcec]. +2024-09-07 12:38:48,731 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CommonDataClasses::SubstitutionCDC, _objData=UmlObjectData [id=4268, uuid={079F2530-74C1-408f-90FE-5292130BB10D}, since=null, name=subEna, alias=, stereotype=, visibility=public, txtDescription='Used to enable and disable substitution. If 'subEna'=true, the main data value and quality shall always be set to the same value as the attributes used to store the substitution data value and quality, as follows: +- for SPS, DPS, INS, ENS, SPC, DPC, INC, ENC: 'stVal' to 'subVal', 'q' to 'subQ'; +- for MV: 'instMag' to 'subMag', 'q' to 'subQ'; +- for CMV: 'instCVal' to 'subCVal', 'q' to 'subQ'; +- for BSC, ISC: 'valWTr' to 'subVal, 'q' to 'subQ'; and, +- for APC, BAC: 'mxVal' to 'subVal; 'q' to 'subQ'. +Otherwise, the data value shall be based on the process value.', htmlDescription='

Used to enable and disable substitution. If 'subEna'=true, the main data value and quality shall always be set to the same value as the attributes used to store the substitution data value and quality, as follows:

  • for SPS, DPS, INS, ENS, SPC, DPC, INC, ENC: 'stVal' to 'subVal', 'q' to 'subQ';
  • for MV: 'instMag' to 'subMag', 'q' to 'subQ';
  • for CMV: 'instCVal' to 'subCVal', 'q' to 'subQ';
  • for BSC, ISC: 'valWTr' to 'subVal, 'q' to 'subQ'; and,
  • for APC, BAC: 'mxVal' to 'subVal; 'q' to 'subQ'.

Otherwise, the data value shall be based on the process value.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2130, _eaTypeName=BOOLEAN_SV, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@17776a8]. +2024-09-07 12:38:48,731 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CommonDataClasses::SubstitutionCDC, _objData=UmlObjectData [id=4269, uuid={CC8123A6-0C41-47f6-B66F-FCB538FAC8C5}, since=null, name=subQ, alias=, stereotype=, visibility=public, txtDescription='Value used to substitute 'q'.', htmlDescription='

Value used to substitute 'q'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2193, _eaTypeName=Quality_SV, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1206beb]. +2024-09-07 12:38:48,731 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CommonDataClasses::SubstitutionCDC, _objData=UmlObjectData [id=4271, uuid={D0484592-24B0-4f23-BBA1-47AB63EDEB24}, since=null, name=blkEna, alias=, stereotype=, visibility=public, txtDescription='If true, 'q.operatorBlocked'=true, and the process value is no longer updated.', htmlDescription='

If true, 'q.operatorBlocked'=true, and the process value is no longer updated.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2122, _eaTypeName=BOOLEAN_BL, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@19b62af]. +2024-09-07 12:38:48,731 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCStatusInfo::DPS, _objData=UmlObjectData [id=4276, uuid={5BAF192B-559A-4c20-9FF4-15FDE99E17C8}, since=null, name=stVal, alias=, stereotype=, visibility=public, txtDescription='Status data value.', htmlDescription='

Status data value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2142, _eaTypeName=DpStatus_ST_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1a10787]. +2024-09-07 12:38:48,731 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCStatusInfo::DPS, _objData=UmlObjectData [id=4277, uuid={4442F743-451D-4ac2-8362-F2C586E6ACFC}, since=null, name=q, alias=, stereotype=, visibility=public, txtDescription='Quality of the data value 'stVal'.', htmlDescription='

Quality of the data value 'stVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2192, _eaTypeName=Quality_ST_qchg, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1d02175]. +2024-09-07 12:38:48,731 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCStatusInfo::DPS, _objData=UmlObjectData [id=4278, uuid={18394E45-54E3-4a63-85BB-63611B632E39}, since=null, name=t, alias=, stereotype=, visibility=public, txtDescription='Timestamp of the last change of the data value 'stVal' or quality 'q'.', htmlDescription='

Timestamp of the last change of the data value 'stVal' or quality 'q'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2206, _eaTypeName=TimeStamp_ST, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1fcd140]. +2024-09-07 12:38:48,731 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCStatusInfo::DPS, _objData=UmlObjectData [id=4279, uuid={F3D27F61-E9C4-4fc2-8AA6-662D6F85C26F}, since=null, name=subVal, alias=, stereotype=, visibility=public, txtDescription='Value used to substitute 'stVal'.', htmlDescription='

Value used to substitute 'stVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2143, _eaTypeName=DpStatus_SV, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1127a61, 2_taggedValues{moveAfter=wrongsubEna, secondTagName=secondTagValue}]. +2024-09-07 12:38:48,731 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCStatusInfo::ENS, _objData=UmlObjectData [id=4285, uuid={929E3BA6-6FC1-4cef-A0A3-AFC3397057FD}, since=null, name=stVal, alias=, stereotype=, visibility=public, txtDescription='Status data value.', htmlDescription='

Status data value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2149, _eaTypeName=EnumDA_ST_dchg_dupd, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@41089d]. +2024-09-07 12:38:48,731 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCStatusInfo::ENS, _objData=UmlObjectData [id=4286, uuid={973C16BC-0B6B-4787-9456-6A3C5D86703B}, since=null, name=q, alias=, stereotype=, visibility=public, txtDescription='Quality of the data value 'stVal'.', htmlDescription='

Quality of the data value 'stVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2192, _eaTypeName=Quality_ST_qchg, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1d02175]. +2024-09-07 12:38:48,731 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCStatusInfo::ENS, _objData=UmlObjectData [id=4287, uuid={A5C38D4B-AA0F-49b6-B868-27C0036F5163}, since=null, name=t, alias=, stereotype=, visibility=public, txtDescription='Timestamp of the last change of the data value 'stVal' or quality 'q'.', htmlDescription='

Timestamp of the last change of the data value 'stVal' or quality 'q'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2206, _eaTypeName=TimeStamp_ST, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1fcd140]. +2024-09-07 12:38:48,731 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCStatusInfo::ENS, _objData=UmlObjectData [id=4288, uuid={5895B5B3-C6B8-4321-BCF5-F17A3FE76872}, since=null, name=subVal, alias=, stereotype=, visibility=public, txtDescription='Value used to substitute 'stVal'.', htmlDescription='

Value used to substitute 'stVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2150, _eaTypeName=EnumDA_SV, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a068d1, 1_taggedValues{moveAfter=subEna}]. +2024-09-07 12:38:48,731 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCStatusInfo::EXY, _objData=UmlObjectData [id=6653, uuid={C45B42C1-992F-47fa-978C-87A6AFC4F512}, since=null, name=stVal, alias=, stereotype=, visibility=public, txtDescription='Status data value.', htmlDescription='

Status data value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2149, _eaTypeName=EnumDA_ST_dchg_dupd, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@41089d]. +2024-09-07 12:38:48,731 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCStatusInfo::EXY, _objData=UmlObjectData [id=6654, uuid={B5AC751A-B7F5-4848-8382-2072203D80D8}, since=null, name=q, alias=, stereotype=, visibility=public, txtDescription='Quality of the data value 'stVal'.', htmlDescription='

Quality of the data value 'stVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2192, _eaTypeName=Quality_ST_qchg, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1d02175]. +2024-09-07 12:38:48,731 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCStatusInfo::EXY, _objData=UmlObjectData [id=6655, uuid={CADD5FD8-0F27-4735-9D3F-4CE322754EA7}, since=null, name=t, alias=, stereotype=, visibility=public, txtDescription='Timestamp of the last change of the data value 'stVal' or quality 'q'.', htmlDescription='

Timestamp of the last change of the data value 'stVal' or quality 'q'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2206, _eaTypeName=TimeStamp_ST, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1fcd140]. +2024-09-07 12:38:48,731 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCStatusInfo::ACD, _objData=UmlObjectData [id=4302, uuid={22C4C4D2-4D10-4cad-8B98-2C5BB64AFEC2}, since=null, name=phsA, alias=, stereotype=, visibility=public, txtDescription='See 'ACT.phsA'.', htmlDescription='

See 'ACT.phsA'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2129, _eaTypeName=BOOLEAN_ST_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@28586]. +2024-09-07 12:38:48,731 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCStatusInfo::ACD, _objData=UmlObjectData [id=4304, uuid={78BD96A5-A044-4ee0-BDF2-6207BF482F50}, since=null, name=phsB, alias=, stereotype=, visibility=public, txtDescription='See 'ACT.phsB.', htmlDescription='

See 'ACT.phsB.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2129, _eaTypeName=BOOLEAN_ST_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@28586]. +2024-09-07 12:38:48,731 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCStatusInfo::HST, _objData=UmlObjectData [id=4328, uuid={CE8A66F5-D42E-4f4f-8087-F15C910C8D17}, since=null, name=hstVal, alias=, stereotype=, visibility=public, txtDescription='Array of data values for the histogram entries.', htmlDescription='

Array of data values for the histogram entries.

'], _isConst=false, _isStatic=false, _multiplicity=[1..*], _initValue=, _eaTypeId=2172, _eaTypeName=INT32_ST_dchg_dupd, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1ad8c79, 1 _constraints[ConstraintBuilder [_objData=UmlObjectData [id=1618, uuid=720fe959-ac7a-331d-b329-3988eb2bff13, since=null, name=maxIdx, alias=, stereotype=, visibility=public, txtDescription='maxPts-1', htmlDescription='

maxPts-1

'], _containingAttribute=hstVal, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=maxPts-1]]]. +2024-09-07 12:38:48,731 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCStatusInfo::HST, _objData=UmlObjectData [id=4331, uuid={B6E3704C-05B5-4c84-AEBB-CE3F2A3DB9F0}, since=null, name=numPts, alias=, stereotype=, visibility=public, txtDescription='Actual size of 'hstVal[]', 'hstRangeC[]'.', htmlDescription='

Actual size of 'hstVal[]', 'hstRangeC[]'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1...maxPts, _eaTypeId=2159, _eaTypeName=INT16U_CF, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1cb5951]. +2024-09-07 12:38:48,731 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCAnalogueInfo::HarmonicMeasurandCDC, _objData=UmlObjectData [id=4346, uuid={2B6FCE4E-A827-467a-B3FA-B2DA520A2B0E}, since=null, name=evalTm, alias=, stereotype=, visibility=public, txtDescription='Time window [ms] applied to interharmonic calculations. See 'numHar'.', htmlDescription='

Time window [ms] applied to interharmonic calculations. See 'numHar'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2160, _eaTypeName=INT16U_CF_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@5c30cc]. +2024-09-07 12:38:48,731 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCAnalogueInfo::HarmonicMeasurandCDC, _objData=UmlObjectData [id=4347, uuid={9CA4C0A7-81A8-4f80-A178-0E3461E29662}, since=null, name=smpRate, alias=, stereotype=, visibility=public, txtDescription='Determines the highest possible harmonic or interharmonic detectable, according to the sampling theorem; the minimum value is 'smpRate'=2 * 'frequency'. 'smpRate' is the number of samples per nominal period. In the case of a dc system, it is number of samples per s.', htmlDescription='

Determines the highest possible harmonic or interharmonic detectable, according to the sampling theorem; the minimum value is 'smpRate'=2 * 'frequency'. 'smpRate' is the number of samples per nominal period. In the case of a dc system, it is number of samples per s.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2165, _eaTypeName=INT32U_CF_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1fc37a]. +2024-09-07 12:38:48,731 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCAnalogueInfo::CMV, _objData=UmlObjectData [id=4374, uuid={163EDE34-974C-42be-93A3-DC32CCFC09F6}, since=null, name=rangeC, alias=, stereotype=, visibility=public, txtDescription='Configuration for 'range'.', htmlDescription='

Configuration for 'range'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2194, _eaTypeName=RangeConfig_CF_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@77a1ed]. +2024-09-07 12:38:48,731 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCAnalogueInfo::CMV, _objData=UmlObjectData [id=4375, uuid={64C3ECAC-5E57-4cbe-8469-96F13ACDF920}, since=null, name=rangeAngC, alias=, stereotype=, visibility=public, txtDescription='Configuration for 'rangeAng'.', htmlDescription='

Configuration for 'rangeAng'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2194, _eaTypeName=RangeConfig_CF_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@77a1ed]. +2024-09-07 12:38:48,731 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCAnalogueInfo::HWYE, _objData=UmlObjectData [id=4405, uuid={3BE5F231-7684-425e-A062-905D40593DE8}, since=null, name=phsAHar, alias=, stereotype=, visibility=public, txtDescription='Array of harmonic and subharmonics, or interharmonic values related to phase A.', htmlDescription='

Array of harmonic and subharmonics, or interharmonic values related to phase A.

'], _isConst=false, _isStatic=false, _multiplicity=[1..*], _initValue=, _eaTypeId=2266, _eaTypeName=CMV, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@ec1f8, 2 _constraints[ConstraintBuilder [_objData=UmlObjectData [id=1640, uuid=2d5f2699-414e-322c-ac9b-12faab7bf7a1, since=null, name=maxIdx, alias=, stereotype=, visibility=public, txtDescription='numHar', htmlDescription='

numHar

'], _containingAttribute=phsAHar, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=numHar], ConstraintBuilder [_objData=UmlObjectData [id=1641, uuid=9681cda7-090b-3bd8-acfe-51a75f594dfa, since=null, name=minIdx, alias=, stereotype=, visibility=public, txtDescription='0', htmlDescription='

0

'], _containingAttribute=phsAHar, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=0]]]. +2024-09-07 12:38:48,732 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCAnalogueInfo::HWYE, _objData=UmlObjectData [id=4411, uuid={E41EFDD0-9E50-45f3-B665-D9884218AC67}, since=null, name=angRef, alias=, stereotype=, visibility=public, txtDescription='Angle reference, indicating the quantity that is used as reference for the phase angles {'phsAHar', 'phsBHar', 'phsCHar', 'neutHar', 'netHar', 'resHar'}[i].ang', instead of their own 'angRef'. For the indicated quantity, the fundamental frequency (index = 1) is used as reference by convention.', htmlDescription='

Angle reference, indicating the quantity that is used as reference for the phase angles {'phsAHar', 'phsBHar', 'phsCHar', 'neutHar', 'netHar', 'resHar'}[i].ang', instead of their own 'angRef'. For the indicated quantity, the fundamental frequency (index = 1) is used as reference by convention.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2183, _eaTypeName=PhaseAngleReference_CF_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1a794e5, 1_taggedValues{moveAfter=evalTm}]. +2024-09-07 12:38:48,732 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCControl::ControllableCDC, _objData=UmlObjectData [id=4417, uuid={47B971C5-D6FE-4d4d-A1B9-DAD685D360FE}, since=null, name=opOk, alias=, stereotype=, visibility=public, txtDescription='True indicates that an operate command for a controllable data object has been evaluated and accepted.', htmlDescription='

True indicates that an operate command for a controllable data object has been evaluated and accepted.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2125, _eaTypeName=BOOLEAN_OR_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1afc369]. +2024-09-07 12:38:48,733 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCControl::ENC, _objData=UmlObjectData [id=4463, uuid={9C28209D-6C12-48ff-B6AD-C1817BAAFC47}, since=null, name=stVal, alias=, stereotype=, visibility=public, txtDescription='Status data value.', htmlDescription='

Status data value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2148, _eaTypeName=EnumDA_ST_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@beb599]. +2024-09-07 12:38:48,733 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCControl::ENC, _objData=UmlObjectData [id=4467, uuid={938DEDD5-1A89-4d8f-84B9-3BD409127DC1}, since=null, name=subVal, alias=, stereotype=, visibility=public, txtDescription='Value used to substitute 'stVal'.', htmlDescription='

Value used to substitute 'stVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2150, _eaTypeName=EnumDA_SV, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a068d1, 1_taggedValues{moveAfter=subEna}]. +2024-09-07 12:38:48,733 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCControl::ENC, _objData=UmlObjectData [id=4472, uuid={3AE4A32F-B7CE-4d34-96B9-72D29B257EC1}, since=null, name=ctlVal, alias=, stereotype=, visibility=public, txtDescription='Service parameter that determines the control activity, containing the new value for 'stVal'.', htmlDescription='

Service parameter that determines the control activity, containing the new value for 'stVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1855, _eaTypeName=EnumDA, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1baf4f0]. +2024-09-07 12:38:48,733 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCControl::BAC, _objData=UmlObjectData [id=4522, uuid={88F3132A-BE85-476d-A4AB-2F929A4B1EBA}, since=null, name=mxVal, alias=, stereotype=, visibility=public, txtDescription='See 'APC.mxVal'.', htmlDescription='

See 'APC.mxVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2116, _eaTypeName=AnalogueValue_MX_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@c7b4de]. +2024-09-07 12:38:48,733 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCControl::BAC, _objData=UmlObjectData [id=4538, uuid={0E7EE54F-A469-4769-AB77-ECC48A74EF0E}, since=null, name=ctlVal, alias=, stereotype=, visibility=public, txtDescription='Service parameter that determines the control activity, containing the desired change for 'mxVal'. If 'persistent'=false, 'ctlVal'='higher'|'lower' refers to one step in 'mxVal'.', htmlDescription='

Service parameter that determines the control activity, containing the desired change for 'mxVal'. If 'persistent'=false, 'ctlVal'='higher'|'lower' refers to one step in 'mxVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1760, _eaTypeName=BsControl, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@19afc07]. +2024-09-07 12:38:48,733 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCDescription::LPL, _objData=UmlObjectData [id=4639, uuid={5F84B791-8DB9-403b-B63E-B8E33716E74A}, since=null, name=ldNs, alias=, stereotype=, visibility=public, txtDescription='Logical device name space. Scope of the standard specified with the attribute is LN class definition (CDC definition by reference), for example "IEC 61850-7-4:2010". For details see IEC 61850-7-1.', htmlDescription='

Logical device name space. Scope of the standard specified with the attribute is LN class definition (CDC definition by reference), for example "IEC 61850-7-4:2010". For details see IEC 61850-7-1.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2217, _eaTypeName=VISIBLE_STRING255_EX, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@176dcec]. +2024-09-07 12:38:48,733 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCDescription::LPL, _objData=UmlObjectData [id=4640, uuid={AAD5655E-83DF-4906-9302-14396644A3AF}, since=null, name=lnNs, alias=, stereotype=, visibility=public, txtDescription='Logical node name space. Scope of the standard specified with the attribute is LN class definition (CDC definition by reference). For details see IEC 61850-7-1.', htmlDescription='

Logical node name space. Scope of the standard specified with the attribute is LN class definition (CDC definition by reference). For details see IEC 61850-7-1.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2217, _eaTypeName=VISIBLE_STRING255_EX, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@176dcec]. +2024-09-07 12:38:48,733 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=DerivedDAs::BehaviourMode, _objData=UmlObjectData [id=5360, uuid={9ADCD45E-59E9-45ab-AC04-7BCAD34EE103}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2564, _eaTypeName=BehaviourModeKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@b48321]. +2024-09-07 12:38:48,733 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=DerivedDAs::CalcMethod, _objData=UmlObjectData [id=5363, uuid={5FCE2C6C-5EFA-4fe3-88D2-F747922B4960}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2567, _eaTypeName=CalcMethodKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@267862]. +2024-09-07 12:38:48,733 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=DerivedDAs::Health, _objData=UmlObjectData [id=5372, uuid={D08C43FA-8B3B-4128-AC21-F8A40BC57CE0}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2568, _eaTypeName=HealthKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1248c21]. +2024-09-07 12:38:48,733 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LogicalNodes::DomainLN, _objData=UmlObjectData [id=5404, uuid={BD8EED96-B614-4741-BE24-E8A509A772CF}, since=null, name=NamPlt, alias=, stereotype=, visibility=public, txtDescription='Name plate of the logical node.', htmlDescription='

Name plate of the logical node.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2314, _eaTypeName=LPL, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@14c508a]. +2024-09-07 12:38:48,733 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LogicalNodes::DomainLN, _objData=UmlObjectData [id=5406, uuid={02A6EFA0-CD2A-44ed-99B7-4440CDC49598}, since=null, name=Health, alias=, stereotype=, visibility=public, txtDescription=''Health.stVal' reflects the state of the logical node related hardware and software. More detailed information related to the source of the problem may be provided by specific attribute of the logical node.', htmlDescription='

'Health.stVal' reflects the state of the logical node related hardware and software. More detailed information related to the source of the problem may be provided by specific attribute of the logical node.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2712, _eaTypeName=ENSHealth, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1e202ad]. +2024-09-07 12:38:48,733 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LogicalNodes::DomainLN, _objData=UmlObjectData [id=5408, uuid={F3F9E7F6-D65F-49b8-A25D-A6D5B8129BB1}, since=null, name=Mod, alias=, stereotype=, visibility=public, txtDescription=''DomainLN.Mod.ctlVal' is used by operator to initiate the change in the operating mode of the domain logical node. The resulting operating mode is 'DomainLN.Mod.stVal'. Processing of the quality status (q) of the received data is the prerequisite for correct interpretation of 'DomainLN.Mod.stVal'. See statechart diagram 'DomainLN.behStateMachine'.', htmlDescription='

'DomainLN.Mod.ctlVal' is used by operator to initiate the change in the operating mode of the domain logical node. The resulting operating mode is 'DomainLN.Mod.stVal'. Processing of the quality status (q) of the received data is the prerequisite for correct interpretation of 'DomainLN.Mod.stVal'. See statechart diagram 'DomainLN.behStateMachine'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2673, _eaTypeName=ENCBehaviourMode, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@72da34]. +2024-09-07 12:38:48,733 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LogicalNodes::DomainLN, _objData=UmlObjectData [id=6644, uuid={7D68988B-2556-4fad-AF56-2801E5AB7EE7}, since=null, name=CntRs, alias=, stereotype=, visibility=public, txtDescription='Dumb DO, of type CMV for testing inheriting statistics-derived presence conditions.', htmlDescription='

Dumb DO, of type CMV for testing inheriting statistics-derived presence conditions.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2266, _eaTypeName=CMV, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@ec1f8]. +2024-09-07 12:38:48,733 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LogicalNodes::StatisticsLN, _objData=UmlObjectData [id=5411, uuid={AD8AD979-4412-496c-88CF-BC2F0016F824}, since=null, name=ClcExp, alias=, stereotype=, visibility=public, txtDescription='If 'ClcExp.stVal=true', the calculation period of a statistical logical node has expired.', htmlDescription='

If 'ClcExp.stVal=true', the calculation period of a statistical logical node has expired.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2721, _eaTypeName=SPSTransient, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@10c2d26]. +2024-09-07 12:38:48,733 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LogicalNodes::StatisticsLN, _objData=UmlObjectData [id=5413, uuid={1FE86953-F8BC-4e0b-A301-DD037C26CD2D}, since=null, name=ClcMth, alias=, stereotype=, visibility=public, txtDescription=''ClcMth.setVal' is the kind of statistical calculation, specifying how the data attributes that represent analogue values have been calculated. The calculation method shall be the same for all data objects of the logical node instance. +If the value is 'PEAK_FUNDAMENTAL', angle may be present in a data object of complex measured value type (CMV, such as in WYE, DEL, etc.), otherwise angle is not used (if ‘TRUE_RMS’ and ‘RMS_FUNDAMENTAL’). +The dependent data objects may be meaningless in case the value of 'ClcMth' is 'unspecified'.', htmlDescription='

'ClcMth.setVal' is the kind of statistical calculation, specifying how the data attributes that represent analogue values have been calculated. The calculation method shall be the same for all data objects of the logical node instance.

If the value is 'PEAK_FUNDAMENTAL', angle may be present in a data object of complex measured value type (CMV, such as in WYE, DEL, etc.), otherwise angle is not used (if ‘TRUE_RMS’ and ‘RMS_FUNDAMENTAL’).

The dependent data objects may be meaningless in case the value of 'ClcMth' is 'unspecified'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2677, _eaTypeName=ENGCalcMethod, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1147d0]. +2024-09-07 12:38:48,733 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LogicalNodes::EquipmentInterfaceLN, _objData=UmlObjectData [id=5423, uuid={9D014151-D573-4c4e-A898-CE2DA3B5BBBA}, since=null, name=EEHealthAlmClc, alias=, stereotype=, visibility=public, txtDescription='(too long name) State of external (electrical, mechanical or communication) equipment to which the logical node is associated.', htmlDescription='

(too long name) State of external (electrical, mechanical or communication) equipment to which the logical node is associated.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2712, _eaTypeName=ENSHealth, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1e202ad]. +2024-09-07 12:38:48,733 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupL::KXYZ, _objData=UmlObjectData [id=6643, uuid={5F6F358B-D118-4f13-B9C6-A2B2F099FAAD}, since=null, name=TotW, alias=, stereotype=, visibility=public, txtDescription=''TotW.mag.f' is the total real power in a three-phase circuit [W].', htmlDescription='

'TotW.mag.f' is the total real power in a three-phase circuit [W].

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2266, _eaTypeName=CMV, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@ec1f8]. +2024-09-07 12:38:48,733 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupL::KXYZ, _objData=UmlObjectData [id=6662, uuid={14E48849-D4A8-4f20-943F-FE6D90B87DA5}, since=null, name=aDummyAlm, alias=, stereotype=, visibility=public, txtDescription='Whatever (testing lower case DO name).', htmlDescription='

Whatever (testing lower case DO name).

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2266, _eaTypeName=CMV, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@ec1f8]. +2024-09-07 12:38:48,733 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupL::KXYZ, _objData=UmlObjectData [id=6705, uuid={830D0CE1-6AF2-4651-9D80-CBB0ADE6102C}, since=null, name=WrongA, alias=, stereotype=, visibility=public, txtDescription='Misused ENS (or ENG or ENC). Use derived CDC instead.', htmlDescription='

Misused ENS (or ENG or ENC). Use derived CDC instead.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2250, _eaTypeName=ENS, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@79c292]. +2024-09-07 12:38:48,733 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupL::KXYZ, _objData=UmlObjectData [id=6706, uuid={BCF2F02E-3F65-4819-9456-55527BBD0571}, since=null, name=CorrectA, alias=, stereotype=, visibility=public, txtDescription='Correctly using derived CDC for enums.', htmlDescription='

Correctly using derived CDC for enums.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=3073, _eaTypeName=ENSEnumDA, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1c6e487]. +2024-09-07 12:38:48,733 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupL::LPHD, _objData=UmlObjectData [id=5434, uuid={2B188929-F3F0-481e-81FA-33B1F6DDFABE}, since=null, name=PhyHealth, alias=, stereotype=, visibility=public, txtDescription=''PhyHealth.stVal' reflects the state of the physical device related hardware and software.', htmlDescription='

'PhyHealth.stVal' reflects the state of the physical device related hardware and software.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2712, _eaTypeName=ENSHealth, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1e202ad]. +2024-09-07 12:38:48,733 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupL::LPHD, _objData=UmlObjectData [id=5445, uuid={33F4BBA2-6001-4f56-B6D7-7B166C646FD2}, since=null, name=RsStatAlmMthClc, alias=, stereotype=, visibility=public, txtDescription='(too long name) 'RsStat.ctlVal=true' initiates the resetting of the IED statistics.', htmlDescription='

(too long name) 'RsStat.ctlVal=true' initiates the resetting of the IED statistics.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2720, _eaTypeName=SPCTransient, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@185cb26]. +2024-09-07 12:38:48,733 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupL::LPHD, _objData=UmlObjectData [id=6704, uuid={F8B2B570-FB4D-461e-AFBB-76B285FC176A}, since=null, name=StatAlmMthClc, alias=, stereotype=, visibility=public, txtDescription='(too long name) 'RsStat.ctlVal=true' initiates the resetting of the IED statistics.', htmlDescription='

(too long name) 'RsStat.ctlVal=true' initiates the resetting of the IED statistics.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2721, _eaTypeName=SPSTransient, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@10c2d26]. +2024-09-07 12:38:48,734 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupL::LLN0, _objData=UmlObjectData [id=5447, uuid={ABAE4652-FBC7-4033-A5F3-F34D0A7D6805}, since=null, name=NamPlt, alias=, stereotype=, visibility=public, txtDescription='Name plate of the logical device.', htmlDescription='

Name plate of the logical device.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2314, _eaTypeName=LPL, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@14c508a]. +2024-09-07 12:38:48,734 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupL::LLN0, _objData=UmlObjectData [id=5448, uuid={757A91B5-C931-43d4-8660-F0918821C72E}, since=null, name=Beh, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2707, _eaTypeName=ENSBehaviourMode, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@c4711c]. +2024-09-07 12:38:48,734 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupL::LLN0, _objData=UmlObjectData [id=5449, uuid={9D65803B-3C9E-4491-B2F7-46597B3A2963}, since=null, name=Health, alias=, stereotype=, visibility=public, txtDescription=''Health.stVal' reflects the state of the logical device related hardware and software. It is derived from the worst (most critical) value of the health attribute of all the domain logical nodes contained in the logical device: 'Health.stVal' = max('DomainLN[i].Health.stVal').', htmlDescription='

'Health.stVal' reflects the state of the logical device related hardware and software. It is derived from the worst (most critical) value of the health attribute of all the domain logical nodes contained in the logical device: 'Health.stVal' = max('DomainLN[i].Health.stVal').

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2712, _eaTypeName=ENSHealth, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1e202ad]. +2024-09-07 12:38:48,734 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupC::CALH, _objData=UmlObjectData [id=5599, uuid={1D7F87B8-C884-44eb-9055-53ED045B2C1C}, since=null, name=GrAlm, alias=, stereotype=, visibility=public, txtDescription='If 'GrAlm.stVal=true', a new group alarm has been activated by one of individual alarms. Group alarm summarises different alarms, as assigned via configuration.', htmlDescription='

If 'GrAlm.stVal=true', a new group alarm has been activated by one of individual alarms. Group alarm summarises different alarms, as assigned via configuration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2248, _eaTypeName=DPS, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@172ed45]. +2024-09-07 12:38:48,734 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupC::CALH, _objData=UmlObjectData [id=5600, uuid={0C2C7397-C0B9-4d43-8E0B-31F71AA4EA5A}, since=null, name=GrWrn, alias=, stereotype=, visibility=public, txtDescription='If 'GrWrn.stVal=true', a new group warning has been activated by one of individual warnings. Group warning summarises different warnings, as assigned via configuration.', htmlDescription='

If 'GrWrn.stVal=true', a new group warning has been activated by one of individual warnings. Group warning summarises different warnings, as assigned via configuration.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2248, _eaTypeName=DPS, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@172ed45]. +2024-09-07 12:38:48,734 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupC::CALH, _objData=UmlObjectData [id=6657, uuid={E31E67B3-BB2E-4eca-8A24-56CB50965FEF}, since=null, name=ModBeh, alias=, stereotype=, visibility=public, txtDescription='If 'GrWrn.stVal=true', a new group warning has been activated by one of individual warnings. Group warning summarises different warnings, as assigned via configuration.', htmlDescription='

If 'GrWrn.stVal=true', a new group warning has been activated by one of individual warnings. Group warning summarises different warnings, as assigned via configuration.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=3039, _eaTypeName=ERYBehaviourMode, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@6044d7]. +2024-09-07 12:38:48,734 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupG::GGIO, _objData=UmlObjectData [id=5775, uuid={870B8E8E-1CE1-48a5-B4DF-5EDF733EF7FD}, since=null, name=EEHealth, alias=, stereotype=, visibility=public, txtDescription=''EEHealth.stVal' reflects the state of external (primary) equipment to which the logical node is associated.', htmlDescription='

'EEHealth.stVal' reflects the state of external (primary) equipment to which the logical node is associated.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2712, _eaTypeName=ENSHealth, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1e202ad]. +2024-09-07 12:38:48,734 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupG::GGIO, _objData=UmlObjectData [id=5782, uuid={A3049550-4E72-4228-8BD0-D2ECA1D9305C}, since=null, name=AnIn, alias=, stereotype=, visibility=public, txtDescription=''AnIn.mag.f' is the generic analogue input n.', htmlDescription='

'AnIn.mag.f' is the generic analogue input n.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2266, _eaTypeName=CMV, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@ec1f8]. +2024-09-07 12:38:48,734 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupM::MMXU, _objData=UmlObjectData [id=6036, uuid={AB0A2202-6CAE-4f4c-9ADE-E1367D015FD1}, since=null, name=TotW, alias=, stereotype=, visibility=public, txtDescription=''TotW.mag.f' is the total real power in a three-phase circuit [W].', htmlDescription='

'TotW.mag.f' is the total real power in a three-phase circuit [W].

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2266, _eaTypeName=CMV, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@ec1f8]. +2024-09-07 12:38:48,734 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupM::MMXU, _objData=UmlObjectData [id=6044, uuid={70F20DF1-D205-419a-A546-B00A930F4EF1}, since=null, name=A, alias=, stereotype=, visibility=public, txtDescription=''A' holds the currents for three phases.', htmlDescription='

'A' holds the currents for three phases.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2273, _eaTypeName=HWYE, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1445d7f]. +2024-09-07 12:38:48,734 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupM::MMXU, _objData=UmlObjectData [id=6645, uuid={4261E17B-01F7-4d5c-AD2B-D01366C474C1}, since=null, name=Desc, alias=, stereotype=, visibility=public, txtDescription='Dummy native DO of non-statistical type.', htmlDescription='

Dummy native DO of non-statistical type.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2255, _eaTypeName=HST, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1a947fe]. +2024-09-07 12:38:48,734 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupP::PDIF, _objData=UmlObjectData [id=6139, uuid={6EDDE740-6CB2-49bd-B85C-F85BBC4D3339}, since=null, name=Str, alias=, stereotype=, visibility=public, txtDescription='If 'Str.general=true', a fault has been detected.', htmlDescription='

If 'Str.general=true', a fault has been detected.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2252, _eaTypeName=ACD, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1359ed8]. +2024-09-07 12:38:48,734 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupP::PDIF, _objData=UmlObjectData [id=6140, uuid={83CA9289-614E-43d2-B931-EDAA62BA0C42}, since=null, name=Op, alias=, stereotype=, visibility=public, txtDescription='If 'Op.general=true', the function decided to trip. The trip itself is issued by PTRC.', htmlDescription='

If 'Op.general=true', the function decided to trip. The trip itself is issued by PTRC.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2671, _eaTypeName=ACTTransient, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@16be40f]. +2024-09-07 12:38:48,734 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupP::PDIS, _objData=UmlObjectData [id=6156, uuid={0D273A67-FAF9-482f-8CB2-72A7096B42D7}, since=null, name=Str, alias=, stereotype=, visibility=public, txtDescription='If 'Str.general=true', a distance fault has been detected.', htmlDescription='

If 'Str.general=true', a distance fault has been detected.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2252, _eaTypeName=ACD, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1359ed8]. +2024-09-07 12:38:48,734 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupP::PDIS, _objData=UmlObjectData [id=6157, uuid={6F969465-C33F-4910-868B-353A7D2C9A2D}, since=null, name=Op, alias=, stereotype=, visibility=public, txtDescription='If 'Op.general=true', the function decided to trip due to distance fault. The trip itself is issued by PTRC.', htmlDescription='

If 'Op.general=true', the function decided to trip due to distance fault. The trip itself is issued by PTRC.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2671, _eaTypeName=ACTTransient, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@16be40f]. +2024-09-07 12:38:48,734 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupR::RDIR, _objData=UmlObjectData [id=6339, uuid={969DA200-CE87-48c0-9C84-E86508A81D4B}, since=null, name=Dir, alias=, stereotype=, visibility=public, txtDescription='If 'Dir.general=true', a fault has been detected. 'Dir.dirGeneral' is the direction of the fault.', htmlDescription='

If 'Dir.general=true', a fault has been detected. 'Dir.dirGeneral' is the direction of the fault.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2252, _eaTypeName=ACD, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1359ed8]. +2024-09-07 12:38:48,734 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupR::RDIR, _objData=UmlObjectData [id=6658, uuid={FD102340-AB93-4aec-A54A-6DA7F5AC4487}, since=null, name=TotW, alias=, stereotype=, visibility=public, txtDescription=''TotW.mag.f' is the total real power in a three-phase circuit [W].', htmlDescription='

'TotW.mag.f' is the total real power in a three-phase circuit [W].

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2721, _eaTypeName=SPSTransient, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@10c2d26]. +2024-09-07 12:38:48,734 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupZ::ZAXN, _objData=UmlObjectData [id=6638, uuid={1BB69D0F-6A5C-42a9-BA05-66201FD25912}, since=null, name=Vol, alias=, stereotype=, visibility=public, txtDescription=''Vol.mag.f' is the non-phase-related or DC voltage of the auxiliary network.', htmlDescription='

'Vol.mag.f' is the non-phase-related or DC voltage of the auxiliary network.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2266, _eaTypeName=CMV, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@ec1f8]. +2024-09-07 12:38:48,734 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupZ::ZAXN, _objData=UmlObjectData [id=6691, uuid={D79127BE-EF55-4d56-A80C-A80263BAFAE0}, since=null, name=Mat, alias=, stereotype=, visibility=public, txtDescription='For testing usage of class from other namespace.', htmlDescription='

For testing usage of class from other namespace.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=3060, _eaTypeName=ENSMaterial, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1be656f]. +2024-09-07 12:38:48,734 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupZ::ZAXN, _objData=UmlObjectData [id=6692, uuid={F095BA66-9343-47d5-9E9E-D3A6CD6DCAE2}, since=null, name=MatCtl, alias=, stereotype=, visibility=public, txtDescription='One more, for testing usage of class from other namespace.', htmlDescription='

One more, for testing usage of class from other namespace.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=3059, _eaTypeName=ENCMaterial, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1dc67c2]. +2024-09-07 12:38:48,734 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupZ::ZAXN, _objData=UmlObjectData [id=6693, uuid={95F61B3E-0763-4162-AD6C-4769946A79EC}, since=null, name=Oth, alias=, stereotype=, visibility=public, txtDescription='One more, for testing usage of class from other namespace and also underlying type (where initially 'val' defined as public).', htmlDescription='

One more, for testing usage of class from other namespace and also underlying type (where initially 'val' defined as public).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=3062, _eaTypeName=ENSOther, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1af3c0]. +2024-09-07 12:38:48,734 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=DerivedDAs_7_420::Material, _objData=UmlObjectData [id=6689, uuid={47188E9E-FFB6-4e55-A604-306AF82D676C}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=3053, _eaTypeName=MaterialKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@2bd765]. +2024-09-07 12:38:48,734 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=DerivedDAs_7_420::Material_control, _objData=UmlObjectData [id=6713, uuid={6C2F0C32-0A2D-4e50-AAC2-A5830B1AB795}, since=null, name=ctlVal, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=3087, _eaTypeName=MaterialTransitionKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a2da20]. +2024-09-07 12:38:48,735 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=DerivedDAs_7_420::Other, _objData=UmlObjectData [id=6690, uuid={F04B56ED-9BE4-4ac4-8482-893675D15119}, since=null, name=val, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=3054, _eaTypeName=OtherKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@11bdc27]. +2024-09-07 12:38:48,735 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Ext1::Apple, _objData=UmlObjectData [id=3286, uuid={A7C8D399-77B9-43bf-81E0-5CD276C86FE6}, since=null, name=shouldNotBeEnum, alias=, stereotype=enum, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a035a0]. +2024-09-07 12:38:48,735 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Ext1::Pear, _objData=UmlObjectData [id=3287, uuid={6AE12819-CBFF-4c5c-A47A-AA188AD4F76C}, since=null, name=typeIsInformative, alias=, stereotype=European, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1532, _eaTypeName=SomeSimpleType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1c1a03d]. +2024-09-07 12:38:48,735 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Package with space::My class, _objData=UmlObjectData [id=3304, uuid={612A61C0-C06B-425e-A24C-2581B6D63928}, since=null, name=_attr, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=640, _eaTypeName=AbsoluteDateTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@74868d, 1 _constraints[ConstraintBuilder [_objData=UmlObjectData [id=2061, uuid=7d2d346d-0f9c-3a65-93d3-09e5415a6f1d, since=null, name= attr-constraint, alias=, stereotype=, visibility=public, txtDescription='lala', htmlDescription='

lala

'], _containingAttribute=_attr, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=lala]]]. +2024-09-07 12:38:48,735 [main] INFO EaModelBuilder - assigning type for operations' parameters and exceptions ... +2024-09-07 12:38:48,735 [main] TRACE ParameterBuilder - Found type 'BasePower' for array param of operation PowerSystemResource.GetWhatevers. +2024-09-07 12:38:48,735 [main] TRACE ParameterBuilder - Type set for parameter ParameterBuilder [_containingOperation=GetWhatevers, _position=0, _kind=ARRAY, _objData=UmlObjectData [id=262, uuid={D8176E9D-04E7-4fae-871C-213740261833}, since=null, name=multiples, alias=parAlias, stereotype=parStereo1, parStereo2, visibility=public, txtDescription='Doc is present (but does not end with ".")', htmlDescription='

Doc is present (but does not end with ".")

'], _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@124411f, _eaTypeName=BasePower[], _eaTypeIdAsString=0]. +2024-09-07 12:38:48,735 [main] TRACE ParameterBuilder - Type set for parameter ParameterBuilder [_containingOperation=setSomething, _position=0, _kind=SIMPLE, _objData=UmlObjectData [id=264, uuid={568C59BD-0A22-4219-A56C-793C82CCD0B3}, since=null, name=name, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@e6aa2, _eaTypeName=String, _eaTypeIdAsString=637]. +2024-09-07 12:38:48,735 [main] TRACE OperationBuilder - Found type 'Unit' for exception of operation PowerSystemResource.setSomething. +2024-09-07 12:38:48,735 [main] TRACE ParameterBuilder - Type set for parameter ParameterBuilder [_containingOperation=foo, _position=1, _kind=SIMPLE, _objData=UmlObjectData [id=267, uuid={6BD64A42-70E1-49ed-8B76-8D80ECDB74DD}, since=null, name=par2, alias=, stereotype=deprecated, visibility=public, txtDescription='Doc OK.', htmlDescription='

Doc OK.

'], _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@190a65e, _eaTypeName=float, _eaTypeIdAsString=615]. +2024-09-07 12:38:48,735 [main] TRACE ParameterBuilder - Type set for parameter ParameterBuilder [_containingOperation=bar, _position=1, _kind=SIMPLE, _objData=UmlObjectData [id=271, uuid={E8047328-87C3-481b-998B-FBFFE7B4CFD0}, since=null, name=par2, alias=, stereotype=, visibility=public, txtDescription='starting with lower case, missing "." at the end', htmlDescription='

starting with lower case, missing "." at the end

'], _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@190a65e, _eaTypeName=float, _eaTypeIdAsString=615]. +2024-09-07 12:38:48,735 [main] TRACE OperationBuilder - Found type 'Voltage' for return parameter of operation VoltageLevel.getVoltage. +2024-09-07 12:38:48,735 [main] TRACE OperationBuilder - Return type set for OperationBuilder [_containingClass=VoltageLevel, _objData=UmlObjectData [id=3, uuid={4334506A-A0EC-4e66-AD2B-2DBEBB2B1561}, since=null, name=getVoltage, alias=, stereotype=, visibility=public, txtDescription='Third and last dumb operation for doc generation testing.', htmlDescription='

Third and last dumb operation for doc generation testing.

'], _abstract=false, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@150c158, _eaReturnTypeId=602, _eaReturnTypeName=Voltage]. +2024-09-07 12:38:48,735 [main] TRACE OperationBuilder - Found type 'AttrValueKind' for return parameter of operation AttrValue.getType. +2024-09-07 12:38:48,735 [main] TRACE OperationBuilder - Return type set for OperationBuilder [_containingClass=AttrValue, _objData=UmlObjectData [id=7, uuid={AE278709-6801-41ab-B747-96509456D69B}, since=null, name=getType, alias=, stereotype=, visibility=public, txtDescription='Returns the type of this value.', htmlDescription='

Returns the type of this value.

'], _abstract=true, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@164985f, _eaReturnTypeId=1714, _eaReturnTypeName=AttrValueKind]. +2024-09-07 12:38:48,735 [main] TRACE OperationBuilder - Found type 'FCDAReference' for return parameter of operation AttrDefinition.getFcdaRef. +2024-09-07 12:38:48,735 [main] TRACE OperationBuilder - Return type set for OperationBuilder [_containingClass=AttrDefinition, _objData=UmlObjectData [id=46, uuid={C67D899D-E6F2-43a4-A6F8-1ECB42761E65}, since=null, name=getFcdaRef, alias=, stereotype=, visibility=public, txtDescription='Returns attribute's FCDAReference.', htmlDescription='

Returns attribute's FCDAReference.

'], _abstract=false, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@13af739, _eaReturnTypeId=1703, _eaReturnTypeName=FCDAReference]. +2024-09-07 12:38:48,735 [main] TRACE OperationBuilder - Found type 'AttrValueKind' for return parameter of operation AttrDefinition.getValType. +2024-09-07 12:38:48,735 [main] TRACE OperationBuilder - Return type set for OperationBuilder [_containingClass=AttrDefinition, _objData=UmlObjectData [id=47, uuid={F41461CE-0224-4867-9FC5-05D412807A13}, since=null, name=getValType, alias=, stereotype=, visibility=public, txtDescription='Returns type of attribute's value.', htmlDescription='

Returns type of attribute's value.

'], _abstract=false, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@164985f, _eaReturnTypeId=1714, _eaReturnTypeName=AttrValueKind]. +2024-09-07 12:38:48,736 [main] TRACE OperationBuilder - Found type 'FCDAReference' for return parameter of operation NamedAttrValue.getFcdaRef. +2024-09-07 12:38:48,736 [main] TRACE OperationBuilder - Return type set for OperationBuilder [_containingClass=NamedAttrValue, _objData=UmlObjectData [id=48, uuid={129BA9AB-F84D-4f61-863F-E9AD33EC1D36}, since=null, name=getFcdaRef, alias=, stereotype=, visibility=public, txtDescription='Returns attribute's FCDAReference.', htmlDescription='

Returns attribute's FCDAReference.

'], _abstract=false, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@13af739, _eaReturnTypeId=1703, _eaReturnTypeName=FCDAReference]. +2024-09-07 12:38:48,736 [main] TRACE OperationBuilder - Found type 'AttrValue' for return parameter of operation NamedAttrValue.getVal. +2024-09-07 12:38:48,736 [main] TRACE OperationBuilder - Return type set for OperationBuilder [_containingClass=NamedAttrValue, _objData=UmlObjectData [id=49, uuid={91C84065-1E39-4d4a-8927-B426FCFEB686}, since=null, name=getVal, alias=, stereotype=, visibility=public, txtDescription='Returns attribute's value.', htmlDescription='

Returns attribute's value.

'], _abstract=false, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1fe3806, _eaReturnTypeId=1715, _eaReturnTypeName=AttrValue]. +2024-09-07 12:38:48,736 [main] TRACE OperationBuilder - Found type 'AccessView' for return parameter of operation Authentication.getViews. +2024-09-07 12:38:48,736 [main] TRACE OperationBuilder - Return type set for OperationBuilder [_containingClass=Authentication, _objData=UmlObjectData [id=52, uuid={3DD3175C-C019-4f8a-A82F-1641C5702FFD}, since=null, name=getViews, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _abstract=false, _static=false, _final=false, _kind=OP_RET_ARRAY, _returnType=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@136e4cd, _eaReturnTypeId=1774, _eaReturnTypeName=AccessView]. +2024-09-07 12:38:48,736 [main] TRACE ParameterBuilder - Type set for parameter ParameterBuilder [_containingOperation=ope-ration, _position=0, _kind=SIMPLE, _objData=UmlObjectData [id=2063, uuid={B9E929B4-3E5D-4b39-83CB-4EFAC956A019}, since=null, name=other param, alias=, stereotype=, visibility=public, txtDescription='Doc for parameter is ok.', htmlDescription='

Doc for parameter is ok.

'], _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@5185bd, _eaTypeName=Boolean, _eaTypeIdAsString=619]. +2024-09-07 12:38:48,736 [main] TRACE ParameterBuilder - Type set for parameter ParameterBuilder [_containingOperation=ope-ration, _position=1, _kind=SIMPLE, _objData=UmlObjectData [id=2064, uuid={82D97A41-4B66-40ae-ADF4-3BFA2BD0E201}, since=null, name=_par, alias=, stereotype=, visibility=public, txtDescription='doc', htmlDescription='

doc

'], _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1bbf683, _eaTypeName=ApparentPower, _eaTypeIdAsString=616]. +2024-09-07 12:38:48,736 [main] INFO EaModelBuilder - cross-checking dependencies ... +2024-09-07 12:38:48,736 [main] INFO EaModelBuilder - cross-checking associations ... +2024-09-07 12:38:48,737 [main] INFO Util - time=[0:00:00.023] linked builders. +2024-09-07 12:38:48,737 [main] INFO Util - +2024-09-07 12:38:48,737 [main] INFO Util - +2024-09-07 12:38:48,737 [main] INFO Util - ------------------------------------------------ +2024-09-07 12:38:48,737 [main] INFO Util - creating in-memory model and exporting normative diagrams... +2024-09-07 12:38:50,142 [main] TRACE UmlPackage - ---- created null model package NullCIM +2024-09-07 12:38:50,154 [main] TRACE UmlClass - created (2081) OTHER_CIM CIM null CIM class NullCIM::NullCIM +2024-09-07 12:38:50,154 [main] TRACE UmlPackage - ---- created null model package NullIEC61850 +2024-09-07 12:38:50,155 [main] TRACE UmlClass - created (2085) OTHER_IEC61850 IEC61850 null 61850 class NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,155 [main] INFO EaModelBuilder - creating in-memory package structure ... +2024-09-07 12:38:50,155 [main] TRACE UmlPackage - ---- created model package TC57CIMProfiles +2024-09-07 12:38:50,171 [main] TRACE UmlDiagram - created (332) OTHER_CIM CIM package TC57CIMProfiles::TC57CIMProfiles +2024-09-07 12:38:50,171 [main] TRACE UmlPackage - ---- created model package TC57CIM +2024-09-07 12:38:50,171 [main] TRACE UmlDiagram - created (1) OTHER_CIM CIM class <> TC57CIM::Main +2024-09-07 12:38:50,173 [main] TRACE UmlPackage - ---- created top package Informative +2024-09-07 12:38:50,173 [main] TRACE UmlDiagram - created (171) OTHER_CIM CIM INF class Informative::Informative +2024-09-07 12:38:50,173 [main] TRACE UmlPackage - ---- created top package IEC61970 +2024-09-07 12:38:50,179 [main] TRACE UmlSkipped - created (1497) WG13 CIM state IEC61970::StateInPackage +2024-09-07 12:38:50,179 [main] TRACE UmlDiagram - created (111) WG13 CIM class IEC61970::Main +2024-09-07 12:38:50,180 [main] TRACE UmlPackage - ---- created package InformativeAndPrivate +2024-09-07 12:38:50,180 [main] TRACE UmlSkipped - created (2102) WG13 CIM INF other InformativeAndPrivate:: - Package 'Other' - Package 'Other' +2024-09-07 12:38:50,180 [main] TRACE UmlDiagram - created (157) WG13 CIM INF class InformativeAndPrivate::Informative +2024-09-07 12:38:50,180 [main] TRACE UmlPackage - ---- created package DocIEC61970 +2024-09-07 12:38:50,180 [main] TRACE UmlSkipped - created (3028) WG13 CIM INF note DocIEC61970:: +2024-09-07 12:38:50,180 [main] TRACE UmlDiagram - created (321) WG13 CIM INF class DocIEC61970::MyDocFigure +2024-09-07 12:38:50,180 [main] TRACE UmlPackage - ---- created package Domain +2024-09-07 12:38:50,180 [main] TRACE UmlDiagram - created (119) WG13 CIM class <> Domain::BasicDatatypes +2024-09-07 12:38:50,180 [main] TRACE UmlDiagram - created (117) WG13 CIM class <> Domain::TimeDatatypes +2024-09-07 12:38:50,180 [main] TRACE UmlPackage - ---- created package Core +2024-09-07 12:38:50,180 [main] TRACE UmlSkipped - created (3029) WG13 CIM note Core:: +2024-09-07 12:38:50,180 [main] TRACE UmlSkipped - created (3082) WG13 CIM note Core:: +2024-09-07 12:38:50,180 [main] TRACE UmlSkipped - created (3083) WG13 CIM note Core:: +2024-09-07 12:38:50,180 [main] TRACE UmlSkipped - created (3084) WG13 CIM note Core:: +2024-09-07 12:38:50,180 [main] TRACE UmlSkipped - created (3085) WG13 CIM note Core:: +2024-09-07 12:38:50,180 [main] TRACE UmlSkipped - created (3086) WG13 CIM note Core:: +2024-09-07 12:38:50,180 [main] TRACE UmlDiagram - created (153) WG13 CIM class Core::Main +2024-09-07 12:38:50,180 [main] TRACE UmlDiagram - created (155) WG13 CIM class <> Core::Ownership +2024-09-07 12:38:50,180 [main] TRACE UmlPackage - ---- created package Topology +2024-09-07 12:38:50,180 [main] TRACE UmlSkipped - created (792) WG13 CIM note Topology:: +2024-09-07 12:38:50,180 [main] TRACE UmlSkipped - created (793) WG13 CIM note Topology:: +2024-09-07 12:38:50,181 [main] TRACE UmlSkipped - created (798) WG13 CIM note Topology:: +2024-09-07 12:38:50,181 [main] TRACE UmlSkipped - created (1445) WG13 CIM note Topology:: +2024-09-07 12:38:50,181 [main] TRACE UmlSkipped - created (1446) WG13 CIM note Topology:: +2024-09-07 12:38:50,181 [main] TRACE UmlSkipped - created (1447) WG13 CIM note Topology:: +2024-09-07 12:38:50,181 [main] TRACE UmlDiagram - created (142) WG13 CIM class Topology::Main +2024-09-07 12:38:50,181 [main] TRACE UmlDiagram - created (175) WG13 CIM class Topology::DiagramWithoutComment +2024-09-07 12:38:50,181 [main] TRACE UmlPackage - ---- created package TestEnums +2024-09-07 12:38:50,181 [main] TRACE UmlSkipped - created (3046) WG13 CIM note TestEnums:: +2024-09-07 12:38:50,181 [main] TRACE UmlSkipped - created (3048) WG13 CIM note TestEnums:: +2024-09-07 12:38:50,181 [main] TRACE UmlDiagram - created (322) WG13 CIM class TestEnums::TestEnums +2024-09-07 12:38:50,181 [main] TRACE UmlPackage - ---- created top package IEC61968 +2024-09-07 12:38:50,181 [main] TRACE UmlSkipped - created (1478) WG14 CIM note IEC61968:: +2024-09-07 12:38:50,181 [main] TRACE UmlSkipped - created (1479) WG14 CIM note IEC61968:: +2024-09-07 12:38:50,181 [main] TRACE UmlSkipped - created (1499) WG14 CIM note IEC61968:: +2024-09-07 12:38:50,181 [main] TRACE UmlSkipped - created (3075) WG14 CIM note IEC61968:: +2024-09-07 12:38:50,181 [main] TRACE UmlDiagram - created (158) WG14 CIM class IEC61968::IEC61968 +2024-09-07 12:38:50,181 [main] TRACE UmlPackage - ---- created package EmbeddedExtension +2024-09-07 12:38:50,181 [main] TRACE UmlSkipped - created (3457) WG14 CIM note link EmbeddedExtension:: - Note '' - Note '' +2024-09-07 12:38:50,183 [main] TRACE UmlDiagram - created (328) WG14 CIM package EmbeddedExtension::EmbeddedExtension +2024-09-07 12:38:50,183 [main] TRACE UmlPackage - ---- created package Assets +2024-09-07 12:38:50,183 [main] TRACE UmlSkipped - created (3064) WG14 CIM other Assets::Object1 +2024-09-07 12:38:50,183 [main] TRACE UmlDiagram - created (184) WG14 CIM class Assets::Assets +2024-09-07 12:38:50,183 [main] TRACE UmlDiagram - created (326) WG14 CIM object Assets::AssetsObjDia +2024-09-07 12:38:50,183 [main] TRACE UmlPackage - ---- created package Core +2024-09-07 12:38:50,183 [main] TRACE UmlSkipped - created (2117) WG14 CIM note link Core:: - Note '' - Note '' +2024-09-07 12:38:50,183 [main] TRACE UmlPackage - ---- created package Other +2024-09-07 12:38:50,183 [main] TRACE UmlSkipped - created (2115) WG14 CIM note link Other:: - Note '' - Note '' +2024-09-07 12:38:50,183 [main] TRACE UmlPackage - ---- created package Other +2024-09-07 12:38:50,183 [main] TRACE UmlSkipped - created (2116) WG14 CIM note link Other:: - Note '' - Note '' +2024-09-07 12:38:50,183 [main] TRACE UmlSkipped - created (2102) WG14 CIM other Other:: - Package 'InformativeAndPrivate' - Package 'InformativeAndPrivate' +2024-09-07 12:38:50,183 [main] TRACE UmlSkipped - created (1473) WG14 CIM note Other:: +2024-09-07 12:38:50,183 [main] TRACE UmlSkipped - created (1475) WG14 CIM note Other:: +2024-09-07 12:38:50,183 [main] TRACE UmlSkipped - created (1483) WG14 CIM note Other:: +2024-09-07 12:38:50,183 [main] TRACE UmlSkipped - created (1484) WG14 CIM note Other:: +2024-09-07 12:38:50,183 [main] TRACE UmlSkipped - created (1498) WG14 CIM note Other:: +2024-09-07 12:38:50,183 [main] TRACE UmlDiagram - created (159) WG14 CIM class Other::Other +2024-09-07 12:38:50,183 [main] TRACE UmlPackage - ---- created top package IEC62325 +2024-09-07 12:38:50,183 [main] TRACE UmlDiagram - created (183) WG16 CIM class IEC62325::IEC62325 +2024-09-07 12:38:50,183 [main] TRACE UmlPackage - ---- created model package IEC61850Domain +2024-09-07 12:38:50,184 [main] TRACE UmlSkipped - created (3068) OTHER_IEC61850 IEC61850 note IEC61850Domain:: +2024-09-07 12:38:50,184 [main] TRACE UmlSkipped - created (3069) OTHER_IEC61850 IEC61850 note IEC61850Domain:: +2024-09-07 12:38:50,184 [main] TRACE UmlDiagram - created (160) OTHER_IEC61850 IEC61850 class IEC61850Domain::IEC61850Domain +2024-09-07 12:38:50,184 [main] TRACE UmlPackage - ---- created top package WG10 +2024-09-07 12:38:50,184 [main] TRACE UmlSkipped - created (1553) WG10 IEC61850 note WG10:: +2024-09-07 12:38:50,184 [main] TRACE UmlSkipped - created (1554) WG10 IEC61850 note WG10:: +2024-09-07 12:38:50,184 [main] TRACE UmlSkipped - created (1556) WG10 IEC61850 text WG10::Parts7 : DataModelExample +2024-09-07 12:38:50,184 [main] TRACE UmlSkipped - created (1557) WG10 IEC61850 text WG10::Text +2024-09-07 12:38:50,184 [main] TRACE UmlSkipped - created (1558) WG10 IEC61850 text WG10::Text +2024-09-07 12:38:50,184 [main] TRACE UmlSkipped - created (1559) WG10 IEC61850 text WG10::Text +2024-09-07 12:38:50,184 [main] TRACE UmlSkipped - created (1560) WG10 IEC61850 text WG10::Text +2024-09-07 12:38:50,184 [main] TRACE UmlSkipped - created (1561) WG10 IEC61850 text WG10::Text +2024-09-07 12:38:50,184 [main] TRACE UmlSkipped - created (1562) WG10 IEC61850 text WG10::Text +2024-09-07 12:38:50,184 [main] TRACE UmlSkipped - created (1563) WG10 IEC61850 text WG10::Text +2024-09-07 12:38:50,184 [main] TRACE UmlSkipped - created (1564) WG10 IEC61850 text WG10::Text +2024-09-07 12:38:50,184 [main] TRACE UmlSkipped - created (1565) WG10 IEC61850 text WG10::Text +2024-09-07 12:38:50,184 [main] TRACE UmlSkipped - created (1566) WG10 IEC61850 text WG10::Text +2024-09-07 12:38:50,184 [main] TRACE UmlSkipped - created (1567) WG10 IEC61850 text WG10::Text +2024-09-07 12:38:50,184 [main] TRACE UmlSkipped - created (1568) WG10 IEC61850 text WG10::Text +2024-09-07 12:38:50,185 [main] TRACE UmlSkipped - created (1569) WG10 IEC61850 text WG10::Text +2024-09-07 12:38:50,185 [main] TRACE UmlSkipped - created (1570) WG10 IEC61850 text WG10::IEC61850 : Parts7 +2024-09-07 12:38:50,185 [main] TRACE UmlDiagram - created (186) WG10 IEC61850 package WG10::WG10 +2024-09-07 12:38:50,185 [main] TRACE UmlDiagram - created (187) WG10 IEC61850 package WG10::Parts7 +2024-09-07 12:38:50,185 [main] TRACE UmlDiagram - created (188) WG10 IEC61850 class WG10::DataModelExample +2024-09-07 12:38:50,185 [main] TRACE UmlPackage - ---- created package NewIEC61850_7_2 +2024-09-07 12:38:50,185 [main] TRACE UmlDiagram - created (189) WG10 IEC61850 package NewIEC61850_7_2::NewIEC61850_7_2 +2024-09-07 12:38:50,185 [main] TRACE UmlPackage - ---- created package GenericModel +2024-09-07 12:38:50,185 [main] TRACE UmlSkipped - created (1573) WG10 IEC61850 note GenericModel:: +2024-09-07 12:38:50,185 [main] TRACE UmlSkipped - created (1574) WG10 IEC61850 note GenericModel:: +2024-09-07 12:38:50,185 [main] TRACE UmlSkipped - created (1575) WG10 IEC61850 note GenericModel:: +2024-09-07 12:38:50,185 [main] TRACE UmlSkipped - created (1576) WG10 IEC61850 note GenericModel:: +2024-09-07 12:38:50,185 [main] TRACE UmlSkipped - created (1577) WG10 IEC61850 note GenericModel:: +2024-09-07 12:38:50,185 [main] TRACE UmlSkipped - created (1578) WG10 IEC61850 note GenericModel:: +2024-09-07 12:38:50,185 [main] TRACE UmlSkipped - created (1579) WG10 IEC61850 note GenericModel:: +2024-09-07 12:38:50,185 [main] TRACE UmlSkipped - created (1580) WG10 IEC61850 note GenericModel:: +2024-09-07 12:38:50,185 [main] TRACE UmlSkipped - created (1581) WG10 IEC61850 note GenericModel:: +2024-09-07 12:38:50,185 [main] TRACE UmlSkipped - created (1582) WG10 IEC61850 note GenericModel:: +2024-09-07 12:38:50,185 [main] TRACE UmlSkipped - created (1583) WG10 IEC61850 note GenericModel:: +2024-09-07 12:38:50,185 [main] TRACE UmlSkipped - created (1584) WG10 IEC61850 note GenericModel:: +2024-09-07 12:38:50,185 [main] TRACE UmlSkipped - created (1618) WG10 IEC61850 other <> GenericModel:: +2024-09-07 12:38:50,185 [main] TRACE UmlSkipped - created (1619) WG10 IEC61850 other <> GenericModel:: +2024-09-07 12:38:50,185 [main] TRACE UmlSkipped - created (1620) WG10 IEC61850 other <> GenericModel:: +2024-09-07 12:38:50,185 [main] TRACE UmlSkipped - created (1621) WG10 IEC61850 other <> GenericModel:: +2024-09-07 12:38:50,185 [main] TRACE UmlDiagram - created (190) WG10 IEC61850 class GenericModel::GenericModel +2024-09-07 12:38:50,185 [main] TRACE UmlDiagram - created (191) WG10 IEC61850 class GenericModel::GenericModelTypes +2024-09-07 12:38:50,185 [main] TRACE UmlPackage - ---- created package IEC61850_7_2 +2024-09-07 12:38:50,185 [main] TRACE UmlSkipped - created (1623) WG10 IEC61850 note IEC61850_7_2:: +2024-09-07 12:38:50,185 [main] TRACE UmlSkipped - created (1624) WG10 IEC61850 note IEC61850_7_2:: +2024-09-07 12:38:50,185 [main] TRACE UmlSkipped - created (1625) WG10 IEC61850 note IEC61850_7_2:: +2024-09-07 12:38:50,185 [main] TRACE UmlSkipped - created (1627) WG10 IEC61850 text IEC61850_7_2::IEC61850_7_2 : IEC61850_7_2ModellingNotes +2024-09-07 12:38:50,185 [main] TRACE UmlDiagram - created (192) WG10 IEC61850 package IEC61850_7_2::IEC61850_7_2 +2024-09-07 12:38:50,185 [main] TRACE UmlDiagram - created (193) WG10 IEC61850 class IEC61850_7_2::IEC61850_7_2ModellingNotes +2024-09-07 12:38:50,185 [main] TRACE UmlPackage - ---- created package FunctionalConstraints +2024-09-07 12:38:50,185 [main] TRACE UmlDiagram - created (195) WG10 IEC61850 class FunctionalConstraints::FunctionalConstraints +2024-09-07 12:38:50,185 [main] TRACE UmlPackage - ---- created package TriggerOptions +2024-09-07 12:38:50,185 [main] TRACE UmlDiagram - created (196) WG10 IEC61850 class TriggerOptions::TriggerOptions +2024-09-07 12:38:50,185 [main] TRACE UmlPackage - ---- created package ACSIEnums +2024-09-07 12:38:50,185 [main] TRACE UmlDiagram - created (197) WG10 IEC61850 class ACSIEnums::ACSIEnums +2024-09-07 12:38:50,185 [main] TRACE UmlPackage - ---- created package CoreTypes +2024-09-07 12:38:50,185 [main] TRACE UmlSkipped - created (1650) WG10 IEC61850 note CoreTypes:: +2024-09-07 12:38:50,187 [main] TRACE UmlSkipped - created (1675) WG10 IEC61850 text CoreTypes::Text +2024-09-07 12:38:50,187 [main] TRACE UmlSkipped - created (1676) WG10 IEC61850 text CoreTypes::CoreTypes : CoreTypesModellingNotes +2024-09-07 12:38:50,187 [main] TRACE UmlSkipped - created (1677) WG10 IEC61850 text CoreTypes::CoreTypes :ImplementationNote-LanguageMappings +2024-09-07 12:38:50,187 [main] TRACE UmlSkipped - created (1678) WG10 IEC61850 text CoreTypes::BasicDAs :Relation between trigger conditions, applicable trigger options and reporting +2024-09-07 12:38:50,187 [main] TRACE UmlSkipped - created (1679) WG10 IEC61850 text CoreTypes::Text +2024-09-07 12:38:50,187 [main] TRACE UmlDiagram - created (198) WG10 IEC61850 class CoreTypes::CoreTypes +2024-09-07 12:38:50,187 [main] TRACE UmlPackage - ---- created package ObjectReferences +2024-09-07 12:38:50,187 [main] TRACE UmlSkipped - created (1684) WG10 IEC61850 note ObjectReferences:: +2024-09-07 12:38:50,187 [main] TRACE UmlSkipped - created (1690) WG10 IEC61850 note ObjectReferences:: +2024-09-07 12:38:50,187 [main] TRACE UmlSkipped - created (1704) WG10 IEC61850 text ObjectReferences::ObjectReferences : ObjectReferencesModellingNotes +2024-09-07 12:38:50,187 [main] TRACE UmlSkipped - created (1705) WG10 IEC61850 text ObjectReferences::ObjectReferences : ImplementationNotes-ComposedCDCs +2024-09-07 12:38:50,187 [main] TRACE UmlDiagram - created (201) WG10 IEC61850 class ObjectReferences::ObjectReferences +2024-09-07 12:38:50,187 [main] TRACE UmlPackage - ---- created package DetailedDiagrams +2024-09-07 12:38:50,187 [main] TRACE UmlSkipped - created (1707) WG10 IEC61850 INF note DetailedDiagrams:: +2024-09-07 12:38:50,187 [main] TRACE UmlDiagram - created (203) WG10 IEC61850 INF class DetailedDiagrams::ImplementationNotes-ComposedCDCs +2024-09-07 12:38:50,187 [main] TRACE UmlPackage - ---- created package AttrValues +2024-09-07 12:38:50,187 [main] TRACE UmlSkipped - created (1712) WG10 IEC61850 note AttrValues:: +2024-09-07 12:38:50,187 [main] TRACE UmlSkipped - created (1713) WG10 IEC61850 note AttrValues:: +2024-09-07 12:38:50,187 [main] TRACE UmlDiagram - created (204) WG10 IEC61850 class AttrValues::AttrValues +2024-09-07 12:38:50,187 [main] TRACE UmlPackage - ---- created package BasicDAs +2024-09-07 12:38:50,187 [main] TRACE UmlSkipped - created (1738) WG10 IEC61850 note BasicDAs:: +2024-09-07 12:38:50,187 [main] TRACE UmlSkipped - created (1739) WG10 IEC61850 note BasicDAs:: +2024-09-07 12:38:50,187 [main] TRACE UmlSkipped - created (1761) WG10 IEC61850 boundary BasicDAs:: +2024-09-07 12:38:50,187 [main] TRACE UmlSkipped - created (1762) WG10 IEC61850 text BasicDAs::ACSIEnums : ACSIEnums +2024-09-07 12:38:50,188 [main] TRACE UmlSkipped - created (1763) WG10 IEC61850 text BasicDAs::ObjectReferences : ObjectReferences +2024-09-07 12:38:50,188 [main] TRACE UmlSkipped - created (1764) WG10 IEC61850 text BasicDAs::CoreTypes : CoreTypes +2024-09-07 12:38:50,188 [main] TRACE UmlDiagram - created (205) WG10 IEC61850 class BasicDAs::BasicDAs +2024-09-07 12:38:50,188 [main] TRACE UmlPackage - ---- created package AcsiTypes +2024-09-07 12:38:50,188 [main] TRACE UmlDiagram - created (207) WG10 IEC61850 package AcsiTypes::AcsiTypes +2024-09-07 12:38:50,188 [main] TRACE UmlPackage - ---- created package CommonAcsiTypes +2024-09-07 12:38:50,188 [main] TRACE UmlSkipped - created (1768) WG10 IEC61850 note CommonAcsiTypes:: +2024-09-07 12:38:50,188 [main] TRACE UmlSkipped - created (1769) WG10 IEC61850 note CommonAcsiTypes:: +2024-09-07 12:38:50,188 [main] TRACE UmlSkipped - created (1778) WG10 IEC61850 text CommonAcsiTypes::CoreAcsi : CoreAcsi +2024-09-07 12:38:50,188 [main] TRACE UmlDiagram - created (208) WG10 IEC61850 class CommonAcsiTypes::CommonAcsiTypes +2024-09-07 12:38:50,188 [main] TRACE UmlPackage - ---- created package MetaModel +2024-09-07 12:38:50,188 [main] TRACE UmlSkipped - created (1830) WG10 IEC61850 note MetaModel:: +2024-09-07 12:38:50,188 [main] TRACE UmlSkipped - created (1831) WG10 IEC61850 note MetaModel:: +2024-09-07 12:38:50,188 [main] TRACE UmlSkipped - created (1833) WG10 IEC61850 note MetaModel:: +2024-09-07 12:38:50,188 [main] TRACE UmlSkipped - created (1834) WG10 IEC61850 note MetaModel:: +2024-09-07 12:38:50,188 [main] TRACE UmlSkipped - created (1878) WG10 IEC61850 text MetaModel::DerivedCDCs : DerivedCDCs +2024-09-07 12:38:50,188 [main] TRACE UmlSkipped - created (1879) WG10 IEC61850 text MetaModel::MetaModel :MetaModelFCsAndTrgOps +2024-09-07 12:38:50,188 [main] TRACE UmlSkipped - created (1880) WG10 IEC61850 text MetaModel::MetaModel :MetaModelNaming +2024-09-07 12:38:50,188 [main] TRACE UmlSkipped - created (1881) WG10 IEC61850 text MetaModel::LogicalNodeEnums :DOEnums-1 +2024-09-07 12:38:50,188 [main] TRACE UmlSkipped - created (1882) WG10 IEC61850 text MetaModel::BasicDAs : BasicDAs +2024-09-07 12:38:50,188 [main] TRACE UmlSkipped - created (1883) WG10 IEC61850 text MetaModel::LogicalNodes : LogicalNodes +2024-09-07 12:38:50,188 [main] TRACE UmlSkipped - created (1884) WG10 IEC61850 text MetaModel::CommonDataClasses : CommonDataClasses +2024-09-07 12:38:50,188 [main] TRACE UmlSkipped - created (1885) WG10 IEC61850 text MetaModel::IEC61850 : DataModelExample +2024-09-07 12:38:50,188 [main] TRACE UmlSkipped - created (1886) WG10 IEC61850 text MetaModel::DerivedDAs : DerivedDAs +2024-09-07 12:38:50,188 [main] TRACE UmlSkipped - created (1887) WG10 IEC61850 text MetaModel::LogicalNodeEnums :DOEnums-3 +2024-09-07 12:38:50,188 [main] TRACE UmlSkipped - created (1888) WG10 IEC61850 text MetaModel::DAEnums : DAEnums-1 +2024-09-07 12:38:50,188 [main] TRACE UmlSkipped - created (1889) WG10 IEC61850 text MetaModel::ObjectReferences : ObjectReferences +2024-09-07 12:38:50,188 [main] TRACE UmlSkipped - created (1890) WG10 IEC61850 text MetaModel::CoreTypes : CoreTypes +2024-09-07 12:38:50,188 [main] TRACE UmlSkipped - created (1891) WG10 IEC61850 text MetaModel::ConstructedDAs : ConstructedDAs +2024-09-07 12:38:50,188 [main] TRACE UmlSkipped - created (1892) WG10 IEC61850 text MetaModel::LogicalNodeEnums :DOEnums-2 +2024-09-07 12:38:50,188 [main] TRACE UmlSkipped - created (1893) WG10 IEC61850 boundary MetaModel::Data model (logical nodes, common data classes, functionally constrained data attributes and data attributes) +2024-09-07 12:38:50,188 [main] TRACE UmlSkipped - created (1894) WG10 IEC61850 text MetaModel::FCDAs : FCDAs +2024-09-07 12:38:50,188 [main] TRACE UmlSkipped - created (1895) WG10 IEC61850 text MetaModel::ImplicitDAs : ImplicitDAs +2024-09-07 12:38:50,188 [main] TRACE UmlSkipped - created (1896) WG10 IEC61850 text MetaModel::MetaModel :MetaModelDataSetsAndControlBlocks +2024-09-07 12:38:50,188 [main] TRACE UmlSkipped - created (1897) WG10 IEC61850 text MetaModel::MetaModel : MetaModelDataModel +2024-09-07 12:38:50,188 [main] TRACE UmlSkipped - created (1898) WG10 IEC61850 boundary MetaModel::Directly related to data model +2024-09-07 12:38:50,188 [main] TRACE UmlSkipped - created (1899) WG10 IEC61850 text MetaModel::MetaModel :MetaModelRelationships +2024-09-07 12:38:50,188 [main] TRACE UmlSkipped - created (1900) WG10 IEC61850 text MetaModel::DAEnums : DAEnums-2 +2024-09-07 12:38:50,188 [main] TRACE UmlDiagram - created (218) WG10 IEC61850 class MetaModel::MetaModelClasses +2024-09-07 12:38:50,188 [main] TRACE UmlDiagram - created (219) WG10 IEC61850 class MetaModel::MetaModelRelationships +2024-09-07 12:38:50,188 [main] TRACE UmlDiagram - created (220) WG10 IEC61850 class MetaModel::MetaModelNaming +2024-09-07 12:38:50,188 [main] TRACE UmlDiagram - created (217) WG10 IEC61850 class MetaModel::MetaModelDataModel +2024-09-07 12:38:50,188 [main] TRACE UmlDiagram - created (221) WG10 IEC61850 class MetaModel::MetaModelDataSetsAndControlBlocks +2024-09-07 12:38:50,188 [main] TRACE UmlPackage - ---- created package MetaModelFCsAndTrgOps +2024-09-07 12:38:50,188 [main] TRACE UmlSkipped - created (1902) WG10 IEC61850 note MetaModelFCsAndTrgOps:: +2024-09-07 12:38:50,188 [main] TRACE UmlDiagram - created (222) WG10 IEC61850 class MetaModelFCsAndTrgOps::MetaModelFCsAndTrgOps +2024-09-07 12:38:50,188 [main] TRACE UmlPackage - ---- created package CDCServiceTracking +2024-09-07 12:38:50,188 [main] TRACE UmlSkipped - created (2180) WG10 IEC61850 note link CDCServiceTracking:: - Note '' - Note '' +2024-09-07 12:38:50,188 [main] TRACE UmlSkipped - created (1993) WG10 IEC61850 note CDCServiceTracking:: +2024-09-07 12:38:50,188 [main] TRACE UmlSkipped - created (1994) WG10 IEC61850 note CDCServiceTracking:: +2024-09-07 12:38:50,188 [main] TRACE UmlDiagram - created (226) WG10 IEC61850 class CDCServiceTracking::CDCServiceTracking +2024-09-07 12:38:50,188 [main] TRACE UmlPackage - ---- created package IEC61850_7_3 +2024-09-07 12:38:50,188 [main] TRACE UmlSkipped - created (2006) WG10 IEC61850 note IEC61850_7_3:: +2024-09-07 12:38:50,188 [main] TRACE UmlDiagram - created (227) WG10 IEC61850 class IEC61850_7_3::IEC61850_7_3 +2024-09-07 12:38:50,188 [main] TRACE UmlPackage - ---- created package PresenceConditions +2024-09-07 12:38:50,188 [main] TRACE UmlSkipped - created (2205) WG10 IEC61850 note link PresenceConditions:: - Note '' - Note '' +2024-09-07 12:38:50,188 [main] TRACE UmlDiagram - created (228) WG10 IEC61850 class PresenceConditions::PresenceConditions +2024-09-07 12:38:50,189 [main] TRACE UmlPackage - ---- created package DAEnums +2024-09-07 12:38:50,189 [main] TRACE UmlSkipped - created (2015) WG10 IEC61850 note DAEnums:: +2024-09-07 12:38:50,189 [main] TRACE UmlSkipped - created (2016) WG10 IEC61850 note DAEnums:: +2024-09-07 12:38:50,189 [main] TRACE UmlSkipped - created (2021) WG10 IEC61850 note DAEnums:: +2024-09-07 12:38:50,189 [main] TRACE UmlSkipped - created (2022) WG10 IEC61850 note DAEnums:: +2024-09-07 12:38:50,189 [main] TRACE UmlDiagram - created (229) WG10 IEC61850 class DAEnums::DAEnums-1 +2024-09-07 12:38:50,189 [main] TRACE UmlPackage - ---- created package ImplicitDAs +2024-09-07 12:38:50,189 [main] TRACE UmlSkipped - created (2050) WG10 IEC61850 note ImplicitDAs:: +2024-09-07 12:38:50,189 [main] TRACE UmlSkipped - created (2073) WG10 IEC61850 text ImplicitDAs::DAEnums :DAEnums-2 +2024-09-07 12:38:50,189 [main] TRACE UmlSkipped - created (2074) WG10 IEC61850 text ImplicitDAs::DAEnums :DAEnums-1 +2024-09-07 12:38:50,189 [main] TRACE UmlDiagram - created (231) WG10 IEC61850 class ImplicitDAs::ImplicitDAs +2024-09-07 12:38:50,189 [main] TRACE UmlPackage - ---- created package ConstructedDAs +2024-09-07 12:38:50,189 [main] TRACE UmlSkipped - created (2077) WG10 IEC61850 note ConstructedDAs:: +2024-09-07 12:38:50,189 [main] TRACE UmlSkipped - created (2078) WG10 IEC61850 note ConstructedDAs:: +2024-09-07 12:38:50,189 [main] TRACE UmlSkipped - created (2102) WG10 IEC61850 text ConstructedDAs::Text +2024-09-07 12:38:50,189 [main] TRACE UmlSkipped - created (2104) WG10 IEC61850 text ConstructedDAs::Text +2024-09-07 12:38:50,189 [main] TRACE UmlSkipped - created (2105) WG10 IEC61850 text ConstructedDAs::Text +2024-09-07 12:38:50,189 [main] TRACE UmlSkipped - created (2106) WG10 IEC61850 text ConstructedDAs::ConstructedDAs : Quality.validity +2024-09-07 12:38:50,189 [main] TRACE UmlSkipped - created (2107) WG10 IEC61850 text ConstructedDAs::ConstructedDAs :Range configuration +2024-09-07 12:38:50,189 [main] TRACE UmlSkipped - created (2108) WG10 IEC61850 boundary ConstructedDAs:: +2024-09-07 12:38:50,189 [main] TRACE UmlDiagram - created (233) WG10 IEC61850 class ConstructedDAs::ConstructedDAs +2024-09-07 12:38:50,189 [main] TRACE UmlPackage - ---- created package FCDAs +2024-09-07 12:38:50,189 [main] TRACE UmlSkipped - created (2225) WG10 IEC61850 text FCDAs::IEC61850 : DataModelExample +2024-09-07 12:38:50,189 [main] TRACE UmlSkipped - created (2226) WG10 IEC61850 text FCDAs::FCDAs :FCDAs-ST-OR +2024-09-07 12:38:50,189 [main] TRACE UmlSkipped - created (2227) WG10 IEC61850 text FCDAs::FCDAs :FCDAs-SV-BL +2024-09-07 12:38:50,189 [main] TRACE UmlSkipped - created (2228) WG10 IEC61850 text FCDAs::FCDAs :FCDAs-SP-SG-SE +2024-09-07 12:38:50,189 [main] TRACE UmlSkipped - created (2229) WG10 IEC61850 text FCDAs::FCDAs :FCDAs-MX +2024-09-07 12:38:50,189 [main] TRACE UmlSkipped - created (2230) WG10 IEC61850 text FCDAs::FCDAs :FCDAs-CF-DC-EX +2024-09-07 12:38:50,189 [main] TRACE UmlDiagram - created (238) WG10 IEC61850 class FCDAs::FCDAs +2024-09-07 12:38:50,189 [main] TRACE UmlPackage - ---- created package CommonDataClasses +2024-09-07 12:38:50,189 [main] TRACE UmlSkipped - created (2239) WG10 IEC61850 text CommonDataClasses::CommonDataClasses : Concept of substitution +2024-09-07 12:38:50,189 [main] TRACE UmlSkipped - created (2241) WG10 IEC61850 boundary CommonDataClasses:: +2024-09-07 12:38:50,190 [main] TRACE UmlDiagram - created (244) WG10 IEC61850 class CommonDataClasses::CommonDataClasses +2024-09-07 12:38:50,190 [main] TRACE UmlDiagram - created (245) WG10 IEC61850 class CommonDataClasses::CDCRelationToACSI +2024-09-07 12:38:50,190 [main] TRACE UmlPackage - ---- created package CDCStatusInfo +2024-09-07 12:38:50,190 [main] TRACE UmlSkipped - created (2259) WG10 IEC61850 text CDCStatusInfo::CDCStatusInfo : Two-dimensional histogram +2024-09-07 12:38:50,190 [main] TRACE UmlSkipped - created (2260) WG10 IEC61850 text CDCStatusInfo::CDCStatusInfo : One-dimensional histogram +2024-09-07 12:38:50,190 [main] TRACE UmlDiagram - created (248) WG10 IEC61850 class CDCStatusInfo::CDCStatusInfo +2024-09-07 12:38:50,190 [main] TRACE UmlPackage - ---- created package CDCAnalogueInfo +2024-09-07 12:38:50,190 [main] TRACE UmlDiagram - created (251) WG10 IEC61850 class CDCAnalogueInfo::CDCAnalogueInfo +2024-09-07 12:38:50,190 [main] TRACE UmlPackage - ---- created package CDCControl +2024-09-07 12:38:50,190 [main] TRACE UmlSkipped - created (2289) WG10 IEC61850 text CDCControl::CDCControl :Attributes for command testing +2024-09-07 12:38:50,190 [main] TRACE UmlDiagram - created (255) WG10 IEC61850 class CDCControl::CDCControl +2024-09-07 12:38:50,190 [main] TRACE UmlPackage - ---- created package CDCStatusSet +2024-09-07 12:38:50,190 [main] TRACE UmlSkipped - created (2292) WG10 IEC61850 note CDCStatusSet:: +2024-09-07 12:38:50,190 [main] TRACE UmlDiagram - created (258) WG10 IEC61850 class CDCStatusSet::CDCStatusSet +2024-09-07 12:38:50,190 [main] TRACE UmlPackage - ---- created package CDCAnalogueSet +2024-09-07 12:38:50,190 [main] TRACE UmlSkipped - created (2302) WG10 IEC61850 note CDCAnalogueSet:: +2024-09-07 12:38:50,190 [main] TRACE UmlSkipped - created (2303) WG10 IEC61850 note CDCAnalogueSet:: +2024-09-07 12:38:50,190 [main] TRACE UmlSkipped - created (2309) WG10 IEC61850 text CDCAnalogueSet::CDCAnalogueSet : Two-dimensional curve +2024-09-07 12:38:50,190 [main] TRACE UmlSkipped - created (2310) WG10 IEC61850 text CDCAnalogueSet::CDCAnalogueSet : Multiple two-dimensional curves +2024-09-07 12:38:50,190 [main] TRACE UmlDiagram - created (260) WG10 IEC61850 class CDCAnalogueSet::CDCAnalogueSet +2024-09-07 12:38:50,190 [main] TRACE UmlPackage - ---- created package CDCDescription +2024-09-07 12:38:50,190 [main] TRACE UmlSkipped - created (2312) WG10 IEC61850 note CDCDescription:: +2024-09-07 12:38:50,190 [main] TRACE UmlDiagram - created (263) WG10 IEC61850 class CDCDescription::CDCDescription +2024-09-07 12:38:50,190 [main] TRACE UmlPackage - ---- created package IEC61850_7_4 +2024-09-07 12:38:50,190 [main] TRACE UmlDiagram - created (264) WG10 IEC61850 class IEC61850_7_4::IEC61850_7_4 +2024-09-07 12:38:50,190 [main] TRACE UmlPackage - ---- created package Abbreviations +2024-09-07 12:38:50,190 [main] TRACE UmlPackage - ---- created package DetailedDiagrams +2024-09-07 12:38:50,190 [main] TRACE UmlDiagram - created (274) WG10 IEC61850 INF class DetailedDiagrams::AbbreviationsA-O +2024-09-07 12:38:50,190 [main] TRACE UmlPackage - ---- created package Functions +2024-09-07 12:38:50,190 [main] TRACE UmlPackage - ---- created package ProtectionEq +2024-09-07 12:38:50,190 [main] TRACE UmlSkipped - created (2362) WG10 IEC61850 note ProtectionEq:: +2024-09-07 12:38:50,190 [main] TRACE UmlDiagram - created (276) WG10 IEC61850 class ProtectionEq::ProtectionEq +2024-09-07 12:38:50,190 [main] TRACE UmlPackage - ---- created package ControlEq +2024-09-07 12:38:50,190 [main] TRACE UmlSkipped - created (2419) WG10 IEC61850 note ControlEq:: +2024-09-07 12:38:50,190 [main] TRACE UmlDiagram - created (277) WG10 IEC61850 class ControlEq::ControlEq +2024-09-07 12:38:50,191 [main] TRACE UmlPackage - ---- created package MeasurementsAndMetering +2024-09-07 12:38:50,191 [main] TRACE UmlSkipped - created (2451) WG10 IEC61850 note MeasurementsAndMetering:: +2024-09-07 12:38:50,191 [main] TRACE UmlDiagram - created (280) WG10 IEC61850 class MeasurementsAndMetering::MeasurementsAndMetering +2024-09-07 12:38:50,191 [main] TRACE UmlPackage - ---- created package SystemWide +2024-09-07 12:38:50,191 [main] TRACE UmlDiagram - created (281) WG10 IEC61850 class SystemWide::SystemWide +2024-09-07 12:38:50,191 [main] TRACE UmlPackage - ---- created package PrimaryEq +2024-09-07 12:38:50,191 [main] TRACE UmlDiagram - created (282) WG10 IEC61850 class PrimaryEq::PrimaryEq +2024-09-07 12:38:50,191 [main] TRACE UmlPackage - ---- created package DOEnums +2024-09-07 12:38:50,191 [main] TRACE UmlSkipped - created (2554) WG10 IEC61850 note DOEnums:: +2024-09-07 12:38:50,191 [main] TRACE UmlSkipped - created (2555) WG10 IEC61850 note DOEnums:: +2024-09-07 12:38:50,191 [main] TRACE UmlSkipped - created (2556) WG10 IEC61850 note DOEnums:: +2024-09-07 12:38:50,191 [main] TRACE UmlSkipped - created (2563) WG10 IEC61850 note DOEnums:: +2024-09-07 12:38:50,191 [main] TRACE UmlSkipped - created (2615) WG10 IEC61850 text DOEnums::$diagram://{0D26B081-293D-4b46-BF1C-0EDBD3055405} +2024-09-07 12:38:50,191 [main] TRACE UmlSkipped - created (2617) WG10 IEC61850 text DOEnums::LogicalNodeEnums :DOEnums-2 +2024-09-07 12:38:50,191 [main] TRACE UmlDiagram - created (284) WG10 IEC61850 class DOEnums::DOEnums-1 +2024-09-07 12:38:50,191 [main] TRACE UmlPackage - ---- created package DerivedDAs +2024-09-07 12:38:50,191 [main] TRACE UmlSkipped - created (2619) WG10 IEC61850 note DerivedDAs:: +2024-09-07 12:38:50,191 [main] TRACE UmlSkipped - created (2666) WG10 IEC61850 text DerivedDAs::LogicalNodeEnums :DOEnums-1 +2024-09-07 12:38:50,191 [main] TRACE UmlSkipped - created (2667) WG10 IEC61850 text DerivedDAs::LogicalNodeEnums :DOEnums-2 +2024-09-07 12:38:50,191 [main] TRACE UmlSkipped - created (2668) WG10 IEC61850 boundary DerivedDAs:: +2024-09-07 12:38:50,191 [main] TRACE UmlDiagram - created (288) WG10 IEC61850 class DerivedDAs::DerivedDAs +2024-09-07 12:38:50,191 [main] TRACE UmlPackage - ---- created package DerivedCDCs +2024-09-07 12:38:50,191 [main] TRACE UmlSkipped - created (2670) WG10 IEC61850 note DerivedCDCs:: +2024-09-07 12:38:50,191 [main] TRACE UmlSkipped - created (2722) WG10 IEC61850 boundary DerivedCDCs:: +2024-09-07 12:38:50,191 [main] TRACE UmlDiagram - created (289) WG10 IEC61850 class DerivedCDCs::DerivedCDCs +2024-09-07 12:38:50,191 [main] TRACE UmlPackage - ---- created package LogicalNodes +2024-09-07 12:38:50,191 [main] TRACE UmlSkipped - created (2724) WG10 IEC61850 note LogicalNodes:: +2024-09-07 12:38:50,191 [main] TRACE UmlSkipped - created (2725) WG10 IEC61850 note LogicalNodes:: +2024-09-07 12:38:50,191 [main] TRACE UmlSkipped - created (2727) WG10 IEC61850 note LogicalNodes:: +2024-09-07 12:38:50,191 [main] TRACE UmlSkipped - created (2740) WG10 IEC61850 boundary LogicalNodes:: +2024-09-07 12:38:50,191 [main] TRACE UmlSkipped - created (3031) WG10 IEC61850 note LogicalNodes:: +2024-09-07 12:38:50,191 [main] TRACE UmlSkipped - created (3081) WG10 IEC61850 note LogicalNodes:: +2024-09-07 12:38:50,192 [main] TRACE UmlDiagram - created (291) WG10 IEC61850 class LogicalNodes::LogicalNodes +2024-09-07 12:38:50,192 [main] TRACE UmlDiagram - created (290) WG10 IEC61850 class LogicalNodes::LNRelationToACSI +2024-09-07 12:38:50,192 [main] TRACE UmlPackage - ---- created package DocLogicalNodes +2024-09-07 12:38:50,192 [main] TRACE UmlSkipped - created (2742) WG10 IEC61850 INF note DocLogicalNodes:: +2024-09-07 12:38:50,192 [main] TRACE UmlSkipped - created (2743) WG10 IEC61850 INF note DocLogicalNodes:: +2024-09-07 12:38:50,192 [main] TRACE UmlSkipped - created (2744) WG10 IEC61850 INF note DocLogicalNodes:: +2024-09-07 12:38:50,194 [main] TRACE UmlSkipped - created (2745) WG10 IEC61850 INF state machine DocLogicalNodes::RecloserState +2024-09-07 12:38:50,194 [main] TRACE UmlDiagram - created (294) WG10 IEC61850 INF package DocLogicalNodes::DocLogicalNodes +2024-09-07 12:38:50,194 [main] TRACE UmlDiagram - created (293) WG10 IEC61850 INF statechart DocLogicalNodes::RecloserState +2024-09-07 12:38:50,194 [main] TRACE UmlPackage - ---- created package LNGroupL +2024-09-07 12:38:50,195 [main] TRACE UmlSkipped - created (3040) WG10 IEC61850 note LNGroupL:: +2024-09-07 12:38:50,195 [main] TRACE UmlSkipped - created (3072) WG10 IEC61850 note LNGroupL:: +2024-09-07 12:38:50,195 [main] TRACE UmlDiagram - created (295) WG10 IEC61850 class LNGroupL::LNGroupL +2024-09-07 12:38:50,196 [main] TRACE UmlPackage - ---- created package LNGroupC +2024-09-07 12:38:50,196 [main] TRACE UmlSkipped - created (3065) WG10 IEC61850 note LNGroupC:: +2024-09-07 12:38:50,196 [main] TRACE UmlDiagram - created (297) WG10 IEC61850 class LNGroupC::LNGroupC +2024-09-07 12:38:50,196 [main] TRACE UmlPackage - ---- created package LNGroupG +2024-09-07 12:38:50,196 [main] TRACE UmlSkipped - created (2813) WG10 IEC61850 note LNGroupG:: +2024-09-07 12:38:50,196 [main] TRACE UmlDiagram - created (300) WG10 IEC61850 class LNGroupG::LNGroupG +2024-09-07 12:38:50,196 [main] TRACE UmlPackage - ---- created package LNGroupM +2024-09-07 12:38:50,196 [main] TRACE UmlSkipped - created (2843) WG10 IEC61850 note LNGroupM:: +2024-09-07 12:38:50,196 [main] TRACE UmlSkipped - created (2858) WG10 IEC61850 text LNGroupM::LNGroupM : LNGroupM1 +2024-09-07 12:38:50,196 [main] TRACE UmlDiagram - created (304) WG10 IEC61850 class LNGroupM::LNGroupM2 +2024-09-07 12:38:50,196 [main] TRACE UmlPackage - ---- created package LNGroupP +2024-09-07 12:38:50,196 [main] TRACE UmlSkipped - created (2869) WG10 IEC61850 note LNGroupP:: +2024-09-07 12:38:50,196 [main] TRACE UmlSkipped - created (2914) WG10 IEC61850 text LNGroupP::LNGroupP : LNGroupP2 +2024-09-07 12:38:50,196 [main] TRACE UmlSkipped - created (2915) WG10 IEC61850 text LNGroupP::Text +2024-09-07 12:38:50,196 [main] TRACE UmlSkipped - created (2916) WG10 IEC61850 text LNGroupP::LNGroupP : Load area and reach settings +2024-09-07 12:38:50,197 [main] TRACE UmlSkipped - created (2917) WG10 IEC61850 text LNGroupP::Text +2024-09-07 12:38:50,197 [main] TRACE UmlDiagram - created (305) WG10 IEC61850 class LNGroupP::LNGroupP1 +2024-09-07 12:38:50,197 [main] TRACE UmlPackage - ---- created package LNGroupR +2024-09-07 12:38:50,197 [main] TRACE UmlDiagram - created (309) WG10 IEC61850 class LNGroupR::LNGroupR +2024-09-07 12:38:50,197 [main] TRACE UmlPackage - ---- created package LNGroupZ +2024-09-07 12:38:50,197 [main] TRACE UmlSkipped - created (3063) WG10 IEC61850 note LNGroupZ:: +2024-09-07 12:38:50,197 [main] TRACE UmlDiagram - created (316) WG10 IEC61850 class LNGroupZ::LNGroupZ-1 +2024-09-07 12:38:50,197 [main] TRACE UmlPackage - ---- created top package WG17 +2024-09-07 12:38:50,197 [main] TRACE UmlDiagram - created (318) WG17 IEC61850 class WG17::WG17 +2024-09-07 12:38:50,197 [main] TRACE UmlPackage - ---- created package IEC51850_7_420 +2024-09-07 12:38:50,197 [main] TRACE UmlDiagram - created (327) WG17 IEC61850 package IEC51850_7_420::IEC51850_7_420 +2024-09-07 12:38:50,197 [main] TRACE UmlPackage - ---- created package DOEnums_7_420 +2024-09-07 12:38:50,197 [main] TRACE UmlDiagram - created (323) WG17 IEC61850 class DOEnums_7_420::DOEnums_7_420 +2024-09-07 12:38:50,197 [main] TRACE UmlPackage - ---- created package DerivedDAs_7_420 +2024-09-07 12:38:50,197 [main] TRACE UmlSkipped - created (3057) WG17 IEC61850 note DerivedDAs_7_420:: +2024-09-07 12:38:50,197 [main] TRACE UmlSkipped - created (3058) WG17 IEC61850 note DerivedDAs_7_420:: +2024-09-07 12:38:50,197 [main] TRACE UmlSkipped - created (3089) WG17 IEC61850 note DerivedDAs_7_420:: +2024-09-07 12:38:50,197 [main] TRACE UmlDiagram - created (324) WG17 IEC61850 class DerivedDAs_7_420::DerivedDAs_7_420 +2024-09-07 12:38:50,197 [main] TRACE UmlPackage - ---- created package DerivedCDCs_7_420 +2024-09-07 12:38:50,197 [main] TRACE UmlDiagram - created (325) WG17 IEC61850 class DerivedCDCs_7_420::DerivedCDCs_7_420 +2024-09-07 12:38:50,197 [main] TRACE UmlPackage - ---- created top package WG18 +2024-09-07 12:38:50,197 [main] TRACE UmlDiagram - created (319) WG18 IEC61850 class WG18::WG18 +2024-09-07 12:38:50,197 [main] TRACE UmlPackage - ---- created package Abbreviations_410 +2024-09-07 12:38:50,197 [main] TRACE UmlDiagram - created (320) WG18 IEC61850 class Abbreviations_410::Abbreviations_410 +2024-09-07 12:38:50,197 [main] TRACE UmlPackage - ---- created top package JWG25 +2024-09-07 12:38:50,197 [main] TRACE UmlDiagram - created (317) JWG25 IEC61850 class JWG25::JWG25 +2024-09-07 12:38:50,197 [main] TRACE UmlPackage - ---- created model package MyCimExtensions +2024-09-07 12:38:50,197 [main] TRACE UmlSkipped - created (3076) OTHER_CIM CIM other <> MyCimExtensions::DFD_Process1 +2024-09-07 12:38:50,197 [main] TRACE UmlSkipped - created (3079) OTHER_CIM CIM note MyCimExtensions:: +2024-09-07 12:38:50,197 [main] TRACE UmlDiagram - created (168) OTHER_CIM CIM class <> MyCimExtensions::MyCimExtensions +2024-09-07 12:38:50,197 [main] TRACE UmlPackage - ---- created top package Ext1 +2024-09-07 12:38:50,197 [main] TRACE UmlSkipped - created (3458) OTHER_CIM CIM other Ext1:: - Class 'Apple' - Class 'Apple' +2024-09-07 12:38:50,197 [main] TRACE UmlSkipped - created (3460) OTHER_CIM CIM other Ext1:: - Activity 'DFD_Process1' - Activity 'DFD_Process1' +2024-09-07 12:38:50,197 [main] TRACE UmlSkipped - created (1527) OTHER_CIM CIM note Ext1:: +2024-09-07 12:38:50,198 [main] TRACE UmlSkipped - created (3037) OTHER_CIM CIM note Ext1:: +2024-09-07 12:38:50,198 [main] TRACE UmlDiagram - created (169) OTHER_CIM CIM class Ext1::Ext1 +2024-09-07 12:38:50,198 [main] TRACE UmlPackage - ---- created top package Package with space +2024-09-07 12:38:50,198 [main] TRACE UmlSkipped - created (3461) OTHER_CIM CIM other Package with space:: - Class 'DFD_DataStore1' - Class 'DFD_DataStore1' +2024-09-07 12:38:50,198 [main] TRACE UmlSkipped - created (3462) OTHER_CIM CIM other Package with space:: - Class 'DFD_External1' - Class 'DFD_External1' +2024-09-07 12:38:50,198 [main] TRACE UmlDiagram - created (182) OTHER_CIM CIM class Package with space::Package with space +2024-09-07 12:38:50,198 [main] TRACE UmlPackage - ---- created model package My61850Extensions +2024-09-07 12:38:50,198 [main] TRACE UmlDiagram - created (172) OTHER_IEC61850 IEC61850 package My61850Extensions::My61850Extensions +2024-09-07 12:38:50,198 [main] TRACE UmlPackage - ---- created top package Ext2 +2024-09-07 12:38:50,198 [main] TRACE UmlSkipped - created (1528) OTHER_IEC61850 IEC61850 note Ext2:: +2024-09-07 12:38:50,198 [main] TRACE UmlDiagram - created (170) OTHER_IEC61850 IEC61850 class Ext2::Ext2 +2024-09-07 12:38:50,198 [main] TRACE UmlPackage - ---- created model package NewNature +2024-09-07 12:38:50,198 [main] TRACE UmlDiagram - created (329) OTHER_CIM CIM package NewNature::NewNature +2024-09-07 12:38:50,198 [main] INFO EaModelBuilder - creating in-memory root classes and enum literals ... +2024-09-07 12:38:50,198 [main] TRACE UmlClass - created (1495) OTHER_CIM CIM INF root class <> Informative::Class1 +2024-09-07 12:38:50,198 [main] TRACE UmlClass - created (1514) OTHER_CIM CIM INF root class Informative::End1ForAssocClass +2024-09-07 12:38:50,198 [main] TRACE UmlClass - created (1515) OTHER_CIM CIM INF root class Informative::End2ForAssocClass +2024-09-07 12:38:50,198 [main] TRACE UmlClass - created (1517) OTHER_CIM CIM INF root class Informative::AssocClass +2024-09-07 12:38:50,198 [main] TRACE UmlClass - created (1518) OTHER_CIM CIM INF root class Informative::HasIllegalTypeForAttr +2024-09-07 12:38:50,198 [main] TRACE UmlClass - created (1532) OTHER_CIM CIM INF compound <> Informative::SomeSimpleType +2024-09-07 12:38:50,198 [main] TRACE UmlClass - created (572) WG13 CIM root class IEC61970::IEC61970CIMVersion +2024-09-07 12:38:50,198 [main] TRACE UmlClass - created (1450) WG13 CIM INF root class InformativeAndPrivate::InfClass2 +2024-09-07 12:38:50,198 [main] TRACE UmlClass - created (1449) WG13 CIM INF root class InformativeAndPrivate::InfClassContainingEmbeddedClass +2024-09-07 12:38:50,199 [main] TRACE UmlSkipped - created (1496) WG13 CIM INF other InfClassContainingEmbeddedClass.EmbeddedClass +2024-09-07 12:38:50,199 [main] TRACE UmlClass - created (1496) WG13 CIM INF root class InformativeAndPrivate::EmbeddedClass +2024-09-07 12:38:50,199 [main] TRACE UmlClass - created (640) WG13 CIM datatype <> Domain::AbsoluteDateTime +2024-09-07 12:38:50,199 [main] TRACE UmlClass - created (638) WG13 CIM datatype <> Domain::ActivePower +2024-09-07 12:38:50,199 [main] TRACE UmlClass - created (629) WG13 CIM datatype <> Domain::ActivePowerChangeRate +2024-09-07 12:38:50,199 [main] TRACE UmlClass - created (616) WG13 CIM datatype <> Domain::ApparentPower +2024-09-07 12:38:50,199 [main] TRACE UmlClass - created (619) WG13 CIM primitive <> Domain::Boolean +2024-09-07 12:38:50,199 [main] TRACE UmlClass - created (600) WG13 CIM enumeration <> Domain::Currency +2024-09-07 12:38:50,217 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,217 [main] TRACE UmlAttribute - created (1287) WG13 CIM literal <> Domain::Currency.USD +2024-09-07 12:38:50,217 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,217 [main] TRACE UmlAttribute - created (1288) WG13 CIM literal <> Domain::Currency.EUR +2024-09-07 12:38:50,218 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,218 [main] TRACE UmlAttribute - created (1289) WG13 CIM literal <> Domain::Currency.AUD +2024-09-07 12:38:50,218 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,218 [main] TRACE UmlAttribute - created (1290) WG13 CIM literal <> Domain::Currency.CAD +2024-09-07 12:38:50,218 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,218 [main] TRACE UmlAttribute - created (1291) WG13 CIM literal <> Domain::Currency.CHF +2024-09-07 12:38:50,218 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,218 [main] TRACE UmlAttribute - created (1292) WG13 CIM literal <> Domain::Currency.CNY +2024-09-07 12:38:50,218 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,218 [main] TRACE UmlAttribute - created (1293) WG13 CIM literal <> Domain::Currency.DKK +2024-09-07 12:38:50,218 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,218 [main] TRACE UmlAttribute - created (1294) WG13 CIM literal <> Domain::Currency.GBP +2024-09-07 12:38:50,218 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,218 [main] TRACE UmlAttribute - created (1295) WG13 CIM literal <> Domain::Currency.JPY +2024-09-07 12:38:50,218 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,218 [main] TRACE UmlAttribute - created (1296) WG13 CIM literal <> Domain::Currency.NOK +2024-09-07 12:38:50,218 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,218 [main] TRACE UmlAttribute - created (1297) WG13 CIM literal <> Domain::Currency.RUR +2024-09-07 12:38:50,218 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,219 [main] TRACE UmlAttribute - created (1298) WG13 CIM literal <> Domain::Currency.SEK +2024-09-07 12:38:50,219 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,219 [main] TRACE UmlAttribute - created (1299) WG13 CIM literal <> Domain::Currency.INR +2024-09-07 12:38:50,219 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,219 [main] TRACE UmlAttribute - created (1300) WG13 CIM literal <> Domain::Currency.other +2024-09-07 12:38:50,219 [main] TRACE UmlClass - created (615) WG13 CIM primitive <> Domain::Float +2024-09-07 12:38:50,219 [main] TRACE UmlClass - created (610) WG13 CIM primitive <> Domain::Integer +2024-09-07 12:38:50,219 [main] TRACE UmlClass - created (609) WG13 CIM datatype <> Domain::Money +2024-09-07 12:38:50,219 [main] TRACE UmlClass - created (614) WG13 CIM datatype <> Domain::PerCent +2024-09-07 12:38:50,219 [main] TRACE UmlClass - created (620) WG13 CIM datatype <> Domain::Seconds +2024-09-07 12:38:50,219 [main] TRACE UmlClass - created (637) WG13 CIM primitive <> Domain::String +2024-09-07 12:38:50,219 [main] TRACE UmlClass - created (634) WG13 CIM enumeration <> Domain::UnitMultiplier +2024-09-07 12:38:50,219 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,219 [main] TRACE UmlAttribute - created (1417) WG13 CIM literal <> Domain::UnitMultiplier.p +2024-09-07 12:38:50,219 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,219 [main] TRACE UmlAttribute - created (1418) WG13 CIM literal <> Domain::UnitMultiplier.n +2024-09-07 12:38:50,219 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,219 [main] TRACE UmlAttribute - created (1419) WG13 CIM literal <> Domain::UnitMultiplier.micro +2024-09-07 12:38:50,220 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,220 [main] TRACE UmlAttribute - created (1420) WG13 CIM literal <> Domain::UnitMultiplier.m +2024-09-07 12:38:50,220 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,220 [main] TRACE UmlAttribute - created (1421) WG13 CIM literal <> Domain::UnitMultiplier.c +2024-09-07 12:38:50,220 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,220 [main] TRACE UmlAttribute - created (1422) WG13 CIM literal <> Domain::UnitMultiplier.d +2024-09-07 12:38:50,220 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,220 [main] TRACE UmlAttribute - created (1423) WG13 CIM literal <> Domain::UnitMultiplier.k +2024-09-07 12:38:50,220 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,220 [main] TRACE UmlAttribute - created (1424) WG13 CIM literal <> Domain::UnitMultiplier.M +2024-09-07 12:38:50,220 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,220 [main] TRACE UmlAttribute - created (1425) WG13 CIM literal <> Domain::UnitMultiplier.G +2024-09-07 12:38:50,220 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,220 [main] TRACE UmlAttribute - created (1426) WG13 CIM literal <> Domain::UnitMultiplier.T +2024-09-07 12:38:50,220 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,220 [main] TRACE UmlAttribute - created (1427) WG13 CIM literal <> Domain::UnitMultiplier.none +2024-09-07 12:38:50,220 [main] TRACE UmlClass - created (613) WG13 CIM enumeration <> Domain::UnitSymbol +2024-09-07 12:38:50,220 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,220 [main] TRACE UmlAttribute - created (1331) WG13 CIM literal <> Domain::UnitSymbol.VA +2024-09-07 12:38:50,220 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,220 [main] TRACE UmlAttribute - created (1332) WG13 CIM literal <> Domain::UnitSymbol.W +2024-09-07 12:38:50,220 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,220 [main] TRACE UmlAttribute - created (1333) WG13 CIM literal <> Domain::UnitSymbol.VAr +2024-09-07 12:38:50,220 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,220 [main] TRACE UmlAttribute - created (1334) WG13 CIM literal <> Domain::UnitSymbol.VAh +2024-09-07 12:38:50,220 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,221 [main] TRACE UmlAttribute - created (1335) WG13 CIM literal Domain::UnitSymbol.Wh +2024-09-07 12:38:50,221 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,221 [main] TRACE UmlAttribute - created (1336) WG13 CIM literal <> Domain::UnitSymbol.VArh +2024-09-07 12:38:50,221 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,221 [main] TRACE UmlAttribute - created (1337) WG13 CIM literal <> Domain::UnitSymbol.V +2024-09-07 12:38:50,221 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,221 [main] TRACE UmlAttribute - created (1338) WG13 CIM literal <> Domain::UnitSymbol.ohm +2024-09-07 12:38:50,221 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,221 [main] TRACE UmlAttribute - created (1339) WG13 CIM literal <> Domain::UnitSymbol.A +2024-09-07 12:38:50,221 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,221 [main] TRACE UmlAttribute - created (1340) WG13 CIM literal <> Domain::UnitSymbol.F +2024-09-07 12:38:50,221 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,221 [main] TRACE UmlAttribute - created (1341) WG13 CIM literal <> Domain::UnitSymbol.H +2024-09-07 12:38:50,221 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,221 [main] TRACE UmlAttribute - created (1342) WG13 CIM literal <> Domain::UnitSymbol.ºC +2024-09-07 12:38:50,221 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,221 [main] TRACE UmlAttribute - created (1343) WG13 CIM literal <> Domain::UnitSymbol.s +2024-09-07 12:38:50,221 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,221 [main] TRACE UmlAttribute - created (1344) WG13 CIM literal <> Domain::UnitSymbol.min +2024-09-07 12:38:50,221 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,221 [main] TRACE UmlAttribute - created (1345) WG13 CIM literal <> Domain::UnitSymbol.h +2024-09-07 12:38:50,221 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,221 [main] TRACE UmlAttribute - created (1346) WG13 CIM literal <> Domain::UnitSymbol.deg +2024-09-07 12:38:50,221 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,221 [main] TRACE UmlAttribute - created (1347) WG13 CIM literal <> Domain::UnitSymbol.rad +2024-09-07 12:38:50,221 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,221 [main] TRACE UmlAttribute - created (1348) WG13 CIM literal <> Domain::UnitSymbol.J +2024-09-07 12:38:50,222 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,222 [main] TRACE UmlAttribute - created (1349) WG13 CIM literal <> Domain::UnitSymbol.N +2024-09-07 12:38:50,222 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,222 [main] TRACE UmlAttribute - created (1350) WG13 CIM literal <> Domain::UnitSymbol.S +2024-09-07 12:38:50,222 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,222 [main] TRACE UmlAttribute - created (1351) WG13 CIM literal <> Domain::UnitSymbol.none +2024-09-07 12:38:50,222 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,222 [main] TRACE UmlAttribute - created (1352) WG13 CIM literal <> Domain::UnitSymbol.Hz +2024-09-07 12:38:50,222 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,222 [main] TRACE UmlAttribute - created (1353) WG13 CIM literal <> Domain::UnitSymbol.g +2024-09-07 12:38:50,222 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,222 [main] TRACE UmlAttribute - created (1354) WG13 CIM literal <> Domain::UnitSymbol.Pa +2024-09-07 12:38:50,222 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,222 [main] TRACE UmlAttribute - created (1355) WG13 CIM literal <> Domain::UnitSymbol.m +2024-09-07 12:38:50,222 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,222 [main] TRACE UmlAttribute - created (1356) WG13 CIM literal <> Domain::UnitSymbol.m2 +2024-09-07 12:38:50,222 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,222 [main] TRACE UmlAttribute - created (1357) WG13 CIM literal <> Domain::UnitSymbol.m3 +2024-09-07 12:38:50,222 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,222 [main] TRACE UmlAttribute - created (1358) WG13 CIM literal <> Domain::UnitSymbol.V/VAr +2024-09-07 12:38:50,222 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,222 [main] TRACE UmlAttribute - created (1359) WG13 CIM literal <> Domain::UnitSymbol.W/Hz +2024-09-07 12:38:50,222 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,222 [main] TRACE UmlAttribute - created (1360) WG13 CIM literal <> Domain::UnitSymbol.J/s +2024-09-07 12:38:50,223 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,223 [main] TRACE UmlAttribute - created (1361) WG13 CIM literal <> Domain::UnitSymbol.s-1 +2024-09-07 12:38:50,223 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,223 [main] TRACE UmlAttribute - created (1362) WG13 CIM literal <> Domain::UnitSymbol.kg/J +2024-09-07 12:38:50,223 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,223 [main] TRACE UmlAttribute - created (1363) WG13 CIM literal <> Domain::UnitSymbol.W/s +2024-09-07 12:38:50,223 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,223 [main] TRACE UmlAttribute - created (1364) WG13 CIM literal <> Domain::UnitSymbol.Hz-1 +2024-09-07 12:38:50,223 [main] TRACE UmlClass - created (602) WG13 CIM datatype <> Domain::Voltage +2024-09-07 12:38:50,223 [main] TRACE UmlClass - created (1533) WG13 CIM enumeration <> Domain::WithSingleLiteral +2024-09-07 12:38:50,223 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,223 [main] TRACE UmlAttribute - created (3289) WG13 CIM literal <> Domain::WithSingleLiteral.singleLiteral +2024-09-07 12:38:50,223 [main] TRACE UmlClass - created (1540) WG13 CIM enumeration <> Domain::YesNo +2024-09-07 12:38:50,223 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,223 [main] TRACE UmlAttribute - created (3299) WG13 CIM literal <> Domain::YesNo.Yes +2024-09-07 12:38:50,223 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,223 [main] TRACE UmlAttribute - created (3300) WG13 CIM literal <> Domain::YesNo.No +2024-09-07 12:38:50,223 [main] TRACE UmlClass - created (858) WG13 CIM private enumeration <> Core::BreakerConfiguration +2024-09-07 12:38:50,223 [main] TRACE UmlSkipped - created (3467) WG13 CIM note link BreakerConfiguration. - ? - ? +2024-09-07 12:38:50,223 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,223 [main] TRACE UmlAttribute - created (2073) WG13 CIM literal <> Core::BreakerConfiguration.singleBreaker +2024-09-07 12:38:50,225 [main] TRACE UmlConstraint - created attribute index constraint Core::BreakerConfiguration.singleBreaker {singleBreakerConstraintNoType = text} +2024-09-07 12:38:50,225 [main] TRACE UmlConstraint - created attribute index constraint Core::BreakerConfiguration.singleBreaker {processContstraint = process constraint text} +2024-09-07 12:38:50,225 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,225 [main] TRACE UmlAttribute - created (2074) WG13 CIM literal <> Core::BreakerConfiguration.breakerAndAHalf +2024-09-07 12:38:50,225 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,225 [main] TRACE UmlAttribute - created (2075) WG13 CIM literal <> Core::BreakerConfiguration.doubleBreaker +2024-09-07 12:38:50,225 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,225 [main] TRACE UmlAttribute - created (2076) WG13 CIM literal <> Core::BreakerConfiguration.noBreaker +2024-09-07 12:38:50,225 [main] TRACE UmlClass - created (878) WG13 CIM protected enumeration <> Core::BusbarConfiguration +2024-09-07 12:38:50,225 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,225 [main] TRACE UmlAttribute - created (2110) WG13 CIM literal <> Core::BusbarConfiguration.singleBus +2024-09-07 12:38:50,225 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,226 [main] TRACE UmlAttribute - created (2111) WG13 CIM literal <> Core::BusbarConfiguration.doubleBus +2024-09-07 12:38:50,226 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,226 [main] TRACE UmlAttribute - created (2112) WG13 CIM literal <> Core::BusbarConfiguration.mainWithTransfer +2024-09-07 12:38:50,226 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,226 [main] TRACE UmlAttribute - created (2113) WG13 CIM literal <> Core::BusbarConfiguration.ringBus +2024-09-07 12:38:50,226 [main] TRACE UmlClass - created (876) WG13 CIM root class <> Core::OperatingShare +2024-09-07 12:38:50,226 [main] TRACE UmlSkipped - created (3468) WG13 CIM note link OperatingShare. - ? - ? +2024-09-07 12:38:50,226 [main] TRACE UmlClass - created (856) WG13 CIM enumeration <> Core::PhaseCode +2024-09-07 12:38:50,226 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,226 [main] TRACE UmlAttribute - created (2054) WG13 CIM literal <> Core::PhaseCode.ABCN +2024-09-07 12:38:50,226 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,226 [main] TRACE UmlAttribute - created (2055) WG13 CIM literal <> Core::PhaseCode.ABC +2024-09-07 12:38:50,226 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,226 [main] TRACE UmlAttribute - created (2056) WG13 CIM literal <> Core::PhaseCode.ABN +2024-09-07 12:38:50,226 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,226 [main] TRACE UmlAttribute - created (2057) WG13 CIM literal <> Core::PhaseCode.ACN +2024-09-07 12:38:50,226 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,226 [main] TRACE UmlAttribute - created (2058) WG13 CIM literal <> Core::PhaseCode.BCN +2024-09-07 12:38:50,226 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,226 [main] TRACE UmlAttribute - created (2059) WG13 CIM literal <> Core::PhaseCode.AB +2024-09-07 12:38:50,226 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,226 [main] TRACE UmlAttribute - created (2060) WG13 CIM literal <> Core::PhaseCode.AC +2024-09-07 12:38:50,226 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,226 [main] TRACE UmlAttribute - created (2061) WG13 CIM literal <> Core::PhaseCode.BC +2024-09-07 12:38:50,226 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,226 [main] TRACE UmlAttribute - created (2062) WG13 CIM literal <> Core::PhaseCode.AN +2024-09-07 12:38:50,226 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,227 [main] TRACE UmlAttribute - created (2063) WG13 CIM literal <> Core::PhaseCode.BN +2024-09-07 12:38:50,227 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,227 [main] TRACE UmlAttribute - created (2064) WG13 CIM literal <> Core::PhaseCode.CN +2024-09-07 12:38:50,227 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,227 [main] TRACE UmlAttribute - created (2065) WG13 CIM literal <> Core::PhaseCode.A +2024-09-07 12:38:50,227 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,227 [main] TRACE UmlAttribute - created (2066) WG13 CIM literal <> Core::PhaseCode.B +2024-09-07 12:38:50,227 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,227 [main] TRACE UmlAttribute - created (2067) WG13 CIM literal <> Core::PhaseCode.C +2024-09-07 12:38:50,227 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,227 [main] TRACE UmlAttribute - created (2068) WG13 CIM literal <> Core::PhaseCode.N +2024-09-07 12:38:50,227 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,228 [main] TRACE UmlAttribute - created (3246) WG13 CIM literal <> Core::PhaseCode.splitSecondary1N +2024-09-07 12:38:50,228 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,228 [main] TRACE UmlAttribute - created (3247) WG13 CIM literal <> Core::PhaseCode.splitSecondary2N +2024-09-07 12:38:50,228 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,228 [main] TRACE UmlAttribute - created (3248) WG13 CIM literal <> Core::PhaseCode.splitSecondary12N +2024-09-07 12:38:50,228 [main] TRACE UmlClass - created (851) WG13 CIM root class Core::IdentifiedObject +2024-09-07 12:38:50,228 [main] TRACE UmlClass - created (1513) WG13 CIM enumeration <> Topology::TestEnum +2024-09-07 12:38:50,228 [main] TRACE ValueRange - 'initial J/m²' has no separator indicating range. +2024-09-07 12:38:50,228 [main] TRACE UmlAttribute - created (3282) WG13 CIM literal <> Topology::TestEnum.J/m² = initial J/m² +2024-09-07 12:38:50,228 [main] TRACE ValueRange - 'initial µ' has no separator indicating range. +2024-09-07 12:38:50,228 [main] TRACE UmlAttribute - created (3283) WG13 CIM literal <> Topology::TestEnum.µ = initial µ +2024-09-07 12:38:50,228 [main] TRACE UmlClass - created (3045) WG13 CIM enumeration <> TestEnums::EnumWithSomeIntCodes +2024-09-07 12:38:50,228 [main] TRACE UmlSkipped - created (3428) WG13 CIM note link EnumWithSomeIntCodes. - ? - ? +2024-09-07 12:38:50,228 [main] TRACE ValueRange - '10' has no separator indicating range. +2024-09-07 12:38:50,228 [main] TRACE UmlAttribute - created (6663) WG13 CIM literal <> TestEnums::EnumWithSomeIntCodes.lit10 = 10 +2024-09-07 12:38:50,228 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,228 [main] TRACE UmlAttribute - created (6664) WG13 CIM literal <> TestEnums::EnumWithSomeIntCodes.lit20noCode +2024-09-07 12:38:50,228 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-07 12:38:50,229 [main] TRACE UmlAttribute - created (6665) WG13 CIM literal <> TestEnums::EnumWithSomeIntCodes.lit30 = 3 +2024-09-07 12:38:50,229 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-07 12:38:50,229 [main] TRACE UmlAttribute - created (6666) WG13 CIM literal <> TestEnums::EnumWithSomeIntCodes.lit40 = 4 +2024-09-07 12:38:50,229 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 12:38:50,229 [main] TRACE UmlAttribute - created (6667) WG13 CIM literal <> TestEnums::EnumWithSomeIntCodes.lit50 = 1 +2024-09-07 12:38:50,229 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,229 [main] TRACE UmlAttribute - created (6668) WG13 CIM literal <> TestEnums::EnumWithSomeIntCodes.lit60noCode +2024-09-07 12:38:50,229 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 12:38:50,229 [main] TRACE UmlAttribute - created (6669) WG13 CIM literal <> TestEnums::EnumWithSomeIntCodes.lit70 = 2 +2024-09-07 12:38:50,229 [main] TRACE UmlClass - created (3047) WG13 CIM enumeration <> TestEnums::EnumWithStringCodes +2024-09-07 12:38:50,229 [main] TRACE UmlSkipped - created (3429) WG13 CIM note link EnumWithStringCodes. - ? - ? +2024-09-07 12:38:50,229 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 12:38:50,229 [main] TRACE UmlAttribute - created (6670) WG13 CIM literal <> TestEnums::EnumWithStringCodes.str1 = 1 +2024-09-07 12:38:50,229 [main] TRACE ValueRange - 'some string' has no separator indicating range. +2024-09-07 12:38:50,229 [main] TRACE UmlAttribute - created (6671) WG13 CIM literal <> TestEnums::EnumWithStringCodes.str2 = some string +2024-09-07 12:38:50,229 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,229 [main] TRACE UmlAttribute - created (6672) WG13 CIM literal <> TestEnums::EnumWithStringCodes.str3noCode +2024-09-07 12:38:50,229 [main] TRACE ValueRange - '3.14' has no separator indicating range. +2024-09-07 12:38:50,229 [main] TRACE UmlAttribute - created (6673) WG13 CIM literal <> TestEnums::EnumWithStringCodes.str4 = 3.14 +2024-09-07 12:38:50,229 [main] TRACE ValueRange - 'another string' has no separator indicating range. +2024-09-07 12:38:50,229 [main] TRACE UmlAttribute - created (6674) WG13 CIM literal <> TestEnums::EnumWithStringCodes.str5 = another string +2024-09-07 12:38:50,229 [main] TRACE UmlClass - created (3049) WG13 CIM enumeration <> TestEnums::EnumWithNonUniqueCodes +2024-09-07 12:38:50,229 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 12:38:50,229 [main] TRACE UmlAttribute - created (6675) WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c1 = 1 +2024-09-07 12:38:50,230 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 12:38:50,230 [main] TRACE UmlAttribute - created (6676) WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c2 = 1 +2024-09-07 12:38:50,230 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-07 12:38:50,230 [main] TRACE UmlAttribute - created (6677) WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c3 = 3 +2024-09-07 12:38:50,230 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-07 12:38:50,230 [main] TRACE UmlAttribute - created (6678) WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c4 = 4 +2024-09-07 12:38:50,230 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 12:38:50,230 [main] TRACE UmlAttribute - created (6679) WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c5 = 1 +2024-09-07 12:38:50,230 [main] TRACE ValueRange - '6' has no separator indicating range. +2024-09-07 12:38:50,230 [main] TRACE UmlAttribute - created (6680) WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c6 = 6 +2024-09-07 12:38:50,230 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-07 12:38:50,230 [main] TRACE UmlAttribute - created (6681) WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c7 = 4 +2024-09-07 12:38:50,230 [main] TRACE ValueRange - '8' has no separator indicating range. +2024-09-07 12:38:50,230 [main] TRACE UmlAttribute - created (6682) WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c8 = 8 +2024-09-07 12:38:50,230 [main] TRACE UmlClass - created (1452) WG14 CIM root class IEC61968::IEC61968Version +2024-09-07 12:38:50,230 [main] TRACE UmlClass - created (1546) WG14 CIM root class Assets::AssetInfo +2024-09-07 12:38:50,230 [main] TRACE UmlClass - created (1467) WG14 CIM datatype <> Other::BadDatatypes +2024-09-07 12:38:50,230 [main] TRACE UmlClass - created (1472) WG14 CIM root class Other::Equipment +2024-09-07 12:38:50,230 [main] TRACE UmlSkipped - created (2112) WG14 CIM note link Equipment. - ? - ? +2024-09-07 12:38:50,230 [main] TRACE UmlSkipped - created (3456) WG14 CIM note link Equipment. - ? - ? +2024-09-07 12:38:50,230 [main] TRACE UmlClass - created (1474) WG14 CIM root class Other::MyClass +2024-09-07 12:38:50,230 [main] TRACE UmlSkipped - created (2113) WG14 CIM note link MyClass. - ? - ? +2024-09-07 12:38:50,230 [main] TRACE UmlClass - created (1480) WG14 CIM enumeration <> Other::EmptyEnum +2024-09-07 12:38:50,231 [main] TRACE UmlClass - created (1481) WG14 CIM primitive <> Other::NonEmptyPrimitive +2024-09-07 12:38:50,231 [main] TRACE UmlClass - created (1537) WG14 CIM datatype <> Other::AnotherBadDatatype +2024-09-07 12:38:50,231 [main] TRACE UmlClass - created (1538) WG14 CIM compound <> Other::EmptyCompound +2024-09-07 12:38:50,235 [main] TRACE UmlClass - created (1555) WG10 IEC61850 other 61850 WG10::WG10UMLVersion +2024-09-07 12:38:50,235 [main] TRACE UmlClass - created (1586) WG10 IEC61850 unknown 61850 <> GenericModel::CommAddress +2024-09-07 12:38:50,235 [main] TRACE UmlClass - created (1588) WG10 IEC61850 unknown 61850 <> GenericModel::GenAssociationID +2024-09-07 12:38:50,235 [main] TRACE UmlClass - created (1597) WG10 IEC61850 enumeration <> GenericModel::GenFC +2024-09-07 12:38:50,235 [main] TRACE UmlClass - created (1609) WG10 IEC61850 enumeration <> GenericModel::GenPresenceConditions +2024-09-07 12:38:50,235 [main] TRACE UmlSkipped - created (2173) WG10 IEC61850 note link GenPresenceConditions. - ? - ? +2024-09-07 12:38:50,235 [main] TRACE UmlClass - created (1614) WG10 IEC61850 unknown 61850 <> GenericModel::GenTimeStamp +2024-09-07 12:38:50,240 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1585) WG10 IEC61850 null GenericModel::AccessPoint +2024-09-07 12:38:50,240 [main] TRACE UmlClass - created (1585) WG10 IEC61850 other 61850 GenericModel::AccessPoint +2024-09-07 12:38:50,240 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1587) WG10 IEC61850 null GenericModel::FileSystem +2024-09-07 12:38:50,240 [main] TRACE UmlClass - created (1587) WG10 IEC61850 other 61850 GenericModel::FileSystem +2024-09-07 12:38:50,240 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1589) WG10 IEC61850 null GenericModel::GenAtomicType +2024-09-07 12:38:50,240 [main] TRACE UmlClass - created (1589) WG10 IEC61850 other 61850 GenericModel::GenAtomicType +2024-09-07 12:38:50,241 [main] TRACE UmlSkipped - created (2177) WG10 IEC61850 note link GenAtomicType. - ? - ? +2024-09-07 12:38:50,241 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1590) WG10 IEC61850 null GenericModel::GenBOOLEAN +2024-09-07 12:38:50,241 [main] TRACE UmlClass - created (1590) WG10 IEC61850 other 61850 GenericModel::GenBOOLEAN +2024-09-07 12:38:50,241 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1591) WG10 IEC61850 null GenericModel::GenCommonDataClass +2024-09-07 12:38:50,241 [main] TRACE UmlClass - created (1591) WG10 IEC61850 other 61850 GenericModel::GenCommonDataClass +2024-09-07 12:38:50,241 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1592) WG10 IEC61850 null GenericModel::GenCompactType +2024-09-07 12:38:50,241 [main] TRACE UmlClass - created (1592) WG10 IEC61850 other 61850 GenericModel::GenCompactType +2024-09-07 12:38:50,241 [main] TRACE UmlSkipped - created (2172) WG10 IEC61850 note link GenCompactType. - ? - ? +2024-09-07 12:38:50,241 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1593) WG10 IEC61850 null GenericModel::GenConstructedType +2024-09-07 12:38:50,241 [main] TRACE UmlClass - created (1593) WG10 IEC61850 other 61850 GenericModel::GenConstructedType +2024-09-07 12:38:50,241 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1594) WG10 IEC61850 null GenericModel::GenDataAttribute +2024-09-07 12:38:50,241 [main] TRACE UmlClass - created (1594) WG10 IEC61850 other 61850 GenericModel::GenDataAttribute +2024-09-07 12:38:50,241 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1595) WG10 IEC61850 null GenericModel::GenDataObject +2024-09-07 12:38:50,241 [main] TRACE UmlClass - created (1595) WG10 IEC61850 other 61850 GenericModel::GenDataObject +2024-09-07 12:38:50,241 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1596) WG10 IEC61850 null GenericModel::GenDataSet +2024-09-07 12:38:50,241 [main] TRACE UmlClass - created (1596) WG10 IEC61850 other 61850 GenericModel::GenDataSet +2024-09-07 12:38:50,242 [main] TRACE UmlSkipped - created (2175) WG10 IEC61850 note link GenDataSet. - ? - ? +2024-09-07 12:38:50,242 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1598) WG10 IEC61850 null GenericModel::GenFCD +2024-09-07 12:38:50,242 [main] TRACE UmlClass - created (1598) WG10 IEC61850 other 61850 GenericModel::GenFCD +2024-09-07 12:38:50,242 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1599) WG10 IEC61850 null GenericModel::GenFCDA +2024-09-07 12:38:50,242 [main] TRACE UmlClass - created (1599) WG10 IEC61850 other 61850 GenericModel::GenFCDA +2024-09-07 12:38:50,242 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1600) WG10 IEC61850 null GenericModel::GenFile +2024-09-07 12:38:50,242 [main] TRACE UmlClass - created (1600) WG10 IEC61850 other 61850 GenericModel::GenFile +2024-09-07 12:38:50,242 [main] TRACE UmlSkipped - created (2174) WG10 IEC61850 note link GenFile. - ? - ? +2024-09-07 12:38:50,242 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1601) WG10 IEC61850 null GenericModel::GenIED +2024-09-07 12:38:50,242 [main] TRACE UmlClass - created (1601) WG10 IEC61850 other 61850 GenericModel::GenIED +2024-09-07 12:38:50,242 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1602) WG10 IEC61850 null GenericModel::GenINT32U +2024-09-07 12:38:50,243 [main] TRACE UmlClass - created (1602) WG10 IEC61850 other 61850 GenericModel::GenINT32U +2024-09-07 12:38:50,243 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1604) WG10 IEC61850 null GenericModel::GenLogicalDevice +2024-09-07 12:38:50,243 [main] TRACE UmlClass - created (1604) WG10 IEC61850 other 61850 GenericModel::GenLogicalDevice +2024-09-07 12:38:50,243 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1605) WG10 IEC61850 null GenericModel::GenLogicalNode +2024-09-07 12:38:50,243 [main] TRACE UmlClass - created (1605) WG10 IEC61850 other 61850 GenericModel::GenLogicalNode +2024-09-07 12:38:50,243 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1606) WG10 IEC61850 null GenericModel::GenMCAA +2024-09-07 12:38:50,243 [main] TRACE UmlClass - created (1606) WG10 IEC61850 other 61850 GenericModel::GenMCAA +2024-09-07 12:38:50,243 [main] TRACE UmlSkipped - created (2179) WG10 IEC61850 note link GenMCAA. - ? - ? +2024-09-07 12:38:50,244 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1607) WG10 IEC61850 null GenericModel::GenObjRef +2024-09-07 12:38:50,244 [main] TRACE UmlClass - created (1607) WG10 IEC61850 other 61850 GenericModel::GenObjRef +2024-09-07 12:38:50,244 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1608) WG10 IEC61850 null GenericModel::GenObjectName +2024-09-07 12:38:50,244 [main] TRACE UmlClass - created (1608) WG10 IEC61850 other 61850 GenericModel::GenObjectName +2024-09-07 12:38:50,244 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1610) WG10 IEC61850 null GenericModel::GenServer +2024-09-07 12:38:50,244 [main] TRACE UmlClass - created (1610) WG10 IEC61850 other 61850 GenericModel::GenServer +2024-09-07 12:38:50,244 [main] TRACE UmlSkipped - created (2176) WG10 IEC61850 note link GenServer. - ? - ? +2024-09-07 12:38:50,244 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1611) WG10 IEC61850 null GenericModel::GenSubDataAttribute +2024-09-07 12:38:50,244 [main] TRACE UmlClass - created (1611) WG10 IEC61850 other 61850 GenericModel::GenSubDataAttribute +2024-09-07 12:38:50,244 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1612) WG10 IEC61850 null GenericModel::GenSubDataObject +2024-09-07 12:38:50,244 [main] TRACE UmlClass - created (1612) WG10 IEC61850 other 61850 GenericModel::GenSubDataObject +2024-09-07 12:38:50,244 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1613) WG10 IEC61850 null GenericModel::GenTPAA +2024-09-07 12:38:50,244 [main] TRACE UmlClass - created (1613) WG10 IEC61850 other 61850 GenericModel::GenTPAA +2024-09-07 12:38:50,244 [main] TRACE UmlSkipped - created (2178) WG10 IEC61850 note link GenTPAA. - ? - ? +2024-09-07 12:38:50,244 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1615) WG10 IEC61850 null GenericModel::GenTriggerConditions +2024-09-07 12:38:50,244 [main] TRACE UmlClass - created (1615) WG10 IEC61850 other 61850 GenericModel::GenTriggerConditions +2024-09-07 12:38:50,244 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1616) WG10 IEC61850 null GenericModel::GenVisString255 +2024-09-07 12:38:50,245 [main] TRACE UmlClass - created (1616) WG10 IEC61850 other 61850 GenericModel::GenVisString255 +2024-09-07 12:38:50,245 [main] TRACE UmlClass - created (1547) WG10 IEC61850 other 61850 IEC61850_7_2::IEC61850_7_2Namespace +2024-09-07 12:38:50,245 [main] TRACE UmlClass - created (1631) WG10 IEC61850 enumeration <> FunctionalConstraints::FcKind +2024-09-07 12:38:50,245 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,245 [main] TRACE UmlAttribute - created (3356) WG10 IEC61850 literal <> FunctionalConstraints::FcKind.ST +2024-09-07 12:38:50,245 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,245 [main] TRACE UmlAttribute - created (3357) WG10 IEC61850 literal <> FunctionalConstraints::FcKind.MX +2024-09-07 12:38:50,245 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,245 [main] TRACE UmlAttribute - created (3358) WG10 IEC61850 literal <> FunctionalConstraints::FcKind.SP +2024-09-07 12:38:50,245 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,245 [main] TRACE UmlAttribute - created (3359) WG10 IEC61850 literal <> FunctionalConstraints::FcKind.SV +2024-09-07 12:38:50,245 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,245 [main] TRACE UmlAttribute - created (3360) WG10 IEC61850 literal <> FunctionalConstraints::FcKind.CF +2024-09-07 12:38:50,245 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,245 [main] TRACE UmlAttribute - created (3361) WG10 IEC61850 literal <> FunctionalConstraints::FcKind.DC +2024-09-07 12:38:50,245 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,245 [main] TRACE UmlAttribute - created (3362) WG10 IEC61850 literal <> FunctionalConstraints::FcKind.SG +2024-09-07 12:38:50,245 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,245 [main] TRACE UmlAttribute - created (3363) WG10 IEC61850 literal <> FunctionalConstraints::FcKind.SE +2024-09-07 12:38:50,245 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,245 [main] TRACE UmlAttribute - created (3364) WG10 IEC61850 literal <> FunctionalConstraints::FcKind.SR +2024-09-07 12:38:50,245 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,246 [main] TRACE UmlAttribute - created (3365) WG10 IEC61850 literal <> FunctionalConstraints::FcKind.OR +2024-09-07 12:38:50,246 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,246 [main] TRACE UmlAttribute - created (3366) WG10 IEC61850 literal <> FunctionalConstraints::FcKind.BL +2024-09-07 12:38:50,246 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,246 [main] TRACE UmlAttribute - created (3367) WG10 IEC61850 literal <> FunctionalConstraints::FcKind.EX +2024-09-07 12:38:50,246 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,246 [main] TRACE UmlAttribute - created (3368) WG10 IEC61850 literal <> FunctionalConstraints::FcKind.XX +2024-09-07 12:38:50,246 [main] TRACE UmlClass - created (1633) WG10 IEC61850 enumeration <> TriggerOptions::TrgOpKind +2024-09-07 12:38:50,246 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,246 [main] TRACE UmlAttribute - created (3369) WG10 IEC61850 literal <> TriggerOptions::TrgOpKind.dchg +2024-09-07 12:38:50,246 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,246 [main] TRACE UmlAttribute - created (3370) WG10 IEC61850 literal <> TriggerOptions::TrgOpKind.qchg +2024-09-07 12:38:50,246 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,246 [main] TRACE UmlAttribute - created (3371) WG10 IEC61850 literal <> TriggerOptions::TrgOpKind.dupd +2024-09-07 12:38:50,246 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,246 [main] TRACE UmlAttribute - created (3372) WG10 IEC61850 literal <> TriggerOptions::TrgOpKind.dchg, dupd +2024-09-07 12:38:50,246 [main] TRACE UmlClass - created (1635) WG10 IEC61850 coded enumeration <> ACSIEnums::BsControlKind +2024-09-07 12:38:50,246 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 12:38:50,246 [main] TRACE UmlAttribute - created (3373) WG10 IEC61850 coded literal <> ACSIEnums::BsControlKind.stop = 0 +2024-09-07 12:38:50,246 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 12:38:50,247 [main] TRACE UmlAttribute - created (3374) WG10 IEC61850 coded literal <> ACSIEnums::BsControlKind.lower = 1 +2024-09-07 12:38:50,247 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 12:38:50,247 [main] TRACE UmlAttribute - created (3375) WG10 IEC61850 coded literal <> ACSIEnums::BsControlKind.higher = 2 +2024-09-07 12:38:50,247 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-07 12:38:50,247 [main] TRACE UmlAttribute - created (3376) WG10 IEC61850 coded literal <> ACSIEnums::BsControlKind.reserved = 3 +2024-09-07 12:38:50,247 [main] TRACE UmlClass - created (1636) WG10 IEC61850 coded enumeration <> ACSIEnums::DpStatusKind +2024-09-07 12:38:50,247 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 12:38:50,247 [main] TRACE UmlAttribute - created (3377) WG10 IEC61850 coded literal <> ACSIEnums::DpStatusKind.intermediateState = 0 +2024-09-07 12:38:50,247 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 12:38:50,247 [main] TRACE UmlAttribute - created (3378) WG10 IEC61850 coded literal <> ACSIEnums::DpStatusKind.offOrFalse = 1 +2024-09-07 12:38:50,247 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 12:38:50,247 [main] TRACE UmlAttribute - created (3379) WG10 IEC61850 coded literal <> ACSIEnums::DpStatusKind.onOrTrue = 2 +2024-09-07 12:38:50,247 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-07 12:38:50,247 [main] TRACE UmlAttribute - created (3380) WG10 IEC61850 coded literal <> ACSIEnums::DpStatusKind.badState = 3 +2024-09-07 12:38:50,247 [main] TRACE UmlClass - created (1653) WG10 IEC61850 basic <> CoreTypes::P_BOOLEAN +2024-09-07 12:38:50,247 [main] TRACE UmlClass - created (1659) WG10 IEC61850 basic <> CoreTypes::P_INT16U +2024-09-07 12:38:50,247 [main] TRACE UmlClass - created (1656) WG10 IEC61850 basic <> CoreTypes::P_INT32 +2024-09-07 12:38:50,247 [main] TRACE UmlClass - created (1661) WG10 IEC61850 basic <> CoreTypes::P_INT32U +2024-09-07 12:38:50,247 [main] TRACE UmlClass - created (1662) WG10 IEC61850 basic <> CoreTypes::P_FLOAT32 +2024-09-07 12:38:50,247 [main] TRACE UmlClass - created (1663) WG10 IEC61850 basic <> CoreTypes::P_UNICODE_STRING255 +2024-09-07 12:38:50,248 [main] TRACE UmlClass - created (1667) WG10 IEC61850 basic <> CoreTypes::P_VISIBLE_STRING255 +2024-09-07 12:38:50,248 [main] TRACE UmlClass - created (1668) WG10 IEC61850 basic <> CoreTypes::ObjectName +2024-09-07 12:38:50,248 [main] TRACE UmlClass - created (1669) WG10 IEC61850 abstract class basic <> CoreTypes::P_ObjectReference +2024-09-07 12:38:50,248 [main] TRACE UmlClass - created (1670) WG10 IEC61850 basic <> CoreTypes::P_PHYCOMADDR +2024-09-07 12:38:50,248 [main] TRACE UmlClass - created (1671) WG10 IEC61850 packed list <> CoreTypes::P_TimeStamp +2024-09-07 12:38:50,248 [main] TRACE UmlClass - created (1672) WG10 IEC61850 packed list <> CoreTypes::TimeQuality +2024-09-07 12:38:50,248 [main] TRACE UmlClass - created (1673) WG10 IEC61850 coded enumeration <> CoreTypes::TimeAccuracyKind +2024-09-07 12:38:50,248 [main] TRACE ValueRange - '7' has no separator indicating range. +2024-09-07 12:38:50,248 [main] TRACE UmlAttribute - created (3390) WG10 IEC61850 coded literal <> CoreTypes::TimeAccuracyKind.T0 = 7 +2024-09-07 12:38:50,248 [main] TRACE ValueRange - '10' has no separator indicating range. +2024-09-07 12:38:50,248 [main] TRACE UmlAttribute - created (3391) WG10 IEC61850 coded literal <> CoreTypes::TimeAccuracyKind.T1 = 10 +2024-09-07 12:38:50,248 [main] TRACE ValueRange - '14' has no separator indicating range. +2024-09-07 12:38:50,248 [main] TRACE UmlAttribute - created (3392) WG10 IEC61850 coded literal <> CoreTypes::TimeAccuracyKind.T2 = 14 +2024-09-07 12:38:50,248 [main] TRACE ValueRange - '16' has no separator indicating range. +2024-09-07 12:38:50,248 [main] TRACE UmlAttribute - created (3393) WG10 IEC61850 coded literal <> CoreTypes::TimeAccuracyKind.T3 = 16 +2024-09-07 12:38:50,249 [main] TRACE ValueRange - '18' has no separator indicating range. +2024-09-07 12:38:50,249 [main] TRACE UmlAttribute - created (3394) WG10 IEC61850 coded literal <> CoreTypes::TimeAccuracyKind.T4 = 18 +2024-09-07 12:38:50,249 [main] TRACE ValueRange - '20' has no separator indicating range. +2024-09-07 12:38:50,249 [main] TRACE UmlAttribute - created (3395) WG10 IEC61850 coded literal <> CoreTypes::TimeAccuracyKind.T5 = 20 +2024-09-07 12:38:50,249 [main] TRACE ValueRange - '31' has no separator indicating range. +2024-09-07 12:38:50,249 [main] TRACE UmlAttribute - created (3396) WG10 IEC61850 coded literal <> CoreTypes::TimeAccuracyKind.unspecified = 31 +2024-09-07 12:38:50,249 [main] TRACE UmlClass - created (1674) WG10 IEC61850 packed list <> CoreTypes::P_TriggerConditions +2024-09-07 12:38:50,249 [main] TRACE UmlClass - created (1699) WG10 IEC61850 enumeration <> ObjectReferences::ServiceFcKind +2024-09-07 12:38:50,249 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,249 [main] TRACE UmlAttribute - created (3416) WG10 IEC61850 literal <> ObjectReferences::ServiceFcKind.SP +2024-09-07 12:38:50,249 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,249 [main] TRACE UmlAttribute - created (3417) WG10 IEC61850 literal <> ObjectReferences::ServiceFcKind.BR +2024-09-07 12:38:50,249 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,249 [main] TRACE UmlAttribute - created (3418) WG10 IEC61850 literal <> ObjectReferences::ServiceFcKind.RP +2024-09-07 12:38:50,249 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,249 [main] TRACE UmlAttribute - created (3419) WG10 IEC61850 literal <> ObjectReferences::ServiceFcKind.LG +2024-09-07 12:38:50,249 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,250 [main] TRACE UmlAttribute - created (3420) WG10 IEC61850 literal <> ObjectReferences::ServiceFcKind.GO +2024-09-07 12:38:50,250 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,250 [main] TRACE UmlAttribute - created (3421) WG10 IEC61850 literal <> ObjectReferences::ServiceFcKind.MS +2024-09-07 12:38:50,250 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,250 [main] TRACE UmlAttribute - created (3422) WG10 IEC61850 literal <> ObjectReferences::ServiceFcKind.US +2024-09-07 12:38:50,250 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,250 [main] TRACE UmlAttribute - created (3423) WG10 IEC61850 literal <> ObjectReferences::ServiceFcKind.XX +2024-09-07 12:38:50,250 [main] TRACE UmlClass - created (1714) WG10 IEC61850 enumeration <> AttrValues::AttrValueKind +2024-09-07 12:38:50,250 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,250 [main] TRACE UmlAttribute - created (3436) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_BOOLEAN +2024-09-07 12:38:50,250 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,250 [main] TRACE UmlAttribute - created (3437) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_INT8 +2024-09-07 12:38:50,250 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,250 [main] TRACE UmlAttribute - created (3438) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_INT8U +2024-09-07 12:38:50,250 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,250 [main] TRACE UmlAttribute - created (3439) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_INT16 +2024-09-07 12:38:50,250 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,250 [main] TRACE UmlAttribute - created (3440) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_INT16U +2024-09-07 12:38:50,250 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,250 [main] TRACE UmlAttribute - created (3441) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_INT24U +2024-09-07 12:38:50,250 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,250 [main] TRACE UmlAttribute - created (3442) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_INT32 +2024-09-07 12:38:50,250 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,250 [main] TRACE UmlAttribute - created (3443) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_INT32U +2024-09-07 12:38:50,251 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,251 [main] TRACE UmlAttribute - created (3444) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_INT64 +2024-09-07 12:38:50,251 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,251 [main] TRACE UmlAttribute - created (3445) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_FLOAT32 +2024-09-07 12:38:50,251 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,251 [main] TRACE UmlAttribute - created (3446) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_OCTET_STRING64 +2024-09-07 12:38:50,251 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,251 [main] TRACE UmlAttribute - created (3447) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_VISIBLE_STRING64 +2024-09-07 12:38:50,251 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,251 [main] TRACE UmlAttribute - created (3448) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_VISIBLE_STRING255 +2024-09-07 12:38:50,251 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,251 [main] TRACE UmlAttribute - created (3449) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_UNICODE_STRING255 +2024-09-07 12:38:50,251 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,251 [main] TRACE UmlAttribute - created (3450) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_TimeStamp +2024-09-07 12:38:50,251 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,251 [main] TRACE UmlAttribute - created (3451) WG10 IEC61850 literal <> AttrValues::AttrValueKind.Quality +2024-09-07 12:38:50,251 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,251 [main] TRACE UmlAttribute - created (3452) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_ObjectReference +2024-09-07 12:38:50,251 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,251 [main] TRACE UmlAttribute - created (3453) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_PHYCOMADDR +2024-09-07 12:38:50,251 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,251 [main] TRACE UmlAttribute - created (3454) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_TriggerConditions +2024-09-07 12:38:50,251 [main] DEBUG UmlClass - unclassified 7-2 class: (1715) WG10 IEC61850 abstract class null AttrValues::AttrValue +2024-09-07 12:38:50,251 [main] TRACE UmlClass - created (1715) WG10 IEC61850 abstract class other 61850 AttrValues::AttrValue +2024-09-07 12:38:50,252 [main] DEBUG UmlClass - unclassified 7-2 class: (1735) WG10 IEC61850 null AttrValues::AttrDefinition +2024-09-07 12:38:50,252 [main] TRACE UmlClass - created (1735) WG10 IEC61850 other 61850 AttrValues::AttrDefinition +2024-09-07 12:38:50,252 [main] DEBUG UmlClass - unclassified 7-2 class: (1736) WG10 IEC61850 null AttrValues::NamedAttrValue +2024-09-07 12:38:50,252 [main] TRACE UmlClass - created (1736) WG10 IEC61850 other 61850 AttrValues::NamedAttrValue +2024-09-07 12:38:50,252 [main] TRACE UmlClass - created (1770) WG10 IEC61850 basic <> CommonAcsiTypes::P_OCTET_STRING +2024-09-07 12:38:50,252 [main] DEBUG UmlClass - unclassified 7-2 class: (1771) WG10 IEC61850 null CommonAcsiTypes::IPAddress +2024-09-07 12:38:50,252 [main] TRACE UmlClass - created (1771) WG10 IEC61850 other 61850 CommonAcsiTypes::IPAddress +2024-09-07 12:38:50,252 [main] DEBUG UmlClass - unclassified 7-2 class: (1772) WG10 IEC61850 null CommonAcsiTypes::MulticastAddress +2024-09-07 12:38:50,252 [main] TRACE UmlClass - created (1772) WG10 IEC61850 other 61850 CommonAcsiTypes::MulticastAddress +2024-09-07 12:38:50,252 [main] DEBUG UmlClass - unclassified 7-2 class: (1773) WG10 IEC61850 null CommonAcsiTypes::Authentication +2024-09-07 12:38:50,252 [main] TRACE UmlClass - created (1773) WG10 IEC61850 other 61850 CommonAcsiTypes::Authentication +2024-09-07 12:38:50,252 [main] DEBUG UmlClass - unclassified 7-2 class: (1774) WG10 IEC61850 protected null CommonAcsiTypes::AccessView +2024-09-07 12:38:50,252 [main] TRACE UmlClass - created (1774) WG10 IEC61850 protected other 61850 CommonAcsiTypes::AccessView +2024-09-07 12:38:50,252 [main] TRACE UmlClass - created (1775) WG10 IEC61850 basic <> CommonAcsiTypes::ReportID +2024-09-07 12:38:50,252 [main] TRACE UmlClass - created (1776) WG10 IEC61850 basic <> CommonAcsiTypes::EntryID +2024-09-07 12:38:50,252 [main] TRACE UmlClass - created (1777) WG10 IEC61850 basic <> CommonAcsiTypes::EntryTime +2024-09-07 12:38:50,252 [main] DEBUG UmlClass - unclassified 7-2 class: (1835) WG10 IEC61850 abstract class null MetaModel::IEC61850Object +2024-09-07 12:38:50,252 [main] TRACE UmlClass - created (1835) WG10 IEC61850 abstract class other 61850 MetaModel::IEC61850Object +2024-09-07 12:38:50,252 [main] DEBUG UmlClass - unclassified 7-2 class: (1863) WG10 IEC61850 abstract class null MetaModel::SUBSTITUTION +2024-09-07 12:38:50,253 [main] TRACE UmlClass - created (1863) WG10 IEC61850 abstract class other 61850 MetaModel::SUBSTITUTION +2024-09-07 12:38:50,253 [main] DEBUG UmlClass - unclassified 7-2 class: (1875) WG10 IEC61850 abstract class null MetaModel::CONTROL +2024-09-07 12:38:50,253 [main] TRACE UmlClass - created (1875) WG10 IEC61850 abstract class other 61850 MetaModel::CONTROL +2024-09-07 12:38:50,253 [main] DEBUG UmlClass - unclassified 7-2 class: (1876) WG10 IEC61850 null MetaModel::TIME +2024-09-07 12:38:50,253 [main] TRACE UmlClass - created (1876) WG10 IEC61850 other 61850 MetaModel::TIME +2024-09-07 12:38:50,253 [main] TRACE UmlClass - created (1550) WG10 IEC61850 other 61850 IEC61850_7_3::IEC61850_7_3Namespace +2024-09-07 12:38:50,253 [main] TRACE UmlClass - created (2011) WG10 IEC61850 presence condition enumeration <> PresenceConditions::PresenceCondition +2024-09-07 12:38:50,253 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,253 [main] TRACE UmlAttribute - created (3644) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.M +2024-09-07 12:38:50,253 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,253 [main] TRACE UmlAttribute - created (3645) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.O +2024-09-07 12:38:50,253 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,253 [main] TRACE UmlAttribute - created (3646) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MFsubst +2024-09-07 12:38:50,253 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,253 [main] TRACE UmlAttribute - created (3647) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.AtLeastOne(n) +2024-09-07 12:38:50,253 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,253 [main] TRACE UmlAttribute - created (3648) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.AllOrNonePerGroup(n) +2024-09-07 12:38:50,253 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,253 [main] TRACE UmlAttribute - created (3649) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.AtMostOne +2024-09-07 12:38:50,253 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,253 [main] TRACE UmlAttribute - created (3650) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MF(sibling) +2024-09-07 12:38:50,253 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,253 [main] TRACE UmlAttribute - created (3651) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.AllOnlyOneGroup(n) +2024-09-07 12:38:50,253 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,253 [main] TRACE UmlAttribute - created (3652) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MOln0 +2024-09-07 12:38:50,254 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,254 [main] TRACE UmlAttribute - created (3653) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MFln0 +2024-09-07 12:38:50,254 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,254 [main] TRACE UmlAttribute - created (3654) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MOlnNs +2024-09-07 12:38:50,254 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,254 [main] TRACE UmlAttribute - created (3655) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MOdataNs +2024-09-07 12:38:50,254 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,254 [main] TRACE UmlAttribute - created (3656) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MOcdcNs +2024-09-07 12:38:50,254 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,254 [main] TRACE UmlAttribute - created (3657) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MFscaledAV +2024-09-07 12:38:50,254 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,254 [main] TRACE UmlAttribute - created (3658) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MFscaledMagV +2024-09-07 12:38:50,254 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,254 [main] TRACE UmlAttribute - created (3659) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MFscaledAngV +2024-09-07 12:38:50,254 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,254 [main] TRACE UmlAttribute - created (3660) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MFsg +2024-09-07 12:38:50,254 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,254 [main] TRACE UmlAttribute - created (3661) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.OFsg +2024-09-07 12:38:50,254 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,254 [main] TRACE UmlAttribute - created (3662) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MFsgAtLeastOne +2024-09-07 12:38:50,254 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,254 [main] TRACE UmlAttribute - created (3663) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MFnsg +2024-09-07 12:38:50,254 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,254 [main] TRACE UmlAttribute - created (3664) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.OFnsg +2024-09-07 12:38:50,254 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,254 [main] TRACE UmlAttribute - created (3665) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MFnsgAtLeastOne +2024-09-07 12:38:50,254 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,254 [main] TRACE UmlAttribute - created (3666) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MFrms +2024-09-07 12:38:50,255 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,255 [main] TRACE UmlAttribute - created (3667) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.Mmulti +2024-09-07 12:38:50,255 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,255 [main] TRACE UmlAttribute - created (3668) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.Omulti +2024-09-07 12:38:50,255 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,255 [main] TRACE UmlAttribute - created (3669) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.OmultiRange(min, max) +2024-09-07 12:38:50,255 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,255 [main] TRACE UmlAttribute - created (3670) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MOcond(condID) +2024-09-07 12:38:50,255 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,255 [main] TRACE UmlAttribute - created (3671) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MF(condID) +2024-09-07 12:38:50,255 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,255 [main] TRACE UmlAttribute - created (3672) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.OF(condID) +2024-09-07 12:38:50,255 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,255 [main] TRACE UmlAttribute - created (3673) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MOrootLD +2024-09-07 12:38:50,255 [main] TRACE UmlClass - created (2045) WG10 IEC61850 enumeration <> DAEnums::SIUnitKind +2024-09-07 12:38:50,255 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 12:38:50,255 [main] TRACE UmlAttribute - created (3834) WG10 IEC61850 literal <> DAEnums::SIUnitKind.none = 1 +2024-09-07 12:38:50,255 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 12:38:50,255 [main] TRACE UmlAttribute - created (3835) WG10 IEC61850 literal <> DAEnums::SIUnitKind.m = 2 +2024-09-07 12:38:50,255 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-07 12:38:50,255 [main] TRACE UmlAttribute - created (3836) WG10 IEC61850 literal <> DAEnums::SIUnitKind.kg = 3 +2024-09-07 12:38:50,255 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-07 12:38:50,255 [main] TRACE UmlAttribute - created (3837) WG10 IEC61850 literal <> DAEnums::SIUnitKind.s = 4 +2024-09-07 12:38:50,255 [main] TRACE ValueRange - '5' has no separator indicating range. +2024-09-07 12:38:50,255 [main] TRACE UmlAttribute - created (3838) WG10 IEC61850 literal <> DAEnums::SIUnitKind.A = 5 +2024-09-07 12:38:50,255 [main] TRACE ValueRange - '6' has no separator indicating range. +2024-09-07 12:38:50,256 [main] TRACE UmlAttribute - created (3839) WG10 IEC61850 literal <> DAEnums::SIUnitKind.K = 6 +2024-09-07 12:38:50,256 [main] TRACE ValueRange - '7' has no separator indicating range. +2024-09-07 12:38:50,256 [main] TRACE UmlAttribute - created (3840) WG10 IEC61850 literal <> DAEnums::SIUnitKind.mol = 7 +2024-09-07 12:38:50,256 [main] TRACE ValueRange - '8' has no separator indicating range. +2024-09-07 12:38:50,256 [main] TRACE UmlAttribute - created (3841) WG10 IEC61850 literal <> DAEnums::SIUnitKind.cd = 8 +2024-09-07 12:38:50,256 [main] TRACE ValueRange - '9' has no separator indicating range. +2024-09-07 12:38:50,256 [main] TRACE UmlAttribute - created (3842) WG10 IEC61850 literal <> DAEnums::SIUnitKind.deg = 9 +2024-09-07 12:38:50,256 [main] TRACE ValueRange - '10' has no separator indicating range. +2024-09-07 12:38:50,256 [main] TRACE UmlAttribute - created (3843) WG10 IEC61850 literal <> DAEnums::SIUnitKind.rad = 10 +2024-09-07 12:38:50,256 [main] TRACE ValueRange - '11' has no separator indicating range. +2024-09-07 12:38:50,256 [main] TRACE UmlAttribute - created (3844) WG10 IEC61850 literal <> DAEnums::SIUnitKind.sr = 11 +2024-09-07 12:38:50,256 [main] TRACE ValueRange - '21' has no separator indicating range. +2024-09-07 12:38:50,256 [main] TRACE UmlAttribute - created (3845) WG10 IEC61850 literal <> DAEnums::SIUnitKind.Gy = 21 +2024-09-07 12:38:50,256 [main] TRACE ValueRange - '22' has no separator indicating range. +2024-09-07 12:38:50,256 [main] TRACE UmlAttribute - created (3846) WG10 IEC61850 literal <> DAEnums::SIUnitKind.Bq = 22 +2024-09-07 12:38:50,256 [main] TRACE ValueRange - '23' has no separator indicating range. +2024-09-07 12:38:50,256 [main] TRACE UmlAttribute - created (3847) WG10 IEC61850 literal <> DAEnums::SIUnitKind.°C = 23 +2024-09-07 12:38:50,256 [main] TRACE ValueRange - '24' has no separator indicating range. +2024-09-07 12:38:50,256 [main] TRACE UmlAttribute - created (3848) WG10 IEC61850 literal <> DAEnums::SIUnitKind.Sv = 24 +2024-09-07 12:38:50,256 [main] TRACE ValueRange - '25' has no separator indicating range. +2024-09-07 12:38:50,256 [main] TRACE UmlAttribute - created (3849) WG10 IEC61850 literal <> DAEnums::SIUnitKind.F = 25 +2024-09-07 12:38:50,256 [main] TRACE ValueRange - '26' has no separator indicating range. +2024-09-07 12:38:50,256 [main] TRACE UmlAttribute - created (3850) WG10 IEC61850 literal <> DAEnums::SIUnitKind.C = 26 +2024-09-07 12:38:50,256 [main] TRACE ValueRange - '27' has no separator indicating range. +2024-09-07 12:38:50,256 [main] TRACE UmlAttribute - created (3851) WG10 IEC61850 literal <> DAEnums::SIUnitKind.S = 27 +2024-09-07 12:38:50,256 [main] TRACE ValueRange - '28' has no separator indicating range. +2024-09-07 12:38:50,256 [main] TRACE UmlAttribute - created (3852) WG10 IEC61850 literal <> DAEnums::SIUnitKind.H = 28 +2024-09-07 12:38:50,257 [main] TRACE ValueRange - '29' has no separator indicating range. +2024-09-07 12:38:50,257 [main] TRACE UmlAttribute - created (3853) WG10 IEC61850 literal <> DAEnums::SIUnitKind.V = 29 +2024-09-07 12:38:50,257 [main] TRACE ValueRange - '30' has no separator indicating range. +2024-09-07 12:38:50,257 [main] TRACE UmlAttribute - created (3854) WG10 IEC61850 literal <> DAEnums::SIUnitKind.ohm = 30 +2024-09-07 12:38:50,257 [main] TRACE ValueRange - '31' has no separator indicating range. +2024-09-07 12:38:50,257 [main] TRACE UmlAttribute - created (3855) WG10 IEC61850 literal <> DAEnums::SIUnitKind.J = 31 +2024-09-07 12:38:50,257 [main] TRACE ValueRange - '32' has no separator indicating range. +2024-09-07 12:38:50,257 [main] TRACE UmlAttribute - created (3856) WG10 IEC61850 literal <> DAEnums::SIUnitKind.N = 32 +2024-09-07 12:38:50,257 [main] TRACE ValueRange - '33' has no separator indicating range. +2024-09-07 12:38:50,257 [main] TRACE UmlAttribute - created (3857) WG10 IEC61850 literal <> DAEnums::SIUnitKind.Hz = 33 +2024-09-07 12:38:50,257 [main] TRACE ValueRange - '34' has no separator indicating range. +2024-09-07 12:38:50,257 [main] TRACE UmlAttribute - created (3858) WG10 IEC61850 literal <> DAEnums::SIUnitKind.lx = 34 +2024-09-07 12:38:50,257 [main] TRACE ValueRange - '35' has no separator indicating range. +2024-09-07 12:38:50,257 [main] TRACE UmlAttribute - created (3859) WG10 IEC61850 literal <> DAEnums::SIUnitKind.Lm = 35 +2024-09-07 12:38:50,257 [main] TRACE ValueRange - '36' has no separator indicating range. +2024-09-07 12:38:50,257 [main] TRACE UmlAttribute - created (3860) WG10 IEC61850 literal <> DAEnums::SIUnitKind.Wb = 36 +2024-09-07 12:38:50,257 [main] TRACE ValueRange - '37' has no separator indicating range. +2024-09-07 12:38:50,257 [main] TRACE UmlAttribute - created (3861) WG10 IEC61850 literal <> DAEnums::SIUnitKind.T = 37 +2024-09-07 12:38:50,257 [main] TRACE ValueRange - '38' has no separator indicating range. +2024-09-07 12:38:50,257 [main] TRACE UmlAttribute - created (3862) WG10 IEC61850 literal <> DAEnums::SIUnitKind.W = 38 +2024-09-07 12:38:50,257 [main] TRACE ValueRange - '39' has no separator indicating range. +2024-09-07 12:38:50,257 [main] TRACE UmlAttribute - created (3863) WG10 IEC61850 literal <> DAEnums::SIUnitKind.Pa = 39 +2024-09-07 12:38:50,257 [main] TRACE ValueRange - '41' has no separator indicating range. +2024-09-07 12:38:50,257 [main] TRACE UmlAttribute - created (3864) WG10 IEC61850 literal <> DAEnums::SIUnitKind.m² = 41 +2024-09-07 12:38:50,257 [main] TRACE ValueRange - '42' has no separator indicating range. +2024-09-07 12:38:50,257 [main] TRACE UmlAttribute - created (3865) WG10 IEC61850 literal <> DAEnums::SIUnitKind.m³ = 42 +2024-09-07 12:38:50,257 [main] TRACE ValueRange - '43' has no separator indicating range. +2024-09-07 12:38:50,257 [main] TRACE UmlAttribute - created (3866) WG10 IEC61850 literal <> DAEnums::SIUnitKind.m/s = 43 +2024-09-07 12:38:50,257 [main] TRACE ValueRange - '44' has no separator indicating range. +2024-09-07 12:38:50,257 [main] TRACE UmlAttribute - created (3867) WG10 IEC61850 literal <> DAEnums::SIUnitKind.m/s² = 44 +2024-09-07 12:38:50,257 [main] TRACE ValueRange - '45' has no separator indicating range. +2024-09-07 12:38:50,257 [main] TRACE UmlAttribute - created (3868) WG10 IEC61850 literal <> DAEnums::SIUnitKind.m³/s = 45 +2024-09-07 12:38:50,258 [main] TRACE ValueRange - '46' has no separator indicating range. +2024-09-07 12:38:50,258 [main] TRACE UmlAttribute - created (3869) WG10 IEC61850 literal <> DAEnums::SIUnitKind.m/m³ = 46 +2024-09-07 12:38:50,258 [main] TRACE ValueRange - '47' has no separator indicating range. +2024-09-07 12:38:50,258 [main] TRACE UmlAttribute - created (3870) WG10 IEC61850 literal <> DAEnums::SIUnitKind.M = 47 +2024-09-07 12:38:50,258 [main] TRACE ValueRange - '48' has no separator indicating range. +2024-09-07 12:38:50,258 [main] TRACE UmlAttribute - created (3871) WG10 IEC61850 literal <> DAEnums::SIUnitKind.kg/m³ = 48 +2024-09-07 12:38:50,258 [main] TRACE ValueRange - '49' has no separator indicating range. +2024-09-07 12:38:50,258 [main] TRACE UmlAttribute - created (3872) WG10 IEC61850 literal <> DAEnums::SIUnitKind.m²/s = 49 +2024-09-07 12:38:50,258 [main] TRACE ValueRange - '50' has no separator indicating range. +2024-09-07 12:38:50,258 [main] TRACE UmlAttribute - created (3873) WG10 IEC61850 literal <> DAEnums::SIUnitKind.W/m K = 50 +2024-09-07 12:38:50,258 [main] TRACE ValueRange - '51' has no separator indicating range. +2024-09-07 12:38:50,258 [main] TRACE UmlAttribute - created (3874) WG10 IEC61850 literal <> DAEnums::SIUnitKind.J/K = 51 +2024-09-07 12:38:50,258 [main] TRACE ValueRange - '52' has no separator indicating range. +2024-09-07 12:38:50,258 [main] TRACE UmlAttribute - created (3875) WG10 IEC61850 literal <> DAEnums::SIUnitKind.ppm = 52 +2024-09-07 12:38:50,258 [main] TRACE ValueRange - '53' has no separator indicating range. +2024-09-07 12:38:50,258 [main] TRACE UmlAttribute - created (3876) WG10 IEC61850 literal <> DAEnums::SIUnitKind.1/s = 53 +2024-09-07 12:38:50,258 [main] TRACE ValueRange - '54' has no separator indicating range. +2024-09-07 12:38:50,258 [main] TRACE UmlAttribute - created (3877) WG10 IEC61850 literal <> DAEnums::SIUnitKind.rad/s = 54 +2024-09-07 12:38:50,258 [main] TRACE ValueRange - '55' has no separator indicating range. +2024-09-07 12:38:50,258 [main] TRACE UmlAttribute - created (3878) WG10 IEC61850 literal <> DAEnums::SIUnitKind.W/m² = 55 +2024-09-07 12:38:50,258 [main] TRACE ValueRange - '56' has no separator indicating range. +2024-09-07 12:38:50,258 [main] TRACE UmlAttribute - created (3879) WG10 IEC61850 literal <> DAEnums::SIUnitKind.J/m² = 56 +2024-09-07 12:38:50,258 [main] TRACE ValueRange - '57' has no separator indicating range. +2024-09-07 12:38:50,258 [main] TRACE UmlAttribute - created (3880) WG10 IEC61850 literal <> DAEnums::SIUnitKind.S/m = 57 +2024-09-07 12:38:50,258 [main] TRACE ValueRange - '58' has no separator indicating range. +2024-09-07 12:38:50,258 [main] TRACE UmlAttribute - created (3881) WG10 IEC61850 literal <> DAEnums::SIUnitKind.K/s = 58 +2024-09-07 12:38:50,258 [main] TRACE ValueRange - '59' has no separator indicating range. +2024-09-07 12:38:50,258 [main] TRACE UmlAttribute - created (3882) WG10 IEC61850 literal <> DAEnums::SIUnitKind.Pa/s = 59 +2024-09-07 12:38:50,258 [main] TRACE ValueRange - '60' has no separator indicating range. +2024-09-07 12:38:50,258 [main] TRACE UmlAttribute - created (3883) WG10 IEC61850 literal <> DAEnums::SIUnitKind.J/kg K = 60 +2024-09-07 12:38:50,259 [main] TRACE ValueRange - '61' has no separator indicating range. +2024-09-07 12:38:50,259 [main] TRACE UmlAttribute - created (3884) WG10 IEC61850 literal <> DAEnums::SIUnitKind.VA = 61 +2024-09-07 12:38:50,259 [main] TRACE ValueRange - '62' has no separator indicating range. +2024-09-07 12:38:50,259 [main] TRACE UmlAttribute - created (3885) WG10 IEC61850 literal <> DAEnums::SIUnitKind.Watts = 62 +2024-09-07 12:38:50,259 [main] TRACE ValueRange - '63' has no separator indicating range. +2024-09-07 12:38:50,259 [main] TRACE UmlAttribute - created (3886) WG10 IEC61850 literal <> DAEnums::SIUnitKind.VAr = 63 +2024-09-07 12:38:50,259 [main] TRACE ValueRange - '64' has no separator indicating range. +2024-09-07 12:38:50,259 [main] TRACE UmlAttribute - created (3887) WG10 IEC61850 literal <> DAEnums::SIUnitKind.phi = 64 +2024-09-07 12:38:50,259 [main] TRACE ValueRange - '65' has no separator indicating range. +2024-09-07 12:38:50,259 [main] TRACE UmlAttribute - created (3888) WG10 IEC61850 literal <> DAEnums::SIUnitKind.cos(phi) = 65 +2024-09-07 12:38:50,259 [main] TRACE ValueRange - '66' has no separator indicating range. +2024-09-07 12:38:50,259 [main] TRACE UmlAttribute - created (3889) WG10 IEC61850 literal <> DAEnums::SIUnitKind.Vs = 66 +2024-09-07 12:38:50,259 [main] TRACE ValueRange - '67' has no separator indicating range. +2024-09-07 12:38:50,259 [main] TRACE UmlAttribute - created (3890) WG10 IEC61850 literal <> DAEnums::SIUnitKind.V² = 67 +2024-09-07 12:38:50,259 [main] TRACE ValueRange - '68' has no separator indicating range. +2024-09-07 12:38:50,259 [main] TRACE UmlAttribute - created (3891) WG10 IEC61850 literal <> DAEnums::SIUnitKind.As = 68 +2024-09-07 12:38:50,259 [main] TRACE ValueRange - '69' has no separator indicating range. +2024-09-07 12:38:50,260 [main] TRACE UmlAttribute - created (3892) WG10 IEC61850 literal <> DAEnums::SIUnitKind.A² = 69 +2024-09-07 12:38:50,260 [main] TRACE ValueRange - '70' has no separator indicating range. +2024-09-07 12:38:50,260 [main] TRACE UmlAttribute - created (3893) WG10 IEC61850 literal <> DAEnums::SIUnitKind.A²t = 70 +2024-09-07 12:38:50,260 [main] TRACE ValueRange - '71' has no separator indicating range. +2024-09-07 12:38:50,260 [main] TRACE UmlAttribute - created (3894) WG10 IEC61850 literal <> DAEnums::SIUnitKind.VAh = 71 +2024-09-07 12:38:50,260 [main] TRACE ValueRange - '72' has no separator indicating range. +2024-09-07 12:38:50,260 [main] TRACE UmlAttribute - created (3895) WG10 IEC61850 literal <> DAEnums::SIUnitKind.Wh = 72 +2024-09-07 12:38:50,260 [main] TRACE ValueRange - '73' has no separator indicating range. +2024-09-07 12:38:50,260 [main] TRACE UmlAttribute - created (3896) WG10 IEC61850 literal <> DAEnums::SIUnitKind.VArh = 73 +2024-09-07 12:38:50,260 [main] TRACE ValueRange - '74' has no separator indicating range. +2024-09-07 12:38:50,260 [main] TRACE UmlAttribute - created (3897) WG10 IEC61850 literal <> DAEnums::SIUnitKind.V/Hz = 74 +2024-09-07 12:38:50,260 [main] TRACE ValueRange - '75' has no separator indicating range. +2024-09-07 12:38:50,260 [main] TRACE UmlAttribute - created (3898) WG10 IEC61850 literal <> DAEnums::SIUnitKind.Hz/s = 75 +2024-09-07 12:38:50,260 [main] TRACE ValueRange - '76' has no separator indicating range. +2024-09-07 12:38:50,260 [main] TRACE UmlAttribute - created (3899) WG10 IEC61850 literal <> DAEnums::SIUnitKind.char = 76 +2024-09-07 12:38:50,260 [main] TRACE ValueRange - '77' has no separator indicating range. +2024-09-07 12:38:50,260 [main] TRACE UmlAttribute - created (3900) WG10 IEC61850 literal <> DAEnums::SIUnitKind.char/s = 77 +2024-09-07 12:38:50,260 [main] TRACE ValueRange - '78' has no separator indicating range. +2024-09-07 12:38:50,260 [main] TRACE UmlAttribute - created (3901) WG10 IEC61850 literal <> DAEnums::SIUnitKind.kgm² = 78 +2024-09-07 12:38:50,260 [main] TRACE ValueRange - '79' has no separator indicating range. +2024-09-07 12:38:50,260 [main] TRACE UmlAttribute - created (3902) WG10 IEC61850 literal <> DAEnums::SIUnitKind.dB = 79 +2024-09-07 12:38:50,260 [main] TRACE ValueRange - '80' has no separator indicating range. +2024-09-07 12:38:50,260 [main] TRACE UmlAttribute - created (3903) WG10 IEC61850 literal <> DAEnums::SIUnitKind.J/Wh = 80 +2024-09-07 12:38:50,260 [main] TRACE ValueRange - '81' has no separator indicating range. +2024-09-07 12:38:50,260 [main] TRACE UmlAttribute - created (3904) WG10 IEC61850 literal <> DAEnums::SIUnitKind.W/s = 81 +2024-09-07 12:38:50,260 [main] TRACE ValueRange - '82' has no separator indicating range. +2024-09-07 12:38:50,260 [main] TRACE UmlAttribute - created (3905) WG10 IEC61850 literal <> DAEnums::SIUnitKind.l/s = 82 +2024-09-07 12:38:50,260 [main] TRACE ValueRange - '83' has no separator indicating range. +2024-09-07 12:38:50,261 [main] TRACE UmlAttribute - created (3906) WG10 IEC61850 literal <> DAEnums::SIUnitKind.dBm = 83 +2024-09-07 12:38:50,261 [main] TRACE UmlClass - created (2044) WG10 IEC61850 enumeration <> DAEnums::MultiplierKind +2024-09-07 12:38:50,261 [main] TRACE ValueRange - '-24' has no separator indicating range. +2024-09-07 12:38:50,261 [main] TRACE UmlAttribute - created (3813) WG10 IEC61850 literal <> DAEnums::MultiplierKind.y = -24 +2024-09-07 12:38:50,261 [main] TRACE ValueRange - '-21' has no separator indicating range. +2024-09-07 12:38:50,261 [main] TRACE UmlAttribute - created (3814) WG10 IEC61850 literal <> DAEnums::MultiplierKind.z = -21 +2024-09-07 12:38:50,261 [main] TRACE ValueRange - '-18' has no separator indicating range. +2024-09-07 12:38:50,261 [main] TRACE UmlAttribute - created (3815) WG10 IEC61850 literal <> DAEnums::MultiplierKind.a = -18 +2024-09-07 12:38:50,261 [main] TRACE ValueRange - '-15' has no separator indicating range. +2024-09-07 12:38:50,261 [main] TRACE UmlAttribute - created (3816) WG10 IEC61850 literal <> DAEnums::MultiplierKind.f = -15 +2024-09-07 12:38:50,261 [main] TRACE ValueRange - '-12' has no separator indicating range. +2024-09-07 12:38:50,261 [main] TRACE UmlAttribute - created (3817) WG10 IEC61850 literal <> DAEnums::MultiplierKind.p = -12 +2024-09-07 12:38:50,261 [main] TRACE ValueRange - '-9' has no separator indicating range. +2024-09-07 12:38:50,261 [main] TRACE UmlAttribute - created (3818) WG10 IEC61850 literal <> DAEnums::MultiplierKind.n = -9 +2024-09-07 12:38:50,261 [main] TRACE ValueRange - '-6' has no separator indicating range. +2024-09-07 12:38:50,261 [main] TRACE UmlAttribute - created (3819) WG10 IEC61850 literal <> DAEnums::MultiplierKind.µ = -6 +2024-09-07 12:38:50,261 [main] TRACE ValueRange - '-3' has no separator indicating range. +2024-09-07 12:38:50,261 [main] TRACE UmlAttribute - created (3820) WG10 IEC61850 literal <> DAEnums::MultiplierKind.m = -3 +2024-09-07 12:38:50,261 [main] TRACE ValueRange - '-2' has no separator indicating range. +2024-09-07 12:38:50,261 [main] TRACE UmlAttribute - created (3821) WG10 IEC61850 literal <> DAEnums::MultiplierKind.c = -2 +2024-09-07 12:38:50,261 [main] TRACE ValueRange - '-1' has no separator indicating range. +2024-09-07 12:38:50,261 [main] TRACE UmlAttribute - created (3822) WG10 IEC61850 literal <> DAEnums::MultiplierKind.d = -1 +2024-09-07 12:38:50,261 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 12:38:50,261 [main] TRACE UmlAttribute - created (3823) WG10 IEC61850 literal <> DAEnums::MultiplierKind.none = 0 +2024-09-07 12:38:50,261 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 12:38:50,261 [main] TRACE UmlAttribute - created (3824) WG10 IEC61850 literal <> DAEnums::MultiplierKind.da = 1 +2024-09-07 12:38:50,261 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 12:38:50,261 [main] TRACE UmlAttribute - created (3825) WG10 IEC61850 literal <> DAEnums::MultiplierKind.h = 2 +2024-09-07 12:38:50,261 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-07 12:38:50,262 [main] TRACE UmlAttribute - created (3826) WG10 IEC61850 literal <> DAEnums::MultiplierKind.k = 3 +2024-09-07 12:38:50,262 [main] TRACE ValueRange - '6' has no separator indicating range. +2024-09-07 12:38:50,262 [main] TRACE UmlAttribute - created (3827) WG10 IEC61850 literal <> DAEnums::MultiplierKind.M = 6 +2024-09-07 12:38:50,262 [main] TRACE ValueRange - '9' has no separator indicating range. +2024-09-07 12:38:50,262 [main] TRACE UmlAttribute - created (3828) WG10 IEC61850 literal <> DAEnums::MultiplierKind.G = 9 +2024-09-07 12:38:50,262 [main] TRACE ValueRange - '12' has no separator indicating range. +2024-09-07 12:38:50,262 [main] TRACE UmlAttribute - created (3829) WG10 IEC61850 literal <> DAEnums::MultiplierKind.T = 12 +2024-09-07 12:38:50,262 [main] TRACE ValueRange - '15' has no separator indicating range. +2024-09-07 12:38:50,262 [main] TRACE UmlAttribute - created (3830) WG10 IEC61850 literal <> DAEnums::MultiplierKind.P = 15 +2024-09-07 12:38:50,262 [main] TRACE ValueRange - '18' has no separator indicating range. +2024-09-07 12:38:50,262 [main] TRACE UmlAttribute - created (3831) WG10 IEC61850 literal <> DAEnums::MultiplierKind.E = 18 +2024-09-07 12:38:50,262 [main] TRACE ValueRange - '21' has no separator indicating range. +2024-09-07 12:38:50,262 [main] TRACE UmlAttribute - created (3832) WG10 IEC61850 literal <> DAEnums::MultiplierKind.Z = 21 +2024-09-07 12:38:50,262 [main] TRACE ValueRange - '24' has no separator indicating range. +2024-09-07 12:38:50,262 [main] TRACE UmlAttribute - created (3833) WG10 IEC61850 literal <> DAEnums::MultiplierKind.Y = 24 +2024-09-07 12:38:50,262 [main] TRACE UmlClass - created (2035) WG10 IEC61850 enumeration <> DAEnums::PhaseFaultDirectionKind +2024-09-07 12:38:50,262 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 12:38:50,262 [main] TRACE UmlAttribute - created (3727) WG10 IEC61850 literal <> DAEnums::PhaseFaultDirectionKind.unknown = 0 +2024-09-07 12:38:50,262 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 12:38:50,262 [main] TRACE UmlAttribute - created (3728) WG10 IEC61850 literal <> DAEnums::PhaseFaultDirectionKind.forward = 1 +2024-09-07 12:38:50,262 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 12:38:50,262 [main] TRACE UmlAttribute - created (3729) WG10 IEC61850 literal <> DAEnums::PhaseFaultDirectionKind.backward = 2 +2024-09-07 12:38:50,262 [main] TRACE UmlClass - created (2039) WG10 IEC61850 enumeration <> DAEnums::PhaseAngleReferenceKind +2024-09-07 12:38:50,262 [main] TRACE UmlSkipped - created (2214) WG10 IEC61850 note link PhaseAngleReferenceKind. - ? - ? +2024-09-07 12:38:50,262 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 12:38:50,262 [main] TRACE UmlAttribute - created (3744) WG10 IEC61850 literal <> DAEnums::PhaseAngleReferenceKind.Va = 0 +2024-09-07 12:38:50,262 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 12:38:50,262 [main] TRACE UmlAttribute - created (3745) WG10 IEC61850 literal <> DAEnums::PhaseAngleReferenceKind.Vb = 1 +2024-09-07 12:38:50,263 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 12:38:50,263 [main] TRACE UmlAttribute - created (3746) WG10 IEC61850 literal <> DAEnums::PhaseAngleReferenceKind.Vc = 2 +2024-09-07 12:38:50,263 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-07 12:38:50,263 [main] TRACE UmlAttribute - created (3747) WG10 IEC61850 literal <> DAEnums::PhaseAngleReferenceKind.Aa = 3 +2024-09-07 12:38:50,263 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-07 12:38:50,263 [main] TRACE UmlAttribute - created (3748) WG10 IEC61850 literal <> DAEnums::PhaseAngleReferenceKind.Ab = 4 +2024-09-07 12:38:50,263 [main] TRACE ValueRange - '5' has no separator indicating range. +2024-09-07 12:38:50,263 [main] TRACE UmlAttribute - created (3749) WG10 IEC61850 literal <> DAEnums::PhaseAngleReferenceKind.Ac = 5 +2024-09-07 12:38:50,263 [main] TRACE ValueRange - '6' has no separator indicating range. +2024-09-07 12:38:50,263 [main] TRACE UmlAttribute - created (3750) WG10 IEC61850 literal <> DAEnums::PhaseAngleReferenceKind.Vab = 6 +2024-09-07 12:38:50,263 [main] TRACE ValueRange - '7' has no separator indicating range. +2024-09-07 12:38:50,263 [main] TRACE UmlAttribute - created (3751) WG10 IEC61850 literal <> DAEnums::PhaseAngleReferenceKind.Vbc = 7 +2024-09-07 12:38:50,263 [main] TRACE ValueRange - '8' has no separator indicating range. +2024-09-07 12:38:50,263 [main] TRACE UmlAttribute - created (3752) WG10 IEC61850 literal <> DAEnums::PhaseAngleReferenceKind.Vca = 8 +2024-09-07 12:38:50,263 [main] TRACE ValueRange - '9' has no separator indicating range. +2024-09-07 12:38:50,263 [main] TRACE UmlAttribute - created (3753) WG10 IEC61850 literal <> DAEnums::PhaseAngleReferenceKind.Vother = 9 +2024-09-07 12:38:50,263 [main] TRACE ValueRange - '10' has no separator indicating range. +2024-09-07 12:38:50,263 [main] TRACE UmlAttribute - created (3754) WG10 IEC61850 literal <> DAEnums::PhaseAngleReferenceKind.Aother = 10 +2024-09-07 12:38:50,263 [main] TRACE ValueRange - '11' has no separator indicating range. +2024-09-07 12:38:50,263 [main] TRACE UmlAttribute - created (3755) WG10 IEC61850 literal <> DAEnums::PhaseAngleReferenceKind.Synchrophasor = 11 +2024-09-07 12:38:50,263 [main] TRACE UmlClass - created (2086) WG10 IEC61850 coded enumeration <> ConstructedDAs::ValidityKind +2024-09-07 12:38:50,263 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 12:38:50,263 [main] TRACE UmlAttribute - created (4094) WG10 IEC61850 coded literal <> ConstructedDAs::ValidityKind.good = 0 +2024-09-07 12:38:50,263 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 12:38:50,263 [main] TRACE UmlAttribute - created (4095) WG10 IEC61850 coded literal <> ConstructedDAs::ValidityKind.invalid = 1 +2024-09-07 12:38:50,263 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 12:38:50,263 [main] TRACE UmlAttribute - created (4096) WG10 IEC61850 coded literal <> ConstructedDAs::ValidityKind.reserved = 2 +2024-09-07 12:38:50,263 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-07 12:38:50,263 [main] TRACE UmlAttribute - created (4097) WG10 IEC61850 coded literal <> ConstructedDAs::ValidityKind.questionable = 3 +2024-09-07 12:38:50,264 [main] TRACE UmlClass - created (2087) WG10 IEC61850 packed list <> ConstructedDAs::DetailQual +2024-09-07 12:38:50,264 [main] TRACE UmlClass - created (2088) WG10 IEC61850 coded enumeration <> ConstructedDAs::SourceKind +2024-09-07 12:38:50,264 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 12:38:50,264 [main] TRACE UmlAttribute - created (4106) WG10 IEC61850 coded literal <> ConstructedDAs::SourceKind.process = 0 +2024-09-07 12:38:50,264 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 12:38:50,264 [main] TRACE UmlAttribute - created (4107) WG10 IEC61850 coded literal <> ConstructedDAs::SourceKind.substituted = 1 +2024-09-07 12:38:50,264 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (3071) WG10 IEC61850 null CDCControl::SPC +2024-09-07 12:38:50,264 [main] TRACE UmlClass - created (3071) WG10 IEC61850 other 61850 CDCControl::SPC +2024-09-07 12:38:50,264 [main] TRACE UmlClass - created (1551) WG10 IEC61850 other 61850 IEC61850_7_4::IEC61850_7_4Namespace +2024-09-07 12:38:50,264 [main] TRACE UmlClass - created (2335) WG10 IEC61850 abbreviation enumeration <> Abbreviations::AbbrTermAny +2024-09-07 12:38:50,264 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,264 [main] TRACE UmlAttribute - created (4656) WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.A +2024-09-07 12:38:50,264 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,264 [main] TRACE UmlAttribute - created (5118) WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.Z +2024-09-07 12:38:50,264 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,264 [main] TRACE UmlAttribute - created (6659) WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.aDummy +2024-09-07 12:38:50,265 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,265 [main] TRACE UmlAttribute - created (4669) WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.Alm +2024-09-07 12:38:50,265 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,265 [main] TRACE UmlAttribute - created (5120) WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.Z1 +2024-09-07 12:38:50,265 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,265 [main] TRACE UmlAttribute - created (4670) WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.Amp +2024-09-07 12:38:50,265 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,265 [main] TRACE UmlAttribute - created (6660) WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.ppm +2024-09-07 12:38:50,265 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,265 [main] TRACE UmlAttribute - created (6661) WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.km +2024-09-07 12:38:50,265 [main] TRACE UmlClass - created (2359) WG10 IEC61850 abbreviation enumeration <> Abbreviations::AbbrTermZ +2024-09-07 12:38:50,265 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,265 [main] TRACE UmlAttribute - created (5119) WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermZ.Z0 +2024-09-07 12:38:50,265 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,265 [main] TRACE UmlAttribute - created (5123) WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermZ.Zro +2024-09-07 12:38:50,265 [main] TRACE UmlClass - created (2368) WG10 IEC61850 function ProtectionEq::BusbarProt +2024-09-07 12:38:50,266 [main] TRACE UmlClass - created (2374) WG10 IEC61850 function ProtectionEq::DirectionalProt +2024-09-07 12:38:50,266 [main] TRACE UmlClass - created (2375) WG10 IEC61850 function ProtectionEq::DirectionalPowerProt +2024-09-07 12:38:50,266 [main] TRACE UmlClass - created (2385) WG10 IEC61850 function ProtectionEq::LineDifferentialProt +2024-09-07 12:38:50,266 [main] TRACE UmlClass - created (2394) WG10 IEC61850 function ProtectionEq::PowerFactorProt +2024-09-07 12:38:50,266 [main] TRACE UmlClass - created (2420) WG10 IEC61850 function ControlEq::AlarmHandler +2024-09-07 12:38:50,266 [main] TRACE UmlClass - created (2465) WG10 IEC61850 function MeasurementsAndMetering::ThreePhaseMeasurement +2024-09-07 12:38:50,266 [main] TRACE UmlClass - created (2475) WG10 IEC61850 function SystemWide::LogicalDeviceData +2024-09-07 12:38:50,266 [main] TRACE UmlClass - created (2477) WG10 IEC61850 function SystemWide::PhysicalDeviceData +2024-09-07 12:38:50,266 [main] TRACE UmlClass - created (2487) WG10 IEC61850 function PrimaryEq::AuxiliaryNetwork +2024-09-07 12:38:50,266 [main] TRACE UmlClass - created (2501) WG10 IEC61850 function PrimaryEq::GenericIO +2024-09-07 12:38:50,266 [main] TRACE UmlClass - created (2568) WG10 IEC61850 enumeration <> DOEnums::HealthKind +2024-09-07 12:38:50,266 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 12:38:50,266 [main] TRACE UmlAttribute - created (5150) WG10 IEC61850 literal <> DOEnums::HealthKind.Ok = 1 +2024-09-07 12:38:50,266 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 12:38:50,266 [main] TRACE UmlAttribute - created (5151) WG10 IEC61850 literal <> DOEnums::HealthKind.Warning = 2 +2024-09-07 12:38:50,266 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-07 12:38:50,267 [main] TRACE UmlAttribute - created (5152) WG10 IEC61850 literal <> DOEnums::HealthKind.Alarm = 3 +2024-09-07 12:38:50,267 [main] TRACE UmlClass - created (2564) WG10 IEC61850 enumeration <> DOEnums::BehaviourModeKind +2024-09-07 12:38:50,267 [main] TRACE UmlSkipped - created (2230) WG10 IEC61850 note link BehaviourModeKind. - ? - ? +2024-09-07 12:38:50,267 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 12:38:50,267 [main] TRACE UmlAttribute - created (5124) WG10 IEC61850 literal <> DOEnums::BehaviourModeKind.on = 1 +2024-09-07 12:38:50,267 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 12:38:50,267 [main] TRACE UmlAttribute - created (5125) WG10 IEC61850 literal <> DOEnums::BehaviourModeKind.on-blocked = 2 +2024-09-07 12:38:50,267 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-07 12:38:50,267 [main] TRACE UmlAttribute - created (5126) WG10 IEC61850 literal <> DOEnums::BehaviourModeKind.test = 3 +2024-09-07 12:38:50,267 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-07 12:38:50,267 [main] TRACE UmlAttribute - created (5127) WG10 IEC61850 literal <> DOEnums::BehaviourModeKind.test/blocked = 4 +2024-09-07 12:38:50,267 [main] TRACE ValueRange - '5' has no separator indicating range. +2024-09-07 12:38:50,267 [main] TRACE UmlAttribute - created (5128) WG10 IEC61850 literal <> DOEnums::BehaviourModeKind.off = 5 +2024-09-07 12:38:50,267 [main] TRACE UmlClass - created (2567) WG10 IEC61850 enumeration <> DOEnums::CalcMethodKind +2024-09-07 12:38:50,267 [main] TRACE UmlSkipped - created (2229) WG10 IEC61850 note link CalcMethodKind. - ? - ? +2024-09-07 12:38:50,267 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 12:38:50,267 [main] TRACE UmlAttribute - created (5140) WG10 IEC61850 literal <> DOEnums::CalcMethodKind.UNSPECIFIED = 1 +2024-09-07 12:38:50,267 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 12:38:50,267 [main] TRACE UmlAttribute - created (5141) WG10 IEC61850 literal <> DOEnums::CalcMethodKind.TRUE_RMS = 2 +2024-09-07 12:38:50,267 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-07 12:38:50,267 [main] TRACE UmlAttribute - created (5142) WG10 IEC61850 literal <> DOEnums::CalcMethodKind.PEAK_FUNDAMENTAL = 3 +2024-09-07 12:38:50,267 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-07 12:38:50,268 [main] TRACE UmlAttribute - created (5143) WG10 IEC61850 literal <> DOEnums::CalcMethodKind.RMS_FUNDAMENTAL = 4 +2024-09-07 12:38:50,268 [main] TRACE ValueRange - '5' has no separator indicating range. +2024-09-07 12:38:50,268 [main] TRACE UmlAttribute - created (5144) WG10 IEC61850 literal <> DOEnums::CalcMethodKind.MIN = 5 +2024-09-07 12:38:50,268 [main] TRACE ValueRange - '6' has no separator indicating range. +2024-09-07 12:38:50,268 [main] TRACE UmlAttribute - created (5145) WG10 IEC61850 literal <> DOEnums::CalcMethodKind.MAX = 6 +2024-09-07 12:38:50,268 [main] TRACE ValueRange - '7' has no separator indicating range. +2024-09-07 12:38:50,268 [main] TRACE UmlAttribute - created (5146) WG10 IEC61850 literal <> DOEnums::CalcMethodKind.AVG = 7 +2024-09-07 12:38:50,268 [main] TRACE ValueRange - '8' has no separator indicating range. +2024-09-07 12:38:50,268 [main] TRACE UmlAttribute - created (5147) WG10 IEC61850 literal <> DOEnums::CalcMethodKind.SDV = 8 +2024-09-07 12:38:50,268 [main] TRACE ValueRange - '9' has no separator indicating range. +2024-09-07 12:38:50,268 [main] TRACE UmlAttribute - created (5148) WG10 IEC61850 literal <> DOEnums::CalcMethodKind.PREDICTION = 9 +2024-09-07 12:38:50,268 [main] TRACE ValueRange - '10' has no separator indicating range. +2024-09-07 12:38:50,268 [main] TRACE UmlAttribute - created (5149) WG10 IEC61850 literal <> DOEnums::CalcMethodKind.RATE = 10 +2024-09-07 12:38:50,268 [main] TRACE UmlClass - created (3090) WG10 IEC61850 enumeration <> DOEnums::BaseKind +2024-09-07 12:38:50,268 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,268 [main] TRACE UmlAttribute - created (6714) WG10 IEC61850 literal <> DOEnums::BaseKind.bk1 +2024-09-07 12:38:50,268 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,268 [main] TRACE UmlAttribute - created (6715) WG10 IEC61850 literal <> DOEnums::BaseKind.bk2 +2024-09-07 12:38:50,268 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,269 [main] TRACE UmlAttribute - created (6716) WG10 IEC61850 literal <> DOEnums::BaseKind.bk3 +2024-09-07 12:38:50,269 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (2671) WG10 IEC61850 null DerivedCDCs::ACTTransient +2024-09-07 12:38:50,269 [main] TRACE UmlClass - created (2671) WG10 IEC61850 other 61850 DerivedCDCs::ACTTransient +2024-09-07 12:38:50,269 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (2721) WG10 IEC61850 null DerivedCDCs::SPSTransient +2024-09-07 12:38:50,269 [main] TRACE UmlClass - created (2721) WG10 IEC61850 other 61850 DerivedCDCs::SPSTransient +2024-09-07 12:38:50,270 [main] TRACE UmlSkipped - created (3466) WG10 IEC61850 note link SPSTransient. - ? - ? +2024-09-07 12:38:50,270 [main] TRACE UmlClass - created (3070) WG17 IEC61850 other 61850 WG17::WG17UMLVersion +2024-09-07 12:38:50,270 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (3067) WG17 IEC61850 null IEC51850_7_420::IEC61850_7_420Namespace +2024-09-07 12:38:50,270 [main] TRACE UmlClass - created (3067) WG17 IEC61850 other 61850 IEC51850_7_420::IEC61850_7_420Namespace +2024-09-07 12:38:50,270 [main] TRACE UmlClass - created (3053) WG17 IEC61850 enumeration <> DOEnums_7_420::MaterialKind +2024-09-07 12:38:50,270 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 12:38:50,270 [main] TRACE UmlAttribute - created (6683) WG17 IEC61850 literal <> DOEnums_7_420::MaterialKind.mat1 = 1 +2024-09-07 12:38:50,270 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 12:38:50,270 [main] TRACE UmlAttribute - created (6684) WG17 IEC61850 literal <> DOEnums_7_420::MaterialKind.mat2 = 2 +2024-09-07 12:38:50,270 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-07 12:38:50,270 [main] TRACE UmlAttribute - created (6685) WG17 IEC61850 literal <> DOEnums_7_420::MaterialKind.mat3 = 3 +2024-09-07 12:38:50,270 [main] TRACE UmlClass - created (3087) WG17 IEC61850 enumeration <> DOEnums_7_420::MaterialTransitionKind +2024-09-07 12:38:50,270 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,270 [main] TRACE UmlAttribute - created (6710) WG17 IEC61850 literal DOEnums_7_420::MaterialTransitionKind.trans1 +2024-09-07 12:38:50,270 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,270 [main] TRACE UmlAttribute - created (6711) WG17 IEC61850 literal DOEnums_7_420::MaterialTransitionKind.trans2 +2024-09-07 12:38:50,270 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,270 [main] TRACE UmlAttribute - created (6712) WG17 IEC61850 literal DOEnums_7_420::MaterialTransitionKind.trans3 +2024-09-07 12:38:50,271 [main] TRACE UmlClass - created (3054) WG17 IEC61850 enumeration <> DOEnums_7_420::OtherKind +2024-09-07 12:38:50,271 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 12:38:50,271 [main] TRACE UmlAttribute - created (6686) WG17 IEC61850 literal <> DOEnums_7_420::OtherKind.mat1 = 1 +2024-09-07 12:38:50,271 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 12:38:50,271 [main] TRACE UmlAttribute - created (6687) WG17 IEC61850 literal <> DOEnums_7_420::OtherKind.mat2 = 2 +2024-09-07 12:38:50,271 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-07 12:38:50,271 [main] TRACE UmlAttribute - created (6688) WG17 IEC61850 literal <> DOEnums_7_420::OtherKind.mat3 = 3 +2024-09-07 12:38:50,271 [main] TRACE UmlClass - created (3026) WG18 IEC61850 abbreviation enumeration <> Abbreviations_410::AbbrTermA +2024-09-07 12:38:50,271 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,271 [main] TRACE UmlAttribute - created (6640) WG18 IEC61850 abbreviated term <> Abbreviations_410::AbbrTermA.Abc +2024-09-07 12:38:50,271 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,271 [main] TRACE UmlAttribute - created (6641) WG18 IEC61850 abbreviated term <> Abbreviations_410::AbbrTermA.Alm2 +2024-09-07 12:38:50,271 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,271 [main] TRACE UmlAttribute - created (6642) WG18 IEC61850 abbreviated term <> Abbreviations_410::AbbrTermA.Amp +2024-09-07 12:38:50,271 [main] TRACE UmlClass - created (3077) OTHER_CIM CIM root class <> MyCimExtensions::DFD_External1 +2024-09-07 12:38:50,271 [main] TRACE UmlSkipped - created (3462) OTHER_CIM CIM other DFD_External1. - ? - ? +2024-09-07 12:38:50,271 [main] TRACE UmlClass - created (3078) OTHER_CIM CIM root class <> MyCimExtensions::DFD_DataStore1 +2024-09-07 12:38:50,271 [main] TRACE UmlSkipped - created (3461) OTHER_CIM CIM other DFD_DataStore1. - ? - ? +2024-09-07 12:38:50,271 [main] TRACE UmlClass - created (1489) OTHER_CIM CIM root class Ext1::Fruit +2024-09-07 12:38:50,271 [main] TRACE UmlClass - created (3034) OTHER_CIM CIM enumeration <> Ext1::FruitBinKind +2024-09-07 12:38:50,272 [main] TRACE UmlSkipped - created (3035) OTHER_CIM CIM other FruitBinKind.Strawberry +2024-09-07 12:38:50,272 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,272 [main] TRACE UmlAttribute - created (6650) OTHER_CIM CIM literal <> Ext1::FruitBinKind.plastic +2024-09-07 12:38:50,272 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,272 [main] TRACE UmlAttribute - created (6651) OTHER_CIM CIM literal <> Ext1::FruitBinKind.straw +2024-09-07 12:38:50,272 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,272 [main] TRACE UmlAttribute - created (6652) OTHER_CIM CIM literal <> Ext1::FruitBinKind.glass +2024-09-07 12:38:50,272 [main] TRACE UmlClass - created (3036) OTHER_CIM CIM root class Ext1::Village +2024-09-07 12:38:50,272 [main] TRACE UmlClass - created (1542) OTHER_CIM CIM root class Package with space::My class +2024-09-07 12:38:50,272 [main] TRACE UmlClass - created (1543) OTHER_CIM CIM root class Package with space::Other-with_invalid name +2024-09-07 12:38:50,272 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1491) OTHER_IEC61850 IEC61850 null Ext2::Animal +2024-09-07 12:38:50,272 [main] TRACE UmlClass - created (1491) OTHER_IEC61850 IEC61850 other 61850 Ext2::Animal +2024-09-07 12:38:50,272 [main] INFO EaModelBuilder - creating in-memory sub-classes recursively ... +2024-09-07 12:38:50,272 [main] TRACE UmlClass - created (797) WG13 CIM class <> Topology::BusNameMarker, 2 superclasses=[IdentifiedObject, InfClass2] +2024-09-07 12:38:50,273 [main] TRACE UmlSkipped - created (3) WG13 CIM note link BusNameMarker. - ? - ? +2024-09-07 12:38:50,273 [main] TRACE UmlSkipped - created (2093) WG13 CIM note link BusNameMarker. - ? - ? +2024-09-07 12:38:50,273 [main] TRACE UmlSkipped - created (2094) WG13 CIM note link BusNameMarker. - ? - ? +2024-09-07 12:38:50,273 [main] TRACE UmlClass - created (853) WG13 CIM class Core::Terminal, 1 superclasses=[IdentifiedObject] +2024-09-07 12:38:50,273 [main] TRACE UmlClass - created (3080) WG13 CIM class Topology::DumbSubterminal, 1 superclasses=[Terminal] +2024-09-07 12:38:50,273 [main] TRACE UmlClass - created (855) WG13 CIM class Core::BaseVoltage, 2 superclasses=[IdentifiedObject, BadDatatypes] +2024-09-07 12:38:50,273 [main] TRACE UmlClass - created (867) WG13 CIM class Core::BasePower, 1 superclasses=[IdentifiedObject] +2024-09-07 12:38:50,273 [main] TRACE UmlClass - created (875) WG13 CIM class Core::SubGeographicalRegion, 1 superclasses=[IdentifiedObject] +2024-09-07 12:38:50,273 [main] TRACE UmlClass - created (883) WG13 CIM class Core::geographicalRegion, 1 superclasses=[IdentifiedObject] +2024-09-07 12:38:50,273 [main] TRACE UmlClass - created (850) WG13 CIM compound <> Core::OperatingParticipant, 1 superclasses=[IdentifiedObject] +2024-09-07 12:38:50,273 [main] TRACE UmlClass - created (849) WG13 CIM class Core::PowerSystemResource, 1 superclasses=[IdentifiedObject] +2024-09-07 12:38:50,273 [main] TRACE UmlSkipped - created (1444) WG13 CIM state PowerSystemResource.DummyState +2024-09-07 12:38:50,273 [main] TRACE UmlDiagram - created (156) WG13 CIM statechart PowerSystemResource.PSR-statechart +2024-09-07 12:38:50,273 [main] TRACE UmlClass - created (871) WG13 CIM class Core::ConnectivityNodeContainer, 1 superclasses=[PowerSystemResource] +2024-09-07 12:38:50,273 [main] TRACE UmlClass - created (1490) OTHER_CIM CIM class <> Ext1::Pear, 1 superclasses=[Fruit] +2024-09-07 12:38:50,273 [main] TRACE UmlClass - created (881) WG13 CIM class Core::EquipmentContainer, 2 superclasses=[ConnectivityNodeContainer, Pear] +2024-09-07 12:38:50,273 [main] TRACE UmlClass - created (860) WG13 CIM class Core::Bay, 1 superclasses=[EquipmentContainer] +2024-09-07 12:38:50,273 [main] TRACE UmlClass - created (877) WG13 CIM class Core::Substation, 1 superclasses=[EquipmentContainer] +2024-09-07 12:38:50,273 [main] TRACE UmlClass - created (870) WG13 CIM class Core::VoltageLevel, 1 superclasses=[EquipmentContainer] +2024-09-07 12:38:50,273 [main] TRACE UmlClass - created (882) WG13 CIM class Core::Equipment, 1 superclasses=[PowerSystemResource] +2024-09-07 12:38:50,274 [main] TRACE UmlClass - created (864) WG13 CIM class Core::ConductingEquipment, 1 superclasses=[Equipment] +2024-09-07 12:38:50,274 [main] TRACE UmlSkipped - created (3470) WG13 CIM note link ConductingEquipment. - ? - ? +2024-09-07 12:38:50,274 [main] TRACE UmlClass - created (796) WG13 CIM class Topology::ConnectivityNode, 1 superclasses=[IdentifiedObject] +2024-09-07 12:38:50,274 [main] TRACE UmlSkipped - created (1) WG13 CIM note link ConnectivityNode.Switch/Node static Model - ? - ? +2024-09-07 12:38:50,274 [main] TRACE UmlClass - created (794) WG13 CIM class Topology::TopologicalIsland, 1 superclasses=[IdentifiedObject] +2024-09-07 12:38:50,274 [main] TRACE UmlSkipped - created (2095) WG13 CIM note link TopologicalIsland. - ? - ? +2024-09-07 12:38:50,274 [main] TRACE UmlClass - created (795) WG13 CIM class Topology::TopologicalNode, 1 superclasses=[IdentifiedObject] +2024-09-07 12:38:50,274 [main] TRACE UmlSkipped - created (2) WG13 CIM note link TopologicalNode.Bus/Branch calculated Model - ? - ? +2024-09-07 12:38:50,274 [main] TRACE UmlClass - created (1454) WG14 CIM abstract class class <> Other::MyClass, 1 superclasses=[BadDatatypes] +2024-09-07 12:38:50,274 [main] TRACE UmlSkipped - created (2114) WG14 CIM note link MyClass. - ? - ? +2024-09-07 12:38:50,274 [main] TRACE UmlSkipped - created (2119) WG14 CIM note link MyClass. - ? - ? +2024-09-07 12:38:50,274 [main] TRACE UmlClass - created (1482) WG14 CIM class Other::AttrDuplication, 1 superclasses=[MyClass] +2024-09-07 12:38:50,274 [main] TRACE UmlSkipped - created (2120) WG14 CIM note link AttrDuplication. - ? - ? +2024-09-07 12:38:50,274 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1617) WG10 IEC61850 null GenericModel::ServiceAccessPoint, 1 superclasses=[AccessPoint] +2024-09-07 12:38:50,274 [main] TRACE UmlClass - created (1617) WG10 IEC61850 other 61850 GenericModel::ServiceAccessPoint, 1 superclasses=[AccessPoint] +2024-09-07 12:38:50,274 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1603) WG10 IEC61850 null GenericModel::GenLN0, 1 superclasses=[GenLogicalNode] +2024-09-07 12:38:50,275 [main] TRACE UmlClass - created (1603) WG10 IEC61850 other 61850 GenericModel::GenLN0, 1 superclasses=[GenLogicalNode] +2024-09-07 12:38:50,275 [main] DEBUG UmlClass - unclassified 7-2 class: (1693) WG10 IEC61850 null ObjectReferences::FILEReference, 1 superclasses=[P_ObjectReference] +2024-09-07 12:38:50,275 [main] TRACE UmlClass - created (1693) WG10 IEC61850 other 61850 ObjectReferences::FILEReference, 1 superclasses=[P_ObjectReference] +2024-09-07 12:38:50,275 [main] DEBUG UmlClass - unclassified 7-2 class: (1694) WG10 IEC61850 null ObjectReferences::LDReference, 1 superclasses=[P_ObjectReference] +2024-09-07 12:38:50,275 [main] TRACE UmlClass - created (1694) WG10 IEC61850 other 61850 ObjectReferences::LDReference, 1 superclasses=[P_ObjectReference] +2024-09-07 12:38:50,276 [main] DEBUG UmlClass - unclassified 7-2 class: (1696) WG10 IEC61850 null ObjectReferences::LNReference, 1 superclasses=[LDReference] +2024-09-07 12:38:50,276 [main] TRACE UmlClass - created (1696) WG10 IEC61850 other 61850 ObjectReferences::LNReference, 1 superclasses=[LDReference] +2024-09-07 12:38:50,276 [main] DEBUG UmlClass - unclassified 7-2 class: (1697) WG10 IEC61850 null ObjectReferences::CDCReference, 1 superclasses=[LNReference] +2024-09-07 12:38:50,276 [main] TRACE UmlClass - created (1697) WG10 IEC61850 other 61850 ObjectReferences::CDCReference, 1 superclasses=[LNReference] +2024-09-07 12:38:50,276 [main] TRACE UmlSkipped - created (2192) WG10 IEC61850 note link CDCReference. - ? - ? +2024-09-07 12:38:50,276 [main] TRACE UmlSkipped - created (2200) WG10 IEC61850 note link CDCReference. - ? - ? +2024-09-07 12:38:50,276 [main] DEBUG UmlClass - unclassified 7-2 class: (1702) WG10 IEC61850 null ObjectReferences::FCDReference, 1 superclasses=[CDCReference] +2024-09-07 12:38:50,276 [main] TRACE UmlClass - created (1702) WG10 IEC61850 other 61850 ObjectReferences::FCDReference, 1 superclasses=[CDCReference] +2024-09-07 12:38:50,276 [main] DEBUG UmlClass - unclassified 7-2 class: (1703) WG10 IEC61850 null ObjectReferences::FCDAReference, 1 superclasses=[FCDReference] +2024-09-07 12:38:50,276 [main] TRACE UmlClass - created (1703) WG10 IEC61850 other 61850 ObjectReferences::FCDAReference, 1 superclasses=[FCDReference] +2024-09-07 12:38:50,276 [main] DEBUG UmlClass - unclassified 7-2 class: (1698) WG10 IEC61850 null ObjectReferences::CBReference, 1 superclasses=[LNReference] +2024-09-07 12:38:50,276 [main] TRACE UmlClass - created (1698) WG10 IEC61850 other 61850 ObjectReferences::CBReference, 1 superclasses=[LNReference] +2024-09-07 12:38:50,276 [main] DEBUG UmlClass - unclassified 7-2 class: (1700) WG10 IEC61850 null ObjectReferences::LOGReference, 1 superclasses=[LNReference] +2024-09-07 12:38:50,276 [main] TRACE UmlClass - created (1700) WG10 IEC61850 other 61850 ObjectReferences::LOGReference, 1 superclasses=[LNReference] +2024-09-07 12:38:50,277 [main] DEBUG UmlClass - unclassified 7-2 class: (1701) WG10 IEC61850 null ObjectReferences::LNOwnedDSReference, 1 superclasses=[LNReference] +2024-09-07 12:38:50,277 [main] TRACE UmlClass - created (1701) WG10 IEC61850 other 61850 ObjectReferences::LNOwnedDSReference, 1 superclasses=[LNReference] +2024-09-07 12:38:50,277 [main] TRACE UmlSkipped - created (2197) WG10 IEC61850 note link LNOwnedDSReference. - ? - ? +2024-09-07 12:38:50,277 [main] DEBUG UmlClass - unclassified 7-2 class: (1695) WG10 IEC61850 null ObjectReferences::NonPersistentDSReference, 1 superclasses=[P_ObjectReference] +2024-09-07 12:38:50,277 [main] TRACE UmlClass - created (1695) WG10 IEC61850 other 61850 ObjectReferences::NonPersistentDSReference, 1 superclasses=[P_ObjectReference] +2024-09-07 12:38:50,277 [main] DEBUG UmlClass - unclassified 7-2 class: (1836) WG10 IEC61850 abstract class null MetaModel::HierarchyIEC61850Object, 1 superclasses=[IEC61850Object] +2024-09-07 12:38:50,277 [main] TRACE UmlClass - created (1836) WG10 IEC61850 abstract class other 61850 MetaModel::HierarchyIEC61850Object, 1 superclasses=[IEC61850Object] +2024-09-07 12:38:50,277 [main] DEBUG UmlClass - unclassified 7-2 class: (1837) WG10 IEC61850 abstract class null MetaModel::NamedIEC61850Object, 1 superclasses=[HierarchyIEC61850Object] +2024-09-07 12:38:50,277 [main] TRACE UmlClass - created (1837) WG10 IEC61850 abstract class other 61850 MetaModel::NamedIEC61850Object, 1 superclasses=[HierarchyIEC61850Object] +2024-09-07 12:38:50,277 [main] DEBUG UmlClass - unclassified 7-2 class: (1842) WG10 IEC61850 null MetaModel::LD, 1 superclasses=[NamedIEC61850Object] +2024-09-07 12:38:50,277 [main] TRACE UmlClass - created (1842) WG10 IEC61850 other 61850 MetaModel::LD, 1 superclasses=[NamedIEC61850Object] +2024-09-07 12:38:50,277 [main] TRACE UmlClass - created (1843) WG10 IEC61850 abstract class LN MetaModel::LN, 1 superclasses=[NamedIEC61850Object] +2024-09-07 12:38:50,277 [main] TRACE UmlClass - created (1844) WG10 IEC61850 abstract class LN MetaModel::LNPHD, 1 superclasses=[LN] +2024-09-07 12:38:50,277 [main] TRACE UmlClass - created (2764) WG10 IEC61850 LN LNGroupL::LPHD, 1 superclasses=[LNPHD] +2024-09-07 12:38:50,278 [main] TRACE UmlSkipped - created (3454) WG10 IEC61850 note link LPHD. - ? - ? +2024-09-07 12:38:50,278 [main] TRACE UmlClass - created (1845) WG10 IEC61850 abstract class LN MetaModel::LN0, 1 superclasses=[LN] +2024-09-07 12:38:50,278 [main] TRACE UmlClass - created (2765) WG10 IEC61850 LN LNGroupL::LLN0, 1 superclasses=[LN0] +2024-09-07 12:38:50,278 [main] TRACE UmlClass - created (1846) WG10 IEC61850 abstract class LN MetaModel::LNDOM, 1 superclasses=[LN] +2024-09-07 12:38:50,278 [main] TRACE UmlClass - created (2728) WG10 IEC61850 abstract class LN <> LogicalNodes::DomainLN, 1 superclasses=[LNDOM] +2024-09-07 12:38:50,278 [main] TRACE UmlSkipped - created (2729) WG10 IEC61850 state machine DomainLN.behStateMachine +2024-09-07 12:38:50,278 [main] TRACE UmlDiagram - created (292) WG10 IEC61850 statechart DomainLN.Beh +2024-09-07 12:38:50,278 [main] TRACE UmlClass - created (2735) WG10 IEC61850 abstract class LN <> LogicalNodes::StatisticsLN, 1 superclasses=[DomainLN] +2024-09-07 12:38:50,278 [main] TRACE UmlSkipped - created (3465) WG10 IEC61850 note link StatisticsLN. - ? - ? +2024-09-07 12:38:50,278 [main] TRACE UmlClass - created (2815) WG10 IEC61850 LN LNGroupG::GGIO, 1 superclasses=[StatisticsLN] +2024-09-07 12:38:50,278 [main] TRACE UmlClass - created (2856) WG10 IEC61850 LN LNGroupM::MMXU, 1 superclasses=[StatisticsLN] +2024-09-07 12:38:50,278 [main] TRACE UmlSkipped - created (2154) WG10 IEC61850 note link MMXU. - ? - ? +2024-09-07 12:38:50,278 [main] TRACE UmlClass - created (2736) WG10 IEC61850 abstract class LN LogicalNodes::EquipmentInterfaceLN, 1 superclasses=[DomainLN] +2024-09-07 12:38:50,278 [main] TRACE UmlClass - created (3021) WG10 IEC61850 LN LNGroupZ::ZAXN, 1 superclasses=[EquipmentInterfaceLN] +2024-09-07 12:38:50,278 [main] TRACE UmlSkipped - created (3437) WG10 IEC61850 note link ZAXN. - ? - ? +2024-09-07 12:38:50,278 [main] TRACE UmlClass - created (3030) WG10 IEC61850 LN LNGroupL::KXYZ, 1 superclasses=[DomainLN] +2024-09-07 12:38:50,278 [main] TRACE UmlSkipped - created (3425) WG10 IEC61850 note link KXYZ. - ? - ? +2024-09-07 12:38:50,278 [main] TRACE UmlClass - created (2788) WG10 IEC61850 LN LNGroupC::CALH, 1 superclasses=[DomainLN] +2024-09-07 12:38:50,278 [main] TRACE UmlSkipped - created (3438) WG10 IEC61850 note link CALH. - ? - ? +2024-09-07 12:38:50,279 [main] TRACE UmlClass - created (2872) WG10 IEC61850 abstract class LN LNGroupP::ProtectionLN, 1 superclasses=[DomainLN] +2024-09-07 12:38:50,279 [main] TRACE UmlClass - created (2881) WG10 IEC61850 LN LNGroupP::PDIF, 1 superclasses=[ProtectionLN] +2024-09-07 12:38:50,279 [main] TRACE UmlClass - created (2883) WG10 IEC61850 LN LNGroupP::PDIS, 1 superclasses=[ProtectionLN] +2024-09-07 12:38:50,279 [main] TRACE UmlSkipped - created (2884) WG10 IEC61850 boundary PDIS. +2024-09-07 12:38:50,279 [main] TRACE UmlSkipped - created (2885) WG10 IEC61850 boundary PDIS. +2024-09-07 12:38:50,279 [main] TRACE UmlSkipped - created (2886) WG10 IEC61850 boundary PDIS. +2024-09-07 12:38:50,279 [main] TRACE UmlDiagram - created (307) WG10 IEC61850 custom PDIS.Load area and reach settings +2024-09-07 12:38:50,279 [main] TRACE UmlClass - created (3041) WG10 IEC61850 LN LNGroupP::PDISExt, 1 superclasses=[PDIS] +2024-09-07 12:38:50,279 [main] TRACE UmlClass - created (3042) WG10 IEC61850 LN LNGroupP::PDF2, 1 superclasses=[ProtectionLN] +2024-09-07 12:38:50,279 [main] TRACE UmlClass - created (2938) WG10 IEC61850 LN LNGroupR::RDIR, 1 superclasses=[DomainLN] +2024-09-07 12:38:50,279 [main] DEBUG UmlClass - unclassified 7-2 class: (1847) WG10 IEC61850 abstract class null MetaModel::CDC, 1 superclasses=[NamedIEC61850Object] +2024-09-07 12:38:50,279 [main] TRACE UmlClass - created (1847) WG10 IEC61850 abstract class other 61850 MetaModel::CDC, 1 superclasses=[NamedIEC61850Object] +2024-09-07 12:38:50,279 [main] TRACE UmlClass - created (1848) WG10 IEC61850 abstract class primitive CDC MetaModel::PrimitiveCDC, 1 superclasses=[CDC] +2024-09-07 12:38:50,279 [main] TRACE UmlClass - created (2234) WG10 IEC61850 abstract class primitive CDC CommonDataClasses::BasePrimitiveCDC, 1 superclasses=[PrimitiveCDC] +2024-09-07 12:38:50,279 [main] TRACE UmlSkipped - created (2163) WG10 IEC61850 note link BasePrimitiveCDC. - ? - ? +2024-09-07 12:38:50,279 [main] TRACE UmlClass - created (1995) WG10 IEC61850 abstract class primitive CDC CDCServiceTracking::CST, 1 superclasses=[BasePrimitiveCDC] +2024-09-07 12:38:50,279 [main] TRACE UmlSkipped - created (2204) WG10 IEC61850 note link CST. - ? - ? +2024-09-07 12:38:50,279 [main] TRACE UmlClass - created (1996) WG10 IEC61850 primitive CDC CDCServiceTracking::BTS, 1 superclasses=[CST] +2024-09-07 12:38:50,279 [main] TRACE UmlClass - created (1997) WG10 IEC61850 control tracking CDC CDCServiceTracking::CTS, 1 superclasses=[CST] +2024-09-07 12:38:50,280 [main] TRACE UmlClass - created (1998) WG10 IEC61850 primitive CDC CDCServiceTracking::GTS, 1 superclasses=[CST] +2024-09-07 12:38:50,280 [main] TRACE UmlClass - created (1999) WG10 IEC61850 primitive CDC CDCServiceTracking::LTS, 1 superclasses=[CST] +2024-09-07 12:38:50,280 [main] TRACE UmlClass - created (2000) WG10 IEC61850 primitive CDC CDCServiceTracking::MTS, 1 superclasses=[CST] +2024-09-07 12:38:50,280 [main] TRACE UmlClass - created (2001) WG10 IEC61850 primitive CDC CDCServiceTracking::NTS, 1 superclasses=[CST] +2024-09-07 12:38:50,283 [main] TRACE UmlClass - created (2002) WG10 IEC61850 primitive CDC CDCServiceTracking::OTS, 1 superclasses=[CST] +2024-09-07 12:38:50,283 [main] TRACE UmlClass - created (2003) WG10 IEC61850 primitive CDC CDCServiceTracking::STS, 1 superclasses=[CST] +2024-09-07 12:38:50,284 [main] TRACE UmlClass - created (2004) WG10 IEC61850 primitive CDC CDCServiceTracking::UTS, 1 superclasses=[CST] +2024-09-07 12:38:50,284 [main] TRACE UmlClass - created (2236) WG10 IEC61850 abstract class primitive CDC CommonDataClasses::SubstitutionCDC, 1 superclasses=[BasePrimitiveCDC] +2024-09-07 12:38:50,284 [main] TRACE UmlSkipped - created (2237) WG10 IEC61850 boundary SubstitutionCDC. +2024-09-07 12:38:50,284 [main] TRACE UmlDiagram - created (246) WG10 IEC61850 custom SubstitutionCDC.Concept of substitution +2024-09-07 12:38:50,284 [main] TRACE UmlClass - created (2248) WG10 IEC61850 primitive CDC CDCStatusInfo::DPS, 1 superclasses=[SubstitutionCDC] +2024-09-07 12:38:50,284 [main] TRACE UmlClass - created (2250) WG10 IEC61850 abstract class enumeration CDC CDCStatusInfo::ENS, 1 superclasses=[SubstitutionCDC] +2024-09-07 12:38:50,284 [main] TRACE UmlClass - created (2707) WG10 IEC61850 enumeration CDC DerivedCDCs::ENSBehaviourMode, 1 superclasses=[ENS] +2024-09-07 12:38:50,284 [main] TRACE UmlClass - created (2712) WG10 IEC61850 enumeration CDC DerivedCDCs::ENSHealth, 1 superclasses=[ENS] +2024-09-07 12:38:50,284 [main] TRACE UmlClass - created (3073) WG10 IEC61850 abstract class enumeration CDC DerivedCDCs::ENSEnumDA, 1 superclasses=[ENS] +2024-09-07 12:38:50,284 [main] TRACE UmlClass - created (3060) WG17 IEC61850 enumeration CDC DerivedCDCs_7_420::ENSMaterial, 1 superclasses=[ENS] +2024-09-07 12:38:50,284 [main] TRACE UmlClass - created (3062) WG17 IEC61850 enumeration CDC DerivedCDCs_7_420::ENSOther, 1 superclasses=[ENS] +2024-09-07 12:38:50,284 [main] TRACE UmlClass - created (2266) WG10 IEC61850 primitive CDC <> CDCAnalogueInfo::CMV, 1 superclasses=[SubstitutionCDC] +2024-09-07 12:38:50,284 [main] TRACE UmlSkipped - created (2161) WG10 IEC61850 note link CMV. - ? - ? +2024-09-07 12:38:50,284 [main] TRACE UmlSkipped - created (2165) WG10 IEC61850 note link CMV. - ? - ? +2024-09-07 12:38:50,284 [main] TRACE UmlClass - created (2278) WG10 IEC61850 abstract class primitive CDC CDCControl::ControllableCDC, 1 superclasses=[SubstitutionCDC] +2024-09-07 12:38:50,284 [main] TRACE UmlSkipped - created (2279) WG10 IEC61850 boundary ControllableCDC. +2024-09-07 12:38:50,284 [main] TRACE UmlDiagram - created (256) WG10 IEC61850 custom ControllableCDC.Attributes for command testing +2024-09-07 12:38:50,284 [main] TRACE UmlClass - created (2283) WG10 IEC61850 abstract class enumeration CDC CDCControl::ENC, 1 superclasses=[ControllableCDC] +2024-09-07 12:38:50,285 [main] TRACE UmlClass - created (2673) WG10 IEC61850 enumeration CDC DerivedCDCs::ENCBehaviourMode, 1 superclasses=[ENC] +2024-09-07 12:38:50,285 [main] TRACE UmlClass - created (3059) WG17 IEC61850 enumeration CDC DerivedCDCs_7_420::ENCMaterial, 1 superclasses=[ENC] +2024-09-07 12:38:50,285 [main] TRACE UmlClass - created (2287) WG10 IEC61850 primitive CDC <> CDCControl::BAC, 1 superclasses=[ControllableCDC] +2024-09-07 12:38:50,285 [main] TRACE UmlClass - created (3038) WG10 IEC61850 primitive CDC CDCStatusInfo::EXY, 1 superclasses=[BasePrimitiveCDC] +2024-09-07 12:38:50,285 [main] TRACE UmlClass - created (3039) WG10 IEC61850 primitive CDC DerivedCDCs::EXYBehaviourMode, 1 superclasses=[EXY] +2024-09-07 12:38:50,285 [main] TRACE UmlClass - created (2252) WG10 IEC61850 primitive CDC CDCStatusInfo::ACD, 1 superclasses=[BasePrimitiveCDC] +2024-09-07 12:38:50,285 [main] TRACE UmlClass - created (2255) WG10 IEC61850 primitive CDC CDCStatusInfo::HST, 1 superclasses=[BasePrimitiveCDC] +2024-09-07 12:38:50,285 [main] TRACE UmlSkipped - created (2256) WG10 IEC61850 boundary HST. +2024-09-07 12:38:50,285 [main] TRACE UmlSkipped - created (2257) WG10 IEC61850 boundary HST. +2024-09-07 12:38:50,285 [main] TRACE UmlDiagram - created (249) WG10 IEC61850 custom HST.One-dimensional histogram +2024-09-07 12:38:50,286 [main] TRACE UmlDiagram - created (250) WG10 IEC61850 custom HST.Two-dimensional histogram +2024-09-07 12:38:50,286 [main] TRACE UmlClass - created (2295) WG10 IEC61850 abstract class enumeration CDC CDCStatusSet::ENG, 1 superclasses=[BasePrimitiveCDC] +2024-09-07 12:38:50,286 [main] TRACE UmlClass - created (2677) WG10 IEC61850 enumeration CDC DerivedCDCs::ENGCalcMethod, 1 superclasses=[ENG] +2024-09-07 12:38:50,286 [main] TRACE UmlClass - created (2314) WG10 IEC61850 primitive CDC CDCDescription::LPL, 1 superclasses=[BasePrimitiveCDC] +2024-09-07 12:38:50,286 [main] TRACE UmlClass - created (1849) WG10 IEC61850 abstract class composed CDC MetaModel::ComposedCDC, 1 superclasses=[CDC] +2024-09-07 12:38:50,286 [main] TRACE UmlClass - created (2235) WG10 IEC61850 abstract class composed CDC CommonDataClasses::BaseComposedCDC, 1 superclasses=[ComposedCDC] +2024-09-07 12:38:50,286 [main] TRACE UmlClass - created (2263) WG10 IEC61850 abstract class composed CDC <> CDCAnalogueInfo::HarmonicMeasurandCDC, 1 superclasses=[BaseComposedCDC] +2024-09-07 12:38:50,286 [main] TRACE UmlClass - created (2273) WG10 IEC61850 composed CDC CDCAnalogueInfo::HWYE, 1 superclasses=[HarmonicMeasurandCDC] +2024-09-07 12:38:50,286 [main] TRACE UmlClass - created (1851) WG10 IEC61850 abstract class FCDA MetaModel::FCDA, 1 superclasses=[NamedIEC61850Object] +2024-09-07 12:38:50,286 [main] TRACE UmlClass - created (1916) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_BL, 1 superclasses=[FCDA] +2024-09-07 12:38:50,286 [main] TRACE UmlClass - created (2122) WG10 IEC61850 FCDA FCDAs::BOOLEAN_BL, 1 superclasses=[FCDA_BL] +2024-09-07 12:38:50,287 [main] TRACE UmlClass - created (1917) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_CF, 1 superclasses=[FCDA] +2024-09-07 12:38:50,287 [main] TRACE UmlClass - created (1903) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_CF, 1 superclasses=[FCDA_CF] +2024-09-07 12:38:50,287 [main] TRACE UmlClass - created (1918) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_CF_dchg, 1 superclasses=[FCDA_CF] +2024-09-07 12:38:50,287 [main] TRACE UmlClass - created (1904) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_CF_dchg, 1 superclasses=[FCDA_CF_dchg] +2024-09-07 12:38:50,287 [main] TRACE UmlClass - created (2144) WG10 IEC61850 abstract class enumeration FCDA FCDAs::EnumDA_CF_dchg, 1 superclasses=[EnumFCDA_CF_dchg] +2024-09-07 12:38:50,287 [main] TRACE UmlClass - created (2183) WG10 IEC61850 enumeration FCDA FCDAs::PhaseAngleReference_CF_dchg, 1 superclasses=[EnumFCDA_CF_dchg] +2024-09-07 12:38:50,287 [main] TRACE UmlClass - created (2123) WG10 IEC61850 FCDA FCDAs::BOOLEAN_CF_dchg, 1 superclasses=[FCDA_CF_dchg] +2024-09-07 12:38:50,287 [main] TRACE UmlClass - created (2160) WG10 IEC61850 FCDA FCDAs::INT16U_CF_dchg, 1 superclasses=[FCDA_CF_dchg] +2024-09-07 12:38:50,287 [main] TRACE UmlClass - created (2165) WG10 IEC61850 FCDA FCDAs::INT32U_CF_dchg, 1 superclasses=[FCDA_CF_dchg] +2024-09-07 12:38:50,287 [main] TRACE UmlClass - created (2167) WG10 IEC61850 FCDA FCDAs::INT32_CF_dchg, 1 superclasses=[FCDA_CF_dchg] +2024-09-07 12:38:50,287 [main] TRACE UmlClass - created (2194) WG10 IEC61850 FCDA FCDAs::RangeConfig_CF_dchg, 1 superclasses=[FCDA_CF_dchg] +2024-09-07 12:38:50,287 [main] TRACE UmlClass - created (2159) WG10 IEC61850 FCDA FCDAs::INT16U_CF, 1 superclasses=[FCDA_CF] +2024-09-07 12:38:50,287 [main] TRACE UmlClass - created (1919) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_DC, 1 superclasses=[FCDA] +2024-09-07 12:38:50,287 [main] TRACE UmlClass - created (2186) WG10 IEC61850 FCDA FCDAs::Point_DC, 1 superclasses=[FCDA_DC] +2024-09-07 12:38:50,287 [main] TRACE UmlClass - created (2207) WG10 IEC61850 FCDA FCDAs::UNICODE_STRING255_DC, 1 superclasses=[FCDA_DC] +2024-09-07 12:38:50,288 [main] TRACE UmlClass - created (1920) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_EX, 1 superclasses=[FCDA] +2024-09-07 12:38:50,288 [main] TRACE UmlClass - created (2217) WG10 IEC61850 FCDA FCDAs::VISIBLE_STRING255_EX, 1 superclasses=[FCDA_EX] +2024-09-07 12:38:50,288 [main] TRACE UmlClass - created (1921) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_MX, 1 superclasses=[FCDA] +2024-09-07 12:38:50,288 [main] TRACE UmlClass - created (1905) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_MX, 1 superclasses=[FCDA_MX] +2024-09-07 12:38:50,288 [main] TRACE UmlClass - created (1922) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_MX_dchg, 1 superclasses=[FCDA_MX] +2024-09-07 12:38:50,288 [main] TRACE UmlClass - created (2116) WG10 IEC61850 FCDA FCDAs::AnalogueValue_MX_dchg, 1 superclasses=[FCDA_MX_dchg] +2024-09-07 12:38:50,288 [main] TRACE UmlClass - created (2124) WG10 IEC61850 FCDA FCDAs::BOOLEAN_MX_dchg, 1 superclasses=[FCDA_MX_dchg] +2024-09-07 12:38:50,288 [main] TRACE UmlClass - created (1923) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_MX_dchg_dupd, 1 superclasses=[FCDA_MX] +2024-09-07 12:38:50,288 [main] TRACE UmlClass - created (2117) WG10 IEC61850 FCDA FCDAs::AnalogueValue_MX_dchg_dupd, 1 superclasses=[FCDA_MX_dchg_dupd] +2024-09-07 12:38:50,288 [main] TRACE UmlClass - created (1924) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_MX_qchg, 1 superclasses=[FCDA_MX] +2024-09-07 12:38:50,288 [main] TRACE UmlClass - created (2191) WG10 IEC61850 FCDA FCDAs::Quality_MX_qchg, 1 superclasses=[FCDA_MX_qchg] +2024-09-07 12:38:50,288 [main] TRACE UmlClass - created (2115) WG10 IEC61850 FCDA FCDAs::AnalogueValue_MX, 1 superclasses=[FCDA_MX] +2024-09-07 12:38:50,288 [main] TRACE UmlSkipped - created (2159) WG10 IEC61850 note link AnalogueValue_MX. - ? - ? +2024-09-07 12:38:50,288 [main] TRACE UmlSkipped - created (2171) WG10 IEC61850 note link AnalogueValue_MX. - ? - ? +2024-09-07 12:38:50,288 [main] TRACE UmlClass - created (1925) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_OR, 1 superclasses=[FCDA] +2024-09-07 12:38:50,288 [main] TRACE UmlClass - created (1926) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_OR_dchg, 1 superclasses=[FCDA_OR] +2024-09-07 12:38:50,289 [main] TRACE UmlClass - created (2125) WG10 IEC61850 FCDA FCDAs::BOOLEAN_OR_dchg, 1 superclasses=[FCDA_OR_dchg] +2024-09-07 12:38:50,289 [main] TRACE UmlClass - created (1927) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_SE, 1 superclasses=[FCDA] +2024-09-07 12:38:50,289 [main] TRACE UmlSkipped - created (2203) WG10 IEC61850 note link FCDA_SE. - ? - ? +2024-09-07 12:38:50,289 [main] TRACE UmlClass - created (1928) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_SE_dchg, 1 superclasses=[FCDA_SE] +2024-09-07 12:38:50,289 [main] TRACE UmlClass - created (1908) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_SE_dchg, 1 superclasses=[FCDA_SE_dchg] +2024-09-07 12:38:50,289 [main] TRACE UmlClass - created (2126) WG10 IEC61850 FCDA FCDAs::BOOLEAN_SE, 1 superclasses=[FCDA_SE] +2024-09-07 12:38:50,289 [main] TRACE UmlClass - created (2187) WG10 IEC61850 FCDA FCDAs::Point_SE, 1 superclasses=[FCDA_SE] +2024-09-07 12:38:50,289 [main] TRACE UmlClass - created (1929) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_SG, 1 superclasses=[FCDA] +2024-09-07 12:38:50,289 [main] TRACE UmlClass - created (1930) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_SG_dchg, 1 superclasses=[FCDA_SG] +2024-09-07 12:38:50,289 [main] TRACE UmlClass - created (1910) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_SG_dchg, 1 superclasses=[FCDA_SG_dchg] +2024-09-07 12:38:50,289 [main] TRACE UmlClass - created (2127) WG10 IEC61850 FCDA FCDAs::BOOLEAN_SG, 1 superclasses=[FCDA_SG] +2024-09-07 12:38:50,289 [main] TRACE UmlClass - created (2188) WG10 IEC61850 FCDA FCDAs::Point_SG, 1 superclasses=[FCDA_SG] +2024-09-07 12:38:50,289 [main] TRACE UmlClass - created (1931) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_SP, 1 superclasses=[FCDA] +2024-09-07 12:38:50,289 [main] TRACE UmlClass - created (1932) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_SP_dchg, 1 superclasses=[FCDA_SP] +2024-09-07 12:38:50,289 [main] TRACE UmlClass - created (2128) WG10 IEC61850 FCDA FCDAs::BOOLEAN_SP_dchg, 1 superclasses=[FCDA_SP_dchg] +2024-09-07 12:38:50,290 [main] TRACE UmlClass - created (2189) WG10 IEC61850 FCDA FCDAs::Point_SP, 1 superclasses=[FCDA_SP] +2024-09-07 12:38:50,290 [main] TRACE UmlClass - created (1933) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_ST, 1 superclasses=[FCDA] +2024-09-07 12:38:50,290 [main] TRACE UmlClass - created (1912) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_ST, 1 superclasses=[FCDA_ST] +2024-09-07 12:38:50,290 [main] TRACE UmlClass - created (1934) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_ST_dchg, 1 superclasses=[FCDA_ST] +2024-09-07 12:38:50,290 [main] TRACE UmlClass - created (1913) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_ST_dchg, 1 superclasses=[FCDA_ST_dchg] +2024-09-07 12:38:50,290 [main] TRACE UmlClass - created (1939) WG10 IEC61850 abstract class coded enumeration FCDA MetaModelFCsAndTrgOps::PackedEnumFCDA_SP_dchg, 1 superclasses=[EnumFCDA_ST_dchg] +2024-09-07 12:38:50,290 [main] TRACE UmlClass - created (2142) WG10 IEC61850 coded enumeration FCDA FCDAs::DpStatus_ST_dchg, 1 superclasses=[PackedEnumFCDA_SP_dchg] +2024-09-07 12:38:50,291 [main] TRACE UmlClass - created (2148) WG10 IEC61850 abstract class enumeration FCDA FCDAs::EnumDA_ST_dchg, 1 superclasses=[EnumFCDA_ST_dchg] +2024-09-07 12:38:50,291 [main] TRACE UmlClass - created (2184) WG10 IEC61850 enumeration FCDA FCDAs::PhaseFaultDirection_ST_dchg, 1 superclasses=[EnumFCDA_ST_dchg] +2024-09-07 12:38:50,291 [main] TRACE UmlClass - created (2129) WG10 IEC61850 FCDA FCDAs::BOOLEAN_ST_dchg, 1 superclasses=[FCDA_ST_dchg] +2024-09-07 12:38:50,291 [main] TRACE UmlClass - created (2171) WG10 IEC61850 FCDA FCDAs::INT32_ST_dchg, 1 superclasses=[FCDA_ST_dchg] +2024-09-07 12:38:50,291 [main] TRACE UmlClass - created (1935) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_ST_dchg_dupd, 1 superclasses=[FCDA_ST] +2024-09-07 12:38:50,291 [main] TRACE UmlClass - created (1914) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_ST_dchg_dupd, 1 superclasses=[FCDA_ST_dchg_dupd] +2024-09-07 12:38:50,291 [main] TRACE UmlClass - created (2149) WG10 IEC61850 abstract class enumeration FCDA FCDAs::EnumDA_ST_dchg_dupd, 1 superclasses=[EnumFCDA_ST_dchg_dupd] +2024-09-07 12:38:50,291 [main] TRACE UmlClass - created (2172) WG10 IEC61850 FCDA FCDAs::INT32_ST_dchg_dupd, 1 superclasses=[FCDA_ST_dchg_dupd] +2024-09-07 12:38:50,291 [main] TRACE UmlClass - created (1936) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_ST_dupd, 1 superclasses=[FCDA_ST] +2024-09-07 12:38:50,291 [main] TRACE UmlClass - created (1937) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_ST_qchg, 1 superclasses=[FCDA_ST] +2024-09-07 12:38:50,291 [main] TRACE UmlClass - created (2192) WG10 IEC61850 FCDA FCDAs::Quality_ST_qchg, 1 superclasses=[FCDA_ST_qchg] +2024-09-07 12:38:50,291 [main] TRACE UmlClass - created (2206) WG10 IEC61850 FCDA FCDAs::TimeStamp_ST, 1 superclasses=[FCDA_ST] +2024-09-07 12:38:50,291 [main] TRACE UmlClass - created (1938) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_SV, 1 superclasses=[FCDA] +2024-09-07 12:38:50,291 [main] TRACE UmlClass - created (1915) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_SV, 1 superclasses=[FCDA_SV] +2024-09-07 12:38:50,291 [main] TRACE UmlClass - created (1940) WG10 IEC61850 abstract class coded enumeration FCDA MetaModelFCsAndTrgOps::PackedEnumFCDA_SV, 1 superclasses=[EnumFCDA_SV] +2024-09-07 12:38:50,291 [main] TRACE UmlClass - created (2143) WG10 IEC61850 coded enumeration FCDA FCDAs::DpStatus_SV, 1 superclasses=[PackedEnumFCDA_SV] +2024-09-07 12:38:50,292 [main] TRACE UmlClass - created (2150) WG10 IEC61850 abstract class enumeration FCDA FCDAs::EnumDA_SV, 1 superclasses=[EnumFCDA_SV] +2024-09-07 12:38:50,292 [main] TRACE UmlClass - created (2130) WG10 IEC61850 FCDA FCDAs::BOOLEAN_SV, 1 superclasses=[FCDA_SV] +2024-09-07 12:38:50,292 [main] TRACE UmlClass - created (2193) WG10 IEC61850 FCDA FCDAs::Quality_SV, 1 superclasses=[FCDA_SV] +2024-09-07 12:38:50,292 [main] DEBUG UmlClass - unclassified 7-2 class: (1852) WG10 IEC61850 abstract class null MetaModel::DA, 1 superclasses=[NamedIEC61850Object] +2024-09-07 12:38:50,292 [main] TRACE UmlClass - created (1852) WG10 IEC61850 abstract class other 61850 MetaModel::DA, 1 superclasses=[NamedIEC61850Object] +2024-09-07 12:38:50,292 [main] TRACE UmlClass - created (1853) WG10 IEC61850 abstract class primitive DA MetaModel::PrimitiveDA, 1 superclasses=[DA] +2024-09-07 12:38:50,292 [main] TRACE UmlClass - created (1755) WG10 IEC61850 primitive DA BasicDAs::PHYCOMADDR, 1 superclasses=[PrimitiveDA] +2024-09-07 12:38:50,292 [main] TRACE UmlClass - created (1754) WG10 IEC61850 primitive DA BasicDAs::ObjectReference, 1 superclasses=[PrimitiveDA] +2024-09-07 12:38:50,292 [main] TRACE UmlClass - created (1752) WG10 IEC61850 primitive DA BasicDAs::VISIBLE_STRING255, 1 superclasses=[PrimitiveDA] +2024-09-07 12:38:50,292 [main] TRACE UmlSkipped - created (2166) WG10 IEC61850 note link VISIBLE_STRING255. - ? - ? +2024-09-07 12:38:50,292 [main] TRACE UmlClass - created (1751) WG10 IEC61850 primitive DA BasicDAs::UNICODE_STRING255, 1 superclasses=[PrimitiveDA] +2024-09-07 12:38:50,292 [main] TRACE UmlClass - created (1746) WG10 IEC61850 primitive DA BasicDAs::INT32U, 1 superclasses=[PrimitiveDA] +2024-09-07 12:38:50,292 [main] TRACE UmlClass - created (1745) WG10 IEC61850 primitive DA BasicDAs::INT32, 1 superclasses=[PrimitiveDA] +2024-09-07 12:38:50,292 [main] TRACE UmlClass - created (1743) WG10 IEC61850 primitive DA BasicDAs::INT16U, 1 superclasses=[PrimitiveDA] +2024-09-07 12:38:50,292 [main] TRACE UmlClass - created (1741) WG10 IEC61850 primitive DA BasicDAs::FLOAT32, 1 superclasses=[PrimitiveDA] +2024-09-07 12:38:50,292 [main] TRACE UmlSkipped - created (2168) WG10 IEC61850 note link FLOAT32. - ? - ? +2024-09-07 12:38:50,292 [main] TRACE UmlClass - created (1740) WG10 IEC61850 primitive DA BasicDAs::BOOLEAN, 1 superclasses=[PrimitiveDA] +2024-09-07 12:38:50,292 [main] TRACE UmlClass - created (1854) WG10 IEC61850 abstract class packed list DA MetaModel::PackedPrimitiveDA, 1 superclasses=[PrimitiveDA] +2024-09-07 12:38:50,292 [main] TRACE UmlClass - created (1757) WG10 IEC61850 packed list DA BasicDAs::TriggerConditions, 1 superclasses=[PackedPrimitiveDA] +2024-09-07 12:38:50,292 [main] TRACE UmlSkipped - created (1758) WG10 IEC61850 boundary TriggerConditions. +2024-09-07 12:38:50,292 [main] TRACE UmlDiagram - created (206) WG10 IEC61850 custom TriggerConditions.Relation between trigger conditions, applicable trigger options and reporting +2024-09-07 12:38:50,292 [main] TRACE UmlClass - created (1756) WG10 IEC61850 packed list DA BasicDAs::TimeStamp, 1 superclasses=[PackedPrimitiveDA] +2024-09-07 12:38:50,292 [main] TRACE UmlClass - created (2080) WG10 IEC61850 packed list DA ConstructedDAs::Quality, 1 superclasses=[PackedPrimitiveDA] +2024-09-07 12:38:50,292 [main] TRACE UmlSkipped - created (2081) WG10 IEC61850 state machine Quality.validityStateMachine +2024-09-07 12:38:50,293 [main] TRACE UmlDiagram - created (232) WG10 IEC61850 statechart Quality.Quality.validity +2024-09-07 12:38:50,293 [main] TRACE UmlClass - created (1855) WG10 IEC61850 abstract class enumeration DA MetaModel::EnumDA, 1 superclasses=[PrimitiveDA] +2024-09-07 12:38:50,293 [main] TRACE UmlClass - created (1856) WG10 IEC61850 abstract class coded enumeration DA MetaModel::PackedEnumDA, 1 superclasses=[EnumDA] +2024-09-07 12:38:50,293 [main] TRACE UmlClass - created (1760) WG10 IEC61850 coded enumeration DA BasicDAs::BsControl, 1 superclasses=[PackedEnumDA] +2024-09-07 12:38:50,293 [main] TRACE UmlClass - created (1759) WG10 IEC61850 coded enumeration DA BasicDAs::DpStatus, 1 superclasses=[PackedEnumDA] +2024-09-07 12:38:50,293 [main] TRACE UmlClass - created (2072) WG10 IEC61850 enumeration DA ImplicitDAs::SIUnit, 1 superclasses=[EnumDA] +2024-09-07 12:38:50,293 [main] TRACE UmlClass - created (2061) WG10 IEC61850 enumeration DA ImplicitDAs::Multiplier, 1 superclasses=[EnumDA] +2024-09-07 12:38:50,293 [main] TRACE UmlClass - created (2066) WG10 IEC61850 enumeration DA ImplicitDAs::PhaseFaultDirection, 1 superclasses=[EnumDA] +2024-09-07 12:38:50,293 [main] TRACE UmlClass - created (2065) WG10 IEC61850 enumeration DA ImplicitDAs::PhaseAngleReference, 1 superclasses=[EnumDA] +2024-09-07 12:38:50,293 [main] TRACE UmlClass - created (2622) WG10 IEC61850 enumeration DA DerivedDAs::BehaviourMode, 1 superclasses=[EnumDA] +2024-09-07 12:38:50,293 [main] TRACE UmlClass - created (2625) WG10 IEC61850 enumeration DA DerivedDAs::CalcMethod, 1 superclasses=[EnumDA] +2024-09-07 12:38:50,293 [main] TRACE UmlClass - created (2634) WG10 IEC61850 enumeration DA DerivedDAs::Health, 1 superclasses=[EnumDA] +2024-09-07 12:38:50,293 [main] TRACE UmlClass - created (3055) WG17 IEC61850 enumeration DA DerivedDAs_7_420::Material, 1 superclasses=[EnumDA] +2024-09-07 12:38:50,293 [main] TRACE UmlSkipped - created (3433) WG17 IEC61850 note link Material. - ? - ? +2024-09-07 12:38:50,293 [main] TRACE UmlClass - created (3088) WG17 IEC61850 enumeration DA DerivedDAs_7_420::Material_control, 1 superclasses=[EnumDA] +2024-09-07 12:38:50,293 [main] TRACE UmlSkipped - created (3474) WG17 IEC61850 note link Material_control. - ? - ? +2024-09-07 12:38:50,293 [main] TRACE UmlClass - created (3056) WG17 IEC61850 enumeration DA DerivedDAs_7_420::Other, 1 superclasses=[EnumDA] +2024-09-07 12:38:50,293 [main] TRACE UmlSkipped - created (3432) WG17 IEC61850 note link Other. - ? - ? +2024-09-07 12:38:50,293 [main] TRACE UmlClass - created (1857) WG10 IEC61850 abstract class composed DA MetaModel::ComposedDA, 1 superclasses=[DA] +2024-09-07 12:38:50,293 [main] TRACE UmlClass - created (2089) WG10 IEC61850 composed DA ConstructedDAs::AnalogueValue, 1 superclasses=[ComposedDA] +2024-09-07 12:38:50,293 [main] TRACE UmlSkipped - created (2152) WG10 IEC61850 note link AnalogueValue. - ? - ? +2024-09-07 12:38:50,293 [main] TRACE UmlSkipped - created (2158) WG10 IEC61850 note link AnalogueValue. - ? - ? +2024-09-07 12:38:50,293 [main] TRACE UmlSkipped - created (2169) WG10 IEC61850 note link AnalogueValue. - ? - ? +2024-09-07 12:38:50,293 [main] TRACE UmlClass - created (2091) WG10 IEC61850 composed DA ConstructedDAs::RangeConfig, 1 superclasses=[ComposedDA] +2024-09-07 12:38:50,293 [main] TRACE UmlDiagram - created (235) WG10 IEC61850 custom RangeConfig.Range configuration +2024-09-07 12:38:50,294 [main] TRACE UmlClass - created (2096) WG10 IEC61850 composed DA ConstructedDAs::Unit, 1 superclasses=[ComposedDA] +2024-09-07 12:38:50,294 [main] TRACE UmlClass - created (2098) WG10 IEC61850 composed DA ConstructedDAs::Point, 1 superclasses=[ComposedDA] +2024-09-07 12:38:50,294 [main] DEBUG UmlClass - unclassified 7-2 class: (1858) WG10 IEC61850 abstract class null MetaModel::DS, 1 superclasses=[NamedIEC61850Object] +2024-09-07 12:38:50,294 [main] TRACE UmlClass - created (1858) WG10 IEC61850 abstract class other 61850 MetaModel::DS, 1 superclasses=[NamedIEC61850Object] +2024-09-07 12:38:50,294 [main] DEBUG UmlClass - unclassified 7-2 class: (1859) WG10 IEC61850 abstract class null MetaModel::LNOwnedDS, 1 superclasses=[DS] +2024-09-07 12:38:50,294 [main] TRACE UmlClass - created (1859) WG10 IEC61850 abstract class other 61850 MetaModel::LNOwnedDS, 1 superclasses=[DS] +2024-09-07 12:38:50,294 [main] DEBUG UmlClass - unclassified 7-2 class: (1861) WG10 IEC61850 null MetaModel::ConfiguredDS, 1 superclasses=[LNOwnedDS] +2024-09-07 12:38:50,294 [main] TRACE UmlClass - created (1861) WG10 IEC61850 other 61850 MetaModel::ConfiguredDS, 1 superclasses=[LNOwnedDS] +2024-09-07 12:38:50,294 [main] DEBUG UmlClass - unclassified 7-2 class: (1862) WG10 IEC61850 null MetaModel::PersistentDS, 1 superclasses=[LNOwnedDS] +2024-09-07 12:38:50,294 [main] TRACE UmlClass - created (1862) WG10 IEC61850 other 61850 MetaModel::PersistentDS, 1 superclasses=[LNOwnedDS] +2024-09-07 12:38:50,294 [main] DEBUG UmlClass - unclassified 7-2 class: (1860) WG10 IEC61850 null MetaModel::NonPersistentDS, 1 superclasses=[DS] +2024-09-07 12:38:50,294 [main] TRACE UmlClass - created (1860) WG10 IEC61850 other 61850 MetaModel::NonPersistentDS, 1 superclasses=[DS] +2024-09-07 12:38:50,294 [main] DEBUG UmlClass - unclassified 7-2 class: (1864) WG10 IEC61850 abstract class null MetaModel::ControlBlock, 1 superclasses=[NamedIEC61850Object] +2024-09-07 12:38:50,294 [main] TRACE UmlClass - created (1864) WG10 IEC61850 abstract class other 61850 MetaModel::ControlBlock, 1 superclasses=[NamedIEC61850Object] +2024-09-07 12:38:50,294 [main] DEBUG UmlClass - unclassified 7-2 class: (1865) WG10 IEC61850 abstract class null MetaModel::RCB, 1 superclasses=[ControlBlock] +2024-09-07 12:38:50,294 [main] TRACE UmlClass - created (1865) WG10 IEC61850 abstract class other 61850 MetaModel::RCB, 1 superclasses=[ControlBlock] +2024-09-07 12:38:50,294 [main] DEBUG UmlClass - unclassified 7-2 class: (1866) WG10 IEC61850 abstract class null MetaModel::BRCB, 1 superclasses=[RCB] +2024-09-07 12:38:50,294 [main] TRACE UmlClass - created (1866) WG10 IEC61850 abstract class other 61850 MetaModel::BRCB, 1 superclasses=[RCB] +2024-09-07 12:38:50,294 [main] DEBUG UmlClass - unclassified 7-2 class: (1867) WG10 IEC61850 abstract class null MetaModel::URCB, 1 superclasses=[RCB] +2024-09-07 12:38:50,294 [main] TRACE UmlClass - created (1867) WG10 IEC61850 abstract class other 61850 MetaModel::URCB, 1 superclasses=[RCB] +2024-09-07 12:38:50,295 [main] DEBUG UmlClass - unclassified 7-2 class: (1868) WG10 IEC61850 null MetaModel::LCB, 1 superclasses=[ControlBlock] +2024-09-07 12:38:50,295 [main] TRACE UmlClass - created (1868) WG10 IEC61850 other 61850 MetaModel::LCB, 1 superclasses=[ControlBlock] +2024-09-07 12:38:50,295 [main] DEBUG UmlClass - unclassified 7-2 class: (1870) WG10 IEC61850 null MetaModel::GCB, 1 superclasses=[ControlBlock] +2024-09-07 12:38:50,295 [main] TRACE UmlClass - created (1870) WG10 IEC61850 other 61850 MetaModel::GCB, 1 superclasses=[ControlBlock] +2024-09-07 12:38:50,295 [main] DEBUG UmlClass - unclassified 7-2 class: (1871) WG10 IEC61850 abstract class null MetaModel::SVCB, 1 superclasses=[ControlBlock] +2024-09-07 12:38:50,295 [main] TRACE UmlClass - created (1871) WG10 IEC61850 abstract class other 61850 MetaModel::SVCB, 1 superclasses=[ControlBlock] +2024-09-07 12:38:50,295 [main] DEBUG UmlClass - unclassified 7-2 class: (1872) WG10 IEC61850 abstract class null MetaModel::MSVCB, 1 superclasses=[SVCB] +2024-09-07 12:38:50,295 [main] TRACE UmlClass - created (1872) WG10 IEC61850 abstract class other 61850 MetaModel::MSVCB, 1 superclasses=[SVCB] +2024-09-07 12:38:50,295 [main] DEBUG UmlClass - unclassified 7-2 class: (1873) WG10 IEC61850 abstract class null MetaModel::USVCB, 1 superclasses=[SVCB] +2024-09-07 12:38:50,295 [main] TRACE UmlClass - created (1873) WG10 IEC61850 abstract class other 61850 MetaModel::USVCB, 1 superclasses=[SVCB] +2024-09-07 12:38:50,295 [main] DEBUG UmlClass - unclassified 7-2 class: (1874) WG10 IEC61850 null MetaModel::SGCB, 1 superclasses=[ControlBlock] +2024-09-07 12:38:50,295 [main] TRACE UmlClass - created (1874) WG10 IEC61850 other 61850 MetaModel::SGCB, 1 superclasses=[ControlBlock] +2024-09-07 12:38:50,295 [main] DEBUG UmlClass - unclassified 7-2 class: (1869) WG10 IEC61850 null MetaModel::LOG, 1 superclasses=[NamedIEC61850Object] +2024-09-07 12:38:50,295 [main] TRACE UmlClass - created (1869) WG10 IEC61850 other 61850 MetaModel::LOG, 1 superclasses=[NamedIEC61850Object] +2024-09-07 12:38:50,295 [main] DEBUG UmlClass - unclassified 7-2 class: (1838) WG10 IEC61850 null MetaModel::IED, 1 superclasses=[HierarchyIEC61850Object] +2024-09-07 12:38:50,295 [main] TRACE UmlClass - created (1838) WG10 IEC61850 other 61850 MetaModel::IED, 1 superclasses=[HierarchyIEC61850Object] +2024-09-07 12:38:50,295 [main] DEBUG UmlClass - unclassified 7-2 class: (1839) WG10 IEC61850 null MetaModel::SERVER, 1 superclasses=[HierarchyIEC61850Object] +2024-09-07 12:38:50,295 [main] TRACE UmlClass - created (1839) WG10 IEC61850 other 61850 MetaModel::SERVER, 1 superclasses=[HierarchyIEC61850Object] +2024-09-07 12:38:50,295 [main] DEBUG UmlClass - unclassified 7-2 class: (1850) WG10 IEC61850 null MetaModel::FCD, 1 superclasses=[HierarchyIEC61850Object] +2024-09-07 12:38:50,295 [main] TRACE UmlClass - created (1850) WG10 IEC61850 other 61850 MetaModel::FCD, 1 superclasses=[HierarchyIEC61850Object] +2024-09-07 12:38:50,295 [main] DEBUG UmlClass - unclassified 7-2 class: (1877) WG10 IEC61850 null MetaModel::FILE, 1 superclasses=[HierarchyIEC61850Object] +2024-09-07 12:38:50,295 [main] TRACE UmlClass - created (1877) WG10 IEC61850 other 61850 MetaModel::FILE, 1 superclasses=[HierarchyIEC61850Object] +2024-09-07 12:38:50,295 [main] DEBUG UmlClass - unclassified 7-2 class: (1840) WG10 IEC61850 null MetaModel::TPAA, 1 superclasses=[IEC61850Object] +2024-09-07 12:38:50,295 [main] TRACE UmlClass - created (1840) WG10 IEC61850 other 61850 MetaModel::TPAA, 1 superclasses=[IEC61850Object] +2024-09-07 12:38:50,295 [main] DEBUG UmlClass - unclassified 7-2 class: (1841) WG10 IEC61850 null MetaModel::MCAA, 1 superclasses=[IEC61850Object] +2024-09-07 12:38:50,296 [main] TRACE UmlClass - created (1841) WG10 IEC61850 other 61850 MetaModel::MCAA, 1 superclasses=[IEC61850Object] +2024-09-07 12:38:50,296 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (2720) WG10 IEC61850 null DerivedCDCs::SPCTransient, 1 superclasses=[SPC] +2024-09-07 12:38:50,296 [main] TRACE UmlClass - created (2720) WG10 IEC61850 other 61850 DerivedCDCs::SPCTransient, 1 superclasses=[SPC] +2024-09-07 12:38:50,296 [main] TRACE UmlClass - created (3091) WG17 IEC61850 enumeration <> DOEnums_7_420::ExtBaseKind, 1 superclasses=[BaseKind] +2024-09-07 12:38:50,296 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,296 [main] TRACE UmlAttribute - created (6717) WG17 IEC61850 literal <> DOEnums_7_420::ExtBaseKind.ebk1 +2024-09-07 12:38:50,296 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,296 [main] TRACE UmlAttribute - created (6718) WG17 IEC61850 literal <> DOEnums_7_420::ExtBaseKind.ebk2 +2024-09-07 12:38:50,296 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,296 [main] TRACE UmlAttribute - created (6719) WG17 IEC61850 literal <> DOEnums_7_420::ExtBaseKind.ebk3 +2024-09-07 12:38:50,296 [main] TRACE UmlClass - created (1488) OTHER_CIM CIM class Ext1::Apple, 1 superclasses=[Fruit] +2024-09-07 12:38:50,296 [main] TRACE UmlSkipped - created (3458) OTHER_CIM CIM other Apple. - ? - ? +2024-09-07 12:38:50,296 [main] TRACE UmlSkipped - created (3459) OTHER_CIM CIM other Apple. - ? - ? +2024-09-07 12:38:50,296 [main] TRACE UmlClass - created (3035) OTHER_CIM CIM class Ext1::Strawberry, 1 superclasses=[Fruit] +2024-09-07 12:38:50,296 [main] TRACE UmlSkipped - created (3419) OTHER_CIM CIM note link Strawberry. - ? - ? +2024-09-07 12:38:50,297 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1492) OTHER_IEC61850 IEC61850 null Ext2::Dog, 1 superclasses=[Animal] +2024-09-07 12:38:50,297 [main] TRACE UmlClass - created (1492) OTHER_IEC61850 IEC61850 other 61850 Ext2::Dog, 1 superclasses=[Animal] +2024-09-07 12:38:50,297 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1493) OTHER_IEC61850 IEC61850 null Ext2::Horse, 1 superclasses=[Animal] +2024-09-07 12:38:50,297 [main] TRACE UmlClass - created (1493) OTHER_IEC61850 IEC61850 other 61850 Ext2::Horse, 1 superclasses=[Animal] +2024-09-07 12:38:50,297 [main] INFO EaModelBuilder - reordering in-memory classes in packages ... +2024-09-07 12:38:50,297 [main] INFO EaModelBuilder - creating in-memory class' attributes, operations and constraints ... +2024-09-07 12:38:50,298 [main] ERROR UmlAttribute - unclassified CIM attribute: (3284) OTHER_CIM CIM INF [0..1] null Informative::HasIllegalTypeForAttr.dummy: Core::Bay +2024-09-07 12:38:50,298 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,298 [main] TRACE UmlAttribute - created (3284) OTHER_CIM CIM INF [0..1] attribute Informative::HasIllegalTypeForAttr.dummy: Core::Bay +2024-09-07 12:38:50,298 [main] TRACE ValueRange - '20119-08-01' has no separator indicating range. +2024-09-07 12:38:50,298 [main] TRACE UmlAttribute - created (1271) WG13 CIM static const [0..1] CIMDatatype attribute IEC61970::IEC61970CIMVersion.date: Domain::AbsoluteDateTime = 20119-08-01 +2024-09-07 12:38:50,298 [main] TRACE ValueRange - 'IEC61970CIM14v12' has no separator indicating range. +2024-09-07 12:38:50,298 [main] TRACE UmlAttribute - created (1272) WG13 CIM static const [0..1] Primitive attribute IEC61970::IEC61970CIMVersion.version: Domain::String = IEC61970CIM14v12 +2024-09-07 12:38:50,298 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,298 [main] TRACE UmlAttribute - created (6709) WG13 CIM INF [1..1] Primitive attribute InformativeAndPrivate::InfClass2.isToto: Domain::Boolean +2024-09-07 12:38:50,298 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,298 [main] TRACE UmlAttribute - created (1440) WG13 CIM protected [2..5] Primitive attribute Domain::AbsoluteDateTime.protectedAttribute: Domain::String +2024-09-07 12:38:50,298 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,298 [main] TRACE UmlAttribute - created (1436) WG13 CIM [0..1] Primitive attribute <> Domain::ActivePower.value: Domain::Float +2024-09-07 12:38:50,298 [main] TRACE ValueRange - 'W' has no separator indicating range. +2024-09-07 12:38:50,298 [main] TRACE UmlAttribute - created (1435) WG13 CIM static const [0..1] enumeration attribute <> Domain::ActivePower.unit: Domain::UnitSymbol = W +2024-09-07 12:38:50,298 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,298 [main] TRACE UmlAttribute - created (1434) WG13 CIM [0..1] enumeration attribute <> Domain::ActivePower.multiplier: Domain::UnitMultiplier +2024-09-07 12:38:50,299 [main] ERROR UmlAttribute - unclassified CIM attribute: (1404) WG13 CIM [0..1] null Domain::ActivePowerChangeRate.value: NullCIM::NullCIM +2024-09-07 12:38:50,299 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,299 [main] TRACE UmlAttribute - created (1404) WG13 CIM [0..1] attribute Domain::ActivePowerChangeRate.value: NullCIM::NullCIM +2024-09-07 12:38:50,299 [main] TRACE ValueRange - 'W/s' has no separator indicating range. +2024-09-07 12:38:50,299 [main] TRACE UmlAttribute - created (1403) WG13 CIM static [0..1] enumeration attribute Domain::ActivePowerChangeRate.unit: Domain::UnitSymbol = W/s +2024-09-07 12:38:50,299 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,299 [main] TRACE UmlAttribute - created (1402) WG13 CIM [0..1] enumeration attribute Domain::ActivePowerChangeRate.multiplier: Domain::UnitMultiplier +2024-09-07 12:38:50,299 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,299 [main] TRACE UmlAttribute - created (1370) WG13 CIM [0..1] Primitive attribute Domain::ApparentPower.value: Domain::Float +2024-09-07 12:38:50,299 [main] TRACE ValueRange - 'VA' has no separator indicating range. +2024-09-07 12:38:50,299 [main] TRACE UmlAttribute - created (1369) WG13 CIM static const [0..1] enumeration attribute Domain::ApparentPower.unit: Domain::UnitSymbol = VA +2024-09-07 12:38:50,299 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,299 [main] TRACE UmlAttribute - created (1368) WG13 CIM [0..1] enumeration attribute Domain::ApparentPower.multiplier: Domain::UnitMultiplier +2024-09-07 12:38:50,299 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,299 [main] TRACE UmlAttribute - created (1325) WG13 CIM [0..1] Primitive attribute Domain::Money.value: Domain::Float +2024-09-07 12:38:50,299 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,299 [main] TRACE UmlAttribute - created (1324) WG13 CIM [0..1] enumeration attribute Domain::Money.unit: Domain::Currency +2024-09-07 12:38:50,299 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,299 [main] TRACE UmlAttribute - created (1323) WG13 CIM [0..1] enumeration attribute Domain::Money.multiplier: Domain::UnitMultiplier +2024-09-07 12:38:50,300 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,300 [main] TRACE UmlAttribute - created (1367) WG13 CIM [0..1] Primitive attribute Domain::PerCent.value: Domain::Float +2024-09-07 12:38:50,300 [main] TRACE ValueRange - 'none' has no separator indicating range. +2024-09-07 12:38:50,300 [main] TRACE UmlAttribute - created (1366) WG13 CIM static const [0..1] enumeration attribute Domain::PerCent.unit: Domain::UnitSymbol = none +2024-09-07 12:38:50,300 [main] TRACE ValueRange - 'none' has no separator indicating range. +2024-09-07 12:38:50,300 [main] TRACE UmlAttribute - created (1365) WG13 CIM static const [0..1] enumeration attribute Domain::PerCent.multiplier: Domain::UnitMultiplier = none +2024-09-07 12:38:50,300 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,300 [main] TRACE UmlAttribute - created (1379) WG13 CIM [0..1] Primitive attribute Domain::Seconds.value: Domain::Float +2024-09-07 12:38:50,300 [main] TRACE ValueRange - 's' has no separator indicating range. +2024-09-07 12:38:50,300 [main] TRACE UmlAttribute - created (1378) WG13 CIM static const [0..1] enumeration attribute Domain::Seconds.unit: Domain::UnitSymbol = s +2024-09-07 12:38:50,300 [main] TRACE ValueRange - 'none' has no separator indicating range. +2024-09-07 12:38:50,300 [main] TRACE UmlAttribute - created (1377) WG13 CIM static const [0..1] enumeration attribute Domain::Seconds.multiplier: Domain::UnitMultiplier = none +2024-09-07 12:38:50,300 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,300 [main] TRACE UmlAttribute - created (1306) WG13 CIM [0..1] Primitive attribute Domain::Voltage.value: Domain::Float +2024-09-07 12:38:50,300 [main] TRACE ValueRange - 'V' has no separator indicating range. +2024-09-07 12:38:50,300 [main] TRACE UmlAttribute - created (1305) WG13 CIM static const [0..1] enumeration attribute Domain::Voltage.unit: Domain::UnitSymbol = V +2024-09-07 12:38:50,300 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,300 [main] TRACE UmlAttribute - created (1304) WG13 CIM [0..1] enumeration attribute Domain::Voltage.multiplier: Domain::UnitMultiplier +2024-09-07 12:38:50,300 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,300 [main] TRACE UmlAttribute - created (2100) WG13 CIM [0..1] CIMDatatype attribute Core::BasePower.basePower: Domain::ApparentPower +2024-09-07 12:38:50,300 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,300 [main] TRACE UmlAttribute - created (3317) WG13 CIM private [0..1] Primitive attribute Core::BaseVoltage.privateDummy: Domain::Boolean +2024-09-07 12:38:50,300 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,300 [main] TRACE UmlAttribute - created (2981) WG13 CIM package [0..1] Primitive attribute Core::BaseVoltage.packagePrivateIsDC: Domain::Boolean +2024-09-07 12:38:50,300 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,301 [main] TRACE UmlAttribute - created (2053) WG13 CIM protected [0..1] CIMDatatype attribute Core::BaseVoltage.protectedNominalVoltage: Domain::Voltage +2024-09-07 12:38:50,301 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,301 [main] TRACE UmlAttribute - created (3249) WG13 CIM [0..1] Primitive attribute Core::BaseVoltage.basePower: Domain::Boolean +2024-09-07 12:38:50,301 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,301 [main] TRACE UmlAttribute - created (2077) WG13 CIM [0..1] Primitive attribute Core::Bay.bayEnergyMeasFlag: Domain::Boolean +2024-09-07 12:38:50,301 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,301 [main] TRACE UmlAttribute - created (2078) WG13 CIM [0..1] Primitive attribute Core::Bay.bayPowerMeasFlag: Domain::Boolean +2024-09-07 12:38:50,301 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,301 [main] TRACE UmlAttribute - created (2079) WG13 CIM [0..1] enumeration attribute Core::Bay.breakerConfiguration: Core::BreakerConfiguration +2024-09-07 12:38:50,301 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,301 [main] TRACE UmlAttribute - created (2080) WG13 CIM [0..1] enumeration attribute Core::Bay.busBarConfiguration: Core::BusbarConfiguration +2024-09-07 12:38:50,301 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,301 [main] TRACE UmlAttribute - created (3301) WG13 CIM [0..1] enumeration attribute Core::Bay.TestYesNo1: Domain::YesNo +2024-09-07 12:38:50,301 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,301 [main] TRACE UmlAttribute - created (3302) WG13 CIM [0..1] enumeration attribute Core::Bay.testYesNo2: Domain::YesNo +2024-09-07 12:38:50,301 [main] TRACE UmlConstraint - created class attributes constraint Core::BreakerConfiguration {ConstraintOnEnum = [text]} +2024-09-07 12:38:50,302 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,302 [main] TRACE UmlAttribute - created (2091) WG13 CIM [0..1] enumeration attribute Core::ConductingEquipment.phases: Core::PhaseCode +2024-09-07 12:38:50,302 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,302 [main] TRACE UmlAttribute - created (2117) WG13 CIM [0..1] Primitive attribute Core::Equipment.normaIlyInService: Domain::Boolean +2024-09-07 12:38:50,302 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,302 [main] TRACE UmlAttribute - created (2109) WG13 CIM [0..1] CIMDatatype attribute Core::OperatingShare.percentage: Domain::PerCent +2024-09-07 12:38:50,302 [main] TRACE UmlConstraint - created attribute index constraint Core::OperatingShare.percentage {constraintProcess = constraint description} +2024-09-07 12:38:50,302 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,302 [main] TRACE UmlAttribute - created (6708) WG13 CIM [0..1] Primitive attribute <> Core::PowerSystemResource.attr: Domain::String +2024-09-07 12:38:50,303 [main] TRACE UmlConstraint - created class attributes constraint Core::PowerSystemResource {R.1.2.3 PSR process constraint = [Here the text for process constraint.]} +2024-09-07 12:38:50,303 [main] TRACE UmlConstraint - created class attributes constraint Core::PowerSystemResource {ruleAsInQoCDC = [text only]} +2024-09-07 12:38:50,303 [main] TRACE UmlConstraint - created class attributes constraint Core::PowerSystemResource {anotherOclRule = [{ocl]} +2024-09-07 12:38:50,311 [main] TRACE UmlOperation - created (1) WG13 CIM Core::PowerSystemResource operation abstract public NullCIM[] GetWhatevers() +2024-09-07 12:38:50,319 [main] TRACE UmlParameter - created <> null(...<> BasePower[] multiples...) +2024-09-07 12:38:50,319 [main] TRACE UmlOperation - created (2) WG13 CIM Core::PowerSystemResource operation <> public void setSomething() +2024-09-07 12:38:50,319 [main] TRACE UmlParameter - created null(... String name...) +2024-09-07 12:38:50,319 [main] TRACE UmlOperation - created (5) WG13 CIM Core::PowerSystemResource operation <> public NullCIM bar() +2024-09-07 12:38:50,319 [main] TRACE UmlParameter - created null(... NullCIM par3...) +2024-09-07 12:38:50,320 [main] TRACE UmlParameter - created null(... Float par2...) +2024-09-07 12:38:50,320 [main] TRACE UmlParameter - created null(... NullCIM par...) +2024-09-07 12:38:50,320 [main] TRACE UmlOperation - created (4) WG13 CIM Core::PowerSystemResource operation public NullCIM foo() +2024-09-07 12:38:50,320 [main] TRACE UmlParameter - created null(... NullCIM par3...) +2024-09-07 12:38:50,320 [main] TRACE UmlParameter - created <> null(...<> Float par2...) +2024-09-07 12:38:50,320 [main] TRACE UmlParameter - created null(... NullCIM par...) +2024-09-07 12:38:50,320 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,320 [main] TRACE UmlAttribute - created (3125) WG13 CIM [0..1] Primitive attribute Core::Terminal.connected: Domain::Boolean +2024-09-07 12:38:50,320 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,320 [main] TRACE UmlAttribute - created (3188) WG13 CIM [0..1] Primitive attribute Core::Terminal.sequenceNumber: Domain::Integer +2024-09-07 12:38:50,320 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,320 [main] TRACE UmlAttribute - created (2106) WG13 CIM [0..1] CIMDatatype attribute Core::VoltageLevel.highVoltageLimit: Domain::Voltage +2024-09-07 12:38:50,320 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,320 [main] TRACE UmlAttribute - created (2107) WG13 CIM [0..1] CIMDatatype attribute Core::VoltageLevel.lowVoltageLimit: Domain::Voltage +2024-09-07 12:38:50,320 [main] TRACE UmlOperation - created (3) WG13 CIM Core::VoltageLevel operation public Voltage getVoltage() +2024-09-07 12:38:50,320 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,320 [main] TRACE UmlAttribute - created (6646) WG13 CIM [0..1] Primitive attribute Core::IdentifiedObject.aliasName: Domain::String +2024-09-07 12:38:50,320 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,320 [main] TRACE UmlAttribute - created (6647) WG13 CIM [0..1] Primitive attribute Core::IdentifiedObject.mRID: Domain::String +2024-09-07 12:38:50,320 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,320 [main] TRACE UmlAttribute - created (6648) WG13 CIM [0..1] Primitive attribute Core::IdentifiedObject.name: Domain::String +2024-09-07 12:38:50,320 [main] WARN AbstractUmlObject - Primitive attribute ({870F033B-EDA6-4a32-A5AD-47DCBBFE2997}) Core::IdentifiedObject.name already in Core::IdentifiedObject. +2024-09-07 12:38:50,320 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,321 [main] TRACE UmlAttribute - created (3250) WG13 CIM [0..1] Primitive attribute Topology::BusNameMarker.constrained1: Domain::Integer +2024-09-07 12:38:50,321 [main] TRACE UmlConstraint - created attribute index constraint Topology::BusNameMarker.constrained1 {maxIdx = count+1} +2024-09-07 12:38:50,321 [main] TRACE UmlConstraint - created attribute index constraint Topology::BusNameMarker.constrained1 {minIdx = 0} +2024-09-07 12:38:50,321 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,321 [main] TRACE UmlAttribute - created (3251) WG13 CIM [0..1] Primitive attribute Topology::BusNameMarker.constrained2: Domain::Integer +2024-09-07 12:38:50,321 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,321 [main] TRACE UmlAttribute - created (3252) WG13 CIM [0..1] Primitive attribute Topology::BusNameMarker.constrained3: Domain::Integer +2024-09-07 12:38:50,321 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,321 [main] TRACE UmlAttribute - created (3253) WG13 CIM [0..1] Primitive attribute Topology::BusNameMarker.constrained4: Domain::Integer +2024-09-07 12:38:50,321 [main] TRACE UmlConstraint - created class attributes constraint Topology::BusNameMarker {C2_1 = [constrained1, constrained2]} +2024-09-07 12:38:50,321 [main] TRACE UmlConstraint - created class attributes constraint Topology::BusNameMarker {C2_2 = [constrained3, constrained4]} +2024-09-07 12:38:50,321 [main] TRACE UmlConstraint - created class attributes constraint Topology::BusNameMarker {C2_3 = [constrained1, constrained4]} +2024-09-07 12:38:50,321 [main] TRACE UmlConstraint - created class attributes constraint Topology::BusNameMarker {EMPTY = []} +2024-09-07 12:38:50,321 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,321 [main] TRACE UmlAttribute - created (3254) WG13 CIM [0..1] Primitive attribute Topology::TopologicalIsland.constrained5: Domain::Integer +2024-09-07 12:38:50,321 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,321 [main] TRACE UmlAttribute - created (3255) WG13 CIM [0..1] Primitive attribute Topology::TopologicalIsland.nonConstrained: Domain::Integer +2024-09-07 12:38:50,321 [main] TRACE UmlConstraint - created class attributes constraint Topology::TopologicalIsland {PICS_SUBST = [constrained5]} +2024-09-07 12:38:50,321 [main] TRACE ValueRange - '2010-05-07' has no separator indicating range. +2024-09-07 12:38:50,321 [main] TRACE UmlAttribute - created (3256) WG14 CIM static const [0..1] CIMDatatype attribute IEC61968::IEC61968Version.date: Domain::AbsoluteDateTime = 2010-05-07 +2024-09-07 12:38:50,321 [main] TRACE ValueRange - 'IEC62325CIM01v02' has no separator indicating range. +2024-09-07 12:38:50,321 [main] TRACE UmlAttribute - created (3257) WG14 CIM static const [0..1] Primitive attribute IEC61968::IEC61968Version.version: Domain::String = IEC62325CIM01v02 +2024-09-07 12:38:50,322 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,322 [main] TRACE UmlAttribute - created (3263) WG14 CIM [0..1] Primitive attribute Other::MyClass.value: Domain::Float +2024-09-07 12:38:50,322 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,322 [main] TRACE UmlAttribute - created (3264) WG14 CIM [0..1] Primitive attribute Other::MyClass.normaIlyInService: Domain::Boolean +2024-09-07 12:38:50,322 [main] ERROR UmlAttribute - unclassified CIM attribute: (3265) WG14 CIM [0..1] null Other::MyClass.curveStyle: NullCIM::NullCIM +2024-09-07 12:38:50,322 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,322 [main] TRACE UmlAttribute - created (3265) WG14 CIM [0..1] attribute Other::MyClass.curveStyle: NullCIM::NullCIM +2024-09-07 12:38:50,322 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,322 [main] TRACE UmlAttribute - created (3261) WG14 CIM [0..1] CIMDatatype attribute Other::BadDatatypes.value: Other::BadDatatypes +2024-09-07 12:38:50,322 [main] TRACE ValueRange - 'badEnumVal' has no separator indicating range. +2024-09-07 12:38:50,322 [main] TRACE UmlAttribute - created (3268) WG14 CIM [0..1] enumeration attribute Other::BadDatatypes.unit: Domain::UnitSymbol = badEnumVal +2024-09-07 12:38:50,323 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,323 [main] TRACE UmlAttribute - created (6707) WG14 CIM [0..1] Primitive attribute Other::Equipment.myExtension: Domain::Integer +2024-09-07 12:38:50,323 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,323 [main] TRACE UmlAttribute - created (3303) WG14 CIM [0..1] enumeration attribute Other::Equipment.testYesNo1: Domain::YesNo +2024-09-07 12:38:50,323 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,323 [main] TRACE UmlAttribute - created (3262) WG14 CIM [0..1] Primitive attribute Other::NonEmptyPrimitive.value: Domain::Float +2024-09-07 12:38:50,323 [main] ERROR UmlAttribute - unclassified CIM attribute: (3266) WG14 CIM [0..1] null Other::AttrDuplication.curveStyle: NullCIM::NullCIM +2024-09-07 12:38:50,323 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,323 [main] TRACE UmlAttribute - created (3266) WG14 CIM [0..1] attribute Other::AttrDuplication.curveStyle: NullCIM::NullCIM +2024-09-07 12:38:50,323 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,323 [main] TRACE UmlAttribute - created (3267) WG14 CIM [0..1] Primitive attribute Other::AttrDuplication.normaIlyInService: Domain::Boolean +2024-09-07 12:38:50,323 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,323 [main] TRACE UmlAttribute - created (3296) WG14 CIM [0..1] enumeration attribute Other::AnotherBadDatatype.value: Domain::UnitSymbol +2024-09-07 12:38:50,323 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,323 [main] TRACE UmlAttribute - created (3297) WG14 CIM [0..1] Primitive attribute <> Other::AnotherBadDatatype.unit: Domain::Integer +2024-09-07 12:38:50,323 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,324 [main] TRACE UmlAttribute - created (3298) WG14 CIM const [0..1] Compound attribute Other::AnotherBadDatatype.multiplier: Other::EmptyCompound +2024-09-07 12:38:50,324 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3318) WG10 IEC61850 static const [1..1] null WG10::WG10UMLVersion.version: NullIEC61850::NullIEC61850 = IEC61850UML02v07 +2024-09-07 12:38:50,324 [main] TRACE ValueRange - 'IEC61850UML02v07' has no separator indicating range. +2024-09-07 12:38:50,324 [main] TRACE UmlAttribute - created (3318) WG10 IEC61850 static const [1..1] attribute WG10::WG10UMLVersion.version: NullIEC61850::NullIEC61850 = IEC61850UML02v07 +2024-09-07 12:38:50,324 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3319) WG10 IEC61850 static const [1..1] null WG10::WG10UMLVersion.date: NullIEC61850::NullIEC61850 = 2011-07-02 +2024-09-07 12:38:50,324 [main] TRACE ValueRange - '2011-07-02' has no separator indicating range. +2024-09-07 12:38:50,324 [main] TRACE UmlAttribute - created (3319) WG10 IEC61850 static const [1..1] attribute WG10::WG10UMLVersion.date: NullIEC61850::NullIEC61850 = 2011-07-02 +2024-09-07 12:38:50,324 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3320) WG10 IEC61850 [0..*] null GenericModel::AccessPoint.Address: GenericModel::CommAddress +2024-09-07 12:38:50,324 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,324 [main] TRACE UmlAttribute - created (3320) WG10 IEC61850 [0..*] attribute GenericModel::AccessPoint.Address: GenericModel::CommAddress +2024-09-07 12:38:50,324 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3321) WG10 IEC61850 [1..1] null GenericModel::GenCommonDataClass.CDC-ID: GenericModel::GenObjectName +2024-09-07 12:38:50,324 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,324 [main] TRACE UmlAttribute - created (3321) WG10 IEC61850 [1..1] attribute GenericModel::GenCommonDataClass.CDC-ID: GenericModel::GenObjectName +2024-09-07 12:38:50,324 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3322) WG10 IEC61850 [1..1] null GenericModel::GenConstructedType.DA-ID: GenericModel::GenObjectName +2024-09-07 12:38:50,325 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,325 [main] TRACE UmlAttribute - created (3322) WG10 IEC61850 [1..1] attribute GenericModel::GenConstructedType.DA-ID: GenericModel::GenObjectName +2024-09-07 12:38:50,325 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3323) WG10 IEC61850 [1..1] null GenericModel::GenDataAttribute.DAName: GenericModel::GenObjectName +2024-09-07 12:38:50,325 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,325 [main] TRACE UmlAttribute - created (3323) WG10 IEC61850 [1..1] attribute GenericModel::GenDataAttribute.DAName: GenericModel::GenObjectName +2024-09-07 12:38:50,325 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3324) WG10 IEC61850 [1..1] null GenericModel::GenDataAttribute.DARef: GenericModel::GenObjRef +2024-09-07 12:38:50,325 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,325 [main] TRACE UmlAttribute - created (3324) WG10 IEC61850 [1..1] attribute GenericModel::GenDataAttribute.DARef: GenericModel::GenObjRef +2024-09-07 12:38:50,325 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,325 [main] TRACE UmlAttribute - created (3325) WG10 IEC61850 [1..1] enumeration attribute GenericModel::GenDataAttribute.FC: GenericModel::GenFC +2024-09-07 12:38:50,325 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3326) WG10 IEC61850 [1..1] null GenericModel::GenDataAttribute.TrgOp: GenericModel::GenTriggerConditions +2024-09-07 12:38:50,325 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,325 [main] TRACE UmlAttribute - created (3326) WG10 IEC61850 [1..1] attribute GenericModel::GenDataAttribute.TrgOp: GenericModel::GenTriggerConditions +2024-09-07 12:38:50,325 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,326 [main] TRACE UmlAttribute - created (3327) WG10 IEC61850 [1..1] enumeration attribute GenericModel::GenDataAttribute.Presence: GenericModel::GenPresenceConditions +2024-09-07 12:38:50,326 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3328) WG10 IEC61850 [0..1] null GenericModel::GenDataAttribute.Index: GenericModel::GenINT32U +2024-09-07 12:38:50,326 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,326 [main] TRACE UmlAttribute - created (3328) WG10 IEC61850 [0..1] attribute GenericModel::GenDataAttribute.Index: GenericModel::GenINT32U +2024-09-07 12:38:50,326 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3329) WG10 IEC61850 [1..1] null GenericModel::GenDataObject.DOName: GenericModel::GenObjectName +2024-09-07 12:38:50,326 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,326 [main] TRACE UmlAttribute - created (3329) WG10 IEC61850 [1..1] attribute GenericModel::GenDataObject.DOName: GenericModel::GenObjectName +2024-09-07 12:38:50,326 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3330) WG10 IEC61850 [1..1] null GenericModel::GenDataObject.DORef: GenericModel::GenObjRef +2024-09-07 12:38:50,326 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,326 [main] TRACE UmlAttribute - created (3330) WG10 IEC61850 [1..1] attribute GenericModel::GenDataObject.DORef: GenericModel::GenObjRef +2024-09-07 12:38:50,326 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3331) WG10 IEC61850 [1..1] null GenericModel::GenDataObject.Transient: GenericModel::GenBOOLEAN +2024-09-07 12:38:50,327 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,327 [main] TRACE UmlAttribute - created (3331) WG10 IEC61850 [1..1] attribute GenericModel::GenDataObject.Transient: GenericModel::GenBOOLEAN +2024-09-07 12:38:50,327 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,327 [main] TRACE UmlAttribute - created (3332) WG10 IEC61850 [1..1] enumeration attribute GenericModel::GenDataObject.Presence: GenericModel::GenPresenceConditions +2024-09-07 12:38:50,327 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3333) WG10 IEC61850 [1..1] null GenericModel::GenDataSet.DSName: GenericModel::GenObjectName +2024-09-07 12:38:50,327 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,327 [main] TRACE UmlAttribute - created (3333) WG10 IEC61850 [1..1] attribute GenericModel::GenDataSet.DSName: GenericModel::GenObjectName +2024-09-07 12:38:50,327 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,327 [main] TRACE UmlAttribute - created (3334) WG10 IEC61850 [1..1] enumeration attribute GenericModel::GenFCD.FC: GenericModel::GenFC +2024-09-07 12:38:50,327 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,327 [main] TRACE UmlAttribute - created (3335) WG10 IEC61850 [1..1] enumeration attribute GenericModel::GenFCDA.FC: GenericModel::GenFC +2024-09-07 12:38:50,336 [main] WARN PresenceCondition - presence condition literal not found, or invalid class constraint name format (should be 'name(arguments)'): WG10 IEC61850 class attributes constraint GenericModel::GenFCDA {FCConstraint = [inv]} +2024-09-07 12:38:50,336 [main] TRACE UmlConstraint - created class attributes constraint GenericModel::GenFCDA {FCConstraint = [inv]} (null) +2024-09-07 12:38:50,336 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3336) WG10 IEC61850 [1..1] null GenericModel::GenFile.FileRef: GenericModel::GenVisString255 +2024-09-07 12:38:50,336 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,336 [main] TRACE UmlAttribute - created (3336) WG10 IEC61850 [1..1] attribute GenericModel::GenFile.FileRef: GenericModel::GenVisString255 +2024-09-07 12:38:50,336 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3337) WG10 IEC61850 [1..1] null GenericModel::GenFile.FileSize: GenericModel::GenINT32U +2024-09-07 12:38:50,337 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,337 [main] TRACE UmlAttribute - created (3337) WG10 IEC61850 [1..1] attribute GenericModel::GenFile.FileSize: GenericModel::GenINT32U +2024-09-07 12:38:50,337 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3338) WG10 IEC61850 [1..1] null GenericModel::GenFile.LastModified: GenericModel::GenTimeStamp +2024-09-07 12:38:50,337 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,337 [main] TRACE UmlAttribute - created (3338) WG10 IEC61850 [1..1] attribute GenericModel::GenFile.LastModified: GenericModel::GenTimeStamp +2024-09-07 12:38:50,337 [main] WARN PresenceCondition - presence condition literal not found, or invalid class constraint name format (should be 'name(arguments)'): WG10 IEC61850 class attributes constraint GenericModel::GenLN0 {inv: self.LNName = "LLN0" = []} +2024-09-07 12:38:50,337 [main] TRACE UmlConstraint - created class attributes constraint GenericModel::GenLN0 {inv: self.LNName = "LLN0" = []} (null) +2024-09-07 12:38:50,337 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3339) WG10 IEC61850 [1..1] null GenericModel::GenLogicalDevice.LDName: GenericModel::GenObjectName +2024-09-07 12:38:50,337 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,337 [main] TRACE UmlAttribute - created (3339) WG10 IEC61850 [1..1] attribute GenericModel::GenLogicalDevice.LDName: GenericModel::GenObjectName +2024-09-07 12:38:50,337 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3340) WG10 IEC61850 [1..1] null GenericModel::GenLogicalNode.LNName: GenericModel::GenObjectName +2024-09-07 12:38:50,337 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,338 [main] TRACE UmlAttribute - created (3340) WG10 IEC61850 [1..1] attribute GenericModel::GenLogicalNode.LNName: GenericModel::GenObjectName +2024-09-07 12:38:50,338 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3341) WG10 IEC61850 [1..1] null GenericModel::GenLogicalNode.LNRef: GenericModel::GenObjRef +2024-09-07 12:38:50,338 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,338 [main] TRACE UmlAttribute - created (3341) WG10 IEC61850 [1..1] attribute GenericModel::GenLogicalNode.LNRef: GenericModel::GenObjRef +2024-09-07 12:38:50,338 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3342) WG10 IEC61850 [1..1] null GenericModel::GenSubDataAttribute.SubDAName: GenericModel::GenObjectName +2024-09-07 12:38:50,338 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,338 [main] TRACE UmlAttribute - created (3342) WG10 IEC61850 [1..1] attribute GenericModel::GenSubDataAttribute.SubDAName: GenericModel::GenObjectName +2024-09-07 12:38:50,338 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3343) WG10 IEC61850 [1..1] null GenericModel::GenSubDataAttribute.SubDARef: GenericModel::GenObjRef +2024-09-07 12:38:50,338 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,338 [main] TRACE UmlAttribute - created (3343) WG10 IEC61850 [1..1] attribute GenericModel::GenSubDataAttribute.SubDARef: GenericModel::GenObjRef +2024-09-07 12:38:50,338 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,338 [main] TRACE UmlAttribute - created (3344) WG10 IEC61850 [1..1] enumeration attribute GenericModel::GenSubDataAttribute.FC: GenericModel::GenFC +2024-09-07 12:38:50,338 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,339 [main] TRACE UmlAttribute - created (3345) WG10 IEC61850 [1..1] enumeration attribute GenericModel::GenSubDataAttribute.Presence: GenericModel::GenPresenceConditions +2024-09-07 12:38:50,339 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3346) WG10 IEC61850 [0..1] null GenericModel::GenSubDataAttribute.Index: GenericModel::GenINT32U +2024-09-07 12:38:50,339 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,339 [main] TRACE UmlAttribute - created (3346) WG10 IEC61850 [0..1] attribute GenericModel::GenSubDataAttribute.Index: GenericModel::GenINT32U +2024-09-07 12:38:50,339 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3347) WG10 IEC61850 [1..1] null GenericModel::GenSubDataObject.SDOName: GenericModel::GenObjectName +2024-09-07 12:38:50,339 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,339 [main] TRACE UmlAttribute - created (3347) WG10 IEC61850 [1..1] attribute GenericModel::GenSubDataObject.SDOName: GenericModel::GenObjectName +2024-09-07 12:38:50,339 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3348) WG10 IEC61850 [1..1] null GenericModel::GenSubDataObject.SDORef: GenericModel::GenObjRef +2024-09-07 12:38:50,339 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,339 [main] TRACE UmlAttribute - created (3348) WG10 IEC61850 [1..1] attribute GenericModel::GenSubDataObject.SDORef: GenericModel::GenObjRef +2024-09-07 12:38:50,339 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,339 [main] TRACE UmlAttribute - created (3349) WG10 IEC61850 [1..1] enumeration attribute GenericModel::GenSubDataObject.Presence: GenericModel::GenPresenceConditions +2024-09-07 12:38:50,339 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3350) WG10 IEC61850 [0..1] null GenericModel::GenSubDataObject.Index: GenericModel::GenINT32U +2024-09-07 12:38:50,339 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,339 [main] TRACE UmlAttribute - created (3350) WG10 IEC61850 [0..1] attribute GenericModel::GenSubDataObject.Index: GenericModel::GenINT32U +2024-09-07 12:38:50,340 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3351) WG10 IEC61850 [1..1] null GenericModel::GenTPAA.AssociationId: GenericModel::GenAssociationID +2024-09-07 12:38:50,340 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,340 [main] TRACE UmlAttribute - created (3351) WG10 IEC61850 [1..1] attribute GenericModel::GenTPAA.AssociationId: GenericModel::GenAssociationID +2024-09-07 12:38:50,340 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3305) WG10 IEC61850 [1..1] null IEC61850_7_2::IEC61850_7_2Namespace.id: NullIEC61850::NullIEC61850 = IEC61850-7-2 +2024-09-07 12:38:50,340 [main] TRACE ValueRange - 'IEC61850-7-2' has no separator indicating range. +2024-09-07 12:38:50,340 [main] TRACE UmlAttribute - created (3305) WG10 IEC61850 [1..1] attribute IEC61850_7_2::IEC61850_7_2Namespace.id: NullIEC61850::NullIEC61850 = IEC61850-7-2 +2024-09-07 12:38:50,340 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3306) WG10 IEC61850 [1..1] null IEC61850_7_2::IEC61850_7_2Namespace.version: NullIEC61850::NullIEC61850 = 2007 +2024-09-07 12:38:50,340 [main] TRACE ValueRange - '2007' has no separator indicating range. +2024-09-07 12:38:50,340 [main] TRACE UmlAttribute - created (3306) WG10 IEC61850 [1..1] attribute IEC61850_7_2::IEC61850_7_2Namespace.version: NullIEC61850::NullIEC61850 = 2007 +2024-09-07 12:38:50,340 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3307) WG10 IEC61850 [1..1] null IEC61850_7_2::IEC61850_7_2Namespace.revision: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,340 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,340 [main] TRACE UmlAttribute - created (3307) WG10 IEC61850 [1..1] attribute IEC61850_7_2::IEC61850_7_2Namespace.revision: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,340 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3308) WG10 IEC61850 [1..1] null IEC61850_7_2::IEC61850_7_2Namespace.date: NullIEC61850::NullIEC61850 = 2011-08-01 +2024-09-07 12:38:50,340 [main] TRACE ValueRange - '2011-08-01' has no separator indicating range. +2024-09-07 12:38:50,340 [main] TRACE UmlAttribute - created (3308) WG10 IEC61850 [1..1] attribute IEC61850_7_2::IEC61850_7_2Namespace.date: NullIEC61850::NullIEC61850 = 2011-08-01 +2024-09-07 12:38:50,340 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (6701) WG10 IEC61850 [1..1] null IEC61850_7_2::IEC61850_7_2Namespace.name: NullIEC61850::NullIEC61850 = IEC61850-7-2:2007 +2024-09-07 12:38:50,340 [main] TRACE ValueRange - 'IEC61850-7-2:2007' has no separator indicating range. +2024-09-07 12:38:50,340 [main] TRACE UmlAttribute - created (6701) WG10 IEC61850 [1..1] attribute IEC61850_7_2::IEC61850_7_2Namespace.name: NullIEC61850::NullIEC61850 = IEC61850-7-2:2007 +2024-09-07 12:38:50,340 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3381) WG10 IEC61850 private [1..1] null CoreTypes::ObjectName.val: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,340 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,340 [main] TRACE UmlAttribute - created (3381) WG10 IEC61850 private [1..1] attribute CoreTypes::ObjectName.val: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,341 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3382) WG10 IEC61850 private [1..1] null CoreTypes::P_ObjectReference.val: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,341 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,341 [main] TRACE UmlAttribute - created (3382) WG10 IEC61850 private [1..1] attribute CoreTypes::P_ObjectReference.val: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,341 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,341 [main] TRACE UmlAttribute - created (3383) WG10 IEC61850 [1..1] basic attribute CoreTypes::P_TimeStamp.SecondSinceEpoch: CoreTypes::P_INT32 +2024-09-07 12:38:50,341 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3384) WG10 IEC61850 [1..1] null CoreTypes::P_TimeStamp.FractionOfSecond: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,341 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,341 [main] TRACE UmlAttribute - created (3384) WG10 IEC61850 [1..1] attribute CoreTypes::P_TimeStamp.FractionOfSecond: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,341 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,341 [main] TRACE UmlAttribute - created (3385) WG10 IEC61850 [1..1] packed attribute CoreTypes::P_TimeStamp.TimeQuality: CoreTypes::TimeQuality +2024-09-07 12:38:50,341 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,341 [main] TRACE UmlAttribute - created (3386) WG10 IEC61850 [1..1] basic attribute CoreTypes::TimeQuality.LeapSecondsKnown: CoreTypes::P_BOOLEAN +2024-09-07 12:38:50,341 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,341 [main] TRACE UmlAttribute - created (3387) WG10 IEC61850 [1..1] basic attribute CoreTypes::TimeQuality.ClockFailure: CoreTypes::P_BOOLEAN +2024-09-07 12:38:50,341 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,341 [main] TRACE UmlAttribute - created (3388) WG10 IEC61850 [1..1] basic attribute CoreTypes::TimeQuality.ClockNotSynchronized: CoreTypes::P_BOOLEAN +2024-09-07 12:38:50,341 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,341 [main] TRACE UmlAttribute - created (3389) WG10 IEC61850 [1..1] packed,enumeration attribute CoreTypes::TimeQuality.TimeAccuracy: CoreTypes::TimeAccuracyKind +2024-09-07 12:38:50,341 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,341 [main] TRACE UmlAttribute - created (3397) WG10 IEC61850 [1..1] basic attribute CoreTypes::P_TriggerConditions.data-change: CoreTypes::P_BOOLEAN +2024-09-07 12:38:50,341 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,341 [main] TRACE UmlAttribute - created (3398) WG10 IEC61850 [1..1] basic attribute CoreTypes::P_TriggerConditions.quality-change: CoreTypes::P_BOOLEAN +2024-09-07 12:38:50,341 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,342 [main] TRACE UmlAttribute - created (3399) WG10 IEC61850 [1..1] basic attribute CoreTypes::P_TriggerConditions.data-update: CoreTypes::P_BOOLEAN +2024-09-07 12:38:50,342 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,342 [main] TRACE UmlAttribute - created (3400) WG10 IEC61850 [1..1] basic attribute CoreTypes::P_TriggerConditions.integrity: CoreTypes::P_BOOLEAN +2024-09-07 12:38:50,342 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,342 [main] TRACE UmlAttribute - created (3401) WG10 IEC61850 [1..1] basic attribute CoreTypes::P_TriggerConditions.general-interrogation: CoreTypes::P_BOOLEAN +2024-09-07 12:38:50,342 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3402) WG10 IEC61850 [1..1] null ObjectReferences::FILEReference.FileRef: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,342 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,342 [main] TRACE UmlAttribute - created (3402) WG10 IEC61850 [1..1] attribute ObjectReferences::FILEReference.FileRef: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,342 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3403) WG10 IEC61850 [0..1] null ObjectReferences::FILEReference.FileName: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,342 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,342 [main] TRACE UmlAttribute - created (3403) WG10 IEC61850 [0..1] attribute ObjectReferences::FILEReference.FileName: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,342 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3404) WG10 IEC61850 [1..1] null ObjectReferences::LDReference.LDRef: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,342 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,342 [main] TRACE UmlAttribute - created (3404) WG10 IEC61850 [1..1] attribute ObjectReferences::LDReference.LDRef: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,342 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,342 [main] TRACE UmlAttribute - created (3405) WG10 IEC61850 [0..1] basic attribute ObjectReferences::LDReference.LDName: CoreTypes::ObjectName +2024-09-07 12:38:50,342 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3406) WG10 IEC61850 [1..1] null ObjectReferences::NonPersistentDSReference.DSRef: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,342 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,342 [main] TRACE UmlAttribute - created (3406) WG10 IEC61850 [1..1] attribute ObjectReferences::NonPersistentDSReference.DSRef: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,342 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,342 [main] TRACE UmlAttribute - created (3407) WG10 IEC61850 [0..1] basic attribute ObjectReferences::NonPersistentDSReference.DSName: CoreTypes::ObjectName +2024-09-07 12:38:50,342 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3408) WG10 IEC61850 [1..1] null ObjectReferences::LNReference.LNRef: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,342 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,342 [main] TRACE UmlAttribute - created (3408) WG10 IEC61850 [1..1] attribute ObjectReferences::LNReference.LNRef: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,342 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,342 [main] TRACE UmlAttribute - created (3409) WG10 IEC61850 [0..1] basic attribute ObjectReferences::LNReference.LNName: CoreTypes::ObjectName +2024-09-07 12:38:50,342 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3410) WG10 IEC61850 [1..1] null ObjectReferences::CDCReference.DataRef: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,342 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,342 [main] TRACE UmlAttribute - created (3410) WG10 IEC61850 [1..1] attribute ObjectReferences::CDCReference.DataRef: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,342 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,343 [main] TRACE UmlAttribute - created (3411) WG10 IEC61850 [0..1] basic attribute ObjectReferences::CDCReference.DataName: CoreTypes::ObjectName +2024-09-07 12:38:50,343 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,343 [main] TRACE UmlAttribute - created (3412) WG10 IEC61850 [0..1] basic attribute ObjectReferences::CDCReference.SubDataName: CoreTypes::ObjectName +2024-09-07 12:38:50,343 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3413) WG10 IEC61850 [1..1] null ObjectReferences::CBReference.CBRef: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,343 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,343 [main] TRACE UmlAttribute - created (3413) WG10 IEC61850 [1..1] attribute ObjectReferences::CBReference.CBRef: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,343 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,343 [main] TRACE UmlAttribute - created (3414) WG10 IEC61850 [0..1] basic attribute ObjectReferences::CBReference.CBName: CoreTypes::ObjectName +2024-09-07 12:38:50,343 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,343 [main] TRACE UmlAttribute - created (3415) WG10 IEC61850 [0..1] enumeration attribute ObjectReferences::CBReference.FC: ObjectReferences::ServiceFcKind +2024-09-07 12:38:50,343 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3424) WG10 IEC61850 [1..1] null ObjectReferences::LOGReference.LogRef: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,343 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,343 [main] TRACE UmlAttribute - created (3424) WG10 IEC61850 [1..1] attribute ObjectReferences::LOGReference.LogRef: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,343 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,343 [main] TRACE UmlAttribute - created (3425) WG10 IEC61850 [0..1] basic attribute ObjectReferences::LOGReference.LogName: CoreTypes::ObjectName +2024-09-07 12:38:50,343 [main] TRACE ValueRange - 'LG' has no separator indicating range. +2024-09-07 12:38:50,343 [main] TRACE UmlAttribute - created (3426) WG10 IEC61850 static const [0..1] enumeration attribute ObjectReferences::LOGReference.FC: ObjectReferences::ServiceFcKind = LG +2024-09-07 12:38:50,343 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3427) WG10 IEC61850 [1..1] null ObjectReferences::LNOwnedDSReference.DSRef: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,343 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,343 [main] TRACE UmlAttribute - created (3427) WG10 IEC61850 [1..1] attribute ObjectReferences::LNOwnedDSReference.DSRef: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,343 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,343 [main] TRACE UmlAttribute - created (3428) WG10 IEC61850 [0..1] basic attribute ObjectReferences::LNOwnedDSReference.DSName: CoreTypes::ObjectName +2024-09-07 12:38:50,343 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3429) WG10 IEC61850 [1..1] null ObjectReferences::FCDReference.FCDRef: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,343 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,343 [main] TRACE UmlAttribute - created (3429) WG10 IEC61850 [1..1] attribute ObjectReferences::FCDReference.FCDRef: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,343 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3430) WG10 IEC61850 [0..1] null ObjectReferences::FCDReference.FCDRefWithoutFC: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,343 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,343 [main] TRACE UmlAttribute - created (3430) WG10 IEC61850 [0..1] attribute ObjectReferences::FCDReference.FCDRefWithoutFC: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,343 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,344 [main] TRACE UmlAttribute - created (3431) WG10 IEC61850 [0..1] enumeration attribute ObjectReferences::FCDReference.FC: FunctionalConstraints::FcKind +2024-09-07 12:38:50,344 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3432) WG10 IEC61850 [1..1] null ObjectReferences::FCDAReference.FCDARef: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,344 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,344 [main] TRACE UmlAttribute - created (3432) WG10 IEC61850 [1..1] attribute ObjectReferences::FCDAReference.FCDARef: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,344 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,344 [main] TRACE UmlAttribute - created (3433) WG10 IEC61850 [0..1] basic attribute ObjectReferences::FCDAReference.FCDARefWithoutFC: CoreTypes::P_VISIBLE_STRING255 +2024-09-07 12:38:50,344 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,344 [main] TRACE UmlAttribute - created (3434) WG10 IEC61850 [0..1] basic attribute ObjectReferences::FCDAReference.LeafAttrName: CoreTypes::ObjectName +2024-09-07 12:38:50,344 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,344 [main] TRACE UmlAttribute - created (3435) WG10 IEC61850 [0..1] basic attribute ObjectReferences::FCDAReference.NumArrayElement: CoreTypes::P_INT32U +2024-09-07 12:38:50,344 [main] TRACE UmlOperation - created (7) WG10 IEC61850 AttrValues::AttrValue operation abstract public AttrValueKind getType() +2024-09-07 12:38:50,344 [main] TRACE UmlOperation - created (46) WG10 IEC61850 AttrValues::AttrDefinition operation public FCDAReference getFcdaRef() +2024-09-07 12:38:50,344 [main] TRACE UmlOperation - created (47) WG10 IEC61850 AttrValues::AttrDefinition operation public AttrValueKind getValType() +2024-09-07 12:38:50,344 [main] TRACE UmlOperation - created (48) WG10 IEC61850 AttrValues::NamedAttrValue operation public FCDAReference getFcdaRef() +2024-09-07 12:38:50,344 [main] TRACE UmlOperation - created (49) WG10 IEC61850 AttrValues::NamedAttrValue operation public AttrValue getVal() +2024-09-07 12:38:50,344 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,344 [main] TRACE UmlAttribute - created (3455) WG10 IEC61850 private [1..1] basic attribute BasicDAs::BOOLEAN.val: CoreTypes::P_BOOLEAN +2024-09-07 12:38:50,344 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,344 [main] TRACE UmlAttribute - created (3458) WG10 IEC61850 private [1..1] basic attribute BasicDAs::INT16U.val: CoreTypes::P_INT16U +2024-09-07 12:38:50,344 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,344 [main] TRACE UmlAttribute - created (3460) WG10 IEC61850 private [1..1] basic attribute BasicDAs::INT32.val: CoreTypes::P_INT32 +2024-09-07 12:38:50,344 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,344 [main] TRACE UmlAttribute - created (3461) WG10 IEC61850 private [1..1] basic attribute BasicDAs::INT32U.val: CoreTypes::P_INT32U +2024-09-07 12:38:50,344 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,344 [main] TRACE UmlAttribute - created (3456) WG10 IEC61850 private [1..1] basic attribute BasicDAs::FLOAT32.val: CoreTypes::P_FLOAT32 +2024-09-07 12:38:50,344 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,344 [main] TRACE UmlAttribute - created (3466) WG10 IEC61850 private [1..1] basic attribute BasicDAs::UNICODE_STRING255.val: CoreTypes::P_UNICODE_STRING255 +2024-09-07 12:38:50,345 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,345 [main] TRACE UmlAttribute - created (3467) WG10 IEC61850 private [1..1] basic attribute BasicDAs::VISIBLE_STRING255.val: CoreTypes::P_VISIBLE_STRING255 +2024-09-07 12:38:50,345 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,345 [main] TRACE UmlAttribute - created (3469) WG10 IEC61850 private [1..1] basic attribute BasicDAs::ObjectReference.val: CoreTypes::P_ObjectReference +2024-09-07 12:38:50,345 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,345 [main] TRACE UmlAttribute - created (3470) WG10 IEC61850 private [1..1] basic attribute BasicDAs::PHYCOMADDR.val: CoreTypes::P_PHYCOMADDR +2024-09-07 12:38:50,345 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,345 [main] TRACE UmlAttribute - created (3471) WG10 IEC61850 private [1..1] packed attribute BasicDAs::TimeStamp.val: CoreTypes::P_TimeStamp +2024-09-07 12:38:50,345 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,345 [main] TRACE UmlAttribute - created (3472) WG10 IEC61850 private [1..1] packed attribute BasicDAs::TriggerConditions.val: CoreTypes::P_TriggerConditions +2024-09-07 12:38:50,345 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,345 [main] TRACE UmlAttribute - created (3473) WG10 IEC61850 private [1..1] packed,enumeration attribute BasicDAs::DpStatus.val: ACSIEnums::DpStatusKind +2024-09-07 12:38:50,345 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,345 [main] TRACE UmlAttribute - created (3474) WG10 IEC61850 private [1..1] packed,enumeration attribute BasicDAs::BsControl.val: ACSIEnums::BsControlKind +2024-09-07 12:38:50,345 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3475) WG10 IEC61850 [1..1] null CommonAcsiTypes::IPAddress.address: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,345 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,345 [main] TRACE UmlAttribute - created (3475) WG10 IEC61850 [1..1] attribute CommonAcsiTypes::IPAddress.address: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,345 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3476) WG10 IEC61850 [1..1] null CommonAcsiTypes::MulticastAddress.address: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,345 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,345 [main] TRACE UmlAttribute - created (3476) WG10 IEC61850 [1..1] attribute CommonAcsiTypes::MulticastAddress.address: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,345 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3477) WG10 IEC61850 [1..1] null CommonAcsiTypes::MulticastAddress.priority: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,345 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,345 [main] TRACE UmlAttribute - created (3477) WG10 IEC61850 [1..1] attribute CommonAcsiTypes::MulticastAddress.priority: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,345 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,345 [main] TRACE UmlAttribute - created (3478) WG10 IEC61850 [1..1] basic attribute CommonAcsiTypes::MulticastAddress.vid: CoreTypes::P_INT16U +2024-09-07 12:38:50,345 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,345 [main] TRACE UmlAttribute - created (3479) WG10 IEC61850 [1..1] basic attribute CommonAcsiTypes::MulticastAddress.appid: CoreTypes::P_INT16U +2024-09-07 12:38:50,345 [main] TRACE UmlOperation - created (50) WG10 IEC61850 CommonAcsiTypes::Authentication operation public NullIEC61850 getPassword() +2024-09-07 12:38:50,346 [main] TRACE UmlOperation - created (51) WG10 IEC61850 CommonAcsiTypes::Authentication operation public NullIEC61850 geUserID() +2024-09-07 12:38:50,346 [main] TRACE UmlOperation - created (52) WG10 IEC61850 CommonAcsiTypes::Authentication operation public AccessView[] getViews() +2024-09-07 12:38:50,346 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3480) WG10 IEC61850 private [1..1] null CommonAcsiTypes::ReportID.val: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,346 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,346 [main] TRACE UmlAttribute - created (3480) WG10 IEC61850 private [1..1] attribute CommonAcsiTypes::ReportID.val: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,346 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,346 [main] TRACE UmlAttribute - created (3481) WG10 IEC61850 private [1..1] basic attribute CommonAcsiTypes::EntryID.val: CommonAcsiTypes::P_OCTET_STRING +2024-09-07 12:38:50,346 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3584) WG10 IEC61850 [1..1] null MetaModel::HierarchyIEC61850Object.parent: MetaModel::IEC61850Object +2024-09-07 12:38:50,346 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,346 [main] TRACE UmlAttribute - created (3584) WG10 IEC61850 [1..1] attribute MetaModel::HierarchyIEC61850Object.parent: MetaModel::IEC61850Object +2024-09-07 12:38:50,346 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,346 [main] TRACE UmlAttribute - created (3585) WG10 IEC61850 [1..1] basic attribute MetaModel::NamedIEC61850Object.objName: CoreTypes::ObjectName +2024-09-07 12:38:50,346 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3586) WG10 IEC61850 [1..1] null MetaModel::IED.name: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,346 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,346 [main] TRACE UmlAttribute - created (3586) WG10 IEC61850 [1..1] attribute MetaModel::IED.name: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,346 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3587) WG10 IEC61850 [1..1] null MetaModel::SERVER.name: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,346 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,346 [main] TRACE UmlAttribute - created (3587) WG10 IEC61850 [1..1] attribute MetaModel::SERVER.name: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,346 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3588) WG10 IEC61850 [1..*] null MetaModel::SERVER.serviceAccessPoints: CommonAcsiTypes::IPAddress +2024-09-07 12:38:50,346 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,346 [main] TRACE UmlAttribute - created (3588) WG10 IEC61850 [1..*] attribute MetaModel::SERVER.serviceAccessPoints: CommonAcsiTypes::IPAddress +2024-09-07 12:38:50,346 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3589) WG10 IEC61850 [1..1] null MetaModel::LD.objRef: ObjectReferences::LDReference +2024-09-07 12:38:50,346 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,346 [main] TRACE UmlAttribute - created (3589) WG10 IEC61850 [1..1] attribute MetaModel::LD.objRef: ObjectReferences::LDReference +2024-09-07 12:38:50,346 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3590) WG10 IEC61850 [1..1] null MetaModel::LN.objRef: ObjectReferences::LNReference +2024-09-07 12:38:50,346 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,346 [main] TRACE UmlAttribute - created (3590) WG10 IEC61850 [1..1] attribute MetaModel::LN.objRef: ObjectReferences::LNReference +2024-09-07 12:38:50,346 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3591) WG10 IEC61850 [1..1] null MetaModel::CDC.objRef: ObjectReferences::CDCReference +2024-09-07 12:38:50,346 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,346 [main] TRACE UmlAttribute - created (3591) WG10 IEC61850 [1..1] attribute MetaModel::CDC.objRef: ObjectReferences::CDCReference +2024-09-07 12:38:50,346 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3592) WG10 IEC61850 [1..1] null MetaModel::FCD.objRef: ObjectReferences::FCDReference +2024-09-07 12:38:50,347 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,347 [main] TRACE UmlAttribute - created (3592) WG10 IEC61850 [1..1] attribute MetaModel::FCD.objRef: ObjectReferences::FCDReference +2024-09-07 12:38:50,347 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,347 [main] TRACE UmlAttribute - created (3593) WG10 IEC61850 [1..1] enumeration attribute MetaModel::FCD.fc: FunctionalConstraints::FcKind +2024-09-07 12:38:50,347 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3594) WG10 IEC61850 [1..1] null MetaModel::FCDA.objRef: ObjectReferences::FCDAReference +2024-09-07 12:38:50,347 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,347 [main] TRACE UmlAttribute - created (3594) WG10 IEC61850 [1..1] attribute MetaModel::FCDA.objRef: ObjectReferences::FCDAReference +2024-09-07 12:38:50,347 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3595) WG10 IEC61850 [1..1] null MetaModel::DA.objRef: ObjectReferences::FCDAReference +2024-09-07 12:38:50,347 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,347 [main] TRACE UmlAttribute - created (3595) WG10 IEC61850 [1..1] attribute MetaModel::DA.objRef: ObjectReferences::FCDAReference +2024-09-07 12:38:50,347 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3596) WG10 IEC61850 [1..1] null MetaModel::PrimitiveDA.attrVal: AttrValues::AttrValue +2024-09-07 12:38:50,347 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,347 [main] TRACE UmlAttribute - created (3596) WG10 IEC61850 [1..1] attribute MetaModel::PrimitiveDA.attrVal: AttrValues::AttrValue +2024-09-07 12:38:50,347 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3597) WG10 IEC61850 [1..1] null MetaModel::LNOwnedDS.objRef: ObjectReferences::LNOwnedDSReference +2024-09-07 12:38:50,347 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,347 [main] TRACE UmlAttribute - created (3597) WG10 IEC61850 [1..1] attribute MetaModel::LNOwnedDS.objRef: ObjectReferences::LNOwnedDSReference +2024-09-07 12:38:50,347 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,347 [main] TRACE UmlAttribute - created (3598) WG10 IEC61850 [1..1] basic attribute MetaModel::NonPersistentDS.isReferenced: CoreTypes::P_BOOLEAN +2024-09-07 12:38:50,347 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3599) WG10 IEC61850 [1..1] null MetaModel::NonPersistentDS.objRef: ObjectReferences::NonPersistentDSReference +2024-09-07 12:38:50,347 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,347 [main] TRACE UmlAttribute - created (3599) WG10 IEC61850 [1..1] attribute MetaModel::NonPersistentDS.objRef: ObjectReferences::NonPersistentDSReference +2024-09-07 12:38:50,347 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,347 [main] TRACE UmlAttribute - created (3600) WG10 IEC61850 [1..1] basic attribute MetaModel::PersistentDS.isReferenced: CoreTypes::P_BOOLEAN +2024-09-07 12:38:50,347 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3601) WG10 IEC61850 [1..1] null MetaModel::ControlBlock.objRef: ObjectReferences::CBReference +2024-09-07 12:38:50,347 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,347 [main] TRACE UmlAttribute - created (3601) WG10 IEC61850 [1..1] attribute MetaModel::ControlBlock.objRef: ObjectReferences::CBReference +2024-09-07 12:38:50,347 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3602) WG10 IEC61850 [1..1] null MetaModel::BRCB.clientAddress: CommonAcsiTypes::IPAddress +2024-09-07 12:38:50,347 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,347 [main] TRACE UmlAttribute - created (3602) WG10 IEC61850 [1..1] attribute MetaModel::BRCB.clientAddress: CommonAcsiTypes::IPAddress +2024-09-07 12:38:50,347 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3603) WG10 IEC61850 [1..1] null MetaModel::URCB.clientAddress: CommonAcsiTypes::IPAddress +2024-09-07 12:38:50,348 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,348 [main] TRACE UmlAttribute - created (3603) WG10 IEC61850 [1..1] attribute MetaModel::URCB.clientAddress: CommonAcsiTypes::IPAddress +2024-09-07 12:38:50,348 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3604) WG10 IEC61850 [1..1] null MetaModel::LOG.objRef: ObjectReferences::LOGReference +2024-09-07 12:38:50,348 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,348 [main] TRACE UmlAttribute - created (3604) WG10 IEC61850 [1..1] attribute MetaModel::LOG.objRef: ObjectReferences::LOGReference +2024-09-07 12:38:50,348 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3605) WG10 IEC61850 [1..1] null MetaModel::GCB.destinationAddress: CommonAcsiTypes::MulticastAddress +2024-09-07 12:38:50,348 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,348 [main] TRACE UmlAttribute - created (3605) WG10 IEC61850 [1..1] attribute MetaModel::GCB.destinationAddress: CommonAcsiTypes::MulticastAddress +2024-09-07 12:38:50,348 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3606) WG10 IEC61850 [1..1] null MetaModel::MSVCB.destinationAddress: CommonAcsiTypes::MulticastAddress +2024-09-07 12:38:50,348 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,348 [main] TRACE UmlAttribute - created (3606) WG10 IEC61850 [1..1] attribute MetaModel::MSVCB.destinationAddress: CommonAcsiTypes::MulticastAddress +2024-09-07 12:38:50,348 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3607) WG10 IEC61850 [1..1] null MetaModel::USVCB.clientAddress: CommonAcsiTypes::IPAddress +2024-09-07 12:38:50,348 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,348 [main] TRACE UmlAttribute - created (3607) WG10 IEC61850 [1..1] attribute MetaModel::USVCB.clientAddress: CommonAcsiTypes::IPAddress +2024-09-07 12:38:50,348 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3608) WG10 IEC61850 [1..1] null MetaModel::FILE.objRef: ObjectReferences::FILEReference +2024-09-07 12:38:50,348 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,348 [main] TRACE UmlAttribute - created (3608) WG10 IEC61850 [1..1] attribute MetaModel::FILE.objRef: ObjectReferences::FILEReference +2024-09-07 12:38:50,348 [main] TRACE ValueRange - 'BL' has no separator indicating range. +2024-09-07 12:38:50,348 [main] TRACE UmlAttribute - created (3609) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_BL.fc: FunctionalConstraints::FcKind = BL +2024-09-07 12:38:50,348 [main] TRACE ValueRange - 'CF' has no separator indicating range. +2024-09-07 12:38:50,348 [main] TRACE UmlAttribute - created (3610) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_CF.fc: FunctionalConstraints::FcKind = CF +2024-09-07 12:38:50,348 [main] TRACE ValueRange - 'dchg' has no separator indicating range. +2024-09-07 12:38:50,348 [main] TRACE UmlAttribute - created (3611) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_CF_dchg.trgOp: TriggerOptions::TrgOpKind = dchg +2024-09-07 12:38:50,348 [main] TRACE ValueRange - 'DC' has no separator indicating range. +2024-09-07 12:38:50,348 [main] TRACE UmlAttribute - created (3612) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_DC.fc: FunctionalConstraints::FcKind = DC +2024-09-07 12:38:50,348 [main] TRACE ValueRange - 'EX' has no separator indicating range. +2024-09-07 12:38:50,348 [main] TRACE UmlAttribute - created (3613) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_EX.fc: FunctionalConstraints::FcKind = EX +2024-09-07 12:38:50,348 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-07 12:38:50,348 [main] TRACE UmlAttribute - created (3614) WG10 IEC61850 static const [1..1] basic attribute MetaModelFCsAndTrgOps::FCDA_EX.isWritable: CoreTypes::P_BOOLEAN = false +2024-09-07 12:38:50,349 [main] TRACE ValueRange - 'MX' has no separator indicating range. +2024-09-07 12:38:50,349 [main] TRACE UmlAttribute - created (3615) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_MX.fc: FunctionalConstraints::FcKind = MX +2024-09-07 12:38:50,349 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-07 12:38:50,349 [main] TRACE UmlAttribute - created (3616) WG10 IEC61850 static const [1..1] basic attribute MetaModelFCsAndTrgOps::FCDA_MX.isWritable: CoreTypes::P_BOOLEAN = false +2024-09-07 12:38:50,349 [main] TRACE ValueRange - 'dchg' has no separator indicating range. +2024-09-07 12:38:50,349 [main] TRACE UmlAttribute - created (3617) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_MX_dchg.trgOp: TriggerOptions::TrgOpKind = dchg +2024-09-07 12:38:50,349 [main] TRACE ValueRange - 'dchg, dupd' has no separator indicating range. +2024-09-07 12:38:50,349 [main] TRACE UmlAttribute - created (3618) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_MX_dchg_dupd.trgOp: TriggerOptions::TrgOpKind = dchg, dupd +2024-09-07 12:38:50,349 [main] TRACE ValueRange - 'qchg' has no separator indicating range. +2024-09-07 12:38:50,349 [main] TRACE UmlAttribute - created (3619) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_MX_qchg.trgOp: TriggerOptions::TrgOpKind = qchg +2024-09-07 12:38:50,349 [main] TRACE ValueRange - 'OR' has no separator indicating range. +2024-09-07 12:38:50,349 [main] TRACE UmlAttribute - created (3620) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_OR.fc: FunctionalConstraints::FcKind = OR +2024-09-07 12:38:50,349 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-07 12:38:50,349 [main] TRACE UmlAttribute - created (3621) WG10 IEC61850 static const [1..1] basic attribute MetaModelFCsAndTrgOps::FCDA_OR.isWritable: CoreTypes::P_BOOLEAN = false +2024-09-07 12:38:50,349 [main] TRACE ValueRange - 'dchg' has no separator indicating range. +2024-09-07 12:38:50,349 [main] TRACE UmlAttribute - created (3622) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_OR_dchg.trgOp: TriggerOptions::TrgOpKind = dchg +2024-09-07 12:38:50,349 [main] TRACE ValueRange - 'SE' has no separator indicating range. +2024-09-07 12:38:50,349 [main] TRACE UmlAttribute - created (3623) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_SE.fc: FunctionalConstraints::FcKind = SE +2024-09-07 12:38:50,349 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-07 12:38:50,349 [main] TRACE UmlAttribute - created (3624) WG10 IEC61850 static const [1..1] basic attribute MetaModelFCsAndTrgOps::FCDA_SE.isReadable: CoreTypes::P_BOOLEAN = false +2024-09-07 12:38:50,349 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-07 12:38:50,349 [main] TRACE UmlAttribute - created (3625) WG10 IEC61850 static const [1..1] basic attribute MetaModelFCsAndTrgOps::FCDA_SE.isWritable: CoreTypes::P_BOOLEAN = false +2024-09-07 12:38:50,349 [main] TRACE ValueRange - 'dchg' has no separator indicating range. +2024-09-07 12:38:50,349 [main] TRACE UmlAttribute - created (3626) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_SE_dchg.trgOp: TriggerOptions::TrgOpKind = dchg +2024-09-07 12:38:50,349 [main] TRACE ValueRange - 'SG' has no separator indicating range. +2024-09-07 12:38:50,350 [main] TRACE UmlAttribute - created (3627) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_SG.fc: FunctionalConstraints::FcKind = SG +2024-09-07 12:38:50,350 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-07 12:38:50,350 [main] TRACE UmlAttribute - created (3628) WG10 IEC61850 static const [1..1] basic attribute MetaModelFCsAndTrgOps::FCDA_SG.isWritable: CoreTypes::P_BOOLEAN = false +2024-09-07 12:38:50,350 [main] TRACE ValueRange - 'dchg' has no separator indicating range. +2024-09-07 12:38:50,350 [main] TRACE UmlAttribute - created (3629) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_SG_dchg.trgOp: TriggerOptions::TrgOpKind = dchg +2024-09-07 12:38:50,350 [main] TRACE ValueRange - 'SP' has no separator indicating range. +2024-09-07 12:38:50,350 [main] TRACE UmlAttribute - created (3630) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_SP.fc: FunctionalConstraints::FcKind = SP +2024-09-07 12:38:50,350 [main] TRACE ValueRange - 'dchg' has no separator indicating range. +2024-09-07 12:38:50,350 [main] TRACE UmlAttribute - created (3631) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_SP_dchg.trgOp: TriggerOptions::TrgOpKind = dchg +2024-09-07 12:38:50,350 [main] TRACE ValueRange - 'ST' has no separator indicating range. +2024-09-07 12:38:50,350 [main] TRACE UmlAttribute - created (3632) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_ST.fc: FunctionalConstraints::FcKind = ST +2024-09-07 12:38:50,350 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-07 12:38:50,350 [main] TRACE UmlAttribute - created (3633) WG10 IEC61850 static const [1..1] basic attribute MetaModelFCsAndTrgOps::FCDA_ST.isWritable: CoreTypes::P_BOOLEAN = false +2024-09-07 12:38:50,350 [main] TRACE ValueRange - 'dchg' has no separator indicating range. +2024-09-07 12:38:50,350 [main] TRACE UmlAttribute - created (3634) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_ST_dchg.trgOp: TriggerOptions::TrgOpKind = dchg +2024-09-07 12:38:50,350 [main] TRACE ValueRange - 'dchg, dupd' has no separator indicating range. +2024-09-07 12:38:50,350 [main] TRACE UmlAttribute - created (3635) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_ST_dchg_dupd.trgOp: TriggerOptions::TrgOpKind = dchg, dupd +2024-09-07 12:38:50,350 [main] TRACE ValueRange - 'dupd' has no separator indicating range. +2024-09-07 12:38:50,350 [main] TRACE UmlAttribute - created (3636) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_ST_dupd.trgOp: TriggerOptions::TrgOpKind = dupd +2024-09-07 12:38:50,350 [main] TRACE ValueRange - 'qchg' has no separator indicating range. +2024-09-07 12:38:50,350 [main] TRACE UmlAttribute - created (3637) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_ST_qchg.trgOp: TriggerOptions::TrgOpKind = qchg +2024-09-07 12:38:50,350 [main] TRACE ValueRange - 'SV' has no separator indicating range. +2024-09-07 12:38:50,350 [main] TRACE UmlAttribute - created (3638) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_SV.fc: FunctionalConstraints::FcKind = SV +2024-09-07 12:38:50,350 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3309) WG10 IEC61850 [1..1] null IEC61850_7_3::IEC61850_7_3Namespace.id: NullIEC61850::NullIEC61850 = IEC61850-7-3 +2024-09-07 12:38:50,351 [main] TRACE ValueRange - 'IEC61850-7-3' has no separator indicating range. +2024-09-07 12:38:50,351 [main] TRACE UmlAttribute - created (3309) WG10 IEC61850 [1..1] attribute IEC61850_7_3::IEC61850_7_3Namespace.id: NullIEC61850::NullIEC61850 = IEC61850-7-3 +2024-09-07 12:38:50,351 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3310) WG10 IEC61850 [1..1] null IEC61850_7_3::IEC61850_7_3Namespace.version: NullIEC61850::NullIEC61850 = 2011 +2024-09-07 12:38:50,352 [main] TRACE ValueRange - '2011' has no separator indicating range. +2024-09-07 12:38:50,352 [main] TRACE UmlAttribute - created (3310) WG10 IEC61850 [1..1] attribute IEC61850_7_3::IEC61850_7_3Namespace.version: NullIEC61850::NullIEC61850 = 2011 +2024-09-07 12:38:50,352 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3311) WG10 IEC61850 [1..1] null IEC61850_7_3::IEC61850_7_3Namespace.revision: NullIEC61850::NullIEC61850 = B +2024-09-07 12:38:50,352 [main] TRACE ValueRange - 'B' has no separator indicating range. +2024-09-07 12:38:50,352 [main] TRACE UmlAttribute - created (3311) WG10 IEC61850 [1..1] attribute IEC61850_7_3::IEC61850_7_3Namespace.revision: NullIEC61850::NullIEC61850 = B +2024-09-07 12:38:50,352 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3312) WG10 IEC61850 [1..1] null IEC61850_7_3::IEC61850_7_3Namespace.date: NullIEC61850::NullIEC61850 = 2011-08-01 +2024-09-07 12:38:50,353 [main] TRACE ValueRange - '2011-08-01' has no separator indicating range. +2024-09-07 12:38:50,353 [main] TRACE UmlAttribute - created (3312) WG10 IEC61850 [1..1] attribute IEC61850_7_3::IEC61850_7_3Namespace.date: NullIEC61850::NullIEC61850 = 2011-08-01 +2024-09-07 12:38:50,353 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (6703) WG10 IEC61850 [1..1] null IEC61850_7_3::IEC61850_7_3Namespace.name: NullIEC61850::NullIEC61850 = IEC61850-7-3 B 2011 +2024-09-07 12:38:50,353 [main] TRACE ValueRange - 'IEC61850-7-3 B 2011' has no separator indicating range. +2024-09-07 12:38:50,353 [main] TRACE UmlAttribute - created (6703) WG10 IEC61850 [1..1] attribute IEC61850_7_3::IEC61850_7_3Namespace.name: NullIEC61850::NullIEC61850 = IEC61850-7-3 B 2011 +2024-09-07 12:38:50,353 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,353 [main] TRACE UmlAttribute - created (4088) WG10 IEC61850 private [1..1] enumeration attribute ImplicitDAs::SIUnit.val: DAEnums::SIUnitKind +2024-09-07 12:38:50,353 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,353 [main] TRACE UmlAttribute - created (4077) WG10 IEC61850 private [1..1] enumeration attribute ImplicitDAs::Multiplier.val: DAEnums::MultiplierKind +2024-09-07 12:38:50,353 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,353 [main] TRACE UmlAttribute - created (4082) WG10 IEC61850 private [1..1] enumeration attribute ImplicitDAs::PhaseFaultDirection.val: DAEnums::PhaseFaultDirectionKind +2024-09-07 12:38:50,353 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,353 [main] TRACE UmlAttribute - created (4081) WG10 IEC61850 private [1..1] enumeration attribute ImplicitDAs::PhaseAngleReference.val: DAEnums::PhaseAngleReferenceKind +2024-09-07 12:38:50,353 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,354 [main] TRACE UmlAttribute - created (4089) WG10 IEC61850 [1..1] packed,enumeration attribute ConstructedDAs::Quality.validity: ConstructedDAs::ValidityKind +2024-09-07 12:38:50,354 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,354 [main] TRACE UmlAttribute - created (4090) WG10 IEC61850 [1..1] packed attribute ConstructedDAs::Quality.detailQual: ConstructedDAs::DetailQual +2024-09-07 12:38:50,354 [main] TRACE ValueRange - 'process' has no separator indicating range. +2024-09-07 12:38:50,354 [main] TRACE UmlAttribute - created (4091) WG10 IEC61850 [1..1] packed,enumeration attribute ConstructedDAs::Quality.source: ConstructedDAs::SourceKind = process +2024-09-07 12:38:50,354 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-07 12:38:50,354 [main] TRACE UmlAttribute - created (4092) WG10 IEC61850 [1..1] basic attribute ConstructedDAs::Quality.test: CoreTypes::P_BOOLEAN = false +2024-09-07 12:38:50,354 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-07 12:38:50,354 [main] TRACE UmlAttribute - created (4093) WG10 IEC61850 [1..1] basic attribute ConstructedDAs::Quality.operatorBlocked: CoreTypes::P_BOOLEAN = false +2024-09-07 12:38:50,355 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-07 12:38:50,355 [main] TRACE UmlAttribute - created (4098) WG10 IEC61850 [1..1] basic attribute ConstructedDAs::DetailQual.overflow: CoreTypes::P_BOOLEAN = false +2024-09-07 12:38:50,355 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-07 12:38:50,355 [main] TRACE UmlAttribute - created (4099) WG10 IEC61850 [1..1] basic attribute ConstructedDAs::DetailQual.outOfRange: CoreTypes::P_BOOLEAN = false +2024-09-07 12:38:50,355 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-07 12:38:50,355 [main] TRACE UmlAttribute - created (4100) WG10 IEC61850 [1..1] basic attribute ConstructedDAs::DetailQual.badReference: CoreTypes::P_BOOLEAN = false +2024-09-07 12:38:50,355 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-07 12:38:50,355 [main] TRACE UmlAttribute - created (4101) WG10 IEC61850 [1..1] basic attribute ConstructedDAs::DetailQual.oscillatory: CoreTypes::P_BOOLEAN = false +2024-09-07 12:38:50,356 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-07 12:38:50,360 [main] TRACE UmlAttribute - created (4102) WG10 IEC61850 [1..1] basic attribute ConstructedDAs::DetailQual.failure: CoreTypes::P_BOOLEAN = false +2024-09-07 12:38:50,360 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-07 12:38:50,360 [main] TRACE UmlAttribute - created (4103) WG10 IEC61850 [1..1] basic attribute ConstructedDAs::DetailQual.oldData: CoreTypes::P_BOOLEAN = false +2024-09-07 12:38:50,360 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-07 12:38:50,360 [main] TRACE UmlAttribute - created (4104) WG10 IEC61850 [1..1] basic attribute ConstructedDAs::DetailQual.inconsistent: CoreTypes::P_BOOLEAN = false +2024-09-07 12:38:50,360 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-07 12:38:50,361 [main] TRACE UmlAttribute - created (4105) WG10 IEC61850 [1..1] basic attribute ConstructedDAs::DetailQual.inaccurate: CoreTypes::P_BOOLEAN = false +2024-09-07 12:38:50,361 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,361 [main] TRACE UmlAttribute - created (4108) WG10 IEC61850 [0..1] PrimitiveDA attribute ConstructedDAs::AnalogueValue.i: BasicDAs::INT32 +2024-09-07 12:38:50,361 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,361 [main] TRACE UmlAttribute - created (4109) WG10 IEC61850 [0..1] PrimitiveDA attribute ConstructedDAs::AnalogueValue.f: BasicDAs::FLOAT32 +2024-09-07 12:38:50,361 [main] WARN PresenceCondition - presence condition literal not found, or invalid class constraint name format (should be 'name(arguments)'): WG10 IEC61850 class attributes constraint ConstructedDAs::AnalogueValue {AtLeastOne = [i, f]} +2024-09-07 12:38:50,361 [main] TRACE UmlConstraint - created class attributes constraint ConstructedDAs::AnalogueValue {AtLeastOne = [i, f]} (null) +2024-09-07 12:38:50,361 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,361 [main] TRACE UmlAttribute - created (4112) WG10 IEC61850 [1..1] ComposedDA attribute ConstructedDAs::RangeConfig.hhLim: ConstructedDAs::AnalogueValue +2024-09-07 12:38:50,361 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,361 [main] TRACE UmlAttribute - created (4113) WG10 IEC61850 [1..1] ComposedDA attribute ConstructedDAs::RangeConfig.hLim: ConstructedDAs::AnalogueValue +2024-09-07 12:38:50,361 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,361 [main] TRACE UmlAttribute - created (4114) WG10 IEC61850 [1..1] ComposedDA attribute ConstructedDAs::RangeConfig.lLim: ConstructedDAs::AnalogueValue +2024-09-07 12:38:50,361 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,361 [main] TRACE UmlAttribute - created (4115) WG10 IEC61850 [1..1] ComposedDA attribute ConstructedDAs::RangeConfig.llLim: ConstructedDAs::AnalogueValue +2024-09-07 12:38:50,361 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,361 [main] TRACE UmlAttribute - created (4116) WG10 IEC61850 [1..1] ComposedDA attribute ConstructedDAs::RangeConfig.min: ConstructedDAs::AnalogueValue +2024-09-07 12:38:50,361 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,361 [main] TRACE UmlAttribute - created (4117) WG10 IEC61850 [1..1] ComposedDA attribute ConstructedDAs::RangeConfig.max: ConstructedDAs::AnalogueValue +2024-09-07 12:38:50,362 [main] TRACE UmlAttribute - created (4118) WG10 IEC61850 [0..1] PrimitiveDA attribute ConstructedDAs::RangeConfig.limDb: BasicDAs::INT32U = 0...100000 +2024-09-07 12:38:50,362 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,362 [main] TRACE UmlAttribute - created (4127) WG10 IEC61850 [1..1] EnumDA attribute ConstructedDAs::Unit.SIUnit: ImplicitDAs::SIUnit +2024-09-07 12:38:50,362 [main] TRACE ValueRange - 'none' has no separator indicating range. +2024-09-07 12:38:50,362 [main] TRACE UmlAttribute - created (4128) WG10 IEC61850 [0..1] EnumDA attribute ConstructedDAs::Unit.multiplier: ImplicitDAs::Multiplier = none +2024-09-07 12:38:50,362 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,362 [main] TRACE UmlAttribute - created (4131) WG10 IEC61850 [1..1] PrimitiveDA attribute ConstructedDAs::Point.xVal: BasicDAs::FLOAT32 +2024-09-07 12:38:50,362 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,362 [main] TRACE UmlAttribute - created (4132) WG10 IEC61850 [1..1] PrimitiveDA attribute ConstructedDAs::Point.yVal: BasicDAs::FLOAT32 +2024-09-07 12:38:50,362 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,362 [main] TRACE UmlAttribute - created (4133) WG10 IEC61850 [0..1] PrimitiveDA attribute ConstructedDAs::Point.zVal: BasicDAs::FLOAT32 +2024-09-07 12:38:50,362 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,362 [main] TRACE UmlAttribute - created (4148) WG10 IEC61850 private [1..1] ComposedDA attribute FCDAs::AnalogueValue_MX.attr: ConstructedDAs::AnalogueValue +2024-09-07 12:38:50,362 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,362 [main] TRACE UmlAttribute - created (4149) WG10 IEC61850 private [1..1] ComposedDA attribute FCDAs::AnalogueValue_MX_dchg.attr: ConstructedDAs::AnalogueValue +2024-09-07 12:38:50,362 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,362 [main] TRACE UmlAttribute - created (4150) WG10 IEC61850 private [1..1] ComposedDA attribute FCDAs::AnalogueValue_MX_dchg_dupd.attr: ConstructedDAs::AnalogueValue +2024-09-07 12:38:50,362 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,362 [main] TRACE UmlAttribute - created (4155) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::BOOLEAN_BL.attr: BasicDAs::BOOLEAN +2024-09-07 12:38:50,362 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,362 [main] TRACE UmlAttribute - created (4156) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::BOOLEAN_CF_dchg.attr: BasicDAs::BOOLEAN +2024-09-07 12:38:50,362 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,362 [main] TRACE UmlAttribute - created (4157) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::BOOLEAN_MX_dchg.attr: BasicDAs::BOOLEAN +2024-09-07 12:38:50,362 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,363 [main] TRACE UmlAttribute - created (4158) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::BOOLEAN_OR_dchg.attr: BasicDAs::BOOLEAN +2024-09-07 12:38:50,363 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,363 [main] TRACE UmlAttribute - created (4159) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::BOOLEAN_SE.attr: BasicDAs::BOOLEAN +2024-09-07 12:38:50,363 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,363 [main] TRACE UmlAttribute - created (4160) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::BOOLEAN_SG.attr: BasicDAs::BOOLEAN +2024-09-07 12:38:50,363 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,363 [main] TRACE UmlAttribute - created (4161) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::BOOLEAN_SP_dchg.attr: BasicDAs::BOOLEAN +2024-09-07 12:38:50,363 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,363 [main] TRACE UmlAttribute - created (4162) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::BOOLEAN_ST_dchg.attr: BasicDAs::BOOLEAN +2024-09-07 12:38:50,363 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,363 [main] TRACE UmlAttribute - created (4163) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::BOOLEAN_SV.attr: BasicDAs::BOOLEAN +2024-09-07 12:38:50,363 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,363 [main] TRACE UmlAttribute - created (4175) WG10 IEC61850 private [1..1] PackedEnumDA attribute FCDAs::DpStatus_ST_dchg.attr: BasicDAs::DpStatus +2024-09-07 12:38:50,363 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,363 [main] TRACE UmlAttribute - created (4176) WG10 IEC61850 private [1..1] PackedEnumDA attribute FCDAs::DpStatus_SV.attr: BasicDAs::DpStatus +2024-09-07 12:38:50,363 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,363 [main] TRACE UmlAttribute - created (4177) WG10 IEC61850 private [1..1] EnumDA attribute FCDAs::EnumDA_CF_dchg.attr: MetaModel::EnumDA +2024-09-07 12:38:50,363 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,363 [main] TRACE UmlAttribute - created (4181) WG10 IEC61850 private [1..1] EnumDA attribute FCDAs::EnumDA_ST_dchg.attr: MetaModel::EnumDA +2024-09-07 12:38:50,363 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,363 [main] TRACE UmlAttribute - created (4182) WG10 IEC61850 private [1..1] EnumDA attribute FCDAs::EnumDA_ST_dchg_dupd.attr: MetaModel::EnumDA +2024-09-07 12:38:50,363 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,363 [main] TRACE UmlAttribute - created (4183) WG10 IEC61850 private [1..1] EnumDA attribute FCDAs::EnumDA_SV.attr: MetaModel::EnumDA +2024-09-07 12:38:50,363 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,363 [main] TRACE UmlAttribute - created (4192) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::INT16U_CF.attr: BasicDAs::INT16U +2024-09-07 12:38:50,363 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,363 [main] TRACE UmlAttribute - created (4193) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::INT16U_CF_dchg.attr: BasicDAs::INT16U +2024-09-07 12:38:50,363 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,364 [main] TRACE UmlAttribute - created (4198) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::INT32U_CF_dchg.attr: BasicDAs::INT32U +2024-09-07 12:38:50,364 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,364 [main] TRACE UmlAttribute - created (4200) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::INT32_CF_dchg.attr: BasicDAs::INT32 +2024-09-07 12:38:50,364 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,364 [main] TRACE UmlAttribute - created (4204) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::INT32_ST_dchg.attr: BasicDAs::INT32 +2024-09-07 12:38:50,364 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,364 [main] TRACE UmlAttribute - created (4205) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::INT32_ST_dchg_dupd.attr: BasicDAs::INT32 +2024-09-07 12:38:50,364 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,364 [main] TRACE UmlAttribute - created (4216) WG10 IEC61850 private [1..1] EnumDA attribute FCDAs::PhaseAngleReference_CF_dchg.attr: ImplicitDAs::PhaseAngleReference +2024-09-07 12:38:50,364 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,364 [main] TRACE UmlAttribute - created (4217) WG10 IEC61850 private [1..1] EnumDA attribute FCDAs::PhaseFaultDirection_ST_dchg.attr: ImplicitDAs::PhaseFaultDirection +2024-09-07 12:38:50,364 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,364 [main] TRACE UmlAttribute - created (4219) WG10 IEC61850 private [1..1] ComposedDA attribute FCDAs::Point_DC.attr: ConstructedDAs::Point +2024-09-07 12:38:50,364 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,364 [main] TRACE UmlAttribute - created (4220) WG10 IEC61850 private [1..1] ComposedDA attribute FCDAs::Point_SE.attr: ConstructedDAs::Point +2024-09-07 12:38:50,365 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,365 [main] TRACE UmlAttribute - created (4221) WG10 IEC61850 private [1..1] ComposedDA attribute FCDAs::Point_SG.attr: ConstructedDAs::Point +2024-09-07 12:38:50,365 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,365 [main] TRACE UmlAttribute - created (4222) WG10 IEC61850 private [1..1] ComposedDA attribute FCDAs::Point_SP.attr: ConstructedDAs::Point +2024-09-07 12:38:50,365 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,365 [main] TRACE UmlAttribute - created (4224) WG10 IEC61850 private [1..1] PackedPrimitiveDA attribute FCDAs::Quality_MX_qchg.attr: ConstructedDAs::Quality +2024-09-07 12:38:50,365 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,365 [main] TRACE UmlAttribute - created (4225) WG10 IEC61850 private [1..1] PackedPrimitiveDA attribute FCDAs::Quality_ST_qchg.attr: ConstructedDAs::Quality +2024-09-07 12:38:50,365 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,365 [main] TRACE UmlAttribute - created (4226) WG10 IEC61850 private [1..1] PackedPrimitiveDA attribute FCDAs::Quality_SV.attr: ConstructedDAs::Quality +2024-09-07 12:38:50,365 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,365 [main] TRACE UmlAttribute - created (4227) WG10 IEC61850 private [1..1] ComposedDA attribute FCDAs::RangeConfig_CF_dchg.attr: ConstructedDAs::RangeConfig +2024-09-07 12:38:50,365 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,365 [main] TRACE UmlAttribute - created (4239) WG10 IEC61850 private [1..1] PackedPrimitiveDA attribute FCDAs::TimeStamp_ST.attr: BasicDAs::TimeStamp +2024-09-07 12:38:50,365 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,365 [main] TRACE UmlAttribute - created (4240) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::UNICODE_STRING255_DC.attr: BasicDAs::UNICODE_STRING255 +2024-09-07 12:38:50,365 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,365 [main] TRACE UmlAttribute - created (4250) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::VISIBLE_STRING255_EX.attr: BasicDAs::VISIBLE_STRING255 +2024-09-07 12:38:50,365 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,365 [main] TRACE UmlAttribute - created (4259) WG10 IEC61850 [0..1] FCDA attribute CommonDataClasses::BasePrimitiveCDC.dU: FCDAs::UNICODE_STRING255_DC +2024-09-07 12:38:50,365 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,365 [main] TRACE UmlAttribute - created (4260) WG10 IEC61850 [0..1] FCDA attribute CommonDataClasses::BasePrimitiveCDC.cdcNs: FCDAs::VISIBLE_STRING255_EX +2024-09-07 12:38:50,365 [main] TRACE UmlConstraint - created class attributes constraint CommonDataClasses::BasePrimitiveCDC {MOcdcNs = [cdcNs, cdcName]} (MOcdcNs) +2024-09-07 12:38:50,366 [main] TRACE UmlConstraint - created class attributes constraint CommonDataClasses::BasePrimitiveCDC {MOdataNs = [dataNs]} (MOdataNs) +2024-09-07 12:38:50,366 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,366 [main] TRACE UmlAttribute - created (4264) WG10 IEC61850 [0..1] FCDA attribute CommonDataClasses::BaseComposedCDC.dU: FCDAs::UNICODE_STRING255_DC +2024-09-07 12:38:50,366 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,366 [main] TRACE UmlAttribute - created (4265) WG10 IEC61850 [0..1] FCDA attribute CommonDataClasses::BaseComposedCDC.cdcNs: FCDAs::VISIBLE_STRING255_EX +2024-09-07 12:38:50,366 [main] TRACE UmlConstraint - created class attributes constraint CommonDataClasses::BaseComposedCDC {MOcdcNs = [cdcNs, cdcName]} (MOcdcNs) +2024-09-07 12:38:50,366 [main] TRACE UmlConstraint - created class attributes constraint CommonDataClasses::BaseComposedCDC {MOdataNs = [dataNs]} (MOdataNs) +2024-09-07 12:38:50,366 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,366 [main] TRACE UmlAttribute - created (4268) WG10 IEC61850 [0..1] FCDA attribute CommonDataClasses::SubstitutionCDC.subEna: FCDAs::BOOLEAN_SV +2024-09-07 12:38:50,366 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,366 [main] TRACE UmlAttribute - created (4269) WG10 IEC61850 [0..1] FCDA attribute CommonDataClasses::SubstitutionCDC.subQ: FCDAs::Quality_SV +2024-09-07 12:38:50,366 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,366 [main] TRACE UmlAttribute - created (4271) WG10 IEC61850 [0..1] FCDA attribute CommonDataClasses::SubstitutionCDC.blkEna: FCDAs::BOOLEAN_BL +2024-09-07 12:38:50,366 [main] TRACE UmlConstraint - created class attributes constraint CommonDataClasses::SubstitutionCDC {MFsubst = [subEna, subQ, subID]} (MFsubst) +2024-09-07 12:38:50,366 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,366 [main] TRACE UmlAttribute - created (4276) WG10 IEC61850 [1..1] PackedEnumFCDA attribute CDCStatusInfo::DPS.stVal: FCDAs::DpStatus_ST_dchg +2024-09-07 12:38:50,366 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,366 [main] TRACE UmlAttribute - created (4277) WG10 IEC61850 [1..1] FCDA attribute CDCStatusInfo::DPS.q: FCDAs::Quality_ST_qchg +2024-09-07 12:38:50,366 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,366 [main] TRACE UmlAttribute - created (4278) WG10 IEC61850 [1..1] FCDA attribute CDCStatusInfo::DPS.t: FCDAs::TimeStamp_ST +2024-09-07 12:38:50,366 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,366 [main] TRACE UmlAttribute - created (4279) WG10 IEC61850 [0..1] PackedEnumFCDA attribute CDCStatusInfo::DPS.subVal: FCDAs::DpStatus_SV +2024-09-07 12:38:50,366 [main] TRACE UmlConstraint - created class attributes constraint CDCStatusInfo::DPS {MFsubst = [subVal]} (MFsubst) +2024-09-07 12:38:50,366 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,366 [main] TRACE UmlAttribute - created (4285) WG10 IEC61850 [1..1] EnumFCDA attribute CDCStatusInfo::ENS.stVal: FCDAs::EnumDA_ST_dchg_dupd +2024-09-07 12:38:50,366 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,366 [main] TRACE UmlAttribute - created (4286) WG10 IEC61850 [1..1] FCDA attribute CDCStatusInfo::ENS.q: FCDAs::Quality_ST_qchg +2024-09-07 12:38:50,366 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,367 [main] TRACE UmlAttribute - created (4287) WG10 IEC61850 [1..1] FCDA attribute CDCStatusInfo::ENS.t: FCDAs::TimeStamp_ST +2024-09-07 12:38:50,367 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,367 [main] TRACE UmlAttribute - created (4288) WG10 IEC61850 [0..1] EnumFCDA attribute CDCStatusInfo::ENS.subVal: FCDAs::EnumDA_SV +2024-09-07 12:38:50,367 [main] TRACE UmlConstraint - created class attributes constraint CDCStatusInfo::ENS {MFsubst = [subVal]} (MFsubst) +2024-09-07 12:38:50,367 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,367 [main] TRACE UmlAttribute - created (6653) WG10 IEC61850 [1..1] EnumFCDA attribute CDCStatusInfo::EXY.stVal: FCDAs::EnumDA_ST_dchg_dupd +2024-09-07 12:38:50,367 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,367 [main] TRACE UmlAttribute - created (6654) WG10 IEC61850 [1..1] FCDA attribute CDCStatusInfo::EXY.q: FCDAs::Quality_ST_qchg +2024-09-07 12:38:50,367 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,367 [main] TRACE UmlAttribute - created (6655) WG10 IEC61850 [1..1] FCDA attribute CDCStatusInfo::EXY.t: FCDAs::TimeStamp_ST +2024-09-07 12:38:50,367 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (4301) WG10 IEC61850 [1..1] null CDCStatusInfo::ACD.dirGeneral: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,367 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,367 [main] TRACE UmlAttribute - created (4301) WG10 IEC61850 [1..1] attribute CDCStatusInfo::ACD.dirGeneral: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,367 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,367 [main] TRACE UmlAttribute - created (4302) WG10 IEC61850 [0..1] FCDA attribute CDCStatusInfo::ACD.phsA: FCDAs::BOOLEAN_ST_dchg +2024-09-07 12:38:50,367 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,367 [main] TRACE UmlAttribute - created (4304) WG10 IEC61850 [0..1] FCDA attribute CDCStatusInfo::ACD.phsB: FCDAs::BOOLEAN_ST_dchg +2024-09-07 12:38:50,367 [main] TRACE UmlConstraint - created class attributes constraint CDCStatusInfo::ACD {AllOrNonePerGroup(1) = [phsA, dirPhsA]} (AllOrNonePerGroup(n)) +2024-09-07 12:38:50,367 [main] TRACE UmlConstraint - created class attributes constraint CDCStatusInfo::ACD {AllOrNonePerGroup(2) = [phsB, dirPhsB]} (AllOrNonePerGroup(n)) +2024-09-07 12:38:50,368 [main] TRACE UmlConstraint - created class attributes constraint CDCStatusInfo::ACD {AllOrNonePerGroup(3) = [phsC, dirPhsC]} (AllOrNonePerGroup(n)) +2024-09-07 12:38:50,368 [main] TRACE UmlConstraint - created class attributes constraint CDCStatusInfo::ACD {AllOrNonePerGroup(4) = [neut, dirNeut]} (AllOrNonePerGroup(n)) +2024-09-07 12:38:50,368 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,368 [main] TRACE UmlAttribute - created (4328) WG10 IEC61850 [1..*] FCDA attribute CDCStatusInfo::HST.hstVal: FCDAs::INT32_ST_dchg_dupd +2024-09-07 12:38:50,368 [main] TRACE UmlConstraint - created attribute index constraint CDCStatusInfo::HST.hstVal {maxIdx = maxPts-1} +2024-09-07 12:38:50,368 [main] TRACE UmlAttribute - created (4331) WG10 IEC61850 [1..1] FCDA attribute CDCStatusInfo::HST.numPts: FCDAs::INT16U_CF = 1...maxPts +2024-09-07 12:38:50,368 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,368 [main] TRACE UmlAttribute - created (4346) WG10 IEC61850 [1..1] FCDA attribute CDCAnalogueInfo::HarmonicMeasurandCDC.evalTm: FCDAs::INT16U_CF_dchg +2024-09-07 12:38:50,368 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,369 [main] TRACE UmlAttribute - created (4347) WG10 IEC61850 [0..1] FCDA attribute CDCAnalogueInfo::HarmonicMeasurandCDC.smpRate: FCDAs::INT32U_CF_dchg +2024-09-07 12:38:50,369 [main] TRACE UmlConstraint - created class attributes constraint CDCAnalogueInfo::HarmonicMeasurandCDC {MFrms = [rmsCyc]} (MFrms) +2024-09-07 12:38:50,369 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (4363) WG10 IEC61850 [0..1] null CDCAnalogueInfo::CMV.instCVal: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,369 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,369 [main] TRACE UmlAttribute - created (4363) WG10 IEC61850 [0..1] attribute CDCAnalogueInfo::CMV.instCVal: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,369 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (4369) WG10 IEC61850 [0..1] null CDCAnalogueInfo::CMV.subCVal: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,369 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,369 [main] TRACE UmlAttribute - created (4369) WG10 IEC61850 [0..1] attribute CDCAnalogueInfo::CMV.subCVal: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,369 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,369 [main] TRACE UmlAttribute - created (4374) WG10 IEC61850 [0..1] FCDA attribute CDCAnalogueInfo::CMV.rangeC: FCDAs::RangeConfig_CF_dchg +2024-09-07 12:38:50,370 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,370 [main] TRACE UmlAttribute - created (4375) WG10 IEC61850 [0..1] FCDA attribute CDCAnalogueInfo::CMV.rangeAngC: FCDAs::RangeConfig_CF_dchg +2024-09-07 12:38:50,370 [main] TRACE UmlConstraint - created class attributes constraint CDCAnalogueInfo::CMV {MF(range) = [rangeC]} (MF(sibling)) +2024-09-07 12:38:50,371 [main] TRACE UmlConstraint - created class attributes constraint CDCAnalogueInfo::CMV {MF(rangeAng) = [rangeAngC]} (MF(sibling)) +2024-09-07 12:38:50,371 [main] TRACE UmlConstraint - created class attributes constraint CDCAnalogueInfo::CMV {MFscaledAngV = [angSVC]} (MFscaledAngV) +2024-09-07 12:38:50,371 [main] TRACE UmlConstraint - created class attributes constraint CDCAnalogueInfo::CMV {MFscaledMagV = [magSVC]} (MFscaledMagV) +2024-09-07 12:38:50,371 [main] TRACE UmlConstraint - created class attributes constraint CDCAnalogueInfo::CMV {MFsubst = [subCVal]} (MFsubst) +2024-09-07 12:38:50,371 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,371 [main] TRACE UmlAttribute - created (4405) WG10 IEC61850 [1..*] sub-data object CDCAnalogueInfo::HWYE.phsAHar: CDCAnalogueInfo::CMV +2024-09-07 12:38:50,371 [main] TRACE UmlConstraint - created attribute index constraint CDCAnalogueInfo::HWYE.phsAHar {maxIdx = numHar} +2024-09-07 12:38:50,371 [main] TRACE UmlConstraint - created attribute index constraint CDCAnalogueInfo::HWYE.phsAHar {minIdx = 0} +2024-09-07 12:38:50,371 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,371 [main] TRACE UmlAttribute - created (4411) WG10 IEC61850 [0..1] EnumFCDA attribute CDCAnalogueInfo::HWYE.angRef: FCDAs::PhaseAngleReference_CF_dchg +2024-09-07 12:38:50,371 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,371 [main] TRACE UmlAttribute - created (4417) WG10 IEC61850 [0..1] FCDA attribute CDCControl::ControllableCDC.opOk: FCDAs::BOOLEAN_OR_dchg +2024-09-07 12:38:50,371 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,371 [main] TRACE UmlAttribute - created (4463) WG10 IEC61850 [1..1] EnumFCDA attribute CDCControl::ENC.stVal: FCDAs::EnumDA_ST_dchg +2024-09-07 12:38:50,371 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,371 [main] TRACE UmlAttribute - created (4467) WG10 IEC61850 [0..1] EnumFCDA attribute CDCControl::ENC.subVal: FCDAs::EnumDA_SV +2024-09-07 12:38:50,371 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,371 [main] TRACE UmlAttribute - created (4472) WG10 IEC61850 [1..1] EnumDA attribute CDCControl::ENC.ctlVal: MetaModel::EnumDA +2024-09-07 12:38:50,371 [main] TRACE UmlConstraint - created class attributes constraint CDCControl::ENC {MFsubst = [subVal]} (MFsubst) +2024-09-07 12:38:50,372 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,372 [main] TRACE UmlAttribute - created (4522) WG10 IEC61850 [0..1] FCDA attribute CDCControl::BAC.mxVal: FCDAs::AnalogueValue_MX_dchg +2024-09-07 12:38:50,372 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (4526) WG10 IEC61850 [0..1] null CDCControl::BAC.subVal: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,372 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,372 [main] TRACE UmlAttribute - created (4526) WG10 IEC61850 [0..1] attribute CDCControl::BAC.subVal: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,372 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,372 [main] TRACE UmlAttribute - created (4538) WG10 IEC61850 [1..1] PackedEnumDA attribute CDCControl::BAC.ctlVal: BasicDAs::BsControl +2024-09-07 12:38:50,372 [main] TRACE UmlConstraint - created class attributes constraint CDCControl::BAC {AllOrNonePerGroup(1) = [mxVal, q, t]} (AllOrNonePerGroup(n)) +2024-09-07 12:38:50,372 [main] TRACE UmlConstraint - created class attributes constraint CDCControl::BAC {MFscaledAV = [sVC]} (MFscaledAV) +2024-09-07 12:38:50,372 [main] TRACE UmlConstraint - created class attributes constraint CDCControl::BAC {MFsubst = [subVal]} (MFsubst) +2024-09-07 12:38:50,372 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (4549) WG10 IEC61850 [0..1] null CDCStatusSet::ENG.setVal: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,373 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,373 [main] TRACE UmlAttribute - created (4549) WG10 IEC61850 [0..1] attribute CDCStatusSet::ENG.setVal: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,373 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (4550) WG10 IEC61850 [0..1] null CDCStatusSet::ENG._setVal: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,373 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,373 [main] TRACE UmlAttribute - created (4550) WG10 IEC61850 [0..1] attribute CDCStatusSet::ENG._setVal: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,373 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (4551) WG10 IEC61850 [0..1] null CDCStatusSet::ENG.__setVal: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,373 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,373 [main] TRACE UmlAttribute - created (4551) WG10 IEC61850 [0..1] attribute CDCStatusSet::ENG.__setVal: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,373 [main] TRACE UmlConstraint - created class attributes constraint CDCStatusSet::ENG {MFnsg = [setVal]} (MFnsg) +2024-09-07 12:38:50,373 [main] TRACE UmlConstraint - created class attributes constraint CDCStatusSet::ENG {MFsg = [_setVal, __setVal]} (MFsg) +2024-09-07 12:38:50,373 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,373 [main] TRACE UmlAttribute - created (4639) WG10 IEC61850 [0..1] FCDA attribute CDCDescription::LPL.ldNs: FCDAs::VISIBLE_STRING255_EX +2024-09-07 12:38:50,373 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,373 [main] TRACE UmlAttribute - created (4640) WG10 IEC61850 [0..1] FCDA attribute CDCDescription::LPL.lnNs: FCDAs::VISIBLE_STRING255_EX +2024-09-07 12:38:50,373 [main] TRACE UmlConstraint - created class attributes constraint CDCDescription::LPL {MFln0 = [ldNs]} (MFln0) +2024-09-07 12:38:50,373 [main] TRACE UmlConstraint - created class attributes constraint CDCDescription::LPL {MOln0 = [configRev]} (MOln0) +2024-09-07 12:38:50,373 [main] TRACE UmlConstraint - created class attributes constraint CDCDescription::LPL {MOlnNs = [lnNs]} (MOlnNs) +2024-09-07 12:38:50,374 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3313) WG10 IEC61850 [1..1] null IEC61850_7_4::IEC61850_7_4Namespace.id: NullIEC61850::NullIEC61850 = IEC61850-7-4 +2024-09-07 12:38:50,374 [main] TRACE ValueRange - 'IEC61850-7-4' has no separator indicating range. +2024-09-07 12:38:50,374 [main] TRACE UmlAttribute - created (3313) WG10 IEC61850 [1..1] attribute IEC61850_7_4::IEC61850_7_4Namespace.id: NullIEC61850::NullIEC61850 = IEC61850-7-4 +2024-09-07 12:38:50,374 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3314) WG10 IEC61850 [1..1] null IEC61850_7_4::IEC61850_7_4Namespace.version: NullIEC61850::NullIEC61850 = 2009 +2024-09-07 12:38:50,374 [main] TRACE ValueRange - '2009' has no separator indicating range. +2024-09-07 12:38:50,374 [main] TRACE UmlAttribute - created (3314) WG10 IEC61850 [1..1] attribute IEC61850_7_4::IEC61850_7_4Namespace.version: NullIEC61850::NullIEC61850 = 2009 +2024-09-07 12:38:50,374 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3315) WG10 IEC61850 [1..1] null IEC61850_7_4::IEC61850_7_4Namespace.revision: NullIEC61850::NullIEC61850 = A +2024-09-07 12:38:50,374 [main] TRACE ValueRange - 'A' has no separator indicating range. +2024-09-07 12:38:50,374 [main] TRACE UmlAttribute - created (3315) WG10 IEC61850 [1..1] attribute IEC61850_7_4::IEC61850_7_4Namespace.revision: NullIEC61850::NullIEC61850 = A +2024-09-07 12:38:50,374 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3316) WG10 IEC61850 [1..1] null IEC61850_7_4::IEC61850_7_4Namespace.date: NullIEC61850::NullIEC61850 = 2011-08-01 +2024-09-07 12:38:50,374 [main] TRACE ValueRange - '2011-08-01' has no separator indicating range. +2024-09-07 12:38:50,374 [main] TRACE UmlAttribute - created (3316) WG10 IEC61850 [1..1] attribute IEC61850_7_4::IEC61850_7_4Namespace.date: NullIEC61850::NullIEC61850 = 2011-08-01 +2024-09-07 12:38:50,374 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (6702) WG10 IEC61850 [1..1] null IEC61850_7_4::IEC61850_7_4Namespace.name: NullIEC61850::NullIEC61850 = IEC61850-7-4:2009A +2024-09-07 12:38:50,375 [main] TRACE ValueRange - 'IEC61850-7-4:2009A' has no separator indicating range. +2024-09-07 12:38:50,375 [main] TRACE UmlAttribute - created (6702) WG10 IEC61850 [1..1] attribute IEC61850_7_4::IEC61850_7_4Namespace.name: NullIEC61850::NullIEC61850 = IEC61850-7-4:2009A +2024-09-07 12:38:50,375 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,375 [main] TRACE UmlAttribute - created (5360) WG10 IEC61850 private [1..1] enumeration attribute DerivedDAs::BehaviourMode.val: DOEnums::BehaviourModeKind +2024-09-07 12:38:50,375 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,375 [main] TRACE UmlAttribute - created (5363) WG10 IEC61850 private [1..1] enumeration attribute DerivedDAs::CalcMethod.val: DOEnums::CalcMethodKind +2024-09-07 12:38:50,375 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,375 [main] TRACE UmlAttribute - created (5372) WG10 IEC61850 private [1..1] enumeration attribute DerivedDAs::Health.val: DOEnums::HealthKind +2024-09-07 12:38:50,375 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,375 [main] TRACE UmlAttribute - created (5404) WG10 IEC61850 [0..1] data object LogicalNodes::DomainLN.NamPlt: CDCDescription::LPL +2024-09-07 12:38:50,375 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,375 [main] TRACE UmlAttribute - created (5406) WG10 IEC61850 [0..1] enumerated DO LogicalNodes::DomainLN.Health: DerivedCDCs::ENSHealth +2024-09-07 12:38:50,375 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,375 [main] TRACE UmlAttribute - created (5408) WG10 IEC61850 [0..1] enumerated DO LogicalNodes::DomainLN.Mod: DerivedCDCs::ENCBehaviourMode +2024-09-07 12:38:50,375 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,375 [main] TRACE UmlAttribute - created (6644) WG10 IEC61850 [0..1] data object LogicalNodes::DomainLN.CntRs: CDCAnalogueInfo::CMV +2024-09-07 12:38:50,376 [main] TRACE UmlConstraint - created class attributes constraint LogicalNodes::DomainLN {MOcond(1) = [CntRs]} (MOcond(condID)) +2024-09-07 12:38:50,376 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (5411) WG10 IEC61850 [0..1] null LogicalNodes::StatisticsLN.ClcExp: DerivedCDCs::SPSTransient +2024-09-07 12:38:50,376 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,376 [main] TRACE UmlAttribute - created (5411) WG10 IEC61850 [0..1] attribute LogicalNodes::StatisticsLN.ClcExp: DerivedCDCs::SPSTransient +2024-09-07 12:38:50,376 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,376 [main] TRACE UmlAttribute - created (5413) WG10 IEC61850 [0..1] enumerated DO LogicalNodes::StatisticsLN.ClcMth: DerivedCDCs::ENGCalcMethod +2024-09-07 12:38:50,376 [main] TRACE UmlConstraint - created class attributes constraint LogicalNodes::StatisticsLN {MF(ClcMth) = [ClcExp, ClcMod, ClcIntvPer, ClcIntvTyp]} (MF(sibling)) +2024-09-07 12:38:50,376 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,376 [main] TRACE UmlAttribute - created (5423) WG10 IEC61850 [0..1] enumerated DO LogicalNodes::EquipmentInterfaceLN.EEHealthAlmClc: DerivedCDCs::ENSHealth +2024-09-07 12:38:50,376 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,376 [main] TRACE UmlAttribute - created (6662) WG10 IEC61850 [0..1] data object LNGroupL::KXYZ.aDummyAlm: CDCAnalogueInfo::CMV +2024-09-07 12:38:50,376 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,376 [main] TRACE UmlAttribute - created (6643) WG10 IEC61850 [0..1] data object LNGroupL::KXYZ.TotW: CDCAnalogueInfo::CMV +2024-09-07 12:38:50,376 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,376 [main] TRACE UmlAttribute - created (6705) WG10 IEC61850 [0..1] enumerated DO LNGroupL::KXYZ.WrongA: CDCStatusInfo::ENS +2024-09-07 12:38:50,376 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,376 [main] TRACE UmlAttribute - created (6706) WG10 IEC61850 [0..1] enumerated DO LNGroupL::KXYZ.CorrectA: DerivedCDCs::ENSEnumDA +2024-09-07 12:38:50,377 [main] TRACE UmlConstraint - created class attributes constraint LNGroupL::KXYZ {MOcond(2) = [TotW]} (MOcond(condID)) +2024-09-07 12:38:50,377 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,377 [main] TRACE UmlAttribute - created (5434) WG10 IEC61850 [1..1] enumerated DO LNGroupL::LPHD.PhyHealth: DerivedCDCs::ENSHealth +2024-09-07 12:38:50,377 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (5445) WG10 IEC61850 [0..1] null LNGroupL::LPHD.RsStatAlmMthClc: DerivedCDCs::SPCTransient +2024-09-07 12:38:50,377 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,377 [main] TRACE UmlAttribute - created (5445) WG10 IEC61850 [0..1] attribute LNGroupL::LPHD.RsStatAlmMthClc: DerivedCDCs::SPCTransient +2024-09-07 12:38:50,377 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (6704) WG10 IEC61850 [0..1] null LNGroupL::LPHD.StatAlmMthClc: DerivedCDCs::SPSTransient +2024-09-07 12:38:50,377 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,377 [main] TRACE UmlAttribute - created (6704) WG10 IEC61850 [0..1] attribute LNGroupL::LPHD.StatAlmMthClc: DerivedCDCs::SPSTransient +2024-09-07 12:38:50,377 [main] TRACE UmlConstraint - created class attributes constraint LNGroupL::LPHD {MF(2) = [RsstatAlmMthClc]} (MF(condID)) +2024-09-07 12:38:50,377 [main] TRACE UmlConstraint - created class attributes constraint LNGroupL::LPHD {MOcond(1) = [PhyHealth]} (MOcond(condID)) +2024-09-07 12:38:50,377 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,377 [main] TRACE UmlAttribute - created (5447) WG10 IEC61850 [0..1] data object LNGroupL::LLN0.NamPlt: CDCDescription::LPL +2024-09-07 12:38:50,377 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,377 [main] TRACE UmlAttribute - created (5448) WG10 IEC61850 [1..1] enumerated DO LNGroupL::LLN0.Beh: DerivedCDCs::ENSBehaviourMode +2024-09-07 12:38:50,377 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,378 [main] TRACE UmlAttribute - created (5449) WG10 IEC61850 [0..1] enumerated DO LNGroupL::LLN0.Health: DerivedCDCs::ENSHealth +2024-09-07 12:38:50,378 [main] TRACE UmlConstraint - created class attributes constraint LNGroupL::LLN0 {MOcond(1) = [NamPlt, Beh]} (MOcond(condID)) +2024-09-07 12:38:50,378 [main] TRACE UmlConstraint - created class attributes constraint LNGroupL::LLN0 {MOrootLD = [Mod, Health, NamPlt]} (MOrootLD) +2024-09-07 12:38:50,378 [main] TRACE UmlConstraint - created class attributes constraint LNGroupL::LLN0 {Omulti = [InRef]} (Omulti) +2024-09-07 12:38:50,378 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,378 [main] TRACE UmlAttribute - created (5599) WG10 IEC61850 [1..1] data object LNGroupC::CALH.GrAlm: CDCStatusInfo::DPS +2024-09-07 12:38:50,378 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,378 [main] TRACE UmlAttribute - created (5600) WG10 IEC61850 [0..1] data object LNGroupC::CALH.GrWrn: CDCStatusInfo::DPS +2024-09-07 12:38:50,378 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,378 [main] TRACE UmlAttribute - created (6657) WG10 IEC61850 [0..1] data object LNGroupC::CALH.ModBeh: DerivedCDCs::EXYBehaviourMode +2024-09-07 12:38:50,378 [main] TRACE UmlConstraint - created class attributes constraint LNGroupC::CALH {AtLeastOne(1) = [GrAlm, GrWrn, GrInd]} (AtLeastOne(n)) +2024-09-07 12:38:50,378 [main] TRACE UmlConstraint - created class attributes constraint LNGroupC::CALH {AtLeastOne(2) = [CntRs]} (AtLeastOne(n)) +2024-09-07 12:38:50,378 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,378 [main] TRACE UmlAttribute - created (5775) WG10 IEC61850 [0..1] enumerated DO LNGroupG::GGIO.EEHealth: DerivedCDCs::ENSHealth +2024-09-07 12:38:50,378 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,378 [main] TRACE UmlAttribute - created (5782) WG10 IEC61850 [0..1] data object LNGroupG::GGIO.AnIn: CDCAnalogueInfo::CMV +2024-09-07 12:38:50,378 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (5788) WG10 IEC61850 [0..1] null LNGroupG::GGIO.DPCSO: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,379 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,379 [main] TRACE UmlAttribute - created (5788) WG10 IEC61850 [0..1] attribute LNGroupG::GGIO.DPCSO: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,379 [main] TRACE UmlConstraint - created class attributes constraint LNGroupG::GGIO {Omulti = [AnIn, AnOut, DPCSO]} (Omulti) +2024-09-07 12:38:50,379 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,379 [main] TRACE UmlAttribute - created (6044) WG10 IEC61850 [0..1] data object LNGroupM::MMXU.A: CDCAnalogueInfo::HWYE +2024-09-07 12:38:50,379 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,379 [main] TRACE UmlAttribute - created (6036) WG10 IEC61850 [0..1] data object LNGroupM::MMXU.TotW: CDCAnalogueInfo::CMV +2024-09-07 12:38:50,379 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,379 [main] TRACE UmlAttribute - created (6645) WG10 IEC61850 [0..1] data object LNGroupM::MMXU.Desc: CDCStatusInfo::HST +2024-09-07 12:38:50,379 [main] TRACE UmlConstraint - created class attributes constraint LNGroupM::MMXU {MO(1) = [TotW]} (MOcond(condID)) +2024-09-07 12:38:50,379 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (6089) WG10 IEC61850 [0..1] null LNGroupP::ProtectionLN.OpCntRs: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,379 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,379 [main] TRACE UmlAttribute - created (6089) WG10 IEC61850 [0..1] attribute LNGroupP::ProtectionLN.OpCntRs: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,379 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,379 [main] TRACE UmlAttribute - created (6139) WG10 IEC61850 [0..1] data object LNGroupP::PDIF.Str: CDCStatusInfo::ACD +2024-09-07 12:38:50,379 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (6140) WG10 IEC61850 [1..1] null LNGroupP::PDIF.Op: DerivedCDCs::ACTTransient +2024-09-07 12:38:50,379 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,380 [main] TRACE UmlAttribute - created (6140) WG10 IEC61850 [1..1] attribute LNGroupP::PDIF.Op: DerivedCDCs::ACTTransient +2024-09-07 12:38:50,380 [main] TRACE UmlConstraint - created class attributes constraint LNGroupP::PDIF {AtMostOne = [LoSet, HiSet]} (AtMostOne) +2024-09-07 12:38:50,380 [main] TRACE UmlConstraint - created class attributes constraint LNGroupP::PDIF {OmultiRange(33, 48) = [Str]} (OmultiRange(min, max)) +2024-09-07 12:38:50,380 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,380 [main] TRACE UmlAttribute - created (6156) WG10 IEC61850 [1..1] data object LNGroupP::PDIS.Str: CDCStatusInfo::ACD +2024-09-07 12:38:50,380 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (6157) WG10 IEC61850 [1..1] null LNGroupP::PDIS.Op: DerivedCDCs::ACTTransient +2024-09-07 12:38:50,380 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,380 [main] TRACE UmlAttribute - created (6157) WG10 IEC61850 [1..1] attribute LNGroupP::PDIS.Op: DerivedCDCs::ACTTransient +2024-09-07 12:38:50,380 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,380 [main] TRACE UmlAttribute - created (6339) WG10 IEC61850 [1..1] data object LNGroupR::RDIR.Dir: CDCStatusInfo::ACD +2024-09-07 12:38:50,380 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (6658) WG10 IEC61850 [0..1] null LNGroupR::RDIR.TotW: DerivedCDCs::SPSTransient +2024-09-07 12:38:50,380 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,380 [main] TRACE UmlAttribute - created (6658) WG10 IEC61850 [0..1] attribute LNGroupR::RDIR.TotW: DerivedCDCs::SPSTransient +2024-09-07 12:38:50,381 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,381 [main] TRACE UmlAttribute - created (6638) WG10 IEC61850 [0..1] data object LNGroupZ::ZAXN.Vol: CDCAnalogueInfo::CMV +2024-09-07 12:38:50,381 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (6639) WG10 IEC61850 [0..1] null LNGroupZ::ZAXN.Amp: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,381 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,381 [main] TRACE UmlAttribute - created (6639) WG10 IEC61850 [0..1] attribute LNGroupZ::ZAXN.Amp: NullIEC61850::NullIEC61850 +2024-09-07 12:38:50,381 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,381 [main] TRACE UmlAttribute - created (6691) WG10 IEC61850 [1..1] enumerated DO LNGroupZ::ZAXN.Mat: DerivedCDCs_7_420::ENSMaterial +2024-09-07 12:38:50,381 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,381 [main] TRACE UmlAttribute - created (6692) WG10 IEC61850 [1..1] enumerated DO LNGroupZ::ZAXN.MatCtl: DerivedCDCs_7_420::ENCMaterial +2024-09-07 12:38:50,381 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,381 [main] TRACE UmlAttribute - created (6693) WG10 IEC61850 [1..1] enumerated DO LNGroupZ::ZAXN.Oth: DerivedCDCs_7_420::ENSOther +2024-09-07 12:38:50,381 [main] TRACE UmlConstraint - created class attributes constraint LNGroupZ::ZAXN {MOcond(condID) = [Vol]} (MOcond(condID)) +2024-09-07 12:38:50,381 [main] TRACE UmlConstraint - created class attributes constraint LNGroupZ::ZAXN {AtLeastOne(n) = [Amp]} (AtLeastOne(n)) +2024-09-07 12:38:50,381 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (6699) WG17 IEC61850 static const [1..1] null WG17::WG17UMLVersion.version: NullIEC61850::NullIEC61850 = IEC61850UML02v07 +2024-09-07 12:38:50,381 [main] TRACE ValueRange - 'IEC61850UML02v07' has no separator indicating range. +2024-09-07 12:38:50,381 [main] TRACE UmlAttribute - created (6699) WG17 IEC61850 static const [1..1] attribute WG17::WG17UMLVersion.version: NullIEC61850::NullIEC61850 = IEC61850UML02v07 +2024-09-07 12:38:50,382 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (6700) WG17 IEC61850 static const [1..1] null WG17::WG17UMLVersion.date: NullIEC61850::NullIEC61850 = 2011-07-02 +2024-09-07 12:38:50,382 [main] TRACE ValueRange - '2011-07-02' has no separator indicating range. +2024-09-07 12:38:50,382 [main] TRACE UmlAttribute - created (6700) WG17 IEC61850 static const [1..1] attribute WG17::WG17UMLVersion.date: NullIEC61850::NullIEC61850 = 2011-07-02 +2024-09-07 12:38:50,382 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (6694) WG17 IEC61850 [1..1] null IEC51850_7_420::IEC61850_7_420Namespace.id: NullIEC61850::NullIEC61850 = IEC61850-7-4 +2024-09-07 12:38:50,382 [main] TRACE ValueRange - 'IEC61850-7-4' has no separator indicating range. +2024-09-07 12:38:50,382 [main] TRACE UmlAttribute - created (6694) WG17 IEC61850 [1..1] attribute IEC51850_7_420::IEC61850_7_420Namespace.id: NullIEC61850::NullIEC61850 = IEC61850-7-4 +2024-09-07 12:38:50,382 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (6695) WG17 IEC61850 [1..1] null IEC51850_7_420::IEC61850_7_420Namespace.version: NullIEC61850::NullIEC61850 = 2009 +2024-09-07 12:38:50,382 [main] TRACE ValueRange - '2009' has no separator indicating range. +2024-09-07 12:38:50,382 [main] TRACE UmlAttribute - created (6695) WG17 IEC61850 [1..1] attribute IEC51850_7_420::IEC61850_7_420Namespace.version: NullIEC61850::NullIEC61850 = 2009 +2024-09-07 12:38:50,382 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (6696) WG17 IEC61850 [1..1] null IEC51850_7_420::IEC61850_7_420Namespace.revision: NullIEC61850::NullIEC61850 = A +2024-09-07 12:38:50,382 [main] TRACE ValueRange - 'A' has no separator indicating range. +2024-09-07 12:38:50,382 [main] TRACE UmlAttribute - created (6696) WG17 IEC61850 [1..1] attribute IEC51850_7_420::IEC61850_7_420Namespace.revision: NullIEC61850::NullIEC61850 = A +2024-09-07 12:38:50,382 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (6697) WG17 IEC61850 [1..1] null IEC51850_7_420::IEC61850_7_420Namespace.date: NullIEC61850::NullIEC61850 = 2011-08-01 +2024-09-07 12:38:50,383 [main] TRACE ValueRange - '2011-08-01' has no separator indicating range. +2024-09-07 12:38:50,383 [main] TRACE UmlAttribute - created (6697) WG17 IEC61850 [1..1] attribute IEC51850_7_420::IEC61850_7_420Namespace.date: NullIEC61850::NullIEC61850 = 2011-08-01 +2024-09-07 12:38:50,383 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (6698) WG17 IEC61850 [1..1] null IEC51850_7_420::IEC61850_7_420Namespace.tissuesApplied: NullIEC61850::NullIEC61850 = 1,2, 3, 127,200 +2024-09-07 12:38:50,383 [main] TRACE ValueRange - '1,2, 3, 127,200' has no separator indicating range. +2024-09-07 12:38:50,383 [main] TRACE UmlAttribute - created (6698) WG17 IEC61850 [1..1] attribute IEC51850_7_420::IEC61850_7_420Namespace.tissuesApplied: NullIEC61850::NullIEC61850 = 1,2, 3, 127,200 +2024-09-07 12:38:50,383 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,383 [main] TRACE UmlAttribute - created (6689) WG17 IEC61850 private [1..1] enumeration attribute DerivedDAs_7_420::Material.val: DOEnums_7_420::MaterialKind +2024-09-07 12:38:50,383 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,383 [main] TRACE UmlAttribute - created (6713) WG17 IEC61850 private [1..1] enumeration attribute DerivedDAs_7_420::Material_control.ctlVal: DOEnums_7_420::MaterialTransitionKind +2024-09-07 12:38:50,383 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,383 [main] TRACE UmlAttribute - created (6690) WG17 IEC61850 [1..1] enumeration attribute DerivedDAs_7_420::Other.val: DOEnums_7_420::OtherKind +2024-09-07 12:38:50,383 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,383 [main] TRACE UmlAttribute - created (3286) OTHER_CIM CIM private [1..1] Primitive attribute <> Ext1::Apple.shouldNotBeEnum: Domain::Integer +2024-09-07 12:38:50,383 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,383 [main] TRACE UmlAttribute - created (3287) OTHER_CIM CIM INF [0..1] Compound attribute <> Ext1::Pear.typeIsInformative: Informative::SomeSimpleType +2024-09-07 12:38:50,383 [main] TRACE ValueRange - '' has no values. +2024-09-07 12:38:50,383 [main] TRACE UmlAttribute - created (3304) OTHER_CIM CIM [0..1] CIMDatatype attribute Package with space::My class._attr: Domain::AbsoluteDateTime +2024-09-07 12:38:50,383 [main] TRACE UmlConstraint - created attribute index constraint Package with space::My class._attr { attr-constraint = lala} +2024-09-07 12:38:50,384 [main] TRACE UmlOperation - created (6) OTHER_CIM CIM Package with space::My class operation public void ope-ration() +2024-09-07 12:38:50,384 [main] TRACE UmlParameter - created null(... Boolean other param...) +2024-09-07 12:38:50,384 [main] TRACE UmlParameter - created null(... ApparentPower _par...) +2024-09-07 12:38:50,384 [main] INFO EaModelBuilder - creating in-memory associations ... +2024-09-07 12:38:50,392 [main] TRACE UmlAssociationEnd - created null [1..1] null.MyClass +2024-09-07 12:38:50,392 [main] TRACE UmlAssociationEnd - created null [0..1] null.Class1 +2024-09-07 12:38:50,402 [main] TRACE UmlAssociation - created (2130) OTHER_CIM CIM association, qname='MyClass.Class1 - Class1.MyClass', endAsSrc: myEnd: OTHER_CIM [1..1] Class1.MyClass; otherEnd: OTHER_CIM [0..1] MyClass.Class1, endAsTgt: myEnd: OTHER_CIM [0..1] MyClass.Class1; otherEnd: OTHER_CIM [1..1] Class1.MyClass +2024-09-07 12:38:50,402 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> +2024-09-07 12:38:50,402 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> +2024-09-07 12:38:50,402 [main] TRACE UmlAssociation - created (2133) OTHER_CIM CIM association, qname='End1ForAssocClass.<> - End2ForAssocClass.<>', endAsSrc: myEnd: OTHER_CIM [?..?] End2ForAssocClass.<>; otherEnd: OTHER_CIM [?..?] End1ForAssocClass.<>, endAsTgt: myEnd: OTHER_CIM [?..?] End1ForAssocClass.<>; otherEnd: OTHER_CIM [?..?] End2ForAssocClass.<> +2024-09-07 12:38:50,402 [main] TRACE UmlAssociationEnd - created null [0..1] null.C1 +2024-09-07 12:38:50,403 [main] TRACE UmlAssociationEnd - created null [0..1] null.C2 +2024-09-07 12:38:50,403 [main] TRACE UmlAssociation - created (2096) WG13 CIM association, qname='InfClassContainingEmbeddedClass.C2 - InfClass2.C1', endAsSrc: myEnd: WG13 [0..1] InfClass2.C1; tags={srcTag=a2}; otherEnd: WG13 [0..1] InfClassContainingEmbeddedClass.C2, endAsTgt: myEnd: WG13 [0..1] InfClassContainingEmbeddedClass.C2; otherEnd: WG13 [0..1] InfClass2.C1; tags={srcTag=a2} +2024-09-07 12:38:50,403 [main] TRACE UmlAssociationEnd - created null [0..*] null.VoltageLevel +2024-09-07 12:38:50,403 [main] TRACE UmlAssociationEnd - created null [1..1] null.BaseVoltage +2024-09-07 12:38:50,403 [main] TRACE UmlAssociation - created (120) WG13 CIM association <>, qname='VoltageLevel.BaseVoltage - BaseVoltage.VoltageLevel', endAsSrc: myEnd: WG13 [0..*] BaseVoltage.VoltageLevel; otherEnd: WG13 [1..1] VoltageLevel.BaseVoltage, endAsTgt: myEnd: WG13 [1..1] VoltageLevel.BaseVoltage; otherEnd: WG13 [0..*] BaseVoltage.VoltageLevel +2024-09-07 12:38:50,403 [main] TRACE UmlAssociationEnd - created null (protected) [0..1] null.ProtectedBaseVoltage +2024-09-07 12:38:50,403 [main] TRACE UmlAssociationEnd - created null [0..*] null.ConductingEquipment +2024-09-07 12:38:50,403 [main] TRACE UmlAssociation - created (121) WG13 CIM association <>, qname='BaseVoltage.ConductingEquipment - ConductingEquipment.ProtectedBaseVoltage', endAsSrc: myEnd: WG13 (protected) [0..1] ConductingEquipment.ProtectedBaseVoltage; otherEnd: WG13 [0..*] BaseVoltage.ConductingEquipment, endAsTgt: myEnd: WG13 [0..*] BaseVoltage.ConductingEquipment; otherEnd: WG13 (protected) [0..1] ConductingEquipment.ProtectedBaseVoltage +2024-09-07 12:38:50,403 [main] TRACE UmlAssociationEnd - created null [0..*] null.TopologicalNode +2024-09-07 12:38:50,403 [main] TRACE UmlAssociationEnd - created null [0..1] null.BaseVoltage +2024-09-07 12:38:50,403 [main] TRACE UmlAssociation - created (2092) WG13 CIM association, qname='TopologicalNode.BaseVoltage - BaseVoltage.TopologicalNode', endAsSrc: myEnd: WG13 [0..*] BaseVoltage.TopologicalNode; otherEnd: WG13 [0..1] TopologicalNode.BaseVoltage, endAsTgt: myEnd: WG13 [0..1] TopologicalNode.BaseVoltage; otherEnd: WG13 [0..*] BaseVoltage.TopologicalNode +2024-09-07 12:38:50,403 [main] TRACE UmlAssociationEnd - created null <> [0..1] null.VoltageLevel +2024-09-07 12:38:50,403 [main] TRACE UmlAssociationEnd - created null <> [0..*] null.Bays +2024-09-07 12:38:50,403 [main] TRACE UmlAssociation - created (115) WG13 CIM aggregation, qname='VoltageLevel.Bays - Bay.VoltageLevel', endAsSrc: myEnd: WG13 <> [0..1] Bay.VoltageLevel; otherEnd: WG13 <> [0..*] VoltageLevel.Bays, endAsTgt: myEnd: WG13 <> [0..*] VoltageLevel.Bays; otherEnd: WG13 <> [0..1] Bay.VoltageLevel +2024-09-07 12:38:50,403 [main] TRACE UmlAssociationEnd - created null [0..*] null.bays (navigable) +2024-09-07 12:38:50,403 [main] TRACE UmlAssociationEnd - created null [0..1] null.Substation (navigable) +2024-09-07 12:38:50,403 [main] TRACE UmlAssociation - created (116) WG13 CIM aggregation <>, qname='Bay.Substation - Substation.bays', endAsSrc: myEnd: WG13 [0..*] Substation.bays (navigable); otherEnd: WG13 [0..1] Bay.Substation (navigable), endAsTgt: myEnd: WG13 [0..1] Bay.Substation (navigable); otherEnd: WG13 [0..*] Substation.bays (navigable) +2024-09-07 12:38:50,403 [main] TRACE UmlAssociationEnd - created null [0..*] null.Terminals +2024-09-07 12:38:50,403 [main] TRACE UmlAssociationEnd - created null [1..1] null.ConductingEquipment +2024-09-07 12:38:50,403 [main] TRACE UmlAssociation - created (123) WG13 CIM association NamedWithTagsEverywhere, qname='Terminal.ConductingEquipment - ConductingEquipment.Terminals', endAsSrc: myEnd: WG13 [0..*] ConductingEquipment.Terminals; tags={Role1=abc}; otherEnd: WG13 [1..1] Terminal.ConductingEquipment; tags={AnotherRole2=abc, targetEndTag=blah, Role2=xyz}, endAsTgt: myEnd: WG13 [1..1] Terminal.ConductingEquipment; tags={AnotherRole2=abc, targetEndTag=blah, Role2=xyz}; otherEnd: WG13 [0..*] ConductingEquipment.Terminals; tags={Role1=abc} +2024-09-07 12:38:50,403 [main] TRACE UmlAssociationEnd - created null [0..*] null.ConnectivityNodes +2024-09-07 12:38:50,403 [main] TRACE UmlAssociationEnd - created null [1..1] null.ConnectivityNodeContainer +2024-09-07 12:38:50,403 [main] TRACE UmlAssociation - created (234) WG13 CIM association, qname='ConnectivityNode.ConnectivityNodeContainer - ConnectivityNodeContainer.ConnectivityNodes', endAsSrc: myEnd: WG13 [0..*] ConnectivityNodeContainer.ConnectivityNodes; otherEnd: WG13 [1..1] ConnectivityNode.ConnectivityNodeContainer, endAsTgt: myEnd: WG13 [1..1] ConnectivityNode.ConnectivityNodeContainer; otherEnd: WG13 [0..*] ConnectivityNodeContainer.ConnectivityNodes +2024-09-07 12:38:50,403 [main] TRACE UmlAssociationEnd - created null [0..*] null.TopologicalNode +2024-09-07 12:38:50,403 [main] TRACE UmlAssociationEnd - created null [0..1] null.ConnectivityNodeContainer +2024-09-07 12:38:50,403 [main] TRACE UmlAssociation - created (1974) WG13 CIM association, qname='TopologicalNode.ConnectivityNodeContainer - ConnectivityNodeContainer.TopologicalNode', endAsSrc: myEnd: WG13 [0..*] ConnectivityNodeContainer.TopologicalNode; otherEnd: WG13 [0..1] TopologicalNode.ConnectivityNodeContainer, endAsTgt: myEnd: WG13 [0..1] TopologicalNode.ConnectivityNodeContainer; otherEnd: WG13 [0..*] ConnectivityNodeContainer.TopologicalNode +2024-09-07 12:38:50,404 [main] TRACE UmlAssociationEnd - created null [0..1] null.EquipmentContainer +2024-09-07 12:38:50,404 [main] TRACE UmlAssociationEnd - created null [0..*] null.Equipments +2024-09-07 12:38:50,404 [main] TRACE UmlAssociation - created (88) WG13 CIM aggregation <>, qname='EquipmentContainer.Equipments - Equipment.EquipmentContainer', endAsSrc: myEnd: WG13 [0..1] Equipment.EquipmentContainer; otherEnd: WG13 [0..*] EquipmentContainer.Equipments, endAsTgt: myEnd: WG13 [0..*] EquipmentContainer.Equipments; otherEnd: WG13 [0..1] Equipment.EquipmentContainer +2024-09-07 12:38:50,404 [main] TRACE UmlAssociationEnd - created null [0..1] null.Region +2024-09-07 12:38:50,404 [main] TRACE UmlAssociationEnd - created null [0..*] null.Regions +2024-09-07 12:38:50,404 [main] TRACE UmlAssociation - created (90) WG13 CIM aggregation, qname='geographicalRegion.Regions - SubGeographicalRegion.Region', endAsSrc: myEnd: WG13 [0..1] SubGeographicalRegion.Region; otherEnd: WG13 [0..*] geographicalRegion.Regions, endAsTgt: myEnd: WG13 [0..*] geographicalRegion.Regions; otherEnd: WG13 [0..1] SubGeographicalRegion.Region +2024-09-07 12:38:50,404 [main] TRACE UmlAssociationEnd - created null [0..*] null.OperatingShare +2024-09-07 12:38:50,404 [main] TRACE UmlAssociationEnd - created null [1..1] null.OperatingParticipant +2024-09-07 12:38:50,404 [main] TRACE UmlAssociation - created (157) WG13 CIM association, qname='OperatingShare.OperatingParticipant - OperatingParticipant.OperatingShare', endAsSrc: myEnd: WG13 [0..*] OperatingParticipant.OperatingShare; otherEnd: WG13 [1..1] OperatingShare.OperatingParticipant, endAsTgt: myEnd: WG13 [1..1] OperatingShare.OperatingParticipant; otherEnd: WG13 [0..*] OperatingParticipant.OperatingShare +2024-09-07 12:38:50,404 [main] TRACE UmlAssociationEnd - created null [0..*] null.OperatingShare +2024-09-07 12:38:50,404 [main] TRACE UmlAssociationEnd - created null [1..1] null.PowerSystemResource +2024-09-07 12:38:50,404 [main] TRACE UmlAssociation - created (163) WG13 CIM association, qname='OperatingShare.PowerSystemResource - PowerSystemResource.OperatingShare', endAsSrc: myEnd: WG13 [0..*] PowerSystemResource.OperatingShare; otherEnd: WG13 [1..1] OperatingShare.PowerSystemResource, endAsTgt: myEnd: WG13 [1..1] OperatingShare.PowerSystemResource; otherEnd: WG13 [0..*] PowerSystemResource.OperatingShare +2024-09-07 12:38:50,404 [main] TRACE UmlAssociationEnd - created null [0..*] null.AssetInfos +2024-09-07 12:38:50,404 [main] TRACE UmlAssociationEnd - created null [0..*] null.PSRs +2024-09-07 12:38:50,404 [main] TRACE UmlAssociation - created (2148) WG14 CIM association, qname='AssetInfo.PSRs - PowerSystemResource.AssetInfos', endAsSrc: myEnd: WG14 [0..*] PowerSystemResource.AssetInfos; otherEnd: WG14 [0..*] AssetInfo.PSRs, endAsTgt: myEnd: WG14 [0..*] AssetInfo.PSRs; otherEnd: WG14 [0..*] PowerSystemResource.AssetInfos +2024-09-07 12:38:50,404 [main] TRACE UmlAssociationEnd - created null [0..1] null.PSR (navigable) +2024-09-07 12:38:50,404 [main] TRACE UmlAssociationEnd - created null [0..1] null.Terminal +2024-09-07 12:38:50,404 [main] TRACE UmlAssociation - created (3463) WG13 CIM association <>, qname='PowerSystemResource.Terminal - Terminal.PSR', endAsSrc: myEnd: WG13 [0..1] Terminal.PSR (navigable); otherEnd: WG13 [0..1] PowerSystemResource.Terminal, endAsTgt: myEnd: WG13 [0..1] PowerSystemResource.Terminal; otherEnd: WG13 [0..1] Terminal.PSR (navigable) +2024-09-07 12:38:50,404 [main] TRACE UmlAssociationEnd - created null [0..1] null.Region +2024-09-07 12:38:50,404 [main] TRACE UmlAssociationEnd - created null [0..*] null.Substations +2024-09-07 12:38:50,404 [main] TRACE UmlAssociation - created (91) WG13 CIM aggregation, qname='SubGeographicalRegion.Substations - Substation.Region', endAsSrc: myEnd: WG13 [0..1] Substation.Region; otherEnd: WG13 [0..*] SubGeographicalRegion.Substations, endAsTgt: myEnd: WG13 [0..*] SubGeographicalRegion.Substations; otherEnd: WG13 [0..1] Substation.Region +2024-09-07 12:38:50,404 [main] TRACE UmlAssociationEnd - created null [1..1] null.Substation +2024-09-07 12:38:50,404 [main] TRACE UmlAssociationEnd - created null [0..*] null.VoltageLevels +2024-09-07 12:38:50,404 [main] TRACE UmlAssociation - created (94) WG13 CIM aggregation, qname='Substation.VoltageLevels - VoltageLevel.Substation', endAsSrc: myEnd: WG13 [1..1] VoltageLevel.Substation; otherEnd: WG13 [0..*] Substation.VoltageLevels, endAsTgt: myEnd: WG13 [0..*] Substation.VoltageLevels; otherEnd: WG13 [1..1] VoltageLevel.Substation +2024-09-07 12:38:50,404 [main] TRACE UmlAssociationEnd - created null [0..*] null.Terminals +2024-09-07 12:38:50,404 [main] TRACE UmlAssociationEnd - created null [0..1] null.ConnectivityNode +2024-09-07 12:38:50,405 [main] TRACE UmlAssociation - created (229) WG13 CIM association, qname='Terminal.ConnectivityNode - ConnectivityNode.Terminals', endAsSrc: myEnd: WG13 [0..*] ConnectivityNode.Terminals; otherEnd: WG13 [0..1] Terminal.ConnectivityNode, endAsTgt: myEnd: WG13 [0..1] Terminal.ConnectivityNode; otherEnd: WG13 [0..*] ConnectivityNode.Terminals +2024-09-07 12:38:50,405 [main] TRACE UmlAssociationEnd - created null [0..*] null.Terminal +2024-09-07 12:38:50,405 [main] TRACE UmlAssociationEnd - created null [0..1] null.TopologicalNode +2024-09-07 12:38:50,405 [main] TRACE UmlAssociation - created (1961) WG13 CIM aggregation, qname='Terminal.TopologicalNode - TopologicalNode.Terminal', endAsSrc: myEnd: WG13 [0..*] TopologicalNode.Terminal; otherEnd: WG13 [0..1] Terminal.TopologicalNode, endAsTgt: myEnd: WG13 [0..1] Terminal.TopologicalNode; otherEnd: WG13 [0..*] TopologicalNode.Terminal +2024-09-07 12:38:50,405 [main] TRACE UmlAssociationEnd - created null <> [0..1] null.BusNameMarker +2024-09-07 12:38:50,405 [main] TRACE UmlAssociationEnd - created null (private) <> [0..*] null.PrivateConnectivityNode +2024-09-07 12:38:50,405 [main] TRACE UmlAssociation - created (228) WG13 CIM association <>, qname='BusNameMarker.PrivateConnectivityNode - ConnectivityNode.BusNameMarker', endAsSrc: myEnd: WG13 <> [0..1] ConnectivityNode.BusNameMarker; tags={srcTag=valueSrcTag}; otherEnd: WG13 (private) <> [0..*] BusNameMarker.PrivateConnectivityNode; tags={endTag=valueEndTag}, endAsTgt: myEnd: WG13 (private) <> [0..*] BusNameMarker.PrivateConnectivityNode; tags={endTag=valueEndTag}; otherEnd: WG13 <> [0..1] ConnectivityNode.BusNameMarker; tags={srcTag=valueSrcTag} +2024-09-07 12:38:50,405 [main] TRACE UmlAssociationEnd - created null [0..*] null.ConnectivityNodes +2024-09-07 12:38:50,405 [main] TRACE UmlAssociationEnd - created null [0..1] null.TopologicalNode +2024-09-07 12:38:50,405 [main] TRACE UmlAssociation - created (235) WG13 CIM aggregation, qname='ConnectivityNode.TopologicalNode - TopologicalNode.ConnectivityNodes', endAsSrc: myEnd: WG13 [0..*] TopologicalNode.ConnectivityNodes; otherEnd: WG13 [0..1] ConnectivityNode.TopologicalNode, endAsTgt: myEnd: WG13 [0..1] ConnectivityNode.TopologicalNode; otherEnd: WG13 [0..*] TopologicalNode.ConnectivityNodes +2024-09-07 12:38:50,405 [main] TRACE UmlAssociationEnd - created null [?..?] null.TopologicalNodes +2024-09-07 12:38:50,405 [main] TRACE UmlAssociationEnd - created null [1..1] null.TopologicalIsland +2024-09-07 12:38:50,405 [main] TRACE UmlAssociation - created (237) WG13 CIM aggregation, qname='TopologicalNode.TopologicalIsland - TopologicalIsland.TopologicalNodes', endAsSrc: myEnd: WG13 [?..?] TopologicalIsland.TopologicalNodes; otherEnd: WG13 [1..1] TopologicalNode.TopologicalIsland, endAsTgt: myEnd: WG13 [1..1] TopologicalNode.TopologicalIsland; otherEnd: WG13 [?..?] TopologicalIsland.TopologicalNodes +2024-09-07 12:38:50,405 [main] TRACE UmlAssociationEnd - created null [0..1] null.AngleRef_TopologicalIsland +2024-09-07 12:38:50,405 [main] TRACE UmlAssociationEnd - created null [0..1] null.AngleRef_TopologicalNode +2024-09-07 12:38:50,405 [main] TRACE UmlAssociation - created (1947) WG13 CIM association, qname='TopologicalIsland.AngleRef_TopologicalNode - TopologicalNode.AngleRef_TopologicalIsland', endAsSrc: myEnd: WG13 [0..1] TopologicalNode.AngleRef_TopologicalIsland; otherEnd: WG13 [0..1] TopologicalIsland.AngleRef_TopologicalNode, endAsTgt: myEnd: WG13 [0..1] TopologicalIsland.AngleRef_TopologicalNode; otherEnd: WG13 [0..1] TopologicalNode.AngleRef_TopologicalIsland +2024-09-07 12:38:50,405 [main] TRACE UmlAssociationEnd - created null [0..1] null.T1 +2024-09-07 12:38:50,405 [main] TRACE UmlAssociationEnd - created null [0..1] null.T2 +2024-09-07 12:38:50,405 [main] TRACE UmlAssociation - created (2110) WG14 CIM association, qname='BadDatatypes.T2 - MyClass.T1', endAsSrc: myEnd: WG14 [0..1] MyClass.T1; otherEnd: WG14 [0..1] BadDatatypes.T2, endAsTgt: myEnd: WG14 [0..1] BadDatatypes.T2; otherEnd: WG14 [0..1] MyClass.T1 +2024-09-07 12:38:50,405 [main] TRACE UmlAssociationEnd - created null [0..1] null.From +2024-09-07 12:38:50,405 [main] TRACE UmlAssociationEnd - created null [0..1] null.To +2024-09-07 12:38:50,405 [main] TRACE UmlAssociation - created (2124) WG14 CIM association, qname='MyClass.To - MyClass.From', endAsSrc: myEnd: WG14 [0..1] MyClass.From; otherEnd: WG14 [0..1] MyClass.To, endAsTgt: myEnd: WG14 [0..1] MyClass.To; otherEnd: WG14 [0..1] MyClass.From +2024-09-07 12:38:50,405 [main] TRACE UmlAssociationEnd - created null [0..1] null.Something (non-navigable) +2024-09-07 12:38:50,405 [main] TRACE UmlAssociationEnd - created null [0..1] null.T1 +2024-09-07 12:38:50,405 [main] TRACE UmlAssociation - created (2122) WG14 CIM association, qname='AttrDuplication.T1 - BadDatatypes.Something', endAsSrc: myEnd: WG14 [0..1] BadDatatypes.Something (non-navigable); otherEnd: WG14 [0..1] AttrDuplication.T1, endAsTgt: myEnd: WG14 [0..1] AttrDuplication.T1; otherEnd: WG14 [0..1] BadDatatypes.Something (non-navigable) +2024-09-07 12:38:50,405 [main] TRACE UmlAssociationEnd - created null [0..1] null.From +2024-09-07 12:38:50,405 [main] TRACE UmlAssociationEnd - created null [0..1] null.To +2024-09-07 12:38:50,405 [main] TRACE UmlAssociation - created (2123) WG14 CIM association, qname='AttrDuplication.To - AttrDuplication.From', endAsSrc: myEnd: WG14 [0..1] AttrDuplication.From; otherEnd: WG14 [0..1] AttrDuplication.To, endAsTgt: myEnd: WG14 [0..1] AttrDuplication.To; otherEnd: WG14 [0..1] AttrDuplication.From +2024-09-07 12:38:50,405 [main] TRACE UmlAssociationEnd - created null [0..1] null.From +2024-09-07 12:38:50,405 [main] TRACE UmlAssociationEnd - created null [0..1] null.To +2024-09-07 12:38:50,405 [main] TRACE UmlAssociation - created (2125) WG14 CIM association, qname='AttrDuplication.To - AttrDuplication.From', endAsSrc: myEnd: WG14 [0..1] AttrDuplication.From; otherEnd: WG14 [0..1] AttrDuplication.To, endAsTgt: myEnd: WG14 [0..1] AttrDuplication.To; otherEnd: WG14 [0..1] AttrDuplication.From +2024-09-07 12:38:50,405 [main] TRACE UmlAssociationEnd - created null [0..1] null.IED +2024-09-07 12:38:50,405 [main] TRACE UmlAssociationEnd - created null [1..*] null.AP +2024-09-07 12:38:50,406 [main] TRACE UmlAssociation - created (3400) WG10 IEC61850 association, qname='GenIED.AP - AccessPoint.IED', endAsSrc: myEnd: WG10 [0..1] AccessPoint.IED; otherEnd: WG10 [1..*] GenIED.AP, endAsTgt: myEnd: WG10 [1..*] GenIED.AP; otherEnd: WG10 [0..1] AccessPoint.IED +2024-09-07 12:38:50,406 [main] TRACE UmlAssociationEnd - created null [1..1] null.Server +2024-09-07 12:38:50,406 [main] TRACE UmlAssociationEnd - created null [0..1] null.FileSystem +2024-09-07 12:38:50,406 [main] TRACE UmlAssociation - created (3398) WG10 IEC61850 association, qname='GenServer.FileSystem - FileSystem.Server', endAsSrc: myEnd: WG10 [1..1] FileSystem.Server; otherEnd: WG10 [0..1] GenServer.FileSystem, endAsTgt: myEnd: WG10 [0..1] GenServer.FileSystem; otherEnd: WG10 [1..1] FileSystem.Server +2024-09-07 12:38:50,406 [main] TRACE UmlAssociationEnd - created null [1..1] null.FileSystem +2024-09-07 12:38:50,406 [main] TRACE UmlAssociationEnd - created null [0..*] null.Files +2024-09-07 12:38:50,406 [main] TRACE UmlAssociation - created (3399) WG10 IEC61850 association, qname='FileSystem.Files - GenFile.FileSystem', endAsSrc: myEnd: WG10 [1..1] GenFile.FileSystem; otherEnd: WG10 [0..*] FileSystem.Files, endAsTgt: myEnd: WG10 [0..*] FileSystem.Files; otherEnd: WG10 [1..1] GenFile.FileSystem +2024-09-07 12:38:50,406 [main] TRACE UmlAssociationEnd - created null [1..1] null.CommonDataClass +2024-09-07 12:38:50,406 [main] TRACE UmlAssociationEnd - created null [1..*] null.DataAttribute +2024-09-07 12:38:50,406 [main] TRACE UmlAssociation - created (3396) WG10 IEC61850 association, qname='GenCommonDataClass.DataAttribute - GenDataAttribute.CommonDataClass', endAsSrc: myEnd: WG10 [1..1] GenDataAttribute.CommonDataClass; otherEnd: WG10 [1..*] GenCommonDataClass.DataAttribute, endAsTgt: myEnd: WG10 [1..*] GenCommonDataClass.DataAttribute; otherEnd: WG10 [1..1] GenDataAttribute.CommonDataClass +2024-09-07 12:38:50,406 [main] TRACE UmlAssociationEnd - created null [1..1] null.CommonDataClass +2024-09-07 12:38:50,406 [main] TRACE UmlAssociationEnd - created null [0..*] null.SubDataObject +2024-09-07 12:38:50,406 [main] TRACE UmlAssociation - created (3397) WG10 IEC61850 association, qname='GenCommonDataClass.SubDataObject - GenSubDataObject.CommonDataClass', endAsSrc: myEnd: WG10 [1..1] GenSubDataObject.CommonDataClass; otherEnd: WG10 [0..*] GenCommonDataClass.SubDataObject, endAsTgt: myEnd: WG10 [0..*] GenCommonDataClass.SubDataObject; otherEnd: WG10 [1..1] GenSubDataObject.CommonDataClass +2024-09-07 12:38:50,406 [main] TRACE UmlAssociationEnd - created null [1..1] null.DataAttribute +2024-09-07 12:38:50,406 [main] TRACE UmlAssociationEnd - created null [1..*] null.SubDataAttribute +2024-09-07 12:38:50,406 [main] TRACE UmlAssociation - created (3395) WG10 IEC61850 association, qname='GenConstructedType.SubDataAttribute - GenSubDataAttribute.DataAttribute', endAsSrc: myEnd: WG10 [1..1] GenSubDataAttribute.DataAttribute; otherEnd: WG10 [1..*] GenConstructedType.SubDataAttribute, endAsTgt: myEnd: WG10 [1..*] GenConstructedType.SubDataAttribute; otherEnd: WG10 [1..1] GenSubDataAttribute.DataAttribute +2024-09-07 12:38:50,406 [main] TRACE UmlAssociationEnd - created null [0..*] null.FCDA +2024-09-07 12:38:50,406 [main] TRACE UmlAssociationEnd - created null [1..1] null.DataAttribute +2024-09-07 12:38:50,406 [main] TRACE UmlAssociation - created (3391) WG10 IEC61850 association, qname='GenFCDA.DataAttribute - GenDataAttribute.FCDA', endAsSrc: myEnd: WG10 [0..*] GenDataAttribute.FCDA; otherEnd: WG10 [1..1] GenFCDA.DataAttribute, endAsTgt: myEnd: WG10 [1..1] GenFCDA.DataAttribute; otherEnd: WG10 [0..*] GenDataAttribute.FCDA +2024-09-07 12:38:50,406 [main] TRACE UmlAssociationEnd - created null [1..1] null.LogicalNode +2024-09-07 12:38:50,406 [main] TRACE UmlAssociationEnd - created null [1..*] null.DataObject +2024-09-07 12:38:50,406 [main] TRACE UmlAssociation - created (3388) WG10 IEC61850 association, qname='GenLogicalNode.DataObject - GenDataObject.LogicalNode', endAsSrc: myEnd: WG10 [1..1] GenDataObject.LogicalNode; otherEnd: WG10 [1..*] GenLogicalNode.DataObject, endAsTgt: myEnd: WG10 [1..*] GenLogicalNode.DataObject; otherEnd: WG10 [1..1] GenDataObject.LogicalNode +2024-09-07 12:38:50,406 [main] TRACE UmlAssociationEnd - created null [0..*] null.FCD +2024-09-07 12:38:50,406 [main] TRACE UmlAssociationEnd - created null [1..1] null.DataObject +2024-09-07 12:38:50,406 [main] TRACE UmlAssociation - created (3389) WG10 IEC61850 association, qname='GenFCD.DataObject - GenDataObject.FCD', endAsSrc: myEnd: WG10 [0..*] GenDataObject.FCD; otherEnd: WG10 [1..1] GenFCD.DataObject, endAsTgt: myEnd: WG10 [1..1] GenFCD.DataObject; otherEnd: WG10 [0..*] GenDataObject.FCD +2024-09-07 12:38:50,406 [main] TRACE UmlAssociationEnd - created null [0..*] null.DataSet +2024-09-07 12:38:50,406 [main] TRACE UmlAssociationEnd - created null [0..*] null.FCDMember +2024-09-07 12:38:50,406 [main] TRACE UmlAssociation - created (3386) WG10 IEC61850 association, qname='GenDataSet.FCDMember - GenFCD.DataSet', endAsSrc: myEnd: WG10 [0..*] GenFCD.DataSet; otherEnd: WG10 [0..*] GenDataSet.FCDMember, endAsTgt: myEnd: WG10 [0..*] GenDataSet.FCDMember; otherEnd: WG10 [0..*] GenFCD.DataSet +2024-09-07 12:38:50,406 [main] TRACE UmlAssociationEnd - created null [0..*] null.DataSet +2024-09-07 12:38:50,406 [main] TRACE UmlAssociationEnd - created null [0..*] null.FCDAMember +2024-09-07 12:38:50,406 [main] TRACE UmlAssociation - created (3387) WG10 IEC61850 association, qname='GenDataSet.FCDAMember - GenFCDA.DataSet', endAsSrc: myEnd: WG10 [0..*] GenFCDA.DataSet; otherEnd: WG10 [0..*] GenDataSet.FCDAMember, endAsTgt: myEnd: WG10 [0..*] GenDataSet.FCDAMember; otherEnd: WG10 [0..*] GenFCDA.DataSet +2024-09-07 12:38:50,406 [main] TRACE UmlAssociationEnd - created null [0..*] null.FCD +2024-09-07 12:38:50,406 [main] TRACE UmlAssociationEnd - created null [1..1] null.SubDataObject +2024-09-07 12:38:50,407 [main] TRACE UmlAssociation - created (3385) WG10 IEC61850 association, qname='GenFCD.SubDataObject - GenSubDataObject.FCD', endAsSrc: myEnd: WG10 [0..*] GenSubDataObject.FCD; otherEnd: WG10 [1..1] GenFCD.SubDataObject, endAsTgt: myEnd: WG10 [1..1] GenFCD.SubDataObject; otherEnd: WG10 [0..*] GenSubDataObject.FCD +2024-09-07 12:38:50,407 [main] TRACE UmlAssociationEnd - created null [0..*] null.FCDA +2024-09-07 12:38:50,407 [main] TRACE UmlAssociationEnd - created null [1..1] null.SubDataAttribute +2024-09-07 12:38:50,407 [main] TRACE UmlAssociation - created (3384) WG10 IEC61850 association, qname='GenFCDA.SubDataAttribute - GenSubDataAttribute.FCDA', endAsSrc: myEnd: WG10 [0..*] GenSubDataAttribute.FCDA; otherEnd: WG10 [1..1] GenFCDA.SubDataAttribute, endAsTgt: myEnd: WG10 [1..1] GenFCDA.SubDataAttribute; otherEnd: WG10 [0..*] GenSubDataAttribute.FCDA +2024-09-07 12:38:50,407 [main] TRACE UmlAssociationEnd - created null [1..1] null.LogicalDevice +2024-09-07 12:38:50,407 [main] TRACE UmlAssociationEnd - created null [1..1] null.LN0 +2024-09-07 12:38:50,407 [main] TRACE UmlAssociation - created (3382) WG10 IEC61850 association, qname='GenLogicalDevice.LN0 - GenLN0.LogicalDevice', endAsSrc: myEnd: WG10 [1..1] GenLN0.LogicalDevice; otherEnd: WG10 [1..1] GenLogicalDevice.LN0, endAsTgt: myEnd: WG10 [1..1] GenLogicalDevice.LN0; otherEnd: WG10 [1..1] GenLN0.LogicalDevice +2024-09-07 12:38:50,407 [main] TRACE UmlAssociationEnd - created null [0..1] null.Server +2024-09-07 12:38:50,407 [main] TRACE UmlAssociationEnd - created null [1..*] null.LogicalDevice +2024-09-07 12:38:50,407 [main] TRACE UmlAssociation - created (3379) WG10 IEC61850 association, qname='GenServer.LogicalDevice - GenLogicalDevice.Server', endAsSrc: myEnd: WG10 [0..1] GenLogicalDevice.Server; otherEnd: WG10 [1..*] GenServer.LogicalDevice, endAsTgt: myEnd: WG10 [1..*] GenServer.LogicalDevice; otherEnd: WG10 [0..1] GenLogicalDevice.Server +2024-09-07 12:38:50,407 [main] TRACE UmlAssociationEnd - created null [1..1] null.LogicalDevice +2024-09-07 12:38:50,407 [main] TRACE UmlAssociationEnd - created null [0..*] null.LogicalNode +2024-09-07 12:38:50,407 [main] TRACE UmlAssociation - created (3380) WG10 IEC61850 association, qname='GenLogicalDevice.LogicalNode - GenLogicalNode.LogicalDevice', endAsSrc: myEnd: WG10 [1..1] GenLogicalNode.LogicalDevice; otherEnd: WG10 [0..*] GenLogicalDevice.LogicalNode, endAsTgt: myEnd: WG10 [0..*] GenLogicalDevice.LogicalNode; otherEnd: WG10 [1..1] GenLogicalNode.LogicalDevice +2024-09-07 12:38:50,407 [main] TRACE UmlAssociationEnd - created null [0..1] null.ParentLogicalDevice +2024-09-07 12:38:50,407 [main] TRACE UmlAssociationEnd - created null [0..*] null.ChildLogicalDevice +2024-09-07 12:38:50,407 [main] TRACE UmlAssociation - created (3381) WG10 IEC61850 association, qname='GenLogicalDevice.ChildLogicalDevice - GenLogicalDevice.ParentLogicalDevice', endAsSrc: myEnd: WG10 [0..1] GenLogicalDevice.ParentLogicalDevice; otherEnd: WG10 [0..*] GenLogicalDevice.ChildLogicalDevice, endAsTgt: myEnd: WG10 [0..*] GenLogicalDevice.ChildLogicalDevice; otherEnd: WG10 [0..1] GenLogicalDevice.ParentLogicalDevice +2024-09-07 12:38:50,407 [main] TRACE UmlAssociationEnd - created null [1..1] null.Server +2024-09-07 12:38:50,407 [main] TRACE UmlAssociationEnd - created null [0..*] null.MCAppAssociation +2024-09-07 12:38:50,407 [main] TRACE UmlAssociation - created (3378) WG10 IEC61850 association, qname='GenServer.MCAppAssociation - GenMCAA.Server', endAsSrc: myEnd: WG10 [1..1] GenMCAA.Server; otherEnd: WG10 [0..*] GenServer.MCAppAssociation, endAsTgt: myEnd: WG10 [0..*] GenServer.MCAppAssociation; otherEnd: WG10 [1..1] GenMCAA.Server +2024-09-07 12:38:50,407 [main] TRACE UmlAssociationEnd - created null [1..*] null.SAP +2024-09-07 12:38:50,407 [main] TRACE UmlAssociationEnd - created null [0..*] null.Server +2024-09-07 12:38:50,407 [main] TRACE UmlAssociation - created (3376) WG10 IEC61850 association, qname='ServiceAccessPoint.Server - GenServer.SAP', endAsSrc: myEnd: WG10 [1..*] GenServer.SAP; otherEnd: WG10 [0..*] ServiceAccessPoint.Server, endAsTgt: myEnd: WG10 [0..*] ServiceAccessPoint.Server; otherEnd: WG10 [1..*] GenServer.SAP +2024-09-07 12:38:50,407 [main] TRACE UmlAssociationEnd - created null [1..1] null.Server +2024-09-07 12:38:50,407 [main] TRACE UmlAssociationEnd - created null [0..*] null.TPAppAssociation +2024-09-07 12:38:50,407 [main] TRACE UmlAssociation - created (3377) WG10 IEC61850 association, qname='GenServer.TPAppAssociation - GenTPAA.Server', endAsSrc: myEnd: WG10 [1..1] GenTPAA.Server; otherEnd: WG10 [0..*] GenServer.TPAppAssociation, endAsTgt: myEnd: WG10 [0..*] GenServer.TPAppAssociation; otherEnd: WG10 [1..1] GenTPAA.Server +2024-09-07 12:38:50,407 [main] TRACE UmlAssociationEnd - created null (private) [0..*] null.<> +2024-09-07 12:38:50,407 [main] TRACE UmlAssociationEnd - created null (private) [1..1] null.<> +2024-09-07 12:38:50,407 [main] TRACE UmlAssociation - created (3289) WG10 IEC61850 association, qname='MCAA.<> - Authentication.<>', endAsSrc: myEnd: WG10 (private) [0..*] Authentication.<>; otherEnd: WG10 (private) [1..1] MCAA.<>, endAsTgt: myEnd: WG10 (private) [1..1] MCAA.<>; otherEnd: WG10 (private) [0..*] Authentication.<> +2024-09-07 12:38:50,407 [main] TRACE UmlAssociationEnd - created null (private) [0..*] null.<> +2024-09-07 12:38:50,407 [main] TRACE UmlAssociationEnd - created null (private) [1..1] null.<> +2024-09-07 12:38:50,407 [main] TRACE UmlAssociation - created (3290) WG10 IEC61850 association, qname='TPAA.<> - Authentication.<>', endAsSrc: myEnd: WG10 (private) [0..*] Authentication.<>; otherEnd: WG10 (private) [1..1] TPAA.<>, endAsTgt: myEnd: WG10 (private) [1..1] TPAA.<>; otherEnd: WG10 (private) [0..*] Authentication.<> +2024-09-07 12:38:50,407 [main] TRACE UmlAssociationEnd - created null (private) [?..?] null.<> (non-navigable) +2024-09-07 12:38:50,407 [main] TRACE UmlAssociationEnd - created null (private) [1..*] null.<> (navigable) +2024-09-07 12:38:50,408 [main] TRACE UmlAssociation - created (3291) WG10 IEC61850 association, qname='Authentication.<> - AccessView.<>', endAsSrc: myEnd: WG10 (private) [?..?] AccessView.<> (non-navigable); otherEnd: WG10 (private) [1..*] Authentication.<> (navigable), endAsTgt: myEnd: WG10 (private) [1..*] Authentication.<> (navigable); otherEnd: WG10 (private) [?..?] AccessView.<> (non-navigable) +2024-09-07 12:38:50,408 [main] TRACE UmlAssociationEnd - created null (private) [?..?] null.privateAuth +2024-09-07 12:38:50,408 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> +2024-09-07 12:38:50,408 [main] TRACE UmlAssociation - created (3422) WG10 IEC61850 association, qname='Authentication.<> - ReportID.privateAuth', endAsSrc: myEnd: WG10 (private) [?..?] ReportID.privateAuth; otherEnd: WG10 [?..?] Authentication.<>, endAsTgt: myEnd: WG10 [?..?] Authentication.<>; otherEnd: WG10 (private) [?..?] ReportID.privateAuth +2024-09-07 12:38:50,408 [main] TRACE UmlAssociationEnd - created null [?..?] null.publicAuth +2024-09-07 12:38:50,408 [main] TRACE UmlAssociationEnd - created null [?..?] null.publicEntryID +2024-09-07 12:38:50,408 [main] TRACE UmlAssociation - created (3423) WG10 IEC61850 association, qname='Authentication.publicEntryID - EntryID.publicAuth', endAsSrc: myEnd: WG10 [?..?] EntryID.publicAuth; otherEnd: WG10 [?..?] Authentication.publicEntryID, endAsTgt: myEnd: WG10 [?..?] Authentication.publicEntryID; otherEnd: WG10 [?..?] EntryID.publicAuth +2024-09-07 12:38:50,408 [main] TRACE UmlAssociationEnd - created null [0..1] null.IED +2024-09-07 12:38:50,408 [main] TRACE UmlAssociationEnd - created null [1..*] null.SERVERs +2024-09-07 12:38:50,408 [main] TRACE UmlAssociation - created (3249) WG10 IEC61850 composition, qname='IED.SERVERs - SERVER.IED', endAsSrc: myEnd: WG10 [0..1] SERVER.IED; otherEnd: WG10 [1..*] IED.SERVERs, endAsTgt: myEnd: WG10 [1..*] IED.SERVERs; otherEnd: WG10 [0..1] SERVER.IED +2024-09-07 12:38:50,408 [main] TRACE UmlAssociationEnd - created null (private) [0..1] null.<> +2024-09-07 12:38:50,408 [main] TRACE UmlAssociationEnd - created null [0..*] null.MCAAs +2024-09-07 12:38:50,408 [main] TRACE UmlAssociation - created (3244) WG10 IEC61850 composition, qname='SERVER.MCAAs - MCAA.<>', endAsSrc: myEnd: WG10 (private) [0..1] MCAA.<>; otherEnd: WG10 [0..*] SERVER.MCAAs, endAsTgt: myEnd: WG10 [0..*] SERVER.MCAAs; otherEnd: WG10 (private) [0..1] MCAA.<> +2024-09-07 12:38:50,408 [main] TRACE UmlAssociationEnd - created null (private) [0..1] null.<> +2024-09-07 12:38:50,408 [main] TRACE UmlAssociationEnd - created null [0..*] null.FILEs +2024-09-07 12:38:50,408 [main] TRACE UmlAssociation - created (3245) WG10 IEC61850 composition, qname='SERVER.FILEs - FILE.<>', endAsSrc: myEnd: WG10 (private) [0..1] FILE.<>; otherEnd: WG10 [0..*] SERVER.FILEs, endAsTgt: myEnd: WG10 [0..*] SERVER.FILEs; otherEnd: WG10 (private) [0..1] FILE.<> +2024-09-07 12:38:50,408 [main] TRACE UmlAssociationEnd - created null (private) [0..1] null.<> +2024-09-07 12:38:50,408 [main] TRACE UmlAssociationEnd - created null [0..*] null.TPAAs +2024-09-07 12:38:50,408 [main] TRACE UmlAssociation - created (3246) WG10 IEC61850 composition, qname='SERVER.TPAAs - TPAA.<>', endAsSrc: myEnd: WG10 (private) [0..1] TPAA.<>; otherEnd: WG10 [0..*] SERVER.TPAAs, endAsTgt: myEnd: WG10 [0..*] SERVER.TPAAs; otherEnd: WG10 (private) [0..1] TPAA.<> +2024-09-07 12:38:50,408 [main] TRACE UmlAssociationEnd - created null [0..1] null.SERVER +2024-09-07 12:38:50,408 [main] TRACE UmlAssociationEnd - created null [1..*] null.LDs +2024-09-07 12:38:50,408 [main] TRACE UmlAssociation - created (3247) WG10 IEC61850 composition, qname='SERVER.LDs - LD.SERVER', endAsSrc: myEnd: WG10 [0..1] LD.SERVER; otherEnd: WG10 [1..*] SERVER.LDs, endAsTgt: myEnd: WG10 [1..*] SERVER.LDs; otherEnd: WG10 [0..1] LD.SERVER +2024-09-07 12:38:50,408 [main] TRACE UmlAssociationEnd - created null [0..1] null.TPAA +2024-09-07 12:38:50,408 [main] TRACE UmlAssociationEnd - created null [0..*] null.NonPersistentDSs +2024-09-07 12:38:50,408 [main] TRACE UmlAssociation - created (3242) WG10 IEC61850 composition, qname='TPAA.NonPersistentDSs - NonPersistentDS.TPAA', endAsSrc: myEnd: WG10 [0..1] NonPersistentDS.TPAA; otherEnd: WG10 [0..*] TPAA.NonPersistentDSs, endAsTgt: myEnd: WG10 [0..*] TPAA.NonPersistentDSs; otherEnd: WG10 [0..1] NonPersistentDS.TPAA +2024-09-07 12:38:50,408 [main] TRACE UmlAssociationEnd - created null [0..1] null.LD +2024-09-07 12:38:50,408 [main] TRACE UmlAssociationEnd - created null [0..*] null.LNDOMs +2024-09-07 12:38:50,408 [main] TRACE UmlAssociation - created (3237) WG10 IEC61850 composition, qname='LD.LNDOMs - LNDOM.LD', endAsSrc: myEnd: WG10 [0..1] LNDOM.LD; otherEnd: WG10 [0..*] LD.LNDOMs, endAsTgt: myEnd: WG10 [0..*] LD.LNDOMs; otherEnd: WG10 [0..1] LNDOM.LD +2024-09-07 12:38:50,408 [main] TRACE UmlAssociationEnd - created null [0..1] null.LD +2024-09-07 12:38:50,408 [main] TRACE UmlAssociationEnd - created null [1..1] null.LN0 +2024-09-07 12:38:50,408 [main] TRACE UmlAssociation - created (3238) WG10 IEC61850 composition, qname='LD.LN0 - LN0.LD', endAsSrc: myEnd: WG10 [0..1] LN0.LD; otherEnd: WG10 [1..1] LD.LN0, endAsTgt: myEnd: WG10 [1..1] LD.LN0; otherEnd: WG10 [0..1] LN0.LD +2024-09-07 12:38:50,408 [main] TRACE UmlAssociationEnd - created null [0..1] null.LD +2024-09-07 12:38:50,408 [main] TRACE UmlAssociationEnd - created null [1..1] null.LNPHD +2024-09-07 12:38:50,409 [main] TRACE UmlAssociation - created (3239) WG10 IEC61850 composition, qname='LD.LNPHD - LNPHD.LD', endAsSrc: myEnd: WG10 [0..1] LNPHD.LD; otherEnd: WG10 [1..1] LD.LNPHD, endAsTgt: myEnd: WG10 [1..1] LD.LNPHD; otherEnd: WG10 [0..1] LNPHD.LD +2024-09-07 12:38:50,409 [main] TRACE UmlAssociationEnd - created null [0..1] null.LN +2024-09-07 12:38:50,409 [main] TRACE UmlAssociationEnd - created null [1..*] null.CDCs +2024-09-07 12:38:50,409 [main] TRACE UmlAssociation - created (3230) WG10 IEC61850 composition, qname='LN.CDCs - CDC.LN', endAsSrc: myEnd: WG10 [0..1] CDC.LN; otherEnd: WG10 [1..*] LN.CDCs, endAsTgt: myEnd: WG10 [1..*] LN.CDCs; otherEnd: WG10 [0..1] CDC.LN +2024-09-07 12:38:50,409 [main] TRACE UmlAssociationEnd - created null [?..?] null.LN +2024-09-07 12:38:50,409 [main] TRACE UmlAssociationEnd - created null [0..*] null.LNOwnedDSs +2024-09-07 12:38:50,409 [main] TRACE UmlAssociation - created (3231) WG10 IEC61850 association, qname='LN.LNOwnedDSs - LNOwnedDS.LN', endAsSrc: myEnd: WG10 [?..?] LNOwnedDS.LN; otherEnd: WG10 [0..*] LN.LNOwnedDSs, endAsTgt: myEnd: WG10 [0..*] LN.LNOwnedDSs; otherEnd: WG10 [?..?] LNOwnedDS.LN +2024-09-07 12:38:50,409 [main] TRACE UmlAssociationEnd - created null [?..?] null.LN +2024-09-07 12:38:50,409 [main] TRACE UmlAssociationEnd - created null [0..*] null.LOGs +2024-09-07 12:38:50,409 [main] TRACE UmlAssociation - created (3232) WG10 IEC61850 association, qname='LN.LOGs - LOG.LN', endAsSrc: myEnd: WG10 [?..?] LOG.LN; otherEnd: WG10 [0..*] LN.LOGs, endAsTgt: myEnd: WG10 [0..*] LN.LOGs; otherEnd: WG10 [?..?] LOG.LN +2024-09-07 12:38:50,409 [main] TRACE UmlAssociationEnd - created null [?..?] null.LN +2024-09-07 12:38:50,409 [main] TRACE UmlAssociationEnd - created null [0..*] null.LCBs +2024-09-07 12:38:50,409 [main] TRACE UmlAssociation - created (3233) WG10 IEC61850 association, qname='LN.LCBs - LCB.LN', endAsSrc: myEnd: WG10 [?..?] LCB.LN; otherEnd: WG10 [0..*] LN.LCBs, endAsTgt: myEnd: WG10 [0..*] LN.LCBs; otherEnd: WG10 [?..?] LCB.LN +2024-09-07 12:38:50,409 [main] TRACE UmlAssociationEnd - created null [0..1] null.LN +2024-09-07 12:38:50,409 [main] TRACE UmlAssociationEnd - created null [0..*] null.URCBs +2024-09-07 12:38:50,409 [main] TRACE UmlAssociation - created (3234) WG10 IEC61850 composition, qname='LN.URCBs - URCB.LN', endAsSrc: myEnd: WG10 [0..1] URCB.LN; otherEnd: WG10 [0..*] LN.URCBs, endAsTgt: myEnd: WG10 [0..*] LN.URCBs; otherEnd: WG10 [0..1] URCB.LN +2024-09-07 12:38:50,409 [main] TRACE UmlAssociationEnd - created null [0..1] null.LN +2024-09-07 12:38:50,409 [main] TRACE UmlAssociationEnd - created null [0..*] null.BRCBs +2024-09-07 12:38:50,409 [main] TRACE UmlAssociation - created (3235) WG10 IEC61850 composition, qname='LN.BRCBs - BRCB.LN', endAsSrc: myEnd: WG10 [0..1] BRCB.LN; otherEnd: WG10 [0..*] LN.BRCBs, endAsTgt: myEnd: WG10 [0..*] LN.BRCBs; otherEnd: WG10 [0..1] BRCB.LN +2024-09-07 12:38:50,409 [main] TRACE UmlAssociationEnd - created null [?..?] null.LN0 +2024-09-07 12:38:50,409 [main] TRACE UmlAssociationEnd - created null [0..*] null.USVCBs +2024-09-07 12:38:50,409 [main] TRACE UmlAssociation - created (3224) WG10 IEC61850 association, qname='LN0.USVCBs - USVCB.LN0', endAsSrc: myEnd: WG10 [?..?] USVCB.LN0; otherEnd: WG10 [0..*] LN0.USVCBs, endAsTgt: myEnd: WG10 [0..*] LN0.USVCBs; otherEnd: WG10 [?..?] USVCB.LN0 +2024-09-07 12:38:50,409 [main] TRACE UmlAssociationEnd - created null [?..?] null.LN0 +2024-09-07 12:38:50,409 [main] TRACE UmlAssociationEnd - created null [0..*] null.GCBs +2024-09-07 12:38:50,409 [main] TRACE UmlAssociation - created (3225) WG10 IEC61850 association, qname='LN0.GCBs - GCB.LN0', endAsSrc: myEnd: WG10 [?..?] GCB.LN0; otherEnd: WG10 [0..*] LN0.GCBs, endAsTgt: myEnd: WG10 [0..*] LN0.GCBs; otherEnd: WG10 [?..?] GCB.LN0 +2024-09-07 12:38:50,409 [main] TRACE UmlAssociationEnd - created null [?..?] null.LN0 +2024-09-07 12:38:50,409 [main] TRACE UmlAssociationEnd - created null [0..*] null.MSVCBs +2024-09-07 12:38:50,409 [main] TRACE UmlAssociation - created (3226) WG10 IEC61850 association, qname='LN0.MSVCBs - MSVCB.LN0', endAsSrc: myEnd: WG10 [?..?] MSVCB.LN0; otherEnd: WG10 [0..*] LN0.MSVCBs, endAsTgt: myEnd: WG10 [0..*] LN0.MSVCBs; otherEnd: WG10 [?..?] MSVCB.LN0 +2024-09-07 12:38:50,409 [main] TRACE UmlAssociationEnd - created null [?..?] null.LN0 +2024-09-07 12:38:50,409 [main] TRACE UmlAssociationEnd - created null [0..1] null.SGCB +2024-09-07 12:38:50,409 [main] TRACE UmlAssociation - created (3227) WG10 IEC61850 association, qname='LN0.SGCB - SGCB.LN0', endAsSrc: myEnd: WG10 [?..?] SGCB.LN0; otherEnd: WG10 [0..1] LN0.SGCB, endAsTgt: myEnd: WG10 [0..1] LN0.SGCB; otherEnd: WG10 [?..?] SGCB.LN0 +2024-09-07 12:38:50,409 [main] TRACE UmlAssociationEnd - created null [0..1] null.CDC +2024-09-07 12:38:50,409 [main] TRACE UmlAssociationEnd - created null [1..*] null.FCDAs +2024-09-07 12:38:50,409 [main] TRACE UmlAssociation - created (3220) WG10 IEC61850 composition, qname='CDC.FCDAs - FCDA.CDC', endAsSrc: myEnd: WG10 [0..1] FCDA.CDC; otherEnd: WG10 [1..*] CDC.FCDAs, endAsTgt: myEnd: WG10 [1..*] CDC.FCDAs; otherEnd: WG10 [0..1] FCDA.CDC +2024-09-07 12:38:50,410 [main] TRACE UmlAssociationEnd - created null [0..1] null.CDC +2024-09-07 12:38:50,410 [main] TRACE UmlAssociationEnd - created null [1..*] null.FCDs +2024-09-07 12:38:50,410 [main] TRACE UmlAssociation - created (3221) WG10 IEC61850 composition, qname='CDC.FCDs - FCD.CDC', endAsSrc: myEnd: WG10 [0..1] FCD.CDC; otherEnd: WG10 [1..*] CDC.FCDs, endAsTgt: myEnd: WG10 [1..*] CDC.FCDs; otherEnd: WG10 [0..1] FCD.CDC +2024-09-07 12:38:50,410 [main] TRACE UmlAssociationEnd - created null [0..1] null.ComposedCDC +2024-09-07 12:38:50,410 [main] TRACE UmlAssociationEnd - created null [1..*] null.PrimitiveCDCs +2024-09-07 12:38:50,410 [main] TRACE UmlAssociation - created (3217) WG10 IEC61850 composition, qname='ComposedCDC.PrimitiveCDCs - PrimitiveCDC.ComposedCDC', endAsSrc: myEnd: WG10 [0..1] PrimitiveCDC.ComposedCDC; otherEnd: WG10 [1..*] ComposedCDC.PrimitiveCDCs, endAsTgt: myEnd: WG10 [1..*] ComposedCDC.PrimitiveCDCs; otherEnd: WG10 [0..1] PrimitiveCDC.ComposedCDC +2024-09-07 12:38:50,410 [main] TRACE UmlAssociationEnd - created null [0..1] null.ControlCDC +2024-09-07 12:38:50,410 [main] TRACE UmlAssociationEnd - created null [0..1] null.ServiceParameter +2024-09-07 12:38:50,410 [main] TRACE UmlAssociation - created (3218) WG10 IEC61850 composition, qname='PrimitiveCDC.ServiceParameter - PrimitiveDA.ControlCDC', endAsSrc: myEnd: WG10 [0..1] PrimitiveDA.ControlCDC; otherEnd: WG10 [0..1] PrimitiveCDC.ServiceParameter, endAsTgt: myEnd: WG10 [0..1] PrimitiveCDC.ServiceParameter; otherEnd: WG10 [0..1] PrimitiveDA.ControlCDC +2024-09-07 12:38:50,410 [main] TRACE UmlAssociationEnd - created null [0..*] null.DataSetFCDMember +2024-09-07 12:38:50,410 [main] TRACE UmlAssociationEnd - created null [0..*] null.DSs +2024-09-07 12:38:50,410 [main] TRACE UmlAssociation - created (3213) WG10 IEC61850 association, qname='FCD.DSs - DS.DataSetFCDMember', endAsSrc: myEnd: WG10 [0..*] DS.DataSetFCDMember; otherEnd: WG10 [0..*] FCD.DSs, endAsTgt: myEnd: WG10 [0..*] FCD.DSs; otherEnd: WG10 [0..*] DS.DataSetFCDMember +2024-09-07 12:38:50,410 [main] TRACE UmlAssociationEnd - created null [1..1] null.FCD +2024-09-07 12:38:50,410 [main] TRACE UmlAssociationEnd - created null [1..*] null.FCDAs +2024-09-07 12:38:50,410 [main] TRACE UmlAssociation - created (3214) WG10 IEC61850 association, qname='FCD.FCDAs - FCDA.FCD', endAsSrc: myEnd: WG10 [1..1] FCDA.FCD; otherEnd: WG10 [1..*] FCD.FCDAs, endAsTgt: myEnd: WG10 [1..*] FCD.FCDAs; otherEnd: WG10 [1..1] FCDA.FCD +2024-09-07 12:38:50,410 [main] TRACE UmlAssociationEnd - created null [0..1] null.FCDA +2024-09-07 12:38:50,410 [main] TRACE UmlAssociationEnd - created null [1..1] null.DA +2024-09-07 12:38:50,410 [main] TRACE UmlAssociation - created (3210) WG10 IEC61850 composition, qname='FCDA.DA - DA.FCDA', endAsSrc: myEnd: WG10 [0..1] DA.FCDA; otherEnd: WG10 [1..1] FCDA.DA, endAsTgt: myEnd: WG10 [1..1] FCDA.DA; otherEnd: WG10 [0..1] DA.FCDA +2024-09-07 12:38:50,410 [main] TRACE UmlAssociationEnd - created null [0..*] null.DataSetFCDAMember +2024-09-07 12:38:50,410 [main] TRACE UmlAssociationEnd - created null [0..*] null.DSs +2024-09-07 12:38:50,410 [main] TRACE UmlAssociation - created (3211) WG10 IEC61850 association, qname='FCDA.DSs - DS.DataSetFCDAMember', endAsSrc: myEnd: WG10 [0..*] DS.DataSetFCDAMember; otherEnd: WG10 [0..*] FCDA.DSs, endAsTgt: myEnd: WG10 [0..*] FCDA.DSs; otherEnd: WG10 [0..*] DS.DataSetFCDAMember +2024-09-07 12:38:50,410 [main] TRACE UmlAssociationEnd - created null [0..1] null.ComposedDA +2024-09-07 12:38:50,410 [main] TRACE UmlAssociationEnd - created null [1..*] null.DAs +2024-09-07 12:38:50,410 [main] TRACE UmlAssociation - created (3208) WG10 IEC61850 composition, qname='ComposedDA.DAs - DA.ComposedDA', endAsSrc: myEnd: WG10 [0..1] DA.ComposedDA; otherEnd: WG10 [1..*] ComposedDA.DAs, endAsTgt: myEnd: WG10 [1..*] ComposedDA.DAs; otherEnd: WG10 [0..1] DA.ComposedDA +2024-09-07 12:38:50,410 [main] TRACE UmlAssociationEnd - created null (private) [0..*] null.<> +2024-09-07 12:38:50,410 [main] TRACE UmlAssociationEnd - created null [0..1] null.DS +2024-09-07 12:38:50,410 [main] TRACE UmlAssociation - created (3200) WG10 IEC61850 association, qname='URCB.DS - DS.<>', endAsSrc: myEnd: WG10 (private) [0..*] DS.<>; otherEnd: WG10 [0..1] URCB.DS, endAsTgt: myEnd: WG10 [0..1] URCB.DS; otherEnd: WG10 (private) [0..*] DS.<> +2024-09-07 12:38:50,410 [main] TRACE UmlAssociationEnd - created null (private) [0..*] null.<> +2024-09-07 12:38:50,410 [main] TRACE UmlAssociationEnd - created null [0..1] null.DS +2024-09-07 12:38:50,410 [main] TRACE UmlAssociation - created (3201) WG10 IEC61850 association, qname='USVCB.DS - DS.<>', endAsSrc: myEnd: WG10 (private) [0..*] DS.<>; otherEnd: WG10 [0..1] USVCB.DS, endAsTgt: myEnd: WG10 [0..1] USVCB.DS; otherEnd: WG10 (private) [0..*] DS.<> +2024-09-07 12:38:50,410 [main] TRACE UmlAssociationEnd - created null (private) [0..*] null.<> +2024-09-07 12:38:50,410 [main] TRACE UmlAssociationEnd - created null [0..1] null.LNOwnedDS +2024-09-07 12:38:50,410 [main] TRACE UmlAssociation - created (3195) WG10 IEC61850 association, qname='MSVCB.LNOwnedDS - LNOwnedDS.<>', endAsSrc: myEnd: WG10 (private) [0..*] LNOwnedDS.<>; otherEnd: WG10 [0..1] MSVCB.LNOwnedDS, endAsTgt: myEnd: WG10 [0..1] MSVCB.LNOwnedDS; otherEnd: WG10 (private) [0..*] LNOwnedDS.<> +2024-09-07 12:38:50,410 [main] TRACE UmlAssociationEnd - created null (private) [0..*] null.<> +2024-09-07 12:38:50,411 [main] TRACE UmlAssociationEnd - created null [0..1] null.LNOwnedDS +2024-09-07 12:38:50,411 [main] TRACE UmlAssociation - created (3196) WG10 IEC61850 association, qname='LCB.LNOwnedDS - LNOwnedDS.<>', endAsSrc: myEnd: WG10 (private) [0..*] LNOwnedDS.<>; otherEnd: WG10 [0..1] LCB.LNOwnedDS, endAsTgt: myEnd: WG10 [0..1] LCB.LNOwnedDS; otherEnd: WG10 (private) [0..*] LNOwnedDS.<> +2024-09-07 12:38:50,411 [main] TRACE UmlAssociationEnd - created null (private) [0..*] null.<> +2024-09-07 12:38:50,411 [main] TRACE UmlAssociationEnd - created null [0..1] null.LNOwnedDS +2024-09-07 12:38:50,411 [main] TRACE UmlAssociation - created (3197) WG10 IEC61850 association, qname='BRCB.LNOwnedDS - LNOwnedDS.<>', endAsSrc: myEnd: WG10 (private) [0..*] LNOwnedDS.<>; otherEnd: WG10 [0..1] BRCB.LNOwnedDS, endAsTgt: myEnd: WG10 [0..1] BRCB.LNOwnedDS; otherEnd: WG10 (private) [0..*] LNOwnedDS.<> +2024-09-07 12:38:50,411 [main] TRACE UmlAssociationEnd - created null (private) [0..*] null.<> +2024-09-07 12:38:50,411 [main] TRACE UmlAssociationEnd - created null [0..1] null.LNOwnedDS +2024-09-07 12:38:50,411 [main] TRACE UmlAssociation - created (3198) WG10 IEC61850 association, qname='GCB.LNOwnedDS - LNOwnedDS.<>', endAsSrc: myEnd: WG10 (private) [0..*] LNOwnedDS.<>; otherEnd: WG10 [0..1] GCB.LNOwnedDS, endAsTgt: myEnd: WG10 [0..1] GCB.LNOwnedDS; otherEnd: WG10 (private) [0..*] LNOwnedDS.<> +2024-09-07 12:38:50,411 [main] TRACE UmlAssociationEnd - created null (private) [0..*] null.<> +2024-09-07 12:38:50,411 [main] TRACE UmlAssociationEnd - created null [1..1] null.LOG +2024-09-07 12:38:50,411 [main] TRACE UmlAssociation - created (3186) WG10 IEC61850 association, qname='LCB.LOG - LOG.<>', endAsSrc: myEnd: WG10 (private) [0..*] LOG.<>; otherEnd: WG10 [1..1] LCB.LOG, endAsTgt: myEnd: WG10 [1..1] LCB.LOG; otherEnd: WG10 (private) [0..*] LOG.<> +2024-09-07 12:38:50,411 [main] TRACE UmlAssociationEnd - created null (private) [0..*] null.<> +2024-09-07 12:38:50,411 [main] TRACE UmlAssociationEnd - created null [1..*] null.ActiveFCDAs +2024-09-07 12:38:50,411 [main] TRACE UmlAssociation - created (3178) WG10 IEC61850 association, qname='SGCB.ActiveFCDAs - FCDA_SG.<>', endAsSrc: myEnd: WG10 (private) [0..*] FCDA_SG.<>; otherEnd: WG10 [1..*] SGCB.ActiveFCDAs, endAsTgt: myEnd: WG10 [1..*] SGCB.ActiveFCDAs; otherEnd: WG10 (private) [0..*] FCDA_SG.<> +2024-09-07 12:38:50,411 [main] TRACE UmlAssociationEnd - created null (private) [0..*] null.<> +2024-09-07 12:38:50,411 [main] TRACE UmlAssociationEnd - created null [1..*] null.EditFCDAs +2024-09-07 12:38:50,411 [main] TRACE UmlAssociation - created (3179) WG10 IEC61850 association, qname='SGCB.EditFCDAs - FCDA_SE.<>', endAsSrc: myEnd: WG10 (private) [0..*] FCDA_SE.<>; otherEnd: WG10 [1..*] SGCB.EditFCDAs, endAsTgt: myEnd: WG10 [1..*] SGCB.EditFCDAs; otherEnd: WG10 (private) [0..*] FCDA_SE.<> +2024-09-07 12:38:50,411 [main] TRACE UmlAssociationEnd - created null [0..1] null.SelfFromApple +2024-09-07 12:38:50,411 [main] TRACE UmlAssociationEnd - created null [0..*] null.SelfToApples +2024-09-07 12:38:50,411 [main] TRACE UmlAssociation - created (2140) OTHER_CIM CIM association, qname='Apple.SelfToApples - Apple.SelfFromApple', endAsSrc: myEnd: OTHER_CIM [0..1] Apple.SelfFromApple; otherEnd: OTHER_CIM [0..*] Apple.SelfToApples, endAsTgt: myEnd: OTHER_CIM [0..*] Apple.SelfToApples; otherEnd: OTHER_CIM [0..1] Apple.SelfFromApple +2024-09-07 12:38:50,411 [main] TRACE UmlAssociationEnd - created null [0..1] null.Pear +2024-09-07 12:38:50,411 [main] TRACE UmlAssociationEnd - created null [0..*] null.Apple +2024-09-07 12:38:50,411 [main] TRACE UmlAssociation - created (2141) OTHER_CIM CIM association <>, qname='Pear.Apple - Apple.Pear', endAsSrc: myEnd: OTHER_CIM [0..1] Apple.Pear; tags={assocEndTag=value}; otherEnd: OTHER_CIM [0..*] Pear.Apple; tags={targetEndTag=value2}, endAsTgt: myEnd: OTHER_CIM [0..*] Pear.Apple; tags={targetEndTag=value2}; otherEnd: OTHER_CIM [0..1] Apple.Pear; tags={assocEndTag=value} +2024-09-07 12:38:50,411 [main] TRACE UmlAssociationEnd - created null <> [0..1] null.SecondPear +2024-09-07 12:38:50,411 [main] TRACE UmlAssociationEnd - created null <> [1..1] null.SecondApple +2024-09-07 12:38:50,411 [main] TRACE UmlAssociation - created (2142) OTHER_CIM CIM association, qname='Pear.SecondApple - Apple.SecondPear', endAsSrc: myEnd: OTHER_CIM <> [0..1] Apple.SecondPear; otherEnd: OTHER_CIM <> [1..1] Pear.SecondApple, endAsTgt: myEnd: OTHER_CIM <> [1..1] Pear.SecondApple; otherEnd: OTHER_CIM <> [0..1] Apple.SecondPear +2024-09-07 12:38:50,411 [main] TRACE UmlAssociationEnd - created null [0..1] null.Animal +2024-09-07 12:38:50,411 [main] TRACE UmlAssociationEnd - created null [0..*] null.Fruit +2024-09-07 12:38:50,411 [main] TRACE UmlAssociation - created (2143) OTHER_IEC61850 IEC61850 association, qname='Animal.Fruit - Fruit.Animal', endAsSrc: myEnd: OTHER_IEC61850 [0..1] Fruit.Animal; otherEnd: OTHER_IEC61850 [0..*] Animal.Fruit, endAsTgt: myEnd: OTHER_IEC61850 [0..*] Animal.Fruit; otherEnd: OTHER_IEC61850 [0..1] Fruit.Animal +2024-09-07 12:38:50,411 [main] TRACE UmlAssociationEnd - created null [1..*] null.SecondAnimal +2024-09-07 12:38:50,411 [main] TRACE UmlAssociationEnd - created null [1..1] null.SecondFruit +2024-09-07 12:38:50,411 [main] TRACE UmlAssociation - created (2144) OTHER_IEC61850 IEC61850 association, qname='Animal.SecondFruit - Fruit.SecondAnimal', endAsSrc: myEnd: OTHER_IEC61850 [1..*] Fruit.SecondAnimal; otherEnd: OTHER_IEC61850 [1..1] Animal.SecondFruit, endAsTgt: myEnd: OTHER_IEC61850 [1..1] Animal.SecondFruit; otherEnd: OTHER_IEC61850 [1..*] Fruit.SecondAnimal +2024-09-07 12:38:50,412 [main] TRACE UmlAssociationEnd - created null [0..1] null.Vilage +2024-09-07 12:38:50,412 [main] TRACE UmlAssociationEnd - created null [0..*] null.Strawberries +2024-09-07 12:38:50,412 [main] TRACE UmlAssociation - created (3418) OTHER_CIM CIM association, qname='Village.Strawberries - Strawberry.Vilage', endAsSrc: myEnd: OTHER_CIM [0..1] Strawberry.Vilage; otherEnd: OTHER_CIM [0..*] Village.Strawberries, endAsTgt: myEnd: OTHER_CIM [0..*] Village.Strawberries; otherEnd: OTHER_CIM [0..1] Strawberry.Vilage +2024-09-07 12:38:50,412 [main] TRACE UmlAssociationEnd - created null [0..1] null.Role 1 +2024-09-07 12:38:50,412 [main] TRACE UmlAssociationEnd - created null [0..1] null._role 2&x +2024-09-07 12:38:50,412 [main] TRACE UmlAssociation - created (2147) OTHER_CIM CIM association <>, qname='My class._role 2&x - Other-with_invalid name.Role 1', endAsSrc: myEnd: OTHER_CIM [0..1] Other-with_invalid name.Role 1; otherEnd: OTHER_CIM [0..1] My class._role 2&x, endAsTgt: myEnd: OTHER_CIM [0..1] My class._role 2&x; otherEnd: OTHER_CIM [0..1] Other-with_invalid name.Role 1 +2024-09-07 12:38:50,412 [main] INFO EaModelBuilder - creating in-memory dependencies ... +2024-09-07 12:38:50,419 [main] TRACE UmlDependency - created (3446) WG14 CIM interPackage dependency= IEC61968::Other -> TC57CIM::IEC61970 +2024-09-07 12:38:50,419 [main] TRACE UmlDependency - created (3447) WG14 CIM interPackage dependency= TC57CIM::IEC61968 -> TC57CIM::IEC61970 +2024-09-07 12:38:50,420 [main] TRACE UmlDependency - created (3449) WG16 CIM interPackage dependency= TC57CIM::IEC62325 -> TC57CIM::IEC61970 +2024-09-07 12:38:50,420 [main] TRACE UmlDependency - created (485) WG13 CIM interPackage dependency <>= IEC61970::Core -> IEC61970::Domain +2024-09-07 12:38:50,420 [main] TRACE UmlDependency - created (480) WG13 CIM interPackage dependency= IEC61970::Topology -> IEC61970::Core +2024-09-07 12:38:50,420 [main] TRACE UmlDependency - created (2132) WG13 CIM interPackage dependency= IEC61970::Topology -> IEC61968::Other +2024-09-07 12:38:50,420 [main] TRACE UmlDependency - created (3448) WG16 CIM interPackage dependency= TC57CIM::IEC62325 -> TC57CIM::IEC61968 +2024-09-07 12:38:50,420 [main] TRACE UmlDependency - created (2111) WG14 CIM interClass dependency= Other::BadDatatypes -> Other::MyClass +2024-09-07 12:38:50,420 [main] TRACE UmlDependency - created (3375) WG10 IEC61850 interClass dependency <>= GenericModel::GenSubDataAttribute -> GenericModel::GenAtomicType +2024-09-07 12:38:50,420 [main] TRACE UmlDependency - created (3393) WG10 IEC61850 interClass dependency <>= GenericModel::GenDataAttribute -> GenericModel::GenAtomicType +2024-09-07 12:38:50,420 [main] TRACE UmlDependency - created (3372) WG10 IEC61850 interClass dependency <>= GenericModel::GenSubDataObject -> GenericModel::GenCommonDataClass +2024-09-07 12:38:50,420 [main] TRACE UmlDependency - created (3390) WG10 IEC61850 interClass dependency <>= GenericModel::GenDataObject -> GenericModel::GenCommonDataClass +2024-09-07 12:38:50,420 [main] TRACE UmlDependency - created (3374) WG10 IEC61850 interClass dependency <>= GenericModel::GenSubDataAttribute -> GenericModel::GenCompactType +2024-09-07 12:38:50,420 [main] TRACE UmlDependency - created (3394) WG10 IEC61850 interClass dependency <>= GenericModel::GenDataAttribute -> GenericModel::GenCompactType +2024-09-07 12:38:50,420 [main] TRACE UmlDependency - created (3373) WG10 IEC61850 interClass dependency <>= GenericModel::GenSubDataAttribute -> GenericModel::GenConstructedType +2024-09-07 12:38:50,420 [main] TRACE UmlDependency - created (3392) WG10 IEC61850 interClass dependency <>= GenericModel::GenDataAttribute -> GenericModel::GenConstructedType +2024-09-07 12:38:50,420 [main] TRACE UmlDependency - created (2896) WG10 IEC61850 interPackage dependency= WG10::IEC61850_7_4 -> WG10::IEC61850_7_2 +2024-09-07 12:38:50,420 [main] TRACE UmlDependency - created (3104) WG10 IEC61850 interPackage dependency= WG10::IEC61850_7_3 -> WG10::IEC61850_7_2 +2024-09-07 12:38:50,420 [main] TRACE UmlDependency - created (3175) WG10 IEC61850 interPackage dependency= IEC61850_7_2::MetaModel -> IEC61850_7_2::FunctionalConstraints +2024-09-07 12:38:50,420 [main] TRACE UmlDependency - created (3173) WG10 IEC61850 interPackage dependency= IEC61850_7_2::MetaModel -> IEC61850_7_2::TriggerOptions +2024-09-07 12:38:50,420 [main] TRACE UmlDependency - created (3298) WG10 IEC61850 interPackage dependency= IEC61850_7_2::BasicDAs -> IEC61850_7_2::ACSIEnums +2024-09-07 12:38:50,420 [main] TRACE UmlDependency - created (3064) WG10 IEC61850 interPackage dependency= IEC61850_7_3::ConstructedDAs -> IEC61850_7_2::CoreTypes +2024-09-07 12:38:50,420 [main] TRACE UmlDependency - created (3174) WG10 IEC61850 interPackage dependency= IEC61850_7_2::MetaModel -> IEC61850_7_2::CoreTypes +2024-09-07 12:38:50,420 [main] TRACE UmlDependency - created (3288) WG10 IEC61850 interPackage dependency= AcsiTypes::CommonAcsiTypes -> IEC61850_7_2::CoreTypes +2024-09-07 12:38:50,420 [main] TRACE UmlDependency - created (3297) WG10 IEC61850 interPackage dependency= IEC61850_7_2::AcsiTypes -> IEC61850_7_2::CoreTypes +2024-09-07 12:38:50,420 [main] TRACE UmlDependency - created (3301) WG10 IEC61850 interPackage dependency= IEC61850_7_2::BasicDAs -> IEC61850_7_2::CoreTypes +2024-09-07 12:38:50,420 [main] TRACE UmlDependency - created (3322) WG10 IEC61850 interPackage dependency= IEC61850_7_2::AttrValues -> IEC61850_7_2::CoreTypes +2024-09-07 12:38:50,420 [main] TRACE UmlDependency - created (3347) WG10 IEC61850 interPackage dependency= IEC61850_7_2::ObjectReferences -> IEC61850_7_2::CoreTypes +2024-09-07 12:38:50,420 [main] TRACE UmlDependency - created (3172) WG10 IEC61850 interPackage dependency= IEC61850_7_2::MetaModel -> IEC61850_7_2::ObjectReferences +2024-09-07 12:38:50,420 [main] TRACE UmlDependency - created (3323) WG10 IEC61850 interPackage dependency= IEC61850_7_2::AttrValues -> IEC61850_7_2::ObjectReferences +2024-09-07 12:38:50,420 [main] TRACE UmlDependency - created (3171) WG10 IEC61850 interPackage dependency= IEC61850_7_2::MetaModel -> IEC61850_7_2::AttrValues +2024-09-07 12:38:50,420 [main] TRACE UmlDependency - created (3300) WG10 IEC61850 interPackage dependency= IEC61850_7_2::BasicDAs -> IEC61850_7_2::AttrValues +2024-09-07 12:38:50,420 [main] TRACE UmlDependency - created (2947) WG10 IEC61850 interPackage dependency= IEC61850_7_3::FCDAs -> IEC61850_7_2::BasicDAs +2024-09-07 12:38:50,420 [main] TRACE UmlDependency - created (3063) WG10 IEC61850 interPackage dependency= IEC61850_7_3::ConstructedDAs -> IEC61850_7_2::BasicDAs +2024-09-07 12:38:50,420 [main] TRACE UmlDependency - created (3299) WG10 IEC61850 interPackage dependency= IEC61850_7_2::BasicDAs -> IEC61850_7_2::MetaModel +2024-09-07 12:38:50,420 [main] TRACE UmlDependency - created (3176) WG10 IEC61850 interPackage dependency= IEC61850_7_2::MetaModel -> IEC61850_7_2::AcsiTypes +2024-09-07 12:38:50,421 [main] TRACE UmlDependency - created (3424) WG10 IEC61850 interClass dependency= CommonAcsiTypes::MulticastAddress -> CommonAcsiTypes::P_OCTET_STRING +2024-09-07 12:38:50,421 [main] TRACE UmlDependency - created (2549) WG10 IEC61850 interPackage dependency= IEC61850_7_4::LogicalNodes -> IEC61850_7_2::MetaModel +2024-09-07 12:38:50,421 [main] TRACE UmlDependency - created (2612) WG10 IEC61850 interPackage dependency= IEC61850_7_4::DerivedDAs -> IEC61850_7_2::MetaModel +2024-09-07 12:38:50,421 [main] TRACE UmlDependency - created (2940) WG10 IEC61850 interPackage dependency= IEC61850_7_3::CommonDataClasses -> IEC61850_7_2::MetaModel +2024-09-07 12:38:50,421 [main] TRACE UmlDependency - created (2948) WG10 IEC61850 interPackage dependency= IEC61850_7_3::FCDAs -> IEC61850_7_2::MetaModel +2024-09-07 12:38:50,421 [main] TRACE UmlDependency - created (3061) WG10 IEC61850 interPackage dependency= IEC61850_7_3::ConstructedDAs -> IEC61850_7_2::MetaModel +2024-09-07 12:38:50,421 [main] TRACE UmlDependency - created (3105) WG10 IEC61850 interPackage dependency= IEC61850_7_2::CDCServiceTracking -> IEC61850_7_3::CommonDataClasses +2024-09-07 12:38:50,421 [main] TRACE UmlDependency - created (2897) WG10 IEC61850 interPackage dependency= WG10::IEC61850_7_4 -> WG10::IEC61850_7_3 +2024-09-07 12:38:50,421 [main] TRACE UmlDependency - created (3445) WG10 IEC61850 interPackage dependency= WG10::IEC61850_7_3 -> WG10::IEC61850_7_4 +2024-09-07 12:38:50,421 [main] TRACE UmlDependency - created (2558) WG10 IEC61850 interPackage dependency= IEC61850_7_4::DerivedCDCs -> IEC61850_7_3::DAEnums +2024-09-07 12:38:50,421 [main] TRACE UmlDependency - created (3082) WG10 IEC61850 interPackage dependency= IEC61850_7_3::ImplicitDAs -> IEC61850_7_3::DAEnums +2024-09-07 12:38:50,421 [main] TRACE UmlDependency - created (2945) WG10 IEC61850 interPackage dependency= IEC61850_7_3::FCDAs -> IEC61850_7_3::ImplicitDAs +2024-09-07 12:38:50,421 [main] TRACE UmlDependency - created (3062) WG10 IEC61850 interPackage dependency= IEC61850_7_3::ConstructedDAs -> IEC61850_7_3::ImplicitDAs +2024-09-07 12:38:50,421 [main] TRACE UmlDependency - created (2946) WG10 IEC61850 interPackage dependency= IEC61850_7_3::FCDAs -> IEC61850_7_3::ConstructedDAs +2024-09-07 12:38:50,421 [main] TRACE UmlDependency - created (2941) WG10 IEC61850 interPackage dependency= IEC61850_7_3::CommonDataClasses -> IEC61850_7_3::FCDAs +2024-09-07 12:38:50,421 [main] TRACE UmlDependency - created (2550) WG10 IEC61850 interPackage dependency= IEC61850_7_4::LogicalNodes -> IEC61850_7_3::CommonDataClasses +2024-09-07 12:38:50,421 [main] TRACE UmlDependency - created (2557) WG10 IEC61850 interPackage dependency= IEC61850_7_4::DerivedCDCs -> IEC61850_7_3::CommonDataClasses +2024-09-07 12:38:50,421 [main] TRACE UmlDependency - created (3452) WG10 IEC61850 interClass dependency= CDCControl::SPC -> CDCControl::ControllableCDC +2024-09-07 12:38:50,421 [main] TRACE UmlDependency - created (3439) WG17 IEC61850 interPackage dependency= IEC61850Domain::WG17 -> WG10::IEC61850_7_4 +2024-09-07 12:38:50,421 [main] TRACE UmlDependency - created (3451) WG10 IEC61850 interPackage dependency= WG10::IEC61850_7_4 -> WG17::IEC51850_7_420 +2024-09-07 12:38:50,421 [main] TRACE UmlDependency - created (2796) WG10 IEC61850 interPackage dependency= Functions::ProtectionEq -> LogicalNodes::LNGroupP +2024-09-07 12:38:50,421 [main] TRACE UmlDependency - created (2797) WG10 IEC61850 interPackage dependency= Functions::ProtectionEq -> LogicalNodes::LNGroupR +2024-09-07 12:38:50,421 [main] TRACE UmlDependency - created (2888) WG10 IEC61850 interClass dependency= ProtectionEq::BusbarProt -> LNGroupP::PDIF +2024-09-07 12:38:50,421 [main] TRACE UmlDependency - created (2876) WG10 IEC61850 interClass dependency= ProtectionEq::DirectionalProt -> LNGroupR::RDIR +2024-09-07 12:38:50,421 [main] TRACE UmlDependency - created (3401) WG10 IEC61850 interClass dependency= ProtectionEq::DirectionalProt -> LNGroupP::PDIS +2024-09-07 12:38:50,421 [main] TRACE UmlDependency - created (2872) WG10 IEC61850 interClass dependency= ProtectionEq::DirectionalPowerProt -> LNGroupR::RDIR +2024-09-07 12:38:50,421 [main] TRACE UmlDependency - created (2849) WG10 IEC61850 interClass dependency= ProtectionEq::LineDifferentialProt -> LNGroupP::PDIF +2024-09-07 12:38:50,421 [main] TRACE UmlDependency - created (2780) WG10 IEC61850 interPackage dependency= Functions::ControlEq -> LogicalNodes::LNGroupG +2024-09-07 12:38:50,421 [main] TRACE UmlDependency - created (2781) WG10 IEC61850 interPackage dependency= Functions::ControlEq -> LogicalNodes::LNGroupP +2024-09-07 12:38:50,421 [main] TRACE UmlDependency - created (2782) WG10 IEC61850 interPackage dependency= Functions::ControlEq -> LogicalNodes::LNGroupC +2024-09-07 12:38:50,421 [main] TRACE UmlDependency - created (2795) WG10 IEC61850 interClass dependency= ControlEq::AlarmHandler -> LNGroupC::CALH +2024-09-07 12:38:50,421 [main] TRACE UmlDependency - created (2742) WG10 IEC61850 interPackage dependency= Functions::MeasurementsAndMetering -> LogicalNodes::LNGroupM +2024-09-07 12:38:50,421 [main] TRACE UmlDependency - created (2748) WG10 IEC61850 interClass dependency= MeasurementsAndMetering::ThreePhaseMeasurement -> LNGroupM::MMXU +2024-09-07 12:38:50,421 [main] TRACE UmlDependency - created (2730) WG10 IEC61850 interPackage dependency= Functions::SystemWide -> LogicalNodes::LNGroupL +2024-09-07 12:38:50,422 [main] TRACE UmlDependency - created (2731) WG10 IEC61850 interPackage dependency= Functions::SystemWide -> LogicalNodes::LNGroupG +2024-09-07 12:38:50,422 [main] TRACE UmlDependency - created (2738) WG10 IEC61850 interClass dependency= SystemWide::LogicalDeviceData -> LNGroupL::LLN0 +2024-09-07 12:38:50,422 [main] TRACE UmlDependency - created (2735) WG10 IEC61850 interClass dependency= SystemWide::PhysicalDeviceData -> LNGroupL::LPHD +2024-09-07 12:38:50,422 [main] TRACE UmlDependency - created (2665) WG10 IEC61850 interPackage dependency= Functions::PrimaryEq -> LogicalNodes::LNGroupG +2024-09-07 12:38:50,422 [main] TRACE UmlDependency - created (2670) WG10 IEC61850 interPackage dependency= Functions::PrimaryEq -> LogicalNodes::LNGroupZ +2024-09-07 12:38:50,422 [main] TRACE UmlDependency - created (2727) WG10 IEC61850 interClass dependency= PrimaryEq::AuxiliaryNetwork -> LNGroupZ::ZAXN +2024-09-07 12:38:50,422 [main] TRACE UmlDependency - created (2713) WG10 IEC61850 interClass dependency= PrimaryEq::GenericIO -> LNGroupG::GGIO +2024-09-07 12:38:50,422 [main] TRACE UmlDependency - created (2611) WG10 IEC61850 interPackage dependency= IEC61850_7_4::DerivedDAs -> IEC61850_7_4::DOEnums +2024-09-07 12:38:50,422 [main] TRACE UmlDependency - created (2559) WG10 IEC61850 interPackage dependency= IEC61850_7_4::DerivedCDCs -> IEC61850_7_4::DerivedDAs +2024-09-07 12:38:50,422 [main] TRACE UmlDependency - created (2548) WG10 IEC61850 interPackage dependency= IEC61850_7_4::LogicalNodes -> IEC61850_7_4::DerivedCDCs +2024-09-07 12:38:50,422 [main] TRACE UmlDependency - created (2447) WG10 IEC61850 interClass dependency= LNGroupP::PDIS -> LNGroupR::RDIR +2024-09-07 12:38:50,422 [main] INFO Util - time=[0:00:01.685] created in-memory model and exported normative diagrams +2024-09-07 12:38:50,422 [main] INFO Util - +2024-09-07 12:38:50,422 [main] INFO Util - +2024-09-07 12:38:50,422 [main] INFO Util - ------------------------------------------------ +2024-09-07 12:38:50,422 [main] INFO Util - closing EA file 'C:\Users\gigi\git\jCleanCim\input\base-small.eap'... +2024-09-07 12:38:50,422 [main] INFO Util - time=[0:00:00.000] closed EA file. +2024-09-07 12:38:50,422 [main] INFO Util - +2024-09-07 12:38:50,423 [main] INFO Util - time=[0:00:03.144] built model from 'TC57CIMProfiles (CIM), TC57CIM (CIM), IEC61850Domain (IEC61850), MyCimExtensions (CIM), My61850Extensions (IEC61850), NewNature (CIM)' +2024-09-07 12:38:50,423 [main] INFO Util - +2024-09-07 12:38:50,423 [main] INFO Util - +2024-09-07 12:38:50,423 [main] INFO Util - ================================================ +2024-09-07 12:38:50,423 [main] INFO Util - validating packages [WG13, WG14, WG16, OTHER_CIM, WG10, WG17, WG18, JWG25, WG19, OTHER_IEC61850]... +2024-09-07 12:38:50,423 [main] INFO Util - ================================================ +2024-09-07 12:38:50,928 [main] INFO ModelValidator - Model validation - below are all available rules: +2024-09-07 12:38:50,928 [main] INFO ModelValidator - Available rules in PackageValidator = [PackageUnexpectedElements, PackageUnexpectedConnectors, PackagesWithSelfDependency, PackagesWithUnallowedStereotype, PackagesTopLevelWithoutVersionClass, Iec61850PackagesThatShouldHaveAliasAsTitle, PackagesWithUnallowedTagNames, PackagesMissingDoc, PackagesWithBadDocStart, PackagesWithBadDocEnd, PackagesWithBadCharacterInName, PackagesWithSameName] +2024-09-07 12:38:50,928 [main] INFO ModelValidator - Available rules in ClassValidator = [CimClassesWithUnexpectedElements, ClassesWithUnexpectedConnectors, EnumClassesWithNoLiterals, CimCompoundClassesWithNoAttributes, EnumClassesWithSingleLiteral, EnumClassesWithTwoLiterals, EnumClassesWithBadName, CimPrimitiveClassesWithAttributes, CimPrimitiveClassesWithIllegalOwner, ClassesWithDuplicateInheritedAttributeNames, ClassesWithDuplicateOwnOrInheritedAssociationEndNames, ClassesWithSelfInheritance, ClassesWithSelfDependency, ClassesWithLeafPropSet, ClassesWithRootPropSet, ClassesWithPersistentPropSet, ClassesWithMultipleSuperclasses, ClassesWithSuperclassesFromUnallowedOwner, ClassesThatShouldNotBeAssociationClass, ClassesWithUnallowedStereotype, CimClassesWithOldDatatypeStereotype, CimClassesUsedForAttributesButHaveAssociations, CimClassesUsedForAttributesButHaveSubclasses, CimClassesUsedForAttributesButHaveSuperclasses, CimClassesThatShouldNotBeAbstract, CimClassesThatShouldNotHaveOperations, CimClassesThatShouldNotHaveExplicitDependencies, ClassesThatShouldNotHaveNestingThroughAttribute, Iec61850ClassesThatShouldHaveAliasAsTitle, Iec61850ClassesThatShouldHaveTaggedValuesForDocgen, CimClassesNeverUsedInRelationships, ClassesWithUnallowedTagNames, Iec61850ClassesWithInvalidConstraints, Iec61850LNClassesWithSuperfluousConstraints, Iec61850ClassesWithMissingCondIDTextInConstraints, CimDatatypeClassesWithInvalidAttributes, ClassesMissingDoc, ClassesWithBadDocStart, ClassesWithBadDocEnd, ClassesWithBadCharacterInName, CimClassesNameStartingWithLowerCase, CimClassesNameShouldBeSingular, Iec61850LNClassesInWrongGroup, Iec61850LNClassesMalformedName, EnumClassesWithSomeCodesMissing, EnumClassesWithDuplicateCodes, ClassesWithSameName, CimClassesNeverUsedAsTypeForAttribute] +2024-09-07 12:38:50,928 [main] INFO ModelValidator - Available rules in AttributeValidator = [EnumLiteralsWithSuperfluousType, EnumLiteralsWithoutEnumStereotype, AttributesWithInvalidMultiplicity, CimAttributesThatShouldBeOptional, AttributesWithInvalidTypeNull, AttributesWithInvalidTypeString, AttributesWithTypeIdMismatch, CimAttributesThatShouldBePublic, AttributesThatAreStaticButNotConst, CimAttributesThatAreNotStaticNonConstWithInitVal, AttributesThatAreConstNonStatic, AttributesWithUnallowedStereotype, AttributesThatAreEnumsInNonEnumeratedClass, CimAttributesThatShouldBeReplacedWithAssociation, AttributesWhoseTypeIsInformative, AttributesWithUnallowedTagNames, Iec61850AttributesWithInexistingSibling, CimAttributesWithFlagInName, AttributesMissingDoc, AttributesWithBadDocStart, AttributesWithBadDocEnd, CimAttributesWithBadCharacterInName, Iec61850AttributesWithBadCharacterInName, Iec61850DOAttributesWithTooLongName, Iec61850FCDAAttributesWithMissingConstraint, AttributesWithInexistingEnumLiteralAsInitValue, Iec61850DOAttributesWithNameMissingAbbreviation, CimAttributesNameStartingWithUpperCase, CimAttributesNameShouldBeSingular, CimAttributesNameShouldNotStartWithClassName, Iec61850AbbreviationLiteralsNameStartingWithLowerCase, Iec61850DOAttributesNameStartingWithLowerCase, AttributesWithTypeFromUnallowedOwner, Iec61850DOAbbreviationLiteralsDuplicateName, Iec61850DOAbbreviationLiteralsDuplicateDescription, Iec61850DOAbbreviationLiteralsNeverUsedInDOName, Iec61850DOAttributesWithSameNameDifferentType, Iec61850ConditionLiteralsNeverUsedAsConstraints] +2024-09-07 12:38:50,929 [main] INFO ModelValidator - Available rules in OperationValidator = [OperationsWithUpperCaseName, OperationsWithUnallowedStereotype, OperationParametersWithUnallowedStereotype, OperationsWithInvalidReturnTypeNull, OperationsWithInvalidArgTypeNull, OperationsWithInvalidExcTypeNull, OperationsWithUnallowedTagNames, OperationParametersWithUnallowedTagNames, OperationsMissingDoc, OperationParametersMissingDoc, OperationsWithBadDocStart, OperationParametersWithBadDocStart, OperationsWithBadDocEnd, OperationParametersWithBadDocEnd, OperationsWithBadCharacterInName, OperationParametersWithBadCharacterInName] +2024-09-07 12:38:50,929 [main] INFO ModelValidator - Available rules in AssociationValidator = [AssociationsWithExplicitDirection, AssociationsWithRoleBadDirection, AssociationsWithDoc, AssociationsWithSameDocOnBothEnds, AssociationsWithName, AssociationsWithUnallowedStereotype, AssociationEndsWithUnallowedStereotype, AssociationsMissingInformativeStereotype, AssociationsWithUnallowedTagNames, AssociationEndsWithUnallowedTagNames, AssociationsWithNoMultiplicity, AssociationsWithWrongSource, Iec61850AssociationsThatShouldBePrivate, Iec61850AssociationsWithDifferentEndVisibility, AssociationEndsMissingDoc, AssociationEndsWithBadDocStart, AssociationEndsWithBadDocEnd, AssociationEndsWithBadCharacterInName, CimAssociationEndsNameStartingWithLowerCase, CimAssociationEndsNameShouldBePlural, CimAssociationEndsNameShouldBeSingular] +2024-09-07 12:38:50,929 [main] INFO ModelValidator - Available rules in DependencyValidator = [DependenciesWithUnallowedStereotype, DependenciesWithUnallowedDirection, DependenciesWithUnallowedTagNames] +2024-09-07 12:38:50,929 [main] INFO ModelValidator - Available rules in DiagramValidator = [DiagramsWithBadOrientation, DiagramsWithUnallowedStereotype, DiagramsMissingDoc, DiagramsWithBadDocStart, DiagramsWithBadDocEnd, DiagramsWithBadCharacterInName] +2024-09-07 12:38:50,929 [main] INFO ModelValidator - +2024-09-07 12:38:50,932 [main] DEBUG ModelValidator - Available rules per nature: + for CIM: + Available rules for CIM in PackageValidator (category, severity): + PackageUnexpectedElements (modellingRule, medium) + PackageUnexpectedConnectors (modellingRule, medium) + PackagesWithSelfDependency (permissiveTool, high) + PackagesWithUnallowedStereotype (modellingRule, high) + PackagesTopLevelWithoutVersionClass (modellingRule, high) + PackagesWithUnallowedTagNames (modellingRule, high) + PackagesMissingDoc (documentationRule, medium) + PackagesWithBadDocStart (documentationRule, low) + PackagesWithBadDocEnd (documentationRule, low) + PackagesWithBadCharacterInName (namingRule, high) + PackagesWithSameName (modellingRule, high) + Available rules for CIM in ClassValidator (category, severity): + CimClassesWithUnexpectedElements (permissiveTool, high) + ClassesWithUnexpectedConnectors (permissiveTool, high) + EnumClassesWithNoLiterals (modellingRule, high) + CimCompoundClassesWithNoAttributes (modellingRule, high) + EnumClassesWithSingleLiteral (modellingRule, medium) + EnumClassesWithTwoLiterals (modellingRule, low) + EnumClassesWithBadName (modellingRule, high) + CimPrimitiveClassesWithAttributes (modellingRule, high) + CimPrimitiveClassesWithIllegalOwner (modellingRule, high) + ClassesWithDuplicateInheritedAttributeNames (modellingRule, high) + ClassesWithDuplicateOwnOrInheritedAssociationEndNames (modellingRule, high) + ClassesWithSelfInheritance (permissiveTool, high) + ClassesWithSelfDependency (permissiveTool, high) + ClassesWithLeafPropSet (modellingRule, high) + ClassesWithRootPropSet (modellingRule, high) + ClassesWithPersistentPropSet (modellingRule, high) + ClassesWithMultipleSuperclasses (modellingRule, high) + ClassesWithSuperclassesFromUnallowedOwner (modellingRule, high) + ClassesThatShouldNotBeAssociationClass (modellingRule, high) + ClassesWithUnallowedStereotype (modellingRule, high) + CimClassesWithOldDatatypeStereotype (modellingRule, medium) + CimClassesUsedForAttributesButHaveAssociations (modellingRule, high) + CimClassesUsedForAttributesButHaveSubclasses (modellingRule, high) + CimClassesUsedForAttributesButHaveSuperclasses (modellingRule, high) + CimClassesThatShouldNotBeAbstract (modellingRule, high) + CimClassesThatShouldNotHaveOperations (modellingRule, high) + CimClassesThatShouldNotHaveExplicitDependencies (modellingRule, high) + ClassesThatShouldNotHaveNestingThroughAttribute (modellingRule, high) + CimClassesNeverUsedInRelationships (modellingRule, high) + ClassesWithUnallowedTagNames (modellingRule, high) + CimDatatypeClassesWithInvalidAttributes (modellingRule, high) + ClassesMissingDoc (documentationRule, medium) + ClassesWithBadDocStart (documentationRule, low) + ClassesWithBadDocEnd (documentationRule, low) + ClassesWithBadCharacterInName (namingRule, high) + CimClassesNameStartingWithLowerCase (namingRule, high) + CimClassesNameShouldBeSingular (namingRule, high) + EnumClassesWithSomeCodesMissing (modellingRule, high) + EnumClassesWithDuplicateCodes (modellingRule, high) + ClassesWithSameName (modellingRule, high) + CimClassesNeverUsedAsTypeForAttribute (modellingRule, high) + Available rules for CIM in AttributeValidator (category, severity): + EnumLiteralsWithSuperfluousType (modellingRule, high) + EnumLiteralsWithoutEnumStereotype (modellingRule, high) + AttributesWithInvalidMultiplicity (modellingRule, high) + CimAttributesThatShouldBeOptional (modellingRule, high) + AttributesWithInvalidTypeNull (modellingRule, high) + AttributesWithInvalidTypeString (modellingRule, high) + AttributesWithTypeIdMismatch (modellingRule, high) + CimAttributesThatShouldBePublic (modellingRule, high) + AttributesThatAreStaticButNotConst (modellingRule, high) + CimAttributesThatAreNotStaticNonConstWithInitVal (modellingRule, high) + AttributesThatAreConstNonStatic (modellingRule, high) + AttributesWithUnallowedStereotype (modellingRule, high) + AttributesThatAreEnumsInNonEnumeratedClass (modellingRule, high) + CimAttributesThatShouldBeReplacedWithAssociation (modellingRule, high) + AttributesWhoseTypeIsInformative (modellingRule, high) + AttributesWithUnallowedTagNames (modellingRule, high) + CimAttributesWithFlagInName (namingRule, medium) + AttributesMissingDoc (documentationRule, medium) + AttributesWithBadDocStart (documentationRule, low) + AttributesWithBadDocEnd (documentationRule, low) + CimAttributesWithBadCharacterInName (namingRule, high) + AttributesWithInexistingEnumLiteralAsInitValue (permissiveTool, high) + CimAttributesNameStartingWithUpperCase (namingRule, high) + CimAttributesNameShouldBeSingular (namingRule, high) + CimAttributesNameShouldNotStartWithClassName (namingRule, medium) + AttributesWithTypeFromUnallowedOwner (modellingRule, high) + Available rules for CIM in OperationValidator (category, severity): + OperationsWithUpperCaseName (namingRule, medium) + OperationsWithUnallowedStereotype (modellingRule, high) + OperationParametersWithUnallowedStereotype (modellingRule, high) + OperationsWithInvalidReturnTypeNull (modellingRule, high) + OperationsWithInvalidArgTypeNull (modellingRule, high) + OperationsWithInvalidExcTypeNull (modellingRule, high) + OperationsWithUnallowedTagNames (modellingRule, high) + OperationParametersWithUnallowedTagNames (modellingRule, high) + OperationsMissingDoc (documentationRule, medium) + OperationParametersMissingDoc (documentationRule, medium) + OperationsWithBadDocStart (documentationRule, low) + OperationParametersWithBadDocStart (documentationRule, low) + OperationsWithBadDocEnd (documentationRule, low) + OperationParametersWithBadDocEnd (documentationRule, low) + OperationsWithBadCharacterInName (namingRule, high) + OperationParametersWithBadCharacterInName (namingRule, high) + Available rules for CIM in AssociationValidator (category, severity): + AssociationsWithExplicitDirection (modellingRule, high) + AssociationsWithRoleBadDirection (modellingRule, high) + AssociationsWithDoc (documentationRule, low) + AssociationsWithSameDocOnBothEnds (documentationRule, medium) + AssociationsWithName (namingRule, medium) + AssociationsWithUnallowedStereotype (modellingRule, high) + AssociationEndsWithUnallowedStereotype (modellingRule, high) + AssociationsMissingInformativeStereotype (modellingRule, high) + AssociationsWithUnallowedTagNames (modellingRule, high) + AssociationEndsWithUnallowedTagNames (modellingRule, high) + AssociationsWithNoMultiplicity (modellingRule, high) + AssociationsWithWrongSource (modellingRule, high) + AssociationEndsMissingDoc (documentationRule, medium) + AssociationEndsWithBadDocStart (documentationRule, low) + AssociationEndsWithBadDocEnd (documentationRule, low) + AssociationEndsWithBadCharacterInName (namingRule, high) + CimAssociationEndsNameStartingWithLowerCase (namingRule, high) + CimAssociationEndsNameShouldBePlural (namingRule, high) + CimAssociationEndsNameShouldBeSingular (namingRule, high) + Available rules for CIM in DependencyValidator (category, severity): + DependenciesWithUnallowedStereotype (modellingRule, high) + DependenciesWithUnallowedDirection (modellingRule, high) + DependenciesWithUnallowedTagNames (modellingRule, high) + Available rules for CIM in DiagramValidator (category, severity): + DiagramsWithBadOrientation (formatting, low) + DiagramsWithUnallowedStereotype (modellingRule, high) + DiagramsMissingDoc (documentationRule, medium) + DiagramsWithBadDocStart (documentationRule, low) + DiagramsWithBadDocEnd (documentationRule, low) + DiagramsWithBadCharacterInName (namingRule, high) + for IEC61850: + Available rules for IEC61850 in PackageValidator (category, severity): + PackageUnexpectedElements (modellingRule, medium) + PackageUnexpectedConnectors (modellingRule, medium) + PackagesWithSelfDependency (permissiveTool, high) + PackagesWithUnallowedStereotype (modellingRule, high) + PackagesTopLevelWithoutVersionClass (modellingRule, high) + Iec61850PackagesThatShouldHaveAliasAsTitle (modellingRule, high) + PackagesWithUnallowedTagNames (modellingRule, high) + PackagesMissingDoc (documentationRule, medium) + PackagesWithBadDocStart (documentationRule, low) + PackagesWithBadDocEnd (documentationRule, low) + PackagesWithBadCharacterInName (namingRule, high) + PackagesWithSameName (modellingRule, high) + Available rules for IEC61850 in ClassValidator (category, severity): + ClassesWithUnexpectedConnectors (permissiveTool, high) + EnumClassesWithNoLiterals (modellingRule, high) + EnumClassesWithSingleLiteral (modellingRule, medium) + EnumClassesWithTwoLiterals (modellingRule, low) + EnumClassesWithBadName (modellingRule, high) + ClassesWithDuplicateInheritedAttributeNames (modellingRule, high) + ClassesWithDuplicateOwnOrInheritedAssociationEndNames (modellingRule, high) + ClassesWithSelfInheritance (permissiveTool, high) + ClassesWithSelfDependency (permissiveTool, high) + ClassesWithLeafPropSet (modellingRule, high) + ClassesWithRootPropSet (modellingRule, high) + ClassesWithPersistentPropSet (modellingRule, high) + ClassesWithMultipleSuperclasses (modellingRule, high) + ClassesWithSuperclassesFromUnallowedOwner (modellingRule, high) + ClassesThatShouldNotBeAssociationClass (modellingRule, high) + ClassesWithUnallowedStereotype (modellingRule, high) + ClassesThatShouldNotHaveNestingThroughAttribute (modellingRule, high) + Iec61850ClassesThatShouldHaveAliasAsTitle (modellingRule, high) + Iec61850ClassesThatShouldHaveTaggedValuesForDocgen (modellingRule, high) + ClassesWithUnallowedTagNames (modellingRule, high) + Iec61850ClassesWithInvalidConstraints (modellingRule, high) + Iec61850LNClassesWithSuperfluousConstraints (modellingRule, high) + Iec61850ClassesWithMissingCondIDTextInConstraints (modellingRule, high) + ClassesMissingDoc (documentationRule, medium) + ClassesWithBadDocStart (documentationRule, low) + ClassesWithBadDocEnd (documentationRule, low) + ClassesWithBadCharacterInName (namingRule, high) + Iec61850LNClassesInWrongGroup (namingRule, medium) + Iec61850LNClassesMalformedName (namingRule, high) + EnumClassesWithSomeCodesMissing (modellingRule, high) + EnumClassesWithDuplicateCodes (modellingRule, high) + ClassesWithSameName (modellingRule, high) + Available rules for IEC61850 in AttributeValidator (category, severity): + EnumLiteralsWithSuperfluousType (modellingRule, high) + EnumLiteralsWithoutEnumStereotype (modellingRule, high) + AttributesWithInvalidMultiplicity (modellingRule, high) + AttributesWithInvalidTypeNull (modellingRule, high) + AttributesWithInvalidTypeString (modellingRule, high) + AttributesWithTypeIdMismatch (modellingRule, high) + AttributesThatAreStaticButNotConst (modellingRule, high) + AttributesThatAreConstNonStatic (modellingRule, high) + AttributesWithUnallowedStereotype (modellingRule, high) + AttributesThatAreEnumsInNonEnumeratedClass (modellingRule, high) + AttributesWhoseTypeIsInformative (modellingRule, high) + AttributesWithUnallowedTagNames (modellingRule, high) + Iec61850AttributesWithInexistingSibling (modellingRule, high) + AttributesMissingDoc (documentationRule, medium) + AttributesWithBadDocStart (documentationRule, low) + AttributesWithBadDocEnd (documentationRule, low) + Iec61850AttributesWithBadCharacterInName (namingRule, high) + Iec61850DOAttributesWithTooLongName (namingRule, high) + Iec61850FCDAAttributesWithMissingConstraint (modellingRule, high) + AttributesWithInexistingEnumLiteralAsInitValue (permissiveTool, high) + Iec61850DOAttributesWithNameMissingAbbreviation (modellingRule, high) + Iec61850AbbreviationLiteralsNameStartingWithLowerCase (namingRule, high) + Iec61850DOAttributesNameStartingWithLowerCase (namingRule, high) + AttributesWithTypeFromUnallowedOwner (modellingRule, high) + Iec61850DOAbbreviationLiteralsDuplicateName (modellingRule, high) + Iec61850DOAbbreviationLiteralsDuplicateDescription (modellingRule, high) + Iec61850DOAbbreviationLiteralsNeverUsedInDOName (modellingRule, high) + Iec61850DOAttributesWithSameNameDifferentType (modellingRule, high) + Iec61850ConditionLiteralsNeverUsedAsConstraints (modellingRule, high) + Available rules for IEC61850 in OperationValidator (category, severity): + OperationsWithUpperCaseName (namingRule, medium) + OperationsWithUnallowedStereotype (modellingRule, high) + OperationParametersWithUnallowedStereotype (modellingRule, high) + OperationsWithInvalidReturnTypeNull (modellingRule, high) + OperationsWithInvalidArgTypeNull (modellingRule, high) + OperationsWithInvalidExcTypeNull (modellingRule, high) + OperationsWithUnallowedTagNames (modellingRule, high) + OperationParametersWithUnallowedTagNames (modellingRule, high) + OperationsMissingDoc (documentationRule, medium) + OperationParametersMissingDoc (documentationRule, medium) + OperationsWithBadDocStart (documentationRule, low) + OperationParametersWithBadDocStart (documentationRule, low) + OperationsWithBadDocEnd (documentationRule, low) + OperationParametersWithBadDocEnd (documentationRule, low) + OperationsWithBadCharacterInName (namingRule, high) + OperationParametersWithBadCharacterInName (namingRule, high) + Available rules for IEC61850 in AssociationValidator (category, severity): + AssociationsWithExplicitDirection (modellingRule, high) + AssociationsWithRoleBadDirection (modellingRule, high) + AssociationsWithDoc (documentationRule, low) + AssociationsWithSameDocOnBothEnds (documentationRule, medium) + AssociationsWithName (namingRule, medium) + AssociationsWithUnallowedStereotype (modellingRule, high) + AssociationEndsWithUnallowedStereotype (modellingRule, high) + AssociationsMissingInformativeStereotype (modellingRule, high) + AssociationsWithUnallowedTagNames (modellingRule, high) + AssociationEndsWithUnallowedTagNames (modellingRule, high) + AssociationsWithNoMultiplicity (modellingRule, high) + AssociationsWithWrongSource (modellingRule, high) + Iec61850AssociationsThatShouldBePrivate (modellingRule, high) + Iec61850AssociationsWithDifferentEndVisibility (modellingRule, high) + AssociationEndsMissingDoc (documentationRule, medium) + AssociationEndsWithBadDocStart (documentationRule, low) + AssociationEndsWithBadDocEnd (documentationRule, low) + AssociationEndsWithBadCharacterInName (namingRule, high) + Available rules for IEC61850 in DependencyValidator (category, severity): + DependenciesWithUnallowedStereotype (modellingRule, high) + DependenciesWithUnallowedDirection (modellingRule, high) + DependenciesWithUnallowedTagNames (modellingRule, high) + Available rules for IEC61850 in DiagramValidator (category, severity): + DiagramsWithBadOrientation (formatting, low) + DiagramsWithUnallowedStereotype (modellingRule, high) + DiagramsMissingDoc (documentationRule, medium) + DiagramsWithBadDocStart (documentationRule, low) + DiagramsWithBadDocEnd (documentationRule, low) + DiagramsWithBadCharacterInName (namingRule, high) + +Available rules - all: + Available rules in PackageValidator (category, severity): + PackageUnexpectedElements (modellingRule, medium) + PackageUnexpectedConnectors (modellingRule, medium) + PackagesWithSelfDependency (permissiveTool, high) + PackagesWithUnallowedStereotype (modellingRule, high) + PackagesTopLevelWithoutVersionClass (modellingRule, high) + Iec61850PackagesThatShouldHaveAliasAsTitle (modellingRule, high) + PackagesWithUnallowedTagNames (modellingRule, high) + PackagesMissingDoc (documentationRule, medium) + PackagesWithBadDocStart (documentationRule, low) + PackagesWithBadDocEnd (documentationRule, low) + PackagesWithBadCharacterInName (namingRule, high) + PackagesWithSameName (modellingRule, high) + Available rules in ClassValidator (category, severity): + CimClassesWithUnexpectedElements (permissiveTool, high) + ClassesWithUnexpectedConnectors (permissiveTool, high) + EnumClassesWithNoLiterals (modellingRule, high) + CimCompoundClassesWithNoAttributes (modellingRule, high) + EnumClassesWithSingleLiteral (modellingRule, medium) + EnumClassesWithTwoLiterals (modellingRule, low) + EnumClassesWithBadName (modellingRule, high) + CimPrimitiveClassesWithAttributes (modellingRule, high) + CimPrimitiveClassesWithIllegalOwner (modellingRule, high) + ClassesWithDuplicateInheritedAttributeNames (modellingRule, high) + ClassesWithDuplicateOwnOrInheritedAssociationEndNames (modellingRule, high) + ClassesWithSelfInheritance (permissiveTool, high) + ClassesWithSelfDependency (permissiveTool, high) + ClassesWithLeafPropSet (modellingRule, high) + ClassesWithRootPropSet (modellingRule, high) + ClassesWithPersistentPropSet (modellingRule, high) + ClassesWithMultipleSuperclasses (modellingRule, high) + ClassesWithSuperclassesFromUnallowedOwner (modellingRule, high) + ClassesThatShouldNotBeAssociationClass (modellingRule, high) + ClassesWithUnallowedStereotype (modellingRule, high) + CimClassesWithOldDatatypeStereotype (modellingRule, medium) + CimClassesUsedForAttributesButHaveAssociations (modellingRule, high) + CimClassesUsedForAttributesButHaveSubclasses (modellingRule, high) + CimClassesUsedForAttributesButHaveSuperclasses (modellingRule, high) + CimClassesThatShouldNotBeAbstract (modellingRule, high) + CimClassesThatShouldNotHaveOperations (modellingRule, high) + CimClassesThatShouldNotHaveExplicitDependencies (modellingRule, high) + ClassesThatShouldNotHaveNestingThroughAttribute (modellingRule, high) + Iec61850ClassesThatShouldHaveAliasAsTitle (modellingRule, high) + Iec61850ClassesThatShouldHaveTaggedValuesForDocgen (modellingRule, high) + CimClassesNeverUsedInRelationships (modellingRule, high) + ClassesWithUnallowedTagNames (modellingRule, high) + Iec61850ClassesWithInvalidConstraints (modellingRule, high) + Iec61850LNClassesWithSuperfluousConstraints (modellingRule, high) + Iec61850ClassesWithMissingCondIDTextInConstraints (modellingRule, high) + CimDatatypeClassesWithInvalidAttributes (modellingRule, high) + ClassesMissingDoc (documentationRule, medium) + ClassesWithBadDocStart (documentationRule, low) + ClassesWithBadDocEnd (documentationRule, low) + ClassesWithBadCharacterInName (namingRule, high) + CimClassesNameStartingWithLowerCase (namingRule, high) + CimClassesNameShouldBeSingular (namingRule, high) + Iec61850LNClassesInWrongGroup (namingRule, medium) + Iec61850LNClassesMalformedName (namingRule, high) + EnumClassesWithSomeCodesMissing (modellingRule, high) + EnumClassesWithDuplicateCodes (modellingRule, high) + ClassesWithSameName (modellingRule, high) + CimClassesNeverUsedAsTypeForAttribute (modellingRule, high) + Available rules in AttributeValidator (category, severity): + EnumLiteralsWithSuperfluousType (modellingRule, high) + EnumLiteralsWithoutEnumStereotype (modellingRule, high) + AttributesWithInvalidMultiplicity (modellingRule, high) + CimAttributesThatShouldBeOptional (modellingRule, high) + AttributesWithInvalidTypeNull (modellingRule, high) + AttributesWithInvalidTypeString (modellingRule, high) + AttributesWithTypeIdMismatch (modellingRule, high) + CimAttributesThatShouldBePublic (modellingRule, high) + AttributesThatAreStaticButNotConst (modellingRule, high) + CimAttributesThatAreNotStaticNonConstWithInitVal (modellingRule, high) + AttributesThatAreConstNonStatic (modellingRule, high) + AttributesWithUnallowedStereotype (modellingRule, high) + AttributesThatAreEnumsInNonEnumeratedClass (modellingRule, high) + CimAttributesThatShouldBeReplacedWithAssociation (modellingRule, high) + AttributesWhoseTypeIsInformative (modellingRule, high) + AttributesWithUnallowedTagNames (modellingRule, high) + Iec61850AttributesWithInexistingSibling (modellingRule, high) + CimAttributesWithFlagInName (namingRule, medium) + AttributesMissingDoc (documentationRule, medium) + AttributesWithBadDocStart (documentationRule, low) + AttributesWithBadDocEnd (documentationRule, low) + CimAttributesWithBadCharacterInName (namingRule, high) + Iec61850AttributesWithBadCharacterInName (namingRule, high) + Iec61850DOAttributesWithTooLongName (namingRule, high) + Iec61850FCDAAttributesWithMissingConstraint (modellingRule, high) + AttributesWithInexistingEnumLiteralAsInitValue (permissiveTool, high) + Iec61850DOAttributesWithNameMissingAbbreviation (modellingRule, high) + CimAttributesNameStartingWithUpperCase (namingRule, high) + CimAttributesNameShouldBeSingular (namingRule, high) + CimAttributesNameShouldNotStartWithClassName (namingRule, medium) + Iec61850AbbreviationLiteralsNameStartingWithLowerCase (namingRule, high) + Iec61850DOAttributesNameStartingWithLowerCase (namingRule, high) + AttributesWithTypeFromUnallowedOwner (modellingRule, high) + Iec61850DOAbbreviationLiteralsDuplicateName (modellingRule, high) + Iec61850DOAbbreviationLiteralsDuplicateDescription (modellingRule, high) + Iec61850DOAbbreviationLiteralsNeverUsedInDOName (modellingRule, high) + Iec61850DOAttributesWithSameNameDifferentType (modellingRule, high) + Iec61850ConditionLiteralsNeverUsedAsConstraints (modellingRule, high) + Available rules in OperationValidator (category, severity): + OperationsWithUpperCaseName (namingRule, medium) + OperationsWithUnallowedStereotype (modellingRule, high) + OperationParametersWithUnallowedStereotype (modellingRule, high) + OperationsWithInvalidReturnTypeNull (modellingRule, high) + OperationsWithInvalidArgTypeNull (modellingRule, high) + OperationsWithInvalidExcTypeNull (modellingRule, high) + OperationsWithUnallowedTagNames (modellingRule, high) + OperationParametersWithUnallowedTagNames (modellingRule, high) + OperationsMissingDoc (documentationRule, medium) + OperationParametersMissingDoc (documentationRule, medium) + OperationsWithBadDocStart (documentationRule, low) + OperationParametersWithBadDocStart (documentationRule, low) + OperationsWithBadDocEnd (documentationRule, low) + OperationParametersWithBadDocEnd (documentationRule, low) + OperationsWithBadCharacterInName (namingRule, high) + OperationParametersWithBadCharacterInName (namingRule, high) + Available rules in AssociationValidator (category, severity): + AssociationsWithExplicitDirection (modellingRule, high) + AssociationsWithRoleBadDirection (modellingRule, high) + AssociationsWithDoc (documentationRule, low) + AssociationsWithSameDocOnBothEnds (documentationRule, medium) + AssociationsWithName (namingRule, medium) + AssociationsWithUnallowedStereotype (modellingRule, high) + AssociationEndsWithUnallowedStereotype (modellingRule, high) + AssociationsMissingInformativeStereotype (modellingRule, high) + AssociationsWithUnallowedTagNames (modellingRule, high) + AssociationEndsWithUnallowedTagNames (modellingRule, high) + AssociationsWithNoMultiplicity (modellingRule, high) + AssociationsWithWrongSource (modellingRule, high) + Iec61850AssociationsThatShouldBePrivate (modellingRule, high) + Iec61850AssociationsWithDifferentEndVisibility (modellingRule, high) + AssociationEndsMissingDoc (documentationRule, medium) + AssociationEndsWithBadDocStart (documentationRule, low) + AssociationEndsWithBadDocEnd (documentationRule, low) + AssociationEndsWithBadCharacterInName (namingRule, high) + CimAssociationEndsNameStartingWithLowerCase (namingRule, high) + CimAssociationEndsNameShouldBePlural (namingRule, high) + CimAssociationEndsNameShouldBeSingular (namingRule, high) + Available rules in DependencyValidator (category, severity): + DependenciesWithUnallowedStereotype (modellingRule, high) + DependenciesWithUnallowedDirection (modellingRule, high) + DependenciesWithUnallowedTagNames (modellingRule, high) + Available rules in DiagramValidator (category, severity): + DiagramsWithBadOrientation (formatting, low) + DiagramsWithUnallowedStereotype (modellingRule, high) + DiagramsMissingDoc (documentationRule, medium) + DiagramsWithBadDocStart (documentationRule, low) + DiagramsWithBadDocEnd (documentationRule, low) + DiagramsWithBadCharacterInName (namingRule, high) + +2024-09-07 12:38:50,933 [main] DEBUG ModelValidator - +2024-09-07 12:38:50,933 [main] INFO AbstractValidator - +2024-09-07 12:38:50,933 [main] INFO AbstractValidator - ====== Validating 83 (of 83) packages: +2024-09-07 12:38:50,974 [main] WARN PackageValidator - Found 4 packages with unexpected embedded elements (they are present in the model repository, but not kept in the in-memory model) - remove unexpected embedded elements: +2024-09-07 12:38:50,974 [main] WARN PackageValidator - WG13 CIM top package TC57CIM::IEC61970 : [(1497) WG13 CIM state IEC61970::StateInPackage] +2024-09-07 12:38:50,974 [main] WARN PackageValidator - WG14 CIM package IEC61968::Assets : [(3064) WG14 CIM other Assets::Object1] +2024-09-07 12:38:50,974 [main] WARN PackageValidator - WG10 IEC61850 package NewIEC61850_7_2::GenericModel : [(1618) WG10 IEC61850 other <> GenericModel::, (1619) WG10 IEC61850 other <> GenericModel::, (1620) WG10 IEC61850 other <> GenericModel::, (1621) WG10 IEC61850 other <> GenericModel::] +2024-09-07 12:38:50,974 [main] WARN PackageValidator - OTHER_CIM CIM model package /MyCimExtensions : [(3076) OTHER_CIM CIM other <> MyCimExtensions::DFD_Process1] +2024-09-07 12:38:50,974 [main] WARN PackageValidator - Found 4 packages with unexpected embedded connectors (they are present in the model repository, but not kept in the in-memory model) - remove unexpected embedded elements: +2024-09-07 12:38:50,974 [main] WARN PackageValidator - WG13 CIM INF private package IEC61970::InformativeAndPrivate : [(2102) WG13 CIM INF other InformativeAndPrivate:: - Package 'Other'] +2024-09-07 12:38:50,974 [main] WARN PackageValidator - WG14 CIM package IEC61968::Other : [(2102) WG14 CIM other Other:: - Package 'InformativeAndPrivate'] +2024-09-07 12:38:50,974 [main] WARN PackageValidator - OTHER_CIM CIM top package <> MyCimExtensions::Ext1 : [(3458) OTHER_CIM CIM other Ext1:: - Class 'Apple', (3460) OTHER_CIM CIM other Ext1:: - Activity 'DFD_Process1'] +2024-09-07 12:38:50,974 [main] WARN PackageValidator - OTHER_CIM CIM top package MyCimExtensions::Package with space : [(3461) OTHER_CIM CIM other Package with space:: - Class 'DFD_DataStore1', (3462) OTHER_CIM CIM other Package with space:: - Class 'DFD_External1'] +2024-09-07 12:38:50,974 [main] ERROR PackageValidator - Found 3 packages with self-dependency (UML tool allows to create such links, but they are not kept in the the in-memory model - remove self-dependency: +2024-09-07 12:38:50,974 [main] ERROR PackageValidator - WG14 CIM package IEC61968::Other +2024-09-07 12:38:50,974 [main] ERROR PackageValidator - WG10 IEC61850 package WG10::IEC61850_7_3 +2024-09-07 12:38:50,975 [main] ERROR PackageValidator - WG10 IEC61850 package WG10::IEC61850_7_4 +2024-09-07 12:38:50,975 [main] ERROR PackageValidator - Found 3 packages with unallowed stereotype(s) - remove offending stereotype(s) OR use one or more of {CIM=[deprecated, informative], IEC61850=[deprecated, informative]}: +2024-09-07 12:38:50,975 [main] ERROR PackageValidator - OTHER_CIM CIM INF top package <> TC57CIM::Informative : offending stereotypes = [TempPckStereo, SecondPckStereo] +2024-09-07 12:38:50,975 [main] ERROR PackageValidator - WG13 CIM package <> IEC61970::Domain : offending stereotypes = [Global] +2024-09-07 12:38:50,975 [main] ERROR PackageValidator - OTHER_CIM CIM top package <> MyCimExtensions::Ext1 : offending stereotypes = [European] +2024-09-07 12:38:50,975 [main] ERROR PackageValidator - Found 8 top level packages without version class - add Version class: +2024-09-07 12:38:50,975 [main] ERROR PackageValidator - OTHER_CIM CIM INF top package <> TC57CIM::Informative : missing class 'InformativeCIMVersion' +2024-09-07 12:38:50,975 [main] ERROR PackageValidator - WG14 CIM top package TC57CIM::IEC61968 : missing class 'IEC61968CIMVersion' +2024-09-07 12:38:50,975 [main] ERROR PackageValidator - WG16 CIM top package TC57CIM::IEC62325 : missing class 'IEC62325CIMVersion' +2024-09-07 12:38:50,975 [main] ERROR PackageValidator - WG18 IEC61850 top package IEC61850Domain::WG18 : missing class 'WG18UMLVersion' +2024-09-07 12:38:50,975 [main] ERROR PackageValidator - JWG25 IEC61850 top package IEC61850Domain::JWG25 : missing class 'JWG25UMLVersion' +2024-09-07 12:38:50,975 [main] ERROR PackageValidator - OTHER_CIM CIM top package <> MyCimExtensions::Ext1 : missing class 'Ext1CIMVersion' +2024-09-07 12:38:50,975 [main] ERROR PackageValidator - OTHER_CIM CIM top package MyCimExtensions::Package with space : missing class 'Package with spaceCIMVersion' +2024-09-07 12:38:50,975 [main] ERROR PackageValidator - OTHER_IEC61850 IEC61850 top package My61850Extensions::Ext2 : missing class 'Ext2UMLVersion' +2024-09-07 12:38:50,975 [main] ERROR PackageValidator - Found 2 IEC61850 packages used for generating parts 7-3 or 7-4 that are missing alias - add UML alias that will be used for clause heading in auto-generated documents: +2024-09-07 12:38:50,975 [main] ERROR PackageValidator - WG10 IEC61850 package IEC61850_7_4::DOEnums +2024-09-07 12:38:50,975 [main] ERROR PackageValidator - WG17 IEC61850 package IEC51850_7_420::DOEnums_7_420 +2024-09-07 12:38:50,976 [main] ERROR PackageValidator - Found 1 packages with unallowed tag names - remove tags: +2024-09-07 12:38:50,976 [main] ERROR PackageValidator - WG10 IEC61850 package IEC61850_7_4::DOEnums : [dummyPackageTag] +2024-09-07 12:38:50,976 [main] WARN PackageValidator - Found 25 packages missing documentation - add documentation: +2024-09-07 12:38:50,976 [main] WARN PackageValidator - OTHER_CIM CIM model package /TC57CIMProfiles +2024-09-07 12:38:50,976 [main] WARN PackageValidator - OTHER_CIM CIM model package /TC57CIM +2024-09-07 12:38:50,976 [main] WARN PackageValidator - WG13 CIM top package TC57CIM::IEC61970 +2024-09-07 12:38:50,976 [main] WARN PackageValidator - WG13 CIM package Topology::TestEnums +2024-09-07 12:38:50,976 [main] WARN PackageValidator - WG14 CIM package IEC61968::EmbeddedExtension +2024-09-07 12:38:50,976 [main] WARN PackageValidator - WG14 CIM package IEC61968::Assets +2024-09-07 12:38:50,976 [main] WARN PackageValidator - WG14 CIM package IEC61968::Core +2024-09-07 12:38:50,976 [main] WARN PackageValidator - WG14 CIM package IEC61968::Other +2024-09-07 12:38:50,976 [main] WARN PackageValidator - WG14 CIM package IEC61968::Other +2024-09-07 12:38:50,976 [main] WARN PackageValidator - WG16 CIM top package TC57CIM::IEC62325 +2024-09-07 12:38:50,976 [main] WARN PackageValidator - OTHER_IEC61850 IEC61850 model package /IEC61850Domain +2024-09-07 12:38:50,976 [main] WARN PackageValidator - WG10 IEC61850 package WG10::NewIEC61850_7_2 +2024-09-07 12:38:50,977 [main] WARN PackageValidator - WG10 IEC61850 package NewIEC61850_7_2::GenericModel +2024-09-07 12:38:50,977 [main] WARN PackageValidator - WG17 IEC61850 top package IEC61850Domain::WG17 +2024-09-07 12:38:50,977 [main] WARN PackageValidator - WG17 IEC61850 package WG17::IEC51850_7_420 +2024-09-07 12:38:50,977 [main] WARN PackageValidator - WG17 IEC61850 package IEC51850_7_420::DOEnums_7_420 +2024-09-07 12:38:50,977 [main] WARN PackageValidator - WG17 IEC61850 package IEC51850_7_420::DerivedDAs_7_420 +2024-09-07 12:38:50,977 [main] WARN PackageValidator - WG17 IEC61850 package IEC51850_7_420::DerivedCDCs_7_420 +2024-09-07 12:38:50,977 [main] WARN PackageValidator - WG18 IEC61850 top package IEC61850Domain::WG18 +2024-09-07 12:38:50,977 [main] WARN PackageValidator - WG18 IEC61850 package WG18::Abbreviations_410 +2024-09-07 12:38:50,977 [main] WARN PackageValidator - JWG25 IEC61850 top package IEC61850Domain::JWG25 +2024-09-07 12:38:50,977 [main] WARN PackageValidator - OTHER_CIM CIM model package /MyCimExtensions +2024-09-07 12:38:50,977 [main] WARN PackageValidator - OTHER_IEC61850 IEC61850 model package /My61850Extensions +2024-09-07 12:38:50,977 [main] WARN PackageValidator - OTHER_IEC61850 IEC61850 top package My61850Extensions::Ext2 +2024-09-07 12:38:50,977 [main] WARN PackageValidator - OTHER_CIM CIM model package /NewNature +2024-09-07 12:38:50,977 [main] WARN PackageValidator - Found 1 packages whose documentation starts with unallowed character - fix the first character: valid ones are any upper case letter or punctuation marks [', ", (]: +2024-09-07 12:38:50,977 [main] WARN PackageValidator - WG13 CIM package <> IEC61970::Domain : doc='the domain package is a data d...' +2024-09-07 12:38:50,978 [main] WARN PackageValidator - Found 1 packages whose documentation does not end with a dot ('.') - fix the last character: add a dot: +2024-09-07 12:38:50,978 [main] WARN PackageValidator - WG14 CIM top package TC57CIM::IEC61968 : doc='Blah (not ending with ".")' +2024-09-07 12:38:50,978 [main] ERROR PackageValidator - Found 1 packages whose name contains illegal character(s) - rename by removing invalid character(s): +2024-09-07 12:38:50,978 [main] ERROR PackageValidator - OTHER_CIM CIM top package MyCimExtensions::Package with space : invalid characters = [ , ] +2024-09-07 12:38:50,978 [main] ERROR PackageValidator - Found 4 packages that have non-unique name - rename packages to have unique names within model: +2024-09-07 12:38:50,978 [main] ERROR PackageValidator - 1 WG13 CIM package IEC61970::Core : all with the same name = [WG13 IEC61970::Core, WG14 IEC61968::Core] +2024-09-07 12:38:50,978 [main] ERROR PackageValidator - 1 WG14 CIM package IEC61968::Core : all with the same name = [WG13 IEC61970::Core, WG14 IEC61968::Core] +2024-09-07 12:38:50,978 [main] ERROR PackageValidator - 2 WG14 CIM package IEC61968::Other : all with the same name = [WG14 IEC61968::Other, WG14 IEC61968::Other] +2024-09-07 12:38:50,978 [main] ERROR PackageValidator - 2 WG14 CIM package IEC61968::Other : all with the same name = [WG14 IEC61968::Other, WG14 IEC61968::Other] +2024-09-07 12:38:50,978 [main] INFO AbstractValidator - +2024-09-07 12:38:50,978 [main] INFO AbstractValidator - ====== Validating 386 (of 386) classes: +2024-09-07 12:38:51,020 [main] WARN ClassValidator - Found 3 classes with unexpected embedded elements (present in the model repository, but not kept in the in-memory model) - remove embedded elements, or move them out of class: +2024-09-07 12:38:51,021 [main] WARN ClassValidator - WG13 CIM INF root class InformativeAndPrivate::InfClassContainingEmbeddedClass : [(1496) WG13 CIM INF other InfClassContainingEmbeddedClass.EmbeddedClass] +2024-09-07 12:38:51,021 [main] WARN ClassValidator - OTHER_CIM CIM enumeration <> Ext1::FruitBinKind : [(3035) OTHER_CIM CIM other FruitBinKind.Strawberry] +2024-09-07 12:38:51,021 [main] WARN ClassValidator - WG13 CIM class Core::PowerSystemResource : [(1444) WG13 CIM state PowerSystemResource.DummyState] +2024-09-07 12:38:51,021 [main] WARN ClassValidator - Found 3 classes with unexpected embedded connectors (present in the model repository, but not kept in the in-memory model) - remove embedded connectors, or move them out of class: +2024-09-07 12:38:51,021 [main] WARN ClassValidator - OTHER_CIM CIM root class <> MyCimExtensions::DFD_External1 : [(3462) OTHER_CIM CIM other DFD_External1. - ?] +2024-09-07 12:38:51,021 [main] WARN ClassValidator - OTHER_CIM CIM root class <> MyCimExtensions::DFD_DataStore1 : [(3461) OTHER_CIM CIM other DFD_DataStore1. - ?] +2024-09-07 12:38:51,021 [main] WARN ClassValidator - OTHER_CIM CIM class Ext1::Apple : [(3458) OTHER_CIM CIM other Apple. - ?, (3459) OTHER_CIM CIM other Apple. - ?] +2024-09-07 12:38:51,021 [main] ERROR ClassValidator - Found 3 enumeration classes with no literals. Attributes with that type can only be null - add some literals OR remove enumeration class (ensure to change type of attributes that potentially use it): +2024-09-07 12:38:51,021 [main] ERROR ClassValidator - WG14 CIM enumeration <> Other::EmptyEnum : used by [] +2024-09-07 12:38:51,021 [main] ERROR ClassValidator - WG10 IEC61850 enumeration <> GenericModel::GenFC : used by [WG10 GenericModel::GenDataAttribute.FC, WG10 GenericModel::GenFCD.FC, WG10 GenericModel::GenFCDA.FC, WG10 GenericModel::GenSubDataAttribute.FC] +2024-09-07 12:38:51,021 [main] ERROR ClassValidator - WG10 IEC61850 enumeration <> GenericModel::GenPresenceConditions : used by [WG10 GenericModel::GenDataAttribute.Presence, WG10 GenericModel::GenDataObject.Presence, WG10 GenericModel::GenSubDataAttribute.Presence, WG10 GenericModel::GenSubDataObject.Presence] +2024-09-07 12:38:51,021 [main] ERROR ClassValidator - Found 3 CIM compound classes with no attributes. Attributes with that type can only be null - add some attributes OR remove coumpound class (ensure to change type of attributes that potentially use it): +2024-09-07 12:38:51,022 [main] ERROR ClassValidator - OTHER_CIM CIM INF compound <> Informative::SomeSimpleType : used by [OTHER_CIM Ext1::Pear.typeIsInformative] +2024-09-07 12:38:51,022 [main] ERROR ClassValidator - WG14 CIM compound <> Other::EmptyCompound : used by [WG14 Other::AnotherBadDatatype.multiplier] +2024-09-07 12:38:51,022 [main] ERROR ClassValidator - WG13 CIM compound <> Core::OperatingParticipant : used by [] +2024-09-07 12:38:51,022 [main] WARN ClassValidator - Found 1 enumeration classes with single literal. Does it make sense to keep the enumerated type with a single literal? - add some literals OR remove enumeration class (ensure to change type of attributes that potentially use it): +2024-09-07 12:38:51,022 [main] WARN ClassValidator - WG13 CIM enumeration <> Domain::WithSingleLiteral : used by [] +2024-09-07 12:38:51,022 [main] WARN ClassValidator - Found 3 enumeration classes with two literals. Could Boolean be used as type for attributes? - consider using Boolean instead (then remove the enumeration class): +2024-09-07 12:38:51,022 [main] WARN ClassValidator - WG13 CIM enumeration <> Domain::YesNo : used by [WG13 Core::Bay.TestYesNo1, WG13 Core::Bay.testYesNo2, WG14 Other::Equipment.testYesNo1] +2024-09-07 12:38:51,022 [main] WARN ClassValidator - WG13 CIM enumeration <> Topology::TestEnum : used by [] +2024-09-07 12:38:51,022 [main] WARN ClassValidator - WG10 IEC61850 coded enumeration <> ConstructedDAs::SourceKind : used by [WG10 ConstructedDAs::Quality.source] +2024-09-07 12:38:51,022 [main] ERROR ClassValidator - Found 15 enumeration classes with bad name: name should not contain 'type' and/or 'enum', and should end with 'Kind' - rename the enumeration class: +2024-09-07 12:38:51,022 [main] ERROR ClassValidator - WG13 CIM enumeration <> Domain::Currency +2024-09-07 12:38:51,022 [main] ERROR ClassValidator - WG13 CIM enumeration <> Domain::UnitMultiplier +2024-09-07 12:38:51,022 [main] ERROR ClassValidator - WG13 CIM enumeration <> Domain::UnitSymbol +2024-09-07 12:38:51,023 [main] ERROR ClassValidator - WG13 CIM enumeration <> Domain::WithSingleLiteral +2024-09-07 12:38:51,023 [main] ERROR ClassValidator - WG13 CIM enumeration <> Domain::YesNo +2024-09-07 12:38:51,023 [main] ERROR ClassValidator - WG13 CIM private enumeration <> Core::BreakerConfiguration +2024-09-07 12:38:51,023 [main] ERROR ClassValidator - WG13 CIM protected enumeration <> Core::BusbarConfiguration +2024-09-07 12:38:51,023 [main] ERROR ClassValidator - WG13 CIM enumeration <> Core::PhaseCode +2024-09-07 12:38:51,023 [main] ERROR ClassValidator - WG13 CIM enumeration <> Topology::TestEnum +2024-09-07 12:38:51,023 [main] ERROR ClassValidator - WG13 CIM enumeration <> TestEnums::EnumWithSomeIntCodes +2024-09-07 12:38:51,023 [main] ERROR ClassValidator - WG13 CIM enumeration <> TestEnums::EnumWithStringCodes +2024-09-07 12:38:51,023 [main] ERROR ClassValidator - WG13 CIM enumeration <> TestEnums::EnumWithNonUniqueCodes +2024-09-07 12:38:51,023 [main] ERROR ClassValidator - WG14 CIM enumeration <> Other::EmptyEnum +2024-09-07 12:38:51,023 [main] ERROR ClassValidator - WG10 IEC61850 enumeration <> GenericModel::GenFC +2024-09-07 12:38:51,024 [main] ERROR ClassValidator - WG10 IEC61850 enumeration <> GenericModel::GenPresenceConditions +2024-09-07 12:38:51,024 [main] ERROR ClassValidator - Found 1 CIM primitive classes that should, by definition, have no attributes - remove attributes if the class is primitive OR remove Primitivestereotype if attributes are needed: +2024-09-07 12:38:51,024 [main] ERROR ClassValidator - WG14 CIM primitive <> Other::NonEmptyPrimitive +2024-09-07 12:38:51,024 [main] ERROR ClassValidator - Found 1 CIM primitive classes that should belong to WG13, according to TC57 rules - move class to a WG13 package: +2024-09-07 12:38:51,024 [main] ERROR ClassValidator - WG14 CIM primitive <> Other::NonEmptyPrimitive +2024-09-07 12:38:51,024 [main] ERROR ClassValidator - Found 2 classes that have duplicate inherited attribute names - rename offending native attribute(s): +2024-09-07 12:38:51,024 [main] ERROR ClassValidator - WG14 CIM class <> Other::MyClass : duplicate attributes = [[WG14 Other::MyClass.value, WG14 Other::BadDatatypes.value]] +2024-09-07 12:38:51,024 [main] ERROR ClassValidator - WG14 CIM class Other::AttrDuplication : duplicate attributes = [[WG14 Other::AttrDuplication.normaIlyInService, WG14 Other::MyClass.normaIlyInService], [WG14 Other::AttrDuplication.curveStyle, WG14 Other::MyClass.curveStyle], [WG14 Other::MyClass.value, WG14 Other::BadDatatypes.value]] +2024-09-07 12:38:51,024 [main] ERROR ClassValidator - Found 2 classes that have duplicate own or inherited association end names - rename offending native association end(s): +2024-09-07 12:38:51,024 [main] ERROR ClassValidator - WG14 CIM class Other::AttrDuplication : duplicate association ends = [[WG14 AttrDuplication.To, WG14 AttrDuplication.To, WG14 MyClass.To], [WG14 AttrDuplication.From, WG14 AttrDuplication.From, WG14 MyClass.From], [WG14 AttrDuplication.T1, WG14 MyClass.T1]] +2024-09-07 12:38:51,024 [main] ERROR ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenLN0 : duplicate association ends = [[WG10 GenLN0.LogicalDevice, WG10 GenLogicalNode.LogicalDevice]] +2024-09-07 12:38:51,024 [main] DEBUG ClassValidator - Found 0 classes with self-inheritance; model repository allows to create such links, but they are not kept in the the in-memory model - remove self-inheritance connector. +2024-09-07 12:38:51,025 [main] DEBUG ClassValidator - Found 0 classes with self-dependency (UML tool allows to create such links, but they are not kept in the the in-memory model - remove self-dependency. +2024-09-07 12:38:51,025 [main] DEBUG ClassValidator - Found 0 classes with leaf property - remove the leaf property in EA class property editor->advanced. +2024-09-07 12:38:51,025 [main] ERROR ClassValidator - Found 20 classes with root property - remove the root property in EA class property editor->advanced: +2024-09-07 12:38:51,025 [main] ERROR ClassValidator - WG13 CIM root class IEC61970::IEC61970CIMVersion +2024-09-07 12:38:51,025 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::AbsoluteDateTime +2024-09-07 12:38:51,025 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::ActivePower +2024-09-07 12:38:51,025 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::ActivePowerChangeRate +2024-09-07 12:38:51,025 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::ApparentPower +2024-09-07 12:38:51,025 [main] ERROR ClassValidator - WG13 CIM primitive <> Domain::Boolean +2024-09-07 12:38:51,025 [main] ERROR ClassValidator - WG13 CIM enumeration <> Domain::Currency +2024-09-07 12:38:51,025 [main] ERROR ClassValidator - WG13 CIM primitive <> Domain::Float +2024-09-07 12:38:51,025 [main] ERROR ClassValidator - WG13 CIM primitive <> Domain::Integer +2024-09-07 12:38:51,025 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::Money +2024-09-07 12:38:51,026 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::PerCent +2024-09-07 12:38:51,026 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::Seconds +2024-09-07 12:38:51,026 [main] ERROR ClassValidator - WG13 CIM primitive <> Domain::String +2024-09-07 12:38:51,026 [main] ERROR ClassValidator - WG13 CIM enumeration <> Domain::UnitMultiplier +2024-09-07 12:38:51,026 [main] ERROR ClassValidator - WG13 CIM enumeration <> Domain::UnitSymbol +2024-09-07 12:38:51,026 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::Voltage +2024-09-07 12:38:51,026 [main] ERROR ClassValidator - WG13 CIM private enumeration <> Core::BreakerConfiguration +2024-09-07 12:38:51,026 [main] ERROR ClassValidator - WG13 CIM protected enumeration <> Core::BusbarConfiguration +2024-09-07 12:38:51,026 [main] ERROR ClassValidator - WG13 CIM enumeration <> Core::PhaseCode +2024-09-07 12:38:51,026 [main] ERROR ClassValidator - WG14 CIM root class IEC61968::IEC61968Version +2024-09-07 12:38:51,026 [main] DEBUG ClassValidator - Found 0 classes with persistence property - remove the persistence property in EA class property editor. +2024-09-07 12:38:51,026 [main] ERROR ClassValidator - Found 3 classes with multiple superclasses - multiple inheritance is prohibited in standard IEC TC57 - keep only one superclass: +2024-09-07 12:38:51,026 [main] ERROR ClassValidator - WG13 CIM class <> Topology::BusNameMarker : all superclasses = [Core::IdentifiedObject, InformativeAndPrivate::InfClass2] +2024-09-07 12:38:51,026 [main] ERROR ClassValidator - WG13 CIM class Core::BaseVoltage : all superclasses = [Core::IdentifiedObject, Other::BadDatatypes] +2024-09-07 12:38:51,027 [main] ERROR ClassValidator - WG13 CIM class Core::EquipmentContainer : all superclasses = [Core::ConnectivityNodeContainer, Ext1::Pear] +2024-09-07 12:38:51,027 [main] ERROR ClassValidator - Found 2 classes inheriting from classes of prohibited owner according to standard IEC TC57 rules (wrong direction for dependency) - remove inheritance OR move the class to that owner: +2024-09-07 12:38:51,027 [main] ERROR ClassValidator - WG13 CIM class Core::BaseVoltage : offending superclass(es) = [WG14 Other::BadDatatypes] +2024-09-07 12:38:51,027 [main] ERROR ClassValidator - WG13 CIM class Core::EquipmentContainer : offending superclass(es) = [OTHER_CIM Ext1::Pear] +2024-09-07 12:38:51,027 [main] ERROR ClassValidator - Found 1 association classes - transform into a regular class with two explicit associations: +2024-09-07 12:38:51,027 [main] ERROR ClassValidator - OTHER_CIM CIM INF root class Informative::AssocClass +2024-09-07 12:38:51,027 [main] ERROR ClassValidator - Found 11 classes with unallowed stereotype(s) - remove offending stereotype(s) OR use one or more of {CIM=[Primitive, CIMDatatype, deprecated, informative, Compound, enumeration, Datatype], IEC61850=[deprecated, structured, admin, informative, enumeration, interface, packed, basic, cond, abbr, statistics]}: +2024-09-07 12:38:51,027 [main] ERROR ClassValidator - OTHER_CIM CIM INF root class <> Informative::Class1 : offending stereotypes = [TmpInformative] +2024-09-07 12:38:51,027 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::ActivePower : offending stereotypes = [invalid, European, custom] +2024-09-07 12:38:51,027 [main] ERROR ClassValidator - WG13 CIM root class <> Core::OperatingShare : offending stereotypes = [WorkInProgress] +2024-09-07 12:38:51,027 [main] ERROR ClassValidator - WG10 IEC61850 unknown 61850 <> GenericModel::CommAddress : offending stereotypes = [compact] +2024-09-07 12:38:51,028 [main] ERROR ClassValidator - WG10 IEC61850 unknown 61850 <> GenericModel::GenAssociationID : offending stereotypes = [compact] +2024-09-07 12:38:51,028 [main] ERROR ClassValidator - WG10 IEC61850 unknown 61850 <> GenericModel::GenTimeStamp : offending stereotypes = [compact] +2024-09-07 12:38:51,028 [main] ERROR ClassValidator - OTHER_CIM CIM root class <> MyCimExtensions::DFD_External1 : offending stereotypes = [DFD_External] +2024-09-07 12:38:51,028 [main] ERROR ClassValidator - OTHER_CIM CIM root class <> MyCimExtensions::DFD_DataStore1 : offending stereotypes = [DFD_DataStore] +2024-09-07 12:38:51,028 [main] ERROR ClassValidator - OTHER_CIM CIM enumeration <> Ext1::FruitBinKind : offending stereotypes = [European] +2024-09-07 12:38:51,028 [main] ERROR ClassValidator - OTHER_CIM CIM class <> Ext1::Pear : offending stereotypes = [European] +2024-09-07 12:38:51,028 [main] ERROR ClassValidator - WG14 CIM class <> Other::MyClass : offending stereotypes = [packed] +2024-09-07 12:38:51,028 [main] WARN ClassValidator - Found 1 CIM classes with old (pre-CIM15) datatype stereotype 'Datatype' - change stereotype to 'CIMDatatype': +2024-09-07 12:38:51,028 [main] WARN ClassValidator - WG13 CIM datatype <> Domain::Seconds +2024-09-07 12:38:51,028 [main] ERROR ClassValidator - Found 2 CIM classes that should be used as type for attributes, but have associations - replace associations with attributes OR remove stereotype from this class: +2024-09-07 12:38:51,028 [main] ERROR ClassValidator - WG14 CIM datatype <> Other::BadDatatypes +2024-09-07 12:38:51,029 [main] ERROR ClassValidator - WG13 CIM compound <> Core::OperatingParticipant +2024-09-07 12:38:51,029 [main] ERROR ClassValidator - Found 1 CIM classes that should not participate in inheritance but have subclasses - remove inheritance links OR remove stereotype from this class: +2024-09-07 12:38:51,029 [main] ERROR ClassValidator - WG14 CIM datatype <> Other::BadDatatypes : offending subclass(es) = [WG13 Core::BaseVoltage, WG14 Other::MyClass] +2024-09-07 12:38:51,029 [main] ERROR ClassValidator - Found 1 CIM classes that should not participate in inheritance but have superclasses - remove inheritance links OR remove stereotype from this class: +2024-09-07 12:38:51,029 [main] ERROR ClassValidator - WG13 CIM compound <> Core::OperatingParticipant : offending superclass(es) = [WG13 Core::IdentifiedObject] +2024-09-07 12:38:51,029 [main] ERROR ClassValidator - Found 1 CIM classes that are abstract - in standard CIM, no classes should be abstract - edit class properties in EA and unselect 'abstract': +2024-09-07 12:38:51,029 [main] ERROR ClassValidator - WG14 CIM class <> Other::MyClass +2024-09-07 12:38:51,029 [main] ERROR ClassValidator - Found 3 CIM classes that have operations - in standard CIM, no classes should have operations - remove operations from the class: +2024-09-07 12:38:51,029 [main] ERROR ClassValidator - OTHER_CIM CIM root class Package with space::My class +2024-09-07 12:38:51,029 [main] ERROR ClassValidator - WG13 CIM class Core::PowerSystemResource +2024-09-07 12:38:51,029 [main] ERROR ClassValidator - WG13 CIM class Core::VoltageLevel +2024-09-07 12:38:51,029 [main] ERROR ClassValidator - Found 1 CIM classes that have explicit UML dependencies on other classes - in standard CIM, no classes should have explicit dependencies - remove inter-class UML dependencies: +2024-09-07 12:38:51,030 [main] ERROR ClassValidator - WG14 CIM class <> Other::MyClass +2024-09-07 12:38:51,030 [main] ERROR ClassValidator - Found 1 classes that use themselves as type for their attribute - nesting (recursion) through attributes is not allowed - change type for those attributes that has the same type as their containing class: +2024-09-07 12:38:51,030 [main] ERROR ClassValidator - WG14 CIM datatype <> Other::BadDatatypes +2024-09-07 12:38:51,030 [main] ERROR ClassValidator - Found 4 classes used for generating IEC61850 parts 7-3 or 7-4 that are missing alias - needed as title in the doc - add alias, otherwise the title in the doc will be odd: +2024-09-07 12:38:51,030 [main] ERROR ClassValidator - WG10 IEC61850 enumeration <> TriggerOptions::TrgOpKind +2024-09-07 12:38:51,030 [main] ERROR ClassValidator - WG10 IEC61850 coded enumeration <> CoreTypes::TimeAccuracyKind +2024-09-07 12:38:51,030 [main] ERROR ClassValidator - WG10 IEC61850 other 61850 CDCControl::SPC +2024-09-07 12:38:51,030 [main] ERROR ClassValidator - WG10 IEC61850 primitive CDC CDCStatusInfo::EXY +2024-09-07 12:38:51,030 [main] DEBUG ClassValidator - Found 0 classes used for generating LN mappings between IEC 61850-5 and IEC 61850-7-4 that are missing tagged values needed for doc geneneration - add required tagged values. +2024-09-07 12:38:51,030 [main] ERROR ClassValidator - Found 7 CIM classes never used in any association or inheritance - should this class be removed?: +2024-09-07 12:38:51,030 [main] ERROR ClassValidator - OTHER_CIM CIM INF root class Informative::AssocClass +2024-09-07 12:38:51,031 [main] ERROR ClassValidator - OTHER_CIM CIM INF root class Informative::HasIllegalTypeForAttr +2024-09-07 12:38:51,031 [main] ERROR ClassValidator - WG13 CIM INF root class InformativeAndPrivate::EmbeddedClass +2024-09-07 12:38:51,031 [main] ERROR ClassValidator - WG14 CIM root class IEC61968::IEC61968Version +2024-09-07 12:38:51,031 [main] ERROR ClassValidator - WG14 CIM root class Other::Equipment +2024-09-07 12:38:51,031 [main] ERROR ClassValidator - OTHER_CIM CIM root class <> MyCimExtensions::DFD_External1 +2024-09-07 12:38:51,031 [main] ERROR ClassValidator - OTHER_CIM CIM root class <> MyCimExtensions::DFD_DataStore1 +2024-09-07 12:38:51,031 [main] ERROR ClassValidator - Found 8 class with unallowed tag names - remove tags: +2024-09-07 12:38:51,032 [main] ERROR ClassValidator - WG10 IEC61850 enumeration <> DAEnums::SIUnitKind : [scl] +2024-09-07 12:38:51,032 [main] ERROR ClassValidator - WG10 IEC61850 enumeration <> DAEnums::MultiplierKind : [scl] +2024-09-07 12:38:51,032 [main] ERROR ClassValidator - WG10 IEC61850 enumeration <> DAEnums::PhaseAngleReferenceKind : [scl] +2024-09-07 12:38:51,032 [main] ERROR ClassValidator - WG10 IEC61850 enumeration <> DOEnums::HealthKind : [scl] +2024-09-07 12:38:51,032 [main] ERROR ClassValidator - WG10 IEC61850 enumeration <> DOEnums::BehaviourModeKind : [scl] +2024-09-07 12:38:51,032 [main] ERROR ClassValidator - WG10 IEC61850 enumeration <> DOEnums::CalcMethodKind : [scl] +2024-09-07 12:38:51,032 [main] ERROR ClassValidator - WG13 CIM class Core::Terminal : [dummyCimTag] +2024-09-07 12:38:51,032 [main] ERROR ClassValidator - WG13 CIM compound <> Core::OperatingParticipant : [dummyCimTag] +2024-09-07 12:38:51,032 [main] ERROR ClassValidator - Found 3 IEC61850 classes that have constraints not defined as literals - fix constraint(s) name OR add new presence condition: +2024-09-07 12:38:51,032 [main] ERROR ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenFCDA : offending constraints = [FCConstraint] +2024-09-07 12:38:51,033 [main] ERROR ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenLN0 : offending constraints = [inv: self.LNName = "LLN0"] +2024-09-07 12:38:51,033 [main] ERROR ClassValidator - WG10 IEC61850 composed DA ConstructedDAs::AnalogueValue : offending constraints = [AtLeastOne] +2024-09-07 12:38:51,033 [main] ERROR ClassValidator - Found 15 IEC61850 classes that have constraints with siblings that do not exist - fix constraint(s) argument OR add DO matching the argument OR remove constraint: +2024-09-07 12:38:51,033 [main] ERROR ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenFCDA : [constraint 'FCConstraint' for inexisting 'inv'] +2024-09-07 12:38:51,033 [main] ERROR ClassValidator - WG10 IEC61850 LN LNGroupL::LPHD : [constraint 'MF(2)' for inexisting 'RsstatAlmMthClc'] +2024-09-07 12:38:51,033 [main] ERROR ClassValidator - WG10 IEC61850 LN LNGroupL::LLN0 : [constraint 'MOrootLD' for inexisting 'Mod'][constraint 'Omulti' for inexisting 'InRef'] +2024-09-07 12:38:51,033 [main] ERROR ClassValidator - WG10 IEC61850 LN <> LogicalNodes::StatisticsLN : [constraint 'MF(ClcMth)' for inexisting 'ClcMod,ClcIntvPer,ClcIntvTyp'] +2024-09-07 12:38:51,033 [main] ERROR ClassValidator - WG10 IEC61850 LN LNGroupG::GGIO : [constraint 'Omulti' for inexisting 'AnOut'] +2024-09-07 12:38:51,033 [main] ERROR ClassValidator - WG10 IEC61850 LN LNGroupC::CALH : [constraint 'AtLeastOne(1)' for inexisting 'GrInd'] +2024-09-07 12:38:51,033 [main] ERROR ClassValidator - WG10 IEC61850 LN LNGroupP::PDIF : [constraint 'AtMostOne' for inexisting 'LoSet,HiSet'] +2024-09-07 12:38:51,033 [main] ERROR ClassValidator - WG10 IEC61850 primitive CDC CommonDataClasses::BasePrimitiveCDC : [constraint 'MOcdcNs' for inexisting 'cdcName'][constraint 'MOdataNs' for inexisting 'dataNs'] +2024-09-07 12:38:51,034 [main] ERROR ClassValidator - WG10 IEC61850 primitive CDC CommonDataClasses::SubstitutionCDC : [constraint 'MFsubst' for inexisting 'subID'] +2024-09-07 12:38:51,034 [main] ERROR ClassValidator - WG10 IEC61850 primitive CDC <> CDCAnalogueInfo::CMV : [constraint 'MFscaledAngV' for inexisting 'angSVC'][constraint 'MFscaledMagV' for inexisting 'magSVC'] +2024-09-07 12:38:51,034 [main] ERROR ClassValidator - WG10 IEC61850 primitive CDC <> CDCControl::BAC : [constraint 'AllOrNonePerGroup(1)' for inexisting 'q,t'][constraint 'MFscaledAV' for inexisting 'sVC'] +2024-09-07 12:38:51,034 [main] ERROR ClassValidator - WG10 IEC61850 primitive CDC CDCStatusInfo::ACD : [constraint 'AllOrNonePerGroup(1)' for inexisting 'dirPhsA'][constraint 'AllOrNonePerGroup(2)' for inexisting 'dirPhsB'][constraint 'AllOrNonePerGroup(3)' for inexisting 'phsC,dirPhsC'][constraint 'AllOrNonePerGroup(4)' for inexisting 'neut,dirNeut'] +2024-09-07 12:38:51,034 [main] ERROR ClassValidator - WG10 IEC61850 primitive CDC CDCDescription::LPL : [constraint 'MOln0' for inexisting 'configRev'] +2024-09-07 12:38:51,034 [main] ERROR ClassValidator - WG10 IEC61850 composed CDC CommonDataClasses::BaseComposedCDC : [constraint 'MOcdcNs' for inexisting 'cdcName'][constraint 'MOdataNs' for inexisting 'dataNs'] +2024-09-07 12:38:51,034 [main] ERROR ClassValidator - WG10 IEC61850 composed CDC <> CDCAnalogueInfo::HarmonicMeasurandCDC : [constraint 'MFrms' for inexisting 'rmsCyc'] +2024-09-07 12:38:51,034 [main] ERROR ClassValidator - Found 1 IEC61850 classes that have constraints with 'condID' argument, but no text associated with it - add text to constraint(s) note OR use presence condition that does not require 'condID': +2024-09-07 12:38:51,034 [main] ERROR ClassValidator - WG10 IEC61850 LN LNGroupL::LLN0 : offending constraints = [MOcond(1)] +2024-09-07 12:38:51,034 [main] ERROR ClassValidator - Found 4 CIM datatype classes that should have at least attributes with type kinds {value=PRIM, unit=ENUM, multiplier=ENUM} - remove stereotype OR add missing attributes: +2024-09-07 12:38:51,035 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::AbsoluteDateTime : [missing 'value'] [missing 'unit'] [missing 'multiplier'] +2024-09-07 12:38:51,035 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::ActivePowerChangeRate : [wrong kind 'NULL_CIM' for type of 'value'] +2024-09-07 12:38:51,035 [main] ERROR ClassValidator - WG14 CIM datatype <> Other::BadDatatypes : [wrong kind 'DT' for type of 'value'][missing 'multiplier'] +2024-09-07 12:38:51,035 [main] ERROR ClassValidator - WG14 CIM datatype <> Other::AnotherBadDatatype : [wrong kind 'ENUM' for type of 'value'][wrong kind 'PRIM' for type of 'unit'][wrong kind 'COMP' for type of 'multiplier'] +2024-09-07 12:38:51,035 [main] WARN ClassValidator - Found 134 classes missing documentation - add documentation: +2024-09-07 12:38:51,035 [main] WARN ClassValidator - WG13 CIM datatype <> Domain::ActivePowerChangeRate +2024-09-07 12:38:51,035 [main] WARN ClassValidator - WG13 CIM enumeration <> Domain::WithSingleLiteral +2024-09-07 12:38:51,035 [main] WARN ClassValidator - WG13 CIM enumeration <> Domain::YesNo +2024-09-07 12:38:51,035 [main] WARN ClassValidator - WG13 CIM enumeration <> TestEnums::EnumWithSomeIntCodes +2024-09-07 12:38:51,035 [main] WARN ClassValidator - WG13 CIM enumeration <> TestEnums::EnumWithStringCodes +2024-09-07 12:38:51,035 [main] WARN ClassValidator - WG13 CIM enumeration <> TestEnums::EnumWithNonUniqueCodes +2024-09-07 12:38:51,036 [main] WARN ClassValidator - WG14 CIM root class Assets::AssetInfo +2024-09-07 12:38:51,036 [main] WARN ClassValidator - WG14 CIM datatype <> Other::BadDatatypes +2024-09-07 12:38:51,036 [main] WARN ClassValidator - WG14 CIM root class Other::MyClass +2024-09-07 12:38:51,036 [main] WARN ClassValidator - WG14 CIM enumeration <> Other::EmptyEnum +2024-09-07 12:38:51,036 [main] WARN ClassValidator - WG14 CIM primitive <> Other::NonEmptyPrimitive +2024-09-07 12:38:51,036 [main] WARN ClassValidator - WG14 CIM datatype <> Other::AnotherBadDatatype +2024-09-07 12:38:51,036 [main] WARN ClassValidator - WG14 CIM compound <> Other::EmptyCompound +2024-09-07 12:38:51,036 [main] WARN ClassValidator - WG10 IEC61850 enumeration <> GenericModel::GenFC +2024-09-07 12:38:51,036 [main] WARN ClassValidator - WG10 IEC61850 enumeration <> GenericModel::GenPresenceConditions +2024-09-07 12:38:51,036 [main] WARN ClassValidator - WG10 IEC61850 unknown 61850 <> GenericModel::GenTimeStamp +2024-09-07 12:38:51,037 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::AccessPoint +2024-09-07 12:38:51,037 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::FileSystem +2024-09-07 12:38:51,037 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenBOOLEAN +2024-09-07 12:38:51,037 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenCommonDataClass +2024-09-07 12:38:51,037 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenConstructedType +2024-09-07 12:38:51,037 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenDataAttribute +2024-09-07 12:38:51,037 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenDataObject +2024-09-07 12:38:51,037 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenDataSet +2024-09-07 12:38:51,037 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenFCD +2024-09-07 12:38:51,037 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenFile +2024-09-07 12:38:51,037 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenIED +2024-09-07 12:38:51,037 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenINT32U +2024-09-07 12:38:51,037 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenLogicalDevice +2024-09-07 12:38:51,038 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenLogicalNode +2024-09-07 12:38:51,038 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenMCAA +2024-09-07 12:38:51,038 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenObjRef +2024-09-07 12:38:51,038 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenObjectName +2024-09-07 12:38:51,038 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenServer +2024-09-07 12:38:51,038 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenSubDataAttribute +2024-09-07 12:38:51,038 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenSubDataObject +2024-09-07 12:38:51,038 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenTPAA +2024-09-07 12:38:51,038 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenTriggerConditions +2024-09-07 12:38:51,038 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenVisString255 +2024-09-07 12:38:51,038 [main] WARN ClassValidator - WG10 IEC61850 other 61850 IEC61850_7_2::IEC61850_7_2Namespace +2024-09-07 12:38:51,038 [main] WARN ClassValidator - WG10 IEC61850 other 61850 IEC61850_7_3::IEC61850_7_3Namespace +2024-09-07 12:38:51,038 [main] WARN ClassValidator - WG10 IEC61850 enumeration <> DAEnums::PhaseFaultDirectionKind +2024-09-07 12:38:51,039 [main] WARN ClassValidator - WG10 IEC61850 enumeration <> DAEnums::PhaseAngleReferenceKind +2024-09-07 12:38:51,039 [main] WARN ClassValidator - WG10 IEC61850 other 61850 CDCControl::SPC +2024-09-07 12:38:51,039 [main] WARN ClassValidator - WG10 IEC61850 other 61850 IEC61850_7_4::IEC61850_7_4Namespace +2024-09-07 12:38:51,039 [main] WARN ClassValidator - WG10 IEC61850 enumeration <> DOEnums::BaseKind +2024-09-07 12:38:51,039 [main] WARN ClassValidator - WG17 IEC61850 other 61850 IEC51850_7_420::IEC61850_7_420Namespace +2024-09-07 12:38:51,039 [main] WARN ClassValidator - WG17 IEC61850 enumeration <> DOEnums_7_420::MaterialTransitionKind +2024-09-07 12:38:51,039 [main] WARN ClassValidator - OTHER_CIM CIM root class <> MyCimExtensions::DFD_External1 +2024-09-07 12:38:51,039 [main] WARN ClassValidator - OTHER_CIM CIM root class <> MyCimExtensions::DFD_DataStore1 +2024-09-07 12:38:51,039 [main] WARN ClassValidator - OTHER_CIM CIM root class Ext1::Fruit +2024-09-07 12:38:51,039 [main] WARN ClassValidator - OTHER_CIM CIM enumeration <> Ext1::FruitBinKind +2024-09-07 12:38:51,039 [main] WARN ClassValidator - OTHER_CIM CIM root class Ext1::Village +2024-09-07 12:38:51,039 [main] WARN ClassValidator - OTHER_CIM CIM root class Package with space::My class +2024-09-07 12:38:51,039 [main] WARN ClassValidator - OTHER_CIM CIM root class Package with space::Other-with_invalid name +2024-09-07 12:38:51,040 [main] WARN ClassValidator - OTHER_IEC61850 IEC61850 other 61850 Ext2::Animal +2024-09-07 12:38:51,040 [main] WARN ClassValidator - OTHER_CIM CIM class <> Ext1::Pear +2024-09-07 12:38:51,040 [main] WARN ClassValidator - WG14 CIM class <> Other::MyClass +2024-09-07 12:38:51,040 [main] WARN ClassValidator - WG14 CIM class Other::AttrDuplication +2024-09-07 12:38:51,040 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::ServiceAccessPoint +2024-09-07 12:38:51,040 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenLN0 +2024-09-07 12:38:51,040 [main] WARN ClassValidator - WG10 IEC61850 LN LNGroupL::KXYZ +2024-09-07 12:38:51,040 [main] WARN ClassValidator - WG10 IEC61850 primitive CDC CDCServiceTracking::BTS +2024-09-07 12:38:51,040 [main] WARN ClassValidator - WG10 IEC61850 control tracking CDC CDCServiceTracking::CTS +2024-09-07 12:38:51,040 [main] WARN ClassValidator - WG10 IEC61850 primitive CDC CDCServiceTracking::GTS +2024-09-07 12:38:51,040 [main] WARN ClassValidator - WG10 IEC61850 primitive CDC CDCServiceTracking::LTS +2024-09-07 12:38:51,040 [main] WARN ClassValidator - WG10 IEC61850 primitive CDC CDCServiceTracking::MTS +2024-09-07 12:38:51,040 [main] WARN ClassValidator - WG10 IEC61850 primitive CDC CDCServiceTracking::NTS +2024-09-07 12:38:51,040 [main] WARN ClassValidator - WG10 IEC61850 primitive CDC CDCServiceTracking::OTS +2024-09-07 12:38:51,041 [main] WARN ClassValidator - WG10 IEC61850 primitive CDC CDCServiceTracking::STS +2024-09-07 12:38:51,041 [main] WARN ClassValidator - WG10 IEC61850 primitive CDC CDCServiceTracking::UTS +2024-09-07 12:38:51,041 [main] WARN ClassValidator - WG10 IEC61850 enumeration CDC DerivedCDCs::ENSEnumDA +2024-09-07 12:38:51,041 [main] WARN ClassValidator - WG10 IEC61850 primitive CDC CDCStatusInfo::EXY +2024-09-07 12:38:51,041 [main] WARN ClassValidator - WG10 IEC61850 primitive CDC DerivedCDCs::EXYBehaviourMode +2024-09-07 12:38:51,041 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::BOOLEAN_BL +2024-09-07 12:38:51,041 [main] WARN ClassValidator - WG10 IEC61850 enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_CF +2024-09-07 12:38:51,041 [main] WARN ClassValidator - WG10 IEC61850 enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_CF_dchg +2024-09-07 12:38:51,041 [main] WARN ClassValidator - WG10 IEC61850 enumeration FCDA FCDAs::EnumDA_CF_dchg +2024-09-07 12:38:51,041 [main] WARN ClassValidator - WG10 IEC61850 enumeration FCDA FCDAs::PhaseAngleReference_CF_dchg +2024-09-07 12:38:51,041 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::BOOLEAN_CF_dchg +2024-09-07 12:38:51,042 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::INT16U_CF_dchg +2024-09-07 12:38:51,042 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::INT32U_CF_dchg +2024-09-07 12:38:51,042 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::INT32_CF_dchg +2024-09-07 12:38:51,042 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::RangeConfig_CF_dchg +2024-09-07 12:38:51,042 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::INT16U_CF +2024-09-07 12:38:51,042 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::Point_DC +2024-09-07 12:38:51,042 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::UNICODE_STRING255_DC +2024-09-07 12:38:51,042 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::VISIBLE_STRING255_EX +2024-09-07 12:38:51,042 [main] WARN ClassValidator - WG10 IEC61850 enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_MX +2024-09-07 12:38:51,042 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::AnalogueValue_MX_dchg +2024-09-07 12:38:51,042 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::BOOLEAN_MX_dchg +2024-09-07 12:38:51,042 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::AnalogueValue_MX_dchg_dupd +2024-09-07 12:38:51,042 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::Quality_MX_qchg +2024-09-07 12:38:51,042 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::AnalogueValue_MX +2024-09-07 12:38:51,042 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::BOOLEAN_OR_dchg +2024-09-07 12:38:51,042 [main] WARN ClassValidator - WG10 IEC61850 FCDA MetaModelFCsAndTrgOps::FCDA_SE_dchg +2024-09-07 12:38:51,042 [main] WARN ClassValidator - WG10 IEC61850 enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_SE_dchg +2024-09-07 12:38:51,043 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::BOOLEAN_SE +2024-09-07 12:38:51,043 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::Point_SE +2024-09-07 12:38:51,043 [main] WARN ClassValidator - WG10 IEC61850 FCDA MetaModelFCsAndTrgOps::FCDA_SG_dchg +2024-09-07 12:38:51,043 [main] WARN ClassValidator - WG10 IEC61850 enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_SG_dchg +2024-09-07 12:38:51,043 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::BOOLEAN_SG +2024-09-07 12:38:51,043 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::Point_SG +2024-09-07 12:38:51,043 [main] WARN ClassValidator - WG10 IEC61850 FCDA MetaModelFCsAndTrgOps::FCDA_SP_dchg +2024-09-07 12:38:51,043 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::BOOLEAN_SP_dchg +2024-09-07 12:38:51,043 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::Point_SP +2024-09-07 12:38:51,043 [main] WARN ClassValidator - WG10 IEC61850 enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_ST +2024-09-07 12:38:51,043 [main] WARN ClassValidator - WG10 IEC61850 enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_ST_dchg +2024-09-07 12:38:51,043 [main] WARN ClassValidator - WG10 IEC61850 coded enumeration FCDA MetaModelFCsAndTrgOps::PackedEnumFCDA_SP_dchg +2024-09-07 12:38:51,043 [main] WARN ClassValidator - WG10 IEC61850 coded enumeration FCDA FCDAs::DpStatus_ST_dchg +2024-09-07 12:38:51,043 [main] WARN ClassValidator - WG10 IEC61850 enumeration FCDA FCDAs::EnumDA_ST_dchg +2024-09-07 12:38:51,043 [main] WARN ClassValidator - WG10 IEC61850 enumeration FCDA FCDAs::PhaseFaultDirection_ST_dchg +2024-09-07 12:38:51,043 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::BOOLEAN_ST_dchg +2024-09-07 12:38:51,043 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::INT32_ST_dchg +2024-09-07 12:38:51,044 [main] WARN ClassValidator - WG10 IEC61850 FCDA MetaModelFCsAndTrgOps::FCDA_ST_dchg_dupd +2024-09-07 12:38:51,044 [main] WARN ClassValidator - WG10 IEC61850 enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_ST_dchg_dupd +2024-09-07 12:38:51,044 [main] WARN ClassValidator - WG10 IEC61850 enumeration FCDA FCDAs::EnumDA_ST_dchg_dupd +2024-09-07 12:38:51,044 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::INT32_ST_dchg_dupd +2024-09-07 12:38:51,044 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::Quality_ST_qchg +2024-09-07 12:38:51,044 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::TimeStamp_ST +2024-09-07 12:38:51,044 [main] WARN ClassValidator - WG10 IEC61850 enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_SV +2024-09-07 12:38:51,044 [main] WARN ClassValidator - WG10 IEC61850 coded enumeration FCDA MetaModelFCsAndTrgOps::PackedEnumFCDA_SV +2024-09-07 12:38:51,044 [main] WARN ClassValidator - WG10 IEC61850 coded enumeration FCDA FCDAs::DpStatus_SV +2024-09-07 12:38:51,044 [main] WARN ClassValidator - WG10 IEC61850 enumeration FCDA FCDAs::EnumDA_SV +2024-09-07 12:38:51,044 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::BOOLEAN_SV +2024-09-07 12:38:51,044 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::Quality_SV +2024-09-07 12:38:51,044 [main] WARN ClassValidator - WG10 IEC61850 packed list DA MetaModel::PackedPrimitiveDA +2024-09-07 12:38:51,044 [main] WARN ClassValidator - WG10 IEC61850 coded enumeration DA MetaModel::PackedEnumDA +2024-09-07 12:38:51,044 [main] WARN ClassValidator - WG17 IEC61850 enumeration DA DerivedDAs_7_420::Material_control +2024-09-07 12:38:51,044 [main] WARN ClassValidator - WG17 IEC61850 enumeration <> DOEnums_7_420::ExtBaseKind +2024-09-07 12:38:51,044 [main] WARN ClassValidator - OTHER_CIM CIM class Ext1::Apple +2024-09-07 12:38:51,045 [main] WARN ClassValidator - OTHER_CIM CIM class Ext1::Strawberry +2024-09-07 12:38:51,045 [main] WARN ClassValidator - OTHER_IEC61850 IEC61850 other 61850 Ext2::Dog +2024-09-07 12:38:51,045 [main] WARN ClassValidator - OTHER_IEC61850 IEC61850 other 61850 Ext2::Horse +2024-09-07 12:38:51,045 [main] WARN ClassValidator - Found 27 classes whose documentation starts with unallowed character - fix the first character: valid ones are any upper case letter or punctuation marks [', ", (]: +2024-09-07 12:38:51,045 [main] WARN ClassValidator - WG14 CIM root class Other::Equipment : doc='doc' +2024-09-07 12:38:51,045 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::SUBSTITUTION : doc='part 7-2, sec. 12 +Original do...' +2024-09-07 12:38:51,045 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::CONTROL : doc='part 7-2, sec. 17 +Original do...' +2024-09-07 12:38:51,045 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::TIME : doc='part 7-2, sec. 18 +Original do...' +2024-09-07 12:38:51,045 [main] WARN ClassValidator - WG13 CIM class Core::BasePower : doc='the BasePower class defines th...' +2024-09-07 12:38:51,045 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::LD : doc='part 7-2, sec. 8 +Original doc...' +2024-09-07 12:38:51,046 [main] WARN ClassValidator - WG10 IEC61850 LN MetaModel::LN : doc='part 7-2, sec. 9 +Original doc...' +2024-09-07 12:38:51,046 [main] WARN ClassValidator - WG10 IEC61850 LN MetaModel::LNPHD : doc='part 7-2, section 8.1.2.3 +Not...' +2024-09-07 12:38:51,046 [main] WARN ClassValidator - WG10 IEC61850 LN MetaModel::LN0 : doc='part 7-2, sec. 9 +IEC 61850-7-...' +2024-09-07 12:38:51,046 [main] WARN ClassValidator - WG10 IEC61850 LN MetaModel::LNDOM : doc='part 7-2, section 8.1.2.3 +Not...' +2024-09-07 12:38:51,046 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::CDC : doc='part 7-2, tab. 16 (DATA class)...' +2024-09-07 12:38:51,046 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::DA : doc='part 7-2, sec. 5.5.1 and tab. ...' +2024-09-07 12:38:51,046 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::DS : doc='part 7-2, sec. 11 +Original do...' +2024-09-07 12:38:51,046 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::RCB : doc='part 7-2, sec. 14 +Original do...' +2024-09-07 12:38:51,046 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::BRCB : doc='part 7-2, sec. 14 +Original do...' +2024-09-07 12:38:51,046 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::URCB : doc='part 7-2, sec. 14 +Original do...' +2024-09-07 12:38:51,046 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::LCB : doc='part 7-2, sec. 14 +Original do...' +2024-09-07 12:38:51,046 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::GCB : doc='part 7-2, sec. 15 +Original do...' +2024-09-07 12:38:51,047 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::SVCB : doc='part 7-2, sec. 16 +Original do...' +2024-09-07 12:38:51,047 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::MSVCB : doc='part 7-2, sec. 16' +2024-09-07 12:38:51,047 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::USVCB : doc='part 7-2, sec. 16' +2024-09-07 12:38:51,047 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::SGCB : doc='part 7-2, sec. 13 +Original do...' +2024-09-07 12:38:51,047 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::LOG : doc='part 7-2, sec. 14 +Original do...' +2024-09-07 12:38:51,047 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::SERVER : doc='part 7-2, sec. 6 +Original doc...' +2024-09-07 12:38:51,048 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::FILE : doc='part 7-2, sec. 20 +Original do...' +2024-09-07 12:38:51,048 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::TPAA : doc='part 7-2, sec. 7 +Original doc...' +2024-09-07 12:38:51,048 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::MCAA : doc='part 7-2, sec. 7 +Original doc...' +2024-09-07 12:38:51,048 [main] WARN ClassValidator - Found 15 classes whose documentation does not end with a dot ('.') - fix the last character: add a dot: +2024-09-07 12:38:51,048 [main] WARN ClassValidator - WG13 CIM datatype <> Domain::ActivePower : doc='...phase component of the current' +2024-09-07 12:38:51,048 [main] WARN ClassValidator - WG13 CIM datatype <> Domain::ApparentPower : doc='...d the RMS value of the current' +2024-09-07 12:38:51,048 [main] WARN ClassValidator - WG13 CIM datatype <> Domain::Money : doc='Amount of money' +2024-09-07 12:38:51,048 [main] WARN ClassValidator - WG13 CIM datatype <> Domain::PerCent : doc='...ally 0 - 100 on a defined base' +2024-09-07 12:38:51,048 [main] WARN ClassValidator - WG13 CIM datatype <> Domain::Seconds : doc='Time, in seconds' +2024-09-07 12:38:51,048 [main] WARN ClassValidator - WG13 CIM enumeration <> Domain::UnitMultiplier : doc='...ultipliers defined for the CIM' +2024-09-07 12:38:51,048 [main] WARN ClassValidator - WG13 CIM enumeration <> Domain::UnitSymbol : doc='...s defiend for usage in the CIM' +2024-09-07 12:38:51,048 [main] WARN ClassValidator - WG13 CIM enumeration <> Topology::TestEnum : doc='...pty paragraphs below.(paraEnd)' +2024-09-07 12:38:51,049 [main] WARN ClassValidator - WG14 CIM root class Other::Equipment : doc='doc' +2024-09-07 12:38:51,049 [main] WARN ClassValidator - WG10 IEC61850 other 61850 CommonAcsiTypes::Authentication : doc='... encrypted. How to model that?' +2024-09-07 12:38:51,049 [main] WARN ClassValidator - WG10 IEC61850 protected other 61850 CommonAcsiTypes::AccessView : doc='...ossible values for AccessView?' +2024-09-07 12:38:51,049 [main] WARN ClassValidator - WG13 CIM class Core::EquipmentContainer : doc='...lass for all Equipment classes' +2024-09-07 12:38:51,049 [main] WARN ClassValidator - WG13 CIM class Core::Equipment : doc='...ices, electronic or mechanical' +2024-09-07 12:38:51,049 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::MSVCB : doc='part 7-2, sec. 16' +2024-09-07 12:38:51,049 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::USVCB : doc='part 7-2, sec. 16' +2024-09-07 12:38:51,050 [main] ERROR ClassValidator - Found 4 classes whose name contains illegal character(s) - rename by removing invalid character(s): +2024-09-07 12:38:51,050 [main] ERROR ClassValidator - OTHER_CIM CIM root class <> MyCimExtensions::DFD_External1 : invalid characters = [_] +2024-09-07 12:38:51,050 [main] ERROR ClassValidator - OTHER_CIM CIM root class <> MyCimExtensions::DFD_DataStore1 : invalid characters = [_] +2024-09-07 12:38:51,050 [main] ERROR ClassValidator - OTHER_CIM CIM root class Package with space::My class : invalid characters = [ ] +2024-09-07 12:38:51,050 [main] ERROR ClassValidator - OTHER_CIM CIM root class Package with space::Other-with_invalid name : invalid characters = [-, _, ] +2024-09-07 12:38:51,050 [main] ERROR ClassValidator - Found 1 CIM classes whose name starts with a lower case letter - rename class(es) to start with upper case letter: +2024-09-07 12:38:51,050 [main] ERROR ClassValidator - WG13 CIM class Core::geographicalRegion +2024-09-07 12:38:51,050 [main] ERROR ClassValidator - Found 5 CIM classes that should be singular - rename class to singular: +2024-09-07 12:38:51,051 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::Seconds +2024-09-07 12:38:51,051 [main] ERROR ClassValidator - WG13 CIM enumeration <> TestEnums::EnumWithSomeIntCodes +2024-09-07 12:38:51,051 [main] ERROR ClassValidator - WG13 CIM enumeration <> TestEnums::EnumWithStringCodes +2024-09-07 12:38:51,051 [main] ERROR ClassValidator - WG13 CIM enumeration <> TestEnums::EnumWithNonUniqueCodes +2024-09-07 12:38:51,051 [main] ERROR ClassValidator - WG14 CIM datatype <> Other::BadDatatypes +2024-09-07 12:38:51,051 [main] ERROR ClassValidator - Found 1 IEC61850 concrete LN classes that, according to the first letter in the name, should be in another LN group - rename the LN OR move it to corresponding LN group: +2024-09-07 12:38:51,051 [main] ERROR ClassValidator - WG10 IEC61850 LN LNGroupL::KXYZ : expected to be in package 'LNGroupK' +2024-09-07 12:38:51,051 [main] ERROR ClassValidator - Found 2 IEC61850 concrete LN classes with name different than 4 upper case letters - rename the LN to 4 upper case letters: +2024-09-07 12:38:51,051 [main] ERROR ClassValidator - WG10 IEC61850 LN LNGroupP::PDISExt +2024-09-07 12:38:51,051 [main] ERROR ClassValidator - WG10 IEC61850 LN LNGroupP::PDF2 +2024-09-07 12:38:51,051 [main] ERROR ClassValidator - Found 2 enum classes that have some codes, but not for all literals - add missing code(s); alternatively, remove all codes: +2024-09-07 12:38:51,051 [main] ERROR ClassValidator - WG13 CIM enumeration <> TestEnums::EnumWithSomeIntCodes : literals missing code = [lit20noCode, lit60noCode] +2024-09-07 12:38:51,052 [main] ERROR ClassValidator - WG13 CIM enumeration <> TestEnums::EnumWithStringCodes : literals missing code = [str3noCode] +2024-09-07 12:38:51,052 [main] ERROR ClassValidator - Found 1 enum classes that have duplicate codes for some literals - change codes so as to have them unique: +2024-09-07 12:38:51,052 [main] ERROR ClassValidator - WG13 CIM enumeration <> TestEnums::EnumWithNonUniqueCodes : duplicate codes = {1=[[c1, c2, c5]], 4=[[c4, c7]]}; codes in use = [1, 3, 4, 6, 8], so pick some unused code to fix the problem +2024-09-07 12:38:51,052 [main] ERROR ClassValidator - Found 4 classes that have non-unique name - rename classes to have unique names within model: +2024-09-07 12:38:51,052 [main] ERROR ClassValidator - 1 WG14 CIM root class Other::Equipment : all with the same name = [WG14 Other::Equipment, WG13 Core::Equipment] +2024-09-07 12:38:51,052 [main] ERROR ClassValidator - 1 WG13 CIM class Core::Equipment : all with the same name = [WG14 Other::Equipment, WG13 Core::Equipment] +2024-09-07 12:38:51,053 [main] ERROR ClassValidator - 2 WG14 CIM root class Other::MyClass : all with the same name = [WG14 Other::MyClass, WG14 Other::MyClass] +2024-09-07 12:38:51,053 [main] ERROR ClassValidator - 2 WG14 CIM class <> Other::MyClass : all with the same name = [WG14 Other::MyClass, WG14 Other::MyClass] +2024-09-07 12:38:51,053 [main] ERROR ClassValidator - Found 14 CIM classes never used as type for attributes - if also not used in the larger scope: move class(es) to an informative package (if you anticipate future use) OR simply remove: +2024-09-07 12:38:51,053 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::ActivePower +2024-09-07 12:38:51,053 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::ActivePowerChangeRate +2024-09-07 12:38:51,053 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::Money +2024-09-07 12:38:51,053 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::Seconds +2024-09-07 12:38:51,053 [main] ERROR ClassValidator - WG13 CIM enumeration <> Domain::WithSingleLiteral +2024-09-07 12:38:51,053 [main] ERROR ClassValidator - WG13 CIM enumeration <> Topology::TestEnum +2024-09-07 12:38:51,053 [main] ERROR ClassValidator - WG13 CIM enumeration <> TestEnums::EnumWithSomeIntCodes +2024-09-07 12:38:51,053 [main] ERROR ClassValidator - WG13 CIM enumeration <> TestEnums::EnumWithStringCodes +2024-09-07 12:38:51,053 [main] ERROR ClassValidator - WG13 CIM enumeration <> TestEnums::EnumWithNonUniqueCodes +2024-09-07 12:38:51,053 [main] ERROR ClassValidator - WG14 CIM enumeration <> Other::EmptyEnum +2024-09-07 12:38:51,054 [main] ERROR ClassValidator - WG14 CIM primitive <> Other::NonEmptyPrimitive +2024-09-07 12:38:51,054 [main] ERROR ClassValidator - WG14 CIM datatype <> Other::AnotherBadDatatype +2024-09-07 12:38:51,054 [main] ERROR ClassValidator - OTHER_CIM CIM enumeration <> Ext1::FruitBinKind +2024-09-07 12:38:51,054 [main] ERROR ClassValidator - WG13 CIM compound <> Core::OperatingParticipant +2024-09-07 12:38:51,054 [main] INFO AbstractValidator - +2024-09-07 12:38:51,054 [main] INFO AbstractValidator - ====== Validating 761 (of 761) attributes: +2024-09-07 12:38:51,088 [main] ERROR AttributeValidator - Found 1 enum literals that should have no type - remove type: +2024-09-07 12:38:51,088 [main] ERROR AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.VAh : type = +2024-09-07 12:38:51,088 [main] ERROR AttributeValidator - Found 4 enum literals that are missing <> stereotype - add <> stereotype: +2024-09-07 12:38:51,088 [main] ERROR AttributeValidator - WG13 CIM literal Domain::UnitSymbol.Wh : stereotype = +2024-09-07 12:38:51,088 [main] ERROR AttributeValidator - WG17 IEC61850 literal DOEnums_7_420::MaterialTransitionKind.trans1 : stereotype = +2024-09-07 12:38:51,088 [main] ERROR AttributeValidator - WG17 IEC61850 literal DOEnums_7_420::MaterialTransitionKind.trans2 : stereotype = +2024-09-07 12:38:51,089 [main] ERROR AttributeValidator - WG17 IEC61850 literal DOEnums_7_420::MaterialTransitionKind.trans3 : stereotype = +2024-09-07 12:38:51,089 [main] ERROR AttributeValidator - Found 1 attributes that use custom multiplicity format - change bounds to [0..1]: +2024-09-07 12:38:51,089 [main] ERROR AttributeValidator - WG13 CIM protected Primitive attribute Domain::AbsoluteDateTime.protectedAttribute : multiplicity = [2..5] +2024-09-07 12:38:51,089 [main] ERROR AttributeValidator - Found 3 CIM attributes that should be optional - set multiplicity lower bound to 0: +2024-09-07 12:38:51,089 [main] ERROR AttributeValidator - WG13 CIM INF Primitive attribute InformativeAndPrivate::InfClass2.isToto : multiplicity = [1..1] +2024-09-07 12:38:51,089 [main] ERROR AttributeValidator - WG13 CIM protected Primitive attribute Domain::AbsoluteDateTime.protectedAttribute : multiplicity = [2..5] +2024-09-07 12:38:51,089 [main] ERROR AttributeValidator - OTHER_CIM CIM private Primitive attribute <> Ext1::Apple.shouldNotBeEnum : multiplicity = [1..1] +2024-09-07 12:38:51,089 [main] ERROR AttributeValidator - Found 1 attributes that have as type class not in the model, or the class that may be in the model, but EA interprets the classifierID of the attribute as 0 - locate class in the model from attribute's 'Type' combo-box: +2024-09-07 12:38:51,089 [main] ERROR AttributeValidator - WG13 CIM attribute Domain::ActivePowerChangeRate.value : EA info for attr type ('dummy' (id=0)) +2024-09-07 12:38:51,089 [main] ERROR AttributeValidator - Found 57 attributes that have as type class from the model, but retained in EA as string - locate class in the model from attribute's 'Type' combo-box: +2024-09-07 12:38:51,089 [main] ERROR AttributeValidator - WG14 CIM attribute Other::MyClass.curveStyle : EA info for attr type ('CurveStyle' (id=857)) +2024-09-07 12:38:51,090 [main] ERROR AttributeValidator - WG14 CIM attribute Other::AttrDuplication.curveStyle : EA info for attr type ('CurveStyle' (id=857)) +2024-09-07 12:38:51,090 [main] ERROR AttributeValidator - WG10 IEC61850 attribute WG10::WG10UMLVersion.version : EA info for attr type ('P_VISIBLE_STRING64' (id=1665)) +2024-09-07 12:38:51,090 [main] ERROR AttributeValidator - WG10 IEC61850 attribute WG10::WG10UMLVersion.date : EA info for attr type ('P_VISIBLE_STRING64' (id=1665)) +2024-09-07 12:38:51,090 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_2::IEC61850_7_2Namespace.id : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-07 12:38:51,090 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_2::IEC61850_7_2Namespace.version : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-07 12:38:51,090 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_2::IEC61850_7_2Namespace.revision : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-07 12:38:51,090 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_2::IEC61850_7_2Namespace.date : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-07 12:38:51,090 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_2::IEC61850_7_2Namespace.name : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-07 12:38:51,090 [main] ERROR AttributeValidator - WG10 IEC61850 private attribute CoreTypes::ObjectName.val : EA info for attr type ('P_VISIBLE_STRING64' (id=1665)) +2024-09-07 12:38:51,090 [main] ERROR AttributeValidator - WG10 IEC61850 private attribute CoreTypes::P_ObjectReference.val : EA info for attr type ('P_VISIBLE_STRING129' (id=1666)) +2024-09-07 12:38:51,090 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CoreTypes::P_TimeStamp.FractionOfSecond : EA info for attr type ('P_INT24U' (id=1660)) +2024-09-07 12:38:51,091 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::FILEReference.FileRef : EA info for attr type ('P_VISIBLE_STRING129' (id=1666)) +2024-09-07 12:38:51,091 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::FILEReference.FileName : EA info for attr type ('P_VISIBLE_STRING129' (id=1666)) +2024-09-07 12:38:51,091 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::LDReference.LDRef : EA info for attr type ('P_VISIBLE_STRING129' (id=1666)) +2024-09-07 12:38:51,091 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::NonPersistentDSReference.DSRef : EA info for attr type ('P_VISIBLE_STRING129' (id=1666)) +2024-09-07 12:38:51,091 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::LNReference.LNRef : EA info for attr type ('P_VISIBLE_STRING129' (id=1666)) +2024-09-07 12:38:51,091 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::CDCReference.DataRef : EA info for attr type ('P_VISIBLE_STRING129' (id=1666)) +2024-09-07 12:38:51,091 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::CBReference.CBRef : EA info for attr type ('P_VISIBLE_STRING129' (id=1666)) +2024-09-07 12:38:51,091 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::LOGReference.LogRef : EA info for attr type ('P_VISIBLE_STRING129' (id=1666)) +2024-09-07 12:38:51,091 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::LNOwnedDSReference.DSRef : EA info for attr type ('P_VISIBLE_STRING129' (id=1666)) +2024-09-07 12:38:51,091 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::FCDReference.FCDRef : EA info for attr type ('P_VISIBLE_STRING129' (id=1666)) +2024-09-07 12:38:51,091 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::FCDReference.FCDRefWithoutFC : EA info for attr type ('P_VISIBLE_STRING129' (id=1666)) +2024-09-07 12:38:51,091 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::FCDAReference.FCDARef : EA info for attr type ('P_VISIBLE_STRING129' (id=1666)) +2024-09-07 12:38:51,091 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CommonAcsiTypes::IPAddress.address : EA info for attr type ('P_VISIBLE_STRING64' (id=1665)) +2024-09-07 12:38:51,091 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CommonAcsiTypes::MulticastAddress.address : EA info for attr type ('P_VISIBLE_STRING64' (id=1665)) +2024-09-07 12:38:51,091 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CommonAcsiTypes::MulticastAddress.priority : EA info for attr type ('P_INT8U' (id=1658)) +2024-09-07 12:38:51,091 [main] ERROR AttributeValidator - WG10 IEC61850 private attribute CommonAcsiTypes::ReportID.val : EA info for attr type ('P_VISIBLE_STRING129' (id=1666)) +2024-09-07 12:38:51,092 [main] ERROR AttributeValidator - WG10 IEC61850 attribute MetaModel::IED.name : EA info for attr type ('P_VISIBLE_STRING64' (id=1665)) +2024-09-07 12:38:51,092 [main] ERROR AttributeValidator - WG10 IEC61850 attribute MetaModel::SERVER.name : EA info for attr type ('P_VISIBLE_STRING64' (id=1665)) +2024-09-07 12:38:51,092 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_3::IEC61850_7_3Namespace.id : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-07 12:38:51,092 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_3::IEC61850_7_3Namespace.version : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-07 12:38:51,092 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_3::IEC61850_7_3Namespace.revision : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-07 12:38:51,092 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_3::IEC61850_7_3Namespace.date : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-07 12:38:51,092 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_3::IEC61850_7_3Namespace.name : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-07 12:38:51,092 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CDCStatusInfo::ACD.dirGeneral : EA info for attr type ('FaultDirection_ST_dchg' (id=2151)) +2024-09-07 12:38:51,092 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CDCAnalogueInfo::CMV.instCVal : EA info for attr type ('Vector_MX' (id=2213)) +2024-09-07 12:38:51,092 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CDCAnalogueInfo::CMV.subCVal : EA info for attr type ('Vector_SV' (id=2215)) +2024-09-07 12:38:51,092 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CDCControl::BAC.subVal : EA info for attr type ('AnalogueValue_SV' (id=2121)) +2024-09-07 12:38:51,092 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CDCStatusSet::ENG.setVal : EA info for attr type ('EnumDA_SP_dchg' (id=2147)) +2024-09-07 12:38:51,092 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CDCStatusSet::ENG._setVal : EA info for attr type ('EnumDA_SG' (id=2146)) +2024-09-07 12:38:51,092 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CDCStatusSet::ENG.__setVal : EA info for attr type ('EnumDA_SE' (id=2145)) +2024-09-07 12:38:51,092 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_4::IEC61850_7_4Namespace.id : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-07 12:38:51,092 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_4::IEC61850_7_4Namespace.version : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-07 12:38:51,093 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_4::IEC61850_7_4Namespace.revision : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-07 12:38:51,093 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_4::IEC61850_7_4Namespace.date : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-07 12:38:51,093 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_4::IEC61850_7_4Namespace.name : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-07 12:38:51,093 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LNGroupG::GGIO.DPCSO : EA info for attr type ('DPC' (id=2281)) +2024-09-07 12:38:51,093 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LNGroupP::ProtectionLN.OpCntRs : EA info for attr type ('INC' (id=2282)) +2024-09-07 12:38:51,093 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LNGroupZ::ZAXN.Amp : EA info for attr type ('MV' (id=2264)) +2024-09-07 12:38:51,093 [main] ERROR AttributeValidator - WG17 IEC61850 attribute WG17::WG17UMLVersion.version : EA info for attr type ('P_VISIBLE_STRING64' (id=1665)) +2024-09-07 12:38:51,093 [main] ERROR AttributeValidator - WG17 IEC61850 attribute WG17::WG17UMLVersion.date : EA info for attr type ('P_VISIBLE_STRING64' (id=1665)) +2024-09-07 12:38:51,093 [main] ERROR AttributeValidator - WG17 IEC61850 attribute IEC51850_7_420::IEC61850_7_420Namespace.id : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-07 12:38:51,093 [main] ERROR AttributeValidator - WG17 IEC61850 attribute IEC51850_7_420::IEC61850_7_420Namespace.version : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-07 12:38:51,093 [main] ERROR AttributeValidator - WG17 IEC61850 attribute IEC51850_7_420::IEC61850_7_420Namespace.revision : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-07 12:38:51,093 [main] ERROR AttributeValidator - WG17 IEC61850 attribute IEC51850_7_420::IEC61850_7_420Namespace.date : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-07 12:38:51,093 [main] ERROR AttributeValidator - WG17 IEC61850 attribute IEC51850_7_420::IEC61850_7_420Namespace.tissuesApplied : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-07 12:38:51,093 [main] ERROR AttributeValidator - Found 1 attributes that have a type ID with the class from the model, but the displayed string (type name) is not the name of that class - locate class in the model from attribute's 'Type' combo-box: +2024-09-07 12:38:51,093 [main] ERROR AttributeValidator - WG10 IEC61850 data object LNGroupC::CALH.ModBeh : EA info for attr type ('ERYBehaviourMode' (id=3039)); ID-based info for attr type ((3039) WG10 IEC61850 primitive CDC DerivedCDCs::EXYBehaviourMode) +2024-09-07 12:38:51,094 [main] ERROR AttributeValidator - Found 5 CIM attributes that should be public - CIM attributes that should be public: +2024-09-07 12:38:51,094 [main] ERROR AttributeValidator - WG13 CIM protected Primitive attribute Domain::AbsoluteDateTime.protectedAttribute +2024-09-07 12:38:51,094 [main] ERROR AttributeValidator - WG13 CIM private Primitive attribute Core::BaseVoltage.privateDummy +2024-09-07 12:38:51,094 [main] ERROR AttributeValidator - WG13 CIM package Primitive attribute Core::BaseVoltage.packagePrivateIsDC +2024-09-07 12:38:51,094 [main] ERROR AttributeValidator - WG13 CIM protected CIMDatatype attribute Core::BaseVoltage.protectedNominalVoltage +2024-09-07 12:38:51,094 [main] ERROR AttributeValidator - OTHER_CIM CIM private Primitive attribute <> Ext1::Apple.shouldNotBeEnum +2024-09-07 12:38:51,094 [main] ERROR AttributeValidator - Found 1 attributes that are static but not const (i.e., undefined value for all instances of the class) - make attribute const: +2024-09-07 12:38:51,094 [main] ERROR AttributeValidator - WG13 CIM enumeration attribute Domain::ActivePowerChangeRate.unit +2024-09-07 12:38:51,094 [main] ERROR AttributeValidator - Found 1 CIM attributes that are not 'static const' but have init value - remove init value OR make the attribute static const: +2024-09-07 12:38:51,094 [main] ERROR AttributeValidator - WG14 CIM enumeration attribute Other::BadDatatypes.unit +2024-09-07 12:38:51,094 [main] ERROR AttributeValidator - Found 1 attributes that are const but not static (i.e., each instance of the class has same const value) - remove const qualifier OR make attribute static: +2024-09-07 12:38:51,094 [main] ERROR AttributeValidator - WG14 CIM Compound attribute Other::AnotherBadDatatype.multiplier +2024-09-07 12:38:51,094 [main] ERROR AttributeValidator - Found 6 attributes with unallowed stereotype(s) - remove offending stereotype(s) OR use one or more of {CIM=[deprecated, informative, enum], IEC61850=[deprecated, informative, enum]}: +2024-09-07 12:38:51,094 [main] ERROR AttributeValidator - WG13 CIM literal <> Core::BreakerConfiguration.noBreaker : offending stereotypes = [European] +2024-09-07 12:38:51,094 [main] ERROR AttributeValidator - OTHER_CIM CIM literal <> Ext1::FruitBinKind.plastic : offending stereotypes = [European] +2024-09-07 12:38:51,095 [main] ERROR AttributeValidator - WG13 CIM Primitive attribute <> Domain::ActivePower.value : offending stereotypes = [custom, invalid, European] +2024-09-07 12:38:51,095 [main] ERROR AttributeValidator - WG13 CIM enumeration attribute <> Domain::ActivePower.multiplier : offending stereotypes = [European] +2024-09-07 12:38:51,095 [main] ERROR AttributeValidator - WG14 CIM Primitive attribute <> Other::AnotherBadDatatype.unit : offending stereotypes = [unallowed] +2024-09-07 12:38:51,095 [main] ERROR AttributeValidator - OTHER_CIM CIM INF Compound attribute <> Ext1::Pear.typeIsInformative : offending stereotypes = [European] +2024-09-07 12:38:51,095 [main] ERROR AttributeValidator - Found 1 attributes that have enum stereotype, but belong to a class that is not an enumerated type - remove enum stereotype: +2024-09-07 12:38:51,095 [main] ERROR AttributeValidator - OTHER_CIM CIM private Primitive attribute <> Ext1::Apple.shouldNotBeEnum +2024-09-07 12:38:51,095 [main] ERROR AttributeValidator - Found 1 CIM attributes whose type is wrongly used as type for attribute - replace attribute with association, or change type for attribute: +2024-09-07 12:38:51,095 [main] ERROR AttributeValidator - OTHER_CIM CIM INF attribute Informative::HasIllegalTypeForAttr.dummy +2024-09-07 12:38:51,095 [main] DEBUG AttributeValidator - Found 0 normative attributes whose type is an informative class - promote class to normative or make attribute informative. +2024-09-07 12:38:51,095 [main] ERROR AttributeValidator - Found 2 attribute with unallowed tag names - remove tags: +2024-09-07 12:38:51,095 [main] ERROR AttributeValidator - WG13 CIM Primitive attribute Domain::ApparentPower.value : [tag] +2024-09-07 12:38:51,096 [main] ERROR AttributeValidator - WG10 IEC61850 PackedEnumFCDA attribute CDCStatusInfo::DPS.subVal : [secondTagName] +2024-09-07 12:38:51,096 [main] ERROR AttributeValidator - Found 1 IEC61850-7-3 (FCDA) attributes that have moveAfter tag, but its value is the name of inexisting sibling attribute - set value of moveAfter tag, to an inexisting sibling attribute: +2024-09-07 12:38:51,096 [main] ERROR AttributeValidator - WG10 IEC61850 PackedEnumFCDA attribute CDCStatusInfo::DPS.subVal : inexisting sibling 'wrongsubEna', use one of [stVal, q, t, subEna, subQ, blkEna, dU, cdcNs, objRef, objName, parent] +2024-09-07 12:38:51,096 [main] WARN AttributeValidator - Found 2 attributes that have word 'flag'. - rename (by removing word 'flag') and if they are not already Boolean, change their type: +2024-09-07 12:38:51,096 [main] WARN AttributeValidator - WG13 CIM Primitive attribute Core::Bay.bayEnergyMeasFlag +2024-09-07 12:38:51,096 [main] WARN AttributeValidator - WG13 CIM Primitive attribute Core::Bay.bayPowerMeasFlag +2024-09-07 12:38:51,096 [main] WARN AttributeValidator - Found 111 attributes missing documentation - add documentation: +2024-09-07 12:38:51,096 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitMultiplier.none +2024-09-07 12:38:51,096 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::WithSingleLiteral.singleLiteral +2024-09-07 12:38:51,096 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::YesNo.Yes +2024-09-07 12:38:51,096 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::YesNo.No +2024-09-07 12:38:51,096 [main] WARN AttributeValidator - WG13 CIM literal <> Core::BreakerConfiguration.singleBreaker +2024-09-07 12:38:51,096 [main] WARN AttributeValidator - WG13 CIM literal <> Core::BreakerConfiguration.breakerAndAHalf +2024-09-07 12:38:51,096 [main] WARN AttributeValidator - WG13 CIM literal <> Core::BreakerConfiguration.doubleBreaker +2024-09-07 12:38:51,097 [main] WARN AttributeValidator - WG13 CIM literal <> Core::BreakerConfiguration.noBreaker +2024-09-07 12:38:51,097 [main] WARN AttributeValidator - WG13 CIM literal <> Core::BusbarConfiguration.singleBus +2024-09-07 12:38:51,097 [main] WARN AttributeValidator - WG13 CIM literal <> Core::BusbarConfiguration.doubleBus +2024-09-07 12:38:51,097 [main] WARN AttributeValidator - WG13 CIM literal <> Core::BusbarConfiguration.mainWithTransfer +2024-09-07 12:38:51,097 [main] WARN AttributeValidator - WG13 CIM literal <> Core::BusbarConfiguration.ringBus +2024-09-07 12:38:51,097 [main] WARN AttributeValidator - WG13 CIM literal <> Core::PhaseCode.ABCN +2024-09-07 12:38:51,097 [main] WARN AttributeValidator - WG13 CIM literal <> Core::PhaseCode.ABC +2024-09-07 12:38:51,097 [main] WARN AttributeValidator - WG13 CIM literal <> Core::PhaseCode.ABN +2024-09-07 12:38:51,097 [main] WARN AttributeValidator - WG13 CIM literal <> Core::PhaseCode.ACN +2024-09-07 12:38:51,097 [main] WARN AttributeValidator - WG13 CIM literal <> Core::PhaseCode.BCN +2024-09-07 12:38:51,097 [main] WARN AttributeValidator - WG13 CIM literal <> Core::PhaseCode.AB +2024-09-07 12:38:51,097 [main] WARN AttributeValidator - WG13 CIM literal <> Core::PhaseCode.AC +2024-09-07 12:38:51,097 [main] WARN AttributeValidator - WG13 CIM literal <> Core::PhaseCode.BC +2024-09-07 12:38:51,097 [main] WARN AttributeValidator - WG13 CIM literal <> Core::PhaseCode.AN +2024-09-07 12:38:51,097 [main] WARN AttributeValidator - WG13 CIM literal <> Core::PhaseCode.BN +2024-09-07 12:38:51,097 [main] WARN AttributeValidator - WG13 CIM literal <> Core::PhaseCode.CN +2024-09-07 12:38:51,097 [main] WARN AttributeValidator - WG13 CIM literal <> Core::PhaseCode.A +2024-09-07 12:38:51,097 [main] WARN AttributeValidator - WG13 CIM literal <> Core::PhaseCode.B +2024-09-07 12:38:51,098 [main] WARN AttributeValidator - WG13 CIM literal <> Core::PhaseCode.C +2024-09-07 12:38:51,098 [main] WARN AttributeValidator - WG13 CIM literal <> Core::PhaseCode.N +2024-09-07 12:38:51,098 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithSomeIntCodes.lit10 +2024-09-07 12:38:51,098 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithSomeIntCodes.lit20noCode +2024-09-07 12:38:51,098 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithSomeIntCodes.lit30 +2024-09-07 12:38:51,098 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithSomeIntCodes.lit40 +2024-09-07 12:38:51,098 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithSomeIntCodes.lit50 +2024-09-07 12:38:51,098 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithSomeIntCodes.lit60noCode +2024-09-07 12:38:51,098 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithSomeIntCodes.lit70 +2024-09-07 12:38:51,098 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithStringCodes.str1 +2024-09-07 12:38:51,098 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithStringCodes.str2 +2024-09-07 12:38:51,098 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithStringCodes.str3noCode +2024-09-07 12:38:51,098 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithStringCodes.str4 +2024-09-07 12:38:51,098 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithStringCodes.str5 +2024-09-07 12:38:51,098 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c1 +2024-09-07 12:38:51,098 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c2 +2024-09-07 12:38:51,098 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c3 +2024-09-07 12:38:51,098 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c4 +2024-09-07 12:38:51,099 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c5 +2024-09-07 12:38:51,099 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c6 +2024-09-07 12:38:51,099 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c7 +2024-09-07 12:38:51,099 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c8 +2024-09-07 12:38:51,099 [main] WARN AttributeValidator - OTHER_CIM CIM literal <> Ext1::FruitBinKind.plastic +2024-09-07 12:38:51,099 [main] WARN AttributeValidator - OTHER_CIM CIM literal <> Ext1::FruitBinKind.straw +2024-09-07 12:38:51,099 [main] WARN AttributeValidator - OTHER_CIM CIM literal <> Ext1::FruitBinKind.glass +2024-09-07 12:38:51,100 [main] WARN AttributeValidator - WG13 CIM Primitive attribute Topology::TopologicalIsland.constrained5 +2024-09-07 12:38:51,100 [main] WARN AttributeValidator - WG13 CIM Primitive attribute Topology::TopologicalIsland.nonConstrained +2024-09-07 12:38:51,100 [main] WARN AttributeValidator - WG14 CIM Primitive attribute Other::MyClass.value +2024-09-07 12:38:51,100 [main] WARN AttributeValidator - WG14 CIM Primitive attribute Other::Equipment.myExtension +2024-09-07 12:38:51,100 [main] WARN AttributeValidator - WG14 CIM Primitive attribute Other::NonEmptyPrimitive.value +2024-09-07 12:38:51,100 [main] WARN AttributeValidator - WG10 IEC61850 attribute WG10::WG10UMLVersion.version +2024-09-07 12:38:51,100 [main] WARN AttributeValidator - WG10 IEC61850 attribute WG10::WG10UMLVersion.date +2024-09-07 12:38:51,100 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenCommonDataClass.CDC-ID +2024-09-07 12:38:51,100 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenConstructedType.DA-ID +2024-09-07 12:38:51,100 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenDataAttribute.DAName +2024-09-07 12:38:51,100 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenDataAttribute.DARef +2024-09-07 12:38:51,100 [main] WARN AttributeValidator - WG10 IEC61850 enumeration attribute GenericModel::GenDataAttribute.FC +2024-09-07 12:38:51,100 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenDataAttribute.TrgOp +2024-09-07 12:38:51,101 [main] WARN AttributeValidator - WG10 IEC61850 enumeration attribute GenericModel::GenDataAttribute.Presence +2024-09-07 12:38:51,101 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenDataObject.DOName +2024-09-07 12:38:51,101 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenDataObject.DORef +2024-09-07 12:38:51,101 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenDataObject.Transient +2024-09-07 12:38:51,101 [main] WARN AttributeValidator - WG10 IEC61850 enumeration attribute GenericModel::GenDataObject.Presence +2024-09-07 12:38:51,101 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenDataSet.DSName +2024-09-07 12:38:51,101 [main] WARN AttributeValidator - WG10 IEC61850 enumeration attribute GenericModel::GenFCD.FC +2024-09-07 12:38:51,101 [main] WARN AttributeValidator - WG10 IEC61850 enumeration attribute GenericModel::GenFCDA.FC +2024-09-07 12:38:51,101 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenFile.FileRef +2024-09-07 12:38:51,101 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenFile.FileSize +2024-09-07 12:38:51,101 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenFile.LastModified +2024-09-07 12:38:51,101 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenLogicalDevice.LDName +2024-09-07 12:38:51,101 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenLogicalNode.LNName +2024-09-07 12:38:51,101 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenLogicalNode.LNRef +2024-09-07 12:38:51,101 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenSubDataAttribute.SubDAName +2024-09-07 12:38:51,101 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenSubDataAttribute.SubDARef +2024-09-07 12:38:51,101 [main] WARN AttributeValidator - WG10 IEC61850 enumeration attribute GenericModel::GenSubDataAttribute.FC +2024-09-07 12:38:51,101 [main] WARN AttributeValidator - WG10 IEC61850 enumeration attribute GenericModel::GenSubDataAttribute.Presence +2024-09-07 12:38:51,102 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenSubDataObject.SDOName +2024-09-07 12:38:51,102 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenSubDataObject.SDORef +2024-09-07 12:38:51,102 [main] WARN AttributeValidator - WG10 IEC61850 enumeration attribute GenericModel::GenSubDataObject.Presence +2024-09-07 12:38:51,102 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenTPAA.AssociationId +2024-09-07 12:38:51,102 [main] WARN AttributeValidator - WG10 IEC61850 attribute IEC61850_7_2::IEC61850_7_2Namespace.id +2024-09-07 12:38:51,102 [main] WARN AttributeValidator - WG10 IEC61850 attribute IEC61850_7_2::IEC61850_7_2Namespace.version +2024-09-07 12:38:51,102 [main] WARN AttributeValidator - WG10 IEC61850 attribute IEC61850_7_2::IEC61850_7_2Namespace.revision +2024-09-07 12:38:51,102 [main] WARN AttributeValidator - WG10 IEC61850 attribute IEC61850_7_2::IEC61850_7_2Namespace.date +2024-09-07 12:38:51,102 [main] WARN AttributeValidator - WG10 IEC61850 attribute IEC61850_7_2::IEC61850_7_2Namespace.name +2024-09-07 12:38:51,102 [main] WARN AttributeValidator - WG10 IEC61850 enumeration attribute ObjectReferences::LOGReference.FC +2024-09-07 12:38:51,102 [main] WARN AttributeValidator - WG10 IEC61850 attribute IEC61850_7_3::IEC61850_7_3Namespace.id +2024-09-07 12:38:51,102 [main] WARN AttributeValidator - WG10 IEC61850 attribute IEC61850_7_3::IEC61850_7_3Namespace.version +2024-09-07 12:38:51,102 [main] WARN AttributeValidator - WG10 IEC61850 attribute IEC61850_7_3::IEC61850_7_3Namespace.revision +2024-09-07 12:38:51,102 [main] WARN AttributeValidator - WG10 IEC61850 attribute IEC61850_7_3::IEC61850_7_3Namespace.date +2024-09-07 12:38:51,102 [main] WARN AttributeValidator - WG10 IEC61850 attribute IEC61850_7_4::IEC61850_7_4Namespace.id +2024-09-07 12:38:51,102 [main] WARN AttributeValidator - WG10 IEC61850 attribute IEC61850_7_4::IEC61850_7_4Namespace.version +2024-09-07 12:38:51,102 [main] WARN AttributeValidator - WG10 IEC61850 attribute IEC61850_7_4::IEC61850_7_4Namespace.revision +2024-09-07 12:38:51,102 [main] WARN AttributeValidator - WG10 IEC61850 attribute IEC61850_7_4::IEC61850_7_4Namespace.date +2024-09-07 12:38:51,103 [main] WARN AttributeValidator - WG10 IEC61850 attribute IEC61850_7_4::IEC61850_7_4Namespace.name +2024-09-07 12:38:51,103 [main] WARN AttributeValidator - WG10 IEC61850 enumerated DO LNGroupL::LLN0.Beh +2024-09-07 12:38:51,103 [main] WARN AttributeValidator - WG17 IEC61850 attribute WG17::WG17UMLVersion.version +2024-09-07 12:38:51,103 [main] WARN AttributeValidator - WG17 IEC61850 attribute WG17::WG17UMLVersion.date +2024-09-07 12:38:51,103 [main] WARN AttributeValidator - WG17 IEC61850 attribute IEC51850_7_420::IEC61850_7_420Namespace.id +2024-09-07 12:38:51,103 [main] WARN AttributeValidator - WG17 IEC61850 attribute IEC51850_7_420::IEC61850_7_420Namespace.version +2024-09-07 12:38:51,103 [main] WARN AttributeValidator - WG17 IEC61850 attribute IEC51850_7_420::IEC61850_7_420Namespace.revision +2024-09-07 12:38:51,103 [main] WARN AttributeValidator - WG17 IEC61850 attribute IEC51850_7_420::IEC61850_7_420Namespace.date +2024-09-07 12:38:51,103 [main] WARN AttributeValidator - WG17 IEC61850 attribute IEC51850_7_420::IEC61850_7_420Namespace.tissuesApplied +2024-09-07 12:38:51,103 [main] WARN AttributeValidator - WG17 IEC61850 enumeration attribute DerivedDAs_7_420::Other.val +2024-09-07 12:38:51,103 [main] WARN AttributeValidator - OTHER_CIM CIM private Primitive attribute <> Ext1::Apple.shouldNotBeEnum +2024-09-07 12:38:51,103 [main] WARN AttributeValidator - OTHER_CIM CIM CIMDatatype attribute Package with space::My class._attr +2024-09-07 12:38:51,103 [main] WARN AttributeValidator - Found 5 attributes whose documentation starts with unallowed character - fix the first character: valid ones are any upper case letter or punctuation marks [', ", (]: +2024-09-07 12:38:51,103 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.s-1 : doc='per second' +2024-09-07 12:38:51,103 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.Hz-1 : doc='per Hertz' +2024-09-07 12:38:51,103 [main] WARN AttributeValidator - WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.ppm : doc='ppm' +2024-09-07 12:38:51,103 [main] WARN AttributeValidator - WG13 CIM CIMDatatype attribute Core::BasePower.basePower : doc='definition of base power.' +2024-09-07 12:38:51,104 [main] WARN AttributeValidator - WG10 IEC61850 attribute ObjectReferences::FILEReference.FileName : doc='name of a FILE instance, unamb...' +2024-09-07 12:38:51,104 [main] WARN AttributeValidator - Found 62 attributes whose documentation does not end with a dot ('.') - fix the last character: add a dot: +2024-09-07 12:38:51,104 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::Currency.USD : doc='US dollar' +2024-09-07 12:38:51,104 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::Currency.EUR : doc='European euro' +2024-09-07 12:38:51,104 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::Currency.AUD : doc='Australian dollar' +2024-09-07 12:38:51,104 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::Currency.CAD : doc='Canadian dollar' +2024-09-07 12:38:51,104 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::Currency.CHF : doc='Swiss francs' +2024-09-07 12:38:51,104 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::Currency.CNY : doc='Chinese yuan renminbi' +2024-09-07 12:38:51,104 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::Currency.DKK : doc='Danish crown' +2024-09-07 12:38:51,104 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::Currency.GBP : doc='British pound' +2024-09-07 12:38:51,104 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::Currency.JPY : doc='Japanese yen' +2024-09-07 12:38:51,104 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::Currency.NOK : doc='Norwegian crown' +2024-09-07 12:38:51,104 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::Currency.RUR : doc='Russian ruble' +2024-09-07 12:38:51,104 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::Currency.SEK : doc='Swedish crown' +2024-09-07 12:38:51,104 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::Currency.INR : doc='India rupees' +2024-09-07 12:38:51,105 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitMultiplier.p : doc='Pico 10-12' +2024-09-07 12:38:51,105 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitMultiplier.n : doc='Nano 10-9' +2024-09-07 12:38:51,105 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitMultiplier.micro : doc='Micro 10**-6' +2024-09-07 12:38:51,105 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitMultiplier.m : doc='Milli 10**-3' +2024-09-07 12:38:51,105 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitMultiplier.c : doc='Centi 10**-2' +2024-09-07 12:38:51,105 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitMultiplier.d : doc='Deci 10**-1' +2024-09-07 12:38:51,105 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitMultiplier.k : doc='Kilo 10**3' +2024-09-07 12:38:51,105 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitMultiplier.M : doc='Mega 10**6' +2024-09-07 12:38:51,105 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitMultiplier.G : doc='Giga 10**9' +2024-09-07 12:38:51,105 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitMultiplier.T : doc='Tera 10**12' +2024-09-07 12:38:51,105 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.VA : doc='Apparent power in volt ampere' +2024-09-07 12:38:51,105 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.W : doc='Active power in watt' +2024-09-07 12:38:51,105 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.VAr : doc='... power in volt ampere reactive' +2024-09-07 12:38:51,105 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.VAh : doc='...nt energy in volt ampere hours' +2024-09-07 12:38:51,105 [main] WARN AttributeValidator - WG13 CIM literal Domain::UnitSymbol.Wh : doc='Real energy in what hours' +2024-09-07 12:38:51,105 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.VArh : doc='... in volt ampere reactive hours' +2024-09-07 12:38:51,106 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.V : doc='Voltage in volt' +2024-09-07 12:38:51,106 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.ohm : doc='Resistance in ohm' +2024-09-07 12:38:51,106 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.A : doc='Current in ampere' +2024-09-07 12:38:51,106 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.F : doc='Capacitance in farad' +2024-09-07 12:38:51,106 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.H : doc='Inductance in henry' +2024-09-07 12:38:51,106 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.ºC : doc='...temperature in degrees Celsius' +2024-09-07 12:38:51,106 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.s : doc='Time in seconds' +2024-09-07 12:38:51,106 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.min : doc='Time in minutes' +2024-09-07 12:38:51,106 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.h : doc='Time in hours' +2024-09-07 12:38:51,106 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.deg : doc='Plane angle in degrees' +2024-09-07 12:38:51,106 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.rad : doc='Plane angle in radians' +2024-09-07 12:38:51,106 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.J : doc='Energy in joule' +2024-09-07 12:38:51,106 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.N : doc='Force in newton' +2024-09-07 12:38:51,106 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.S : doc='Conductance in siemens' +2024-09-07 12:38:51,106 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.Hz : doc='Frequency in hertz' +2024-09-07 12:38:51,106 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.g : doc='Mass in gram' +2024-09-07 12:38:51,106 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.Pa : doc='Pressure in pascal (n/m2)' +2024-09-07 12:38:51,106 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.m : doc='Length in meter' +2024-09-07 12:38:51,107 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.m2 : doc='Area in square meters' +2024-09-07 12:38:51,107 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.m3 : doc='Volume in cubic meters' +2024-09-07 12:38:51,107 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.V/VAr : doc='Volt per volt ampere reactive' +2024-09-07 12:38:51,107 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.W/Hz : doc='Watt per hertz' +2024-09-07 12:38:51,107 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.J/s : doc='Joule per second' +2024-09-07 12:38:51,107 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.s-1 : doc='per second' +2024-09-07 12:38:51,107 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.kg/J : doc='Mass per energy' +2024-09-07 12:38:51,107 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.W/s : doc='Watt per second' +2024-09-07 12:38:51,107 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.Hz-1 : doc='per Hertz' +2024-09-07 12:38:51,107 [main] WARN AttributeValidator - WG13 CIM literal <> Topology::TestEnum.µ : doc='(note) bold µ' +2024-09-07 12:38:51,107 [main] WARN AttributeValidator - WG13 CIM Primitive attribute Core::Terminal.connected : doc='... other aspect of the algorithm' +2024-09-07 12:38:51,107 [main] WARN AttributeValidator - WG13 CIM CIMDatatype attribute Core::VoltageLevel.highVoltageLimit : doc='...e bus bar's high voltage limit' +2024-09-07 12:38:51,107 [main] WARN AttributeValidator - WG13 CIM CIMDatatype attribute Core::VoltageLevel.lowVoltageLimit : doc='...he bus bar's low voltage limit' +2024-09-07 12:38:51,107 [main] WARN AttributeValidator - WG14 CIM CIMDatatype attribute IEC61968::IEC61968Version.date : doc='...09-01-05 (not ending with dot)' +2024-09-07 12:38:51,107 [main] WARN AttributeValidator - WG10 IEC61850 basic attribute ObjectReferences::FCDAReference.NumArrayElement : doc='...AttributeName(NumArrayElement)' +2024-09-07 12:38:51,107 [main] ERROR AttributeValidator - Found 11 CIM attributes whose name contains illegal character(s) - rename by removing invalid character(s): +2024-09-07 12:38:51,108 [main] ERROR AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.ºC : invalid characters = [º] +2024-09-07 12:38:51,108 [main] ERROR AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.V/VAr : invalid characters = [/] +2024-09-07 12:38:51,108 [main] ERROR AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.W/Hz : invalid characters = [/] +2024-09-07 12:38:51,108 [main] ERROR AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.J/s : invalid characters = [/] +2024-09-07 12:38:51,108 [main] ERROR AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.s-1 : invalid characters = [-] +2024-09-07 12:38:51,108 [main] ERROR AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.kg/J : invalid characters = [/] +2024-09-07 12:38:51,108 [main] ERROR AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.W/s : invalid characters = [/] +2024-09-07 12:38:51,108 [main] ERROR AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.Hz-1 : invalid characters = [-] +2024-09-07 12:38:51,108 [main] ERROR AttributeValidator - WG13 CIM literal <> Topology::TestEnum.J/m² : invalid characters = [/, ²] +2024-09-07 12:38:51,108 [main] ERROR AttributeValidator - WG13 CIM literal <> Topology::TestEnum.µ : invalid characters = [µ] +2024-09-07 12:38:51,108 [main] ERROR AttributeValidator - OTHER_CIM CIM CIMDatatype attribute Package with space::My class._attr : invalid characters = [_] +2024-09-07 12:38:51,108 [main] DEBUG AttributeValidator - Found 0 IEC61850 attributes whose name contains illegal character(s) - rename by removing invalid character(s). +2024-09-07 12:38:51,108 [main] ERROR AttributeValidator - Found 3 IEC61850-7-4xx attributes (DO) that have too long name - rename the DO: +2024-09-07 12:38:51,108 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LogicalNodes::EquipmentInterfaceLN.EEHealthAlmClc : (+2) +2024-09-07 12:38:51,108 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LNGroupL::LPHD.RsStatAlmMthClc : (+3) +2024-09-07 12:38:51,109 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LNGroupL::LPHD.StatAlmMthClc : (+1) +2024-09-07 12:38:51,109 [main] ERROR AttributeValidator - Found 1 IEC61850-7-3 (FCDA) multi-valued attributes that are missing minIdx and/or maxIdx constraint(s) - add the missing attribute constraint(s): +2024-09-07 12:38:51,109 [main] ERROR AttributeValidator - WG10 IEC61850 FCDA attribute CDCStatusInfo::HST.hstVal : missing minIdx +2024-09-07 12:38:51,109 [main] ERROR AttributeValidator - Found 1 attributes (whose type is enumerated type) that use an inexisting enum literal as initial value - change initial value to an existing enum literal: +2024-09-07 12:38:51,109 [main] ERROR AttributeValidator - WG14 CIM enumeration attribute Other::BadDatatypes.unit : valid literals = [VA, W, VAr, VAh, Wh, VArh, V, ohm, A, F, H, ºC, s, min, h, deg, rad, J, N, S, none, Hz, g, Pa, m, m2, m3, V/VAr, W/Hz, J/s, s-1, kg/J, W/s, Hz-1] +2024-09-07 12:38:51,109 [main] ERROR AttributeValidator - Found 35 (GROUP 1) IEC61850-7-4xx (DO) attributes with names containing undefined abbreviations - add missing abbreviation OR rename the DO (and create a Tissue): +2024-09-07 12:38:51,109 [main] ERROR AttributeValidator - WG10 IEC61850 data object LogicalNodes::DomainLN.NamPlt : [{NamPlt=?}] +2024-09-07 12:38:51,109 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LogicalNodes::DomainLN.Health : [{Health=?}] +2024-09-07 12:38:51,110 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LogicalNodes::DomainLN.Mod : [{Mod=?}] +2024-09-07 12:38:51,110 [main] ERROR AttributeValidator - WG10 IEC61850 data object LogicalNodes::DomainLN.CntRs : [{CntRs=?}] +2024-09-07 12:38:51,110 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LogicalNodes::StatisticsLN.ClcExp : [{ClcExp=?}] +2024-09-07 12:38:51,110 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LogicalNodes::StatisticsLN.ClcMth : [{ClcMth=?}] +2024-09-07 12:38:51,110 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LogicalNodes::EquipmentInterfaceLN.EEHealthAlmClc : [{EEHealth=?}, {Alm=Alarm}, {Clc=?}] +2024-09-07 12:38:51,110 [main] ERROR AttributeValidator - WG10 IEC61850 data object LNGroupL::KXYZ.TotW : [{TotW=?}] +2024-09-07 12:38:51,110 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LNGroupL::KXYZ.WrongA : [{Wrong=?}, {A=Current}] +2024-09-07 12:38:51,110 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LNGroupL::KXYZ.CorrectA : [{Correct=?}, {A=Current}] +2024-09-07 12:38:51,110 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LNGroupL::LPHD.PhyHealth : [{PhyHealth=?}] +2024-09-07 12:38:51,110 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LNGroupL::LPHD.RsStatAlmMthClc : [{RsStat=?}, {Alm=Alarm}, {MthClc=?}] +2024-09-07 12:38:51,110 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LNGroupL::LPHD.StatAlmMthClc : [{Stat=?}, {Alm=Alarm}, {MthClc=?}] +2024-09-07 12:38:51,110 [main] ERROR AttributeValidator - WG10 IEC61850 data object LNGroupL::LLN0.NamPlt : [{NamPlt=?}] +2024-09-07 12:38:51,110 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LNGroupL::LLN0.Beh : [{Beh=?}] +2024-09-07 12:38:51,110 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LNGroupL::LLN0.Health : [{Health=?}] +2024-09-07 12:38:51,110 [main] ERROR AttributeValidator - WG10 IEC61850 data object LNGroupC::CALH.GrAlm : [{Gr=?}, {Alm=Alarm}] +2024-09-07 12:38:51,111 [main] ERROR AttributeValidator - WG10 IEC61850 data object LNGroupC::CALH.GrWrn : [{GrWrn=?}] +2024-09-07 12:38:51,111 [main] ERROR AttributeValidator - WG10 IEC61850 data object LNGroupC::CALH.ModBeh : [{ModBeh=?}] +2024-09-07 12:38:51,111 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LNGroupG::GGIO.EEHealth : [{EEHealth=?}] +2024-09-07 12:38:51,111 [main] ERROR AttributeValidator - WG10 IEC61850 data object LNGroupG::GGIO.AnIn : [{A=Current}, {nIn=?}] +2024-09-07 12:38:51,111 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LNGroupG::GGIO.DPCSO : [{DPCSO=?}] +2024-09-07 12:38:51,111 [main] ERROR AttributeValidator - WG10 IEC61850 data object LNGroupM::MMXU.TotW : [{TotW=?}] +2024-09-07 12:38:51,111 [main] ERROR AttributeValidator - WG10 IEC61850 data object LNGroupM::MMXU.Desc : [{Desc=?}] +2024-09-07 12:38:51,111 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LNGroupP::ProtectionLN.OpCntRs : [{OpCntRs=?}] +2024-09-07 12:38:51,111 [main] ERROR AttributeValidator - WG10 IEC61850 data object LNGroupP::PDIF.Str : [{Str=?}] +2024-09-07 12:38:51,111 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LNGroupP::PDIF.Op : [{Op=?}] +2024-09-07 12:38:51,112 [main] ERROR AttributeValidator - WG10 IEC61850 data object LNGroupP::PDIS.Str : [{Str=?}] +2024-09-07 12:38:51,112 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LNGroupP::PDIS.Op : [{Op=?}] +2024-09-07 12:38:51,112 [main] ERROR AttributeValidator - WG10 IEC61850 data object LNGroupR::RDIR.Dir : [{Dir=?}] +2024-09-07 12:38:51,112 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LNGroupR::RDIR.TotW : [{TotW=?}] +2024-09-07 12:38:51,112 [main] ERROR AttributeValidator - WG10 IEC61850 data object LNGroupZ::ZAXN.Vol : [{Vol=?}] +2024-09-07 12:38:51,112 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LNGroupZ::ZAXN.Mat : [{Mat=?}] +2024-09-07 12:38:51,112 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LNGroupZ::ZAXN.MatCtl : [{MatCtl=?}] +2024-09-07 12:38:51,113 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LNGroupZ::ZAXN.Oth : [{Oth=?}] +2024-09-07 12:38:51,113 [main] ERROR AttributeValidator - Found 4 CIM attributes whose name starts with an upper case letter - rename attribute(s) to start with lower case letter: +2024-09-07 12:38:51,113 [main] ERROR AttributeValidator - WG13 CIM literal <> Domain::YesNo.Yes +2024-09-07 12:38:51,113 [main] ERROR AttributeValidator - WG13 CIM literal <> Domain::YesNo.No +2024-09-07 12:38:51,113 [main] ERROR AttributeValidator - WG13 CIM literal <> Topology::TestEnum.J/m² +2024-09-07 12:38:51,113 [main] ERROR AttributeValidator - WG13 CIM enumeration attribute Core::Bay.TestYesNo1 +2024-09-07 12:38:51,113 [main] ERROR AttributeValidator - Found 2 CIM attributes that should be singular - rename attribute to singular: +2024-09-07 12:38:51,113 [main] ERROR AttributeValidator - WG13 CIM literal <> Domain::YesNo.Yes +2024-09-07 12:38:51,113 [main] ERROR AttributeValidator - WG13 CIM enumeration attribute Core::ConductingEquipment.phases +2024-09-07 12:38:51,113 [main] WARN AttributeValidator - Found 3 CIM attributes whose name starts with the name of containing class - this is considered redundant, rename attribute by removing the containing class name at the start: +2024-09-07 12:38:51,113 [main] WARN AttributeValidator - WG13 CIM CIMDatatype attribute Core::BasePower.basePower +2024-09-07 12:38:51,113 [main] WARN AttributeValidator - WG13 CIM Primitive attribute Core::Bay.bayEnergyMeasFlag +2024-09-07 12:38:51,114 [main] WARN AttributeValidator - WG13 CIM Primitive attribute Core::Bay.bayPowerMeasFlag +2024-09-07 12:38:51,114 [main] ERROR AttributeValidator - Found 3 abbreviation terms starting with lower case letter; cannot be used as first term in DO name - rename it to start with upper case letter: +2024-09-07 12:38:51,114 [main] ERROR AttributeValidator - WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.aDummy +2024-09-07 12:38:51,114 [main] ERROR AttributeValidator - WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.ppm +2024-09-07 12:38:51,114 [main] ERROR AttributeValidator - WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.km +2024-09-07 12:38:51,114 [main] ERROR AttributeValidator - Found 1 IEC61850-7-4xx (DO) attributes with name starting with lower case letter - rename it to start with upper case letter: +2024-09-07 12:38:51,114 [main] ERROR AttributeValidator - WG10 IEC61850 data object LNGroupL::KXYZ.aDummyAlm +2024-09-07 12:38:51,114 [main] ERROR AttributeValidator - Found 61 attributes with type from prohibited owner according to standard IEC TC57 rules (wrong direction for dependency) - change attribute type OR move the containing class to that owner: +2024-09-07 12:38:51,114 [main] ERROR AttributeValidator - WG13 CIM attribute Domain::ActivePowerChangeRate.value : offending type = NullCIM::NullCIM +2024-09-07 12:38:51,114 [main] ERROR AttributeValidator - WG14 CIM attribute Other::MyClass.curveStyle : offending type = NullCIM::NullCIM +2024-09-07 12:38:51,114 [main] ERROR AttributeValidator - WG14 CIM attribute Other::AttrDuplication.curveStyle : offending type = NullCIM::NullCIM +2024-09-07 12:38:51,114 [main] ERROR AttributeValidator - WG10 IEC61850 attribute WG10::WG10UMLVersion.version : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,115 [main] ERROR AttributeValidator - WG10 IEC61850 attribute WG10::WG10UMLVersion.date : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,115 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_2::IEC61850_7_2Namespace.id : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,115 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_2::IEC61850_7_2Namespace.version : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,115 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_2::IEC61850_7_2Namespace.revision : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,115 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_2::IEC61850_7_2Namespace.date : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,115 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_2::IEC61850_7_2Namespace.name : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,115 [main] ERROR AttributeValidator - WG10 IEC61850 private attribute CoreTypes::ObjectName.val : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,115 [main] ERROR AttributeValidator - WG10 IEC61850 private attribute CoreTypes::P_ObjectReference.val : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,115 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CoreTypes::P_TimeStamp.FractionOfSecond : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,115 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::FILEReference.FileRef : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,115 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::FILEReference.FileName : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,116 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::LDReference.LDRef : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,116 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::NonPersistentDSReference.DSRef : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,116 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::LNReference.LNRef : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,116 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::CDCReference.DataRef : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,116 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::CBReference.CBRef : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,117 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::LOGReference.LogRef : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,117 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::LNOwnedDSReference.DSRef : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,117 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::FCDReference.FCDRef : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,117 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::FCDReference.FCDRefWithoutFC : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,117 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::FCDAReference.FCDARef : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,117 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CommonAcsiTypes::IPAddress.address : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,117 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CommonAcsiTypes::MulticastAddress.address : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,117 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CommonAcsiTypes::MulticastAddress.priority : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,117 [main] ERROR AttributeValidator - WG10 IEC61850 private attribute CommonAcsiTypes::ReportID.val : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,117 [main] ERROR AttributeValidator - WG10 IEC61850 attribute MetaModel::IED.name : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,118 [main] ERROR AttributeValidator - WG10 IEC61850 attribute MetaModel::SERVER.name : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,118 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_3::IEC61850_7_3Namespace.id : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,118 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_3::IEC61850_7_3Namespace.version : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,118 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_3::IEC61850_7_3Namespace.revision : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,118 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_3::IEC61850_7_3Namespace.date : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,118 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_3::IEC61850_7_3Namespace.name : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,118 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CDCStatusInfo::ACD.dirGeneral : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,118 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CDCAnalogueInfo::CMV.instCVal : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,118 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CDCAnalogueInfo::CMV.subCVal : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,118 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CDCControl::BAC.subVal : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,118 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CDCStatusSet::ENG.setVal : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,118 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CDCStatusSet::ENG._setVal : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,118 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CDCStatusSet::ENG.__setVal : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,118 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_4::IEC61850_7_4Namespace.id : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,118 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_4::IEC61850_7_4Namespace.version : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,118 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_4::IEC61850_7_4Namespace.revision : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,118 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_4::IEC61850_7_4Namespace.date : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,118 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_4::IEC61850_7_4Namespace.name : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,119 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LNGroupG::GGIO.DPCSO : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,119 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LNGroupP::ProtectionLN.OpCntRs : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,119 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LNGroupZ::ZAXN.Amp : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,119 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LNGroupZ::ZAXN.Mat : offending type = DerivedCDCs_7_420::ENSMaterial +2024-09-07 12:38:51,119 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LNGroupZ::ZAXN.MatCtl : offending type = DerivedCDCs_7_420::ENCMaterial +2024-09-07 12:38:51,119 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LNGroupZ::ZAXN.Oth : offending type = DerivedCDCs_7_420::ENSOther +2024-09-07 12:38:51,119 [main] ERROR AttributeValidator - WG17 IEC61850 attribute WG17::WG17UMLVersion.version : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,119 [main] ERROR AttributeValidator - WG17 IEC61850 attribute WG17::WG17UMLVersion.date : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,119 [main] ERROR AttributeValidator - WG17 IEC61850 attribute IEC51850_7_420::IEC61850_7_420Namespace.id : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,119 [main] ERROR AttributeValidator - WG17 IEC61850 attribute IEC51850_7_420::IEC61850_7_420Namespace.version : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,119 [main] ERROR AttributeValidator - WG17 IEC61850 attribute IEC51850_7_420::IEC61850_7_420Namespace.revision : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,119 [main] ERROR AttributeValidator - WG17 IEC61850 attribute IEC51850_7_420::IEC61850_7_420Namespace.date : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,119 [main] ERROR AttributeValidator - WG17 IEC61850 attribute IEC51850_7_420::IEC61850_7_420Namespace.tissuesApplied : offending type = NullIEC61850::NullIEC61850 +2024-09-07 12:38:51,120 [main] ERROR AttributeValidator - Found 2 (GROUP 2) IEC61850-7-4xx abbreviations present more than once - consolidate all definitions into one abbreviation OR create new abbreviation if definitions differ: +2024-09-07 12:38:51,120 [main] ERROR AttributeValidator - 1 WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.Amp : all definitions for the same name = [{WG10: Current non-phase-related}, {WG18: Duplicated definition: Current non-phase-related}] +2024-09-07 12:38:51,120 [main] ERROR AttributeValidator - 1 WG18 IEC61850 abbreviated term <> Abbreviations_410::AbbrTermA.Amp : all definitions for the same name = [{WG10: Current non-phase-related}, {WG18: Duplicated definition: Current non-phase-related}] +2024-09-07 12:38:51,120 [main] ERROR AttributeValidator - Found 2 (GROUP 5) IEC61850-7-4xx abbreviations with same definition - consolidate all definitions into one abbreviation OR create new abbreviation if definitions differ: +2024-09-07 12:38:51,120 [main] ERROR AttributeValidator - 1 Alarm : all terms for the same definition = [{WG10: Alm}, {WG18: Alm2}] +2024-09-07 12:38:51,120 [main] ERROR AttributeValidator - 1 Alarm : all terms for the same definition = [{WG10: Alm}, {WG18: Alm2}] +2024-09-07 12:38:51,120 [main] ERROR AttributeValidator - Found 8 (GROUP 3) IEC61850-7-4xx abbreviations never used (in name of DO attributes for the chosen scope) - remove unused abbreviations: +2024-09-07 12:38:51,120 [main] ERROR AttributeValidator - WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.Z +2024-09-07 12:38:51,120 [main] ERROR AttributeValidator - WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.Z1 +2024-09-07 12:38:51,120 [main] ERROR AttributeValidator - WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.ppm +2024-09-07 12:38:51,120 [main] ERROR AttributeValidator - WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.km +2024-09-07 12:38:51,120 [main] ERROR AttributeValidator - WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermZ.Z0 +2024-09-07 12:38:51,121 [main] ERROR AttributeValidator - WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermZ.Zro +2024-09-07 12:38:51,121 [main] ERROR AttributeValidator - WG18 IEC61850 abbreviated term <> Abbreviations_410::AbbrTermA.Abc +2024-09-07 12:38:51,121 [main] ERROR AttributeValidator - WG18 IEC61850 abbreviated term <> Abbreviations_410::AbbrTermA.Alm2 +2024-09-07 12:38:51,121 [main] ERROR AttributeValidator - Found 3 IEC61850-7-4xx (DO) attributes with same names but different type (CDC) - rename (DO) attribute OR change its type (CDC): +2024-09-07 12:38:51,121 [main] ERROR AttributeValidator - 1 TotW : [[WG10 LNGroupL::KXYZ.TotW, WG10 LNGroupM::MMXU.TotW] are CMV, [WG10 LNGroupR::RDIR.TotW] is SPSTransient] +2024-09-07 12:38:51,121 [main] ERROR AttributeValidator - 1 TotW : [[WG10 LNGroupL::KXYZ.TotW, WG10 LNGroupM::MMXU.TotW] are CMV, [WG10 LNGroupR::RDIR.TotW] is SPSTransient] +2024-09-07 12:38:51,121 [main] ERROR AttributeValidator - 1 TotW : [[WG10 LNGroupL::KXYZ.TotW, WG10 LNGroupM::MMXU.TotW] are CMV, [WG10 LNGroupR::RDIR.TotW] is SPSTransient] +2024-09-07 12:38:51,121 [main] ERROR AttributeValidator - Found 7 IEC61850 presence condition literals never used as class constraints - if also not used in the larger scope: remove unused presence condition literals: +2024-09-07 12:38:51,121 [main] ERROR AttributeValidator - WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.AllOnlyOneGroup(n) +2024-09-07 12:38:51,121 [main] ERROR AttributeValidator - WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.OFsg +2024-09-07 12:38:51,121 [main] ERROR AttributeValidator - WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MFsgAtLeastOne +2024-09-07 12:38:51,121 [main] ERROR AttributeValidator - WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.OFnsg +2024-09-07 12:38:51,121 [main] ERROR AttributeValidator - WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MFnsgAtLeastOne +2024-09-07 12:38:51,121 [main] ERROR AttributeValidator - WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.Mmulti +2024-09-07 12:38:51,121 [main] ERROR AttributeValidator - WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.OF(condID) +2024-09-07 12:38:51,122 [main] INFO AbstractValidator - +2024-09-07 12:38:51,122 [main] INFO AbstractValidator - ====== Validating 14 (of 14) operations: +2024-09-07 12:38:51,124 [main] WARN OperationValidator - Found 1 operations that should have name starting with lower case - operations that should have name starting with lower case: +2024-09-07 12:38:51,124 [main] WARN OperationValidator - WG13 CIM operation PowerSystemResource.GetWhatevers +2024-09-07 12:38:51,124 [main] ERROR OperationValidator - Found 1 operations with unallowed stereotype(s) - remove offending stereotype(s) OR use one or more of {CIM=[deprecated, informative, event], IEC61850=[deprecated, informative, event]}: +2024-09-07 12:38:51,124 [main] ERROR OperationValidator - WG13 CIM operation <> PowerSystemResource.setSomething : offending stereotypes = [someStereotype] +2024-09-07 12:38:51,124 [main] ERROR OperationValidator - Found 1 operation parameters with unallowed stereotype(s) - remove offending stereotype(s) OR use one or more of {CIM=[deprecated, informative], IEC61850=[deprecated, informative]}: +2024-09-07 12:38:51,124 [main] ERROR OperationValidator - WG13 CIM array <> PowerSystemResource.GetWhatevers(...BasePower[] multiples...) : offending stereotypes = [parStereo1, parStereo2] +2024-09-07 12:38:51,124 [main] ERROR OperationValidator - Found 5 operations that have as return type the class not present in the model - locate class in the model from the combo-box on operation return type: +2024-09-07 12:38:51,124 [main] ERROR OperationValidator - WG13 CIM operation PowerSystemResource.GetWhatevers : return type is inexisting class ''void' (id=0)' +2024-09-07 12:38:51,124 [main] ERROR OperationValidator - WG13 CIM operation <> PowerSystemResource.bar : return type is inexisting class ''Dumb' (id=0)' +2024-09-07 12:38:51,125 [main] ERROR OperationValidator - WG13 CIM operation PowerSystemResource.foo : return type is inexisting class ''Dumb' (id=0)' +2024-09-07 12:38:51,125 [main] ERROR OperationValidator - WG10 IEC61850 operation Authentication.getPassword : return type is inexisting class ''P_VISIBLE_STRING64' (id=1665)' +2024-09-07 12:38:51,125 [main] ERROR OperationValidator - WG10 IEC61850 operation Authentication.geUserID : return type is inexisting class ''P_VISIBLE_STRING64' (id=1665)' +2024-09-07 12:38:51,125 [main] ERROR OperationValidator - Found 2 operations that have parameters that use for their type classes not present in the model - locate class(es) in the model from the combo-box on operation parameter: +2024-09-07 12:38:51,125 [main] ERROR OperationValidator - (5) WG13 CIM Core::PowerSystemResource operation <> public NullCIM bar(NullCIM par3, Float par2, NullCIM par); tags={someTag=value} : inexisting class(es) = '['NonExisting' (id=0) used as type in parameter 'par3' (0), 'Par' (id=0) used as type in parameter 'par' (2)] +2024-09-07 12:38:51,125 [main] ERROR OperationValidator - (4) WG13 CIM Core::PowerSystemResource operation public NullCIM foo(NullCIM par3, Float par2, NullCIM par); tags={someTag=value} : inexisting class(es) = '['NonExisting' (id=0) used as type in parameter 'par3' (0), 'Par' (id=0) used as type in parameter 'par' (2)] +2024-09-07 12:38:51,125 [main] ERROR OperationValidator - Found 1 operations that have exceptions not present in the model - ensure that values in throws tag correspond to classes present in the model: +2024-09-07 12:38:51,125 [main] ERROR OperationValidator - (1) WG13 CIM Core::PowerSystemResource operation abstract public NullCIM[] GetWhatevers(BasePower[] multiples) throws Dummy,PSRType,Dummy2; tags={throws=Dummy,PSRType,Dummy2, dummyCimTag=on operation} : inexisting class(es) = '['Dummy', 'PSRType', 'Dummy2'] +2024-09-07 12:38:51,125 [main] ERROR OperationValidator - Found 3 operations with unallowed tag names - remove tags: +2024-09-07 12:38:51,125 [main] ERROR OperationValidator - WG13 CIM operation PowerSystemResource.GetWhatevers : [dummyCimTag] +2024-09-07 12:38:51,125 [main] ERROR OperationValidator - WG13 CIM operation <> PowerSystemResource.bar : [someTag] +2024-09-07 12:38:51,125 [main] ERROR OperationValidator - WG13 CIM operation PowerSystemResource.foo : [someTag] +2024-09-07 12:38:51,126 [main] DEBUG OperationValidator - Found 0 operation parameters with unallowed tag names - remove tags. +2024-09-07 12:38:51,126 [main] WARN OperationValidator - Found 5 operations missing documentation - add documentation: +2024-09-07 12:38:51,126 [main] WARN OperationValidator - WG13 CIM operation <> PowerSystemResource.bar +2024-09-07 12:38:51,126 [main] WARN OperationValidator - WG10 IEC61850 operation Authentication.getPassword +2024-09-07 12:38:51,126 [main] WARN OperationValidator - WG10 IEC61850 operation Authentication.geUserID +2024-09-07 12:38:51,126 [main] WARN OperationValidator - WG10 IEC61850 operation Authentication.getViews +2024-09-07 12:38:51,126 [main] WARN OperationValidator - OTHER_CIM CIM operation My class.ope-ration +2024-09-07 12:38:51,126 [main] WARN OperationValidator - Found 6 operation parameters missing documentation - add documentation: +2024-09-07 12:38:51,126 [main] WARN OperationValidator - WG13 CIM simple PowerSystemResource.setSomething(...String name...) +2024-09-07 12:38:51,126 [main] WARN OperationValidator - WG13 CIM simple PowerSystemResource.bar(...NullCIM par3...) +2024-09-07 12:38:51,126 [main] WARN OperationValidator - WG13 CIM simple PowerSystemResource.bar(...NullCIM par...) +2024-09-07 12:38:51,126 [main] WARN OperationValidator - WG10 IEC61850 operation Authentication.getPassword +2024-09-07 12:38:51,126 [main] WARN OperationValidator - WG10 IEC61850 operation Authentication.geUserID +2024-09-07 12:38:51,127 [main] WARN OperationValidator - WG10 IEC61850 operation Authentication.getViews +2024-09-07 12:38:51,127 [main] WARN OperationValidator - Found 1 operations whose documentation starts with unallowed character - fix the first character: valid ones are any upper case letter or punctuation marks [', ", (]: +2024-09-07 12:38:51,127 [main] WARN OperationValidator - WG13 CIM operation PowerSystemResource.GetWhatevers : doc='dummy operation - will be inhe...' +2024-09-07 12:38:51,127 [main] WARN OperationValidator - Found 2 operation parameters whose documentation starts with unallowed character - fix the first character: valid ones are any upper case letter or punctuation marks [', ", (]: +2024-09-07 12:38:51,128 [main] WARN OperationValidator - WG13 CIM simple PowerSystemResource.bar(...Float par2...) : doc='starting with lower case, miss...' +2024-09-07 12:38:51,128 [main] WARN OperationValidator - OTHER_CIM CIM simple My class.ope-ration(...ApparentPower _par...) : doc='doc' +2024-09-07 12:38:51,128 [main] WARN OperationValidator - Found 1 operations whose documentation does not end with a dot ('.') - fix the last character: add a dot: +2024-09-07 12:38:51,128 [main] WARN OperationValidator - WG13 CIM operation PowerSystemResource.GetWhatevers : doc='... end and starts with lowe case' +2024-09-07 12:38:51,128 [main] WARN OperationValidator - Found 3 operation parameters whose documentation does not end with a dot ('.') - fix the last character: add a dot: +2024-09-07 12:38:51,128 [main] WARN OperationValidator - WG13 CIM array <> PowerSystemResource.GetWhatevers(...BasePower[] multiples...) : doc='...nt (but does not end with ".")' +2024-09-07 12:38:51,129 [main] WARN OperationValidator - WG13 CIM simple PowerSystemResource.bar(...Float par2...) : doc='...r case, missing "." at the end' +2024-09-07 12:38:51,129 [main] WARN OperationValidator - OTHER_CIM CIM simple My class.ope-ration(...ApparentPower _par...) : doc='doc' +2024-09-07 12:38:51,129 [main] ERROR OperationValidator - Found 1 operations whose name contains illegal character(s) - rename by removing invalid character(s): +2024-09-07 12:38:51,129 [main] ERROR OperationValidator - OTHER_CIM CIM operation My class.ope-ration : invalid characters = [-] +2024-09-07 12:38:51,129 [main] ERROR OperationValidator - Found 2 operation parameters whose name contains illegal character(s) - rename by removing invalid character(s): +2024-09-07 12:38:51,129 [main] ERROR OperationValidator - OTHER_CIM CIM simple My class.ope-ration(...Boolean other param...) : invalid characters = [ ] +2024-09-07 12:38:51,129 [main] ERROR OperationValidator - OTHER_CIM CIM simple My class.ope-ration(...ApparentPower _par...) : invalid characters = [_] +2024-09-07 12:38:51,130 [main] INFO AbstractValidator - +2024-09-07 12:38:51,130 [main] INFO AbstractValidator - ====== Validating 99 (of 99) associations: +2024-09-07 12:38:51,139 [main] ERROR AssociationValidator - Found 2 associations that should have direction 'unspecified' - change associations direction to 'unspecified': +2024-09-07 12:38:51,139 [main] ERROR AssociationValidator - (116) WG13 CIM aggregation <>, qname='Bay.Substation - Substation.bays', endAsSrc: myEnd: WG13 [0..*] Substation.bays (navigable); otherEnd: WG13 [0..1] Bay.Substation (navigable), endAsTgt: myEnd: WG13 [0..1] Bay.Substation (navigable); otherEnd: WG13 [0..*] Substation.bays (navigable) : direction = 'biDirectional' +2024-09-07 12:38:51,139 [main] ERROR AssociationValidator - (3463) WG13 CIM association <>, qname='PowerSystemResource.Terminal - Terminal.PSR', endAsSrc: myEnd: WG13 [0..1] Terminal.PSR (navigable); otherEnd: WG13 [0..1] PowerSystemResource.Terminal, endAsTgt: myEnd: WG13 [0..1] PowerSystemResource.Terminal; otherEnd: WG13 [0..1] Terminal.PSR (navigable) : direction = 'directed' +2024-09-07 12:38:51,139 [main] ERROR AssociationValidator - Found 1 association ends that should have direction 'Unspecified' - change association end direction to 'Unspecified': +2024-09-07 12:38:51,139 [main] ERROR AssociationValidator - (2122) WG14 CIM association, qname='AttrDuplication.T1 - BadDatatypes.Something', endAsSrc: myEnd: WG14 [0..1] BadDatatypes.Something (non-navigable); otherEnd: WG14 [0..1] AttrDuplication.T1, endAsTgt: myEnd: WG14 [0..1] AttrDuplication.T1; otherEnd: WG14 [0..1] BadDatatypes.Something (non-navigable) : srcNavig='no', targetNavig='unspecified' +2024-09-07 12:38:51,142 [main] WARN AssociationValidator - Found 11 associations that should have empty doc (we document association ends, not association itself) - delete doc of association: +2024-09-07 12:38:51,142 [main] WARN AssociationValidator - (121) WG13 CIM association <>, qname='BaseVoltage.ConductingEquipment - ConductingEquipment.ProtectedBaseVoltage', endAsSrc: myEnd: WG13 (protected) [0..1] ConductingEquipment.ProtectedBaseVoltage; otherEnd: WG13 [0..*] BaseVoltage.ConductingEquipment, endAsTgt: myEnd: WG13 [0..*] BaseVoltage.ConductingEquipment; otherEnd: WG13 (protected) [0..1] ConductingEquipment.ProtectedBaseVoltage : Use association to ConductingE... +2024-09-07 12:38:51,142 [main] WARN AssociationValidator - (115) WG13 CIM aggregation, qname='VoltageLevel.Bays - Bay.VoltageLevel', endAsSrc: myEnd: WG13 <> [0..1] Bay.VoltageLevel; otherEnd: WG13 <> [0..*] VoltageLevel.Bays, endAsTgt: myEnd: WG13 <> [0..*] VoltageLevel.Bays; otherEnd: WG13 <> [0..1] Bay.VoltageLevel : The association is used in the... +2024-09-07 12:38:51,142 [main] WARN AssociationValidator - (116) WG13 CIM aggregation <>, qname='Bay.Substation - Substation.bays', endAsSrc: myEnd: WG13 [0..*] Substation.bays (navigable); otherEnd: WG13 [0..1] Bay.Substation (navigable), endAsTgt: myEnd: WG13 [0..1] Bay.Substation (navigable); otherEnd: WG13 [0..*] Substation.bays (navigable) : The association is used in the... +2024-09-07 12:38:51,142 [main] WARN AssociationValidator - (123) WG13 CIM association NamedWithTagsEverywhere, qname='Terminal.ConductingEquipment - ConductingEquipment.Terminals', tags={CE-TermAssoc=1, MoreAssoc=}, endAsSrc: myEnd: WG13 [0..*] ConductingEquipment.Terminals; tags={Role1=abc}; otherEnd: WG13 [1..1] Terminal.ConductingEquipment; tags={AnotherRole2=abc, targetEndTag=blah, Role2=xyz}, endAsTgt: myEnd: WG13 [1..1] Terminal.ConductingEquipment; tags={AnotherRole2=abc, targetEndTag=blah, Role2=xyz}; otherEnd: WG13 [0..*] ConductingEquipment.Terminals; tags={Role1=abc} : ConductingEquipment has 1 or 2... +2024-09-07 12:38:51,143 [main] WARN AssociationValidator - (88) WG13 CIM aggregation <>, qname='EquipmentContainer.Equipments - Equipment.EquipmentContainer', endAsSrc: myEnd: WG13 [0..1] Equipment.EquipmentContainer; otherEnd: WG13 [0..*] EquipmentContainer.Equipments, endAsTgt: myEnd: WG13 [0..*] EquipmentContainer.Equipments; otherEnd: WG13 [0..1] Equipment.EquipmentContainer : The association is used in the... +2024-09-07 12:38:51,143 [main] WARN AssociationValidator - (90) WG13 CIM aggregation, qname='geographicalRegion.Regions - SubGeographicalRegion.Region', endAsSrc: myEnd: WG13 [0..1] SubGeographicalRegion.Region; otherEnd: WG13 [0..*] geographicalRegion.Regions, endAsTgt: myEnd: WG13 [0..*] geographicalRegion.Regions; otherEnd: WG13 [0..1] SubGeographicalRegion.Region : The association is used in the... +2024-09-07 12:38:51,143 [main] WARN AssociationValidator - (91) WG13 CIM aggregation, qname='SubGeographicalRegion.Substations - Substation.Region', endAsSrc: myEnd: WG13 [0..1] Substation.Region; otherEnd: WG13 [0..*] SubGeographicalRegion.Substations, endAsTgt: myEnd: WG13 [0..*] SubGeographicalRegion.Substations; otherEnd: WG13 [0..1] Substation.Region : The association is used in the... +2024-09-07 12:38:51,143 [main] WARN AssociationValidator - (94) WG13 CIM aggregation, qname='Substation.VoltageLevels - VoltageLevel.Substation', endAsSrc: myEnd: WG13 [1..1] VoltageLevel.Substation; otherEnd: WG13 [0..*] Substation.VoltageLevels, endAsTgt: myEnd: WG13 [0..*] Substation.VoltageLevels; otherEnd: WG13 [1..1] VoltageLevel.Substation : The association is used in the... +2024-09-07 12:38:51,143 [main] WARN AssociationValidator - (229) WG13 CIM association, qname='Terminal.ConnectivityNode - ConnectivityNode.Terminals', endAsSrc: myEnd: WG13 [0..*] ConnectivityNode.Terminals; otherEnd: WG13 [0..1] Terminal.ConnectivityNode, endAsTgt: myEnd: WG13 [0..1] Terminal.ConnectivityNode; otherEnd: WG13 [0..*] ConnectivityNode.Terminals : Terminals interconnect with ze... +2024-09-07 12:38:51,143 [main] WARN AssociationValidator - (235) WG13 CIM aggregation, qname='ConnectivityNode.TopologicalNode - TopologicalNode.ConnectivityNodes', endAsSrc: myEnd: WG13 [0..*] TopologicalNode.ConnectivityNodes; otherEnd: WG13 [0..1] ConnectivityNode.TopologicalNode, endAsTgt: myEnd: WG13 [0..1] ConnectivityNode.TopologicalNode; otherEnd: WG13 [0..*] TopologicalNode.ConnectivityNodes : Several ConnectivityNode(s) ma... +2024-09-07 12:38:51,143 [main] WARN AssociationValidator - (237) WG13 CIM aggregation, qname='TopologicalNode.TopologicalIsland - TopologicalIsland.TopologicalNodes', endAsSrc: myEnd: WG13 [?..?] TopologicalIsland.TopologicalNodes; otherEnd: WG13 [1..1] TopologicalNode.TopologicalIsland, endAsTgt: myEnd: WG13 [1..1] TopologicalNode.TopologicalIsland; otherEnd: WG13 [?..?] TopologicalIsland.TopologicalNodes : A topological node belongs to ... +2024-09-07 12:38:51,143 [main] WARN AssociationValidator - Found 12 associations that have same documentation for both association ends - one side has the wrong focus - change documentation for one association end: +2024-09-07 12:38:51,144 [main] WARN AssociationValidator - (121) WG13 CIM association <>, qname='BaseVoltage.ConductingEquipment - ConductingEquipment.ProtectedBaseVoltage', endAsSrc: myEnd: WG13 (protected) [0..1] ConductingEquipment.ProtectedBaseVoltage; otherEnd: WG13 [0..*] BaseVoltage.ConductingEquipment, endAsTgt: myEnd: WG13 [0..*] BaseVoltage.ConductingEquipment; otherEnd: WG13 (protected) [0..1] ConductingEquipment.ProtectedBaseVoltage : Use association to ConductingE... +2024-09-07 12:38:51,144 [main] WARN AssociationValidator - (115) WG13 CIM aggregation, qname='VoltageLevel.Bays - Bay.VoltageLevel', endAsSrc: myEnd: WG13 <> [0..1] Bay.VoltageLevel; otherEnd: WG13 <> [0..*] VoltageLevel.Bays, endAsTgt: myEnd: WG13 <> [0..*] VoltageLevel.Bays; otherEnd: WG13 <> [0..1] Bay.VoltageLevel : The association is used in the... +2024-09-07 12:38:51,144 [main] WARN AssociationValidator - (116) WG13 CIM aggregation <>, qname='Bay.Substation - Substation.bays', endAsSrc: myEnd: WG13 [0..*] Substation.bays (navigable); otherEnd: WG13 [0..1] Bay.Substation (navigable), endAsTgt: myEnd: WG13 [0..1] Bay.Substation (navigable); otherEnd: WG13 [0..*] Substation.bays (navigable) : The association is used in the... +2024-09-07 12:38:51,144 [main] WARN AssociationValidator - (123) WG13 CIM association NamedWithTagsEverywhere, qname='Terminal.ConductingEquipment - ConductingEquipment.Terminals', tags={CE-TermAssoc=1, MoreAssoc=}, endAsSrc: myEnd: WG13 [0..*] ConductingEquipment.Terminals; tags={Role1=abc}; otherEnd: WG13 [1..1] Terminal.ConductingEquipment; tags={AnotherRole2=abc, targetEndTag=blah, Role2=xyz}, endAsTgt: myEnd: WG13 [1..1] Terminal.ConductingEquipment; tags={AnotherRole2=abc, targetEndTag=blah, Role2=xyz}; otherEnd: WG13 [0..*] ConductingEquipment.Terminals; tags={Role1=abc} : ConductingEquipment has 1 or 2... +2024-09-07 12:38:51,144 [main] WARN AssociationValidator - (88) WG13 CIM aggregation <>, qname='EquipmentContainer.Equipments - Equipment.EquipmentContainer', endAsSrc: myEnd: WG13 [0..1] Equipment.EquipmentContainer; otherEnd: WG13 [0..*] EquipmentContainer.Equipments, endAsTgt: myEnd: WG13 [0..*] EquipmentContainer.Equipments; otherEnd: WG13 [0..1] Equipment.EquipmentContainer : The association is used in the... +2024-09-07 12:38:51,144 [main] WARN AssociationValidator - (90) WG13 CIM aggregation, qname='geographicalRegion.Regions - SubGeographicalRegion.Region', endAsSrc: myEnd: WG13 [0..1] SubGeographicalRegion.Region; otherEnd: WG13 [0..*] geographicalRegion.Regions, endAsTgt: myEnd: WG13 [0..*] geographicalRegion.Regions; otherEnd: WG13 [0..1] SubGeographicalRegion.Region : The association is used in the... +2024-09-07 12:38:51,144 [main] WARN AssociationValidator - (91) WG13 CIM aggregation, qname='SubGeographicalRegion.Substations - Substation.Region', endAsSrc: myEnd: WG13 [0..1] Substation.Region; otherEnd: WG13 [0..*] SubGeographicalRegion.Substations, endAsTgt: myEnd: WG13 [0..*] SubGeographicalRegion.Substations; otherEnd: WG13 [0..1] Substation.Region : The association is used in the... +2024-09-07 12:38:51,144 [main] WARN AssociationValidator - (94) WG13 CIM aggregation, qname='Substation.VoltageLevels - VoltageLevel.Substation', endAsSrc: myEnd: WG13 [1..1] VoltageLevel.Substation; otherEnd: WG13 [0..*] Substation.VoltageLevels, endAsTgt: myEnd: WG13 [0..*] Substation.VoltageLevels; otherEnd: WG13 [1..1] VoltageLevel.Substation : The association is used in the... +2024-09-07 12:38:51,144 [main] WARN AssociationValidator - (229) WG13 CIM association, qname='Terminal.ConnectivityNode - ConnectivityNode.Terminals', endAsSrc: myEnd: WG13 [0..*] ConnectivityNode.Terminals; otherEnd: WG13 [0..1] Terminal.ConnectivityNode, endAsTgt: myEnd: WG13 [0..1] Terminal.ConnectivityNode; otherEnd: WG13 [0..*] ConnectivityNode.Terminals : Terminals interconnect with ze... +2024-09-07 12:38:51,144 [main] WARN AssociationValidator - (235) WG13 CIM aggregation, qname='ConnectivityNode.TopologicalNode - TopologicalNode.ConnectivityNodes', endAsSrc: myEnd: WG13 [0..*] TopologicalNode.ConnectivityNodes; otherEnd: WG13 [0..1] ConnectivityNode.TopologicalNode, endAsTgt: myEnd: WG13 [0..1] ConnectivityNode.TopologicalNode; otherEnd: WG13 [0..*] TopologicalNode.ConnectivityNodes : Several ConnectivityNode(s) ma... +2024-09-07 12:38:51,144 [main] WARN AssociationValidator - (237) WG13 CIM aggregation, qname='TopologicalNode.TopologicalIsland - TopologicalIsland.TopologicalNodes', endAsSrc: myEnd: WG13 [?..?] TopologicalIsland.TopologicalNodes; otherEnd: WG13 [1..1] TopologicalNode.TopologicalIsland, endAsTgt: myEnd: WG13 [1..1] TopologicalNode.TopologicalIsland; otherEnd: WG13 [?..?] TopologicalIsland.TopologicalNodes : A topological node belongs to ... +2024-09-07 12:38:51,145 [main] WARN AssociationValidator - (2122) WG14 CIM association, qname='AttrDuplication.T1 - BadDatatypes.Something', endAsSrc: myEnd: WG14 [0..1] BadDatatypes.Something (non-navigable); otherEnd: WG14 [0..1] AttrDuplication.T1, endAsTgt: myEnd: WG14 [0..1] AttrDuplication.T1; otherEnd: WG14 [0..1] BadDatatypes.Something (non-navigable) +2024-09-07 12:38:51,145 [main] ERROR AssociationValidator - Found 1 associations that should have empty name (we name association ends, not association itself) - remove association name: +2024-09-07 12:38:51,145 [main] ERROR AssociationValidator - WG13 CIM association Terminal.ConductingEquipment - ConductingEquipment.Terminals +2024-09-07 12:38:51,145 [main] ERROR AssociationValidator - Found 6 associations with unallowed stereotype(s) - remove offending stereotype(s) OR use one or more of {CIM=[deprecated, informative], IEC61850=[deprecated, informative]}: +2024-09-07 12:38:51,145 [main] ERROR AssociationValidator - WG13 CIM association <> BaseVoltage.ConductingEquipment - ConductingEquipment.ProtectedBaseVoltage : offending stereotypes = [builds] +2024-09-07 12:38:51,146 [main] ERROR AssociationValidator - WG13 CIM aggregation <> Bay.Substation - Substation.bays : offending stereotypes = [European] +2024-09-07 12:38:51,146 [main] ERROR AssociationValidator - WG13 CIM aggregation <> EquipmentContainer.Equipments - Equipment.EquipmentContainer : offending stereotypes = [European] +2024-09-07 12:38:51,146 [main] ERROR AssociationValidator - WG13 CIM association <> BusNameMarker.PrivateConnectivityNode - ConnectivityNode.BusNameMarker : offending stereotypes = [otherStereo] +2024-09-07 12:38:51,146 [main] ERROR AssociationValidator - OTHER_CIM CIM association <> Pear.Apple - Apple.Pear : offending stereotypes = [dumbStereotype, European] +2024-09-07 12:38:51,146 [main] ERROR AssociationValidator - OTHER_CIM CIM association <> My class._role 2&x - Other-with_invalid name.Role 1 : offending stereotypes = [European] +2024-09-07 12:38:51,146 [main] ERROR AssociationValidator - Found 6 association ends with unallowed stereotype(s) - remove offending stereotype(s) OR use one or more of {CIM=[deprecated, informative], IEC61850=[deprecated, informative]}: +2024-09-07 12:38:51,146 [main] ERROR AssociationValidator - WG13 CIM aggregation <> Bay.VoltageLevel : offending stereotypes = [endStereo1] +2024-09-07 12:38:51,146 [main] ERROR AssociationValidator - WG13 CIM association <> VoltageLevel.Bays : offending stereotypes = [endStereo2] +2024-09-07 12:38:51,146 [main] ERROR AssociationValidator - WG13 CIM association <> ConnectivityNode.BusNameMarker : offending stereotypes = [srcStereo1, srcStereo2] +2024-09-07 12:38:51,146 [main] ERROR AssociationValidator - WG13 CIM private association <> BusNameMarker.PrivateConnectivityNode : offending stereotypes = [endStereo1, endStereo2] +2024-09-07 12:38:51,146 [main] ERROR AssociationValidator - OTHER_CIM CIM association <> Apple.SecondPear : offending stereotypes = [sourceStereo] +2024-09-07 12:38:51,146 [main] ERROR AssociationValidator - OTHER_CIM CIM association <> Pear.SecondApple : offending stereotypes = [targetStereo, European] +2024-09-07 12:38:51,146 [main] ERROR AssociationValidator - Found 3 informative associations missing informative stereotype - add missing informative stereotype: +2024-09-07 12:38:51,146 [main] ERROR AssociationValidator - OTHER_CIM CIM association MyClass.Class1 - Class1.MyClass +2024-09-07 12:38:51,146 [main] ERROR AssociationValidator - OTHER_CIM CIM association End1ForAssocClass.<> - End2ForAssocClass.<> +2024-09-07 12:38:51,146 [main] ERROR AssociationValidator - WG13 CIM association InfClassContainingEmbeddedClass.C2 - InfClass2.C1 +2024-09-07 12:38:51,147 [main] ERROR AssociationValidator - Found 4 associations with unallowed tag names - remove tags: +2024-09-07 12:38:51,147 [main] ERROR AssociationValidator - WG13 CIM association InfClassContainingEmbeddedClass.C2 - InfClass2.C1 : [assocTag] +2024-09-07 12:38:51,147 [main] ERROR AssociationValidator - WG13 CIM association Terminal.ConductingEquipment - ConductingEquipment.Terminals : [CE-TermAssoc, MoreAssoc] +2024-09-07 12:38:51,147 [main] ERROR AssociationValidator - WG13 CIM association <> BusNameMarker.PrivateConnectivityNode - ConnectivityNode.BusNameMarker : [assocTag] +2024-09-07 12:38:51,147 [main] ERROR AssociationValidator - OTHER_CIM CIM association Pear.SecondApple - Apple.SecondPear : [assocTag] +2024-09-07 12:38:51,147 [main] ERROR AssociationValidator - Found 4 association ends with unallowed tag names - remove tags: +2024-09-07 12:38:51,147 [main] ERROR AssociationValidator - WG13 CIM association InfClassContainingEmbeddedClass.C2 - InfClass2.C1 : [assocTag] +2024-09-07 12:38:51,147 [main] ERROR AssociationValidator - WG13 CIM association Terminal.ConductingEquipment - ConductingEquipment.Terminals : [CE-TermAssoc, MoreAssoc] +2024-09-07 12:38:51,147 [main] ERROR AssociationValidator - WG13 CIM association <> BusNameMarker.PrivateConnectivityNode - ConnectivityNode.BusNameMarker : [assocTag] +2024-09-07 12:38:51,147 [main] ERROR AssociationValidator - OTHER_CIM CIM association Pear.SecondApple - Apple.SecondPear : [assocTag] +2024-09-07 12:38:51,147 [main] ERROR AssociationValidator - Found 10 associations missing multiplicity for named association ends - add multiplicity to the named association end(s): +2024-09-07 12:38:51,147 [main] ERROR AssociationValidator - WG13 CIM aggregation TopologicalNode.TopologicalIsland - TopologicalIsland.TopologicalNodes +2024-09-07 12:38:51,147 [main] ERROR AssociationValidator - WG10 IEC61850 association Authentication.<> - ReportID.privateAuth +2024-09-07 12:38:51,147 [main] ERROR AssociationValidator - WG10 IEC61850 association Authentication.publicEntryID - EntryID.publicAuth +2024-09-07 12:38:51,148 [main] ERROR AssociationValidator - WG10 IEC61850 association LN.LNOwnedDSs - LNOwnedDS.LN +2024-09-07 12:38:51,148 [main] ERROR AssociationValidator - WG10 IEC61850 association LN.LOGs - LOG.LN +2024-09-07 12:38:51,148 [main] ERROR AssociationValidator - WG10 IEC61850 association LN.LCBs - LCB.LN +2024-09-07 12:38:51,148 [main] ERROR AssociationValidator - WG10 IEC61850 association LN0.USVCBs - USVCB.LN0 +2024-09-07 12:38:51,148 [main] ERROR AssociationValidator - WG10 IEC61850 association LN0.GCBs - GCB.LN0 +2024-09-07 12:38:51,148 [main] ERROR AssociationValidator - WG10 IEC61850 association LN0.MSVCBs - MSVCB.LN0 +2024-09-07 12:38:51,148 [main] ERROR AssociationValidator - WG10 IEC61850 association LN0.SGCB - SGCB.LN0 +2024-09-07 12:38:51,148 [main] ERROR AssociationValidator - Found 1 associations that should have source and target swapped according to standard IEC TC57 rules (wrong direction for dependency) - swap source and target classes: +2024-09-07 12:38:51,148 [main] ERROR AssociationValidator - OTHER_CIM CIM association MyClass.Class1 - Class1.MyClass +2024-09-07 12:38:51,148 [main] DEBUG AssociationValidator - Found 0 IEC61850 associations that should have private ends - change visibility of association ends to private. +2024-09-07 12:38:51,148 [main] ERROR AssociationValidator - Found 1 IEC61850 associations that should have ends with the same visibility - change visibility on one association end: +2024-09-07 12:38:51,148 [main] ERROR AssociationValidator - WG10 IEC61850 association Authentication.<> - ReportID.privateAuth +2024-09-07 12:38:51,148 [main] WARN AssociationValidator - Found 61 association ends missing documentation - add documentation: +2024-09-07 12:38:51,148 [main] WARN AssociationValidator - WG14 CIM association MyClass.T1 +2024-09-07 12:38:51,148 [main] WARN AssociationValidator - WG14 CIM association BadDatatypes.T2 +2024-09-07 12:38:51,149 [main] WARN AssociationValidator - WG14 CIM association MyClass.From +2024-09-07 12:38:51,149 [main] WARN AssociationValidator - WG14 CIM association MyClass.To +2024-09-07 12:38:51,149 [main] WARN AssociationValidator - WG14 CIM association AttrDuplication.To +2024-09-07 12:38:51,149 [main] WARN AssociationValidator - WG14 CIM association AttrDuplication.From +2024-09-07 12:38:51,149 [main] WARN AssociationValidator - WG14 CIM association AttrDuplication.To +2024-09-07 12:38:51,149 [main] WARN AssociationValidator - WG10 IEC61850 association AccessPoint.IED +2024-09-07 12:38:51,149 [main] WARN AssociationValidator - WG10 IEC61850 association GenIED.AP +2024-09-07 12:38:51,150 [main] WARN AssociationValidator - WG10 IEC61850 association FileSystem.Server +2024-09-07 12:38:51,150 [main] WARN AssociationValidator - WG10 IEC61850 association GenServer.FileSystem +2024-09-07 12:38:51,150 [main] WARN AssociationValidator - WG10 IEC61850 association GenFile.FileSystem +2024-09-07 12:38:51,150 [main] WARN AssociationValidator - WG10 IEC61850 association FileSystem.Files +2024-09-07 12:38:51,150 [main] WARN AssociationValidator - WG10 IEC61850 association GenDataAttribute.CommonDataClass +2024-09-07 12:38:51,150 [main] WARN AssociationValidator - WG10 IEC61850 association GenCommonDataClass.DataAttribute +2024-09-07 12:38:51,150 [main] WARN AssociationValidator - WG10 IEC61850 association GenSubDataObject.CommonDataClass +2024-09-07 12:38:51,150 [main] WARN AssociationValidator - WG10 IEC61850 association GenCommonDataClass.SubDataObject +2024-09-07 12:38:51,150 [main] WARN AssociationValidator - WG10 IEC61850 association GenSubDataAttribute.DataAttribute +2024-09-07 12:38:51,150 [main] WARN AssociationValidator - WG10 IEC61850 association GenConstructedType.SubDataAttribute +2024-09-07 12:38:51,151 [main] WARN AssociationValidator - WG10 IEC61850 association GenDataAttribute.FCDA +2024-09-07 12:38:51,151 [main] WARN AssociationValidator - WG10 IEC61850 association GenFCDA.DataAttribute +2024-09-07 12:38:51,151 [main] WARN AssociationValidator - WG10 IEC61850 association GenDataObject.LogicalNode +2024-09-07 12:38:51,151 [main] WARN AssociationValidator - WG10 IEC61850 association GenLogicalNode.DataObject +2024-09-07 12:38:51,151 [main] WARN AssociationValidator - WG10 IEC61850 association GenDataObject.FCD +2024-09-07 12:38:51,151 [main] WARN AssociationValidator - WG10 IEC61850 association GenFCD.DataObject +2024-09-07 12:38:51,151 [main] WARN AssociationValidator - WG10 IEC61850 association GenFCD.DataSet +2024-09-07 12:38:51,151 [main] WARN AssociationValidator - WG10 IEC61850 association GenDataSet.FCDMember +2024-09-07 12:38:51,151 [main] WARN AssociationValidator - WG10 IEC61850 association GenFCDA.DataSet +2024-09-07 12:38:51,151 [main] WARN AssociationValidator - WG10 IEC61850 association GenDataSet.FCDAMember +2024-09-07 12:38:51,151 [main] WARN AssociationValidator - WG10 IEC61850 association GenSubDataObject.FCD +2024-09-07 12:38:51,151 [main] WARN AssociationValidator - WG10 IEC61850 association GenFCD.SubDataObject +2024-09-07 12:38:51,151 [main] WARN AssociationValidator - WG10 IEC61850 association GenSubDataAttribute.FCDA +2024-09-07 12:38:51,151 [main] WARN AssociationValidator - WG10 IEC61850 association GenFCDA.SubDataAttribute +2024-09-07 12:38:51,151 [main] WARN AssociationValidator - WG10 IEC61850 association GenLN0.LogicalDevice +2024-09-07 12:38:51,151 [main] WARN AssociationValidator - WG10 IEC61850 association GenLogicalDevice.LN0 +2024-09-07 12:38:51,151 [main] WARN AssociationValidator - WG10 IEC61850 association GenLogicalDevice.Server +2024-09-07 12:38:51,152 [main] WARN AssociationValidator - WG10 IEC61850 association GenServer.LogicalDevice +2024-09-07 12:38:51,152 [main] WARN AssociationValidator - WG10 IEC61850 association GenLogicalNode.LogicalDevice +2024-09-07 12:38:51,152 [main] WARN AssociationValidator - WG10 IEC61850 association GenLogicalDevice.LogicalNode +2024-09-07 12:38:51,152 [main] WARN AssociationValidator - WG10 IEC61850 association GenLogicalDevice.ParentLogicalDevice +2024-09-07 12:38:51,152 [main] WARN AssociationValidator - WG10 IEC61850 association GenLogicalDevice.ChildLogicalDevice +2024-09-07 12:38:51,152 [main] WARN AssociationValidator - WG10 IEC61850 association GenMCAA.Server +2024-09-07 12:38:51,152 [main] WARN AssociationValidator - WG10 IEC61850 association GenServer.MCAppAssociation +2024-09-07 12:38:51,152 [main] WARN AssociationValidator - WG10 IEC61850 association GenServer.SAP +2024-09-07 12:38:51,152 [main] WARN AssociationValidator - WG10 IEC61850 association ServiceAccessPoint.Server +2024-09-07 12:38:51,152 [main] WARN AssociationValidator - WG10 IEC61850 association GenTPAA.Server +2024-09-07 12:38:51,152 [main] WARN AssociationValidator - WG10 IEC61850 association GenServer.TPAppAssociation +2024-09-07 12:38:51,152 [main] WARN AssociationValidator - WG10 IEC61850 association EntryID.publicAuth +2024-09-07 12:38:51,152 [main] WARN AssociationValidator - WG10 IEC61850 association Authentication.publicEntryID +2024-09-07 12:38:51,152 [main] WARN AssociationValidator - OTHER_CIM CIM association Apple.SelfFromApple +2024-09-07 12:38:51,152 [main] WARN AssociationValidator - OTHER_CIM CIM association Apple.SelfToApples +2024-09-07 12:38:51,152 [main] WARN AssociationValidator - OTHER_CIM CIM association Apple.Pear +2024-09-07 12:38:51,153 [main] WARN AssociationValidator - OTHER_CIM CIM association Pear.Apple +2024-09-07 12:38:51,153 [main] WARN AssociationValidator - OTHER_CIM CIM association <> Apple.SecondPear +2024-09-07 12:38:51,153 [main] WARN AssociationValidator - OTHER_CIM CIM association <> Pear.SecondApple +2024-09-07 12:38:51,153 [main] WARN AssociationValidator - OTHER_IEC61850 IEC61850 association Fruit.Animal +2024-09-07 12:38:51,153 [main] WARN AssociationValidator - OTHER_IEC61850 CIM association Animal.Fruit +2024-09-07 12:38:51,153 [main] WARN AssociationValidator - OTHER_IEC61850 IEC61850 association Fruit.SecondAnimal +2024-09-07 12:38:51,153 [main] WARN AssociationValidator - OTHER_IEC61850 CIM association Animal.SecondFruit +2024-09-07 12:38:51,153 [main] WARN AssociationValidator - OTHER_CIM CIM association Other-with_invalid name.Role 1 +2024-09-07 12:38:51,153 [main] WARN AssociationValidator - OTHER_CIM CIM association My class._role 2&x +2024-09-07 12:38:51,153 [main] WARN AssociationValidator - Found 1 association ends whose documentation starts with unallowed character - fix the first character: valid ones are any upper case letter or punctuation marks [', ", (]: +2024-09-07 12:38:51,153 [main] WARN AssociationValidator - WG13 CIM association OperatingParticipant.OperatingShare : doc='the operating shares of an ope...' +2024-09-07 12:38:51,153 [main] WARN AssociationValidator - Found 8 association ends whose documentation does not end with a dot ('.') - fix the last character: add a dot: +2024-09-07 12:38:51,153 [main] WARN AssociationValidator - WG13 CIM association ConductingEquipment.Terminals : doc='...erminals via ConnectivityNodes' +2024-09-07 12:38:51,153 [main] WARN AssociationValidator - WG13 CIM association Terminal.ConductingEquipment : doc='...erminals via ConnectivityNodes' +2024-09-07 12:38:51,153 [main] WARN AssociationValidator - WG13 CIM association OperatingParticipant.OperatingShare : doc='...reused for any number of PSR's' +2024-09-07 12:38:51,153 [main] WARN AssociationValidator - WG14 CIM association PowerSystemResource.AssetInfos : doc='FooBar' +2024-09-07 12:38:51,154 [main] WARN AssociationValidator - WG14 CIM association AssetInfo.PSRs : doc='Blah' +2024-09-07 12:38:51,154 [main] WARN AssociationValidator - WG13 CIM association TopologicalIsland.TopologicalNodes : doc='...elongs to a topological island' +2024-09-07 12:38:51,154 [main] WARN AssociationValidator - WG13 CIM aggregation TopologicalNode.TopologicalIsland : doc='...elongs to a topological island' +2024-09-07 12:38:51,154 [main] WARN AssociationValidator - WG14 CIM association AttrDuplication.From : doc='Doc (not ending with ".")' +2024-09-07 12:38:51,154 [main] ERROR AssociationValidator - Found 4 association ends whose name contains illegal character(s) - rename by removing invalid character(s): +2024-09-07 12:38:51,154 [main] ERROR AssociationValidator - WG13 CIM association TopologicalNode.AngleRef_TopologicalIsland : invalid characters = [_] +2024-09-07 12:38:51,154 [main] ERROR AssociationValidator - WG13 CIM association TopologicalIsland.AngleRef_TopologicalNode : invalid characters = [_] +2024-09-07 12:38:51,154 [main] ERROR AssociationValidator - OTHER_CIM CIM association Other-with_invalid name.Role 1 : invalid characters = [ ] +2024-09-07 12:38:51,154 [main] ERROR AssociationValidator - OTHER_CIM CIM association My class._role 2&x : invalid characters = [_, , &] +2024-09-07 12:38:51,154 [main] ERROR AssociationValidator - Found 1 CIM association ends whose name starts with a lower case letter - rename association end(s) to start with upper case letter: +2024-09-07 12:38:51,154 [main] ERROR AssociationValidator - WG13 [0..*] Substation.bays (navigable) +2024-09-07 12:38:51,154 [main] ERROR AssociationValidator - Found 10 CIM association ends that should be plural according to multiplicity - rename association end(s) to plural: +2024-09-07 12:38:51,154 [main] ERROR AssociationValidator - WG13 [0..*] BaseVoltage.VoltageLevel +2024-09-07 12:38:51,154 [main] ERROR AssociationValidator - WG13 [0..*] BaseVoltage.ConductingEquipment +2024-09-07 12:38:51,155 [main] ERROR AssociationValidator - WG13 [0..*] BaseVoltage.TopologicalNode +2024-09-07 12:38:51,155 [main] ERROR AssociationValidator - WG13 [0..*] ConnectivityNodeContainer.TopologicalNode +2024-09-07 12:38:51,155 [main] ERROR AssociationValidator - WG13 [0..*] OperatingParticipant.OperatingShare +2024-09-07 12:38:51,155 [main] ERROR AssociationValidator - WG13 [0..*] PowerSystemResource.OperatingShare +2024-09-07 12:38:51,155 [main] ERROR AssociationValidator - WG13 [0..*] TopologicalNode.Terminal +2024-09-07 12:38:51,155 [main] ERROR AssociationValidator - WG13 (private) <> [0..*] BusNameMarker.PrivateConnectivityNode; tags={endTag=valueEndTag} +2024-09-07 12:38:51,155 [main] ERROR AssociationValidator - OTHER_CIM [0..*] Pear.Apple; tags={targetEndTag=value2} +2024-09-07 12:38:51,155 [main] ERROR AssociationValidator - OTHER_IEC61850 [0..*] Animal.Fruit +2024-09-07 12:38:51,155 [main] ERROR AssociationValidator - Found 1 CIM association ends that should be singular according to multiplicity - rename association end(s) to singular: +2024-09-07 12:38:51,155 [main] ERROR AssociationValidator - WG13 [?..?] TopologicalIsland.TopologicalNodes +2024-09-07 12:38:51,155 [main] INFO AbstractValidator - +2024-09-07 12:38:51,155 [main] INFO AbstractValidator - ====== Validating 81 (of 81) dependencies: +2024-09-07 12:38:51,157 [main] ERROR DependencyValidator - Found 8 dependencies with unallowed stereotype(s) - remove offending stereotype(s) OR use one or more of {CIM=[import, deprecated, IsBasedOn], IEC61850=[deprecated]}: +2024-09-07 12:38:51,157 [main] ERROR DependencyValidator - WG10 IEC61850 interClass dependency <> GenericModel::GenSubDataAttribute -> GenericModel::GenAtomicType : offending stereotypes = [typeOf] +2024-09-07 12:38:51,158 [main] ERROR DependencyValidator - WG10 IEC61850 interClass dependency <> GenericModel::GenDataAttribute -> GenericModel::GenAtomicType : offending stereotypes = [typeOf] +2024-09-07 12:38:51,158 [main] ERROR DependencyValidator - WG10 IEC61850 interClass dependency <> GenericModel::GenSubDataObject -> GenericModel::GenCommonDataClass : offending stereotypes = [typeOf] +2024-09-07 12:38:51,158 [main] ERROR DependencyValidator - WG10 IEC61850 interClass dependency <> GenericModel::GenDataObject -> GenericModel::GenCommonDataClass : offending stereotypes = [typeOf] +2024-09-07 12:38:51,158 [main] ERROR DependencyValidator - WG10 IEC61850 interClass dependency <> GenericModel::GenSubDataAttribute -> GenericModel::GenCompactType : offending stereotypes = [typeOf] +2024-09-07 12:38:51,158 [main] ERROR DependencyValidator - WG10 IEC61850 interClass dependency <> GenericModel::GenDataAttribute -> GenericModel::GenCompactType : offending stereotypes = [typeOf] +2024-09-07 12:38:51,158 [main] ERROR DependencyValidator - WG10 IEC61850 interClass dependency <> GenericModel::GenSubDataAttribute -> GenericModel::GenConstructedType : offending stereotypes = [typeOf] +2024-09-07 12:38:51,158 [main] ERROR DependencyValidator - WG10 IEC61850 interClass dependency <> GenericModel::GenDataAttribute -> GenericModel::GenConstructedType : offending stereotypes = [typeOf] +2024-09-07 12:38:51,158 [main] ERROR DependencyValidator - Found 2 dependencies on unallowed package according to standard IEC TC57 rules - remove dependency or reverse its direction: +2024-09-07 12:38:51,159 [main] ERROR DependencyValidator - WG13 CIM interPackage dependency IEC61970::Topology -> IEC61968::Other +2024-09-07 12:38:51,159 [main] ERROR DependencyValidator - WG10 IEC61850 interPackage dependency WG10::IEC61850_7_4 -> WG17::IEC51850_7_420 +2024-09-07 12:38:51,159 [main] DEBUG DependencyValidator - Found 0 dependencies with unallowed tag names - remove tags. +2024-09-07 12:38:51,159 [main] INFO AbstractValidator - +2024-09-07 12:38:51,160 [main] INFO AbstractValidator - ====== Validating 104 (of 104) diagrams: +2024-09-07 12:38:51,161 [main] WARN DiagramValidator - Found 1 diagrams with bad orientation, content may be unreadable when printed on A4 page - change orientation to potrait: +2024-09-07 12:38:51,161 [main] WARN DiagramValidator - WG13 CIM class IEC61970::Main +2024-09-07 12:38:51,161 [main] ERROR DiagramValidator - Found 5 diagrams with unallowed stereotype(s) - remove offending stereotype(s) OR use one or more of {CIM=[deprecated, informative], IEC61850=[deprecated, informative]}: +2024-09-07 12:38:51,161 [main] ERROR DiagramValidator - OTHER_CIM CIM class <> TC57CIM::Main : offending stereotypes = [diagStereotype, oneMoreDiagStereo] +2024-09-07 12:38:51,161 [main] ERROR DiagramValidator - WG13 CIM class <> Domain::BasicDatatypes : offending stereotypes = [oneDiaStero, secondDiaStereo] +2024-09-07 12:38:51,161 [main] ERROR DiagramValidator - WG13 CIM class <> Domain::TimeDatatypes : offending stereotypes = [docStero] +2024-09-07 12:38:51,161 [main] ERROR DiagramValidator - WG13 CIM class <> Core::Ownership : offending stereotypes = [Deprecated] +2024-09-07 12:38:51,162 [main] ERROR DiagramValidator - OTHER_CIM CIM class <> MyCimExtensions::MyCimExtensions : offending stereotypes = [European] +2024-09-07 12:38:51,162 [main] WARN DiagramValidator - Found 28 diagrams missing documentation - add documentation: +2024-09-07 12:38:51,162 [main] WARN DiagramValidator - OTHER_CIM CIM package TC57CIMProfiles::TC57CIMProfiles +2024-09-07 12:38:51,162 [main] WARN DiagramValidator - WG13 CIM class Topology::DiagramWithoutComment +2024-09-07 12:38:51,162 [main] WARN DiagramValidator - WG13 CIM class TestEnums::TestEnums +2024-09-07 12:38:51,162 [main] WARN DiagramValidator - WG14 CIM class IEC61968::IEC61968 +2024-09-07 12:38:51,162 [main] WARN DiagramValidator - WG14 CIM package EmbeddedExtension::EmbeddedExtension +2024-09-07 12:38:51,162 [main] WARN DiagramValidator - WG14 CIM class Assets::Assets +2024-09-07 12:38:51,162 [main] WARN DiagramValidator - WG14 CIM object Assets::AssetsObjDia +2024-09-07 12:38:51,162 [main] WARN DiagramValidator - WG14 CIM class Other::Other +2024-09-07 12:38:51,162 [main] WARN DiagramValidator - WG16 CIM class IEC62325::IEC62325 +2024-09-07 12:38:51,162 [main] WARN DiagramValidator - OTHER_IEC61850 IEC61850 class IEC61850Domain::IEC61850Domain +2024-09-07 12:38:51,163 [main] WARN DiagramValidator - WG10 IEC61850 package NewIEC61850_7_2::NewIEC61850_7_2 +2024-09-07 12:38:51,163 [main] WARN DiagramValidator - WG10 IEC61850 class GenericModel::GenericModel +2024-09-07 12:38:51,163 [main] WARN DiagramValidator - WG10 IEC61850 class GenericModel::GenericModelTypes +2024-09-07 12:38:51,163 [main] WARN DiagramValidator - WG10 IEC61850 class IEC61850_7_2::IEC61850_7_2ModellingNotes +2024-09-07 12:38:51,163 [main] WARN DiagramValidator - WG17 IEC61850 class WG17::WG17 +2024-09-07 12:38:51,163 [main] WARN DiagramValidator - WG17 IEC61850 package IEC51850_7_420::IEC51850_7_420 +2024-09-07 12:38:51,163 [main] WARN DiagramValidator - WG17 IEC61850 class DOEnums_7_420::DOEnums_7_420 +2024-09-07 12:38:51,163 [main] WARN DiagramValidator - WG17 IEC61850 class DerivedDAs_7_420::DerivedDAs_7_420 +2024-09-07 12:38:51,163 [main] WARN DiagramValidator - WG17 IEC61850 class DerivedCDCs_7_420::DerivedCDCs_7_420 +2024-09-07 12:38:51,163 [main] WARN DiagramValidator - WG18 IEC61850 class WG18::WG18 +2024-09-07 12:38:51,163 [main] WARN DiagramValidator - WG18 IEC61850 class Abbreviations_410::Abbreviations_410 +2024-09-07 12:38:51,164 [main] WARN DiagramValidator - JWG25 IEC61850 class JWG25::JWG25 +2024-09-07 12:38:51,164 [main] WARN DiagramValidator - OTHER_CIM CIM class <> MyCimExtensions::MyCimExtensions +2024-09-07 12:38:51,164 [main] WARN DiagramValidator - OTHER_CIM CIM class Ext1::Ext1 +2024-09-07 12:38:51,164 [main] WARN DiagramValidator - OTHER_IEC61850 IEC61850 package My61850Extensions::My61850Extensions +2024-09-07 12:38:51,164 [main] WARN DiagramValidator - OTHER_IEC61850 IEC61850 class Ext2::Ext2 +2024-09-07 12:38:51,164 [main] WARN DiagramValidator - OTHER_CIM CIM package NewNature::NewNature +2024-09-07 12:38:51,164 [main] WARN DiagramValidator - WG10 IEC61850 statechart DomainLN.Beh +2024-09-07 12:38:51,164 [main] WARN DiagramValidator - Found 1 diagrams whose documentation starts with unallowed character - fix the first character: valid ones are any upper case letter or punctuation marks [', ", (]: +2024-09-07 12:38:51,164 [main] WARN DiagramValidator - WG13 CIM class <> Core::Ownership : doc='doc present (but missing "." a...' +2024-09-07 12:38:51,165 [main] WARN DiagramValidator - Found 3 diagrams whose documentation does not end with a dot ('.') - fix the last character: add a dot: +2024-09-07 12:38:51,165 [main] WARN DiagramValidator - WG13 CIM class <> Domain::TimeDatatypes : doc='...m show time related data types' +2024-09-07 12:38:51,165 [main] WARN DiagramValidator - WG13 CIM class <> Core::Ownership : doc='...tarting with lower case letter' +2024-09-07 12:38:51,165 [main] WARN DiagramValidator - WG10 IEC61850 INF class DetailedDiagrams::ImplementationNotes-ComposedCDCs : doc='(no doc)' +2024-09-07 12:38:51,165 [main] ERROR DiagramValidator - Found 3 diagrams whose name contains illegal character(s) - rename by removing invalid character(s): +2024-09-07 12:38:51,165 [main] ERROR DiagramValidator - OTHER_CIM CIM class Package with space::Package with space : invalid characters = [ , ] +2024-09-07 12:38:51,165 [main] ERROR DiagramValidator - WG13 CIM statechart PowerSystemResource.PSR-statechart : invalid characters = [-] +2024-09-07 12:38:51,165 [main] ERROR DiagramValidator - WG10 IEC61850 statechart Quality.Quality.validity : invalid characters = [.] +2024-09-07 12:38:51,166 [main] INFO ModelValidator - +2024-09-07 12:38:51,166 [main] INFO ModelValidator - Saving report to file: C:\Users\gigi\git\jCleanCim\output\problemsReport-base-small.csv +2024-09-07 12:38:51,198 [main] INFO Util - time=[0:00:00.775] validated packages [WG13, WG14, WG16, OTHER_CIM, WG10, WG17, WG18, JWG25, WG19, OTHER_IEC61850]. +2024-09-07 12:38:51,198 [main] INFO Util - +2024-09-07 12:38:51,199 [main] INFO Util - +2024-09-07 12:38:51,200 [main] INFO Util - ================================================ +2024-09-07 12:38:51,200 [main] INFO Util - collecting statistics for packages [WG13, WG14, WG16, OTHER_CIM, WG10, WG17, WG18, JWG25, WG19, OTHER_IEC61850]... +2024-09-07 12:38:51,200 [main] INFO Util - ================================================ +2024-09-07 12:38:51,221 [main] INFO ModelStats - +2024-09-07 12:38:51,221 [main] INFO ModelStats - ====== Stats per nature and per owner for 83 packages (of 83): +2024-09-07 12:38:51,222 [main] INFO ModelStats - ------ CIM statistics: +2024-09-07 12:38:51,222 [main] INFO ModelStats - [WG13] +2024-09-07 12:38:51,222 [main] INFO ModelStats - 7 packages (83/83) - 2 informative: +2024-09-07 12:38:51,222 [main] INFO ModelStats - 1 top package (per WG) +2024-09-07 12:38:51,222 [main] INFO ModelStats - 6 sub-package (any below top) +2024-09-07 12:38:51,222 [main] INFO ModelStats - 49 classes (386/386) - 3 informative: +2024-09-07 12:38:51,222 [main] INFO ModelStats - 4 primitive class +2024-09-07 12:38:51,222 [main] INFO ModelStats - 12 enumeration class +2024-09-07 12:38:51,222 [main] INFO ModelStats - 8 CIM datatype class +2024-09-07 12:38:51,222 [main] INFO ModelStats - 1 compound class +2024-09-07 12:38:51,222 [main] INFO ModelStats - 6 root class +2024-09-07 12:38:51,222 [main] INFO ModelStats - 18 class +2024-09-07 12:38:51,222 [main] INFO ModelStats - 163 attributes (761/761) - 1 informative: +2024-09-07 12:38:51,222 [main] INFO ModelStats - 27 primitive attribute +2024-09-07 12:38:51,222 [main] INFO ModelStats - 6 CIM datatype attribute +2024-09-07 12:38:51,222 [main] INFO ModelStats - 19 enumerated attribute +2024-09-07 12:38:51,223 [main] INFO ModelStats - 110 other enumeration literal +2024-09-07 12:38:51,223 [main] INFO ModelStats - 1 other attribute +2024-09-07 12:38:51,223 [main] INFO ModelStats - 22 associations (99/99): +2024-09-07 12:38:51,223 [main] INFO ModelStats - 9 aggregation +2024-09-07 12:38:51,223 [main] INFO ModelStats - 13 simple association +2024-09-07 12:38:51,223 [main] INFO ModelStats - 5 operations (14/14): +2024-09-07 12:38:51,223 [main] INFO ModelStats - 1 void op() +2024-09-07 12:38:51,223 [main] INFO ModelStats - 1 T[] op() +2024-09-07 12:38:51,223 [main] INFO ModelStats - 3 T op() +2024-09-07 12:38:51,224 [main] INFO ModelStats - 3 dependencies (81/81): +2024-09-07 12:38:51,224 [main] INFO ModelStats - 3 interPackage dependency +2024-09-07 12:38:51,224 [main] INFO ModelStats - 11 diagrams (104/104) - 2 informative: +2024-09-07 12:38:51,224 [main] INFO ModelStats - 10 class diagram +2024-09-07 12:38:51,224 [main] INFO ModelStats - 1 statechart diagram +2024-09-07 12:38:51,224 [main] INFO ModelStats - 13 tag names (24/24): +2024-09-07 12:38:51,224 [main] INFO ModelStats - 3 dummyCimTag +2024-09-07 12:38:51,224 [main] INFO ModelStats - 1 tag +2024-09-07 12:38:51,224 [main] INFO ModelStats - 2 assocTag +2024-09-07 12:38:51,224 [main] INFO ModelStats - 2 srcTag +2024-09-07 12:38:51,224 [main] INFO ModelStats - 1 CE-TermAssoc +2024-09-07 12:38:51,225 [main] INFO ModelStats - 1 MoreAssoc +2024-09-07 12:38:51,225 [main] INFO ModelStats - 1 Role1 +2024-09-07 12:38:51,225 [main] INFO ModelStats - 1 AnotherRole2 +2024-09-07 12:38:51,225 [main] INFO ModelStats - 1 targetEndTag +2024-09-07 12:38:51,225 [main] INFO ModelStats - 1 Role2 +2024-09-07 12:38:51,225 [main] INFO ModelStats - 1 endTag +2024-09-07 12:38:51,225 [main] INFO ModelStats - 2 throws +2024-09-07 12:38:51,225 [main] INFO ModelStats - 2 someTag +2024-09-07 12:38:51,225 [main] INFO ModelStats - +2024-09-07 12:38:51,225 [main] INFO ModelStats - [WG14] +2024-09-07 12:38:51,225 [main] INFO ModelStats - 6 packages (83/83): +2024-09-07 12:38:51,225 [main] INFO ModelStats - 1 top package (per WG) +2024-09-07 12:38:51,225 [main] INFO ModelStats - 5 sub-package (any below top) +2024-09-07 12:38:51,225 [main] INFO ModelStats - 11 classes (386/386): +2024-09-07 12:38:51,225 [main] INFO ModelStats - 1 primitive class +2024-09-07 12:38:51,225 [main] INFO ModelStats - 1 enumeration class +2024-09-07 12:38:51,226 [main] INFO ModelStats - 2 CIM datatype class +2024-09-07 12:38:51,226 [main] INFO ModelStats - 1 compound class +2024-09-07 12:38:51,226 [main] INFO ModelStats - 4 root class +2024-09-07 12:38:51,226 [main] INFO ModelStats - 2 class +2024-09-07 12:38:51,226 [main] INFO ModelStats - 15 attributes (761/761): +2024-09-07 12:38:51,226 [main] INFO ModelStats - 7 primitive attribute +2024-09-07 12:38:51,226 [main] INFO ModelStats - 2 CIM datatype attribute +2024-09-07 12:38:51,226 [main] INFO ModelStats - 1 compound attribute +2024-09-07 12:38:51,226 [main] INFO ModelStats - 3 enumerated attribute +2024-09-07 12:38:51,226 [main] INFO ModelStats - 2 other attribute +2024-09-07 12:38:51,226 [main] INFO ModelStats - 6 associations (99/99): +2024-09-07 12:38:51,226 [main] INFO ModelStats - 6 simple association +2024-09-07 12:38:51,227 [main] INFO ModelStats - 0 operations (14/14): +2024-09-07 12:38:51,227 [main] INFO ModelStats - 3 dependencies (81/81): +2024-09-07 12:38:51,227 [main] INFO ModelStats - 2 interPackage dependency +2024-09-07 12:38:51,227 [main] INFO ModelStats - 1 interClass dependency +2024-09-07 12:38:51,227 [main] INFO ModelStats - 5 diagrams (104/104): +2024-09-07 12:38:51,227 [main] INFO ModelStats - 3 class diagram +2024-09-07 12:38:51,227 [main] INFO ModelStats - 1 package diagram +2024-09-07 12:38:51,227 [main] INFO ModelStats - 1 object diagram +2024-09-07 12:38:51,227 [main] INFO ModelStats - 2 tag names (24/24): +2024-09-07 12:38:51,228 [main] INFO ModelStats - 3 nsprefix +2024-09-07 12:38:51,228 [main] INFO ModelStats - 3 nsuri +2024-09-07 12:38:51,228 [main] INFO ModelStats - +2024-09-07 12:38:51,228 [main] INFO ModelStats - [WG16] +2024-09-07 12:38:51,228 [main] INFO ModelStats - 1 packages (83/83): +2024-09-07 12:38:51,228 [main] INFO ModelStats - 1 top package (per WG) +2024-09-07 12:38:51,228 [main] INFO ModelStats - 0 classes (386/386): +2024-09-07 12:38:51,228 [main] INFO ModelStats - 0 attributes (761/761): +2024-09-07 12:38:51,228 [main] INFO ModelStats - 0 associations (99/99): +2024-09-07 12:38:51,228 [main] INFO ModelStats - 0 operations (14/14): +2024-09-07 12:38:51,228 [main] INFO ModelStats - 2 dependencies (81/81): +2024-09-07 12:38:51,228 [main] INFO ModelStats - 2 interPackage dependency +2024-09-07 12:38:51,228 [main] INFO ModelStats - 1 diagrams (104/104): +2024-09-07 12:38:51,228 [main] INFO ModelStats - 1 class diagram +2024-09-07 12:38:51,229 [main] INFO ModelStats - 0 tag names (24/24): +2024-09-07 12:38:51,229 [main] INFO ModelStats - +2024-09-07 12:38:51,229 [main] INFO ModelStats - [OTHER_CIM] +2024-09-07 12:38:51,229 [main] INFO ModelStats - 7 packages (83/83) - 1 informative: +2024-09-07 12:38:51,229 [main] INFO ModelStats - 4 model package (with nature) +2024-09-07 12:38:51,229 [main] INFO ModelStats - 3 top package (per WG) +2024-09-07 12:38:51,229 [main] INFO ModelStats - 16 classes (386/386) - 6 informative: +2024-09-07 12:38:51,229 [main] INFO ModelStats - 1 enumeration class +2024-09-07 12:38:51,229 [main] INFO ModelStats - 1 compound class +2024-09-07 12:38:51,229 [main] INFO ModelStats - 11 root class +2024-09-07 12:38:51,229 [main] INFO ModelStats - 3 class +2024-09-07 12:38:51,229 [main] INFO ModelStats - 7 attributes (761/761) - 2 informative: +2024-09-07 12:38:51,230 [main] INFO ModelStats - 1 primitive attribute +2024-09-07 12:38:51,230 [main] INFO ModelStats - 1 CIM datatype attribute +2024-09-07 12:38:51,230 [main] INFO ModelStats - 1 compound attribute +2024-09-07 12:38:51,230 [main] INFO ModelStats - 3 other enumeration literal +2024-09-07 12:38:51,230 [main] INFO ModelStats - 1 other attribute +2024-09-07 12:38:51,230 [main] INFO ModelStats - 7 associations (99/99): +2024-09-07 12:38:51,230 [main] INFO ModelStats - 7 simple association +2024-09-07 12:38:51,230 [main] INFO ModelStats - 1 operations (14/14): +2024-09-07 12:38:51,230 [main] INFO ModelStats - 1 void op() +2024-09-07 12:38:51,230 [main] INFO ModelStats - 0 dependencies (81/81): +2024-09-07 12:38:51,231 [main] INFO ModelStats - 7 diagrams (104/104) - 1 informative: +2024-09-07 12:38:51,231 [main] INFO ModelStats - 5 class diagram +2024-09-07 12:38:51,231 [main] INFO ModelStats - 2 package diagram +2024-09-07 12:38:51,231 [main] INFO ModelStats - 5 tag names (24/24): +2024-09-07 12:38:51,231 [main] INFO ModelStats - 2 nsprefix +2024-09-07 12:38:51,231 [main] INFO ModelStats - 2 nsuri +2024-09-07 12:38:51,231 [main] INFO ModelStats - 1 assocEndTag +2024-09-07 12:38:51,231 [main] INFO ModelStats - 1 targetEndTag +2024-09-07 12:38:51,231 [main] INFO ModelStats - 1 assocTag +2024-09-07 12:38:51,232 [main] INFO ModelStats - +2024-09-07 12:38:51,232 [main] INFO ModelStats - +2024-09-07 12:38:51,232 [main] INFO ModelStats - ------ IEC61850 statistics: +2024-09-07 12:38:51,233 [main] INFO ModelStats - [WG10] +2024-09-07 12:38:51,234 [main] INFO ModelStats - 51 packages (83/83) - 3 informative: +2024-09-07 12:38:51,234 [main] INFO ModelStats - 1 top package (per WG) +2024-09-07 12:38:51,234 [main] INFO ModelStats - 50 sub-package (any below top) +2024-09-07 12:38:51,234 [main] INFO ModelStats - 294 classes (386/386): +2024-09-07 12:38:51,234 [main] INFO ModelStats - 14 basic class +2024-09-07 12:38:51,234 [main] INFO ModelStats - 4 packed class +2024-09-07 12:38:51,234 [main] INFO ModelStats - 14 enumeration class +2024-09-07 12:38:51,234 [main] INFO ModelStats - 5 coded enumeration class +2024-09-07 12:38:51,234 [main] INFO ModelStats - 2 abbreviation enumeration class +2024-09-07 12:38:51,235 [main] INFO ModelStats - 1 presence condition enumeration class +2024-09-07 12:38:51,235 [main] INFO ModelStats - 3 coded enumeration DA class +2024-09-07 12:38:51,235 [main] INFO ModelStats - 8 enumeration DA class +2024-09-07 12:38:51,235 [main] INFO ModelStats - 4 packed list DA class +2024-09-07 12:38:51,235 [main] INFO ModelStats - 10 primitive DA class +2024-09-07 12:38:51,235 [main] INFO ModelStats - 5 composed DA class +2024-09-07 12:38:51,235 [main] INFO ModelStats - 4 coded enumeration FCDA class +2024-09-07 12:38:51,236 [main] INFO ModelStats - 15 enumeration FCDA class +2024-09-07 12:38:51,236 [main] INFO ModelStats - 53 FCDA class +2024-09-07 12:38:51,236 [main] INFO ModelStats - 1 control tracking CDC class (derived) +2024-09-07 12:38:51,236 [main] INFO ModelStats - 8 enumeration CDC class (derived) +2024-09-07 12:38:51,236 [main] INFO ModelStats - 21 primitive CDC class +2024-09-07 12:38:51,236 [main] INFO ModelStats - 4 composed CDC class +2024-09-07 12:38:51,236 [main] INFO ModelStats - 20 LN class +2024-09-07 12:38:51,236 [main] INFO ModelStats - 11 function (61850-5) class +2024-09-07 12:38:51,236 [main] INFO ModelStats - 84 other 61850 class +2024-09-07 12:38:51,237 [main] INFO ModelStats - 3 unknown 61850 class +2024-09-07 12:38:51,237 [main] INFO ModelStats - 551 attributes (761/761): +2024-09-07 12:38:51,237 [main] INFO ModelStats - 174 other enumeration literal +2024-09-07 12:38:51,237 [main] INFO ModelStats - 97 other attribute +2024-09-07 12:38:51,237 [main] INFO ModelStats - 10 abbreviation enumeration literal +2024-09-07 12:38:51,237 [main] INFO ModelStats - 30 presence condition enumeration literal +2024-09-07 12:38:51,237 [main] INFO ModelStats - 21 coded enumeration literal +2024-09-07 12:38:51,237 [main] INFO ModelStats - 52 basic attribute +2024-09-07 12:38:51,237 [main] INFO ModelStats - 4 packed attribute +2024-09-07 12:38:51,237 [main] INFO ModelStats - 42 (61850) enumeration literal +2024-09-07 12:38:51,238 [main] INFO ModelStats - 5 coded enumeration literal +2024-09-07 12:38:51,238 [main] INFO ModelStats - 3 coded enumeration DA attribute +2024-09-07 12:38:51,238 [main] INFO ModelStats - 9 enumeration DA attribute +2024-09-07 12:38:51,238 [main] INFO ModelStats - 4 packed list DA class +2024-09-07 12:38:51,238 [main] INFO ModelStats - 23 attribute on any DA whose type is primitive +2024-09-07 12:38:51,238 [main] INFO ModelStats - 14 attribute on composed DA whose type is another compoased DA +2024-09-07 12:38:51,238 [main] INFO ModelStats - 2 coded enumeration FCDA attribute +2024-09-07 12:38:51,238 [main] INFO ModelStats - 6 enumeration FCDA attribute +2024-09-07 12:38:51,238 [main] INFO ModelStats - 25 FCDA attribute +2024-09-07 12:38:51,239 [main] INFO ModelStats - 1 sub-data object (attribute on composed CDC whose type is another CDC) +2024-09-07 12:38:51,239 [main] INFO ModelStats - 13 enumerated DO (derived) +2024-09-07 12:38:51,239 [main] INFO ModelStats - 16 data object (attribute on LN) +2024-09-07 12:38:51,239 [main] INFO ModelStats - 62 associations (99/99): +2024-09-07 12:38:51,239 [main] INFO ModelStats - 18 composition +2024-09-07 12:38:51,239 [main] INFO ModelStats - 44 simple association +2024-09-07 12:38:51,239 [main] INFO ModelStats - 8 operations (14/14): +2024-09-07 12:38:51,239 [main] INFO ModelStats - 1 T[] op() +2024-09-07 12:38:51,239 [main] INFO ModelStats - 7 T op() +2024-09-07 12:38:51,239 [main] INFO ModelStats - 72 dependencies (81/81): +2024-09-07 12:38:51,239 [main] INFO ModelStats - 50 interPackage dependency +2024-09-07 12:38:51,239 [main] INFO ModelStats - 22 interClass dependency +2024-09-07 12:38:51,239 [main] INFO ModelStats - 69 diagrams (104/104) - 4 informative: +2024-09-07 12:38:51,239 [main] INFO ModelStats - 7 custom diagram +2024-09-07 12:38:51,239 [main] INFO ModelStats - 53 class diagram +2024-09-07 12:38:51,239 [main] INFO ModelStats - 3 statechart diagram +2024-09-07 12:38:51,240 [main] INFO ModelStats - 6 package diagram +2024-09-07 12:38:51,240 [main] INFO ModelStats - 8 tag names (24/24): +2024-09-07 12:38:51,240 [main] INFO ModelStats - 1 dummyPackageTag +2024-09-07 12:38:51,240 [main] INFO ModelStats - 6 scl +2024-09-07 12:38:51,240 [main] INFO ModelStats - 11 iecRef +2024-09-07 12:38:51,240 [main] INFO ModelStats - 11 ieeeRef +2024-09-07 12:38:51,240 [main] INFO ModelStats - 11 rsName +2024-09-07 12:38:51,240 [main] INFO ModelStats - 2 scl:emptyValue +2024-09-07 12:38:51,240 [main] INFO ModelStats - 6 moveAfter +2024-09-07 12:38:51,240 [main] INFO ModelStats - 1 secondTagName +2024-09-07 12:38:51,240 [main] INFO ModelStats - +2024-09-07 12:38:51,240 [main] INFO ModelStats - [WG17] +2024-09-07 12:38:51,240 [main] INFO ModelStats - 5 packages (83/83): +2024-09-07 12:38:51,240 [main] INFO ModelStats - 1 top package (per WG) +2024-09-07 12:38:51,240 [main] INFO ModelStats - 4 sub-package (any below top) +2024-09-07 12:38:51,240 [main] INFO ModelStats - 12 classes (386/386): +2024-09-07 12:38:51,240 [main] INFO ModelStats - 4 enumeration class +2024-09-07 12:38:51,240 [main] INFO ModelStats - 3 enumeration DA class +2024-09-07 12:38:51,241 [main] INFO ModelStats - 3 enumeration CDC class (derived) +2024-09-07 12:38:51,241 [main] INFO ModelStats - 2 other 61850 class +2024-09-07 12:38:51,241 [main] INFO ModelStats - 22 attributes (761/761): +2024-09-07 12:38:51,241 [main] INFO ModelStats - 12 other enumeration literal +2024-09-07 12:38:51,241 [main] INFO ModelStats - 7 other attribute +2024-09-07 12:38:51,241 [main] INFO ModelStats - 3 (61850) enumeration literal +2024-09-07 12:38:51,241 [main] INFO ModelStats - 0 associations (99/99): +2024-09-07 12:38:51,241 [main] INFO ModelStats - 0 operations (14/14): +2024-09-07 12:38:51,241 [main] INFO ModelStats - 1 dependencies (81/81): +2024-09-07 12:38:51,241 [main] INFO ModelStats - 1 interPackage dependency +2024-09-07 12:38:51,241 [main] INFO ModelStats - 5 diagrams (104/104): +2024-09-07 12:38:51,241 [main] INFO ModelStats - 4 class diagram +2024-09-07 12:38:51,241 [main] INFO ModelStats - 1 package diagram +2024-09-07 12:38:51,241 [main] INFO ModelStats - 0 tag names (24/24): +2024-09-07 12:38:51,241 [main] INFO ModelStats - +2024-09-07 12:38:51,241 [main] INFO ModelStats - [WG18] +2024-09-07 12:38:51,242 [main] INFO ModelStats - 2 packages (83/83): +2024-09-07 12:38:51,242 [main] INFO ModelStats - 1 top package (per WG) +2024-09-07 12:38:51,242 [main] INFO ModelStats - 1 sub-package (any below top) +2024-09-07 12:38:51,242 [main] INFO ModelStats - 1 classes (386/386): +2024-09-07 12:38:51,242 [main] INFO ModelStats - 1 abbreviation enumeration class +2024-09-07 12:38:51,242 [main] INFO ModelStats - 3 attributes (761/761): +2024-09-07 12:38:51,242 [main] INFO ModelStats - 3 abbreviation enumeration literal +2024-09-07 12:38:51,242 [main] INFO ModelStats - 0 associations (99/99): +2024-09-07 12:38:51,242 [main] INFO ModelStats - 0 operations (14/14): +2024-09-07 12:38:51,242 [main] INFO ModelStats - 0 dependencies (81/81): +2024-09-07 12:38:51,242 [main] INFO ModelStats - 2 diagrams (104/104): +2024-09-07 12:38:51,242 [main] INFO ModelStats - 2 class diagram +2024-09-07 12:38:51,242 [main] INFO ModelStats - 0 tag names (24/24): +2024-09-07 12:38:51,242 [main] INFO ModelStats - +2024-09-07 12:38:51,242 [main] INFO ModelStats - [JWG25] +2024-09-07 12:38:51,242 [main] INFO ModelStats - 1 packages (83/83): +2024-09-07 12:38:51,242 [main] INFO ModelStats - 1 top package (per WG) +2024-09-07 12:38:51,242 [main] INFO ModelStats - 0 classes (386/386): +2024-09-07 12:38:51,242 [main] INFO ModelStats - 0 attributes (761/761): +2024-09-07 12:38:51,243 [main] INFO ModelStats - 0 associations (99/99): +2024-09-07 12:38:51,243 [main] INFO ModelStats - 0 operations (14/14): +2024-09-07 12:38:51,243 [main] INFO ModelStats - 0 dependencies (81/81): +2024-09-07 12:38:51,243 [main] INFO ModelStats - 1 diagrams (104/104): +2024-09-07 12:38:51,243 [main] INFO ModelStats - 1 class diagram +2024-09-07 12:38:51,243 [main] INFO ModelStats - 0 tag names (24/24): +2024-09-07 12:38:51,243 [main] INFO ModelStats - +2024-09-07 12:38:51,243 [main] INFO ModelStats - [OTHER_IEC61850] +2024-09-07 12:38:51,243 [main] INFO ModelStats - 3 packages (83/83): +2024-09-07 12:38:51,243 [main] INFO ModelStats - 2 model package (with nature) +2024-09-07 12:38:51,243 [main] INFO ModelStats - 1 top package (per WG) +2024-09-07 12:38:51,244 [main] INFO ModelStats - 3 classes (386/386): +2024-09-07 12:38:51,244 [main] INFO ModelStats - 3 other 61850 class +2024-09-07 12:38:51,244 [main] INFO ModelStats - 0 attributes (761/761): +2024-09-07 12:38:51,244 [main] INFO ModelStats - 2 associations (99/99): +2024-09-07 12:38:51,244 [main] INFO ModelStats - 2 simple association +2024-09-07 12:38:51,244 [main] INFO ModelStats - 0 operations (14/14): +2024-09-07 12:38:51,244 [main] INFO ModelStats - 0 dependencies (81/81): +2024-09-07 12:38:51,244 [main] INFO ModelStats - 3 diagrams (104/104): +2024-09-07 12:38:51,244 [main] INFO ModelStats - 2 class diagram +2024-09-07 12:38:51,244 [main] INFO ModelStats - 1 package diagram +2024-09-07 12:38:51,244 [main] INFO ModelStats - 0 tag names (24/24): +2024-09-07 12:38:51,245 [main] INFO ModelStats - +2024-09-07 12:38:51,245 [main] INFO ModelStats - +2024-09-07 12:38:51,256 [main] INFO CrossPackageStats - +2024-09-07 12:38:51,256 [main] INFO CrossPackageStats - ====== Cross-package stats for 83 packages (of 83): +2024-09-07 12:38:51,257 [main] INFO CrossPackageStats - Cross-owner links: +2024-09-07 12:38:51,258 [main] INFO CrossPackageStats - 9 class inheritance: +2024-09-07 12:38:51,258 [main] INFO CrossPackageStats - (excluded inheritance from IdentifiedObject) +2024-09-07 12:38:51,258 [main] INFO CrossPackageStats - [WG13 Core::BaseVoltage, WG14 Other::BadDatatypes] +2024-09-07 12:38:51,258 [main] INFO CrossPackageStats - [WG13 Core::EquipmentContainer, OTHER_CIM Ext1::Pear] +2024-09-07 12:38:51,258 [main] INFO CrossPackageStats - [WG17 DerivedCDCs_7_420::ENSMaterial, WG10 CDCStatusInfo::ENS] +2024-09-07 12:38:51,258 [main] INFO CrossPackageStats - [WG17 DerivedCDCs_7_420::ENSOther, WG10 CDCStatusInfo::ENS] +2024-09-07 12:38:51,259 [main] INFO CrossPackageStats - [WG17 DerivedCDCs_7_420::ENCMaterial, WG10 CDCControl::ENC] +2024-09-07 12:38:51,259 [main] INFO CrossPackageStats - [WG17 DerivedDAs_7_420::Material, WG10 MetaModel::EnumDA] +2024-09-07 12:38:51,259 [main] INFO CrossPackageStats - [WG17 DerivedDAs_7_420::Material_control, WG10 MetaModel::EnumDA] +2024-09-07 12:38:51,259 [main] INFO CrossPackageStats - [WG17 DerivedDAs_7_420::Other, WG10 MetaModel::EnumDA] +2024-09-07 12:38:51,259 [main] INFO CrossPackageStats - [WG17 DOEnums_7_420::ExtBaseKind, WG10 DOEnums::BaseKind] +2024-09-07 12:38:51,259 [main] INFO CrossPackageStats - 38 class's attribute types: +2024-09-07 12:38:51,259 [main] INFO CrossPackageStats - (excluded types from Domain package) +2024-09-07 12:38:51,259 [main] INFO CrossPackageStats - [OTHER_CIM Informative::HasIllegalTypeForAttr, WG13 Core::Bay] +2024-09-07 12:38:51,259 [main] INFO CrossPackageStats - [WG13 Domain::ActivePowerChangeRate, OTHER_CIM NullCIM::NullCIM] +2024-09-07 12:38:51,259 [main] INFO CrossPackageStats - [WG10 WG10::WG10UMLVersion, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-07 12:38:51,259 [main] INFO CrossPackageStats - [WG10 IEC61850_7_2::IEC61850_7_2Namespace, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-07 12:38:51,260 [main] INFO CrossPackageStats - [WG10 CoreTypes::ObjectName, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-07 12:38:51,260 [main] INFO CrossPackageStats - [WG10 CoreTypes::P_ObjectReference, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-07 12:38:51,260 [main] INFO CrossPackageStats - [WG10 CoreTypes::P_TimeStamp, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-07 12:38:51,260 [main] INFO CrossPackageStats - [WG10 CommonAcsiTypes::IPAddress, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-07 12:38:51,260 [main] INFO CrossPackageStats - [WG10 CommonAcsiTypes::MulticastAddress, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-07 12:38:51,260 [main] INFO CrossPackageStats - [WG10 CommonAcsiTypes::ReportID, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-07 12:38:51,260 [main] INFO CrossPackageStats - [WG10 IEC61850_7_3::IEC61850_7_3Namespace, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-07 12:38:51,260 [main] INFO CrossPackageStats - [WG10 IEC61850_7_4::IEC61850_7_4Namespace, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-07 12:38:51,260 [main] INFO CrossPackageStats - [WG17 WG17::WG17UMLVersion, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-07 12:38:51,260 [main] INFO CrossPackageStats - [WG17 IEC51850_7_420::IEC61850_7_420Namespace, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-07 12:38:51,260 [main] INFO CrossPackageStats - [WG14 Other::MyClass, OTHER_CIM NullCIM::NullCIM] +2024-09-07 12:38:51,260 [main] INFO CrossPackageStats - [WG14 Other::AttrDuplication, OTHER_CIM NullCIM::NullCIM] +2024-09-07 12:38:51,260 [main] INFO CrossPackageStats - [WG10 ObjectReferences::FILEReference, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-07 12:38:51,260 [main] INFO CrossPackageStats - [WG10 ObjectReferences::LDReference, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-07 12:38:51,260 [main] INFO CrossPackageStats - [WG10 ObjectReferences::LNReference, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-07 12:38:51,261 [main] INFO CrossPackageStats - [WG10 ObjectReferences::CDCReference, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-07 12:38:51,261 [main] INFO CrossPackageStats - [WG10 ObjectReferences::FCDReference, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-07 12:38:51,261 [main] INFO CrossPackageStats - [WG10 ObjectReferences::FCDAReference, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-07 12:38:51,261 [main] INFO CrossPackageStats - [WG10 ObjectReferences::CBReference, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-07 12:38:51,261 [main] INFO CrossPackageStats - [WG10 ObjectReferences::LOGReference, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-07 12:38:51,261 [main] INFO CrossPackageStats - [WG10 ObjectReferences::LNOwnedDSReference, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-07 12:38:51,261 [main] INFO CrossPackageStats - [WG10 ObjectReferences::NonPersistentDSReference, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-07 12:38:51,261 [main] INFO CrossPackageStats - [WG10 LNGroupG::GGIO, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-07 12:38:51,261 [main] INFO CrossPackageStats - [WG10 LNGroupZ::ZAXN, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-07 12:38:51,261 [main] INFO CrossPackageStats - [WG10 LNGroupZ::ZAXN, WG17 DerivedCDCs_7_420::ENSMaterial] +2024-09-07 12:38:51,261 [main] INFO CrossPackageStats - [WG10 LNGroupZ::ZAXN, WG17 DerivedCDCs_7_420::ENCMaterial] +2024-09-07 12:38:51,261 [main] INFO CrossPackageStats - [WG10 LNGroupZ::ZAXN, WG17 DerivedCDCs_7_420::ENSOther] +2024-09-07 12:38:51,261 [main] INFO CrossPackageStats - [WG10 LNGroupP::ProtectionLN, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-07 12:38:51,261 [main] INFO CrossPackageStats - [WG10 CDCAnalogueInfo::CMV, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-07 12:38:51,261 [main] INFO CrossPackageStats - [WG10 CDCControl::BAC, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-07 12:38:51,262 [main] INFO CrossPackageStats - [WG10 CDCStatusInfo::ACD, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-07 12:38:51,262 [main] INFO CrossPackageStats - [WG10 CDCStatusSet::ENG, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-07 12:38:51,262 [main] INFO CrossPackageStats - [WG10 MetaModel::IED, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-07 12:38:51,262 [main] INFO CrossPackageStats - [WG10 MetaModel::SERVER, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-07 12:38:51,262 [main] INFO CrossPackageStats - 2 class's operation parameters and exceptions: +2024-09-07 12:38:51,262 [main] INFO CrossPackageStats - [WG10 CommonAcsiTypes::Authentication, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-07 12:38:51,262 [main] INFO CrossPackageStats - [WG13 Core::PowerSystemResource, OTHER_CIM NullCIM::NullCIM] +2024-09-07 12:38:51,262 [main] INFO CrossPackageStats - 0 class-to-class (hand-drawn) dependency: +2024-09-07 12:38:51,262 [main] INFO CrossPackageStats - 4 class-to-class associations: +2024-09-07 12:38:51,262 [main] INFO CrossPackageStats - [WG14 Other::MyClass, OTHER_CIM Informative::Class1] +2024-09-07 12:38:51,262 [main] INFO CrossPackageStats - [WG14 Assets::AssetInfo, WG13 Core::PowerSystemResource] +2024-09-07 12:38:51,262 [main] INFO CrossPackageStats - [OTHER_IEC61850 Ext2::Animal, OTHER_CIM Ext1::Fruit] +2024-09-07 12:38:51,263 [main] INFO CrossPackageStats - [OTHER_IEC61850 Ext2::Animal, OTHER_CIM Ext1::Fruit] +2024-09-07 12:38:51,263 [main] INFO CrossPackageStats - 7 package-to-package (hand-drawn) dependency: +2024-09-07 12:38:51,263 [main] INFO CrossPackageStats - [WG13 TC57CIM::IEC61970, WG14 IEC61968::Other] +2024-09-07 12:38:51,263 [main] INFO CrossPackageStats - [WG13 TC57CIM::IEC61970, WG14 TC57CIM::IEC61968] +2024-09-07 12:38:51,263 [main] INFO CrossPackageStats - [WG13 TC57CIM::IEC61970, WG16 TC57CIM::IEC62325] +2024-09-07 12:38:51,263 [main] INFO CrossPackageStats - [WG13 IEC61970::Topology, WG14 IEC61968::Other] +2024-09-07 12:38:51,263 [main] INFO CrossPackageStats - [WG16 TC57CIM::IEC62325, WG14 TC57CIM::IEC61968] +2024-09-07 12:38:51,263 [main] INFO CrossPackageStats - [WG17 IEC61850Domain::WG17, WG10 WG10::IEC61850_7_4] +2024-09-07 12:38:51,263 [main] INFO CrossPackageStats - [WG10 WG10::IEC61850_7_4, WG17 WG17::IEC51850_7_420] +2024-09-07 12:38:51,269 [main] TRACE CrossPackageStats - Cross-package links (within same owner): +2024-09-07 12:38:51,269 [main] TRACE CrossPackageStats - 108 class inheritance: +2024-09-07 12:38:51,269 [main] TRACE CrossPackageStats - (excluded inheritance from IdentifiedObject) +2024-09-07 12:38:51,269 [main] TRACE CrossPackageStats - [WG13 Topology::BusNameMarker, WG13 InformativeAndPrivate::InfClass2] +2024-09-07 12:38:51,269 [main] TRACE CrossPackageStats - [WG13 Topology::DumbSubterminal, WG13 Core::Terminal] +2024-09-07 12:38:51,269 [main] TRACE CrossPackageStats - [WG10 ObjectReferences::FILEReference, WG10 CoreTypes::P_ObjectReference] +2024-09-07 12:38:51,269 [main] TRACE CrossPackageStats - [WG10 ObjectReferences::LDReference, WG10 CoreTypes::P_ObjectReference] +2024-09-07 12:38:51,269 [main] TRACE CrossPackageStats - [WG10 ObjectReferences::NonPersistentDSReference, WG10 CoreTypes::P_ObjectReference] +2024-09-07 12:38:51,269 [main] TRACE CrossPackageStats - [WG10 LNGroupL::LPHD, WG10 MetaModel::LNPHD] +2024-09-07 12:38:51,269 [main] TRACE CrossPackageStats - [WG10 LNGroupL::LLN0, WG10 MetaModel::LN0] +2024-09-07 12:38:51,269 [main] TRACE CrossPackageStats - [WG10 LogicalNodes::DomainLN, WG10 MetaModel::LNDOM] +2024-09-07 12:38:51,269 [main] TRACE CrossPackageStats - [WG10 LNGroupG::GGIO, WG10 LogicalNodes::StatisticsLN] +2024-09-07 12:38:51,269 [main] TRACE CrossPackageStats - [WG10 LNGroupM::MMXU, WG10 LogicalNodes::StatisticsLN] +2024-09-07 12:38:51,269 [main] TRACE CrossPackageStats - [WG10 LNGroupZ::ZAXN, WG10 LogicalNodes::EquipmentInterfaceLN] +2024-09-07 12:38:51,269 [main] TRACE CrossPackageStats - [WG10 LNGroupL::KXYZ, WG10 LogicalNodes::DomainLN] +2024-09-07 12:38:51,269 [main] TRACE CrossPackageStats - [WG10 LNGroupC::CALH, WG10 LogicalNodes::DomainLN] +2024-09-07 12:38:51,269 [main] TRACE CrossPackageStats - [WG10 LNGroupP::ProtectionLN, WG10 LogicalNodes::DomainLN] +2024-09-07 12:38:51,269 [main] TRACE CrossPackageStats - [WG10 LNGroupR::RDIR, WG10 LogicalNodes::DomainLN] +2024-09-07 12:38:51,269 [main] TRACE CrossPackageStats - [WG10 CommonDataClasses::BasePrimitiveCDC, WG10 MetaModel::PrimitiveCDC] +2024-09-07 12:38:51,269 [main] TRACE CrossPackageStats - [WG10 CDCServiceTracking::CST, WG10 CommonDataClasses::BasePrimitiveCDC] +2024-09-07 12:38:51,269 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::DPS, WG10 CommonDataClasses::SubstitutionCDC] +2024-09-07 12:38:51,269 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::ENS, WG10 CommonDataClasses::SubstitutionCDC] +2024-09-07 12:38:51,269 [main] TRACE CrossPackageStats - [WG10 DerivedCDCs::ENSBehaviourMode, WG10 CDCStatusInfo::ENS] +2024-09-07 12:38:51,269 [main] TRACE CrossPackageStats - [WG10 DerivedCDCs::ENSHealth, WG10 CDCStatusInfo::ENS] +2024-09-07 12:38:51,269 [main] TRACE CrossPackageStats - [WG10 DerivedCDCs::ENSEnumDA, WG10 CDCStatusInfo::ENS] +2024-09-07 12:38:51,269 [main] TRACE CrossPackageStats - [WG10 CDCAnalogueInfo::CMV, WG10 CommonDataClasses::SubstitutionCDC] +2024-09-07 12:38:51,269 [main] TRACE CrossPackageStats - [WG10 CDCControl::ControllableCDC, WG10 CommonDataClasses::SubstitutionCDC] +2024-09-07 12:38:51,269 [main] TRACE CrossPackageStats - [WG10 DerivedCDCs::ENCBehaviourMode, WG10 CDCControl::ENC] +2024-09-07 12:38:51,269 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::EXY, WG10 CommonDataClasses::BasePrimitiveCDC] +2024-09-07 12:38:51,269 [main] TRACE CrossPackageStats - [WG10 DerivedCDCs::EXYBehaviourMode, WG10 CDCStatusInfo::EXY] +2024-09-07 12:38:51,269 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::ACD, WG10 CommonDataClasses::BasePrimitiveCDC] +2024-09-07 12:38:51,270 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::HST, WG10 CommonDataClasses::BasePrimitiveCDC] +2024-09-07 12:38:51,270 [main] TRACE CrossPackageStats - [WG10 CDCStatusSet::ENG, WG10 CommonDataClasses::BasePrimitiveCDC] +2024-09-07 12:38:51,270 [main] TRACE CrossPackageStats - [WG10 DerivedCDCs::ENGCalcMethod, WG10 CDCStatusSet::ENG] +2024-09-07 12:38:51,270 [main] TRACE CrossPackageStats - [WG10 CDCDescription::LPL, WG10 CommonDataClasses::BasePrimitiveCDC] +2024-09-07 12:38:51,270 [main] TRACE CrossPackageStats - [WG10 CommonDataClasses::BaseComposedCDC, WG10 MetaModel::ComposedCDC] +2024-09-07 12:38:51,270 [main] TRACE CrossPackageStats - [WG10 CDCAnalogueInfo::HarmonicMeasurandCDC, WG10 CommonDataClasses::BaseComposedCDC] +2024-09-07 12:38:51,270 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_BL, WG10 MetaModel::FCDA] +2024-09-07 12:38:51,270 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_BL, WG10 MetaModelFCsAndTrgOps::FCDA_BL] +2024-09-07 12:38:51,270 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_CF, WG10 MetaModel::FCDA] +2024-09-07 12:38:51,270 [main] TRACE CrossPackageStats - [WG10 FCDAs::EnumDA_CF_dchg, WG10 MetaModelFCsAndTrgOps::EnumFCDA_CF_dchg] +2024-09-07 12:38:51,270 [main] TRACE CrossPackageStats - [WG10 FCDAs::PhaseAngleReference_CF_dchg, WG10 MetaModelFCsAndTrgOps::EnumFCDA_CF_dchg] +2024-09-07 12:38:51,270 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_CF_dchg, WG10 MetaModelFCsAndTrgOps::FCDA_CF_dchg] +2024-09-07 12:38:51,270 [main] TRACE CrossPackageStats - [WG10 FCDAs::INT16U_CF_dchg, WG10 MetaModelFCsAndTrgOps::FCDA_CF_dchg] +2024-09-07 12:38:51,270 [main] TRACE CrossPackageStats - [WG10 FCDAs::INT32U_CF_dchg, WG10 MetaModelFCsAndTrgOps::FCDA_CF_dchg] +2024-09-07 12:38:51,270 [main] TRACE CrossPackageStats - [WG10 FCDAs::INT32_CF_dchg, WG10 MetaModelFCsAndTrgOps::FCDA_CF_dchg] +2024-09-07 12:38:51,270 [main] TRACE CrossPackageStats - [WG10 FCDAs::RangeConfig_CF_dchg, WG10 MetaModelFCsAndTrgOps::FCDA_CF_dchg] +2024-09-07 12:38:51,270 [main] TRACE CrossPackageStats - [WG10 FCDAs::INT16U_CF, WG10 MetaModelFCsAndTrgOps::FCDA_CF] +2024-09-07 12:38:51,270 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_DC, WG10 MetaModel::FCDA] +2024-09-07 12:38:51,270 [main] TRACE CrossPackageStats - [WG10 FCDAs::Point_DC, WG10 MetaModelFCsAndTrgOps::FCDA_DC] +2024-09-07 12:38:51,270 [main] TRACE CrossPackageStats - [WG10 FCDAs::UNICODE_STRING255_DC, WG10 MetaModelFCsAndTrgOps::FCDA_DC] +2024-09-07 12:38:51,270 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_EX, WG10 MetaModel::FCDA] +2024-09-07 12:38:51,270 [main] TRACE CrossPackageStats - [WG10 FCDAs::VISIBLE_STRING255_EX, WG10 MetaModelFCsAndTrgOps::FCDA_EX] +2024-09-07 12:38:51,270 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_MX, WG10 MetaModel::FCDA] +2024-09-07 12:38:51,270 [main] TRACE CrossPackageStats - [WG10 FCDAs::AnalogueValue_MX_dchg, WG10 MetaModelFCsAndTrgOps::FCDA_MX_dchg] +2024-09-07 12:38:51,270 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_MX_dchg, WG10 MetaModelFCsAndTrgOps::FCDA_MX_dchg] +2024-09-07 12:38:51,270 [main] TRACE CrossPackageStats - [WG10 FCDAs::AnalogueValue_MX_dchg_dupd, WG10 MetaModelFCsAndTrgOps::FCDA_MX_dchg_dupd] +2024-09-07 12:38:51,270 [main] TRACE CrossPackageStats - [WG10 FCDAs::Quality_MX_qchg, WG10 MetaModelFCsAndTrgOps::FCDA_MX_qchg] +2024-09-07 12:38:51,270 [main] TRACE CrossPackageStats - [WG10 FCDAs::AnalogueValue_MX, WG10 MetaModelFCsAndTrgOps::FCDA_MX] +2024-09-07 12:38:51,270 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_OR, WG10 MetaModel::FCDA] +2024-09-07 12:38:51,270 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_OR_dchg, WG10 MetaModelFCsAndTrgOps::FCDA_OR_dchg] +2024-09-07 12:38:51,270 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_SE, WG10 MetaModel::FCDA] +2024-09-07 12:38:51,270 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_SE, WG10 MetaModelFCsAndTrgOps::FCDA_SE] +2024-09-07 12:38:51,270 [main] TRACE CrossPackageStats - [WG10 FCDAs::Point_SE, WG10 MetaModelFCsAndTrgOps::FCDA_SE] +2024-09-07 12:38:51,270 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_SG, WG10 MetaModel::FCDA] +2024-09-07 12:38:51,270 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_SG, WG10 MetaModelFCsAndTrgOps::FCDA_SG] +2024-09-07 12:38:51,270 [main] TRACE CrossPackageStats - [WG10 FCDAs::Point_SG, WG10 MetaModelFCsAndTrgOps::FCDA_SG] +2024-09-07 12:38:51,271 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_SP, WG10 MetaModel::FCDA] +2024-09-07 12:38:51,271 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_SP_dchg, WG10 MetaModelFCsAndTrgOps::FCDA_SP_dchg] +2024-09-07 12:38:51,271 [main] TRACE CrossPackageStats - [WG10 FCDAs::Point_SP, WG10 MetaModelFCsAndTrgOps::FCDA_SP] +2024-09-07 12:38:51,271 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_ST, WG10 MetaModel::FCDA] +2024-09-07 12:38:51,271 [main] TRACE CrossPackageStats - [WG10 FCDAs::DpStatus_ST_dchg, WG10 MetaModelFCsAndTrgOps::PackedEnumFCDA_SP_dchg] +2024-09-07 12:38:51,271 [main] TRACE CrossPackageStats - [WG10 FCDAs::EnumDA_ST_dchg, WG10 MetaModelFCsAndTrgOps::EnumFCDA_ST_dchg] +2024-09-07 12:38:51,271 [main] TRACE CrossPackageStats - [WG10 FCDAs::PhaseFaultDirection_ST_dchg, WG10 MetaModelFCsAndTrgOps::EnumFCDA_ST_dchg] +2024-09-07 12:38:51,271 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_ST_dchg, WG10 MetaModelFCsAndTrgOps::FCDA_ST_dchg] +2024-09-07 12:38:51,271 [main] TRACE CrossPackageStats - [WG10 FCDAs::INT32_ST_dchg, WG10 MetaModelFCsAndTrgOps::FCDA_ST_dchg] +2024-09-07 12:38:51,271 [main] TRACE CrossPackageStats - [WG10 FCDAs::EnumDA_ST_dchg_dupd, WG10 MetaModelFCsAndTrgOps::EnumFCDA_ST_dchg_dupd] +2024-09-07 12:38:51,271 [main] TRACE CrossPackageStats - [WG10 FCDAs::INT32_ST_dchg_dupd, WG10 MetaModelFCsAndTrgOps::FCDA_ST_dchg_dupd] +2024-09-07 12:38:51,271 [main] TRACE CrossPackageStats - [WG10 FCDAs::Quality_ST_qchg, WG10 MetaModelFCsAndTrgOps::FCDA_ST_qchg] +2024-09-07 12:38:51,271 [main] TRACE CrossPackageStats - [WG10 FCDAs::TimeStamp_ST, WG10 MetaModelFCsAndTrgOps::FCDA_ST] +2024-09-07 12:38:51,271 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_SV, WG10 MetaModel::FCDA] +2024-09-07 12:38:51,271 [main] TRACE CrossPackageStats - [WG10 FCDAs::DpStatus_SV, WG10 MetaModelFCsAndTrgOps::PackedEnumFCDA_SV] +2024-09-07 12:38:51,271 [main] TRACE CrossPackageStats - [WG10 FCDAs::EnumDA_SV, WG10 MetaModelFCsAndTrgOps::EnumFCDA_SV] +2024-09-07 12:38:51,271 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_SV, WG10 MetaModelFCsAndTrgOps::FCDA_SV] +2024-09-07 12:38:51,271 [main] TRACE CrossPackageStats - [WG10 FCDAs::Quality_SV, WG10 MetaModelFCsAndTrgOps::FCDA_SV] +2024-09-07 12:38:51,271 [main] TRACE CrossPackageStats - [WG10 BasicDAs::PHYCOMADDR, WG10 MetaModel::PrimitiveDA] +2024-09-07 12:38:51,271 [main] TRACE CrossPackageStats - [WG10 BasicDAs::ObjectReference, WG10 MetaModel::PrimitiveDA] +2024-09-07 12:38:51,271 [main] TRACE CrossPackageStats - [WG10 BasicDAs::VISIBLE_STRING255, WG10 MetaModel::PrimitiveDA] +2024-09-07 12:38:51,271 [main] TRACE CrossPackageStats - [WG10 BasicDAs::UNICODE_STRING255, WG10 MetaModel::PrimitiveDA] +2024-09-07 12:38:51,271 [main] TRACE CrossPackageStats - [WG10 BasicDAs::INT32U, WG10 MetaModel::PrimitiveDA] +2024-09-07 12:38:51,271 [main] TRACE CrossPackageStats - [WG10 BasicDAs::INT32, WG10 MetaModel::PrimitiveDA] +2024-09-07 12:38:51,271 [main] TRACE CrossPackageStats - [WG10 BasicDAs::INT16U, WG10 MetaModel::PrimitiveDA] +2024-09-07 12:38:51,271 [main] TRACE CrossPackageStats - [WG10 BasicDAs::FLOAT32, WG10 MetaModel::PrimitiveDA] +2024-09-07 12:38:51,271 [main] TRACE CrossPackageStats - [WG10 BasicDAs::BOOLEAN, WG10 MetaModel::PrimitiveDA] +2024-09-07 12:38:51,271 [main] TRACE CrossPackageStats - [WG10 BasicDAs::TriggerConditions, WG10 MetaModel::PackedPrimitiveDA] +2024-09-07 12:38:51,271 [main] TRACE CrossPackageStats - [WG10 BasicDAs::TimeStamp, WG10 MetaModel::PackedPrimitiveDA] +2024-09-07 12:38:51,271 [main] TRACE CrossPackageStats - [WG10 ConstructedDAs::Quality, WG10 MetaModel::PackedPrimitiveDA] +2024-09-07 12:38:51,271 [main] TRACE CrossPackageStats - [WG10 BasicDAs::BsControl, WG10 MetaModel::PackedEnumDA] +2024-09-07 12:38:51,271 [main] TRACE CrossPackageStats - [WG10 BasicDAs::DpStatus, WG10 MetaModel::PackedEnumDA] +2024-09-07 12:38:51,271 [main] TRACE CrossPackageStats - [WG10 ImplicitDAs::SIUnit, WG10 MetaModel::EnumDA] +2024-09-07 12:38:51,271 [main] TRACE CrossPackageStats - [WG10 ImplicitDAs::Multiplier, WG10 MetaModel::EnumDA] +2024-09-07 12:38:51,271 [main] TRACE CrossPackageStats - [WG10 ImplicitDAs::PhaseFaultDirection, WG10 MetaModel::EnumDA] +2024-09-07 12:38:51,271 [main] TRACE CrossPackageStats - [WG10 ImplicitDAs::PhaseAngleReference, WG10 MetaModel::EnumDA] +2024-09-07 12:38:51,271 [main] TRACE CrossPackageStats - [WG10 DerivedDAs::BehaviourMode, WG10 MetaModel::EnumDA] +2024-09-07 12:38:51,271 [main] TRACE CrossPackageStats - [WG10 DerivedDAs::CalcMethod, WG10 MetaModel::EnumDA] +2024-09-07 12:38:51,271 [main] TRACE CrossPackageStats - [WG10 DerivedDAs::Health, WG10 MetaModel::EnumDA] +2024-09-07 12:38:51,271 [main] TRACE CrossPackageStats - [WG10 ConstructedDAs::AnalogueValue, WG10 MetaModel::ComposedDA] +2024-09-07 12:38:51,271 [main] TRACE CrossPackageStats - [WG10 ConstructedDAs::RangeConfig, WG10 MetaModel::ComposedDA] +2024-09-07 12:38:51,271 [main] TRACE CrossPackageStats - [WG10 ConstructedDAs::Unit, WG10 MetaModel::ComposedDA] +2024-09-07 12:38:51,271 [main] TRACE CrossPackageStats - [WG10 ConstructedDAs::Point, WG10 MetaModel::ComposedDA] +2024-09-07 12:38:51,271 [main] TRACE CrossPackageStats - [WG10 DerivedCDCs::SPCTransient, WG10 CDCControl::SPC] +2024-09-07 12:38:51,271 [main] TRACE CrossPackageStats - 194 class's attribute types: +2024-09-07 12:38:51,271 [main] TRACE CrossPackageStats - (excluded types from Domain package) +2024-09-07 12:38:51,271 [main] TRACE CrossPackageStats - [WG10 CommonAcsiTypes::MulticastAddress, WG10 CoreTypes::P_INT16U] +2024-09-07 12:38:51,272 [main] TRACE CrossPackageStats - [WG10 ConstructedDAs::DetailQual, WG10 CoreTypes::P_BOOLEAN] +2024-09-07 12:38:51,272 [main] TRACE CrossPackageStats - [OTHER_CIM Ext1::Pear, OTHER_CIM Informative::SomeSimpleType] +2024-09-07 12:38:51,272 [main] TRACE CrossPackageStats - [WG10 ObjectReferences::LDReference, WG10 CoreTypes::ObjectName] +2024-09-07 12:38:51,272 [main] TRACE CrossPackageStats - [WG10 ObjectReferences::LNReference, WG10 CoreTypes::ObjectName] +2024-09-07 12:38:51,272 [main] TRACE CrossPackageStats - [WG10 ObjectReferences::CDCReference, WG10 CoreTypes::ObjectName] +2024-09-07 12:38:51,272 [main] TRACE CrossPackageStats - [WG10 ObjectReferences::FCDReference, WG10 FunctionalConstraints::FcKind] +2024-09-07 12:38:51,272 [main] TRACE CrossPackageStats - [WG10 ObjectReferences::FCDAReference, WG10 CoreTypes::P_VISIBLE_STRING255] +2024-09-07 12:38:51,272 [main] TRACE CrossPackageStats - [WG10 ObjectReferences::FCDAReference, WG10 CoreTypes::ObjectName] +2024-09-07 12:38:51,272 [main] TRACE CrossPackageStats - [WG10 ObjectReferences::FCDAReference, WG10 CoreTypes::P_INT32U] +2024-09-07 12:38:51,272 [main] TRACE CrossPackageStats - [WG10 ObjectReferences::CBReference, WG10 CoreTypes::ObjectName] +2024-09-07 12:38:51,272 [main] TRACE CrossPackageStats - [WG10 ObjectReferences::LOGReference, WG10 CoreTypes::ObjectName] +2024-09-07 12:38:51,272 [main] TRACE CrossPackageStats - [WG10 ObjectReferences::LNOwnedDSReference, WG10 CoreTypes::ObjectName] +2024-09-07 12:38:51,272 [main] TRACE CrossPackageStats - [WG10 ObjectReferences::NonPersistentDSReference, WG10 CoreTypes::ObjectName] +2024-09-07 12:38:51,272 [main] TRACE CrossPackageStats - [WG10 MetaModel::NamedIEC61850Object, WG10 CoreTypes::ObjectName] +2024-09-07 12:38:51,272 [main] TRACE CrossPackageStats - [WG10 MetaModel::LD, WG10 ObjectReferences::LDReference] +2024-09-07 12:38:51,272 [main] TRACE CrossPackageStats - [WG10 MetaModel::LN, WG10 ObjectReferences::LNReference] +2024-09-07 12:38:51,272 [main] TRACE CrossPackageStats - [WG10 LNGroupL::LPHD, WG10 DerivedCDCs::ENSHealth] +2024-09-07 12:38:51,272 [main] TRACE CrossPackageStats - [WG10 LNGroupL::LPHD, WG10 DerivedCDCs::SPCTransient] +2024-09-07 12:38:51,272 [main] TRACE CrossPackageStats - [WG10 LNGroupL::LPHD, WG10 DerivedCDCs::SPSTransient] +2024-09-07 12:38:51,272 [main] TRACE CrossPackageStats - [WG10 LNGroupL::LLN0, WG10 CDCDescription::LPL] +2024-09-07 12:38:51,272 [main] TRACE CrossPackageStats - [WG10 LNGroupL::LLN0, WG10 DerivedCDCs::ENSBehaviourMode] +2024-09-07 12:38:51,272 [main] TRACE CrossPackageStats - [WG10 LNGroupL::LLN0, WG10 DerivedCDCs::ENSHealth] +2024-09-07 12:38:51,272 [main] TRACE CrossPackageStats - [WG10 LogicalNodes::DomainLN, WG10 CDCDescription::LPL] +2024-09-07 12:38:51,272 [main] TRACE CrossPackageStats - [WG10 LogicalNodes::DomainLN, WG10 DerivedCDCs::ENSHealth] +2024-09-07 12:38:51,272 [main] TRACE CrossPackageStats - [WG10 LogicalNodes::DomainLN, WG10 DerivedCDCs::ENCBehaviourMode] +2024-09-07 12:38:51,272 [main] TRACE CrossPackageStats - [WG10 LogicalNodes::DomainLN, WG10 CDCAnalogueInfo::CMV] +2024-09-07 12:38:51,272 [main] TRACE CrossPackageStats - [WG10 LogicalNodes::StatisticsLN, WG10 DerivedCDCs::SPSTransient] +2024-09-07 12:38:51,272 [main] TRACE CrossPackageStats - [WG10 LogicalNodes::StatisticsLN, WG10 DerivedCDCs::ENGCalcMethod] +2024-09-07 12:38:51,272 [main] TRACE CrossPackageStats - [WG10 LNGroupG::GGIO, WG10 DerivedCDCs::ENSHealth] +2024-09-07 12:38:51,272 [main] TRACE CrossPackageStats - [WG10 LNGroupG::GGIO, WG10 CDCAnalogueInfo::CMV] +2024-09-07 12:38:51,272 [main] TRACE CrossPackageStats - [WG10 LNGroupM::MMXU, WG10 CDCAnalogueInfo::HWYE] +2024-09-07 12:38:51,272 [main] TRACE CrossPackageStats - [WG10 LNGroupM::MMXU, WG10 CDCAnalogueInfo::CMV] +2024-09-07 12:38:51,272 [main] TRACE CrossPackageStats - [WG10 LNGroupM::MMXU, WG10 CDCStatusInfo::HST] +2024-09-07 12:38:51,272 [main] TRACE CrossPackageStats - [WG10 LogicalNodes::EquipmentInterfaceLN, WG10 DerivedCDCs::ENSHealth] +2024-09-07 12:38:51,272 [main] TRACE CrossPackageStats - [WG10 LNGroupZ::ZAXN, WG10 CDCAnalogueInfo::CMV] +2024-09-07 12:38:51,272 [main] TRACE CrossPackageStats - [WG10 LNGroupL::KXYZ, WG10 CDCAnalogueInfo::CMV] +2024-09-07 12:38:51,272 [main] TRACE CrossPackageStats - [WG10 LNGroupL::KXYZ, WG10 CDCStatusInfo::ENS] +2024-09-07 12:38:51,272 [main] TRACE CrossPackageStats - [WG10 LNGroupL::KXYZ, WG10 DerivedCDCs::ENSEnumDA] +2024-09-07 12:38:51,272 [main] TRACE CrossPackageStats - [WG10 LNGroupC::CALH, WG10 CDCStatusInfo::DPS] +2024-09-07 12:38:51,272 [main] TRACE CrossPackageStats - [WG10 LNGroupC::CALH, WG10 DerivedCDCs::EXYBehaviourMode] +2024-09-07 12:38:51,272 [main] TRACE CrossPackageStats - [WG10 LNGroupP::PDIF, WG10 CDCStatusInfo::ACD] +2024-09-07 12:38:51,272 [main] TRACE CrossPackageStats - [WG10 LNGroupP::PDIF, WG10 DerivedCDCs::ACTTransient] +2024-09-07 12:38:51,272 [main] TRACE CrossPackageStats - [WG10 LNGroupP::PDIS, WG10 CDCStatusInfo::ACD] +2024-09-07 12:38:51,272 [main] TRACE CrossPackageStats - [WG10 LNGroupP::PDIS, WG10 DerivedCDCs::ACTTransient] +2024-09-07 12:38:51,272 [main] TRACE CrossPackageStats - [WG10 LNGroupR::RDIR, WG10 CDCStatusInfo::ACD] +2024-09-07 12:38:51,272 [main] TRACE CrossPackageStats - [WG10 LNGroupR::RDIR, WG10 DerivedCDCs::SPSTransient] +2024-09-07 12:38:51,272 [main] TRACE CrossPackageStats - [WG10 MetaModel::CDC, WG10 ObjectReferences::CDCReference] +2024-09-07 12:38:51,273 [main] TRACE CrossPackageStats - [WG10 CommonDataClasses::BasePrimitiveCDC, WG10 FCDAs::UNICODE_STRING255_DC] +2024-09-07 12:38:51,273 [main] TRACE CrossPackageStats - [WG10 CommonDataClasses::BasePrimitiveCDC, WG10 FCDAs::VISIBLE_STRING255_EX] +2024-09-07 12:38:51,273 [main] TRACE CrossPackageStats - [WG10 CommonDataClasses::SubstitutionCDC, WG10 FCDAs::BOOLEAN_SV] +2024-09-07 12:38:51,273 [main] TRACE CrossPackageStats - [WG10 CommonDataClasses::SubstitutionCDC, WG10 FCDAs::Quality_SV] +2024-09-07 12:38:51,273 [main] TRACE CrossPackageStats - [WG10 CommonDataClasses::SubstitutionCDC, WG10 FCDAs::BOOLEAN_BL] +2024-09-07 12:38:51,273 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::DPS, WG10 FCDAs::DpStatus_ST_dchg] +2024-09-07 12:38:51,273 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::DPS, WG10 FCDAs::Quality_ST_qchg] +2024-09-07 12:38:51,273 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::DPS, WG10 FCDAs::TimeStamp_ST] +2024-09-07 12:38:51,273 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::DPS, WG10 FCDAs::DpStatus_SV] +2024-09-07 12:38:51,273 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::ENS, WG10 FCDAs::EnumDA_ST_dchg_dupd] +2024-09-07 12:38:51,273 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::ENS, WG10 FCDAs::Quality_ST_qchg] +2024-09-07 12:38:51,273 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::ENS, WG10 FCDAs::TimeStamp_ST] +2024-09-07 12:38:51,273 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::ENS, WG10 FCDAs::EnumDA_SV] +2024-09-07 12:38:51,273 [main] TRACE CrossPackageStats - [WG10 CDCAnalogueInfo::CMV, WG10 FCDAs::RangeConfig_CF_dchg] +2024-09-07 12:38:51,273 [main] TRACE CrossPackageStats - [WG10 CDCControl::ControllableCDC, WG10 FCDAs::BOOLEAN_OR_dchg] +2024-09-07 12:38:51,273 [main] TRACE CrossPackageStats - [WG10 CDCControl::ENC, WG10 FCDAs::EnumDA_ST_dchg] +2024-09-07 12:38:51,273 [main] TRACE CrossPackageStats - [WG10 CDCControl::ENC, WG10 FCDAs::EnumDA_SV] +2024-09-07 12:38:51,273 [main] TRACE CrossPackageStats - [WG10 CDCControl::ENC, WG10 MetaModel::EnumDA] +2024-09-07 12:38:51,273 [main] TRACE CrossPackageStats - [WG10 CDCControl::BAC, WG10 FCDAs::AnalogueValue_MX_dchg] +2024-09-07 12:38:51,273 [main] TRACE CrossPackageStats - [WG10 CDCControl::BAC, WG10 BasicDAs::BsControl] +2024-09-07 12:38:51,273 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::EXY, WG10 FCDAs::EnumDA_ST_dchg_dupd] +2024-09-07 12:38:51,273 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::EXY, WG10 FCDAs::Quality_ST_qchg] +2024-09-07 12:38:51,273 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::EXY, WG10 FCDAs::TimeStamp_ST] +2024-09-07 12:38:51,273 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::ACD, WG10 FCDAs::BOOLEAN_ST_dchg] +2024-09-07 12:38:51,273 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::HST, WG10 FCDAs::INT32_ST_dchg_dupd] +2024-09-07 12:38:51,273 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::HST, WG10 FCDAs::INT16U_CF] +2024-09-07 12:38:51,273 [main] TRACE CrossPackageStats - [WG10 CDCDescription::LPL, WG10 FCDAs::VISIBLE_STRING255_EX] +2024-09-07 12:38:51,273 [main] TRACE CrossPackageStats - [WG10 CommonDataClasses::BaseComposedCDC, WG10 FCDAs::UNICODE_STRING255_DC] +2024-09-07 12:38:51,273 [main] TRACE CrossPackageStats - [WG10 CommonDataClasses::BaseComposedCDC, WG10 FCDAs::VISIBLE_STRING255_EX] +2024-09-07 12:38:51,273 [main] TRACE CrossPackageStats - [WG10 CDCAnalogueInfo::HarmonicMeasurandCDC, WG10 FCDAs::INT16U_CF_dchg] +2024-09-07 12:38:51,273 [main] TRACE CrossPackageStats - [WG10 CDCAnalogueInfo::HarmonicMeasurandCDC, WG10 FCDAs::INT32U_CF_dchg] +2024-09-07 12:38:51,273 [main] TRACE CrossPackageStats - [WG10 CDCAnalogueInfo::HWYE, WG10 FCDAs::PhaseAngleReference_CF_dchg] +2024-09-07 12:38:51,273 [main] TRACE CrossPackageStats - [WG10 MetaModel::FCDA, WG10 ObjectReferences::FCDAReference] +2024-09-07 12:38:51,273 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_BL, WG10 FunctionalConstraints::FcKind] +2024-09-07 12:38:51,273 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_BL, WG10 BasicDAs::BOOLEAN] +2024-09-07 12:38:51,273 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_CF, WG10 FunctionalConstraints::FcKind] +2024-09-07 12:38:51,273 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_CF_dchg, WG10 TriggerOptions::TrgOpKind] +2024-09-07 12:38:51,273 [main] TRACE CrossPackageStats - [WG10 FCDAs::EnumDA_CF_dchg, WG10 MetaModel::EnumDA] +2024-09-07 12:38:51,273 [main] TRACE CrossPackageStats - [WG10 FCDAs::PhaseAngleReference_CF_dchg, WG10 ImplicitDAs::PhaseAngleReference] +2024-09-07 12:38:51,273 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_CF_dchg, WG10 BasicDAs::BOOLEAN] +2024-09-07 12:38:51,273 [main] TRACE CrossPackageStats - [WG10 FCDAs::INT16U_CF_dchg, WG10 BasicDAs::INT16U] +2024-09-07 12:38:51,273 [main] TRACE CrossPackageStats - [WG10 FCDAs::INT32U_CF_dchg, WG10 BasicDAs::INT32U] +2024-09-07 12:38:51,273 [main] TRACE CrossPackageStats - [WG10 FCDAs::INT32_CF_dchg, WG10 BasicDAs::INT32] +2024-09-07 12:38:51,273 [main] TRACE CrossPackageStats - [WG10 FCDAs::RangeConfig_CF_dchg, WG10 ConstructedDAs::RangeConfig] +2024-09-07 12:38:51,273 [main] TRACE CrossPackageStats - [WG10 FCDAs::INT16U_CF, WG10 BasicDAs::INT16U] +2024-09-07 12:38:51,273 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_DC, WG10 FunctionalConstraints::FcKind] +2024-09-07 12:38:51,273 [main] TRACE CrossPackageStats - [WG10 FCDAs::Point_DC, WG10 ConstructedDAs::Point] +2024-09-07 12:38:51,274 [main] TRACE CrossPackageStats - [WG10 FCDAs::UNICODE_STRING255_DC, WG10 BasicDAs::UNICODE_STRING255] +2024-09-07 12:38:51,274 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_EX, WG10 FunctionalConstraints::FcKind] +2024-09-07 12:38:51,274 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_EX, WG10 CoreTypes::P_BOOLEAN] +2024-09-07 12:38:51,274 [main] TRACE CrossPackageStats - [WG10 FCDAs::VISIBLE_STRING255_EX, WG10 BasicDAs::VISIBLE_STRING255] +2024-09-07 12:38:51,274 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_MX, WG10 FunctionalConstraints::FcKind] +2024-09-07 12:38:51,274 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_MX, WG10 CoreTypes::P_BOOLEAN] +2024-09-07 12:38:51,274 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_MX_dchg, WG10 TriggerOptions::TrgOpKind] +2024-09-07 12:38:51,274 [main] TRACE CrossPackageStats - [WG10 FCDAs::AnalogueValue_MX_dchg, WG10 ConstructedDAs::AnalogueValue] +2024-09-07 12:38:51,274 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_MX_dchg, WG10 BasicDAs::BOOLEAN] +2024-09-07 12:38:51,274 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_MX_dchg_dupd, WG10 TriggerOptions::TrgOpKind] +2024-09-07 12:38:51,274 [main] TRACE CrossPackageStats - [WG10 FCDAs::AnalogueValue_MX_dchg_dupd, WG10 ConstructedDAs::AnalogueValue] +2024-09-07 12:38:51,274 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_MX_qchg, WG10 TriggerOptions::TrgOpKind] +2024-09-07 12:38:51,274 [main] TRACE CrossPackageStats - [WG10 FCDAs::Quality_MX_qchg, WG10 ConstructedDAs::Quality] +2024-09-07 12:38:51,274 [main] TRACE CrossPackageStats - [WG10 FCDAs::AnalogueValue_MX, WG10 ConstructedDAs::AnalogueValue] +2024-09-07 12:38:51,274 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_OR, WG10 FunctionalConstraints::FcKind] +2024-09-07 12:38:51,274 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_OR, WG10 CoreTypes::P_BOOLEAN] +2024-09-07 12:38:51,274 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_OR_dchg, WG10 TriggerOptions::TrgOpKind] +2024-09-07 12:38:51,274 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_OR_dchg, WG10 BasicDAs::BOOLEAN] +2024-09-07 12:38:51,274 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_SE, WG10 FunctionalConstraints::FcKind] +2024-09-07 12:38:51,274 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_SE, WG10 CoreTypes::P_BOOLEAN] +2024-09-07 12:38:51,274 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_SE_dchg, WG10 TriggerOptions::TrgOpKind] +2024-09-07 12:38:51,274 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_SE, WG10 BasicDAs::BOOLEAN] +2024-09-07 12:38:51,274 [main] TRACE CrossPackageStats - [WG10 FCDAs::Point_SE, WG10 ConstructedDAs::Point] +2024-09-07 12:38:51,274 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_SG, WG10 FunctionalConstraints::FcKind] +2024-09-07 12:38:51,274 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_SG, WG10 CoreTypes::P_BOOLEAN] +2024-09-07 12:38:51,274 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_SG_dchg, WG10 TriggerOptions::TrgOpKind] +2024-09-07 12:38:51,274 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_SG, WG10 BasicDAs::BOOLEAN] +2024-09-07 12:38:51,274 [main] TRACE CrossPackageStats - [WG10 FCDAs::Point_SG, WG10 ConstructedDAs::Point] +2024-09-07 12:38:51,274 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_SP, WG10 FunctionalConstraints::FcKind] +2024-09-07 12:38:51,274 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_SP_dchg, WG10 TriggerOptions::TrgOpKind] +2024-09-07 12:38:51,274 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_SP_dchg, WG10 BasicDAs::BOOLEAN] +2024-09-07 12:38:51,274 [main] TRACE CrossPackageStats - [WG10 FCDAs::Point_SP, WG10 ConstructedDAs::Point] +2024-09-07 12:38:51,274 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_ST, WG10 FunctionalConstraints::FcKind] +2024-09-07 12:38:51,274 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_ST, WG10 CoreTypes::P_BOOLEAN] +2024-09-07 12:38:51,274 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_ST_dchg, WG10 TriggerOptions::TrgOpKind] +2024-09-07 12:38:51,274 [main] TRACE CrossPackageStats - [WG10 FCDAs::DpStatus_ST_dchg, WG10 BasicDAs::DpStatus] +2024-09-07 12:38:51,274 [main] TRACE CrossPackageStats - [WG10 FCDAs::EnumDA_ST_dchg, WG10 MetaModel::EnumDA] +2024-09-07 12:38:51,274 [main] TRACE CrossPackageStats - [WG10 FCDAs::PhaseFaultDirection_ST_dchg, WG10 ImplicitDAs::PhaseFaultDirection] +2024-09-07 12:38:51,274 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_ST_dchg, WG10 BasicDAs::BOOLEAN] +2024-09-07 12:38:51,274 [main] TRACE CrossPackageStats - [WG10 FCDAs::INT32_ST_dchg, WG10 BasicDAs::INT32] +2024-09-07 12:38:51,274 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_ST_dchg_dupd, WG10 TriggerOptions::TrgOpKind] +2024-09-07 12:38:51,274 [main] TRACE CrossPackageStats - [WG10 FCDAs::EnumDA_ST_dchg_dupd, WG10 MetaModel::EnumDA] +2024-09-07 12:38:51,274 [main] TRACE CrossPackageStats - [WG10 FCDAs::INT32_ST_dchg_dupd, WG10 BasicDAs::INT32] +2024-09-07 12:38:51,274 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_ST_dupd, WG10 TriggerOptions::TrgOpKind] +2024-09-07 12:38:51,274 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_ST_qchg, WG10 TriggerOptions::TrgOpKind] +2024-09-07 12:38:51,274 [main] TRACE CrossPackageStats - [WG10 FCDAs::Quality_ST_qchg, WG10 ConstructedDAs::Quality] +2024-09-07 12:38:51,274 [main] TRACE CrossPackageStats - [WG10 FCDAs::TimeStamp_ST, WG10 BasicDAs::TimeStamp] +2024-09-07 12:38:51,275 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_SV, WG10 FunctionalConstraints::FcKind] +2024-09-07 12:38:51,275 [main] TRACE CrossPackageStats - [WG10 FCDAs::DpStatus_SV, WG10 BasicDAs::DpStatus] +2024-09-07 12:38:51,275 [main] TRACE CrossPackageStats - [WG10 FCDAs::EnumDA_SV, WG10 MetaModel::EnumDA] +2024-09-07 12:38:51,275 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_SV, WG10 BasicDAs::BOOLEAN] +2024-09-07 12:38:51,275 [main] TRACE CrossPackageStats - [WG10 FCDAs::Quality_SV, WG10 ConstructedDAs::Quality] +2024-09-07 12:38:51,275 [main] TRACE CrossPackageStats - [WG10 MetaModel::DA, WG10 ObjectReferences::FCDAReference] +2024-09-07 12:38:51,275 [main] TRACE CrossPackageStats - [WG10 MetaModel::PrimitiveDA, WG10 AttrValues::AttrValue] +2024-09-07 12:38:51,275 [main] TRACE CrossPackageStats - [WG10 BasicDAs::PHYCOMADDR, WG10 CoreTypes::P_PHYCOMADDR] +2024-09-07 12:38:51,275 [main] TRACE CrossPackageStats - [WG10 BasicDAs::ObjectReference, WG10 CoreTypes::P_ObjectReference] +2024-09-07 12:38:51,275 [main] TRACE CrossPackageStats - [WG10 BasicDAs::VISIBLE_STRING255, WG10 CoreTypes::P_VISIBLE_STRING255] +2024-09-07 12:38:51,275 [main] TRACE CrossPackageStats - [WG10 BasicDAs::UNICODE_STRING255, WG10 CoreTypes::P_UNICODE_STRING255] +2024-09-07 12:38:51,275 [main] TRACE CrossPackageStats - [WG10 BasicDAs::INT32U, WG10 CoreTypes::P_INT32U] +2024-09-07 12:38:51,275 [main] TRACE CrossPackageStats - [WG10 BasicDAs::INT32, WG10 CoreTypes::P_INT32] +2024-09-07 12:38:51,275 [main] TRACE CrossPackageStats - [WG10 BasicDAs::INT16U, WG10 CoreTypes::P_INT16U] +2024-09-07 12:38:51,275 [main] TRACE CrossPackageStats - [WG10 BasicDAs::FLOAT32, WG10 CoreTypes::P_FLOAT32] +2024-09-07 12:38:51,275 [main] TRACE CrossPackageStats - [WG10 BasicDAs::BOOLEAN, WG10 CoreTypes::P_BOOLEAN] +2024-09-07 12:38:51,275 [main] TRACE CrossPackageStats - [WG10 BasicDAs::TriggerConditions, WG10 CoreTypes::P_TriggerConditions] +2024-09-07 12:38:51,275 [main] TRACE CrossPackageStats - [WG10 BasicDAs::TimeStamp, WG10 CoreTypes::P_TimeStamp] +2024-09-07 12:38:51,275 [main] TRACE CrossPackageStats - [WG10 ConstructedDAs::Quality, WG10 CoreTypes::P_BOOLEAN] +2024-09-07 12:38:51,275 [main] TRACE CrossPackageStats - [WG10 BasicDAs::BsControl, WG10 ACSIEnums::BsControlKind] +2024-09-07 12:38:51,275 [main] TRACE CrossPackageStats - [WG10 BasicDAs::DpStatus, WG10 ACSIEnums::DpStatusKind] +2024-09-07 12:38:51,275 [main] TRACE CrossPackageStats - [WG10 ImplicitDAs::SIUnit, WG10 DAEnums::SIUnitKind] +2024-09-07 12:38:51,275 [main] TRACE CrossPackageStats - [WG10 ImplicitDAs::Multiplier, WG10 DAEnums::MultiplierKind] +2024-09-07 12:38:51,275 [main] TRACE CrossPackageStats - [WG10 ImplicitDAs::PhaseFaultDirection, WG10 DAEnums::PhaseFaultDirectionKind] +2024-09-07 12:38:51,275 [main] TRACE CrossPackageStats - [WG10 ImplicitDAs::PhaseAngleReference, WG10 DAEnums::PhaseAngleReferenceKind] +2024-09-07 12:38:51,275 [main] TRACE CrossPackageStats - [WG10 DerivedDAs::BehaviourMode, WG10 DOEnums::BehaviourModeKind] +2024-09-07 12:38:51,275 [main] TRACE CrossPackageStats - [WG10 DerivedDAs::CalcMethod, WG10 DOEnums::CalcMethodKind] +2024-09-07 12:38:51,275 [main] TRACE CrossPackageStats - [WG10 DerivedDAs::Health, WG10 DOEnums::HealthKind] +2024-09-07 12:38:51,275 [main] TRACE CrossPackageStats - [WG17 DerivedDAs_7_420::Material, WG17 DOEnums_7_420::MaterialKind] +2024-09-07 12:38:51,275 [main] TRACE CrossPackageStats - [WG17 DerivedDAs_7_420::Material_control, WG17 DOEnums_7_420::MaterialTransitionKind] +2024-09-07 12:38:51,275 [main] TRACE CrossPackageStats - [WG17 DerivedDAs_7_420::Other, WG17 DOEnums_7_420::OtherKind] +2024-09-07 12:38:51,275 [main] TRACE CrossPackageStats - [WG10 ConstructedDAs::AnalogueValue, WG10 BasicDAs::INT32] +2024-09-07 12:38:51,275 [main] TRACE CrossPackageStats - [WG10 ConstructedDAs::AnalogueValue, WG10 BasicDAs::FLOAT32] +2024-09-07 12:38:51,275 [main] TRACE CrossPackageStats - [WG10 ConstructedDAs::RangeConfig, WG10 BasicDAs::INT32U] +2024-09-07 12:38:51,275 [main] TRACE CrossPackageStats - [WG10 ConstructedDAs::Unit, WG10 ImplicitDAs::SIUnit] +2024-09-07 12:38:51,275 [main] TRACE CrossPackageStats - [WG10 ConstructedDAs::Unit, WG10 ImplicitDAs::Multiplier] +2024-09-07 12:38:51,275 [main] TRACE CrossPackageStats - [WG10 ConstructedDAs::Point, WG10 BasicDAs::FLOAT32] +2024-09-07 12:38:51,275 [main] TRACE CrossPackageStats - [WG10 MetaModel::LNOwnedDS, WG10 ObjectReferences::LNOwnedDSReference] +2024-09-07 12:38:51,275 [main] TRACE CrossPackageStats - [WG10 MetaModel::PersistentDS, WG10 CoreTypes::P_BOOLEAN] +2024-09-07 12:38:51,275 [main] TRACE CrossPackageStats - [WG10 MetaModel::NonPersistentDS, WG10 CoreTypes::P_BOOLEAN] +2024-09-07 12:38:51,275 [main] TRACE CrossPackageStats - [WG10 MetaModel::NonPersistentDS, WG10 ObjectReferences::NonPersistentDSReference] +2024-09-07 12:38:51,275 [main] TRACE CrossPackageStats - [WG10 MetaModel::ControlBlock, WG10 ObjectReferences::CBReference] +2024-09-07 12:38:51,275 [main] TRACE CrossPackageStats - [WG10 MetaModel::BRCB, WG10 CommonAcsiTypes::IPAddress] +2024-09-07 12:38:51,275 [main] TRACE CrossPackageStats - [WG10 MetaModel::URCB, WG10 CommonAcsiTypes::IPAddress] +2024-09-07 12:38:51,275 [main] TRACE CrossPackageStats - [WG10 MetaModel::GCB, WG10 CommonAcsiTypes::MulticastAddress] +2024-09-07 12:38:51,275 [main] TRACE CrossPackageStats - [WG10 MetaModel::MSVCB, WG10 CommonAcsiTypes::MulticastAddress] +2024-09-07 12:38:51,276 [main] TRACE CrossPackageStats - [WG10 MetaModel::USVCB, WG10 CommonAcsiTypes::IPAddress] +2024-09-07 12:38:51,276 [main] TRACE CrossPackageStats - [WG10 MetaModel::LOG, WG10 ObjectReferences::LOGReference] +2024-09-07 12:38:51,276 [main] TRACE CrossPackageStats - [WG10 MetaModel::SERVER, WG10 CommonAcsiTypes::IPAddress] +2024-09-07 12:38:51,276 [main] TRACE CrossPackageStats - [WG10 MetaModel::FCD, WG10 ObjectReferences::FCDReference] +2024-09-07 12:38:51,276 [main] TRACE CrossPackageStats - [WG10 MetaModel::FCD, WG10 FunctionalConstraints::FcKind] +2024-09-07 12:38:51,276 [main] TRACE CrossPackageStats - [WG10 MetaModel::FILE, WG10 ObjectReferences::FILEReference] +2024-09-07 12:38:51,276 [main] TRACE CrossPackageStats - 3 class's operation parameters and exceptions: +2024-09-07 12:38:51,276 [main] TRACE CrossPackageStats - [WG10 AttrValues::AttrDefinition, WG10 ObjectReferences::FCDAReference] +2024-09-07 12:38:51,276 [main] TRACE CrossPackageStats - [WG10 AttrValues::NamedAttrValue, WG10 ObjectReferences::FCDAReference] +2024-09-07 12:38:51,276 [main] TRACE CrossPackageStats - [WG13 Core::VoltageLevel, WG13 Domain::Voltage] +2024-09-07 12:38:51,276 [main] TRACE CrossPackageStats - 12 class-to-class (hand-drawn) dependency: +2024-09-07 12:38:51,276 [main] TRACE CrossPackageStats - [WG10 ProtectionEq::BusbarProt, WG10 LNGroupP::PDIF] +2024-09-07 12:38:51,276 [main] TRACE CrossPackageStats - [WG10 ProtectionEq::DirectionalProt, WG10 LNGroupR::RDIR] +2024-09-07 12:38:51,276 [main] TRACE CrossPackageStats - [WG10 ProtectionEq::DirectionalProt, WG10 LNGroupP::PDIS] +2024-09-07 12:38:51,276 [main] TRACE CrossPackageStats - [WG10 ProtectionEq::DirectionalPowerProt, WG10 LNGroupR::RDIR] +2024-09-07 12:38:51,276 [main] TRACE CrossPackageStats - [WG10 ProtectionEq::LineDifferentialProt, WG10 LNGroupP::PDIF] +2024-09-07 12:38:51,276 [main] TRACE CrossPackageStats - [WG10 ControlEq::AlarmHandler, WG10 LNGroupC::CALH] +2024-09-07 12:38:51,276 [main] TRACE CrossPackageStats - [WG10 MeasurementsAndMetering::ThreePhaseMeasurement, WG10 LNGroupM::MMXU] +2024-09-07 12:38:51,276 [main] TRACE CrossPackageStats - [WG10 SystemWide::LogicalDeviceData, WG10 LNGroupL::LLN0] +2024-09-07 12:38:51,276 [main] TRACE CrossPackageStats - [WG10 SystemWide::PhysicalDeviceData, WG10 LNGroupL::LPHD] +2024-09-07 12:38:51,276 [main] TRACE CrossPackageStats - [WG10 PrimaryEq::AuxiliaryNetwork, WG10 LNGroupZ::ZAXN] +2024-09-07 12:38:51,276 [main] TRACE CrossPackageStats - [WG10 PrimaryEq::GenericIO, WG10 LNGroupG::GGIO] +2024-09-07 12:38:51,276 [main] TRACE CrossPackageStats - [WG10 LNGroupP::PDIS, WG10 LNGroupR::RDIR] +2024-09-07 12:38:51,276 [main] TRACE CrossPackageStats - 9 class-to-class associations: +2024-09-07 12:38:51,276 [main] TRACE CrossPackageStats - [WG13 Topology::TopologicalNode, WG13 Core::BaseVoltage] +2024-09-07 12:38:51,276 [main] TRACE CrossPackageStats - [WG13 Topology::ConnectivityNode, WG13 Core::ConnectivityNodeContainer] +2024-09-07 12:38:51,276 [main] TRACE CrossPackageStats - [WG13 Topology::TopologicalNode, WG13 Core::ConnectivityNodeContainer] +2024-09-07 12:38:51,276 [main] TRACE CrossPackageStats - [WG13 Core::Terminal, WG13 Topology::ConnectivityNode] +2024-09-07 12:38:51,276 [main] TRACE CrossPackageStats - [WG13 Core::Terminal, WG13 Topology::TopologicalNode] +2024-09-07 12:38:51,276 [main] TRACE CrossPackageStats - [WG10 MetaModel::MCAA, WG10 CommonAcsiTypes::Authentication] +2024-09-07 12:38:51,276 [main] TRACE CrossPackageStats - [WG10 MetaModel::TPAA, WG10 CommonAcsiTypes::Authentication] +2024-09-07 12:38:51,276 [main] TRACE CrossPackageStats - [WG10 MetaModel::SGCB, WG10 MetaModelFCsAndTrgOps::FCDA_SG] +2024-09-07 12:38:51,276 [main] TRACE CrossPackageStats - [WG10 MetaModel::SGCB, WG10 MetaModelFCsAndTrgOps::FCDA_SE] +2024-09-07 12:38:51,276 [main] TRACE CrossPackageStats - 50 package-to-package (hand-drawn) dependency: +2024-09-07 12:38:51,276 [main] TRACE CrossPackageStats - [WG13 IEC61970::Core, WG13 IEC61970::Domain] +2024-09-07 12:38:51,276 [main] TRACE CrossPackageStats - [WG13 IEC61970::Core, WG13 IEC61970::Topology] +2024-09-07 12:38:51,276 [main] TRACE CrossPackageStats - [WG10 WG10::IEC61850_7_4, WG10 WG10::IEC61850_7_2] +2024-09-07 12:38:51,276 [main] TRACE CrossPackageStats - [WG10 WG10::IEC61850_7_3, WG10 WG10::IEC61850_7_2] +2024-09-07 12:38:51,276 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::MetaModel, WG10 IEC61850_7_2::FunctionalConstraints] +2024-09-07 12:38:51,276 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::MetaModel, WG10 IEC61850_7_2::TriggerOptions] +2024-09-07 12:38:51,276 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::ACSIEnums, WG10 IEC61850_7_2::BasicDAs] +2024-09-07 12:38:51,276 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::CoreTypes, WG10 IEC61850_7_3::ConstructedDAs] +2024-09-07 12:38:51,276 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::CoreTypes, WG10 IEC61850_7_2::MetaModel] +2024-09-07 12:38:51,276 [main] TRACE CrossPackageStats - [WG10 AcsiTypes::CommonAcsiTypes, WG10 IEC61850_7_2::CoreTypes] +2024-09-07 12:38:51,276 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::AcsiTypes, WG10 IEC61850_7_2::CoreTypes] +2024-09-07 12:38:51,276 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::CoreTypes, WG10 IEC61850_7_2::BasicDAs] +2024-09-07 12:38:51,276 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::AttrValues, WG10 IEC61850_7_2::CoreTypes] +2024-09-07 12:38:51,277 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::CoreTypes, WG10 IEC61850_7_2::ObjectReferences] +2024-09-07 12:38:51,277 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::MetaModel, WG10 IEC61850_7_2::ObjectReferences] +2024-09-07 12:38:51,277 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::AttrValues, WG10 IEC61850_7_2::ObjectReferences] +2024-09-07 12:38:51,277 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::AttrValues, WG10 IEC61850_7_2::MetaModel] +2024-09-07 12:38:51,277 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::AttrValues, WG10 IEC61850_7_2::BasicDAs] +2024-09-07 12:38:51,277 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::BasicDAs, WG10 IEC61850_7_3::FCDAs] +2024-09-07 12:38:51,277 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_3::ConstructedDAs, WG10 IEC61850_7_2::BasicDAs] +2024-09-07 12:38:51,277 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::MetaModel, WG10 IEC61850_7_2::BasicDAs] +2024-09-07 12:38:51,277 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::AcsiTypes, WG10 IEC61850_7_2::MetaModel] +2024-09-07 12:38:51,277 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_4::LogicalNodes, WG10 IEC61850_7_2::MetaModel] +2024-09-07 12:38:51,277 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::MetaModel, WG10 IEC61850_7_4::DerivedDAs] +2024-09-07 12:38:51,277 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::MetaModel, WG10 IEC61850_7_3::CommonDataClasses] +2024-09-07 12:38:51,277 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::MetaModel, WG10 IEC61850_7_3::FCDAs] +2024-09-07 12:38:51,277 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_3::ConstructedDAs, WG10 IEC61850_7_2::MetaModel] +2024-09-07 12:38:51,277 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::CDCServiceTracking, WG10 IEC61850_7_3::CommonDataClasses] +2024-09-07 12:38:51,277 [main] TRACE CrossPackageStats - [WG10 WG10::IEC61850_7_3, WG10 WG10::IEC61850_7_4] +2024-09-07 12:38:51,277 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_3::DAEnums, WG10 IEC61850_7_4::DerivedCDCs] +2024-09-07 12:38:51,277 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_3::DAEnums, WG10 IEC61850_7_3::ImplicitDAs] +2024-09-07 12:38:51,277 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_3::ImplicitDAs, WG10 IEC61850_7_3::FCDAs] +2024-09-07 12:38:51,277 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_3::ConstructedDAs, WG10 IEC61850_7_3::ImplicitDAs] +2024-09-07 12:38:51,277 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_3::ConstructedDAs, WG10 IEC61850_7_3::FCDAs] +2024-09-07 12:38:51,277 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_3::CommonDataClasses, WG10 IEC61850_7_3::FCDAs] +2024-09-07 12:38:51,277 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_4::LogicalNodes, WG10 IEC61850_7_3::CommonDataClasses] +2024-09-07 12:38:51,277 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_4::DerivedCDCs, WG10 IEC61850_7_3::CommonDataClasses] +2024-09-07 12:38:51,277 [main] TRACE CrossPackageStats - [WG10 LogicalNodes::LNGroupP, WG10 Functions::ProtectionEq] +2024-09-07 12:38:51,277 [main] TRACE CrossPackageStats - [WG10 LogicalNodes::LNGroupR, WG10 Functions::ProtectionEq] +2024-09-07 12:38:51,277 [main] TRACE CrossPackageStats - [WG10 Functions::ControlEq, WG10 LogicalNodes::LNGroupG] +2024-09-07 12:38:51,277 [main] TRACE CrossPackageStats - [WG10 Functions::ControlEq, WG10 LogicalNodes::LNGroupP] +2024-09-07 12:38:51,277 [main] TRACE CrossPackageStats - [WG10 Functions::ControlEq, WG10 LogicalNodes::LNGroupC] +2024-09-07 12:38:51,277 [main] TRACE CrossPackageStats - [WG10 LogicalNodes::LNGroupM, WG10 Functions::MeasurementsAndMetering] +2024-09-07 12:38:51,277 [main] TRACE CrossPackageStats - [WG10 Functions::SystemWide, WG10 LogicalNodes::LNGroupL] +2024-09-07 12:38:51,277 [main] TRACE CrossPackageStats - [WG10 Functions::SystemWide, WG10 LogicalNodes::LNGroupG] +2024-09-07 12:38:51,277 [main] TRACE CrossPackageStats - [WG10 Functions::PrimaryEq, WG10 LogicalNodes::LNGroupG] +2024-09-07 12:38:51,277 [main] TRACE CrossPackageStats - [WG10 Functions::PrimaryEq, WG10 LogicalNodes::LNGroupZ] +2024-09-07 12:38:51,277 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_4::DOEnums, WG10 IEC61850_7_4::DerivedDAs] +2024-09-07 12:38:51,277 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_4::DerivedCDCs, WG10 IEC61850_7_4::DerivedDAs] +2024-09-07 12:38:51,277 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_4::LogicalNodes, WG10 IEC61850_7_4::DerivedCDCs] +2024-09-07 12:38:51,277 [main] DEBUG Util - +2024-09-07 12:38:51,277 [main] DEBUG Util - ======= 83 packages: ======== +2024-09-07 12:38:51,278 [main] DEBUG Util - (177) OTHER_CIM CIM model package /TC57CIMProfiles: 1 diagrams, 0 classes, 0 packages +2024-09-07 12:38:51,278 [main] DEBUG Util - (2) OTHER_CIM CIM model package /TC57CIM: 1 diagrams, 0 classes, 4 packages, ; tags={nsprefix=cim, nsuri=http://cim123} +2024-09-07 12:38:51,278 [main] DEBUG Util - (71) OTHER_CIM CIM INF top package <> TC57CIM::Informative: 1 diagrams, 6 classes, 0 packages +2024-09-07 12:38:51,278 [main] DEBUG UmlPackage - deduceAndFillNamespaceInfoDependencies for TC57CIM::IEC61970, targetPackages = [] +2024-09-07 12:38:51,278 [main] DEBUG Util - (39) WG13 CIM top package TC57CIM::IEC61970 (version={IEC61970CIM14v12, 20119-08-01}) (namespace IEC61970CIM14v12:2011, 20119-08-01; UML version 2011): 1 diagrams, 1 classes, 5 packages +2024-09-07 12:38:51,278 [main] DEBUG Util - (55) WG13 CIM INF private package IEC61970::InformativeAndPrivate: 1 diagrams, 2 classes, 0 packages +2024-09-07 12:38:51,278 [main] DEBUG Util - (166) WG13 CIM INF package IEC61970::DocIEC61970: 1 diagrams, 0 classes, 0 packages +2024-09-07 12:38:51,278 [main] DEBUG Util - (41) WG13 CIM package <> IEC61970::Domain: 2 diagrams, 17 classes, 0 packages +2024-09-07 12:38:51,278 [main] DEBUG Util - (54) WG13 CIM package IEC61970::Core: 2 diagrams, 19 classes, 0 packages, efferent=[Domain], afferent=[Domain] +2024-09-07 12:38:51,278 [main] DEBUG Util - (52) WG13 CIM package <> IEC61970::Topology: 2 diagrams, 6 classes, 1 packages, efferent=[Core, Other], afferent=[Core, Other] +2024-09-07 12:38:51,278 [main] DEBUG Util - (168) WG13 CIM package Topology::TestEnums: 1 diagrams, 3 classes, 0 packages +2024-09-07 12:38:51,278 [main] DEBUG Util - (56) WG14 CIM top package TC57CIM::IEC61968: 1 diagrams, 1 classes, 5 packages, efferent=[IEC61970], afferent=[IEC61970], ; tags={nsprefix=n14, nsuri=http://wg14/customNamespace} +2024-09-07 12:38:51,278 [main] DEBUG Util - (173) WG14 CIM package IEC61968::EmbeddedExtension: 1 diagrams, 0 classes, 0 packages, ; tags={nsuri=http://embeddedExt, nsprefix=eext} +2024-09-07 12:38:51,278 [main] DEBUG Util - (83) WG14 CIM package IEC61968::Assets: 2 diagrams, 1 classes, 0 packages +2024-09-07 12:38:51,278 [main] DEBUG Util - (67) WG14 CIM package IEC61968::Core: 0 diagrams, 0 classes, 0 packages +2024-09-07 12:38:51,278 [main] DEBUG Util - (66) WG14 CIM package IEC61968::Other: 0 diagrams, 0 classes, 0 packages +2024-09-07 12:38:51,278 [main] DEBUG Util - (57) WG14 CIM package IEC61968::Other: 1 diagrams, 9 classes, 0 packages, efferent=[IEC61970], afferent=[IEC61970] +2024-09-07 12:38:51,278 [main] DEBUG Util - (82) WG16 CIM top package TC57CIM::IEC62325: 1 diagrams, 0 classes, 0 packages, efferent=[IEC61970, IEC61968], afferent=[IEC61970, IEC61968] +2024-09-07 12:38:51,278 [main] DEBUG Util - (58) OTHER_IEC61850 IEC61850 model package /IEC61850Domain: 1 diagrams, 0 classes, 4 packages +2024-09-07 12:38:51,278 [main] DEBUG Util - (85) WG10 IEC61850 top package IEC61850Domain::WG10 (version={IEC61850UML02v07, 2011-07-02}): 3 diagrams, 1 classes, 4 packages +2024-09-07 12:38:51,279 [main] DEBUG Util - (86) WG10 IEC61850 package WG10::NewIEC61850_7_2: 1 diagrams, 0 classes, 1 packages +2024-09-07 12:38:51,279 [main] DEBUG Util - (87) WG10 IEC61850 package NewIEC61850_7_2::GenericModel: 2 diagrams, 33 classes, 0 packages +2024-09-07 12:38:51,279 [main] ERROR NamespaceInfo - Unexpected attribute 'name' in namespace class 'IEC61850_7_2Namespace'. +2024-09-07 12:38:51,279 [main] DEBUG UmlPackage - deduceAndFillNamespaceInfoDependencies for WG10::IEC61850_7_2, targetPackages = [] +2024-09-07 12:38:51,279 [main] DEBUG Util - (88) WG10 IEC61850 package WG10::IEC61850_7_2 (namespace IEC61850-7-2:2007, 2011-08-01; UML version IEC61850UML02v07): 2 diagrams, 1 classes, 10 packages +2024-09-07 12:38:51,279 [main] DEBUG Util - (90) WG10 IEC61850 package IEC61850_7_2::FunctionalConstraints: 1 diagrams, 1 classes, 0 packages +2024-09-07 12:38:51,279 [main] DEBUG Util - (91) WG10 IEC61850 package IEC61850_7_2::TriggerOptions: 1 diagrams, 1 classes, 0 packages +2024-09-07 12:38:51,279 [main] DEBUG Util - (92) WG10 IEC61850 package IEC61850_7_2::ACSIEnums: 1 diagrams, 2 classes, 0 packages +2024-09-07 12:38:51,279 [main] DEBUG Util - (93) WG10 IEC61850 package IEC61850_7_2::CoreTypes: 1 diagrams, 14 classes, 0 packages +2024-09-07 12:38:51,279 [main] DEBUG Util - (95) WG10 IEC61850 package IEC61850_7_2::ObjectReferences: 1 diagrams, 11 classes, 1 packages, efferent=[CoreTypes], afferent=[CoreTypes] +2024-09-07 12:38:51,279 [main] DEBUG Util - (96) WG10 IEC61850 INF package ObjectReferences::DetailedDiagrams: 1 diagrams, 0 classes, 0 packages +2024-09-07 12:38:51,279 [main] DEBUG Util - (97) WG10 IEC61850 package IEC61850_7_2::AttrValues: 1 diagrams, 4 classes, 0 packages, efferent=[CoreTypes, ObjectReferences], afferent=[CoreTypes, ObjectReferences] +2024-09-07 12:38:51,279 [main] DEBUG Util - (98) WG10 IEC61850 package IEC61850_7_2::BasicDAs: 1 diagrams, 13 classes, 0 packages, efferent=[ACSIEnums, CoreTypes, AttrValues, MetaModel], afferent=[ACSIEnums, CoreTypes, AttrValues, MetaModel] +2024-09-07 12:38:51,279 [main] DEBUG Util - (99) WG10 IEC61850 package IEC61850_7_2::AcsiTypes: 1 diagrams, 0 classes, 1 packages, efferent=[CoreTypes], afferent=[CoreTypes] +2024-09-07 12:38:51,279 [main] DEBUG Util - (100) WG10 IEC61850 package AcsiTypes::CommonAcsiTypes: 1 diagrams, 8 classes, 0 packages, efferent=[CoreTypes], afferent=[CoreTypes] +2024-09-07 12:38:51,280 [main] DEBUG Util - (109) WG10 IEC61850 package IEC61850_7_2::MetaModel: 5 diagrams, 43 classes, 1 packages, efferent=[FunctionalConstraints, TriggerOptions, CoreTypes, ObjectReferences, AttrValues, AcsiTypes], afferent=[FunctionalConstraints, TriggerOptions, CoreTypes, ObjectReferences, AttrValues, AcsiTypes] +2024-09-07 12:38:51,280 [main] DEBUG Util - (110) WG10 IEC61850 package MetaModel::MetaModelFCsAndTrgOps: 1 diagrams, 34 classes, 0 packages +2024-09-07 12:38:51,280 [main] DEBUG Util - (112) WG10 IEC61850 package IEC61850_7_2::CDCServiceTracking: 1 diagrams, 10 classes, 0 packages, efferent=[CommonDataClasses], afferent=[CommonDataClasses] +2024-09-07 12:38:51,280 [main] ERROR NamespaceInfo - Unexpected attribute 'name' in namespace class 'IEC61850_7_3Namespace'. +2024-09-07 12:38:51,280 [main] DEBUG UmlPackage - deduceAndFillNamespaceInfoDependencies for WG10::IEC61850_7_3, targetPackages = [] +2024-09-07 12:38:51,280 [main] DEBUG Util - (113) WG10 IEC61850 package WG10::IEC61850_7_3 (namespace IEC61850-7-3:2011B, 2011-08-01; UML version IEC61850UML02v07): 1 diagrams, 1 classes, 6 packages, efferent=[IEC61850_7_2, IEC61850_7_4], afferent=[IEC61850_7_2, IEC61850_7_4] +2024-09-07 12:38:51,280 [main] DEBUG Util - (114) WG10 IEC61850 package IEC61850_7_3::PresenceConditions: 1 diagrams, 1 classes, 0 packages +2024-09-07 12:38:51,280 [main] DEBUG Util - (115) WG10 IEC61850 package IEC61850_7_3::DAEnums: 1 diagrams, 4 classes, 0 packages +2024-09-07 12:38:51,280 [main] DEBUG Util - (116) WG10 IEC61850 package IEC61850_7_3::ImplicitDAs: 1 diagrams, 4 classes, 0 packages, efferent=[DAEnums], afferent=[DAEnums] +2024-09-07 12:38:51,280 [main] DEBUG Util - (117) WG10 IEC61850 package IEC61850_7_3::ConstructedDAs: 1 diagrams, 8 classes, 0 packages, efferent=[CoreTypes, BasicDAs, MetaModel, ImplicitDAs], afferent=[CoreTypes, BasicDAs, MetaModel, ImplicitDAs] +2024-09-07 12:38:51,280 [main] DEBUG Util - (118) WG10 IEC61850 package IEC61850_7_3::FCDAs: 1 diagrams, 37 classes, 0 packages, efferent=[BasicDAs, MetaModel, ImplicitDAs, ConstructedDAs], afferent=[BasicDAs, MetaModel, ImplicitDAs, ConstructedDAs] +2024-09-07 12:38:51,280 [main] DEBUG Util - (119) WG10 IEC61850 package IEC61850_7_3::CommonDataClasses: 2 diagrams, 3 classes, 6 packages, efferent=[MetaModel, FCDAs], afferent=[MetaModel, FCDAs] +2024-09-07 12:38:51,280 [main] DEBUG Util - (121) WG10 IEC61850 package CommonDataClasses::CDCStatusInfo: 1 diagrams, 5 classes, 0 packages +2024-09-07 12:38:51,280 [main] DEBUG Util - (122) WG10 IEC61850 package CommonDataClasses::CDCAnalogueInfo: 1 diagrams, 3 classes, 0 packages +2024-09-07 12:38:51,280 [main] DEBUG Util - (123) WG10 IEC61850 package CommonDataClasses::CDCControl: 1 diagrams, 4 classes, 0 packages +2024-09-07 12:38:51,280 [main] DEBUG Util - (124) WG10 IEC61850 package CommonDataClasses::CDCStatusSet: 1 diagrams, 1 classes, 0 packages +2024-09-07 12:38:51,280 [main] DEBUG Util - (125) WG10 IEC61850 package CommonDataClasses::CDCAnalogueSet: 1 diagrams, 0 classes, 0 packages +2024-09-07 12:38:51,280 [main] DEBUG Util - (126) WG10 IEC61850 package CommonDataClasses::CDCDescription: 1 diagrams, 1 classes, 0 packages +2024-09-07 12:38:51,280 [main] ERROR NamespaceInfo - Unexpected attribute 'name' in namespace class 'IEC61850_7_4Namespace'. +2024-09-07 12:38:51,280 [main] DEBUG UmlPackage - deduceAndFillNamespaceInfoDependencies for WG10::IEC61850_7_4, targetPackages = [] +2024-09-07 12:38:51,281 [main] DEBUG Util - (127) WG10 IEC61850 package WG10::IEC61850_7_4 (namespace IEC61850-7-4:2009A, 2011-08-01; UML version IEC61850UML02v07): 1 diagrams, 1 classes, 6 packages, efferent=[IEC61850_7_2, IEC61850_7_3, IEC51850_7_420], afferent=[IEC61850_7_2, IEC61850_7_3, IEC51850_7_420] +2024-09-07 12:38:51,281 [main] DEBUG Util - (131) WG10 IEC61850 package IEC61850_7_4::Abbreviations: 0 diagrams, 2 classes, 1 packages +2024-09-07 12:38:51,281 [main] DEBUG Util - (167) WG10 IEC61850 INF package Abbreviations::DetailedDiagrams: 1 diagrams, 0 classes, 0 packages +2024-09-07 12:38:51,281 [main] DEBUG Util - (132) WG10 IEC61850 package IEC61850_7_4::Functions: 0 diagrams, 0 classes, 5 packages +2024-09-07 12:38:51,281 [main] DEBUG Util - (133) WG10 IEC61850 package Functions::ProtectionEq: 1 diagrams, 5 classes, 0 packages, efferent=[LNGroupP, LNGroupR], afferent=[LNGroupP, LNGroupR] +2024-09-07 12:38:51,281 [main] DEBUG Util - (134) WG10 IEC61850 package Functions::ControlEq: 1 diagrams, 1 classes, 0 packages, efferent=[LNGroupG, LNGroupP, LNGroupC], afferent=[LNGroupG, LNGroupP, LNGroupC] +2024-09-07 12:38:51,281 [main] DEBUG Util - (137) WG10 IEC61850 package Functions::MeasurementsAndMetering: 1 diagrams, 1 classes, 0 packages, efferent=[LNGroupM], afferent=[LNGroupM] +2024-09-07 12:38:51,281 [main] DEBUG Util - (138) WG10 IEC61850 package Functions::SystemWide: 1 diagrams, 2 classes, 0 packages, efferent=[LNGroupL, LNGroupG], afferent=[LNGroupL, LNGroupG] +2024-09-07 12:38:51,281 [main] DEBUG Util - (139) WG10 IEC61850 package Functions::PrimaryEq: 1 diagrams, 2 classes, 0 packages, efferent=[LNGroupG, LNGroupZ], afferent=[LNGroupG, LNGroupZ] +2024-09-07 12:38:51,281 [main] DEBUG Util - (141) WG10 IEC61850 package IEC61850_7_4::DOEnums: 1 diagrams, 4 classes, 0 packages, ; tags={dummyPackageTag=tagValue} +2024-09-07 12:38:51,281 [main] DEBUG Util - (142) WG10 IEC61850 package IEC61850_7_4::DerivedDAs: 1 diagrams, 3 classes, 0 packages, efferent=[MetaModel, DOEnums], afferent=[MetaModel, DOEnums] +2024-09-07 12:38:51,281 [main] DEBUG Util - (143) WG10 IEC61850 package IEC61850_7_4::DerivedCDCs: 1 diagrams, 9 classes, 0 packages, efferent=[DAEnums, CommonDataClasses, DerivedDAs], afferent=[DAEnums, CommonDataClasses, DerivedDAs] +2024-09-07 12:38:51,281 [main] DEBUG Util - (144) WG10 IEC61850 package IEC61850_7_4::LogicalNodes: 2 diagrams, 3 classes, 8 packages, efferent=[MetaModel, CommonDataClasses, DerivedCDCs], afferent=[MetaModel, CommonDataClasses, DerivedCDCs] +2024-09-07 12:38:51,281 [main] DEBUG Util - (145) WG10 IEC61850 INF package LogicalNodes::DocLogicalNodes: 2 diagrams, 0 classes, 0 packages +2024-09-07 12:38:51,281 [main] DEBUG Util - (146) WG10 IEC61850 package LogicalNodes::LNGroupL: 1 diagrams, 3 classes, 0 packages +2024-09-07 12:38:51,281 [main] DEBUG Util - (148) WG10 IEC61850 package LogicalNodes::LNGroupC: 1 diagrams, 1 classes, 0 packages +2024-09-07 12:38:51,281 [main] DEBUG Util - (150) WG10 IEC61850 package LogicalNodes::LNGroupG: 1 diagrams, 1 classes, 0 packages +2024-09-07 12:38:51,281 [main] DEBUG Util - (153) WG10 IEC61850 package LogicalNodes::LNGroupM: 1 diagrams, 1 classes, 0 packages +2024-09-07 12:38:51,281 [main] DEBUG Util - (154) WG10 IEC61850 package LogicalNodes::LNGroupP: 1 diagrams, 5 classes, 0 packages +2024-09-07 12:38:51,281 [main] DEBUG Util - (156) WG10 IEC61850 package LogicalNodes::LNGroupR: 1 diagrams, 1 classes, 0 packages +2024-09-07 12:38:51,281 [main] DEBUG Util - (161) WG10 IEC61850 package LogicalNodes::LNGroupZ: 1 diagrams, 1 classes, 0 packages +2024-09-07 12:38:51,281 [main] DEBUG Util - (163) WG17 IEC61850 top package IEC61850Domain::WG17 (version={IEC61850UML02v07, 2011-07-02}): 1 diagrams, 1 classes, 1 packages, efferent=[IEC61850_7_4], afferent=[IEC61850_7_4] +2024-09-07 12:38:51,281 [main] DEBUG Util - (172) WG17 IEC61850 package WG17::IEC51850_7_420: 1 diagrams, 1 classes, 3 packages +2024-09-07 12:38:51,281 [main] DEBUG Util - (169) WG17 IEC61850 package IEC51850_7_420::DOEnums_7_420: 1 diagrams, 4 classes, 0 packages +2024-09-07 12:38:51,281 [main] DEBUG Util - (170) WG17 IEC61850 package IEC51850_7_420::DerivedDAs_7_420: 1 diagrams, 3 classes, 0 packages +2024-09-07 12:38:51,281 [main] DEBUG Util - (171) WG17 IEC61850 package IEC51850_7_420::DerivedCDCs_7_420: 1 diagrams, 3 classes, 0 packages +2024-09-07 12:38:51,281 [main] DEBUG Util - (164) WG18 IEC61850 top package IEC61850Domain::WG18: 1 diagrams, 0 classes, 1 packages +2024-09-07 12:38:51,282 [main] DEBUG Util - (165) WG18 IEC61850 package WG18::Abbreviations_410: 1 diagrams, 1 classes, 0 packages +2024-09-07 12:38:51,282 [main] DEBUG Util - (162) JWG25 IEC61850 top package IEC61850Domain::JWG25: 1 diagrams, 0 classes, 0 packages +2024-09-07 12:38:51,282 [main] DEBUG Util - (68) OTHER_CIM CIM model package /MyCimExtensions: 1 diagrams, 2 classes, 2 packages +2024-09-07 12:38:51,282 [main] DEBUG Util - (69) OTHER_CIM CIM top package <> MyCimExtensions::Ext1: 1 diagrams, 5 classes, 0 packages, ; tags={nsuri=http://toto, nsprefix=ext2} +2024-09-07 12:38:51,282 [main] DEBUG Util - (81) OTHER_CIM CIM top package MyCimExtensions::Package with space: 1 diagrams, 2 classes, 0 packages +2024-09-07 12:38:51,282 [main] DEBUG Util - (72) OTHER_IEC61850 IEC61850 model package /My61850Extensions: 1 diagrams, 0 classes, 1 packages +2024-09-07 12:38:51,282 [main] DEBUG Util - (70) OTHER_IEC61850 IEC61850 top package My61850Extensions::Ext2: 1 diagrams, 3 classes, 0 packages +2024-09-07 12:38:51,282 [main] DEBUG Util - (174) OTHER_CIM CIM model package /NewNature: 1 diagrams, 0 classes, 0 packages +2024-09-07 12:38:51,282 [main] DEBUG Util - +2024-09-07 12:38:51,282 [main] DEBUG Util - ======= 386 classes: ======== +2024-09-07 12:38:51,283 [main] DEBUG Util - (1495) OTHER_CIM CIM INF root class <> Informative::Class1, 1 associations; associated classes (bi-directional): asTarget=[Other::MyClass] +2024-09-07 12:38:51,283 [main] DEBUG Util - (1514) OTHER_CIM CIM INF root class Informative::End1ForAssocClass, 1 associations; associated classes (bi-directional): asSource=[Informative::End2ForAssocClass] +2024-09-07 12:38:51,283 [main] DEBUG Util - (1515) OTHER_CIM CIM INF root class Informative::End2ForAssocClass, 1 associations; associated classes (bi-directional): asTarget=[Informative::End1ForAssocClass] +2024-09-07 12:38:51,283 [main] DEBUG Util - (1517) OTHER_CIM CIM INF root class Informative::AssocClass +2024-09-07 12:38:51,283 [main] DEBUG Util - (1518) OTHER_CIM CIM INF root class Informative::HasIllegalTypeForAttr, 1 attributes; efferent classes: byAttr=[Bay] +2024-09-07 12:38:51,283 [main] DEBUG Util - (1532) OTHER_CIM CIM INF compound <> Informative::SomeSimpleType; afferent classes: byAttr=[Pear]; +2024-09-07 12:38:51,283 [main] DEBUG Util - (572) WG13 CIM root class IEC61970::IEC61970CIMVersion, 2 attributes; efferent classes: byAttr=[AbsoluteDateTime, String] +2024-09-07 12:38:51,283 [main] DEBUG Util - (1450) WG13 CIM INF root class InformativeAndPrivate::InfClass2, 1 subclasses=[BusNameMarker], 1 attributes, 1 associations; efferent classes: byAttr=[Boolean]; associated classes (bi-directional): asTarget=[InformativeAndPrivate::InfClassContainingEmbeddedClass] +2024-09-07 12:38:51,283 [main] DEBUG Util - (1449) WG13 CIM INF root class InformativeAndPrivate::InfClassContainingEmbeddedClass, 1 associations; associated classes (bi-directional): asSource=[InformativeAndPrivate::InfClass2] +2024-09-07 12:38:51,283 [main] DEBUG Util - (1496) WG13 CIM INF root class InformativeAndPrivate::EmbeddedClass +2024-09-07 12:38:51,283 [main] DEBUG Util - (640) WG13 CIM datatype <> Domain::AbsoluteDateTime, 1 attributes; afferent classes: byAttr=[IEC61970CIMVersion, IEC61968Version, My class];; efferent classes: byAttr=[String] +2024-09-07 12:38:51,283 [main] DEBUG Util - (638) WG13 CIM datatype <> Domain::ActivePower, 3 attributes; efferent classes: byAttr=[Float, UnitSymbol, UnitMultiplier] +2024-09-07 12:38:51,283 [main] DEBUG Util - (629) WG13 CIM datatype <> Domain::ActivePowerChangeRate, 3 attributes; efferent classes: byAttr=[NullCIM, UnitSymbol, UnitMultiplier] +2024-09-07 12:38:51,283 [main] DEBUG Util - (616) WG13 CIM datatype <> Domain::ApparentPower, 3 attributes; afferent classes: byAttr=[BasePower];; efferent classes: byAttr=[Float, UnitSymbol, UnitMultiplier] +2024-09-07 12:38:51,283 [main] DEBUG Util - (619) WG13 CIM primitive <> Domain::Boolean; afferent classes: byAttr=[InfClass2, BaseVoltage, Bay, Equipment, Terminal, MyClass, AttrDuplication]; +2024-09-07 12:38:51,283 [main] DEBUG Util - (600) WG13 CIM enumeration <> Domain::Currency, 14 enum literals; afferent classes: byAttr=[Money]; +2024-09-07 12:38:51,283 [main] DEBUG Util - (615) WG13 CIM primitive <> Domain::Float; afferent classes: byAttr=[ActivePower, ApparentPower, Money, PerCent, Seconds, Voltage, MyClass, NonEmptyPrimitive]; +2024-09-07 12:38:51,283 [main] DEBUG Util - (610) WG13 CIM primitive <> Domain::Integer; afferent classes: byAttr=[Terminal, BusNameMarker, TopologicalIsland, Equipment, AnotherBadDatatype, Apple]; +2024-09-07 12:38:51,284 [main] DEBUG Util - (609) WG13 CIM datatype <> Domain::Money, 3 attributes; efferent classes: byAttr=[Float, Currency, UnitMultiplier] +2024-09-07 12:38:51,284 [main] DEBUG Util - (614) WG13 CIM datatype <> Domain::PerCent, 3 attributes; afferent classes: byAttr=[OperatingShare];; efferent classes: byAttr=[Float, UnitSymbol, UnitMultiplier] +2024-09-07 12:38:51,284 [main] DEBUG Util - (620) WG13 CIM datatype <> Domain::Seconds, 3 attributes; efferent classes: byAttr=[Float, UnitSymbol, UnitMultiplier] +2024-09-07 12:38:51,284 [main] DEBUG Util - (637) WG13 CIM primitive <> Domain::String; afferent classes: byAttr=[IEC61970CIMVersion, AbsoluteDateTime, PowerSystemResource, IdentifiedObject, IEC61968Version]; +2024-09-07 12:38:51,284 [main] DEBUG Util - (634) WG13 CIM enumeration <> Domain::UnitMultiplier, 11 enum literals; afferent classes: byAttr=[ActivePower, ActivePowerChangeRate, ApparentPower, Money, PerCent, Seconds, Voltage]; +2024-09-07 12:38:51,284 [main] DEBUG Util - (613) WG13 CIM enumeration <> Domain::UnitSymbol, 34 enum literals; afferent classes: byAttr=[ActivePower, ActivePowerChangeRate, ApparentPower, PerCent, Seconds, Voltage, BadDatatypes, AnotherBadDatatype]; +2024-09-07 12:38:51,284 [main] DEBUG Util - (602) WG13 CIM datatype <> Domain::Voltage, 3 attributes; afferent classes: byAttr=[BaseVoltage, VoltageLevel] byOp=[VoltageLevel];; efferent classes: byAttr=[Float, UnitSymbol, UnitMultiplier] +2024-09-07 12:38:51,284 [main] DEBUG Util - (1533) WG13 CIM enumeration <> Domain::WithSingleLiteral, 1 enum literals +2024-09-07 12:38:51,284 [main] DEBUG Util - (1540) WG13 CIM enumeration <> Domain::YesNo, 2 enum literals; afferent classes: byAttr=[Bay, Equipment]; +2024-09-07 12:38:51,284 [main] DEBUG Util - (858) WG13 CIM private enumeration <> Core::BreakerConfiguration, 4 enum literals; afferent classes: byAttr=[Bay];,1 constraints: class attributes constraint Core::BreakerConfiguration {ConstraintOnEnum = [text]} +2024-09-07 12:38:51,284 [main] DEBUG Util - (878) WG13 CIM protected enumeration <> Core::BusbarConfiguration, 4 enum literals; afferent classes: byAttr=[Bay]; +2024-09-07 12:38:51,284 [main] DEBUG Util - (876) WG13 CIM root class <> Core::OperatingShare, 1 attributes, 2 associations; efferent classes: byAttr=[PerCent]; associated classes (bi-directional): asSource=[Core::OperatingParticipant, Core::PowerSystemResource] +2024-09-07 12:38:51,284 [main] DEBUG Util - (856) WG13 CIM enumeration <> Core::PhaseCode, 18 enum literals; afferent classes: byAttr=[ConductingEquipment]; +2024-09-07 12:38:51,284 [main] DEBUG Util - (851) WG13 CIM root class Core::IdentifiedObject, 11 subclasses=[BusNameMarker, Terminal, BaseVoltage, BasePower, SubGeographicalRegion, geographicalRegion, OperatingParticipant, PowerSystemResource, ConnectivityNode, TopologicalIsland, TopologicalNode], 3 attributes; efferent classes: byAttr=[String] +2024-09-07 12:38:51,284 [main] DEBUG Util - (1513) WG13 CIM enumeration <> Topology::TestEnum, 2 enum literals (codes used=[initial J/m², initial µ]) +2024-09-07 12:38:51,284 [main] DEBUG Util - (3045) WG13 CIM enumeration <> TestEnums::EnumWithSomeIntCodes, 7 enum literals (codes used=[, 1, 10, 2, 3, 4]) +2024-09-07 12:38:51,284 [main] DEBUG Util - (3047) WG13 CIM enumeration <> TestEnums::EnumWithStringCodes, 5 enum literals (codes used=[, 1, 3.14, another string, some string]) +2024-09-07 12:38:51,284 [main] DEBUG Util - (3049) WG13 CIM enumeration <> TestEnums::EnumWithNonUniqueCodes, 8 enum literals (codes used=[1, 3, 4, 6, 8]) +2024-09-07 12:38:51,284 [main] DEBUG Util - (1452) WG14 CIM root class IEC61968::IEC61968Version, 2 attributes; efferent classes: byAttr=[AbsoluteDateTime, String] +2024-09-07 12:38:51,284 [main] DEBUG Util - (1546) WG14 CIM root class Assets::AssetInfo, 1 associations; associated classes (bi-directional): asSource=[Core::PowerSystemResource] +2024-09-07 12:38:51,284 [main] DEBUG Util - (1467) WG14 CIM datatype <> Other::BadDatatypes, 2 subclasses=[BaseVoltage, MyClass], 2 attributes, 2 associations; afferent classes: byAttr=[BadDatatypes];; efferent classes: byDep=[MyClass] byAttr=[BadDatatypes, UnitSymbol]; associated classes (bi-directional): asTarget=[Other::AttrDuplication] asSource=[Other::MyClass] +2024-09-07 12:38:51,284 [main] DEBUG Util - (1472) WG14 CIM root class Other::Equipment, 2 attributes; efferent classes: byAttr=[Integer, YesNo] +2024-09-07 12:38:51,284 [main] DEBUG Util - (1474) WG14 CIM root class Other::MyClass, 1 associations; associated classes (bi-directional): asSource=[Informative::Class1] +2024-09-07 12:38:51,284 [main] DEBUG Util - (1480) WG14 CIM enumeration <> Other::EmptyEnum +2024-09-07 12:38:51,284 [main] DEBUG Util - (1481) WG14 CIM primitive <> Other::NonEmptyPrimitive, 1 attributes; efferent classes: byAttr=[Float] +2024-09-07 12:38:51,284 [main] DEBUG Util - (1537) WG14 CIM datatype <> Other::AnotherBadDatatype, 3 attributes; efferent classes: byAttr=[UnitSymbol, Integer, EmptyCompound] +2024-09-07 12:38:51,284 [main] DEBUG Util - (1538) WG14 CIM compound <> Other::EmptyCompound; afferent classes: byAttr=[AnotherBadDatatype]; +2024-09-07 12:38:51,284 [main] DEBUG Util - (1555) WG10 IEC61850 other 61850 WG10::WG10UMLVersion, 2 attributes; efferent classes: byAttr=[NullIEC61850] +2024-09-07 12:38:51,284 [main] DEBUG Util - (1586) WG10 IEC61850 unknown 61850 <> GenericModel::CommAddress; afferent classes: byAttr=[AccessPoint]; +2024-09-07 12:38:51,285 [main] DEBUG Util - (1588) WG10 IEC61850 unknown 61850 <> GenericModel::GenAssociationID; afferent classes: byAttr=[GenTPAA]; +2024-09-07 12:38:51,285 [main] DEBUG Util - (1597) WG10 IEC61850 enumeration <> GenericModel::GenFC; afferent classes: byAttr=[GenDataAttribute, GenFCD, GenFCDA, GenSubDataAttribute]; +2024-09-07 12:38:51,285 [main] DEBUG Util - (1609) WG10 IEC61850 enumeration <> GenericModel::GenPresenceConditions; afferent classes: byAttr=[GenDataAttribute, GenDataObject, GenSubDataAttribute, GenSubDataObject]; +2024-09-07 12:38:51,285 [main] DEBUG Util - (1614) WG10 IEC61850 unknown 61850 <> GenericModel::GenTimeStamp; afferent classes: byAttr=[GenFile]; +2024-09-07 12:38:51,285 [main] DEBUG Util - (1585) WG10 IEC61850 other 61850 GenericModel::AccessPoint, 1 subclasses=[ServiceAccessPoint], 1 attributes, 1 associations; efferent classes: byAttr=[CommAddress]; associated classes (bi-directional): asTarget=[GenericModel::GenIED] +2024-09-07 12:38:51,285 [main] DEBUG Util - (1587) WG10 IEC61850 other 61850 GenericModel::FileSystem, 2 associations; associated classes (bi-directional): asTarget=[GenericModel::GenServer] asSource=[GenericModel::GenFile] +2024-09-07 12:38:51,285 [main] DEBUG Util - (1589) WG10 IEC61850 other 61850 GenericModel::GenAtomicType; afferent classes: byDep=[GenSubDataAttribute, GenDataAttribute]; +2024-09-07 12:38:51,285 [main] DEBUG Util - (1590) WG10 IEC61850 other 61850 GenericModel::GenBOOLEAN; afferent classes: byAttr=[GenDataObject]; +2024-09-07 12:38:51,285 [main] DEBUG Util - (1591) WG10 IEC61850 other 61850 GenericModel::GenCommonDataClass, 1 attributes, 2 associations; afferent classes: byDep=[GenSubDataObject, GenDataObject];; efferent classes: byAttr=[GenObjectName]; associated classes (bi-directional): asSource=[GenericModel::GenDataAttribute, GenericModel::GenSubDataObject] +2024-09-07 12:38:51,285 [main] DEBUG Util - (1592) WG10 IEC61850 other 61850 GenericModel::GenCompactType; afferent classes: byDep=[GenSubDataAttribute, GenDataAttribute]; +2024-09-07 12:38:51,285 [main] DEBUG Util - (1593) WG10 IEC61850 other 61850 GenericModel::GenConstructedType, 1 attributes, 1 associations; afferent classes: byDep=[GenSubDataAttribute, GenDataAttribute];; efferent classes: byAttr=[GenObjectName]; associated classes (bi-directional): asSource=[GenericModel::GenSubDataAttribute] +2024-09-07 12:38:51,285 [main] DEBUG Util - (1594) WG10 IEC61850 other 61850 GenericModel::GenDataAttribute, 6 attributes, 2 associations; efferent classes: byDep=[GenAtomicType, GenCompactType, GenConstructedType] byAttr=[GenObjectName, GenObjRef, GenFC, GenTriggerConditions, GenPresenceConditions, GenINT32U]; associated classes (bi-directional): asTarget=[GenericModel::GenCommonDataClass, GenericModel::GenFCDA] +2024-09-07 12:38:51,285 [main] DEBUG Util - (1595) WG10 IEC61850 other 61850 GenericModel::GenDataObject, 4 attributes, 2 associations; efferent classes: byDep=[GenCommonDataClass] byAttr=[GenObjectName, GenObjRef, GenBOOLEAN, GenPresenceConditions]; associated classes (bi-directional): asTarget=[GenericModel::GenLogicalNode, GenericModel::GenFCD] +2024-09-07 12:38:51,285 [main] DEBUG Util - (1596) WG10 IEC61850 other 61850 GenericModel::GenDataSet, 1 attributes, 2 associations; efferent classes: byAttr=[GenObjectName]; associated classes (bi-directional): asSource=[GenericModel::GenFCD, GenericModel::GenFCDA] +2024-09-07 12:38:51,285 [main] DEBUG Util - (1598) WG10 IEC61850 other 61850 GenericModel::GenFCD, 1 attributes, 3 associations; efferent classes: byAttr=[GenFC]; associated classes (bi-directional): asTarget=[GenericModel::GenDataSet] asSource=[GenericModel::GenDataObject, GenericModel::GenSubDataObject] +2024-09-07 12:38:51,285 [main] DEBUG Util - (1599) WG10 IEC61850 other 61850 GenericModel::GenFCDA, 1 attributes, 3 associations; efferent classes: byAttr=[GenFC]; associated classes (bi-directional): asTarget=[GenericModel::GenDataSet] asSource=[GenericModel::GenDataAttribute, GenericModel::GenSubDataAttribute],1 constraints: class attributes constraint GenericModel::GenFCDA {FCConstraint = [inv]} (null) +2024-09-07 12:38:51,285 [main] DEBUG Util - (1600) WG10 IEC61850 other 61850 GenericModel::GenFile, 3 attributes, 1 associations; efferent classes: byAttr=[GenVisString255, GenINT32U, GenTimeStamp]; associated classes (bi-directional): asTarget=[GenericModel::FileSystem] +2024-09-07 12:38:51,285 [main] DEBUG Util - (1601) WG10 IEC61850 other 61850 GenericModel::GenIED, 1 associations; associated classes (bi-directional): asSource=[GenericModel::AccessPoint] +2024-09-07 12:38:51,285 [main] DEBUG Util - (1602) WG10 IEC61850 other 61850 GenericModel::GenINT32U; afferent classes: byAttr=[GenDataAttribute, GenFile, GenSubDataAttribute, GenSubDataObject]; +2024-09-07 12:38:51,285 [main] DEBUG Util - (1604) WG10 IEC61850 other 61850 GenericModel::GenLogicalDevice, 1 attributes, 4 associations; efferent classes: byAttr=[GenObjectName]; associated classes (bi-directional): asTarget=[GenericModel::GenServer, GenericModel::GenLogicalDevice] asSource=[GenericModel::GenLN0, GenericModel::GenLogicalNode, GenericModel::GenLogicalDevice] +2024-09-07 12:38:51,285 [main] DEBUG Util - (1605) WG10 IEC61850 other 61850 GenericModel::GenLogicalNode, 1 subclasses=[GenLN0], 2 attributes, 2 associations; efferent classes: byAttr=[GenObjectName, GenObjRef]; associated classes (bi-directional): asTarget=[GenericModel::GenLogicalDevice] asSource=[GenericModel::GenDataObject] +2024-09-07 12:38:51,285 [main] DEBUG Util - (1606) WG10 IEC61850 other 61850 GenericModel::GenMCAA, 1 associations; associated classes (bi-directional): asTarget=[GenericModel::GenServer] +2024-09-07 12:38:51,285 [main] DEBUG Util - (1607) WG10 IEC61850 other 61850 GenericModel::GenObjRef; afferent classes: byAttr=[GenDataAttribute, GenDataObject, GenLogicalNode, GenSubDataAttribute, GenSubDataObject]; +2024-09-07 12:38:51,285 [main] DEBUG Util - (1608) WG10 IEC61850 other 61850 GenericModel::GenObjectName; afferent classes: byAttr=[GenCommonDataClass, GenConstructedType, GenDataAttribute, GenDataObject, GenDataSet, GenLogicalDevice, GenLogicalNode, GenSubDataAttribute, GenSubDataObject]; +2024-09-07 12:38:51,285 [main] DEBUG Util - (1610) WG10 IEC61850 other 61850 GenericModel::GenServer, 5 associations; associated classes (bi-directional): asTarget=[GenericModel::ServiceAccessPoint] asSource=[GenericModel::FileSystem, GenericModel::GenLogicalDevice, GenericModel::GenMCAA, GenericModel::GenTPAA] +2024-09-07 12:38:51,285 [main] DEBUG Util - (1611) WG10 IEC61850 other 61850 GenericModel::GenSubDataAttribute, 5 attributes, 2 associations; efferent classes: byDep=[GenAtomicType, GenCompactType, GenConstructedType] byAttr=[GenObjectName, GenObjRef, GenFC, GenPresenceConditions, GenINT32U]; associated classes (bi-directional): asTarget=[GenericModel::GenConstructedType, GenericModel::GenFCDA] +2024-09-07 12:38:51,285 [main] DEBUG Util - (1612) WG10 IEC61850 other 61850 GenericModel::GenSubDataObject, 4 attributes, 2 associations; efferent classes: byDep=[GenCommonDataClass] byAttr=[GenObjectName, GenObjRef, GenPresenceConditions, GenINT32U]; associated classes (bi-directional): asTarget=[GenericModel::GenCommonDataClass, GenericModel::GenFCD] +2024-09-07 12:38:51,285 [main] DEBUG Util - (1613) WG10 IEC61850 other 61850 GenericModel::GenTPAA, 1 attributes, 1 associations; efferent classes: byAttr=[GenAssociationID]; associated classes (bi-directional): asTarget=[GenericModel::GenServer] +2024-09-07 12:38:51,285 [main] DEBUG Util - (1615) WG10 IEC61850 other 61850 GenericModel::GenTriggerConditions; afferent classes: byAttr=[GenDataAttribute]; +2024-09-07 12:38:51,285 [main] DEBUG Util - (1616) WG10 IEC61850 other 61850 GenericModel::GenVisString255; afferent classes: byAttr=[GenFile]; +2024-09-07 12:38:51,285 [main] DEBUG Util - (1547) WG10 IEC61850 other 61850 IEC61850_7_2::IEC61850_7_2Namespace, 5 attributes; efferent classes: byAttr=[NullIEC61850] +2024-09-07 12:38:51,285 [main] DEBUG Util - (1631) WG10 IEC61850 enumeration <> FunctionalConstraints::FcKind, 13 enum literals; afferent classes: byAttr=[FCDReference, FCD, FCDA_BL, FCDA_CF, FCDA_DC, FCDA_EX, FCDA_MX, FCDA_OR, FCDA_SE, FCDA_SG, FCDA_SP, FCDA_ST, FCDA_SV]; +2024-09-07 12:38:51,285 [main] DEBUG Util - (1633) WG10 IEC61850 enumeration <> TriggerOptions::TrgOpKind, 4 enum literals; afferent classes: byAttr=[FCDA_CF_dchg, FCDA_MX_dchg, FCDA_MX_dchg_dupd, FCDA_MX_qchg, FCDA_OR_dchg, FCDA_SE_dchg, FCDA_SG_dchg, FCDA_SP_dchg, FCDA_ST_dchg, FCDA_ST_dchg_dupd, FCDA_ST_dupd, FCDA_ST_qchg]; +2024-09-07 12:38:51,286 [main] DEBUG Util - (1635) WG10 IEC61850 coded enumeration <> ACSIEnums::BsControlKind, 4 attributes; afferent classes: byAttr=[BsControl]; +2024-09-07 12:38:51,286 [main] DEBUG Util - (1636) WG10 IEC61850 coded enumeration <> ACSIEnums::DpStatusKind, 4 attributes; afferent classes: byAttr=[DpStatus]; +2024-09-07 12:38:51,286 [main] DEBUG Util - (1653) WG10 IEC61850 basic <> CoreTypes::P_BOOLEAN; afferent classes: byAttr=[TimeQuality, P_TriggerConditions, BOOLEAN, NonPersistentDS, PersistentDS, FCDA_EX, FCDA_MX, FCDA_OR, FCDA_SE, FCDA_SG, FCDA_ST, Quality, DetailQual]; +2024-09-07 12:38:51,286 [main] DEBUG Util - (1659) WG10 IEC61850 basic <> CoreTypes::P_INT16U; afferent classes: byAttr=[INT16U, MulticastAddress]; +2024-09-07 12:38:51,286 [main] DEBUG Util - (1656) WG10 IEC61850 basic <> CoreTypes::P_INT32; afferent classes: byAttr=[P_TimeStamp, INT32]; +2024-09-07 12:38:51,286 [main] DEBUG Util - (1661) WG10 IEC61850 basic <> CoreTypes::P_INT32U; afferent classes: byAttr=[FCDAReference, INT32U]; +2024-09-07 12:38:51,286 [main] DEBUG Util - (1662) WG10 IEC61850 basic <> CoreTypes::P_FLOAT32; afferent classes: byAttr=[FLOAT32]; +2024-09-07 12:38:51,286 [main] DEBUG Util - (1663) WG10 IEC61850 basic <> CoreTypes::P_UNICODE_STRING255; afferent classes: byAttr=[UNICODE_STRING255]; +2024-09-07 12:38:51,286 [main] DEBUG Util - (1667) WG10 IEC61850 basic <> CoreTypes::P_VISIBLE_STRING255; afferent classes: byAttr=[FCDAReference, VISIBLE_STRING255]; +2024-09-07 12:38:51,286 [main] DEBUG Util - (1668) WG10 IEC61850 basic <> CoreTypes::ObjectName, 1 attributes; afferent classes: byAttr=[LDReference, NonPersistentDSReference, LNReference, CDCReference, CBReference, LOGReference, LNOwnedDSReference, FCDAReference, NamedIEC61850Object];; efferent classes: byAttr=[NullIEC61850] +2024-09-07 12:38:51,286 [main] DEBUG Util - (1669) WG10 IEC61850 abstract class basic <> CoreTypes::P_ObjectReference, 3 subclasses=[FILEReference, LDReference, NonPersistentDSReference], 1 attributes; afferent classes: byAttr=[ObjectReference];; efferent classes: byAttr=[NullIEC61850] +2024-09-07 12:38:51,286 [main] DEBUG Util - (1670) WG10 IEC61850 basic <> CoreTypes::P_PHYCOMADDR; afferent classes: byAttr=[PHYCOMADDR]; +2024-09-07 12:38:51,286 [main] DEBUG Util - (1671) WG10 IEC61850 packed list <> CoreTypes::P_TimeStamp, 3 attributes; afferent classes: byAttr=[TimeStamp];; efferent classes: byAttr=[P_INT32, NullIEC61850, TimeQuality] +2024-09-07 12:38:51,286 [main] DEBUG Util - (1672) WG10 IEC61850 packed list <> CoreTypes::TimeQuality, 4 attributes; afferent classes: byAttr=[P_TimeStamp];; efferent classes: byAttr=[P_BOOLEAN, TimeAccuracyKind] +2024-09-07 12:38:51,286 [main] DEBUG Util - (1673) WG10 IEC61850 coded enumeration <> CoreTypes::TimeAccuracyKind, 7 attributes; afferent classes: byAttr=[TimeQuality]; +2024-09-07 12:38:51,286 [main] DEBUG Util - (1674) WG10 IEC61850 packed list <> CoreTypes::P_TriggerConditions, 5 attributes; afferent classes: byAttr=[TriggerConditions];; efferent classes: byAttr=[P_BOOLEAN] +2024-09-07 12:38:51,286 [main] DEBUG Util - (1699) WG10 IEC61850 enumeration <> ObjectReferences::ServiceFcKind, 8 enum literals; afferent classes: byAttr=[CBReference, LOGReference]; +2024-09-07 12:38:51,286 [main] DEBUG Util - (1714) WG10 IEC61850 enumeration <> AttrValues::AttrValueKind, 19 enum literals; afferent classes: byOp=[AttrValue, AttrDefinition]; +2024-09-07 12:38:51,286 [main] DEBUG Util - (1715) WG10 IEC61850 abstract class other 61850 AttrValues::AttrValue, 1 operations; afferent classes: byAttr=[PrimitiveDA] byOp=[NamedAttrValue];; efferent classes: byOp=[AttrValueKind] +2024-09-07 12:38:51,286 [main] DEBUG Util - (1735) WG10 IEC61850 other 61850 AttrValues::AttrDefinition, 2 operations; efferent classes: byOp=[FCDAReference, AttrValueKind] +2024-09-07 12:38:51,286 [main] DEBUG Util - (1736) WG10 IEC61850 other 61850 AttrValues::NamedAttrValue, 2 operations; efferent classes: byOp=[FCDAReference, AttrValue] +2024-09-07 12:38:51,286 [main] DEBUG Util - (1770) WG10 IEC61850 basic <> CommonAcsiTypes::P_OCTET_STRING; afferent classes: byDep=[MulticastAddress] byAttr=[EntryID]; +2024-09-07 12:38:51,286 [main] DEBUG Util - (1771) WG10 IEC61850 other 61850 CommonAcsiTypes::IPAddress, 1 attributes; afferent classes: byAttr=[SERVER, BRCB, URCB, USVCB];; efferent classes: byAttr=[NullIEC61850] +2024-09-07 12:38:51,286 [main] DEBUG Util - (1772) WG10 IEC61850 other 61850 CommonAcsiTypes::MulticastAddress, 4 attributes; afferent classes: byAttr=[GCB, MSVCB];; efferent classes: byDep=[P_OCTET_STRING] byAttr=[NullIEC61850, P_INT16U] +2024-09-07 12:38:51,286 [main] DEBUG Util - (1773) WG10 IEC61850 other 61850 CommonAcsiTypes::Authentication, 3 operations, 5 associations; efferent classes: byOp=[NullIEC61850, AccessView]; associated classes (bi-directional): asTarget=[MetaModel::MCAA, MetaModel::TPAA] asSource=[CommonAcsiTypes::AccessView, CommonAcsiTypes::ReportID, CommonAcsiTypes::EntryID] +2024-09-07 12:38:51,286 [main] DEBUG Util - (1774) WG10 IEC61850 protected other 61850 CommonAcsiTypes::AccessView, 1 associations; afferent classes: byOp=[Authentication];; associated classes (bi-directional): asTarget=[CommonAcsiTypes::Authentication] +2024-09-07 12:38:51,286 [main] DEBUG Util - (1775) WG10 IEC61850 basic <> CommonAcsiTypes::ReportID, 1 attributes, 1 associations; efferent classes: byAttr=[NullIEC61850]; associated classes (bi-directional): asTarget=[CommonAcsiTypes::Authentication] +2024-09-07 12:38:51,286 [main] DEBUG Util - (1776) WG10 IEC61850 basic <> CommonAcsiTypes::EntryID, 1 attributes, 1 associations; efferent classes: byAttr=[P_OCTET_STRING]; associated classes (bi-directional): asTarget=[CommonAcsiTypes::Authentication] +2024-09-07 12:38:51,286 [main] DEBUG Util - (1777) WG10 IEC61850 basic <> CommonAcsiTypes::EntryTime +2024-09-07 12:38:51,286 [main] DEBUG Util - (1835) WG10 IEC61850 abstract class other 61850 MetaModel::IEC61850Object, 3 subclasses=[HierarchyIEC61850Object, TPAA, MCAA]; afferent classes: byAttr=[HierarchyIEC61850Object]; +2024-09-07 12:38:51,286 [main] DEBUG Util - (1863) WG10 IEC61850 abstract class other 61850 MetaModel::SUBSTITUTION +2024-09-07 12:38:51,286 [main] DEBUG Util - (1875) WG10 IEC61850 abstract class other 61850 MetaModel::CONTROL +2024-09-07 12:38:51,286 [main] DEBUG Util - (1876) WG10 IEC61850 other 61850 MetaModel::TIME +2024-09-07 12:38:51,286 [main] DEBUG Util - (1550) WG10 IEC61850 other 61850 IEC61850_7_3::IEC61850_7_3Namespace, 5 attributes; efferent classes: byAttr=[NullIEC61850] +2024-09-07 12:38:51,286 [main] DEBUG Util - (2011) WG10 IEC61850 presence condition enumeration <> PresenceConditions::PresenceCondition, 30 attributes +2024-09-07 12:38:51,287 [main] DEBUG Util - (2045) WG10 IEC61850 enumeration <> DAEnums::SIUnitKind, 73 enum literals (codes used=[1, 10, 11, 2, 21, 22, 23, 24, 25, 26, 27, 28, 29, 3, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 4, 41, 42, 43, 44, 45, 46, 47, 48, 49, 5, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 6, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 7, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 8, 80, 81, 82, 83, 9]); afferent classes: byAttr=[SIUnit];, tags={scl=SIUnit} +2024-09-07 12:38:51,287 [main] DEBUG Util - (2044) WG10 IEC61850 enumeration <> DAEnums::MultiplierKind, 21 enum literals (codes used=[-1, -12, -15, -18, -2, -21, -24, -3, -6, -9, 0, 1, 12, 15, 18, 2, 21, 24, 3, 6, 9]); afferent classes: byAttr=[Multiplier];, tags={scl=multiplier} +2024-09-07 12:38:51,287 [main] DEBUG Util - (2035) WG10 IEC61850 enumeration <> DAEnums::PhaseFaultDirectionKind, 3 enum literals (codes used=[0, 1, 2]); afferent classes: byAttr=[PhaseFaultDirection]; +2024-09-07 12:38:51,287 [main] DEBUG Util - (2039) WG10 IEC61850 enumeration <> DAEnums::PhaseAngleReferenceKind, 12 enum literals (codes used=[0, 1, 10, 11, 2, 3, 4, 5, 6, 7, 8, 9]); afferent classes: byAttr=[PhaseAngleReference];, tags={scl=angRef, angid} +2024-09-07 12:38:51,287 [main] DEBUG Util - (2086) WG10 IEC61850 coded enumeration <> ConstructedDAs::ValidityKind, 4 attributes; afferent classes: byAttr=[Quality]; +2024-09-07 12:38:51,287 [main] DEBUG Util - (2087) WG10 IEC61850 packed list <> ConstructedDAs::DetailQual, 8 attributes; afferent classes: byAttr=[Quality];; efferent classes: byAttr=[P_BOOLEAN] +2024-09-07 12:38:51,287 [main] DEBUG Util - (2088) WG10 IEC61850 coded enumeration <> ConstructedDAs::SourceKind, 2 attributes; afferent classes: byAttr=[Quality]; +2024-09-07 12:38:51,287 [main] DEBUG Util - (3071) WG10 IEC61850 other 61850 CDCControl::SPC, 1 subclasses=[SPCTransient]; efferent classes: byDep=[ControllableCDC] +2024-09-07 12:38:51,287 [main] DEBUG Util - (1551) WG10 IEC61850 other 61850 IEC61850_7_4::IEC61850_7_4Namespace, 5 attributes; efferent classes: byAttr=[NullIEC61850] +2024-09-07 12:38:51,287 [main] DEBUG Util - (2335) WG10 IEC61850 abbreviation enumeration <> Abbreviations::AbbrTermAny, 8 attributes +2024-09-07 12:38:51,288 [main] DEBUG Util - (2359) WG10 IEC61850 abbreviation enumeration <> Abbreviations::AbbrTermZ, 2 attributes +2024-09-07 12:38:51,288 [main] DEBUG Util - (2368) WG10 IEC61850 function ProtectionEq::BusbarProt; efferent classes: byDep=[PDIF], tags={iecRef=, ieeeRef=87B, rsName=PBDF} +2024-09-07 12:38:51,288 [main] DEBUG Util - (2374) WG10 IEC61850 function ProtectionEq::DirectionalProt; efferent classes: byDep=[RDIR, PDIS], tags={iecRef=, ieeeRef=87B, rsName=PDIR} +2024-09-07 12:38:51,288 [main] DEBUG Util - (2375) WG10 IEC61850 function ProtectionEq::DirectionalPowerProt; efferent classes: byDep=[RDIR], tags={iecRef=P>, ieeeRef=32, rsName=PDPR} +2024-09-07 12:38:51,288 [main] DEBUG Util - (2385) WG10 IEC61850 function ProtectionEq::LineDifferentialProt; efferent classes: byDep=[PDIF], tags={iecRef=, ieeeRef=87L, rsName=PLDF} +2024-09-07 12:38:51,288 [main] DEBUG Util - (2394) WG10 IEC61850 function ProtectionEq::PowerFactorProt, tags={iecRef=cos\u03C6>, cos\u03C6<, ieeeRef=55, rsName=PPFR} +2024-09-07 12:38:51,288 [main] DEBUG Util - (2420) WG10 IEC61850 function ControlEq::AlarmHandler; efferent classes: byDep=[CALH], tags={iecRef=, ieeeRef=, rsName=CALH} +2024-09-07 12:38:51,288 [main] DEBUG Util - (2465) WG10 IEC61850 function MeasurementsAndMetering::ThreePhaseMeasurement; efferent classes: byDep=[MMXU], tags={iecRef=, ieeeRef=, rsName=MMXU} +2024-09-07 12:38:51,288 [main] DEBUG Util - (2475) WG10 IEC61850 function SystemWide::LogicalDeviceData; efferent classes: byDep=[LLN0], tags={iecRef=, ieeeRef=, rsName=LLN0} +2024-09-07 12:38:51,288 [main] DEBUG Util - (2477) WG10 IEC61850 function SystemWide::PhysicalDeviceData; efferent classes: byDep=[LPHD], tags={iecRef=, ieeeRef=, rsName=LPHD} +2024-09-07 12:38:51,288 [main] DEBUG Util - (2487) WG10 IEC61850 function PrimaryEq::AuxiliaryNetwork; efferent classes: byDep=[ZAXN], tags={iecRef=, ieeeRef=, rsName=ZAXN} +2024-09-07 12:38:51,288 [main] DEBUG Util - (2501) WG10 IEC61850 function PrimaryEq::GenericIO; efferent classes: byDep=[GGIO], tags={iecRef=, ieeeRef=, rsName=GGIO} +2024-09-07 12:38:51,288 [main] DEBUG Util - (2568) WG10 IEC61850 enumeration <> DOEnums::HealthKind, 3 enum literals (codes used=[1, 2, 3]); afferent classes: byAttr=[Health];, tags={scl=EEHealth,Health,MechHealth,PhyHealth} +2024-09-07 12:38:51,288 [main] DEBUG Util - (2564) WG10 IEC61850 enumeration <> DOEnums::BehaviourModeKind, 5 enum literals (codes used=[1, 2, 3, 4, 5]); afferent classes: byAttr=[BehaviourMode];, tags={scl=Beh,Mod} +2024-09-07 12:38:51,288 [main] DEBUG Util - (2567) WG10 IEC61850 enumeration <> DOEnums::CalcMethodKind, 10 enum literals (codes used=[1, 10, 2, 3, 4, 5, 6, 7, 8, 9]); afferent classes: byAttr=[CalcMethod];, tags={scl=ClcMth} +2024-09-07 12:38:51,288 [main] DEBUG Util - (3090) WG10 IEC61850 enumeration <> DOEnums::BaseKind, 1 subclasses=[ExtBaseKind], 3 enum literals +2024-09-07 12:38:51,288 [main] DEBUG Util - (2671) WG10 IEC61850 other 61850 DerivedCDCs::ACTTransient; afferent classes: byAttr=[PDIF, PDIS]; +2024-09-07 12:38:51,288 [main] DEBUG Util - (2721) WG10 IEC61850 other 61850 DerivedCDCs::SPSTransient; afferent classes: byAttr=[StatisticsLN, LPHD, RDIR]; +2024-09-07 12:38:51,288 [main] DEBUG Util - (3070) WG17 IEC61850 other 61850 WG17::WG17UMLVersion, 2 attributes; efferent classes: byAttr=[NullIEC61850] +2024-09-07 12:38:51,288 [main] DEBUG Util - (3067) WG17 IEC61850 other 61850 IEC51850_7_420::IEC61850_7_420Namespace, 5 attributes; efferent classes: byAttr=[NullIEC61850] +2024-09-07 12:38:51,288 [main] DEBUG Util - (3053) WG17 IEC61850 enumeration <> DOEnums_7_420::MaterialKind, 3 enum literals (codes used=[1, 2, 3]); afferent classes: byAttr=[Material]; +2024-09-07 12:38:51,288 [main] DEBUG Util - (3087) WG17 IEC61850 enumeration <> DOEnums_7_420::MaterialTransitionKind, 3 enum literals; afferent classes: byAttr=[Material_control]; +2024-09-07 12:38:51,288 [main] DEBUG Util - (3054) WG17 IEC61850 enumeration <> DOEnums_7_420::OtherKind, 3 enum literals (codes used=[1, 2, 3]); afferent classes: byAttr=[Other]; +2024-09-07 12:38:51,289 [main] DEBUG Util - (3026) WG18 IEC61850 abbreviation enumeration <> Abbreviations_410::AbbrTermA, 3 attributes +2024-09-07 12:38:51,289 [main] DEBUG Util - (3077) OTHER_CIM CIM root class <> MyCimExtensions::DFD_External1 +2024-09-07 12:38:51,289 [main] DEBUG Util - (3078) OTHER_CIM CIM root class <> MyCimExtensions::DFD_DataStore1 +2024-09-07 12:38:51,289 [main] DEBUG Util - (1489) OTHER_CIM CIM root class Ext1::Fruit, 3 subclasses=[Pear, Apple, Strawberry], 2 associations; associated classes (bi-directional): asTarget=[Ext2::Animal, Ext2::Animal] +2024-09-07 12:38:51,289 [main] DEBUG Util - (3034) OTHER_CIM CIM enumeration <> Ext1::FruitBinKind, 3 enum literals +2024-09-07 12:38:51,289 [main] DEBUG Util - (3036) OTHER_CIM CIM root class Ext1::Village, 1 associations; associated classes (bi-directional): asSource=[Ext1::Strawberry] +2024-09-07 12:38:51,289 [main] DEBUG Util - (1542) OTHER_CIM CIM root class Package with space::My class, 1 attributes, 1 operations, 1 associations; efferent classes: byAttr=[AbsoluteDateTime]; associated classes (bi-directional): asSource=[Package with space::Other-with_invalid name] +2024-09-07 12:38:51,289 [main] DEBUG Util - (1543) OTHER_CIM CIM root class Package with space::Other-with_invalid name, 1 associations; associated classes (bi-directional): asTarget=[Package with space::My class] +2024-09-07 12:38:51,289 [main] DEBUG Util - (1491) OTHER_IEC61850 IEC61850 other 61850 Ext2::Animal, 2 subclasses=[Dog, Horse], 2 associations; associated classes (bi-directional): asSource=[Ext1::Fruit, Ext1::Fruit] +2024-09-07 12:38:51,289 [main] DEBUG Util - (797) WG13 CIM class <> Topology::BusNameMarker, 2 superclasses=[IdentifiedObject, InfClass2], 4 attributes, 1 associations; efferent classes: byAttr=[Integer]; associated classes (bi-directional): asSource=[Topology::ConnectivityNode],4 constraints: class attributes constraint Topology::BusNameMarker {C2_1 = [constrained1, constrained2]} class attributes constraint Topology::BusNameMarker {C2_2 = [constrained3, constrained4]} class attributes constraint Topology::BusNameMarker {C2_3 = [constrained1, constrained4]} class attributes constraint Topology::BusNameMarker {EMPTY = []} +2024-09-07 12:38:51,289 [main] DEBUG Util - (853) WG13 CIM class Core::Terminal, 1 superclasses=[IdentifiedObject], 1 subclasses=[DumbSubterminal], 2 attributes, 4 associations; efferent classes: byAttr=[Boolean, Integer]; associated classes (bi-directional): asTarget=[Core::PowerSystemResource] asSource=[Core::ConductingEquipment, Topology::ConnectivityNode, Topology::TopologicalNode], tags={dummyCimTag=on terminal} +2024-09-07 12:38:51,289 [main] DEBUG Util - (3080) WG13 CIM class Topology::DumbSubterminal, 1 superclasses=[Terminal] +2024-09-07 12:38:51,289 [main] DEBUG Util - (855) WG13 CIM class Core::BaseVoltage, 2 superclasses=[IdentifiedObject, BadDatatypes], 4 attributes, 3 associations; efferent classes: byAttr=[Boolean, Voltage]; associated classes (bi-directional): asTarget=[Core::VoltageLevel, Topology::TopologicalNode] asSource=[Core::ConductingEquipment] +2024-09-07 12:38:51,289 [main] DEBUG Util - (867) WG13 CIM class Core::BasePower, 1 superclasses=[IdentifiedObject], 1 attributes; efferent classes: byAttr=[ApparentPower] +2024-09-07 12:38:51,289 [main] DEBUG Util - (875) WG13 CIM class Core::SubGeographicalRegion, 1 superclasses=[IdentifiedObject], 2 associations; associated classes (bi-directional): asTarget=[Core::geographicalRegion] asSource=[Core::Substation] +2024-09-07 12:38:51,289 [main] DEBUG Util - (883) WG13 CIM class Core::geographicalRegion, 1 superclasses=[IdentifiedObject], 1 associations; associated classes (bi-directional): asSource=[Core::SubGeographicalRegion] +2024-09-07 12:38:51,289 [main] DEBUG Util - (850) WG13 CIM compound <> Core::OperatingParticipant, 1 superclasses=[IdentifiedObject], 1 associations; associated classes (bi-directional): asTarget=[Core::OperatingShare], tags={dummyCimTag=value} +2024-09-07 12:38:51,289 [main] DEBUG Util - (849) WG13 CIM class Core::PowerSystemResource, 1 superclasses=[IdentifiedObject], 2 subclasses=[ConnectivityNodeContainer, Equipment], 1 attributes, 4 operations, 1 diagrams, 3 associations; efferent classes: byAttr=[String] byOp=[NullCIM]; associated classes (bi-directional): asTarget=[Core::OperatingShare, Assets::AssetInfo] asSource=[Core::Terminal],3 constraints: class attributes constraint Core::PowerSystemResource {R.1.2.3 PSR process constraint = [Here the text for process constraint.]} class attributes constraint Core::PowerSystemResource {ruleAsInQoCDC = [text only]} class attributes constraint Core::PowerSystemResource {anotherOclRule = [{ocl]} +2024-09-07 12:38:51,289 [main] DEBUG Util - (871) WG13 CIM class Core::ConnectivityNodeContainer, 1 superclasses=[PowerSystemResource], 1 subclasses=[EquipmentContainer], 2 associations; associated classes (bi-directional): asTarget=[Topology::ConnectivityNode, Topology::TopologicalNode] +2024-09-07 12:38:51,289 [main] DEBUG Util - (1490) OTHER_CIM CIM class <> Ext1::Pear, 1 superclasses=[Fruit], 1 subclasses=[EquipmentContainer], 1 attributes, 2 associations; efferent classes: byAttr=[SomeSimpleType]; associated classes (bi-directional): asSource=[Ext1::Apple, Ext1::Apple] +2024-09-07 12:38:51,289 [main] DEBUG Util - (881) WG13 CIM class Core::EquipmentContainer, 2 superclasses=[ConnectivityNodeContainer, Pear], 3 subclasses=[Bay, Substation, VoltageLevel], 1 associations; associated classes (bi-directional): asSource=[Core::Equipment] +2024-09-07 12:38:51,289 [main] DEBUG Util - (860) WG13 CIM class Core::Bay, 1 superclasses=[EquipmentContainer], 6 attributes, 2 associations; afferent classes: byAttr=[HasIllegalTypeForAttr];; efferent classes: byAttr=[Boolean, BreakerConfiguration, BusbarConfiguration, YesNo]; associated classes (bi-directional): asTarget=[Core::VoltageLevel] asSource=[Core::Substation] +2024-09-07 12:38:51,289 [main] DEBUG Util - (877) WG13 CIM class Core::Substation, 1 superclasses=[EquipmentContainer], 3 associations; associated classes (bi-directional): asTarget=[Core::Bay, Core::SubGeographicalRegion] asSource=[Core::VoltageLevel] +2024-09-07 12:38:51,289 [main] DEBUG Util - (870) WG13 CIM class Core::VoltageLevel, 1 superclasses=[EquipmentContainer], 2 attributes, 1 operations, 3 associations; efferent classes: byAttr=[Voltage] byOp=[Voltage]; associated classes (bi-directional): asTarget=[Core::Substation] asSource=[Core::BaseVoltage, Core::Bay] +2024-09-07 12:38:51,289 [main] DEBUG Util - (882) WG13 CIM class Core::Equipment, 1 superclasses=[PowerSystemResource], 1 subclasses=[ConductingEquipment], 1 attributes, 1 associations; efferent classes: byAttr=[Boolean]; associated classes (bi-directional): asTarget=[Core::EquipmentContainer] +2024-09-07 12:38:51,289 [main] DEBUG Util - (864) WG13 CIM class Core::ConductingEquipment, 1 superclasses=[Equipment], 1 attributes, 2 associations; efferent classes: byAttr=[PhaseCode]; associated classes (bi-directional): asTarget=[Core::BaseVoltage, Core::Terminal] +2024-09-07 12:38:51,289 [main] DEBUG Util - (796) WG13 CIM class Topology::ConnectivityNode, 1 superclasses=[IdentifiedObject], 4 associations; associated classes (bi-directional): asTarget=[Core::Terminal, Topology::BusNameMarker] asSource=[Core::ConnectivityNodeContainer, Topology::TopologicalNode] +2024-09-07 12:38:51,290 [main] DEBUG Util - (794) WG13 CIM class Topology::TopologicalIsland, 1 superclasses=[IdentifiedObject], 2 attributes, 2 associations; efferent classes: byAttr=[Integer]; associated classes (bi-directional): asTarget=[Topology::TopologicalNode] asSource=[Topology::TopologicalNode],1 constraints: class attributes constraint Topology::TopologicalIsland {PICS_SUBST = [constrained5]} +2024-09-07 12:38:51,290 [main] DEBUG Util - (795) WG13 CIM class Topology::TopologicalNode, 1 superclasses=[IdentifiedObject], 6 associations; associated classes (bi-directional): asTarget=[Core::Terminal, Topology::ConnectivityNode, Topology::TopologicalIsland] asSource=[Core::BaseVoltage, Core::ConnectivityNodeContainer, Topology::TopologicalIsland] +2024-09-07 12:38:51,290 [main] DEBUG Util - (1454) WG14 CIM abstract class class <> Other::MyClass, 1 superclasses=[BadDatatypes], 1 subclasses=[AttrDuplication], 3 attributes, 2 associations; afferent classes: byDep=[BadDatatypes];; efferent classes: byAttr=[Float, Boolean, NullCIM]; associated classes (bi-directional): asTarget=[Other::BadDatatypes, Other::MyClass] asSource=[Other::MyClass] +2024-09-07 12:38:51,290 [main] DEBUG Util - (1482) WG14 CIM class Other::AttrDuplication, 1 superclasses=[MyClass], 2 attributes, 3 associations; efferent classes: byAttr=[NullCIM, Boolean]; associated classes (bi-directional): asTarget=[Other::AttrDuplication, Other::AttrDuplication] asSource=[Other::BadDatatypes, Other::AttrDuplication, Other::AttrDuplication] +2024-09-07 12:38:51,290 [main] DEBUG Util - (1617) WG10 IEC61850 other 61850 GenericModel::ServiceAccessPoint, 1 superclasses=[AccessPoint], 1 associations; associated classes (bi-directional): asSource=[GenericModel::GenServer] +2024-09-07 12:38:51,290 [main] DEBUG Util - (1603) WG10 IEC61850 other 61850 GenericModel::GenLN0, 1 superclasses=[GenLogicalNode], 1 associations; associated classes (bi-directional): asTarget=[GenericModel::GenLogicalDevice],1 constraints: class attributes constraint GenericModel::GenLN0 {inv: self.LNName = "LLN0" = []} (null) +2024-09-07 12:38:51,290 [main] DEBUG Util - (1693) WG10 IEC61850 other 61850 ObjectReferences::FILEReference, 1 superclasses=[P_ObjectReference], 2 attributes; afferent classes: byAttr=[FILE];; efferent classes: byAttr=[NullIEC61850] +2024-09-07 12:38:51,290 [main] DEBUG Util - (1694) WG10 IEC61850 other 61850 ObjectReferences::LDReference, 1 superclasses=[P_ObjectReference], 1 subclasses=[LNReference], 2 attributes; afferent classes: byAttr=[LD];; efferent classes: byAttr=[NullIEC61850, ObjectName] +2024-09-07 12:38:51,290 [main] DEBUG Util - (1696) WG10 IEC61850 other 61850 ObjectReferences::LNReference, 1 superclasses=[LDReference], 4 subclasses=[CDCReference, CBReference, LOGReference, LNOwnedDSReference], 2 attributes; afferent classes: byAttr=[LN];; efferent classes: byAttr=[NullIEC61850, ObjectName] +2024-09-07 12:38:51,290 [main] DEBUG Util - (1697) WG10 IEC61850 other 61850 ObjectReferences::CDCReference, 1 superclasses=[LNReference], 1 subclasses=[FCDReference], 3 attributes; afferent classes: byAttr=[CDC];; efferent classes: byAttr=[NullIEC61850, ObjectName] +2024-09-07 12:38:51,290 [main] DEBUG Util - (1702) WG10 IEC61850 other 61850 ObjectReferences::FCDReference, 1 superclasses=[CDCReference], 1 subclasses=[FCDAReference], 3 attributes; afferent classes: byAttr=[FCD];; efferent classes: byAttr=[NullIEC61850, FcKind] +2024-09-07 12:38:51,290 [main] DEBUG Util - (1703) WG10 IEC61850 other 61850 ObjectReferences::FCDAReference, 1 superclasses=[FCDReference], 4 attributes; afferent classes: byAttr=[FCDA, DA] byOp=[AttrDefinition, NamedAttrValue];; efferent classes: byAttr=[NullIEC61850, P_VISIBLE_STRING255, ObjectName, P_INT32U] +2024-09-07 12:38:51,290 [main] DEBUG Util - (1698) WG10 IEC61850 other 61850 ObjectReferences::CBReference, 1 superclasses=[LNReference], 3 attributes; afferent classes: byAttr=[ControlBlock];; efferent classes: byAttr=[NullIEC61850, ObjectName, ServiceFcKind] +2024-09-07 12:38:51,290 [main] DEBUG Util - (1700) WG10 IEC61850 other 61850 ObjectReferences::LOGReference, 1 superclasses=[LNReference], 3 attributes; afferent classes: byAttr=[LOG];; efferent classes: byAttr=[NullIEC61850, ObjectName, ServiceFcKind] +2024-09-07 12:38:51,290 [main] DEBUG Util - (1701) WG10 IEC61850 other 61850 ObjectReferences::LNOwnedDSReference, 1 superclasses=[LNReference], 2 attributes; afferent classes: byAttr=[LNOwnedDS];; efferent classes: byAttr=[NullIEC61850, ObjectName] +2024-09-07 12:38:51,290 [main] DEBUG Util - (1695) WG10 IEC61850 other 61850 ObjectReferences::NonPersistentDSReference, 1 superclasses=[P_ObjectReference], 2 attributes; afferent classes: byAttr=[NonPersistentDS];; efferent classes: byAttr=[NullIEC61850, ObjectName] +2024-09-07 12:38:51,290 [main] DEBUG Util - (1836) WG10 IEC61850 abstract class other 61850 MetaModel::HierarchyIEC61850Object, 1 superclasses=[IEC61850Object], 5 subclasses=[NamedIEC61850Object, IED, SERVER, FCD, FILE], 1 attributes; efferent classes: byAttr=[IEC61850Object] +2024-09-07 12:38:51,290 [main] DEBUG Util - (1837) WG10 IEC61850 abstract class other 61850 MetaModel::NamedIEC61850Object, 1 superclasses=[HierarchyIEC61850Object], 8 subclasses=[LD, LN, CDC, FCDA, DA, DS, ControlBlock, LOG], 1 attributes; efferent classes: byAttr=[ObjectName] +2024-09-07 12:38:51,290 [main] DEBUG Util - (1842) WG10 IEC61850 other 61850 MetaModel::LD, 1 superclasses=[NamedIEC61850Object], 1 attributes, 4 associations; efferent classes: byAttr=[LDReference]; associated classes (bi-directional): asTarget=[MetaModel::SERVER] asSource=[MetaModel::LNDOM, MetaModel::LN0, MetaModel::LNPHD] +2024-09-07 12:38:51,290 [main] DEBUG Util - (1843) WG10 IEC61850 abstract class LN MetaModel::LN, 1 superclasses=[NamedIEC61850Object], 3 subclasses=[LNPHD, LN0, LNDOM], 1 attributes, 6 associations; efferent classes: byAttr=[LNReference]; associated classes (bi-directional): asSource=[MetaModel::CDC, MetaModel::LNOwnedDS, MetaModel::LOG, MetaModel::LCB, MetaModel::URCB, MetaModel::BRCB] +2024-09-07 12:38:51,290 [main] DEBUG Util - (1844) WG10 IEC61850 abstract class LN MetaModel::LNPHD, 1 superclasses=[LN], 1 subclasses=[LPHD], 1 associations; associated classes (bi-directional): asTarget=[MetaModel::LD] +2024-09-07 12:38:51,290 [main] DEBUG Util - (2764) WG10 IEC61850 LN LNGroupL::LPHD, 1 superclasses=[LNPHD], 3 attributes; afferent classes: byDep=[PhysicalDeviceData];; efferent classes: byAttr=[ENSHealth, SPCTransient, SPSTransient],2 constraints: class attributes constraint LNGroupL::LPHD {MF(2) = [RsstatAlmMthClc]} (MF(condID))class attributes constraint LNGroupL::LPHD {MOcond(1) = [PhyHealth]} (MOcond(condID)) +2024-09-07 12:38:51,290 [main] DEBUG Util - (1845) WG10 IEC61850 abstract class LN MetaModel::LN0, 1 superclasses=[LN], 1 subclasses=[LLN0], 5 associations; associated classes (bi-directional): asTarget=[MetaModel::LD] asSource=[MetaModel::USVCB, MetaModel::GCB, MetaModel::MSVCB, MetaModel::SGCB] +2024-09-07 12:38:51,290 [main] DEBUG Util - (2765) WG10 IEC61850 LN LNGroupL::LLN0, 1 superclasses=[LN0], 3 attributes; afferent classes: byDep=[LogicalDeviceData];; efferent classes: byAttr=[LPL, ENSBehaviourMode, ENSHealth],3 constraints: class attributes constraint LNGroupL::LLN0 {MOcond(1) = [NamPlt, Beh]} (MOcond(condID))class attributes constraint LNGroupL::LLN0 {MOrootLD = [Mod, Health, NamPlt]} (MOrootLD)class attributes constraint LNGroupL::LLN0 {Omulti = [InRef]} (Omulti) +2024-09-07 12:38:51,290 [main] DEBUG Util - (1846) WG10 IEC61850 abstract class LN MetaModel::LNDOM, 1 superclasses=[LN], 1 subclasses=[DomainLN], 1 associations; associated classes (bi-directional): asTarget=[MetaModel::LD] +2024-09-07 12:38:51,290 [main] DEBUG Util - (2728) WG10 IEC61850 abstract class LN <> LogicalNodes::DomainLN, 1 superclasses=[LNDOM], 6 subclasses=[StatisticsLN, EquipmentInterfaceLN, KXYZ, CALH, ProtectionLN, RDIR], 4 attributes, 1 diagrams; efferent classes: byAttr=[LPL, ENSHealth, ENCBehaviourMode, CMV],1 constraints: class attributes constraint LogicalNodes::DomainLN {MOcond(1) = [CntRs]} (MOcond(condID)) +2024-09-07 12:38:51,291 [main] DEBUG Util - (2735) WG10 IEC61850 abstract class LN <> LogicalNodes::StatisticsLN, 1 superclasses=[DomainLN], 2 subclasses=[GGIO, MMXU], 2 attributes; efferent classes: byAttr=[SPSTransient, ENGCalcMethod],1 constraints: class attributes constraint LogicalNodes::StatisticsLN {MF(ClcMth) = [ClcExp, ClcMod, ClcIntvPer, ClcIntvTyp]} (MF(sibling)) +2024-09-07 12:38:51,291 [main] DEBUG Util - (2815) WG10 IEC61850 LN LNGroupG::GGIO, 1 superclasses=[StatisticsLN], 3 attributes; afferent classes: byDep=[GenericIO];; efferent classes: byAttr=[ENSHealth, CMV, NullIEC61850],1 constraints: class attributes constraint LNGroupG::GGIO {Omulti = [AnIn, AnOut, DPCSO]} (Omulti) +2024-09-07 12:38:51,291 [main] DEBUG Util - (2856) WG10 IEC61850 LN LNGroupM::MMXU, 1 superclasses=[StatisticsLN], 3 attributes; afferent classes: byDep=[ThreePhaseMeasurement];; efferent classes: byAttr=[HWYE, CMV, HST],1 constraints: class attributes constraint LNGroupM::MMXU {MO(1) = [TotW]} (MOcond(condID)) +2024-09-07 12:38:51,291 [main] DEBUG Util - (2736) WG10 IEC61850 abstract class LN LogicalNodes::EquipmentInterfaceLN, 1 superclasses=[DomainLN], 1 subclasses=[ZAXN], 1 attributes; efferent classes: byAttr=[ENSHealth] +2024-09-07 12:38:51,291 [main] DEBUG Util - (3021) WG10 IEC61850 LN LNGroupZ::ZAXN, 1 superclasses=[EquipmentInterfaceLN], 5 attributes; afferent classes: byDep=[AuxiliaryNetwork];; efferent classes: byAttr=[CMV, NullIEC61850, ENSMaterial, ENCMaterial, ENSOther],2 constraints: class attributes constraint LNGroupZ::ZAXN {MOcond(condID) = [Vol]} (MOcond(condID))class attributes constraint LNGroupZ::ZAXN {AtLeastOne(n) = [Amp]} (AtLeastOne(n)) +2024-09-07 12:38:51,291 [main] DEBUG Util - (3030) WG10 IEC61850 LN LNGroupL::KXYZ, 1 superclasses=[DomainLN], 4 attributes; efferent classes: byAttr=[CMV, ENS, ENSEnumDA],1 constraints: class attributes constraint LNGroupL::KXYZ {MOcond(2) = [TotW]} (MOcond(condID)) +2024-09-07 12:38:51,291 [main] DEBUG Util - (2788) WG10 IEC61850 LN LNGroupC::CALH, 1 superclasses=[DomainLN], 3 attributes; afferent classes: byDep=[AlarmHandler];; efferent classes: byAttr=[DPS, EXYBehaviourMode],2 constraints: class attributes constraint LNGroupC::CALH {AtLeastOne(1) = [GrAlm, GrWrn, GrInd]} (AtLeastOne(n))class attributes constraint LNGroupC::CALH {AtLeastOne(2) = [CntRs]} (AtLeastOne(n)) +2024-09-07 12:38:51,291 [main] DEBUG Util - (2872) WG10 IEC61850 abstract class LN LNGroupP::ProtectionLN, 1 superclasses=[DomainLN], 3 subclasses=[PDIF, PDIS, PDF2], 1 attributes; efferent classes: byAttr=[NullIEC61850] +2024-09-07 12:38:51,291 [main] DEBUG Util - (2881) WG10 IEC61850 LN LNGroupP::PDIF, 1 superclasses=[ProtectionLN], 2 attributes; afferent classes: byDep=[BusbarProt, LineDifferentialProt];; efferent classes: byAttr=[ACD, ACTTransient],2 constraints: class attributes constraint LNGroupP::PDIF {AtMostOne = [LoSet, HiSet]} (AtMostOne)class attributes constraint LNGroupP::PDIF {OmultiRange(33, 48) = [Str]} (OmultiRange(min, max)) +2024-09-07 12:38:51,291 [main] DEBUG Util - (2883) WG10 IEC61850 LN LNGroupP::PDIS, 1 superclasses=[ProtectionLN], 1 subclasses=[PDISExt], 2 attributes, 1 diagrams; afferent classes: byDep=[DirectionalProt];; efferent classes: byDep=[RDIR] byAttr=[ACD, ACTTransient] +2024-09-07 12:38:51,291 [main] DEBUG Util - (3041) WG10 IEC61850 LN LNGroupP::PDISExt, 1 superclasses=[PDIS] +2024-09-07 12:38:51,291 [main] DEBUG Util - (3042) WG10 IEC61850 LN LNGroupP::PDF2, 1 superclasses=[ProtectionLN] +2024-09-07 12:38:51,291 [main] DEBUG Util - (2938) WG10 IEC61850 LN LNGroupR::RDIR, 1 superclasses=[DomainLN], 2 attributes; afferent classes: byDep=[DirectionalProt, DirectionalPowerProt, PDIS];; efferent classes: byAttr=[ACD, SPSTransient] +2024-09-07 12:38:51,291 [main] DEBUG Util - (1847) WG10 IEC61850 abstract class other 61850 MetaModel::CDC, 1 superclasses=[NamedIEC61850Object], 2 subclasses=[PrimitiveCDC, ComposedCDC], 1 attributes, 3 associations; efferent classes: byAttr=[CDCReference]; associated classes (bi-directional): asTarget=[MetaModel::LN] asSource=[MetaModel::FCDA, MetaModel::FCD] +2024-09-07 12:38:51,291 [main] DEBUG Util - (1848) WG10 IEC61850 abstract class primitive CDC MetaModel::PrimitiveCDC, 1 superclasses=[CDC], 1 subclasses=[BasePrimitiveCDC], 2 associations; associated classes (bi-directional): asTarget=[MetaModel::ComposedCDC] asSource=[MetaModel::PrimitiveDA] +2024-09-07 12:38:51,291 [main] DEBUG Util - (2234) WG10 IEC61850 abstract class primitive CDC CommonDataClasses::BasePrimitiveCDC, 1 superclasses=[PrimitiveCDC], 7 subclasses=[CST, SubstitutionCDC, EXY, ACD, HST, ENG, LPL], 2 attributes; efferent classes: byAttr=[UNICODE_STRING255_DC, VISIBLE_STRING255_EX],2 constraints: class attributes constraint CommonDataClasses::BasePrimitiveCDC {MOcdcNs = [cdcNs, cdcName]} (MOcdcNs)class attributes constraint CommonDataClasses::BasePrimitiveCDC {MOdataNs = [dataNs]} (MOdataNs) +2024-09-07 12:38:51,291 [main] DEBUG Util - (1995) WG10 IEC61850 abstract class primitive CDC CDCServiceTracking::CST, 1 superclasses=[BasePrimitiveCDC], 9 subclasses=[BTS, CTS, GTS, LTS, MTS, NTS, OTS, STS, UTS] +2024-09-07 12:38:51,291 [main] DEBUG Util - (1996) WG10 IEC61850 primitive CDC CDCServiceTracking::BTS, 1 superclasses=[CST] +2024-09-07 12:38:51,291 [main] DEBUG Util - (1997) WG10 IEC61850 control tracking CDC CDCServiceTracking::CTS, 1 superclasses=[CST] +2024-09-07 12:38:51,291 [main] DEBUG Util - (1998) WG10 IEC61850 primitive CDC CDCServiceTracking::GTS, 1 superclasses=[CST] +2024-09-07 12:38:51,291 [main] DEBUG Util - (1999) WG10 IEC61850 primitive CDC CDCServiceTracking::LTS, 1 superclasses=[CST] +2024-09-07 12:38:51,291 [main] DEBUG Util - (2000) WG10 IEC61850 primitive CDC CDCServiceTracking::MTS, 1 superclasses=[CST] +2024-09-07 12:38:51,291 [main] DEBUG Util - (2001) WG10 IEC61850 primitive CDC CDCServiceTracking::NTS, 1 superclasses=[CST] +2024-09-07 12:38:51,292 [main] DEBUG Util - (2002) WG10 IEC61850 primitive CDC CDCServiceTracking::OTS, 1 superclasses=[CST] +2024-09-07 12:38:51,292 [main] DEBUG Util - (2003) WG10 IEC61850 primitive CDC CDCServiceTracking::STS, 1 superclasses=[CST] +2024-09-07 12:38:51,292 [main] DEBUG Util - (2004) WG10 IEC61850 primitive CDC CDCServiceTracking::UTS, 1 superclasses=[CST] +2024-09-07 12:38:51,292 [main] DEBUG Util - (2236) WG10 IEC61850 abstract class primitive CDC CommonDataClasses::SubstitutionCDC, 1 superclasses=[BasePrimitiveCDC], 4 subclasses=[DPS, ENS, CMV, ControllableCDC], 3 attributes, 1 diagrams; efferent classes: byAttr=[BOOLEAN_SV, Quality_SV, BOOLEAN_BL],1 constraints: class attributes constraint CommonDataClasses::SubstitutionCDC {MFsubst = [subEna, subQ, subID]} (MFsubst) +2024-09-07 12:38:51,292 [main] DEBUG Util - (2248) WG10 IEC61850 primitive CDC CDCStatusInfo::DPS, 1 superclasses=[SubstitutionCDC], 4 attributes; afferent classes: byAttr=[CALH];; efferent classes: byAttr=[DpStatus_ST_dchg, Quality_ST_qchg, TimeStamp_ST, DpStatus_SV],1 constraints: class attributes constraint CDCStatusInfo::DPS {MFsubst = [subVal]} (MFsubst) +2024-09-07 12:38:51,292 [main] DEBUG Util - (2250) WG10 IEC61850 abstract class enumeration CDC CDCStatusInfo::ENS, 1 superclasses=[SubstitutionCDC], 5 subclasses=[ENSBehaviourMode, ENSHealth, ENSEnumDA, ENSMaterial, ENSOther], 4 attributes; afferent classes: byAttr=[KXYZ];; efferent classes: byAttr=[EnumDA_ST_dchg_dupd, Quality_ST_qchg, TimeStamp_ST, EnumDA_SV],1 constraints: class attributes constraint CDCStatusInfo::ENS {MFsubst = [subVal]} (MFsubst) +2024-09-07 12:38:51,292 [main] DEBUG Util - (2707) WG10 IEC61850 enumeration CDC DerivedCDCs::ENSBehaviourMode, 1 superclasses=[ENS]; afferent classes: byAttr=[LLN0]; +2024-09-07 12:38:51,292 [main] DEBUG Util - (2712) WG10 IEC61850 enumeration CDC DerivedCDCs::ENSHealth, 1 superclasses=[ENS]; afferent classes: byAttr=[DomainLN, EquipmentInterfaceLN, LPHD, LLN0, GGIO]; +2024-09-07 12:38:51,292 [main] DEBUG Util - (3073) WG10 IEC61850 abstract class enumeration CDC DerivedCDCs::ENSEnumDA, 1 superclasses=[ENS]; afferent classes: byAttr=[KXYZ]; +2024-09-07 12:38:51,292 [main] DEBUG Util - (3060) WG17 IEC61850 enumeration CDC DerivedCDCs_7_420::ENSMaterial, 1 superclasses=[ENS]; afferent classes: byAttr=[ZAXN]; +2024-09-07 12:38:51,292 [main] DEBUG Util - (3062) WG17 IEC61850 enumeration CDC DerivedCDCs_7_420::ENSOther, 1 superclasses=[ENS]; afferent classes: byAttr=[ZAXN]; +2024-09-07 12:38:51,292 [main] DEBUG Util - (2266) WG10 IEC61850 primitive CDC <> CDCAnalogueInfo::CMV, 1 superclasses=[SubstitutionCDC], 4 attributes; afferent classes: byAttr=[HWYE, DomainLN, KXYZ, GGIO, MMXU, ZAXN];; efferent classes: byAttr=[NullIEC61850, RangeConfig_CF_dchg],5 constraints: class attributes constraint CDCAnalogueInfo::CMV {MF(range) = [rangeC]} (MF(sibling))class attributes constraint CDCAnalogueInfo::CMV {MF(rangeAng) = [rangeAngC]} (MF(sibling))class attributes constraint CDCAnalogueInfo::CMV {MFscaledAngV = [angSVC]} (MFscaledAngV)class attributes constraint CDCAnalogueInfo::CMV {MFscaledMagV = [magSVC]} (MFscaledMagV)class attributes constraint CDCAnalogueInfo::CMV {MFsubst = [subCVal]} (MFsubst) +2024-09-07 12:38:51,292 [main] DEBUG Util - (2278) WG10 IEC61850 abstract class primitive CDC CDCControl::ControllableCDC, 1 superclasses=[SubstitutionCDC], 2 subclasses=[ENC, BAC], 1 attributes, 1 diagrams; afferent classes: byDep=[SPC];; efferent classes: byAttr=[BOOLEAN_OR_dchg] +2024-09-07 12:38:51,292 [main] DEBUG Util - (2283) WG10 IEC61850 abstract class enumeration CDC CDCControl::ENC, 1 superclasses=[ControllableCDC], 2 subclasses=[ENCBehaviourMode, ENCMaterial], 3 attributes; efferent classes: byAttr=[EnumDA_ST_dchg, EnumDA_SV, EnumDA],1 constraints: class attributes constraint CDCControl::ENC {MFsubst = [subVal]} (MFsubst) +2024-09-07 12:38:51,292 [main] DEBUG Util - (2673) WG10 IEC61850 enumeration CDC DerivedCDCs::ENCBehaviourMode, 1 superclasses=[ENC]; afferent classes: byAttr=[DomainLN]; +2024-09-07 12:38:51,292 [main] DEBUG Util - (3059) WG17 IEC61850 enumeration CDC DerivedCDCs_7_420::ENCMaterial, 1 superclasses=[ENC]; afferent classes: byAttr=[ZAXN]; +2024-09-07 12:38:51,292 [main] DEBUG Util - (2287) WG10 IEC61850 primitive CDC <> CDCControl::BAC, 1 superclasses=[ControllableCDC], 3 attributes; efferent classes: byAttr=[AnalogueValue_MX_dchg, NullIEC61850, BsControl],3 constraints: class attributes constraint CDCControl::BAC {AllOrNonePerGroup(1) = [mxVal, q, t]} (AllOrNonePerGroup(n))class attributes constraint CDCControl::BAC {MFscaledAV = [sVC]} (MFscaledAV)class attributes constraint CDCControl::BAC {MFsubst = [subVal]} (MFsubst) +2024-09-07 12:38:51,292 [main] DEBUG Util - (3038) WG10 IEC61850 primitive CDC CDCStatusInfo::EXY, 1 superclasses=[BasePrimitiveCDC], 1 subclasses=[EXYBehaviourMode], 3 attributes; efferent classes: byAttr=[EnumDA_ST_dchg_dupd, Quality_ST_qchg, TimeStamp_ST] +2024-09-07 12:38:51,292 [main] DEBUG Util - (3039) WG10 IEC61850 primitive CDC DerivedCDCs::EXYBehaviourMode, 1 superclasses=[EXY]; afferent classes: byAttr=[CALH]; +2024-09-07 12:38:51,292 [main] DEBUG Util - (2252) WG10 IEC61850 primitive CDC CDCStatusInfo::ACD, 1 superclasses=[BasePrimitiveCDC], 3 attributes; afferent classes: byAttr=[PDIF, PDIS, RDIR];; efferent classes: byAttr=[NullIEC61850, BOOLEAN_ST_dchg],4 constraints: class attributes constraint CDCStatusInfo::ACD {AllOrNonePerGroup(1) = [phsA, dirPhsA]} (AllOrNonePerGroup(n))class attributes constraint CDCStatusInfo::ACD {AllOrNonePerGroup(2) = [phsB, dirPhsB]} (AllOrNonePerGroup(n))class attributes constraint CDCStatusInfo::ACD {AllOrNonePerGroup(3) = [phsC, dirPhsC]} (AllOrNonePerGroup(n))class attributes constraint CDCStatusInfo::ACD {AllOrNonePerGroup(4) = [neut, dirNeut]} (AllOrNonePerGroup(n)) +2024-09-07 12:38:51,292 [main] DEBUG Util - (2255) WG10 IEC61850 primitive CDC CDCStatusInfo::HST, 1 superclasses=[BasePrimitiveCDC], 2 attributes, 2 diagrams; afferent classes: byAttr=[MMXU];; efferent classes: byAttr=[INT32_ST_dchg_dupd, INT16U_CF] +2024-09-07 12:38:51,292 [main] DEBUG Util - (2295) WG10 IEC61850 abstract class enumeration CDC CDCStatusSet::ENG, 1 superclasses=[BasePrimitiveCDC], 1 subclasses=[ENGCalcMethod], 3 attributes; efferent classes: byAttr=[NullIEC61850],2 constraints: class attributes constraint CDCStatusSet::ENG {MFnsg = [setVal]} (MFnsg)class attributes constraint CDCStatusSet::ENG {MFsg = [_setVal, __setVal]} (MFsg) +2024-09-07 12:38:51,292 [main] DEBUG Util - (2677) WG10 IEC61850 enumeration CDC DerivedCDCs::ENGCalcMethod, 1 superclasses=[ENG]; afferent classes: byAttr=[StatisticsLN]; +2024-09-07 12:38:51,292 [main] DEBUG Util - (2314) WG10 IEC61850 primitive CDC CDCDescription::LPL, 1 superclasses=[BasePrimitiveCDC], 2 attributes; afferent classes: byAttr=[DomainLN, LLN0];; efferent classes: byAttr=[VISIBLE_STRING255_EX],3 constraints: class attributes constraint CDCDescription::LPL {MFln0 = [ldNs]} (MFln0)class attributes constraint CDCDescription::LPL {MOln0 = [configRev]} (MOln0)class attributes constraint CDCDescription::LPL {MOlnNs = [lnNs]} (MOlnNs) +2024-09-07 12:38:51,292 [main] DEBUG Util - (1849) WG10 IEC61850 abstract class composed CDC MetaModel::ComposedCDC, 1 superclasses=[CDC], 1 subclasses=[BaseComposedCDC], 1 associations; associated classes (bi-directional): asSource=[MetaModel::PrimitiveCDC] +2024-09-07 12:38:51,293 [main] DEBUG Util - (2235) WG10 IEC61850 abstract class composed CDC CommonDataClasses::BaseComposedCDC, 1 superclasses=[ComposedCDC], 1 subclasses=[HarmonicMeasurandCDC], 2 attributes; efferent classes: byAttr=[UNICODE_STRING255_DC, VISIBLE_STRING255_EX],2 constraints: class attributes constraint CommonDataClasses::BaseComposedCDC {MOcdcNs = [cdcNs, cdcName]} (MOcdcNs)class attributes constraint CommonDataClasses::BaseComposedCDC {MOdataNs = [dataNs]} (MOdataNs) +2024-09-07 12:38:51,293 [main] DEBUG Util - (2263) WG10 IEC61850 abstract class composed CDC <> CDCAnalogueInfo::HarmonicMeasurandCDC, 1 superclasses=[BaseComposedCDC], 1 subclasses=[HWYE], 2 attributes; efferent classes: byAttr=[INT16U_CF_dchg, INT32U_CF_dchg],1 constraints: class attributes constraint CDCAnalogueInfo::HarmonicMeasurandCDC {MFrms = [rmsCyc]} (MFrms) +2024-09-07 12:38:51,293 [main] DEBUG Util - (2273) WG10 IEC61850 composed CDC CDCAnalogueInfo::HWYE, 1 superclasses=[HarmonicMeasurandCDC], 2 attributes; afferent classes: byAttr=[MMXU];; efferent classes: byAttr=[CMV, PhaseAngleReference_CF_dchg] +2024-09-07 12:38:51,293 [main] DEBUG Util - (1851) WG10 IEC61850 abstract class FCDA MetaModel::FCDA, 1 superclasses=[NamedIEC61850Object], 11 subclasses=[FCDA_BL, FCDA_CF, FCDA_DC, FCDA_EX, FCDA_MX, FCDA_OR, FCDA_SE, FCDA_SG, FCDA_SP, FCDA_ST, FCDA_SV], 1 attributes, 4 associations; efferent classes: byAttr=[FCDAReference]; associated classes (bi-directional): asTarget=[MetaModel::CDC, MetaModel::FCD] asSource=[MetaModel::DA, MetaModel::DS] +2024-09-07 12:38:51,293 [main] DEBUG Util - (1916) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_BL, 1 superclasses=[FCDA], 1 subclasses=[BOOLEAN_BL], 1 attributes; efferent classes: byAttr=[FcKind] +2024-09-07 12:38:51,293 [main] DEBUG Util - (2122) WG10 IEC61850 FCDA FCDAs::BOOLEAN_BL, 1 superclasses=[FCDA_BL], 1 attributes; afferent classes: byAttr=[SubstitutionCDC];; efferent classes: byAttr=[BOOLEAN] +2024-09-07 12:38:51,293 [main] DEBUG Util - (1917) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_CF, 1 superclasses=[FCDA], 3 subclasses=[EnumFCDA_CF, FCDA_CF_dchg, INT16U_CF], 1 attributes; efferent classes: byAttr=[FcKind] +2024-09-07 12:38:51,293 [main] DEBUG Util - (1903) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_CF, 1 superclasses=[FCDA_CF] +2024-09-07 12:38:51,293 [main] DEBUG Util - (1918) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_CF_dchg, 1 superclasses=[FCDA_CF], 6 subclasses=[EnumFCDA_CF_dchg, BOOLEAN_CF_dchg, INT16U_CF_dchg, INT32U_CF_dchg, INT32_CF_dchg, RangeConfig_CF_dchg], 1 attributes; efferent classes: byAttr=[TrgOpKind] +2024-09-07 12:38:51,293 [main] DEBUG Util - (1904) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_CF_dchg, 1 superclasses=[FCDA_CF_dchg], 2 subclasses=[EnumDA_CF_dchg, PhaseAngleReference_CF_dchg] +2024-09-07 12:38:51,293 [main] DEBUG Util - (2144) WG10 IEC61850 abstract class enumeration FCDA FCDAs::EnumDA_CF_dchg, 1 superclasses=[EnumFCDA_CF_dchg], 1 attributes; efferent classes: byAttr=[EnumDA] +2024-09-07 12:38:51,293 [main] DEBUG Util - (2183) WG10 IEC61850 enumeration FCDA FCDAs::PhaseAngleReference_CF_dchg, 1 superclasses=[EnumFCDA_CF_dchg], 1 attributes; afferent classes: byAttr=[HWYE];; efferent classes: byAttr=[PhaseAngleReference] +2024-09-07 12:38:51,293 [main] DEBUG Util - (2123) WG10 IEC61850 FCDA FCDAs::BOOLEAN_CF_dchg, 1 superclasses=[FCDA_CF_dchg], 1 attributes; efferent classes: byAttr=[BOOLEAN] +2024-09-07 12:38:51,293 [main] DEBUG Util - (2160) WG10 IEC61850 FCDA FCDAs::INT16U_CF_dchg, 1 superclasses=[FCDA_CF_dchg], 1 attributes; afferent classes: byAttr=[HarmonicMeasurandCDC];; efferent classes: byAttr=[INT16U] +2024-09-07 12:38:51,293 [main] DEBUG Util - (2165) WG10 IEC61850 FCDA FCDAs::INT32U_CF_dchg, 1 superclasses=[FCDA_CF_dchg], 1 attributes; afferent classes: byAttr=[HarmonicMeasurandCDC];; efferent classes: byAttr=[INT32U] +2024-09-07 12:38:51,293 [main] DEBUG Util - (2167) WG10 IEC61850 FCDA FCDAs::INT32_CF_dchg, 1 superclasses=[FCDA_CF_dchg], 1 attributes; efferent classes: byAttr=[INT32] +2024-09-07 12:38:51,293 [main] DEBUG Util - (2194) WG10 IEC61850 FCDA FCDAs::RangeConfig_CF_dchg, 1 superclasses=[FCDA_CF_dchg], 1 attributes; afferent classes: byAttr=[CMV];; efferent classes: byAttr=[RangeConfig] +2024-09-07 12:38:51,293 [main] DEBUG Util - (2159) WG10 IEC61850 FCDA FCDAs::INT16U_CF, 1 superclasses=[FCDA_CF], 1 attributes; afferent classes: byAttr=[HST];; efferent classes: byAttr=[INT16U] +2024-09-07 12:38:51,293 [main] DEBUG Util - (1919) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_DC, 1 superclasses=[FCDA], 2 subclasses=[Point_DC, UNICODE_STRING255_DC], 1 attributes; efferent classes: byAttr=[FcKind] +2024-09-07 12:38:51,293 [main] DEBUG Util - (2186) WG10 IEC61850 FCDA FCDAs::Point_DC, 1 superclasses=[FCDA_DC], 1 attributes; efferent classes: byAttr=[Point] +2024-09-07 12:38:51,293 [main] DEBUG Util - (2207) WG10 IEC61850 FCDA FCDAs::UNICODE_STRING255_DC, 1 superclasses=[FCDA_DC], 1 attributes; afferent classes: byAttr=[BasePrimitiveCDC, BaseComposedCDC];; efferent classes: byAttr=[UNICODE_STRING255] +2024-09-07 12:38:51,293 [main] DEBUG Util - (1920) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_EX, 1 superclasses=[FCDA], 1 subclasses=[VISIBLE_STRING255_EX], 2 attributes; efferent classes: byAttr=[FcKind, P_BOOLEAN] +2024-09-07 12:38:51,293 [main] DEBUG Util - (2217) WG10 IEC61850 FCDA FCDAs::VISIBLE_STRING255_EX, 1 superclasses=[FCDA_EX], 1 attributes; afferent classes: byAttr=[BasePrimitiveCDC, BaseComposedCDC, LPL];; efferent classes: byAttr=[VISIBLE_STRING255] +2024-09-07 12:38:51,293 [main] DEBUG Util - (1921) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_MX, 1 superclasses=[FCDA], 5 subclasses=[EnumFCDA_MX, FCDA_MX_dchg, FCDA_MX_dchg_dupd, FCDA_MX_qchg, AnalogueValue_MX], 2 attributes; efferent classes: byAttr=[FcKind, P_BOOLEAN] +2024-09-07 12:38:51,293 [main] DEBUG Util - (1905) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_MX, 1 superclasses=[FCDA_MX] +2024-09-07 12:38:51,293 [main] DEBUG Util - (1922) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_MX_dchg, 1 superclasses=[FCDA_MX], 2 subclasses=[AnalogueValue_MX_dchg, BOOLEAN_MX_dchg], 1 attributes; efferent classes: byAttr=[TrgOpKind] +2024-09-07 12:38:51,293 [main] DEBUG Util - (2116) WG10 IEC61850 FCDA FCDAs::AnalogueValue_MX_dchg, 1 superclasses=[FCDA_MX_dchg], 1 attributes; afferent classes: byAttr=[BAC];; efferent classes: byAttr=[AnalogueValue] +2024-09-07 12:38:51,293 [main] DEBUG Util - (2124) WG10 IEC61850 FCDA FCDAs::BOOLEAN_MX_dchg, 1 superclasses=[FCDA_MX_dchg], 1 attributes; efferent classes: byAttr=[BOOLEAN] +2024-09-07 12:38:51,293 [main] DEBUG Util - (1923) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_MX_dchg_dupd, 1 superclasses=[FCDA_MX], 1 subclasses=[AnalogueValue_MX_dchg_dupd], 1 attributes; efferent classes: byAttr=[TrgOpKind] +2024-09-07 12:38:51,293 [main] DEBUG Util - (2117) WG10 IEC61850 FCDA FCDAs::AnalogueValue_MX_dchg_dupd, 1 superclasses=[FCDA_MX_dchg_dupd], 1 attributes; efferent classes: byAttr=[AnalogueValue] +2024-09-07 12:38:51,293 [main] DEBUG Util - (1924) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_MX_qchg, 1 superclasses=[FCDA_MX], 1 subclasses=[Quality_MX_qchg], 1 attributes; efferent classes: byAttr=[TrgOpKind] +2024-09-07 12:38:51,293 [main] DEBUG Util - (2191) WG10 IEC61850 FCDA FCDAs::Quality_MX_qchg, 1 superclasses=[FCDA_MX_qchg], 1 attributes; efferent classes: byAttr=[Quality] +2024-09-07 12:38:51,293 [main] DEBUG Util - (2115) WG10 IEC61850 FCDA FCDAs::AnalogueValue_MX, 1 superclasses=[FCDA_MX], 1 attributes; efferent classes: byAttr=[AnalogueValue] +2024-09-07 12:38:51,293 [main] DEBUG Util - (1925) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_OR, 1 superclasses=[FCDA], 1 subclasses=[FCDA_OR_dchg], 2 attributes; efferent classes: byAttr=[FcKind, P_BOOLEAN] +2024-09-07 12:38:51,293 [main] DEBUG Util - (1926) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_OR_dchg, 1 superclasses=[FCDA_OR], 1 subclasses=[BOOLEAN_OR_dchg], 1 attributes; efferent classes: byAttr=[TrgOpKind] +2024-09-07 12:38:51,293 [main] DEBUG Util - (2125) WG10 IEC61850 FCDA FCDAs::BOOLEAN_OR_dchg, 1 superclasses=[FCDA_OR_dchg], 1 attributes; afferent classes: byAttr=[ControllableCDC];; efferent classes: byAttr=[BOOLEAN] +2024-09-07 12:38:51,293 [main] DEBUG Util - (1927) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_SE, 1 superclasses=[FCDA], 3 subclasses=[FCDA_SE_dchg, BOOLEAN_SE, Point_SE], 3 attributes, 1 associations; efferent classes: byAttr=[FcKind, P_BOOLEAN]; associated classes (bi-directional): asTarget=[MetaModel::SGCB] +2024-09-07 12:38:51,293 [main] DEBUG Util - (1928) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_SE_dchg, 1 superclasses=[FCDA_SE], 1 subclasses=[EnumFCDA_SE_dchg], 1 attributes; efferent classes: byAttr=[TrgOpKind] +2024-09-07 12:38:51,294 [main] DEBUG Util - (1908) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_SE_dchg, 1 superclasses=[FCDA_SE_dchg] +2024-09-07 12:38:51,294 [main] DEBUG Util - (2126) WG10 IEC61850 FCDA FCDAs::BOOLEAN_SE, 1 superclasses=[FCDA_SE], 1 attributes; efferent classes: byAttr=[BOOLEAN] +2024-09-07 12:38:51,294 [main] DEBUG Util - (2187) WG10 IEC61850 FCDA FCDAs::Point_SE, 1 superclasses=[FCDA_SE], 1 attributes; efferent classes: byAttr=[Point] +2024-09-07 12:38:51,294 [main] DEBUG Util - (1929) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_SG, 1 superclasses=[FCDA], 3 subclasses=[FCDA_SG_dchg, BOOLEAN_SG, Point_SG], 2 attributes, 1 associations; efferent classes: byAttr=[FcKind, P_BOOLEAN]; associated classes (bi-directional): asTarget=[MetaModel::SGCB] +2024-09-07 12:38:51,294 [main] DEBUG Util - (1930) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_SG_dchg, 1 superclasses=[FCDA_SG], 1 subclasses=[EnumFCDA_SG_dchg], 1 attributes; efferent classes: byAttr=[TrgOpKind] +2024-09-07 12:38:51,294 [main] DEBUG Util - (1910) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_SG_dchg, 1 superclasses=[FCDA_SG_dchg] +2024-09-07 12:38:51,294 [main] DEBUG Util - (2127) WG10 IEC61850 FCDA FCDAs::BOOLEAN_SG, 1 superclasses=[FCDA_SG], 1 attributes; efferent classes: byAttr=[BOOLEAN] +2024-09-07 12:38:51,294 [main] DEBUG Util - (2188) WG10 IEC61850 FCDA FCDAs::Point_SG, 1 superclasses=[FCDA_SG], 1 attributes; efferent classes: byAttr=[Point] +2024-09-07 12:38:51,294 [main] DEBUG Util - (1931) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_SP, 1 superclasses=[FCDA], 2 subclasses=[FCDA_SP_dchg, Point_SP], 1 attributes; efferent classes: byAttr=[FcKind] +2024-09-07 12:38:51,294 [main] DEBUG Util - (1932) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_SP_dchg, 1 superclasses=[FCDA_SP], 1 subclasses=[BOOLEAN_SP_dchg], 1 attributes; efferent classes: byAttr=[TrgOpKind] +2024-09-07 12:38:51,294 [main] DEBUG Util - (2128) WG10 IEC61850 FCDA FCDAs::BOOLEAN_SP_dchg, 1 superclasses=[FCDA_SP_dchg], 1 attributes; efferent classes: byAttr=[BOOLEAN] +2024-09-07 12:38:51,294 [main] DEBUG Util - (2189) WG10 IEC61850 FCDA FCDAs::Point_SP, 1 superclasses=[FCDA_SP], 1 attributes; efferent classes: byAttr=[Point] +2024-09-07 12:38:51,294 [main] DEBUG Util - (1933) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_ST, 1 superclasses=[FCDA], 6 subclasses=[EnumFCDA_ST, FCDA_ST_dchg, FCDA_ST_dchg_dupd, FCDA_ST_dupd, FCDA_ST_qchg, TimeStamp_ST], 2 attributes; efferent classes: byAttr=[FcKind, P_BOOLEAN] +2024-09-07 12:38:51,294 [main] DEBUG Util - (1912) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_ST, 1 superclasses=[FCDA_ST] +2024-09-07 12:38:51,294 [main] DEBUG Util - (1934) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_ST_dchg, 1 superclasses=[FCDA_ST], 3 subclasses=[EnumFCDA_ST_dchg, BOOLEAN_ST_dchg, INT32_ST_dchg], 1 attributes; efferent classes: byAttr=[TrgOpKind] +2024-09-07 12:38:51,294 [main] DEBUG Util - (1913) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_ST_dchg, 1 superclasses=[FCDA_ST_dchg], 3 subclasses=[PackedEnumFCDA_SP_dchg, EnumDA_ST_dchg, PhaseFaultDirection_ST_dchg] +2024-09-07 12:38:51,294 [main] DEBUG Util - (1939) WG10 IEC61850 abstract class coded enumeration FCDA MetaModelFCsAndTrgOps::PackedEnumFCDA_SP_dchg, 1 superclasses=[EnumFCDA_ST_dchg], 1 subclasses=[DpStatus_ST_dchg] +2024-09-07 12:38:51,294 [main] DEBUG Util - (2142) WG10 IEC61850 coded enumeration FCDA FCDAs::DpStatus_ST_dchg, 1 superclasses=[PackedEnumFCDA_SP_dchg], 1 attributes; afferent classes: byAttr=[DPS];; efferent classes: byAttr=[DpStatus] +2024-09-07 12:38:51,294 [main] DEBUG Util - (2148) WG10 IEC61850 abstract class enumeration FCDA FCDAs::EnumDA_ST_dchg, 1 superclasses=[EnumFCDA_ST_dchg], 1 attributes; afferent classes: byAttr=[ENC];; efferent classes: byAttr=[EnumDA] +2024-09-07 12:38:51,294 [main] DEBUG Util - (2184) WG10 IEC61850 enumeration FCDA FCDAs::PhaseFaultDirection_ST_dchg, 1 superclasses=[EnumFCDA_ST_dchg], 1 attributes; efferent classes: byAttr=[PhaseFaultDirection] +2024-09-07 12:38:51,294 [main] DEBUG Util - (2129) WG10 IEC61850 FCDA FCDAs::BOOLEAN_ST_dchg, 1 superclasses=[FCDA_ST_dchg], 1 attributes; afferent classes: byAttr=[ACD];; efferent classes: byAttr=[BOOLEAN] +2024-09-07 12:38:51,294 [main] DEBUG Util - (2171) WG10 IEC61850 FCDA FCDAs::INT32_ST_dchg, 1 superclasses=[FCDA_ST_dchg], 1 attributes; efferent classes: byAttr=[INT32] +2024-09-07 12:38:51,294 [main] DEBUG Util - (1935) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_ST_dchg_dupd, 1 superclasses=[FCDA_ST], 2 subclasses=[EnumFCDA_ST_dchg_dupd, INT32_ST_dchg_dupd], 1 attributes; efferent classes: byAttr=[TrgOpKind] +2024-09-07 12:38:51,294 [main] DEBUG Util - (1914) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_ST_dchg_dupd, 1 superclasses=[FCDA_ST_dchg_dupd], 1 subclasses=[EnumDA_ST_dchg_dupd] +2024-09-07 12:38:51,294 [main] DEBUG Util - (2149) WG10 IEC61850 abstract class enumeration FCDA FCDAs::EnumDA_ST_dchg_dupd, 1 superclasses=[EnumFCDA_ST_dchg_dupd], 1 attributes; afferent classes: byAttr=[ENS, EXY];; efferent classes: byAttr=[EnumDA] +2024-09-07 12:38:51,294 [main] DEBUG Util - (2172) WG10 IEC61850 FCDA FCDAs::INT32_ST_dchg_dupd, 1 superclasses=[FCDA_ST_dchg_dupd], 1 attributes; afferent classes: byAttr=[HST];; efferent classes: byAttr=[INT32] +2024-09-07 12:38:51,294 [main] DEBUG Util - (1936) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_ST_dupd, 1 superclasses=[FCDA_ST], 1 attributes; efferent classes: byAttr=[TrgOpKind] +2024-09-07 12:38:51,294 [main] DEBUG Util - (1937) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_ST_qchg, 1 superclasses=[FCDA_ST], 1 subclasses=[Quality_ST_qchg], 1 attributes; efferent classes: byAttr=[TrgOpKind] +2024-09-07 12:38:51,294 [main] DEBUG Util - (2192) WG10 IEC61850 FCDA FCDAs::Quality_ST_qchg, 1 superclasses=[FCDA_ST_qchg], 1 attributes; afferent classes: byAttr=[DPS, ENS, EXY];; efferent classes: byAttr=[Quality] +2024-09-07 12:38:51,294 [main] DEBUG Util - (2206) WG10 IEC61850 FCDA FCDAs::TimeStamp_ST, 1 superclasses=[FCDA_ST], 1 attributes; afferent classes: byAttr=[DPS, ENS, EXY];; efferent classes: byAttr=[TimeStamp] +2024-09-07 12:38:51,294 [main] DEBUG Util - (1938) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_SV, 1 superclasses=[FCDA], 3 subclasses=[EnumFCDA_SV, BOOLEAN_SV, Quality_SV], 1 attributes; efferent classes: byAttr=[FcKind] +2024-09-07 12:38:51,294 [main] DEBUG Util - (1915) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_SV, 1 superclasses=[FCDA_SV], 2 subclasses=[PackedEnumFCDA_SV, EnumDA_SV] +2024-09-07 12:38:51,294 [main] DEBUG Util - (1940) WG10 IEC61850 abstract class coded enumeration FCDA MetaModelFCsAndTrgOps::PackedEnumFCDA_SV, 1 superclasses=[EnumFCDA_SV], 1 subclasses=[DpStatus_SV] +2024-09-07 12:38:51,295 [main] DEBUG Util - (2143) WG10 IEC61850 coded enumeration FCDA FCDAs::DpStatus_SV, 1 superclasses=[PackedEnumFCDA_SV], 1 attributes; afferent classes: byAttr=[DPS];; efferent classes: byAttr=[DpStatus] +2024-09-07 12:38:51,295 [main] DEBUG Util - (2150) WG10 IEC61850 abstract class enumeration FCDA FCDAs::EnumDA_SV, 1 superclasses=[EnumFCDA_SV], 1 attributes; afferent classes: byAttr=[ENS, ENC];; efferent classes: byAttr=[EnumDA] +2024-09-07 12:38:51,295 [main] DEBUG Util - (2130) WG10 IEC61850 FCDA FCDAs::BOOLEAN_SV, 1 superclasses=[FCDA_SV], 1 attributes; afferent classes: byAttr=[SubstitutionCDC];; efferent classes: byAttr=[BOOLEAN] +2024-09-07 12:38:51,295 [main] DEBUG Util - (2193) WG10 IEC61850 FCDA FCDAs::Quality_SV, 1 superclasses=[FCDA_SV], 1 attributes; afferent classes: byAttr=[SubstitutionCDC];; efferent classes: byAttr=[Quality] +2024-09-07 12:38:51,295 [main] DEBUG Util - (1852) WG10 IEC61850 abstract class other 61850 MetaModel::DA, 1 superclasses=[NamedIEC61850Object], 2 subclasses=[PrimitiveDA, ComposedDA], 1 attributes, 2 associations; efferent classes: byAttr=[FCDAReference]; associated classes (bi-directional): asTarget=[MetaModel::FCDA, MetaModel::ComposedDA] +2024-09-07 12:38:51,295 [main] DEBUG Util - (1853) WG10 IEC61850 abstract class primitive DA MetaModel::PrimitiveDA, 1 superclasses=[DA], 11 subclasses=[PHYCOMADDR, ObjectReference, VISIBLE_STRING255, UNICODE_STRING255, INT32U, INT32, INT16U, FLOAT32, BOOLEAN, PackedPrimitiveDA, EnumDA], 1 attributes, 1 associations; efferent classes: byAttr=[AttrValue]; associated classes (bi-directional): asTarget=[MetaModel::PrimitiveCDC] +2024-09-07 12:38:51,295 [main] DEBUG Util - (1755) WG10 IEC61850 primitive DA BasicDAs::PHYCOMADDR, 1 superclasses=[PrimitiveDA], 1 attributes; efferent classes: byAttr=[P_PHYCOMADDR] +2024-09-07 12:38:51,295 [main] DEBUG Util - (1754) WG10 IEC61850 primitive DA BasicDAs::ObjectReference, 1 superclasses=[PrimitiveDA], 1 attributes; efferent classes: byAttr=[P_ObjectReference] +2024-09-07 12:38:51,295 [main] DEBUG Util - (1752) WG10 IEC61850 primitive DA BasicDAs::VISIBLE_STRING255, 1 superclasses=[PrimitiveDA], 1 attributes; afferent classes: byAttr=[VISIBLE_STRING255_EX];; efferent classes: byAttr=[P_VISIBLE_STRING255] +2024-09-07 12:38:51,295 [main] DEBUG Util - (1751) WG10 IEC61850 primitive DA BasicDAs::UNICODE_STRING255, 1 superclasses=[PrimitiveDA], 1 attributes; afferent classes: byAttr=[UNICODE_STRING255_DC];; efferent classes: byAttr=[P_UNICODE_STRING255] +2024-09-07 12:38:51,295 [main] DEBUG Util - (1746) WG10 IEC61850 primitive DA BasicDAs::INT32U, 1 superclasses=[PrimitiveDA], 1 attributes; afferent classes: byAttr=[RangeConfig, INT32U_CF_dchg];; efferent classes: byAttr=[P_INT32U] +2024-09-07 12:38:51,295 [main] DEBUG Util - (1745) WG10 IEC61850 primitive DA BasicDAs::INT32, 1 superclasses=[PrimitiveDA], 1 attributes; afferent classes: byAttr=[AnalogueValue, INT32_CF_dchg, INT32_ST_dchg, INT32_ST_dchg_dupd];; efferent classes: byAttr=[P_INT32] +2024-09-07 12:38:51,295 [main] DEBUG Util - (1743) WG10 IEC61850 primitive DA BasicDAs::INT16U, 1 superclasses=[PrimitiveDA], 1 attributes; afferent classes: byAttr=[INT16U_CF, INT16U_CF_dchg];; efferent classes: byAttr=[P_INT16U] +2024-09-07 12:38:51,295 [main] DEBUG Util - (1741) WG10 IEC61850 primitive DA BasicDAs::FLOAT32, 1 superclasses=[PrimitiveDA], 1 attributes; afferent classes: byAttr=[AnalogueValue, Point];; efferent classes: byAttr=[P_FLOAT32] +2024-09-07 12:38:51,295 [main] DEBUG Util - (1740) WG10 IEC61850 primitive DA BasicDAs::BOOLEAN, 1 superclasses=[PrimitiveDA], 1 attributes; afferent classes: byAttr=[BOOLEAN_BL, BOOLEAN_CF_dchg, BOOLEAN_MX_dchg, BOOLEAN_OR_dchg, BOOLEAN_SE, BOOLEAN_SG, BOOLEAN_SP_dchg, BOOLEAN_ST_dchg, BOOLEAN_SV];; efferent classes: byAttr=[P_BOOLEAN] +2024-09-07 12:38:51,295 [main] DEBUG Util - (1854) WG10 IEC61850 abstract class packed list DA MetaModel::PackedPrimitiveDA, 1 superclasses=[PrimitiveDA], 3 subclasses=[TriggerConditions, TimeStamp, Quality] +2024-09-07 12:38:51,295 [main] DEBUG Util - (1757) WG10 IEC61850 packed list DA BasicDAs::TriggerConditions, 1 superclasses=[PackedPrimitiveDA], 1 attributes, 1 diagrams; efferent classes: byAttr=[P_TriggerConditions] +2024-09-07 12:38:51,295 [main] DEBUG Util - (1756) WG10 IEC61850 packed list DA BasicDAs::TimeStamp, 1 superclasses=[PackedPrimitiveDA], 1 attributes; afferent classes: byAttr=[TimeStamp_ST];; efferent classes: byAttr=[P_TimeStamp] +2024-09-07 12:38:51,295 [main] DEBUG Util - (2080) WG10 IEC61850 packed list DA ConstructedDAs::Quality, 1 superclasses=[PackedPrimitiveDA], 5 attributes, 1 diagrams; afferent classes: byAttr=[Quality_MX_qchg, Quality_ST_qchg, Quality_SV];; efferent classes: byAttr=[ValidityKind, DetailQual, SourceKind, P_BOOLEAN] +2024-09-07 12:38:51,295 [main] DEBUG Util - (1855) WG10 IEC61850 abstract class enumeration DA MetaModel::EnumDA, 1 superclasses=[PrimitiveDA], 11 subclasses=[PackedEnumDA, SIUnit, Multiplier, PhaseFaultDirection, PhaseAngleReference, BehaviourMode, CalcMethod, Health, Material, Material_control, Other]; afferent classes: byAttr=[EnumDA_CF_dchg, EnumDA_ST_dchg, EnumDA_ST_dchg_dupd, EnumDA_SV, ENC]; +2024-09-07 12:38:51,295 [main] DEBUG Util - (1856) WG10 IEC61850 abstract class coded enumeration DA MetaModel::PackedEnumDA, 1 superclasses=[EnumDA], 2 subclasses=[BsControl, DpStatus] +2024-09-07 12:38:51,295 [main] DEBUG Util - (1760) WG10 IEC61850 coded enumeration DA BasicDAs::BsControl, 1 superclasses=[PackedEnumDA], 1 attributes; afferent classes: byAttr=[BAC];; efferent classes: byAttr=[BsControlKind] +2024-09-07 12:38:51,295 [main] DEBUG Util - (1759) WG10 IEC61850 coded enumeration DA BasicDAs::DpStatus, 1 superclasses=[PackedEnumDA], 1 attributes; afferent classes: byAttr=[DpStatus_ST_dchg, DpStatus_SV];; efferent classes: byAttr=[DpStatusKind] +2024-09-07 12:38:51,296 [main] DEBUG Util - (2072) WG10 IEC61850 enumeration DA ImplicitDAs::SIUnit, 1 superclasses=[EnumDA], 1 attributes; afferent classes: byAttr=[Unit];; efferent classes: byAttr=[SIUnitKind] +2024-09-07 12:38:51,296 [main] DEBUG Util - (2061) WG10 IEC61850 enumeration DA ImplicitDAs::Multiplier, 1 superclasses=[EnumDA], 1 attributes; afferent classes: byAttr=[Unit];; efferent classes: byAttr=[MultiplierKind] +2024-09-07 12:38:51,296 [main] DEBUG Util - (2066) WG10 IEC61850 enumeration DA ImplicitDAs::PhaseFaultDirection, 1 superclasses=[EnumDA], 1 attributes; afferent classes: byAttr=[PhaseFaultDirection_ST_dchg];; efferent classes: byAttr=[PhaseFaultDirectionKind] +2024-09-07 12:38:51,296 [main] DEBUG Util - (2065) WG10 IEC61850 enumeration DA ImplicitDAs::PhaseAngleReference, 1 superclasses=[EnumDA], 1 attributes; afferent classes: byAttr=[PhaseAngleReference_CF_dchg];; efferent classes: byAttr=[PhaseAngleReferenceKind] +2024-09-07 12:38:51,296 [main] DEBUG Util - (2622) WG10 IEC61850 enumeration DA DerivedDAs::BehaviourMode, 1 superclasses=[EnumDA], 1 attributes; efferent classes: byAttr=[BehaviourModeKind] +2024-09-07 12:38:51,296 [main] DEBUG Util - (2625) WG10 IEC61850 enumeration DA DerivedDAs::CalcMethod, 1 superclasses=[EnumDA], 1 attributes; efferent classes: byAttr=[CalcMethodKind] +2024-09-07 12:38:51,296 [main] DEBUG Util - (2634) WG10 IEC61850 enumeration DA DerivedDAs::Health, 1 superclasses=[EnumDA], 1 attributes; efferent classes: byAttr=[HealthKind] +2024-09-07 12:38:51,296 [main] DEBUG Util - (3055) WG17 IEC61850 enumeration DA DerivedDAs_7_420::Material, 1 superclasses=[EnumDA], 1 attributes; efferent classes: byAttr=[MaterialKind] +2024-09-07 12:38:51,296 [main] DEBUG Util - (3088) WG17 IEC61850 enumeration DA DerivedDAs_7_420::Material_control, 1 superclasses=[EnumDA], 1 attributes; efferent classes: byAttr=[MaterialTransitionKind] +2024-09-07 12:38:51,296 [main] DEBUG Util - (3056) WG17 IEC61850 enumeration DA DerivedDAs_7_420::Other, 1 superclasses=[EnumDA], 1 attributes; efferent classes: byAttr=[OtherKind] +2024-09-07 12:38:51,296 [main] DEBUG Util - (1857) WG10 IEC61850 abstract class composed DA MetaModel::ComposedDA, 1 superclasses=[DA], 4 subclasses=[AnalogueValue, RangeConfig, Unit, Point], 1 associations; associated classes (bi-directional): asSource=[MetaModel::DA] +2024-09-07 12:38:51,296 [main] DEBUG Util - (2089) WG10 IEC61850 composed DA ConstructedDAs::AnalogueValue, 1 superclasses=[ComposedDA], 2 attributes; afferent classes: byAttr=[RangeConfig, AnalogueValue_MX, AnalogueValue_MX_dchg, AnalogueValue_MX_dchg_dupd];; efferent classes: byAttr=[INT32, FLOAT32],1 constraints: class attributes constraint ConstructedDAs::AnalogueValue {AtLeastOne = [i, f]} (null) +2024-09-07 12:38:51,296 [main] DEBUG Util - (2091) WG10 IEC61850 composed DA ConstructedDAs::RangeConfig, 1 superclasses=[ComposedDA], 7 attributes, 1 diagrams; afferent classes: byAttr=[RangeConfig_CF_dchg];; efferent classes: byAttr=[AnalogueValue, INT32U] +2024-09-07 12:38:51,296 [main] DEBUG Util - (2096) WG10 IEC61850 composed DA ConstructedDAs::Unit, 1 superclasses=[ComposedDA], 2 attributes; efferent classes: byAttr=[SIUnit, Multiplier] +2024-09-07 12:38:51,296 [main] DEBUG Util - (2098) WG10 IEC61850 composed DA ConstructedDAs::Point, 1 superclasses=[ComposedDA], 3 attributes; afferent classes: byAttr=[Point_DC, Point_SE, Point_SG, Point_SP];; efferent classes: byAttr=[FLOAT32] +2024-09-07 12:38:51,296 [main] DEBUG Util - (1858) WG10 IEC61850 abstract class other 61850 MetaModel::DS, 1 superclasses=[NamedIEC61850Object], 2 subclasses=[LNOwnedDS, NonPersistentDS], 4 associations; associated classes (bi-directional): asTarget=[MetaModel::FCD, MetaModel::FCDA, MetaModel::URCB, MetaModel::USVCB] +2024-09-07 12:38:51,296 [main] DEBUG Util - (1859) WG10 IEC61850 abstract class other 61850 MetaModel::LNOwnedDS, 1 superclasses=[DS], 2 subclasses=[ConfiguredDS, PersistentDS], 1 attributes, 5 associations; efferent classes: byAttr=[LNOwnedDSReference]; associated classes (bi-directional): asTarget=[MetaModel::LN, MetaModel::MSVCB, MetaModel::LCB, MetaModel::BRCB, MetaModel::GCB] +2024-09-07 12:38:51,296 [main] DEBUG Util - (1861) WG10 IEC61850 other 61850 MetaModel::ConfiguredDS, 1 superclasses=[LNOwnedDS] +2024-09-07 12:38:51,296 [main] DEBUG Util - (1862) WG10 IEC61850 other 61850 MetaModel::PersistentDS, 1 superclasses=[LNOwnedDS], 1 attributes; efferent classes: byAttr=[P_BOOLEAN] +2024-09-07 12:38:51,296 [main] DEBUG Util - (1860) WG10 IEC61850 other 61850 MetaModel::NonPersistentDS, 1 superclasses=[DS], 2 attributes, 1 associations; efferent classes: byAttr=[P_BOOLEAN, NonPersistentDSReference]; associated classes (bi-directional): asTarget=[MetaModel::TPAA] +2024-09-07 12:38:51,296 [main] DEBUG Util - (1864) WG10 IEC61850 abstract class other 61850 MetaModel::ControlBlock, 1 superclasses=[NamedIEC61850Object], 5 subclasses=[RCB, LCB, GCB, SVCB, SGCB], 1 attributes; efferent classes: byAttr=[CBReference] +2024-09-07 12:38:51,296 [main] DEBUG Util - (1865) WG10 IEC61850 abstract class other 61850 MetaModel::RCB, 1 superclasses=[ControlBlock], 2 subclasses=[BRCB, URCB] +2024-09-07 12:38:51,296 [main] DEBUG Util - (1866) WG10 IEC61850 abstract class other 61850 MetaModel::BRCB, 1 superclasses=[RCB], 1 attributes, 2 associations; efferent classes: byAttr=[IPAddress]; associated classes (bi-directional): asTarget=[MetaModel::LN] asSource=[MetaModel::LNOwnedDS] +2024-09-07 12:38:51,296 [main] DEBUG Util - (1867) WG10 IEC61850 abstract class other 61850 MetaModel::URCB, 1 superclasses=[RCB], 1 attributes, 2 associations; efferent classes: byAttr=[IPAddress]; associated classes (bi-directional): asTarget=[MetaModel::LN] asSource=[MetaModel::DS] +2024-09-07 12:38:51,296 [main] DEBUG Util - (1868) WG10 IEC61850 other 61850 MetaModel::LCB, 1 superclasses=[ControlBlock], 3 associations; associated classes (bi-directional): asTarget=[MetaModel::LN] asSource=[MetaModel::LNOwnedDS, MetaModel::LOG] +2024-09-07 12:38:51,296 [main] DEBUG Util - (1870) WG10 IEC61850 other 61850 MetaModel::GCB, 1 superclasses=[ControlBlock], 1 attributes, 2 associations; efferent classes: byAttr=[MulticastAddress]; associated classes (bi-directional): asTarget=[MetaModel::LN0] asSource=[MetaModel::LNOwnedDS] +2024-09-07 12:38:51,296 [main] DEBUG Util - (1871) WG10 IEC61850 abstract class other 61850 MetaModel::SVCB, 1 superclasses=[ControlBlock], 2 subclasses=[MSVCB, USVCB] +2024-09-07 12:38:51,296 [main] DEBUG Util - (1872) WG10 IEC61850 abstract class other 61850 MetaModel::MSVCB, 1 superclasses=[SVCB], 1 attributes, 2 associations; efferent classes: byAttr=[MulticastAddress]; associated classes (bi-directional): asTarget=[MetaModel::LN0] asSource=[MetaModel::LNOwnedDS] +2024-09-07 12:38:51,296 [main] DEBUG Util - (1873) WG10 IEC61850 abstract class other 61850 MetaModel::USVCB, 1 superclasses=[SVCB], 1 attributes, 2 associations; efferent classes: byAttr=[IPAddress]; associated classes (bi-directional): asTarget=[MetaModel::LN0] asSource=[MetaModel::DS] +2024-09-07 12:38:51,296 [main] DEBUG Util - (1874) WG10 IEC61850 other 61850 MetaModel::SGCB, 1 superclasses=[ControlBlock], 3 associations; associated classes (bi-directional): asTarget=[MetaModel::LN0] asSource=[MetaModelFCsAndTrgOps::FCDA_SG, MetaModelFCsAndTrgOps::FCDA_SE] +2024-09-07 12:38:51,296 [main] DEBUG Util - (1869) WG10 IEC61850 other 61850 MetaModel::LOG, 1 superclasses=[NamedIEC61850Object], 1 attributes, 2 associations; efferent classes: byAttr=[LOGReference]; associated classes (bi-directional): asTarget=[MetaModel::LN, MetaModel::LCB] +2024-09-07 12:38:51,296 [main] DEBUG Util - (1838) WG10 IEC61850 other 61850 MetaModel::IED, 1 superclasses=[HierarchyIEC61850Object], 1 attributes, 1 associations; efferent classes: byAttr=[NullIEC61850]; associated classes (bi-directional): asSource=[MetaModel::SERVER] +2024-09-07 12:38:51,296 [main] DEBUG Util - (1839) WG10 IEC61850 other 61850 MetaModel::SERVER, 1 superclasses=[HierarchyIEC61850Object], 2 attributes, 5 associations; efferent classes: byAttr=[NullIEC61850, IPAddress]; associated classes (bi-directional): asTarget=[MetaModel::IED] asSource=[MetaModel::MCAA, MetaModel::FILE, MetaModel::TPAA, MetaModel::LD] +2024-09-07 12:38:51,296 [main] DEBUG Util - (1850) WG10 IEC61850 other 61850 MetaModel::FCD, 1 superclasses=[HierarchyIEC61850Object], 2 attributes, 3 associations; efferent classes: byAttr=[FCDReference, FcKind]; associated classes (bi-directional): asTarget=[MetaModel::CDC] asSource=[MetaModel::DS, MetaModel::FCDA] +2024-09-07 12:38:51,296 [main] DEBUG Util - (1877) WG10 IEC61850 other 61850 MetaModel::FILE, 1 superclasses=[HierarchyIEC61850Object], 1 attributes, 1 associations; efferent classes: byAttr=[FILEReference]; associated classes (bi-directional): asTarget=[MetaModel::SERVER] +2024-09-07 12:38:51,296 [main] DEBUG Util - (1840) WG10 IEC61850 other 61850 MetaModel::TPAA, 1 superclasses=[IEC61850Object], 3 associations; associated classes (bi-directional): asTarget=[MetaModel::SERVER] asSource=[CommonAcsiTypes::Authentication, MetaModel::NonPersistentDS] +2024-09-07 12:38:51,296 [main] DEBUG Util - (1841) WG10 IEC61850 other 61850 MetaModel::MCAA, 1 superclasses=[IEC61850Object], 2 associations; associated classes (bi-directional): asTarget=[MetaModel::SERVER] asSource=[CommonAcsiTypes::Authentication] +2024-09-07 12:38:51,297 [main] DEBUG Util - (2720) WG10 IEC61850 other 61850 DerivedCDCs::SPCTransient, 1 superclasses=[SPC]; afferent classes: byAttr=[LPHD]; +2024-09-07 12:38:51,297 [main] DEBUG Util - (3091) WG17 IEC61850 enumeration <> DOEnums_7_420::ExtBaseKind, 1 superclasses=[BaseKind], 3 enum literals +2024-09-07 12:38:51,297 [main] DEBUG Util - (1488) OTHER_CIM CIM class Ext1::Apple, 1 superclasses=[Fruit], 1 attributes, 3 associations; efferent classes: byAttr=[Integer]; associated classes (bi-directional): asTarget=[Ext1::Pear, Ext1::Pear, Ext1::Apple] asSource=[Ext1::Apple] +2024-09-07 12:38:51,297 [main] DEBUG Util - (3035) OTHER_CIM CIM class Ext1::Strawberry, 1 superclasses=[Fruit], 1 associations; associated classes (bi-directional): asTarget=[Ext1::Village] +2024-09-07 12:38:51,297 [main] DEBUG Util - (1492) OTHER_IEC61850 IEC61850 other 61850 Ext2::Dog, 1 superclasses=[Animal] +2024-09-07 12:38:51,297 [main] DEBUG Util - (1493) OTHER_IEC61850 IEC61850 other 61850 Ext2::Horse, 1 superclasses=[Animal] +2024-09-07 12:38:51,297 [main] DEBUG Util - +2024-09-07 12:38:51,297 [main] DEBUG Util - ======= 14 operations: ======== +2024-09-07 12:38:51,297 [main] DEBUG Util - (1) WG13 CIM Core::PowerSystemResource operation abstract public NullCIM[] GetWhatevers(BasePower[] multiples) throws Dummy,PSRType,Dummy2; tags={throws=Dummy,PSRType,Dummy2, dummyCimTag=on operation} +2024-09-07 12:38:51,297 [main] DEBUG Util - (2) WG13 CIM Core::PowerSystemResource operation <> public void setSomething(String name) throws Unit; tags={throws=Unit} +2024-09-07 12:38:51,297 [main] DEBUG Util - (5) WG13 CIM Core::PowerSystemResource operation <> public NullCIM bar(NullCIM par3, Float par2, NullCIM par); tags={someTag=value} +2024-09-07 12:38:51,297 [main] DEBUG Util - (4) WG13 CIM Core::PowerSystemResource operation public NullCIM foo(NullCIM par3, Float par2, NullCIM par); tags={someTag=value} +2024-09-07 12:38:51,297 [main] DEBUG Util - (3) WG13 CIM Core::VoltageLevel operation public Voltage getVoltage() +2024-09-07 12:38:51,297 [main] DEBUG Util - (7) WG10 IEC61850 AttrValues::AttrValue operation abstract public AttrValueKind getType() +2024-09-07 12:38:51,297 [main] DEBUG Util - (46) WG10 IEC61850 AttrValues::AttrDefinition operation public FCDAReference getFcdaRef() +2024-09-07 12:38:51,297 [main] DEBUG Util - (47) WG10 IEC61850 AttrValues::AttrDefinition operation public AttrValueKind getValType() +2024-09-07 12:38:51,297 [main] DEBUG Util - (48) WG10 IEC61850 AttrValues::NamedAttrValue operation public FCDAReference getFcdaRef() +2024-09-07 12:38:51,297 [main] DEBUG Util - (49) WG10 IEC61850 AttrValues::NamedAttrValue operation public AttrValue getVal() +2024-09-07 12:38:51,297 [main] DEBUG Util - (50) WG10 IEC61850 CommonAcsiTypes::Authentication operation public NullIEC61850 getPassword() +2024-09-07 12:38:51,297 [main] DEBUG Util - (51) WG10 IEC61850 CommonAcsiTypes::Authentication operation public NullIEC61850 geUserID() +2024-09-07 12:38:51,297 [main] DEBUG Util - (52) WG10 IEC61850 CommonAcsiTypes::Authentication operation public AccessView[] getViews() +2024-09-07 12:38:51,297 [main] DEBUG Util - (6) OTHER_CIM CIM Package with space::My class operation public void ope-ration(Boolean other param, ApparentPower _par) +2024-09-07 12:38:51,297 [main] INFO Util - +2024-09-07 12:38:51,297 [main] INFO Util - ======= 2 associations between CIM and nonCIM packages: ======== +2024-09-07 12:38:51,298 [main] INFO Util - (2143) OTHER_IEC61850 IEC61850 association, qname='Animal.Fruit - Fruit.Animal', endAsSrc: myEnd: OTHER_IEC61850 [0..1] Fruit.Animal; otherEnd: OTHER_IEC61850 [0..*] Animal.Fruit, endAsTgt: myEnd: OTHER_IEC61850 [0..*] Animal.Fruit; otherEnd: OTHER_IEC61850 [0..1] Fruit.Animal +2024-09-07 12:38:51,298 [main] INFO Util - (2144) OTHER_IEC61850 IEC61850 association, qname='Animal.SecondFruit - Fruit.SecondAnimal', endAsSrc: myEnd: OTHER_IEC61850 [1..*] Fruit.SecondAnimal; otherEnd: OTHER_IEC61850 [1..1] Animal.SecondFruit, endAsTgt: myEnd: OTHER_IEC61850 [1..1] Animal.SecondFruit; otherEnd: OTHER_IEC61850 [1..*] Fruit.SecondAnimal +2024-09-07 12:38:51,298 [main] INFO Util - +2024-09-07 12:38:51,298 [main] INFO Util - ======= 29 classes with constraints: ======== +2024-09-07 12:38:51,298 [main] INFO Util - (858) WG13 CIM private enumeration <> Core::BreakerConfiguration, 4 enum literals; afferent classes: byAttr=[Bay];,1 constraints: class attributes constraint Core::BreakerConfiguration {ConstraintOnEnum = [text]} +2024-09-07 12:38:51,299 [main] INFO Util - (1599) WG10 IEC61850 other 61850 GenericModel::GenFCDA, 1 attributes, 3 associations; efferent classes: byAttr=[GenFC]; associated classes (bi-directional): asTarget=[GenericModel::GenDataSet] asSource=[GenericModel::GenDataAttribute, GenericModel::GenSubDataAttribute],1 constraints: class attributes constraint GenericModel::GenFCDA {FCConstraint = [inv]} (null) +2024-09-07 12:38:51,299 [main] INFO Util - (797) WG13 CIM class <> Topology::BusNameMarker, 2 superclasses=[IdentifiedObject, InfClass2], 4 attributes, 1 associations; efferent classes: byAttr=[Integer]; associated classes (bi-directional): asSource=[Topology::ConnectivityNode],4 constraints: class attributes constraint Topology::BusNameMarker {C2_1 = [constrained1, constrained2]} class attributes constraint Topology::BusNameMarker {C2_2 = [constrained3, constrained4]} class attributes constraint Topology::BusNameMarker {C2_3 = [constrained1, constrained4]} class attributes constraint Topology::BusNameMarker {EMPTY = []} +2024-09-07 12:38:51,300 [main] INFO Util - (849) WG13 CIM class Core::PowerSystemResource, 1 superclasses=[IdentifiedObject], 2 subclasses=[ConnectivityNodeContainer, Equipment], 1 attributes, 4 operations, 1 diagrams, 3 associations; efferent classes: byAttr=[String] byOp=[NullCIM]; associated classes (bi-directional): asTarget=[Core::OperatingShare, Assets::AssetInfo] asSource=[Core::Terminal],3 constraints: class attributes constraint Core::PowerSystemResource {R.1.2.3 PSR process constraint = [Here the text for process constraint.]} class attributes constraint Core::PowerSystemResource {ruleAsInQoCDC = [text only]} class attributes constraint Core::PowerSystemResource {anotherOclRule = [{ocl]} +2024-09-07 12:38:51,300 [main] INFO Util - (794) WG13 CIM class Topology::TopologicalIsland, 1 superclasses=[IdentifiedObject], 2 attributes, 2 associations; efferent classes: byAttr=[Integer]; associated classes (bi-directional): asTarget=[Topology::TopologicalNode] asSource=[Topology::TopologicalNode],1 constraints: class attributes constraint Topology::TopologicalIsland {PICS_SUBST = [constrained5]} +2024-09-07 12:38:51,300 [main] INFO Util - (1603) WG10 IEC61850 other 61850 GenericModel::GenLN0, 1 superclasses=[GenLogicalNode], 1 associations; associated classes (bi-directional): asTarget=[GenericModel::GenLogicalDevice],1 constraints: class attributes constraint GenericModel::GenLN0 {inv: self.LNName = "LLN0" = []} (null) +2024-09-07 12:38:51,300 [main] INFO Util - (2764) WG10 IEC61850 LN LNGroupL::LPHD, 1 superclasses=[LNPHD], 3 attributes; afferent classes: byDep=[PhysicalDeviceData];; efferent classes: byAttr=[ENSHealth, SPCTransient, SPSTransient],2 constraints: class attributes constraint LNGroupL::LPHD {MF(2) = [RsstatAlmMthClc]} (MF(condID))class attributes constraint LNGroupL::LPHD {MOcond(1) = [PhyHealth]} (MOcond(condID)) +2024-09-07 12:38:51,300 [main] INFO Util - (2765) WG10 IEC61850 LN LNGroupL::LLN0, 1 superclasses=[LN0], 3 attributes; afferent classes: byDep=[LogicalDeviceData];; efferent classes: byAttr=[LPL, ENSBehaviourMode, ENSHealth],3 constraints: class attributes constraint LNGroupL::LLN0 {MOcond(1) = [NamPlt, Beh]} (MOcond(condID))class attributes constraint LNGroupL::LLN0 {MOrootLD = [Mod, Health, NamPlt]} (MOrootLD)class attributes constraint LNGroupL::LLN0 {Omulti = [InRef]} (Omulti) +2024-09-07 12:38:51,301 [main] INFO Util - (2728) WG10 IEC61850 abstract class LN <> LogicalNodes::DomainLN, 1 superclasses=[LNDOM], 6 subclasses=[StatisticsLN, EquipmentInterfaceLN, KXYZ, CALH, ProtectionLN, RDIR], 4 attributes, 1 diagrams; efferent classes: byAttr=[LPL, ENSHealth, ENCBehaviourMode, CMV],1 constraints: class attributes constraint LogicalNodes::DomainLN {MOcond(1) = [CntRs]} (MOcond(condID)) +2024-09-07 12:38:51,301 [main] INFO Util - (2735) WG10 IEC61850 abstract class LN <> LogicalNodes::StatisticsLN, 1 superclasses=[DomainLN], 2 subclasses=[GGIO, MMXU], 2 attributes; efferent classes: byAttr=[SPSTransient, ENGCalcMethod],1 constraints: class attributes constraint LogicalNodes::StatisticsLN {MF(ClcMth) = [ClcExp, ClcMod, ClcIntvPer, ClcIntvTyp]} (MF(sibling)) +2024-09-07 12:38:51,301 [main] INFO Util - (2815) WG10 IEC61850 LN LNGroupG::GGIO, 1 superclasses=[StatisticsLN], 3 attributes; afferent classes: byDep=[GenericIO];; efferent classes: byAttr=[ENSHealth, CMV, NullIEC61850],1 constraints: class attributes constraint LNGroupG::GGIO {Omulti = [AnIn, AnOut, DPCSO]} (Omulti) +2024-09-07 12:38:51,301 [main] INFO Util - (2856) WG10 IEC61850 LN LNGroupM::MMXU, 1 superclasses=[StatisticsLN], 3 attributes; afferent classes: byDep=[ThreePhaseMeasurement];; efferent classes: byAttr=[HWYE, CMV, HST],1 constraints: class attributes constraint LNGroupM::MMXU {MO(1) = [TotW]} (MOcond(condID)) +2024-09-07 12:38:51,301 [main] INFO Util - (3021) WG10 IEC61850 LN LNGroupZ::ZAXN, 1 superclasses=[EquipmentInterfaceLN], 5 attributes; afferent classes: byDep=[AuxiliaryNetwork];; efferent classes: byAttr=[CMV, NullIEC61850, ENSMaterial, ENCMaterial, ENSOther],2 constraints: class attributes constraint LNGroupZ::ZAXN {MOcond(condID) = [Vol]} (MOcond(condID))class attributes constraint LNGroupZ::ZAXN {AtLeastOne(n) = [Amp]} (AtLeastOne(n)) +2024-09-07 12:38:51,301 [main] INFO Util - (3030) WG10 IEC61850 LN LNGroupL::KXYZ, 1 superclasses=[DomainLN], 4 attributes; efferent classes: byAttr=[CMV, ENS, ENSEnumDA],1 constraints: class attributes constraint LNGroupL::KXYZ {MOcond(2) = [TotW]} (MOcond(condID)) +2024-09-07 12:38:51,301 [main] INFO Util - (2788) WG10 IEC61850 LN LNGroupC::CALH, 1 superclasses=[DomainLN], 3 attributes; afferent classes: byDep=[AlarmHandler];; efferent classes: byAttr=[DPS, EXYBehaviourMode],2 constraints: class attributes constraint LNGroupC::CALH {AtLeastOne(1) = [GrAlm, GrWrn, GrInd]} (AtLeastOne(n))class attributes constraint LNGroupC::CALH {AtLeastOne(2) = [CntRs]} (AtLeastOne(n)) +2024-09-07 12:38:51,302 [main] INFO Util - (2881) WG10 IEC61850 LN LNGroupP::PDIF, 1 superclasses=[ProtectionLN], 2 attributes; afferent classes: byDep=[BusbarProt, LineDifferentialProt];; efferent classes: byAttr=[ACD, ACTTransient],2 constraints: class attributes constraint LNGroupP::PDIF {AtMostOne = [LoSet, HiSet]} (AtMostOne)class attributes constraint LNGroupP::PDIF {OmultiRange(33, 48) = [Str]} (OmultiRange(min, max)) +2024-09-07 12:38:51,302 [main] INFO Util - (2234) WG10 IEC61850 abstract class primitive CDC CommonDataClasses::BasePrimitiveCDC, 1 superclasses=[PrimitiveCDC], 7 subclasses=[CST, SubstitutionCDC, EXY, ACD, HST, ENG, LPL], 2 attributes; efferent classes: byAttr=[UNICODE_STRING255_DC, VISIBLE_STRING255_EX],2 constraints: class attributes constraint CommonDataClasses::BasePrimitiveCDC {MOcdcNs = [cdcNs, cdcName]} (MOcdcNs)class attributes constraint CommonDataClasses::BasePrimitiveCDC {MOdataNs = [dataNs]} (MOdataNs) +2024-09-07 12:38:51,302 [main] INFO Util - (2236) WG10 IEC61850 abstract class primitive CDC CommonDataClasses::SubstitutionCDC, 1 superclasses=[BasePrimitiveCDC], 4 subclasses=[DPS, ENS, CMV, ControllableCDC], 3 attributes, 1 diagrams; efferent classes: byAttr=[BOOLEAN_SV, Quality_SV, BOOLEAN_BL],1 constraints: class attributes constraint CommonDataClasses::SubstitutionCDC {MFsubst = [subEna, subQ, subID]} (MFsubst) +2024-09-07 12:38:51,302 [main] INFO Util - (2248) WG10 IEC61850 primitive CDC CDCStatusInfo::DPS, 1 superclasses=[SubstitutionCDC], 4 attributes; afferent classes: byAttr=[CALH];; efferent classes: byAttr=[DpStatus_ST_dchg, Quality_ST_qchg, TimeStamp_ST, DpStatus_SV],1 constraints: class attributes constraint CDCStatusInfo::DPS {MFsubst = [subVal]} (MFsubst) +2024-09-07 12:38:51,302 [main] INFO Util - (2250) WG10 IEC61850 abstract class enumeration CDC CDCStatusInfo::ENS, 1 superclasses=[SubstitutionCDC], 5 subclasses=[ENSBehaviourMode, ENSHealth, ENSEnumDA, ENSMaterial, ENSOther], 4 attributes; afferent classes: byAttr=[KXYZ];; efferent classes: byAttr=[EnumDA_ST_dchg_dupd, Quality_ST_qchg, TimeStamp_ST, EnumDA_SV],1 constraints: class attributes constraint CDCStatusInfo::ENS {MFsubst = [subVal]} (MFsubst) +2024-09-07 12:38:51,302 [main] INFO Util - (2266) WG10 IEC61850 primitive CDC <> CDCAnalogueInfo::CMV, 1 superclasses=[SubstitutionCDC], 4 attributes; afferent classes: byAttr=[HWYE, DomainLN, KXYZ, GGIO, MMXU, ZAXN];; efferent classes: byAttr=[NullIEC61850, RangeConfig_CF_dchg],5 constraints: class attributes constraint CDCAnalogueInfo::CMV {MF(range) = [rangeC]} (MF(sibling))class attributes constraint CDCAnalogueInfo::CMV {MF(rangeAng) = [rangeAngC]} (MF(sibling))class attributes constraint CDCAnalogueInfo::CMV {MFscaledAngV = [angSVC]} (MFscaledAngV)class attributes constraint CDCAnalogueInfo::CMV {MFscaledMagV = [magSVC]} (MFscaledMagV)class attributes constraint CDCAnalogueInfo::CMV {MFsubst = [subCVal]} (MFsubst) +2024-09-07 12:38:51,302 [main] INFO Util - (2283) WG10 IEC61850 abstract class enumeration CDC CDCControl::ENC, 1 superclasses=[ControllableCDC], 2 subclasses=[ENCBehaviourMode, ENCMaterial], 3 attributes; efferent classes: byAttr=[EnumDA_ST_dchg, EnumDA_SV, EnumDA],1 constraints: class attributes constraint CDCControl::ENC {MFsubst = [subVal]} (MFsubst) +2024-09-07 12:38:51,302 [main] INFO Util - (2287) WG10 IEC61850 primitive CDC <> CDCControl::BAC, 1 superclasses=[ControllableCDC], 3 attributes; efferent classes: byAttr=[AnalogueValue_MX_dchg, NullIEC61850, BsControl],3 constraints: class attributes constraint CDCControl::BAC {AllOrNonePerGroup(1) = [mxVal, q, t]} (AllOrNonePerGroup(n))class attributes constraint CDCControl::BAC {MFscaledAV = [sVC]} (MFscaledAV)class attributes constraint CDCControl::BAC {MFsubst = [subVal]} (MFsubst) +2024-09-07 12:38:51,303 [main] INFO Util - (2252) WG10 IEC61850 primitive CDC CDCStatusInfo::ACD, 1 superclasses=[BasePrimitiveCDC], 3 attributes; afferent classes: byAttr=[PDIF, PDIS, RDIR];; efferent classes: byAttr=[NullIEC61850, BOOLEAN_ST_dchg],4 constraints: class attributes constraint CDCStatusInfo::ACD {AllOrNonePerGroup(1) = [phsA, dirPhsA]} (AllOrNonePerGroup(n))class attributes constraint CDCStatusInfo::ACD {AllOrNonePerGroup(2) = [phsB, dirPhsB]} (AllOrNonePerGroup(n))class attributes constraint CDCStatusInfo::ACD {AllOrNonePerGroup(3) = [phsC, dirPhsC]} (AllOrNonePerGroup(n))class attributes constraint CDCStatusInfo::ACD {AllOrNonePerGroup(4) = [neut, dirNeut]} (AllOrNonePerGroup(n)) +2024-09-07 12:38:51,303 [main] INFO Util - (2295) WG10 IEC61850 abstract class enumeration CDC CDCStatusSet::ENG, 1 superclasses=[BasePrimitiveCDC], 1 subclasses=[ENGCalcMethod], 3 attributes; efferent classes: byAttr=[NullIEC61850],2 constraints: class attributes constraint CDCStatusSet::ENG {MFnsg = [setVal]} (MFnsg)class attributes constraint CDCStatusSet::ENG {MFsg = [_setVal, __setVal]} (MFsg) +2024-09-07 12:38:51,303 [main] INFO Util - (2314) WG10 IEC61850 primitive CDC CDCDescription::LPL, 1 superclasses=[BasePrimitiveCDC], 2 attributes; afferent classes: byAttr=[DomainLN, LLN0];; efferent classes: byAttr=[VISIBLE_STRING255_EX],3 constraints: class attributes constraint CDCDescription::LPL {MFln0 = [ldNs]} (MFln0)class attributes constraint CDCDescription::LPL {MOln0 = [configRev]} (MOln0)class attributes constraint CDCDescription::LPL {MOlnNs = [lnNs]} (MOlnNs) +2024-09-07 12:38:51,304 [main] INFO Util - (2235) WG10 IEC61850 abstract class composed CDC CommonDataClasses::BaseComposedCDC, 1 superclasses=[ComposedCDC], 1 subclasses=[HarmonicMeasurandCDC], 2 attributes; efferent classes: byAttr=[UNICODE_STRING255_DC, VISIBLE_STRING255_EX],2 constraints: class attributes constraint CommonDataClasses::BaseComposedCDC {MOcdcNs = [cdcNs, cdcName]} (MOcdcNs)class attributes constraint CommonDataClasses::BaseComposedCDC {MOdataNs = [dataNs]} (MOdataNs) +2024-09-07 12:38:51,304 [main] INFO Util - (2263) WG10 IEC61850 abstract class composed CDC <> CDCAnalogueInfo::HarmonicMeasurandCDC, 1 superclasses=[BaseComposedCDC], 1 subclasses=[HWYE], 2 attributes; efferent classes: byAttr=[INT16U_CF_dchg, INT32U_CF_dchg],1 constraints: class attributes constraint CDCAnalogueInfo::HarmonicMeasurandCDC {MFrms = [rmsCyc]} (MFrms) +2024-09-07 12:38:51,304 [main] INFO Util - (2089) WG10 IEC61850 composed DA ConstructedDAs::AnalogueValue, 1 superclasses=[ComposedDA], 2 attributes; afferent classes: byAttr=[RangeConfig, AnalogueValue_MX, AnalogueValue_MX_dchg, AnalogueValue_MX_dchg_dupd];; efferent classes: byAttr=[INT32, FLOAT32],1 constraints: class attributes constraint ConstructedDAs::AnalogueValue {AtLeastOne = [i, f]} (null) +2024-09-07 12:38:51,306 [main] INFO Util - +2024-09-07 12:38:51,306 [main] INFO Util - ======= 46 attributes with constraints: ======== +2024-09-07 12:38:51,306 [main] INFO Util - (2073) WG13 CIM literal <> Core::BreakerConfiguration.singleBreaker +2024-09-07 12:38:51,306 [main] INFO Util - (2109) WG13 CIM [0..1] CIMDatatype attribute Core::OperatingShare.percentage: Domain::PerCent +2024-09-07 12:38:51,307 [main] INFO Util - (3250) WG13 CIM [0..1] Primitive attribute Topology::BusNameMarker.constrained1: Domain::Integer, presence conditions=[C2_1, C2_3], array bounds=0...count+1 +2024-09-07 12:38:51,307 [main] INFO Util - (3251) WG13 CIM [0..1] Primitive attribute Topology::BusNameMarker.constrained2: Domain::Integer, presence conditions=[C2_1] +2024-09-07 12:38:51,307 [main] INFO Util - (3252) WG13 CIM [0..1] Primitive attribute Topology::BusNameMarker.constrained3: Domain::Integer, presence conditions=[C2_2] +2024-09-07 12:38:51,307 [main] INFO Util - (3253) WG13 CIM [0..1] Primitive attribute Topology::BusNameMarker.constrained4: Domain::Integer, presence conditions=[C2_2, C2_3] +2024-09-07 12:38:51,307 [main] INFO Util - (3254) WG13 CIM [0..1] Primitive attribute Topology::TopologicalIsland.constrained5: Domain::Integer, presence conditions=[PICS_SUBST] +2024-09-07 12:38:51,307 [main] INFO Util - (4108) WG10 IEC61850 [0..1] PrimitiveDA attribute ConstructedDAs::AnalogueValue.i: BasicDAs::INT32, presence conditions=[AtLeastOne] +2024-09-07 12:38:51,307 [main] INFO Util - (4109) WG10 IEC61850 [0..1] PrimitiveDA attribute ConstructedDAs::AnalogueValue.f: BasicDAs::FLOAT32, presence conditions=[AtLeastOne] +2024-09-07 12:38:51,307 [main] INFO Util - (4260) WG10 IEC61850 [0..1] FCDA attribute CommonDataClasses::BasePrimitiveCDC.cdcNs: FCDAs::VISIBLE_STRING255_EX, presence conditions=[MOcdcNs] +2024-09-07 12:38:51,307 [main] INFO Util - (4265) WG10 IEC61850 [0..1] FCDA attribute CommonDataClasses::BaseComposedCDC.cdcNs: FCDAs::VISIBLE_STRING255_EX, presence conditions=[MOcdcNs] +2024-09-07 12:38:51,307 [main] INFO Util - (4268) WG10 IEC61850 [0..1] FCDA attribute CommonDataClasses::SubstitutionCDC.subEna: FCDAs::BOOLEAN_SV, presence conditions=[MFsubst] +2024-09-07 12:38:51,307 [main] INFO Util - (4269) WG10 IEC61850 [0..1] FCDA attribute CommonDataClasses::SubstitutionCDC.subQ: FCDAs::Quality_SV, presence conditions=[MFsubst] +2024-09-07 12:38:51,308 [main] INFO Util - (4279) WG10 IEC61850 [0..1] PackedEnumFCDA attribute CDCStatusInfo::DPS.subVal: FCDAs::DpStatus_SV, presence conditions=[MFsubst], tags={moveAfter=wrongsubEna, secondTagName=secondTagValue} +2024-09-07 12:38:51,308 [main] INFO Util - (4288) WG10 IEC61850 [0..1] EnumFCDA attribute CDCStatusInfo::ENS.subVal: FCDAs::EnumDA_SV, presence conditions=[MFsubst], tags={moveAfter=subEna} +2024-09-07 12:38:51,308 [main] INFO Util - (4302) WG10 IEC61850 [0..1] FCDA attribute CDCStatusInfo::ACD.phsA: FCDAs::BOOLEAN_ST_dchg, presence conditions=[AllOrNonePerGroup(1)] +2024-09-07 12:38:51,308 [main] INFO Util - (4304) WG10 IEC61850 [0..1] FCDA attribute CDCStatusInfo::ACD.phsB: FCDAs::BOOLEAN_ST_dchg, presence conditions=[AllOrNonePerGroup(2)] +2024-09-07 12:38:51,308 [main] INFO Util - (4328) WG10 IEC61850 [1..*] FCDA attribute CDCStatusInfo::HST.hstVal: FCDAs::INT32_ST_dchg_dupd, array bounds=...maxPts-1 +2024-09-07 12:38:51,308 [main] INFO Util - (4369) WG10 IEC61850 [0..1] attribute CDCAnalogueInfo::CMV.subCVal: NullIEC61850::NullIEC61850, presence conditions=[MFsubst], tags={moveAfter=subEna} +2024-09-07 12:38:51,308 [main] INFO Util - (4374) WG10 IEC61850 [0..1] FCDA attribute CDCAnalogueInfo::CMV.rangeC: FCDAs::RangeConfig_CF_dchg, presence conditions=[MF(range)] +2024-09-07 12:38:51,308 [main] INFO Util - (4375) WG10 IEC61850 [0..1] FCDA attribute CDCAnalogueInfo::CMV.rangeAngC: FCDAs::RangeConfig_CF_dchg, presence conditions=[MF(rangeAng)] +2024-09-07 12:38:51,308 [main] INFO Util - (4405) WG10 IEC61850 [1..*] sub-data object CDCAnalogueInfo::HWYE.phsAHar: CDCAnalogueInfo::CMV, array bounds=0...numHar +2024-09-07 12:38:51,308 [main] INFO Util - (4467) WG10 IEC61850 [0..1] EnumFCDA attribute CDCControl::ENC.subVal: FCDAs::EnumDA_SV, presence conditions=[MFsubst], tags={moveAfter=subEna} +2024-09-07 12:38:51,308 [main] INFO Util - (4522) WG10 IEC61850 [0..1] FCDA attribute CDCControl::BAC.mxVal: FCDAs::AnalogueValue_MX_dchg, presence conditions=[AllOrNonePerGroup(1)] +2024-09-07 12:38:51,308 [main] INFO Util - (4526) WG10 IEC61850 [0..1] attribute CDCControl::BAC.subVal: NullIEC61850::NullIEC61850, presence conditions=[MFsubst], tags={moveAfter=subEna} +2024-09-07 12:38:51,309 [main] INFO Util - (4549) WG10 IEC61850 [0..1] attribute CDCStatusSet::ENG.setVal: NullIEC61850::NullIEC61850, presence conditions=[MFnsg] +2024-09-07 12:38:51,309 [main] INFO Util - (4550) WG10 IEC61850 [0..1] attribute CDCStatusSet::ENG._setVal: NullIEC61850::NullIEC61850, presence conditions=[MFsg] +2024-09-07 12:38:51,309 [main] INFO Util - (4551) WG10 IEC61850 [0..1] attribute CDCStatusSet::ENG.__setVal: NullIEC61850::NullIEC61850, presence conditions=[MFsg] +2024-09-07 12:38:51,309 [main] INFO Util - (4639) WG10 IEC61850 [0..1] FCDA attribute CDCDescription::LPL.ldNs: FCDAs::VISIBLE_STRING255_EX, presence conditions=[MFln0] +2024-09-07 12:38:51,309 [main] INFO Util - (4640) WG10 IEC61850 [0..1] FCDA attribute CDCDescription::LPL.lnNs: FCDAs::VISIBLE_STRING255_EX, presence conditions=[MOlnNs] +2024-09-07 12:38:51,309 [main] INFO Util - (6644) WG10 IEC61850 [0..1] data object LogicalNodes::DomainLN.CntRs: CDCAnalogueInfo::CMV, presence conditions=[MOcond(1)] +2024-09-07 12:38:51,309 [main] INFO Util - (5411) WG10 IEC61850 [0..1] attribute LogicalNodes::StatisticsLN.ClcExp: DerivedCDCs::SPSTransient, presence conditions=[MF(ClcMth)] +2024-09-07 12:38:51,309 [main] INFO Util - (6643) WG10 IEC61850 [0..1] data object LNGroupL::KXYZ.TotW: CDCAnalogueInfo::CMV, presence conditions=[MOcond(2)] +2024-09-07 12:38:51,309 [main] INFO Util - (5434) WG10 IEC61850 [1..1] enumerated DO LNGroupL::LPHD.PhyHealth: DerivedCDCs::ENSHealth, presence conditions=[MOcond(1)] +2024-09-07 12:38:51,309 [main] INFO Util - (5447) WG10 IEC61850 [0..1] data object LNGroupL::LLN0.NamPlt: CDCDescription::LPL, presence conditions=[MOcond(1), MOrootLD] +2024-09-07 12:38:51,309 [main] INFO Util - (5448) WG10 IEC61850 [1..1] enumerated DO LNGroupL::LLN0.Beh: DerivedCDCs::ENSBehaviourMode, presence conditions=[MOcond(1)] +2024-09-07 12:38:51,309 [main] INFO Util - (5449) WG10 IEC61850 [0..1] enumerated DO LNGroupL::LLN0.Health: DerivedCDCs::ENSHealth, presence conditions=[MOrootLD] +2024-09-07 12:38:51,309 [main] INFO Util - (5599) WG10 IEC61850 [1..1] data object LNGroupC::CALH.GrAlm: CDCStatusInfo::DPS, presence conditions=[AtLeastOne(1)] +2024-09-07 12:38:51,309 [main] INFO Util - (5600) WG10 IEC61850 [0..1] data object LNGroupC::CALH.GrWrn: CDCStatusInfo::DPS, presence conditions=[AtLeastOne(1)] +2024-09-07 12:38:51,310 [main] INFO Util - (5782) WG10 IEC61850 [0..1] data object LNGroupG::GGIO.AnIn: CDCAnalogueInfo::CMV, presence conditions=[Omulti] +2024-09-07 12:38:51,310 [main] INFO Util - (5788) WG10 IEC61850 [0..1] attribute LNGroupG::GGIO.DPCSO: NullIEC61850::NullIEC61850, presence conditions=[Omulti] +2024-09-07 12:38:51,310 [main] INFO Util - (6036) WG10 IEC61850 [0..1] data object LNGroupM::MMXU.TotW: CDCAnalogueInfo::CMV, presence conditions=[MO(1)] +2024-09-07 12:38:51,310 [main] INFO Util - (6139) WG10 IEC61850 [0..1] data object LNGroupP::PDIF.Str: CDCStatusInfo::ACD, presence conditions=[OmultiRange(33, 48)] +2024-09-07 12:38:51,310 [main] INFO Util - (6638) WG10 IEC61850 [0..1] data object LNGroupZ::ZAXN.Vol: CDCAnalogueInfo::CMV, presence conditions=[MOcond(condID)] +2024-09-07 12:38:51,310 [main] INFO Util - (6639) WG10 IEC61850 [0..1] attribute LNGroupZ::ZAXN.Amp: NullIEC61850::NullIEC61850, presence conditions=[AtLeastOne(n)] +2024-09-07 12:38:51,310 [main] INFO Util - (3304) OTHER_CIM CIM [0..1] CIMDatatype attribute Package with space::My class._attr: Domain::AbsoluteDateTime +2024-09-07 12:38:51,311 [main] INFO Util - +2024-09-07 12:38:51,311 [main] INFO Util - ======= 5 multi-valued attributes: ======== +2024-09-07 12:38:51,311 [main] INFO Util - (1440) WG13 CIM protected [2..5] Primitive attribute Domain::AbsoluteDateTime.protectedAttribute: Domain::String +2024-09-07 12:38:51,311 [main] INFO Util - (3320) WG10 IEC61850 [0..*] attribute GenericModel::AccessPoint.Address: GenericModel::CommAddress +2024-09-07 12:38:51,311 [main] INFO Util - (3588) WG10 IEC61850 [1..*] attribute MetaModel::SERVER.serviceAccessPoints: CommonAcsiTypes::IPAddress +2024-09-07 12:38:51,311 [main] INFO Util - (4328) WG10 IEC61850 [1..*] FCDA attribute CDCStatusInfo::HST.hstVal: FCDAs::INT32_ST_dchg_dupd, array bounds=...maxPts-1 +2024-09-07 12:38:51,311 [main] INFO Util - (4405) WG10 IEC61850 [1..*] sub-data object CDCAnalogueInfo::HWYE.phsAHar: CDCAnalogueInfo::CMV, array bounds=0...numHar +2024-09-07 12:38:51,312 [main] INFO Util - +2024-09-07 12:38:51,312 [main] INFO Util - ======= 4 name spaces: ======== +2024-09-07 12:38:51,312 [main] INFO Util - namespace IEC61970CIM14v12:2011, 20119-08-01; UML version 2011 +2024-09-07 12:38:51,312 [main] INFO Util - namespace IEC61850-7-2:2007, 2011-08-01; UML version IEC61850UML02v07 +2024-09-07 12:38:51,312 [main] INFO Util - namespace IEC61850-7-3:2011B, 2011-08-01; UML version IEC61850UML02v07 +2024-09-07 12:38:51,312 [main] INFO Util - namespace IEC61850-7-4:2009A, 2011-08-01; UML version IEC61850UML02v07 +2024-09-07 12:38:51,313 [main] INFO Util - +2024-09-07 12:38:51,313 [main] INFO Util - ======= 3 versions: ======== +2024-09-07 12:38:51,313 [main] INFO Util - version={IEC61970CIM14v12, 20119-08-01} +2024-09-07 12:38:51,313 [main] INFO Util - version={IEC61850UML02v07, 2011-07-02} +2024-09-07 12:38:51,313 [main] INFO Util - version={IEC61850UML02v07, 2011-07-02} +2024-09-07 12:38:51,313 [main] INFO Util - +2024-09-07 12:38:51,313 [main] INFO Util - ======= 25 tag names (not listed objects using GUIDBasedOn): ======== +2024-09-07 12:38:51,313 [main] INFO Util - MoreAssoc: +2024-09-07 12:38:51,313 [main] INFO Util - (123) WG13 CIM association NamedWithTagsEverywhere, qname='Terminal.ConductingEquipment - ConductingEquipment.Terminals', tags={CE-TermAssoc=1, MoreAssoc=}, endAsSrc: myEnd: WG13 [0..*] ConductingEquipment.Terminals; tags={Role1=abc}; otherEnd: WG13 [1..1] Terminal.ConductingEquipment; tags={AnotherRole2=abc, targetEndTag=blah, Role2=xyz}, endAsTgt: myEnd: WG13 [1..1] Terminal.ConductingEquipment; tags={AnotherRole2=abc, targetEndTag=blah, Role2=xyz}; otherEnd: WG13 [0..*] ConductingEquipment.Terminals; tags={Role1=abc} +2024-09-07 12:38:51,313 [main] INFO Util - nsuri: +2024-09-07 12:38:51,313 [main] INFO Util - (2) OTHER_CIM CIM model package /TC57CIM: 1 diagrams, 0 classes, 4 packages, ; tags={nsprefix=cim, nsuri=http://cim123} +2024-09-07 12:38:51,314 [main] INFO Util - (56) WG14 CIM top package TC57CIM::IEC61968: 1 diagrams, 1 classes, 5 packages, efferent=[IEC61970], afferent=[IEC61970], ; tags={nsprefix=n14, nsuri=http://wg14/customNamespace} +2024-09-07 12:38:51,314 [main] INFO Util - (173) WG14 CIM package IEC61968::EmbeddedExtension: 1 diagrams, 0 classes, 0 packages, ; tags={nsuri=http://embeddedExt, nsprefix=eext} +2024-09-07 12:38:51,314 [main] INFO Util - (69) OTHER_CIM CIM top package <> MyCimExtensions::Ext1: 1 diagrams, 5 classes, 0 packages, ; tags={nsuri=http://toto, nsprefix=ext2} +2024-09-07 12:38:51,314 [main] INFO Util - (6707) WG14 CIM [0..1] Primitive attribute Other::Equipment.myExtension: Domain::Integer, tags={nsuri=http://extensions, nsprefix=eext} +2024-09-07 12:38:51,314 [main] INFO Util - assocTag: +2024-09-07 12:38:51,314 [main] INFO Util - (2096) WG13 CIM association, qname='InfClassContainingEmbeddedClass.C2 - InfClass2.C1', tags={assocTag=a1}, endAsSrc: myEnd: WG13 [0..1] InfClass2.C1; tags={srcTag=a2}; otherEnd: WG13 [0..1] InfClassContainingEmbeddedClass.C2, endAsTgt: myEnd: WG13 [0..1] InfClassContainingEmbeddedClass.C2; otherEnd: WG13 [0..1] InfClass2.C1; tags={srcTag=a2} +2024-09-07 12:38:51,314 [main] INFO Util - (228) WG13 CIM association <>, qname='BusNameMarker.PrivateConnectivityNode - ConnectivityNode.BusNameMarker', tags={assocTag=val}, endAsSrc: myEnd: WG13 <> [0..1] ConnectivityNode.BusNameMarker; tags={srcTag=valueSrcTag}; otherEnd: WG13 (private) <> [0..*] BusNameMarker.PrivateConnectivityNode; tags={endTag=valueEndTag}, endAsTgt: myEnd: WG13 (private) <> [0..*] BusNameMarker.PrivateConnectivityNode; tags={endTag=valueEndTag}; otherEnd: WG13 <> [0..1] ConnectivityNode.BusNameMarker; tags={srcTag=valueSrcTag} +2024-09-07 12:38:51,314 [main] INFO Util - (2142) OTHER_CIM CIM association, qname='Pear.SecondApple - Apple.SecondPear', tags={assocTag=value0}, endAsSrc: myEnd: OTHER_CIM <> [0..1] Apple.SecondPear; otherEnd: OTHER_CIM <> [1..1] Pear.SecondApple, endAsTgt: myEnd: OTHER_CIM <> [1..1] Pear.SecondApple; otherEnd: OTHER_CIM <> [0..1] Apple.SecondPear +2024-09-07 12:38:51,315 [main] INFO Util - someTag: +2024-09-07 12:38:51,315 [main] INFO Util - (5) WG13 CIM Core::PowerSystemResource operation <> public NullCIM bar(NullCIM par3, Float par2, NullCIM par); tags={someTag=value} +2024-09-07 12:38:51,315 [main] INFO Util - (4) WG13 CIM Core::PowerSystemResource operation public NullCIM foo(NullCIM par3, Float par2, NullCIM par); tags={someTag=value} +2024-09-07 12:38:51,315 [main] INFO Util - moveAfter: +2024-09-07 12:38:51,315 [main] INFO Util - (4279) WG10 IEC61850 [0..1] PackedEnumFCDA attribute CDCStatusInfo::DPS.subVal: FCDAs::DpStatus_SV, presence conditions=[MFsubst], tags={moveAfter=wrongsubEna, secondTagName=secondTagValue} +2024-09-07 12:38:51,315 [main] INFO Util - (4288) WG10 IEC61850 [0..1] EnumFCDA attribute CDCStatusInfo::ENS.subVal: FCDAs::EnumDA_SV, presence conditions=[MFsubst], tags={moveAfter=subEna} +2024-09-07 12:38:51,315 [main] INFO Util - (4369) WG10 IEC61850 [0..1] attribute CDCAnalogueInfo::CMV.subCVal: NullIEC61850::NullIEC61850, presence conditions=[MFsubst], tags={moveAfter=subEna} +2024-09-07 12:38:51,316 [main] INFO Util - (4411) WG10 IEC61850 [0..1] EnumFCDA attribute CDCAnalogueInfo::HWYE.angRef: FCDAs::PhaseAngleReference_CF_dchg, tags={moveAfter=evalTm} +2024-09-07 12:38:51,316 [main] INFO Util - (4467) WG10 IEC61850 [0..1] EnumFCDA attribute CDCControl::ENC.subVal: FCDAs::EnumDA_SV, presence conditions=[MFsubst], tags={moveAfter=subEna} +2024-09-07 12:38:51,316 [main] INFO Util - (4526) WG10 IEC61850 [0..1] attribute CDCControl::BAC.subVal: NullIEC61850::NullIEC61850, presence conditions=[MFsubst], tags={moveAfter=subEna} +2024-09-07 12:38:51,316 [main] INFO Util - secondTagName: +2024-09-07 12:38:51,316 [main] INFO Util - (4279) WG10 IEC61850 [0..1] PackedEnumFCDA attribute CDCStatusInfo::DPS.subVal: FCDAs::DpStatus_SV, presence conditions=[MFsubst], tags={moveAfter=wrongsubEna, secondTagName=secondTagValue} +2024-09-07 12:38:51,317 [main] INFO Util - dummyCimTag: +2024-09-07 12:38:51,317 [main] INFO Util - (853) WG13 CIM class Core::Terminal, 1 superclasses=[IdentifiedObject], 1 subclasses=[DumbSubterminal], 2 attributes, 4 associations; efferent classes: byAttr=[Boolean, Integer]; associated classes (bi-directional): asTarget=[Core::PowerSystemResource] asSource=[Core::ConductingEquipment, Topology::ConnectivityNode, Topology::TopologicalNode], tags={dummyCimTag=on terminal} +2024-09-07 12:38:51,317 [main] INFO Util - (850) WG13 CIM compound <> Core::OperatingParticipant, 1 superclasses=[IdentifiedObject], 1 associations; associated classes (bi-directional): asTarget=[Core::OperatingShare], tags={dummyCimTag=value} +2024-09-07 12:38:51,317 [main] INFO Util - (1) WG13 CIM Core::PowerSystemResource operation abstract public NullCIM[] GetWhatevers(BasePower[] multiples) throws Dummy,PSRType,Dummy2; tags={throws=Dummy,PSRType,Dummy2, dummyCimTag=on operation} +2024-09-07 12:38:51,317 [main] INFO Util - AnotherRole2: +2024-09-07 12:38:51,317 [main] INFO Util - WG13 [1..1] Terminal.ConductingEquipment; tags={AnotherRole2=abc, targetEndTag=blah, Role2=xyz} +2024-09-07 12:38:51,317 [main] INFO Util - nsprefix: +2024-09-07 12:38:51,317 [main] INFO Util - (2) OTHER_CIM CIM model package /TC57CIM: 1 diagrams, 0 classes, 4 packages, ; tags={nsprefix=cim, nsuri=http://cim123} +2024-09-07 12:38:51,317 [main] INFO Util - (56) WG14 CIM top package TC57CIM::IEC61968: 1 diagrams, 1 classes, 5 packages, efferent=[IEC61970], afferent=[IEC61970], ; tags={nsprefix=n14, nsuri=http://wg14/customNamespace} +2024-09-07 12:38:51,317 [main] INFO Util - (173) WG14 CIM package IEC61968::EmbeddedExtension: 1 diagrams, 0 classes, 0 packages, ; tags={nsuri=http://embeddedExt, nsprefix=eext} +2024-09-07 12:38:51,318 [main] INFO Util - (69) OTHER_CIM CIM top package <> MyCimExtensions::Ext1: 1 diagrams, 5 classes, 0 packages, ; tags={nsuri=http://toto, nsprefix=ext2} +2024-09-07 12:38:51,318 [main] INFO Util - (6707) WG14 CIM [0..1] Primitive attribute Other::Equipment.myExtension: Domain::Integer, tags={nsuri=http://extensions, nsprefix=eext} +2024-09-07 12:38:51,318 [main] INFO Util - dummyPackageTag: +2024-09-07 12:38:51,318 [main] INFO Util - (141) WG10 IEC61850 package IEC61850_7_4::DOEnums: 1 diagrams, 4 classes, 0 packages, ; tags={dummyPackageTag=tagValue} +2024-09-07 12:38:51,318 [main] INFO Util - CE-TermAssoc: +2024-09-07 12:38:51,318 [main] INFO Util - (123) WG13 CIM association NamedWithTagsEverywhere, qname='Terminal.ConductingEquipment - ConductingEquipment.Terminals', tags={CE-TermAssoc=1, MoreAssoc=}, endAsSrc: myEnd: WG13 [0..*] ConductingEquipment.Terminals; tags={Role1=abc}; otherEnd: WG13 [1..1] Terminal.ConductingEquipment; tags={AnotherRole2=abc, targetEndTag=blah, Role2=xyz}, endAsTgt: myEnd: WG13 [1..1] Terminal.ConductingEquipment; tags={AnotherRole2=abc, targetEndTag=blah, Role2=xyz}; otherEnd: WG13 [0..*] ConductingEquipment.Terminals; tags={Role1=abc} +2024-09-07 12:38:51,318 [main] INFO Util - tag: +2024-09-07 12:38:51,318 [main] INFO Util - (1370) WG13 CIM [0..1] Primitive attribute Domain::ApparentPower.value: Domain::Float, tags={tag=val} +2024-09-07 12:38:51,318 [main] INFO Util - scl: +2024-09-07 12:38:51,318 [main] INFO Util - (2045) WG10 IEC61850 enumeration <> DAEnums::SIUnitKind, 73 enum literals (codes used=[1, 10, 11, 2, 21, 22, 23, 24, 25, 26, 27, 28, 29, 3, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 4, 41, 42, 43, 44, 45, 46, 47, 48, 49, 5, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 6, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 7, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 8, 80, 81, 82, 83, 9]); afferent classes: byAttr=[SIUnit];, tags={scl=SIUnit} +2024-09-07 12:38:51,319 [main] INFO Util - (2044) WG10 IEC61850 enumeration <> DAEnums::MultiplierKind, 21 enum literals (codes used=[-1, -12, -15, -18, -2, -21, -24, -3, -6, -9, 0, 1, 12, 15, 18, 2, 21, 24, 3, 6, 9]); afferent classes: byAttr=[Multiplier];, tags={scl=multiplier} +2024-09-07 12:38:51,319 [main] INFO Util - (2039) WG10 IEC61850 enumeration <> DAEnums::PhaseAngleReferenceKind, 12 enum literals (codes used=[0, 1, 10, 11, 2, 3, 4, 5, 6, 7, 8, 9]); afferent classes: byAttr=[PhaseAngleReference];, tags={scl=angRef, angid} +2024-09-07 12:38:51,319 [main] INFO Util - (2568) WG10 IEC61850 enumeration <> DOEnums::HealthKind, 3 enum literals (codes used=[1, 2, 3]); afferent classes: byAttr=[Health];, tags={scl=EEHealth,Health,MechHealth,PhyHealth} +2024-09-07 12:38:51,319 [main] INFO Util - (2564) WG10 IEC61850 enumeration <> DOEnums::BehaviourModeKind, 5 enum literals (codes used=[1, 2, 3, 4, 5]); afferent classes: byAttr=[BehaviourMode];, tags={scl=Beh,Mod} +2024-09-07 12:38:51,319 [main] INFO Util - (2567) WG10 IEC61850 enumeration <> DOEnums::CalcMethodKind, 10 enum literals (codes used=[1, 10, 2, 3, 4, 5, 6, 7, 8, 9]); afferent classes: byAttr=[CalcMethod];, tags={scl=ClcMth} +2024-09-07 12:38:51,319 [main] INFO Util - GUIDBasedOn: +2024-09-07 12:38:51,320 [main] INFO Util - scl:emptyValue: +2024-09-07 12:38:51,320 [main] INFO Util - (3834) WG10 IEC61850 literal <> DAEnums::SIUnitKind.none = 1, tags={scl:emptyValue=} +2024-09-07 12:38:51,320 [main] INFO Util - (3823) WG10 IEC61850 literal <> DAEnums::MultiplierKind.none = 0, tags={scl:emptyValue=} +2024-09-07 12:38:51,320 [main] INFO Util - srcTag: +2024-09-07 12:38:51,320 [main] INFO Util - WG13 [0..1] InfClass2.C1; tags={srcTag=a2} +2024-09-07 12:38:51,320 [main] INFO Util - WG13 <> [0..1] ConnectivityNode.BusNameMarker; tags={srcTag=valueSrcTag} +2024-09-07 12:38:51,320 [main] INFO Util - iecRef: +2024-09-07 12:38:51,320 [main] INFO Util - (2368) WG10 IEC61850 function ProtectionEq::BusbarProt; efferent classes: byDep=[PDIF], tags={iecRef=, ieeeRef=87B, rsName=PBDF} +2024-09-07 12:38:51,320 [main] INFO Util - (2374) WG10 IEC61850 function ProtectionEq::DirectionalProt; efferent classes: byDep=[RDIR, PDIS], tags={iecRef=, ieeeRef=87B, rsName=PDIR} +2024-09-07 12:38:51,320 [main] INFO Util - (2375) WG10 IEC61850 function ProtectionEq::DirectionalPowerProt; efferent classes: byDep=[RDIR], tags={iecRef=P>, ieeeRef=32, rsName=PDPR} +2024-09-07 12:38:51,320 [main] INFO Util - (2385) WG10 IEC61850 function ProtectionEq::LineDifferentialProt; efferent classes: byDep=[PDIF], tags={iecRef=, ieeeRef=87L, rsName=PLDF} +2024-09-07 12:38:51,320 [main] INFO Util - (2394) WG10 IEC61850 function ProtectionEq::PowerFactorProt, tags={iecRef=cos\u03C6>, cos\u03C6<, ieeeRef=55, rsName=PPFR} +2024-09-07 12:38:51,323 [main] INFO Util - (2420) WG10 IEC61850 function ControlEq::AlarmHandler; efferent classes: byDep=[CALH], tags={iecRef=, ieeeRef=, rsName=CALH} +2024-09-07 12:38:51,323 [main] INFO Util - (2465) WG10 IEC61850 function MeasurementsAndMetering::ThreePhaseMeasurement; efferent classes: byDep=[MMXU], tags={iecRef=, ieeeRef=, rsName=MMXU} +2024-09-07 12:38:51,323 [main] INFO Util - (2475) WG10 IEC61850 function SystemWide::LogicalDeviceData; efferent classes: byDep=[LLN0], tags={iecRef=, ieeeRef=, rsName=LLN0} +2024-09-07 12:38:51,323 [main] INFO Util - (2477) WG10 IEC61850 function SystemWide::PhysicalDeviceData; efferent classes: byDep=[LPHD], tags={iecRef=, ieeeRef=, rsName=LPHD} +2024-09-07 12:38:51,323 [main] INFO Util - (2487) WG10 IEC61850 function PrimaryEq::AuxiliaryNetwork; efferent classes: byDep=[ZAXN], tags={iecRef=, ieeeRef=, rsName=ZAXN} +2024-09-07 12:38:51,323 [main] INFO Util - (2501) WG10 IEC61850 function PrimaryEq::GenericIO; efferent classes: byDep=[GGIO], tags={iecRef=, ieeeRef=, rsName=GGIO} +2024-09-07 12:38:51,323 [main] INFO Util - endTag: +2024-09-07 12:38:51,323 [main] INFO Util - WG13 (private) <> [0..*] BusNameMarker.PrivateConnectivityNode; tags={endTag=valueEndTag} +2024-09-07 12:38:51,324 [main] INFO Util - Role2: +2024-09-07 12:38:51,324 [main] INFO Util - WG13 [1..1] Terminal.ConductingEquipment; tags={AnotherRole2=abc, targetEndTag=blah, Role2=xyz} +2024-09-07 12:38:51,324 [main] INFO Util - Role1: +2024-09-07 12:38:51,324 [main] INFO Util - WG13 [0..*] ConductingEquipment.Terminals; tags={Role1=abc} +2024-09-07 12:38:51,324 [main] INFO Util - throws: +2024-09-07 12:38:51,324 [main] INFO Util - (1) WG13 CIM Core::PowerSystemResource operation abstract public NullCIM[] GetWhatevers(BasePower[] multiples) throws Dummy,PSRType,Dummy2; tags={throws=Dummy,PSRType,Dummy2, dummyCimTag=on operation} +2024-09-07 12:38:51,324 [main] INFO Util - (2) WG13 CIM Core::PowerSystemResource operation <> public void setSomething(String name) throws Unit; tags={throws=Unit} +2024-09-07 12:38:51,324 [main] INFO Util - rsName: +2024-09-07 12:38:51,324 [main] INFO Util - (2368) WG10 IEC61850 function ProtectionEq::BusbarProt; efferent classes: byDep=[PDIF], tags={iecRef=, ieeeRef=87B, rsName=PBDF} +2024-09-07 12:38:51,324 [main] INFO Util - (2374) WG10 IEC61850 function ProtectionEq::DirectionalProt; efferent classes: byDep=[RDIR, PDIS], tags={iecRef=, ieeeRef=87B, rsName=PDIR} +2024-09-07 12:38:51,324 [main] INFO Util - (2375) WG10 IEC61850 function ProtectionEq::DirectionalPowerProt; efferent classes: byDep=[RDIR], tags={iecRef=P>, ieeeRef=32, rsName=PDPR} +2024-09-07 12:38:51,324 [main] INFO Util - (2385) WG10 IEC61850 function ProtectionEq::LineDifferentialProt; efferent classes: byDep=[PDIF], tags={iecRef=, ieeeRef=87L, rsName=PLDF} +2024-09-07 12:38:51,325 [main] INFO Util - (2394) WG10 IEC61850 function ProtectionEq::PowerFactorProt, tags={iecRef=cos\u03C6>, cos\u03C6<, ieeeRef=55, rsName=PPFR} +2024-09-07 12:38:51,325 [main] INFO Util - (2420) WG10 IEC61850 function ControlEq::AlarmHandler; efferent classes: byDep=[CALH], tags={iecRef=, ieeeRef=, rsName=CALH} +2024-09-07 12:38:51,325 [main] INFO Util - (2465) WG10 IEC61850 function MeasurementsAndMetering::ThreePhaseMeasurement; efferent classes: byDep=[MMXU], tags={iecRef=, ieeeRef=, rsName=MMXU} +2024-09-07 12:38:51,325 [main] INFO Util - (2475) WG10 IEC61850 function SystemWide::LogicalDeviceData; efferent classes: byDep=[LLN0], tags={iecRef=, ieeeRef=, rsName=LLN0} +2024-09-07 12:38:51,325 [main] INFO Util - (2477) WG10 IEC61850 function SystemWide::PhysicalDeviceData; efferent classes: byDep=[LPHD], tags={iecRef=, ieeeRef=, rsName=LPHD} +2024-09-07 12:38:51,325 [main] INFO Util - (2487) WG10 IEC61850 function PrimaryEq::AuxiliaryNetwork; efferent classes: byDep=[ZAXN], tags={iecRef=, ieeeRef=, rsName=ZAXN} +2024-09-07 12:38:51,325 [main] INFO Util - (2501) WG10 IEC61850 function PrimaryEq::GenericIO; efferent classes: byDep=[GGIO], tags={iecRef=, ieeeRef=, rsName=GGIO} +2024-09-07 12:38:51,325 [main] INFO Util - ieeeRef: +2024-09-07 12:38:51,325 [main] INFO Util - (2368) WG10 IEC61850 function ProtectionEq::BusbarProt; efferent classes: byDep=[PDIF], tags={iecRef=, ieeeRef=87B, rsName=PBDF} +2024-09-07 12:38:51,325 [main] INFO Util - (2374) WG10 IEC61850 function ProtectionEq::DirectionalProt; efferent classes: byDep=[RDIR, PDIS], tags={iecRef=, ieeeRef=87B, rsName=PDIR} +2024-09-07 12:38:51,325 [main] INFO Util - (2375) WG10 IEC61850 function ProtectionEq::DirectionalPowerProt; efferent classes: byDep=[RDIR], tags={iecRef=P>, ieeeRef=32, rsName=PDPR} +2024-09-07 12:38:51,326 [main] INFO Util - (2385) WG10 IEC61850 function ProtectionEq::LineDifferentialProt; efferent classes: byDep=[PDIF], tags={iecRef=, ieeeRef=87L, rsName=PLDF} +2024-09-07 12:38:51,326 [main] INFO Util - (2394) WG10 IEC61850 function ProtectionEq::PowerFactorProt, tags={iecRef=cos\u03C6>, cos\u03C6<, ieeeRef=55, rsName=PPFR} +2024-09-07 12:38:51,326 [main] INFO Util - (2420) WG10 IEC61850 function ControlEq::AlarmHandler; efferent classes: byDep=[CALH], tags={iecRef=, ieeeRef=, rsName=CALH} +2024-09-07 12:38:51,326 [main] INFO Util - (2465) WG10 IEC61850 function MeasurementsAndMetering::ThreePhaseMeasurement; efferent classes: byDep=[MMXU], tags={iecRef=, ieeeRef=, rsName=MMXU} +2024-09-07 12:38:51,326 [main] INFO Util - (2475) WG10 IEC61850 function SystemWide::LogicalDeviceData; efferent classes: byDep=[LLN0], tags={iecRef=, ieeeRef=, rsName=LLN0} +2024-09-07 12:38:51,326 [main] INFO Util - (2477) WG10 IEC61850 function SystemWide::PhysicalDeviceData; efferent classes: byDep=[LPHD], tags={iecRef=, ieeeRef=, rsName=LPHD} +2024-09-07 12:38:51,326 [main] INFO Util - (2487) WG10 IEC61850 function PrimaryEq::AuxiliaryNetwork; efferent classes: byDep=[ZAXN], tags={iecRef=, ieeeRef=, rsName=ZAXN} +2024-09-07 12:38:51,326 [main] INFO Util - (2501) WG10 IEC61850 function PrimaryEq::GenericIO; efferent classes: byDep=[GGIO], tags={iecRef=, ieeeRef=, rsName=GGIO} +2024-09-07 12:38:51,326 [main] INFO Util - targetEndTag: +2024-09-07 12:38:51,326 [main] INFO Util - WG13 [1..1] Terminal.ConductingEquipment; tags={AnotherRole2=abc, targetEndTag=blah, Role2=xyz} +2024-09-07 12:38:51,326 [main] INFO Util - OTHER_CIM [0..*] Pear.Apple; tags={targetEndTag=value2} +2024-09-07 12:38:51,326 [main] INFO Util - assocEndTag: +2024-09-07 12:38:51,326 [main] INFO Util - OTHER_CIM [0..1] Apple.Pear; tags={assocEndTag=value} +2024-09-07 12:38:51,327 [main] INFO Util - +2024-09-07 12:38:51,327 [main] INFO Util - ======= 38 DO name decompositions: ======== +2024-09-07 12:38:51,327 [main] INFO Util - WG10 LogicalNodes::DomainLN.NamPlt ("Name plate of the logical node."): NamPlt = [{NamPlt=?}] +2024-09-07 12:38:51,328 [main] INFO Util - WG10 LogicalNodes::DomainLN.Health ("'Health.stVal' reflects the state of the logical node related hardware and softw..."): Health = [{Health=?}] +2024-09-07 12:38:51,328 [main] INFO Util - WG10 LogicalNodes::DomainLN.Mod ("'DomainLN.Mod.ctlVal' is used by operator to initiate the change in the operatin..."): Mod = [{Mod=?}] +2024-09-07 12:38:51,328 [main] INFO Util - WG10 LogicalNodes::DomainLN.CntRs ("Dumb DO, of type CMV for testing inheriting statistics-derived presence conditio..."): CntRs = [{CntRs=?}] +2024-09-07 12:38:51,328 [main] INFO Util - WG10 LogicalNodes::StatisticsLN.ClcExp ("If 'ClcExp.stVal=true', the calculation period of a statistical logical node has..."): ClcExp = [{ClcExp=?}] +2024-09-07 12:38:51,328 [main] INFO Util - WG10 LogicalNodes::StatisticsLN.ClcMth ("'ClcMth.setVal' is the kind of statistical calculation, specifying how the data ..."): ClcMth = [{ClcMth=?}] +2024-09-07 12:38:51,328 [main] INFO Util - WG10 LogicalNodes::EquipmentInterfaceLN.EEHealthAlmClc ("(too long name) State of external (electrical, mechanical or communication) equi..."): EEHealthAlmClc = [{EEHealth=?}, {Alm=Alarm}, {Clc=?}] +2024-09-07 12:38:51,328 [main] INFO Util - WG10 LNGroupL::KXYZ.aDummyAlm ("Whatever (testing lower case DO name)."): aDummyAlm = [{aDummy=Dummy lower-case term.}, {Alm=Alarm}] +2024-09-07 12:38:51,328 [main] INFO Util - WG10 LNGroupL::KXYZ.TotW ("'TotW.mag.f' is the total real power in a three-phase circuit [W]."): TotW = [{TotW=?}] +2024-09-07 12:38:51,328 [main] INFO Util - WG10 LNGroupL::KXYZ.WrongA ("Misused ENS (or ENG or ENC). Use derived CDC instead."): WrongA = [{Wrong=?}, {A=Current}] +2024-09-07 12:38:51,328 [main] INFO Util - WG10 LNGroupL::KXYZ.CorrectA ("Correctly using derived CDC for enums."): CorrectA = [{Correct=?}, {A=Current}] +2024-09-07 12:38:51,328 [main] INFO Util - WG10 LNGroupL::LPHD.PhyHealth ("'PhyHealth.stVal' reflects the state of the physical device related hardware and..."): PhyHealth = [{PhyHealth=?}] +2024-09-07 12:38:51,328 [main] INFO Util - WG10 LNGroupL::LPHD.RsStatAlmMthClc ("(too long name) 'RsStat.ctlVal=true' initiates the resetting of the IED statisti..."): RsStatAlmMthClc = [{RsStat=?}, {Alm=Alarm}, {MthClc=?}] +2024-09-07 12:38:51,328 [main] INFO Util - WG10 LNGroupL::LPHD.StatAlmMthClc ("(too long name) 'RsStat.ctlVal=true' initiates the resetting of the IED statisti..."): StatAlmMthClc = [{Stat=?}, {Alm=Alarm}, {MthClc=?}] +2024-09-07 12:38:51,328 [main] INFO Util - WG10 LNGroupL::LLN0.NamPlt ("Name plate of the logical device."): NamPlt = [{NamPlt=?}] +2024-09-07 12:38:51,328 [main] INFO Util - WG10 LNGroupL::LLN0.Beh (""): Beh = [{Beh=?}] +2024-09-07 12:38:51,328 [main] INFO Util - WG10 LNGroupL::LLN0.Health ("'Health.stVal' reflects the state of the logical device related hardware and sof..."): Health = [{Health=?}] +2024-09-07 12:38:51,328 [main] INFO Util - WG10 LNGroupC::CALH.GrAlm ("If 'GrAlm.stVal=true', a new group alarm has been activated by one of individual..."): GrAlm = [{Gr=?}, {Alm=Alarm}] +2024-09-07 12:38:51,328 [main] INFO Util - WG10 LNGroupC::CALH.GrWrn ("If 'GrWrn.stVal=true', a new group warning has been activated by one of individu..."): GrWrn = [{GrWrn=?}] +2024-09-07 12:38:51,329 [main] INFO Util - WG10 LNGroupC::CALH.ModBeh ("If 'GrWrn.stVal=true', a new group warning has been activated by one of individu..."): ModBeh = [{ModBeh=?}] +2024-09-07 12:38:51,329 [main] INFO Util - WG10 LNGroupG::GGIO.EEHealth ("'EEHealth.stVal' reflects the state of external (primary) equipment to which the..."): EEHealth = [{EEHealth=?}] +2024-09-07 12:38:51,329 [main] INFO Util - WG10 LNGroupG::GGIO.AnIn ("'AnIn.mag.f' is the generic analogue input n."): AnIn = [{A=Current}, {nIn=?}] +2024-09-07 12:38:51,329 [main] INFO Util - WG10 LNGroupG::GGIO.DPCSO ("'DPCSO.ctlVal=true' or 'DPCSO.ctlVal=false' controls the generic double point co..."): DPCSO = [{DPCSO=?}] +2024-09-07 12:38:51,329 [main] INFO Util - WG10 LNGroupM::MMXU.A ("'A' holds the currents for three phases."): A = [{A=Current}] +2024-09-07 12:38:51,329 [main] INFO Util - WG10 LNGroupM::MMXU.TotW ("'TotW.mag.f' is the total real power in a three-phase circuit [W]."): TotW = [{TotW=?}] +2024-09-07 12:38:51,329 [main] INFO Util - WG10 LNGroupM::MMXU.Desc ("Dummy native DO of non-statistical type."): Desc = [{Desc=?}] +2024-09-07 12:38:51,329 [main] INFO Util - WG10 LNGroupP::ProtectionLN.OpCntRs ("'OpCntRs.stVal' is the count of operations. It can be reset from remote, with th..."): OpCntRs = [{OpCntRs=?}] +2024-09-07 12:38:51,329 [main] INFO Util - WG10 LNGroupP::PDIF.Str ("If 'Str.general=true', a fault has been detected."): Str = [{Str=?}] +2024-09-07 12:38:51,329 [main] INFO Util - WG10 LNGroupP::PDIF.Op ("If 'Op.general=true', the function decided to trip. The trip itself is issued by..."): Op = [{Op=?}] +2024-09-07 12:38:51,329 [main] INFO Util - WG10 LNGroupP::PDIS.Str ("If 'Str.general=true', a distance fault has been detected."): Str = [{Str=?}] +2024-09-07 12:38:51,329 [main] INFO Util - WG10 LNGroupP::PDIS.Op ("If 'Op.general=true', the function decided to trip due to distance fault. The tr..."): Op = [{Op=?}] +2024-09-07 12:38:51,329 [main] INFO Util - WG10 LNGroupR::RDIR.Dir ("If 'Dir.general=true', a fault has been detected. 'Dir.dirGeneral' is the direct..."): Dir = [{Dir=?}] +2024-09-07 12:38:51,329 [main] INFO Util - WG10 LNGroupR::RDIR.TotW ("'TotW.mag.f' is the total real power in a three-phase circuit [W]."): TotW = [{TotW=?}] +2024-09-07 12:38:51,329 [main] INFO Util - WG10 LNGroupZ::ZAXN.Vol ("'Vol.mag.f' is the non-phase-related or DC voltage of the auxiliary network."): Vol = [{Vol=?}] +2024-09-07 12:38:51,329 [main] INFO Util - WG10 LNGroupZ::ZAXN.Amp ("'Amp.mag.f' is the non-phase-related current of the auxiliary network."): Amp = [{Amp=Current non-phase-related/Duplicated definition: Current non-phase-related}] +2024-09-07 12:38:51,329 [main] INFO Util - WG10 LNGroupZ::ZAXN.Mat ("For testing usage of class from other namespace."): Mat = [{Mat=?}] +2024-09-07 12:38:51,330 [main] INFO Util - WG10 LNGroupZ::ZAXN.MatCtl ("One more, for testing usage of class from other namespace."): MatCtl = [{MatCtl=?}] +2024-09-07 12:38:51,330 [main] INFO Util - WG10 LNGroupZ::ZAXN.Oth ("One more, for testing usage of class from other namespace and also underlying ty..."): Oth = [{Oth=?}] +2024-09-07 12:38:51,330 [main] INFO Util - +2024-09-07 12:38:51,330 [main] INFO Util - ======= 12 Abbreviated terms usage: ======== +2024-09-07 12:38:51,330 [main] INFO Util - A: +2024-09-07 12:38:51,330 [main] INFO Util - WG10 LNGroupL::KXYZ.WrongA +2024-09-07 12:38:51,330 [main] INFO Util - WG10 LNGroupL::KXYZ.CorrectA +2024-09-07 12:38:51,330 [main] INFO Util - WG10 LNGroupG::GGIO.AnIn +2024-09-07 12:38:51,330 [main] INFO Util - WG10 LNGroupM::MMXU.A +2024-09-07 12:38:51,330 [main] INFO Util - Abc: +2024-09-07 12:38:51,331 [main] INFO Util - Alm: +2024-09-07 12:38:51,331 [main] INFO Util - WG10 LogicalNodes::EquipmentInterfaceLN.EEHealthAlmClc +2024-09-07 12:38:51,331 [main] INFO Util - WG10 LNGroupL::KXYZ.aDummyAlm +2024-09-07 12:38:51,331 [main] INFO Util - WG10 LNGroupL::LPHD.RsStatAlmMthClc +2024-09-07 12:38:51,331 [main] INFO Util - WG10 LNGroupL::LPHD.StatAlmMthClc +2024-09-07 12:38:51,331 [main] INFO Util - WG10 LNGroupC::CALH.GrAlm +2024-09-07 12:38:51,331 [main] INFO Util - Alm2: +2024-09-07 12:38:51,331 [main] INFO Util - Amp: +2024-09-07 12:38:51,331 [main] INFO Util - WG10 LNGroupZ::ZAXN.Amp +2024-09-07 12:38:51,331 [main] INFO Util - Z: +2024-09-07 12:38:51,331 [main] INFO Util - Z0: +2024-09-07 12:38:51,331 [main] INFO Util - Z1: +2024-09-07 12:38:51,331 [main] INFO Util - Zro: +2024-09-07 12:38:51,331 [main] INFO Util - aDummy: +2024-09-07 12:38:51,331 [main] INFO Util - WG10 LNGroupL::KXYZ.aDummyAlm +2024-09-07 12:38:51,331 [main] INFO Util - km: +2024-09-07 12:38:51,332 [main] INFO Util - ppm: +2024-09-07 12:38:51,332 [main] INFO Util - time=[0:00:00.131] collected statistics for [WG13, WG14, WG16, OTHER_CIM, WG10, WG17, WG18, JWG25, WG19, OTHER_IEC61850] packages. +2024-09-07 12:38:51,332 [main] INFO Util - +2024-09-07 12:38:51,332 [main] INFO Util - +2024-09-07 12:38:51,332 [main] INFO Util - ================================================ +2024-09-07 12:38:51,333 [main] INFO Util - generating doc from TC57CIMProfiles (CIM), TC57CIM (CIM), IEC61850Domain (IEC61850), MyCimExtensions (CIM), My61850Extensions (IEC61850), NewNature (CIM) +2024-09-07 12:38:51,333 [main] INFO Util - ================================================ +2024-09-07 12:38:51,333 [main] INFO Util - +2024-09-07 12:38:51,333 [main] INFO Util - ------------------------------------------------ +2024-09-07 12:38:51,333 [main] INFO Util - collecting documentation content ... +2024-09-07 12:38:51,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Informative::Class1': UML1 +2024-09-07 12:38:51,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Informative::End1ForAssocClass': UML2 +2024-09-07 12:38:51,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Informative::End2ForAssocClass': UML3 +2024-09-07 12:38:51,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Informative::AssocClass': UML4 +2024-09-07 12:38:51,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Informative::HasIllegalTypeForAttr': UML5 +2024-09-07 12:38:51,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Informative::SomeSimpleType': UML6 +2024-09-07 12:38:51,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEC61970::IEC61970CIMVersion': UML7 +2024-09-07 12:38:51,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'InformativeAndPrivate::InfClass2': UML8 +2024-09-07 12:38:51,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'InformativeAndPrivate::InfClassContainingEmbeddedClass': UML9 +2024-09-07 12:38:51,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'InformativeAndPrivate::EmbeddedClass': UML10 +2024-09-07 12:38:51,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::AbsoluteDateTime': UML11 +2024-09-07 12:38:51,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::ActivePower': UML12 +2024-09-07 12:38:51,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::ActivePowerChangeRate': UML13 +2024-09-07 12:38:51,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::ApparentPower': UML14 +2024-09-07 12:38:51,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Boolean': UML15 +2024-09-07 12:38:51,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Currency': UML16 +2024-09-07 12:38:51,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Float': UML17 +2024-09-07 12:38:51,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Integer': UML18 +2024-09-07 12:38:51,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Money': UML19 +2024-09-07 12:38:51,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::PerCent': UML20 +2024-09-07 12:38:51,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Seconds': UML21 +2024-09-07 12:38:51,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::String': UML22 +2024-09-07 12:38:51,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitMultiplier': UML23 +2024-09-07 12:38:51,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol': UML24 +2024-09-07 12:38:51,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Voltage': UML25 +2024-09-07 12:38:51,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::WithSingleLiteral': UML26 +2024-09-07 12:38:51,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::YesNo': UML27 +2024-09-07 12:38:51,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::BreakerConfiguration': UML28 +2024-09-07 12:38:51,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::BusbarConfiguration': UML29 +2024-09-07 12:38:51,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::OperatingShare': UML30 +2024-09-07 12:38:51,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode': UML31 +2024-09-07 12:38:51,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::IdentifiedObject': UML32 +2024-09-07 12:38:51,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Topology::TestEnum': UML33 +2024-09-07 12:38:51,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithSomeIntCodes': UML34 +2024-09-07 12:38:51,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithStringCodes': UML35 +2024-09-07 12:38:51,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithNonUniqueCodes': UML36 +2024-09-07 12:38:51,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEC61968::IEC61968Version': UML37 +2024-09-07 12:38:51,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Assets::AssetInfo': UML38 +2024-09-07 12:38:51,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Other::BadDatatypes': UML39 +2024-09-07 12:38:51,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Other::Equipment': UML40 +2024-09-07 12:38:51,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Other::MyClass': UML41 +2024-09-07 12:38:51,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Other::EmptyEnum': UML42 +2024-09-07 12:38:51,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Other::NonEmptyPrimitive': UML43 +2024-09-07 12:38:51,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Other::AnotherBadDatatype': UML44 +2024-09-07 12:38:51,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Other::EmptyCompound': UML45 +2024-09-07 12:38:51,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'WG10::WG10UMLVersion': UML46 +2024-09-07 12:38:51,351 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::CommAddress': UML47 +2024-09-07 12:38:51,351 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenAssociationID': UML48 +2024-09-07 12:38:51,351 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenFC': UML49 +2024-09-07 12:38:51,351 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenPresenceConditions': UML50 +2024-09-07 12:38:51,351 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenTimeStamp': UML51 +2024-09-07 12:38:51,351 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::AccessPoint': UML52 +2024-09-07 12:38:51,351 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::FileSystem': UML53 +2024-09-07 12:38:51,351 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenAtomicType': UML54 +2024-09-07 12:38:51,351 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenBOOLEAN': UML55 +2024-09-07 12:38:51,351 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenCommonDataClass': UML56 +2024-09-07 12:38:51,351 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenCompactType': UML57 +2024-09-07 12:38:51,351 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenConstructedType': UML58 +2024-09-07 12:38:51,351 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenDataAttribute': UML59 +2024-09-07 12:38:51,351 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenDataObject': UML60 +2024-09-07 12:38:51,351 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenDataSet': UML61 +2024-09-07 12:38:51,351 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenFCD': UML62 +2024-09-07 12:38:51,351 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenFCDA': UML63 +2024-09-07 12:38:51,351 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenFile': UML64 +2024-09-07 12:38:51,351 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenIED': UML65 +2024-09-07 12:38:51,351 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenINT32U': UML66 +2024-09-07 12:38:51,351 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenLogicalDevice': UML67 +2024-09-07 12:38:51,351 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenLogicalNode': UML68 +2024-09-07 12:38:51,351 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenMCAA': UML69 +2024-09-07 12:38:51,351 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenObjRef': UML70 +2024-09-07 12:38:51,351 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenObjectName': UML71 +2024-09-07 12:38:51,351 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenServer': UML72 +2024-09-07 12:38:51,351 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenSubDataAttribute': UML73 +2024-09-07 12:38:51,351 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenSubDataObject': UML74 +2024-09-07 12:38:51,351 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenTPAA': UML75 +2024-09-07 12:38:51,351 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenTriggerConditions': UML76 +2024-09-07 12:38:51,351 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenVisString255': UML77 +2024-09-07 12:38:51,351 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEC61850_7_2::IEC61850_7_2Namespace': UML78 +2024-09-07 12:38:51,351 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FunctionalConstraints::FcKind': UML79 +2024-09-07 12:38:51,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TriggerOptions::TrgOpKind': UML80 +2024-09-07 12:38:51,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ACSIEnums::BsControlKind': UML81 +2024-09-07 12:38:51,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ACSIEnums::DpStatusKind': UML82 +2024-09-07 12:38:51,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::P_BOOLEAN': UML83 +2024-09-07 12:38:51,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::P_INT16U': UML84 +2024-09-07 12:38:51,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::P_INT32': UML85 +2024-09-07 12:38:51,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::P_INT32U': UML86 +2024-09-07 12:38:51,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::P_FLOAT32': UML87 +2024-09-07 12:38:51,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::P_UNICODE_STRING255': UML88 +2024-09-07 12:38:51,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::P_VISIBLE_STRING255': UML89 +2024-09-07 12:38:51,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::ObjectName': UML90 +2024-09-07 12:38:51,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::P_ObjectReference': UML91 +2024-09-07 12:38:51,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::P_PHYCOMADDR': UML92 +2024-09-07 12:38:51,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::P_TimeStamp': UML93 +2024-09-07 12:38:51,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::TimeQuality': UML94 +2024-09-07 12:38:51,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::TimeAccuracyKind': UML95 +2024-09-07 12:38:51,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::P_TriggerConditions': UML96 +2024-09-07 12:38:51,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::ServiceFcKind': UML97 +2024-09-07 12:38:51,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind': UML98 +2024-09-07 12:38:51,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValue': UML99 +2024-09-07 12:38:51,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrDefinition': UML100 +2024-09-07 12:38:51,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::NamedAttrValue': UML101 +2024-09-07 12:38:51,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CommonAcsiTypes::P_OCTET_STRING': UML102 +2024-09-07 12:38:51,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CommonAcsiTypes::IPAddress': UML103 +2024-09-07 12:38:51,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CommonAcsiTypes::MulticastAddress': UML104 +2024-09-07 12:38:51,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CommonAcsiTypes::Authentication': UML105 +2024-09-07 12:38:51,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CommonAcsiTypes::AccessView': UML106 +2024-09-07 12:38:51,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CommonAcsiTypes::ReportID': UML107 +2024-09-07 12:38:51,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CommonAcsiTypes::EntryID': UML108 +2024-09-07 12:38:51,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CommonAcsiTypes::EntryTime': UML109 +2024-09-07 12:38:51,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::IEC61850Object': UML110 +2024-09-07 12:38:51,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::SUBSTITUTION': UML111 +2024-09-07 12:38:51,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::CONTROL': UML112 +2024-09-07 12:38:51,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::TIME': UML113 +2024-09-07 12:38:51,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEC61850_7_3::IEC61850_7_3Namespace': UML114 +2024-09-07 12:38:51,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition': UML115 +2024-09-07 12:38:51,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind': UML116 +2024-09-07 12:38:51,353 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind': UML117 +2024-09-07 12:38:51,353 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseFaultDirectionKind': UML118 +2024-09-07 12:38:51,353 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseAngleReferenceKind': UML119 +2024-09-07 12:38:51,353 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ConstructedDAs::ValidityKind': UML120 +2024-09-07 12:38:51,353 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ConstructedDAs::DetailQual': UML121 +2024-09-07 12:38:51,353 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ConstructedDAs::SourceKind': UML122 +2024-09-07 12:38:51,353 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCControl::SPC': UML123 +2024-09-07 12:38:51,353 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEC61850_7_4::IEC61850_7_4Namespace': UML124 +2024-09-07 12:38:51,353 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations::AbbrTermAny': UML125 +2024-09-07 12:38:51,353 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations::AbbrTermZ': UML126 +2024-09-07 12:38:51,353 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ProtectionEq::BusbarProt': UML127 +2024-09-07 12:38:51,353 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ProtectionEq::DirectionalProt': UML128 +2024-09-07 12:38:51,353 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ProtectionEq::DirectionalPowerProt': UML129 +2024-09-07 12:38:51,353 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ProtectionEq::LineDifferentialProt': UML130 +2024-09-07 12:38:51,353 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ProtectionEq::PowerFactorProt': UML131 +2024-09-07 12:38:51,353 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ControlEq::AlarmHandler': UML132 +2024-09-07 12:38:51,353 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MeasurementsAndMetering::ThreePhaseMeasurement': UML133 +2024-09-07 12:38:51,353 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'SystemWide::LogicalDeviceData': UML134 +2024-09-07 12:38:51,353 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'SystemWide::PhysicalDeviceData': UML135 +2024-09-07 12:38:51,353 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PrimaryEq::AuxiliaryNetwork': UML136 +2024-09-07 12:38:51,353 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PrimaryEq::GenericIO': UML137 +2024-09-07 12:38:51,353 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::HealthKind': UML138 +2024-09-07 12:38:51,353 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::BehaviourModeKind': UML139 +2024-09-07 12:38:51,353 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::CalcMethodKind': UML140 +2024-09-07 12:38:51,353 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::BaseKind': UML141 +2024-09-07 12:38:51,353 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedCDCs::ACTTransient': UML142 +2024-09-07 12:38:51,353 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedCDCs::SPSTransient': UML143 +2024-09-07 12:38:51,353 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'WG17::WG17UMLVersion': UML144 +2024-09-07 12:38:51,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEC51850_7_420::IEC61850_7_420Namespace': UML145 +2024-09-07 12:38:51,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::MaterialKind': UML146 +2024-09-07 12:38:51,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::MaterialTransitionKind': UML147 +2024-09-07 12:38:51,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::OtherKind': UML148 +2024-09-07 12:38:51,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations_410::AbbrTermA': UML149 +2024-09-07 12:38:51,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MyCimExtensions::DFD_External1': UML150 +2024-09-07 12:38:51,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MyCimExtensions::DFD_DataStore1': UML151 +2024-09-07 12:38:51,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Ext1::Fruit': UML152 +2024-09-07 12:38:51,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Ext1::FruitBinKind': UML153 +2024-09-07 12:38:51,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Ext1::Village': UML154 +2024-09-07 12:38:51,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Package with space::My class': UML155 +2024-09-07 12:38:51,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Package with space::Other-with_invalid name': UML156 +2024-09-07 12:38:51,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Ext2::Animal': UML157 +2024-09-07 12:38:51,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Topology::BusNameMarker': UML158 +2024-09-07 12:38:51,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::Terminal': UML159 +2024-09-07 12:38:51,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Topology::DumbSubterminal': UML160 +2024-09-07 12:38:51,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::BaseVoltage': UML161 +2024-09-07 12:38:51,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::BasePower': UML162 +2024-09-07 12:38:51,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::SubGeographicalRegion': UML163 +2024-09-07 12:38:51,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::geographicalRegion': UML164 +2024-09-07 12:38:51,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::OperatingParticipant': UML165 +2024-09-07 12:38:51,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PowerSystemResource': UML166 +2024-09-07 12:38:51,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::ConnectivityNodeContainer': UML167 +2024-09-07 12:38:51,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Ext1::Pear': UML168 +2024-09-07 12:38:51,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::EquipmentContainer': UML169 +2024-09-07 12:38:51,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::Bay': UML170 +2024-09-07 12:38:51,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::Substation': UML171 +2024-09-07 12:38:51,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::VoltageLevel': UML172 +2024-09-07 12:38:51,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::Equipment': UML173 +2024-09-07 12:38:51,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::ConductingEquipment': UML174 +2024-09-07 12:38:51,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Topology::ConnectivityNode': UML175 +2024-09-07 12:38:51,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Topology::TopologicalIsland': UML176 +2024-09-07 12:38:51,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Topology::TopologicalNode': UML177 +2024-09-07 12:38:51,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Other::MyClass': UML178 +2024-09-07 12:38:51,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Other::AttrDuplication': UML179 +2024-09-07 12:38:51,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::ServiceAccessPoint': UML180 +2024-09-07 12:38:51,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenLN0': UML181 +2024-09-07 12:38:51,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::FILEReference': UML182 +2024-09-07 12:38:51,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::LDReference': UML183 +2024-09-07 12:38:51,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::LNReference': UML184 +2024-09-07 12:38:51,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::CDCReference': UML185 +2024-09-07 12:38:51,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::FCDReference': UML186 +2024-09-07 12:38:51,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::FCDAReference': UML187 +2024-09-07 12:38:51,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::CBReference': UML188 +2024-09-07 12:38:51,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::LOGReference': UML189 +2024-09-07 12:38:51,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::LNOwnedDSReference': UML190 +2024-09-07 12:38:51,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::NonPersistentDSReference': UML191 +2024-09-07 12:38:51,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::HierarchyIEC61850Object': UML192 +2024-09-07 12:38:51,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::NamedIEC61850Object': UML193 +2024-09-07 12:38:51,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::LD': UML194 +2024-09-07 12:38:51,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::LN': UML195 +2024-09-07 12:38:51,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::LNPHD': UML196 +2024-09-07 12:38:51,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LNGroupL::LPHD': UML197 +2024-09-07 12:38:51,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::LN0': UML198 +2024-09-07 12:38:51,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LNGroupL::LLN0': UML199 +2024-09-07 12:38:51,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::LNDOM': UML200 +2024-09-07 12:38:51,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LogicalNodes::DomainLN': UML201 +2024-09-07 12:38:51,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LogicalNodes::StatisticsLN': UML202 +2024-09-07 12:38:51,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LNGroupG::GGIO': UML203 +2024-09-07 12:38:51,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LNGroupM::MMXU': UML204 +2024-09-07 12:38:51,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LogicalNodes::EquipmentInterfaceLN': UML205 +2024-09-07 12:38:51,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LNGroupZ::ZAXN': UML206 +2024-09-07 12:38:51,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LNGroupL::KXYZ': UML207 +2024-09-07 12:38:51,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LNGroupC::CALH': UML208 +2024-09-07 12:38:51,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LNGroupP::ProtectionLN': UML209 +2024-09-07 12:38:51,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LNGroupP::PDIF': UML210 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LNGroupP::PDIS': UML211 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LNGroupP::PDISExt': UML212 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LNGroupP::PDF2': UML213 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LNGroupR::RDIR': UML214 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::CDC': UML215 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::PrimitiveCDC': UML216 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CommonDataClasses::BasePrimitiveCDC': UML217 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCServiceTracking::CST': UML218 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCServiceTracking::BTS': UML219 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCServiceTracking::CTS': UML220 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCServiceTracking::GTS': UML221 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCServiceTracking::LTS': UML222 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCServiceTracking::MTS': UML223 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCServiceTracking::NTS': UML224 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCServiceTracking::OTS': UML225 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCServiceTracking::STS': UML226 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCServiceTracking::UTS': UML227 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CommonDataClasses::SubstitutionCDC': UML228 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCStatusInfo::DPS': UML229 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCStatusInfo::ENS': UML230 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedCDCs::ENSBehaviourMode': UML231 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedCDCs::ENSHealth': UML232 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedCDCs::ENSEnumDA': UML233 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedCDCs_7_420::ENSMaterial': UML234 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedCDCs_7_420::ENSOther': UML235 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCAnalogueInfo::CMV': UML236 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCControl::ControllableCDC': UML237 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCControl::ENC': UML238 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedCDCs::ENCBehaviourMode': UML239 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedCDCs_7_420::ENCMaterial': UML240 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCControl::BAC': UML241 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCStatusInfo::EXY': UML242 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedCDCs::EXYBehaviourMode': UML243 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCStatusInfo::ACD': UML244 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCStatusInfo::HST': UML245 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCStatusSet::ENG': UML246 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedCDCs::ENGCalcMethod': UML247 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCDescription::LPL': UML248 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::ComposedCDC': UML249 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CommonDataClasses::BaseComposedCDC': UML250 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCAnalogueInfo::HarmonicMeasurandCDC': UML251 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCAnalogueInfo::HWYE': UML252 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::FCDA': UML253 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_BL': UML254 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::BOOLEAN_BL': UML255 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_CF': UML256 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::EnumFCDA_CF': UML257 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_CF_dchg': UML258 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::EnumFCDA_CF_dchg': UML259 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::EnumDA_CF_dchg': UML260 +2024-09-07 12:38:51,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::PhaseAngleReference_CF_dchg': UML261 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::BOOLEAN_CF_dchg': UML262 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::INT16U_CF_dchg': UML263 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::INT32U_CF_dchg': UML264 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::INT32_CF_dchg': UML265 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::RangeConfig_CF_dchg': UML266 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::INT16U_CF': UML267 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_DC': UML268 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::Point_DC': UML269 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::UNICODE_STRING255_DC': UML270 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_EX': UML271 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::VISIBLE_STRING255_EX': UML272 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_MX': UML273 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::EnumFCDA_MX': UML274 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_MX_dchg': UML275 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::AnalogueValue_MX_dchg': UML276 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::BOOLEAN_MX_dchg': UML277 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_MX_dchg_dupd': UML278 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::AnalogueValue_MX_dchg_dupd': UML279 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_MX_qchg': UML280 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::Quality_MX_qchg': UML281 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::AnalogueValue_MX': UML282 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_OR': UML283 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_OR_dchg': UML284 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::BOOLEAN_OR_dchg': UML285 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_SE': UML286 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_SE_dchg': UML287 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::EnumFCDA_SE_dchg': UML288 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::BOOLEAN_SE': UML289 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::Point_SE': UML290 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_SG': UML291 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_SG_dchg': UML292 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::EnumFCDA_SG_dchg': UML293 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::BOOLEAN_SG': UML294 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::Point_SG': UML295 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_SP': UML296 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_SP_dchg': UML297 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::BOOLEAN_SP_dchg': UML298 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::Point_SP': UML299 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_ST': UML300 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::EnumFCDA_ST': UML301 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_ST_dchg': UML302 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::EnumFCDA_ST_dchg': UML303 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::PackedEnumFCDA_SP_dchg': UML304 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::DpStatus_ST_dchg': UML305 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::EnumDA_ST_dchg': UML306 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::PhaseFaultDirection_ST_dchg': UML307 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::BOOLEAN_ST_dchg': UML308 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::INT32_ST_dchg': UML309 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_ST_dchg_dupd': UML310 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::EnumFCDA_ST_dchg_dupd': UML311 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::EnumDA_ST_dchg_dupd': UML312 +2024-09-07 12:38:51,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::INT32_ST_dchg_dupd': UML313 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_ST_dupd': UML314 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_ST_qchg': UML315 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::Quality_ST_qchg': UML316 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::TimeStamp_ST': UML317 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_SV': UML318 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::EnumFCDA_SV': UML319 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::PackedEnumFCDA_SV': UML320 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::DpStatus_SV': UML321 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::EnumDA_SV': UML322 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::BOOLEAN_SV': UML323 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::Quality_SV': UML324 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::DA': UML325 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::PrimitiveDA': UML326 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BasicDAs::PHYCOMADDR': UML327 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BasicDAs::ObjectReference': UML328 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BasicDAs::VISIBLE_STRING255': UML329 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BasicDAs::UNICODE_STRING255': UML330 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BasicDAs::INT32U': UML331 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BasicDAs::INT32': UML332 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BasicDAs::INT16U': UML333 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BasicDAs::FLOAT32': UML334 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BasicDAs::BOOLEAN': UML335 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::PackedPrimitiveDA': UML336 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BasicDAs::TriggerConditions': UML337 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BasicDAs::TimeStamp': UML338 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ConstructedDAs::Quality': UML339 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::EnumDA': UML340 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::PackedEnumDA': UML341 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BasicDAs::BsControl': UML342 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BasicDAs::DpStatus': UML343 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ImplicitDAs::SIUnit': UML344 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ImplicitDAs::Multiplier': UML345 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ImplicitDAs::PhaseFaultDirection': UML346 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ImplicitDAs::PhaseAngleReference': UML347 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedDAs::BehaviourMode': UML348 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedDAs::CalcMethod': UML349 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedDAs::Health': UML350 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedDAs_7_420::Material': UML351 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedDAs_7_420::Material_control': UML352 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedDAs_7_420::Other': UML353 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::ComposedDA': UML354 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ConstructedDAs::AnalogueValue': UML355 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ConstructedDAs::RangeConfig': UML356 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ConstructedDAs::Unit': UML357 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ConstructedDAs::Point': UML358 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::DS': UML359 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::LNOwnedDS': UML360 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::ConfiguredDS': UML361 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::PersistentDS': UML362 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::NonPersistentDS': UML363 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::ControlBlock': UML364 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::RCB': UML365 +2024-09-07 12:38:51,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::BRCB': UML366 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::URCB': UML367 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::LCB': UML368 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::GCB': UML369 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::SVCB': UML370 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::MSVCB': UML371 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::USVCB': UML372 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::SGCB': UML373 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::LOG': UML374 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::IED': UML375 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::SERVER': UML376 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::FCD': UML377 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::FILE': UML378 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::TPAA': UML379 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::MCAA': UML380 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedCDCs::SPCTransient': UML381 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::ExtBaseKind': UML382 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Ext1::Apple': UML383 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Ext1::Strawberry': UML384 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Ext2::Dog': UML385 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Ext2::Horse': UML386 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Currency.USD': UML387 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Currency.EUR': UML388 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Currency.AUD': UML389 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Currency.CAD': UML390 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Currency.CHF': UML391 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Currency.CNY': UML392 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Currency.DKK': UML393 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Currency.GBP': UML394 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Currency.JPY': UML395 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Currency.NOK': UML396 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Currency.RUR': UML397 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Currency.SEK': UML398 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Currency.INR': UML399 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Currency.other': UML400 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitMultiplier.p': UML401 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitMultiplier.n': UML402 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitMultiplier.micro': UML403 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitMultiplier.m': UML404 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitMultiplier.c': UML405 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitMultiplier.d': UML406 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitMultiplier.k': UML407 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitMultiplier.M': UML408 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitMultiplier.G': UML409 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitMultiplier.T': UML410 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitMultiplier.none': UML411 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.VA': UML412 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.W': UML413 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.VAr': UML414 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.VAh': UML415 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.Wh': UML416 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.VArh': UML417 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.V': UML418 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.ohm': UML419 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.A': UML420 +2024-09-07 12:38:51,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.F': UML421 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.H': UML422 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.ºC': UML423 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.s': UML424 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.min': UML425 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.h': UML426 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.deg': UML427 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.rad': UML428 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.J': UML429 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.N': UML430 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.S': UML431 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.none': UML432 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.Hz': UML433 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.g': UML434 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.Pa': UML435 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.m': UML436 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.m2': UML437 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.m3': UML438 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.V/VAr': UML439 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.W/Hz': UML440 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.J/s': UML441 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.s-1': UML442 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.kg/J': UML443 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.W/s': UML444 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.Hz-1': UML445 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::WithSingleLiteral.singleLiteral': UML446 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::YesNo.Yes': UML447 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::YesNo.No': UML448 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::BreakerConfiguration.singleBreaker': UML449 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::BreakerConfiguration.breakerAndAHalf': UML450 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::BreakerConfiguration.doubleBreaker': UML451 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::BreakerConfiguration.noBreaker': UML452 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::BusbarConfiguration.singleBus': UML453 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::BusbarConfiguration.doubleBus': UML454 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::BusbarConfiguration.mainWithTransfer': UML455 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::BusbarConfiguration.ringBus': UML456 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.ABCN': UML457 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.ABC': UML458 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.ABN': UML459 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.ACN': UML460 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.BCN': UML461 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.AB': UML462 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.AC': UML463 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.BC': UML464 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.AN': UML465 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.BN': UML466 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.CN': UML467 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.A': UML468 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.B': UML469 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.C': UML470 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.N': UML471 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.splitSecondary1N': UML472 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.splitSecondary2N': UML473 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.splitSecondary12N': UML474 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Topology::TestEnum.J/m²': UML475 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Topology::TestEnum.µ': UML476 +2024-09-07 12:38:51,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithSomeIntCodes.lit10': UML477 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithSomeIntCodes.lit20noCode': UML478 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithSomeIntCodes.lit30': UML479 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithSomeIntCodes.lit40': UML480 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithSomeIntCodes.lit50': UML481 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithSomeIntCodes.lit60noCode': UML482 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithSomeIntCodes.lit70': UML483 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithStringCodes.str1': UML484 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithStringCodes.str2': UML485 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithStringCodes.str3noCode': UML486 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithStringCodes.str4': UML487 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithStringCodes.str5': UML488 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithNonUniqueCodes.c1': UML489 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithNonUniqueCodes.c2': UML490 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithNonUniqueCodes.c3': UML491 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithNonUniqueCodes.c4': UML492 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithNonUniqueCodes.c5': UML493 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithNonUniqueCodes.c6': UML494 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithNonUniqueCodes.c7': UML495 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithNonUniqueCodes.c8': UML496 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FunctionalConstraints::FcKind.ST': UML497 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FunctionalConstraints::FcKind.MX': UML498 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FunctionalConstraints::FcKind.SP': UML499 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FunctionalConstraints::FcKind.SV': UML500 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FunctionalConstraints::FcKind.CF': UML501 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FunctionalConstraints::FcKind.DC': UML502 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FunctionalConstraints::FcKind.SG': UML503 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FunctionalConstraints::FcKind.SE': UML504 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FunctionalConstraints::FcKind.SR': UML505 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FunctionalConstraints::FcKind.OR': UML506 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FunctionalConstraints::FcKind.BL': UML507 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FunctionalConstraints::FcKind.EX': UML508 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FunctionalConstraints::FcKind.XX': UML509 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TriggerOptions::TrgOpKind.dchg': UML510 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TriggerOptions::TrgOpKind.qchg': UML511 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TriggerOptions::TrgOpKind.dupd': UML512 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TriggerOptions::TrgOpKind.dchg, dupd': UML513 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ACSIEnums::BsControlKind.stop': UML514 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ACSIEnums::BsControlKind.lower': UML515 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ACSIEnums::BsControlKind.higher': UML516 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ACSIEnums::BsControlKind.reserved': UML517 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ACSIEnums::DpStatusKind.intermediateState': UML518 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ACSIEnums::DpStatusKind.offOrFalse': UML519 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ACSIEnums::DpStatusKind.onOrTrue': UML520 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ACSIEnums::DpStatusKind.badState': UML521 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::TimeAccuracyKind.T0': UML522 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::TimeAccuracyKind.T1': UML523 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::TimeAccuracyKind.T2': UML524 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::TimeAccuracyKind.T3': UML525 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::TimeAccuracyKind.T4': UML526 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::TimeAccuracyKind.T5': UML527 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::TimeAccuracyKind.unspecified': UML528 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::ServiceFcKind.SP': UML529 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::ServiceFcKind.BR': UML530 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::ServiceFcKind.RP': UML531 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::ServiceFcKind.LG': UML532 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::ServiceFcKind.GO': UML533 +2024-09-07 12:38:51,361 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::ServiceFcKind.MS': UML534 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::ServiceFcKind.US': UML535 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::ServiceFcKind.XX': UML536 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_BOOLEAN': UML537 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_INT8': UML538 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_INT8U': UML539 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_INT16': UML540 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_INT16U': UML541 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_INT24U': UML542 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_INT32': UML543 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_INT32U': UML544 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_INT64': UML545 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_FLOAT32': UML546 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_OCTET_STRING64': UML547 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_VISIBLE_STRING64': UML548 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_VISIBLE_STRING255': UML549 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_UNICODE_STRING255': UML550 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_TimeStamp': UML551 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.Quality': UML552 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_ObjectReference': UML553 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_PHYCOMADDR': UML554 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_TriggerConditions': UML555 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.M': UML556 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.O': UML557 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MFsubst': UML558 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.AtLeastOne(n)': UML559 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.AllOrNonePerGroup(n)': UML560 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.AtMostOne': UML561 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MF(sibling)': UML562 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.AllOnlyOneGroup(n)': UML563 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MOln0': UML564 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MFln0': UML565 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MOlnNs': UML566 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MOdataNs': UML567 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MOcdcNs': UML568 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MFscaledAV': UML569 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MFscaledMagV': UML570 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MFscaledAngV': UML571 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MFsg': UML572 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.OFsg': UML573 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MFsgAtLeastOne': UML574 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MFnsg': UML575 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.OFnsg': UML576 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MFnsgAtLeastOne': UML577 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MFrms': UML578 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.Mmulti': UML579 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.Omulti': UML580 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.OmultiRange(min, max)': UML581 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MOcond(condID)': UML582 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MF(condID)': UML583 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.OF(condID)': UML584 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MOrootLD': UML585 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.none': UML586 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.m': UML587 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.kg': UML588 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.s': UML589 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.A': UML590 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.K': UML591 +2024-09-07 12:38:51,362 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.mol': UML592 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.cd': UML593 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.deg': UML594 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.rad': UML595 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.sr': UML596 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.Gy': UML597 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.Bq': UML598 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.°C': UML599 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.Sv': UML600 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.F': UML601 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.C': UML602 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.S': UML603 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.H': UML604 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.V': UML605 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.ohm': UML606 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.J': UML607 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.N': UML608 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.Hz': UML609 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.lx': UML610 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.Lm': UML611 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.Wb': UML612 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.T': UML613 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.W': UML614 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.Pa': UML615 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.m²': UML616 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.m³': UML617 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.m/s': UML618 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.m/s²': UML619 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.m³/s': UML620 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.m/m³': UML621 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.M': UML622 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.kg/m³': UML623 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.m²/s': UML624 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.W/m K': UML625 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.J/K': UML626 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.ppm': UML627 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.1/s': UML628 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.rad/s': UML629 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.W/m²': UML630 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.J/m²': UML631 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.S/m': UML632 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.K/s': UML633 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.Pa/s': UML634 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.J/kg K': UML635 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.VA': UML636 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.Watts': UML637 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.VAr': UML638 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.phi': UML639 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.cos(phi)': UML640 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.Vs': UML641 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.V²': UML642 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.As': UML643 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.A²': UML644 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.A²t': UML645 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.VAh': UML646 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.Wh': UML647 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.VArh': UML648 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.V/Hz': UML649 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.Hz/s': UML650 +2024-09-07 12:38:51,363 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.char': UML651 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.char/s': UML652 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.kgm²': UML653 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.dB': UML654 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.J/Wh': UML655 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.W/s': UML656 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.l/s': UML657 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.dBm': UML658 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.y': UML659 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.z': UML660 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.a': UML661 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.f': UML662 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.p': UML663 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.n': UML664 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.µ': UML665 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.m': UML666 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.c': UML667 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.d': UML668 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.none': UML669 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.da': UML670 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.h': UML671 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.k': UML672 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.M': UML673 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.G': UML674 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.T': UML675 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.P': UML676 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.E': UML677 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.Z': UML678 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.Y': UML679 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseFaultDirectionKind.unknown': UML680 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseFaultDirectionKind.forward': UML681 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseFaultDirectionKind.backward': UML682 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseAngleReferenceKind.Va': UML683 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseAngleReferenceKind.Vb': UML684 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseAngleReferenceKind.Vc': UML685 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseAngleReferenceKind.Aa': UML686 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseAngleReferenceKind.Ab': UML687 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseAngleReferenceKind.Ac': UML688 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseAngleReferenceKind.Vab': UML689 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseAngleReferenceKind.Vbc': UML690 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseAngleReferenceKind.Vca': UML691 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseAngleReferenceKind.Vother': UML692 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseAngleReferenceKind.Aother': UML693 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseAngleReferenceKind.Synchrophasor': UML694 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ConstructedDAs::ValidityKind.good': UML695 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ConstructedDAs::ValidityKind.invalid': UML696 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ConstructedDAs::ValidityKind.reserved': UML697 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ConstructedDAs::ValidityKind.questionable': UML698 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ConstructedDAs::SourceKind.process': UML699 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ConstructedDAs::SourceKind.substituted': UML700 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations::AbbrTermAny.A': UML701 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations::AbbrTermAny.Z': UML702 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations::AbbrTermAny.aDummy': UML703 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations::AbbrTermAny.Alm': UML704 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations::AbbrTermAny.Z1': UML705 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations::AbbrTermAny.Amp': UML706 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations::AbbrTermAny.ppm': UML707 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations::AbbrTermAny.km': UML708 +2024-09-07 12:38:51,364 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations::AbbrTermZ.Z0': UML709 +2024-09-07 12:38:51,365 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations::AbbrTermZ.Zro': UML710 +2024-09-07 12:38:51,365 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::HealthKind.Ok': UML711 +2024-09-07 12:38:51,365 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::HealthKind.Warning': UML712 +2024-09-07 12:38:51,365 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::HealthKind.Alarm': UML713 +2024-09-07 12:38:51,365 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::BehaviourModeKind.on': UML714 +2024-09-07 12:38:51,365 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::BehaviourModeKind.on-blocked': UML715 +2024-09-07 12:38:51,365 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::BehaviourModeKind.test': UML716 +2024-09-07 12:38:51,365 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::BehaviourModeKind.test/blocked': UML717 +2024-09-07 12:38:51,365 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::BehaviourModeKind.off': UML718 +2024-09-07 12:38:51,365 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::CalcMethodKind.UNSPECIFIED': UML719 +2024-09-07 12:38:51,365 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::CalcMethodKind.TRUE_RMS': UML720 +2024-09-07 12:38:51,365 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::CalcMethodKind.PEAK_FUNDAMENTAL': UML721 +2024-09-07 12:38:51,365 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::CalcMethodKind.RMS_FUNDAMENTAL': UML722 +2024-09-07 12:38:51,365 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::CalcMethodKind.MIN': UML723 +2024-09-07 12:38:51,365 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::CalcMethodKind.MAX': UML724 +2024-09-07 12:38:51,365 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::CalcMethodKind.AVG': UML725 +2024-09-07 12:38:51,365 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::CalcMethodKind.SDV': UML726 +2024-09-07 12:38:51,365 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::CalcMethodKind.PREDICTION': UML727 +2024-09-07 12:38:51,365 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::CalcMethodKind.RATE': UML728 +2024-09-07 12:38:51,365 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::BaseKind.bk1': UML729 +2024-09-07 12:38:51,365 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::BaseKind.bk2': UML730 +2024-09-07 12:38:51,365 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::BaseKind.bk3': UML731 +2024-09-07 12:38:51,365 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::MaterialKind.mat1': UML732 +2024-09-07 12:38:51,365 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::MaterialKind.mat2': UML733 +2024-09-07 12:38:51,365 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::MaterialKind.mat3': UML734 +2024-09-07 12:38:51,365 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::MaterialTransitionKind.trans1': UML735 +2024-09-07 12:38:51,365 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::MaterialTransitionKind.trans2': UML736 +2024-09-07 12:38:51,365 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::MaterialTransitionKind.trans3': UML737 +2024-09-07 12:38:51,365 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::OtherKind.mat1': UML738 +2024-09-07 12:38:51,365 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::OtherKind.mat2': UML739 +2024-09-07 12:38:51,365 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::OtherKind.mat3': UML740 +2024-09-07 12:38:51,365 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations_410::AbbrTermA.Abc': UML741 +2024-09-07 12:38:51,365 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations_410::AbbrTermA.Alm2': UML742 +2024-09-07 12:38:51,365 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations_410::AbbrTermA.Amp': UML743 +2024-09-07 12:38:51,365 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Ext1::FruitBinKind.plastic': UML744 +2024-09-07 12:38:51,365 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Ext1::FruitBinKind.straw': UML745 +2024-09-07 12:38:51,365 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Ext1::FruitBinKind.glass': UML746 +2024-09-07 12:38:51,365 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::ExtBaseKind.ebk1': UML747 +2024-09-07 12:38:51,365 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::ExtBaseKind.ebk2': UML748 +2024-09-07 12:38:51,365 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::ExtBaseKind.ebk3': UML749 +2024-09-07 12:38:51,404 [main] INFO PackageDocImpl - collecting doc for package TC57CIMProfiles ... +2024-09-07 12:38:51,416 [main] INFO PackageDocImpl - collecting doc for package TC57CIM ... +2024-09-07 12:38:51,417 [main] INFO PackageDocImpl - collecting doc for package IEC61970 ... +2024-09-07 12:38:51,417 [main] INFO DocCollectorImpl - >> retained scoped CIM/IEC61970CIM14v12/IEC61970 +2024-09-07 12:38:51,457 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbsoluteDateTime, hphSpec = 'aaùAbsoluteDateTimeùUML11ùdd' +2024-09-07 12:38:51,458 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,464 [main] INFO PackageDocImpl - collecting doc for package Domain ... +2024-09-07 12:38:51,466 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Float, hphSpec = 'aaùFloatùUML17ùdd' +2024-09-07 12:38:51,466 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitSymbol, hphSpec = 'aaùUnitSymbolùUML24ùdd' +2024-09-07 12:38:51,466 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitMultiplier, hphSpec = 'aaùUnitMultiplierùUML23ùdd' +2024-09-07 12:38:51,466 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitSymbol, hphSpec = 'aaùUnitSymbolùUML24ùdd' +2024-09-07 12:38:51,467 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitMultiplier, hphSpec = 'aaùUnitMultiplierùUML23ùdd' +2024-09-07 12:38:51,467 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Float, hphSpec = 'aaùFloatùUML17ùdd' +2024-09-07 12:38:51,467 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitSymbol, hphSpec = 'aaùUnitSymbolùUML24ùdd' +2024-09-07 12:38:51,467 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitMultiplier, hphSpec = 'aaùUnitMultiplierùUML23ùdd' +2024-09-07 12:38:51,473 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Float, hphSpec = 'aaùFloatùUML17ùdd' +2024-09-07 12:38:51,473 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Currency, hphSpec = 'aaùCurrencyùUML16ùdd' +2024-09-07 12:38:51,473 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitMultiplier, hphSpec = 'aaùUnitMultiplierùUML23ùdd' +2024-09-07 12:38:51,473 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Float, hphSpec = 'aaùFloatùUML17ùdd' +2024-09-07 12:38:51,473 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitSymbol, hphSpec = 'aaùUnitSymbolùUML24ùdd' +2024-09-07 12:38:51,473 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitMultiplier, hphSpec = 'aaùUnitMultiplierùUML23ùdd' +2024-09-07 12:38:51,474 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Float, hphSpec = 'aaùFloatùUML17ùdd' +2024-09-07 12:38:51,474 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitSymbol, hphSpec = 'aaùUnitSymbolùUML24ùdd' +2024-09-07 12:38:51,474 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitMultiplier, hphSpec = 'aaùUnitMultiplierùUML23ùdd' +2024-09-07 12:38:51,477 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Float, hphSpec = 'aaùFloatùUML17ùdd' +2024-09-07 12:38:51,477 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitSymbol, hphSpec = 'aaùUnitSymbolùUML24ùdd' +2024-09-07 12:38:51,477 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitMultiplier, hphSpec = 'aaùUnitMultiplierùUML23ùdd' +2024-09-07 12:38:51,478 [main] INFO PackageDocImpl - collecting doc for package Core ... +2024-09-07 12:38:51,479 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,479 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ApparentPower, hphSpec = 'aaùApparentPowerùUML14ùdd' +2024-09-07 12:38:51,479 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,479 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,479 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,479 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,479 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,479 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,480 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,480 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-07 12:38:51,480 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-07 12:38:51,480 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,480 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,480 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,480 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,480 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,480 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,480 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-07 12:38:51,480 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-07 12:38:51,480 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitSymbol, hphSpec = 'aaùUnitSymbolùUML24ùdd' +2024-09-07 12:38:51,480 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-07 12:38:51,480 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConductingEquipment, hphSpec = 'aaùConductingEquipmentùUML174ùdd' +2024-09-07 12:38:51,480 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VoltageLevel, hphSpec = 'aaùVoltageLevelùUML172ùdd' +2024-09-07 12:38:51,480 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TopologicalNode, hphSpec = 'aaùTopologicalNodeùUML177ùdd' +2024-09-07 12:38:51,480 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MyClass, hphSpec = 'aaùMyClassùUML178ùdd' +2024-09-07 12:38:51,480 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-07 12:38:51,480 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AttrDuplication, hphSpec = 'aaùAttrDuplicationùUML179ùdd' +2024-09-07 12:38:51,480 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-07 12:38:51,481 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EquipmentContainer, hphSpec = 'aaùEquipmentContainerùUML169ùdd' +2024-09-07 12:38:51,481 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNodeContainer, hphSpec = 'aaùConnectivityNodeContainerùUML167ùdd' +2024-09-07 12:38:51,481 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,481 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,481 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Pear, hphSpec = 'aaùPearùUML168ùdd' +2024-09-07 12:38:51,481 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Fruit, hphSpec = 'aaùFruitùUML152ùdd' +2024-09-07 12:38:51,481 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-07 12:38:51,484 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-07 12:38:51,484 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BreakerConfiguration, hphSpec = 'aaùBreakerConfigurationùUML28ùdd' +2024-09-07 12:38:51,484 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BusbarConfiguration, hphSpec = 'aaùBusbarConfigurationùUML29ùdd' +2024-09-07 12:38:51,484 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = YesNo, hphSpec = 'aaùYesNoùUML27ùdd' +2024-09-07 12:38:51,484 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = YesNo, hphSpec = 'aaùYesNoùUML27ùdd' +2024-09-07 12:38:51,484 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,484 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,484 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,484 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,484 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,484 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,484 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,484 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,484 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Substation, hphSpec = 'aaùSubstationùUML171ùdd' +2024-09-07 12:38:51,485 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VoltageLevel, hphSpec = 'aaùVoltageLevelùUML172ùdd' +2024-09-07 12:38:51,485 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Equipment, hphSpec = 'aaùEquipmentùUML173ùdd' +2024-09-07 12:38:51,485 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EquipmentContainer, hphSpec = 'aaùEquipmentContainerùUML169ùdd' +2024-09-07 12:38:51,485 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNode, hphSpec = 'aaùConnectivityNodeùUML175ùdd' +2024-09-07 12:38:51,485 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNodeContainer, hphSpec = 'aaùConnectivityNodeContainerùUML167ùdd' +2024-09-07 12:38:51,485 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TopologicalNode, hphSpec = 'aaùTopologicalNodeùUML177ùdd' +2024-09-07 12:38:51,485 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNodeContainer, hphSpec = 'aaùConnectivityNodeContainerùUML167ùdd' +2024-09-07 12:38:51,485 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OperatingShare, hphSpec = 'aaùOperatingShareùUML30ùdd' +2024-09-07 12:38:51,485 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,485 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Apple, hphSpec = 'aaùAppleùUML383ùdd' +2024-09-07 12:38:51,485 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Pear, hphSpec = 'aaùPearùUML168ùdd' +2024-09-07 12:38:51,485 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Apple, hphSpec = 'aaùAppleùUML383ùdd' +2024-09-07 12:38:51,485 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Pear, hphSpec = 'aaùPearùUML168ùdd' +2024-09-07 12:38:51,485 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,485 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,485 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,485 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,486 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Equipment, hphSpec = 'aaùEquipmentùUML173ùdd' +2024-09-07 12:38:51,486 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,486 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,486 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PhaseCode, hphSpec = 'aaùPhaseCodeùUML31ùdd' +2024-09-07 12:38:51,486 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-07 12:38:51,486 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Equipment, hphSpec = 'aaùEquipmentùUML173ùdd' +2024-09-07 12:38:51,486 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,486 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,486 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,486 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,486 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,486 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,486 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,486 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,486 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Terminal, hphSpec = 'aaùTerminalùUML159ùdd' +2024-09-07 12:38:51,486 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EquipmentContainer, hphSpec = 'aaùEquipmentContainerùUML169ùdd' +2024-09-07 12:38:51,487 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Equipment, hphSpec = 'aaùEquipmentùUML173ùdd' +2024-09-07 12:38:51,487 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OperatingShare, hphSpec = 'aaùOperatingShareùUML30ùdd' +2024-09-07 12:38:51,487 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,487 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,487 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,487 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,487 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,487 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,487 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,487 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,487 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,487 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,487 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,487 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,487 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,487 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,487 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,488 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNode, hphSpec = 'aaùConnectivityNodeùUML175ùdd' +2024-09-07 12:38:51,488 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TopologicalNode, hphSpec = 'aaùTopologicalNodeùUML177ùdd' +2024-09-07 12:38:51,488 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OperatingShare, hphSpec = 'aaùOperatingShareùUML30ùdd' +2024-09-07 12:38:51,488 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,488 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,488 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,488 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,488 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,488 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,488 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,488 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-07 12:38:51,488 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,488 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,489 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,489 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,489 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,489 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,489 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,489 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,489 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EquipmentContainer, hphSpec = 'aaùEquipmentContainerùUML169ùdd' +2024-09-07 12:38:51,489 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OperatingShare, hphSpec = 'aaùOperatingShareùUML30ùdd' +2024-09-07 12:38:51,489 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,489 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,489 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,489 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,489 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,489 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNodeContainer, hphSpec = 'aaùConnectivityNodeContainerùUML167ùdd' +2024-09-07 12:38:51,489 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,489 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,490 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Pear, hphSpec = 'aaùPearùUML168ùdd' +2024-09-07 12:38:51,490 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Fruit, hphSpec = 'aaùFruitùUML152ùdd' +2024-09-07 12:38:51,490 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,490 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,490 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,490 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,490 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,490 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,490 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,490 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,490 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Equipment, hphSpec = 'aaùEquipmentùUML173ùdd' +2024-09-07 12:38:51,490 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNode, hphSpec = 'aaùConnectivityNodeùUML175ùdd' +2024-09-07 12:38:51,490 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNodeContainer, hphSpec = 'aaùConnectivityNodeContainerùUML167ùdd' +2024-09-07 12:38:51,490 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TopologicalNode, hphSpec = 'aaùTopologicalNodeùUML177ùdd' +2024-09-07 12:38:51,490 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNodeContainer, hphSpec = 'aaùConnectivityNodeContainerùUML167ùdd' +2024-09-07 12:38:51,490 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OperatingShare, hphSpec = 'aaùOperatingShareùUML30ùdd' +2024-09-07 12:38:51,490 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,490 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Apple, hphSpec = 'aaùAppleùUML383ùdd' +2024-09-07 12:38:51,490 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Pear, hphSpec = 'aaùPearùUML168ùdd' +2024-09-07 12:38:51,491 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Apple, hphSpec = 'aaùAppleùUML383ùdd' +2024-09-07 12:38:51,491 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Pear, hphSpec = 'aaùPearùUML168ùdd' +2024-09-07 12:38:51,491 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,491 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,491 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,491 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,491 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,491 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,491 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,491 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,491 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,491 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,491 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,491 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubGeographicalRegion, hphSpec = 'aaùSubGeographicalRegionùUML163ùdd' +2024-09-07 12:38:51,492 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,492 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,492 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,492 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,492 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,492 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,492 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,492 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OperatingShare, hphSpec = 'aaùOperatingShareùUML30ùdd' +2024-09-07 12:38:51,492 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PerCent, hphSpec = 'aaùPerCentùUML20ùdd' +2024-09-07 12:38:51,493 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OperatingParticipant, hphSpec = 'aaùOperatingParticipantùUML165ùdd' +2024-09-07 12:38:51,493 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,494 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,494 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,494 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,494 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,494 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,494 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,494 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,494 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,494 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OperatingShare, hphSpec = 'aaùOperatingShareùUML30ùdd' +2024-09-07 12:38:51,495 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,495 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,495 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,495 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,495 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,495 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,495 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,495 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Substation, hphSpec = 'aaùSubstationùUML171ùdd' +2024-09-07 12:38:51,496 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = geographicalRegion, hphSpec = 'aaùgeographicalRegionùUML164ùdd' +2024-09-07 12:38:51,496 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EquipmentContainer, hphSpec = 'aaùEquipmentContainerùUML169ùdd' +2024-09-07 12:38:51,496 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNodeContainer, hphSpec = 'aaùConnectivityNodeContainerùUML167ùdd' +2024-09-07 12:38:51,496 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,496 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,496 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Pear, hphSpec = 'aaùPearùUML168ùdd' +2024-09-07 12:38:51,496 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Fruit, hphSpec = 'aaùFruitùUML152ùdd' +2024-09-07 12:38:51,496 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,496 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,496 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,496 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,496 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,496 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,496 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,496 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,496 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VoltageLevel, hphSpec = 'aaùVoltageLevelùUML172ùdd' +2024-09-07 12:38:51,496 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Bay, hphSpec = 'aaùBayùUML170ùdd' +2024-09-07 12:38:51,496 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubGeographicalRegion, hphSpec = 'aaùSubGeographicalRegionùUML163ùdd' +2024-09-07 12:38:51,496 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Equipment, hphSpec = 'aaùEquipmentùUML173ùdd' +2024-09-07 12:38:51,496 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EquipmentContainer, hphSpec = 'aaùEquipmentContainerùUML169ùdd' +2024-09-07 12:38:51,496 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNode, hphSpec = 'aaùConnectivityNodeùUML175ùdd' +2024-09-07 12:38:51,496 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNodeContainer, hphSpec = 'aaùConnectivityNodeContainerùUML167ùdd' +2024-09-07 12:38:51,497 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TopologicalNode, hphSpec = 'aaùTopologicalNodeùUML177ùdd' +2024-09-07 12:38:51,497 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNodeContainer, hphSpec = 'aaùConnectivityNodeContainerùUML167ùdd' +2024-09-07 12:38:51,497 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OperatingShare, hphSpec = 'aaùOperatingShareùUML30ùdd' +2024-09-07 12:38:51,497 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,497 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Apple, hphSpec = 'aaùAppleùUML383ùdd' +2024-09-07 12:38:51,497 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Pear, hphSpec = 'aaùPearùUML168ùdd' +2024-09-07 12:38:51,497 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Apple, hphSpec = 'aaùAppleùUML383ùdd' +2024-09-07 12:38:51,497 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Pear, hphSpec = 'aaùPearùUML168ùdd' +2024-09-07 12:38:51,497 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,497 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,497 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,497 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,497 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,497 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-07 12:38:51,497 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML18ùdd' +2024-09-07 12:38:51,497 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,497 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,497 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,497 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,497 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,497 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,497 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConductingEquipment, hphSpec = 'aaùConductingEquipmentùUML174ùdd' +2024-09-07 12:38:51,498 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNode, hphSpec = 'aaùConnectivityNodeùUML175ùdd' +2024-09-07 12:38:51,498 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TopologicalNode, hphSpec = 'aaùTopologicalNodeùUML177ùdd' +2024-09-07 12:38:51,498 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,498 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EquipmentContainer, hphSpec = 'aaùEquipmentContainerùUML169ùdd' +2024-09-07 12:38:51,498 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNodeContainer, hphSpec = 'aaùConnectivityNodeContainerùUML167ùdd' +2024-09-07 12:38:51,498 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,498 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,498 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Pear, hphSpec = 'aaùPearùUML168ùdd' +2024-09-07 12:38:51,498 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Fruit, hphSpec = 'aaùFruitùUML152ùdd' +2024-09-07 12:38:51,498 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Voltage, hphSpec = 'aaùVoltageùUML25ùdd' +2024-09-07 12:38:51,498 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Voltage, hphSpec = 'aaùVoltageùUML25ùdd' +2024-09-07 12:38:51,499 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,499 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,499 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,499 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,499 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,499 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,499 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,499 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,499 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseVoltage, hphSpec = 'aaùBaseVoltageùUML161ùdd' +2024-09-07 12:38:51,500 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Bay, hphSpec = 'aaùBayùUML170ùdd' +2024-09-07 12:38:51,500 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Substation, hphSpec = 'aaùSubstationùUML171ùdd' +2024-09-07 12:38:51,500 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Equipment, hphSpec = 'aaùEquipmentùUML173ùdd' +2024-09-07 12:38:51,500 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EquipmentContainer, hphSpec = 'aaùEquipmentContainerùUML169ùdd' +2024-09-07 12:38:51,500 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNode, hphSpec = 'aaùConnectivityNodeùUML175ùdd' +2024-09-07 12:38:51,500 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNodeContainer, hphSpec = 'aaùConnectivityNodeContainerùUML167ùdd' +2024-09-07 12:38:51,500 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TopologicalNode, hphSpec = 'aaùTopologicalNodeùUML177ùdd' +2024-09-07 12:38:51,500 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNodeContainer, hphSpec = 'aaùConnectivityNodeContainerùUML167ùdd' +2024-09-07 12:38:51,500 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OperatingShare, hphSpec = 'aaùOperatingShareùUML30ùdd' +2024-09-07 12:38:51,500 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,500 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Apple, hphSpec = 'aaùAppleùUML383ùdd' +2024-09-07 12:38:51,500 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Pear, hphSpec = 'aaùPearùUML168ùdd' +2024-09-07 12:38:51,500 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Apple, hphSpec = 'aaùAppleùUML383ùdd' +2024-09-07 12:38:51,500 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Pear, hphSpec = 'aaùPearùUML168ùdd' +2024-09-07 12:38:51,500 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,501 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,501 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,501 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,501 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,501 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,501 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,511 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Bay, hphSpec = 'aaùBayùUML170ùdd' +2024-09-07 12:38:51,511 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = YesNo, hphSpec = 'aaùYesNoùUML27ùdd' +2024-09-07 12:38:51,511 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,511 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,512 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,512 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,512 [main] DEBUG DataIndexDoc - Attribute 'basePower' defined on multiple classes in and under 'Core' - may be possible to avoid duplication by using inheritance. +2024-09-07 12:38:51,512 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseVoltage, hphSpec = 'aaùBaseVoltageùUML161ùdd' +2024-09-07 12:38:51,512 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePower, hphSpec = 'aaùBasePowerùUML162ùdd' +2024-09-07 12:38:51,512 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-07 12:38:51,512 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ApparentPower, hphSpec = 'aaùApparentPowerùUML14ùdd' +2024-09-07 12:38:51,512 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Bay, hphSpec = 'aaùBayùUML170ùdd' +2024-09-07 12:38:51,512 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-07 12:38:51,512 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Bay, hphSpec = 'aaùBayùUML170ùdd' +2024-09-07 12:38:51,512 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-07 12:38:51,512 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Bay, hphSpec = 'aaùBayùUML170ùdd' +2024-09-07 12:38:51,512 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BreakerConfiguration, hphSpec = 'aaùBreakerConfigurationùUML28ùdd' +2024-09-07 12:38:51,512 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Bay, hphSpec = 'aaùBayùUML170ùdd' +2024-09-07 12:38:51,512 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BusbarConfiguration, hphSpec = 'aaùBusbarConfigurationùUML29ùdd' +2024-09-07 12:38:51,512 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Terminal, hphSpec = 'aaùTerminalùUML159ùdd' +2024-09-07 12:38:51,512 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-07 12:38:51,512 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VoltageLevel, hphSpec = 'aaùVoltageLevelùUML172ùdd' +2024-09-07 12:38:51,512 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Voltage, hphSpec = 'aaùVoltageùUML25ùdd' +2024-09-07 12:38:51,512 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VoltageLevel, hphSpec = 'aaùVoltageLevelùUML172ùdd' +2024-09-07 12:38:51,512 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Voltage, hphSpec = 'aaùVoltageùUML25ùdd' +2024-09-07 12:38:51,512 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,513 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,513 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,513 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,513 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Equipment, hphSpec = 'aaùEquipmentùUML173ùdd' +2024-09-07 12:38:51,513 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-07 12:38:51,513 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OperatingShare, hphSpec = 'aaùOperatingShareùUML30ùdd' +2024-09-07 12:38:51,513 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PerCent, hphSpec = 'aaùPerCentùUML20ùdd' +2024-09-07 12:38:51,513 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConductingEquipment, hphSpec = 'aaùConductingEquipmentùUML174ùdd' +2024-09-07 12:38:51,513 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PhaseCode, hphSpec = 'aaùPhaseCodeùUML31ùdd' +2024-09-07 12:38:51,513 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Terminal, hphSpec = 'aaùTerminalùUML159ùdd' +2024-09-07 12:38:51,513 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML18ùdd' +2024-09-07 12:38:51,513 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Bay, hphSpec = 'aaùBayùUML170ùdd' +2024-09-07 12:38:51,513 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = YesNo, hphSpec = 'aaùYesNoùUML27ùdd' +2024-09-07 12:38:51,513 [main] INFO PackageDocImpl - collected data index for Core ... +2024-09-07 12:38:51,513 [main] TRACE PackageDocImpl - org.tanjakostic.jcleancim.docgen.collector.impl.DataIndexDoc@1b7f657Data semantics + + shows all attributes defined on classes of Core package. +Attributes defined on classes of Core package +"Name" | "Type" | "(Used in) Description" +"TestYesNo1" | "aaùYesNoùUML27ùdd" | "(aaùBayùUML170ùdd) Indicates the presence/absence of energy measurements." +"aliasName" | "aaùStringùUML22ùdd" | "(aaùIdentifiedObjectùUML32ùdd) The aliasName is free text human readable name of the object alternative to IdentifiedObject.name. It may be non unique and may not correlate to a naming hierarchy. +The attribute aliasName is retained because of backwards compatibility between CIM relases. It is however recommended to replace aliasName with the Name class as aliasName is planned for retirement at a future time." +"attr" | "aaùStringùUML22ùdd" | "(aaùPowerSystemResourceùUML166ùdd) (deprecated) This is to test whether deprecated attribute gets its (deprecated) printed in Word." +"basePower" | "aaùBooleanùUML15ùdd, aaùApparentPowerùUML14ùdd" | "(aaùBaseVoltageùUML161ùdd) This is to test whether we print correctly multiple attributes of the same name (defined on different classes) within the data index table. +(aaùBasePowerùUML162ùdd) definition of base power." +"bayEnergyMeasFlag" | "aaùBooleanùUML15ùdd" | "(aaùBayùUML170ùdd) Indicates the presence/absence of energy measurements." +"bayPowerMeasFlag" | "aaùBooleanùUML15ùdd" | "(aaùBayùUML170ùdd) Indicates the presence/absence of active/reactive power measurements." +"breakerConfiguration" | "aaùBreakerConfigurationùUML28ùdd" | "(aaùBayùUML170ùdd) Breaker configuration." +"busBarConfiguration" | "aaùBusbarConfigurationùUML29ùdd" | "(aaùBayùUML170ùdd) Bus bar configuration." +"connected" | "aaùBooleanùUML15ùdd" | "(aaùTerminalùUML159ùdd) The terminal connection status. True implies the terminal is connected, and false implies the terminal is not connected. This is the result of topoplogical processing of a detailed Connectivity node and Switch model whether present in the model or not. A terminal that is not connected cannot support a current flow. A terminal that is connected may have flow. In general a multi-terminal device may simultaneously have connected and disconnected terminals. No other aspect of the algorithm" +"highVoltageLimit" | "aaùVoltageùUML25ùdd" | "(aaùVoltageLevelùUML172ùdd) The bus bar's high voltage limit" +"lowVoltageLimit" | "aaùVoltageùUML25ùdd" | "(aaùVoltageLevelùUML172ùdd) The bus bar's low voltage limit" +"mRID" | "aaùStringùUML22ùdd" | "(aaùIdentifiedObjectùUML32ùdd) Master resource identifier issued by a model authority. The mRID must semantically be a UUID as specified in RFC 4122. The mRID is globally unique. +For CIMXML data files in RDF syntax, the mRID is mapped to rdf:ID or rdf:about attributes that identify CIM object elements." +"name" | "aaùStringùUML22ùdd" | "(aaùIdentifiedObjectùUML32ùdd) The name is any free human readable and possibly non unique text naming the object." +"normaIlyInService" | "aaùBooleanùUML15ùdd" | "(aaùEquipmentùUML173ùdd) The equipment is normally in service." +"packagePrivateIsDC" | "" | "" +"percentage" | "aaùPerCentùUML20ùdd" | "(aaùOperatingShareùUML30ùdd) Percentage ownership for this device. The percentage indicates the percentage ownership of the PSROwner for the PowerSystemResource. The total percentage ownership for a PowerSystemResource should add to 100%." +"phases" | "aaùPhaseCodeùUML31ùdd" | "(aaùConductingEquipmentùUML174ùdd) Describes the phases carried by a conducting equipment." +"privateDummy" | "" | "" +"protectedNominalVoltage" | "" | "" +"sequenceNumber" | "aaùIntegerùUML18ùdd" | "(aaùTerminalùUML159ùdd) The orientation of the terminal connections for a multiple terminal conducting equipment. The sequence numbering starts with 1 and additional terminals should follow in increasing order. The first terminal is the "starting point" for a two terminal branch. In the case of class TransformerWinding only one terminal is used so its sequenceNumber must be 1." +"testYesNo2" | "aaùYesNoùUML27ùdd" | "(aaùBayùUML170ùdd) Indicates the presence/absence of energy measurements." + +2024-09-07 12:38:51,514 [main] INFO PackageDocImpl - collecting doc for package Topology ... +2024-09-07 12:38:51,516 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Terminal, hphSpec = 'aaùTerminalùUML159ùdd' +2024-09-07 12:38:51,516 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,516 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-07 12:38:51,516 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Terminal, hphSpec = 'aaùTerminalùUML159ùdd' +2024-09-07 12:38:51,516 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML18ùdd' +2024-09-07 12:38:51,516 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Terminal, hphSpec = 'aaùTerminalùUML159ùdd' +2024-09-07 12:38:51,517 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,517 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,517 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,517 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,517 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,517 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,517 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConductingEquipment, hphSpec = 'aaùConductingEquipmentùUML174ùdd' +2024-09-07 12:38:51,517 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Terminal, hphSpec = 'aaùTerminalùUML159ùdd' +2024-09-07 12:38:51,517 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNode, hphSpec = 'aaùConnectivityNodeùUML175ùdd' +2024-09-07 12:38:51,517 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Terminal, hphSpec = 'aaùTerminalùUML159ùdd' +2024-09-07 12:38:51,517 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TopologicalNode, hphSpec = 'aaùTopologicalNodeùUML177ùdd' +2024-09-07 12:38:51,517 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Terminal, hphSpec = 'aaùTerminalùUML159ùdd' +2024-09-07 12:38:51,517 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,517 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Terminal, hphSpec = 'aaùTerminalùUML159ùdd' +2024-09-07 12:38:51,518 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,518 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML18ùdd' +2024-09-07 12:38:51,518 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML18ùdd' +2024-09-07 12:38:51,518 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML18ùdd' +2024-09-07 12:38:51,518 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML18ùdd' +2024-09-07 12:38:51,518 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,518 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,518 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,519 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,519 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,519 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,520 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,520 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,520 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,520 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,520 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,520 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,520 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,520 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNodeContainer, hphSpec = 'aaùConnectivityNodeContainerùUML167ùdd' +2024-09-07 12:38:51,520 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TopologicalNode, hphSpec = 'aaùTopologicalNodeùUML177ùdd' +2024-09-07 12:38:51,520 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Terminal, hphSpec = 'aaùTerminalùUML159ùdd' +2024-09-07 12:38:51,521 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BusNameMarker, hphSpec = 'aaùBusNameMarkerùUML158ùdd' +2024-09-07 12:38:51,521 [main] INFO ClassDocImpl - ----------------------- in ClassDocImpl() ctor: +2024-09-07 12:38:51,521 [main] INFO ClassDocImpl - RAW: +(paraStart)Some intro - next 2 lines are empty.(paraEnd) +(paraStart)This is a (red) test class to exercise the "quasi" mark-up that EA java API returns from its various getNotes() methods. Using its provided method to return raw text is very slow.(paraEnd) +(paraStart)Here is the unordered list with two items:(paraEnd) +- list test +- bold list test +(paraStart)This the paragraph after a list.(paraEnd) +(paraStart)Follows the numbered list:(paraEnd) +1. first numbered item +2. italic numbered test +3. RTY-8-dws2=56 (RTY**-8-dws subscript 2=56 +(paraStart)Below we test one bulleted and one numbered item:(paraEnd) +- bulleted +1. numbered +(paraStart)And the inverse, with two numbered items (second is empty) and two bulleted items (first is empty):(paraEnd) +1. this one is numbered +2. +- +- and this one is bulleted +(paraStart)Last normal para test - there are two empty paragraphs below.(paraEnd) +2024-09-07 12:38:51,522 [main] INFO ClassDocImpl - ----------------------- +2024-09-07 12:38:51,522 [main] INFO ClassDocImpl - HTML: +

(paraStart)Some intro - next 2 lines are empty.(paraEnd)

(paraStart)This is a (red) test class to exercise the "quasi" mark-up that EA java API returns from its various getNotes() methods. Using its provided method to return raw text is very slow.(paraEnd)

(paraStart)Here is the unordered list with two items:(paraEnd)

  • list test
  • bold list test

(paraStart)This the paragraph after a list.(paraEnd)

(paraStart)Follows the numbered list:(paraEnd)

  1. first numbered item
  2. italic numbered test
  3. RTY-8-dws2=56 (RTY**-8-dws subscript 2=56

(paraStart)Below we test one bulleted and one numbered item:(paraEnd)

  • bulleted
  1. numbered

(paraStart)And the inverse, with two numbered items (second is empty) and two bulleted items (first is empty):(paraEnd)

  1. this one is numbered
  2.  
  •  
  • and this one is bulleted

(paraStart)Last normal para test - there are two empty paragraphs below.(paraEnd)

+2024-09-07 12:38:51,522 [main] INFO ClassDocImpl - ----------------------- +2024-09-07 12:38:51,522 [main] INFO ClassDocImpl - HTML unesc Java: +<p>(paraStart)Some intro - next 2 lines are empty.(paraEnd)</p><p>(paraStart)This is a <font color="#ff0000">(red)</font> test class to exercise the "quasi" mark-up that EA java API returns from its various getNotes() methods. Using its provided method to return raw text is very slow.(paraEnd)</p><p>(paraStart)Here is the unordered list with two items:(paraEnd)</p><ul><li>list test</li><li><b>bold</b> list test</li></ul><p>(paraStart)This the paragraph after a list.(paraEnd)</p><p>(paraStart)Follows the numbered list:(paraEnd)</p><ol><li>first numbered item</li><li><i>italic</i> numbered test</li><li><i>RTY</i><sup>-8</sup>-dws<i><sub>2</sub></i>=56 (RTY**-8-dws subscript 2=56</li></ol><p>(paraStart)Below we test one bulleted and one numbered item:(paraEnd)</p><ul><li>bulleted</li></ul><ol><li>numbered</li></ol><p>(paraStart)And the inverse, with two numbered items (second is empty) and two bulleted items (first is empty):(paraEnd)</p><ol><li>this one is numbered</li><li>&nbsp;</li></ol><ul><li>&nbsp;</li><li>and this one is bulleted</li></ul><p>(paraStart)Last <i><u>normal </u></i>para test - there are two empty paragraphs below.(paraEnd)</p> +2024-09-07 12:38:51,523 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,523 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML18ùdd' +2024-09-07 12:38:51,523 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML18ùdd' +2024-09-07 12:38:51,523 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,523 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,523 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,523 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,523 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,523 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,524 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TopologicalNode, hphSpec = 'aaùTopologicalNodeùUML177ùdd' +2024-09-07 12:38:51,524 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TopologicalNode, hphSpec = 'aaùTopologicalNodeùUML177ùdd' +2024-09-07 12:38:51,524 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,524 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,524 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,524 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,524 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,524 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,524 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,524 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseVoltage, hphSpec = 'aaùBaseVoltageùUML161ùdd' +2024-09-07 12:38:51,525 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNodeContainer, hphSpec = 'aaùConnectivityNodeContainerùUML167ùdd' +2024-09-07 12:38:51,525 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TopologicalIsland, hphSpec = 'aaùTopologicalIslandùUML176ùdd' +2024-09-07 12:38:51,525 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Terminal, hphSpec = 'aaùTerminalùUML159ùdd' +2024-09-07 12:38:51,525 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNode, hphSpec = 'aaùConnectivityNodeùUML175ùdd' +2024-09-07 12:38:51,525 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TopologicalIsland, hphSpec = 'aaùTopologicalIslandùUML176ùdd' +2024-09-07 12:38:51,525 [main] INFO PackageDocImpl - collecting doc for package TestEnums ... +2024-09-07 12:38:51,528 [main] INFO PackageDocImpl - collecting doc for package IEC61968 ... +2024-09-07 12:38:51,528 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbsoluteDateTime, hphSpec = 'aaùAbsoluteDateTimeùUML11ùdd' +2024-09-07 12:38:51,528 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,529 [main] INFO PackageDocImpl - collecting doc for package EmbeddedExtension ... +2024-09-07 12:38:51,529 [main] INFO PackageDocImpl - collecting doc for package Assets ... +2024-09-07 12:38:51,530 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,531 [main] INFO PackageDocImpl - collecting doc for package Core ... +2024-09-07 12:38:51,532 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Bay, hphSpec = 'aaùBayùUML170ùdd' +2024-09-07 12:38:51,532 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = YesNo, hphSpec = 'aaùYesNoùUML27ùdd' +2024-09-07 12:38:51,532 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,532 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,532 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-07 12:38:51,532 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,532 [main] DEBUG DataIndexDoc - Attribute 'basePower' defined on multiple classes in and under 'Core' - may be possible to avoid duplication by using inheritance. +2024-09-07 12:38:51,532 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseVoltage, hphSpec = 'aaùBaseVoltageùUML161ùdd' +2024-09-07 12:38:51,533 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePower, hphSpec = 'aaùBasePowerùUML162ùdd' +2024-09-07 12:38:51,533 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-07 12:38:51,533 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ApparentPower, hphSpec = 'aaùApparentPowerùUML14ùdd' +2024-09-07 12:38:51,533 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Bay, hphSpec = 'aaùBayùUML170ùdd' +2024-09-07 12:38:51,533 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-07 12:38:51,533 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Bay, hphSpec = 'aaùBayùUML170ùdd' +2024-09-07 12:38:51,533 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-07 12:38:51,533 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Bay, hphSpec = 'aaùBayùUML170ùdd' +2024-09-07 12:38:51,533 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BreakerConfiguration, hphSpec = 'aaùBreakerConfigurationùUML28ùdd' +2024-09-07 12:38:51,533 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Bay, hphSpec = 'aaùBayùUML170ùdd' +2024-09-07 12:38:51,533 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BusbarConfiguration, hphSpec = 'aaùBusbarConfigurationùUML29ùdd' +2024-09-07 12:38:51,533 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Terminal, hphSpec = 'aaùTerminalùUML159ùdd' +2024-09-07 12:38:51,533 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-07 12:38:51,533 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VoltageLevel, hphSpec = 'aaùVoltageLevelùUML172ùdd' +2024-09-07 12:38:51,533 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Voltage, hphSpec = 'aaùVoltageùUML25ùdd' +2024-09-07 12:38:51,533 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VoltageLevel, hphSpec = 'aaùVoltageLevelùUML172ùdd' +2024-09-07 12:38:51,534 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Voltage, hphSpec = 'aaùVoltageùUML25ùdd' +2024-09-07 12:38:51,534 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,534 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,536 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-07 12:38:51,537 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-07 12:38:51,537 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Equipment, hphSpec = 'aaùEquipmentùUML173ùdd' +2024-09-07 12:38:51,537 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-07 12:38:51,537 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OperatingShare, hphSpec = 'aaùOperatingShareùUML30ùdd' +2024-09-07 12:38:51,537 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PerCent, hphSpec = 'aaùPerCentùUML20ùdd' +2024-09-07 12:38:51,537 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConductingEquipment, hphSpec = 'aaùConductingEquipmentùUML174ùdd' +2024-09-07 12:38:51,537 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PhaseCode, hphSpec = 'aaùPhaseCodeùUML31ùdd' +2024-09-07 12:38:51,537 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Terminal, hphSpec = 'aaùTerminalùUML159ùdd' +2024-09-07 12:38:51,537 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML18ùdd' +2024-09-07 12:38:51,537 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Bay, hphSpec = 'aaùBayùUML170ùdd' +2024-09-07 12:38:51,537 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = YesNo, hphSpec = 'aaùYesNoùUML27ùdd' +2024-09-07 12:38:51,537 [main] INFO PackageDocImpl - collected data index for Core ... +2024-09-07 12:38:51,537 [main] TRACE PackageDocImpl - org.tanjakostic.jcleancim.docgen.collector.impl.DataIndexDoc@9c4eb1Data semantics + + shows all attributes defined on classes of Core package. +Attributes defined on classes of Core package +"Name" | "Type" | "(Used in) Description" +"TestYesNo1" | "aaùYesNoùUML27ùdd" | "(aaùBayùUML170ùdd) Indicates the presence/absence of energy measurements." +"aliasName" | "aaùStringùUML22ùdd" | "(aaùIdentifiedObjectùUML32ùdd) The aliasName is free text human readable name of the object alternative to IdentifiedObject.name. It may be non unique and may not correlate to a naming hierarchy. +The attribute aliasName is retained because of backwards compatibility between CIM relases. It is however recommended to replace aliasName with the Name class as aliasName is planned for retirement at a future time." +"attr" | "aaùStringùUML22ùdd" | "(aaùPowerSystemResourceùUML166ùdd) (deprecated) This is to test whether deprecated attribute gets its (deprecated) printed in Word." +"basePower" | "aaùBooleanùUML15ùdd, aaùApparentPowerùUML14ùdd" | "(aaùBaseVoltageùUML161ùdd) This is to test whether we print correctly multiple attributes of the same name (defined on different classes) within the data index table. +(aaùBasePowerùUML162ùdd) definition of base power." +"bayEnergyMeasFlag" | "aaùBooleanùUML15ùdd" | "(aaùBayùUML170ùdd) Indicates the presence/absence of energy measurements." +"bayPowerMeasFlag" | "aaùBooleanùUML15ùdd" | "(aaùBayùUML170ùdd) Indicates the presence/absence of active/reactive power measurements." +"breakerConfiguration" | "aaùBreakerConfigurationùUML28ùdd" | "(aaùBayùUML170ùdd) Breaker configuration." +"busBarConfiguration" | "aaùBusbarConfigurationùUML29ùdd" | "(aaùBayùUML170ùdd) Bus bar configuration." +"connected" | "aaùBooleanùUML15ùdd" | "(aaùTerminalùUML159ùdd) The terminal connection status. True implies the terminal is connected, and false implies the terminal is not connected. This is the result of topoplogical processing of a detailed Connectivity node and Switch model whether present in the model or not. A terminal that is not connected cannot support a current flow. A terminal that is connected may have flow. In general a multi-terminal device may simultaneously have connected and disconnected terminals. No other aspect of the algorithm" +"highVoltageLimit" | "aaùVoltageùUML25ùdd" | "(aaùVoltageLevelùUML172ùdd) The bus bar's high voltage limit" +"lowVoltageLimit" | "aaùVoltageùUML25ùdd" | "(aaùVoltageLevelùUML172ùdd) The bus bar's low voltage limit" +"mRID" | "aaùStringùUML22ùdd" | "(aaùIdentifiedObjectùUML32ùdd) Master resource identifier issued by a model authority. The mRID must semantically be a UUID as specified in RFC 4122. The mRID is globally unique. +For CIMXML data files in RDF syntax, the mRID is mapped to rdf:ID or rdf:about attributes that identify CIM object elements." +"name" | "aaùStringùUML22ùdd" | "(aaùIdentifiedObjectùUML32ùdd) The name is any free human readable and possibly non unique text naming the object." +"normaIlyInService" | "aaùBooleanùUML15ùdd" | "(aaùEquipmentùUML173ùdd) The equipment is normally in service." +"packagePrivateIsDC" | "" | "" +"percentage" | "aaùPerCentùUML20ùdd" | "(aaùOperatingShareùUML30ùdd) Percentage ownership for this device. The percentage indicates the percentage ownership of the PSROwner for the PowerSystemResource. The total percentage ownership for a PowerSystemResource should add to 100%." +"phases" | "aaùPhaseCodeùUML31ùdd" | "(aaùConductingEquipmentùUML174ùdd) Describes the phases carried by a conducting equipment." +"privateDummy" | "" | "" +"protectedNominalVoltage" | "" | "" +"sequenceNumber" | "aaùIntegerùUML18ùdd" | "(aaùTerminalùUML159ùdd) The orientation of the terminal connections for a multiple terminal conducting equipment. The sequence numbering starts with 1 and additional terminals should follow in increasing order. The first terminal is the "starting point" for a two terminal branch. In the case of class TransformerWinding only one terminal is used so its sequenceNumber must be 1." +"testYesNo2" | "aaùYesNoùUML27ùdd" | "(aaùBayùUML170ùdd) Indicates the presence/absence of energy measurements." + +2024-09-07 12:38:51,538 [main] INFO PackageDocImpl - collecting doc for package Other ... +2024-09-07 12:38:51,538 [main] INFO PackageDocImpl - collecting doc for package Other ... +2024-09-07 12:38:51,538 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-07 12:38:51,539 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Float, hphSpec = 'aaùFloatùUML17ùdd' +2024-09-07 12:38:51,539 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-07 12:38:51,539 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-07 12:38:51,539 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-07 12:38:51,539 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitSymbol, hphSpec = 'aaùUnitSymbolùUML24ùdd' +2024-09-07 12:38:51,539 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-07 12:38:51,539 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MyClass, hphSpec = 'aaùMyClassùUML178ùdd' +2024-09-07 12:38:51,539 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-07 12:38:51,539 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MyClass, hphSpec = 'aaùMyClassùUML178ùdd' +2024-09-07 12:38:51,539 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MyClass, hphSpec = 'aaùMyClassùUML178ùdd' +2024-09-07 12:38:51,539 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-07 12:38:51,539 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AttrDuplication, hphSpec = 'aaùAttrDuplicationùUML179ùdd' +2024-09-07 12:38:51,539 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-07 12:38:51,540 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-07 12:38:51,540 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitSymbol, hphSpec = 'aaùUnitSymbolùUML24ùdd' +2024-09-07 12:38:51,540 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MyClass, hphSpec = 'aaùMyClassùUML178ùdd' +2024-09-07 12:38:51,540 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AttrDuplication, hphSpec = 'aaùAttrDuplicationùUML179ùdd' +2024-09-07 12:38:51,541 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML18ùdd' +2024-09-07 12:38:51,541 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = YesNo, hphSpec = 'aaùYesNoùUML27ùdd' +2024-09-07 12:38:51,542 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Float, hphSpec = 'aaùFloatùUML17ùdd' +2024-09-07 12:38:51,542 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MyClass, hphSpec = 'aaùMyClassùUML178ùdd' +2024-09-07 12:38:51,542 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-07 12:38:51,543 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-07 12:38:51,543 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Float, hphSpec = 'aaùFloatùUML17ùdd' +2024-09-07 12:38:51,543 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MyClass, hphSpec = 'aaùMyClassùUML178ùdd' +2024-09-07 12:38:51,543 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-07 12:38:51,543 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MyClass, hphSpec = 'aaùMyClassùUML178ùdd' +2024-09-07 12:38:51,543 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MyClass, hphSpec = 'aaùMyClassùUML178ùdd' +2024-09-07 12:38:51,543 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-07 12:38:51,543 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-07 12:38:51,543 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitSymbol, hphSpec = 'aaùUnitSymbolùUML24ùdd' +2024-09-07 12:38:51,543 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-07 12:38:51,543 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-07 12:38:51,543 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AttrDuplication, hphSpec = 'aaùAttrDuplicationùUML179ùdd' +2024-09-07 12:38:51,543 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AttrDuplication, hphSpec = 'aaùAttrDuplicationùUML179ùdd' +2024-09-07 12:38:51,543 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AttrDuplication, hphSpec = 'aaùAttrDuplicationùUML179ùdd' +2024-09-07 12:38:51,543 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AttrDuplication, hphSpec = 'aaùAttrDuplicationùUML179ùdd' +2024-09-07 12:38:51,544 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MyClass, hphSpec = 'aaùMyClassùUML178ùdd' +2024-09-07 12:38:51,544 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MyClass, hphSpec = 'aaùMyClassùUML178ùdd' +2024-09-07 12:38:51,544 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-07 12:38:51,544 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MyClass, hphSpec = 'aaùMyClassùUML178ùdd' +2024-09-07 12:38:51,544 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MyClass, hphSpec = 'aaùMyClassùUML178ùdd' +2024-09-07 12:38:51,544 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MyClass, hphSpec = 'aaùMyClassùUML178ùdd' +2024-09-07 12:38:51,544 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MyClass, hphSpec = 'aaùMyClassùUML178ùdd' +2024-09-07 12:38:51,544 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-07 12:38:51,544 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AttrDuplication, hphSpec = 'aaùAttrDuplicationùUML179ùdd' +2024-09-07 12:38:51,544 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-07 12:38:51,544 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitSymbol, hphSpec = 'aaùUnitSymbolùUML24ùdd' +2024-09-07 12:38:51,544 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML18ùdd' +2024-09-07 12:38:51,544 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EmptyCompound, hphSpec = 'aaùEmptyCompoundùUML45ùdd' +2024-09-07 12:38:51,545 [main] INFO PackageDocImpl - collecting doc for package IEC62325 ... +2024-09-07 12:38:51,545 [main] INFO PackageDocImpl - collecting doc for package IEC61850Domain ... +2024-09-07 12:38:51,546 [main] INFO PackageDocImpl - collecting doc for package WG10 ... +2024-09-07 12:38:51,566 [main] INFO PackageDocImpl - collecting doc for package NewIEC61850_7_2 ... +2024-09-07 12:38:51,567 [main] INFO PackageDocImpl - collecting doc for package GenericModel ... +2024-09-07 12:38:51,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommAddress, hphSpec = 'aaùCommAddressùUML47ùdd' +2024-09-07 12:38:51,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenIED, hphSpec = 'aaùGenIEDùUML65ùdd' +2024-09-07 12:38:51,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenFile, hphSpec = 'aaùGenFileùUML64ùdd' +2024-09-07 12:38:51,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenServer, hphSpec = 'aaùGenServerùUML72ùdd' +2024-09-07 12:38:51,578 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjectName, hphSpec = 'aaùGenObjectNameùUML71ùdd' +2024-09-07 12:38:51,578 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenDataAttribute, hphSpec = 'aaùGenDataAttributeùUML59ùdd' +2024-09-07 12:38:51,579 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenSubDataObject, hphSpec = 'aaùGenSubDataObjectùUML74ùdd' +2024-09-07 12:38:51,579 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjectName, hphSpec = 'aaùGenObjectNameùUML71ùdd' +2024-09-07 12:38:51,579 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenSubDataAttribute, hphSpec = 'aaùGenSubDataAttributeùUML73ùdd' +2024-09-07 12:38:51,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjectName, hphSpec = 'aaùGenObjectNameùUML71ùdd' +2024-09-07 12:38:51,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjRef, hphSpec = 'aaùGenObjRefùUML70ùdd' +2024-09-07 12:38:51,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenFC, hphSpec = 'aaùGenFCùUML49ùdd' +2024-09-07 12:38:51,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenTriggerConditions, hphSpec = 'aaùGenTriggerConditionsùUML76ùdd' +2024-09-07 12:38:51,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenPresenceConditions, hphSpec = 'aaùGenPresenceConditionsùUML50ùdd' +2024-09-07 12:38:51,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenINT32U, hphSpec = 'aaùGenINT32UùUML66ùdd' +2024-09-07 12:38:51,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenCommonDataClass, hphSpec = 'aaùGenCommonDataClassùUML56ùdd' +2024-09-07 12:38:51,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenFCDA, hphSpec = 'aaùGenFCDAùUML63ùdd' +2024-09-07 12:38:51,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjectName, hphSpec = 'aaùGenObjectNameùUML71ùdd' +2024-09-07 12:38:51,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjRef, hphSpec = 'aaùGenObjRefùUML70ùdd' +2024-09-07 12:38:51,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenBOOLEAN, hphSpec = 'aaùGenBOOLEANùUML55ùdd' +2024-09-07 12:38:51,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenPresenceConditions, hphSpec = 'aaùGenPresenceConditionsùUML50ùdd' +2024-09-07 12:38:51,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenLogicalNode, hphSpec = 'aaùGenLogicalNodeùUML68ùdd' +2024-09-07 12:38:51,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenFCD, hphSpec = 'aaùGenFCDùUML62ùdd' +2024-09-07 12:38:51,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjectName, hphSpec = 'aaùGenObjectNameùUML71ùdd' +2024-09-07 12:38:51,583 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenFCD, hphSpec = 'aaùGenFCDùUML62ùdd' +2024-09-07 12:38:51,583 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenFCDA, hphSpec = 'aaùGenFCDAùUML63ùdd' +2024-09-07 12:38:51,583 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenFC, hphSpec = 'aaùGenFCùUML49ùdd' +2024-09-07 12:38:51,583 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenDataObject, hphSpec = 'aaùGenDataObjectùUML60ùdd' +2024-09-07 12:38:51,583 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenSubDataObject, hphSpec = 'aaùGenSubDataObjectùUML74ùdd' +2024-09-07 12:38:51,583 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenDataSet, hphSpec = 'aaùGenDataSetùUML61ùdd' +2024-09-07 12:38:51,584 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenFC, hphSpec = 'aaùGenFCùUML49ùdd' +2024-09-07 12:38:51,584 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenDataAttribute, hphSpec = 'aaùGenDataAttributeùUML59ùdd' +2024-09-07 12:38:51,584 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenSubDataAttribute, hphSpec = 'aaùGenSubDataAttributeùUML73ùdd' +2024-09-07 12:38:51,584 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenDataSet, hphSpec = 'aaùGenDataSetùUML61ùdd' +2024-09-07 12:38:51,586 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenVisString255, hphSpec = 'aaùGenVisString255ùUML77ùdd' +2024-09-07 12:38:51,586 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenINT32U, hphSpec = 'aaùGenINT32UùUML66ùdd' +2024-09-07 12:38:51,586 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenTimeStamp, hphSpec = 'aaùGenTimeStampùUML51ùdd' +2024-09-07 12:38:51,586 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FileSystem, hphSpec = 'aaùFileSystemùUML53ùdd' +2024-09-07 12:38:51,587 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AccessPoint, hphSpec = 'aaùAccessPointùUML52ùdd' +2024-09-07 12:38:51,587 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenLogicalNode, hphSpec = 'aaùGenLogicalNodeùUML68ùdd' +2024-09-07 12:38:51,587 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenLogicalNode, hphSpec = 'aaùGenLogicalNodeùUML68ùdd' +2024-09-07 12:38:51,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjectName, hphSpec = 'aaùGenObjectNameùUML71ùdd' +2024-09-07 12:38:51,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenLogicalNode, hphSpec = 'aaùGenLogicalNodeùUML68ùdd' +2024-09-07 12:38:51,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjRef, hphSpec = 'aaùGenObjRefùUML70ùdd' +2024-09-07 12:38:51,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenLogicalDevice, hphSpec = 'aaùGenLogicalDeviceùUML67ùdd' +2024-09-07 12:38:51,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenDataObject, hphSpec = 'aaùGenDataObjectùUML60ùdd' +2024-09-07 12:38:51,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenLogicalNode, hphSpec = 'aaùGenLogicalNodeùUML68ùdd' +2024-09-07 12:38:51,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenLogicalDevice, hphSpec = 'aaùGenLogicalDeviceùUML67ùdd' +2024-09-07 12:38:51,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenLogicalNode, hphSpec = 'aaùGenLogicalNodeùUML68ùdd' +2024-09-07 12:38:51,589 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjectName, hphSpec = 'aaùGenObjectNameùUML71ùdd' +2024-09-07 12:38:51,589 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenLN0, hphSpec = 'aaùGenLN0ùUML181ùdd' +2024-09-07 12:38:51,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenLogicalNode, hphSpec = 'aaùGenLogicalNodeùUML68ùdd' +2024-09-07 12:38:51,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenLogicalDevice, hphSpec = 'aaùGenLogicalDeviceùUML67ùdd' +2024-09-07 12:38:51,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenServer, hphSpec = 'aaùGenServerùUML72ùdd' +2024-09-07 12:38:51,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenLogicalDevice, hphSpec = 'aaùGenLogicalDeviceùUML67ùdd' +2024-09-07 12:38:51,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjectName, hphSpec = 'aaùGenObjectNameùUML71ùdd' +2024-09-07 12:38:51,591 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjRef, hphSpec = 'aaùGenObjRefùUML70ùdd' +2024-09-07 12:38:51,591 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenDataObject, hphSpec = 'aaùGenDataObjectùUML60ùdd' +2024-09-07 12:38:51,591 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenLogicalDevice, hphSpec = 'aaùGenLogicalDeviceùUML67ùdd' +2024-09-07 12:38:51,591 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenServer, hphSpec = 'aaùGenServerùUML72ùdd' +2024-09-07 12:38:51,592 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FileSystem, hphSpec = 'aaùFileSystemùUML53ùdd' +2024-09-07 12:38:51,593 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenLogicalDevice, hphSpec = 'aaùGenLogicalDeviceùUML67ùdd' +2024-09-07 12:38:51,593 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenMCAA, hphSpec = 'aaùGenMCAAùUML69ùdd' +2024-09-07 12:38:51,593 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenTPAA, hphSpec = 'aaùGenTPAAùUML75ùdd' +2024-09-07 12:38:51,593 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ServiceAccessPoint, hphSpec = 'aaùServiceAccessPointùUML180ùdd' +2024-09-07 12:38:51,593 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjectName, hphSpec = 'aaùGenObjectNameùUML71ùdd' +2024-09-07 12:38:51,593 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjRef, hphSpec = 'aaùGenObjRefùUML70ùdd' +2024-09-07 12:38:51,593 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenFC, hphSpec = 'aaùGenFCùUML49ùdd' +2024-09-07 12:38:51,593 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenPresenceConditions, hphSpec = 'aaùGenPresenceConditionsùUML50ùdd' +2024-09-07 12:38:51,593 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenINT32U, hphSpec = 'aaùGenINT32UùUML66ùdd' +2024-09-07 12:38:51,593 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenConstructedType, hphSpec = 'aaùGenConstructedTypeùUML58ùdd' +2024-09-07 12:38:51,593 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenFCDA, hphSpec = 'aaùGenFCDAùUML63ùdd' +2024-09-07 12:38:51,594 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjectName, hphSpec = 'aaùGenObjectNameùUML71ùdd' +2024-09-07 12:38:51,594 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjRef, hphSpec = 'aaùGenObjRefùUML70ùdd' +2024-09-07 12:38:51,594 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenPresenceConditions, hphSpec = 'aaùGenPresenceConditionsùUML50ùdd' +2024-09-07 12:38:51,594 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenINT32U, hphSpec = 'aaùGenINT32UùUML66ùdd' +2024-09-07 12:38:51,594 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenCommonDataClass, hphSpec = 'aaùGenCommonDataClassùUML56ùdd' +2024-09-07 12:38:51,594 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenFCD, hphSpec = 'aaùGenFCDùUML62ùdd' +2024-09-07 12:38:51,594 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenAssociationID, hphSpec = 'aaùGenAssociationIDùUML48ùdd' +2024-09-07 12:38:51,595 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenServer, hphSpec = 'aaùGenServerùUML72ùdd' +2024-09-07 12:38:51,595 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AccessPoint, hphSpec = 'aaùAccessPointùUML52ùdd' +2024-09-07 12:38:51,595 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AccessPoint, hphSpec = 'aaùAccessPointùUML52ùdd' +2024-09-07 12:38:51,595 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommAddress, hphSpec = 'aaùCommAddressùUML47ùdd' +2024-09-07 12:38:51,595 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenServer, hphSpec = 'aaùGenServerùUML72ùdd' +2024-09-07 12:38:51,595 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenIED, hphSpec = 'aaùGenIEDùUML65ùdd' +2024-09-07 12:38:51,595 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AccessPoint, hphSpec = 'aaùAccessPointùUML52ùdd' +2024-09-07 12:38:51,596 [main] INFO PackageDocImpl - collecting doc for package IEC61850_7_2 ... +2024-09-07 12:38:51,597 [main] INFO PackageDocImpl - collecting doc for package FunctionalConstraints ... +2024-09-07 12:38:51,597 [main] INFO DocCollectorImpl - >> retained scoped IEC61850/IEC61850-7-2/FunctionalConstraints +2024-09-07 12:38:51,610 [main] INFO PackageDocImpl - collected functional constraints from FunctionalConstraints ... +2024-09-07 12:38:51,610 [main] TRACE PackageDocImpl - org.tanjakostic.jcleancim.docgen.collector.impl.FcPackageDoc@1898981Functional constraints +From an application point of view, the DataAttributes are classified according to their specific use. Some attributes are used for controlling, other for reporting and logging, or measurements or setting groups, or the description of a specific DataAttribute. +The functional constraint (FC) serves as a data filter in the sense of defining the services applicable to specific DataAttributes of CommonDataClasses (defined in part IEC 61850-7-3). +NOTE: The possibility to write an Attribute or a DataAttribute may be further constrained by a view or an implementation, as discussed in clause 7. +EXAMPLE: The CommonDataClass single point status (SPS) according to IEC 61850-7-3 has the following DataAttributes: stVal (status value), q (quality), and t (time stamp) with the functional constraint ST (status information). +shows all functional constraints. +Functional constraints +"Functional constraints" | "" | "" +"FC" | "Semantic" | "Description (services allowed, initial values, storage)" +"ST" | "Status information" | "DataAttribute shall represent status information whose value may be read, substituted, reported, and logged but shall not be writeable. +Initial value shall be taken from the process. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- if member of dataset, may be contained in the Report, GOOSEMessage and SVMessage." +"MX" | "Measurands (analogue values)" | "DataAttribute shall represent measurand information whose value may be read, substituted, reported, and logged but shall not be writeable. +Initial value shall be taken from the process. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- if member of dataset, may be contained in the Report, GOOSEMessage and SVMessage." +"SP" | "Setting (outside setting group)" | "DataAttribute shall represent setting parameter information whose value is read and may be written. Changes of values shall become effective immediately, and may be reported. +Initial value shall be as configured; value shall be non-volatile. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.setDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- if member of dataset, may be contained in the Report, GOOSEMessage." +"SV" | "Substitution" | "DataAttribute shall represent substitution information whose value may be written to substitute the value attribute and read. A value change may be reported. +If the value is volatile then the initial value shall be false, otherwise the value should be as set or configured. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.setDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- AcsiDS.setDataSetValues() +- if member of dataset, may be contained in the Report." +"CF" | "Configuration" | "DataAttribute shall represent configuration information whose value may be written and read. Values written may become effective immediately or deferred by reasons outside the scope of this standard. Value changes may be reported. +Initial value shall be as configured; value shall be non-volatile. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.setDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- AcsiDS.setDataSetValues() +- if member of dataset, may be contained in the Report." +"DC" | "Description" | "DataAttribute shall represent description information whose value may be written and read. +Initial value shall be as configured; value shall be non-volatile. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.setDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- AcsiDS.setDataSetValues() +- if member of dataset, may be contained in the Report." +"SG" | "Setting group" | "Logical devices that implement the SGCB class maintain multiple grouped values of all instances of DataAttributes with functional constraint SG. Each group contains one value for each DataAttribute. DataAttributes with functional constraint SG shall be the current active value. DataAttributes with FC=SG shall not be writeable. +Initial value shall be as configured; value shall be non-volatile. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- AcsiSGCB.getSGValues() +- if member of dataset, may be contained in the Report." +"SE" | "Setting group editable" | "DataAttribute that can be edited by SGCB services. Defines the edit buffer for the value sets belonging to attributes with FC=SG. +Value shall be as resulting from the chain of SGCB services: selectEditSG() -> setSGValues() -> confirmEditSGValues(). +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiSGCB.getSGValues() +- AcsiSGCB.setSGValues()" +"SR" | "Service response" | "DataAttribute shall represent data from different process objects with the same tracking object whose values can be used to be reported and logged; the values shall not be writeable. These attributes are used for service tracking (see 15.3.2). +Initial value of the DataAttribute are a private issue, e.g., all zero (except for times stamp). +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- if member of dataset, may be contained in the Report." +"OR" | "Operate received" | "DataAttribute shall represent the result of an Operate request at the data object receiving the Operate request, even if the execution of the Operate is blocked. +Initial value is irrelevant / arbitrary. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- if member of dataset, may be contained in the Report." +"BL" | "Blocking" | "DataAttribute is used for blocking value updates. +If the value of the DataAttribute is volatile then the initial value shall be false, otherwise the value should be as set or configured. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.setDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- AcsiDS.setDataSetValues() +- if member of dataset, may be contained in the Report." +"EX" | "Extended definition (application name space)" | "DataAttribute shall represent an application name space. Application name spaces are used to define the semantic definitions of LNs, data object class, and DataAttributes as specified in 61850-7-3 and IEC 61850-7-4. DataAttributes with FC=EX shall not be writeable, +Note that private extensions of control blocks may use the FC EX at SCSM level. +Value of the DataAttribute shall be as configured; value shall be non-volatile. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- if member of dataset, may be contained in the Report." +"XX" | "" | "Used as a wildcard in services only, with the semantics: representing DataAttributes of any functional constraint." + +2024-09-07 12:38:51,611 [main] INFO PackageDocImpl - collecting doc for package TriggerOptions ... +2024-09-07 12:38:51,611 [main] INFO DocCollectorImpl - >> retained scoped IEC61850/IEC61850-7-2/TriggerOptions +2024-09-07 12:38:51,617 [main] INFO PackageDocImpl - collected trigger options from TriggerOptions ... +2024-09-07 12:38:51,617 [main] TRACE PackageDocImpl - org.tanjakostic.jcleancim.docgen.collector.impl.TrgOpPackageDoc@f9390fTrigger options +To support reporting and logging control logic (see clause 17) related to process data changes, one of these values can be associated as a trigger option, TrgOp, to a data attribute within a data object or sub-data object. +shows all trigger options. +Trigger options +"Trigger options" | "" | "" +"TrgOp" | "Semantic" | "Description" +"dchg" | "data-change" | "The reason for report or log entry generation is the change of the value of a process-related data attribute with trigger option dchg." +"qchg" | "quality-change" | "The reason for report or log entry generation is the change of the value of a quality-related data attribute with trigger option qchg." +"dupd" | "data-update" | "The reason for report or log entry generation is an update of the value of a data attribute with trigger option dupd. The updated value may be the same as the old value. An example is freezing the value of a freezable data attribute updating the value of another data attribute, which could lead to the same value it already has." +"dchg, dupd" | "dchg or dupd" | "Either dchg or dupd." + +2024-09-07 12:38:51,617 [main] INFO PackageDocImpl - collecting doc for package ACSIEnums ... +2024-09-07 12:38:51,617 [main] INFO DocCollectorImpl - >> retained scoped IEC61850/IEC61850-7-2/ACSIEnums +2024-09-07 12:38:51,618 [main] INFO PackageDocImpl - collecting doc for package CoreTypes ... +2024-09-07 12:38:51,618 [main] INFO DocCollectorImpl - >> retained scoped IEC61850/IEC61850-7-2/CoreTypes +2024-09-07 12:38:51,622 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT32, hphSpec = 'aaùINT32ùUML85ùdd' +2024-09-07 12:38:51,622 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimeQuality, hphSpec = 'aaùTimeQualityùUML94ùdd' +2024-09-07 12:38:51,623 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,623 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,623 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,623 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimeAccuracyKind, hphSpec = 'aaùTimeAccuracyKindùUML95ùdd' +2024-09-07 12:38:51,624 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,624 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,624 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,624 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,624 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,624 [main] INFO PackageDocImpl - collecting doc for package ObjectReferences ... +2024-09-07 12:38:51,624 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = P_ObjectReference, hphSpec = 'aaùP_ObjectReferenceùUML91ùdd' +2024-09-07 12:38:51,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = P_ObjectReference, hphSpec = 'aaùP_ObjectReferenceùUML91ùdd' +2024-09-07 12:38:51,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = P_ObjectReference, hphSpec = 'aaùP_ObjectReferenceùUML91ùdd' +2024-09-07 12:38:51,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LDReference, hphSpec = 'aaùLDReferenceùUML183ùdd' +2024-09-07 12:38:51,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = P_ObjectReference, hphSpec = 'aaùP_ObjectReferenceùUML91ùdd' +2024-09-07 12:38:51,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNReference, hphSpec = 'aaùLNReferenceùUML184ùdd' +2024-09-07 12:38:51,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LDReference, hphSpec = 'aaùLDReferenceùUML183ùdd' +2024-09-07 12:38:51,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = P_ObjectReference, hphSpec = 'aaùP_ObjectReferenceùUML91ùdd' +2024-09-07 12:38:51,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNReference, hphSpec = 'aaùLNReferenceùUML184ùdd' +2024-09-07 12:38:51,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LDReference, hphSpec = 'aaùLDReferenceùUML183ùdd' +2024-09-07 12:38:51,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = P_ObjectReference, hphSpec = 'aaùP_ObjectReferenceùUML91ùdd' +2024-09-07 12:38:51,628 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ServiceFcKind, hphSpec = 'aaùServiceFcKindùUML97ùdd' +2024-09-07 12:38:51,628 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNReference, hphSpec = 'aaùLNReferenceùUML184ùdd' +2024-09-07 12:38:51,628 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LDReference, hphSpec = 'aaùLDReferenceùUML183ùdd' +2024-09-07 12:38:51,628 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = P_ObjectReference, hphSpec = 'aaùP_ObjectReferenceùUML91ùdd' +2024-09-07 12:38:51,629 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ServiceFcKind, hphSpec = 'aaùServiceFcKindùUML97ùdd' +2024-09-07 12:38:51,629 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNReference, hphSpec = 'aaùLNReferenceùUML184ùdd' +2024-09-07 12:38:51,629 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LDReference, hphSpec = 'aaùLDReferenceùUML183ùdd' +2024-09-07 12:38:51,629 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = P_ObjectReference, hphSpec = 'aaùP_ObjectReferenceùUML91ùdd' +2024-09-07 12:38:51,629 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDCReference, hphSpec = 'aaùCDCReferenceùUML185ùdd' +2024-09-07 12:38:51,629 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNReference, hphSpec = 'aaùLNReferenceùUML184ùdd' +2024-09-07 12:38:51,629 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LDReference, hphSpec = 'aaùLDReferenceùUML183ùdd' +2024-09-07 12:38:51,629 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = P_ObjectReference, hphSpec = 'aaùP_ObjectReferenceùUML91ùdd' +2024-09-07 12:38:51,630 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FcKind, hphSpec = 'aaùFcKindùUML79ùdd' +2024-09-07 12:38:51,630 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDReference, hphSpec = 'aaùFCDReferenceùUML186ùdd' +2024-09-07 12:38:51,630 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDCReference, hphSpec = 'aaùCDCReferenceùUML185ùdd' +2024-09-07 12:38:51,630 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNReference, hphSpec = 'aaùLNReferenceùUML184ùdd' +2024-09-07 12:38:51,630 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LDReference, hphSpec = 'aaùLDReferenceùUML183ùdd' +2024-09-07 12:38:51,630 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = P_ObjectReference, hphSpec = 'aaùP_ObjectReferenceùUML91ùdd' +2024-09-07 12:38:51,630 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-07 12:38:51,630 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT32U, hphSpec = 'aaùINT32UùUML86ùdd' +2024-09-07 12:38:51,631 [main] INFO PackageDocImpl - collecting doc for package AttrValues ... +2024-09-07 12:38:51,633 [main] INFO PackageDocImpl - collecting doc for package BasicDAs ... +2024-09-07 12:38:51,634 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-07 12:38:51,634 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-07 12:38:51,634 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,634 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,634 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,634 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-07 12:38:51,634 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-07 12:38:51,634 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,634 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,634 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-07 12:38:51,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-07 12:38:51,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-07 12:38:51,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-07 12:38:51,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-07 12:38:51,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-07 12:38:51,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-07 12:38:51,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-07 12:38:51,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-07 12:38:51,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-07 12:38:51,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-07 12:38:51,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-07 12:38:51,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-07 12:38:51,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-07 12:38:51,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PackedPrimitiveDA, hphSpec = 'aaùPackedPrimitiveDAùUML336ùdd' +2024-09-07 12:38:51,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-07 12:38:51,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-07 12:38:51,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PackedPrimitiveDA, hphSpec = 'aaùPackedPrimitiveDAùUML336ùdd' +2024-09-07 12:38:51,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-07 12:38:51,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-07 12:38:51,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PackedEnumDA, hphSpec = 'aaùPackedEnumDAùUML341ùdd' +2024-09-07 12:38:51,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-07 12:38:51,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-07 12:38:51,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-07 12:38:51,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PackedEnumDA, hphSpec = 'aaùPackedEnumDAùUML341ùdd' +2024-09-07 12:38:51,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-07 12:38:51,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-07 12:38:51,640 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-07 12:38:51,640 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,640 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,640 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,661 [main] INFO PackageDocImpl - collecting doc for package AcsiTypes ... +2024-09-07 12:38:51,662 [main] INFO PackageDocImpl - collecting doc for package CommonAcsiTypes ... +2024-09-07 12:38:51,663 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT16U, hphSpec = 'aaùINT16UùUML84ùdd' +2024-09-07 12:38:51,663 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT16U, hphSpec = 'aaùINT16UùUML84ùdd' +2024-09-07 12:38:51,663 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ReportID, hphSpec = 'aaùReportIDùUML107ùdd' +2024-09-07 12:38:51,663 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntryID, hphSpec = 'aaùEntryIDùUML108ùdd' +2024-09-07 12:38:51,664 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Authentication, hphSpec = 'aaùAuthenticationùUML105ùdd' +2024-09-07 12:38:51,665 [main] INFO PackageDocImpl - collecting doc for package MetaModel ... +2024-09-07 12:38:51,665 [main] INFO DocCollectorImpl - >> retained scoped IEC61850/IEC61850-7-2/MetaModel +2024-09-07 12:38:51,666 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,666 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,667 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,667 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,667 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,667 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,667 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SERVER, hphSpec = 'aaùSERVERùUML376ùdd' +2024-09-07 12:38:51,667 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,667 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,668 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IPAddress, hphSpec = 'aaùIPAddressùUML103ùdd' +2024-09-07 12:38:51,668 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MCAA, hphSpec = 'aaùMCAAùUML380ùdd' +2024-09-07 12:38:51,668 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FILE, hphSpec = 'aaùFILEùUML378ùdd' +2024-09-07 12:38:51,668 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TPAA, hphSpec = 'aaùTPAAùUML379ùdd' +2024-09-07 12:38:51,668 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LD, hphSpec = 'aaùLDùUML194ùdd' +2024-09-07 12:38:51,668 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IED, hphSpec = 'aaùIEDùUML375ùdd' +2024-09-07 12:38:51,669 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,669 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NonPersistentDS, hphSpec = 'aaùNonPersistentDSùUML363ùdd' +2024-09-07 12:38:51,669 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,669 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,669 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,669 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,669 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LDReference, hphSpec = 'aaùLDReferenceùUML183ùdd' +2024-09-07 12:38:51,670 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNDOM, hphSpec = 'aaùLNDOMùUML200ùdd' +2024-09-07 12:38:51,670 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN0, hphSpec = 'aaùLN0ùUML198ùdd' +2024-09-07 12:38:51,670 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNPHD, hphSpec = 'aaùLNPHDùUML196ùdd' +2024-09-07 12:38:51,670 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SERVER, hphSpec = 'aaùSERVERùUML376ùdd' +2024-09-07 12:38:51,670 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,670 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,670 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,671 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNReference, hphSpec = 'aaùLNReferenceùUML184ùdd' +2024-09-07 12:38:51,671 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-07 12:38:51,671 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNOwnedDS, hphSpec = 'aaùLNOwnedDSùUML360ùdd' +2024-09-07 12:38:51,671 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LOG, hphSpec = 'aaùLOGùUML374ùdd' +2024-09-07 12:38:51,671 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LCB, hphSpec = 'aaùLCBùUML368ùdd' +2024-09-07 12:38:51,671 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = URCB, hphSpec = 'aaùURCBùUML367ùdd' +2024-09-07 12:38:51,671 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BRCB, hphSpec = 'aaùBRCBùUML366ùdd' +2024-09-07 12:38:51,671 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-07 12:38:51,671 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,671 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,671 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,672 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LD, hphSpec = 'aaùLDùUML194ùdd' +2024-09-07 12:38:51,672 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-07 12:38:51,672 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,672 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,672 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,672 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = USVCB, hphSpec = 'aaùUSVCBùUML372ùdd' +2024-09-07 12:38:51,672 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GCB, hphSpec = 'aaùGCBùUML369ùdd' +2024-09-07 12:38:51,672 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MSVCB, hphSpec = 'aaùMSVCBùUML371ùdd' +2024-09-07 12:38:51,672 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SGCB, hphSpec = 'aaùSGCBùUML373ùdd' +2024-09-07 12:38:51,672 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LD, hphSpec = 'aaùLDùUML194ùdd' +2024-09-07 12:38:51,673 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-07 12:38:51,673 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,673 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,673 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,673 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LD, hphSpec = 'aaùLDùUML194ùdd' +2024-09-07 12:38:51,674 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,674 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,674 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,686 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,686 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCD, hphSpec = 'aaùFCDùUML377ùdd' +2024-09-07 12:38:51,686 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-07 12:38:51,686 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-07 12:38:51,686 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,686 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,686 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,686 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-07 12:38:51,686 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ComposedCDC, hphSpec = 'aaùComposedCDCùUML249ùdd' +2024-09-07 12:38:51,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-07 12:38:51,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-07 12:38:51,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDReference, hphSpec = 'aaùFCDReferenceùUML186ùdd' +2024-09-07 12:38:51,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FcKind, hphSpec = 'aaùFcKindùUML79ùdd' +2024-09-07 12:38:51,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DS, hphSpec = 'aaùDSùUML359ùdd' +2024-09-07 12:38:51,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-07 12:38:51,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDAReference, hphSpec = 'aaùFCDAReferenceùUML187ùdd' +2024-09-07 12:38:51,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-07 12:38:51,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DS, hphSpec = 'aaùDSùUML359ùdd' +2024-09-07 12:38:51,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-07 12:38:51,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCD, hphSpec = 'aaùFCDùUML377ùdd' +2024-09-07 12:38:51,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDAReference, hphSpec = 'aaùFCDAReferenceùUML187ùdd' +2024-09-07 12:38:51,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ComposedDA, hphSpec = 'aaùComposedDAùUML354ùdd' +2024-09-07 12:38:51,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-07 12:38:51,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AttrValue, hphSpec = 'aaùAttrValueùUML99ùdd' +2024-09-07 12:38:51,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-07 12:38:51,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-07 12:38:51,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-07 12:38:51,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-07 12:38:51,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-07 12:38:51,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-07 12:38:51,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-07 12:38:51,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-07 12:38:51,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-07 12:38:51,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-07 12:38:51,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCD, hphSpec = 'aaùFCDùUML377ùdd' +2024-09-07 12:38:51,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DS, hphSpec = 'aaùDSùUML359ùdd' +2024-09-07 12:38:51,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNOwnedDSReference, hphSpec = 'aaùLNOwnedDSReferenceùUML190ùdd' +2024-09-07 12:38:51,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-07 12:38:51,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DS, hphSpec = 'aaùDSùUML359ùdd' +2024-09-07 12:38:51,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NonPersistentDSReference, hphSpec = 'aaùNonPersistentDSReferenceùUML191ùdd' +2024-09-07 12:38:51,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TPAA, hphSpec = 'aaùTPAAùUML379ùdd' +2024-09-07 12:38:51,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNOwnedDS, hphSpec = 'aaùLNOwnedDSùUML360ùdd' +2024-09-07 12:38:51,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DS, hphSpec = 'aaùDSùUML359ùdd' +2024-09-07 12:38:51,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNOwnedDS, hphSpec = 'aaùLNOwnedDSùUML360ùdd' +2024-09-07 12:38:51,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DS, hphSpec = 'aaùDSùUML359ùdd' +2024-09-07 12:38:51,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CBReference, hphSpec = 'aaùCBReferenceùUML188ùdd' +2024-09-07 12:38:51,693 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControlBlock, hphSpec = 'aaùControlBlockùUML364ùdd' +2024-09-07 12:38:51,693 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,693 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,693 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,693 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = RCB, hphSpec = 'aaùRCBùUML365ùdd' +2024-09-07 12:38:51,693 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControlBlock, hphSpec = 'aaùControlBlockùUML364ùdd' +2024-09-07 12:38:51,693 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,693 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,693 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,693 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IPAddress, hphSpec = 'aaùIPAddressùUML103ùdd' +2024-09-07 12:38:51,693 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNOwnedDS, hphSpec = 'aaùLNOwnedDSùUML360ùdd' +2024-09-07 12:38:51,693 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-07 12:38:51,693 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = RCB, hphSpec = 'aaùRCBùUML365ùdd' +2024-09-07 12:38:51,693 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControlBlock, hphSpec = 'aaùControlBlockùUML364ùdd' +2024-09-07 12:38:51,693 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,693 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,693 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,693 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IPAddress, hphSpec = 'aaùIPAddressùUML103ùdd' +2024-09-07 12:38:51,694 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DS, hphSpec = 'aaùDSùUML359ùdd' +2024-09-07 12:38:51,694 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-07 12:38:51,694 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControlBlock, hphSpec = 'aaùControlBlockùUML364ùdd' +2024-09-07 12:38:51,694 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,694 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,694 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,694 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNOwnedDS, hphSpec = 'aaùLNOwnedDSùUML360ùdd' +2024-09-07 12:38:51,694 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LOG, hphSpec = 'aaùLOGùUML374ùdd' +2024-09-07 12:38:51,694 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-07 12:38:51,694 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,694 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,694 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,694 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LOGReference, hphSpec = 'aaùLOGReferenceùUML189ùdd' +2024-09-07 12:38:51,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-07 12:38:51,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControlBlock, hphSpec = 'aaùControlBlockùUML364ùdd' +2024-09-07 12:38:51,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MulticastAddress, hphSpec = 'aaùMulticastAddressùUML104ùdd' +2024-09-07 12:38:51,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNOwnedDS, hphSpec = 'aaùLNOwnedDSùUML360ùdd' +2024-09-07 12:38:51,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN0, hphSpec = 'aaùLN0ùUML198ùdd' +2024-09-07 12:38:51,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControlBlock, hphSpec = 'aaùControlBlockùUML364ùdd' +2024-09-07 12:38:51,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SVCB, hphSpec = 'aaùSVCBùUML370ùdd' +2024-09-07 12:38:51,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControlBlock, hphSpec = 'aaùControlBlockùUML364ùdd' +2024-09-07 12:38:51,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,696 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,696 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MulticastAddress, hphSpec = 'aaùMulticastAddressùUML104ùdd' +2024-09-07 12:38:51,696 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNOwnedDS, hphSpec = 'aaùLNOwnedDSùUML360ùdd' +2024-09-07 12:38:51,696 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN0, hphSpec = 'aaùLN0ùUML198ùdd' +2024-09-07 12:38:51,696 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SVCB, hphSpec = 'aaùSVCBùUML370ùdd' +2024-09-07 12:38:51,696 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControlBlock, hphSpec = 'aaùControlBlockùUML364ùdd' +2024-09-07 12:38:51,696 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,696 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,696 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,696 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IPAddress, hphSpec = 'aaùIPAddressùUML103ùdd' +2024-09-07 12:38:51,696 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DS, hphSpec = 'aaùDSùUML359ùdd' +2024-09-07 12:38:51,696 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN0, hphSpec = 'aaùLN0ùUML198ùdd' +2024-09-07 12:38:51,697 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControlBlock, hphSpec = 'aaùControlBlockùUML364ùdd' +2024-09-07 12:38:51,697 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,697 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,697 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,697 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SG, hphSpec = 'aaùFCDA_SGùUML291ùdd' +2024-09-07 12:38:51,697 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SE, hphSpec = 'aaùFCDA_SEùUML286ùdd' +2024-09-07 12:38:51,697 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN0, hphSpec = 'aaùLN0ùUML198ùdd' +2024-09-07 12:38:51,699 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,699 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,699 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FILEReference, hphSpec = 'aaùFILEReferenceùUML182ùdd' +2024-09-07 12:38:51,699 [main] INFO PackageDocImpl - collecting doc for package MetaModelFCsAndTrgOps ... +2024-09-07 12:38:51,700 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF, hphSpec = 'aaùFCDA_CFùUML256ùdd' +2024-09-07 12:38:51,700 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,700 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,700 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,700 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,701 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF_dchg, hphSpec = 'aaùFCDA_CF_dchgùUML258ùdd' +2024-09-07 12:38:51,701 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF, hphSpec = 'aaùFCDA_CFùUML256ùdd' +2024-09-07 12:38:51,701 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,701 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,701 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,701 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,701 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_MX, hphSpec = 'aaùFCDA_MXùUML273ùdd' +2024-09-07 12:38:51,701 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,701 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,701 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,701 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SE_dchg, hphSpec = 'aaùFCDA_SE_dchgùUML287ùdd' +2024-09-07 12:38:51,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SE, hphSpec = 'aaùFCDA_SEùUML286ùdd' +2024-09-07 12:38:51,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SG_dchg, hphSpec = 'aaùFCDA_SG_dchgùUML292ùdd' +2024-09-07 12:38:51,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SG, hphSpec = 'aaùFCDA_SGùUML291ùdd' +2024-09-07 12:38:51,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,703 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-07 12:38:51,703 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,703 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,703 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,703 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,703 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST_dchg, hphSpec = 'aaùFCDA_ST_dchgùUML302ùdd' +2024-09-07 12:38:51,703 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-07 12:38:51,703 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,703 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,703 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,703 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,704 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST_dchg_dupd, hphSpec = 'aaùFCDA_ST_dchg_dupdùUML310ùdd' +2024-09-07 12:38:51,704 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-07 12:38:51,704 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,704 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,704 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,704 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,704 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SV, hphSpec = 'aaùFCDA_SVùUML318ùdd' +2024-09-07 12:38:51,704 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,704 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,704 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,704 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,705 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,705 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,705 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,705 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,705 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FcKind, hphSpec = 'aaùFcKindùUML79ùdd' +2024-09-07 12:38:51,705 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,705 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,705 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FcKind, hphSpec = 'aaùFcKindùUML79ùdd' +2024-09-07 12:38:51,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF, hphSpec = 'aaùFCDA_CFùUML256ùdd' +2024-09-07 12:38:51,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TrgOpKind, hphSpec = 'aaùTrgOpKindùUML80ùdd' +2024-09-07 12:38:51,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FcKind, hphSpec = 'aaùFcKindùUML79ùdd' +2024-09-07 12:38:51,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FcKind, hphSpec = 'aaùFcKindùUML79ùdd' +2024-09-07 12:38:51,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FcKind, hphSpec = 'aaùFcKindùUML79ùdd' +2024-09-07 12:38:51,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_MX, hphSpec = 'aaùFCDA_MXùUML273ùdd' +2024-09-07 12:38:51,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TrgOpKind, hphSpec = 'aaùTrgOpKindùUML80ùdd' +2024-09-07 12:38:51,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_MX, hphSpec = 'aaùFCDA_MXùUML273ùdd' +2024-09-07 12:38:51,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TrgOpKind, hphSpec = 'aaùTrgOpKindùUML80ùdd' +2024-09-07 12:38:51,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_MX, hphSpec = 'aaùFCDA_MXùUML273ùdd' +2024-09-07 12:38:51,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TrgOpKind, hphSpec = 'aaùTrgOpKindùUML80ùdd' +2024-09-07 12:38:51,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FcKind, hphSpec = 'aaùFcKindùUML79ùdd' +2024-09-07 12:38:51,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_OR, hphSpec = 'aaùFCDA_ORùUML283ùdd' +2024-09-07 12:38:51,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TrgOpKind, hphSpec = 'aaùTrgOpKindùUML80ùdd' +2024-09-07 12:38:51,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FcKind, hphSpec = 'aaùFcKindùUML79ùdd' +2024-09-07 12:38:51,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SE, hphSpec = 'aaùFCDA_SEùUML286ùdd' +2024-09-07 12:38:51,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TrgOpKind, hphSpec = 'aaùTrgOpKindùUML80ùdd' +2024-09-07 12:38:51,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FcKind, hphSpec = 'aaùFcKindùUML79ùdd' +2024-09-07 12:38:51,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SG, hphSpec = 'aaùFCDA_SGùUML291ùdd' +2024-09-07 12:38:51,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TrgOpKind, hphSpec = 'aaùTrgOpKindùUML80ùdd' +2024-09-07 12:38:51,711 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,711 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,711 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,711 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,711 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FcKind, hphSpec = 'aaùFcKindùUML79ùdd' +2024-09-07 12:38:51,711 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SP, hphSpec = 'aaùFCDA_SPùUML296ùdd' +2024-09-07 12:38:51,711 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,711 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,711 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,711 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,711 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TrgOpKind, hphSpec = 'aaùTrgOpKindùUML80ùdd' +2024-09-07 12:38:51,711 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,711 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,711 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,711 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,712 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FcKind, hphSpec = 'aaùFcKindùUML79ùdd' +2024-09-07 12:38:51,712 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,712 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-07 12:38:51,712 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,712 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,712 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,712 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,712 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TrgOpKind, hphSpec = 'aaùTrgOpKindùUML80ùdd' +2024-09-07 12:38:51,712 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-07 12:38:51,712 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,712 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,712 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,712 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TrgOpKind, hphSpec = 'aaùTrgOpKindùUML80ùdd' +2024-09-07 12:38:51,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-07 12:38:51,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TrgOpKind, hphSpec = 'aaùTrgOpKindùUML80ùdd' +2024-09-07 12:38:51,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-07 12:38:51,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TrgOpKind, hphSpec = 'aaùTrgOpKindùUML80ùdd' +2024-09-07 12:38:51,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FcKind, hphSpec = 'aaùFcKindùUML79ùdd' +2024-09-07 12:38:51,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumFCDA_ST_dchg, hphSpec = 'aaùEnumFCDA_ST_dchgùUML303ùdd' +2024-09-07 12:38:51,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST_dchg, hphSpec = 'aaùFCDA_ST_dchgùUML302ùdd' +2024-09-07 12:38:51,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-07 12:38:51,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumFCDA_SV, hphSpec = 'aaùEnumFCDA_SVùUML319ùdd' +2024-09-07 12:38:51,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SV, hphSpec = 'aaùFCDA_SVùUML318ùdd' +2024-09-07 12:38:51,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,715 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,715 [main] INFO PackageDocImpl - collecting doc for package CDCServiceTracking ... +2024-09-07 12:38:51,715 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,715 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-07 12:38:51,715 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-07 12:38:51,715 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,715 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,715 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,719 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-07 12:38:51,720 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,720 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-07 12:38:51,720 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-07 12:38:51,720 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,720 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CST, hphSpec = 'aaùCSTùUML218ùdd' +2024-09-07 12:38:51,720 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,720 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-07 12:38:51,720 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-07 12:38:51,720 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,720 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,720 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-07 12:38:51,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-07 12:38:51,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-07 12:38:51,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CST, hphSpec = 'aaùCSTùUML218ùdd' +2024-09-07 12:38:51,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-07 12:38:51,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-07 12:38:51,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-07 12:38:51,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-07 12:38:51,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-07 12:38:51,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CST, hphSpec = 'aaùCSTùUML218ùdd' +2024-09-07 12:38:51,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-07 12:38:51,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-07 12:38:51,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-07 12:38:51,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-07 12:38:51,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-07 12:38:51,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CST, hphSpec = 'aaùCSTùUML218ùdd' +2024-09-07 12:38:51,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-07 12:38:51,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-07 12:38:51,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-07 12:38:51,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-07 12:38:51,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-07 12:38:51,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CST, hphSpec = 'aaùCSTùUML218ùdd' +2024-09-07 12:38:51,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-07 12:38:51,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-07 12:38:51,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-07 12:38:51,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-07 12:38:51,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-07 12:38:51,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CST, hphSpec = 'aaùCSTùUML218ùdd' +2024-09-07 12:38:51,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-07 12:38:51,724 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-07 12:38:51,724 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,724 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,724 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,724 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-07 12:38:51,724 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,724 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-07 12:38:51,724 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-07 12:38:51,724 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,724 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CST, hphSpec = 'aaùCSTùUML218ùdd' +2024-09-07 12:38:51,724 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,724 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-07 12:38:51,724 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-07 12:38:51,724 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,724 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,724 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,724 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-07 12:38:51,724 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,724 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-07 12:38:51,724 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-07 12:38:51,724 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,725 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CST, hphSpec = 'aaùCSTùUML218ùdd' +2024-09-07 12:38:51,725 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,725 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-07 12:38:51,725 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-07 12:38:51,725 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,725 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,725 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,725 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-07 12:38:51,725 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,725 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-07 12:38:51,725 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-07 12:38:51,725 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,727 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CST, hphSpec = 'aaùCSTùUML218ùdd' +2024-09-07 12:38:51,727 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,727 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-07 12:38:51,727 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-07 12:38:51,727 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,727 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,727 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,728 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-07 12:38:51,728 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,728 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-07 12:38:51,728 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-07 12:38:51,728 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,728 [main] INFO PackageDocImpl - collecting doc for package IEC61850_7_3 ... +2024-09-07 12:38:51,729 [main] INFO PackageDocImpl - collecting doc for package PresenceConditions ... +2024-09-07 12:38:51,729 [main] INFO DocCollectorImpl - >> retained scoped IEC61850/IEC61850-7-3/PresenceConditions +2024-09-07 12:38:51,735 [main] INFO PackageDocImpl - collected presence conditions from PresenceConditions ... +2024-09-07 12:38:51,736 [main] TRACE PackageDocImpl - org.tanjakostic.jcleancim.docgen.collector.impl.PresCondPackageDoc@50b9f2Conditions for element inclusion +This clause introduces conditions that specify presence of elements in a given context (one LN, or one CDC, or one data object for dataNs). +shows presence conditions. +Conditions for presence of elements within a context +"Condition name" | "Definition" +"M" | "Element is mandatory." +"O" | "Element is optional." +"MFsubst" | "Element is mandatory if substitution is supported (for substitution, see IEC 61850-7-2), otherwise forbidden." +"AtLeastOne(n)" | "At least one of marked elements shall be present." +"AllOrNonePerGroup(n)" | "Parameter n: group number (>0). +All or none of the elements of a group n shall be present." +"AtMostOne" | "At most one of marked elements shall be present." +"MF(sibling)" | "Parameter sibling: sibling element name. +Mandatory if sibling element is present, otherwise forbidden." +"AllOnlyOneGroup(n)" | "Parameter n: group number (>0). +All elements of only one group n shall be present." +"MOln0" | "The element is mandatory in the context of LLN0; otherwise optional." +"MFln0" | "The element is mandatory in the context of LLN0; otherwise forbidden." +"MOlnNs" | "The element is mandatory if the name space of its logical node deviates from the name space of the containing logical device, otherwise optional. +Notes: +- The logical device name space is given in LLN0.NamPlt.ldNs. +- Applies to LPL.lnNs only." +"MOdataNs" | "The element is mandatory if the name space of its data object deviates from the name space of its logical node, otherwise optional. +Notes: +- The name space a logical node LN belongs to is given by: +- The data attribute NamPlt.lnNs if available, otherwise +- The containing logical device name space, i.e., the data attribute NamPlt.ldNs of the relevant LLN0. +- Applies to the data attribute dataNs of any CDC only." +"MOcdcNs" | "The element is mandatory if the name space of its CDC deviates from the name space of its data object, otherwise optional. +Notes: +- The name space a data object belongs to is given by: +- The data attribute dataNs in the same CDC if it exists, otherwise +- The containing logical node’s namespace, i.e., the attribute NamPlt.lnNs if it exist, otherwise +- The containing logical device name space, i.e., the data attribute NamPlt.ldNs of the relevant LLN0. +- Applies to data attributes 'cdcNs' and 'cdcName' only. +- From Ed. 2 on shall only be used for logical node definitions of other name spaces (e.g., Wind) to refer to the standardized CDC definitions." +"MFscaledAV" | "The element is mandatory if any sibling elements of type AnalogueValue include 'i' as a child, otherwise forbidden." +"MFscaledMagV" | "The element is mandatory if any sibling elements of type Vector include 'i' as a child of their 'mag' attribute, otherwise forbidden." +"MFscaledAngV" | "The element is mandatory if any sibling elements of type Vector include 'i' as a child of their 'ang' attribute, otherwise forbidden." +"MFsg" | "The element is mandatory if it is member of setting group, otherwise forbidden. +Note: MFsg, OFsg, and MFsgAtLeastOne always all apply or all do not apply in a given context." +"OFsg" | "The element is optional and may be used only if it is member of setting groups, otherwise forbidden. +Note: MFsg, OFsg, and MFsgAtLeastOne always all apply or all do not apply in a given context." +"MFsgAtLeastOne" | "At least one of the elements is mandatory if it is member of setting group (the others are optional). Otherwise, they are all forbidden. +Note: MFsg, OFsg, and MFsgAtLeastOne always all apply or all do not apply in a given context." +"MFnsg" | "The element is mandatory for settings outside setting groups, otherwise forbidden. +Note: MFnsg, OFnsg, and MFnsgAtLeastOne always all apply or all do not apply in a given context." +"OFnsg" | "The element is optional and may be used only for settings outside setting groups, otherwise forbidden. +Note: MFnsg, OFnsg, and MFnsgAtLeastOne always all apply or all do not apply in a given context." +"MFnsgAtLeastOne" | "At least one of the elements is mandatory for settings outside setting groups (the others are optional). Otherwise, they are all forbidden. +Note: MFnsg, OFnsg, and MFnsgAtLeastOne always all apply or all do not apply in a given context." +"MFrms" | "The element is mandatory if the harmonic values in the context are calculated as a ratio to RMS value (value of data attribute 'hvRef' is 'rms'), forbidden otherwise." +"Mmulti" | "At least one element shall be present; all instances have an instance number within range [1, 99] (see Part 7-1)." +"Omulti" | "Zero or more elements may be present; all instances have an instance number within range [1, 99] (see Part 7-1)." +"OmultiRange(min, max)" | "Parameters min, max: limits for instance number (>0). +Zero or more elements may be present; all instances have an instance number within range [min, max] (see Part 7-1)." +"MOcond(condID)" | "Parameter condID: condition number (>0). +Textual presence condition (non-machine processable) with reference condID to context specific text. If satisfied, the element is mandatory, otherwise optional." +"MF(condID)" | "Parameter condID: condition number (>0). +Textual presence condition (non-machine processable) with reference condID to context specific text. If satisfied, the element is mandatory, otherwise forbidden." +"OF(condID)" | "Parameter condID: condition number (>0). +Textual presence condition (non-machine processable) with reference condID to context specific text. If satisfied, the element is optional, otherwise forbidden." +"MOrootLD" | "The element is mandatory in the context of a root logical device; otherwise it is optional." + +2024-09-07 12:38:51,736 [main] INFO PackageDocImpl - collecting doc for package DAEnums ... +2024-09-07 12:38:51,736 [main] INFO DocCollectorImpl - >> retained scoped IEC61850/IEC61850-7-3/DAEnums +2024-09-07 12:38:51,740 [main] TRACE EnumsScl - ---- collecting XML doc for enums in DAEnums ... +2024-09-07 12:38:51,746 [main] INFO PackageDocImpl - collected SCL from DAEnums ... +2024-09-07 12:38:51,747 [main] TRACE PackageDocImpl - + + m + kg + s + A + K + mol + cd + deg + rad + sr + Gy + Bq + °C + Sv + F + C + S + H + V + ohm + J + N + Hz + lx + Lm + Wb + T + W + Pa + + + m/s + m/s² + m³/s + m/m³ + M + kg/m³ + m²/s + W/m K + J/K + ppm + 1/s + rad/s + W/m² + J/m² + S/m + K/s + Pa/s + J/kg K + VA + Watts + VAr + phi + cos(phi) + Vs + + As + + A²t + VAh + Wh + VArh + V/Hz + Hz/s + char + char/s + kgm² + dB + J/Wh + W/s + l/s + dBm + + + y + z + a + f + p + n + µ + m + c + d + + da + h + k + M + G + T + P + E + Z + Y + + + unknown + forward + backward + + + Va + Vb + Vc + Aa + Ab + Ac + Vab + Vbc + Vca + Vother + Aother + Synchrophasor + + + +2024-09-07 12:38:51,747 [main] INFO PackageDocImpl - collecting doc for package ImplicitDAs ... +2024-09-07 12:38:51,747 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-07 12:38:51,747 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-07 12:38:51,747 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-07 12:38:51,747 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,747 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,747 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,748 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-07 12:38:51,748 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-07 12:38:51,749 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-07 12:38:51,749 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,749 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,749 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,749 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-07 12:38:51,749 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-07 12:38:51,749 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-07 12:38:51,749 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,749 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,749 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,750 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-07 12:38:51,750 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-07 12:38:51,750 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-07 12:38:51,750 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,750 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,750 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,750 [main] INFO PackageDocImpl - collecting doc for package ConstructedDAs ... +2024-09-07 12:38:51,750 [main] INFO DocCollectorImpl - >> retained scoped IEC61850/IEC61850-7-3/ConstructedDAs +2024-09-07 12:38:51,750 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PackedPrimitiveDA, hphSpec = 'aaùPackedPrimitiveDAùUML336ùdd' +2024-09-07 12:38:51,750 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-07 12:38:51,750 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-07 12:38:51,750 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,750 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,750 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,750 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ValidityKind, hphSpec = 'aaùValidityKindùUML120ùdd' +2024-09-07 12:38:51,750 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DetailQual, hphSpec = 'aaùDetailQualùUML121ùdd' +2024-09-07 12:38:51,751 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SourceKind, hphSpec = 'aaùSourceKindùUML122ùdd' +2024-09-07 12:38:51,751 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,751 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,751 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,752 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,752 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,752 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,752 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,752 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,752 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,752 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,752 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ComposedDA, hphSpec = 'aaùComposedDAùUML354ùdd' +2024-09-07 12:38:51,752 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-07 12:38:51,752 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,752 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,753 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,753 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT32, hphSpec = 'aaùINT32ùUML85ùdd' +2024-09-07 12:38:51,753 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FLOAT32, hphSpec = 'aaùFLOAT32ùUML87ùdd' +2024-09-07 12:38:51,753 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ComposedDA, hphSpec = 'aaùComposedDAùUML354ùdd' +2024-09-07 12:38:51,753 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-07 12:38:51,753 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,753 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,753 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,753 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AnalogueValue, hphSpec = 'aaùAnalogueValueùUML355ùdd' +2024-09-07 12:38:51,753 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AnalogueValue, hphSpec = 'aaùAnalogueValueùUML355ùdd' +2024-09-07 12:38:51,753 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AnalogueValue, hphSpec = 'aaùAnalogueValueùUML355ùdd' +2024-09-07 12:38:51,753 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AnalogueValue, hphSpec = 'aaùAnalogueValueùUML355ùdd' +2024-09-07 12:38:51,753 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AnalogueValue, hphSpec = 'aaùAnalogueValueùUML355ùdd' +2024-09-07 12:38:51,753 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AnalogueValue, hphSpec = 'aaùAnalogueValueùUML355ùdd' +2024-09-07 12:38:51,753 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT32U, hphSpec = 'aaùINT32UùUML86ùdd' +2024-09-07 12:38:51,754 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ComposedDA, hphSpec = 'aaùComposedDAùUML354ùdd' +2024-09-07 12:38:51,754 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-07 12:38:51,754 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,754 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,754 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,754 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SIUnitKind, hphSpec = 'aaùSIUnitKindùUML116ùdd' +2024-09-07 12:38:51,754 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MultiplierKind, hphSpec = 'aaùMultiplierKindùUML117ùdd' +2024-09-07 12:38:51,754 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ComposedDA, hphSpec = 'aaùComposedDAùUML354ùdd' +2024-09-07 12:38:51,754 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-07 12:38:51,754 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,754 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,754 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,754 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FLOAT32, hphSpec = 'aaùFLOAT32ùUML87ùdd' +2024-09-07 12:38:51,754 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FLOAT32, hphSpec = 'aaùFLOAT32ùUML87ùdd' +2024-09-07 12:38:51,754 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FLOAT32, hphSpec = 'aaùFLOAT32ùUML87ùdd' +2024-09-07 12:38:51,754 [main] INFO PackageDocImpl - collecting doc for package FCDAs ... +2024-09-07 12:38:51,755 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_MX, hphSpec = 'aaùFCDA_MXùUML273ùdd' +2024-09-07 12:38:51,755 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,755 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,755 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,755 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,755 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_MX_dchg, hphSpec = 'aaùFCDA_MX_dchgùUML275ùdd' +2024-09-07 12:38:51,755 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_MX, hphSpec = 'aaùFCDA_MXùUML273ùdd' +2024-09-07 12:38:51,755 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,755 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,755 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,755 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,755 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_MX_dchg_dupd, hphSpec = 'aaùFCDA_MX_dchg_dupdùUML278ùdd' +2024-09-07 12:38:51,755 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_MX, hphSpec = 'aaùFCDA_MXùUML273ùdd' +2024-09-07 12:38:51,755 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,755 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,755 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,755 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,756 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_BL, hphSpec = 'aaùFCDA_BLùUML254ùdd' +2024-09-07 12:38:51,756 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,756 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,756 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,756 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,756 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF_dchg, hphSpec = 'aaùFCDA_CF_dchgùUML258ùdd' +2024-09-07 12:38:51,756 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF, hphSpec = 'aaùFCDA_CFùUML256ùdd' +2024-09-07 12:38:51,756 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,756 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,756 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,756 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,756 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_MX_dchg, hphSpec = 'aaùFCDA_MX_dchgùUML275ùdd' +2024-09-07 12:38:51,756 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_MX, hphSpec = 'aaùFCDA_MXùUML273ùdd' +2024-09-07 12:38:51,756 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,756 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,756 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,756 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_OR_dchg, hphSpec = 'aaùFCDA_OR_dchgùUML284ùdd' +2024-09-07 12:38:51,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_OR, hphSpec = 'aaùFCDA_ORùUML283ùdd' +2024-09-07 12:38:51,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SE, hphSpec = 'aaùFCDA_SEùUML286ùdd' +2024-09-07 12:38:51,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SG, hphSpec = 'aaùFCDA_SGùUML291ùdd' +2024-09-07 12:38:51,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SP_dchg, hphSpec = 'aaùFCDA_SP_dchgùUML297ùdd' +2024-09-07 12:38:51,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SP, hphSpec = 'aaùFCDA_SPùUML296ùdd' +2024-09-07 12:38:51,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST_dchg, hphSpec = 'aaùFCDA_ST_dchgùUML302ùdd' +2024-09-07 12:38:51,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-07 12:38:51,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SV, hphSpec = 'aaùFCDA_SVùUML318ùdd' +2024-09-07 12:38:51,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,760 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PackedEnumFCDA_SP_dchg, hphSpec = 'aaùPackedEnumFCDA_SP_dchgùUML304ùdd' +2024-09-07 12:38:51,761 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumFCDA_ST_dchg, hphSpec = 'aaùEnumFCDA_ST_dchgùUML303ùdd' +2024-09-07 12:38:51,761 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST_dchg, hphSpec = 'aaùFCDA_ST_dchgùUML302ùdd' +2024-09-07 12:38:51,761 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-07 12:38:51,761 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,761 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,761 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,761 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,761 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PackedEnumFCDA_SV, hphSpec = 'aaùPackedEnumFCDA_SVùUML320ùdd' +2024-09-07 12:38:51,761 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumFCDA_SV, hphSpec = 'aaùEnumFCDA_SVùUML319ùdd' +2024-09-07 12:38:51,761 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SV, hphSpec = 'aaùFCDA_SVùUML318ùdd' +2024-09-07 12:38:51,761 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,761 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,761 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,761 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,761 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumFCDA_CF_dchg, hphSpec = 'aaùEnumFCDA_CF_dchgùUML259ùdd' +2024-09-07 12:38:51,761 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF_dchg, hphSpec = 'aaùFCDA_CF_dchgùUML258ùdd' +2024-09-07 12:38:51,761 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF, hphSpec = 'aaùFCDA_CFùUML256ùdd' +2024-09-07 12:38:51,761 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,761 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,761 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,761 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,762 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumFCDA_ST_dchg, hphSpec = 'aaùEnumFCDA_ST_dchgùUML303ùdd' +2024-09-07 12:38:51,762 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST_dchg, hphSpec = 'aaùFCDA_ST_dchgùUML302ùdd' +2024-09-07 12:38:51,762 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-07 12:38:51,762 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,762 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,762 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,762 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,762 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumFCDA_ST_dchg_dupd, hphSpec = 'aaùEnumFCDA_ST_dchg_dupdùUML311ùdd' +2024-09-07 12:38:51,762 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST_dchg_dupd, hphSpec = 'aaùFCDA_ST_dchg_dupdùUML310ùdd' +2024-09-07 12:38:51,762 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-07 12:38:51,762 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,762 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,762 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,762 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,762 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumFCDA_SV, hphSpec = 'aaùEnumFCDA_SVùUML319ùdd' +2024-09-07 12:38:51,762 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SV, hphSpec = 'aaùFCDA_SVùUML318ùdd' +2024-09-07 12:38:51,762 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,762 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,762 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,762 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,762 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF, hphSpec = 'aaùFCDA_CFùUML256ùdd' +2024-09-07 12:38:51,762 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,762 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,762 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,762 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF_dchg, hphSpec = 'aaùFCDA_CF_dchgùUML258ùdd' +2024-09-07 12:38:51,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF, hphSpec = 'aaùFCDA_CFùUML256ùdd' +2024-09-07 12:38:51,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF_dchg, hphSpec = 'aaùFCDA_CF_dchgùUML258ùdd' +2024-09-07 12:38:51,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF, hphSpec = 'aaùFCDA_CFùUML256ùdd' +2024-09-07 12:38:51,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF_dchg, hphSpec = 'aaùFCDA_CF_dchgùUML258ùdd' +2024-09-07 12:38:51,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF, hphSpec = 'aaùFCDA_CFùUML256ùdd' +2024-09-07 12:38:51,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST_dchg, hphSpec = 'aaùFCDA_ST_dchgùUML302ùdd' +2024-09-07 12:38:51,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-07 12:38:51,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,764 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST_dchg_dupd, hphSpec = 'aaùFCDA_ST_dchg_dupdùUML310ùdd' +2024-09-07 12:38:51,764 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-07 12:38:51,764 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,764 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,764 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,764 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,764 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumFCDA_CF_dchg, hphSpec = 'aaùEnumFCDA_CF_dchgùUML259ùdd' +2024-09-07 12:38:51,764 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF_dchg, hphSpec = 'aaùFCDA_CF_dchgùUML258ùdd' +2024-09-07 12:38:51,764 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF, hphSpec = 'aaùFCDA_CFùUML256ùdd' +2024-09-07 12:38:51,764 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,764 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,765 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,765 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,765 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumFCDA_ST_dchg, hphSpec = 'aaùEnumFCDA_ST_dchgùUML303ùdd' +2024-09-07 12:38:51,765 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST_dchg, hphSpec = 'aaùFCDA_ST_dchgùUML302ùdd' +2024-09-07 12:38:51,765 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-07 12:38:51,765 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,765 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,765 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,765 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,765 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_DC, hphSpec = 'aaùFCDA_DCùUML268ùdd' +2024-09-07 12:38:51,765 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,765 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,765 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,765 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,766 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SE, hphSpec = 'aaùFCDA_SEùUML286ùdd' +2024-09-07 12:38:51,766 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,766 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,766 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,766 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,766 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SG, hphSpec = 'aaùFCDA_SGùUML291ùdd' +2024-09-07 12:38:51,766 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,766 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,766 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,766 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,766 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SP, hphSpec = 'aaùFCDA_SPùUML296ùdd' +2024-09-07 12:38:51,766 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,766 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,766 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,766 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,766 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_MX_qchg, hphSpec = 'aaùFCDA_MX_qchgùUML280ùdd' +2024-09-07 12:38:51,766 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_MX, hphSpec = 'aaùFCDA_MXùUML273ùdd' +2024-09-07 12:38:51,766 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,766 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,766 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,766 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,767 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST_qchg, hphSpec = 'aaùFCDA_ST_qchgùUML315ùdd' +2024-09-07 12:38:51,767 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-07 12:38:51,767 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,767 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,767 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,767 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,767 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SV, hphSpec = 'aaùFCDA_SVùUML318ùdd' +2024-09-07 12:38:51,767 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,767 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,767 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,767 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,767 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF_dchg, hphSpec = 'aaùFCDA_CF_dchgùUML258ùdd' +2024-09-07 12:38:51,767 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF, hphSpec = 'aaùFCDA_CFùUML256ùdd' +2024-09-07 12:38:51,767 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,767 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,767 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,767 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,767 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-07 12:38:51,767 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,767 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,767 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,768 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,768 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_DC, hphSpec = 'aaùFCDA_DCùUML268ùdd' +2024-09-07 12:38:51,768 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,768 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,768 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,768 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,768 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_EX, hphSpec = 'aaùFCDA_EXùUML271ùdd' +2024-09-07 12:38:51,768 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-07 12:38:51,768 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,768 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,768 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,768 [main] INFO PackageDocImpl - collecting doc for package CommonDataClasses ... +2024-09-07 12:38:51,768 [main] INFO DocCollectorImpl - >> retained scoped IEC61850/IEC61850-7-3/CommonDataClasses +2024-09-07 12:38:51,768 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-07 12:38:51,769 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-07 12:38:51,769 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,769 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,769 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,769 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-07 12:38:51,769 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-07 12:38:51,769 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-07 12:38:51,769 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ComposedCDC, hphSpec = 'aaùComposedCDCùUML249ùdd' +2024-09-07 12:38:51,769 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-07 12:38:51,769 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,769 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,769 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,769 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-07 12:38:51,770 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-07 12:38:51,770 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-07 12:38:51,770 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,770 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-07 12:38:51,770 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-07 12:38:51,770 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,770 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,770 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,770 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,770 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-07 12:38:51,771 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-07 12:38:51,771 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-07 12:38:51,771 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,771 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-07 12:38:51,771 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,771 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-07 12:38:51,771 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-07 12:38:51,771 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,771 [main] INFO PackageDocImpl - collecting doc for package CDCStatusInfo ... +2024-09-07 12:38:51,771 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,771 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,771 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-07 12:38:51,771 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-07 12:38:51,771 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,771 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,771 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,772 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DpStatusKind, hphSpec = 'aaùDpStatusKindùUML82ùdd' +2024-09-07 12:38:51,772 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-07 12:38:51,772 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimeStamp, hphSpec = 'aaùTimeStampùUML93ùdd' +2024-09-07 12:38:51,772 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DpStatusKind, hphSpec = 'aaùDpStatusKindùUML82ùdd' +2024-09-07 12:38:51,772 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-07 12:38:51,772 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,772 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-07 12:38:51,772 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,772 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-07 12:38:51,772 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-07 12:38:51,772 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,772 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,772 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,772 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-07 12:38:51,772 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,772 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-07 12:38:51,772 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-07 12:38:51,772 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-07 12:38:51,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-07 12:38:51,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-07 12:38:51,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-07 12:38:51,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimeStamp, hphSpec = 'aaùTimeStampùUML93ùdd' +2024-09-07 12:38:51,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-07 12:38:51,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-07 12:38:51,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-07 12:38:51,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-07 12:38:51,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-07 12:38:51,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-07 12:38:51,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,774 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-07 12:38:51,774 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-07 12:38:51,774 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,777 [main] INFO Reordering - adding reordering spec: MOVE "subVal" AFTER "subEna" +2024-09-07 12:38:51,777 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,777 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-07 12:38:51,777 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-07 12:38:51,777 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,777 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,777 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,777 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-07 12:38:51,777 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-07 12:38:51,777 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimeStamp, hphSpec = 'aaùTimeStampùUML93ùdd' +2024-09-07 12:38:51,778 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-07 12:38:51,778 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,778 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-07 12:38:51,778 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-07 12:38:51,778 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,778 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,778 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-07 12:38:51,778 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-07 12:38:51,778 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,778 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,778 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,778 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,778 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AllOrNonePerGroup(1), hphSpec = 'aaùAllOrNonePerGroup(1)ùUML560ùdd' +2024-09-07 12:38:51,778 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,778 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AllOrNonePerGroup(2), hphSpec = 'aaùAllOrNonePerGroup(2)ùUML560ùdd' +2024-09-07 12:38:51,778 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-07 12:38:51,778 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,778 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-07 12:38:51,778 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-07 12:38:51,778 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,779 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,779 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-07 12:38:51,779 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-07 12:38:51,779 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,779 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,779 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,779 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT32, hphSpec = 'aaùINT32ùUML85ùdd' +2024-09-07 12:38:51,779 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT16U, hphSpec = 'aaùINT16UùUML84ùdd' +2024-09-07 12:38:51,779 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-07 12:38:51,779 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,779 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-07 12:38:51,779 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-07 12:38:51,779 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,779 [main] INFO PackageDocImpl - collecting doc for package CDCAnalogueInfo ... +2024-09-07 12:38:51,780 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseComposedCDC, hphSpec = 'aaùBaseComposedCDCùUML250ùdd' +2024-09-07 12:38:51,780 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ComposedCDC, hphSpec = 'aaùComposedCDCùUML249ùdd' +2024-09-07 12:38:51,780 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-07 12:38:51,780 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,780 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,780 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,780 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT16U, hphSpec = 'aaùINT16UùUML84ùdd' +2024-09-07 12:38:51,780 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT32U, hphSpec = 'aaùINT32UùUML86ùdd' +2024-09-07 12:38:51,780 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-07 12:38:51,780 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseComposedCDC, hphSpec = 'aaùBaseComposedCDCùUML250ùdd' +2024-09-07 12:38:51,781 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-07 12:38:51,781 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-07 12:38:51,781 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseComposedCDC, hphSpec = 'aaùBaseComposedCDCùUML250ùdd' +2024-09-07 12:38:51,781 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,781 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,781 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-07 12:38:51,781 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-07 12:38:51,781 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,781 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,781 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,781 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,781 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-07 12:38:51,781 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,782 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-07 12:38:51,782 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-07 12:38:51,782 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,782 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,782 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,782 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = RangeConfig, hphSpec = 'aaùRangeConfigùUML356ùdd' +2024-09-07 12:38:51,782 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MF(range), hphSpec = 'aaùMF(range)ùUML562ùdd' +2024-09-07 12:38:51,782 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = RangeConfig, hphSpec = 'aaùRangeConfigùUML356ùdd' +2024-09-07 12:38:51,782 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MF(rangeAng), hphSpec = 'aaùMF(rangeAng)ùUML562ùdd' +2024-09-07 12:38:51,782 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-07 12:38:51,782 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,783 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-07 12:38:51,783 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-07 12:38:51,783 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,783 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HarmonicMeasurandCDC, hphSpec = 'aaùHarmonicMeasurandCDCùUML251ùdd' +2024-09-07 12:38:51,783 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseComposedCDC, hphSpec = 'aaùBaseComposedCDCùUML250ùdd' +2024-09-07 12:38:51,783 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ComposedCDC, hphSpec = 'aaùComposedCDCùUML249ùdd' +2024-09-07 12:38:51,783 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-07 12:38:51,783 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,783 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,783 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,784 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CMV, hphSpec = 'aaùCMVùUML236ùdd' +2024-09-07 12:38:51,784 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PhaseAngleReferenceKind, hphSpec = 'aaùPhaseAngleReferenceKindùUML119ùdd' +2024-09-07 12:38:51,784 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT16U, hphSpec = 'aaùINT16UùUML84ùdd' +2024-09-07 12:38:51,784 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HarmonicMeasurandCDC, hphSpec = 'aaùHarmonicMeasurandCDCùUML251ùdd' +2024-09-07 12:38:51,784 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT32U, hphSpec = 'aaùINT32UùUML86ùdd' +2024-09-07 12:38:51,784 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HarmonicMeasurandCDC, hphSpec = 'aaùHarmonicMeasurandCDCùUML251ùdd' +2024-09-07 12:38:51,784 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-07 12:38:51,784 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseComposedCDC, hphSpec = 'aaùBaseComposedCDCùUML250ùdd' +2024-09-07 12:38:51,784 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-07 12:38:51,784 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-07 12:38:51,784 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseComposedCDC, hphSpec = 'aaùBaseComposedCDCùUML250ùdd' +2024-09-07 12:38:51,785 [main] INFO Reordering - adding reordering spec: MOVE "angRef" AFTER "evalTm" +2024-09-07 12:38:51,785 [main] INFO PackageDocImpl - collecting doc for package CDCControl ... +2024-09-07 12:38:51,786 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,786 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,786 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-07 12:38:51,786 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-07 12:38:51,786 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,786 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,786 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,788 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,788 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,788 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-07 12:38:51,788 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,789 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-07 12:38:51,789 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-07 12:38:51,789 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,789 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,789 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,789 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-07 12:38:51,789 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,789 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-07 12:38:51,789 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-07 12:38:51,789 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,789 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControllableCDC, hphSpec = 'aaùControllableCDCùUML237ùdd' +2024-09-07 12:38:51,790 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,790 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,790 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-07 12:38:51,790 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-07 12:38:51,790 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,790 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,790 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,790 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-07 12:38:51,790 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,790 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControllableCDC, hphSpec = 'aaùControllableCDCùUML237ùdd' +2024-09-07 12:38:51,790 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-07 12:38:51,790 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-07 12:38:51,790 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,790 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-07 12:38:51,791 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,791 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-07 12:38:51,791 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-07 12:38:51,791 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,791 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,791 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,791 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-07 12:38:51,791 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,791 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-07 12:38:51,791 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-07 12:38:51,791 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,791 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-07 12:38:51,791 [main] INFO Reordering - adding reordering spec: MOVE "subVal" AFTER "subEna" +2024-09-07 12:38:51,792 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControllableCDC, hphSpec = 'aaùControllableCDCùUML237ùdd' +2024-09-07 12:38:51,792 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,792 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,792 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-07 12:38:51,792 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-07 12:38:51,792 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,792 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,792 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,792 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AnalogueValue, hphSpec = 'aaùAnalogueValueùUML355ùdd' +2024-09-07 12:38:51,792 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AllOrNonePerGroup(1), hphSpec = 'aaùAllOrNonePerGroup(1)ùUML560ùdd' +2024-09-07 12:38:51,792 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,792 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControllableCDC, hphSpec = 'aaùControllableCDCùUML237ùdd' +2024-09-07 12:38:51,792 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,793 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-07 12:38:51,793 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,793 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-07 12:38:51,793 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-07 12:38:51,793 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,793 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,793 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,793 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-07 12:38:51,793 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,793 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-07 12:38:51,793 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-07 12:38:51,793 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,793 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BsControlKind, hphSpec = 'aaùBsControlKindùUML81ùdd' +2024-09-07 12:38:51,793 [main] INFO PackageDocImpl - collecting doc for package CDCStatusSet ... +2024-09-07 12:38:51,794 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,794 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-07 12:38:51,794 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-07 12:38:51,794 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,794 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,794 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,794 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-07 12:38:51,794 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,794 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-07 12:38:51,794 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-07 12:38:51,794 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,795 [main] INFO PackageDocImpl - collecting doc for package CDCAnalogueSet ... +2024-09-07 12:38:51,795 [main] INFO PackageDocImpl - collecting doc for package CDCDescription ... +2024-09-07 12:38:51,795 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,795 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-07 12:38:51,795 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-07 12:38:51,795 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,795 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,795 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,795 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-07 12:38:51,795 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFln0, hphSpec = 'aaùMFln0ùUML565ùdd' +2024-09-07 12:38:51,796 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-07 12:38:51,796 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOlnNs, hphSpec = 'aaùMOlnNsùUML566ùdd' +2024-09-07 12:38:51,796 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-07 12:38:51,796 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,796 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-07 12:38:51,796 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-07 12:38:51,796 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,796 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENG, hphSpec = 'aaùENGùUML246ùdd' +2024-09-07 12:38:51,796 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENG, hphSpec = 'aaùENGùUML246ùdd' +2024-09-07 12:38:51,796 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HWYE, hphSpec = 'aaùHWYEùUML252ùdd' +2024-09-07 12:38:51,796 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PhaseAngleReferenceKind, hphSpec = 'aaùPhaseAngleReferenceKindùUML119ùdd' +2024-09-07 12:38:51,796 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,796 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,796 [main] DEBUG DataIndexDoc - Attribute 'cdcNs' defined on multiple classes in and under 'CommonDataClasses' - may be possible to avoid duplication by using inheritance. +2024-09-07 12:38:51,796 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,796 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseComposedCDC, hphSpec = 'aaùBaseComposedCDCùUML250ùdd' +2024-09-07 12:38:51,797 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-07 12:38:51,797 [main] DEBUG DataIndexDoc - Attribute 'ctlVal' defined on multiple classes in and under 'CommonDataClasses' - may be possible to avoid duplication by using inheritance. +2024-09-07 12:38:51,797 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-07 12:38:51,797 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BAC, hphSpec = 'aaùBACùUML241ùdd' +2024-09-07 12:38:51,797 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-07 12:38:51,797 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BsControlKind, hphSpec = 'aaùBsControlKindùUML81ùdd' +2024-09-07 12:38:51,797 [main] DEBUG DataIndexDoc - Attribute 'dU' defined on multiple classes in and under 'CommonDataClasses' - may be possible to avoid duplication by using inheritance. +2024-09-07 12:38:51,797 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,797 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseComposedCDC, hphSpec = 'aaùBaseComposedCDCùUML250ùdd' +2024-09-07 12:38:51,797 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-07 12:38:51,797 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ACD, hphSpec = 'aaùACDùUML244ùdd' +2024-09-07 12:38:51,797 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HarmonicMeasurandCDC, hphSpec = 'aaùHarmonicMeasurandCDCùUML251ùdd' +2024-09-07 12:38:51,797 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT16U, hphSpec = 'aaùINT16UùUML84ùdd' +2024-09-07 12:38:51,797 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HST, hphSpec = 'aaùHSTùUML245ùdd' +2024-09-07 12:38:51,797 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT32, hphSpec = 'aaùINT32ùUML85ùdd' +2024-09-07 12:38:51,797 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CMV, hphSpec = 'aaùCMVùUML236ùdd' +2024-09-07 12:38:51,797 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LPL, hphSpec = 'aaùLPLùUML248ùdd' +2024-09-07 12:38:51,797 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-07 12:38:51,797 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LPL, hphSpec = 'aaùLPLùUML248ùdd' +2024-09-07 12:38:51,797 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-07 12:38:51,797 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BAC, hphSpec = 'aaùBACùUML241ùdd' +2024-09-07 12:38:51,797 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AnalogueValue, hphSpec = 'aaùAnalogueValueùUML355ùdd' +2024-09-07 12:38:51,797 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HST, hphSpec = 'aaùHSTùUML245ùdd' +2024-09-07 12:38:51,798 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT16U, hphSpec = 'aaùINT16UùUML84ùdd' +2024-09-07 12:38:51,798 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControllableCDC, hphSpec = 'aaùControllableCDCùUML237ùdd' +2024-09-07 12:38:51,798 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,798 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ACD, hphSpec = 'aaùACDùUML244ùdd' +2024-09-07 12:38:51,798 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,798 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HWYE, hphSpec = 'aaùHWYEùUML252ùdd' +2024-09-07 12:38:51,798 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CMV, hphSpec = 'aaùCMVùUML236ùdd' +2024-09-07 12:38:51,798 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ACD, hphSpec = 'aaùACDùUML244ùdd' +2024-09-07 12:38:51,798 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,798 [main] DEBUG DataIndexDoc - Attribute 'q' defined on multiple classes in and under 'CommonDataClasses' - may be possible to avoid duplication by using inheritance. +2024-09-07 12:38:51,798 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DPS, hphSpec = 'aaùDPSùUML229ùdd' +2024-09-07 12:38:51,798 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,798 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EXY, hphSpec = 'aaùEXYùUML242ùdd' +2024-09-07 12:38:51,798 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-07 12:38:51,798 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CMV, hphSpec = 'aaùCMVùUML236ùdd' +2024-09-07 12:38:51,798 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = RangeConfig, hphSpec = 'aaùRangeConfigùUML356ùdd' +2024-09-07 12:38:51,798 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CMV, hphSpec = 'aaùCMVùUML236ùdd' +2024-09-07 12:38:51,798 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = RangeConfig, hphSpec = 'aaùRangeConfigùUML356ùdd' +2024-09-07 12:38:51,798 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENG, hphSpec = 'aaùENGùUML246ùdd' +2024-09-07 12:38:51,798 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HarmonicMeasurandCDC, hphSpec = 'aaùHarmonicMeasurandCDCùUML251ùdd' +2024-09-07 12:38:51,798 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT32U, hphSpec = 'aaùINT32UùUML86ùdd' +2024-09-07 12:38:51,799 [main] DEBUG DataIndexDoc - Attribute 'stVal' defined on multiple classes in and under 'CommonDataClasses' - may be possible to avoid duplication by using inheritance. +2024-09-07 12:38:51,799 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DPS, hphSpec = 'aaùDPSùUML229ùdd' +2024-09-07 12:38:51,799 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,799 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-07 12:38:51,799 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EXY, hphSpec = 'aaùEXYùUML242ùdd' +2024-09-07 12:38:51,799 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DpStatusKind, hphSpec = 'aaùDpStatusKindùUML82ùdd' +2024-09-07 12:38:51,799 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-07 12:38:51,799 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-07 12:38:51,799 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-07 12:38:51,799 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CMV, hphSpec = 'aaùCMVùUML236ùdd' +2024-09-07 12:38:51,799 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,799 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,799 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,799 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-07 12:38:51,799 [main] DEBUG DataIndexDoc - Attribute 'subVal' defined on multiple classes in and under 'CommonDataClasses' - may be possible to avoid duplication by using inheritance. +2024-09-07 12:38:51,799 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DPS, hphSpec = 'aaùDPSùUML229ùdd' +2024-09-07 12:38:51,799 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,799 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-07 12:38:51,799 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BAC, hphSpec = 'aaùBACùUML241ùdd' +2024-09-07 12:38:51,799 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DpStatusKind, hphSpec = 'aaùDpStatusKindùUML82ùdd' +2024-09-07 12:38:51,799 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-07 12:38:51,799 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-07 12:38:51,799 [main] DEBUG DataIndexDoc - Attribute 't' defined on multiple classes in and under 'CommonDataClasses' - may be possible to avoid duplication by using inheritance. +2024-09-07 12:38:51,799 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DPS, hphSpec = 'aaùDPSùUML229ùdd' +2024-09-07 12:38:51,799 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,799 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EXY, hphSpec = 'aaùEXYùUML242ùdd' +2024-09-07 12:38:51,799 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimeStamp, hphSpec = 'aaùTimeStampùUML93ùdd' +2024-09-07 12:38:51,799 [main] INFO PackageDocImpl - collected data index for CommonDataClasses ... +2024-09-07 12:38:51,800 [main] TRACE PackageDocImpl - org.tanjakostic.jcleancim.docgen.collector.impl.DataIndexDoc@19f6567Data semantics + + shows all attributes defined on classes of CommonDataClasses package. +Attributes defined on classes of CommonDataClasses package +"Name" | "Type" | "(Used in) Description" +"__setVal" | "NullIEC61850" | "(aaùENGùUML246ùdd) See 'setVal'." +"_setVal" | "NullIEC61850" | "(aaùENGùUML246ùdd) See 'setVal'." +"angRef" | "aaùPhaseAngleReferenceKindùUML119ùdd" | "(aaùHWYEùUML252ùdd) Angle reference, indicating the quantity that is used as reference for the phase angles {'phsAHar', 'phsBHar', 'phsCHar', 'neutHar', 'netHar', 'resHar'}[i].ang', instead of their own 'angRef'. For the indicated quantity, the fundamental frequency (index = 1) is used as reference by convention." +"blkEna" | "aaùBOOLEANùUML83ùdd" | "(aaùSubstitutionCDCùUML228ùdd) If true, 'q.operatorBlocked'=true, and the process value is no longer updated." +"cdcNs" | "aaùVISIBLE_STRING255ùUML89ùdd" | "(aaùBasePrimitiveCDCùUML217ùdd) Common data class name space. Scope of the standard specified with the attribute is CDC definition. For details see IEC 61850-7-1. +(aaùBaseComposedCDCùUML250ùdd) See 'BasePrimitiveCDC.cdcNs'." +"ctlVal" | "aaùEnumDAùUML340ùdd, aaùBsControlKindùUML81ùdd" | "(aaùENCùUML238ùdd) Service parameter that determines the control activity, containing the new value for 'stVal'. +(aaùBACùUML241ùdd) Service parameter that determines the control activity, containing the desired change for 'mxVal'. If 'persistent'=false, 'ctlVal'='higher'|'lower' refers to one step in 'mxVal'." +"dU" | "aaùUNICODE_STRING255ùUML88ùdd" | "(aaùBasePrimitiveCDCùUML217ùdd) Textual description of the data using unicode characters. In case of LPL, the description refers to the logical node. +(aaùBaseComposedCDCùUML250ùdd) See 'BasePrimitiveCDC.dU'." +"dirGeneral" | "NullIEC61850" | "(aaùACDùUML244ùdd) General direction of the fault. If the faults of individual phases have different directions, this attribute shall be set to 'dirGeneral'='both'." +"evalTm" | "aaùINT16UùUML84ùdd" | "(aaùHarmonicMeasurandCDCùUML251ùdd) Time window [ms] applied to interharmonic calculations. See 'numHar'." +"hstVal" | "aaùINT32ùUML85ùdd" | "(aaùHSTùUML245ùdd) Array of data values for the histogram entries." +"instCVal" | "NullIEC61850" | "(aaùCMVùUML236ùdd) Instantaneous complex (phasor) value, with magnitude and angle." +"ldNs" | "aaùVISIBLE_STRING255ùUML89ùdd" | "(aaùLPLùUML248ùdd) Logical device name space. Scope of the standard specified with the attribute is LN class definition (CDC definition by reference), for example "IEC 61850-7-4:2010". For details see IEC 61850-7-1." +"lnNs" | "aaùVISIBLE_STRING255ùUML89ùdd" | "(aaùLPLùUML248ùdd) Logical node name space. Scope of the standard specified with the attribute is LN class definition (CDC definition by reference). For details see IEC 61850-7-1." +"mxVal" | "aaùAnalogueValueùUML355ùdd" | "(aaùBACùUML241ùdd) See 'APC.mxVal'." +"numPts" | "aaùINT16UùUML84ùdd" | "(aaùHSTùUML245ùdd) Actual size of 'hstVal[]', 'hstRangeC[]'." +"opOk" | "aaùBOOLEANùUML83ùdd" | "(aaùControllableCDCùUML237ùdd) True indicates that an operate command for a controllable data object has been evaluated and accepted." +"phsA" | "aaùBOOLEANùUML83ùdd" | "(aaùACDùUML244ùdd) See 'ACT.phsA'." +"phsAHar" | "aaùCMVùUML236ùdd" | "(aaùHWYEùUML252ùdd) Array of harmonic and subharmonics, or interharmonic values related to phase A." +"phsB" | "aaùBOOLEANùUML83ùdd" | "(aaùACDùUML244ùdd) See 'ACT.phsB." +"q" | "aaùQualityùUML339ùdd" | "(aaùDPSùUML229ùdd) Quality of the data value 'stVal'. +(aaùENSùUML230ùdd) Quality of the data value 'stVal'. +(aaùEXYùUML242ùdd) Quality of the data value 'stVal'." +"rangeAngC" | "aaùRangeConfigùUML356ùdd" | "(aaùCMVùUML236ùdd) Configuration for 'rangeAng'." +"rangeC" | "aaùRangeConfigùUML356ùdd" | "(aaùCMVùUML236ùdd) Configuration for 'range'." +"setVal" | "NullIEC61850" | "(aaùENGùUML246ùdd) The value of the status setting." +"smpRate" | "aaùINT32UùUML86ùdd" | "(aaùHarmonicMeasurandCDCùUML251ùdd) Determines the highest possible harmonic or interharmonic detectable, according to the sampling theorem; the minimum value is 'smpRate'=2 * 'frequency'. 'smpRate' is the number of samples per nominal period. In the case of a dc system, it is number of samples per s." +"stVal" | "aaùDpStatusKindùUML82ùdd, aaùEnumDAùUML340ùdd, aaùEnumDAùUML340ùdd, aaùEnumDAùUML340ùdd" | "(aaùDPSùUML229ùdd) Status data value. +(aaùENSùUML230ùdd) Status data value. +(aaùENCùUML238ùdd) Status data value. +(aaùEXYùUML242ùdd) Status data value." +"subCVal" | "NullIEC61850" | "(aaùCMVùUML236ùdd) Value used to substitute 'instCVal'." +"subEna" | "aaùBOOLEANùUML83ùdd" | "(aaùSubstitutionCDCùUML228ùdd) Used to enable and disable substitution. If 'subEna'=true, the main data value and quality shall always be set to the same value as the attributes used to store the substitution data value and quality, as follows: +- for SPS, DPS, INS, ENS, SPC, DPC, INC, ENC: 'stVal' to 'subVal', 'q' to 'subQ'; +- for MV: 'instMag' to 'subMag', 'q' to 'subQ'; +- for CMV: 'instCVal' to 'subCVal', 'q' to 'subQ'; +- for BSC, ISC: 'valWTr' to 'subVal, 'q' to 'subQ'; and, +- for APC, BAC: 'mxVal' to 'subVal; 'q' to 'subQ'. +Otherwise, the data value shall be based on the process value." +"subQ" | "aaùQualityùUML339ùdd" | "(aaùSubstitutionCDCùUML228ùdd) Value used to substitute 'q'." +"subVal" | "aaùDpStatusKindùUML82ùdd, aaùEnumDAùUML340ùdd, aaùEnumDAùUML340ùdd, NullIEC61850" | "(aaùDPSùUML229ùdd) Value used to substitute 'stVal'. +(aaùENSùUML230ùdd) Value used to substitute 'stVal'. +(aaùENCùUML238ùdd) Value used to substitute 'stVal'. +(aaùBACùUML241ùdd) Value used to substitute 'mxVal'." +"t" | "aaùTimeStampùUML93ùdd" | "(aaùDPSùUML229ùdd) Timestamp of the last change of the data value 'stVal' or quality 'q'. +(aaùENSùUML230ùdd) Timestamp of the last change of the data value 'stVal' or quality 'q'. +(aaùEXYùUML242ùdd) Timestamp of the last change of the data value 'stVal' or quality 'q'." + +2024-09-07 12:38:51,800 [main] INFO PackageDocImpl - collecting doc for package IEC61850_7_4 ... +2024-09-07 12:38:51,800 [main] INFO PackageDocImpl - collecting doc for package Abbreviations ... +2024-09-07 12:38:51,800 [main] INFO DocCollectorImpl - >> retained scoped IEC61850/IEC61850-7-4/Abbreviations +2024-09-07 12:38:51,805 [main] INFO PackageDocImpl - collected abbreviations from Abbreviations ... +2024-09-07 12:38:51,805 [main] TRACE PackageDocImpl - org.tanjakostic.jcleancim.docgen.collector.impl.AbbrPackageDoc@17d2e85Abbreviated terms +The following terms are used to build concatenated data object names. For example, ChNum is constructed by using two terms "Ch" which stands for "Channel" and "Num" which stands for "Number". Thus the concatenated name represents a "channel number". + shows normative terms that are combined to create data object names. +Normative abbreviations for data object names +"Term" | "Description" +"A" | "Current" +"Alm" | "Alarm" +"Amp" | "Current non-phase-related" +"Z" | "Impedance" +"Z0" | "Zero sequence impedance" +"Z1" | "Positive sequence impedance" +"Zro" | "Zero sequence method" +"aDummy" | "Dummy lower-case term." +"km" | "Kilometer" +"ppm" | "ppm" + +2024-09-07 12:38:51,805 [main] INFO PackageDocImpl - collecting doc for package Functions ... +2024-09-07 12:38:51,805 [main] INFO DocCollectorImpl - >> retained scoped IEC61850/IEC61850-7-4/Functions +2024-09-07 12:38:51,805 [main] INFO PackageDocImpl - collecting doc for package ProtectionEq ... +2024-09-07 12:38:51,806 [main] INFO PackageDocImpl - collecting doc for package ControlEq ... +2024-09-07 12:38:51,807 [main] INFO PackageDocImpl - collecting doc for package MeasurementsAndMetering ... +2024-09-07 12:38:51,807 [main] INFO PackageDocImpl - collecting doc for package SystemWide ... +2024-09-07 12:38:51,808 [main] INFO PackageDocImpl - collecting doc for package PrimaryEq ... +2024-09-07 12:38:51,813 [main] INFO PackageDocImpl - collected LN mappings for Functions ... +2024-09-07 12:38:51,813 [main] TRACE PackageDocImpl - org.tanjakostic.jcleancim.docgen.collector.impl.LnMapPackageDoc@1fddc9aRelationship between this standard and IEC 61850-5 +This subclause presents the mappings between the logical nodes defined in IEC61850-5 (as functional requirements) and the concrete logical nodes in this IEC 61850-7-4, in form of table. +The meaning of the table columns is as follows: +- Functionality: Domain concept represented by the function. +- IEEE C37.2: Device function numbers and contact designations used in IEEE C37.2-2008, if applicable. Note that the reference to the IEEE device number does not mean the related device, but its core functionality in the context of the IEC 61850. Because of their device related definition there is not always a 1:1 relation to the function related definition of logical nodes. +- IEC 60617: Alphanumeric representation of graphical symbols according to IEC 60617, if applicable. +- LN IEC 61850-5: "requirements" logical node designation. +- LN IEC 61850-7-4: Standard (concrete) logical node designation. Note that mappings may not be one-to-one. +- Description: slightly modified description of the IEEE device number if applicable, or/and other descriptive text. + shows mappings between IEC 61850-5 and IEC 61850-7-4 logical nodes. +Logical nodes mappings +"Functionality" | "IEEE C37.2" | "IEC 60617" | "LN IEC 61850-5" | "LN IEC 61850-7-4" | "Description" +"PowerFactorProt" | "55" | "cos\u03C6>, cos\u03C6<" | "PPFR" | "" | "A function that operates when the power factor in an ac circuit rises above or falls below a predetermined value." +"AlarmHandler" | "" | "" | "CALH" | "CALH" | "Alarm handler, responsible for creating group alarms and group events. For the communication, there is no difference between alarms and events, if a time tag is added to any data transmitted. +If several events or alarms have to be combined to group alarms, a separate, configurable function is needed, which may be used to calculate new data out of individual data from different other functions. Remote acknowledgement with different priority and authority shall be possible. +The definition and handling of alarms is an engineering issue." +"GenericIO" | "" | "" | "GGIO" | "GGIO" | "Generic process IO, as seen by the substation automation system (i.e., group of I/Os), used to represent primary or auxiliary equipment non-predefined in groups X, Y or Z: (1) outputs such as analogue outputs, auxiliary relays, etc., (2) IOs representing devices such as horn, bell, target value etc., and (3) IOs from non-defined auxiliary devices." +"LogicalDeviceData" | "" | "" | "LLN0" | "LLN0" | "Logical device data, independent from all application function related functions, such as device identification/name plate, messages from device self-supervision, etc. It may be used also for actions common to all included functions (mode setting, settings, etc.) if applicable. It does not restrict the dedicated access to any single function by definition; Possible restrictions are a matter of implementation and engineering." +"PhysicalDeviceData" | "" | "" | "LPHD" | "LPHD" | "Models common features of physical device (IED)." +"ThreePhaseMeasurement" | "" | "" | "MMXU" | "MMXU" | "Acquires sampled values from CTs and VTs and calculates 3-phase measurands like rms values for current and voltage or power flows. These values are normally used for operational purposes like power flow supervision and management, screen displays, state estimation, etc. The requested accuracy for these functions has to be provided. +Note: The measuring procedures in the protection devices are part of the dedicated protection algorithm represented by the protection functions, and thus outside the scope of the communication standard. Therefore, measurement functions shall not be used as input for protection algorithms. Fault related data like fault peak value, etc. are always provided by the protection functions, and not measurement functions." +"BusbarProt" | "87B" | "" | "PBDF" | "PDIF" | "See DifferentialProt. The complexity of the busbar node with changing topology up to a split into two or more nodes needs special means like a dynamic busbar image. It has to be considered that at least a second busbar protection algorithm exists which is based on the direction comparison of the fault direction in all feeders. +NOTE The decentralized busbar protection consists of an instance of this function per bay with appropriate preprocessing and trip output, in addition to the central decision making instance." +"LineDifferentialProt" | "87L" | "" | "PLDF" | "PDIF" | "See DifferentialProt." +"DirectionalPowerProt" | "32" | "P>" | "PDPR" | "RDIR" | "A function that operates on a predetermined value of power flow in a given direction, such as reverse power flow resulting from the motoring of a generator upon loss of its prime mover." +"DirectionalProt" | "87B" | "" | "PDIR" | "RDIR, PDIS" | "A function that operates based on an agreement of the fault direction signals from all directional fault sensors (for example directional relays) surrounding the fault. The directional comparison for lines is made in combination with protection scheme (DistanceProt). +Note: In the comparison table provided in IEEE C37.2-2008 PDIR has the IEEE device number 87B associated." +"AuxiliaryNetwork" | "" | "" | "ZAXN" | "ZAXN" | "Generic auxiliary network (power supply), as seen by the substation automation system (i.e., group of IOs)." + +2024-09-07 12:38:51,814 [main] INFO PackageDocImpl - collecting doc for package DOEnums ... +2024-09-07 12:38:51,814 [main] INFO DocCollectorImpl - >> retained scoped IEC61850/IEC61850-7-4/DOEnums +2024-09-07 12:38:51,816 [main] TRACE EnumsScl - ---- collecting XML doc for enums in DOEnums ... +2024-09-07 12:38:51,816 [main] INFO PackageDocImpl - collected SCL from DOEnums ... +2024-09-07 12:38:51,816 [main] TRACE PackageDocImpl - + Ok + Warning + Alarm + + + on + on-blocked + test + test/blocked + off + + + UNSPECIFIED + TRUE_RMS + PEAK_FUNDAMENTAL + RMS_FUNDAMENTAL + MIN + MAX + AVG + SDV + PREDICTION + RATE + + + bk1 + bk2 + bk3 + + + +2024-09-07 12:38:51,816 [main] INFO PackageDocImpl - collecting doc for package DerivedDAs ... +2024-09-07 12:38:51,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-07 12:38:51,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-07 12:38:51,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-07 12:38:51,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-07 12:38:51,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-07 12:38:51,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-07 12:38:51,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-07 12:38:51,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-07 12:38:51,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-07 12:38:51,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,818 [main] INFO PackageDocImpl - collecting doc for package DerivedCDCs ... +2024-09-07 12:38:51,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-07 12:38:51,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControllableCDC, hphSpec = 'aaùControllableCDCùUML237ùdd' +2024-09-07 12:38:51,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-07 12:38:51,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-07 12:38:51,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-07 12:38:51,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-07 12:38:51,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControllableCDC, hphSpec = 'aaùControllableCDCùUML237ùdd' +2024-09-07 12:38:51,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-07 12:38:51,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-07 12:38:51,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-07 12:38:51,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-07 12:38:51,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-07 12:38:51,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-07 12:38:51,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-07 12:38:51,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,820 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-07 12:38:51,820 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-07 12:38:51,820 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,820 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-07 12:38:51,820 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-07 12:38:51,820 [main] INFO Reordering - adding reordering spec: MOVE "subVal" AFTER "subEna" +2024-09-07 12:38:51,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENG, hphSpec = 'aaùENGùUML246ùdd' +2024-09-07 12:38:51,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-07 12:38:51,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-07 12:38:51,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-07 12:38:51,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-07 12:38:51,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-07 12:38:51,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-07 12:38:51,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-07 12:38:51,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-07 12:38:51,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-07 12:38:51,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimeStamp, hphSpec = 'aaùTimeStampùUML93ùdd' +2024-09-07 12:38:51,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-07 12:38:51,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-07 12:38:51,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-07 12:38:51,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-07 12:38:51,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-07 12:38:51,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-07 12:38:51,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-07 12:38:51,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-07 12:38:51,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,824 [main] INFO Reordering - adding reordering spec: MOVE "subVal" AFTER "subEna" +2024-09-07 12:38:51,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-07 12:38:51,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-07 12:38:51,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-07 12:38:51,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-07 12:38:51,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimeStamp, hphSpec = 'aaùTimeStampùUML93ùdd' +2024-09-07 12:38:51,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-07 12:38:51,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-07 12:38:51,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-07 12:38:51,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-07 12:38:51,826 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-07 12:38:51,826 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,826 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,826 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,826 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-07 12:38:51,826 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,826 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-07 12:38:51,826 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-07 12:38:51,826 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,826 [main] INFO Reordering - adding reordering spec: MOVE "subVal" AFTER "subEna" +2024-09-07 12:38:51,826 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SPC, hphSpec = 'aaùSPCùUML123ùdd' +2024-09-07 12:38:51,826 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EXY, hphSpec = 'aaùEXYùUML242ùdd' +2024-09-07 12:38:51,827 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,827 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-07 12:38:51,827 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-07 12:38:51,827 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,827 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,827 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,827 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-07 12:38:51,827 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EXY, hphSpec = 'aaùEXYùUML242ùdd' +2024-09-07 12:38:51,827 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-07 12:38:51,827 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EXY, hphSpec = 'aaùEXYùUML242ùdd' +2024-09-07 12:38:51,827 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimeStamp, hphSpec = 'aaùTimeStampùUML93ùdd' +2024-09-07 12:38:51,827 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EXY, hphSpec = 'aaùEXYùUML242ùdd' +2024-09-07 12:38:51,827 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-07 12:38:51,827 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,827 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-07 12:38:51,827 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-07 12:38:51,827 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-07 12:38:51,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-07 12:38:51,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-07 12:38:51,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-07 12:38:51,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimeStamp, hphSpec = 'aaùTimeStampùUML93ùdd' +2024-09-07 12:38:51,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-07 12:38:51,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-07 12:38:51,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-07 12:38:51,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-07 12:38:51,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-07 12:38:51,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,829 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,829 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,829 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-07 12:38:51,829 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,829 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-07 12:38:51,829 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-07 12:38:51,829 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,829 [main] INFO Reordering - adding reordering spec: MOVE "subVal" AFTER "subEna" +2024-09-07 12:38:51,829 [main] INFO PackageDocImpl - collecting doc for package LogicalNodes ... +2024-09-07 12:38:51,829 [main] INFO DocCollectorImpl - >> retained scoped IEC61850/IEC61850-7-4/LogicalNodes +2024-09-07 12:38:51,830 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNDOM, hphSpec = 'aaùLNDOMùUML200ùdd' +2024-09-07 12:38:51,830 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-07 12:38:51,830 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,830 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,830 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,838 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-07 12:38:51,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-07 12:38:51,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-07 12:38:51,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-07 12:38:51,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-07 12:38:51,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNDOM, hphSpec = 'aaùLNDOMùUML200ùdd' +2024-09-07 12:38:51,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-07 12:38:51,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-07 12:38:51,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-07 12:38:51,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-07 12:38:51,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-07 12:38:51,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-07 12:38:51,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENG, hphSpec = 'aaùENGùUML246ùdd' +2024-09-07 12:38:51,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CalcMethodKind, hphSpec = 'aaùCalcMethodKindùUML140ùdd' +2024-09-07 12:38:51,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNDOM, hphSpec = 'aaùLNDOMùUML200ùdd' +2024-09-07 12:38:51,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-07 12:38:51,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-07 12:38:51,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-07 12:38:51,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-07 12:38:51,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-07 12:38:51,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-07 12:38:51,841 [main] INFO PackageDocImpl - collecting doc for package LNGroupL ... +2024-09-07 12:38:51,842 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,842 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNDOM, hphSpec = 'aaùLNDOMùUML200ùdd' +2024-09-07 12:38:51,842 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-07 12:38:51,842 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,842 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,842 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,842 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,842 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,842 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,842 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,842 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-07 12:38:51,842 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,842 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,842 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-07 12:38:51,842 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(2), hphSpec = 'aaùMOcond(2)ùUML582ùdd' +2024-09-07 12:38:51,842 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,842 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-07 12:38:51,842 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,842 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-07 12:38:51,842 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-07 12:38:51,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNPHD, hphSpec = 'aaùLNPHDùUML196ùdd' +2024-09-07 12:38:51,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-07 12:38:51,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-07 12:38:51,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-07 12:38:51,844 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN0, hphSpec = 'aaùLN0ùUML198ùdd' +2024-09-07 12:38:51,844 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-07 12:38:51,844 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,844 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,844 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,844 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-07 12:38:51,844 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,845 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-07 12:38:51,845 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-07 12:38:51,845 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,845 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-07 12:38:51,845 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOrootLD, hphSpec = 'aaùMOrootLDùUML585ùdd' +2024-09-07 12:38:51,845 [main] INFO PackageDocImpl - collecting doc for package LNGroupC ... +2024-09-07 12:38:51,845 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,846 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNDOM, hphSpec = 'aaùLNDOMùUML200ùdd' +2024-09-07 12:38:51,846 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-07 12:38:51,846 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,846 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,846 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,846 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,846 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AtLeastOne(1), hphSpec = 'aaùAtLeastOne(1)ùUML559ùdd' +2024-09-07 12:38:51,846 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AtLeastOne(1), hphSpec = 'aaùAtLeastOne(1)ùUML559ùdd' +2024-09-07 12:38:51,846 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,846 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,846 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-07 12:38:51,846 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-07 12:38:51,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-07 12:38:51,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-07 12:38:51,847 [main] INFO PackageDocImpl - collecting doc for package LNGroupG ... +2024-09-07 12:38:51,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = StatisticsLN, hphSpec = 'aaùStatisticsLNùUML202ùdd' +2024-09-07 12:38:51,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNDOM, hphSpec = 'aaùLNDOMùUML200ùdd' +2024-09-07 12:38:51,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-07 12:38:51,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-07 12:38:51,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-07 12:38:51,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Omulti, hphSpec = 'aaùOmultiùUML580ùdd' +2024-09-07 12:38:51,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-07 12:38:51,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-07 12:38:51,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-07 12:38:51,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-07 12:38:51,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = StatisticsLN, hphSpec = 'aaùStatisticsLNùUML202ùdd' +2024-09-07 12:38:51,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENG, hphSpec = 'aaùENGùUML246ùdd' +2024-09-07 12:38:51,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CalcMethodKind, hphSpec = 'aaùCalcMethodKindùUML140ùdd' +2024-09-07 12:38:51,850 [main] INFO PackageDocImpl - collecting doc for package LNGroupM ... +2024-09-07 12:38:51,850 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = StatisticsLN, hphSpec = 'aaùStatisticsLNùUML202ùdd' +2024-09-07 12:38:51,850 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,850 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNDOM, hphSpec = 'aaùLNDOMùUML200ùdd' +2024-09-07 12:38:51,850 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-07 12:38:51,850 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,850 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,850 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-07 12:38:51,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MO(1), hphSpec = 'aaùMO(1)ùUML582ùdd' +2024-09-07 12:38:51,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-07 12:38:51,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-07 12:38:51,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-07 12:38:51,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-07 12:38:51,852 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = StatisticsLN, hphSpec = 'aaùStatisticsLNùUML202ùdd' +2024-09-07 12:38:51,852 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENG, hphSpec = 'aaùENGùUML246ùdd' +2024-09-07 12:38:51,852 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CalcMethodKind, hphSpec = 'aaùCalcMethodKindùUML140ùdd' +2024-09-07 12:38:51,852 [main] INFO PackageDocImpl - collecting doc for package LNGroupP ... +2024-09-07 12:38:51,852 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PDIS, hphSpec = 'aaùPDISùUML211ùdd' +2024-09-07 12:38:51,852 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ProtectionLN, hphSpec = 'aaùProtectionLNùUML209ùdd' +2024-09-07 12:38:51,852 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,852 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNDOM, hphSpec = 'aaùLNDOMùUML200ùdd' +2024-09-07 12:38:51,852 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-07 12:38:51,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PDIS, hphSpec = 'aaùPDISùUML211ùdd' +2024-09-07 12:38:51,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-07 12:38:51,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-07 12:38:51,854 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,854 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-07 12:38:51,854 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-07 12:38:51,854 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,854 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNDOM, hphSpec = 'aaùLNDOMùUML200ùdd' +2024-09-07 12:38:51,854 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-07 12:38:51,854 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,854 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,854 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,855 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,855 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,855 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,855 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-07 12:38:51,855 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,855 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-07 12:38:51,855 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,855 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-07 12:38:51,855 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-07 12:38:51,855 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ProtectionLN, hphSpec = 'aaùProtectionLNùUML209ùdd' +2024-09-07 12:38:51,855 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,855 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNDOM, hphSpec = 'aaùLNDOMùUML200ùdd' +2024-09-07 12:38:51,855 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-07 12:38:51,855 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,855 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,855 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OmultiRange(33, 48), hphSpec = 'aaùOmultiRange(33, 48)ùUML581ùdd' +2024-09-07 12:38:51,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-07 12:38:51,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-07 12:38:51,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-07 12:38:51,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-07 12:38:51,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ProtectionLN, hphSpec = 'aaùProtectionLNùUML209ùdd' +2024-09-07 12:38:51,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNDOM, hphSpec = 'aaùLNDOMùUML200ùdd' +2024-09-07 12:38:51,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-07 12:38:51,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,857 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-07 12:38:51,857 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,857 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-07 12:38:51,857 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,857 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-07 12:38:51,857 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-07 12:38:51,857 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ProtectionLN, hphSpec = 'aaùProtectionLNùUML209ùdd' +2024-09-07 12:38:51,857 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,857 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNDOM, hphSpec = 'aaùLNDOMùUML200ùdd' +2024-09-07 12:38:51,857 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-07 12:38:51,857 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,857 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,857 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,857 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,857 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,857 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,857 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-07 12:38:51,857 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,857 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-07 12:38:51,857 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,857 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-07 12:38:51,858 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-07 12:38:51,858 [main] INFO PackageDocImpl - collecting doc for package LNGroupR ... +2024-09-07 12:38:51,858 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,858 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNDOM, hphSpec = 'aaùLNDOMùUML200ùdd' +2024-09-07 12:38:51,858 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-07 12:38:51,858 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,858 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,858 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,858 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,858 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,858 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,858 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-07 12:38:51,858 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,858 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-07 12:38:51,858 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,858 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-07 12:38:51,858 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-07 12:38:51,859 [main] INFO PackageDocImpl - collecting doc for package LNGroupZ ... +2024-09-07 12:38:51,859 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EquipmentInterfaceLN, hphSpec = 'aaùEquipmentInterfaceLNùUML205ùdd' +2024-09-07 12:38:51,859 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,859 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNDOM, hphSpec = 'aaùLNDOMùUML200ùdd' +2024-09-07 12:38:51,859 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-07 12:38:51,859 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,859 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,859 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,860 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,860 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,860 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MaterialKind, hphSpec = 'aaùMaterialKindùUML146ùdd' +2024-09-07 12:38:51,860 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,860 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Other, hphSpec = 'aaùOtherùUML353ùdd' +2024-09-07 12:38:51,860 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EquipmentInterfaceLN, hphSpec = 'aaùEquipmentInterfaceLNùUML205ùdd' +2024-09-07 12:38:51,860 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,860 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-07 12:38:51,860 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,860 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,860 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-07 12:38:51,860 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(condID), hphSpec = 'aaùMOcond(condID)ùUML582ùdd' +2024-09-07 12:38:51,860 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,861 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-07 12:38:51,861 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-07 12:38:51,861 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MaterialKind, hphSpec = 'aaùMaterialKindùUML146ùdd' +2024-09-07 12:38:51,861 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MaterialTransitionKind, hphSpec = 'aaùMaterialTransitionKindùUML147ùdd' +2024-09-07 12:38:51,861 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,861 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-07 12:38:51,861 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-07 12:38:51,861 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMXU, hphSpec = 'aaùMMXUùUML204ùdd' +2024-09-07 12:38:51,861 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HWYE, hphSpec = 'aaùHWYEùUML252ùdd' +2024-09-07 12:38:51,861 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ZAXN, hphSpec = 'aaùZAXNùUML206ùdd' +2024-09-07 12:38:51,861 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GGIO, hphSpec = 'aaùGGIOùUML203ùdd' +2024-09-07 12:38:51,861 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CMV, hphSpec = 'aaùCMVùUML236ùdd' +2024-09-07 12:38:51,862 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LLN0, hphSpec = 'aaùLLN0ùUML199ùdd' +2024-09-07 12:38:51,862 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,862 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-07 12:38:51,862 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = StatisticsLN, hphSpec = 'aaùStatisticsLNùUML202ùdd' +2024-09-07 12:38:51,862 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SPSTransient, hphSpec = 'aaùSPSTransientùUML143ùdd' +2024-09-07 12:38:51,862 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = StatisticsLN, hphSpec = 'aaùStatisticsLNùUML202ùdd' +2024-09-07 12:38:51,862 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENG, hphSpec = 'aaùENGùUML246ùdd' +2024-09-07 12:38:51,862 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CalcMethodKind, hphSpec = 'aaùCalcMethodKindùUML140ùdd' +2024-09-07 12:38:51,862 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,862 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CMV, hphSpec = 'aaùCMVùUML236ùdd' +2024-09-07 12:38:51,864 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = KXYZ, hphSpec = 'aaùKXYZùUML207ùdd' +2024-09-07 12:38:51,864 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,864 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-07 12:38:51,864 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GGIO, hphSpec = 'aaùGGIOùUML203ùdd' +2024-09-07 12:38:51,864 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMXU, hphSpec = 'aaùMMXUùUML204ùdd' +2024-09-07 12:38:51,864 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HST, hphSpec = 'aaùHSTùUML245ùdd' +2024-09-07 12:38:51,864 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = RDIR, hphSpec = 'aaùRDIRùUML214ùdd' +2024-09-07 12:38:51,864 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ACD, hphSpec = 'aaùACDùUML244ùdd' +2024-09-07 12:38:51,864 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GGIO, hphSpec = 'aaùGGIOùUML203ùdd' +2024-09-07 12:38:51,864 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,864 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-07 12:38:51,864 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EquipmentInterfaceLN, hphSpec = 'aaùEquipmentInterfaceLNùUML205ùdd' +2024-09-07 12:38:51,864 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,864 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-07 12:38:51,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CALH, hphSpec = 'aaùCALHùUML208ùdd' +2024-09-07 12:38:51,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DPS, hphSpec = 'aaùDPSùUML229ùdd' +2024-09-07 12:38:51,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CALH, hphSpec = 'aaùCALHùUML208ùdd' +2024-09-07 12:38:51,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DPS, hphSpec = 'aaùDPSùUML229ùdd' +2024-09-07 12:38:51,865 [main] DEBUG DataIndexDoc - Attribute 'Health' defined on multiple classes in and under 'LogicalNodes' - may be possible to avoid duplication by using inheritance. +2024-09-07 12:38:51,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LLN0, hphSpec = 'aaùLLN0ùUML199ùdd' +2024-09-07 12:38:51,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-07 12:38:51,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ZAXN, hphSpec = 'aaùZAXNùUML206ùdd' +2024-09-07 12:38:51,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MaterialKind, hphSpec = 'aaùMaterialKindùUML146ùdd' +2024-09-07 12:38:51,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ZAXN, hphSpec = 'aaùZAXNùUML206ùdd' +2024-09-07 12:38:51,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-07 12:38:51,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MaterialKind, hphSpec = 'aaùMaterialKindùUML146ùdd' +2024-09-07 12:38:51,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MaterialTransitionKind, hphSpec = 'aaùMaterialTransitionKindùUML147ùdd' +2024-09-07 12:38:51,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-07 12:38:51,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-07 12:38:51,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CALH, hphSpec = 'aaùCALHùUML208ùdd' +2024-09-07 12:38:51,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EXYBehaviourMode, hphSpec = 'aaùEXYBehaviourModeùUML243ùdd' +2024-09-07 12:38:51,865 [main] DEBUG DataIndexDoc - Attribute 'NamPlt' defined on multiple classes in and under 'LogicalNodes' - may be possible to avoid duplication by using inheritance. +2024-09-07 12:38:51,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LLN0, hphSpec = 'aaùLLN0ùUML199ùdd' +2024-09-07 12:38:51,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-07 12:38:51,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LPL, hphSpec = 'aaùLPLùUML248ùdd' +2024-09-07 12:38:51,866 [main] DEBUG DataIndexDoc - Attribute 'Op' defined on multiple classes in and under 'LogicalNodes' - may be possible to avoid duplication by using inheritance. +2024-09-07 12:38:51,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PDIF, hphSpec = 'aaùPDIFùUML210ùdd' +2024-09-07 12:38:51,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PDIS, hphSpec = 'aaùPDISùUML211ùdd' +2024-09-07 12:38:51,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ACTTransient, hphSpec = 'aaùACTTransientùUML142ùdd' +2024-09-07 12:38:51,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ProtectionLN, hphSpec = 'aaùProtectionLNùUML209ùdd' +2024-09-07 12:38:51,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ZAXN, hphSpec = 'aaùZAXNùUML206ùdd' +2024-09-07 12:38:51,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Other, hphSpec = 'aaùOtherùUML353ùdd' +2024-09-07 12:38:51,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LPHD, hphSpec = 'aaùLPHDùUML197ùdd' +2024-09-07 12:38:51,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-07 12:38:51,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LPHD, hphSpec = 'aaùLPHDùUML197ùdd' +2024-09-07 12:38:51,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SPCTransient, hphSpec = 'aaùSPCTransientùUML381ùdd' +2024-09-07 12:38:51,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LPHD, hphSpec = 'aaùLPHDùUML197ùdd' +2024-09-07 12:38:51,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SPSTransient, hphSpec = 'aaùSPSTransientùUML143ùdd' +2024-09-07 12:38:51,866 [main] DEBUG DataIndexDoc - Attribute 'Str' defined on multiple classes in and under 'LogicalNodes' - may be possible to avoid duplication by using inheritance. +2024-09-07 12:38:51,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PDIF, hphSpec = 'aaùPDIFùUML210ùdd' +2024-09-07 12:38:51,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PDIS, hphSpec = 'aaùPDISùUML211ùdd' +2024-09-07 12:38:51,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ACD, hphSpec = 'aaùACDùUML244ùdd' +2024-09-07 12:38:51,866 [main] DEBUG DataIndexDoc - Attribute 'TotW' defined on multiple classes in and under 'LogicalNodes' - may be possible to avoid duplication by using inheritance. +2024-09-07 12:38:51,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMXU, hphSpec = 'aaùMMXUùUML204ùdd' +2024-09-07 12:38:51,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = KXYZ, hphSpec = 'aaùKXYZùUML207ùdd' +2024-09-07 12:38:51,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = RDIR, hphSpec = 'aaùRDIRùUML214ùdd' +2024-09-07 12:38:51,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CMV, hphSpec = 'aaùCMVùUML236ùdd' +2024-09-07 12:38:51,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CMV, hphSpec = 'aaùCMVùUML236ùdd' +2024-09-07 12:38:51,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SPSTransient, hphSpec = 'aaùSPSTransientùUML143ùdd' +2024-09-07 12:38:51,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ZAXN, hphSpec = 'aaùZAXNùUML206ùdd' +2024-09-07 12:38:51,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CMV, hphSpec = 'aaùCMVùUML236ùdd' +2024-09-07 12:38:51,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = KXYZ, hphSpec = 'aaùKXYZùUML207ùdd' +2024-09-07 12:38:51,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = KXYZ, hphSpec = 'aaùKXYZùUML207ùdd' +2024-09-07 12:38:51,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CMV, hphSpec = 'aaùCMVùUML236ùdd' +2024-09-07 12:38:51,866 [main] INFO PackageDocImpl - collected data index for LogicalNodes ... +2024-09-07 12:38:51,867 [main] TRACE PackageDocImpl - org.tanjakostic.jcleancim.docgen.collector.impl.DataIndexDoc@118aa28Data semantics + + shows all attributes defined on classes of LogicalNodes package. +Attributes defined on classes of LogicalNodes package +"Name" | "Type" | "(Used in) Description" +"A" | "aaùHWYEùUML252ùdd" | "(aaùMMXUùUML204ùdd) 'A' holds the currents for three phases." +"Amp" | "NullIEC61850" | "(aaùZAXNùUML206ùdd) 'Amp.mag.f' is the non-phase-related current of the auxiliary network." +"AnIn" | "aaùCMVùUML236ùdd" | "(aaùGGIOùUML203ùdd) 'AnIn.mag.f' is the generic analogue input n." +"Beh" | "aaùENSùUML230ùdd (aaùBehaviourModeKindùUML139ùdd)" | "(aaùLLN0ùUML199ùdd)" +"ClcExp" | "aaùSPSTransientùUML143ùdd" | "(aaùStatisticsLNùUML202ùdd) If 'ClcExp.stVal=true', the calculation period of a statistical logical node has expired." +"ClcMth" | "aaùENGùUML246ùdd (aaùCalcMethodKindùUML140ùdd)" | "(aaùStatisticsLNùUML202ùdd) 'ClcMth.setVal' is the kind of statistical calculation, specifying how the data attributes that represent analogue values have been calculated. The calculation method shall be the same for all data objects of the logical node instance. +If the value is 'PEAK_FUNDAMENTAL', angle may be present in a data object of complex measured value type (CMV, such as in WYE, DEL, etc.), otherwise angle is not used (if ‘TRUE_RMS’ and ‘RMS_FUNDAMENTAL’). +The dependent data objects may be meaningless in case the value of 'ClcMth' is 'unspecified'." +"CntRs" | "aaùCMVùUML236ùdd" | "(aaùDomainLNùUML201ùdd) Dumb DO, of type CMV for testing inheriting statistics-derived presence conditions." +"CorrectA" | "aaùENSùUML230ùdd (aaùEnumDAùUML340ùdd)" | "(aaùKXYZùUML207ùdd) Correctly using derived CDC for enums." +"DPCSO" | "NullIEC61850" | "(aaùGGIOùUML203ùdd) 'DPCSO.ctlVal=true' or 'DPCSO.ctlVal=false' controls the generic double point controllable status output n. The resulting status is 'DPCSO.stVal'." +"Desc" | "aaùHSTùUML245ùdd" | "(aaùMMXUùUML204ùdd) Dummy native DO of non-statistical type." +"Dir" | "aaùACDùUML244ùdd" | "(aaùRDIRùUML214ùdd) If 'Dir.general=true', a fault has been detected. 'Dir.dirGeneral' is the direction of the fault." +"EEHealth" | "aaùENSùUML230ùdd (aaùHealthKindùUML138ùdd)" | "(aaùGGIOùUML203ùdd) 'EEHealth.stVal' reflects the state of external (primary) equipment to which the logical node is associated." +"EEHealthAlmClc" | "aaùENSùUML230ùdd (aaùHealthKindùUML138ùdd)" | "(aaùEquipmentInterfaceLNùUML205ùdd) (too long name) State of external (electrical, mechanical or communication) equipment to which the logical node is associated." +"GrAlm" | "aaùDPSùUML229ùdd" | "(aaùCALHùUML208ùdd) If 'GrAlm.stVal=true', a new group alarm has been activated by one of individual alarms. Group alarm summarises different alarms, as assigned via configuration." +"GrWrn" | "aaùDPSùUML229ùdd" | "(aaùCALHùUML208ùdd) If 'GrWrn.stVal=true', a new group warning has been activated by one of individual warnings. Group warning summarises different warnings, as assigned via configuration." +"Health" | "aaùENSùUML230ùdd (aaùHealthKindùUML138ùdd)" | "(aaùLLN0ùUML199ùdd) 'Health.stVal' reflects the state of the logical device related hardware and software. It is derived from the worst (most critical) value of the health attribute of all the domain logical nodes contained in the logical device: 'Health.stVal' = max('DomainLN[i].Health.stVal'). +(aaùDomainLNùUML201ùdd) 'Health.stVal' reflects the state of the logical node related hardware and software. More detailed information related to the source of the problem may be provided by specific attribute of the logical node." +"Mat" | "aaùENSùUML230ùdd (aaùMaterialKindùUML146ùdd)" | "(aaùZAXNùUML206ùdd) For testing usage of class from other namespace." +"MatCtl" | "aaùENCùUML238ùdd (aaùMaterialKindùUML146ùdd, aaùMaterialTransitionKindùUML147ùdd)" | "(aaùZAXNùUML206ùdd) One more, for testing usage of class from other namespace." +"Mod" | "aaùENCùUML238ùdd (aaùBehaviourModeKindùUML139ùdd)" | "(aaùDomainLNùUML201ùdd) 'DomainLN.Mod.ctlVal' is used by operator to initiate the change in the operating mode of the domain logical node. The resulting operating mode is 'DomainLN.Mod.stVal'. Processing of the quality status (q) of the received data is the prerequisite for correct interpretation of 'DomainLN.Mod.stVal'. See statechart diagram 'DomainLN.behStateMachine'." +"ModBeh" | "aaùEXYBehaviourModeùUML243ùdd" | "(aaùCALHùUML208ùdd) If 'GrWrn.stVal=true', a new group warning has been activated by one of individual warnings. Group warning summarises different warnings, as assigned via configuration." +"NamPlt" | "aaùLPLùUML248ùdd" | "(aaùLLN0ùUML199ùdd) Name plate of the logical device. +(aaùDomainLNùUML201ùdd) Name plate of the logical node." +"Op" | "aaùACTTransientùUML142ùdd" | "(aaùPDIFùUML210ùdd) If 'Op.general=true', the function decided to trip. The trip itself is issued by PTRC. +(aaùPDISùUML211ùdd) If 'Op.general=true', the function decided to trip due to distance fault. The trip itself is issued by PTRC." +"OpCntRs" | "NullIEC61850" | "(aaùProtectionLNùUML209ùdd) 'OpCntRs.stVal' is the count of operations. It can be reset from remote, with the specified new counter value 'OpCntRs.ctlVal', which may be other than 0." +"Oth" | "aaùENSùUML230ùdd (aaùOtherùUML353ùdd)" | "(aaùZAXNùUML206ùdd) One more, for testing usage of class from other namespace and also underlying type (where initially 'val' defined as public)." +"PhyHealth" | "aaùENSùUML230ùdd (aaùHealthKindùUML138ùdd)" | "(aaùLPHDùUML197ùdd) 'PhyHealth.stVal' reflects the state of the physical device related hardware and software." +"RsStatAlmMthClc" | "aaùSPCTransientùUML381ùdd" | "(aaùLPHDùUML197ùdd) (too long name) 'RsStat.ctlVal=true' initiates the resetting of the IED statistics." +"StatAlmMthClc" | "aaùSPSTransientùUML143ùdd" | "(aaùLPHDùUML197ùdd) (too long name) 'RsStat.ctlVal=true' initiates the resetting of the IED statistics." +"Str" | "aaùACDùUML244ùdd" | "(aaùPDIFùUML210ùdd) If 'Str.general=true', a fault has been detected. +(aaùPDISùUML211ùdd) If 'Str.general=true', a distance fault has been detected." +"TotW" | "aaùCMVùUML236ùdd, aaùCMVùUML236ùdd, aaùSPSTransientùUML143ùdd" | "(aaùMMXUùUML204ùdd) 'TotW.mag.f' is the total real power in a three-phase circuit [W]. +(aaùKXYZùUML207ùdd) 'TotW.mag.f' is the total real power in a three-phase circuit [W]. +(aaùRDIRùUML214ùdd) 'TotW.mag.f' is the total real power in a three-phase circuit [W]." +"Vol" | "aaùCMVùUML236ùdd" | "(aaùZAXNùUML206ùdd) 'Vol.mag.f' is the non-phase-related or DC voltage of the auxiliary network." +"WrongA" | "aaùSubstitutionCDCùUML228ùdd (aaùENSùUML230ùdd)" | "(aaùKXYZùUML207ùdd) Misused ENS (or ENG or ENC). Use derived CDC instead." +"aDummyAlm" | "aaùCMVùUML236ùdd" | "(aaùKXYZùUML207ùdd) Whatever (testing lower case DO name)." + +2024-09-07 12:38:51,867 [main] INFO PackageDocImpl - collecting doc for package WG17 ... +2024-09-07 12:38:51,867 [main] INFO PackageDocImpl - collecting doc for package IEC51850_7_420 ... +2024-09-07 12:38:51,868 [main] INFO PackageDocImpl - collecting doc for package DOEnums_7_420 ... +2024-09-07 12:38:51,868 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseKind, hphSpec = 'aaùBaseKindùUML141ùdd' +2024-09-07 12:38:51,868 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseKind, hphSpec = 'aaùBaseKindùUML141ùdd' +2024-09-07 12:38:51,868 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseKind, hphSpec = 'aaùBaseKindùUML141ùdd' +2024-09-07 12:38:51,868 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseKind, hphSpec = 'aaùBaseKindùUML141ùdd' +2024-09-07 12:38:51,869 [main] TRACE EnumsScl - ---- collecting XML doc for enums in DOEnums_7_420 ... +2024-09-07 12:38:51,869 [main] INFO PackageDocImpl - collected SCL from DOEnums_7_420 ... +2024-09-07 12:38:51,869 [main] TRACE PackageDocImpl - + ebk1 + ebk2 + ebk3 + + + mat1 + mat2 + mat3 + + + trans1 + trans2 + trans3 + + + mat1 + mat2 + mat3 + + + +2024-09-07 12:38:51,869 [main] INFO PackageDocImpl - collecting doc for package DerivedDAs_7_420 ... +2024-09-07 12:38:51,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-07 12:38:51,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-07 12:38:51,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-07 12:38:51,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-07 12:38:51,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-07 12:38:51,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-07 12:38:51,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-07 12:38:51,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-07 12:38:51,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-07 12:38:51,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OtherKind, hphSpec = 'aaùOtherKindùUML148ùdd' +2024-09-07 12:38:51,871 [main] INFO PackageDocImpl - collecting doc for package DerivedCDCs_7_420 ... +2024-09-07 12:38:51,871 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-07 12:38:51,871 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControllableCDC, hphSpec = 'aaùControllableCDCùUML237ùdd' +2024-09-07 12:38:51,871 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,871 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,871 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-07 12:38:51,871 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-07 12:38:51,871 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,871 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,871 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,871 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-07 12:38:51,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-07 12:38:51,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControllableCDC, hphSpec = 'aaùControllableCDCùUML237ùdd' +2024-09-07 12:38:51,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-07 12:38:51,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-07 12:38:51,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-07 12:38:51,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-07 12:38:51,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-07 12:38:51,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-07 12:38:51,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-07 12:38:51,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-07 12:38:51,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-07 12:38:51,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-07 12:38:51,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-07 12:38:51,873 [main] INFO Reordering - adding reordering spec: MOVE "subVal" AFTER "subEna" +2024-09-07 12:38:51,873 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,873 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,873 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,873 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-07 12:38:51,873 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-07 12:38:51,873 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,873 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,873 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,873 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-07 12:38:51,873 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,873 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-07 12:38:51,873 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimeStamp, hphSpec = 'aaùTimeStampùUML93ùdd' +2024-09-07 12:38:51,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-07 12:38:51,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-07 12:38:51,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-07 12:38:51,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-07 12:38:51,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-07 12:38:51,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-07 12:38:51,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-07 12:38:51,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-07 12:38:51,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,874 [main] INFO Reordering - adding reordering spec: MOVE "subVal" AFTER "subEna" +2024-09-07 12:38:51,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-07 12:38:51,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-07 12:38:51,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-07 12:38:51,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-07 12:38:51,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-07 12:38:51,876 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-07 12:38:51,876 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,876 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-07 12:38:51,876 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,876 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimeStamp, hphSpec = 'aaùTimeStampùUML93ùdd' +2024-09-07 12:38:51,876 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,876 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-07 12:38:51,876 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-07 12:38:51,876 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-07 12:38:51,877 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,877 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-07 12:38:51,877 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,877 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-07 12:38:51,877 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-07 12:38:51,877 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,877 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-07 12:38:51,877 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-07 12:38:51,877 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-07 12:38:51,877 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,877 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-07 12:38:51,877 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-07 12:38:51,877 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-07 12:38:51,877 [main] INFO Reordering - adding reordering spec: MOVE "subVal" AFTER "subEna" +2024-09-07 12:38:51,878 [main] INFO PackageDocImpl - collecting doc for package WG18 ... +2024-09-07 12:38:51,878 [main] INFO PackageDocImpl - collecting doc for package Abbreviations_410 ... +2024-09-07 12:38:51,878 [main] INFO PackageDocImpl - collecting doc for package JWG25 ... +2024-09-07 12:38:51,879 [main] INFO PackageDocImpl - collecting doc for package MyCimExtensions ... +2024-09-07 12:38:51,879 [main] INFO PackageDocImpl - collecting doc for package Ext1 ... +2024-09-07 12:38:51,879 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Fruit, hphSpec = 'aaùFruitùUML152ùdd' +2024-09-07 12:38:51,879 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Apple, hphSpec = 'aaùAppleùUML383ùdd' +2024-09-07 12:38:51,880 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Pear, hphSpec = 'aaùPearùUML168ùdd' +2024-09-07 12:38:51,880 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Pear, hphSpec = 'aaùPearùUML168ùdd' +2024-09-07 12:38:51,880 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Apple, hphSpec = 'aaùAppleùUML383ùdd' +2024-09-07 12:38:51,880 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Fruit, hphSpec = 'aaùFruitùUML152ùdd' +2024-09-07 12:38:51,880 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Apple, hphSpec = 'aaùAppleùUML383ùdd' +2024-09-07 12:38:51,880 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Apple, hphSpec = 'aaùAppleùUML383ùdd' +2024-09-07 12:38:51,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Strawberry, hphSpec = 'aaùStrawberryùUML384ùdd' +2024-09-07 12:38:51,881 [main] INFO PackageDocImpl - collecting doc for package Package with space ... +2024-09-07 12:38:51,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbsoluteDateTime, hphSpec = 'aaùAbsoluteDateTimeùUML11ùdd' +2024-09-07 12:38:51,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Other-with_invalid name, hphSpec = 'aaùOther-with_invalid nameùUML156ùdd' +2024-09-07 12:38:51,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = My class, hphSpec = 'aaùMy classùUML155ùdd' +2024-09-07 12:38:51,882 [main] INFO PackageDocImpl - collecting doc for package My61850Extensions ... +2024-09-07 12:38:51,882 [main] INFO PackageDocImpl - collecting doc for package Ext2 ... +2024-09-07 12:38:51,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Fruit, hphSpec = 'aaùFruitùUML152ùdd' +2024-09-07 12:38:51,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Fruit, hphSpec = 'aaùFruitùUML152ùdd' +2024-09-07 12:38:51,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Animal, hphSpec = 'aaùAnimalùUML157ùdd' +2024-09-07 12:38:51,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Fruit, hphSpec = 'aaùFruitùUML152ùdd' +2024-09-07 12:38:51,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Animal, hphSpec = 'aaùAnimalùUML157ùdd' +2024-09-07 12:38:51,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Fruit, hphSpec = 'aaùFruitùUML152ùdd' +2024-09-07 12:38:51,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Animal, hphSpec = 'aaùAnimalùUML157ùdd' +2024-09-07 12:38:51,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Animal, hphSpec = 'aaùAnimalùUML157ùdd' +2024-09-07 12:38:51,884 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Fruit, hphSpec = 'aaùFruitùUML152ùdd' +2024-09-07 12:38:51,884 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Animal, hphSpec = 'aaùAnimalùUML157ùdd' +2024-09-07 12:38:51,884 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Fruit, hphSpec = 'aaùFruitùUML152ùdd' +2024-09-07 12:38:51,884 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Animal, hphSpec = 'aaùAnimalùUML157ùdd' +2024-09-07 12:38:51,884 [main] INFO PackageDocImpl - collecting doc for package NewNature ... +2024-09-07 12:38:51,884 [main] INFO Util - time=[0:00:00.551] collected documentation content for 'model packages=[TC57CIMProfiles, TC57CIM, IEC61850Domain, MyCimExtensions, My61850Extensions, NewNature]; retained=[TC57CIMProfiles, TC57CIM, IEC61970, Domain, Core, Topology, TestEnums, IEC61968, EmbeddedExtension, Assets, Other, IEC62325, IEC61850Domain, WG10, NewIEC61850_7_2, GenericModel, IEC61850_7_2, FunctionalConstraints, TriggerOptions, ACSIEnums, CoreTypes, ObjectReferences, AttrValues, BasicDAs, AcsiTypes, CommonAcsiTypes, MetaModel, MetaModelFCsAndTrgOps, CDCServiceTracking, IEC61850_7_3, PresenceConditions, DAEnums, ImplicitDAs, ConstructedDAs, FCDAs, CommonDataClasses, CDCStatusInfo, CDCAnalogueInfo, CDCControl, CDCStatusSet, CDCAnalogueSet, CDCDescription, IEC61850_7_4, Abbreviations, Functions, ProtectionEq, ControlEq, MeasurementsAndMetering, SystemWide, PrimaryEq, DOEnums, DerivedDAs, DerivedCDCs, LogicalNodes, LNGroupL, LNGroupC, LNGroupG, LNGroupM, LNGroupP, LNGroupR, LNGroupZ, WG17, IEC51850_7_420, DOEnums_7_420, DerivedDAs_7_420, DerivedCDCs_7_420, WG18, Abbreviations_410, JWG25, MyCimExtensions, Ext1, Package with space, My61850Extensions, Ext2, NewNature]; skipped=[TC57CIM::Informative, IEC61970::InformativeAndPrivate, IEC61970::DocIEC61970, ObjectReferences::DetailedDiagrams, Abbreviations::DetailedDiagrams, LogicalNodes::DocLogicalNodes]'. +2024-09-07 12:38:51,885 [main] INFO Util - +2024-09-07 12:38:51,885 [main] INFO Util - +2024-09-07 12:38:51,885 [main] INFO Util - ------------------------------------------------ +2024-09-07 12:38:51,885 [main] INFO Util - writing documentation ... +2024-09-07 12:38:51,894 [main] WARN DocCollectorImpl - Multiple packages with name 'Core' - retaining first one in case you use its placeholder. +2024-09-07 12:38:51,894 [main] WARN DocCollectorImpl - Multiple packages with name 'Other' - retaining first one in case you use its placeholder. +2024-09-07 12:38:51,894 [main] WARN DocCollectorImpl - Multiple classes with Qname 'startUmlClass.Other.MyClass.endUml' - retaining first one in case you use its placeholder. +2024-09-07 12:38:51,957 [main] INFO AbstractWriter - creating DocWordWriter +2024-09-07 12:38:51,962 [main] TRACE Style - === before para.addPreferredStyles([PARAGRAPH, Normal, Standard, Normal]): +Style.para=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 12:38:51,962 [main] TRACE Style - === after +Style.para=null; cfg-preferred names=[PARAGRAPH, Normal, Standard]; doc-usable styles={}; all recognised names=[PARAGRAPH, Standard, Normal] + +2024-09-07 12:38:51,962 [main] TRACE Style - === before fig.addPreferredStyles([FIGURE, Picture, Normal, Standard, Normal]): +Style.fig=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 12:38:51,962 [main] TRACE Style - === after +Style.fig=null; cfg-preferred names=[FIGURE, Picture, Normal, Standard]; doc-usable styles={}; all recognised names=[Picture, Standard, Normal, FIGURE] + +2024-09-07 12:38:51,964 [main] TRACE Style - === before tabhead.addPreferredStyles([TABLE-col-heading, Normal, Standard, Normal]): +Style.tabhead=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 12:38:51,964 [main] TRACE Style - === after +Style.tabhead=null; cfg-preferred names=[TABLE-col-heading, Normal, Standard]; doc-usable styles={}; all recognised names=[TABLE-col-heading, Standard, Normal] + +2024-09-07 12:38:51,964 [main] TRACE Style - === before tabcell.addPreferredStyles([TABLE-cell, Normal, Standard, Normal]): +Style.tabcell=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 12:38:51,964 [main] TRACE Style - === after +Style.tabcell=null; cfg-preferred names=[TABLE-cell, Normal, Standard]; doc-usable styles={}; all recognised names=[TABLE-cell, Standard, Normal] + +2024-09-07 12:38:51,964 [main] TRACE Style - === before figcapt.addPreferredStyles([FIGURE-title, Caption, Beschriftung, Légende]): +Style.figcapt=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 12:38:51,964 [main] TRACE Style - === after +Style.figcapt=null; cfg-preferred names=[FIGURE-title, Caption, Beschriftung, Légende]; doc-usable styles={}; all recognised names=[FIGURE-title, Beschriftung, Légende, Caption] + +2024-09-07 12:38:51,964 [main] TRACE Style - === before tabcapt.addPreferredStyles([TABLE-title, Caption, Beschriftung, Légende]): +Style.tabcapt=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 12:38:51,964 [main] TRACE Style - === after +Style.tabcapt=null; cfg-preferred names=[TABLE-title, Caption, Beschriftung, Légende]; doc-usable styles={}; all recognised names=[TABLE-title, Beschriftung, Légende, Caption] + +2024-09-07 12:38:51,964 [main] TRACE Style - === before toc1.addPreferredStyles([TOC]): +Style.toc1=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 12:38:51,964 [main] TRACE Style - === after +Style.toc1=null; cfg-preferred names=[TOC 1]; doc-usable styles={}; all recognised names=[TOC 1] + +2024-09-07 12:38:51,964 [main] TRACE Style - === before toc2.addPreferredStyles([TOC]): +Style.toc2=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 12:38:51,964 [main] TRACE Style - === after +Style.toc2=null; cfg-preferred names=[TOC 2]; doc-usable styles={}; all recognised names=[TOC 2] + +2024-09-07 12:38:51,964 [main] TRACE Style - === before toc3.addPreferredStyles([TOC]): +Style.toc3=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 12:38:51,964 [main] TRACE Style - === after +Style.toc3=null; cfg-preferred names=[TOC 3]; doc-usable styles={}; all recognised names=[TOC 3] + +2024-09-07 12:38:51,964 [main] TRACE Style - === before toc4.addPreferredStyles([TOC]): +Style.toc4=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 12:38:51,965 [main] TRACE Style - === after +Style.toc4=null; cfg-preferred names=[TOC 4]; doc-usable styles={}; all recognised names=[TOC 4] + +2024-09-07 12:38:51,965 [main] TRACE Style - === before toc5.addPreferredStyles([TOC]): +Style.toc5=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 12:38:51,965 [main] TRACE Style - === after +Style.toc5=null; cfg-preferred names=[TOC 5]; doc-usable styles={}; all recognised names=[TOC 5] + +2024-09-07 12:38:51,965 [main] TRACE Style - === before toc6.addPreferredStyles([TOC]): +Style.toc6=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 12:38:51,965 [main] TRACE Style - === after +Style.toc6=null; cfg-preferred names=[TOC 6]; doc-usable styles={}; all recognised names=[TOC 6] + +2024-09-07 12:38:51,965 [main] TRACE Style - === before toc7.addPreferredStyles([TOC]): +Style.toc7=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 12:38:51,965 [main] TRACE Style - === after +Style.toc7=null; cfg-preferred names=[TOC 7]; doc-usable styles={}; all recognised names=[TOC 7] + +2024-09-07 12:38:51,965 [main] TRACE Style - === before toc8.addPreferredStyles([TOC]): +Style.toc8=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 12:38:51,965 [main] TRACE Style - === after +Style.toc8=null; cfg-preferred names=[TOC 8]; doc-usable styles={}; all recognised names=[TOC 8] + +2024-09-07 12:38:51,965 [main] TRACE Style - === before toc9.addPreferredStyles([TOC]): +Style.toc9=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 12:38:51,965 [main] TRACE Style - === after +Style.toc9=null; cfg-preferred names=[TOC 9]; doc-usable styles={}; all recognised names=[TOC 9] + +2024-09-07 12:38:51,965 [main] TRACE Style - === before h1.addPreferredStyles([Heading]): +Style.h1=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 12:38:51,965 [main] TRACE Style - === after +Style.h1=null; cfg-preferred names=[Heading 1]; doc-usable styles={}; all recognised names=[Heading 1] + +2024-09-07 12:38:51,965 [main] TRACE Style - === before h2.addPreferredStyles([Heading]): +Style.h2=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 12:38:51,965 [main] TRACE Style - === after +Style.h2=null; cfg-preferred names=[Heading 2]; doc-usable styles={}; all recognised names=[Heading 2] + +2024-09-07 12:38:51,965 [main] TRACE Style - === before h3.addPreferredStyles([Heading]): +Style.h3=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 12:38:51,965 [main] TRACE Style - === after +Style.h3=null; cfg-preferred names=[Heading 3]; doc-usable styles={}; all recognised names=[Heading 3] + +2024-09-07 12:38:51,965 [main] TRACE Style - === before h4.addPreferredStyles([Heading]): +Style.h4=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 12:38:51,965 [main] TRACE Style - === after +Style.h4=null; cfg-preferred names=[Heading 4]; doc-usable styles={}; all recognised names=[Heading 4] + +2024-09-07 12:38:51,965 [main] TRACE Style - === before h5.addPreferredStyles([Heading]): +Style.h5=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 12:38:51,965 [main] TRACE Style - === after +Style.h5=null; cfg-preferred names=[Heading 5]; doc-usable styles={}; all recognised names=[Heading 5] + +2024-09-07 12:38:51,965 [main] TRACE Style - === before h6.addPreferredStyles([Heading]): +Style.h6=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 12:38:51,965 [main] TRACE Style - === after +Style.h6=null; cfg-preferred names=[Heading 6]; doc-usable styles={}; all recognised names=[Heading 6] + +2024-09-07 12:38:51,965 [main] TRACE Style - === before h7.addPreferredStyles([Heading]): +Style.h7=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 12:38:51,965 [main] TRACE Style - === after +Style.h7=null; cfg-preferred names=[Heading 7]; doc-usable styles={}; all recognised names=[Heading 7] + +2024-09-07 12:38:51,965 [main] TRACE Style - === before h8.addPreferredStyles([Heading]): +Style.h8=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 12:38:51,965 [main] TRACE Style - === after +Style.h8=null; cfg-preferred names=[Heading 8]; doc-usable styles={}; all recognised names=[Heading 8] + +2024-09-07 12:38:51,965 [main] TRACE Style - === before h9.addPreferredStyles([Heading]): +Style.h9=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 12:38:51,965 [main] TRACE Style - === after +Style.h9=null; cfg-preferred names=[Heading 9]; doc-usable styles={}; all recognised names=[Heading 9] + +2024-09-07 12:38:51,967 [main] INFO AbstractWordWriter - Created DocWordWriter. +2024-09-07 12:38:51,967 [main] INFO JCleanCim - from C:\Users\gigi\git\jCleanCim\input\base-small-template.docx +2024-09-07 12:38:51,967 [main] INFO JCleanCim - into C:\Users\gigi\git\jCleanCim\output\base-small-tool02v03.docx +2024-09-07 12:38:51,967 [main] INFO DocWordWriter - creating MSWord application +2024-09-07 12:38:55,523 [main] INFO DocWordWriter - opening MSWord file 'C:\Users\gigi\git\jCleanCim\output\base-small-tool02v03.docx' +2024-09-07 12:38:56,032 [main] INFO AbstractWordWriter - Microsoft Word version: 15.0 + +2024-09-07 12:38:56,100 [main] DEBUG DocWordWriter - original(_initialOptions): OptimOptions [viewId=3, normView=false, paginate=true, updFld=true, updScr=true, fastSave=false, spelling=false, grammar=false] +2024-09-07 12:38:56,110 [main] DEBUG DocWordWriter - setting existing custom property: uml = base-small.eap +2024-09-07 12:38:56,111 [main] INFO DocWordWriter - adding new custom property: jCleanCim = 02v03 +2024-09-07 12:38:56,115 [main] INFO OptimOptions - setting view to normal +2024-09-07 12:38:56,162 [main] INFO OptimOptions - disabling pagination +2024-09-07 12:38:56,368 [main] INFO OptimOptions - disabling field update +2024-09-07 12:38:56,504 [main] INFO OptimOptions - disabling screen updating +2024-09-07 12:38:56,511 [main] DEBUG DocWordWriter - current(_optimisedOptions): OptimOptions [viewId=1, normView=true, paginate=false, updFld=false, updScr=false, fastSave=false, spelling=false, grammar=false] +2024-09-07 12:38:56,511 [main] INFO Util - +2024-09-07 12:38:56,511 [main] INFO Util - ------------------------------------------------ +2024-09-07 12:38:56,511 [main] INFO Util - collecting existing and retaining usable styles from open MS Word document.... +2024-09-07 12:38:56,539 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Normal, id=-1, outline = 0, kind=normal +2024-09-07 12:38:56,559 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 1, id=-2, outline = 1, kind=heading +2024-09-07 12:38:56,568 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 2, id=-3, outline = 2, kind=heading +2024-09-07 12:38:56,576 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 3, id=-4, outline = 3, kind=heading +2024-09-07 12:38:56,583 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 4, id=-5, outline = 4, kind=heading +2024-09-07 12:38:56,590 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 5, id=-6, outline = 5, kind=heading +2024-09-07 12:38:56,596 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 6, id=-7, outline = 6, kind=heading +2024-09-07 12:38:56,603 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 7, id=-8, outline = 7, kind=heading +2024-09-07 12:38:56,613 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 8, id=-9, outline = 8, kind=heading +2024-09-07 12:38:56,624 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 9, id=-10, outline = 9, kind=heading +2024-09-07 12:38:56,632 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 1, id=-20, outline = 1, kind=toc +2024-09-07 12:38:56,640 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 2, id=-21, outline = 2, kind=toc +2024-09-07 12:38:56,648 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 3, id=-22, outline = 3, kind=toc +2024-09-07 12:38:56,654 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 4, id=-23, outline = 4, kind=toc +2024-09-07 12:38:56,660 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 5, id=-24, outline = 5, kind=toc +2024-09-07 12:38:56,666 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 6, id=-25, outline = 6, kind=toc +2024-09-07 12:38:56,671 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 7, id=-26, outline = 7, kind=toc +2024-09-07 12:38:56,687 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 8, id=-27, outline = 8, kind=toc +2024-09-07 12:38:56,692 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 9, id=-28, outline = 9, kind=toc +2024-09-07 12:38:56,700 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Caption, id=-35, outline = 0, kind=caption +2024-09-07 12:38:59,999 [main] INFO DocWordWriter - Caption (builtIn, id=-35: CAPT) +2024-09-07 12:39:00,000 [main] INFO DocWordWriter - FIGURE-title (custom, id=0: OTHER) +2024-09-07 12:39:00,000 [main] INFO DocWordWriter - Heading 1 (builtIn, id=-2: HEAD) +2024-09-07 12:39:00,000 [main] INFO DocWordWriter - Heading 2 (builtIn, id=-3: HEAD) +2024-09-07 12:39:00,000 [main] INFO DocWordWriter - Heading 3 (builtIn, id=-4: HEAD) +2024-09-07 12:39:00,000 [main] INFO DocWordWriter - Heading 4 (builtIn, id=-5: HEAD) +2024-09-07 12:39:00,000 [main] INFO DocWordWriter - Heading 5 (builtIn, id=-6: HEAD) +2024-09-07 12:39:00,000 [main] INFO DocWordWriter - Heading 6 (builtIn, id=-7: HEAD) +2024-09-07 12:39:00,000 [main] INFO DocWordWriter - Heading 7 (builtIn, id=-8: HEAD) +2024-09-07 12:39:00,000 [main] INFO DocWordWriter - Heading 8 (builtIn, id=-9: HEAD) +2024-09-07 12:39:00,000 [main] INFO DocWordWriter - Heading 9 (builtIn, id=-10: HEAD) +2024-09-07 12:39:00,000 [main] INFO DocWordWriter - Normal (builtIn, id=-1: NORM) +2024-09-07 12:39:00,000 [main] INFO DocWordWriter - Picture (custom, id=0: OTHER) +2024-09-07 12:39:00,000 [main] INFO DocWordWriter - TABLE-cell (custom, id=0: OTHER) +2024-09-07 12:39:00,000 [main] INFO DocWordWriter - TABLE-col-heading (custom, id=0: OTHER) +2024-09-07 12:39:00,001 [main] INFO DocWordWriter - TABLE-title (custom, id=0: OTHER) +2024-09-07 12:39:00,001 [main] INFO DocWordWriter - TOC 1 (builtIn, id=-20: TOC) +2024-09-07 12:39:00,001 [main] INFO DocWordWriter - TOC 2 (builtIn, id=-21: TOC) +2024-09-07 12:39:00,001 [main] INFO DocWordWriter - TOC 3 (builtIn, id=-22: TOC) +2024-09-07 12:39:00,001 [main] INFO DocWordWriter - TOC 4 (builtIn, id=-23: TOC) +2024-09-07 12:39:00,001 [main] INFO DocWordWriter - TOC 5 (builtIn, id=-24: TOC) +2024-09-07 12:39:00,001 [main] INFO DocWordWriter - TOC 6 (builtIn, id=-25: TOC) +2024-09-07 12:39:00,001 [main] INFO DocWordWriter - TOC 7 (builtIn, id=-26: TOC) +2024-09-07 12:39:00,001 [main] INFO DocWordWriter - TOC 8 (builtIn, id=-27: TOC) +2024-09-07 12:39:00,001 [main] INFO DocWordWriter - TOC 9 (builtIn, id=-28: TOC) +2024-09-07 12:39:00,002 [main] INFO Util - time=[0:00:03.490] collected existing and retained usable styles +2024-09-07 12:39:00,002 [main] INFO Util - +2024-09-07 12:39:00,002 [main] TRACE Style - === before para.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.para=null; cfg-preferred names=[PARAGRAPH, Normal, Standard]; doc-usable styles={}; all recognised names=[PARAGRAPH, Standard, Normal] +2024-09-07 12:39:00,002 [main] INFO Style - Assigned from preferred names [full match]: Style.para=Normal; cfg-preferred names=[PARAGRAPH, Normal, Standard] +2024-09-07 12:39:00,002 [main] TRACE Style - === after +Style.para=Normal; cfg-preferred names=[PARAGRAPH, Normal, Standard]; doc-usable styles={Normal=Normal (builtIn, id=-1: PARA)}; all recognised names=[PARAGRAPH, Standard, Normal] + +2024-09-07 12:39:00,002 [main] TRACE Style - === before fig.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.fig=null; cfg-preferred names=[FIGURE, Picture, Normal, Standard]; doc-usable styles={}; all recognised names=[Picture, Standard, Normal, FIGURE] +2024-09-07 12:39:00,002 [main] INFO Style - Assigned from preferred names [full match]: Style.fig=Picture; cfg-preferred names=[FIGURE, Picture, Normal, Standard] +2024-09-07 12:39:00,002 [main] TRACE Style - === after +Style.fig=Picture; cfg-preferred names=[FIGURE, Picture, Normal, Standard]; doc-usable styles={Picture=Picture (custom, id=0: FIG), Normal=Normal (builtIn, id=-1: PARA)}; all recognised names=[Picture, Standard, Normal, FIGURE] + +2024-09-07 12:39:00,002 [main] TRACE Style - === before tabhead.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.tabhead=null; cfg-preferred names=[TABLE-col-heading, Normal, Standard]; doc-usable styles={}; all recognised names=[TABLE-col-heading, Standard, Normal] +2024-09-07 12:39:00,002 [main] INFO Style - Assigned from preferred names [full match]: Style.tabhead=TABLE-col-heading; cfg-preferred names=[TABLE-col-heading, Normal, Standard] +2024-09-07 12:39:00,002 [main] TRACE Style - === after +Style.tabhead=TABLE-col-heading; cfg-preferred names=[TABLE-col-heading, Normal, Standard]; doc-usable styles={TABLE-col-heading=TABLE-col-heading (custom, id=0: TABHEAD), Normal=Normal (builtIn, id=-1: PARA)}; all recognised names=[TABLE-col-heading, Standard, Normal] + +2024-09-07 12:39:00,002 [main] TRACE Style - === before tabcell.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.tabcell=null; cfg-preferred names=[TABLE-cell, Normal, Standard]; doc-usable styles={}; all recognised names=[TABLE-cell, Standard, Normal] +2024-09-07 12:39:00,002 [main] INFO Style - Assigned from preferred names [full match]: Style.tabcell=TABLE-cell; cfg-preferred names=[TABLE-cell, Normal, Standard] +2024-09-07 12:39:00,002 [main] TRACE Style - === after +Style.tabcell=TABLE-cell; cfg-preferred names=[TABLE-cell, Normal, Standard]; doc-usable styles={TABLE-cell=TABLE-cell (custom, id=0: TABCELL), Normal=Normal (builtIn, id=-1: PARA)}; all recognised names=[TABLE-cell, Standard, Normal] + +2024-09-07 12:39:00,002 [main] TRACE Style - === before figcapt.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.figcapt=null; cfg-preferred names=[FIGURE-title, Caption, Beschriftung, Légende]; doc-usable styles={}; all recognised names=[FIGURE-title, Beschriftung, Légende, Caption] +2024-09-07 12:39:00,002 [main] INFO Style - Assigned from preferred names [full match]: Style.figcapt=FIGURE-title; cfg-preferred names=[FIGURE-title, Caption, Beschriftung, Légende] +2024-09-07 12:39:00,003 [main] TRACE Style - === after +Style.figcapt=FIGURE-title; cfg-preferred names=[FIGURE-title, Caption, Beschriftung, Légende]; doc-usable styles={FIGURE-title=FIGURE-title (custom, id=0: FIGCAPT), Caption=Caption (builtIn, id=-35: CAPT)}; all recognised names=[FIGURE-title, Beschriftung, Légende, Caption] + +2024-09-07 12:39:00,003 [main] TRACE Style - === before tabcapt.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.tabcapt=null; cfg-preferred names=[TABLE-title, Caption, Beschriftung, Légende]; doc-usable styles={}; all recognised names=[TABLE-title, Beschriftung, Légende, Caption] +2024-09-07 12:39:00,003 [main] INFO Style - Assigned from preferred names [full match]: Style.tabcapt=TABLE-title; cfg-preferred names=[TABLE-title, Caption, Beschriftung, Légende] +2024-09-07 12:39:00,003 [main] TRACE Style - === after +Style.tabcapt=TABLE-title; cfg-preferred names=[TABLE-title, Caption, Beschriftung, Légende]; doc-usable styles={TABLE-title=TABLE-title (custom, id=0: TABCAPT), Caption=Caption (builtIn, id=-35: CAPT)}; all recognised names=[TABLE-title, Beschriftung, Légende, Caption] + +2024-09-07 12:39:00,003 [main] TRACE Style - === before toc1.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.toc1=null; cfg-preferred names=[TOC 1]; doc-usable styles={}; all recognised names=[TOC 1] +2024-09-07 12:39:00,003 [main] INFO Style - Assigned from preferred names [full match]: Style.toc1=TOC 1; cfg-preferred names=[TOC 1] +2024-09-07 12:39:00,003 [main] TRACE Style - === after +Style.toc1=TOC 1; cfg-preferred names=[TOC 1]; doc-usable styles={TOC 1=TOC 1 (builtIn, id=-20: TOC)}; all recognised names=[TOC 1] + +2024-09-07 12:39:00,003 [main] TRACE Style - === before toc2.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.toc2=null; cfg-preferred names=[TOC 2]; doc-usable styles={}; all recognised names=[TOC 2] +2024-09-07 12:39:00,003 [main] INFO Style - Assigned from preferred names [full match]: Style.toc2=TOC 2; cfg-preferred names=[TOC 2] +2024-09-07 12:39:00,003 [main] TRACE Style - === after +Style.toc2=TOC 2; cfg-preferred names=[TOC 2]; doc-usable styles={TOC 2=TOC 2 (builtIn, id=-21: TOC)}; all recognised names=[TOC 2] + +2024-09-07 12:39:00,003 [main] TRACE Style - === before toc3.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.toc3=null; cfg-preferred names=[TOC 3]; doc-usable styles={}; all recognised names=[TOC 3] +2024-09-07 12:39:00,003 [main] INFO Style - Assigned from preferred names [full match]: Style.toc3=TOC 3; cfg-preferred names=[TOC 3] +2024-09-07 12:39:00,003 [main] TRACE Style - === after +Style.toc3=TOC 3; cfg-preferred names=[TOC 3]; doc-usable styles={TOC 3=TOC 3 (builtIn, id=-22: TOC)}; all recognised names=[TOC 3] + +2024-09-07 12:39:00,003 [main] TRACE Style - === before toc4.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.toc4=null; cfg-preferred names=[TOC 4]; doc-usable styles={}; all recognised names=[TOC 4] +2024-09-07 12:39:00,003 [main] INFO Style - Assigned from preferred names [full match]: Style.toc4=TOC 4; cfg-preferred names=[TOC 4] +2024-09-07 12:39:00,003 [main] TRACE Style - === after +Style.toc4=TOC 4; cfg-preferred names=[TOC 4]; doc-usable styles={TOC 4=TOC 4 (builtIn, id=-23: TOC)}; all recognised names=[TOC 4] + +2024-09-07 12:39:00,003 [main] TRACE Style - === before toc5.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.toc5=null; cfg-preferred names=[TOC 5]; doc-usable styles={}; all recognised names=[TOC 5] +2024-09-07 12:39:00,003 [main] INFO Style - Assigned from preferred names [full match]: Style.toc5=TOC 5; cfg-preferred names=[TOC 5] +2024-09-07 12:39:00,003 [main] TRACE Style - === after +Style.toc5=TOC 5; cfg-preferred names=[TOC 5]; doc-usable styles={TOC 5=TOC 5 (builtIn, id=-24: TOC)}; all recognised names=[TOC 5] + +2024-09-07 12:39:00,004 [main] TRACE Style - === before toc6.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.toc6=null; cfg-preferred names=[TOC 6]; doc-usable styles={}; all recognised names=[TOC 6] +2024-09-07 12:39:00,004 [main] INFO Style - Assigned from preferred names [full match]: Style.toc6=TOC 6; cfg-preferred names=[TOC 6] +2024-09-07 12:39:00,004 [main] TRACE Style - === after +Style.toc6=TOC 6; cfg-preferred names=[TOC 6]; doc-usable styles={TOC 6=TOC 6 (builtIn, id=-25: TOC)}; all recognised names=[TOC 6] + +2024-09-07 12:39:00,004 [main] TRACE Style - === before toc7.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.toc7=null; cfg-preferred names=[TOC 7]; doc-usable styles={}; all recognised names=[TOC 7] +2024-09-07 12:39:00,004 [main] INFO Style - Assigned from preferred names [full match]: Style.toc7=TOC 7; cfg-preferred names=[TOC 7] +2024-09-07 12:39:00,004 [main] TRACE Style - === after +Style.toc7=TOC 7; cfg-preferred names=[TOC 7]; doc-usable styles={TOC 7=TOC 7 (builtIn, id=-26: TOC)}; all recognised names=[TOC 7] + +2024-09-07 12:39:00,004 [main] TRACE Style - === before toc8.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.toc8=null; cfg-preferred names=[TOC 8]; doc-usable styles={}; all recognised names=[TOC 8] +2024-09-07 12:39:00,004 [main] INFO Style - Assigned from preferred names [full match]: Style.toc8=TOC 8; cfg-preferred names=[TOC 8] +2024-09-07 12:39:00,004 [main] TRACE Style - === after +Style.toc8=TOC 8; cfg-preferred names=[TOC 8]; doc-usable styles={TOC 8=TOC 8 (builtIn, id=-27: TOC)}; all recognised names=[TOC 8] + +2024-09-07 12:39:00,004 [main] TRACE Style - === before toc9.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.toc9=null; cfg-preferred names=[TOC 9]; doc-usable styles={}; all recognised names=[TOC 9] +2024-09-07 12:39:00,004 [main] INFO Style - Assigned from preferred names [full match]: Style.toc9=TOC 9; cfg-preferred names=[TOC 9] +2024-09-07 12:39:00,004 [main] TRACE Style - === after +Style.toc9=TOC 9; cfg-preferred names=[TOC 9]; doc-usable styles={TOC 9=TOC 9 (builtIn, id=-28: TOC)}; all recognised names=[TOC 9] + +2024-09-07 12:39:00,004 [main] TRACE Style - === before h1.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.h1=null; cfg-preferred names=[Heading 1]; doc-usable styles={}; all recognised names=[Heading 1] +2024-09-07 12:39:00,004 [main] INFO Style - Assigned from preferred names [full match]: Style.h1=Heading 1; cfg-preferred names=[Heading 1] +2024-09-07 12:39:00,004 [main] TRACE Style - === after +Style.h1=Heading 1; cfg-preferred names=[Heading 1]; doc-usable styles={Heading 1=Heading 1 (builtIn, id=-2: HEAD)}; all recognised names=[Heading 1] + +2024-09-07 12:39:00,004 [main] TRACE Style - === before h2.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.h2=null; cfg-preferred names=[Heading 2]; doc-usable styles={}; all recognised names=[Heading 2] +2024-09-07 12:39:00,004 [main] INFO Style - Assigned from preferred names [full match]: Style.h2=Heading 2; cfg-preferred names=[Heading 2] +2024-09-07 12:39:00,004 [main] TRACE Style - === after +Style.h2=Heading 2; cfg-preferred names=[Heading 2]; doc-usable styles={Heading 2=Heading 2 (builtIn, id=-3: HEAD)}; all recognised names=[Heading 2] + +2024-09-07 12:39:00,004 [main] TRACE Style - === before h3.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.h3=null; cfg-preferred names=[Heading 3]; doc-usable styles={}; all recognised names=[Heading 3] +2024-09-07 12:39:00,004 [main] INFO Style - Assigned from preferred names [full match]: Style.h3=Heading 3; cfg-preferred names=[Heading 3] +2024-09-07 12:39:00,004 [main] TRACE Style - === after +Style.h3=Heading 3; cfg-preferred names=[Heading 3]; doc-usable styles={Heading 3=Heading 3 (builtIn, id=-4: HEAD)}; all recognised names=[Heading 3] + +2024-09-07 12:39:00,005 [main] TRACE Style - === before h4.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.h4=null; cfg-preferred names=[Heading 4]; doc-usable styles={}; all recognised names=[Heading 4] +2024-09-07 12:39:00,005 [main] INFO Style - Assigned from preferred names [full match]: Style.h4=Heading 4; cfg-preferred names=[Heading 4] +2024-09-07 12:39:00,005 [main] TRACE Style - === after +Style.h4=Heading 4; cfg-preferred names=[Heading 4]; doc-usable styles={Heading 4=Heading 4 (builtIn, id=-5: HEAD)}; all recognised names=[Heading 4] + +2024-09-07 12:39:00,005 [main] TRACE Style - === before h5.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.h5=null; cfg-preferred names=[Heading 5]; doc-usable styles={}; all recognised names=[Heading 5] +2024-09-07 12:39:00,005 [main] INFO Style - Assigned from preferred names [full match]: Style.h5=Heading 5; cfg-preferred names=[Heading 5] +2024-09-07 12:39:00,005 [main] TRACE Style - === after +Style.h5=Heading 5; cfg-preferred names=[Heading 5]; doc-usable styles={Heading 5=Heading 5 (builtIn, id=-6: HEAD)}; all recognised names=[Heading 5] + +2024-09-07 12:39:00,005 [main] TRACE Style - === before h6.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.h6=null; cfg-preferred names=[Heading 6]; doc-usable styles={}; all recognised names=[Heading 6] +2024-09-07 12:39:00,005 [main] INFO Style - Assigned from preferred names [full match]: Style.h6=Heading 6; cfg-preferred names=[Heading 6] +2024-09-07 12:39:00,005 [main] TRACE Style - === after +Style.h6=Heading 6; cfg-preferred names=[Heading 6]; doc-usable styles={Heading 6=Heading 6 (builtIn, id=-7: HEAD)}; all recognised names=[Heading 6] + +2024-09-07 12:39:00,005 [main] TRACE Style - === before h7.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.h7=null; cfg-preferred names=[Heading 7]; doc-usable styles={}; all recognised names=[Heading 7] +2024-09-07 12:39:00,005 [main] INFO Style - Assigned from preferred names [full match]: Style.h7=Heading 7; cfg-preferred names=[Heading 7] +2024-09-07 12:39:00,005 [main] TRACE Style - === after +Style.h7=Heading 7; cfg-preferred names=[Heading 7]; doc-usable styles={Heading 7=Heading 7 (builtIn, id=-8: HEAD)}; all recognised names=[Heading 7] + +2024-09-07 12:39:00,005 [main] TRACE Style - === before h8.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.h8=null; cfg-preferred names=[Heading 8]; doc-usable styles={}; all recognised names=[Heading 8] +2024-09-07 12:39:00,005 [main] INFO Style - Assigned from preferred names [full match]: Style.h8=Heading 8; cfg-preferred names=[Heading 8] +2024-09-07 12:39:00,005 [main] TRACE Style - === after +Style.h8=Heading 8; cfg-preferred names=[Heading 8]; doc-usable styles={Heading 8=Heading 8 (builtIn, id=-9: HEAD)}; all recognised names=[Heading 8] + +2024-09-07 12:39:00,005 [main] TRACE Style - === before h9.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.h9=null; cfg-preferred names=[Heading 9]; doc-usable styles={}; all recognised names=[Heading 9] +2024-09-07 12:39:00,005 [main] INFO Style - Assigned from preferred names [full match]: Style.h9=Heading 9; cfg-preferred names=[Heading 9] +2024-09-07 12:39:00,005 [main] TRACE Style - === after +Style.h9=Heading 9; cfg-preferred names=[Heading 9]; doc-usable styles={Heading 9=Heading 9 (builtIn, id=-10: HEAD)}; all recognised names=[Heading 9] + +2024-09-07 12:39:00,005 [main] INFO Util - +2024-09-07 12:39:00,005 [main] INFO Util - ------------------------------------------------ +2024-09-07 12:39:00,005 [main] INFO Util - collecting used existing figure/table caption ranges from template... +2024-09-07 12:39:00,688 [main] INFO DocWordWriter - found paragraph [Figure 1 – my first figure ] with caption style [FIGURE-title] +2024-09-07 12:39:00,724 [main] INFO DocWordWriter - found paragraph [Table 1 – my first test table ] with caption style [TABLE-title] +2024-09-07 12:39:00,830 [main] INFO DocWordWriter - found paragraph [Figure 2 – inexisting diagram ] with caption style [Caption] +2024-09-07 12:39:00,863 [main] INFO DocWordWriter - found paragraph [Table 2 - my second test table ] with caption style [Caption] +2024-09-07 12:39:01,037 [main] INFO DocWordWriter - found paragraph [Figure 3 – Diagram referenced in template, not printed in the regular package doc ] with caption style [Caption] +2024-09-07 12:39:01,578 [main] INFO Util - time=[0:00:01.572] collected used figure/table caption ranges from template. +2024-09-07 12:39:01,578 [main] INFO Util - +2024-09-07 12:39:01,578 [main] INFO Util - +2024-09-07 12:39:01,578 [main] INFO Util - ------------------------------------------------ +2024-09-07 12:39:01,578 [main] INFO Util - scanning placeholders... +2024-09-07 12:39:01,646 [main] INFO AbstractWordWriter - saved placeholder 'startUmlFile..endUml' FILE +2024-09-07 12:39:01,672 [main] INFO AbstractWordWriter - skipping TOC: startUmlPackage.Core.endUml +2024-09-07 12:39:01,696 [main] INFO AbstractWordWriter - skipping TOC: startUmlPackage.Dummy.endUml +2024-09-07 12:39:01,724 [main] INFO AbstractWordWriter - skipping TOC: startUmlPackage.InformativeAndPrivate.endUml +2024-09-07 12:39:01,747 [main] INFO AbstractWordWriter - skipping TOC: startUmlPackage.Domain.endUml +2024-09-07 12:39:01,779 [main] INFO AbstractWordWriter - skipping TOC: startUmlPackage.Ext1.endUml +2024-09-07 12:39:01,804 [main] INFO AbstractWordWriter - skipping TOC: startUmlDataIndex.Core.endUml +2024-09-07 12:39:01,832 [main] INFO AbstractWordWriter - skipping TOC: startUmlPresenceConditions.PresenceConditions.endUml +2024-09-07 12:39:01,856 [main] INFO AbstractWordWriter - skipping TOC: startUmlPackage.CDCAnalogueInfo.endUml +2024-09-07 12:39:01,881 [main] INFO AbstractWordWriter - skipping TOC: startUmlPackage.LogicalNodes.endUml +2024-09-07 12:39:01,905 [main] INFO AbstractWordWriter - skipping TOC: startUmlDataIndex.CommonDataClasses.endUml +2024-09-07 12:39:01,936 [main] INFO AbstractWordWriter - skipping TOC: startUmlPackage.DAEnums.endUml +2024-09-07 12:39:01,966 [main] INFO AbstractWordWriter - skipping TOC: startUmlSclEnums.DAEnums.endUml +2024-09-07 12:39:01,997 [main] INFO AbstractWordWriter - skipping TOC: startUmlDataIndex.LogicalNodes.endUml +2024-09-07 12:39:02,028 [main] INFO AbstractWordWriter - skipping TOC: startUmlClass.Core.BasePower.endUml +2024-09-07 12:39:02,055 [main] INFO AbstractWordWriter - skipping TOC: startUmlClass.CDCStatusInfo.DPS.endUml +2024-09-07 12:39:02,085 [main] INFO AbstractWordWriter - skipping TOC: startUmlClass.Domain.UnitSymbol.endUml +2024-09-07 12:39:02,115 [main] INFO AbstractWordWriter - skipping TOC: startUmlClass.Core.InexistingClassName.endUml +2024-09-07 12:39:02,145 [main] INFO AbstractWordWriter - skipping TOC: startUmlClass.ConstructedDAs.RangeConfig.endUml +2024-09-07 12:39:02,177 [main] INFO AbstractWordWriter - skipping TOC: startUmlClass.CDCStatusInfo.HST.endUml +2024-09-07 12:39:02,204 [main] INFO AbstractWordWriter - skipping TOC: startUmlClass.Core.ConnectivityNodeContainer.endUml +2024-09-07 12:39:02,233 [main] INFO AbstractWordWriter - skipping TOC: startUmlClass.Core.DumbSubterminal.endUml +2024-09-07 12:39:02,294 [main] INFO AbstractWordWriter - saved placeholder 'startUmlAttribute.IEC61970CIMVersion.version.endUml' ATTRIBUTE IEC61970CIMVersion, version +2024-09-07 12:39:02,349 [main] INFO AbstractWordWriter - saved placeholder 'startUmlAttribute.IEC61970CIMVersion.dummy.endUml' ATTRIBUTE IEC61970CIMVersion, dummy +2024-09-07 12:39:02,406 [main] INFO AbstractWordWriter - saved placeholder 'startUmlIec61850NsName.IEC61850_7_2Namespace.endUml' IEC61850_NSNAME IEC61850_7_2Namespace +2024-09-07 12:39:02,461 [main] INFO AbstractWordWriter - saved placeholder 'startUmlIec61850NsName.IEC61850_7_3Namespace.endUml' IEC61850_NSNAME IEC61850_7_3Namespace +2024-09-07 12:39:02,517 [main] INFO AbstractWordWriter - saved placeholder 'startUmlIec61850NsName.IEC61850_7_4Namespace.endUml' IEC61850_NSNAME IEC61850_7_4Namespace +2024-09-07 12:39:02,574 [main] INFO AbstractWordWriter - saved placeholder 'startUmlIec61850NsName.IEC61850_7_420Namespace.endUml' IEC61850_NSNAME IEC61850_7_420Namespace +2024-09-07 12:39:02,632 [main] INFO AbstractWordWriter - saved placeholder 'startUmlDiagram.IEC61970.Main.endUml' DIAGRAM IEC61970, Main +2024-09-07 12:39:02,691 [main] INFO AbstractWordWriter - saved placeholder 'startUmlDiagram.DummyPackage.DummyDiagram.endUml' DIAGRAM DummyPackage, DummyDiagram, figures (1 before ), tables (1 before ) +2024-09-07 12:39:02,742 [main] INFO AbstractWordWriter - saved placeholder 'startUmlDiagram.DocIEC61970.MyDocFigure.endUml' DIAGRAM DocIEC61970, MyDocFigure, figures (2 before ), tables (2 before ) +2024-09-07 12:39:02,784 [main] INFO AbstractWordWriter - saved placeholder 'startUmlFile..endUml' FILE, figures (3 before ), tables (2 before ) +2024-09-07 12:39:02,840 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.IEC61970.endUml' PACKAGE IEC61970, figures (3 before ), tables (2 before ) +2024-09-07 12:39:02,888 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.Dummy.endUml' PACKAGE Dummy, figures (3 before ), tables (2 before ) +2024-09-07 12:39:02,940 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.InformativeAndPrivate.endUml' PACKAGE InformativeAndPrivate, figures (3 before ), tables (2 before ) +2024-09-07 12:39:02,982 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.Domain.endUml' PACKAGE Domain, figures (3 before ), tables (2 before ) +2024-09-07 12:39:03,022 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.Ext1.endUml' PACKAGE Ext1, figures (3 before ), tables (2 before ) +2024-09-07 12:39:03,062 [main] INFO AbstractWordWriter - saved placeholder 'startUmlDataIndex.Core.endUml' DATA_INDEX Core, figures (3 before ), tables (2 before ) +2024-09-07 12:39:03,106 [main] INFO AbstractWordWriter - saved placeholder 'startUmlAbbreviations.Abbreviations.endUml' ABBREVIATIONS Abbreviations, figures (3 before ), tables (2 before ) +2024-09-07 12:39:03,146 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPresenceConditions.PresenceConditions.endUml' PRES_CONDITIONS PresenceConditions, figures (3 before ), tables (2 before ) +2024-09-07 12:39:03,186 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.CDCAnalogueInfo.endUml' PACKAGE CDCAnalogueInfo, figures (3 before ), tables (2 before ) +2024-09-07 12:39:03,230 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.LogicalNodes.endUml' PACKAGE LogicalNodes, figures (3 before ), tables (2 before ) +2024-09-07 12:39:03,276 [main] INFO AbstractWordWriter - saved placeholder 'startUmlDataIndex.CommonDataClasses.endUml' DATA_INDEX CommonDataClasses, figures (3 before ), tables (2 before ) +2024-09-07 12:39:03,321 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.DAEnums.endUml' PACKAGE DAEnums, figures (3 before ), tables (2 before ) +2024-09-07 12:39:03,367 [main] INFO AbstractWordWriter - saved placeholder 'startUmlSclEnums.DAEnums.endUml' SCL_ENUMS DAEnums, figures (3 before ), tables (2 before ) +2024-09-07 12:39:03,407 [main] INFO AbstractWordWriter - saved placeholder 'startUmlDataIndex.LogicalNodes.endUml' DATA_INDEX LogicalNodes, figures (3 before ), tables (2 before ) +2024-09-07 12:39:03,448 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.IEC51850_7_420.endUml' PACKAGE IEC51850_7_420, figures (3 before ), tables (2 before ) +2024-09-07 12:39:03,490 [main] INFO AbstractWordWriter - saved placeholder 'startUmlDiagNote.IEC61970.Main.endUml' DIAG_NOTE IEC61970, Main, figures (3 before ), tables (2 before ) +2024-09-07 12:39:03,530 [main] INFO AbstractWordWriter - saved placeholder 'startUmlDiagNote.IEC619_70.Main.endUml' DIAG_NOTE IEC619_70, Main, figures (3 before ), tables (2 before ) +2024-09-07 12:39:03,572 [main] INFO AbstractWordWriter - saved placeholder 'startUmlClass.Core.BasePower.endUml' CLASS Core, BasePower, figures (3 before ), tables (2 before ) +2024-09-07 12:39:03,612 [main] INFO AbstractWordWriter - saved placeholder 'startUmlClass.CDCStatusInfo.DPS.endUml' CLASS CDCStatusInfo, DPS, figures (3 before ), tables (2 before ) +2024-09-07 12:39:03,654 [main] INFO AbstractWordWriter - saved placeholder 'startUmlClass.Domain.UnitSymbol.endUml' CLASS Domain, UnitSymbol, figures (3 before ), tables (2 before ) +2024-09-07 12:39:03,694 [main] INFO AbstractWordWriter - saved placeholder 'startUmlClass.Core.InexistingClassName.endUml' CLASS Core, InexistingClassName, figures (3 before ), tables (2 before ) +2024-09-07 12:39:03,740 [main] INFO AbstractWordWriter - saved placeholder 'startUmlClass.ConstructedDAs.RangeConfig.endUml' CLASS ConstructedDAs, RangeConfig, figures (3 before ), tables (2 before ) +2024-09-07 12:39:03,782 [main] INFO AbstractWordWriter - saved placeholder 'startUmlClass.CDCStatusInfo.HST.endUml' CLASS CDCStatusInfo, HST, figures (3 before ), tables (2 before ) +2024-09-07 12:39:03,823 [main] INFO AbstractWordWriter - saved placeholder 'startUmlClass.Core.ConnectivityNodeContainer.endUml' CLASS Core, ConnectivityNodeContainer, figures (3 before ), tables (2 before ) +2024-09-07 12:39:03,864 [main] INFO AbstractWordWriter - saved placeholder 'startUmlClass.Core.DumbSubterminal.endUml' CLASS Core, DumbSubterminal, figures (3 before ), tables (2 before ) +2024-09-07 12:39:03,869 [main] INFO AbstractWordWriter - 36 placeholders found. +2024-09-07 12:39:03,870 [main] INFO Util - time=[0:00:02.292] scanned placeholders. +2024-09-07 12:39:03,870 [main] INFO Util - +2024-09-07 12:39:03,870 [main] INFO Util - +2024-09-07 12:39:03,870 [main] INFO Util - ------------------------------------------------ +2024-09-07 12:39:03,870 [main] INFO Util - inserting documentation into placeholders +2024-09-07 12:39:03,877 [main] INFO AbstractWordWriter - replacing [39 - 59] FILE... +2024-09-07 12:39:03,884 [main] INFO Util - time=[0:00:00.014] replaced [39 - 53] FILE... +2024-09-07 12:39:03,884 [main] INFO Util - +2024-09-07 12:39:03,889 [main] INFO AbstractWordWriter - replacing [4015 - 4066] ATTRIBUTE IEC61970CIMVersion, version... +2024-09-07 12:39:03,896 [main] INFO Util - time=[0:00:00.012] replaced [4015 - 4031] ATTRIBUTE IEC61970CIMVersion, version... +2024-09-07 12:39:03,896 [main] INFO Util - +2024-09-07 12:39:03,899 [main] INFO AbstractWordWriter - replacing [4055 - 4104] ATTRIBUTE IEC61970CIMVersion, dummy... +2024-09-07 12:39:03,907 [main] INFO Util - time=[0:00:00.011] replaced [4055 - 4117] $ERROR ATTRIBUTE IEC61970CIMVersion, dummy not found in model$... +2024-09-07 12:39:03,908 [main] INFO Util - +2024-09-07 12:39:03,911 [main] INFO AbstractWordWriter - replacing [4163 - 4214] IEC61850_NSNAME IEC61850_7_2Namespace... +2024-09-07 12:39:03,919 [main] INFO Util - time=[0:00:00.011] replaced [4163 - 4180] IEC61850_NSNAME IEC61850_7_2Namespace... +2024-09-07 12:39:03,919 [main] INFO Util - +2024-09-07 12:39:03,924 [main] INFO AbstractWordWriter - replacing [4208 - 4259] IEC61850_NSNAME IEC61850_7_3Namespace... +2024-09-07 12:39:03,932 [main] INFO Util - time=[0:00:00.013] replaced [4208 - 4226] IEC61850_NSNAME IEC61850_7_3Namespace... +2024-09-07 12:39:03,932 [main] INFO Util - +2024-09-07 12:39:03,937 [main] INFO AbstractWordWriter - replacing [4254 - 4305] IEC61850_NSNAME IEC61850_7_4Namespace... +2024-09-07 12:39:03,945 [main] INFO Util - time=[0:00:00.012] replaced [4254 - 4272] IEC61850_NSNAME IEC61850_7_4Namespace... +2024-09-07 12:39:03,945 [main] INFO Util - +2024-09-07 12:39:03,949 [main] INFO AbstractWordWriter - replacing [4300 - 4353] IEC61850_NSNAME IEC61850_7_420Namespace... +2024-09-07 12:39:03,957 [main] INFO Util - time=[0:00:00.012] replaced [4300 - 4366] $ERROR IEC61850_NSNAME IEC61850_7_420Namespace not found in model$... +2024-09-07 12:39:03,957 [main] INFO Util - +2024-09-07 12:39:03,960 [main] INFO AbstractWordWriter - replacing [4429 - 4465] DIAGRAM IEC61970, Main... +2024-09-07 12:39:03,991 [main] INFO Util - time=[0:00:00.034] replaced [4429 - 4430] DIAGRAM IEC61970, Main... +2024-09-07 12:39:03,991 [main] INFO Util - +2024-09-07 12:39:03,996 [main] INFO AbstractWordWriter - replacing [4688 - 4736] DIAGRAM DummyPackage, DummyDiagram, figures (1 before ), tables (1 before )... +2024-09-07 12:39:03,996 [main] WARN ModelFinderImpl - No diagram DummyPackage::DummyDiagram found - returning null. +2024-09-07 12:39:04,005 [main] INFO Util - time=[0:00:00.014] replaced [4688 - 4749] $ERROR DIAGRAM DummyPackage, DummyDiagram not found in model$... +2024-09-07 12:39:04,005 [main] INFO Util - +2024-09-07 12:39:04,009 [main] INFO AbstractWordWriter - replacing [5021 - 5067] DIAGRAM DocIEC61970, MyDocFigure, figures (2 before ), tables (2 before )... +2024-09-07 12:39:04,033 [main] INFO Util - time=[0:00:00.028] replaced [5021 - 5022] DIAGRAM DocIEC61970, MyDocFigure, figures (2 before ), tables (2 before )... +2024-09-07 12:39:04,033 [main] INFO Util - +2024-09-07 12:39:04,038 [main] INFO AbstractWordWriter - replacing [5207 - 5227] FILE, figures (3 before ), tables (2 before )... +2024-09-07 12:39:04,047 [main] INFO Util - time=[0:00:00.014] replaced [5207 - 5221] FILE, figures (3 before ), tables (2 before )... +2024-09-07 12:39:04,047 [main] INFO Util - +2024-09-07 12:39:04,051 [main] INFO AbstractWordWriter - replacing [5223 - 5254] PACKAGE IEC61970, figures (3 before ), tables (2 before )... +2024-09-07 12:39:04,073 [main] INFO AbstractWordWriter - writing doc for package IEC61970 ... +2024-09-07 12:39:04,155 [main] WARN AbstractWordWriter - ####### Caught exception - skipping: Invoke of: InsertCaption +Source: Microsoft Word +Description: Command failed + +2024-09-07 12:39:04,162 [main] INFO Util - time=[0:00:00.115] replaced [5253 - 5254] PACKAGE IEC61970, figures (3 before 1 mine), tables (2 before )... +2024-09-07 12:39:04,162 [main] INFO Util - +2024-09-07 12:39:04,170 [main] INFO AbstractWordWriter - replacing [5814 - 5842] PACKAGE Dummy, figures (4 before ), tables (2 before )... +2024-09-07 12:39:04,177 [main] INFO Util - time=[0:00:00.014] replaced [5814 - 5854] $ERROR PACKAGE Dummy not found in model$... +2024-09-07 12:39:04,177 [main] INFO Util - +2024-09-07 12:39:04,181 [main] INFO AbstractWordWriter - replacing [5855 - 5899] PACKAGE InformativeAndPrivate, figures (4 before ), tables (2 before )... +2024-09-07 12:39:04,191 [main] INFO Util - time=[0:00:00.013] replaced [5855 - 5911] $ERROR PACKAGE InformativeAndPrivate not found in model$... +2024-09-07 12:39:04,191 [main] INFO Util - +2024-09-07 12:39:04,196 [main] INFO AbstractWordWriter - replacing [5912 - 5941] PACKAGE Domain, figures (4 before ), tables (2 before )... +2024-09-07 12:39:04,217 [main] INFO AbstractWordWriter - writing doc for package Domain ... +2024-09-07 12:39:04,297 [main] WARN AbstractWordWriter - ####### Caught exception - skipping: Invoke of: InsertCaption +Source: Microsoft Word +Description: Command failed + +2024-09-07 12:39:04,310 [main] INFO Util - time=[0:00:00.119] replaced [6712 - 6713] PACKAGE Domain, figures (4 before 1 mine), tables (2 before )... +2024-09-07 12:39:04,310 [main] INFO Util - +2024-09-07 12:39:04,315 [main] INFO AbstractWordWriter - replacing [6714 - 6741] PACKAGE Ext1, figures (5 before ), tables (2 before )... +2024-09-07 12:39:04,338 [main] INFO AbstractWordWriter - writing doc for package Ext1 ... +2024-09-07 12:39:04,452 [main] WARN AbstractWordWriter - ####### Caught exception - skipping: Invoke of: InsertCaption +Source: Microsoft Word +Description: Command failed + +2024-09-07 12:39:04,459 [main] INFO Util - time=[0:00:00.149] replaced [6838 - 6839] PACKAGE Ext1, figures (5 before 1 mine), tables (2 before )... +2024-09-07 12:39:04,459 [main] INFO Util - +2024-09-07 12:39:04,464 [main] INFO AbstractWordWriter - replacing [7124 - 7153] DATA_INDEX Core, figures (6 before ), tables (2 before )... +2024-09-07 12:39:04,470 [main] INFO AbstractWordWriter - writing data index doc for package Core ... +2024-09-07 12:39:04,494 [main] INFO DocWordWriter - --- insertTable() 22 rows: Attributes defined on classes of Core package +2024-09-07 12:39:04,512 [main] DEBUG DocWordWriter - ... 18 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 12:39:04,523 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 12:39:04,823 [main] DEBUG DocWordWriter - ... 300 ms for fillValues() +2024-09-07 12:39:04,839 [main] DEBUG DocWordWriter - ... 15 ms for widths (table) +2024-09-07 12:39:04,912 [main] DEBUG DocWordWriter - ... 73 ms for widths (columns) +2024-09-07 12:39:04,936 [main] DEBUG DocWordWriter - ... 24 ms for shadding/merging/styling (rows) +2024-09-07 12:39:04,965 [main] DEBUG DocWordWriter - ... 29 ms for borders +2024-09-07 12:39:04,965 [main] DEBUG DocWordWriter - ... 142 ms for formatTable() +2024-09-07 12:39:04,974 [main] INFO DocWordWriter - ... 471 ms total for insertTable() +2024-09-07 12:39:04,987 [main] WARN AbstractWordWriter - ####### Caught exception - skipping: Invoke of: InsertCaption +Source: Microsoft Word +Description: Command failed + +2024-09-07 12:39:04,995 [main] INFO Util - time=[0:00:00.536] replaced [7196 - 10946] DATA_INDEX Core, figures (6 before ), tables (2 before 1 mine)... +2024-09-07 12:39:04,996 [main] INFO Util - +2024-09-07 12:39:05,001 [main] INFO AbstractWordWriter - replacing [11011 - 11053] ABBREVIATIONS Abbreviations, figures (6 before ), tables (3 before )... +2024-09-07 12:39:05,006 [main] INFO AbstractWordWriter - writing abbreviations from package Abbreviations ... +2024-09-07 12:39:05,036 [main] INFO DocWordWriter - --- insertTable() 11 rows: Normative abbreviations for data object names +2024-09-07 12:39:05,055 [main] DEBUG DocWordWriter - ... 19 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 12:39:05,064 [main] DEBUG DocWordWriter - ... 9 ms for createTable() +2024-09-07 12:39:05,184 [main] DEBUG DocWordWriter - ... 120 ms for fillValues() +2024-09-07 12:39:05,199 [main] DEBUG DocWordWriter - ... 15 ms for widths (table) +2024-09-07 12:39:05,256 [main] DEBUG DocWordWriter - ... 57 ms for widths (columns) +2024-09-07 12:39:05,274 [main] DEBUG DocWordWriter - ... 18 ms for shadding/merging/styling (rows) +2024-09-07 12:39:05,294 [main] DEBUG DocWordWriter - ... 20 ms for borders +2024-09-07 12:39:05,294 [main] DEBUG DocWordWriter - ... 110 ms for formatTable() +2024-09-07 12:39:05,306 [main] INFO DocWordWriter - ... 258 ms total for insertTable() +2024-09-07 12:39:05,320 [main] WARN AbstractWordWriter - ####### Caught exception - skipping: Invoke of: InsertCaption +Source: Microsoft Word +Description: Command failed + +2024-09-07 12:39:05,327 [main] INFO Util - time=[0:00:00.331] replaced [11081 - 11305] ABBREVIATIONS Abbreviations, figures (6 before ), tables (3 before 1 mine)... +2024-09-07 12:39:05,327 [main] INFO Util - +2024-09-07 12:39:05,332 [main] INFO AbstractWordWriter - replacing [11306 - 11358] PRES_CONDITIONS PresenceConditions, figures (6 before ), tables (4 before )... +2024-09-07 12:39:05,338 [main] INFO AbstractWordWriter - writing presence conditions from package PresenceConditions ... +2024-09-07 12:39:05,384 [main] INFO DocWordWriter - --- insertTable() 31 rows: Conditions for presence of elements within a context +2024-09-07 12:39:05,403 [main] DEBUG DocWordWriter - ... 19 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 12:39:05,417 [main] DEBUG DocWordWriter - ... 14 ms for createTable() +2024-09-07 12:39:05,446 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML556' to Word document and to used list. +2024-09-07 12:39:05,459 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML557' to Word document and to used list. +2024-09-07 12:39:05,473 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML558' to Word document and to used list. +2024-09-07 12:39:05,486 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML559' to Word document and to used list. +2024-09-07 12:39:05,499 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML560' to Word document and to used list. +2024-09-07 12:39:05,512 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML561' to Word document and to used list. +2024-09-07 12:39:05,524 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML562' to Word document and to used list. +2024-09-07 12:39:05,536 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML563' to Word document and to used list. +2024-09-07 12:39:05,547 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML564' to Word document and to used list. +2024-09-07 12:39:05,558 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML565' to Word document and to used list. +2024-09-07 12:39:05,570 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML566' to Word document and to used list. +2024-09-07 12:39:05,582 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML567' to Word document and to used list. +2024-09-07 12:39:05,596 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML568' to Word document and to used list. +2024-09-07 12:39:05,610 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML569' to Word document and to used list. +2024-09-07 12:39:05,622 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML570' to Word document and to used list. +2024-09-07 12:39:05,633 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML571' to Word document and to used list. +2024-09-07 12:39:05,644 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML572' to Word document and to used list. +2024-09-07 12:39:05,657 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML573' to Word document and to used list. +2024-09-07 12:39:05,671 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML574' to Word document and to used list. +2024-09-07 12:39:05,683 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML575' to Word document and to used list. +2024-09-07 12:39:05,696 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML576' to Word document and to used list. +2024-09-07 12:39:05,707 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML577' to Word document and to used list. +2024-09-07 12:39:05,720 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML578' to Word document and to used list. +2024-09-07 12:39:05,732 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML579' to Word document and to used list. +2024-09-07 12:39:05,744 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML580' to Word document and to used list. +2024-09-07 12:39:05,756 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML581' to Word document and to used list. +2024-09-07 12:39:05,769 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML582' to Word document and to used list. +2024-09-07 12:39:05,782 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML583' to Word document and to used list. +2024-09-07 12:39:05,794 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML584' to Word document and to used list. +2024-09-07 12:39:05,806 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML585' to Word document and to used list. +2024-09-07 12:39:05,811 [main] DEBUG DocWordWriter - ... 394 ms for fillValues() +2024-09-07 12:39:05,827 [main] DEBUG DocWordWriter - ... 16 ms for widths (table) +2024-09-07 12:39:05,879 [main] DEBUG DocWordWriter - ... 52 ms for widths (columns) +2024-09-07 12:39:05,899 [main] DEBUG DocWordWriter - ... 20 ms for shadding/merging/styling (rows) +2024-09-07 12:39:05,929 [main] DEBUG DocWordWriter - ... 30 ms for borders +2024-09-07 12:39:05,929 [main] DEBUG DocWordWriter - ... 118 ms for formatTable() +2024-09-07 12:39:05,939 [main] INFO DocWordWriter - ... 545 ms total for insertTable() +2024-09-07 12:39:05,952 [main] WARN AbstractWordWriter - ####### Caught exception - skipping: Invoke of: InsertCaption +Source: Microsoft Word +Description: Command failed + +2024-09-07 12:39:05,958 [main] INFO Util - time=[0:00:00.631] replaced [11506 - 16709] PRES_CONDITIONS PresenceConditions, figures (6 before ), tables (4 before 1 mine)... +2024-09-07 12:39:05,959 [main] INFO Util - +2024-09-07 12:39:05,963 [main] INFO AbstractWordWriter - replacing [16710 - 16748] PACKAGE CDCAnalogueInfo, figures (6 before ), tables (5 before )... +2024-09-07 12:39:05,982 [main] INFO AbstractWordWriter - writing doc for package CDCAnalogueInfo ... +2024-09-07 12:39:06,068 [main] WARN AbstractWordWriter - ####### Caught exception - skipping: Invoke of: InsertCaption +Source: Microsoft Word +Description: Command failed + +2024-09-07 12:39:06,075 [main] INFO Util - time=[0:00:00.116] replaced [16872 - 16873] PACKAGE CDCAnalogueInfo, figures (6 before 1 mine), tables (5 before )... +2024-09-07 12:39:06,075 [main] INFO Util - +2024-09-07 12:39:06,079 [main] INFO AbstractWordWriter - replacing [16874 - 16909] PACKAGE LogicalNodes, figures (7 before ), tables (5 before )... +2024-09-07 12:39:06,099 [main] INFO AbstractWordWriter - writing doc for package LogicalNodes ... +2024-09-07 12:39:06,188 [main] WARN AbstractWordWriter - ####### Caught exception - skipping: Invoke of: InsertCaption +Source: Microsoft Word +Description: Command failed + +2024-09-07 12:39:06,197 [main] INFO Util - time=[0:00:00.121] replaced [17644 - 17645] PACKAGE LogicalNodes, figures (7 before 1 mine), tables (5 before )... +2024-09-07 12:39:06,197 [main] INFO Util - +2024-09-07 12:39:06,202 [main] INFO AbstractWordWriter - replacing [17646 - 17688] DATA_INDEX CommonDataClasses, figures (8 before ), tables (5 before )... +2024-09-07 12:39:06,209 [main] INFO AbstractWordWriter - writing data index doc for package CommonDataClasses ... +2024-09-07 12:39:06,237 [main] INFO DocWordWriter - --- insertTable() 31 rows: Attributes defined on classes of CommonDataClasses package +2024-09-07 12:39:06,255 [main] DEBUG DocWordWriter - ... 18 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 12:39:06,269 [main] DEBUG DocWordWriter - ... 14 ms for createTable() +2024-09-07 12:39:06,742 [main] DEBUG DocWordWriter - ... 473 ms for fillValues() +2024-09-07 12:39:06,758 [main] DEBUG DocWordWriter - ... 16 ms for widths (table) +2024-09-07 12:39:06,837 [main] DEBUG DocWordWriter - ... 79 ms for widths (columns) +2024-09-07 12:39:06,856 [main] DEBUG DocWordWriter - ... 19 ms for shadding/merging/styling (rows) +2024-09-07 12:39:06,893 [main] DEBUG DocWordWriter - ... 37 ms for borders +2024-09-07 12:39:06,893 [main] DEBUG DocWordWriter - ... 151 ms for formatTable() +2024-09-07 12:39:06,902 [main] INFO DocWordWriter - ... 656 ms total for insertTable() +2024-09-07 12:39:06,915 [main] WARN AbstractWordWriter - ####### Caught exception - skipping: Invoke of: InsertCaption +Source: Microsoft Word +Description: Command failed + +2024-09-07 12:39:06,923 [main] INFO Util - time=[0:00:00.726] replaced [17731 - 23185] DATA_INDEX CommonDataClasses, figures (8 before ), tables (5 before 1 mine)... +2024-09-07 12:39:06,923 [main] INFO Util - +2024-09-07 12:39:06,928 [main] INFO AbstractWordWriter - replacing [23186 - 23216] PACKAGE DAEnums, figures (8 before ), tables (6 before )... +2024-09-07 12:39:06,948 [main] INFO AbstractWordWriter - writing doc for package DAEnums ... +2024-09-07 12:39:07,052 [main] WARN AbstractWordWriter - ####### Caught exception - skipping: Invoke of: InsertCaption +Source: Microsoft Word +Description: Command failed + +2024-09-07 12:39:07,063 [main] INFO Util - time=[0:00:00.140] replaced [23358 - 23359] PACKAGE DAEnums, figures (8 before 1 mine), tables (6 before )... +2024-09-07 12:39:07,063 [main] INFO Util - +2024-09-07 12:39:07,068 [main] INFO AbstractWordWriter - replacing [23360 - 23391] SCL_ENUMS DAEnums, figures (9 before ), tables (6 before )... +2024-09-07 12:39:07,074 [main] INFO AbstractWordWriter - writing SCL for enums from package DAEnums ... +2024-09-07 12:39:07,144 [main] INFO Util - time=[0:00:00.081] replaced [23392 - 27440] SCL_ENUMS DAEnums, figures (9 before ), tables (6 before )... +2024-09-07 12:39:07,144 [main] INFO Util - +2024-09-07 12:39:07,148 [main] INFO AbstractWordWriter - replacing [27441 - 27478] DATA_INDEX LogicalNodes, figures (9 before ), tables (6 before )... +2024-09-07 12:39:07,156 [main] INFO AbstractWordWriter - writing data index doc for package LogicalNodes ... +2024-09-07 12:39:07,185 [main] INFO DocWordWriter - --- insertTable() 33 rows: Attributes defined on classes of LogicalNodes package +2024-09-07 12:39:07,207 [main] DEBUG DocWordWriter - ... 22 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 12:39:07,223 [main] DEBUG DocWordWriter - ... 16 ms for createTable() +2024-09-07 12:39:07,737 [main] DEBUG DocWordWriter - ... 514 ms for fillValues() +2024-09-07 12:39:07,754 [main] DEBUG DocWordWriter - ... 17 ms for widths (table) +2024-09-07 12:39:07,844 [main] DEBUG DocWordWriter - ... 90 ms for widths (columns) +2024-09-07 12:39:07,867 [main] DEBUG DocWordWriter - ... 23 ms for shadding/merging/styling (rows) +2024-09-07 12:39:07,901 [main] DEBUG DocWordWriter - ... 34 ms for borders +2024-09-07 12:39:07,901 [main] DEBUG DocWordWriter - ... 164 ms for formatTable() +2024-09-07 12:39:07,910 [main] INFO DocWordWriter - ... 716 ms total for insertTable() +2024-09-07 12:39:07,924 [main] WARN AbstractWordWriter - ####### Caught exception - skipping: Invoke of: InsertCaption +Source: Microsoft Word +Description: Command failed + +2024-09-07 12:39:07,933 [main] INFO Util - time=[0:00:00.789] replaced [27521 - 33764] DATA_INDEX LogicalNodes, figures (9 before ), tables (6 before 1 mine)... +2024-09-07 12:39:07,933 [main] INFO Util - +2024-09-07 12:39:07,937 [main] INFO AbstractWordWriter - replacing [33765 - 33802] PACKAGE IEC51850_7_420, figures (9 before ), tables (7 before )... +2024-09-07 12:39:07,958 [main] INFO AbstractWordWriter - writing doc for package IEC51850_7_420 ... +2024-09-07 12:39:08,043 [main] WARN AbstractWordWriter - ####### Caught exception - skipping: Invoke of: InsertCaption +Source: Microsoft Word +Description: Command failed + +2024-09-07 12:39:08,050 [main] INFO Util - time=[0:00:00.117] replaced [33797 - 33798] PACKAGE IEC51850_7_420, figures (9 before 1 mine), tables (7 before )... +2024-09-07 12:39:08,050 [main] INFO Util - +2024-09-07 12:39:08,054 [main] INFO AbstractWordWriter - replacing [33972 - 34009] DIAG_NOTE IEC61970, Main, figures (10 before ), tables (7 before )... +2024-09-07 12:39:08,063 [main] INFO Util - time=[0:00:00.013] replaced [33972 - 34061] DIAG_NOTE IEC61970, Main, figures (10 before ), tables (7 before )... +2024-09-07 12:39:08,063 [main] INFO Util - +2024-09-07 12:39:08,067 [main] INFO AbstractWordWriter - replacing [34103 - 34141] DIAG_NOTE IEC619_70, Main, figures (10 before ), tables (7 before )... +2024-09-07 12:39:08,067 [main] WARN ModelFinderImpl - No diagram IEC619_70::Main found - returning null. +2024-09-07 12:39:08,076 [main] INFO Util - time=[0:00:00.012] replaced [34103 - 34155] $ERROR DIAG_NOTE IEC619_70, Main not found in model$... +2024-09-07 12:39:08,076 [main] INFO Util - +2024-09-07 12:39:08,080 [main] INFO AbstractWordWriter - replacing [34256 - 34291] CLASS Core, BasePower, figures (10 before ), tables (7 before )... +2024-09-07 12:39:08,094 [main] INFO AbstractWordWriter - writing doc for class CLASS Core, BasePower ... +2024-09-07 12:39:08,102 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML162' to Word document and to used list. +2024-09-07 12:39:08,167 [main] INFO DocWordWriter - --- insertTable() 5 rows: Attributes of Core::BasePower +2024-09-07 12:39:08,185 [main] DEBUG DocWordWriter - ... 18 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 12:39:08,195 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-07 12:39:08,307 [main] DEBUG DocWordWriter - ... 112 ms for fillValues() +2024-09-07 12:39:08,320 [main] DEBUG DocWordWriter - ... 13 ms for widths (table) +2024-09-07 12:39:08,383 [main] DEBUG DocWordWriter - ... 63 ms for widths (columns) +2024-09-07 12:39:08,400 [main] DEBUG DocWordWriter - ... 17 ms for shadding/merging/styling (rows) +2024-09-07 12:39:08,419 [main] DEBUG DocWordWriter - ... 19 ms for borders +2024-09-07 12:39:08,419 [main] DEBUG DocWordWriter - ... 112 ms for formatTable() +2024-09-07 12:39:08,427 [main] INFO DocWordWriter - ... 252 ms total for insertTable() +2024-09-07 12:39:08,438 [main] WARN AbstractWordWriter - ####### Caught exception - skipping: Invoke of: InsertCaption +Source: Microsoft Word +Description: Command failed + +2024-09-07 12:39:08,448 [main] INFO Util - time=[0:00:00.372] replaced [34427 - 34753] CLASS Core, BasePower, figures (10 before ), tables (7 before 1 mine)... +2024-09-07 12:39:08,448 [main] INFO Util - +2024-09-07 12:39:08,451 [main] INFO AbstractWordWriter - replacing [34754 - 34792] CLASS CDCStatusInfo, DPS, figures (10 before ), tables (8 before )... +2024-09-07 12:39:08,466 [main] INFO AbstractWordWriter - writing doc for class CLASS CDCStatusInfo, DPS ... +2024-09-07 12:39:08,475 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML229' to Word document and to used list. +2024-09-07 12:39:08,541 [main] INFO DocWordWriter - --- insertTable() 14 rows: Attributes of DPS +2024-09-07 12:39:08,559 [main] DEBUG DocWordWriter - ... 18 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 12:39:08,571 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-07 12:39:08,890 [main] DEBUG DocWordWriter - ... 319 ms for fillValues() +2024-09-07 12:39:08,905 [main] DEBUG DocWordWriter - ... 15 ms for widths (table) +2024-09-07 12:39:09,032 [main] DEBUG DocWordWriter - ... 127 ms for widths (columns) +2024-09-07 12:39:09,229 [main] DEBUG DocWordWriter - ... 197 ms for shadding/merging/styling (rows) +2024-09-07 12:39:09,262 [main] DEBUG DocWordWriter - ... 33 ms for borders +2024-09-07 12:39:09,262 [main] DEBUG DocWordWriter - ... 372 ms for formatTable() +2024-09-07 12:39:09,270 [main] INFO DocWordWriter - ... 721 ms total for insertTable() +2024-09-07 12:39:09,282 [main] WARN AbstractWordWriter - ####### Caught exception - skipping: Invoke of: InsertCaption +Source: Microsoft Word +Description: Command failed + +2024-09-07 12:39:09,291 [main] INFO Util - time=[0:00:00.843] replaced [35112 - 36150] CLASS CDCStatusInfo, DPS, figures (10 before ), tables (8 before 1 mine)... +2024-09-07 12:39:09,291 [main] INFO Util - +2024-09-07 12:39:09,295 [main] INFO AbstractWordWriter - replacing [36151 - 36189] CLASS Domain, UnitSymbol, figures (10 before ), tables (9 before )... +2024-09-07 12:39:09,311 [main] INFO AbstractWordWriter - writing doc for class CLASS Domain, UnitSymbol ... +2024-09-07 12:39:09,319 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML24' to Word document and to used list. +2024-09-07 12:39:09,367 [main] INFO DocWordWriter - --- insertTable() 35 rows: Literals of Domain::UnitSymbol +2024-09-07 12:39:09,385 [main] DEBUG DocWordWriter - ... 18 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 12:39:09,407 [main] DEBUG DocWordWriter - ... 22 ms for createTable() +2024-09-07 12:39:09,446 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML412' to Word document and to used list. +2024-09-07 12:39:09,461 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML413' to Word document and to used list. +2024-09-07 12:39:09,477 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML414' to Word document and to used list. +2024-09-07 12:39:09,491 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML415' to Word document and to used list. +2024-09-07 12:39:09,505 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML416' to Word document and to used list. +2024-09-07 12:39:09,519 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML417' to Word document and to used list. +2024-09-07 12:39:09,531 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML418' to Word document and to used list. +2024-09-07 12:39:09,544 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML419' to Word document and to used list. +2024-09-07 12:39:09,557 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML420' to Word document and to used list. +2024-09-07 12:39:09,571 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML421' to Word document and to used list. +2024-09-07 12:39:09,585 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML422' to Word document and to used list. +2024-09-07 12:39:09,599 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML423' to Word document and to used list. +2024-09-07 12:39:09,613 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML424' to Word document and to used list. +2024-09-07 12:39:09,625 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML425' to Word document and to used list. +2024-09-07 12:39:09,639 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML426' to Word document and to used list. +2024-09-07 12:39:09,653 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML427' to Word document and to used list. +2024-09-07 12:39:09,666 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML428' to Word document and to used list. +2024-09-07 12:39:09,679 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML429' to Word document and to used list. +2024-09-07 12:39:09,692 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML430' to Word document and to used list. +2024-09-07 12:39:09,705 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML431' to Word document and to used list. +2024-09-07 12:39:09,721 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML432' to Word document and to used list. +2024-09-07 12:39:09,737 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML433' to Word document and to used list. +2024-09-07 12:39:09,754 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML434' to Word document and to used list. +2024-09-07 12:39:09,769 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML435' to Word document and to used list. +2024-09-07 12:39:09,782 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML436' to Word document and to used list. +2024-09-07 12:39:09,796 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML437' to Word document and to used list. +2024-09-07 12:39:09,809 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML438' to Word document and to used list. +2024-09-07 12:39:09,822 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML439' to Word document and to used list. +2024-09-07 12:39:09,835 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML440' to Word document and to used list. +2024-09-07 12:39:09,849 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML441' to Word document and to used list. +2024-09-07 12:39:09,862 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML442' to Word document and to used list. +2024-09-07 12:39:09,877 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML443' to Word document and to used list. +2024-09-07 12:39:09,890 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML444' to Word document and to used list. +2024-09-07 12:39:09,904 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML445' to Word document and to used list. +2024-09-07 12:39:09,910 [main] DEBUG DocWordWriter - ... 503 ms for fillValues() +2024-09-07 12:39:09,929 [main] DEBUG DocWordWriter - ... 19 ms for widths (table) +2024-09-07 12:39:10,010 [main] DEBUG DocWordWriter - ... 81 ms for widths (columns) +2024-09-07 12:39:10,030 [main] DEBUG DocWordWriter - ... 20 ms for shadding/merging/styling (rows) +2024-09-07 12:39:10,062 [main] DEBUG DocWordWriter - ... 32 ms for borders +2024-09-07 12:39:10,062 [main] DEBUG DocWordWriter - ... 152 ms for formatTable() +2024-09-07 12:39:10,070 [main] INFO DocWordWriter - ... 695 ms total for insertTable() +2024-09-07 12:39:10,083 [main] WARN AbstractWordWriter - ####### Caught exception - skipping: Invoke of: InsertCaption +Source: Microsoft Word +Description: Command failed + +2024-09-07 12:39:10,091 [main] INFO Util - time=[0:00:00.800] replaced [36247 - 37219] CLASS Domain, UnitSymbol, figures (10 before ), tables (9 before 1 mine)... +2024-09-07 12:39:10,091 [main] INFO Util - +2024-09-07 12:39:10,095 [main] INFO AbstractWordWriter - replacing [37220 - 37265] CLASS Core, InexistingClassName, figures (10 before ), tables (10 before )... +2024-09-07 12:39:10,106 [main] INFO Util - time=[0:00:00.015] replaced [37220 - 37278] $ERROR CLASS Core, InexistingClassName not found in model$... +2024-09-07 12:39:10,106 [main] INFO Util - +2024-09-07 12:39:10,110 [main] INFO AbstractWordWriter - replacing [37324 - 37371] CLASS ConstructedDAs, RangeConfig, figures (10 before ), tables (10 before )... +2024-09-07 12:39:10,128 [main] INFO AbstractWordWriter - writing doc for class CLASS ConstructedDAs, RangeConfig ... +2024-09-07 12:39:10,139 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML356' to Word document and to used list. +2024-09-07 12:39:10,231 [main] WARN AbstractWordWriter - ####### Caught exception - skipping: Invoke of: InsertCaption +Source: Microsoft Word +Description: Command failed + +2024-09-07 12:39:10,241 [main] INFO Util - time=[0:00:00.135] replaced [37608 - 37609] CLASS ConstructedDAs, RangeConfig, figures (10 before 1 mine), tables (10 before )... +2024-09-07 12:39:10,241 [main] INFO Util - +2024-09-07 12:39:10,246 [main] INFO AbstractWordWriter - replacing [37610 - 37648] CLASS CDCStatusInfo, HST, figures (11 before ), tables (10 before )... +2024-09-07 12:39:10,262 [main] INFO AbstractWordWriter - writing doc for class CLASS CDCStatusInfo, HST ... +2024-09-07 12:39:10,270 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML245' to Word document and to used list. +2024-09-07 12:39:10,358 [main] WARN AbstractWordWriter - ####### Caught exception - skipping: Invoke of: InsertCaption +Source: Microsoft Word +Description: Command failed + +2024-09-07 12:39:10,364 [main] INFO Util - time=[0:00:00.123] replaced [38316 - 38317] CLASS CDCStatusInfo, HST, figures (11 before 1 mine), tables (10 before )... +2024-09-07 12:39:10,364 [main] INFO Util - +2024-09-07 12:39:10,368 [main] INFO AbstractWordWriter - replacing [38340 - 38391] CLASS Core, ConnectivityNodeContainer, figures (12 before ), tables (10 before )... +2024-09-07 12:39:10,383 [main] INFO AbstractWordWriter - writing doc for class CLASS Core, ConnectivityNodeContainer ... +2024-09-07 12:39:10,391 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML167' to Word document and to used list. +2024-09-07 12:39:10,455 [main] INFO DocWordWriter - --- insertTable() 5 rows: Attributes of Core::ConnectivityNodeContainer +2024-09-07 12:39:10,475 [main] DEBUG DocWordWriter - ... 20 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 12:39:10,485 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-07 12:39:10,594 [main] DEBUG DocWordWriter - ... 109 ms for fillValues() +2024-09-07 12:39:10,606 [main] DEBUG DocWordWriter - ... 12 ms for widths (table) +2024-09-07 12:39:10,675 [main] DEBUG DocWordWriter - ... 69 ms for widths (columns) +2024-09-07 12:39:10,694 [main] DEBUG DocWordWriter - ... 19 ms for shadding/merging/styling (rows) +2024-09-07 12:39:10,714 [main] DEBUG DocWordWriter - ... 20 ms for borders +2024-09-07 12:39:10,714 [main] DEBUG DocWordWriter - ... 120 ms for formatTable() +2024-09-07 12:39:10,723 [main] INFO DocWordWriter - ... 259 ms total for insertTable() +2024-09-07 12:39:10,734 [main] WARN AbstractWordWriter - ####### Caught exception - skipping: Invoke of: InsertCaption +Source: Microsoft Word +Description: Command failed + +2024-09-07 12:39:10,743 [main] INFO Util - time=[0:00:00.379] replaced [38585 - 38935] CLASS Core, ConnectivityNodeContainer, figures (12 before ), tables (10 before 1 mine)... +2024-09-07 12:39:10,743 [main] INFO Util - +2024-09-07 12:39:10,747 [main] INFO AbstractWordWriter - replacing [38936 - 38977] CLASS Core, DumbSubterminal, figures (12 before ), tables (11 before )... +2024-09-07 12:39:10,758 [main] INFO Util - time=[0:00:00.015] replaced [38936 - 38990] $ERROR CLASS Core, DumbSubterminal not found in model$... +2024-09-07 12:39:10,758 [main] INFO Util - +2024-09-07 12:39:10,758 [main] INFO Util - +2024-09-07 12:39:10,758 [main] INFO Util - ------------------------------------------------ +2024-09-07 12:39:10,758 [main] INFO Util - scanning placeholders... +2024-09-07 12:39:10,829 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùYesNoùUML27ùdd' HYPERLINK YesNo, UML27 +2024-09-07 12:39:10,844 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBayùUML170ùdd' HYPERLINK Bay, UML170 +2024-09-07 12:39:10,858 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùStringùUML22ùdd' HYPERLINK String, UML22 +2024-09-07 12:39:10,875 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIdentifiedObjectùUML32ùdd' HYPERLINK IdentifiedObject, UML32 +2024-09-07 12:39:10,888 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùStringùUML22ùdd' HYPERLINK String, UML22 +2024-09-07 12:39:10,899 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùPowerSystemResourceùUML166ùdd' HYPERLINK PowerSystemResource, UML166 +2024-09-07 12:39:10,912 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanùUML15ùdd' HYPERLINK Boolean, UML15 +2024-09-07 12:39:10,924 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùApparentPowerùUML14ùdd' HYPERLINK ApparentPower, UML14 +2024-09-07 12:39:10,937 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBaseVoltageùUML161ùdd' HYPERLINK BaseVoltage, UML161 +2024-09-07 12:39:10,949 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBasePowerùUML162ùdd' HYPERLINK BasePower, UML162 +2024-09-07 12:39:10,961 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanùUML15ùdd' HYPERLINK Boolean, UML15 +2024-09-07 12:39:10,974 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBayùUML170ùdd' HYPERLINK Bay, UML170 +2024-09-07 12:39:10,987 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanùUML15ùdd' HYPERLINK Boolean, UML15 +2024-09-07 12:39:10,999 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBayùUML170ùdd' HYPERLINK Bay, UML170 +2024-09-07 12:39:11,011 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBreakerConfigurationùUML28ùdd' HYPERLINK BreakerConfiguration, UML28 +2024-09-07 12:39:11,024 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBayùUML170ùdd' HYPERLINK Bay, UML170 +2024-09-07 12:39:11,037 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBusbarConfigurationùUML29ùdd' HYPERLINK BusbarConfiguration, UML29 +2024-09-07 12:39:11,049 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBayùUML170ùdd' HYPERLINK Bay, UML170 +2024-09-07 12:39:11,062 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanùUML15ùdd' HYPERLINK Boolean, UML15 +2024-09-07 12:39:11,074 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTerminalùUML159ùdd' HYPERLINK Terminal, UML159 +2024-09-07 12:39:11,087 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùVoltageùUML25ùdd' HYPERLINK Voltage, UML25 +2024-09-07 12:39:11,099 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùVoltageLevelùUML172ùdd' HYPERLINK VoltageLevel, UML172 +2024-09-07 12:39:11,112 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùVoltageùUML25ùdd' HYPERLINK Voltage, UML25 +2024-09-07 12:39:11,124 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùVoltageLevelùUML172ùdd' HYPERLINK VoltageLevel, UML172 +2024-09-07 12:39:11,137 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùStringùUML22ùdd' HYPERLINK String, UML22 +2024-09-07 12:39:11,148 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIdentifiedObjectùUML32ùdd' HYPERLINK IdentifiedObject, UML32 +2024-09-07 12:39:11,161 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùStringùUML22ùdd' HYPERLINK String, UML22 +2024-09-07 12:39:11,174 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIdentifiedObjectùUML32ùdd' HYPERLINK IdentifiedObject, UML32 +2024-09-07 12:39:11,188 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanùUML15ùdd' HYPERLINK Boolean, UML15 +2024-09-07 12:39:11,200 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEquipmentùUML173ùdd' HYPERLINK Equipment, UML173 +2024-09-07 12:39:11,213 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùPerCentùUML20ùdd' HYPERLINK PerCent, UML20 +2024-09-07 12:39:11,225 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùOperatingShareùUML30ùdd' HYPERLINK OperatingShare, UML30 +2024-09-07 12:39:11,240 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùPhaseCodeùUML31ùdd' HYPERLINK PhaseCode, UML31 +2024-09-07 12:39:11,253 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùConductingEquipmentùUML174ùdd' HYPERLINK ConductingEquipment, UML174 +2024-09-07 12:39:11,265 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML18ùdd' HYPERLINK Integer, UML18 +2024-09-07 12:39:11,277 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTerminalùUML159ùdd' HYPERLINK Terminal, UML159 +2024-09-07 12:39:11,289 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùYesNoùUML27ùdd' HYPERLINK YesNo, UML27 +2024-09-07 12:39:11,302 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBayùUML170ùdd' HYPERLINK Bay, UML170 +2024-09-07 12:39:11,315 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùENGùUML246ùdd' HYPERLINK ENG, UML246 +2024-09-07 12:39:11,327 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùENGùUML246ùdd' HYPERLINK ENG, UML246 +2024-09-07 12:39:11,340 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùPhaseAngleReferenceKindùUML119ùdd' HYPERLINK PhaseAngleReferenceKind, UML119 +2024-09-07 12:39:11,353 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùHWYEùUML252ùdd' HYPERLINK HWYE, UML252 +2024-09-07 12:39:11,365 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBOOLEANùUML83ùdd' HYPERLINK BOOLEAN, UML83 +2024-09-07 12:39:11,377 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSubstitutionCDCùUML228ùdd' HYPERLINK SubstitutionCDC, UML228 +2024-09-07 12:39:11,390 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùVISIBLE_STRING255ùUML89ùdd' HYPERLINK VISIBLE_STRING255, UML89 +2024-09-07 12:39:11,402 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBasePrimitiveCDCùUML217ùdd' HYPERLINK BasePrimitiveCDC, UML217 +2024-09-07 12:39:11,414 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBaseComposedCDCùUML250ùdd' HYPERLINK BaseComposedCDC, UML250 +2024-09-07 12:39:11,426 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEnumDAùUML340ùdd' HYPERLINK EnumDA, UML340 +2024-09-07 12:39:11,439 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBsControlKindùUML81ùdd' HYPERLINK BsControlKind, UML81 +2024-09-07 12:39:11,452 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùENCùUML238ùdd' HYPERLINK ENC, UML238 +2024-09-07 12:39:11,464 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBACùUML241ùdd' HYPERLINK BAC, UML241 +2024-09-07 12:39:11,476 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùUNICODE_STRING255ùUML88ùdd' HYPERLINK UNICODE_STRING255, UML88 +2024-09-07 12:39:11,488 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBasePrimitiveCDCùUML217ùdd' HYPERLINK BasePrimitiveCDC, UML217 +2024-09-07 12:39:11,500 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBaseComposedCDCùUML250ùdd' HYPERLINK BaseComposedCDC, UML250 +2024-09-07 12:39:11,513 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùACDùUML244ùdd' HYPERLINK ACD, UML244 +2024-09-07 12:39:11,526 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùINT16UùUML84ùdd' HYPERLINK INT16U, UML84 +2024-09-07 12:39:11,538 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùHarmonicMeasurandCDCùUML251ùdd' HYPERLINK HarmonicMeasurandCDC, UML251 +2024-09-07 12:39:11,550 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùINT32ùUML85ùdd' HYPERLINK INT32, UML85 +2024-09-07 12:39:11,562 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùHSTùUML245ùdd' HYPERLINK HST, UML245 +2024-09-07 12:39:11,575 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCMVùUML236ùdd' HYPERLINK CMV, UML236 +2024-09-07 12:39:11,587 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùVISIBLE_STRING255ùUML89ùdd' HYPERLINK VISIBLE_STRING255, UML89 +2024-09-07 12:39:11,599 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùLPLùUML248ùdd' HYPERLINK LPL, UML248 +2024-09-07 12:39:11,612 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùVISIBLE_STRING255ùUML89ùdd' HYPERLINK VISIBLE_STRING255, UML89 +2024-09-07 12:39:11,624 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùLPLùUML248ùdd' HYPERLINK LPL, UML248 +2024-09-07 12:39:11,637 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAnalogueValueùUML355ùdd' HYPERLINK AnalogueValue, UML355 +2024-09-07 12:39:11,649 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBACùUML241ùdd' HYPERLINK BAC, UML241 +2024-09-07 12:39:11,662 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùINT16UùUML84ùdd' HYPERLINK INT16U, UML84 +2024-09-07 12:39:11,674 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùHSTùUML245ùdd' HYPERLINK HST, UML245 +2024-09-07 12:39:11,686 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBOOLEANùUML83ùdd' HYPERLINK BOOLEAN, UML83 +2024-09-07 12:39:11,698 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùControllableCDCùUML237ùdd' HYPERLINK ControllableCDC, UML237 +2024-09-07 12:39:11,711 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBOOLEANùUML83ùdd' HYPERLINK BOOLEAN, UML83 +2024-09-07 12:39:11,722 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùACDùUML244ùdd' HYPERLINK ACD, UML244 +2024-09-07 12:39:11,735 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCMVùUML236ùdd' HYPERLINK CMV, UML236 +2024-09-07 12:39:11,747 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùHWYEùUML252ùdd' HYPERLINK HWYE, UML252 +2024-09-07 12:39:11,759 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBOOLEANùUML83ùdd' HYPERLINK BOOLEAN, UML83 +2024-09-07 12:39:11,774 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùACDùUML244ùdd' HYPERLINK ACD, UML244 +2024-09-07 12:39:11,787 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùQualityùUML339ùdd' HYPERLINK Quality, UML339 +2024-09-07 12:39:11,798 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDPSùUML229ùdd' HYPERLINK DPS, UML229 +2024-09-07 12:39:11,810 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùENSùUML230ùdd' HYPERLINK ENS, UML230 +2024-09-07 12:39:11,822 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEXYùUML242ùdd' HYPERLINK EXY, UML242 +2024-09-07 12:39:11,835 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùRangeConfigùUML356ùdd' HYPERLINK RangeConfig, UML356 +2024-09-07 12:39:11,846 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCMVùUML236ùdd' HYPERLINK CMV, UML236 +2024-09-07 12:39:11,860 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùRangeConfigùUML356ùdd' HYPERLINK RangeConfig, UML356 +2024-09-07 12:39:11,874 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCMVùUML236ùdd' HYPERLINK CMV, UML236 +2024-09-07 12:39:11,888 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùENGùUML246ùdd' HYPERLINK ENG, UML246 +2024-09-07 12:39:11,903 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùINT32UùUML86ùdd' HYPERLINK INT32U, UML86 +2024-09-07 12:39:11,916 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùHarmonicMeasurandCDCùUML251ùdd' HYPERLINK HarmonicMeasurandCDC, UML251 +2024-09-07 12:39:11,928 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDpStatusKindùUML82ùdd' HYPERLINK DpStatusKind, UML82 +2024-09-07 12:39:11,941 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEnumDAùUML340ùdd' HYPERLINK EnumDA, UML340 +2024-09-07 12:39:11,954 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEnumDAùUML340ùdd' HYPERLINK EnumDA, UML340 +2024-09-07 12:39:11,966 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEnumDAùUML340ùdd' HYPERLINK EnumDA, UML340 +2024-09-07 12:39:11,979 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDPSùUML229ùdd' HYPERLINK DPS, UML229 +2024-09-07 12:39:11,991 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùENSùUML230ùdd' HYPERLINK ENS, UML230 +2024-09-07 12:39:12,004 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùENCùUML238ùdd' HYPERLINK ENC, UML238 +2024-09-07 12:39:12,021 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEXYùUML242ùdd' HYPERLINK EXY, UML242 +2024-09-07 12:39:12,038 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCMVùUML236ùdd' HYPERLINK CMV, UML236 +2024-09-07 12:39:12,051 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBOOLEANùUML83ùdd' HYPERLINK BOOLEAN, UML83 +2024-09-07 12:39:12,064 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSubstitutionCDCùUML228ùdd' HYPERLINK SubstitutionCDC, UML228 +2024-09-07 12:39:12,076 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùQualityùUML339ùdd' HYPERLINK Quality, UML339 +2024-09-07 12:39:12,089 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSubstitutionCDCùUML228ùdd' HYPERLINK SubstitutionCDC, UML228 +2024-09-07 12:39:12,101 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDpStatusKindùUML82ùdd' HYPERLINK DpStatusKind, UML82 +2024-09-07 12:39:12,113 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEnumDAùUML340ùdd' HYPERLINK EnumDA, UML340 +2024-09-07 12:39:12,126 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEnumDAùUML340ùdd' HYPERLINK EnumDA, UML340 +2024-09-07 12:39:12,138 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDPSùUML229ùdd' HYPERLINK DPS, UML229 +2024-09-07 12:39:12,150 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùENSùUML230ùdd' HYPERLINK ENS, UML230 +2024-09-07 12:39:12,162 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùENCùUML238ùdd' HYPERLINK ENC, UML238 +2024-09-07 12:39:12,174 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBACùUML241ùdd' HYPERLINK BAC, UML241 +2024-09-07 12:39:12,189 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimeStampùUML93ùdd' HYPERLINK TimeStamp, UML93 +2024-09-07 12:39:12,203 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDPSùUML229ùdd' HYPERLINK DPS, UML229 +2024-09-07 12:39:12,214 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùENSùUML230ùdd' HYPERLINK ENS, UML230 +2024-09-07 12:39:12,226 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEXYùUML242ùdd' HYPERLINK EXY, UML242 +2024-09-07 12:39:12,241 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùHWYEùUML252ùdd' HYPERLINK HWYE, UML252 +2024-09-07 12:39:12,254 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMXUùUML204ùdd' HYPERLINK MMXU, UML204 +2024-09-07 12:39:12,267 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùZAXNùUML206ùdd' HYPERLINK ZAXN, UML206 +2024-09-07 12:39:12,278 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCMVùUML236ùdd' HYPERLINK CMV, UML236 +2024-09-07 12:39:12,291 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGGIOùUML203ùdd' HYPERLINK GGIO, UML203 +2024-09-07 12:39:12,304 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùENSùUML230ùdd' HYPERLINK ENS, UML230 +2024-09-07 12:39:12,317 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBehaviourModeKindùUML139ùdd' HYPERLINK BehaviourModeKind, UML139 +2024-09-07 12:39:12,329 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùLLN0ùUML199ùdd' HYPERLINK LLN0, UML199 +2024-09-07 12:39:12,341 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSPSTransientùUML143ùdd' HYPERLINK SPSTransient, UML143 +2024-09-07 12:39:12,353 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùStatisticsLNùUML202ùdd' HYPERLINK StatisticsLN, UML202 +2024-09-07 12:39:12,367 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùENGùUML246ùdd' HYPERLINK ENG, UML246 +2024-09-07 12:39:12,379 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCalcMethodKindùUML140ùdd' HYPERLINK CalcMethodKind, UML140 +2024-09-07 12:39:12,392 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùStatisticsLNùUML202ùdd' HYPERLINK StatisticsLN, UML202 +2024-09-07 12:39:12,404 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCMVùUML236ùdd' HYPERLINK CMV, UML236 +2024-09-07 12:39:12,417 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDomainLNùUML201ùdd' HYPERLINK DomainLN, UML201 +2024-09-07 12:39:12,429 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùENSùUML230ùdd' HYPERLINK ENS, UML230 +2024-09-07 12:39:12,442 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEnumDAùUML340ùdd' HYPERLINK EnumDA, UML340 +2024-09-07 12:39:12,454 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùKXYZùUML207ùdd' HYPERLINK KXYZ, UML207 +2024-09-07 12:39:12,467 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGGIOùUML203ùdd' HYPERLINK GGIO, UML203 +2024-09-07 12:39:12,479 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùHSTùUML245ùdd' HYPERLINK HST, UML245 +2024-09-07 12:39:12,491 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMXUùUML204ùdd' HYPERLINK MMXU, UML204 +2024-09-07 12:39:12,504 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùACDùUML244ùdd' HYPERLINK ACD, UML244 +2024-09-07 12:39:12,516 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùRDIRùUML214ùdd' HYPERLINK RDIR, UML214 +2024-09-07 12:39:12,529 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùENSùUML230ùdd' HYPERLINK ENS, UML230 +2024-09-07 12:39:12,541 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùHealthKindùUML138ùdd' HYPERLINK HealthKind, UML138 +2024-09-07 12:39:12,554 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGGIOùUML203ùdd' HYPERLINK GGIO, UML203 +2024-09-07 12:39:12,567 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùENSùUML230ùdd' HYPERLINK ENS, UML230 +2024-09-07 12:39:12,578 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùHealthKindùUML138ùdd' HYPERLINK HealthKind, UML138 +2024-09-07 12:39:12,590 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEquipmentInterfaceLNùUML205ùdd' HYPERLINK EquipmentInterfaceLN, UML205 +2024-09-07 12:39:12,603 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDPSùUML229ùdd' HYPERLINK DPS, UML229 +2024-09-07 12:39:12,615 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCALHùUML208ùdd' HYPERLINK CALH, UML208 +2024-09-07 12:39:12,627 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDPSùUML229ùdd' HYPERLINK DPS, UML229 +2024-09-07 12:39:12,640 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCALHùUML208ùdd' HYPERLINK CALH, UML208 +2024-09-07 12:39:12,653 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùENSùUML230ùdd' HYPERLINK ENS, UML230 +2024-09-07 12:39:12,665 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùHealthKindùUML138ùdd' HYPERLINK HealthKind, UML138 +2024-09-07 12:39:12,677 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùLLN0ùUML199ùdd' HYPERLINK LLN0, UML199 +2024-09-07 12:39:12,689 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDomainLNùUML201ùdd' HYPERLINK DomainLN, UML201 +2024-09-07 12:39:12,702 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùENSùUML230ùdd' HYPERLINK ENS, UML230 +2024-09-07 12:39:12,715 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMaterialKindùUML146ùdd' HYPERLINK MaterialKind, UML146 +2024-09-07 12:39:12,728 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùZAXNùUML206ùdd' HYPERLINK ZAXN, UML206 +2024-09-07 12:39:12,740 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùENCùUML238ùdd' HYPERLINK ENC, UML238 +2024-09-07 12:39:12,753 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMaterialKindùUML146ùdd' HYPERLINK MaterialKind, UML146 +2024-09-07 12:39:12,766 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMaterialTransitionKindùUML147ùdd' HYPERLINK MaterialTransitionKind, UML147 +2024-09-07 12:39:12,779 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùZAXNùUML206ùdd' HYPERLINK ZAXN, UML206 +2024-09-07 12:39:12,792 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùENCùUML238ùdd' HYPERLINK ENC, UML238 +2024-09-07 12:39:12,807 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBehaviourModeKindùUML139ùdd' HYPERLINK BehaviourModeKind, UML139 +2024-09-07 12:39:12,820 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDomainLNùUML201ùdd' HYPERLINK DomainLN, UML201 +2024-09-07 12:39:12,834 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEXYBehaviourModeùUML243ùdd' HYPERLINK EXYBehaviourMode, UML243 +2024-09-07 12:39:12,846 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCALHùUML208ùdd' HYPERLINK CALH, UML208 +2024-09-07 12:39:12,859 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùLPLùUML248ùdd' HYPERLINK LPL, UML248 +2024-09-07 12:39:12,872 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùLLN0ùUML199ùdd' HYPERLINK LLN0, UML199 +2024-09-07 12:39:12,885 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDomainLNùUML201ùdd' HYPERLINK DomainLN, UML201 +2024-09-07 12:39:12,898 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùACTTransientùUML142ùdd' HYPERLINK ACTTransient, UML142 +2024-09-07 12:39:12,911 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùPDIFùUML210ùdd' HYPERLINK PDIF, UML210 +2024-09-07 12:39:12,924 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùPDISùUML211ùdd' HYPERLINK PDIS, UML211 +2024-09-07 12:39:12,938 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùProtectionLNùUML209ùdd' HYPERLINK ProtectionLN, UML209 +2024-09-07 12:39:12,954 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùENSùUML230ùdd' HYPERLINK ENS, UML230 +2024-09-07 12:39:12,969 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùOtherùUML353ùdd' HYPERLINK Other, UML353 +2024-09-07 12:39:12,982 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùZAXNùUML206ùdd' HYPERLINK ZAXN, UML206 +2024-09-07 12:39:12,994 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùENSùUML230ùdd' HYPERLINK ENS, UML230 +2024-09-07 12:39:13,006 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùHealthKindùUML138ùdd' HYPERLINK HealthKind, UML138 +2024-09-07 12:39:13,018 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùLPHDùUML197ùdd' HYPERLINK LPHD, UML197 +2024-09-07 12:39:13,031 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSPCTransientùUML381ùdd' HYPERLINK SPCTransient, UML381 +2024-09-07 12:39:13,043 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùLPHDùUML197ùdd' HYPERLINK LPHD, UML197 +2024-09-07 12:39:13,056 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSPSTransientùUML143ùdd' HYPERLINK SPSTransient, UML143 +2024-09-07 12:39:13,068 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùLPHDùUML197ùdd' HYPERLINK LPHD, UML197 +2024-09-07 12:39:13,080 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùACDùUML244ùdd' HYPERLINK ACD, UML244 +2024-09-07 12:39:13,092 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùPDIFùUML210ùdd' HYPERLINK PDIF, UML210 +2024-09-07 12:39:13,104 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùPDISùUML211ùdd' HYPERLINK PDIS, UML211 +2024-09-07 12:39:13,117 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCMVùUML236ùdd' HYPERLINK CMV, UML236 +2024-09-07 12:39:13,130 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCMVùUML236ùdd' HYPERLINK CMV, UML236 +2024-09-07 12:39:13,142 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSPSTransientùUML143ùdd' HYPERLINK SPSTransient, UML143 +2024-09-07 12:39:13,154 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMXUùUML204ùdd' HYPERLINK MMXU, UML204 +2024-09-07 12:39:13,167 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùKXYZùUML207ùdd' HYPERLINK KXYZ, UML207 +2024-09-07 12:39:13,178 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùRDIRùUML214ùdd' HYPERLINK RDIR, UML214 +2024-09-07 12:39:13,193 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCMVùUML236ùdd' HYPERLINK CMV, UML236 +2024-09-07 12:39:13,208 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùZAXNùUML206ùdd' HYPERLINK ZAXN, UML206 +2024-09-07 12:39:13,223 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSubstitutionCDCùUML228ùdd' HYPERLINK SubstitutionCDC, UML228 +2024-09-07 12:39:13,236 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùENSùUML230ùdd' HYPERLINK ENS, UML230 +2024-09-07 12:39:13,250 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùKXYZùUML207ùdd' HYPERLINK KXYZ, UML207 +2024-09-07 12:39:13,263 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCMVùUML236ùdd' HYPERLINK CMV, UML236 +2024-09-07 12:39:13,277 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùKXYZùUML207ùdd' HYPERLINK KXYZ, UML207 +2024-09-07 12:39:13,289 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIdentifiedObjectùUML32ùdd' HYPERLINK IdentifiedObject, UML32 +2024-09-07 12:39:13,303 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùApparentPowerùUML14ùdd' HYPERLINK ApparentPower, UML14 +2024-09-07 12:39:13,320 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùStringùUML22ùdd' HYPERLINK String, UML22 +2024-09-07 12:39:13,332 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIdentifiedObjectùUML32ùdd' HYPERLINK IdentifiedObject, UML32 +2024-09-07 12:39:13,343 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùStringùUML22ùdd' HYPERLINK String, UML22 +2024-09-07 12:39:13,355 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIdentifiedObjectùUML32ùdd' HYPERLINK IdentifiedObject, UML32 +2024-09-07 12:39:13,370 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùStringùUML22ùdd' HYPERLINK String, UML22 +2024-09-07 12:39:13,382 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIdentifiedObjectùUML32ùdd' HYPERLINK IdentifiedObject, UML32 +2024-09-07 12:39:13,393 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSubstitutionCDCùUML228ùdd' HYPERLINK SubstitutionCDC, UML228 +2024-09-07 12:39:13,405 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBasePrimitiveCDCùUML217ùdd' HYPERLINK BasePrimitiveCDC, UML217 +2024-09-07 12:39:13,418 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùPrimitiveCDCùUML216ùdd' HYPERLINK PrimitiveCDC, UML216 +2024-09-07 12:39:13,430 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCDCùUML215ùdd' HYPERLINK CDC, UML215 +2024-09-07 12:39:13,442 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùNamedIEC61850ObjectùUML193ùdd' HYPERLINK NamedIEC61850Object, UML193 +2024-09-07 12:39:13,453 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùHierarchyIEC61850ObjectùUML192ùdd' HYPERLINK HierarchyIEC61850Object, UML192 +2024-09-07 12:39:13,468 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC61850ObjectùUML110ùdd' HYPERLINK IEC61850Object, UML110 +2024-09-07 12:39:13,481 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDpStatusKindùUML82ùdd' HYPERLINK DpStatusKind, UML82 +2024-09-07 12:39:13,493 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùQualityùUML339ùdd' HYPERLINK Quality, UML339 +2024-09-07 12:39:13,507 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimeStampùUML93ùdd' HYPERLINK TimeStamp, UML93 +2024-09-07 12:39:13,520 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDpStatusKindùUML82ùdd' HYPERLINK DpStatusKind, UML82 +2024-09-07 12:39:13,532 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMFsubstùUML558ùdd' HYPERLINK MFsubst, UML558 +2024-09-07 12:39:13,545 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBOOLEANùUML83ùdd' HYPERLINK BOOLEAN, UML83 +2024-09-07 12:39:13,558 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSubstitutionCDCùUML228ùdd' HYPERLINK SubstitutionCDC, UML228 +2024-09-07 12:39:13,570 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMFsubstùUML558ùdd' HYPERLINK MFsubst, UML558 +2024-09-07 12:39:13,583 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùQualityùUML339ùdd' HYPERLINK Quality, UML339 +2024-09-07 12:39:13,595 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSubstitutionCDCùUML228ùdd' HYPERLINK SubstitutionCDC, UML228 +2024-09-07 12:39:13,608 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMFsubstùUML558ùdd' HYPERLINK MFsubst, UML558 +2024-09-07 12:39:13,620 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBOOLEANùUML83ùdd' HYPERLINK BOOLEAN, UML83 +2024-09-07 12:39:13,634 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSubstitutionCDCùUML228ùdd' HYPERLINK SubstitutionCDC, UML228 +2024-09-07 12:39:13,647 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùUNICODE_STRING255ùUML88ùdd' HYPERLINK UNICODE_STRING255, UML88 +2024-09-07 12:39:13,659 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBasePrimitiveCDCùUML217ùdd' HYPERLINK BasePrimitiveCDC, UML217 +2024-09-07 12:39:13,671 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùVISIBLE_STRING255ùUML89ùdd' HYPERLINK VISIBLE_STRING255, UML89 +2024-09-07 12:39:13,683 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBasePrimitiveCDCùUML217ùdd' HYPERLINK BasePrimitiveCDC, UML217 +2024-09-07 12:39:13,696 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMOcdcNsùUML568ùdd' HYPERLINK MOcdcNs, UML568 +2024-09-07 12:39:13,708 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùComposedDAùUML354ùdd' HYPERLINK ComposedDA, UML354 +2024-09-07 12:39:13,720 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDAùUML325ùdd' HYPERLINK DA, UML325 +2024-09-07 12:39:13,732 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùNamedIEC61850ObjectùUML193ùdd' HYPERLINK NamedIEC61850Object, UML193 +2024-09-07 12:39:13,742 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùHierarchyIEC61850ObjectùUML192ùdd' HYPERLINK HierarchyIEC61850Object, UML192 +2024-09-07 12:39:13,755 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC61850ObjectùUML110ùdd' HYPERLINK IEC61850Object, UML110 +2024-09-07 12:39:13,767 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBasePrimitiveCDCùUML217ùdd' HYPERLINK BasePrimitiveCDC, UML217 +2024-09-07 12:39:13,779 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùPrimitiveCDCùUML216ùdd' HYPERLINK PrimitiveCDC, UML216 +2024-09-07 12:39:13,790 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCDCùUML215ùdd' HYPERLINK CDC, UML215 +2024-09-07 12:39:13,802 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùNamedIEC61850ObjectùUML193ùdd' HYPERLINK NamedIEC61850Object, UML193 +2024-09-07 12:39:13,818 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùHierarchyIEC61850ObjectùUML192ùdd' HYPERLINK HierarchyIEC61850Object, UML192 +2024-09-07 12:39:13,830 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC61850ObjectùUML110ùdd' HYPERLINK IEC61850Object, UML110 +2024-09-07 12:39:13,841 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùPowerSystemResourceùUML166ùdd' HYPERLINK PowerSystemResource, UML166 +2024-09-07 12:39:13,853 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIdentifiedObjectùUML32ùdd' HYPERLINK IdentifiedObject, UML32 +2024-09-07 12:39:13,868 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùStringùUML22ùdd' HYPERLINK String, UML22 +2024-09-07 12:39:13,880 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùPowerSystemResourceùUML166ùdd' HYPERLINK PowerSystemResource, UML166 +2024-09-07 12:39:13,892 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùStringùUML22ùdd' HYPERLINK String, UML22 +2024-09-07 12:39:13,904 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIdentifiedObjectùUML32ùdd' HYPERLINK IdentifiedObject, UML32 +2024-09-07 12:39:13,917 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùStringùUML22ùdd' HYPERLINK String, UML22 +2024-09-07 12:39:13,930 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIdentifiedObjectùUML32ùdd' HYPERLINK IdentifiedObject, UML32 +2024-09-07 12:39:13,942 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùStringùUML22ùdd' HYPERLINK String, UML22 +2024-09-07 12:39:13,954 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIdentifiedObjectùUML32ùdd' HYPERLINK IdentifiedObject, UML32 +2024-09-07 12:39:13,958 [main] INFO AbstractWordWriter - 247 hyperlink placeholders found. +2024-09-07 12:39:13,958 [main] INFO Util - time=[0:00:03.200] scanned hyperlink placeholders. +2024-09-07 12:39:13,958 [main] INFO Util - +2024-09-07 12:39:13,958 [main] INFO Util - +2024-09-07 12:39:13,959 [main] INFO Util - ------------------------------------------------ +2024-09-07 12:39:13,959 [main] INFO Util - inserting 247 hyperlinks (or text only) into hyperlink placeholders +2024-09-07 12:39:13,970 [main] TRACE AbstractWordWriter - replacing hyperlink [7240 - 7257] HYPERLINK YesNo, UML27... +2024-09-07 12:39:13,975 [main] TRACE AbstractWordWriter - No hyperlink added: 'YesNo' for bookmark 'UML27' not in this document. +2024-09-07 12:39:13,989 [main] TRACE AbstractWordWriter - replacing hyperlink [7247 - 7263] HYPERLINK Bay, UML170... +2024-09-07 12:39:13,994 [main] TRACE AbstractWordWriter - No hyperlink added: 'Bay' for bookmark 'UML170' not in this document. +2024-09-07 12:39:13,998 [main] TRACE AbstractWordWriter - replacing hyperlink [7318 - 7336] HYPERLINK String, UML22... +2024-09-07 12:39:14,003 [main] TRACE AbstractWordWriter - No hyperlink added: 'String' for bookmark 'UML22' not in this document. +2024-09-07 12:39:14,007 [main] TRACE AbstractWordWriter - replacing hyperlink [7326 - 7354] HYPERLINK IdentifiedObject, UML32... +2024-09-07 12:39:14,012 [main] TRACE AbstractWordWriter - No hyperlink added: 'IdentifiedObject' for bookmark 'UML32' not in this document. +2024-09-07 12:39:14,016 [main] TRACE AbstractWordWriter - replacing hyperlink [7731 - 7749] HYPERLINK String, UML22... +2024-09-07 12:39:14,021 [main] TRACE AbstractWordWriter - No hyperlink added: 'String' for bookmark 'UML22' not in this document. +2024-09-07 12:39:14,024 [main] TRACE AbstractWordWriter - replacing hyperlink [7739 - 7771] HYPERLINK PowerSystemResource, UML166... +2024-09-07 12:39:14,030 [main] TRACE AbstractWordWriter - No hyperlink added: 'PowerSystemResource' for bookmark 'UML166' not in this document. +2024-09-07 12:39:14,033 [main] TRACE AbstractWordWriter - replacing hyperlink [7868 - 7887] HYPERLINK Boolean, UML15... +2024-09-07 12:39:14,038 [main] TRACE AbstractWordWriter - No hyperlink added: 'Boolean' for bookmark 'UML15' not in this document. +2024-09-07 12:39:14,042 [main] TRACE AbstractWordWriter - replacing hyperlink [7877 - 7902] HYPERLINK ApparentPower, UML14... +2024-09-07 12:39:14,047 [main] TRACE AbstractWordWriter - No hyperlink added: 'ApparentPower' for bookmark 'UML14' not in this document. +2024-09-07 12:39:14,050 [main] TRACE AbstractWordWriter - replacing hyperlink [7892 - 7916] HYPERLINK BaseVoltage, UML161... +2024-09-07 12:39:14,055 [main] TRACE AbstractWordWriter - No hyperlink added: 'BaseVoltage' for bookmark 'UML161' not in this document. +2024-09-07 12:39:14,058 [main] TRACE AbstractWordWriter - replacing hyperlink [8046 - 8068] HYPERLINK BasePower, UML162... +2024-09-07 12:39:14,082 [main] TRACE AbstractWordWriter - replacing hyperlink [8142 - 8161] HYPERLINK Boolean, UML15... +2024-09-07 12:39:14,087 [main] TRACE AbstractWordWriter - No hyperlink added: 'Boolean' for bookmark 'UML15' not in this document. +2024-09-07 12:39:14,090 [main] TRACE AbstractWordWriter - replacing hyperlink [8151 - 8167] HYPERLINK Bay, UML170... +2024-09-07 12:39:14,095 [main] TRACE AbstractWordWriter - No hyperlink added: 'Bay' for bookmark 'UML170' not in this document. +2024-09-07 12:39:14,098 [main] TRACE AbstractWordWriter - replacing hyperlink [8229 - 8248] HYPERLINK Boolean, UML15... +2024-09-07 12:39:14,103 [main] TRACE AbstractWordWriter - No hyperlink added: 'Boolean' for bookmark 'UML15' not in this document. +2024-09-07 12:39:14,106 [main] TRACE AbstractWordWriter - replacing hyperlink [8238 - 8254] HYPERLINK Bay, UML170... +2024-09-07 12:39:14,111 [main] TRACE AbstractWordWriter - No hyperlink added: 'Bay' for bookmark 'UML170' not in this document. +2024-09-07 12:39:14,114 [main] TRACE AbstractWordWriter - replacing hyperlink [8335 - 8367] HYPERLINK BreakerConfiguration, UML28... +2024-09-07 12:39:14,119 [main] TRACE AbstractWordWriter - No hyperlink added: 'BreakerConfiguration' for bookmark 'UML28' not in this document. +2024-09-07 12:39:14,122 [main] TRACE AbstractWordWriter - replacing hyperlink [8357 - 8373] HYPERLINK Bay, UML170... +2024-09-07 12:39:14,127 [main] TRACE AbstractWordWriter - No hyperlink added: 'Bay' for bookmark 'UML170' not in this document. +2024-09-07 12:39:14,130 [main] TRACE AbstractWordWriter - replacing hyperlink [8406 - 8437] HYPERLINK BusbarConfiguration, UML29... +2024-09-07 12:39:14,135 [main] TRACE AbstractWordWriter - No hyperlink added: 'BusbarConfiguration' for bookmark 'UML29' not in this document. +2024-09-07 12:39:14,138 [main] TRACE AbstractWordWriter - replacing hyperlink [8427 - 8443] HYPERLINK Bay, UML170... +2024-09-07 12:39:14,143 [main] TRACE AbstractWordWriter - No hyperlink added: 'Bay' for bookmark 'UML170' not in this document. +2024-09-07 12:39:14,147 [main] TRACE AbstractWordWriter - replacing hyperlink [8466 - 8485] HYPERLINK Boolean, UML15... +2024-09-07 12:39:14,152 [main] TRACE AbstractWordWriter - No hyperlink added: 'Boolean' for bookmark 'UML15' not in this document. +2024-09-07 12:39:14,155 [main] TRACE AbstractWordWriter - replacing hyperlink [8475 - 8496] HYPERLINK Terminal, UML159... +2024-09-07 12:39:14,160 [main] TRACE AbstractWordWriter - No hyperlink added: 'Terminal' for bookmark 'UML159' not in this document. +2024-09-07 12:39:14,163 [main] TRACE AbstractWordWriter - replacing hyperlink [9002 - 9021] HYPERLINK Voltage, UML25... +2024-09-07 12:39:14,168 [main] TRACE AbstractWordWriter - No hyperlink added: 'Voltage' for bookmark 'UML25' not in this document. +2024-09-07 12:39:14,171 [main] TRACE AbstractWordWriter - replacing hyperlink [9011 - 9036] HYPERLINK VoltageLevel, UML172... +2024-09-07 12:39:14,176 [main] TRACE AbstractWordWriter - No hyperlink added: 'VoltageLevel' for bookmark 'UML172' not in this document. +2024-09-07 12:39:14,179 [main] TRACE AbstractWordWriter - replacing hyperlink [9075 - 9094] HYPERLINK Voltage, UML25... +2024-09-07 12:39:14,184 [main] TRACE AbstractWordWriter - No hyperlink added: 'Voltage' for bookmark 'UML25' not in this document. +2024-09-07 12:39:14,188 [main] TRACE AbstractWordWriter - replacing hyperlink [9084 - 9109] HYPERLINK VoltageLevel, UML172... +2024-09-07 12:39:14,193 [main] TRACE AbstractWordWriter - No hyperlink added: 'VoltageLevel' for bookmark 'UML172' not in this document. +2024-09-07 12:39:14,196 [main] TRACE AbstractWordWriter - replacing hyperlink [9136 - 9154] HYPERLINK String, UML22... +2024-09-07 12:39:14,201 [main] TRACE AbstractWordWriter - No hyperlink added: 'String' for bookmark 'UML22' not in this document. +2024-09-07 12:39:14,204 [main] TRACE AbstractWordWriter - replacing hyperlink [9144 - 9172] HYPERLINK IdentifiedObject, UML32... +2024-09-07 12:39:14,209 [main] TRACE AbstractWordWriter - No hyperlink added: 'IdentifiedObject' for bookmark 'UML32' not in this document. +2024-09-07 12:39:14,214 [main] TRACE AbstractWordWriter - replacing hyperlink [9441 - 9459] HYPERLINK String, UML22... +2024-09-07 12:39:14,219 [main] TRACE AbstractWordWriter - No hyperlink added: 'String' for bookmark 'UML22' not in this document. +2024-09-07 12:39:14,221 [main] TRACE AbstractWordWriter - replacing hyperlink [9449 - 9477] HYPERLINK IdentifiedObject, UML32... +2024-09-07 12:39:14,227 [main] TRACE AbstractWordWriter - No hyperlink added: 'IdentifiedObject' for bookmark 'UML32' not in this document. +2024-09-07 12:39:14,230 [main] TRACE AbstractWordWriter - replacing hyperlink [9570 - 9589] HYPERLINK Boolean, UML15... +2024-09-07 12:39:14,235 [main] TRACE AbstractWordWriter - No hyperlink added: 'Boolean' for bookmark 'UML15' not in this document. +2024-09-07 12:39:14,239 [main] TRACE AbstractWordWriter - replacing hyperlink [9579 - 9601] HYPERLINK Equipment, UML173... +2024-09-07 12:39:14,244 [main] TRACE AbstractWordWriter - No hyperlink added: 'Equipment' for bookmark 'UML173' not in this document. +2024-09-07 12:39:14,247 [main] TRACE AbstractWordWriter - replacing hyperlink [9662 - 9681] HYPERLINK PerCent, UML20... +2024-09-07 12:39:14,253 [main] TRACE AbstractWordWriter - No hyperlink added: 'PerCent' for bookmark 'UML20' not in this document. +2024-09-07 12:39:14,256 [main] TRACE AbstractWordWriter - replacing hyperlink [9671 - 9697] HYPERLINK OperatingShare, UML30... +2024-09-07 12:39:14,261 [main] TRACE AbstractWordWriter - No hyperlink added: 'OperatingShare' for bookmark 'UML30' not in this document. +2024-09-07 12:39:14,264 [main] TRACE AbstractWordWriter - replacing hyperlink [9908 - 9929] HYPERLINK PhaseCode, UML31... +2024-09-07 12:39:14,270 [main] TRACE AbstractWordWriter - No hyperlink added: 'PhaseCode' for bookmark 'UML31' not in this document. +2024-09-07 12:39:14,273 [main] TRACE AbstractWordWriter - replacing hyperlink [9919 - 9951] HYPERLINK ConductingEquipment, UML174... +2024-09-07 12:39:14,278 [main] TRACE AbstractWordWriter - No hyperlink added: 'ConductingEquipment' for bookmark 'UML174' not in this document. +2024-09-07 12:39:14,281 [main] TRACE AbstractWordWriter - replacing hyperlink [10055 - 10074] HYPERLINK Integer, UML18... +2024-09-07 12:39:14,286 [main] TRACE AbstractWordWriter - No hyperlink added: 'Integer' for bookmark 'UML18' not in this document. +2024-09-07 12:39:14,289 [main] TRACE AbstractWordWriter - replacing hyperlink [10064 - 10085] HYPERLINK Terminal, UML159... +2024-09-07 12:39:14,294 [main] TRACE AbstractWordWriter - No hyperlink added: 'Terminal' for bookmark 'UML159' not in this document. +2024-09-07 12:39:14,297 [main] TRACE AbstractWordWriter - replacing hyperlink [10447 - 10464] HYPERLINK YesNo, UML27... +2024-09-07 12:39:14,302 [main] TRACE AbstractWordWriter - No hyperlink added: 'YesNo' for bookmark 'UML27' not in this document. +2024-09-07 12:39:14,305 [main] TRACE AbstractWordWriter - replacing hyperlink [10454 - 10470] HYPERLINK Bay, UML170... +2024-09-07 12:39:14,310 [main] TRACE AbstractWordWriter - No hyperlink added: 'Bay' for bookmark 'UML170' not in this document. +2024-09-07 12:39:14,313 [main] TRACE AbstractWordWriter - replacing hyperlink [17356 - 17372] HYPERLINK ENG, UML246... +2024-09-07 12:39:14,319 [main] TRACE AbstractWordWriter - No hyperlink added: 'ENG' for bookmark 'UML246' not in this document. +2024-09-07 12:39:14,322 [main] TRACE AbstractWordWriter - replacing hyperlink [17398 - 17414] HYPERLINK ENG, UML246... +2024-09-07 12:39:14,327 [main] TRACE AbstractWordWriter - No hyperlink added: 'ENG' for bookmark 'UML246' not in this document. +2024-09-07 12:39:14,330 [main] TRACE AbstractWordWriter - replacing hyperlink [17425 - 17461] HYPERLINK PhaseAngleReferenceKind, UML119... +2024-09-07 12:39:14,335 [main] TRACE AbstractWordWriter - No hyperlink added: 'PhaseAngleReferenceKind' for bookmark 'UML119' not in this document. +2024-09-07 12:39:14,338 [main] TRACE AbstractWordWriter - replacing hyperlink [17450 - 17467] HYPERLINK HWYE, UML252... +2024-09-07 12:39:14,343 [main] TRACE AbstractWordWriter - No hyperlink added: 'HWYE' for bookmark 'UML252' not in this document. +2024-09-07 12:39:14,346 [main] TRACE AbstractWordWriter - replacing hyperlink [17759 - 17778] HYPERLINK BOOLEAN, UML83... +2024-09-07 12:39:14,351 [main] TRACE AbstractWordWriter - No hyperlink added: 'BOOLEAN' for bookmark 'UML83' not in this document. +2024-09-07 12:39:14,354 [main] TRACE AbstractWordWriter - replacing hyperlink [17768 - 17796] HYPERLINK SubstitutionCDC, UML228... +2024-09-07 12:39:14,358 [main] TRACE AbstractWordWriter - No hyperlink added: 'SubstitutionCDC' for bookmark 'UML228' not in this document. +2024-09-07 12:39:14,362 [main] TRACE AbstractWordWriter - replacing hyperlink [17871 - 17900] HYPERLINK VISIBLE_STRING255, UML89... +2024-09-07 12:39:14,368 [main] TRACE AbstractWordWriter - No hyperlink added: 'VISIBLE_STRING255' for bookmark 'UML89' not in this document. +2024-09-07 12:39:14,371 [main] TRACE AbstractWordWriter - replacing hyperlink [17890 - 17919] HYPERLINK BasePrimitiveCDC, UML217... +2024-09-07 12:39:14,376 [main] TRACE AbstractWordWriter - No hyperlink added: 'BasePrimitiveCDC' for bookmark 'UML217' not in this document. +2024-09-07 12:39:14,379 [main] TRACE AbstractWordWriter - replacing hyperlink [18040 - 18068] HYPERLINK BaseComposedCDC, UML250... +2024-09-07 12:39:14,384 [main] TRACE AbstractWordWriter - No hyperlink added: 'BaseComposedCDC' for bookmark 'UML250' not in this document. +2024-09-07 12:39:14,387 [main] TRACE AbstractWordWriter - replacing hyperlink [18095 - 18114] HYPERLINK EnumDA, UML340... +2024-09-07 12:39:14,392 [main] TRACE AbstractWordWriter - No hyperlink added: 'EnumDA' for bookmark 'UML340' not in this document. +2024-09-07 12:39:14,395 [main] TRACE AbstractWordWriter - replacing hyperlink [18103 - 18128] HYPERLINK BsControlKind, UML81... +2024-09-07 12:39:14,400 [main] TRACE AbstractWordWriter - No hyperlink added: 'BsControlKind' for bookmark 'UML81' not in this document. +2024-09-07 12:39:14,403 [main] TRACE AbstractWordWriter - replacing hyperlink [18118 - 18134] HYPERLINK ENC, UML238... +2024-09-07 12:39:14,408 [main] TRACE AbstractWordWriter - No hyperlink added: 'ENC' for bookmark 'UML238' not in this document. +2024-09-07 12:39:14,411 [main] TRACE AbstractWordWriter - replacing hyperlink [18218 - 18234] HYPERLINK BAC, UML241... +2024-09-07 12:39:14,416 [main] TRACE AbstractWordWriter - No hyperlink added: 'BAC' for bookmark 'UML241' not in this document. +2024-09-07 12:39:14,420 [main] TRACE AbstractWordWriter - replacing hyperlink [18406 - 18435] HYPERLINK UNICODE_STRING255, UML88... +2024-09-07 12:39:14,425 [main] TRACE AbstractWordWriter - No hyperlink added: 'UNICODE_STRING255' for bookmark 'UML88' not in this document. +2024-09-07 12:39:14,429 [main] TRACE AbstractWordWriter - replacing hyperlink [18425 - 18454] HYPERLINK BasePrimitiveCDC, UML217... +2024-09-07 12:39:14,434 [main] TRACE AbstractWordWriter - No hyperlink added: 'BasePrimitiveCDC' for bookmark 'UML217' not in this document. +2024-09-07 12:39:14,437 [main] TRACE AbstractWordWriter - replacing hyperlink [18562 - 18590] HYPERLINK BaseComposedCDC, UML250... +2024-09-07 12:39:14,441 [main] TRACE AbstractWordWriter - No hyperlink added: 'BaseComposedCDC' for bookmark 'UML250' not in this document. +2024-09-07 12:39:14,445 [main] TRACE AbstractWordWriter - replacing hyperlink [18632 - 18648] HYPERLINK ACD, UML244... +2024-09-07 12:39:14,450 [main] TRACE AbstractWordWriter - No hyperlink added: 'ACD' for bookmark 'UML244' not in this document. +2024-09-07 12:39:14,453 [main] TRACE AbstractWordWriter - replacing hyperlink [18791 - 18809] HYPERLINK INT16U, UML84... +2024-09-07 12:39:14,457 [main] TRACE AbstractWordWriter - No hyperlink added: 'INT16U' for bookmark 'UML84' not in this document. +2024-09-07 12:39:14,461 [main] TRACE AbstractWordWriter - replacing hyperlink [18799 - 18832] HYPERLINK HarmonicMeasurandCDC, UML251... +2024-09-07 12:39:14,466 [main] TRACE AbstractWordWriter - No hyperlink added: 'HarmonicMeasurandCDC' for bookmark 'UML251' not in this document. +2024-09-07 12:39:14,469 [main] TRACE AbstractWordWriter - replacing hyperlink [18899 - 18916] HYPERLINK INT32, UML85... +2024-09-07 12:39:14,474 [main] TRACE AbstractWordWriter - No hyperlink added: 'INT32' for bookmark 'UML85' not in this document. +2024-09-07 12:39:14,477 [main] TRACE AbstractWordWriter - replacing hyperlink [18906 - 18922] HYPERLINK HST, UML245... +2024-09-07 12:39:14,500 [main] TRACE AbstractWordWriter - replacing hyperlink [19017 - 19033] HYPERLINK CMV, UML236... +2024-09-07 12:39:14,505 [main] TRACE AbstractWordWriter - No hyperlink added: 'CMV' for bookmark 'UML236' not in this document. +2024-09-07 12:39:14,508 [main] TRACE AbstractWordWriter - replacing hyperlink [19092 - 19121] HYPERLINK VISIBLE_STRING255, UML89... +2024-09-07 12:39:14,513 [main] TRACE AbstractWordWriter - No hyperlink added: 'VISIBLE_STRING255' for bookmark 'UML89' not in this document. +2024-09-07 12:39:14,516 [main] TRACE AbstractWordWriter - replacing hyperlink [19111 - 19127] HYPERLINK LPL, UML248... +2024-09-07 12:39:14,522 [main] TRACE AbstractWordWriter - No hyperlink added: 'LPL' for bookmark 'UML248' not in this document. +2024-09-07 12:39:14,525 [main] TRACE AbstractWordWriter - replacing hyperlink [19319 - 19348] HYPERLINK VISIBLE_STRING255, UML89... +2024-09-07 12:39:14,530 [main] TRACE AbstractWordWriter - No hyperlink added: 'VISIBLE_STRING255' for bookmark 'UML89' not in this document. +2024-09-07 12:39:14,533 [main] TRACE AbstractWordWriter - replacing hyperlink [19338 - 19354] HYPERLINK LPL, UML248... +2024-09-07 12:39:14,538 [main] TRACE AbstractWordWriter - No hyperlink added: 'LPL' for bookmark 'UML248' not in this document. +2024-09-07 12:39:14,541 [main] TRACE AbstractWordWriter - replacing hyperlink [19511 - 19537] HYPERLINK AnalogueValue, UML355... +2024-09-07 12:39:14,546 [main] TRACE AbstractWordWriter - No hyperlink added: 'AnalogueValue' for bookmark 'UML355' not in this document. +2024-09-07 12:39:14,549 [main] TRACE AbstractWordWriter - replacing hyperlink [19526 - 19542] HYPERLINK BAC, UML241... +2024-09-07 12:39:14,554 [main] TRACE AbstractWordWriter - No hyperlink added: 'BAC' for bookmark 'UML241' not in this document. +2024-09-07 12:39:14,557 [main] TRACE AbstractWordWriter - replacing hyperlink [19556 - 19574] HYPERLINK INT16U, UML84... +2024-09-07 12:39:14,562 [main] TRACE AbstractWordWriter - No hyperlink added: 'INT16U' for bookmark 'UML84' not in this document. +2024-09-07 12:39:14,565 [main] TRACE AbstractWordWriter - replacing hyperlink [19564 - 19580] HYPERLINK HST, UML245... +2024-09-07 12:39:14,587 [main] TRACE AbstractWordWriter - replacing hyperlink [19651 - 19670] HYPERLINK BOOLEAN, UML83... +2024-09-07 12:39:14,591 [main] TRACE AbstractWordWriter - No hyperlink added: 'BOOLEAN' for bookmark 'UML83' not in this document. +2024-09-07 12:39:14,594 [main] TRACE AbstractWordWriter - replacing hyperlink [19660 - 19688] HYPERLINK ControllableCDC, UML237... +2024-09-07 12:39:14,599 [main] TRACE AbstractWordWriter - No hyperlink added: 'ControllableCDC' for bookmark 'UML237' not in this document. +2024-09-07 12:39:14,603 [main] TRACE AbstractWordWriter - replacing hyperlink [19786 - 19805] HYPERLINK BOOLEAN, UML83... +2024-09-07 12:39:14,607 [main] TRACE AbstractWordWriter - No hyperlink added: 'BOOLEAN' for bookmark 'UML83' not in this document. +2024-09-07 12:39:14,611 [main] TRACE AbstractWordWriter - replacing hyperlink [19795 - 19811] HYPERLINK ACD, UML244... +2024-09-07 12:39:14,616 [main] TRACE AbstractWordWriter - No hyperlink added: 'ACD' for bookmark 'UML244' not in this document. +2024-09-07 12:39:14,619 [main] TRACE AbstractWordWriter - replacing hyperlink [19825 - 19841] HYPERLINK CMV, UML236... +2024-09-07 12:39:14,624 [main] TRACE AbstractWordWriter - No hyperlink added: 'CMV' for bookmark 'UML236' not in this document. +2024-09-07 12:39:14,628 [main] TRACE AbstractWordWriter - replacing hyperlink [19830 - 19847] HYPERLINK HWYE, UML252... +2024-09-07 12:39:14,633 [main] TRACE AbstractWordWriter - No hyperlink added: 'HWYE' for bookmark 'UML252' not in this document. +2024-09-07 12:39:14,636 [main] TRACE AbstractWordWriter - replacing hyperlink [19922 - 19941] HYPERLINK BOOLEAN, UML83... +2024-09-07 12:39:14,641 [main] TRACE AbstractWordWriter - No hyperlink added: 'BOOLEAN' for bookmark 'UML83' not in this document. +2024-09-07 12:39:14,644 [main] TRACE AbstractWordWriter - replacing hyperlink [19931 - 19947] HYPERLINK ACD, UML244... +2024-09-07 12:39:14,649 [main] TRACE AbstractWordWriter - No hyperlink added: 'ACD' for bookmark 'UML244' not in this document. +2024-09-07 12:39:14,654 [main] TRACE AbstractWordWriter - replacing hyperlink [19954 - 19974] HYPERLINK Quality, UML339... +2024-09-07 12:39:14,659 [main] TRACE AbstractWordWriter - No hyperlink added: 'Quality' for bookmark 'UML339' not in this document. +2024-09-07 12:39:14,662 [main] TRACE AbstractWordWriter - replacing hyperlink [19963 - 19979] HYPERLINK DPS, UML229... +2024-09-07 12:39:14,684 [main] TRACE AbstractWordWriter - replacing hyperlink [20038 - 20054] HYPERLINK ENS, UML230... +2024-09-07 12:39:14,689 [main] TRACE AbstractWordWriter - No hyperlink added: 'ENS' for bookmark 'UML230' not in this document. +2024-09-07 12:39:14,692 [main] TRACE AbstractWordWriter - replacing hyperlink [20079 - 20095] HYPERLINK EXY, UML242... +2024-09-07 12:39:14,698 [main] TRACE AbstractWordWriter - No hyperlink added: 'EXY' for bookmark 'UML242' not in this document. +2024-09-07 12:39:14,701 [main] TRACE AbstractWordWriter - replacing hyperlink [20130 - 20154] HYPERLINK RangeConfig, UML356... +2024-09-07 12:39:14,724 [main] TRACE AbstractWordWriter - replacing hyperlink [20185 - 20201] HYPERLINK CMV, UML236... +2024-09-07 12:39:14,729 [main] TRACE AbstractWordWriter - No hyperlink added: 'CMV' for bookmark 'UML236' not in this document. +2024-09-07 12:39:14,732 [main] TRACE AbstractWordWriter - replacing hyperlink [20228 - 20252] HYPERLINK RangeConfig, UML356... +2024-09-07 12:39:14,754 [main] TRACE AbstractWordWriter - replacing hyperlink [20283 - 20299] HYPERLINK CMV, UML236... +2024-09-07 12:39:14,760 [main] TRACE AbstractWordWriter - No hyperlink added: 'CMV' for bookmark 'UML236' not in this document. +2024-09-07 12:39:14,762 [main] TRACE AbstractWordWriter - replacing hyperlink [20337 - 20353] HYPERLINK ENG, UML246... +2024-09-07 12:39:14,767 [main] TRACE AbstractWordWriter - No hyperlink added: 'ENG' for bookmark 'UML246' not in this document. +2024-09-07 12:39:14,770 [main] TRACE AbstractWordWriter - replacing hyperlink [20384 - 20402] HYPERLINK INT32U, UML86... +2024-09-07 12:39:14,776 [main] TRACE AbstractWordWriter - No hyperlink added: 'INT32U' for bookmark 'UML86' not in this document. +2024-09-07 12:39:14,779 [main] TRACE AbstractWordWriter - replacing hyperlink [20392 - 20425] HYPERLINK HarmonicMeasurandCDC, UML251... +2024-09-07 12:39:14,783 [main] TRACE AbstractWordWriter - No hyperlink added: 'HarmonicMeasurandCDC' for bookmark 'UML251' not in this document. +2024-09-07 12:39:14,786 [main] TRACE AbstractWordWriter - replacing hyperlink [20688 - 20712] HYPERLINK DpStatusKind, UML82... +2024-09-07 12:39:14,792 [main] TRACE AbstractWordWriter - No hyperlink added: 'DpStatusKind' for bookmark 'UML82' not in this document. +2024-09-07 12:39:14,795 [main] TRACE AbstractWordWriter - replacing hyperlink [20702 - 20721] HYPERLINK EnumDA, UML340... +2024-09-07 12:39:14,800 [main] TRACE AbstractWordWriter - No hyperlink added: 'EnumDA' for bookmark 'UML340' not in this document. +2024-09-07 12:39:14,803 [main] TRACE AbstractWordWriter - replacing hyperlink [20710 - 20729] HYPERLINK EnumDA, UML340... +2024-09-07 12:39:14,808 [main] TRACE AbstractWordWriter - No hyperlink added: 'EnumDA' for bookmark 'UML340' not in this document. +2024-09-07 12:39:14,811 [main] TRACE AbstractWordWriter - replacing hyperlink [20718 - 20737] HYPERLINK EnumDA, UML340... +2024-09-07 12:39:14,816 [main] TRACE AbstractWordWriter - No hyperlink added: 'EnumDA' for bookmark 'UML340' not in this document. +2024-09-07 12:39:14,819 [main] TRACE AbstractWordWriter - replacing hyperlink [20726 - 20742] HYPERLINK DPS, UML229... +2024-09-07 12:39:14,842 [main] TRACE AbstractWordWriter - replacing hyperlink [20785 - 20801] HYPERLINK ENS, UML230... +2024-09-07 12:39:14,846 [main] TRACE AbstractWordWriter - No hyperlink added: 'ENS' for bookmark 'UML230' not in this document. +2024-09-07 12:39:14,849 [main] TRACE AbstractWordWriter - replacing hyperlink [20810 - 20826] HYPERLINK ENC, UML238... +2024-09-07 12:39:14,854 [main] TRACE AbstractWordWriter - No hyperlink added: 'ENC' for bookmark 'UML238' not in this document. +2024-09-07 12:39:14,857 [main] TRACE AbstractWordWriter - replacing hyperlink [20835 - 20851] HYPERLINK EXY, UML242... +2024-09-07 12:39:14,862 [main] TRACE AbstractWordWriter - No hyperlink added: 'EXY' for bookmark 'UML242' not in this document. +2024-09-07 12:39:14,865 [main] TRACE AbstractWordWriter - replacing hyperlink [20882 - 20898] HYPERLINK CMV, UML236... +2024-09-07 12:39:14,871 [main] TRACE AbstractWordWriter - No hyperlink added: 'CMV' for bookmark 'UML236' not in this document. +2024-09-07 12:39:14,874 [main] TRACE AbstractWordWriter - replacing hyperlink [20932 - 20951] HYPERLINK BOOLEAN, UML83... +2024-09-07 12:39:14,879 [main] TRACE AbstractWordWriter - No hyperlink added: 'BOOLEAN' for bookmark 'UML83' not in this document. +2024-09-07 12:39:14,882 [main] TRACE AbstractWordWriter - replacing hyperlink [20941 - 20969] HYPERLINK SubstitutionCDC, UML228... +2024-09-07 12:39:14,887 [main] TRACE AbstractWordWriter - No hyperlink added: 'SubstitutionCDC' for bookmark 'UML228' not in this document. +2024-09-07 12:39:14,890 [main] TRACE AbstractWordWriter - replacing hyperlink [21530 - 21550] HYPERLINK Quality, UML339... +2024-09-07 12:39:14,894 [main] TRACE AbstractWordWriter - No hyperlink added: 'Quality' for bookmark 'UML339' not in this document. +2024-09-07 12:39:14,897 [main] TRACE AbstractWordWriter - replacing hyperlink [21539 - 21567] HYPERLINK SubstitutionCDC, UML228... +2024-09-07 12:39:14,903 [main] TRACE AbstractWordWriter - No hyperlink added: 'SubstitutionCDC' for bookmark 'UML228' not in this document. +2024-09-07 12:39:14,906 [main] TRACE AbstractWordWriter - replacing hyperlink [21594 - 21618] HYPERLINK DpStatusKind, UML82... +2024-09-07 12:39:14,910 [main] TRACE AbstractWordWriter - No hyperlink added: 'DpStatusKind' for bookmark 'UML82' not in this document. +2024-09-07 12:39:14,915 [main] TRACE AbstractWordWriter - replacing hyperlink [21608 - 21627] HYPERLINK EnumDA, UML340... +2024-09-07 12:39:14,920 [main] TRACE AbstractWordWriter - No hyperlink added: 'EnumDA' for bookmark 'UML340' not in this document. +2024-09-07 12:39:14,923 [main] TRACE AbstractWordWriter - replacing hyperlink [21616 - 21635] HYPERLINK EnumDA, UML340... +2024-09-07 12:39:14,927 [main] TRACE AbstractWordWriter - No hyperlink added: 'EnumDA' for bookmark 'UML340' not in this document. +2024-09-07 12:39:14,930 [main] TRACE AbstractWordWriter - replacing hyperlink [21638 - 21654] HYPERLINK DPS, UML229... +2024-09-07 12:39:14,953 [main] TRACE AbstractWordWriter - replacing hyperlink [21712 - 21728] HYPERLINK ENS, UML230... +2024-09-07 12:39:14,958 [main] TRACE AbstractWordWriter - No hyperlink added: 'ENS' for bookmark 'UML230' not in this document. +2024-09-07 12:39:14,961 [main] TRACE AbstractWordWriter - replacing hyperlink [21752 - 21768] HYPERLINK ENC, UML238... +2024-09-07 12:39:14,967 [main] TRACE AbstractWordWriter - No hyperlink added: 'ENC' for bookmark 'UML238' not in this document. +2024-09-07 12:39:14,971 [main] TRACE AbstractWordWriter - replacing hyperlink [21792 - 21808] HYPERLINK BAC, UML241... +2024-09-07 12:39:14,976 [main] TRACE AbstractWordWriter - No hyperlink added: 'BAC' for bookmark 'UML241' not in this document. +2024-09-07 12:39:14,979 [main] TRACE AbstractWordWriter - replacing hyperlink [21834 - 21855] HYPERLINK TimeStamp, UML93... +2024-09-07 12:39:14,984 [main] TRACE AbstractWordWriter - No hyperlink added: 'TimeStamp' for bookmark 'UML93' not in this document. +2024-09-07 12:39:14,987 [main] TRACE AbstractWordWriter - replacing hyperlink [21845 - 21861] HYPERLINK DPS, UML229... +2024-09-07 12:39:15,009 [main] TRACE AbstractWordWriter - replacing hyperlink [21956 - 21972] HYPERLINK ENS, UML230... +2024-09-07 12:39:15,015 [main] TRACE AbstractWordWriter - No hyperlink added: 'ENS' for bookmark 'UML230' not in this document. +2024-09-07 12:39:15,018 [main] TRACE AbstractWordWriter - replacing hyperlink [22033 - 22049] HYPERLINK EXY, UML242... +2024-09-07 12:39:15,022 [main] TRACE AbstractWordWriter - No hyperlink added: 'EXY' for bookmark 'UML242' not in this document. +2024-09-07 12:39:15,025 [main] TRACE AbstractWordWriter - replacing hyperlink [26481 - 26498] HYPERLINK HWYE, UML252... +2024-09-07 12:39:15,030 [main] TRACE AbstractWordWriter - No hyperlink added: 'HWYE' for bookmark 'UML252' not in this document. +2024-09-07 12:39:15,033 [main] TRACE AbstractWordWriter - replacing hyperlink [26487 - 26504] HYPERLINK MMXU, UML204... +2024-09-07 12:39:15,038 [main] TRACE AbstractWordWriter - No hyperlink added: 'MMXU' for bookmark 'UML204' not in this document. +2024-09-07 12:39:15,041 [main] TRACE AbstractWordWriter - replacing hyperlink [26553 - 26570] HYPERLINK ZAXN, UML206... +2024-09-07 12:39:15,046 [main] TRACE AbstractWordWriter - No hyperlink added: 'ZAXN' for bookmark 'UML206' not in this document. +2024-09-07 12:39:15,050 [main] TRACE AbstractWordWriter - replacing hyperlink [26636 - 26652] HYPERLINK CMV, UML236... +2024-09-07 12:39:15,055 [main] TRACE AbstractWordWriter - No hyperlink added: 'CMV' for bookmark 'UML236' not in this document. +2024-09-07 12:39:15,058 [main] TRACE AbstractWordWriter - replacing hyperlink [26641 - 26658] HYPERLINK GGIO, UML203... +2024-09-07 12:39:15,064 [main] TRACE AbstractWordWriter - No hyperlink added: 'GGIO' for bookmark 'UML203' not in this document. +2024-09-07 12:39:15,067 [main] TRACE AbstractWordWriter - replacing hyperlink [26698 - 26714] HYPERLINK ENS, UML230... +2024-09-07 12:39:15,073 [main] TRACE AbstractWordWriter - No hyperlink added: 'ENS' for bookmark 'UML230' not in this document. +2024-09-07 12:39:15,076 [main] TRACE AbstractWordWriter - replacing hyperlink [26703 - 26733] HYPERLINK BehaviourModeKind, UML139... +2024-09-07 12:39:15,082 [main] TRACE AbstractWordWriter - No hyperlink added: 'BehaviourModeKind' for bookmark 'UML139' not in this document. +2024-09-07 12:39:15,085 [main] TRACE AbstractWordWriter - replacing hyperlink [26723 - 26740] HYPERLINK LLN0, UML199... +2024-09-07 12:39:15,091 [main] TRACE AbstractWordWriter - No hyperlink added: 'LLN0' for bookmark 'UML199' not in this document. +2024-09-07 12:39:15,095 [main] TRACE AbstractWordWriter - replacing hyperlink [26737 - 26762] HYPERLINK SPSTransient, UML143... +2024-09-07 12:39:15,100 [main] TRACE AbstractWordWriter - No hyperlink added: 'SPSTransient' for bookmark 'UML143' not in this document. +2024-09-07 12:39:15,103 [main] TRACE AbstractWordWriter - replacing hyperlink [26751 - 26776] HYPERLINK StatisticsLN, UML202... +2024-09-07 12:39:15,108 [main] TRACE AbstractWordWriter - No hyperlink added: 'StatisticsLN' for bookmark 'UML202' not in this document. +2024-09-07 12:39:15,111 [main] TRACE AbstractWordWriter - replacing hyperlink [26863 - 26879] HYPERLINK ENG, UML246... +2024-09-07 12:39:15,116 [main] TRACE AbstractWordWriter - No hyperlink added: 'ENG' for bookmark 'UML246' not in this document. +2024-09-07 12:39:15,119 [main] TRACE AbstractWordWriter - replacing hyperlink [26868 - 26895] HYPERLINK CalcMethodKind, UML140... +2024-09-07 12:39:15,124 [main] TRACE AbstractWordWriter - No hyperlink added: 'CalcMethodKind' for bookmark 'UML140' not in this document. +2024-09-07 12:39:15,127 [main] TRACE AbstractWordWriter - replacing hyperlink [26885 - 26910] HYPERLINK StatisticsLN, UML202... +2024-09-07 12:39:15,132 [main] TRACE AbstractWordWriter - No hyperlink added: 'StatisticsLN' for bookmark 'UML202' not in this document. +2024-09-07 12:39:15,135 [main] TRACE AbstractWordWriter - replacing hyperlink [27442 - 27458] HYPERLINK CMV, UML236... +2024-09-07 12:39:15,140 [main] TRACE AbstractWordWriter - No hyperlink added: 'CMV' for bookmark 'UML236' not in this document. +2024-09-07 12:39:15,143 [main] TRACE AbstractWordWriter - replacing hyperlink [27447 - 27468] HYPERLINK DomainLN, UML201... +2024-09-07 12:39:15,148 [main] TRACE AbstractWordWriter - No hyperlink added: 'DomainLN' for bookmark 'UML201' not in this document. +2024-09-07 12:39:15,152 [main] TRACE AbstractWordWriter - replacing hyperlink [27551 - 27567] HYPERLINK ENS, UML230... +2024-09-07 12:39:15,157 [main] TRACE AbstractWordWriter - No hyperlink added: 'ENS' for bookmark 'UML230' not in this document. +2024-09-07 12:39:15,161 [main] TRACE AbstractWordWriter - replacing hyperlink [27556 - 27575] HYPERLINK EnumDA, UML340... +2024-09-07 12:39:15,165 [main] TRACE AbstractWordWriter - No hyperlink added: 'EnumDA' for bookmark 'UML340' not in this document. +2024-09-07 12:39:15,168 [main] TRACE AbstractWordWriter - replacing hyperlink [27565 - 27582] HYPERLINK KXYZ, UML207... +2024-09-07 12:39:15,175 [main] TRACE AbstractWordWriter - No hyperlink added: 'KXYZ' for bookmark 'UML207' not in this document. +2024-09-07 12:39:15,178 [main] TRACE AbstractWordWriter - replacing hyperlink [27631 - 27648] HYPERLINK GGIO, UML203... +2024-09-07 12:39:15,182 [main] TRACE AbstractWordWriter - No hyperlink added: 'GGIO' for bookmark 'UML203' not in this document. +2024-09-07 12:39:15,185 [main] TRACE AbstractWordWriter - replacing hyperlink [27790 - 27806] HYPERLINK HST, UML245... +2024-09-07 12:39:15,209 [main] TRACE AbstractWordWriter - replacing hyperlink [27829 - 27846] HYPERLINK MMXU, UML204... +2024-09-07 12:39:15,213 [main] TRACE AbstractWordWriter - No hyperlink added: 'MMXU' for bookmark 'UML204' not in this document. +2024-09-07 12:39:15,216 [main] TRACE AbstractWordWriter - replacing hyperlink [27881 - 27897] HYPERLINK ACD, UML244... +2024-09-07 12:39:15,222 [main] TRACE AbstractWordWriter - No hyperlink added: 'ACD' for bookmark 'UML244' not in this document. +2024-09-07 12:39:15,225 [main] TRACE AbstractWordWriter - replacing hyperlink [27886 - 27903] HYPERLINK RDIR, UML214... +2024-09-07 12:39:15,230 [main] TRACE AbstractWordWriter - No hyperlink added: 'RDIR' for bookmark 'UML214' not in this document. +2024-09-07 12:39:15,233 [main] TRACE AbstractWordWriter - replacing hyperlink [28000 - 28016] HYPERLINK ENS, UML230... +2024-09-07 12:39:15,240 [main] TRACE AbstractWordWriter - No hyperlink added: 'ENS' for bookmark 'UML230' not in this document. +2024-09-07 12:39:15,243 [main] TRACE AbstractWordWriter - replacing hyperlink [28005 - 28028] HYPERLINK HealthKind, UML138... +2024-09-07 12:39:15,249 [main] TRACE AbstractWordWriter - No hyperlink added: 'HealthKind' for bookmark 'UML138' not in this document. +2024-09-07 12:39:15,253 [main] TRACE AbstractWordWriter - replacing hyperlink [28018 - 28035] HYPERLINK GGIO, UML203... +2024-09-07 12:39:15,258 [main] TRACE AbstractWordWriter - No hyperlink added: 'GGIO' for bookmark 'UML203' not in this document. +2024-09-07 12:39:15,261 [main] TRACE AbstractWordWriter - replacing hyperlink [28149 - 28165] HYPERLINK ENS, UML230... +2024-09-07 12:39:15,265 [main] TRACE AbstractWordWriter - No hyperlink added: 'ENS' for bookmark 'UML230' not in this document. +2024-09-07 12:39:15,269 [main] TRACE AbstractWordWriter - replacing hyperlink [28154 - 28177] HYPERLINK HealthKind, UML138... +2024-09-07 12:39:15,274 [main] TRACE AbstractWordWriter - No hyperlink added: 'HealthKind' for bookmark 'UML138' not in this document. +2024-09-07 12:39:15,277 [main] TRACE AbstractWordWriter - replacing hyperlink [28167 - 28200] HYPERLINK EquipmentInterfaceLN, UML205... +2024-09-07 12:39:15,282 [main] TRACE AbstractWordWriter - No hyperlink added: 'EquipmentInterfaceLN' for bookmark 'UML205' not in this document. +2024-09-07 12:39:15,286 [main] TRACE AbstractWordWriter - replacing hyperlink [28323 - 28339] HYPERLINK DPS, UML229... +2024-09-07 12:39:15,308 [main] TRACE AbstractWordWriter - replacing hyperlink [28362 - 28379] HYPERLINK CALH, UML208... +2024-09-07 12:39:15,314 [main] TRACE AbstractWordWriter - No hyperlink added: 'CALH' for bookmark 'UML208' not in this document. +2024-09-07 12:39:15,317 [main] TRACE AbstractWordWriter - replacing hyperlink [28536 - 28552] HYPERLINK DPS, UML229... +2024-09-07 12:39:15,339 [main] TRACE AbstractWordWriter - replacing hyperlink [28575 - 28592] HYPERLINK CALH, UML208... +2024-09-07 12:39:15,345 [main] TRACE AbstractWordWriter - No hyperlink added: 'CALH' for bookmark 'UML208' not in this document. +2024-09-07 12:39:15,348 [main] TRACE AbstractWordWriter - replacing hyperlink [28758 - 28774] HYPERLINK ENS, UML230... +2024-09-07 12:39:15,353 [main] TRACE AbstractWordWriter - No hyperlink added: 'ENS' for bookmark 'UML230' not in this document. +2024-09-07 12:39:15,356 [main] TRACE AbstractWordWriter - replacing hyperlink [28763 - 28786] HYPERLINK HealthKind, UML138... +2024-09-07 12:39:15,361 [main] TRACE AbstractWordWriter - No hyperlink added: 'HealthKind' for bookmark 'UML138' not in this document. +2024-09-07 12:39:15,364 [main] TRACE AbstractWordWriter - replacing hyperlink [28776 - 28793] HYPERLINK LLN0, UML199... +2024-09-07 12:39:15,369 [main] TRACE AbstractWordWriter - No hyperlink added: 'LLN0' for bookmark 'UML199' not in this document. +2024-09-07 12:39:15,372 [main] TRACE AbstractWordWriter - replacing hyperlink [29060 - 29081] HYPERLINK DomainLN, UML201... +2024-09-07 12:39:15,377 [main] TRACE AbstractWordWriter - No hyperlink added: 'DomainLN' for bookmark 'UML201' not in this document. +2024-09-07 12:39:15,380 [main] TRACE AbstractWordWriter - replacing hyperlink [29282 - 29298] HYPERLINK ENS, UML230... +2024-09-07 12:39:15,385 [main] TRACE AbstractWordWriter - No hyperlink added: 'ENS' for bookmark 'UML230' not in this document. +2024-09-07 12:39:15,388 [main] TRACE AbstractWordWriter - replacing hyperlink [29287 - 29312] HYPERLINK MaterialKind, UML146... +2024-09-07 12:39:15,393 [main] TRACE AbstractWordWriter - No hyperlink added: 'MaterialKind' for bookmark 'UML146' not in this document. +2024-09-07 12:39:15,396 [main] TRACE AbstractWordWriter - replacing hyperlink [29302 - 29319] HYPERLINK ZAXN, UML206... +2024-09-07 12:39:15,401 [main] TRACE AbstractWordWriter - No hyperlink added: 'ZAXN' for bookmark 'UML206' not in this document. +2024-09-07 12:39:15,405 [main] TRACE AbstractWordWriter - replacing hyperlink [29365 - 29381] HYPERLINK ENC, UML238... +2024-09-07 12:39:15,410 [main] TRACE AbstractWordWriter - No hyperlink added: 'ENC' for bookmark 'UML238' not in this document. +2024-09-07 12:39:15,413 [main] TRACE AbstractWordWriter - replacing hyperlink [29370 - 29395] HYPERLINK MaterialKind, UML146... +2024-09-07 12:39:15,418 [main] TRACE AbstractWordWriter - No hyperlink added: 'MaterialKind' for bookmark 'UML146' not in this document. +2024-09-07 12:39:15,421 [main] TRACE AbstractWordWriter - replacing hyperlink [29384 - 29419] HYPERLINK MaterialTransitionKind, UML147... +2024-09-07 12:39:15,427 [main] TRACE AbstractWordWriter - No hyperlink added: 'MaterialTransitionKind' for bookmark 'UML147' not in this document. +2024-09-07 12:39:15,429 [main] TRACE AbstractWordWriter - replacing hyperlink [29409 - 29426] HYPERLINK ZAXN, UML206... +2024-09-07 12:39:15,434 [main] TRACE AbstractWordWriter - No hyperlink added: 'ZAXN' for bookmark 'UML206' not in this document. +2024-09-07 12:39:15,437 [main] TRACE AbstractWordWriter - replacing hyperlink [29479 - 29495] HYPERLINK ENC, UML238... +2024-09-07 12:39:15,443 [main] TRACE AbstractWordWriter - No hyperlink added: 'ENC' for bookmark 'UML238' not in this document. +2024-09-07 12:39:15,446 [main] TRACE AbstractWordWriter - replacing hyperlink [29484 - 29514] HYPERLINK BehaviourModeKind, UML139... +2024-09-07 12:39:15,451 [main] TRACE AbstractWordWriter - No hyperlink added: 'BehaviourModeKind' for bookmark 'UML139' not in this document. +2024-09-07 12:39:15,454 [main] TRACE AbstractWordWriter - replacing hyperlink [29504 - 29525] HYPERLINK DomainLN, UML201... +2024-09-07 12:39:15,459 [main] TRACE AbstractWordWriter - No hyperlink added: 'DomainLN' for bookmark 'UML201' not in this document. +2024-09-07 12:39:15,462 [main] TRACE AbstractWordWriter - replacing hyperlink [29872 - 29901] HYPERLINK EXYBehaviourMode, UML243... +2024-09-07 12:39:15,467 [main] TRACE AbstractWordWriter - No hyperlink added: 'EXYBehaviourMode' for bookmark 'UML243' not in this document. +2024-09-07 12:39:15,470 [main] TRACE AbstractWordWriter - replacing hyperlink [29890 - 29907] HYPERLINK CALH, UML208... +2024-09-07 12:39:15,475 [main] TRACE AbstractWordWriter - No hyperlink added: 'CALH' for bookmark 'UML208' not in this document. +2024-09-07 12:39:15,478 [main] TRACE AbstractWordWriter - replacing hyperlink [30073 - 30089] HYPERLINK LPL, UML248... +2024-09-07 12:39:15,483 [main] TRACE AbstractWordWriter - No hyperlink added: 'LPL' for bookmark 'UML248' not in this document. +2024-09-07 12:39:15,486 [main] TRACE AbstractWordWriter - replacing hyperlink [30078 - 30095] HYPERLINK LLN0, UML199... +2024-09-07 12:39:15,491 [main] TRACE AbstractWordWriter - No hyperlink added: 'LLN0' for bookmark 'UML199' not in this document. +2024-09-07 12:39:15,494 [main] TRACE AbstractWordWriter - replacing hyperlink [30119 - 30140] HYPERLINK DomainLN, UML201... +2024-09-07 12:39:15,499 [main] TRACE AbstractWordWriter - No hyperlink added: 'DomainLN' for bookmark 'UML201' not in this document. +2024-09-07 12:39:15,503 [main] TRACE AbstractWordWriter - replacing hyperlink [30165 - 30190] HYPERLINK ACTTransient, UML142... +2024-09-07 12:39:15,509 [main] TRACE AbstractWordWriter - No hyperlink added: 'ACTTransient' for bookmark 'UML142' not in this document. +2024-09-07 12:39:15,512 [main] TRACE AbstractWordWriter - replacing hyperlink [30179 - 30196] HYPERLINK PDIF, UML210... +2024-09-07 12:39:15,517 [main] TRACE AbstractWordWriter - No hyperlink added: 'PDIF' for bookmark 'UML210' not in this document. +2024-09-07 12:39:15,520 [main] TRACE AbstractWordWriter - replacing hyperlink [30273 - 30290] HYPERLINK PDIS, UML211... +2024-09-07 12:39:15,525 [main] TRACE AbstractWordWriter - No hyperlink added: 'PDIS' for bookmark 'UML211' not in this document. +2024-09-07 12:39:15,528 [main] TRACE AbstractWordWriter - replacing hyperlink [30411 - 30436] HYPERLINK ProtectionLN, UML209... +2024-09-07 12:39:15,533 [main] TRACE AbstractWordWriter - No hyperlink added: 'ProtectionLN' for bookmark 'UML209' not in this document. +2024-09-07 12:39:15,536 [main] TRACE AbstractWordWriter - replacing hyperlink [30585 - 30601] HYPERLINK ENS, UML230... +2024-09-07 12:39:15,541 [main] TRACE AbstractWordWriter - No hyperlink added: 'ENS' for bookmark 'UML230' not in this document. +2024-09-07 12:39:15,544 [main] TRACE AbstractWordWriter - replacing hyperlink [30590 - 30608] HYPERLINK Other, UML353... +2024-09-07 12:39:15,549 [main] TRACE AbstractWordWriter - No hyperlink added: 'Other' for bookmark 'UML353' not in this document. +2024-09-07 12:39:15,552 [main] TRACE AbstractWordWriter - replacing hyperlink [30598 - 30615] HYPERLINK ZAXN, UML206... +2024-09-07 12:39:15,557 [main] TRACE AbstractWordWriter - No hyperlink added: 'ZAXN' for bookmark 'UML206' not in this document. +2024-09-07 12:39:15,559 [main] TRACE AbstractWordWriter - replacing hyperlink [30741 - 30757] HYPERLINK ENS, UML230... +2024-09-07 12:39:15,564 [main] TRACE AbstractWordWriter - No hyperlink added: 'ENS' for bookmark 'UML230' not in this document. +2024-09-07 12:39:15,568 [main] TRACE AbstractWordWriter - replacing hyperlink [30746 - 30769] HYPERLINK HealthKind, UML138... +2024-09-07 12:39:15,573 [main] TRACE AbstractWordWriter - No hyperlink added: 'HealthKind' for bookmark 'UML138' not in this document. +2024-09-07 12:39:15,576 [main] TRACE AbstractWordWriter - replacing hyperlink [30759 - 30776] HYPERLINK LPHD, UML197... +2024-09-07 12:39:15,581 [main] TRACE AbstractWordWriter - No hyperlink added: 'LPHD' for bookmark 'UML197' not in this document. +2024-09-07 12:39:15,584 [main] TRACE AbstractWordWriter - replacing hyperlink [30873 - 30898] HYPERLINK SPCTransient, UML381... +2024-09-07 12:39:15,588 [main] TRACE AbstractWordWriter - No hyperlink added: 'SPCTransient' for bookmark 'UML381' not in this document. +2024-09-07 12:39:15,591 [main] TRACE AbstractWordWriter - replacing hyperlink [30887 - 30904] HYPERLINK LPHD, UML197... +2024-09-07 12:39:15,596 [main] TRACE AbstractWordWriter - No hyperlink added: 'LPHD' for bookmark 'UML197' not in this document. +2024-09-07 12:39:15,600 [main] TRACE AbstractWordWriter - replacing hyperlink [30992 - 31017] HYPERLINK SPSTransient, UML143... +2024-09-07 12:39:15,604 [main] TRACE AbstractWordWriter - No hyperlink added: 'SPSTransient' for bookmark 'UML143' not in this document. +2024-09-07 12:39:15,609 [main] TRACE AbstractWordWriter - replacing hyperlink [31006 - 31023] HYPERLINK LPHD, UML197... +2024-09-07 12:39:15,613 [main] TRACE AbstractWordWriter - No hyperlink added: 'LPHD' for bookmark 'UML197' not in this document. +2024-09-07 12:39:15,616 [main] TRACE AbstractWordWriter - replacing hyperlink [31101 - 31117] HYPERLINK ACD, UML244... +2024-09-07 12:39:15,621 [main] TRACE AbstractWordWriter - No hyperlink added: 'ACD' for bookmark 'UML244' not in this document. +2024-09-07 12:39:15,624 [main] TRACE AbstractWordWriter - replacing hyperlink [31106 - 31123] HYPERLINK PDIF, UML210... +2024-09-07 12:39:15,629 [main] TRACE AbstractWordWriter - No hyperlink added: 'PDIF' for bookmark 'UML210' not in this document. +2024-09-07 12:39:15,633 [main] TRACE AbstractWordWriter - replacing hyperlink [31163 - 31180] HYPERLINK PDIS, UML211... +2024-09-07 12:39:15,638 [main] TRACE AbstractWordWriter - No hyperlink added: 'PDIS' for bookmark 'UML211' not in this document. +2024-09-07 12:39:15,641 [main] TRACE AbstractWordWriter - replacing hyperlink [31234 - 31250] HYPERLINK CMV, UML236... +2024-09-07 12:39:15,646 [main] TRACE AbstractWordWriter - No hyperlink added: 'CMV' for bookmark 'UML236' not in this document. +2024-09-07 12:39:15,649 [main] TRACE AbstractWordWriter - replacing hyperlink [31239 - 31255] HYPERLINK CMV, UML236... +2024-09-07 12:39:15,654 [main] TRACE AbstractWordWriter - No hyperlink added: 'CMV' for bookmark 'UML236' not in this document. +2024-09-07 12:39:15,657 [main] TRACE AbstractWordWriter - replacing hyperlink [31244 - 31269] HYPERLINK SPSTransient, UML143... +2024-09-07 12:39:15,662 [main] TRACE AbstractWordWriter - No hyperlink added: 'SPSTransient' for bookmark 'UML143' not in this document. +2024-09-07 12:39:15,665 [main] TRACE AbstractWordWriter - replacing hyperlink [31258 - 31275] HYPERLINK MMXU, UML204... +2024-09-07 12:39:15,670 [main] TRACE AbstractWordWriter - No hyperlink added: 'MMXU' for bookmark 'UML204' not in this document. +2024-09-07 12:39:15,673 [main] TRACE AbstractWordWriter - replacing hyperlink [31332 - 31349] HYPERLINK KXYZ, UML207... +2024-09-07 12:39:15,678 [main] TRACE AbstractWordWriter - No hyperlink added: 'KXYZ' for bookmark 'UML207' not in this document. +2024-09-07 12:39:15,681 [main] TRACE AbstractWordWriter - replacing hyperlink [31406 - 31423] HYPERLINK RDIR, UML214... +2024-09-07 12:39:15,686 [main] TRACE AbstractWordWriter - No hyperlink added: 'RDIR' for bookmark 'UML214' not in this document. +2024-09-07 12:39:15,689 [main] TRACE AbstractWordWriter - replacing hyperlink [31484 - 31500] HYPERLINK CMV, UML236... +2024-09-07 12:39:15,694 [main] TRACE AbstractWordWriter - No hyperlink added: 'CMV' for bookmark 'UML236' not in this document. +2024-09-07 12:39:15,697 [main] TRACE AbstractWordWriter - replacing hyperlink [31489 - 31506] HYPERLINK ZAXN, UML206... +2024-09-07 12:39:15,702 [main] TRACE AbstractWordWriter - No hyperlink added: 'ZAXN' for bookmark 'UML206' not in this document. +2024-09-07 12:39:15,705 [main] TRACE AbstractWordWriter - replacing hyperlink [31580 - 31608] HYPERLINK SubstitutionCDC, UML228... +2024-09-07 12:39:15,711 [main] TRACE AbstractWordWriter - No hyperlink added: 'SubstitutionCDC' for bookmark 'UML228' not in this document. +2024-09-07 12:39:15,714 [main] TRACE AbstractWordWriter - replacing hyperlink [31597 - 31613] HYPERLINK ENS, UML230... +2024-09-07 12:39:15,719 [main] TRACE AbstractWordWriter - No hyperlink added: 'ENS' for bookmark 'UML230' not in this document. +2024-09-07 12:39:15,721 [main] TRACE AbstractWordWriter - replacing hyperlink [31603 - 31620] HYPERLINK KXYZ, UML207... +2024-09-07 12:39:15,726 [main] TRACE AbstractWordWriter - No hyperlink added: 'KXYZ' for bookmark 'UML207' not in this document. +2024-09-07 12:39:15,730 [main] TRACE AbstractWordWriter - replacing hyperlink [31674 - 31690] HYPERLINK CMV, UML236... +2024-09-07 12:39:15,735 [main] TRACE AbstractWordWriter - No hyperlink added: 'CMV' for bookmark 'UML236' not in this document. +2024-09-07 12:39:15,738 [main] TRACE AbstractWordWriter - replacing hyperlink [31679 - 31696] HYPERLINK KXYZ, UML207... +2024-09-07 12:39:15,743 [main] TRACE AbstractWordWriter - No hyperlink added: 'KXYZ' for bookmark 'UML207' not in this document. +2024-09-07 12:39:15,746 [main] TRACE AbstractWordWriter - replacing hyperlink [32246 - 32274] HYPERLINK IdentifiedObject, UML32... +2024-09-07 12:39:15,750 [main] TRACE AbstractWordWriter - No hyperlink added: 'IdentifiedObject' for bookmark 'UML32' not in this document. +2024-09-07 12:39:15,753 [main] TRACE AbstractWordWriter - replacing hyperlink [32419 - 32444] HYPERLINK ApparentPower, UML14... +2024-09-07 12:39:15,759 [main] TRACE AbstractWordWriter - No hyperlink added: 'ApparentPower' for bookmark 'UML14' not in this document. +2024-09-07 12:39:15,763 [main] TRACE AbstractWordWriter - replacing hyperlink [32475 - 32493] HYPERLINK String, UML22... +2024-09-07 12:39:15,768 [main] TRACE AbstractWordWriter - No hyperlink added: 'String' for bookmark 'UML22' not in this document. +2024-09-07 12:39:15,770 [main] TRACE AbstractWordWriter - replacing hyperlink [32498 - 32526] HYPERLINK IdentifiedObject, UML32... +2024-09-07 12:39:15,775 [main] TRACE AbstractWordWriter - No hyperlink added: 'IdentifiedObject' for bookmark 'UML32' not in this document. +2024-09-07 12:39:15,778 [main] TRACE AbstractWordWriter - replacing hyperlink [32526 - 32544] HYPERLINK String, UML22... +2024-09-07 12:39:15,783 [main] TRACE AbstractWordWriter - No hyperlink added: 'String' for bookmark 'UML22' not in this document. +2024-09-07 12:39:15,786 [main] TRACE AbstractWordWriter - replacing hyperlink [32549 - 32577] HYPERLINK IdentifiedObject, UML32... +2024-09-07 12:39:15,792 [main] TRACE AbstractWordWriter - No hyperlink added: 'IdentifiedObject' for bookmark 'UML32' not in this document. +2024-09-07 12:39:15,795 [main] TRACE AbstractWordWriter - replacing hyperlink [32577 - 32595] HYPERLINK String, UML22... +2024-09-07 12:39:15,800 [main] TRACE AbstractWordWriter - No hyperlink added: 'String' for bookmark 'UML22' not in this document. +2024-09-07 12:39:15,803 [main] TRACE AbstractWordWriter - replacing hyperlink [32600 - 32628] HYPERLINK IdentifiedObject, UML32... +2024-09-07 12:39:15,808 [main] TRACE AbstractWordWriter - No hyperlink added: 'IdentifiedObject' for bookmark 'UML32' not in this document. +2024-09-07 12:39:15,812 [main] TRACE AbstractWordWriter - replacing hyperlink [32664 - 32692] HYPERLINK SubstitutionCDC, UML228... +2024-09-07 12:39:15,817 [main] TRACE AbstractWordWriter - No hyperlink added: 'SubstitutionCDC' for bookmark 'UML228' not in this document. +2024-09-07 12:39:15,820 [main] TRACE AbstractWordWriter - replacing hyperlink [32682 - 32711] HYPERLINK BasePrimitiveCDC, UML217... +2024-09-07 12:39:15,825 [main] TRACE AbstractWordWriter - No hyperlink added: 'BasePrimitiveCDC' for bookmark 'UML217' not in this document. +2024-09-07 12:39:15,828 [main] TRACE AbstractWordWriter - replacing hyperlink [32701 - 32726] HYPERLINK PrimitiveCDC, UML216... +2024-09-07 12:39:15,833 [main] TRACE AbstractWordWriter - No hyperlink added: 'PrimitiveCDC' for bookmark 'UML216' not in this document. +2024-09-07 12:39:15,836 [main] TRACE AbstractWordWriter - replacing hyperlink [32716 - 32732] HYPERLINK CDC, UML215... +2024-09-07 12:39:15,842 [main] TRACE AbstractWordWriter - No hyperlink added: 'CDC' for bookmark 'UML215' not in this document. +2024-09-07 12:39:15,845 [main] TRACE AbstractWordWriter - replacing hyperlink [32722 - 32754] HYPERLINK NamedIEC61850Object, UML193... +2024-09-07 12:39:15,850 [main] TRACE AbstractWordWriter - No hyperlink added: 'NamedIEC61850Object' for bookmark 'UML193' not in this document. +2024-09-07 12:39:15,853 [main] TRACE AbstractWordWriter - replacing hyperlink [32744 - 32780] HYPERLINK HierarchyIEC61850Object, UML192... +2024-09-07 12:39:15,858 [main] TRACE AbstractWordWriter - No hyperlink added: 'HierarchyIEC61850Object' for bookmark 'UML192' not in this document. +2024-09-07 12:39:15,861 [main] TRACE AbstractWordWriter - replacing hyperlink [32770 - 32797] HYPERLINK IEC61850Object, UML110... +2024-09-07 12:39:15,867 [main] TRACE AbstractWordWriter - No hyperlink added: 'IEC61850Object' for bookmark 'UML110' not in this document. +2024-09-07 12:39:15,870 [main] TRACE AbstractWordWriter - replacing hyperlink [33034 - 33058] HYPERLINK DpStatusKind, UML82... +2024-09-07 12:39:15,876 [main] TRACE AbstractWordWriter - No hyperlink added: 'DpStatusKind' for bookmark 'UML82' not in this document. +2024-09-07 12:39:15,879 [main] TRACE AbstractWordWriter - replacing hyperlink [33079 - 33099] HYPERLINK Quality, UML339... +2024-09-07 12:39:15,884 [main] TRACE AbstractWordWriter - No hyperlink added: 'Quality' for bookmark 'UML339' not in this document. +2024-09-07 12:39:15,888 [main] TRACE AbstractWordWriter - replacing hyperlink [33135 - 33156] HYPERLINK TimeStamp, UML93... +2024-09-07 12:39:15,893 [main] TRACE AbstractWordWriter - No hyperlink added: 'TimeStamp' for bookmark 'UML93' not in this document. +2024-09-07 12:39:15,896 [main] TRACE AbstractWordWriter - replacing hyperlink [33274 - 33298] HYPERLINK DpStatusKind, UML82... +2024-09-07 12:39:15,901 [main] TRACE AbstractWordWriter - No hyperlink added: 'DpStatusKind' for bookmark 'UML82' not in this document. +2024-09-07 12:39:15,905 [main] TRACE AbstractWordWriter - replacing hyperlink [33325 - 33345] HYPERLINK MFsubst, UML558... +2024-09-07 12:39:15,929 [main] TRACE AbstractWordWriter - replacing hyperlink [33379 - 33398] HYPERLINK BOOLEAN, UML83... +2024-09-07 12:39:15,934 [main] TRACE AbstractWordWriter - No hyperlink added: 'BOOLEAN' for bookmark 'UML83' not in this document. +2024-09-07 12:39:15,938 [main] TRACE AbstractWordWriter - replacing hyperlink [33407 - 33435] HYPERLINK SubstitutionCDC, UML228... +2024-09-07 12:39:15,943 [main] TRACE AbstractWordWriter - No hyperlink added: 'SubstitutionCDC' for bookmark 'UML228' not in this document. +2024-09-07 12:39:15,946 [main] TRACE AbstractWordWriter - replacing hyperlink [33423 - 33443] HYPERLINK MFsubst, UML558... +2024-09-07 12:39:15,969 [main] TRACE AbstractWordWriter - replacing hyperlink [33475 - 33495] HYPERLINK Quality, UML339... +2024-09-07 12:39:15,975 [main] TRACE AbstractWordWriter - No hyperlink added: 'Quality' for bookmark 'UML339' not in this document. +2024-09-07 12:39:15,978 [main] TRACE AbstractWordWriter - replacing hyperlink [33503 - 33531] HYPERLINK SubstitutionCDC, UML228... +2024-09-07 12:39:15,983 [main] TRACE AbstractWordWriter - No hyperlink added: 'SubstitutionCDC' for bookmark 'UML228' not in this document. +2024-09-07 12:39:15,986 [main] TRACE AbstractWordWriter - replacing hyperlink [33519 - 33539] HYPERLINK MFsubst, UML558... +2024-09-07 12:39:16,008 [main] TRACE AbstractWordWriter - replacing hyperlink [33573 - 33592] HYPERLINK BOOLEAN, UML83... +2024-09-07 12:39:16,013 [main] TRACE AbstractWordWriter - No hyperlink added: 'BOOLEAN' for bookmark 'UML83' not in this document. +2024-09-07 12:39:16,016 [main] TRACE AbstractWordWriter - replacing hyperlink [33601 - 33629] HYPERLINK SubstitutionCDC, UML228... +2024-09-07 12:39:16,021 [main] TRACE AbstractWordWriter - No hyperlink added: 'SubstitutionCDC' for bookmark 'UML228' not in this document. +2024-09-07 12:39:16,024 [main] TRACE AbstractWordWriter - replacing hyperlink [33683 - 33712] HYPERLINK UNICODE_STRING255, UML88... +2024-09-07 12:39:16,029 [main] TRACE AbstractWordWriter - No hyperlink added: 'UNICODE_STRING255' for bookmark 'UML88' not in this document. +2024-09-07 12:39:16,032 [main] TRACE AbstractWordWriter - replacing hyperlink [33721 - 33750] HYPERLINK BasePrimitiveCDC, UML217... +2024-09-07 12:39:16,037 [main] TRACE AbstractWordWriter - No hyperlink added: 'BasePrimitiveCDC' for bookmark 'UML217' not in this document. +2024-09-07 12:39:16,040 [main] TRACE AbstractWordWriter - replacing hyperlink [33747 - 33776] HYPERLINK VISIBLE_STRING255, UML89... +2024-09-07 12:39:16,045 [main] TRACE AbstractWordWriter - No hyperlink added: 'VISIBLE_STRING255' for bookmark 'UML89' not in this document. +2024-09-07 12:39:16,048 [main] TRACE AbstractWordWriter - replacing hyperlink [33785 - 33814] HYPERLINK BasePrimitiveCDC, UML217... +2024-09-07 12:39:16,053 [main] TRACE AbstractWordWriter - No hyperlink added: 'BasePrimitiveCDC' for bookmark 'UML217' not in this document. +2024-09-07 12:39:16,055 [main] TRACE AbstractWordWriter - replacing hyperlink [33802 - 33822] HYPERLINK MOcdcNs, UML568... +2024-09-07 12:39:16,079 [main] TRACE AbstractWordWriter - replacing hyperlink [35076 - 35099] HYPERLINK ComposedDA, UML354... +2024-09-07 12:39:16,083 [main] TRACE AbstractWordWriter - No hyperlink added: 'ComposedDA' for bookmark 'UML354' not in this document. +2024-09-07 12:39:16,086 [main] TRACE AbstractWordWriter - replacing hyperlink [35089 - 35104] HYPERLINK DA, UML325... +2024-09-07 12:39:16,092 [main] TRACE AbstractWordWriter - No hyperlink added: 'DA' for bookmark 'UML325' not in this document. +2024-09-07 12:39:16,094 [main] TRACE AbstractWordWriter - replacing hyperlink [35094 - 35126] HYPERLINK NamedIEC61850Object, UML193... +2024-09-07 12:39:16,099 [main] TRACE AbstractWordWriter - No hyperlink added: 'NamedIEC61850Object' for bookmark 'UML193' not in this document. +2024-09-07 12:39:16,102 [main] TRACE AbstractWordWriter - replacing hyperlink [35116 - 35152] HYPERLINK HierarchyIEC61850Object, UML192... +2024-09-07 12:39:16,108 [main] TRACE AbstractWordWriter - No hyperlink added: 'HierarchyIEC61850Object' for bookmark 'UML192' not in this document. +2024-09-07 12:39:16,112 [main] TRACE AbstractWordWriter - replacing hyperlink [35142 - 35169] HYPERLINK IEC61850Object, UML110... +2024-09-07 12:39:16,117 [main] TRACE AbstractWordWriter - No hyperlink added: 'IEC61850Object' for bookmark 'UML110' not in this document. +2024-09-07 12:39:16,120 [main] TRACE AbstractWordWriter - replacing hyperlink [35279 - 35308] HYPERLINK BasePrimitiveCDC, UML217... +2024-09-07 12:39:16,126 [main] TRACE AbstractWordWriter - No hyperlink added: 'BasePrimitiveCDC' for bookmark 'UML217' not in this document. +2024-09-07 12:39:16,130 [main] TRACE AbstractWordWriter - replacing hyperlink [35298 - 35323] HYPERLINK PrimitiveCDC, UML216... +2024-09-07 12:39:16,135 [main] TRACE AbstractWordWriter - No hyperlink added: 'PrimitiveCDC' for bookmark 'UML216' not in this document. +2024-09-07 12:39:16,139 [main] TRACE AbstractWordWriter - replacing hyperlink [35313 - 35329] HYPERLINK CDC, UML215... +2024-09-07 12:39:16,145 [main] TRACE AbstractWordWriter - No hyperlink added: 'CDC' for bookmark 'UML215' not in this document. +2024-09-07 12:39:16,148 [main] TRACE AbstractWordWriter - replacing hyperlink [35319 - 35351] HYPERLINK NamedIEC61850Object, UML193... +2024-09-07 12:39:16,153 [main] TRACE AbstractWordWriter - No hyperlink added: 'NamedIEC61850Object' for bookmark 'UML193' not in this document. +2024-09-07 12:39:16,157 [main] TRACE AbstractWordWriter - replacing hyperlink [35341 - 35377] HYPERLINK HierarchyIEC61850Object, UML192... +2024-09-07 12:39:16,162 [main] TRACE AbstractWordWriter - No hyperlink added: 'HierarchyIEC61850Object' for bookmark 'UML192' not in this document. +2024-09-07 12:39:16,165 [main] TRACE AbstractWordWriter - replacing hyperlink [35367 - 35394] HYPERLINK IEC61850Object, UML110... +2024-09-07 12:39:16,171 [main] TRACE AbstractWordWriter - No hyperlink added: 'IEC61850Object' for bookmark 'UML110' not in this document. +2024-09-07 12:39:16,175 [main] TRACE AbstractWordWriter - replacing hyperlink [35941 - 35973] HYPERLINK PowerSystemResource, UML166... +2024-09-07 12:39:16,179 [main] TRACE AbstractWordWriter - No hyperlink added: 'PowerSystemResource' for bookmark 'UML166' not in this document. +2024-09-07 12:39:16,182 [main] TRACE AbstractWordWriter - replacing hyperlink [35963 - 35991] HYPERLINK IdentifiedObject, UML32... +2024-09-07 12:39:16,188 [main] TRACE AbstractWordWriter - No hyperlink added: 'IdentifiedObject' for bookmark 'UML32' not in this document. +2024-09-07 12:39:16,191 [main] TRACE AbstractWordWriter - replacing hyperlink [36154 - 36172] HYPERLINK String, UML22... +2024-09-07 12:39:16,196 [main] TRACE AbstractWordWriter - No hyperlink added: 'String' for bookmark 'UML22' not in this document. +2024-09-07 12:39:16,199 [main] TRACE AbstractWordWriter - replacing hyperlink [36190 - 36222] HYPERLINK PowerSystemResource, UML166... +2024-09-07 12:39:16,204 [main] TRACE AbstractWordWriter - No hyperlink added: 'PowerSystemResource' for bookmark 'UML166' not in this document. +2024-09-07 12:39:16,207 [main] TRACE AbstractWordWriter - replacing hyperlink [36226 - 36244] HYPERLINK String, UML22... +2024-09-07 12:39:16,212 [main] TRACE AbstractWordWriter - No hyperlink added: 'String' for bookmark 'UML22' not in this document. +2024-09-07 12:39:16,215 [main] TRACE AbstractWordWriter - replacing hyperlink [36249 - 36277] HYPERLINK IdentifiedObject, UML32... +2024-09-07 12:39:16,220 [main] TRACE AbstractWordWriter - No hyperlink added: 'IdentifiedObject' for bookmark 'UML32' not in this document. +2024-09-07 12:39:16,223 [main] TRACE AbstractWordWriter - replacing hyperlink [36277 - 36295] HYPERLINK String, UML22... +2024-09-07 12:39:16,228 [main] TRACE AbstractWordWriter - No hyperlink added: 'String' for bookmark 'UML22' not in this document. +2024-09-07 12:39:16,231 [main] TRACE AbstractWordWriter - replacing hyperlink [36300 - 36328] HYPERLINK IdentifiedObject, UML32... +2024-09-07 12:39:16,237 [main] TRACE AbstractWordWriter - No hyperlink added: 'IdentifiedObject' for bookmark 'UML32' not in this document. +2024-09-07 12:39:16,241 [main] TRACE AbstractWordWriter - replacing hyperlink [36328 - 36346] HYPERLINK String, UML22... +2024-09-07 12:39:16,246 [main] TRACE AbstractWordWriter - No hyperlink added: 'String' for bookmark 'UML22' not in this document. +2024-09-07 12:39:16,249 [main] TRACE AbstractWordWriter - replacing hyperlink [36351 - 36379] HYPERLINK IdentifiedObject, UML32... +2024-09-07 12:39:16,254 [main] TRACE AbstractWordWriter - No hyperlink added: 'IdentifiedObject' for bookmark 'UML32' not in this document. +2024-09-07 12:39:16,254 [main] INFO Util - time=[0:00:02.295] replaced 247 hyperlink placeholders +2024-09-07 12:39:16,255 [main] INFO Util - +2024-09-07 12:39:16,255 [main] ERROR AbstractWordWriter - There were 8 placeholder replacement failures: +2024-09-07 12:39:16,255 [main] ERROR AbstractWordWriter - $ERROR ATTRIBUTE IEC61970CIMVersion, dummy not found in model$ +2024-09-07 12:39:16,255 [main] ERROR AbstractWordWriter - $ERROR IEC61850_NSNAME IEC61850_7_420Namespace not found in model$ +2024-09-07 12:39:16,255 [main] ERROR AbstractWordWriter - $ERROR DIAGRAM DummyPackage, DummyDiagram not found in model$ +2024-09-07 12:39:16,255 [main] ERROR AbstractWordWriter - $ERROR PACKAGE Dummy not found in model$ +2024-09-07 12:39:16,255 [main] ERROR AbstractWordWriter - $ERROR PACKAGE InformativeAndPrivate not found in model$ +2024-09-07 12:39:16,255 [main] ERROR AbstractWordWriter - $ERROR DIAG_NOTE IEC619_70, Main not found in model$ +2024-09-07 12:39:16,255 [main] ERROR AbstractWordWriter - $ERROR CLASS Core, InexistingClassName not found in model$ +2024-09-07 12:39:16,255 [main] ERROR AbstractWordWriter - $ERROR CLASS Core, DumbSubterminal not found in model$ +2024-09-07 12:39:16,255 [main] INFO AbstractWordWriter - Supported placeholder formats: +2024-09-07 12:39:16,255 [main] INFO AbstractWordWriter - startUmlFile..endUml +startUmlAttribute.className.attrName.endUml +startUmlIec61850NsName.className.endUml +startUmlDiagram.containerName.diagName.endUml +startUmlDiagNote.containerName.diagName.endUml +startUmlPresenceConditions.pckName.endUml +startUmlFCs.pckName.endUml +startUmlTrgOps.pckName.endUml +startUmlAbbreviations.pckName.endUml +startUmlSclEnums.pckName.endUml +startUmlPackage.pckName.endUml +startUmlClass.pckName.className.endUml +startUmlLNMapPackage.pckName.endUml +startUmlDataIndex.pckName.endUml +aaùumlObjectNameùbookmarkIDùdd +2024-09-07 12:39:16,255 [main] DEBUG DocWordWriter - restoring original options +2024-09-07 12:39:16,256 [main] INFO OptimOptions - bringing back original view +2024-09-07 12:39:16,294 [main] INFO OptimOptions - enabling pagination +2024-09-07 12:39:16,331 [main] INFO OptimOptions - enabling field updates +2024-09-07 12:39:16,453 [main] INFO OptimOptions - enabling screen updating +2024-09-07 12:39:16,458 [main] DEBUG DocWordWriter - >> current/restored : OptimOptions [viewId=3, normView=false, paginate=true, updFld=true, updScr=true, fastSave=false, spelling=false, grammar=false] +2024-09-07 12:39:16,458 [main] INFO AbstractWordWriter - updating document fields (takes a while)... +2024-09-07 12:39:17,066 [main] INFO DocWordWriter - updateFields: 608 ms +2024-09-07 12:39:17,507 [main] INFO DocWordWriter - updateTablesOfContents: 441 ms +2024-09-07 12:39:17,828 [main] INFO DocWordWriter - updateTablesOfFigures: 321 ms +2024-09-07 12:39:17,828 [main] INFO Util - time=[0:00:01.370] updated document fields +2024-09-07 12:39:17,828 [main] INFO Util - +2024-09-07 12:39:17,828 [main] INFO DocWordWriter - closing MSWord file 'C:\Users\gigi\git\jCleanCim\output\base-small-tool02v03.docx' +2024-09-07 12:39:18,530 [main] INFO DocWordWriter - exiting MSWord application +2024-09-07 12:39:18,536 [main] INFO Util - time=[0:00:26.651] written documentation to C:\Users\gigi\git\jCleanCim\output\base-small-tool02v03.docx +2024-09-07 12:39:18,536 [main] INFO Util - +2024-09-07 12:39:18,536 [main] INFO Util - time=[0:00:31.349] completed all configured steps - exiting +2024-09-07 12:39:18,537 [main] INFO Util - +2024-09-07 12:39:18,537 [main] INFO JCleanCim - completed at: Sat Sep 07 12:39:18 CEST 2024 +2024-09-07 12:39:18,537 [main] INFO JCleanCim - exiting +2024-09-07 16:17:02,293 [main] INFO JCleanCim - started at: Sat Sep 07 16:17:02 CEST 2024 +2024-09-07 16:17:02,294 [main] INFO JCleanCim - execution environment: +2024-09-07 16:17:02,294 [main] INFO JCleanCim - os.name = Windows 10 +2024-09-07 16:17:02,294 [main] INFO JCleanCim - java.version = 1.8.0_351 +2024-09-07 16:17:02,294 [main] INFO JCleanCim - java.home = C:\Program Files (x86)\Java\jre1.8.0_351 +2024-09-07 16:17:02,295 [main] INFO JCleanCim - java.class.path = C:\Users\gigi\git\jCleanCim\build\prod\classes;C:\Users\gigi\git\jCleanCim\lib\eaapi.jar;C:\Users\gigi\git\jCleanCim\dlls;C:\Users\gigi\git\jCleanCim\lib\commons-cli-1.2.jar;C:\Users\gigi\git\jCleanCim\config;C:\Users\gigi\git\jCleanCim\input;C:\Users\gigi\git\jCleanCim\lib\jacob.jar;C:\Users\gigi\git\jCleanCim\test\config;C:\Users\gigi\git\jCleanCim\test\input;C:\Users\gigi\git\jCleanCim\lib\commons-logging-1.1.1.jar;C:\Users\gigi\git\jCleanCim\lib\log4j-1.2.17.jar;C:\Users\gigi\git\jCleanCim\lib\commons-lang-2.6.jar;C:\Users\gigi\git\jCleanCim\lib\junit-4.8.2.jar;C:\Users\gigi\git\jCleanCim\lib\jackcess-2.1.0.jar;C:\Users\gigi\git\jCleanCim\lib\poi-ooxml-3.15-beta2.jar +2024-09-07 16:17:02,306 [main] INFO Util - loaded properties from resource build.properties +2024-09-07 16:17:02,306 [main] INFO JCleanCim - jCleanCim version: 02v03 +2024-09-07 16:17:02,306 [main] INFO JCleanCim - +2024-09-07 16:17:02,319 [main] INFO Util - loaded properties from resource config.properties +2024-09-07 16:17:02,320 [main] INFO Util - loaded properties from resource config61850.properties +2024-09-07 16:17:02,321 [main] INFO Util - loaded properties from resource build.properties +2024-09-07 16:17:02,325 [main] INFO Config - EA model specified in config.properties: 'C:\Users\gigi\git\jCleanCim\input\IEC62351-7-Ed2-FDIS-20240901.eap' +2024-09-07 16:17:02,326 [main] INFO Config - blank image file: 'C:\Users\gigi\git\jCleanCim\input\blank.png' +2024-09-07 16:17:02,330 [main] DEBUG Config - Property validation.rules.off not found in config.properties. +2024-09-07 16:17:02,331 [main] INFO Util - Creating backup of existing file: C:\Users\gigi\git\jCleanCim\output\pics.17697982682700 +2024-09-07 16:17:02,333 [main] INFO Config - pics output directory: 'C:\Users\gigi\git\jCleanCim\output\pics' +2024-09-07 16:17:02,334 [main] INFO Config - input MS Word template: 'C:\Users\gigi\git\jCleanCim\input\57-62351-7-Ed2-FDIS-template_20240901.docx' +2024-09-07 16:17:02,335 [main] INFO Config - output MS Word file: 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 16:17:02,337 [main] INFO Util - Creating backup of existing file: C:\Users\gigi\git\jCleanCim\output\mibs.17697987929300 +2024-09-07 16:17:02,339 [main] INFO Config - full MIBs output directory: 'C:\Users\gigi\git\jCleanCim\output\mibs' +2024-09-07 16:17:02,339 [main] INFO Util - Creating backup of existing file: C:\Users\gigi\git\jCleanCim\output\mibslight.17697990770000 +2024-09-07 16:17:02,341 [main] INFO Config - light MIBs output directory: 'C:\Users\gigi\git\jCleanCim\output\mibslight' +2024-09-07 16:17:02,342 [main] DEBUG Config - Property docgen.word.styles.prefix.toc not found in config.properties. +2024-09-07 16:17:02,342 [main] DEBUG Config - Property docgen.word.styles.prefix.head not found in config.properties. +2024-09-07 16:17:02,342 [main] DEBUG Config - Property docgen.skipForCustomStereotypes not found in config.properties. +2024-09-07 16:17:02,342 [main] INFO JCleanCim - Config: +app.skipTiming = +docgen.iec61850.includeMetamodelInheritance = +docgen.iec61850.writeUmlTypes = +docgen.includeInformative = +docgen.includeNonPublic = +docgen.on = true +docgen.printHtml = +docgen.showCustomStereotypes = true +docgen.showNamespacePackages = Base, Dynamics, ExtEuBase, Ext1 +docgen.word.analysePlaceholders = +docgen.word.inTemplate = 57-62351-7-Ed2-FDIS-template_20240901.docx +docgen.word.includeInheritancePath = false +docgen.word.introToFigureBefore = +docgen.word.outDocument = 57-62351-7-Ed2-FDIS_20240901.docx +docgen.word.saveReopenEvery = 12 +docgen.word.styles.fig = FIGURE, Picture, Normal, Standard, Normal +docgen.word.styles.figcapt = FIGURE-title, Caption, Beschriftung, Légende +docgen.word.styles.para = PARAGRAPH, Normal, Standard, Normal +docgen.word.styles.tabcapt = TABLE-title, Caption, Beschriftung, Légende +docgen.word.styles.tabcell = TABLE-cell, Normal, Standard, Normal +docgen.word.styles.tabhead = TABLE-col-heading, Normal, Standard, Normal +docgen.word.useDocFormat = true +docgen.word.useHyperlinks = true +docgen.xml.scope = +mibgen.on = true +mibgen.outDirFull = mibs +mibgen.outDirLight = mibslight +model.builder = japi +model.filename = IEC62351-7-Ed2-FDIS-20240901.eap +model.nature.iec61850 = IEC61850Domain, My61850Extensions, NonCIM, IEC61850_SCL_mappings, MyNonCimExtensions +model.nature.iec62351 = IEC62351 +model.picsRelpath = +profiles.crosscheck.on = +profiles.dirnames = +profiles.docgen.on = +profiles.relpath = +project.version = 02v03 +statistics.cim.ignoreDomainClassAttributes = true +statistics.cim.ignoreIdObjectInheritance = true +statistics.on = false +statistics.tagsToIgnore = GUIDBasedOn +validation.associations.off = +validation.attributes.off = +validation.classes.off = +validation.dependencies.off = +validation.diagrams.off = +validation.iec61850.package72Top = IEC61850_7_2 +validation.iec61850.packageFC = FunctionalConstraints +validation.iec61850.packageLnMaps = Functions +validation.iec61850.packageMetaModel = MetaModel +validation.iec61850.packagePresCond = PresenceConditions +validation.iec61850.packageTrgOp = TriggerOptions +validation.iec61850.packages72 = FunctionalConstraints, TriggerOptions, ACSIEnums, CoreTypes, MetaModel +validation.iec61850.packages73 = PresenceConditions, ConstructedDAs, CommonDataClasses, DAEnums,CommonDataClasses_90_3, DAEnums_90_3,CommonDataClasses_90_4, DAEnums_90_4,CommonDataClasses_90_6, DAEnums_90_6,CommonDataClasses_90_8, DAEnums_90_8,CommonDataClasses_90_10, DAEnums_90_10,CommonDataClasses_90_17, DAEnums_90_17,CommonDataClasses_7_410, DAEnums_7_410,CommonDataClasses_7_420, DAEnums_7_420,CommonDataClasses_25_2, DAEnums_25_2 +validation.iec61850.packages74 = Functions, Abbreviations, LogicalNodes, DOEnums,Abbreviations_90_3, LogicalNodes_90_3, DOEnums_90_3,Abbreviations_90_4, LogicalNodes_90_4, DOEnums_90_4,Abbreviations_90_6, LogicalNodes_90_6, DOEnums_90_6,Abbreviations_90_8, LogicalNodes_90_8, DOEnums_90_8,Abbreviations_90_9, LogicalNodes_90_9, DOEnums_90_9,Abbreviations_90_10, LogicalNodes_90_10, DOEnums_90_10,Abbreviations_90_11, LogicalNodes_90_11, DOEnums_90_11,Abbreviations_90_17, LogicalNodes_90_17, DOEnums_90_17,Abbreviations_7_410, LogicalNodes_7_410, DOEnums_7_410,Abbreviations_7_420, LogicalNodes_7_420, DOEnums_7_420,Abbreviations_7_499, LogicalNodes_7_499, DOEnums_7_499,Abbreviations_61869-9, LogicalNodes_61869-9, Abbreviations_62271-3, LogicalNodes_62271-3, Abbreviations_25_2, LogicalNodes_25_2, DOEnums_25_2 +validation.iec61850.packagesBasic = CoreTypes +validation.iec61850.packagesCdc = CommonDataClasses, CommonDataClasses_90_3, CommonDataClasses_90_4, CommonDataClasses_90_6, CommonDataClasses_90_8, CommonDataClasses_90_9, CommonDataClasses_90_10, CommonDataClasses_90_17, CommonDataClasses_7_410, CommonDataClasses_7_420, CommonDataClasses_25_2 +validation.iec61850.packagesDa = ConstructedDAs +validation.iec61850.packagesDoAbbr = Abbreviations, Abbreviations_90_3, Abbreviations_90_4, Abbreviations_90_6, Abbreviations_90_8, Abbreviations_90_9, Abbreviations_90_10, Abbreviations_90_11, Abbreviations_90_17, Abbreviations_7_410, Abbreviations_7_420, Abbreviations_7_499, Abbreviations_61869-9, Abbreviations_62271-3, Abbreviations_25_2 +validation.iec61850.packagesEnumsXml = DomainTypesEnums, DOEnums, DAEnums, DOEnums_90_3, DAEnums_90_3, DOEnums_90_4, DAEnums_90_4, DOEnums_90_6, DAEnums_90_6, DOEnums_90_8, DAEnums_90_8, DOEnums_90_9, DAEnums_90_9, DOEnums_90_10, DAEnums_90_10, DOEnums_90_11, DAEnums_90_11, DOEnums_90_17, DAEnums_90_17, DOEnums_7_410, DAEnums_7_410, DOEnums_7_420, DAEnums_7_420, DOEnums_7_499, DAEnums_7_499, DOEnums_25_2, DAEnums_25_2 +validation.iec61850.packagesLn = LogicalNodes, LogicalNodes_90_3, LogicalNodes_90_4, LogicalNodes_90_6, LogicalNodes_90_8, LogicalNodes_90_9, LogicalNodes_90_10, LogicalNodes_90_11, LogicalNodes_90_17, LogicalNodes_7_410, LogicalNodes_7_420, LogicalNodes_7_499, LogicalNodes_61869-9, LogicalNodes_62271-3, LogicalNodes_7_420, LogicalNodes_25_2 +validation.logging.verbose = +validation.on = false +validation.operations.off = +validation.packages.off = +validation.packagesDataIndex = Core, LogicalNodes, CommonDataClasses, LogicalNodes_90_3, CommonDataClasses_90_3, LogicalNodes_90_4, CommonDataClasses_90_4, LogicalNodes_90_6, CommonDataClasses_90_6, LogicalNodes_90_8, CommonDataClasses_90_8, LogicalNodes_90_9, CommonDataClasses_90_9, LogicalNodes_90_10, CommonDataClasses_90_10, LogicalNodes_90_11, CommonDataClasses_90_11, LogicalNodes_90_17, CommonDataClasses_90_17, LogicalNodes_7_410, CommonDataClasses_7_410, LogicalNodes_7_420, LogicalNodes_7_499, CommonDataClasses_7_420, LogicalNodes_61869-9, LogicalNodes_62271-3, LogicalNodes_25_2, CommonDataClasses_25_2 +validation.scope = +xmiexport.dialects = +xmiexport.on = + +2024-09-07 16:17:02,357 [main] INFO Util - +2024-09-07 16:17:02,357 [main] INFO Util - ================================================ +2024-09-07 16:17:02,357 [main] INFO Util - building model from EA EA Java API + ea.dll... +2024-09-07 16:17:02,357 [main] INFO Util - ================================================ +2024-09-07 16:17:02,363 [main] INFO Util - +2024-09-07 16:17:02,363 [main] INFO Util - ------------------------------------------------ +2024-09-07 16:17:02,364 [main] INFO Util - initialising EA builder... +2024-09-07 16:17:03,374 [main] INFO EaModelBuilder - EA version: build 1623 +2024-09-07 16:17:03,404 [main] INFO Util - time=[0:00:01.010] initialised EA builder. +2024-09-07 16:17:03,404 [main] INFO Util - +2024-09-07 16:17:03,405 [main] INFO Util - +2024-09-07 16:17:03,405 [main] INFO Util - ------------------------------------------------ +2024-09-07 16:17:03,405 [main] INFO Util - opening EA file 'C:\Users\gigi\git\jCleanCim\input\IEC62351-7-Ed2-FDIS-20240901.eap'... +2024-09-07 16:17:21,516 [main] INFO Util - time=[0:00:18.111] opened EA file. +2024-09-07 16:17:21,516 [main] INFO Util - +2024-09-07 16:17:21,516 [main] INFO Util - +2024-09-07 16:17:21,517 [main] INFO Util - ------------------------------------------------ +2024-09-07 16:17:21,517 [main] INFO Util - reading model from EA with iteration API (this will take a while)... +2024-09-07 16:17:21,604 [main] INFO PackageBuilder - processing model package iso (0) ... +2024-09-07 16:17:21,648 [main] INFO PackageBuilder - processing top package standard (0) ... +2024-09-07 16:17:21,688 [main] INFO PackageBuilder - processing package iec62351 (0) ... +2024-09-07 16:17:21,765 [main] INFO PackageBuilder - processing package part7 (0) ... +2024-09-07 16:17:21,989 [main] INFO PackageBuilder - processing package Profiles (0) ... +2024-09-07 16:17:22,015 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Profiles, _objData=UmlObjectData [id=51, uuid={4642A2B9-A297-45be-A2B5-28C4F1A2B373}, since=null, name=Part7Profiles, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-07 16:17:22,048 [main] INFO PackageBuilder - processing package nsmAgent (0) ... +2024-09-07 16:17:22,061 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=nsmAgent, _objData=UmlObjectData [id=52, uuid={8F3F8B93-6E15-4fcf-9C40-83EB793F28A5}, since=null, name=nsmAgent, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-07 16:17:22,454 [main] TRACE ClassBuilder - Class Attribute (0 in package nsmAgent) +2024-09-07 16:17:22,558 [main] DEBUG AssociationEndBuilder - Updated target type to Attribute +2024-09-07 16:17:22,566 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=11, uuid=6512bd43-d9ca-36e0-ac99-0b0a82652dca, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=12, uuid=c20ad4d7-6fe9-3759-aa27-a0c99bff6710, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=185, uuid={037D3A56-F1D8-42bb-9EFD-F6E2309B7770}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 16:17:22,567 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=11, uuid=6512bd43-d9ca-36e0-ac99-0b0a82652dca, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=12, uuid=c20ad4d7-6fe9-3759-aa27-a0c99bff6710, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=185, uuid={037D3A56-F1D8-42bb-9EFD-F6E2309B7770}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Attribute +2024-09-07 16:17:22,567 [main] TRACE ClassBuilder - read from EA: nsmAgent::Attribute +2024-09-07 16:17:22,572 [main] TRACE ClassBuilder - Class Attribute (0 in package nsmAgent) +2024-09-07 16:17:22,640 [main] DEBUG AssociationEndBuilder - Updated target type to Attribute +2024-09-07 16:17:22,648 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=15, uuid=9bf31c7f-f062-336a-96d3-c8bd1f8f2ff3, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=16, uuid=c74d97b0-1eae-357e-84aa-9d5bade97baf, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=179, uuid={AB14A505-E58D-4c64-BE95-5835E1FE0435}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 16:17:22,648 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=15, uuid=9bf31c7f-f062-336a-96d3-c8bd1f8f2ff3, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=16, uuid=c74d97b0-1eae-357e-84aa-9d5bade97baf, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=179, uuid={AB14A505-E58D-4c64-BE95-5835E1FE0435}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Attribute +2024-09-07 16:17:22,648 [main] TRACE ClassBuilder - read from EA: nsmAgent::Attribute +2024-09-07 16:17:22,654 [main] TRACE ClassBuilder - Class Attribute (0 in package nsmAgent) +2024-09-07 16:17:22,723 [main] DEBUG AssociationEndBuilder - Updated target type to Attribute +2024-09-07 16:17:22,733 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=19, uuid=1f0e3dad-9990-3345-b743-9f8ffabdffc4, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=20, uuid=98f13708-2101-34c4-b568-7be6106a3b84, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=180, uuid={81333E16-399C-4a6d-83B9-BAC271270F32}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 16:17:22,733 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=19, uuid=1f0e3dad-9990-3345-b743-9f8ffabdffc4, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=20, uuid=98f13708-2101-34c4-b568-7be6106a3b84, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=180, uuid={81333E16-399C-4a6d-83B9-BAC271270F32}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Attribute +2024-09-07 16:17:22,733 [main] TRACE ClassBuilder - read from EA: nsmAgent::Attribute +2024-09-07 16:17:22,738 [main] TRACE ClassBuilder - Class Attribute (0 in package nsmAgent) +2024-09-07 16:17:22,806 [main] DEBUG AssociationEndBuilder - Updated target type to Attribute +2024-09-07 16:17:22,814 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=23, uuid=37693cfc-7480-39e4-9d87-b8c7d8b9aacd, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=24, uuid=1ff1de77-4005-38da-93f4-2943881c655f, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=183, uuid={A10A942F-369A-4aa5-88B5-9F7AD36E5852}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 16:17:22,814 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=23, uuid=37693cfc-7480-39e4-9d87-b8c7d8b9aacd, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=24, uuid=1ff1de77-4005-38da-93f4-2943881c655f, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=183, uuid={A10A942F-369A-4aa5-88B5-9F7AD36E5852}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Attribute +2024-09-07 16:17:22,814 [main] TRACE ClassBuilder - read from EA: nsmAgent::Attribute +2024-09-07 16:17:22,819 [main] TRACE ClassBuilder - Class Attribute (0 in package nsmAgent) +2024-09-07 16:17:22,886 [main] DEBUG AssociationEndBuilder - Updated target type to Attribute +2024-09-07 16:17:22,894 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=27, uuid=02e74f10-e032-3ad8-a8d1-38f2b4fdd6f0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=28, uuid=33e75ff0-9dd6-31bb-a69f-351039152189, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=184, uuid={0A546037-FD29-4ca6-8123-D9FEDAA5A7C4}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 16:17:22,894 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=27, uuid=02e74f10-e032-3ad8-a8d1-38f2b4fdd6f0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=28, uuid=33e75ff0-9dd6-31bb-a69f-351039152189, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=184, uuid={0A546037-FD29-4ca6-8123-D9FEDAA5A7C4}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Attribute +2024-09-07 16:17:22,894 [main] TRACE ClassBuilder - read from EA: nsmAgent::Attribute +2024-09-07 16:17:22,899 [main] TRACE ClassBuilder - Class Attribute (0 in package nsmAgent) +2024-09-07 16:17:22,968 [main] DEBUG AssociationEndBuilder - Updated target type to Attribute +2024-09-07 16:17:22,975 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=31, uuid=c16a5320-fa47-3530-9958-3c34fd356ef5, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=32, uuid=6364d3f0-f495-36ab-9dcf-8d3b5c6e0b01, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=186, uuid={5A0BDE1C-4479-472a-95D9-5E2FF2FB1D48}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 16:17:22,976 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=31, uuid=c16a5320-fa47-3530-9958-3c34fd356ef5, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=32, uuid=6364d3f0-f495-36ab-9dcf-8d3b5c6e0b01, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=186, uuid={5A0BDE1C-4479-472a-95D9-5E2FF2FB1D48}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Attribute +2024-09-07 16:17:22,976 [main] TRACE ClassBuilder - read from EA: nsmAgent::Attribute +2024-09-07 16:17:22,981 [main] TRACE ClassBuilder - Class Attribute (0 in package nsmAgent) +2024-09-07 16:17:23,051 [main] DEBUG AssociationEndBuilder - Updated target type to Attribute +2024-09-07 16:17:23,059 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=35, uuid=1c383cd3-0b7c-398a-b502-93adfecb7b18, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=36, uuid=19ca14e7-ea63-38a4-ae0e-b13d585e4c22, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=187, uuid={D024B2AD-A446-46a8-9026-6CAB3B506EAD}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 16:17:23,059 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=35, uuid=1c383cd3-0b7c-398a-b502-93adfecb7b18, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=36, uuid=19ca14e7-ea63-38a4-ae0e-b13d585e4c22, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=187, uuid={D024B2AD-A446-46a8-9026-6CAB3B506EAD}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Attribute +2024-09-07 16:17:23,059 [main] TRACE ClassBuilder - read from EA: nsmAgent::Attribute +2024-09-07 16:17:23,065 [main] TRACE ClassBuilder - Class Attribute (0 in package nsmAgent) +2024-09-07 16:17:23,133 [main] DEBUG AssociationEndBuilder - Updated target type to Attribute +2024-09-07 16:17:23,143 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=39, uuid=d67d8ab4-f4c1-3bf2-aaa3-53e27879133c, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=40, uuid=d645920e-395f-3dad-bbbb-ed0eca3fe2e0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=207, uuid={EF3A2C3D-0E4D-4d2e-98CA-E29A17F69D6F}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 16:17:23,143 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=39, uuid=d67d8ab4-f4c1-3bf2-aaa3-53e27879133c, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=40, uuid=d645920e-395f-3dad-bbbb-ed0eca3fe2e0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=207, uuid={EF3A2C3D-0E4D-4d2e-98CA-E29A17F69D6F}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Attribute +2024-09-07 16:17:23,143 [main] TRACE ClassBuilder - read from EA: nsmAgent::Attribute +2024-09-07 16:17:23,149 [main] TRACE ClassBuilder - Class Attribute (0 in package nsmAgent) +2024-09-07 16:17:23,217 [main] DEBUG AssociationEndBuilder - Updated target type to Attribute +2024-09-07 16:17:23,225 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=43, uuid=17e62166-fc85-36df-a4d1-bc0e1742c08b, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=44, uuid=f7177163-c833-3ff4-b38f-c8d2872f1ec6, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=188, uuid={779BD3EC-A6F0-4fa2-AF25-CF73DEB80D9D}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 16:17:23,225 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=43, uuid=17e62166-fc85-36df-a4d1-bc0e1742c08b, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=44, uuid=f7177163-c833-3ff4-b38f-c8d2872f1ec6, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=188, uuid={779BD3EC-A6F0-4fa2-AF25-CF73DEB80D9D}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Attribute +2024-09-07 16:17:23,225 [main] TRACE ClassBuilder - read from EA: nsmAgent::Attribute +2024-09-07 16:17:23,231 [main] TRACE ClassBuilder - Class Class (0 in package nsmAgent) +2024-09-07 16:17:23,257 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::Class, _objData=UmlObjectData [id=3451, uuid={6E8148A7-7F05-41a0-9B96-4DE1404873EE}, since=null, name=isActive, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:23,315 [main] DEBUG AssociationEndBuilder - Updated target type to Class +2024-09-07 16:17:23,323 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=48, uuid=642e92ef-b794-3173-8881-b53e1e1b18b6, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=49, uuid=f457c545-a9de-388f-98ec-ee47145a72c0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=181, uuid={B87BF513-6F00-4a87-8745-0EFE6669608B}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 16:17:23,324 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=48, uuid=642e92ef-b794-3173-8881-b53e1e1b18b6, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=49, uuid=f457c545-a9de-388f-98ec-ee47145a72c0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=181, uuid={B87BF513-6F00-4a87-8745-0EFE6669608B}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Class +2024-09-07 16:17:23,324 [main] TRACE ClassBuilder - read from EA: nsmAgent::Class +2024-09-07 16:17:23,328 [main] TRACE ClassBuilder - Class Class (0 in package nsmAgent) +2024-09-07 16:17:23,350 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::Class, _objData=UmlObjectData [id=3982, uuid={0ADC0F06-862E-4bf0-91E6-77D5A0ACAC93}, since=null, name=isActive, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:23,408 [main] DEBUG AssociationEndBuilder - Updated target type to Class +2024-09-07 16:17:23,415 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=53, uuid=d82c8d16-19ad-3176-9665-453cfb2e55f0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=54, uuid=a684ecee-e76f-3522-b732-86a895bc8436, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=226, uuid={18809321-3AB3-4ee2-8EFB-837D3C11C6DB}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 16:17:23,415 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=53, uuid=d82c8d16-19ad-3176-9665-453cfb2e55f0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=54, uuid=a684ecee-e76f-3522-b732-86a895bc8436, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=226, uuid={18809321-3AB3-4ee2-8EFB-837D3C11C6DB}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Class +2024-09-07 16:17:23,415 [main] TRACE ClassBuilder - read from EA: nsmAgent::Class +2024-09-07 16:17:23,421 [main] TRACE ClassBuilder - Class Class (0 in package nsmAgent) +2024-09-07 16:17:23,441 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::Class, _objData=UmlObjectData [id=3442, uuid={59E9AD9F-FC10-4f48-B814-DA381B64951D}, since=null, name=isActive, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:23,498 [main] DEBUG AssociationEndBuilder - Updated target type to Class +2024-09-07 16:17:23,505 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=58, uuid=66f041e1-6a60-328b-85a7-e228a89c3799, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=59, uuid=093f65e0-80a2-35f8-876b-1c5722a46aa2, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=182, uuid={3E772D79-C1EA-4a57-A5C1-11E871B0C5C7}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 16:17:23,506 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=58, uuid=66f041e1-6a60-328b-85a7-e228a89c3799, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=59, uuid=093f65e0-80a2-35f8-876b-1c5722a46aa2, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=182, uuid={3E772D79-C1EA-4a57-A5C1-11E871B0C5C7}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Class +2024-09-07 16:17:23,506 [main] TRACE ClassBuilder - read from EA: nsmAgent::Class +2024-09-07 16:17:23,512 [main] TRACE ClassBuilder - Class health (0 in package nsmAgent) +2024-09-07 16:17:23,534 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::health, _objData=UmlObjectData [id=3454, uuid={CC8861DB-2567-4147-A044-BA3F2890EF3C}, since=null, name=Version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:23,579 [main] DEBUG AssociationEndBuilder - Updated source type to health +2024-09-07 16:17:23,579 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=11, uuid=6512bd43-d9ca-36e0-ac99-0b0a82652dca, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=health, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=12, uuid=c20ad4d7-6fe9-3759-aa27-a0c99bff6710, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=185, uuid={037D3A56-F1D8-42bb-9EFD-F6E2309B7770}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::health +2024-09-07 16:17:23,579 [main] TRACE ClassBuilder - read from EA: nsmAgent::health +2024-09-07 16:17:23,585 [main] TRACE ClassBuilder - Class identity (0 in package nsmAgent) +2024-09-07 16:17:23,606 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::identity, _objData=UmlObjectData [id=3453, uuid={FCEB4C51-4294-4255-B547-06FC8EAD1631}, since=null, name=Version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:23,653 [main] DEBUG AssociationEndBuilder - Updated source type to identity +2024-09-07 16:17:23,653 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=27, uuid=02e74f10-e032-3ad8-a8d1-38f2b4fdd6f0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=identity, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=28, uuid=33e75ff0-9dd6-31bb-a69f-351039152189, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=184, uuid={0A546037-FD29-4ca6-8123-D9FEDAA5A7C4}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::identity +2024-09-07 16:17:23,653 [main] TRACE ClassBuilder - read from EA: nsmAgent::identity +2024-09-07 16:17:23,659 [main] TRACE ClassBuilder - Class index (0 in package nsmAgent) +2024-09-07 16:17:23,679 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::index, _objData=UmlObjectData [id=3452, uuid={94DC5272-A241-486c-B0B9-E954FC9CEEB9}, since=null, name=Version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:23,725 [main] DEBUG AssociationEndBuilder - Updated source type to index +2024-09-07 16:17:23,726 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=23, uuid=37693cfc-7480-39e4-9d87-b8c7d8b9aacd, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=index, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=24, uuid=1ff1de77-4005-38da-93f4-2943881c655f, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=183, uuid={A10A942F-369A-4aa5-88B5-9F7AD36E5852}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::index +2024-09-07 16:17:23,726 [main] TRACE ClassBuilder - read from EA: nsmAgent::index +2024-09-07 16:17:23,732 [main] TRACE ClassBuilder - Class nsmAgent (0 in package nsmAgent) +2024-09-07 16:17:23,756 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::nsmAgent, _objData=UmlObjectData [id=3448, uuid={5FAAD04C-5CF2-4de7-9E7A-87ED0BF31C92}, since=null, name=mibPrefix, alias=, stereotype=, visibility=public, txtDescription='The prefix to be added to the each Attributes when used within this Agent branch', htmlDescription='

The prefix to be added to the each Attributes when used within this Agent branch

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=string, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:23,765 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::nsmAgent, _objData=UmlObjectData [id=3449, uuid={91C49511-AC32-48bc-B58E-2B08325AECF0}, since=null, name=objectIdentity, alias=, stereotype=, visibility=public, txtDescription='The branch identifier', htmlDescription='

The branch identifier

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=string, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:23,775 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::nsmAgent, _objData=UmlObjectData [id=3450, uuid={ED9B83E7-AE09-4070-96DD-DC944F967E05}, since=null, name=objectBranchId, alias=, stereotype=, visibility=public, txtDescription='The branch identifier', htmlDescription='

The branch identifier

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=string, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:23,827 [main] DEBUG AssociationEndBuilder - Updated source type to nsmAgent +2024-09-07 16:17:23,827 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=58, uuid=66f041e1-6a60-328b-85a7-e228a89c3799, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=nsmAgent, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=59, uuid=093f65e0-80a2-35f8-876b-1c5722a46aa2, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=182, uuid={3E772D79-C1EA-4a57-A5C1-11E871B0C5C7}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::nsmAgent +2024-09-07 16:17:23,827 [main] TRACE ClassBuilder - read from EA: nsmAgent::nsmAgent +2024-09-07 16:17:23,832 [main] TRACE ClassBuilder - Class nsmEntry (0 in package nsmAgent) +2024-09-07 16:17:23,855 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::nsmEntry, _objData=UmlObjectData [id=3979, uuid={21B90413-2706-49d1-A52C-E5C36E7666D4}, since=null, name=mibPrefix, alias=, stereotype=, visibility=public, txtDescription='The prefix to be added to the each Attributes when used within this Agent branch', htmlDescription='

The prefix to be added to the each Attributes when used within this Agent branch

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=string, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:23,866 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::nsmEntry, _objData=UmlObjectData [id=3980, uuid={1140893C-EF40-4d4c-908C-CB302BACA4CB}, since=null, name=objectIdentity, alias=, stereotype=, visibility=public, txtDescription='The branch identifier', htmlDescription='

The branch identifier

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=string, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:23,874 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::nsmEntry, _objData=UmlObjectData [id=3981, uuid={D16EB47B-7D14-4b5a-87B0-9E3757C72F57}, since=null, name=objectBranchId, alias=, stereotype=, visibility=public, txtDescription='The branch identifier', htmlDescription='

The branch identifier

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=string, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:23,921 [main] DEBUG AssociationEndBuilder - Updated source type to nsmEntry +2024-09-07 16:17:23,921 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=53, uuid=d82c8d16-19ad-3176-9665-453cfb2e55f0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=nsmEntry, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=54, uuid=a684ecee-e76f-3522-b732-86a895bc8436, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=226, uuid={18809321-3AB3-4ee2-8EFB-837D3C11C6DB}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::nsmEntry +2024-09-07 16:17:23,921 [main] TRACE ClassBuilder - read from EA: nsmAgent::nsmEntry +2024-09-07 16:17:23,927 [main] TRACE ClassBuilder - Class nsmEvent (0 in package nsmAgent) +2024-09-07 16:17:23,949 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::nsmEvent, _objData=UmlObjectData [id=3443, uuid={897C9792-FFA0-4111-80BB-4973BBF14FBE}, since=null, name=mibPrefix, alias=, stereotype=, visibility=public, txtDescription='The prefix to be added to the each Attributes when used within this Agent branch', htmlDescription='

The prefix to be added to the each Attributes when used within this Agent branch

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=string, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:23,959 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::nsmEvent, _objData=UmlObjectData [id=3444, uuid={46527C35-A279-40fb-90C3-546B6430D724}, since=null, name=objectIdentity, alias=, stereotype=, visibility=public, txtDescription='The branch identifier', htmlDescription='

The branch identifier

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=string, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:23,969 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::nsmEvent, _objData=UmlObjectData [id=3445, uuid={07EF49E6-1576-43ed-9364-792638FA9A7F}, since=null, name=objectBranchId, alias=, stereotype=, visibility=public, txtDescription='The branch identifier', htmlDescription='

The branch identifier

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=string, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:24,014 [main] DEBUG AssociationEndBuilder - Updated source type to nsmEvent +2024-09-07 16:17:24,014 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=48, uuid=642e92ef-b794-3173-8881-b53e1e1b18b6, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=nsmEvent, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=49, uuid=f457c545-a9de-388f-98ec-ee47145a72c0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=181, uuid={B87BF513-6F00-4a87-8745-0EFE6669608B}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::nsmEvent +2024-09-07 16:17:24,015 [main] TRACE ClassBuilder - read from EA: nsmAgent::nsmEvent +2024-09-07 16:17:24,020 [main] TRACE ClassBuilder - Class performance (0 in package nsmAgent) +2024-09-07 16:17:24,040 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::performance, _objData=UmlObjectData [id=3455, uuid={F52F6387-CDFF-4a2a-B4C3-3E25870BE05A}, since=null, name=Version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:24,087 [main] DEBUG AssociationEndBuilder - Updated source type to performance +2024-09-07 16:17:24,087 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=31, uuid=c16a5320-fa47-3530-9958-3c34fd356ef5, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=performance, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=32, uuid=6364d3f0-f495-36ab-9dcf-8d3b5c6e0b01, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=186, uuid={5A0BDE1C-4479-472a-95D9-5E2FF2FB1D48}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::performance +2024-09-07 16:17:24,087 [main] TRACE ClassBuilder - read from EA: nsmAgent::performance +2024-09-07 16:17:24,093 [main] TRACE ClassBuilder - Class protocol (0 in package nsmAgent) +2024-09-07 16:17:24,113 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::protocol, _objData=UmlObjectData [id=3447, uuid={F2329AA5-0361-4f8c-92BD-CE45DB120CE3}, since=null, name=Version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:24,160 [main] DEBUG AssociationEndBuilder - Updated source type to protocol +2024-09-07 16:17:24,160 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=15, uuid=9bf31c7f-f062-336a-96d3-c8bd1f8f2ff3, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=protocol, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=16, uuid=c74d97b0-1eae-357e-84aa-9d5bade97baf, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=179, uuid={AB14A505-E58D-4c64-BE95-5835E1FE0435}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::protocol +2024-09-07 16:17:24,160 [main] TRACE ClassBuilder - read from EA: nsmAgent::protocol +2024-09-07 16:17:24,165 [main] TRACE ClassBuilder - Class security (0 in package nsmAgent) +2024-09-07 16:17:24,186 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::security, _objData=UmlObjectData [id=3446, uuid={7B1451A9-BA4A-4172-938F-AE95484B650C}, since=null, name=Version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:24,234 [main] DEBUG AssociationEndBuilder - Updated source type to security +2024-09-07 16:17:24,234 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=19, uuid=1f0e3dad-9990-3345-b743-9f8ffabdffc4, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=security, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=20, uuid=98f13708-2101-34c4-b568-7be6106a3b84, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=180, uuid={81333E16-399C-4a6d-83B9-BAC271270F32}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::security +2024-09-07 16:17:24,234 [main] TRACE ClassBuilder - read from EA: nsmAgent::security +2024-09-07 16:17:24,242 [main] TRACE ClassBuilder - Class setvalue (0 in package nsmAgent) +2024-09-07 16:17:24,262 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::setvalue, _objData=UmlObjectData [id=3456, uuid={5980FD0B-7618-42e2-8A8F-B4A3BA69C461}, since=null, name=Version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:24,310 [main] DEBUG AssociationEndBuilder - Updated source type to setvalue +2024-09-07 16:17:24,311 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=35, uuid=1c383cd3-0b7c-398a-b502-93adfecb7b18, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=setvalue, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=36, uuid=19ca14e7-ea63-38a4-ae0e-b13d585e4c22, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=187, uuid={D024B2AD-A446-46a8-9026-6CAB3B506EAD}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::setvalue +2024-09-07 16:17:24,311 [main] TRACE ClassBuilder - read from EA: nsmAgent::setvalue +2024-09-07 16:17:24,316 [main] TRACE ClassBuilder - Class table (0 in package nsmAgent) +2024-09-07 16:17:24,337 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::table, _objData=UmlObjectData [id=3457, uuid={50B5AB79-81F7-412a-AF6C-15E7D27E4EC6}, since=null, name=Version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:24,385 [main] DEBUG AssociationEndBuilder - Updated source type to table +2024-09-07 16:17:24,385 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=43, uuid=17e62166-fc85-36df-a4d1-bc0e1742c08b, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=table, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=44, uuid=f7177163-c833-3ff4-b38f-c8d2872f1ec6, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=188, uuid={779BD3EC-A6F0-4fa2-AF25-CF73DEB80D9D}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::table +2024-09-07 16:17:24,385 [main] TRACE ClassBuilder - read from EA: nsmAgent::table +2024-09-07 16:17:24,391 [main] TRACE ClassBuilder - Class trap (0 in package nsmAgent) +2024-09-07 16:17:24,413 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::trap, _objData=UmlObjectData [id=3610, uuid={321E6795-47CE-4d0f-A903-28BFD422C88F}, since=null, name=Version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:24,460 [main] DEBUG AssociationEndBuilder - Updated source type to trap +2024-09-07 16:17:24,460 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=39, uuid=d67d8ab4-f4c1-3bf2-aaa3-53e27879133c, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=trap, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=40, uuid=d645920e-395f-3dad-bbbb-ed0eca3fe2e0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=207, uuid={EF3A2C3D-0E4D-4d2e-98CA-E29A17F69D6F}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::trap +2024-09-07 16:17:24,460 [main] TRACE ClassBuilder - read from EA: nsmAgent::trap +2024-09-07 16:17:24,462 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Profiles, _depth=4, _eaElementID=881, _objData=UmlObjectData [id=330, uuid={5A3BC3BE-A490-436c-A0C4-BF2365F8CDD4}, since=null, name=nsmAgent, alias=, stereotype=profile, visibility=public, txtDescription='', htmlDescription=''], _modelId=362, _selfDependent=false, 1_taggedValues{_profile_data=}, 1_diagrams=[DiagramBuilder [_containingPackage=nsmAgent, _objData=UmlObjectData [id=52, uuid={8F3F8B93-6E15-4fcf-9C40-83EB793F28A5}, since=null, name=nsmAgent, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _classes=24 +2024-09-07 16:17:24,462 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=880, _objData=UmlObjectData [id=329, uuid={9FD92520-A629-4fe0-9C99-D01EACC33DFB}, since=null, name=Profiles, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=362, _selfDependent=false, 1_taggedValues{_profile_data=}, 1_diagrams=[DiagramBuilder [_containingPackage=Profiles, _objData=UmlObjectData [id=51, uuid={4642A2B9-A297-45be-A2B5-28C4F1A2B373}, since=null, name=Part7Profiles, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _childPackages=1] +2024-09-07 16:17:24,469 [main] INFO PackageBuilder - processing package Overview (2) ... +2024-09-07 16:17:24,481 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Overview, _objData=UmlObjectData [id=23, uuid={1EC9B9AC-962E-4b2c-A2A8-EFB524CF896E}, since=null, name=Part7 Classes Overview, alias=, stereotype=, visibility=public, txtDescription='IEC 62351-7 Objects overview', htmlDescription='

IEC 62351-7 Objects overview

'], _portrait=true, _kind=LOGICAL] +2024-09-07 16:17:24,523 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=941, uuid={F4ED4B79-564B-4c10-81A0-56580DAC755C}, since=null, name=IEC 60870, DNP and IEC 62351, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Overview, _otherEndName=] +2024-09-07 16:17:24,529 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=939, uuid={A16E0E74-46E5-4db2-9B18-5CAA5D5C1EE4}, since=null, name=IEC 61850, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Overview, _otherEndName=] +2024-09-07 16:17:24,531 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=872, _objData=UmlObjectData [id=324, uuid={E9E467F0-A1DE-4274-9A43-A31884D06B9B}, since=null, name=Overview, alias=, stereotype=, visibility=public, txtDescription='The NSM agent objects are organized in a UML package hierarchy that is shown in Figure 15. The application protocol branch is organized into further substructures that include the specific protocols agents. +The tree of packages is reflected in the translation to the SNMP MIB structure. This MIB structure shall respect additional constraints. For instance the reuse of attribute names in different MIB branches is not allowed. Additional MIB constraints are related to naming conventions and the OID specification.', htmlDescription='

The NSM agent objects are organized in a UML package hierarchy that is shown in Figure 15. The application protocol branch is organized into further substructures that include the specific protocols agents.

The tree of packages is reflected in the translation to the SNMP MIB structure. This MIB structure shall respect additional constraints. For instance the reuse of attribute names in different MIB branches is not allowed. Additional MIB constraints are related to naming conventions and the OID specification.

'], _modelId=362, _selfDependent=false, 2_skippedEaItems=[SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=941, uuid={F4ED4B79-564B-4c10-81A0-56580DAC755C}, since=null, name=IEC 60870, DNP and IEC 62351, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Overview, _otherEndName=], SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=939, uuid={A16E0E74-46E5-4db2-9B18-5CAA5D5C1EE4}, since=null, name=IEC 61850, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Overview, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=Overview, _objData=UmlObjectData [id=23, uuid={1EC9B9AC-962E-4b2c-A2A8-EFB524CF896E}, since=null, name=Part7 Classes Overview, alias=, stereotype=, visibility=public, txtDescription='IEC 62351-7 Objects overview', htmlDescription='

IEC 62351-7 Objects overview

'], _portrait=true, _kind=LOGICAL]] +2024-09-07 16:17:24,536 [main] INFO PackageBuilder - processing package BaseTypes (3) ... +2024-09-07 16:17:24,772 [main] TRACE ClassBuilder - Class AbsoluteDateTime (1 in package BaseTypes) +2024-09-07 16:17:24,793 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::AbsoluteDateTime, _objData=UmlObjectData [id=2741, uuid={F3AF56F9-1853-4d50-BE66-55698A10D728}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='String representation of date and time.', htmlDescription='

String representation of date and time.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=OCTET STRING (SIZE(8..11)), _eaTypeId=0, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:24,799 [main] TRACE ClassBuilder - read from EA: BaseTypes::AbsoluteDateTime +2024-09-07 16:17:24,804 [main] TRACE ClassBuilder - Class Counter32 (2 in package BaseTypes) +2024-09-07 16:17:24,824 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::Counter32 , _objData=UmlObjectData [id=2679, uuid={FA17507F-4E8A-4a30-A8AB-34397CB7B197}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='The range of allowed values must be specified.', htmlDescription='

The range of allowed values must be specified.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=Counter32, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:24,827 [main] TRACE ClassBuilder - read from EA: BaseTypes::Counter32 +2024-09-07 16:17:24,831 [main] TRACE ClassBuilder - Class DateAndTime (3 in package BaseTypes) +2024-09-07 16:17:24,852 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::DateAndTime, _objData=UmlObjectData [id=2681, uuid={E60E2615-6D31-4e8f-AF20-74D562BF4897}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='String representation of date and time according with SMIv2.', htmlDescription='

String representation of date and time according with SMIv2.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=OCTET STRING (SIZE(8..11)), _eaTypeId=0, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:24,857 [main] TRACE ClassBuilder - read from EA: BaseTypes::DateAndTime +2024-09-07 16:17:24,861 [main] TRACE ClassBuilder - Class DisplayString (4 in package BaseTypes) +2024-09-07 16:17:24,900 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::DisplayString, _objData=UmlObjectData [id=2683, uuid={5A7A658D-D236-49b6-BA65-B91C55B54DE8}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='The range of allowed values must be specified.', htmlDescription='

The range of allowed values must be specified.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=DisplayString, _eaTypeId=662, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:24,904 [main] TRACE ClassBuilder - read from EA: BaseTypes::DisplayString +2024-09-07 16:17:24,909 [main] TRACE ClassBuilder - Class Float32TC (6 in package BaseTypes) +2024-09-07 16:17:24,929 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::Float32TC, _objData=UmlObjectData [id=2682, uuid={82BCCE12-A0B4-4061-803E-FD3AE22BF6DC}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='This type represents a 32-bit (4-octet) IEEE floating-point number in binary interchange format', htmlDescription='

This type represents a 32-bit (4-octet) IEEE floating-point number in binary interchange format

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=OCTET STRING (SIZE(4)), _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:24,934 [main] TRACE ClassBuilder - read from EA: BaseTypes::Float32TC +2024-09-07 16:17:24,939 [main] TRACE ClassBuilder - Class Gauge32 (7 in package BaseTypes) +2024-09-07 16:17:24,960 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::Gauge32, _objData=UmlObjectData [id=2678, uuid={FFFF9E05-F8E0-4bc6-B3AB-1A2B5D086BB8}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='The range of allowed values must be specified.', htmlDescription='

The range of allowed values must be specified.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=Gauge32, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:24,966 [main] TRACE ClassBuilder - read from EA: BaseTypes::Gauge32 +2024-09-07 16:17:24,970 [main] TRACE ClassBuilder - Class InetAddress (9 in package BaseTypes) +2024-09-07 16:17:24,991 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::InetAddress, _objData=UmlObjectData [id=3682, uuid={B67A78A1-439B-400a-A30B-D4240DC32266}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='The range of allowed values must be specified.', htmlDescription='

The range of allowed values must be specified.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=DisplayString (SIZE(0..255)), _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:24,995 [main] TRACE ClassBuilder - read from EA: BaseTypes::InetAddress +2024-09-07 16:17:25,001 [main] TRACE ClassBuilder - Class MacAddress (9 in package BaseTypes) +2024-09-07 16:17:25,020 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::MacAddress, _objData=UmlObjectData [id=3719, uuid={96C8CC34-E7C1-46d8-B06F-8DF3BCF5E1C8}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='The range of allowed values must be specified.', htmlDescription='

The range of allowed values must be specified.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=DisplayString (SIZE(0..255)), _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:25,024 [main] TRACE ClassBuilder - read from EA: BaseTypes::MacAddress +2024-09-07 16:17:25,029 [main] TRACE ClassBuilder - Class InetAddressType (10 in package BaseTypes) +2024-09-07 16:17:25,055 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::InetAddressType, _objData=UmlObjectData [id=3685, uuid={7907F04A-B00E-486d-A58A-BB3F1695DE2B}, since=null, name=unknown, alias=, stereotype=enum, visibility=public, txtDescription='Indicates unknown type', htmlDescription='

Indicates unknown type

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:25,065 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::InetAddressType, _objData=UmlObjectData [id=3686, uuid={1E6CB781-CF7B-41f1-A0A8-9724E82FF6E9}, since=null, name=ipv4, alias=, stereotype=enum, visibility=public, txtDescription='An IPv4 address as defined by the InetAddressIPv4 textual convention.', htmlDescription='

An IPv4 address as defined by the InetAddressIPv4 textual convention.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:25,072 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::InetAddressType, _objData=UmlObjectData [id=3687, uuid={A7C3B60B-E33D-4d5c-8338-53FABA39CA4F}, since=null, name=ipv6, alias=, stereotype=enum, visibility=public, txtDescription='An IPv6 address as defined by the InetAddressIPv6 textual convention.', htmlDescription='

An IPv6 address as defined by the InetAddressIPv6 textual convention.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:25,081 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::InetAddressType, _objData=UmlObjectData [id=3688, uuid={F3691BC4-D8C1-4abc-B19E-53E33A9BF458}, since=null, name=ipv4z, alias=, stereotype=enum, visibility=public, txtDescription='A non-global IPv4 address including a zone index as defined by the InetAddressIPv4z textual convention.', htmlDescription='

A non-global IPv4 address including a zone index as defined by the InetAddressIPv4z textual convention.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:25,091 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::InetAddressType, _objData=UmlObjectData [id=3689, uuid={1E81FD33-C128-45bc-920A-8C4BD7E2DEBD}, since=null, name=ipv6z, alias=, stereotype=enum, visibility=public, txtDescription='A non-global IPv6 address including a zone index as defined by the InetAddressIPv6z textual convention.', htmlDescription='

A non-global IPv6 address including a zone index as defined by the InetAddressIPv6z textual convention.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:25,102 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::InetAddressType, _objData=UmlObjectData [id=3683, uuid={CA22E66E-263F-4cc6-A4E8-C19D9E3C14C2}, since=null, name=dns, alias=, stereotype=enum, visibility=public, txtDescription='A non-global IPv6 address including a zone index as defined by the InetAddressIPv6z textual convention.', htmlDescription='

A non-global IPv6 address including a zone index as defined by the InetAddressIPv6z textual convention.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=16, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:25,106 [main] TRACE ClassBuilder - read from EA: BaseTypes::InetAddressType +2024-09-07 16:17:25,112 [main] TRACE ClassBuilder - Class EntityIndex (11 in package BaseTypes) +2024-09-07 16:17:25,132 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::EntityIndex, _objData=UmlObjectData [id=3723, uuid={79B557BD-8843-4e68-94FA-BA4CD410B0E4}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='Integer value 1..2147483647', htmlDescription='

Integer value 1..2147483647

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=Integer32, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:25,136 [main] TRACE ClassBuilder - read from EA: BaseTypes::EntityIndex +2024-09-07 16:17:25,141 [main] TRACE ClassBuilder - Class Integer32 (11 in package BaseTypes) +2024-09-07 16:17:25,160 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::Integer32, _objData=UmlObjectData [id=1397, uuid={16A49FC2-9DFE-4d0a-AF1A-139BBD3A6396}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='Integer value -2147483648..2147483647 (inclusive) according to SMI v2', htmlDescription='

Integer value -2147483648..2147483647 (inclusive) according to SMI v2

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=Integer32, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:25,164 [main] TRACE ClassBuilder - read from EA: BaseTypes::Integer32 +2024-09-07 16:17:25,169 [main] TRACE ClassBuilder - Class Unsigned32 (11 in package BaseTypes) +2024-09-07 16:17:25,190 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::Unsigned32, _objData=UmlObjectData [id=3721, uuid={0EB7C369-E8EA-4733-8E05-C3D43A4FC483}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='The range of allowed values must be specified.', htmlDescription='

The range of allowed values must be specified.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=Integer32, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:25,193 [main] TRACE ClassBuilder - read from EA: BaseTypes::Unsigned32 +2024-09-07 16:17:25,198 [main] TRACE ClassBuilder - Class TimeTicks (15 in package BaseTypes) +2024-09-07 16:17:25,217 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::TimeTicks, _objData=UmlObjectData [id=2680, uuid={6097D103-479F-41f4-9A97-1F94284761AB}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='The range of allowed values must be specified.', htmlDescription='

The range of allowed values must be specified.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=TimeTicks, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:25,221 [main] TRACE ClassBuilder - read from EA: BaseTypes::TimeTicks +2024-09-07 16:17:25,225 [main] TRACE ClassBuilder - Class TruthValue (16 in package BaseTypes) +2024-09-07 16:17:25,246 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::TruthValue, _objData=UmlObjectData [id=2685, uuid={8672694D-2B24-4f77-957A-398B85E13893}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='Represents a boolean value. INTEGER { true(1), false(2) } according with RFC 2579', htmlDescription='

Represents a boolean value. INTEGER { true(1), false(2) } according with RFC 2579

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=TruthValue, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:25,251 [main] TRACE ClassBuilder - read from EA: BaseTypes::TruthValue +2024-09-07 16:17:25,253 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=163, _objData=UmlObjectData [id=45, uuid={66B1AE60-7FA0-4e1d-80D0-B1602C003F67}, since=null, name=BaseTypes, alias=, stereotype=, visibility=public, txtDescription='This package include the base data type. The type is inherited from the SNMP naming convention and is needed for the mapping from the a abstract types.', htmlDescription='

This package include the base data type. The type is inherited from the SNMP naming convention and is needed for the mapping from the a abstract types.

'], _modelId=362, _selfDependent=false, _classes=14 +2024-09-07 16:17:25,258 [main] INFO PackageBuilder - processing package Abstract Types (4) ... +2024-09-07 16:17:25,550 [main] TRACE ClassBuilder - Class BooleanValue (1 in package Abstract Types) +2024-09-07 16:17:25,587 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::BooleanValue, _objData=UmlObjectData [id=2987, uuid={AD4E7F12-52BE-4498-9D56-489F0D36E706}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Represents a boolean value.', htmlDescription='

Represents a boolean value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=636, _eaTypeName=TruthValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:25,603 [main] TRACE ClassBuilder - read from EA: Abstract Types::BooleanValue +2024-09-07 16:17:25,609 [main] TRACE ClassBuilder - Class BooleanValueTs (2 in package Abstract Types) +2024-09-07 16:17:25,662 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::BooleanValueTs, _objData=UmlObjectData [id=2915, uuid={3DFAA603-DD4F-4fb0-B38D-E41B9F5976AD}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:25,671 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::BooleanValueTs, _objData=UmlObjectData [id=2916, uuid={3EDE9EA6-FA52-457e-9F52-95B08337CC6C}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Represents a boolean value.', htmlDescription='

Represents a boolean value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=636, _eaTypeName=TruthValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:25,687 [main] TRACE ClassBuilder - read from EA: Abstract Types::BooleanValueTs +2024-09-07 16:17:25,692 [main] TRACE ClassBuilder - Class CounterTs (5 in package Abstract Types) +2024-09-07 16:17:25,745 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::CounterTs, _objData=UmlObjectData [id=2921, uuid={41F902F6-723F-4b04-A87D-8CFABFCB21DE}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:25,755 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::CounterTs, _objData=UmlObjectData [id=2922, uuid={CD1BCCAD-7FF8-4fd1-A24D-07EEC8C393A6}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='According to SMI v2, used to specify a value which represents a count. The range is 0 to 4294967295.', htmlDescription='

According to SMI v2, used to specify a value which represents a count. The range is 0 to 4294967295.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=624, _eaTypeName=Counter32 , _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:25,770 [main] TRACE ClassBuilder - read from EA: Abstract Types::CounterTs +2024-09-07 16:17:25,777 [main] TRACE ClassBuilder - Class CntRs (7 in package Abstract Types) +2024-09-07 16:17:25,828 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::CntRs, _objData=UmlObjectData [id=3004, uuid={CBFD6F89-8B72-4d52-BB3D-1F897706A12D}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:25,838 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::CntRs, _objData=UmlObjectData [id=3003, uuid={8CAFD2C5-0DE7-4308-93B7-D49D6E8065AD}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Boolean', htmlDescription='

Boolean

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=636, _eaTypeName=TruthValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:25,851 [main] TRACE ClassBuilder - read from EA: Abstract Types::CntRs +2024-09-07 16:17:25,857 [main] TRACE ClassBuilder - Class Floating (8 in package Abstract Types) +2024-09-07 16:17:25,894 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::Floating, _objData=UmlObjectData [id=2937, uuid={C1ACEE33-E3BF-408c-AA52-21345E91BD5B}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='IEEE Standard for Floating-Point Arithmetic, Standard 754-2008', htmlDescription='

IEEE Standard for Floating-Point Arithmetic, Standard 754-2008

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=630, _eaTypeName=Float32TC, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:25,909 [main] TRACE ClassBuilder - read from EA: Abstract Types::Floating +2024-09-07 16:17:25,914 [main] TRACE ClassBuilder - Class FloatingTs (9 in package Abstract Types) +2024-09-07 16:17:25,966 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::FloatingTs, _objData=UmlObjectData [id=2939, uuid={DFBCD799-E7D8-4865-988A-FB02011B6B88}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:25,975 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::FloatingTs, _objData=UmlObjectData [id=2940, uuid={111399D4-DEC9-4f43-A8B9-0E3848228A09}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='IEEE Standard for Floating-Point Arithmetic, Standard 754-2008', htmlDescription='

IEEE Standard for Floating-Point Arithmetic, Standard 754-2008

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=630, _eaTypeName=Float32TC, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:25,990 [main] TRACE ClassBuilder - read from EA: Abstract Types::FloatingTs +2024-09-07 16:17:25,998 [main] TRACE ClassBuilder - Class EntityIndex (11 in package Abstract Types) +2024-09-07 16:17:26,035 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::EntityIndex, _objData=UmlObjectData [id=3724, uuid={5A44C892-8691-42d1-B0D8-D8DE77225CA8}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Integer value 1..2147483647 index', htmlDescription='

Integer value 1..2147483647 index

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=968, _eaTypeName=Unsigned32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:26,049 [main] TRACE ClassBuilder - read from EA: Abstract Types::EntityIndex +2024-09-07 16:17:26,054 [main] TRACE ClassBuilder - Class Integer (11 in package Abstract Types) +2024-09-07 16:17:26,092 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::Integer, _objData=UmlObjectData [id=2928, uuid={A4296952-0928-44e2-8560-C6B0DC4466A7}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Integer value -2147483648..2147483647 (inclusive) according to SMI v2', htmlDescription='

Integer value -2147483648..2147483647 (inclusive) according to SMI v2

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=173, _eaTypeName=Integer32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:26,106 [main] TRACE ClassBuilder - read from EA: Abstract Types::Integer +2024-09-07 16:17:26,112 [main] TRACE ClassBuilder - Class IntegerTs (12 in package Abstract Types) +2024-09-07 16:17:26,163 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::IntegerTs, _objData=UmlObjectData [id=2930, uuid={B1DF3BAC-B146-48d1-B242-E0EE779A9B56}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:26,173 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::IntegerTs, _objData=UmlObjectData [id=2931, uuid={D8B8C3AD-4B33-445e-9393-31D5B1982D4A}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Integer value -2147483648..2147483647 (inclusive) according to SMI v2', htmlDescription='

Integer value -2147483648..2147483647 (inclusive) according to SMI v2

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=173, _eaTypeName=Integer32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:26,188 [main] TRACE ClassBuilder - read from EA: Abstract Types::IntegerTs +2024-09-07 16:17:26,194 [main] TRACE ClassBuilder - Class InetAddress (14 in package Abstract Types) +2024-09-07 16:17:26,232 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::InetAddress, _objData=UmlObjectData [id=3017, uuid={8A787CF9-BA07-4486-A4DF-1CF9BA7A3A41}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='A value that represents an Internet address according to IETF RFC 4001.', htmlDescription='

A value that represents an Internet address according to IETF RFC 4001.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=952, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:26,247 [main] TRACE ClassBuilder - read from EA: Abstract Types::InetAddress +2024-09-07 16:17:26,254 [main] TRACE ClassBuilder - Class InetAddressType (15 in package Abstract Types) +2024-09-07 16:17:26,292 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::InetAddressType, _objData=UmlObjectData [id=3690, uuid={117C0501-377C-4bf4-90D9-77F084F0628D}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Address Type', htmlDescription='

Address Type

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=954, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:26,307 [main] TRACE ClassBuilder - read from EA: Abstract Types::InetAddressType +2024-09-07 16:17:26,314 [main] TRACE ClassBuilder - Class MacAddress (16 in package Abstract Types) +2024-09-07 16:17:26,352 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::MacAddress, _objData=UmlObjectData [id=3019, uuid={212F7F94-30C7-4296-9560-DDE128B43ABE}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='OCTET STRING (SIZE (6)), DISPLAY-HINT "1x:"', htmlDescription='

OCTET STRING (SIZE (6)), DISPLAY-HINT "1x:"

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=966, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:26,368 [main] TRACE ClassBuilder - read from EA: Abstract Types::MacAddress +2024-09-07 16:17:26,374 [main] TRACE ClassBuilder - Class Selector (17 in package Abstract Types) +2024-09-07 16:17:26,413 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::Selector, _objData=UmlObjectData [id=3015, uuid={2B45785E-70C4-45d5-B68C-37E64794195C}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='For Transport Selector, max length is 8. For Session and Presentation Selector max length is 16.', htmlDescription='

For Transport Selector, max length is 8. For Session and Presentation Selector max length is 16.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=632, _eaTypeName=DisplayString, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:26,428 [main] TRACE ClassBuilder - read from EA: Abstract Types::Selector +2024-09-07 16:17:26,433 [main] TRACE ClassBuilder - Class Timestamp (18 in package Abstract Types) +2024-09-07 16:17:26,472 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::Timestamp, _objData=UmlObjectData [id=3083, uuid={1090CB92-2A2F-4fef-8659-3BD00578C467}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='The value of year is in network-byte order, fractions of second is as defined in RFC 5905, epoch is defined as Midnight January 1, 1970.', htmlDescription='

The value of year is in network-byte order, fractions of second is as defined in RFC 5905, epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:26,486 [main] TRACE ClassBuilder - read from EA: Abstract Types::Timestamp +2024-09-07 16:17:26,493 [main] TRACE ClassBuilder - Class CharString (19 in package Abstract Types) +2024-09-07 16:17:26,531 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::CharString, _objData=UmlObjectData [id=2989, uuid={E34DC27C-7282-4663-B1EF-D2B160F31A39}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Represents a String.', htmlDescription='

Represents a String.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=632, _eaTypeName=DisplayString, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:26,546 [main] TRACE ClassBuilder - read from EA: Abstract Types::CharString +2024-09-07 16:17:26,552 [main] TRACE ClassBuilder - Class CharStringTs (20 in package Abstract Types) +2024-09-07 16:17:26,604 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::CharStringTs, _objData=UmlObjectData [id=3380, uuid={AF16BFAF-FF80-4499-9DAD-A58391568338}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:26,615 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::CharStringTs, _objData=UmlObjectData [id=3379, uuid={2E8EFCAA-307D-4001-97ED-98DC7A6FCC62}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Represents a String.', htmlDescription='

Represents a String.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=632, _eaTypeName=DisplayString, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:26,630 [main] TRACE ClassBuilder - read from EA: Abstract Types::CharStringTs +2024-09-07 16:17:26,636 [main] TRACE ClassBuilder - Class AbstractBaseType (21 in package Abstract Types) +2024-09-07 16:17:26,887 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of BooleanValue +2024-09-07 16:17:26,889 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of Integer +2024-09-07 16:17:26,891 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of BooleanValueTs +2024-09-07 16:17:26,893 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of CounterTs +2024-09-07 16:17:26,894 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of Floating +2024-09-07 16:17:26,896 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of FloatingTs +2024-09-07 16:17:26,897 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of IntegerTs +2024-09-07 16:17:26,899 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of CharString +2024-09-07 16:17:26,900 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of CharStringTs +2024-09-07 16:17:26,901 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of Timestamp +2024-09-07 16:17:26,903 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of Selector +2024-09-07 16:17:26,905 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of MacAddress +2024-09-07 16:17:26,906 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of InetAddressType +2024-09-07 16:17:26,907 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of InetAddress +2024-09-07 16:17:26,909 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of EntityIndex +2024-09-07 16:17:26,910 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of CntRs +2024-09-07 16:17:26,924 [main] TRACE ClassBuilder - read from EA: Abstract Types::AbstractBaseType +2024-09-07 16:17:26,929 [main] TRACE ClassBuilder - Class AbstractAgent (22 in package Abstract Types) +2024-09-07 16:17:27,283 [main] TRACE ClassBuilder - read from EA: Abstract Types::AbstractAgent +2024-09-07 16:17:27,285 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=710, _objData=UmlObjectData [id=259, uuid={5004F08F-A898-4404-9AC0-FF579C27E37E}, since=null, name=Abstract Types, alias=, stereotype=, visibility=public, txtDescription='The abstract objects used within each agent are mapped to the following object types, except for the objects that refer to special enumerated data types which are defined by their own dedicated types. +Abstract objects are classified by the following attributes: +- Type of data (Boolean, Counter, Integer, Float) +- Timestamp required for each status value change +The type object naming actually reflects this classification, as provided in the description of each abstract type.', htmlDescription='

The abstract objects used within each agent are mapped to the following object types, except for the objects that refer to special enumerated data types which are defined by their own dedicated types.

Abstract objects are classified by the following attributes:

  • Type of data (Boolean, Counter, Integer, Float)
  • Timestamp required for each status value change

The type object naming actually reflects this classification, as provided in the description of each abstract type.

'], _modelId=362, _selfDependent=false, _classes=18 +2024-09-07 16:17:27,290 [main] INFO PackageBuilder - processing package EnumeratedTypes (5) ... +2024-09-07 16:17:27,664 [main] TRACE ClassBuilder - Class AppDatStKind (1 in package EnumeratedTypes) +2024-09-07 16:17:27,688 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::AppDatStKind, _objData=UmlObjectData [id=1780, uuid={088C6AC2-2351-44bf-92A5-C8E7C03B4C15}, since=null, name=unknown, alias=, stereotype=enum, visibility=public, txtDescription='No information available about the environment.', htmlDescription='

No information available about the environment.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=true, _isTypeSuperfluous=true, _type=null] +2024-09-07 16:17:27,698 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::AppDatStKind, _objData=UmlObjectData [id=1781, uuid={4624AC11-61D2-4ce9-99AF-1512A03A0802}, since=null, name=good, alias=, stereotype=enum, visibility=public, txtDescription='Good environment status.', htmlDescription='

Good environment status.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=int, _isLiteral=true, _isTypeSuperfluous=true, _type=null] +2024-09-07 16:17:27,709 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::AppDatStKind, _objData=UmlObjectData [id=1782, uuid={8143CB0E-A1A4-4abf-820C-2678E62A29E1}, since=null, name=bad, alias=, stereotype=enum, visibility=public, txtDescription='Environmental problems detected.', htmlDescription='

Environmental problems detected.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=2, _eaTypeId=0, _eaTypeName=int, _isLiteral=true, _isTypeSuperfluous=true, _type=null] +2024-09-07 16:17:27,713 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::AppDatStKind +2024-09-07 16:17:27,719 [main] TRACE ClassBuilder - Class PhyHealthKind (1 in package EnumeratedTypes) +2024-09-07 16:17:27,743 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::PhyHealthKind, _objData=UmlObjectData [id=4113, uuid={37ACCA99-1DF6-4847-8122-3BCE07D878BA}, since=null, name=ok, alias=, stereotype=enum, visibility=public, txtDescription='No problems, normal operation.', htmlDescription='

No problems, normal operation.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=true, _isTypeSuperfluous=true, _type=null] +2024-09-07 16:17:27,751 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::PhyHealthKind, _objData=UmlObjectData [id=4114, uuid={5D46B37F-ECC9-4e40-8A90-5061744F8173}, since=null, name=warning, alias=, stereotype=enum, visibility=public, txtDescription='Minor problems, but in safe operation mode.', htmlDescription='

Minor problems, but in safe operation mode.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=int, _isLiteral=true, _isTypeSuperfluous=true, _type=null] +2024-09-07 16:17:27,760 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::PhyHealthKind, _objData=UmlObjectData [id=4115, uuid={D7AB716A-CA99-403b-9D93-D795563A98BC}, since=null, name=alarm, alias=, stereotype=enum, visibility=public, txtDescription='Severe problem, no operation possible.', htmlDescription='

Severe problem, no operation possible.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=2, _eaTypeId=0, _eaTypeName=int, _isLiteral=true, _isTypeSuperfluous=true, _type=null] +2024-09-07 16:17:27,764 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::PhyHealthKind +2024-09-07 16:17:27,769 [main] TRACE ClassBuilder - Class ExtKind (2 in package EnumeratedTypes) +2024-09-07 16:17:27,792 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ExtKind, _objData=UmlObjectData [id=3369, uuid={27CBBAC5-2512-4f4b-A0B1-935AC701B409}, since=null, name=unknown, alias=, stereotype=enum, visibility=public, txtDescription='unknown module', htmlDescription='

unknown module

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:27,801 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ExtKind, _objData=UmlObjectData [id=3370, uuid={34D83563-3678-4f50-8C33-ACE3F6629F9D}, since=null, name=ioModule, alias=, stereotype=enum, visibility=public, txtDescription='I/O module', htmlDescription='

I/O module

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:27,811 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ExtKind, _objData=UmlObjectData [id=3371, uuid={C5B47DA7-C6A6-457c-87C7-E616CA496356}, since=null, name=softwarePLC, alias=, stereotype=enum, visibility=public, txtDescription='Software PLC module', htmlDescription='

Software PLC module

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:27,815 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::ExtKind +2024-09-07 16:17:27,820 [main] TRACE ClassBuilder - Class IntKind (4 in package EnumeratedTypes) +2024-09-07 16:17:27,843 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::IntKind, _objData=UmlObjectData [id=3392, uuid={0CCB0825-478A-4793-9BED-DCE9190E1B71}, since=null, name=wired, alias=, stereotype=enum, visibility=public, txtDescription='Wired interface', htmlDescription='

Wired interface

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:27,852 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::IntKind, _objData=UmlObjectData [id=3393, uuid={9E23B223-6923-4872-B4B4-86CB85C60579}, since=null, name=wireless, alias=, stereotype=enum, visibility=public, txtDescription='Wireless interface', htmlDescription='

Wireless interface

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:27,856 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::IntKind +2024-09-07 16:17:27,862 [main] TRACE ClassBuilder - Class LnkKind (5 in package EnumeratedTypes) +2024-09-07 16:17:27,886 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::LnkKind, _objData=UmlObjectData [id=2720, uuid={04896740-8BD1-4a07-987A-351CE576D6E0}, since=null, name=unknown, alias=, stereotype=enum, visibility=public, txtDescription='unknown', htmlDescription='

unknown

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:27,895 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::LnkKind, _objData=UmlObjectData [id=2721, uuid={61312937-D7B2-4aff-BF7B-CC599BE0AF64}, since=null, name=serial, alias=, stereotype=enum, visibility=public, txtDescription='serial', htmlDescription='

serial

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:27,903 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::LnkKind, _objData=UmlObjectData [id=2722, uuid={C0A08551-30DD-4843-9619-727AC796310A}, since=null, name=tcp, alias=, stereotype=enum, visibility=public, txtDescription='tcp', htmlDescription='

tcp

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:27,912 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::LnkKind, _objData=UmlObjectData [id=2723, uuid={93B64A96-33DB-4cfd-9500-8EC833B7FE0C}, since=null, name=udp, alias=, stereotype=enum, visibility=public, txtDescription='udp', htmlDescription='

udp

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:27,921 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::LnkKind, _objData=UmlObjectData [id=3391, uuid={72A18E68-801C-4831-8D81-BD42E2AC29B7}, since=null, name=eth, alias=, stereotype=enum, visibility=public, txtDescription='Ethernet interface ISO/OSI level 2 protocol, not using UDP and TCP.', htmlDescription='

Ethernet interface ISO/OSI level 2 protocol, not using UDP and TCP.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:27,927 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::LnkKind +2024-09-07 16:17:27,933 [main] TRACE ClassBuilder - Class PSPAccKind (6 in package EnumeratedTypes) +2024-09-07 16:17:27,956 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::PSPAccKind, _objData=UmlObjectData [id=1784, uuid={D408D95C-FFE4-4655-A529-710E301D9B38}, since=null, name=notBeingAccessed, alias=, stereotype=, visibility=public, txtDescription='No access to IED control panel is taking place.', htmlDescription='

No access to IED control panel is taking place.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=true, _isTypeSuperfluous=true, _type=null] +2024-09-07 16:17:27,966 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::PSPAccKind, _objData=UmlObjectData [id=1785, uuid={4FE96E50-3BB9-4a27-9440-1187A89DB87F}, since=null, name=accessOccurring, alias=, stereotype=, visibility=public, txtDescription='An access to IED control panel is taking place.', htmlDescription='

An access to IED control panel is taking place.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=int, _isLiteral=true, _isTypeSuperfluous=true, _type=null] +2024-09-07 16:17:27,970 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::PSPAccKind +2024-09-07 16:17:27,975 [main] TRACE ClassBuilder - Class ProtIdKind (7 in package EnumeratedTypes) +2024-09-07 16:17:28,001 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ProtIdKind, _objData=UmlObjectData [id=3250, uuid={07B1D7D8-39BB-4858-8EA3-BF4F5EC59D4E}, since=null, name=unknown, alias=, stereotype=enum, visibility=public, txtDescription='Unknown protocol', htmlDescription='

Unknown protocol

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,011 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ProtIdKind, _objData=UmlObjectData [id=3249, uuid={946B4BE5-1467-4fb2-99F0-66054A2B505E}, since=null, name=iEC6185081, alias=, stereotype=enum, visibility=public, txtDescription='MMS', htmlDescription='

MMS

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,020 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ProtIdKind, _objData=UmlObjectData [id=3251, uuid={FCC2EF29-9BF3-42ab-B706-EEC24615E648}, since=null, name=iEC6185081GOOSE, alias=, stereotype=enum, visibility=public, txtDescription='GOOSE. This type indicate also routable GOOSE when the LnkType attribute specifies a routable type (e.g. TCP)', htmlDescription='

GOOSE. This type indicate also routable GOOSE when the LnkType attribute specifies a routable type (e.g. TCP)

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,030 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ProtIdKind, _objData=UmlObjectData [id=3252, uuid={53BC9774-9A1A-4ea3-BA2C-3F3E35450676}, since=null, name=iEC6185092SV, alias=, stereotype=enum, visibility=public, txtDescription='SV. This type indicate also routable SV when the LnkType attribute specifies a routable type (e.g. TCP)', htmlDescription='

SV. This type indicate also routable SV when the LnkType attribute specifies a routable type (e.g. TCP)

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,039 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ProtIdKind, _objData=UmlObjectData [id=3253, uuid={2C9A588E-9040-4f72-A62A-0A0C70EB186D}, since=null, name=ieee1815DNP, alias=, stereotype=enum, visibility=public, txtDescription='DNP', htmlDescription='

DNP

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,047 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ProtIdKind, _objData=UmlObjectData [id=3254, uuid={B7D18D05-3E60-4a6e-9210-E719F96EA21F}, since=null, name=iec608705, alias=, stereotype=enum, visibility=public, txtDescription='IEC 60870-5 (Valid for 101 and 104 companion standards)', htmlDescription='

IEC 60870-5 (Valid for 101 and 104 companion standards)

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=5, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,057 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ProtIdKind, _objData=UmlObjectData [id=4503, uuid={BE6DDE6F-88D8-4f32-AB00-B3F5EBFA1B7B}, since=null, name=iEC6185082, alias=, stereotype=enum, visibility=public, txtDescription='MMS over Extensible Messaging Presence Protocol (XMPP)', htmlDescription='

MMS over Extensible Messaging Presence Protocol (XMPP)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=6, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,060 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::ProtIdKind +2024-09-07 16:17:28,065 [main] TRACE ClassBuilder - Class EventKind (8 in package EnumeratedTypes) +2024-09-07 16:17:28,092 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3694, uuid={648B3CAD-2A54-403c-8179-4CCAF44C7DFC}, since=null, name=none, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that the application does not exist.', htmlDescription='

Indicates that the application does not exist.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,101 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3695, uuid={629EF376-0921-44b8-9D1C-CE35E96EA70C}, since=null, name=unKnown, alias=, stereotype=enum, visibility=public, txtDescription='unclassified type', htmlDescription='

unclassified type

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,110 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3696, uuid={EAF67857-3BB4-401b-866C-95586A723502}, since=null, name=denialOfService, alias=, stereotype=enum, visibility=public, txtDescription='Denial of Service attack', htmlDescription='

Denial of Service attack

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,119 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3697, uuid={6A482C90-ACB9-4b3c-A3B6-614C2A1FF15D}, since=null, name=malware, alias=, stereotype=enum, visibility=public, txtDescription='Malware detected', htmlDescription='

Malware detected

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,128 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3698, uuid={B9FF19E5-679A-4370-AA7F-C8FBBFC5762D}, since=null, name=bufferOverRun, alias=, stereotype=enum, visibility=public, txtDescription='Buffer Over Run', htmlDescription='

Buffer Over Run

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,136 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3701, uuid={0B2BD779-5C64-4a16-B567-5B15C981A38D}, since=null, name=bufferUnderRun, alias=, stereotype=enum, visibility=public, txtDescription='Buffer Under Run', htmlDescription='

Buffer Under Run

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=5, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,145 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3702, uuid={62A177D9-B72C-456c-9901-7E28473C34BF}, since=null, name=badCredential, alias=, stereotype=enum, visibility=public, txtDescription='Bad Credential', htmlDescription='

Bad Credential

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=6, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,154 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3703, uuid={FF33276B-A640-4bff-B1CD-9BF645FB9A0F}, since=null, name=badKey, alias=, stereotype=enum, visibility=public, txtDescription='Bad Key', htmlDescription='

Bad Key

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=7, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,163 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3699, uuid={10F046F2-3549-4712-83DC-080961F7A2FF}, since=null, name=malformedPDU, alias=, stereotype=enum, visibility=public, txtDescription='Detected some tampered/malformed packets.', htmlDescription='

Detected some tampered/malformed packets.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=8, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,172 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3693, uuid={408A86F3-7E67-4037-98BE-835B3D745F6F}, since=null, name=physicalDisruption, alias=, stereotype=enum, visibility=public, txtDescription='Power failure detection or media disconnection.', htmlDescription='

Power failure detection or media disconnection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=9, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,180 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3700, uuid={2F6F7E56-04CE-45eb-A2EA-2240EA8F3214}, since=null, name=invalidNetworkAccess, alias=, stereotype=enum, visibility=public, txtDescription='Access to the device form unexpected/banned networks.', htmlDescription='

Access to the device form unexpected/banned networks.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=10, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,185 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::EventKind +2024-09-07 16:17:28,190 [main] TRACE ClassBuilder - Class TimSyncIssueKind (10 in package EnumeratedTypes) +2024-09-07 16:17:28,213 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncIssueKind, _objData=UmlObjectData [id=644, uuid={5F833F2F-8710-4c68-9FD5-2901D4F9FBAA}, since=null, name=synced, alias=, stereotype=enum, visibility=public, txtDescription='Indicates time sync is active and correctly operating with local time sync.', htmlDescription='

Indicates time sync is active and correctly operating with local time sync.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,222 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncIssueKind, _objData=UmlObjectData [id=645, uuid={88454DC2-BBEA-4021-BAD5-FE61CA4E4F49}, since=null, name=degradated, alias=, stereotype=enum, visibility=public, txtDescription='Indicates time sync is active but not operating correctly (for example because time source is not correctly operating or because of network degradation).', htmlDescription='

Indicates time sync is active but not operating correctly (for example because time source is not correctly operating or because of network degradation).

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,230 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncIssueKind, _objData=UmlObjectData [id=646, uuid={869DAB25-EE51-4fb5-9626-BD3FAFC7A6B3}, since=null, name=failed, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that sync has failed.', htmlDescription='

Indicates that sync has failed.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,241 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncIssueKind, _objData=UmlObjectData [id=4499, uuid={64AE1060-E782-4cb0-9E8C-F0A50D2EF305}, since=null, name=syncedGlobal, alias=, stereotype=enum, visibility=public, txtDescription='Indicates time sync is active and correctly operating with global time sync.', htmlDescription='

Indicates time sync is active and correctly operating with global time sync.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,246 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::TimSyncIssueKind +2024-09-07 16:17:28,252 [main] TRACE ClassBuilder - Class SecurityProfileKind (11 in package EnumeratedTypes) +2024-09-07 16:17:28,274 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::SecurityProfileKind, _objData=UmlObjectData [id=3924, uuid={F71BC91A-79AE-45ca-8AB9-6204E87EEBD0}, since=null, name=noSecurity, alias=, stereotype=enum, visibility=public, txtDescription='Indicate that no security profile is in use', htmlDescription='

Indicate that no security profile is in use

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,284 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::SecurityProfileKind, _objData=UmlObjectData [id=3926, uuid={6A444C1A-57C0-4e5d-8703-6142480FF36E}, since=null, name=aProfile, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that authentication A Profile is in use.', htmlDescription='

Indicates that authentication A Profile is in use.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,294 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::SecurityProfileKind, _objData=UmlObjectData [id=3927, uuid={89E81915-E439-46f6-B4B0-93DD1656B0A6}, since=null, name=e2eProfile, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that End-to-end application security profile is in use', htmlDescription='

Indicates that End-to-end application security profile is in use

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,303 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::SecurityProfileKind, _objData=UmlObjectData [id=3922, uuid={CF278B1A-3FC4-4998-B195-7ED80C0F5913}, since=null, name=ae2eProfile, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that encrypted End-to-end application security profile is in use', htmlDescription='

Indicates that encrypted End-to-end application security profile is in use

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,307 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::SecurityProfileKind +2024-09-07 16:17:28,314 [main] TRACE ClassBuilder - Class TimSyncSrcKind (11 in package EnumeratedTypes) +2024-09-07 16:17:28,346 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=665, uuid={952CFE67-4E7C-422f-BD48-A384F2B03616}, since=null, name=unknown, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that the type of the current time sync source is unknown.', htmlDescription='

Indicates that the type of the current time sync source is unknown.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,355 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=666, uuid={EA2E4808-5FE5-4d01-AD36-77DC2F564964}, since=null, name=ntp, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via NTP protocol.', htmlDescription='

Indicates that time sync is being performed via NTP protocol.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,365 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=667, uuid={7001BEF2-2BA7-473c-BE53-48B29DE68D38}, since=null, name=sntp, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via SNTP protocol.', htmlDescription='

Indicates that time sync is being performed via SNTP protocol.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,375 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=668, uuid={473F67F7-75B0-4ec8-AC6D-2C02DCB3D4F9}, since=null, name=irig, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via IRIG input.', htmlDescription='

Indicates that time sync is being performed via IRIG input.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,384 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=669, uuid={DFB8EAFA-7990-4ac3-AD4B-6FD2B4387C90}, since=null, name=gps, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed using GNSS input. In the previous edition GPS enumeration was in use and it is kept in this edition for backward compatibility reasons. It is equivalent to GNSS.', htmlDescription='

Indicates that time sync is being performed using GNSS input. In the previous edition GPS enumeration was in use and it is kept in this edition for backward compatibility reasons. It is equivalent to GNSS.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,394 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=670, uuid={F059225D-17FE-4d2e-8C53-948236E8E978}, since=null, name=ieee1588PTP, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via PTP protocol.', htmlDescription='

Indicates that time sync is being performed via PTP protocol.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=5, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,404 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=671, uuid={9DD2DD32-D0B5-4e2d-9449-188E91493134}, since=null, name=ieee1588PTPC37238Profile2011, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via PTP protocol using C37.238-2011 power profile.', htmlDescription='

Indicates that time sync is being performed via PTP protocol using C37.238-2011 power profile.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=6, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,413 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=4110, uuid={6D78019A-469B-4a3b-966F-A3C9D73B86EF}, since=null, name=ieee1588PTPIEC6185093, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via PTP protocol using IEC61850-9-3 profile.', htmlDescription='

Indicates that time sync is being performed via PTP protocol using IEC61850-9-3 profile.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=7, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,422 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=4495, uuid={99E0863C-202C-4217-9613-152A89692C12}, since=null, name=ieee1588PTPC37238Profile2017, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via PTP protocol using C37.238-2017 power profile.', htmlDescription='

Indicates that time sync is being performed via PTP protocol using C37.238-2017 power profile.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=8, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,431 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=4496, uuid={220F6156-D807-40ac-8E76-FC831FA1D73A}, since=null, name=ieee1588PTPIEC6185093Ed20, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via PTP protocol using IEC61850-9-3 Ed. 2.0 profile.', htmlDescription='

Indicates that time sync is being performed via PTP protocol using IEC61850-9-3 Ed. 2.0 profile.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=9, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,440 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=4497, uuid={A37E91A6-003F-4702-931D-6FC0F51BAC0C}, since=null, name=ieee1588PTPIEC6185093Profile2016, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via PTP protocol using IEC61850-9-3 profile.', htmlDescription='

Indicates that time sync is being performed via PTP protocol using IEC61850-9-3 profile.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=7, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,449 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=4498, uuid={08161D84-2F6C-4a93-A4A0-2E54C2EBA124}, since=null, name=gnss, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via GNSS input', htmlDescription='

Indicates that time sync is being performed via GNSS input

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,458 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=4500, uuid={B0AE11B0-563B-4d29-8660-1A415DFD83BC}, since=null, name=applicationProtocol, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via application protocol transport (e.g.DNP time sync)', htmlDescription='

Indicates that time sync is being performed via application protocol transport (e.g.DNP time sync)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=10, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,467 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=4504, uuid={21CB0952-E7FB-4f9d-AA97-59732AD6ADB4}, since=null, name=ntpOnts, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via NTP over NTS (RFC 8915)', htmlDescription='

Indicates that time sync is being performed via NTP over NTS (RFC 8915)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=11, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,472 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::TimSyncSrcKind +2024-09-07 16:17:28,477 [main] TRACE ClassBuilder - Class AppDatStType (12 in package EnumeratedTypes) +2024-09-07 16:17:28,528 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::AppDatStType, _objData=UmlObjectData [id=2991, uuid={20C199C1-6505-4e87-AA5E-7761159CD7E3}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp.', htmlDescription='

Timestamp.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,538 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::AppDatStType, _objData=UmlObjectData [id=2992, uuid={A150447F-47CA-40a3-A3E4-20675ECB8425}, since=null, name=Value, alias=, stereotype=enum, visibility=public, txtDescription='AppDatStKind enumeration.', htmlDescription='

AppDatStKind enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=292, _eaTypeName=AppDatStKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,553 [main] DEBUG ClassBuilder - Adding AppDatStType as subclass of AbstractBaseType +2024-09-07 16:17:28,553 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::AppDatStType +2024-09-07 16:17:28,558 [main] TRACE ClassBuilder - Class PhyHealthType (12 in package EnumeratedTypes) +2024-09-07 16:17:28,611 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::PhyHealthType, _objData=UmlObjectData [id=4116, uuid={BAC3158A-D258-496a-83A5-0E64DFD67679}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp.', htmlDescription='

Timestamp.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,620 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::PhyHealthType, _objData=UmlObjectData [id=4117, uuid={D2C2C044-39BB-4b98-BC2D-E3B53A97EDAE}, since=null, name=Value, alias=, stereotype=enum, visibility=public, txtDescription='PhyHealthKind enumeration.', htmlDescription='

PhyHealthKind enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1034, _eaTypeName=PhyHealthKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,635 [main] DEBUG ClassBuilder - Adding PhyHealthType as subclass of AbstractBaseType +2024-09-07 16:17:28,635 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::PhyHealthType +2024-09-07 16:17:28,640 [main] TRACE ClassBuilder - Class ExtType (13 in package EnumeratedTypes) +2024-09-07 16:17:28,677 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ExtType, _objData=UmlObjectData [id=3367, uuid={1245D715-EBD7-4730-A6F9-04F33AE0CF28}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='ExtKind enumeration.', htmlDescription='

ExtKind enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=856, _eaTypeName=ExtKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,691 [main] DEBUG ClassBuilder - Adding ExtType as subclass of AbstractBaseType +2024-09-07 16:17:28,691 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::ExtType +2024-09-07 16:17:28,697 [main] TRACE ClassBuilder - Class IntType (14 in package EnumeratedTypes) +2024-09-07 16:17:28,733 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::IntType, _objData=UmlObjectData [id=3395, uuid={0A1710BD-B405-499c-8631-29D2BA1F37C0}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='IntKind enumeration', htmlDescription='

IntKind enumeration

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=864, _eaTypeName=IntKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,748 [main] DEBUG ClassBuilder - Adding IntType as subclass of AbstractBaseType +2024-09-07 16:17:28,748 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::IntType +2024-09-07 16:17:28,754 [main] TRACE ClassBuilder - Class EventType (15 in package EnumeratedTypes) +2024-09-07 16:17:28,805 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventType, _objData=UmlObjectData [id=3705, uuid={CF22855C-E347-4873-AD54-398449D71764}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp.', htmlDescription='

Timestamp.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,814 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventType, _objData=UmlObjectData [id=3704, uuid={B8CA2998-8D74-4277-B68D-01EC12299F89}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='EventKind enumeration.', htmlDescription='

EventKind enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=958, _eaTypeName=EventKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,828 [main] DEBUG ClassBuilder - Adding EventType as subclass of AbstractBaseType +2024-09-07 16:17:28,828 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::EventType +2024-09-07 16:17:28,833 [main] TRACE ClassBuilder - Class PSPAccType (16 in package EnumeratedTypes) +2024-09-07 16:17:28,886 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::PSPAccType, _objData=UmlObjectData [id=3378, uuid={2DC1C237-EFE6-4e97-A76B-58AA500A8F7B}, since=null, name=Timestamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp.', htmlDescription='

Timestamp.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,895 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::PSPAccType, _objData=UmlObjectData [id=3377, uuid={018C1C51-9C40-4e91-A95B-3878F4DD9BD9}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='PSPAccKind Enumeration.', htmlDescription='

PSPAccKind Enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=293, _eaTypeName=PSPAccKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,909 [main] DEBUG ClassBuilder - Adding PSPAccType as subclass of AbstractBaseType +2024-09-07 16:17:28,909 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::PSPAccType +2024-09-07 16:17:28,915 [main] TRACE ClassBuilder - Class ProtIdType (17 in package EnumeratedTypes) +2024-09-07 16:17:28,951 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ProtIdType, _objData=UmlObjectData [id=3011, uuid={7F5D7A4B-5851-45b9-9F48-5C8F08A97218}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='ProtIdKind Enumeration.', htmlDescription='

ProtIdKind Enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=829, _eaTypeName=ProtIdKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:28,966 [main] DEBUG ClassBuilder - Adding ProtIdType as subclass of AbstractBaseType +2024-09-07 16:17:28,966 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::ProtIdType +2024-09-07 16:17:28,971 [main] TRACE ClassBuilder - Class TimSyncIssueType (18 in package EnumeratedTypes) +2024-09-07 16:17:29,008 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncIssueType, _objData=UmlObjectData [id=3006, uuid={A23195C8-D6B6-4033-B7CC-798A866B84FA}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='TimSyncIssueKind Enumeration.', htmlDescription='

TimSyncIssueKind Enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=113, _eaTypeName=TimSyncIssueKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:29,024 [main] DEBUG ClassBuilder - Adding TimSyncIssueType as subclass of AbstractBaseType +2024-09-07 16:17:29,024 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::TimSyncIssueType +2024-09-07 16:17:29,030 [main] TRACE ClassBuilder - Class SecurityProfileType (20 in package EnumeratedTypes) +2024-09-07 16:17:29,066 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::SecurityProfileType, _objData=UmlObjectData [id=3929, uuid={62BF7B27-EFA1-466c-AED9-06307DBA6999}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='SecurityProfile Enumeration', htmlDescription='

SecurityProfile Enumeration

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1011, _eaTypeName=SecurityProfileKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:29,081 [main] DEBUG ClassBuilder - Adding SecurityProfileType as subclass of AbstractBaseType +2024-09-07 16:17:29,081 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::SecurityProfileType +2024-09-07 16:17:29,086 [main] TRACE ClassBuilder - Class TimSyncSrcType (20 in package EnumeratedTypes) +2024-09-07 16:17:29,122 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcType, _objData=UmlObjectData [id=3008, uuid={7D7258A7-E193-49cd-AA63-6F1E9EECA15D}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='TimSyncSrcKind Enumeration', htmlDescription='

TimSyncSrcKind Enumeration

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=117, _eaTypeName=TimSyncSrcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:29,138 [main] DEBUG ClassBuilder - Adding TimSyncSrcType as subclass of AbstractBaseType +2024-09-07 16:17:29,138 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::TimSyncSrcType +2024-09-07 16:17:29,143 [main] TRACE ClassBuilder - Class LnkType (21 in package EnumeratedTypes) +2024-09-07 16:17:29,179 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::LnkType, _objData=UmlObjectData [id=3010, uuid={9322D17D-875C-49ca-B9CF-0F43B6E41A52}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='LnkType Enumeration.', htmlDescription='

LnkType Enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=644, _eaTypeName=LnkKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:29,194 [main] DEBUG ClassBuilder - Adding LnkType as subclass of AbstractBaseType +2024-09-07 16:17:29,194 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::LnkType +2024-09-07 16:17:29,196 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=112, _objData=UmlObjectData [id=33, uuid={EA70BE0D-4F03-49cf-98EB-61A3452B8572}, since=null, name=EnumeratedTypes, alias=, stereotype=, visibility=public, txtDescription='The abstract objects defined as enumerated types refer to special enumerated data types. +The type object naming actually reflects this classification, as explained explicitly within this section in the description of each abstract type. +Please note that the attributes defined in this package classes have 1..1 multiplicity. The multiplicity is handled when these classes are used as attributes within the agents classes definition.', htmlDescription='

The abstract objects defined as enumerated types refer to special enumerated data types.

The type object naming actually reflects this classification, as explained explicitly within this section in the description of each abstract type.

Please note that the attributes defined in this package classes have 1..1 multiplicity. The multiplicity is handled when these classes are used as attributes within the agents classes definition.

'], _modelId=362, _selfDependent=false, 5_taggedValues{isAgent=yes, isEnumeration=yes, mibIdentity=enumeration, mibName=IEC-62351-ENUM-MIB, objectIdentity=enumeration}, _classes=22 +2024-09-07 16:17:29,201 [main] INFO PackageBuilder - processing package Environmental Agent (7) ... +2024-09-07 16:17:29,220 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Environmental Agent, _objData=UmlObjectData [id=8, uuid={DD68DDD1-5EEB-4a23-B16C-1FF759A2EE6A}, since=null, name=Environmental, alias=, stereotype=, visibility=public, txtDescription='The Environmental agent class.', htmlDescription='

The Environmental agent class.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 16:17:29,306 [main] TRACE ClassBuilder - Class Environmental (1 in package Environmental Agent) +2024-09-07 16:17:29,543 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2673, uuid={B7336AC3-3490-4d18-9C0A-633A3375B799}, since=null, name=AppDatSt, alias=, stereotype=health, visibility=public, txtDescription='Status of the environment where the device is operated (e.g. Power Supply, Physical Access)', htmlDescription='

Status of the environment where the device is operated (e.g. Power Supply, Physical Access)

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=766, _eaTypeName=AppDatStType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:29,556 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=596, uuid={F437BD0A-FA9A-4244-BD21-213EDEE71F93}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Attribute that allows a reset of the statistical information.', htmlDescription='

Attribute that allows a reset of the statistical information.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:29,569 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=3707, uuid={CC877A95-C652-4fe2-AD1D-655296F78214}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:29,581 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2257, uuid={A7F35D26-4B23-4015-AD0D-EBEFA191D4F4}, since=null, name=PSPBld, alias=, stereotype=security, visibility=public, txtDescription='Building access occurred.', htmlDescription='

Building access occurred.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:29,594 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2255, uuid={AE5A5B25-3635-4d4e-BB6F-3F373B37D7F7}, since=null, name=PSPIed, alias=, stereotype=security, visibility=public, txtDescription='Indicates that direct access to the IED is in process.', htmlDescription='

Indicates that direct access to the IED is in process.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:29,607 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2256, uuid={B58DB9CE-5D6A-4836-8A52-322BC774BC87}, since=null, name=PSPPanel, alias=, stereotype=security, visibility=public, txtDescription='Indicates that panel access is occurring to the IED.', htmlDescription='

Indicates that panel access is occurring to the IED.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:29,620 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2258, uuid={5330F087-530C-45ed-97CC-9AAA63252BF8}, since=null, name=PSPPerimeter, alias=, stereotype=security, visibility=public, txtDescription='Physical perimeter access occurred (e.g. door open), where available.', htmlDescription='

Physical perimeter access occurred (e.g. door open), where available.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:29,632 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=152, uuid={77B56447-B1AC-4c57-B772-2A438F32F38B}, since=null, name=PSUP, alias=, stereotype=table, visibility=public, txtDescription='A list of power supply entries.', htmlDescription='

A list of power supply entries.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=616, _eaTypeName=PSUPEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:29,645 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2260, uuid={0ABF14FE-A7EB-447e-9066-271C644F8B1A}, since=null, name=PSUPLos, alias=, stereotype=health, visibility=public, txtDescription='Power supply table entry index of the last power supply that was detected as lost.', htmlDescription='

Power supply table entry index of the last power supply that was detected as lost.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:29,659 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2259, uuid={ECCB9B5A-C082-4a31-BCA7-B115A8600DA0}, since=null, name=PSUPOn, alias=, stereotype=health, visibility=public, txtDescription='Index of the power supply that was the last to come on.', htmlDescription='

Index of the power supply that was the last to come on.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:29,674 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=3622, uuid={96BB2987-191F-4e60-BCB6-102571495093}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=874, _eaTypeName=SecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:29,688 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=3621, uuid={75ECAF5C-210D-48b8-90F9-82576506744C}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object.', htmlDescription='

State events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=903, _eaTypeName=Notification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:29,700 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=4501, uuid={7FB27A25-45C1-42c1-9B72-BD8FC786A10A}, since=null, name=PSPRemote, alias=, stereotype=security, visibility=public, txtDescription='Indicates that a current remote access is occurring to the IED.', htmlDescription='

Indicates that a current remote access is occurring to the IED.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:29,715 [main] DEBUG ClassBuilder - Adding Environmental as subclass of AbstractAgent +2024-09-07 16:17:29,715 [main] TRACE ClassBuilder - read from EA: Environmental Agent::Environmental +2024-09-07 16:17:29,721 [main] TRACE ClassBuilder - Class PSUPEntry (2 in package Environmental Agent) +2024-09-07 16:17:29,857 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2663, uuid={82D58AB7-4A2D-4041-B53A-D00E492C6C11}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:29,870 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2671, uuid={6A6A7DC3-B5BB-4553-84C2-44318B449579}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the power supply.', htmlDescription='

Description of the power supply.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:29,887 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=3725, uuid={27FE83CA-F363-47cc-8B97-92F4711DDAAF}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='Id of the power supply.', htmlDescription='

Id of the power supply.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 16:17:29,905 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2670, uuid={40DB5D25-5E33-4ad3-BB26-D2E165FEBA1F}, since=null, name=Name, alias=, stereotype=identity, visibility=public, txtDescription='Name of the power supply.', htmlDescription='

Name of the power supply.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 16:17:29,917 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2669, uuid={87F74A2E-D615-4bb8-A54D-B421846C7542}, since=null, name=PSUPLos, alias=, stereotype=health, visibility=public, txtDescription='Timestamp of the last detected power loss.', htmlDescription='

Timestamp of the last detected power loss.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:29,930 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2661, uuid={3F81B85E-2C71-4d22-8767-ADB07D4305CC}, since=null, name=PwrLosCnt, alias=, stereotype=health, visibility=public, txtDescription='Attribute that provides a count of number power losses. Power loss indicates primary supply power loss not shutdown.', htmlDescription='

Attribute that provides a count of number power losses. Power loss indicates primary supply power loss not shutdown.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:29,943 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2728, uuid={0A17570B-860F-49a1-8208-A78149EDC279}, since=null, name=PwrOn, alias=, stereotype=health, visibility=public, txtDescription='Indicates if the power supply state is currently on and operating appropriately.', htmlDescription='

Indicates if the power supply state is currently on and operating appropriately.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:29,957 [main] DEBUG ClassBuilder - Adding PSUPEntry as subclass of AbstractAgent +2024-09-07 16:17:29,958 [main] TRACE ClassBuilder - read from EA: Environmental Agent::PSUPEntry +2024-09-07 16:17:29,963 [main] TRACE ClassBuilder - Class Notification (3 in package Environmental Agent) +2024-09-07 16:17:30,019 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Notification, _objData=UmlObjectData [id=3463, uuid={99A52BA7-C37A-4d5a-9AF2-69F868DCA056}, since=null, name=PSUPLos, alias=, stereotype=health, visibility=public, txtDescription='Power supply Table Entry Index of the last power supply that was detected as lost.', htmlDescription='

Power supply Table Entry Index of the last power supply that was detected as lost.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:30,029 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Notification, _objData=UmlObjectData [id=3462, uuid={CF8ECE95-A139-4efa-B7E5-5EBCC29D609C}, since=null, name=PSUPOn, alias=, stereotype=health, visibility=public, txtDescription='Index of the power supply that was the last to come on.', htmlDescription='

Index of the power supply that was the last to come on.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:30,044 [main] DEBUG ClassBuilder - Adding Notification as subclass of AbstractAgent +2024-09-07 16:17:30,044 [main] TRACE ClassBuilder - read from EA: Environmental Agent::Notification +2024-09-07 16:17:30,049 [main] TRACE ClassBuilder - Class SecurityNotification (4 in package Environmental Agent) +2024-09-07 16:17:30,152 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=4039, uuid={F551C4F9-AD27-4ef4-B8FA-5DBAC7238912}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:30,161 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=3432, uuid={04CE81A5-8629-43c0-8F3E-D93C55B63D0B}, since=null, name=PSPBld, alias=, stereotype=security, visibility=public, txtDescription='Building Access occurred.', htmlDescription='

Building Access occurred.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:30,170 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=3430, uuid={8AA6C984-EF4B-41bb-B433-665F0793B107}, since=null, name=PSPIed, alias=, stereotype=security, visibility=public, txtDescription='Indicates that direct access to the IED is in process.', htmlDescription='

Indicates that direct access to the IED is in process.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:30,178 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=3431, uuid={CBC52337-714E-4296-BD4F-B152E72DF029}, since=null, name=PSPPanel, alias=, stereotype=security, visibility=public, txtDescription='Indicates that panel access is occurring to the IED.', htmlDescription='

Indicates that panel access is occurring to the IED.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:30,188 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=3433, uuid={165E406E-AC48-43d3-A163-7401119B36B9}, since=null, name=PSPPerimeter, alias=, stereotype=security, visibility=public, txtDescription='Perimeter Access occurred.', htmlDescription='

Perimeter Access occurred.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:17:30,203 [main] DEBUG ClassBuilder - Adding SecurityNotification as subclass of AbstractAgent +2024-09-07 16:17:30,203 [main] TRACE ClassBuilder - read from EA: Environmental Agent::SecurityNotification +2024-09-07 16:17:30,206 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=40, _objData=UmlObjectData [id=10, uuid={943B03A5-8EC5-4979-8421-5F10D4177B08}, since=null, name=Environmental Agent, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 16 this package contains the object descriptions for the environmental information to be provided for the Network and System Monitoring of environmental conditions where the device is operating.', htmlDescription='

As shown in Figure 16 this package contains the object descriptions for the environmental information to be provided for the Network and System Monitoring of environmental conditions where the device is operating.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=environmental-agent, mibName=IEC-62351-ENV-MIB, mibPrefix=env, objectBranchId=1, objectIdentity=environmental-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=Environmental Agent, _objData=UmlObjectData [id=8, uuid={DD68DDD1-5EEB-4a23-B16C-1FF759A2EE6A}, since=null, name=Environmental, alias=, stereotype=, visibility=public, txtDescription='The Environmental agent class.', htmlDescription='

The Environmental agent class.

'], _portrait=true, _kind=LOGICAL]], _classes=4 +2024-09-07 16:17:30,210 [main] INFO PackageBuilder - processing package IED Agent (8) ... +2024-09-07 16:17:30,230 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=IED Agent, _objData=UmlObjectData [id=9, uuid={C3FD1BF6-CB13-4fb3-9C75-D9FACF470ACD}, since=null, name=IED, alias=, stereotype=, visibility=public, txtDescription='The Intelligent Electronic Device class attributes', htmlDescription='

The Intelligent Electronic Device class attributes

'], _portrait=true, _kind=LOGICAL] +2024-09-07 16:17:30,354 [main] TRACE ClassBuilder - Class IED (1 in package IED Agent) +2024-09-07 16:17:30,954 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=159, uuid={1405DC0D-6A4E-4f7e-AF8C-5E21E5C79F3C}, since=null, name=AtkCnt, alias=, stereotype=security, visibility=public, txtDescription='Attribute that provides the number of cyber- attacks that have been detected.', htmlDescription='

Attribute that provides the number of cyber- attacks that have been detected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:30,968 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=593, uuid={D7F266B3-90FC-434c-850B-A67888D5FF8C}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:30,981 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3365, uuid={4F170B51-C2F3-496d-A921-71158D5FAAD4}, since=null, name=ConfigurationCRC, alias=, stereotype=identity, visibility=public, txtDescription='CRC of the last update.', htmlDescription='

CRC of the last update.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:30,993 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3364, uuid={70C845C3-72FA-4ee2-8C82-B541DEA6F1A6}, since=null, name=ConfigurationVersion, alias=, stereotype=identity, visibility=public, txtDescription='Version of the last uploaded configuration.', htmlDescription='

Version of the last uploaded configuration.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,006 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3264, uuid={B2181BC5-C543-4352-AF8C-CF45A0CC6715}, since=null, name=CPU, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of CPU inside the IED.', htmlDescription='

This entry defer to possible multiple instances of CPU inside the IED.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=832, _eaTypeName=CPUEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,018 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=164, uuid={27E657EB-F5E0-46ac-9D03-B88771E3C03E}, since=null, name=CpuUsage, alias=, stereotype=health, visibility=public, txtDescription='Provides an attribute that indicates the percentage of processing resources that is in use. Range is 0 to 100', htmlDescription='

Provides an attribute that indicates the percentage of processing resources that is in use. Range is 0 to 100

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,031 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=165, uuid={331F6C40-DC4F-47e4-A1E7-D03E91A9BAB7}, since=null, name=DataInv, alias=, stereotype=security, visibility=public, txtDescription='Provides a count of the number of attempts to write invalid data, for instance out-of-range data.', htmlDescription='

Provides a count of the number of attempts to write invalid data, for instance out-of-range data.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,043 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=1904, uuid={6044B2D8-9605-461e-A2D5-AF9EF801D394}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='This entry provides a textual description of the IED.', htmlDescription='

This entry provides a textual description of the IED.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,056 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=174, uuid={84B44E91-B83B-48bc-95EB-FCE87A7F7BC1}, since=null, name=ExpCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of expired certificates that are in the certificate storage configured for local use.', htmlDescription='

Indicates the number of expired certificates that are in the certificate storage configured for local use.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,068 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3332, uuid={609144A0-BD56-43ff-AEA6-E96829144EC8}, since=null, name=EXT, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of extension modules inside the IED.', htmlDescription='

This entry defer to possible multiple instances of extension modules inside the IED.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=850, _eaTypeName=EXTEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,081 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3357, uuid={40D5B796-07CF-4261-BF72-7AC36DC3E5C5}, since=null, name=FirmwareVersion, alias=, stereotype=identity, visibility=public, txtDescription='Version of the last uploaded Firmware. Timestamp refers to upload time.', htmlDescription='

Version of the last uploaded Firmware. Timestamp refers to upload time.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,094 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=1908, uuid={6FD1E9BC-3801-4721-BC75-1500D754A5F4}, since=null, name=InternalTemp, alias=, stereotype=health, visibility=public, txtDescription='Degree Centigrade measurement of the internal IED Temperature.', htmlDescription='

Degree Centigrade measurement of the internal IED Temperature.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,107 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3493, uuid={A2E2F01C-9202-4d14-B2FC-EE99FA25D64D}, since=null, name=LastCPUFail, alias=, stereotype=health, visibility=public, txtDescription='Index of last failing CPU.', htmlDescription='

Index of last failing CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,119 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3706, uuid={21041DB8-C542-4137-AADE-3D1E8DD5E1D5}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,132 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3494, uuid={7A6C77E3-9BB2-4834-8C72-DAE268A5A789}, since=null, name=LastEXTFail, alias=, stereotype=health, visibility=public, txtDescription='Index of last failing Extension.', htmlDescription='

Index of last failing Extension.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,145 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3492, uuid={4ACA1571-DB99-4447-9A06-033F9EE4348B}, since=null, name=LastSTOREFail, alias=, stereotype=health, visibility=public, txtDescription='Index of last failing Storage.', htmlDescription='

Index of last failing Storage.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,158 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3256, uuid={A9D75A03-5288-48d7-BA55-09F388369D28}, since=null, name=Location, alias=, stereotype=identity, visibility=public, txtDescription='Physical Installation coordinates (geographical and plant location).', htmlDescription='

Physical Installation coordinates (geographical and plant location).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,172 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3257, uuid={B4CF9E53-369A-47de-B31C-9255617C59E5}, since=null, name=Maintainer, alias=, stereotype=identity, visibility=public, txtDescription='Organizational reference for device maintenance.', htmlDescription='

Organizational reference for device maintenance.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,184 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3388, uuid={B008E2FB-21B8-4e33-B720-B440E4B1F49D}, since=null, name=MemTotal, alias=, stereotype=health, visibility=public, txtDescription='Provides an attribute that report the total RAM available in KBytes.', htmlDescription='

Provides an attribute that report the total RAM available in KBytes.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,195 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=1910, uuid={F6C9C372-CCF6-49b4-B39B-B7C633D0987A}, since=null, name=MemUsage, alias=, stereotype=health, visibility=public, txtDescription='Provides an attribute that indicates the percentage of memory that is in use.Range is 0 to 100.', htmlDescription='

Provides an attribute that indicates the percentage of memory that is in use.Range is 0 to 100.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,206 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3255, uuid={E81796A9-2AC8-45d5-A00C-A8FF43E2E704}, since=null, name=MIBVersion, alias=, stereotype=identity, visibility=public, txtDescription='Version of the Management Information Base.', htmlDescription='

Version of the Management Information Base.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,219 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=167, uuid={E0D67C9A-2A09-4694-B58C-55AB9281E1BA}, since=null, name=MisEvCnt, alias=, stereotype=health, visibility=public, txtDescription='Provides an attribute that represents the count of missed events or data.', htmlDescription='

Provides an attribute that represents the count of missed events or data.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,230 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=1913, uuid={FBF2BE7D-376E-477d-BEA6-8FBF4467B076}, since=null, name=Name, alias=, stereotype=identity, visibility=public, txtDescription='Name of IED.', htmlDescription='

Name of IED.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,243 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3718, uuid={472EB367-3A8B-4a9a-82E6-AD7C1825366F}, since=null, name=NearToExpCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of certificates in the certificate storage configured for local use that have exceeded the 70% of validity period.', htmlDescription='

Indicates the number of certificates in the certificate storage configured for local use that have exceeded the 70% of validity period.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,256 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=177, uuid={813425EE-45D4-449f-A1BA-5E8BDECC6309}, since=null, name=NvStore, alias=, stereotype=health, visibility=public, txtDescription='Indicates the global number of kilobytes of storage allocated for local use in all storage areas.', htmlDescription='

Indicates the global number of kilobytes of storage allocated for local use in all storage areas.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,269 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=178, uuid={82009203-F55E-466e-9B62-1933D717E9E0}, since=null, name=NvStoreRem, alias=, stereotype=health, visibility=public, txtDescription='Indicates the percentage of NvStore available for storage.', htmlDescription='

Indicates the percentage of NvStore available for storage.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,282 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=157, uuid={BE9FD31C-2E94-434f-8D2A-69F9BBC26FFD}, since=null, name=PhyHealth, alias=, stereotype=health, visibility=public, txtDescription='General health status of IED hardware and software.', htmlDescription='

General health status of IED hardware and software.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1036, _eaTypeName=PhyHealthType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,294 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=158, uuid={D980F3DA-CEDB-4402-837B-C8480047FB4F}, since=null, name=PhyHealthChgCnt, alias=, stereotype=health, visibility=public, txtDescription='Provides a count of the number of transitions state of PhyHealth Attribute.', htmlDescription='

Provides a count of the number of transitions state of PhyHealth Attribute.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,307 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3437, uuid={DF896F75-F02E-4195-9E06-0E9BB719136B}, since=null, name=RBACDbUpdate, alias=, stereotype=security, visibility=public, txtDescription='Version of the last uploaded RBAC Database.', htmlDescription='

Version of the last uploaded RBAC Database.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,320 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=176, uuid={BF4C520F-2A9F-434f-A442-25072A5C8B6B}, since=null, name=RevCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of revoked certificates that are still configured for local use.', htmlDescription='

Indicates the number of revoked certificates that are still configured for local use.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,333 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3479, uuid={8DA6CCEB-ED0C-41ec-B476-C7F33C86B499}, since=null, name=RevCheckFail, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number revocation check failures.', htmlDescription='

Indicates the number revocation check failures.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,345 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3620, uuid={93F9F190-837F-4def-9AE7-693E1E609256}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=912, _eaTypeName=SecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,357 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3619, uuid={167D9C3F-D113-4dd9-8CD1-62228F439DF9}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object.', htmlDescription='

State events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=911, _eaTypeName=Notification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,370 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3387, uuid={2CF43DE1-E31F-4743-B645-CC6617CC65E9}, since=null, name=STORE, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of storage modules inside the IED.', htmlDescription='

This entry defer to possible multiple instances of storage modules inside the IED.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=862, _eaTypeName=STOREEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,382 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=4118, uuid={A000D652-2899-4b1e-A269-5B0E74D9612D}, since=null, name=SvcViol, alias=, stereotype=security, visibility=public, txtDescription='Number of service privilege violations (i.e., when the data object that the client wanted to access exists in the access view for the association with that client, but the requested service is not allowed).', htmlDescription='

Number of service privilege violations (i.e., when the data object that the client wanted to access exists in the access view for the association with that client, but the requested service is not allowed).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,393 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3964, uuid={8C00B0E5-5F91-4e94-AAA3-B08EFBB15D6C}, since=null, name=Watchdog, alias=, stereotype=health, visibility=public, txtDescription='This attribute report the count of Watchdog intervention on any component of the IED.', htmlDescription='

This attribute report the count of Watchdog intervention on any component of the IED.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,404 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=2217, uuid={FA50F248-F688-4b0f-B343-E8626A859677}, since=null, name=WrmStrCnt, alias=, stereotype=health, visibility=public, txtDescription='Number of warm starts detected.', htmlDescription='

Number of warm starts detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,420 [main] DEBUG ClassBuilder - Adding IED as subclass of AbstractAgent +2024-09-07 16:17:31,420 [main] TRACE ClassBuilder - read from EA: IED Agent::IED +2024-09-07 16:17:31,425 [main] TRACE ClassBuilder - Class CPUEntry (2 in package IED Agent) +2024-09-07 16:17:31,571 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3261, uuid={F7E2552A-9E40-4498-9B35-80E4DC7388F3}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,584 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3260, uuid={2A8CCA5F-B153-4fa8-8801-52859B51BF8A}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the CPU.', htmlDescription='

Description of the CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,595 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3262, uuid={6C624EF6-19CC-45c7-8B22-52C6EB105C3F}, since=null, name=Faulty, alias=, stereotype=health, visibility=public, txtDescription='CPU generated errors.', htmlDescription='

CPU generated errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,609 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3259, uuid={18120B8F-8761-4f72-A364-9015D0229D9F}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='CPU number.', htmlDescription='

CPU number.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 16:17:31,621 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3258, uuid={5BACDAAA-B8BD-4635-B1F3-7E2C4CB93292}, since=null, name=Online, alias=, stereotype=health, visibility=public, txtDescription='Indicate that CPU is online and active.', htmlDescription='

Indicate that CPU is online and active.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,632 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3263, uuid={404E8337-84BD-4e87-888C-BC40C8FDFD3D}, since=null, name=Operable, alias=, stereotype=health, visibility=public, txtDescription='Indicates that CPU is operable (it can be either online or offline).', htmlDescription='

Indicates that CPU is operable (it can be either online or offline).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,642 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3389, uuid={D6BA8CB3-C883-4924-9F0F-3E0D3BF3FE2D}, since=null, name=Temperature, alias=, stereotype=health, visibility=public, txtDescription='Temperature of this CPU.', htmlDescription='

Temperature of this CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,653 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3965, uuid={2C004DAE-5C35-4b32-8046-95848FB39988}, since=null, name=Watchdog, alias=, stereotype=health, visibility=public, txtDescription='This attribute report the count of Watchdog intervention on this CPU.', htmlDescription='

This attribute report the count of Watchdog intervention on this CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,668 [main] DEBUG ClassBuilder - Adding CPUEntry as subclass of AbstractAgent +2024-09-07 16:17:31,668 [main] TRACE ClassBuilder - read from EA: IED Agent::CPUEntry +2024-09-07 16:17:31,673 [main] TRACE ClassBuilder - Class EXTEntry (3 in package IED Agent) +2024-09-07 16:17:31,840 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3334, uuid={5449D06F-D84C-4247-BFF2-855283FE546B}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='Software PLC ID.', htmlDescription='

Software PLC ID.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 16:17:31,851 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3335, uuid={1FA00718-1A03-4856-BE17-E4C968E2303B}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the Software PLC.', htmlDescription='

Description of the Software PLC.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,864 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3366, uuid={26FC08E1-AE06-447a-A63C-A464EF3B6C5A}, since=null, name=ExtensionType, alias=, stereotype=identity, visibility=public, txtDescription='This attribute defines the type of the extension module.', htmlDescription='

This attribute defines the type of the extension module.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=854, _eaTypeName=ExtType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,877 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3416, uuid={25484747-00E6-4e15-9F70-84DADE0F1C1C}, since=null, name=CodeVersion, alias=, stereotype=identity, visibility=public, txtDescription='Version of the last uploaded code.', htmlDescription='

Version of the last uploaded code.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,890 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3338, uuid={582D62C0-D628-4ccb-8BBD-32D4EE3B63BD}, since=null, name=Running, alias=, stereotype=health, visibility=public, txtDescription='Indicates that CPU is operable (it can be either online or offline).', htmlDescription='

Indicates that CPU is operable (it can be either online or offline).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,903 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3390, uuid={4838CC42-4D04-48d4-B5E0-73AC845722FF}, since=null, name=Temperature, alias=, stereotype=health, visibility=public, txtDescription='Temperature of this extension.', htmlDescription='

Temperature of this extension.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,914 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3333, uuid={884C8693-44E5-4b48-BBA4-E016ABF8B3C1}, since=null, name=Watchdog, alias=, stereotype=health, visibility=public, txtDescription='This attribute report the count of Watchdog intervention on this IED extension (e.g. software PLC).', htmlDescription='

This attribute report the count of Watchdog intervention on this IED extension (e.g. software PLC).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,926 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3337, uuid={A88DDBF9-7D12-4096-A713-D46EF92F2788}, since=null, name=Errors, alias=, stereotype=health, visibility=public, txtDescription='This attribute reports the PLC software detected errors.', htmlDescription='

This attribute reports the PLC software detected errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,937 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3336, uuid={A600A488-A1C0-4de3-BA57-148F100FC3F6}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:31,952 [main] DEBUG ClassBuilder - Adding EXTEntry as subclass of AbstractAgent +2024-09-07 16:17:31,952 [main] TRACE ClassBuilder - read from EA: IED Agent::EXTEntry +2024-09-07 16:17:31,957 [main] TRACE ClassBuilder - Class STOREEntry (4 in package IED Agent) +2024-09-07 16:17:32,082 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3382, uuid={51E473C6-FD18-455e-AED3-59F394443C8D}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='Storage area ID number.', htmlDescription='

Storage area ID number.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 16:17:32,095 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3383, uuid={064A1F24-744B-46ad-AD7C-A95961E97B13}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the storage area.', htmlDescription='

Description of the storage area.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:32,106 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3386, uuid={F81C3EA0-A881-4cf8-981C-6AAA51137320}, since=null, name=NvStore, alias=, stereotype=health, visibility=public, txtDescription='Indicates the amount of storage.', htmlDescription='

Indicates the amount of storage.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:32,118 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3381, uuid={9C3D8C6F-12FE-4f73-AF1F-DE108934866D}, since=null, name=NvStoreRem, alias=, stereotype=health, visibility=public, txtDescription='Indicate remaining storage in this area.', htmlDescription='

Indicate remaining storage in this area.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:32,130 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3385, uuid={D8309CF9-DAF0-4ee7-A381-888D751BA0AA}, since=null, name=Faulty, alias=, stereotype=health, visibility=public, txtDescription='Storage area fault generated errors.', htmlDescription='

Storage area fault generated errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:32,142 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3732, uuid={39256EA1-992F-4aca-AF28-01BF33E5DF73}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:32,157 [main] DEBUG ClassBuilder - Adding STOREEntry as subclass of AbstractAgent +2024-09-07 16:17:32,157 [main] TRACE ClassBuilder - read from EA: IED Agent::STOREEntry +2024-09-07 16:17:32,163 [main] TRACE ClassBuilder - Class Notification (5 in package IED Agent) +2024-09-07 16:17:32,325 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3486, uuid={B5FF53A1-E8B9-46ec-BE1B-75F6EC7C48F5}, since=null, name=PhyHealthChgCnt, alias=, stereotype=health, visibility=public, txtDescription='Provides a count of the number of transitions state of PhyHealth Attribute.', htmlDescription='

Provides a count of the number of transitions state of PhyHealth Attribute.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:32,337 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3497, uuid={C24EC3BA-E07C-4a47-9FC1-D975C6DF5FA9}, since=null, name=InternalTemp, alias=, stereotype=health, visibility=public, txtDescription='Degree Centigrade measurement of the internal IED Temperature.', htmlDescription='

Degree Centigrade measurement of the internal IED Temperature.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:32,350 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3495, uuid={11B98054-C537-42a0-938C-380F69A2A3F5}, since=null, name=NvStore, alias=, stereotype=health, visibility=public, txtDescription='Indicates the global number of kilobytes of storage allocated for local use in all storage areas.', htmlDescription='

Indicates the global number of kilobytes of storage allocated for local use in all storage areas.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:32,361 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3496, uuid={5E3EA7C8-15A7-42f6-9FBC-0C995489AB43}, since=null, name=NvStoreRem, alias=, stereotype=health, visibility=public, txtDescription='Indicates the percentage of NvStore available for storage.', htmlDescription='

Indicates the percentage of NvStore available for storage.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:32,374 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3480, uuid={8334F7D0-DA9C-4f85-8A96-1ACB87744C5B}, since=null, name=PhyHealth, alias=, stereotype=health, visibility=public, txtDescription='General health status of IED hardware and software.', htmlDescription='

General health status of IED hardware and software.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1036, _eaTypeName=PhyHealthType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:32,386 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3489, uuid={37E2129D-71C5-4030-8530-00D04FA20DDF}, since=null, name=WrmStrCnt, alias=, stereotype=health, visibility=public, txtDescription='Number of warm starts detected.', htmlDescription='

Number of warm starts detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:32,400 [main] DEBUG ClassBuilder - Adding Notification as subclass of AbstractAgent +2024-09-07 16:17:32,400 [main] TRACE ClassBuilder - read from EA: IED Agent::Notification +2024-09-07 16:17:32,405 [main] TRACE ClassBuilder - Class SecurityNotification (6 in package IED Agent) +2024-09-07 16:17:32,527 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3502, uuid={E2312704-4F51-465e-8B02-4DFC37D2286B}, since=null, name=AtkCnt, alias=, stereotype=security, visibility=public, txtDescription='Attribute that provides the number of cyber- attacks that have been detected.', htmlDescription='

Attribute that provides the number of cyber- attacks that have been detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:32,539 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3499, uuid={7B741BD7-BDA8-4148-BDA0-6667E98C3102}, since=null, name=ExpCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of expired certificates that are in the certificate storage configured for local use.', htmlDescription='

Indicates the number of expired certificates that are in the certificate storage configured for local use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:32,551 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3730, uuid={7029DE89-300D-43cb-B94F-49317EE26061}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:32,563 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3731, uuid={554C03A1-C7D0-43ea-8541-46609B5191C2}, since=null, name=NearToExpCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of certificates in the certificate storage configured for local use that have exceeded the 70% of validity period.', htmlDescription='

Indicates the number of certificates in the certificate storage configured for local use that have exceeded the 70% of validity period.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:32,575 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3498, uuid={16D2AFD2-62AE-4dfe-BA94-32B996B33302}, since=null, name=RevCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of revoked certificates that are still configured for local use.', htmlDescription='

Indicates the number of revoked certificates that are still configured for local use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:32,587 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3500, uuid={406910CA-F346-4649-99A2-5A215611BD7D}, since=null, name=RevCheckFail, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number revocation check failures.', htmlDescription='

Indicates the number revocation check failures.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:32,601 [main] DEBUG ClassBuilder - Adding SecurityNotification as subclass of AbstractAgent +2024-09-07 16:17:32,601 [main] TRACE ClassBuilder - read from EA: IED Agent::SecurityNotification +2024-09-07 16:17:32,603 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=43, _objData=UmlObjectData [id=11, uuid={FA4A74C3-A660-4c32-8794-7695680DB23E}, since=null, name=IED Agent, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 17, the IED Agent package contains the object descriptions for the environmental information to be provided for the network and system monitoring of environmental conditions where the device is operating.', htmlDescription='

As shown in Figure 17, the IED Agent package contains the object descriptions for the environmental information to be provided for the network and system monitoring of environmental conditions where the device is operating.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=ied-agent, mibName=IEC-62351-DEV-MIB, mibPrefix=iED, objectBranchId=2, objectIdentity=ied-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=IED Agent, _objData=UmlObjectData [id=9, uuid={C3FD1BF6-CB13-4fb3-9C75-D9FACF470ACD}, since=null, name=IED, alias=, stereotype=, visibility=public, txtDescription='The Intelligent Electronic Device class attributes', htmlDescription='

The Intelligent Electronic Device class attributes

'], _portrait=true, _kind=LOGICAL]], _classes=6 +2024-09-07 16:17:32,608 [main] INFO PackageBuilder - processing package Application Protocols Agents (9) ... +2024-09-07 16:17:32,713 [main] INFO PackageBuilder - processing package Common objects (0) ... +2024-09-07 16:17:32,724 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Common objects, _objData=UmlObjectData [id=64, uuid={583FFED4-9F6C-420f-88B3-80FF9F387121}, since=null, name=Application Protocol common objects, alias=, stereotype=, visibility=public, txtDescription='Application Protocol common objects', htmlDescription='

Application Protocol common objects

'], _portrait=true, _kind=LOGICAL] +2024-09-07 16:17:32,751 [main] TRACE ClassBuilder - Class CommonProtocolInfo (1 in package Common objects) +2024-09-07 16:17:32,897 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4079, uuid={CCA64890-32AD-4a39-BD2E-B115DB6259D5}, since=null, name=IEC62351part3, alias=, stereotype=security, visibility=public, txtDescription='True is security profile in use for this association (IEC 62351-3).', htmlDescription='

True is security profile in use for this association (IEC 62351-3).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:32,910 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4087, uuid={0CDF636C-287B-44bf-AF3B-83CBAEB3791B}, since=null, name=Part3ConnectionId, alias=, stereotype=protocol, visibility=public, txtDescription='IEC 62351-3 Transport layer connection id in use for this Association. Meaningful only if IEC62351Part3 is true.', htmlDescription='

IEC 62351-3 Transport layer connection id in use for this Association. Meaningful only if IEC62351Part3 is true.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:32,923 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4099, uuid={18DFBDB7-B849-4a22-AEBA-4B62D877531D}, since=null, name=TCPHndShTime, alias=, stereotype=performance, visibility=public, txtDescription='Duration of the TCP handshake. Only applicable when the when the application layer has access to the TLS layer.', htmlDescription='

Duration of the TCP handshake. Only applicable when the when the application layer has access to the TLS layer.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:32,936 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4107, uuid={A9F9F05C-681E-480a-B663-D8EB1E1FE300}, since=null, name=TLSHndTime, alias=, stereotype=performance, visibility=public, txtDescription='TLS Handshake time. Only applicable when the when the application layer has access to the TLS layer.', htmlDescription='

TLS Handshake time. Only applicable when the when the application layer has access to the TLS layer.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:32,951 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4109, uuid={F7CBA04D-7FEA-47c7-A560-EA06B30C3056}, since=null, name=TLSRenegotiationTime, alias=, stereotype=performance, visibility=public, txtDescription='TLS Renegotiation time. Only applicable when the when the application layer has access to the TLS layer.', htmlDescription='

TLS Renegotiation time. Only applicable when the when the application layer has access to the TLS layer.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:32,963 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4108, uuid={CBC69A2E-FFEA-4612-9907-B3E519FB4E3F}, since=null, name=TLSResumptionTime, alias=, stereotype=performance, visibility=public, txtDescription='TLS Resumption time. Only applicable when the when the application layer has access to the TLS layer.', htmlDescription='

TLS Resumption time. Only applicable when the when the application layer has access to the TLS layer.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:32,975 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4106, uuid={EF9560F0-0EC3-4417-883D-96C32AE7803C}, since=null, name=TotalHndTime, alias=, stereotype=performance, visibility=public, txtDescription='Transport + Application Handshake time.', htmlDescription='

Transport + Application Handshake time.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:32,987 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4105, uuid={BCBEF3C5-946E-42cf-8D1D-CAAC2679E795}, since=null, name=TransportHndTime, alias=, stereotype=performance, visibility=public, txtDescription='Transport layer handshake time. It is equal to TCPHndTime if IEC62351part3 is false, it is equal to TCPHndTime + TLSHndTime if IEC62351part3 is true.', htmlDescription='

Transport layer handshake time. It is equal to TCPHndTime if IEC62351part3 is false, it is equal to TCPHndTime + TLSHndTime if IEC62351part3 is true.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:33,040 [main] DEBUG ClassBuilder - Adding CommonProtocolInfo as subclass of AbstractAgent +2024-09-07 16:17:33,043 [main] TRACE ClassBuilder - read from EA: Common objects::CommonProtocolInfo +2024-09-07 16:17:33,045 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Application Protocols Agents, _depth=4, _eaElementID=1030, _objData=UmlObjectData [id=383, uuid={AE0BBC52-C6A1-4653-96A9-F35780566A54}, since=null, name=Common objects, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 18, this package includes the common class for the application protocols.', htmlDescription='

As shown in Figure 18, this package includes the common class for the application protocols.

'], _modelId=362, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=Common objects, _objData=UmlObjectData [id=64, uuid={583FFED4-9F6C-420f-88B3-80FF9F387121}, since=null, name=Application Protocol common objects, alias=, stereotype=, visibility=public, txtDescription='Application Protocol common objects', htmlDescription='

Application Protocol common objects

'], _portrait=true, _kind=LOGICAL]], _classes=1 +2024-09-07 16:17:33,049 [main] INFO PackageBuilder - processing package IEC62351-3 ed.2 Agent (6) ... +2024-09-07 16:17:33,071 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=IEC62351-3 ed.2 Agent, _objData=UmlObjectData [id=72, uuid={38D28719-1A0B-491f-9010-AF2D3032BB4B}, since=null, name=IEC 62351-3 ed.2 Agent Relationships, alias=, stereotype=, visibility=public, txtDescription='This picture depicts the relationship between IEC 62351-3 ed.2 objects', htmlDescription='

This picture depicts the relationship between IEC 62351-3 ed.2 objects

'], _portrait=true, _kind=LOGICAL] +2024-09-07 16:17:33,189 [main] TRACE ClassBuilder - Class IEC62351-3ed2security (1 in package IEC62351-3 ed.2 Agent) +2024-09-07 16:17:33,762 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4460, uuid={7510EED9-2C7E-480d-BD60-571DDC732128}, since=null, name=tlsEarlyDataCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: counts early data in handshake detected but neglected.', htmlDescription='

TLSv1.3: counts early data in handshake detected but neglected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:33,777 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4454, uuid={4FA3487F-4B3B-477e-99E8-2F5D24C013EF}, since=null, name=tlsDisallowedCipherCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts disallowed cipher suite proposed.', htmlDescription='

Counts disallowed cipher suite proposed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:33,791 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4461, uuid={F6A6964F-1010-4fc3-9112-0BBBF8244593}, since=null, name=tlsCertSizeMismatchCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts occurrences of endpoint certificate size exceeds limits', htmlDescription='

Counts occurrences of endpoint certificate size exceeds limits

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:33,806 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4463, uuid={89576E04-2176-4454-8207-BA0A305B9547}, since=null, name=tlsNoCaMatchCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts events of matching RootCA certificate for endpoint certificate validation not available.', htmlDescription='

Counts events of matching RootCA certificate for endpoint certificate validation not available.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:33,822 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4464, uuid={E1FBC1A2-6D0C-437e-95D2-873497AF44C6}, since=null, name=tlsNoSigAlgoExtCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: Counts events of no signature-algorithm extension included. Fallback to deprecated signature algorithm', htmlDescription='

TLSv1.2: Counts events of no signature-algorithm extension included. Fallback to deprecated signature algorithm

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:33,836 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4465, uuid={0A95DFE0-8624-4b8a-814E-A12605F19B07}, since=null, name=tlsDepDigAlgCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: Deprecated signature algorithm combination detected counter.', htmlDescription='

TLSv1.2: Deprecated signature algorithm combination detected counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:33,851 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4466, uuid={B68E613E-EEC5-4696-A841-9EE87D237582}, since=null, name=tlsNoTrustedCertMatchCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times Endpoint certificate not in certificate trust list', htmlDescription='

Counts the times Endpoint certificate not in certificate trust list

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:33,867 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4467, uuid={614E4EB0-BAA2-4b19-B00A-EA1FF0D8A3BD}, since=null, name=tlsCertRevokedCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times when endpoint certificate not in certificate trust list', htmlDescription='

Counts the times when endpoint certificate not in certificate trust list

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:33,883 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4468, uuid={1E2A987C-A48F-4eb7-A3BA-2C77F4A68216}, since=null, name=tlsNoCrlCnt, alias=, stereotype=security, visibility=public, txtDescription='Local CRL not accessible counter.', htmlDescription='

Local CRL not accessible counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:33,898 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4469, uuid={4A915807-5D1C-40af-9AA5-A745061F5DED}, since=null, name=tlsCrlExpCnt, alias=, stereotype=security, visibility=public, txtDescription='CRL expired.counter.', htmlDescription='

CRL expired.counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:33,913 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4470, uuid={AE06F05B-3CA8-44d1-9A20-5F4997A319FF}, since=null, name=tlsNoEpskModeCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: no support for encrypt-then-MAC counter', htmlDescription='

TLSv1.2: no support for encrypt-then-MAC counter

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:33,928 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4471, uuid={3E766604-E835-4b5a-A853-08A031D9FE22}, since=null, name=tlsNoEncryptThenMacCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: support of non-ephemeral PSK mode only counter.', htmlDescription='

TLSv1.3: support of non-ephemeral PSK mode only counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:33,944 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4472, uuid={C8F076B9-538C-423c-BC24-3756EAB54AEE}, since=null, name=tlsOcspResExpCnt, alias=, stereotype=security, visibility=public, txtDescription='OCSP response expired counter.', htmlDescription='

OCSP response expired counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:33,957 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4473, uuid={808D4C4A-240F-40a2-A84B-7EB7FAF41461}, since=null, name=tlsCertExpCnt, alias=, stereotype=security, visibility=public, txtDescription='Endpoint certificate expired counter.', htmlDescription='

Endpoint certificate expired counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:33,972 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4474, uuid={03D6BEA0-3F60-4e5b-BB2A-9126ABD1750F}, since=null, name=tlsNoSkUpdateCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: Peer does not perform session key update counter.', htmlDescription='

TLSv1.3: Peer does not perform session key update counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:33,987 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4475, uuid={264129C9-891C-4677-A001-B283CE215402}, since=null, name=tlsSigAlgMismatchCnt, alias=, stereotype=security, visibility=public, txtDescription='Signature algorithms in received endpoint certificate not supported counter.', htmlDescription='

Signature algorithms in received endpoint certificate not supported counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:34,002 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4476, uuid={A460A30B-5686-4f92-AFDC-C53C056A3309}, since=null, name=tlsSigVFailedCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times certificate signature could not be verified.', htmlDescription='

Counts the times certificate signature could not be verified.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:34,019 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4477, uuid={0FF962F9-BFB0-4683-96B5-09E38C57E324}, since=null, name=tlsShortRsaKeyCnt, alias=, stereotype=security, visibility=public, txtDescription='RSA key with key length of less than 2048 bit detected counter.', htmlDescription='

RSA key with key length of less than 2048 bit detected counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:34,033 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4478, uuid={39629ED0-372D-4c6f-B89B-4C13BA7374C6}, since=null, name=tlsMinKeyCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times RSA key with minimum key length of 1024 bit detected and allowed by configuration', htmlDescription='

Counts the times RSA key with minimum key length of 1024 bit detected and allowed by configuration

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:34,049 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4479, uuid={947A8F86-CF55-46c2-B517-3D4FA76FBA27}, since=null, name=tlsShortKeyCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times RSA key with insufficient key length (less than 1024 bit) detected..', htmlDescription='

Counts the times RSA key with insufficient key length (less than 1024 bit) detected..

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:34,064 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4480, uuid={560E07AC-D31D-4807-B518-20E83C9DD1A3}, since=null, name=tlsDepHashCnt, alias=, stereotype=security, visibility=public, txtDescription='Use of deprecated hash algorithm detected counter', htmlDescription='

Use of deprecated hash algorithm detected counter

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:34,078 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4462, uuid={6EDD77BB-4D13-4937-96A5-231A8441C74A}, since=null, name=tlsNoTrCaMatchSCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: No support of peer signalled trusted CA counter.', htmlDescription='

TLSv1.3: No support of peer signalled trusted CA counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:34,094 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4455, uuid={15470B2B-1EDC-41c5-AD3A-2E3583BF3A65}, since=null, name=tlsSessionidExpiredFullHsCnt, alias=, stereotype=security, visibility=public, txtDescription='Counter of sessionID expired, Resumption not possible, full TLS handshake done.', htmlDescription='

Counter of sessionID expired, Resumption not possible, full TLS handshake done.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:34,109 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4458, uuid={2B104C3D-3F3F-4c1a-812A-DC170DBA1CA2}, since=null, name=tlsNoRenegTicket, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: Number of times peer does not use secure renegotiation (session tickets) capability in renegotiated handshake.', htmlDescription='

TLSv1.2: Number of times peer does not use secure renegotiation (session tickets) capability in renegotiated handshake.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:34,124 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4457, uuid={D1BA2BD4-A79C-4617-9538-493A2956FC91}, since=null, name=tlsNoRenegSigCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: Number of times peer does not signal secure renegotiation support (session tickets) in initial handshake.', htmlDescription='

TLSv1.2: Number of times peer does not signal secure renegotiation support (session tickets) in initial handshake.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:34,139 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4453, uuid={E290CB99-A7B9-4ee1-AC49-29234D78A42C}, since=null, name=tlsSessionClosedRevCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the TLS session closure due to received revoked endpoint certificate.', htmlDescription='

Counts the TLS session closure due to received revoked endpoint certificate.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:34,153 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4459, uuid={854B3699-1B9D-4f64-B8B6-56CB2FD90FBB}, since=null, name=tlsNoTrCaMatchScCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: No support of peer signalled trusted CA counter.', htmlDescription='

TLSv1.3: No support of peer signalled trusted CA counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:34,168 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4450, uuid={8D2D94D8-3C6F-4bda-878C-F54D750FFD27}, since=null, name=tlsHsSuccessCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the TLS session successfully established.', htmlDescription='

Counts the TLS session successfully established.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:34,183 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4456, uuid={D19394DC-2DE1-403e-9C38-01EE35A0DDFD}, since=null, name=tlsNoReneg, alias=, stereotype=security, visibility=public, txtDescription='Number of times renegotiation interval is exceeded. TLSv1.2 peer does not renegotiate.', htmlDescription='

Number of times renegotiation interval is exceeded. TLSv1.2 peer does not renegotiate.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:34,197 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4452, uuid={B1BA2AF1-A523-4ca2-979A-38272AF41E2B}, since=null, name=tlsNoLocalCertCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times local endpoint certificate is not available.', htmlDescription='

Number of times local endpoint certificate is not available.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:34,211 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4447, uuid={3D255C0C-5B4C-4589-A304-5D6FAF7E69A2}, since=null, name=tlsWeakVersionCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times when deprecated TLS version proposed and support of TLS versions prior to TLSv1.2 enabled', htmlDescription='

Counts the times when deprecated TLS version proposed and support of TLS versions prior to TLSv1.2 enabled

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:34,225 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4449, uuid={4B8CCA5B-77FF-4b70-98D5-168DA947FE99}, since=null, name=tlsVersionChangeCnt, alias=, stereotype=security, visibility=public, txtDescription='Count the TLS version change (potential downgrade) in ongoing session detected.', htmlDescription='

Count the TLS version change (potential downgrade) in ongoing session detected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:34,240 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4446, uuid={C75A400F-5B38-4bc5-BE6A-48FB4977B686}, since=null, name=tlsDeprecatedVersionCnT, alias=, stereotype=security, visibility=public, txtDescription='Counts the times when a deprecated TLS version is proposed and support of TLS versions prior to TLSv1.2 is disabled.', htmlDescription='

Counts the times when a deprecated TLS version is proposed and support of TLS versions prior to TLSv1.2 is disabled.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:34,254 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4451, uuid={ACB5D4CD-DBF9-4e86-892D-469DB0082C7E}, since=null, name=tlsNoPeerCertCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times peer did not provide endpoint certificate during the TLS handshake.', htmlDescription='

Number of times peer did not provide endpoint certificate during the TLS handshake.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:34,268 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4448, uuid={A02762E7-1235-453b-8BB2-6D4E8F705EA1}, since=null, name=tlsDisallowedVersionCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times when disallowed TLS version (prior to TLSv1.0) proposed', htmlDescription='

Counts the times when disallowed TLS version (prior to TLSv1.0) proposed

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:34,311 [main] DEBUG ClassBuilder - Adding IEC62351-3ed2security as subclass of AbstractAgent +2024-09-07 16:17:34,314 [main] TRACE ClassBuilder - read from EA: IEC62351-3 ed.2 Agent::IEC62351-3ed2security +2024-09-07 16:17:34,319 [main] TRACE ClassBuilder - Class TLSSession (2 in package IEC62351-3 ed.2 Agent) +2024-09-07 16:17:34,474 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4488, uuid={851472EB-C0E1-4464-B067-F650659846CF}, since=null, name=SessionId, alias=, stereotype=index, visibility=public, txtDescription='Id of the TLS session.', htmlDescription='

Id of the TLS session.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibindex=yes, Version=1}] +2024-09-07 16:17:34,485 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4489, uuid={B226702B-AC3E-4f8c-BF07-E3347944EA3A}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:34,496 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4490, uuid={69D938D2-D561-48eb-8BCF-FA2CFA350C07}, since=null, name=LocAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Local address.', htmlDescription='

Local address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:34,509 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4491, uuid={6C3E2D7A-F0C0-424b-A05C-4A96E29F65E7}, since=null, name=LocAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Local address type.', htmlDescription='

Local address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:34,522 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4492, uuid={5C777986-F9FD-4fbf-AAFB-2E087F0B21F7}, since=null, name=RemAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address.', htmlDescription='

Remote address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:34,533 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4493, uuid={7AB71D12-EB91-421a-B172-48B97B758080}, since=null, name=RemAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address type.', htmlDescription='

Remote address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:34,582 [main] DEBUG ClassBuilder - Adding TLSSession as subclass of AbstractAgent +2024-09-07 16:17:34,583 [main] DEBUG ClassBuilder - Adding TLSSession as subclass of CommonProtocolInfo +2024-09-07 16:17:34,588 [main] DEBUG ClassBuilder - Adding TLSSession as subclass of IEC62351-3ed2security +2024-09-07 16:17:34,588 [main] TRACE ClassBuilder - read from EA: IEC62351-3 ed.2 Agent::TLSSession +2024-09-07 16:17:34,593 [main] TRACE ClassBuilder - Class Summary (3 in package IEC62351-3 ed.2 Agent) +2024-09-07 16:17:34,714 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4481, uuid={8E8A2B77-DF1B-4f33-B823-499F2C569AB8}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:34,727 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4482, uuid={CBC3AD5A-6EDA-4a33-95FA-37A565CEA2C1}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered (security or health).', htmlDescription='

Provides the last known event encountered (security or health).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:34,742 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4483, uuid={4669B65B-F448-43b1-9BB7-DD9A5FEFA04B}, since=null, name=Server, alias=, stereotype=table, visibility=public, txtDescription='Client session (when applicable)', htmlDescription='

Client session (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=1077, _eaTypeName=ServerTLS, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{MIBPrefix=tC, Version=1}] +2024-09-07 16:17:34,757 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4484, uuid={C3E6C81C-3F3D-4c3b-BABC-8573CD333CF5}, since=null, name=Client, alias=, stereotype=table, visibility=public, txtDescription='Server session (when applicable)', htmlDescription='

Server session (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=1079, _eaTypeName=ClientTLS, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{MIBPrefix=tC, Version=1}] +2024-09-07 16:17:34,769 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4485, uuid={36BE9868-D051-429a-8C15-ADEDE8C4F60A}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object', htmlDescription='

Security events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1078, _eaTypeName=IEC62351part3ed2SecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:34,782 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4486, uuid={9668B8A2-A9DD-433f-A572-90776DAC42FC}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object', htmlDescription='

State events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1074, _eaTypeName=IEC62351part3edNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:34,796 [main] DEBUG ClassBuilder - Adding Summary as subclass of IEC62351-3ed2security +2024-09-07 16:17:34,797 [main] TRACE ClassBuilder - read from EA: IEC62351-3 ed.2 Agent::Summary +2024-09-07 16:17:34,802 [main] TRACE ClassBuilder - Class IEC62351part3ed2SecurityNotification (4 in package IEC62351-3 ed.2 Agent) +2024-09-07 16:17:34,847 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification, _objData=UmlObjectData [id=4487, uuid={6943E7EC-3F67-43a9-90B0-9BCF7DB4D056}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Description of last event reported', htmlDescription='

Description of last event reported

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:34,862 [main] DEBUG ClassBuilder - Adding IEC62351part3ed2SecurityNotification as subclass of AbstractAgent +2024-09-07 16:17:34,862 [main] TRACE ClassBuilder - read from EA: IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification +2024-09-07 16:17:34,867 [main] TRACE ClassBuilder - Class ClientTLS (6 in package IEC62351-3 ed.2 Agent) +2024-09-07 16:17:34,896 [main] DEBUG ClassBuilder - Adding ClientTLS as subclass of TLSSession +2024-09-07 16:17:34,896 [main] TRACE ClassBuilder - read from EA: IEC62351-3 ed.2 Agent::ClientTLS +2024-09-07 16:17:34,902 [main] TRACE ClassBuilder - Class ServerTLS (7 in package IEC62351-3 ed.2 Agent) +2024-09-07 16:17:34,932 [main] DEBUG ClassBuilder - Adding ServerTLS as subclass of TLSSession +2024-09-07 16:17:34,932 [main] TRACE ClassBuilder - read from EA: IEC62351-3 ed.2 Agent::ServerTLS +2024-09-07 16:17:34,934 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Application Protocols Agents, _depth=4, _eaElementID=1073, _objData=UmlObjectData [id=393, uuid={0BB5C1E1-95F4-4e19-914B-062361E3FE90}, since=null, name=IEC62351-3 ed.2 Agent, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 19, the IEC 62351-3 Agent package includes the monitoring classes for the IEC 62351-3 ed. 2 events.', htmlDescription='

As shown in Figure 19, the IEC 62351-3 Agent package includes the monitoring classes for the IEC 62351-3 ed. 2 events.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=iec62351-3-ed2-agent, mibName=IEC-62351-3-ED2, mibPrefix=part3, objectBranchId=4, objectIdentity=iec62351-3-ed2-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=IEC62351-3 ed.2 Agent, _objData=UmlObjectData [id=72, uuid={38D28719-1A0B-491f-9010-AF2D3032BB4B}, since=null, name=IEC 62351-3 ed.2 Agent Relationships, alias=, stereotype=, visibility=public, txtDescription='This picture depicts the relationship between IEC 62351-3 ed.2 objects', htmlDescription='

This picture depicts the relationship between IEC 62351-3 ed.2 objects

'], _portrait=true, _kind=LOGICAL]], _classes=6 +2024-09-07 16:17:34,939 [main] INFO PackageBuilder - processing package IEEE 1815 and IEC 60870-5 Agent (6) ... +2024-09-07 16:17:34,960 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=IEEE 1815 and IEC 60870-5 Agent, _objData=UmlObjectData [id=33, uuid={8B1E40BA-BA71-478e-BC81-025DA5A45A35}, since=null, name=IEEE 1815 and IEC 60870 Agent Relationships, alias=, stereotype=, visibility=public, txtDescription='This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes. +Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.', htmlDescription='

This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes.

Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 16:17:35,094 [main] TRACE ClassBuilder - Class 60870andDNPProtocolInfo (1 in package IEEE 1815 and IEC 60870-5 Agent) +2024-09-07 16:17:35,580 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3991, uuid={E3FE31B6-2024-4e98-99E9-12CFAC8AEC6F}, since=null, name=AuthFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Count of the number of authorization failures.', htmlDescription='

Count of the number of authorization failures.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:35,591 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3992, uuid={F6B00869-D41C-44b6-B4FF-FA092ED078AE}, since=null, name=CtrlPrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of control actions attempted that did not have the correct privilege.', htmlDescription='

Number of control actions attempted that did not have the correct privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:35,602 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3993, uuid={2CBA5468-91CA-4cf0-BAC3-55AC2EC54FC8}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted.', htmlDescription='

Number PDUs received that could not be decrypted.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:35,613 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3405, uuid={66AB8F6D-0721-44fb-861C-C607A8498C6F}, since=null, name=ExT0Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T0 (connection establishment).', htmlDescription='

Count the expirations of the 104 time-out T0 (connection establishment).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:35,624 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3406, uuid={F62CF6E4-A1AF-476b-B35E-F4DE2A4E0591}, since=null, name=ExT1Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T1 (PDU).', htmlDescription='

Count the expirations of the 104 time-out T1 (PDU).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:35,635 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3407, uuid={8099C0E4-518A-434c-BF60-73BC878C2238}, since=null, name=ExT2Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T2 (ACK).', htmlDescription='

Count the expirations of the 104 time-out T2 (ACK).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:35,646 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3408, uuid={439C3366-994E-4fbc-A804-80CA3D745D68}, since=null, name=ExT3Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T3 (TEST).', htmlDescription='

Count the expirations of the 104 time-out T3 (TEST).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:35,657 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3124, uuid={B8936537-E883-4ab6-8A65-47CF971C5BB4}, since=null, name=InDisc, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDUs that were discarded.', htmlDescription='

Number of received PDUs that were discarded.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:35,668 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3994, uuid={9A232ABD-C751-45bb-8278-552FEB934C4E}, since=null, name=InErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of PDUs received that were in error.', htmlDescription='

Number of PDUs received that were in error.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:35,680 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3995, uuid={A4886E74-D4DE-4163-BBF4-BFB4DA9AA818}, since=null, name=InOvCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer overflows detected due to incoming communication.', htmlDescription='

Number of buffer overflows detected due to incoming communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:35,694 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3996, uuid={34EAD965-3EEE-42ae-9A33-371405C3B4A8}, since=null, name=InterPDUTime, alias=, stereotype=protocol, visibility=public, txtDescription='Time between two consecutives PDUs.', htmlDescription='

Time between two consecutives PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:35,707 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3997, uuid={E65434B6-333B-4677-9DB7-2689202D1C31}, since=null, name=MisPDUCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Provides an attribute that represents the count of missed PDU.', htmlDescription='

Provides an attribute that represents the count of missed PDU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:35,718 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3141, uuid={3DEDE5E8-C46A-4627-A2B8-FA7B2651B388}, since=null, name=OutErr, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmission errors.', htmlDescription='

Number of transmission errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:35,730 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3990, uuid={4B336F22-0DBB-425c-9CE9-8A2B3968C18C}, since=null, name=OutUv, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer underflows detected due to outgoing serial communication.', htmlDescription='

Number of buffer underflows detected due to outgoing serial communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:35,741 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3998, uuid={56C57887-C03F-430b-A3CC-47993296C81A}, since=null, name=PDURTT, alias=, stereotype=protocol, visibility=public, txtDescription='PDU round trip time.', htmlDescription='

PDU round trip time.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:35,752 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3999, uuid={F9A50D40-7721-4f2f-B450-70B42C8159B7}, since=null, name=PDUSizeFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDU with wrong size.', htmlDescription='

Number of received PDU with wrong size.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:35,763 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4000, uuid={C3639D7C-0EF8-4ffb-912C-24F7FA06CBA6}, since=null, name=PduTampCnt, alias=, stereotype=security, visibility=public, txtDescription='Provides an attribute that indicates the count of the number of PDUs that have been detected to be tampered with.', htmlDescription='

Provides an attribute that indicates the count of the number of PDUs that have been detected to be tampered with.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:35,776 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4001, uuid={AD2C395F-15DF-4e49-A4EF-1C8758015811}, since=null, name=PrimaryInterface, alias=, stereotype=protocol, visibility=public, txtDescription='True if the Protocol is running on primary interface (false when backup interface is in use).', htmlDescription='

True if the Protocol is running on primary interface (false when backup interface is in use).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:35,788 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4002, uuid={15035EBB-A53C-4c7d-BEA7-D6AF668B9A81}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:35,800 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3403, uuid={D5E66B05-319E-467b-9B20-4D0021DE5B43}, since=null, name=RtxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the number of retransmissions.', htmlDescription='

Count the number of retransmissions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:35,811 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3123, uuid={5F22267E-6104-41c7-A2B6-BBFFCE828B94}, since=null, name=RxCritical, alias=, stereotype=protocol, visibility=public, txtDescription='Number of critical requests received (according to IEC 62351-5).', htmlDescription='

Number of critical requests received (according to IEC 62351-5).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:35,822 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4003, uuid={37C50A09-5C52-4612-ACD2-3CA5076E832A}, since=null, name=RxPdu, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDUs (including in error PDUs).', htmlDescription='

Number of received PDUs (including in error PDUs).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:35,833 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3135, uuid={51629B5F-2B79-4aa4-A704-E8D4D467D6E2}, since=null, name=RxSolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Number of solicited requests received. Only for DNP.', htmlDescription='

Number of solicited requests received. Only for DNP.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:35,844 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3145, uuid={546FFA93-9BFB-40fc-8F59-570F9FA50834}, since=null, name=RxUnsolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Contains the count of number of unsolicited requests that have been transmitted since the last reset.', htmlDescription='

Contains the count of number of unsolicited requests that have been transmitted since the last reset.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:35,855 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4004, uuid={219E7530-12EB-4a52-AE1A-536554F0ED28}, since=null, name=SessKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of session key negotiations that failed.', htmlDescription='

Number of session key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:35,866 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3122, uuid={9760193C-146A-427a-88DE-4FA2BBC2EA9E}, since=null, name=TxCritical, alias=, stereotype=protocol, visibility=public, txtDescription='Number of critical requests transmitted (according to IEC 62351-5)', htmlDescription='

Number of critical requests transmitted (according to IEC 62351-5)

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:35,877 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4005, uuid={984B7498-8B61-45e0-BE19-6E17EA80D9D0}, since=null, name=TxPdu, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmitted PDUs.', htmlDescription='

Number of transmitted PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:35,889 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3120, uuid={7F13ABEF-5E7A-4fc2-BE27-AB2E70B1B97A}, since=null, name=TxSolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Number of solicited requests transmitted. Only for DNP.', htmlDescription='

Number of solicited requests transmitted. Only for DNP.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:35,901 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3121, uuid={76A62C46-9C78-48ff-9770-F2A7BE837E1F}, since=null, name=TxUnsolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Contains the count of number of unsolicited requests that have been transmitted since the last reset.', htmlDescription='

Contains the count of number of unsolicited requests that have been transmitted since the last reset.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:35,912 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4006, uuid={2AAAEC13-D4BB-4d2a-8461-00DBAE43010B}, since=null, name=UpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations that failed.', htmlDescription='

Number of update key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:35,947 [main] DEBUG ClassBuilder - Adding 60870andDNPProtocolInfo as subclass of AbstractAgent +2024-09-07 16:17:35,947 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo +2024-09-07 16:17:35,951 [main] TRACE ClassBuilder - Class Association (2 in package IEEE 1815 and IEC 60870-5 Agent) +2024-09-07 16:17:36,145 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=3726, uuid={361DD26C-8F48-46fd-BCE9-B6A3787F5FA6}, since=null, name=AssociationId, alias=, stereotype=index, visibility=public, txtDescription='Id of the association.', htmlDescription='

Id of the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:36,156 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=3241, uuid={87C4526C-4B22-42d3-BFDD-0EBE86166CDA}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:36,172 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2417, uuid={FF67FCFB-43B0-4a5a-8A33-52E57E2A1E33}, since=null, name=LocAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Local address.', htmlDescription='

Local address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 16:17:36,189 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=3715, uuid={857943C5-1917-46b9-BAA2-F6DBBE305DDA}, since=null, name=LocAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Local address type.', htmlDescription='

Local address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 16:17:36,202 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2413, uuid={218B44A4-22AA-4a3a-B54C-BC3742A6A951}, since=null, name=ProtID, alias=, stereotype=protocol, visibility=public, txtDescription='Protocol ID in use.', htmlDescription='

Protocol ID in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=780, _eaTypeName=ProtIdType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:36,215 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2412, uuid={2DCFE840-6DFB-49ca-9D60-6F00BBFE9375}, since=null, name=ProviderDesc, alias=, stereotype=identity, visibility=public, txtDescription='Textual description of the provider that is in use.', htmlDescription='

Textual description of the provider that is in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:36,227 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2411, uuid={739910E5-2234-4d7f-BF07-E2FAC9061548}, since=null, name=ProviderName, alias=, stereotype=identity, visibility=public, txtDescription='Identity of the provider responding as the outstation for this association.', htmlDescription='

Identity of the provider responding as the outstation for this association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:36,246 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2416, uuid={F1041BDF-E1EE-44c3-B346-5643EFA0E8C7}, since=null, name=RemAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address.', htmlDescription='

Remote address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{isIndex=yes, mibIndex=yes, Version=0}] +2024-09-07 16:17:36,264 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=3714, uuid={25C69ED7-7E01-4316-B15C-28D99CC5FC94}, since=null, name=RemAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address type.', htmlDescription='

Remote address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{isIndex=yes, mibIndex=yes, Version=0}] +2024-09-07 16:17:36,277 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2410, uuid={4F98C052-71F6-44e6-A31C-2A148D61DF91}, since=null, name=TLnkErrCnt, alias=, stereotype=health, visibility=public, txtDescription='Count of communication link errors detected.', htmlDescription='

Count of communication link errors detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:36,289 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2415, uuid={FED824F2-3E50-44cd-A78C-B816071534FB}, since=null, name=TLnkTyp, alias=, stereotype=protocol, visibility=public, txtDescription='Type of transport being utilized.', htmlDescription='

Type of transport being utilized.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=778, _eaTypeName=LnkType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:36,339 [main] DEBUG ClassBuilder - Adding Association as subclass of AbstractAgent +2024-09-07 16:17:36,340 [main] DEBUG ClassBuilder - Adding Association as subclass of 60870andDNPProtocolInfo +2024-09-07 16:17:36,344 [main] DEBUG ClassBuilder - Adding Association as subclass of CommonProtocolInfo +2024-09-07 16:17:36,344 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent::Association +2024-09-07 16:17:36,349 [main] TRACE ClassBuilder - Class Summary (3 in package IEEE 1815 and IEC 60870-5 Agent) +2024-09-07 16:17:36,475 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=3248, uuid={37A47CAE-5E15-4947-9824-88474381CEB3}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:36,488 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=3708, uuid={33EEE0D1-CEBA-4f55-8388-E92B798B5827}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered (security or health).', htmlDescription='

Provides the last known event encountered (security or health).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:36,502 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=2278, uuid={D8685894-627E-4b6f-B670-3C72CC90DF6B}, since=null, name=Master, alias=, stereotype=table, visibility=public, txtDescription='Client association (when applicable)', htmlDescription='

Client association (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=820, _eaTypeName=MasterAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{MIBPrefix=tC, Version=0}] +2024-09-07 16:17:36,517 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=2287, uuid={364CBB2E-460C-46ce-AC40-149F1C18EAC8}, since=null, name=Outstation, alias=, stereotype=table, visibility=public, txtDescription='Server association (when applicable)', htmlDescription='

Server association (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=821, _eaTypeName=OutstationAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{MIBPrefix=tC, Version=0}] +2024-09-07 16:17:36,528 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=3609, uuid={86E71A83-DD23-44dd-AF05-2C4883970DBA}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object', htmlDescription='

Security events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=914, _eaTypeName=60870andDNPSecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:36,540 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=3608, uuid={E3191E3F-E629-4bfd-A8E1-64D78A2B9955}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object', htmlDescription='

State events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=915, _eaTypeName=60870andDNPNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:36,555 [main] DEBUG ClassBuilder - Adding Summary as subclass of 60870andDNPProtocolInfo +2024-09-07 16:17:36,555 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent::Summary +2024-09-07 16:17:36,560 [main] TRACE ClassBuilder - Class 60870andDNPSecurityNotification (4 in package IEEE 1815 and IEC 60870-5 Agent) +2024-09-07 16:17:36,707 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3519, uuid={8EC7A2E6-FA1E-44bf-871A-8E7A12508F3F}, since=null, name=AuthFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Count of the number of authorization failures.', htmlDescription='

Count of the number of authorization failures.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:36,719 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3518, uuid={F5BEAE2F-4536-4f9c-9478-CF23E2A2D7C5}, since=null, name=CtrlPrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of control actions attempted that did not have the correct privilege.', htmlDescription='

Number of control actions attempted that did not have the correct privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:36,731 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3522, uuid={9ABAB39B-C8D2-427c-805D-DD74A37B15BD}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted.', htmlDescription='

Number PDUs received that could not be decrypted.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:36,743 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=4043, uuid={1BC26E95-9659-4250-87C9-365D73AD44BE}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered (security or health).', htmlDescription='

Provides the last known event encountered (security or health).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:36,755 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3520, uuid={2018A0E6-F948-40c3-98F5-CC50CFBD7527}, since=null, name=PduTampCnt, alias=, stereotype=security, visibility=public, txtDescription='Provides an attribute that indicates the count of the number of PDUs that have been detected to be tampered with.', htmlDescription='

Provides an attribute that indicates the count of the number of PDUs that have been detected to be tampered with.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:36,769 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3521, uuid={F0F1CF0B-1E15-4c19-ACB3-B4C1D745383F}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:36,781 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3523, uuid={22ADAAB8-8A4A-49c6-A261-6FC1E02DFEDB}, since=null, name=SessKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of session key negotiations that failed.', htmlDescription='

Number of session key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:36,794 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3524, uuid={A9AFB691-7A96-43a3-9FDB-B197827A4D8C}, since=null, name=UpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations that failed.', htmlDescription='

Number of update key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:36,808 [main] DEBUG ClassBuilder - Adding 60870andDNPSecurityNotification as subclass of AbstractAgent +2024-09-07 16:17:36,809 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification +2024-09-07 16:17:36,814 [main] TRACE ClassBuilder - Class 60870andDNPNotification (5 in package IEEE 1815 and IEC 60870-5 Agent) +2024-09-07 16:17:36,918 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3526, uuid={6936B8C9-BCD0-46a8-B2A7-4423628A89F6}, since=null, name=InErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of PDUs received that were in error.', htmlDescription='

Number of PDUs received that were in error.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:36,929 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3528, uuid={97175DF9-326B-40f7-B626-D213159A0A56}, since=null, name=InOvCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer overflows detected due to incoming communication.', htmlDescription='

Number of buffer overflows detected due to incoming communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:36,940 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3529, uuid={47916BBB-21C9-49df-8C8B-3A9375A29441}, since=null, name=OutUv, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer underflows detected due to outgoing serial communication.', htmlDescription='

Number of buffer underflows detected due to outgoing serial communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:36,951 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3527, uuid={0C1DB352-F31C-4520-B8BB-43E3CB924F8D}, since=null, name=RxPdu, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDUs.', htmlDescription='

Number of received PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:36,963 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3525, uuid={B77A1C29-3430-40df-AC7F-D1ACC9E6C035}, since=null, name=TxPdu, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmitted PDUs.', htmlDescription='

Number of transmitted PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:36,977 [main] DEBUG ClassBuilder - Adding 60870andDNPNotification as subclass of AbstractAgent +2024-09-07 16:17:36,977 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification +2024-09-07 16:17:36,983 [main] TRACE ClassBuilder - Class MasterAssociation (6 in package IEEE 1815 and IEC 60870-5 Agent) +2024-09-07 16:17:37,015 [main] DEBUG ClassBuilder - Adding MasterAssociation as subclass of Association +2024-09-07 16:17:37,015 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent::MasterAssociation +2024-09-07 16:17:37,020 [main] TRACE ClassBuilder - Class OutstationAssociation (7 in package IEEE 1815 and IEC 60870-5 Agent) +2024-09-07 16:17:37,050 [main] DEBUG ClassBuilder - Adding OutstationAssociation as subclass of Association +2024-09-07 16:17:37,050 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent::OutstationAssociation +2024-09-07 16:17:37,052 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Application Protocols Agents, _depth=4, _eaElementID=131, _objData=UmlObjectData [id=41, uuid={B92342A5-EA3E-4be2-8BA2-4B40BB389569}, since=null, name=IEEE 1815 and IEC 60870-5 Agent, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 20, this package includes the IEEE 1815 DNP and IEC 60870-5-104 protocols classes. This high level class named "summary" includes two objects related to the application stack and "association" class that reports the object related to the possible communication sessions between masters and outstations. +This package includes the version of the objects related to IEC TS 62351-5:2013. +The two class "Master Association" and "Outstation Association" Inherits the Associations class attributes. +For each IEEE 1815 DNP or IEC 60870-5-104 application stack a single instance of "summary" class is provided. This instance of "summary" class can be related to several instances of "OutstationAssociation" and "MasterAssociation" classes which inherit the attributes from the "Association" class. Each instance "Association" is the container of the attributes of a specific application session between an Outstation and a Master. +Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Infoand Security objects, and therefore the more general class as well.', htmlDescription='

As shown in Figure 20, this package includes the IEEE 1815 DNP and IEC 60870-5-104 protocols classes. This high level class named "summary" includes two objects related to the application stack and "association" class that reports the object related to the possible communication sessions between masters and outstations.

This package includes the version of the objects related to IEC TS 62351-5:2013.

The two class "Master Association" and "Outstation Association" Inherits the Associations class attributes.

For each IEEE 1815 DNP or IEC 60870-5-104 application stack a single instance of "summary" class is provided. This instance of "summary" class can be related to several instances of "OutstationAssociation" and "MasterAssociation" classes which inherit the attributes from the "Association" class. Each instance "Association" is the container of the attributes of a specific application session between an Outstation and a Master.

Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Infoand Security objects, and therefore the more general class as well.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=ieee1815andiec60870-5-agent, mibName=IEC-62351-IEC60870-5-IEEE1815-MIB, mibPrefix=tC, objectBranchId=1, objectIdentity=ieee1815andiec60870-5-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=IEEE 1815 and IEC 60870-5 Agent, _objData=UmlObjectData [id=33, uuid={8B1E40BA-BA71-478e-BC81-025DA5A45A35}, since=null, name=IEEE 1815 and IEC 60870 Agent Relationships, alias=, stereotype=, visibility=public, txtDescription='This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes. +Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.', htmlDescription='

This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes.

Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.

'], _portrait=true, _kind=LOGICAL]], _classes=7 +2024-09-07 16:17:37,057 [main] INFO PackageBuilder - processing package IEEE 1815 and IEC 60870-5 Agent - ed2 (6) ... +2024-09-07 16:17:37,079 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=IEEE 1815 and IEC 60870-5 Agent - ed2, _objData=UmlObjectData [id=70, uuid={AA945755-BD47-4be2-A238-6331816DBA4B}, since=null, name=IEEE 1815 and IEC 60870 Agent Relationships, alias=, stereotype=, visibility=public, txtDescription='This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes. +Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.', htmlDescription='

This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes.

Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 16:17:37,226 [main] TRACE ClassBuilder - Class 60870andDNPProtocolInfoEd2 (1 in package IEEE 1815 and IEC 60870-5 Agent - ed2) +2024-09-07 16:17:37,544 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4257, uuid={0C0A0A2C-20C0-4ca9-9856-507B3CF40B66}, since=null, name=ExT0Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T0 (connection establishment).', htmlDescription='

Count the expirations of the 104 time-out T0 (connection establishment).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:37,556 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4258, uuid={C6845E20-7B2D-4978-A35B-D43715366935}, since=null, name=ExT1Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T1 (PDU).', htmlDescription='

Count the expirations of the 104 time-out T1 (PDU).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:37,568 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4259, uuid={15711ABC-5E51-4c9e-95EB-71E116D1CBC1}, since=null, name=ExT2Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T2 (ACK).', htmlDescription='

Count the expirations of the 104 time-out T2 (ACK).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:37,580 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4260, uuid={7A191FB8-98E6-4847-930B-90CB4FC6E61E}, since=null, name=ExT3Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T3 (TEST).', htmlDescription='

Count the expirations of the 104 time-out T3 (TEST).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:37,591 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4261, uuid={81B43739-99E7-46b8-BB5A-340970E92A28}, since=null, name=DiscPduCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of discarded messages.', htmlDescription='

Number of discarded messages.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:37,602 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4262, uuid={8165A5DE-3828-4785-9068-BB9EBEA44FF2}, since=null, name=InErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of PDUs received that were in error.', htmlDescription='

Number of PDUs received that were in error.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:37,614 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4263, uuid={D90D5B9D-8B9D-454d-83A9-E6715E4783C6}, since=null, name=InOvCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer overflows detected due to incoming communication.', htmlDescription='

Number of buffer overflows detected due to incoming communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:37,625 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4264, uuid={E8C8E34D-3689-46e8-B001-9DE7609677AC}, since=null, name=InterPDUTime, alias=, stereotype=protocol, visibility=public, txtDescription='Time between two consecutives PDUs.', htmlDescription='

Time between two consecutives PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:37,636 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4265, uuid={49E9D387-25A4-46e7-8CEB-9C75979FB7AF}, since=null, name=MisPDUCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Provides an attribute that represents the count of missed PDU.', htmlDescription='

Provides an attribute that represents the count of missed PDU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:37,648 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4266, uuid={8845E947-C91C-4a04-B4FE-3AEDC1029732}, since=null, name=OutErr, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmission errors.', htmlDescription='

Number of transmission errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:37,660 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4267, uuid={CCD6A7C5-F0B4-4402-AE88-B35035615DC3}, since=null, name=OutUv, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer underflows detected due to outgoing serial communication.', htmlDescription='

Number of buffer underflows detected due to outgoing serial communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:37,671 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4269, uuid={378D6C1B-B55C-457c-BD03-A017415E19C4}, since=null, name=PDUSizeFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDU with wrong size.', htmlDescription='

Number of received PDU with wrong size.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:37,684 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4273, uuid={8E51A58B-0043-4528-B1BC-BC2B4CC4E59C}, since=null, name=RtxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the number of retransmissions.', htmlDescription='

Count the number of retransmissions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:37,696 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4275, uuid={9768D1CC-F452-448b-B8DF-26922CB00ED7}, since=null, name=RxPduCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDUs (including PDUs with errors).', htmlDescription='

Number of received PDUs (including PDUs with errors).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:37,708 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4276, uuid={00CBF4DB-7CDE-4393-BCCF-90A5601FF89C}, since=null, name=RxSolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Number of solicited requests received. Only for DNP.', htmlDescription='

Number of solicited requests received. Only for DNP.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:37,719 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4277, uuid={A480B5CE-C799-40b2-9A6C-05A2B643932E}, since=null, name=RxUnsolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Contains the count of number of unsolicited requests that have been transmitted since the last reset.', htmlDescription='

Contains the count of number of unsolicited requests that have been transmitted since the last reset.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:37,730 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4280, uuid={7A2A5BFA-FCB8-44a4-A4CF-442CC8A9FB0E}, since=null, name=TxPduCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmitted PDUs.', htmlDescription='

Number of transmitted PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:37,743 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4281, uuid={BF7B41CE-7B62-4a5f-A9F6-D1E8A5A4952E}, since=null, name=TxSolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Number of solicited requests transmitted. Only for DNP.', htmlDescription='

Number of solicited requests transmitted. Only for DNP.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:37,756 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4282, uuid={BB6FDD4B-6837-4d88-B268-0D09301311FD}, since=null, name=TxUnsolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Contains the count of number of unsolicited requests that have been transmitted since the last reset.', htmlDescription='

Contains the count of number of unsolicited requests that have been transmitted since the last reset.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:37,807 [main] DEBUG ClassBuilder - Adding 60870andDNPProtocolInfoEd2 as subclass of AbstractAgent +2024-09-07 16:17:37,810 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2 +2024-09-07 16:17:37,815 [main] TRACE ClassBuilder - Class IEC62351part5 (1 in package IEEE 1815 and IEC 60870-5 Agent - ed2) +2024-09-07 16:17:38,233 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4306, uuid={85A6FA13-2677-4c99-BC12-DD878801CFC4}, since=null, name=StAsProcScsCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Station Association procedure has been successfully performed.', htmlDescription='

Number of times the Station Association procedure has been successfully performed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:38,245 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4307, uuid={F82373BD-CE1D-4a57-B13C-413810F179B0}, since=null, name=StAsProcFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Station Association procedure has failed.', htmlDescription='

Number of times the Station Association procedure has failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:38,258 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4308, uuid={69BDB5BC-DE98-4195-8110-202AD93E7AFC}, since=null, name=SKeyProcScsCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Session Key was changed successfully.', htmlDescription='

Number of times the Session Key was changed successfully.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:38,270 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4336, uuid={8BE551FF-4A0A-45b6-A0A0-D051150BF74D}, since=null, name=KeyAutnAlgSupFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Data authentication algorithm support failures. Controlled station only.', htmlDescription='

Number of Data authentication algorithm support failures. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:38,282 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4337, uuid={60FED222-F3AD-4f4c-A733-DE4950C990C2}, since=null, name=SKeyWrapAlgSupFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of key wrap algorithm support failures. Controlled station only.', htmlDescription='

Number of key wrap algorithm support failures. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:38,293 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4338, uuid={C2B0C0DF-C9DD-4aef-932E-B016DA2E6276}, since=null, name=DataProtAlgSupFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Data authentication algorithm support failures. Controlled station only.', htmlDescription='

Number of Data authentication algorithm support failures. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:38,304 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4339, uuid={55BE76A2-DF93-45de-9D84-4EE282ACC41B}, since=null, name=SKeyAutnErrCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Key authentication errors.', htmlDescription='

Number of Key authentication errors.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:38,316 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4340, uuid={97FE21BE-F20E-4b5f-9E7C-62B9BF57A4C7}, since=null, name=DataAutnErrCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of non-authentic Secure Data messages received.', htmlDescription='

Number of non-authentic Secure Data messages received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:38,328 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4341, uuid={303256CB-76CD-4b39-8D6B-6B5F7E4718DC}, since=null, name=UnxpMsgErrCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of unexpected messages received.', htmlDescription='

Number of unexpected messages received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:38,339 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4342, uuid={7B618961-D677-4bf9-83FB-40700B9BA9CC}, since=null, name=MaxReplyToutCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Max Reply Timeouts threshold was reached. Controlling station only.', htmlDescription='

Number of times the Max Reply Timeouts threshold was reached. Controlling station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:38,351 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4343, uuid={D8D3268F-F4C4-49d7-AB23-7946C1CEA6D1}, since=null, name=NodeAutrFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of unauthorized communication attempts.', htmlDescription='

Number of unauthorized communication attempts.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:38,364 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4344, uuid={23FA293A-4F87-4c7c-B4E2-6B3955B5ED61}, since=null, name=CtrlOperAutrFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of unauthorized operations. Controlled station only.', htmlDescription='

Number of unauthorized operations. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:38,376 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4345, uuid={6193E983-C056-491a-B7A3-EBE58355374C}, since=null, name=RemCertCheckFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of invalid certificates received.', htmlDescription='

Number of invalid certificates received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:38,388 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4346, uuid={46BA0F58-A6A4-4d23-9157-B07A5643B284}, since=null, name=RemCertExpiredCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the remote station's certificate expired.', htmlDescription='

Number of times the remote station's certificate expired.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:38,400 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4347, uuid={C54FF7FA-520C-4d4f-A4A1-B7E88C041568}, since=null, name=RemCertRevokedCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the remote station's certificate has been revoked.', htmlDescription='

Number of times the remote station's certificate has been revoked.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:38,411 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4348, uuid={95955856-F76D-4e05-B055-4FF8029E1A9D}, since=null, name=LocCertExpiredCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the local station's certificate expired.', htmlDescription='

Number of times the local station's certificate expired.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:38,422 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4349, uuid={DE7B5995-13C2-44c8-8579-6CEF37D201AF}, since=null, name=LocCertRevokedCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the local station's certificate has been revoked.', htmlDescription='

Number of times the local station's certificate has been revoked.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:38,434 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4350, uuid={2223C6EC-FBAE-4b91-8FF2-4407C5DFFF36}, since=null, name=KeysInvRemCertRevCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Cryptographic Keys were invalidated due to remote station's certificate revocation.', htmlDescription='

Number of times the Cryptographic Keys were invalidated due to remote station's certificate revocation.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:38,445 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4351, uuid={5DCACFEC-13BF-47c0-88D7-950B26D9DBBB}, since=null, name=KeysInvLocCertRevCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Cryptographic Keys were invalidated due to local station's certificate revocation.', htmlDescription='

Number of times the Cryptographic Keys were invalidated due to local station's certificate revocation.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:38,455 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4352, uuid={4A474D59-99BF-495e-BB9D-C3E096F5F83B}, since=null, name=DataAutnScsCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of authentic Secure Data messages received.', htmlDescription='

Number of authentic Secure Data messages received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:38,467 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4353, uuid={7F7D3F88-910D-4dae-B5B1-DED2E46A51C7}, since=null, name=ReplyToutCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Reply Timeouts. Controlling station only.', htmlDescription='

Number of Reply Timeouts. Controlling station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:38,477 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4354, uuid={E6FD44A6-C9CE-45d6-BA4A-3EF7DECB1691}, since=null, name=RequestToutCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Request Timeouts. Controlled station only.', htmlDescription='

Number of Request Timeouts. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:38,489 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4355, uuid={65E3DDC2-B3AC-4c86-8AF6-39C43114EC3C}, since=null, name=SKeyInvUseCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Session Key was invalidated due to Max Session Key Usage Count. Controlled station only.', htmlDescription='

Number of times the Session Key was invalidated due to Max Session Key Usage Count. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:38,499 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4356, uuid={3C26B695-A1A0-44c3-BE08-C75CA78940DA}, since=null, name=SKeyInvToutCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Session Keys were invalidated due to Max Session Key Usage Timeout. Controlled station only.', htmlDescription='

Number of times the Session Keys were invalidated due to Max Session Key Usage Timeout. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:38,510 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4357, uuid={B3A60D84-37C0-40f2-9019-17B8C45C778E}, since=null, name=SKeyProcFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Session Key Change failures.', htmlDescription='

Number of Session Key Change failures.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:38,522 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4335, uuid={90633EE5-94E7-44d3-B98C-08140BCBFCF1}, since=null, name=ProtInfoErrCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of protocol information errors. Controlled station only.', htmlDescription='

Number of protocol information errors. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:38,545 [main] DEBUG ClassBuilder - Adding IEC62351part5 as superclass of 60870andDNPProtocolInfoEd2 +2024-09-07 16:17:38,547 [main] DEBUG ClassBuilder - Adding IEC62351part5 as subclass of AbstractAgent +2024-09-07 16:17:38,547 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5 +2024-09-07 16:17:38,553 [main] TRACE ClassBuilder - Class Association (2 in package IEEE 1815 and IEC 60870-5 Agent - ed2) +2024-09-07 16:17:38,754 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4284, uuid={D3B5EC3D-3991-40b8-85B6-2AFB3206637A}, since=null, name=AssociationId, alias=, stereotype=index, visibility=public, txtDescription='Id of the association.', htmlDescription='

Id of the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:38,767 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4285, uuid={DB5A65D6-2349-4a56-A200-129882572A95}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:38,784 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4286, uuid={FABF76A8-43C1-4be2-89C5-4C3B7F18604B}, since=null, name=LocAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Local address.', htmlDescription='

Local address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 16:17:38,802 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4287, uuid={F933B36B-EE52-4922-9AA4-F0CB5A55F9CE}, since=null, name=LocAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Local address type.', htmlDescription='

Local address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 16:17:38,814 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4288, uuid={4EDE24F7-C4DB-4078-926A-3518CCBB1D8F}, since=null, name=ProtID, alias=, stereotype=protocol, visibility=public, txtDescription='Protocol ID in use.', htmlDescription='

Protocol ID in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=780, _eaTypeName=ProtIdType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:38,827 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4289, uuid={8CE59398-E353-464a-9B25-03588802C32E}, since=null, name=ProviderDesc, alias=, stereotype=identity, visibility=public, txtDescription='Textual description of the provider that is in use.', htmlDescription='

Textual description of the provider that is in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:38,839 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4290, uuid={BD1C65C9-07DF-4192-8713-A93BC3E1C050}, since=null, name=ProviderName, alias=, stereotype=identity, visibility=public, txtDescription='Identity of the provider responding as the outstation for this association.', htmlDescription='

Identity of the provider responding as the outstation for this association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:38,860 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4291, uuid={BEB1F3A7-96E9-4a7f-B4CE-78A311245A60}, since=null, name=RemAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address.', htmlDescription='

Remote address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{isIndex=yes, mibIndex=yes, Version=0}] +2024-09-07 16:17:38,880 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4292, uuid={59810D47-4220-40e1-A018-FE80613740BC}, since=null, name=RemAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address type.', htmlDescription='

Remote address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{isIndex=yes, mibIndex=yes, Version=0}] +2024-09-07 16:17:38,891 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4293, uuid={9AE7823D-F26B-48f8-A955-DA056C8C0F32}, since=null, name=TLnkErrCnt, alias=, stereotype=health, visibility=public, txtDescription='Count of communication link errors detected.', htmlDescription='

Count of communication link errors detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:38,902 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4294, uuid={FFAF85C1-58F9-4330-80FE-18A5100B3EE7}, since=null, name=TLnkTyp, alias=, stereotype=protocol, visibility=public, txtDescription='Type of transport being utilized.', htmlDescription='

Type of transport being utilized.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=778, _eaTypeName=LnkType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:38,952 [main] DEBUG ClassBuilder - Adding Association as subclass of CommonProtocolInfo +2024-09-07 16:17:38,954 [main] DEBUG ClassBuilder - Adding Association as subclass of AbstractAgent +2024-09-07 16:17:38,955 [main] DEBUG ClassBuilder - Adding Association as subclass of 60870andDNPProtocolInfoEd2 +2024-09-07 16:17:38,958 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent - ed2::Association +2024-09-07 16:17:38,964 [main] TRACE ClassBuilder - Class Summary (3 in package IEEE 1815 and IEC 60870-5 Agent - ed2) +2024-09-07 16:17:39,083 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4295, uuid={E543F5FE-D414-4517-9CFA-17AF02358984}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:39,096 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4296, uuid={A601B46C-5CB2-4663-BBDD-6B075EA07FE8}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered (security or health).', htmlDescription='

Provides the last known event encountered (security or health).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:39,111 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4297, uuid={DD17EC1E-C1D2-444e-BC3B-65A68EB1768E}, since=null, name=Master, alias=, stereotype=table, visibility=public, txtDescription='Client association (when applicable)', htmlDescription='

Client association (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=1057, _eaTypeName=MasterAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{MIBPrefix=tC, Version=0}] +2024-09-07 16:17:39,126 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4298, uuid={927B1068-7146-4ea9-B50A-FD00B14D1747}, since=null, name=Outstation, alias=, stereotype=table, visibility=public, txtDescription='Server association (when applicable)', htmlDescription='

Server association (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=1056, _eaTypeName=OutstationAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{MIBPrefix=tC, Version=0}] +2024-09-07 16:17:39,138 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4299, uuid={E4361517-7300-4db5-A392-69EAD372A4E2}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object', htmlDescription='

Security events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1055, _eaTypeName=60870andDNPSecurityNotificationEd2, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:39,151 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4300, uuid={240DF754-7E5E-4226-B4F4-F1DDBE6652EB}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object', htmlDescription='

State events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1061, _eaTypeName=60870andDNPNotificationEd2, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:39,166 [main] DEBUG ClassBuilder - Adding Summary as subclass of 60870andDNPProtocolInfoEd2 +2024-09-07 16:17:39,166 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent - ed2::Summary +2024-09-07 16:17:39,172 [main] TRACE ClassBuilder - Class 60870andDNPSecurityNotificationEd2 (4 in package IEEE 1815 and IEC 60870-5 Agent - ed2) +2024-09-07 16:17:39,216 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2, _objData=UmlObjectData [id=4358, uuid={6AA445FA-BC7C-4384-8725-306C37B37564}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:39,231 [main] DEBUG ClassBuilder - Adding 60870andDNPSecurityNotificationEd2 as subclass of AbstractAgent +2024-09-07 16:17:39,231 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2 +2024-09-07 16:17:39,236 [main] TRACE ClassBuilder - Class 60870andDNPNotificationEd2 (5 in package IEEE 1815 and IEC 60870-5 Agent - ed2) +2024-09-07 16:17:39,278 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2, _objData=UmlObjectData [id=4360, uuid={60B53F7E-A6F1-449b-8917-E860F3F35ECB}, since=null, name=LastEvent, alias=, stereotype=protocol, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:39,293 [main] DEBUG ClassBuilder - Adding 60870andDNPNotificationEd2 as subclass of AbstractAgent +2024-09-07 16:17:39,293 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2 +2024-09-07 16:17:39,299 [main] TRACE ClassBuilder - Class MasterAssociation (6 in package IEEE 1815 and IEC 60870-5 Agent - ed2) +2024-09-07 16:17:39,328 [main] DEBUG ClassBuilder - Adding MasterAssociation as subclass of Association +2024-09-07 16:17:39,329 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent - ed2::MasterAssociation +2024-09-07 16:17:39,336 [main] TRACE ClassBuilder - Class OutstationAssociation (7 in package IEEE 1815 and IEC 60870-5 Agent - ed2) +2024-09-07 16:17:39,365 [main] DEBUG ClassBuilder - Adding OutstationAssociation as subclass of Association +2024-09-07 16:17:39,366 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent - ed2::OutstationAssociation +2024-09-07 16:17:39,368 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Application Protocols Agents, _depth=4, _eaElementID=1054, _objData=UmlObjectData [id=390, uuid={86E0AF53-5128-4026-88AF-43035DFFE86D}, since=null, name=IEEE 1815 and IEC 60870-5 Agent - ed2, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 21, this package includes the IEEE 1815 DNP, IEC 60870-5-104 protocols classes and the IEC 62351-5 security objects. The high level class named "summary" includes two objects related to the application stack and "association" class that reports the object related to the possible communication sessions between masters and outstations. +This package includes the new version of the objects related to IEC 62351-5:2023. +The two classes "Master Association" and "Outstation Association" Inherits the Associations class attributes. +For each IEEE 1815 DNP or IEC 60870-5-104 application stack a single instance of "summary" class is provided. This instance of "summary" class can be related to several instances of "OutstationAssociation" and "MasterAssociation" classes which inherit the attributes from the "Association" class. Each instance "Association" is the container of the attributes of a specific application session between an Outstation and a Master. +Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Security objects, and therefore the more general class as well.', htmlDescription='

As shown in Figure 21, this package includes the IEEE 1815 DNP, IEC 60870-5-104 protocols classes and the IEC 62351-5 security objects. The high level class named "summary" includes two objects related to the application stack and "association" class that reports the object related to the possible communication sessions between masters and outstations.

This package includes the new version of the objects related to IEC 62351-5:2023.

The two classes "Master Association" and "Outstation Association" Inherits the Associations class attributes.

For each IEEE 1815 DNP or IEC 60870-5-104 application stack a single instance of "summary" class is provided. This instance of "summary" class can be related to several instances of "OutstationAssociation" and "MasterAssociation" classes which inherit the attributes from the "Association" class. Each instance "Association" is the container of the attributes of a specific application session between an Outstation and a Master.

Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Security objects, and therefore the more general class as well.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=ieee1815andiec60870-5-agent-ed2, mibName=IEC-62351-IEC60870-5-IEEE1815-MIB-ED2, mibPrefix=tC2, objectBranchId=3, objectIdentity=ieee1815andiec60870-5-agent-ed2}, 1_diagrams=[DiagramBuilder [_containingPackage=IEEE 1815 and IEC 60870-5 Agent - ed2, _objData=UmlObjectData [id=70, uuid={AA945755-BD47-4be2-A238-6331816DBA4B}, since=null, name=IEEE 1815 and IEC 60870 Agent Relationships, alias=, stereotype=, visibility=public, txtDescription='This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes. +Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.', htmlDescription='

This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes.

Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.

'], _portrait=true, _kind=LOGICAL]], _classes=8 +2024-09-07 16:17:39,373 [main] INFO PackageBuilder - processing package IEC61850 Agent (8) ... +2024-09-07 16:17:39,478 [main] INFO PackageBuilder - processing package ACSI (1) ... +2024-09-07 16:17:39,499 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=ACSI, _objData=UmlObjectData [id=45, uuid={1B1AAFC2-CBA3-401c-873D-7B6CDCE9CBD6}, since=null, name=ACSI, alias=, stereotype=, visibility=public, txtDescription='ACSI classes relationship. ACSI Summary inherit Security attributes from the more general classes.', htmlDescription='

ACSI classes relationship. ACSI Summary inherit Security attributes from the more general classes.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 16:17:39,528 [main] TRACE ClassBuilder - Class ACSISummary (1 in package ACSI) +2024-09-07 16:17:39,809 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1254, uuid={60676AFB-06AF-480c-86DC-DDF92723390B}, since=null, name=assocPoolMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number of client/server associations.', htmlDescription='

Maximum number of client/server associations.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:39,821 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1255, uuid={B21687C2-9C22-4c8f-A435-15A69F7147D6}, since=null, name=assocPoolUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of client/server associations active.', htmlDescription='

Number of client/server associations active.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:39,833 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1278, uuid={6CA26B83-F728-4e94-9E7E-89E5998C3308}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:39,846 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=3931, uuid={75069142-E376-4865-9020-9924B1C82527}, since=null, name=CtrlPrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of control actions attempted that did not have the correct privilege.', htmlDescription='

Number of control actions attempted that did not have the correct privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:39,859 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1262, uuid={44D0F3A5-606C-4650-ABCB-FE16EEE777E3}, since=null, name=gsePubMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number GSE Publications supported.', htmlDescription='

Maximum number GSE Publications supported.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:39,872 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=2263, uuid={1C2B216E-5A48-41c9-8A95-E49BCC60C316}, since=null, name=gsePubUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of active GSE Publications.', htmlDescription='

Number of active GSE Publications.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:39,884 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1264, uuid={B2FDE11B-6BA3-4051-B3BD-15152FB16FED}, since=null, name=gseSubMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number of GSE Subscriptions.', htmlDescription='

Maximum number of GSE Subscriptions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:39,897 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1263, uuid={1842AD96-E339-455f-9BC0-7F98C8F31CEC}, since=null, name=gseSubUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of active GSE Subscriptions.', htmlDescription='

Number of active GSE Subscriptions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:39,910 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=3709, uuid={014B3324-A84F-455f-957B-1420E50D5C59}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:39,922 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=3930, uuid={F5A04750-F784-4c0c-AB12-2298DE62BB99}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:39,935 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1271, uuid={A10D2F0C-3A4C-4aa4-B832-655CEBF8F43C}, since=null, name=RemoteEstAssocCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count of the number of currently active associations that were established through the ACSI associate response.', htmlDescription='

Count of the number of currently active associations that were established through the ACSI associate response.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:39,948 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=3932, uuid={7EF57F32-F44A-4126-9201-8EFAD41F12D4}, since=null, name=AcsCtlFail, alias=, stereotype=security, visibility=public, txtDescription='Number of access control failures detected (i.e., when a data object that the client wanted to access exists in the server, but based on the access view of the association with that client, an access to the data object was refused).', htmlDescription='

Number of access control failures detected (i.e., when a data object that the client wanted to access exists in the server, but based on the access view of the association with that client, an access to the data object was refused).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:39,961 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1282, uuid={2E06924F-F7EB-44a7-A1D2-2428322A0892}, since=null, name=svPubMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number SV publications supported.', htmlDescription='

Maximum number SV publications supported.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:39,973 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1281, uuid={D6CCDFE9-6558-4cd0-B508-8BA15852D950}, since=null, name=svPubUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of active SV publications.', htmlDescription='

Number of active SV publications.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:39,985 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1284, uuid={769A7A31-DA16-43a0-A340-14FF723B8636}, since=null, name=svSubMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number SV subscriptions supported.', htmlDescription='

Maximum number SV subscriptions supported.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:39,998 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1283, uuid={40270792-85F3-4361-850B-A5F29E1B75C0}, since=null, name=svSubUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of active SV subscriptions.', htmlDescription='

Number of active SV subscriptions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:40,013 [main] DEBUG ClassBuilder - Adding ACSISummary as subclass of AbstractAgent +2024-09-07 16:17:40,013 [main] TRACE ClassBuilder - read from EA: ACSI::ACSISummary +2024-09-07 16:17:40,016 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850 Agent, _depth=5, _eaElementID=685, _objData=UmlObjectData [id=246, uuid={624494C4-C544-437f-BE42-BED22973E721}, since=null, name=ACSI, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 22, the ACSI package includes the IEC 61850 Abstract Communication Service Interface (ACSI) classes.', htmlDescription='

As shown in Figure 22, the ACSI package includes the IEC 61850 Abstract Communication Service Interface (ACSI) classes.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=acsi-agent, mibName=IEC-62351-IEC61850-ACSI-MIB, mibPrefix=aCSI, objectBranchId=1, objectIdentity=acsi-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=ACSI, _objData=UmlObjectData [id=45, uuid={1B1AAFC2-CBA3-401c-873D-7B6CDCE9CBD6}, since=null, name=ACSI, alias=, stereotype=, visibility=public, txtDescription='ACSI classes relationship. ACSI Summary inherit Security attributes from the more general classes.', htmlDescription='

ACSI classes relationship. ACSI Summary inherit Security attributes from the more general classes.

'], _portrait=true, _kind=LOGICAL]], _classes=1 +2024-09-07 16:17:40,021 [main] INFO PackageBuilder - processing package MMS (2) ... +2024-09-07 16:17:40,043 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=MMS, _objData=UmlObjectData [id=42, uuid={C69DADFE-D7C7-45d0-83FC-41012CB3C1CA}, since=null, name=MMS, alias=, stereotype=, visibility=public, txtDescription='MMS classes relationship. MMS Provider and MMS Association inherit both Security and Procotol Info attributes from the more general classes.', htmlDescription='

MMS classes relationship. MMS Provider and MMS Association inherit both Security and Procotol Info attributes from the more general classes.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 16:17:40,142 [main] TRACE ClassBuilder - Class MMSProtocolInfo (1 in package MMS) +2024-09-07 16:17:40,370 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=4122, uuid={B070617B-7900-42b1-8DA7-F591BA2099FA}, since=null, name=ErrorRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of error PDU that have been received including: +- Confirmed-ErrorPDU (only for client) +- Cancel-ErrorPDU (only for client) +- Initiate-ErrorPDU +- Conclude-ErrorPDU.', htmlDescription='

Number of error PDU that have been received including:

  • Confirmed-ErrorPDU (only for client)
  • Cancel-ErrorPDU (only for client)
  • Initiate-ErrorPDU
  • Conclude-ErrorPDU.
'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:40,383 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=4123, uuid={650B0D6F-9766-4bae-9182-5EC830CB64E3}, since=null, name=ErrorTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of error PDU that have been sent including: +- Confirmed-ErrorPDU (only for server) +- Cancel-ErrorPDU (only for server) +- Initiate-ErrorPDU +- Conclude-ErrorPDU.', htmlDescription='

Number of error PDU that have been sent including:

  • Confirmed-ErrorPDU (only for server)
  • Cancel-ErrorPDU (only for server)
  • Initiate-ErrorPDU
  • Conclude-ErrorPDU.
'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:40,395 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3214, uuid={30ED064F-399A-4e3a-97D2-D106F082CF4F}, since=null, name=InfoRptRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of MMS Information Reports that have been received.', htmlDescription='

Number of MMS Information Reports that have been received.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:40,407 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=4120, uuid={CEC51410-D5D9-4150-B1C4-AA691F453D23}, since=null, name=InfoRptTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of MMS Information Reports that have been sent.', htmlDescription='

Number of MMS Information Reports that have been sent.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:40,420 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3969, uuid={94722C63-A68B-4460-A0BA-93F19272E206}, since=null, name=MisCmdAckCnt, alias=, stereotype=security, visibility=public, txtDescription='Provides an attribute that indicates the count of the number of MMS request that have not been acknowledged.', htmlDescription='

Provides an attribute that indicates the count of the number of MMS request that have not been acknowledged.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:40,431 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3414, uuid={8F4B6AF1-5A4A-47a1-A365-8963A1FAE78F}, since=null, name=MMSProExchTime, alias=, stereotype=performance, visibility=public, txtDescription='MMS Profile exchange duration (seconds). MMS profile is meant as Logical Devices, Logical Nodes and Dataset definition are exchanged.', htmlDescription='

MMS Profile exchange duration (seconds). MMS profile is meant as Logical Devices, Logical Nodes and Dataset definition are exchanged.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:40,443 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3211, uuid={6C0EA55B-1ACA-4a3a-9068-E9C2CEC96B9D}, since=null, name=RejectRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of RejectPDU received.', htmlDescription='

Number of RejectPDU received.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:40,455 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3212, uuid={C8554D1E-C163-4286-96BB-E26046672513}, since=null, name=RejectTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of RejectPDU sent.', htmlDescription='

Number of RejectPDU sent.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:40,466 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3208, uuid={C94BBBC3-1104-42b0-B156-E80FE61CBDB8}, since=null, name=ReqRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of request PDU that have been received including: +- Confirmed-RequestPDU (only for server) +- Cancel-RequestPDU (only for server) +- Initiate-RequestPDU +- Conclude-RequestPDU.', htmlDescription='

Number of request PDU that have been received including:

  • Confirmed-RequestPDU (only for server)
  • Cancel-RequestPDU (only for server)
  • Initiate-RequestPDU
  • Conclude-RequestPDU.
'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:40,476 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3206, uuid={023D9D84-38BC-4c86-B9CC-78085AC2F869}, since=null, name=ReqTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of request PDU that have been sent including: +- Confirmed-RequestPDU (only for client) +- Cancel-RequestPDU (only for client) +- Initiate-RequestPDU +- Conclude-RequestPDU.', htmlDescription='

Number of request PDU that have been sent including:

  • Confirmed-RequestPDU (only for client)
  • Cancel-RequestPDU (only for client)
  • Initiate-RequestPDU
  • Conclude-RequestPDU.
'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:40,488 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3210, uuid={B07FEDC7-72A1-43b4-9CA9-AEDC8CE77EAF}, since=null, name=RespRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of response PDU that have been received including: +- Confirmed-ResponsePDU (only for client) +- Cancel-ResponsePDU (only for client) +- Initiate-ResponsePDU +- Conclude-ResponsePDU +.', htmlDescription='

Number of response PDU that have been received including:

  • Confirmed-ResponsePDU (only for client)
  • Cancel-ResponsePDU (only for client)
  • Initiate-ResponsePDU
  • Conclude-ResponsePDU

.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:40,499 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3209, uuid={06689B60-CBF2-4d45-8B5A-FB998997F62F}, since=null, name=RespTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of response PDU that have been sent including: +- Confirmed-ResponsePDU (only for server) +- Cancel-ResponsePDU (only for server) +- Initiate-ResponsePDU +- Conclude-ResponsePDU..', htmlDescription='

Number of response PDU that have been sent including:

  • Confirmed-ResponsePDU (only for server)
  • Cancel-ResponsePDU (only for server)
  • Initiate-ResponsePDU
  • Conclude-ResponsePDU..
'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:40,510 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3935, uuid={1F695097-A4ED-4e85-94FE-44B50CFE99F1}, since=null, name=SessKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of session key negotiations that failed.', htmlDescription='

Number of session key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:40,544 [main] DEBUG ClassBuilder - Adding MMSProtocolInfo as subclass of AbstractAgent +2024-09-07 16:17:40,544 [main] TRACE ClassBuilder - read from EA: MMS::MMSProtocolInfo +2024-09-07 16:17:40,549 [main] TRACE ClassBuilder - Class MMSProvider (2 in package MMS) +2024-09-07 16:17:40,866 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3918, uuid={7DB85E2A-0EB8-4226-BEBB-924AB496EB36}, since=null, name=AProfileDecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted within A-Profile session.', htmlDescription='

Number PDUs received that could not be decrypted within A-Profile session.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:40,878 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3938, uuid={A3E432FD-BDD0-4ccf-9233-0A226162B425}, since=null, name=AuthFail, alias=, stereotype=security, visibility=public, txtDescription='Count of the number of authorization failures.', htmlDescription='

Count of the number of authorization failures.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:40,889 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3245, uuid={D1866C6F-051F-404e-9A2B-AC1D6D44D3FC}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:40,900 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2831, uuid={2F166DD9-DE35-44b6-91DE-78EA3A9D0652}, since=null, name=ConnFailInCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of incoming Initiate-requests that have been refused.', htmlDescription='

Number of incoming Initiate-requests that have been refused.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:40,911 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2832, uuid={BA3D3302-5D14-40f7-9AA3-145CCB5F1361}, since=null, name=ConnFailOutCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of outgoing Initiate-requests that have been refused.', htmlDescription='

Number of outgoing Initiate-requests that have been refused.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:40,922 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3936, uuid={86BF3330-EB9C-4633-AB27-D7612CE8D05C}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted.', htmlDescription='

Number PDUs received that could not be decrypted.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:40,936 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3710, uuid={0163C656-8AA1-4c67-82E4-258002A53DDE}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:40,953 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2803, uuid={DEAB3F8B-E3E4-4664-B8B6-2D0C07019F7B}, since=null, name=MMS, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed MMS information can be obtained for each connection.', htmlDescription='

Provides a table through which more detailed MMS information can be obtained for each connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=693, _eaTypeName=MMSAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=mMS, objectIdentity=mMSMMSEntry, Version=0}] +2024-09-07 16:17:40,966 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3915, uuid={294CE46B-D0B5-49f5-BF02-E0988430AD45}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:40,978 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2810, uuid={22C7C42F-8D14-493c-A2EA-CCD76245D0BE}, since=null, name=ProviderDesc, alias=, stereotype=identity, visibility=public, txtDescription='Description of provider.', htmlDescription='

Description of provider.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:40,988 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2811, uuid={D38418EB-A105-4a60-8D61-BB360D9237B5}, since=null, name=ProviderName, alias=, stereotype=identity, visibility=public, txtDescription='Name of the provider.', htmlDescription='

Name of the provider.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:41,001 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3614, uuid={A048CDB1-2C04-4ec3-B2B0-2F9ACEE80E4F}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=920, _eaTypeName=MMSSecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:41,012 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=4030, uuid={354E6408-AAF1-42b2-B717-205A592C81BE}, since=null, name=SessionEstablishmentRate, alias=, stereotype=performance, visibility=public, txtDescription='The number of times any Association has been restablished after a disconnection within 15 minutes.', htmlDescription='

The number of times any Association has been restablished after a disconnection within 15 minutes.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:41,024 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=4031, uuid={F68354BD-DA88-4aca-B25F-9C06F7BEFBB9}, since=null, name=SessionRestartCnt, alias=, stereotype=security, visibility=public, txtDescription='Provides an attribute that indicates the count of the number of times the session has been restablished.', htmlDescription='

Provides an attribute that indicates the count of the number of times the session has been restablished.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:41,035 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3613, uuid={0233C10F-B173-4f99-A4E9-A79E7500E3B0}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object.', htmlDescription='

State events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=921, _eaTypeName=MMSNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:41,046 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3919, uuid={575C57A8-200D-4db3-B297-AE2635C01BC3}, since=null, name=TProfileDecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted within T-Profile session.', htmlDescription='

Number PDUs received that could not be decrypted within T-Profile session.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:41,057 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3921, uuid={D87795A0-A0B4-4126-9015-DBEBDD79CA50}, since=null, name=TProfileSessKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of session key negotiations that failed. This applies only to T-Profile.', htmlDescription='

Number of session key negotiations that failed. This applies only to T-Profile.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:41,068 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3975, uuid={5C2EA464-4FB4-4413-90B5-E3451373A966}, since=null, name=UpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations that failed.', htmlDescription='

Number of update key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:41,082 [main] DEBUG ClassBuilder - Adding MMSProvider as subclass of MMSProtocolInfo +2024-09-07 16:17:41,082 [main] TRACE ClassBuilder - read from EA: MMS::MMSProvider +2024-09-07 16:17:41,087 [main] TRACE ClassBuilder - Class MMSAssociation (3 in package MMS) +2024-09-07 16:17:41,329 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2820, uuid={3D4B3729-146B-4ed2-976D-D539FFAAAE40}, since=null, name=Active, alias=, stereotype=protocol, visibility=public, txtDescription='True if association is in use.', htmlDescription='

True if association is in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:41,342 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3727, uuid={9E3D1B59-980F-4217-B141-1C353C1D4E72}, since=null, name=AssociationId, alias=, stereotype=index, visibility=public, txtDescription='Id of the association.', htmlDescription='

Id of the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:41,353 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=4119, uuid={8717A248-6228-4974-9285-1B96BBEDF420}, since=null, name=Client, alias=, stereotype=protocol, visibility=public, txtDescription='True if role is client, false if role is server', htmlDescription='

True if role is client, false if role is server

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:41,367 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3246, uuid={2C472C21-D2BB-4a4b-8D93-5C0E3346AA95}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:41,378 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3939, uuid={EBEAECC3-8BE4-4469-B891-4898C2954EE5}, since=null, name=HndShTime, alias=, stereotype=performance, visibility=public, txtDescription='Duration of the MMS session handshake. This apply to the sender only.', htmlDescription='

Duration of the MMS session handshake. This apply to the sender only.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:41,390 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2844, uuid={C34BBC7F-ACC5-4172-B430-081B10B49819}, since=null, name=RemoteEstAssos, alias=, stereotype=protocol, visibility=public, txtDescription='True if the association was established due to an incoming Initiate-Request.', htmlDescription='

True if the association was established due to an incoming Initiate-Request.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:41,405 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2876, uuid={BF20C38C-E4DE-439e-A7C3-2D9FCB7CA1C2}, since=null, name=RemoteIP, alias=, stereotype=protocol, visibility=public, txtDescription='Remote entity IP network address.', htmlDescription='

Remote entity IP network address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 16:17:41,416 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3692, uuid={5EA2A0D0-6DA8-427e-ADEB-2CC19FDBB143}, since=null, name=RemoteIPAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:41,429 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2873, uuid={14DA2F03-EFD1-4b98-A66F-EFD6046F1025}, since=null, name=RemotePSEL, alias=, stereotype=protocol, visibility=public, txtDescription='Remote entity presentation selector.', htmlDescription='

Remote entity presentation selector.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=782, _eaTypeName=Selector, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 16:17:41,442 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2874, uuid={C4E19558-A5AA-43ce-A203-6E7BACDD96C7}, since=null, name=RemoteSSEL, alias=, stereotype=protocol, visibility=public, txtDescription='Remote entity session selector.', htmlDescription='

Remote entity session selector.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=782, _eaTypeName=Selector, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 16:17:41,455 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2875, uuid={C5BC70EE-7E84-4822-95B3-1EA00D57E252}, since=null, name=RemoteTSEL, alias=, stereotype=protocol, visibility=public, txtDescription='Remote entity transport selector.', htmlDescription='

Remote entity transport selector.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=782, _eaTypeName=Selector, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 16:17:41,466 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3972, uuid={47D3343F-E927-48ec-8558-54CC13AEC30E}, since=null, name=ReportPer100Seconds, alias=, stereotype=performance, visibility=public, txtDescription='Number of Reports received/transmitted during the last 100 seconds.', htmlDescription='

Number of Reports received/transmitted during the last 100 seconds.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:41,476 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3968, uuid={D1802DDE-FE54-49d6-9EBB-1A5DE0464F3A}, since=null, name=RptReceptionDelay, alias=, stereotype=performance, visibility=public, txtDescription='The time required to receive the last Report. This time is the difference between the reception time and the emission timestamp stored inside the report. If not synchronized this value shall be set to -1.', htmlDescription='

The time required to receive the last Report. This time is the difference between the reception time and the emission timestamp stored inside the report. If not synchronized this value shall be set to -1.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:41,487 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3913, uuid={B94A45CC-7384-41ee-9821-F77D634C675F}, since=null, name=SecurityProfile, alias=, stereotype=protocol, visibility=public, txtDescription='This is the security profile in use for this association (no security, integrity A profile, A+, AE+).', htmlDescription='

This is the security profile in use for this association (no security, integrity A profile, A+, AE+).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1013, _eaTypeName=SecurityProfileType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:41,510 [main] DEBUG ClassBuilder - Adding MMSAssociation as subclass of MMSProtocolInfo +2024-09-07 16:17:41,512 [main] DEBUG ClassBuilder - Adding MMSAssociation as subclass of CommonProtocolInfo +2024-09-07 16:17:41,512 [main] TRACE ClassBuilder - read from EA: MMS::MMSAssociation +2024-09-07 16:17:41,516 [main] TRACE ClassBuilder - Class MMSSecurityNotification (4 in package MMS) +2024-09-07 16:17:41,604 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSSecurityNotification, _objData=UmlObjectData [id=3582, uuid={ED76E952-B3FD-4bbd-B4F7-7F695D6C14B6}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of PDUs received that could not be decrypted.', htmlDescription='

Number of PDUs received that could not be decrypted.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:41,617 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSSecurityNotification, _objData=UmlObjectData [id=4036, uuid={6D84220E-9E6E-4b52-8843-92394244A0F5}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:41,629 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSSecurityNotification, _objData=UmlObjectData [id=3581, uuid={52A9B9D0-58D5-4d7d-A396-A7788A41EB89}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:41,640 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSSecurityNotification, _objData=UmlObjectData [id=3584, uuid={4F8B7D7A-78C6-4ac7-A43C-8B06E8D829E0}, since=null, name=UpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations that failed.', htmlDescription='

Number of update key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:41,654 [main] DEBUG ClassBuilder - Adding MMSSecurityNotification as subclass of AbstractAgent +2024-09-07 16:17:41,654 [main] TRACE ClassBuilder - read from EA: MMS::MMSSecurityNotification +2024-09-07 16:17:41,659 [main] TRACE ClassBuilder - Class MMSNotification (5 in package MMS) +2024-09-07 16:17:41,750 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSNotification, _objData=UmlObjectData [id=3573, uuid={6F0A08FF-024D-4919-99B5-B68C203679AA}, since=null, name=ConnFailInCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of incoming Initiate-requests that have been refused.', htmlDescription='

Number of incoming Initiate-requests that have been refused.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:41,763 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSNotification, _objData=UmlObjectData [id=3574, uuid={F172E26F-F99A-4ca4-BBF3-4759B78D18F3}, since=null, name=ConnFailOutCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of outgoing Initiate-requests that have been refused.', htmlDescription='

Number of outgoing Initiate-requests that have been refused.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:41,775 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSNotification, _objData=UmlObjectData [id=3575, uuid={5F493EBC-63E7-480b-B344-66194892E87B}, since=null, name=RejectRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of reject issued in reception.', htmlDescription='

Number of reject issued in reception.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:41,787 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSNotification, _objData=UmlObjectData [id=3576, uuid={0D61F583-C436-4314-A1B5-C6FA04940FD7}, since=null, name=RejectTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received Reject on transmission.', htmlDescription='

Number of received Reject on transmission.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:41,802 [main] DEBUG ClassBuilder - Adding MMSNotification as subclass of AbstractAgent +2024-09-07 16:17:41,802 [main] TRACE ClassBuilder - read from EA: MMS::MMSNotification +2024-09-07 16:17:41,805 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850 Agent, _depth=5, _eaElementID=613, _objData=UmlObjectData [id=214, uuid={0123913E-3D3C-4627-ABFC-BF86D71D1894}, since=null, name=MMS, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 23, the MMS package includes the IEC 61850 Manufacturing Message Specification (MMS) classes. MMS Provider and MMS Association inherit both Security and Protocol Info attributes from the more general classes.', htmlDescription='

As shown in Figure 23, the MMS package includes the IEC 61850 Manufacturing Message Specification (MMS) classes. MMS Provider and MMS Association inherit both Security and Protocol Info attributes from the more general classes.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=mms-agent, mibName=IEC-62351-IEC61850-MMS-MIB, mibPrefix=mMS, objectBranchId=2, objectIdentity=mms-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=MMS, _objData=UmlObjectData [id=42, uuid={C69DADFE-D7C7-45d0-83FC-41012CB3C1CA}, since=null, name=MMS, alias=, stereotype=, visibility=public, txtDescription='MMS classes relationship. MMS Provider and MMS Association inherit both Security and Procotol Info attributes from the more general classes.', htmlDescription='

MMS classes relationship. MMS Provider and MMS Association inherit both Security and Procotol Info attributes from the more general classes.

'], _portrait=true, _kind=LOGICAL]], _classes=5 +2024-09-07 16:17:41,810 [main] INFO PackageBuilder - processing package SV and GSE common objects (3) ... +2024-09-07 16:17:41,821 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=SV and GSE common objects, _objData=UmlObjectData [id=63, uuid={DFEA5E4E-B042-4697-A4BE-C60308616114}, since=null, name=SV and GSE common objects, alias=, stereotype=, visibility=public, txtDescription='GSE/SV common classes relationship.', htmlDescription='

GSE/SV common classes relationship.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 16:17:41,888 [main] TRACE ClassBuilder - Class GSEandSVCommon (1 in package SV and GSE common objects) +2024-09-07 16:17:41,964 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVCommon, _objData=UmlObjectData [id=4054, uuid={8F7CBDDF-5309-4c57-A3E5-B0C820FEC605}, since=null, name=GroupUpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations at KDC that failed.', htmlDescription='

Number of update key negotiations at KDC that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:41,976 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVCommon, _objData=UmlObjectData [id=4055, uuid={72C144FE-7138-4153-8C18-0FC5BC1E8998}, since=null, name=KDCAuthFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Count of the number of authorization failures against KDC.', htmlDescription='

Count of the number of authorization failures against KDC.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:41,988 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVCommon, _objData=UmlObjectData [id=4056, uuid={10AD71AC-8E2C-4afb-88B0-4CAAF7C06C47}, since=null, name=KDCSessionKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Session Key establishment between peer and KDC failed.', htmlDescription='

Session Key establishment between peer and KDC failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:42,067 [main] DEBUG ClassBuilder - Adding GSEandSVCommon as subclass of AbstractAgent +2024-09-07 16:17:42,067 [main] TRACE ClassBuilder - read from EA: SV and GSE common objects::GSEandSVCommon +2024-09-07 16:17:42,072 [main] TRACE ClassBuilder - Class GSEandSVPublisherAssociation (2 in package SV and GSE common objects) +2024-09-07 16:17:42,172 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=4057, uuid={C97C7E95-F1A3-49a6-84CD-F37F54D4DCAA}, since=null, name=CBRef, alias=, stereotype=index, visibility=public, txtDescription='Reference of the GSE/SV Control block being supervised.', htmlDescription='

Reference of the GSE/SV Control block being supervised.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:42,185 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=4058, uuid={A3300C61-0405-4178-AA24-56139902DFD1}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:42,197 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=4059, uuid={B346F0EE-81BD-4f02-BD05-3DEB6C966B08}, since=null, name=OutUv, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer underflows detected due to outgoing serial communication.', htmlDescription='

Number of buffer underflows detected due to outgoing serial communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:42,208 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=4366, uuid={10164DB8-AB84-46a3-9325-B0D817803F9A}, since=null, name=APPID, alias=, stereotype=protocol, visibility=public, txtDescription='Application Identifier being expected.', htmlDescription='

Application Identifier being expected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:42,220 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=3829, uuid={F6725CAA-C95B-431e-BCC4-6877D34082A8}, since=null, name=TxPduPerSecond, alias=, stereotype=protocol, visibility=public, txtDescription='Count of the number of SV telegrams sent within a second on the association.', htmlDescription='

Count of the number of SV telegrams sent within a second on the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:42,220 [main] ERROR ClassBuilder - [+++ EA problem: attr count on GSEandSVPublisherAssociation = 5 +, +++ attr CBRef: pos = 1 +, +++ attr CntRs: pos = 2 +, +++ attr OutUv: pos = 3 +, +++ attr APPID: pos = 4 +, +++ attr TxPduPerSecond: pos = 4 DUPLICATE +] +2024-09-07 16:17:42,269 [main] DEBUG ClassBuilder - Adding GSEandSVPublisherAssociation as subclass of GSEandSVCommon +2024-09-07 16:17:42,275 [main] TRACE ClassBuilder - read from EA: SV and GSE common objects::GSEandSVPublisherAssociation +2024-09-07 16:17:42,280 [main] TRACE ClassBuilder - Class GSEandSVSubscriberAssociation (3 in package SV and GSE common objects) +2024-09-07 16:17:42,414 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4061, uuid={E70C3857-A774-4635-9A52-713A3189C31C}, since=null, name=CBRef, alias=, stereotype=index, visibility=public, txtDescription='Reference of the GSE/SV Control block being supervised.', htmlDescription='

Reference of the GSE/SV Control block being supervised.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:42,425 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4062, uuid={2E060239-4EB9-4a8a-A7C3-AED6EDA8C5A3}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:42,438 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4063, uuid={B4825E20-07C1-4cde-94AD-CFE37852AE7F}, since=null, name=InOvCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer overflows detected due to incoming communication. This counter is incremented each time the buffer space is insufficient to receive an incoming message.', htmlDescription='

Number of buffer overflows detected due to incoming communication. This counter is incremented each time the buffer space is insufficient to receive an incoming message.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:42,449 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4064, uuid={BA2766B5-6FA2-4c9b-85EA-7353D0790FDF}, since=null, name=MessageIntegrityFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number messages that were not using the proper Group Key.', htmlDescription='

Number messages that were not using the proper Group Key.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:42,461 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4067, uuid={85138267-8516-4911-9D4D-D78674944F2D}, since=null, name=RxPduPerSecond, alias=, stereotype=protocol, visibility=public, txtDescription='Count of the number of SV telegrams received within a second on the association.', htmlDescription='

Count of the number of SV telegrams received within a second on the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:42,472 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4365, uuid={7955A1E1-9F67-46da-A434-8EA5BA1C0BE2}, since=null, name=APPID, alias=, stereotype=protocol, visibility=public, txtDescription='Application identified being expected.', htmlDescription='

Application identified being expected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:42,484 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4367, uuid={2B5045AC-99BD-4941-BCD5-36ABDDCAC2FF}, since=null, name=RxAPPID, alias=, stereotype=protocol, visibility=public, txtDescription='Last Application Identifier being received.', htmlDescription='

Last Application Identifier being received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:42,524 [main] DEBUG ClassBuilder - Adding GSEandSVSubscriberAssociation as subclass of GSEandSVCommon +2024-09-07 16:17:42,528 [main] TRACE ClassBuilder - read from EA: SV and GSE common objects::GSEandSVSubscriberAssociation +2024-09-07 16:17:42,530 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850 Agent, _depth=5, _eaElementID=1023, _objData=UmlObjectData [id=380, uuid={206C6DF0-DCC9-45e0-B3CE-6470323EA4B6}, since=null, name=SV and GSE common objects, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 24, the SV and GSE common objects package includes the IEC 61850 Sampled Value (SV) and Generic Substation Events (GSE) common classes.', htmlDescription='

As shown in Figure 24, the SV and GSE common objects package includes the IEC 61850 Sampled Value (SV) and Generic Substation Events (GSE) common classes.

'], _modelId=362, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=SV and GSE common objects, _objData=UmlObjectData [id=63, uuid={DFEA5E4E-B042-4697-A4BE-C60308616114}, since=null, name=SV and GSE common objects, alias=, stereotype=, visibility=public, txtDescription='GSE/SV common classes relationship.', htmlDescription='

GSE/SV common classes relationship.

'], _portrait=true, _kind=LOGICAL]], _classes=3 +2024-09-07 16:17:42,534 [main] INFO PackageBuilder - processing package SV (4) ... +2024-09-07 16:17:42,554 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=SV, _objData=UmlObjectData [id=60, uuid={472A38C4-7002-4632-9EB5-EC1C28A2CCA8}, since=null, name=SV, alias=, stereotype=, visibility=public, txtDescription='SV classes relationship. SVProvider and SVAssociation inherit both Security and Procotol Info attributes from the more general classes.', htmlDescription='

SV classes relationship. SVProvider and SVAssociation inherit both Security and Procotol Info attributes from the more general classes.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 16:17:42,660 [main] TRACE ClassBuilder - Class SVProvider (4 in package SV) +2024-09-07 16:17:42,813 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3844, uuid={C24FF010-3527-40b6-A143-3CBD3C95FC45}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:42,826 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=4052, uuid={4D212643-73E9-4b01-B3E4-1419141F7F5C}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of PDUs received that could not be decrypted', htmlDescription='

Number of PDUs received that could not be decrypted

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:42,838 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3845, uuid={62E2AB60-AB61-489b-9B09-FC14A0BF4694}, since=null, name=PDUSizeFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDU with wrong size. This is meaningful only for IP telegrams.', htmlDescription='

Number of received PDU with wrong size. This is meaningful only for IP telegrams.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:42,855 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3846, uuid={A6C46361-5561-43d2-8B67-6DAC7566C062}, since=null, name=PIP, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed SV information can be obtained for each IP publisher connection.', htmlDescription='

Provides a table through which more detailed SV information can be obtained for each IP publisher connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=994, _eaTypeName=SVPublisherAssociationIP, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}] +2024-09-07 16:17:42,871 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3847, uuid={1C5E81A0-3007-4221-BBCF-B4538CDCD068}, since=null, name=PL2, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed SV information can be obtained for each L2 (Ethernet) publisher connection.', htmlDescription='

Provides a table through which more detailed SV information can be obtained for each L2 (Ethernet) publisher connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=995, _eaTypeName=SVPublisherAssociationL2, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}] +2024-09-07 16:17:42,882 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3848, uuid={F24AD27F-DE3D-4d47-BF82-D81306D727FD}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=997, _eaTypeName=SVNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:42,898 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3849, uuid={E61DCB59-D671-4e3e-AF63-7A7934A7139B}, since=null, name=SIP, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed SV information can be obtained for each IP subscriber connection.', htmlDescription='

Provides a table through which more detailed SV information can be obtained for each IP subscriber connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=998, _eaTypeName=SVSubcriberAssociationIP, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}] +2024-09-07 16:17:42,914 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3850, uuid={3A8AA373-DF4D-4203-9E17-D1A556AE4626}, since=null, name=SL2, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed SV information can be obtained for each L2 (Ethernet) subscriber connection.', htmlDescription='

Provides a table through which more detailed SV information can be obtained for each L2 (Ethernet) subscriber connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=999, _eaTypeName=SVSubcriberAssociationL2, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}] +2024-09-07 16:17:42,929 [main] DEBUG ClassBuilder - Adding SVProvider as subclass of GSEandSVCommon +2024-09-07 16:17:42,929 [main] TRACE ClassBuilder - read from EA: SV::SVProvider +2024-09-07 16:17:42,934 [main] TRACE ClassBuilder - Class SVPublisherAssociationIP (5 in package SV) +2024-09-07 16:17:42,994 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVPublisherAssociationIP, _objData=UmlObjectData [id=3817, uuid={3EC59ACA-14AB-4adf-823D-4EF3DBBA4715}, since=null, name=DestIpAddr, alias=, stereotype=protocol, visibility=public, txtDescription='Destination IP address.', htmlDescription='

Destination IP address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 16:17:43,005 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVPublisherAssociationIP, _objData=UmlObjectData [id=3818, uuid={3B41797D-66B7-473b-A47C-92A5B0C6DB2C}, since=null, name=DestIpAddrType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:43,020 [main] DEBUG ClassBuilder - Adding SVPublisherAssociationIP as subclass of GSEandSVPublisherAssociation +2024-09-07 16:17:43,021 [main] TRACE ClassBuilder - read from EA: SV::SVPublisherAssociationIP +2024-09-07 16:17:43,026 [main] TRACE ClassBuilder - Class SVPublisherAssociationL2 (6 in package SV) +2024-09-07 16:17:43,071 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVPublisherAssociationL2, _objData=UmlObjectData [id=3819, uuid={2E77B17F-D224-4764-9C29-36CD379797D7}, since=null, name=DestMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 16:17:43,085 [main] DEBUG ClassBuilder - Adding SVPublisherAssociationL2 as subclass of GSEandSVPublisherAssociation +2024-09-07 16:17:43,085 [main] TRACE ClassBuilder - read from EA: SV::SVPublisherAssociationL2 +2024-09-07 16:17:43,091 [main] TRACE ClassBuilder - Class SVSubcriberAssociationIP (7 in package SV) +2024-09-07 16:17:43,151 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVSubcriberAssociationIP, _objData=UmlObjectData [id=3823, uuid={CF21D44F-A555-48cc-99A1-D49E20097B5D}, since=null, name=SrcIpAddr, alias=, stereotype=protocol, visibility=public, txtDescription='Source IP address.', htmlDescription='

Source IP address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 16:17:43,163 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVSubcriberAssociationIP, _objData=UmlObjectData [id=3824, uuid={3AB68377-764F-4314-851D-FEE4B40FC99E}, since=null, name=SrcIpAddrType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:43,178 [main] DEBUG ClassBuilder - Adding SVSubcriberAssociationIP as subclass of GSEandSVSubscriberAssociation +2024-09-07 16:17:43,178 [main] TRACE ClassBuilder - read from EA: SV::SVSubcriberAssociationIP +2024-09-07 16:17:43,183 [main] TRACE ClassBuilder - Class SVSubcriberAssociationL2 (8 in package SV) +2024-09-07 16:17:43,229 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVSubcriberAssociationL2, _objData=UmlObjectData [id=3825, uuid={A6F5F486-2B40-4620-ADA1-3CBA7408C0D8}, since=null, name=SrcMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 16:17:43,243 [main] DEBUG ClassBuilder - Adding SVSubcriberAssociationL2 as subclass of GSEandSVSubscriberAssociation +2024-09-07 16:17:43,243 [main] TRACE ClassBuilder - read from EA: SV::SVSubcriberAssociationL2 +2024-09-07 16:17:43,248 [main] TRACE ClassBuilder - Class SVNotification (9 in package SV) +2024-09-07 16:17:43,278 [main] DEBUG ClassBuilder - Adding SVNotification as subclass of GSEandSVCommon +2024-09-07 16:17:43,278 [main] TRACE ClassBuilder - read from EA: SV::SVNotification +2024-09-07 16:17:43,280 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850 Agent, _depth=5, _eaElementID=993, _objData=UmlObjectData [id=370, uuid={FBDCDA40-333C-4feb-A44B-6E6F8766621D}, since=null, name=SV, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 25, the SV package includes the IEC 61850 Sampled Value (SV) classes. SVProvider and SVAssociation inherit both Security and Protocol Info attributes from the more general classes.', htmlDescription='

As shown in Figure 25, the SV package includes the IEC 61850 Sampled Value (SV) classes. SVProvider and SVAssociation inherit both Security and Protocol Info attributes from the more general classes.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=sv-agent, mibName=IEC-62351-IEC61850-SV-MIB, mibPrefix=sV, objectBranchId=3, objectIdentity=sv-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=SV, _objData=UmlObjectData [id=60, uuid={472A38C4-7002-4632-9EB5-EC1C28A2CCA8}, since=null, name=SV, alias=, stereotype=, visibility=public, txtDescription='SV classes relationship. SVProvider and SVAssociation inherit both Security and Procotol Info attributes from the more general classes.', htmlDescription='

SV classes relationship. SVProvider and SVAssociation inherit both Security and Procotol Info attributes from the more general classes.

'], _portrait=true, _kind=LOGICAL]], _classes=6 +2024-09-07 16:17:43,285 [main] INFO PackageBuilder - processing package GSE (5) ... +2024-09-07 16:17:43,304 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=GSE, _objData=UmlObjectData [id=44, uuid={80FA056A-3318-4339-86E8-7D464BD53A85}, since=null, name=GSE, alias=, stereotype=, visibility=public, txtDescription='GSE classes relationship. GSEProvider and GSEAssociation inherit both Security and Procotol Info attributes from the more general classes.', htmlDescription='

GSE classes relationship. GSEProvider and GSEAssociation inherit both Security and Procotol Info attributes from the more general classes.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 16:17:43,434 [main] TRACE ClassBuilder - Class GSESubscriberAssociation (3 in package GSE) +2024-09-07 16:17:43,701 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=3750, uuid={AFDD17DA-6B2F-4bc7-8F89-0E63A9B7D1D7}, since=null, name=ConfRevMis, alias=, stereotype=protocol, visibility=public, txtDescription='True indicates that the expected configuration revision did not match the received number.', htmlDescription='

True indicates that the expected configuration revision did not match the received number.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:43,713 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=3755, uuid={2E11DB8F-06FC-485f-8C56-703E601D8A60}, since=null, name=NdsComm, alias=, stereotype=protocol, visibility=public, txtDescription='Duplicated Message received', htmlDescription='

Duplicated Message received

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:43,726 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4368, uuid={9075FAD9-2CE1-4e5d-907F-DBD0B4B1CC32}, since=null, name=ConfRev, alias=, stereotype=protocol, visibility=public, txtDescription='Last configuration Revision being received.', htmlDescription='

Last configuration Revision being received.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:43,738 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4369, uuid={E4803687-6245-40fd-AB97-A5A553A34C59}, since=null, name=RxConfRev, alias=, stereotype=protocol, visibility=public, txtDescription='True indicates that the expected configuration revision did not match the received number.', htmlDescription='

True indicates that the expected configuration revision did not match the received number.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:43,750 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=3758, uuid={EBC5C199-473E-4859-B0FE-DD1C08CC93AF}, since=null, name=TalExpCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count of the received TAL expirations that have been detected.', htmlDescription='

Count of the received TAL expirations that have been detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:43,761 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4370, uuid={09E69AF6-2C2B-46e9-B274-E5220B53D94D}, since=null, name=OosErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of times out of sequence of GOOSE has been observed.', htmlDescription='

Number of times out of sequence of GOOSE has been observed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:43,772 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4371, uuid={5B152C15-4AC4-421a-87EB-F81484BD2524}, since=null, name=DupMsgRx, alias=, stereotype=protocol, visibility=public, txtDescription='If true, the subscription needs commissioning, i.e., the received message does not conform to the current subscription configuration (either the 'dataSetRef' is wrong, the data set members, the configuration revision number, or no subscription is configured at all).', htmlDescription='

If true, the subscription needs commissioning, i.e., the received message does not conform to the current subscription configuration (either the 'dataSetRef' is wrong, the data set members, the configuration revision number, or no subscription is configured at all).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:43,783 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4372, uuid={313447D4-3710-47a8-85FF-DAA9316F8720}, since=null, name=DatSet, alias=, stereotype=protocol, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:43,794 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4373, uuid={8E3C588A-BEC3-454f-861F-712BADFC92AA}, since=null, name=RxDatSet, alias=, stereotype=protocol, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:43,806 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4374, uuid={C304ABDA-E4BA-4cfc-BAD9-17425F5A0611}, since=null, name=GoID, alias=, stereotype=protocol, visibility=public, txtDescription='GOOSE Identifier being expected.', htmlDescription='

GOOSE Identifier being expected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:43,818 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4375, uuid={985D635D-D095-4282-B40B-8D3F15CDC152}, since=null, name=RxGoID, alias=, stereotype=protocol, visibility=public, txtDescription='Last GOOSE Identifier being received.', htmlDescription='

Last GOOSE Identifier being received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:43,830 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4376, uuid={3BC29513-E13B-40a1-A86D-4B3406FC2CD1}, since=null, name=StNum, alias=, stereotype=protocol, visibility=public, txtDescription='StNum being received from last accepted GOOSE message.', htmlDescription='

StNum being received from last accepted GOOSE message.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:43,842 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4377, uuid={699EF357-D4F5-4445-8F55-446FF895C089}, since=null, name=SqNum, alias=, stereotype=protocol, visibility=public, txtDescription='SqNum being received from last accepted GOOSE message.', htmlDescription='

SqNum being received from last accepted GOOSE message.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:43,853 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4378, uuid={778EF329-63E8-4a88-A172-D2DAD54D972A}, since=null, name=RejectStNum, alias=, stereotype=protocol, visibility=public, txtDescription='Last StNum being rejected.', htmlDescription='

Last StNum being rejected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:43,865 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4379, uuid={A699C155-79DE-4187-BDF5-AFD122DAD7CA}, since=null, name=RejectSqNum, alias=, stereotype=protocol, visibility=public, txtDescription='Last SqNum being rejected.', htmlDescription='

Last SqNum being rejected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:43,876 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4494, uuid={98542797-3D0F-4f54-96D7-B2BEBEAF605A}, since=null, name=RxT, alias=, stereotype=protocol, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:43,876 [main] ERROR ClassBuilder - [+++ EA problem: attr count on GSESubscriberAssociation = 16 +, +++ attr ConfRevMis: pos = 0 +, +++ attr NdsComm: pos = 2 +, +++ attr ConfRev: pos = 3 +, +++ attr RxConfRev: pos = 4 +, +++ attr TalExpCnt: pos = 4 DUPLICATE +, +++ attr OosErrCnt: pos = 5 +, +++ attr DupMsgRx: pos = 6 +, +++ attr DatSet: pos = 7 +, +++ attr RxDatSet: pos = 8 +, +++ attr GoID: pos = 9 +, +++ attr RxGoID: pos = 10 +, +++ attr StNum: pos = 11 +, +++ attr SqNum: pos = 12 +, +++ attr RejectStNum: pos = 13 +, +++ attr RejectSqNum: pos = 14 +, +++ attr RxT: pos = 15 +] +2024-09-07 16:17:43,912 [main] DEBUG ClassBuilder - Adding GSESubscriberAssociation as subclass of GSEandSVSubscriberAssociation +2024-09-07 16:17:43,912 [main] TRACE ClassBuilder - read from EA: GSE::GSESubscriberAssociation +2024-09-07 16:17:43,917 [main] TRACE ClassBuilder - Class GSEProvider (4 in package GSE) +2024-09-07 16:17:44,093 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3243, uuid={71555478-FCAD-4dae-B530-6956D1B5D475}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:44,105 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=4053, uuid={A432D351-022A-4b49-AA3D-61CBB91067FC}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of PDUs received that could not be decrypted', htmlDescription='

Number of PDUs received that could not be decrypted

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:44,117 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3773, uuid={4B58CE58-88E3-4e07-9FF3-FE0181F95942}, since=null, name=InErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of PDUs received that were in error due to malformed content, parity errors or configuration mismatch.', htmlDescription='

Number of PDUs received that were in error due to malformed content, parity errors or configuration mismatch.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:44,129 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=4121, uuid={D727F0F0-5C88-4fc4-83C5-D69614BE4ED8}, since=null, name=InUnexpectedMulticast, alias=, stereotype=protocol, visibility=public, txtDescription='Count of unexpected multicast received PDUs. This apply to GOOSE only.', htmlDescription='

Count of unexpected multicast received PDUs. This apply to GOOSE only.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:44,146 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3744, uuid={8BC8E8B9-0BA6-4277-B1B1-23F48CD0FD30}, since=null, name=PIP, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed GSE information can be obtained for each IP publisher connection.', htmlDescription='

Provides a table through which more detailed GSE information can be obtained for each IP publisher connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=796, _eaTypeName=GSEPublisherAssociationIP, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}] +2024-09-07 16:17:44,162 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3745, uuid={10373ECE-DF59-4995-BA92-240A3CC2D94B}, since=null, name=PL2, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed GSE information can be obtained for each L2 (Ethernet) publisher connection.', htmlDescription='

Provides a table through which more detailed GSE information can be obtained for each L2 (Ethernet) publisher connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=984, _eaTypeName=GSEPublisherAssociationL2, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}] +2024-09-07 16:17:44,176 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3618, uuid={BF431EAB-1B49-4c5a-8BC3-171FED573957}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=930, _eaTypeName=GSENotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:17:44,192 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3046, uuid={AA8FC433-0ACC-4dcf-9B1C-59469C28FCA5}, since=null, name=SIP, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed GSE information can be obtained for each IP subscriber connection.', htmlDescription='

Provides a table through which more detailed GSE information can be obtained for each IP subscriber connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=979, _eaTypeName=GSESubcriberAssociationIP, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}] +2024-09-07 16:17:44,209 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3746, uuid={F6A461DF-31BD-4546-8B62-BE2A79D53F41}, since=null, name=SL2, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed GSE information can be obtained for each L2 (Ethernet) subscriber connection.', htmlDescription='

Provides a table through which more detailed GSE information can be obtained for each L2 (Ethernet) subscriber connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=977, _eaTypeName=GSESubcriberAssociationL2, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}] +2024-09-07 16:17:44,224 [main] DEBUG ClassBuilder - Adding GSEProvider as subclass of GSEandSVCommon +2024-09-07 16:17:44,224 [main] TRACE ClassBuilder - read from EA: GSE::GSEProvider +2024-09-07 16:17:44,229 [main] TRACE ClassBuilder - Class GSEPublisherAssociationIP (5 in package GSE) +2024-09-07 16:17:44,287 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEPublisherAssociationIP, _objData=UmlObjectData [id=3803, uuid={9C513452-9437-4849-894C-B2C33952D4F0}, since=null, name=DestIpAddr, alias=, stereotype=protocol, visibility=public, txtDescription='Destination IP address.', htmlDescription='

Destination IP address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 16:17:44,299 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEPublisherAssociationIP, _objData=UmlObjectData [id=3802, uuid={03D1AF7D-F2B5-425c-8FD2-63B09E3887F9}, since=null, name=DestIpAddrType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:44,314 [main] DEBUG ClassBuilder - Adding GSEPublisherAssociationIP as subclass of GSEandSVPublisherAssociation +2024-09-07 16:17:44,314 [main] TRACE ClassBuilder - read from EA: GSE::GSEPublisherAssociationIP +2024-09-07 16:17:44,319 [main] TRACE ClassBuilder - Class GSEPublisherAssociationL2 (6 in package GSE) +2024-09-07 16:17:44,381 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEPublisherAssociationL2, _objData=UmlObjectData [id=3801, uuid={53A15D60-889F-4c5a-BCF1-89AF1D539B97}, since=null, name=DestMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 16:17:44,397 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEPublisherAssociationL2, _objData=UmlObjectData [id=4362, uuid={1EF8C591-A06A-43cb-8FBF-95E679E109F8}, since=null, name=SrcMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=no, Version=1}] +2024-09-07 16:17:44,411 [main] DEBUG ClassBuilder - Adding GSEPublisherAssociationL2 as subclass of GSEandSVPublisherAssociation +2024-09-07 16:17:44,411 [main] TRACE ClassBuilder - read from EA: GSE::GSEPublisherAssociationL2 +2024-09-07 16:17:44,416 [main] TRACE ClassBuilder - Class GSESubcriberAssociationIP (7 in package GSE) +2024-09-07 16:17:44,478 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubcriberAssociationIP, _objData=UmlObjectData [id=3740, uuid={FFD24620-C094-400d-8BD1-F48524198222}, since=null, name=SrcIpAddr, alias=, stereotype=protocol, visibility=public, txtDescription='Source IP address. .', htmlDescription='

Source IP address. .

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 16:17:44,490 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubcriberAssociationIP, _objData=UmlObjectData [id=3739, uuid={B418786B-EB08-4581-8037-B7C3A6E0311A}, since=null, name=SrcIpAddrType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:44,504 [main] DEBUG ClassBuilder - Adding GSESubcriberAssociationIP as subclass of GSESubscriberAssociation +2024-09-07 16:17:44,504 [main] TRACE ClassBuilder - read from EA: GSE::GSESubcriberAssociationIP +2024-09-07 16:17:44,510 [main] TRACE ClassBuilder - Class GSESubcriberAssociationL2 (8 in package GSE) +2024-09-07 16:17:44,570 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubcriberAssociationL2, _objData=UmlObjectData [id=3742, uuid={556B251D-88A4-4ac8-855E-D537776F059A}, since=null, name=SrcMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP Profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP Profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 16:17:44,585 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubcriberAssociationL2, _objData=UmlObjectData [id=4361, uuid={5024F7E1-FEC6-4125-AF1E-FFC7C29B18D8}, since=null, name=DstMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP Profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP Profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=no, Version=1}] +2024-09-07 16:17:44,599 [main] DEBUG ClassBuilder - Adding GSESubcriberAssociationL2 as subclass of GSESubscriberAssociation +2024-09-07 16:17:44,599 [main] TRACE ClassBuilder - read from EA: GSE::GSESubcriberAssociationL2 +2024-09-07 16:17:44,605 [main] TRACE ClassBuilder - Class GSENotification (9 in package GSE) +2024-09-07 16:17:44,634 [main] DEBUG ClassBuilder - Adding GSENotification as subclass of GSEandSVCommon +2024-09-07 16:17:44,635 [main] TRACE ClassBuilder - read from EA: GSE::GSENotification +2024-09-07 16:17:44,637 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850 Agent, _depth=5, _eaElementID=612, _objData=UmlObjectData [id=213, uuid={82435997-4AFF-4079-AAE7-9E673726C85A}, since=null, name=GSE, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 26, the GSE package includes the IEC 61850 Generic Substation Events (GSE) classes. GSEprovider and GSEAssociation inherit both Security and Protocol Info attributes from the more general classes.', htmlDescription='

As shown in Figure 26, the GSE package includes the IEC 61850 Generic Substation Events (GSE) classes. GSEprovider and GSEAssociation inherit both Security and Protocol Info attributes from the more general classes.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=gse-agent, mibName=IEC-62351-IEC61850-GSE-MIB, mibPrefix=gSE, objectBranchId=4, objectIdentity=gse-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=GSE, _objData=UmlObjectData [id=44, uuid={80FA056A-3318-4339-86E8-7D464BD53A85}, since=null, name=GSE, alias=, stereotype=, visibility=public, txtDescription='GSE classes relationship. GSEProvider and GSEAssociation inherit both Security and Procotol Info attributes from the more general classes.', htmlDescription='

GSE classes relationship. GSEProvider and GSEAssociation inherit both Security and Procotol Info attributes from the more general classes.

'], _portrait=true, _kind=LOGICAL]], _classes=7 +2024-09-07 16:17:44,637 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Application Protocols Agents, _depth=4, _eaElementID=143, _objData=UmlObjectData [id=42, uuid={AD259188-13EE-4de8-ACE5-B251CBE161AE}, since=null, name=IEC61850 Agent, alias=, stereotype=, visibility=public, txtDescription='The IEC 61850 Agent package includes the collection of IEC 61850 protocols monitoring information. It is structured into the following sub-packages: +- ACSI (Abstract communication service interface) +- MMS (Manufacturing Message Specification) +- SV (Sampled Value) +- GSE (Generic Substation Events).', htmlDescription='

The IEC 61850 Agent package includes the collection of IEC 61850 protocols monitoring information. It is structured into the following sub-packages:

  • ACSI (Abstract communication service interface)
  • MMS (Manufacturing Message Specification)
  • SV (Sampled Value)
  • GSE (Generic Substation Events).
'], _modelId=362, _selfDependent=false, 2_taggedValues{objectBranchId=2, objectIdentity=iec61850}, _childPackages=5] +2024-09-07 16:17:44,637 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=604, _objData=UmlObjectData [id=210, uuid={79D95A5F-8421-4ee5-89EC-51F26A20BCDC}, since=null, name=Application Protocols Agents, alias=, stereotype=, visibility=public, txtDescription='This Application Protocols Agents package contains the object descriptions to be provided in order to monitor the behaviour of the application protocols and any possible security information related to application communication layer. +Each protocol package is structured with the goal of exposing summary information on the overall application stack protocol statistics and information, but also of providing specialized statistics and information for each association with remote entities (the application level connections). This is done by reusing the same common or protocol-related objects with the goal of obtaining more coherent structure and semantics of variables.', htmlDescription='

This Application Protocols Agents package contains the object descriptions to be provided in order to monitor the behaviour of the application protocols and any possible security information related to application communication layer.

Each protocol package is structured with the goal of exposing summary information on the overall application stack protocol statistics and information, but also of providing specialized statistics and information for each association with remote entities (the application level connections). This is done by reusing the same common or protocol-related objects with the goal of obtaining more coherent structure and semantics of variables.

'], _modelId=362, _selfDependent=false, 2_taggedValues{objectBranchId=3, objectIdentity=application}, _childPackages=5] +2024-09-07 16:17:44,642 [main] INFO PackageBuilder - processing package Clocks Agent (10) ... +2024-09-07 16:17:44,661 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Clocks Agent, _objData=UmlObjectData [id=46, uuid={9DE08B60-19E1-4c7c-B3D6-82731BE2066A}, since=null, name=Clocks Agent, alias=, stereotype=, visibility=public, txtDescription='Clocks Agent classes', htmlDescription='

Clocks Agent classes

'], _portrait=true, _kind=LOGICAL] +2024-09-07 16:17:44,721 [main] TRACE ClassBuilder - Class Clock (0 in package Clocks Agent) +2024-09-07 16:17:44,831 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=2651, uuid={219E72A9-5B41-4365-A90E-491097F96C10}, since=null, name=clockTamperDetected, alias=, stereotype=security, visibility=public, txtDescription='Timestamp of when a tamper of a clock has been detected', htmlDescription='

Timestamp of when a tamper of a clock has been detected

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:44,844 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=2656, uuid={C95F5CA0-6663-41c7-BAE9-BB32F924F8F1}, since=null, name=LastClockHoldover, alias=, stereotype=health, visibility=public, txtDescription='Indicates the timestamp at which the last Holdover was detected.', htmlDescription='

Indicates the timestamp at which the last Holdover was detected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:44,857 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=2657, uuid={FF50E5F4-F0FB-48b1-B605-B025F27CA0DD}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='When written True, the statistics of clockTamperDetected and LastClockHoldover are set back to a value of zero. The values in the clocks table are not impacted by this reset.', htmlDescription='

When written True, the statistics of clockTamperDetected and LastClockHoldover are set back to a value of zero. The values in the clocks table are not impacted by this reset.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:44,874 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=2650, uuid={106DFE8D-727B-42bf-84CA-4C8E484CB760}, since=null, name=Clocks, alias=, stereotype=table, visibility=public, txtDescription='Table of information regarding the clock sources that are in use.', htmlDescription='

Table of information regarding the clock sources that are in use.

'], _isConst=false, _isStatic=false, _multiplicity=[0..n], _initValue=, _eaTypeId=608, _eaTypeName=ClockEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=cLK, objectIdentity=cLKclockEntry, Version=0}] +2024-09-07 16:17:44,886 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=3631, uuid={31D800F0-35C2-4312-95B7-E3A890982D86}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=944, _eaTypeName=SecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:44,902 [main] DEBUG ClassBuilder - Adding Clock as subclass of AbstractAgent +2024-09-07 16:17:44,902 [main] TRACE ClassBuilder - read from EA: Clocks Agent::Clock +2024-09-07 16:17:44,908 [main] TRACE ClassBuilder - Class ClockEntry (0 in package Clocks Agent) +2024-09-07 16:17:45,073 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2646, uuid={E98C8059-D343-41c5-A9FD-C45F4FA62052}, since=null, name=ClockAccuracy, alias=, stereotype=health, visibility=public, txtDescription='Reports the current expected accuracy of this clock in nanoseconds. A value of -1 indicates that the accuracy is unknown or estimated to be larger than 2147483647 ns.', htmlDescription='

Reports the current expected accuracy of this clock in nanoseconds. A value of -1 indicates that the accuracy is unknown or estimated to be larger than 2147483647 ns.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:45,087 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=3085, uuid={50EFFF08-CB85-4033-8EB9-8FC29AACD6DC}, since=null, name=ClockIndex, alias=, stereotype=index, visibility=public, txtDescription='Clock Index', htmlDescription='

Clock Index

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 16:17:45,099 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=3729, uuid={E0CAC256-AD0A-4515-9F48-63353DA71841}, since=null, name=ClockIssue, alias=, stereotype=performance, visibility=public, txtDescription='Reports the presence of any clock issue.', htmlDescription='

Reports the presence of any clock issue.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=776, _eaTypeName=TimSyncIssueType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:45,111 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2649, uuid={1591A4AF-7AD8-4720-B04E-7C389735450F}, since=null, name=ClockTamperDetected, alias=, stereotype=security, visibility=public, txtDescription='Clock tamper have been detected.', htmlDescription='

Clock tamper have been detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:45,123 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2645, uuid={F98377B8-808A-4705-81F9-99E14B733B97}, since=null, name=TmSrc, alias=, stereotype=performance, visibility=public, txtDescription='Reports the clock sync method.', htmlDescription='

Reports the clock sync method.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=777, _eaTypeName=TimSyncSrcType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:45,135 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2655, uuid={EFB862ED-119C-4441-AD7D-3F382A7C0C92}, since=null, name=HoldOver, alias=, stereotype=health, visibility=public, txtDescription='The Holdover flag shall be set True whenever the Time Traceable flag is True and the IED is not receiving a qualified signal from a recognized standard time source. It shall be set False otherwise. Therefore, this flag gives an immediate indication of loss of the time reference signal.', htmlDescription='

The Holdover flag shall be set True whenever the Time Traceable flag is True and the IED is not receiving a qualified signal from a recognized standard time source. It shall be set False otherwise. Therefore, this flag gives an immediate indication of loss of the time reference signal.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:45,148 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2648, uuid={A8CB6533-B21C-4986-941B-F8F32BD739E3}, since=null, name=LastSyncOffset, alias=, stereotype=health, visibility=public, txtDescription='Reports the time offset (in seconds) computed from the last qualified synchronization signal received by this clock. This value is used by the clock servo to gradually adjust the clock.', htmlDescription='

Reports the time offset (in seconds) computed from the last qualified synchronization signal received by this clock. This value is used by the clock servo to gradually adjust the clock.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:45,159 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2653, uuid={AAB46675-D113-417c-8AB8-E4E268247EF8}, since=null, name=TimeSourceAvailable, alias=, stereotype=health, visibility=public, txtDescription='The Time Source Available flag shall be set True whenever the IED is receiving a qualified signal from a recognized standard time source. If it loses this signal, then after an appropriate period (during which the additional holdover uncertainty is not a significant impairment to performance), the Time Source Available flag shall be set False. The duration of the period after loss of the time signal and negation of the Time Source Available flag depends on the quality of the holdover oscillator and the required time quality, and may be a configurable IED parameter. +This flag may not immediately be set False, because momentary loss of the time signal may not adversely affect IED time quality. The Holdover flag provides an immediate indication of this condition.', htmlDescription='

The Time Source Available flag shall be set True whenever the IED is receiving a qualified signal from a recognized standard time source. If it loses this signal, then after an appropriate period (during which the additional holdover uncertainty is not a significant impairment to performance), the Time Source Available flag shall be set False. The duration of the period after loss of the time signal and negation of the Time Source Available flag depends on the quality of the holdover oscillator and the required time quality, and may be a configurable IED parameter.

This flag may not immediately be set False, because momentary loss of the time signal may not adversely affect IED time quality. The Holdover flag provides an immediate indication of this condition.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:45,172 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2652, uuid={ECD9FD6B-5168-426a-BF8F-D2B9B57110B0}, since=null, name=TimeTraceable, alias=, stereotype=health, visibility=public, txtDescription='The Time Traceable flag shall be set False before the IED has received and qualified a signal from a recognized standard time source. Once it has locked to the recognized standard time source and stabilized, the Time Traceable flag shall be set True. The Time Traceable flag shall not be set False again, so long as the IED can estimate its holdover uncertainty. If at some point, perhaps due to an extended holdover interval, the IED no longer can estimate its holdover uncertainty, then the Time Traceable flag shall be set False.', htmlDescription='

The Time Traceable flag shall be set False before the IED has received and qualified a signal from a recognized standard time source. Once it has locked to the recognized standard time source and stabilized, the Time Traceable flag shall be set True. The Time Traceable flag shall not be set False again, so long as the IED can estimate its holdover uncertainty. If at some point, perhaps due to an extended holdover interval, the IED no longer can estimate its holdover uncertainty, then the Time Traceable flag shall be set False.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:45,186 [main] DEBUG ClassBuilder - Adding ClockEntry as subclass of AbstractAgent +2024-09-07 16:17:45,186 [main] TRACE ClassBuilder - read from EA: Clocks Agent::ClockEntry +2024-09-07 16:17:45,193 [main] TRACE ClassBuilder - Class SecurityNotification (6 in package Clocks Agent) +2024-09-07 16:17:45,236 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::SecurityNotification, _objData=UmlObjectData [id=3632, uuid={04B87A68-22D2-4882-A4A5-D62CF502F233}, since=null, name=clockTamperDetected, alias=, stereotype=security, visibility=public, txtDescription='Timestamp of when a tamper of a clock has been detected', htmlDescription='

Timestamp of when a tamper of a clock has been detected

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:45,250 [main] DEBUG ClassBuilder - Adding SecurityNotification as subclass of AbstractAgent +2024-09-07 16:17:45,250 [main] TRACE ClassBuilder - read from EA: Clocks Agent::SecurityNotification +2024-09-07 16:17:45,252 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=605, _objData=UmlObjectData [id=211, uuid={E6C708DE-BB97-4b5d-94A9-6AD67FCE234E}, since=null, name=Clocks Agent, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 28, the Clocks Agent package includes the clock monitoring classes.', htmlDescription='

As shown in Figure 28, the Clocks Agent package includes the clock monitoring classes.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=clock-agent, mibName=IEC-62351-CLK-MIB, mibPrefix=cLK, objectBranchId=4, objectIdentity=clock-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=Clocks Agent, _objData=UmlObjectData [id=46, uuid={9DE08B60-19E1-4c7c-B3D6-82731BE2066A}, since=null, name=Clocks Agent, alias=, stereotype=, visibility=public, txtDescription='Clocks Agent classes', htmlDescription='

Clocks Agent classes

'], _portrait=true, _kind=LOGICAL]], _classes=3 +2024-09-07 16:17:45,257 [main] INFO PackageBuilder - processing package Interfaces Agent (11) ... +2024-09-07 16:17:45,275 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Interfaces Agent, _objData=UmlObjectData [id=24, uuid={1B416A08-A236-4e2a-9A9E-6A48912EF05F}, since=null, name=Interfaces, alias=, stereotype=, visibility=public, txtDescription='The IED interfaces are depicted.', htmlDescription='

The IED interfaces are depicted.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 16:17:45,420 [main] TRACE ClassBuilder - Class Interface (1 in package Interfaces Agent) +2024-09-07 16:17:45,550 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3319, uuid={6FD1D092-9094-4f03-8B24-7DCD8E2358AD}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='Interface number', htmlDescription='

Interface number

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 16:17:45,564 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3320, uuid={6EB13B61-C6AA-4e12-9BC2-177D8DB73982}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the CPU.', htmlDescription='

Description of the CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:45,576 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3415, uuid={2252ED03-8326-4d40-957F-9921BA0D74BE}, since=null, name=IntType, alias=, stereotype=identity, visibility=public, txtDescription='Interface type (Wired or Wireless)', htmlDescription='

Interface type (Wired or Wireless)

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=866, _eaTypeName=IntType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:45,589 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3323, uuid={5B1D4273-C6BF-44d8-93A8-EE46A1AEBA45}, since=null, name=Operable, alias=, stereotype=health, visibility=public, txtDescription='Indicates that CPU is operable (it can be either online or offline)', htmlDescription='

Indicates that CPU is operable (it can be either online or offline)

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:45,600 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3318, uuid={C6769525-A8F5-4599-84AB-E17EB20458CD}, since=null, name=Online, alias=, stereotype=health, visibility=public, txtDescription='Indicate that CPU is online and active', htmlDescription='

Indicate that CPU is online and active

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:45,612 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3322, uuid={CF6212A6-1358-4cd8-AC00-7BE9C09A5BFE}, since=null, name=Faulty, alias=, stereotype=health, visibility=public, txtDescription='CPU generated errors', htmlDescription='

CPU generated errors

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:45,625 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3321, uuid={AE8F0410-796C-42ec-BA19-BA8D3B558380}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:45,689 [main] DEBUG ClassBuilder - Adding Interface as subclass of AbstractAgent +2024-09-07 16:17:45,690 [main] TRACE ClassBuilder - read from EA: Interfaces Agent::Interface +2024-09-07 16:17:45,694 [main] TRACE ClassBuilder - Class Interfaces (2 in package Interfaces Agent) +2024-09-07 16:17:46,042 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3652, uuid={F38DE40F-DC22-441d-BD42-E3990926DFB1}, since=null, name=serAvail, alias=, stereotype=performance, visibility=public, txtDescription='Number of serial interfaces installed on the device', htmlDescription='

Number of serial interfaces installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:46,055 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3657, uuid={4E66DA97-6D8F-450a-A00B-ADE0FEE47CE4}, since=null, name=serActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of serial interfaces active on the device', htmlDescription='

Number of serial interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:46,067 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3662, uuid={6F91E49F-3A68-4208-A29A-512F23CC10B0}, since=null, name=serFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing serial Interfaces on the device', htmlDescription='

Number of failing serial Interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:46,078 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3653, uuid={B23510B0-5513-4f80-9792-63DED4A16F44}, since=null, name=ethAvail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of ethernet Interfaces installed on the device', htmlDescription='

Number of ethernet Interfaces installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:46,089 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3658, uuid={6B6B3BCD-0AE0-4c6f-9FB3-472BEC079B13}, since=null, name=ethActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of ethernet interfaces active on the device', htmlDescription='

Number of ethernet interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:46,100 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3663, uuid={536CCD9F-B77E-465a-8898-FCD7644820AD}, since=null, name=ethFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing ethernet interfaces on the device', htmlDescription='

Number of failing ethernet interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:46,112 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3654, uuid={1C804DCB-08CB-41f0-B6F7-384A70C8C3C8}, since=null, name=algAvail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of analogue Interfaces installed on the device', htmlDescription='

Number of analogue Interfaces installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:46,124 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3659, uuid={29FE15BB-45B5-47c2-A74E-3EF574575434}, since=null, name=algActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of analogue interfaces Active on the device', htmlDescription='

Number of analogue interfaces Active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:46,136 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3664, uuid={54797821-2674-4526-B44A-9F87D01A6991}, since=null, name=algFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing analogue interfaces on the device', htmlDescription='

Number of failing analogue interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:46,147 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3655, uuid={74214291-7A17-4b83-AA3C-A305991D037A}, since=null, name=keyAvail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of keyboard Interface installed on the device', htmlDescription='

Number of keyboard Interface installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:46,160 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3660, uuid={AB6E018D-82C3-4524-8D58-58164F10E51B}, since=null, name=keyActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of keyboard interface active on the device', htmlDescription='

Number of keyboard interface active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:46,172 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3665, uuid={5F0D156E-80E6-401b-9854-FCA4DCA132BB}, since=null, name=keyFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing keyboard interface on the device', htmlDescription='

Number of failing keyboard interface on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:46,185 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3656, uuid={4C0A881D-B242-49b2-A9F8-DF5C3DF79322}, since=null, name=usbAvail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of Universal Serial Bus Interface installed on the device', htmlDescription='

Number of Universal Serial Bus Interface installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:46,197 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3661, uuid={6078BDD9-2E54-4b6b-A1B3-CCDBFE46E859}, since=null, name=usbActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of Universal Serial Bus interface active on the device', htmlDescription='

Number of Universal Serial Bus interface active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:46,208 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3666, uuid={64E92266-4098-47ce-9874-DBF194F6A4D1}, since=null, name=usbFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing Universal Serial Bus interface on the device', htmlDescription='

Number of failing Universal Serial Bus interface on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:46,228 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3283, uuid={6E4426CC-406A-429e-AD6D-1EECA102F2FC}, since=null, name=SER, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of serial interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of serial interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=836, _eaTypeName=SEREntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=sER, objectIdentity=intSERIALEntry, Version=0}] +2024-09-07 16:17:46,245 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3297, uuid={4C6CDBC0-62B0-4881-A810-A6CE56DACD81}, since=null, name=ETH, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of Ethernet interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of Ethernet interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=838, _eaTypeName=ETHEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=eTH, objectIdentity=intETHEntry, Version=0}] +2024-09-07 16:17:46,261 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3298, uuid={8794992C-DE7F-4bf7-83EC-5592356A181C}, since=null, name=USB, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of USB interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of USB interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=840, _eaTypeName=USBEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=uSB, objectIdentity=intUSBEntry, Version=0}] +2024-09-07 16:17:46,276 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3299, uuid={B0761727-4B75-4eb5-82B3-0BB613618FC7}, since=null, name=KEY, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of keyboard interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of keyboard interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=842, _eaTypeName=KEYEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=kEY, objectIdentity=intKEYEntry, Version=0}] +2024-09-07 16:17:46,291 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3328, uuid={D97ACC7A-DBFA-4c92-BC5C-FF187AF4C4EF}, since=null, name=ALG, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of analogue interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of analogue interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=847, _eaTypeName=ALGEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=aLG, objectIdentity=intALGEntry, Version=0}] +2024-09-07 16:17:46,303 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3678, uuid={B5CE0636-5BE9-4566-8B6A-2103E2769BA9}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object', htmlDescription='

State events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=946, _eaTypeName=Notification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:46,319 [main] DEBUG ClassBuilder - Adding Interfaces as subclass of AbstractAgent +2024-09-07 16:17:46,319 [main] TRACE ClassBuilder - read from EA: Interfaces Agent::Interfaces +2024-09-07 16:17:46,324 [main] TRACE ClassBuilder - Class ETHEntry (3 in package Interfaces Agent) +2024-09-07 16:17:46,354 [main] DEBUG ClassBuilder - Adding ETHEntry as subclass of Interface +2024-09-07 16:17:46,354 [main] TRACE ClassBuilder - read from EA: Interfaces Agent::ETHEntry +2024-09-07 16:17:46,359 [main] TRACE ClassBuilder - Class KEYEntry (4 in package Interfaces Agent) +2024-09-07 16:17:46,402 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::KEYEntry, _objData=UmlObjectData [id=3327, uuid={6A06B961-6E51-4f13-B73C-32E26BB4F831}, since=null, name=Locked, alias=, stereotype=health, visibility=public, txtDescription='Indicate a locked status for the device keyboard', htmlDescription='

Indicate a locked status for the device keyboard

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:46,416 [main] DEBUG ClassBuilder - Adding KEYEntry as subclass of Interface +2024-09-07 16:17:46,416 [main] TRACE ClassBuilder - read from EA: Interfaces Agent::KEYEntry +2024-09-07 16:17:46,422 [main] TRACE ClassBuilder - Class SEREntry (5 in package Interfaces Agent) +2024-09-07 16:17:46,481 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::SEREntry, _objData=UmlObjectData [id=3325, uuid={BD2A2516-013B-4f4c-83C4-6D873D08A614}, since=null, name=ByteIn, alias=, stereotype=protocol, visibility=public, txtDescription='Inbound Byte counter', htmlDescription='

Inbound Byte counter

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:46,492 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::SEREntry, _objData=UmlObjectData [id=3326, uuid={DB538A18-009B-4f5a-B7CD-6FDE73E706B1}, since=null, name=ByteOut, alias=, stereotype=protocol, visibility=public, txtDescription='Outbound Byte counter', htmlDescription='

Outbound Byte counter

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:46,507 [main] DEBUG ClassBuilder - Adding SEREntry as subclass of Interface +2024-09-07 16:17:46,507 [main] TRACE ClassBuilder - read from EA: Interfaces Agent::SEREntry +2024-09-07 16:17:46,512 [main] TRACE ClassBuilder - Class ALGEntry (6 in package Interfaces Agent) +2024-09-07 16:17:46,542 [main] DEBUG ClassBuilder - Adding ALGEntry as subclass of Interface +2024-09-07 16:17:46,542 [main] TRACE ClassBuilder - read from EA: Interfaces Agent::ALGEntry +2024-09-07 16:17:46,548 [main] TRACE ClassBuilder - Class USBEntry (7 in package Interfaces Agent) +2024-09-07 16:17:46,578 [main] DEBUG ClassBuilder - Adding USBEntry as subclass of Interface +2024-09-07 16:17:46,578 [main] TRACE ClassBuilder - read from EA: Interfaces Agent::USBEntry +2024-09-07 16:17:46,585 [main] TRACE ClassBuilder - Class Notification (8 in package Interfaces Agent) +2024-09-07 16:17:46,766 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3668, uuid={51550105-54C1-4ba6-BC2E-E028F066BD90}, since=null, name=serActive, alias=, stereotype=health, visibility=public, txtDescription='Number of serial Interfaces active on the device', htmlDescription='

Number of serial Interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:46,778 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3669, uuid={BE46F414-6E9C-412e-9E70-29513A7DAA18}, since=null, name=serFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing serial Interfaces on the device', htmlDescription='

Number of failing serial Interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:46,789 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3670, uuid={78956E09-8F39-4f86-A5CE-B8DBF44C7D6E}, since=null, name=ethActive, alias=, stereotype=health, visibility=public, txtDescription='Number of ethernet interfaces active on the device', htmlDescription='

Number of ethernet interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:46,799 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3671, uuid={101FCB6C-9867-4262-8E50-6F057EEAF643}, since=null, name=ethFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing ethernet interfaces on the device', htmlDescription='

Number of failing ethernet interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:46,810 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3672, uuid={5171FAC8-436F-42e9-B8E2-0C31C19FAC68}, since=null, name=algActive, alias=, stereotype=health, visibility=public, txtDescription='Number of analogue interfaces active on the device', htmlDescription='

Number of analogue interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:46,822 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3673, uuid={9711AA3F-E429-4304-960A-AA9CF2BCC003}, since=null, name=algFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing analogue interfaces on the device', htmlDescription='

Number of failing analogue interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:46,833 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3667, uuid={D523B290-8CF4-4630-ADC0-AA4FF4336A1B}, since=null, name=keyActive, alias=, stereotype=health, visibility=public, txtDescription='Number of keyboard interfaces active on the device', htmlDescription='

Number of keyboard interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:46,844 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3674, uuid={367C987D-D473-46cd-A5B1-6B3A1D275D36}, since=null, name=keyFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing keyboard interfaces on the device', htmlDescription='

Number of failing keyboard interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:46,855 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3675, uuid={0F833AFE-832E-4673-99D3-42CDEFDDF7E0}, since=null, name=usbActive, alias=, stereotype=health, visibility=public, txtDescription='Number of Universal Serial Bus interfaces active on the device', htmlDescription='

Number of Universal Serial Bus interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:46,866 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3676, uuid={E957BF40-9F27-4a63-B2DD-16F525F01FA1}, since=null, name=usbFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing Universal Serial Bus interfaces on the device', htmlDescription='

Number of failing Universal Serial Bus interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:17:46,882 [main] DEBUG ClassBuilder - Adding Notification as subclass of AbstractAgent +2024-09-07 16:17:46,882 [main] TRACE ClassBuilder - read from EA: Interfaces Agent::Notification +2024-09-07 16:17:46,883 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=130, _objData=UmlObjectData [id=40, uuid={971EA18E-FACB-4b68-BAB7-76613251FB91}, since=null, name=Interfaces Agent, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 27, the Interfaces Agent package contains the object descriptions to be provided in order to monitor the IED Interfaces state and behaviour.', htmlDescription='

As shown in Figure 27, the Interfaces Agent package contains the object descriptions to be provided in order to monitor the IED Interfaces state and behaviour.

'], _modelId=362, _selfDependent=false, 5_taggedValues{mibIdentity=interfaces-agent, mibName=IEC-62351-INT-MIB, mibPrefix=int, objectBranchId=5, objectIdentity=interfaces-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=Interfaces Agent, _objData=UmlObjectData [id=24, uuid={1B416A08-A236-4e2a-9A9E-6A48912EF05F}, since=null, name=Interfaces, alias=, stereotype=, visibility=public, txtDescription='The IED interfaces are depicted.', htmlDescription='

The IED interfaces are depicted.

'], _portrait=true, _kind=LOGICAL]], _classes=8 +2024-09-07 16:17:46,883 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=iec62351, _depth=2, _eaElementID=122, _objData=UmlObjectData [id=36, uuid={6739D61A-8BB1-4a90-AC8E-98287558CD65}, since=null, name=part7, alias=, stereotype=, visibility=public, txtDescription='IEC 62351-7 Network Management objects', htmlDescription='

IEC 62351-7 Network Management objects

'], _modelId=362, _selfDependent=false, 4_taggedValues{mibHeaderDescription=Copyright (C) IEC. This version of this MIB module is part + of IEC 57-62351-7-Ed2. + See the IEC 57-62351-7-Ed2 for full legal notices., mibHeaderRevision=202409010900Z, objectBranchId=7, objectIdentity=part7}, _childPackages=10] +2024-09-07 16:17:46,883 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=standard, _depth=1, _eaElementID=982, _objData=UmlObjectData [id=364, uuid={C0098415-D52F-4c38-9D2D-A6B872F36F1B}, since=null, name=iec62351, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=362, _selfDependent=false, 2_taggedValues{objectBranchId=62351, objectIdentity=iec62351}, _childPackages=1] +2024-09-07 16:17:46,883 [main] TRACE PackageBuilder - read PackageBuilder [_kind=TOP, _containingPackage=iso, _depth=0, _eaElementID=981, _objData=UmlObjectData [id=363, uuid={92B28419-A0C7-4a2d-8D51-D7A95DF4FBF7}, since=null, name=standard, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=362, _selfDependent=false, 2_taggedValues{objectBranchId=0, objectIdentity=standard}, _childPackages=1] +2024-09-07 16:17:46,883 [main] TRACE PackageBuilder - read PackageBuilder [_kind=MODEL, _depth=-1, _eaElementID=980, _objData=UmlObjectData [id=362, uuid={3328AB0D-72D5-404d-9405-042619AAC66A}, since=null, name=iso, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=362, _selfDependent=false, _childPackages=1] +2024-09-07 16:17:46,883 [main] INFO Util - time=[0:00:25.366] read model from EA with iteration API +2024-09-07 16:17:46,884 [main] INFO Util - +2024-09-07 16:17:46,884 [main] INFO Util - +2024-09-07 16:17:46,884 [main] INFO Util - ------------------------------------------------ +2024-09-07 16:17:46,884 [main] INFO Util - linking builders... +2024-09-07 16:17:46,884 [main] INFO EaModelBuilder - assigning type to attributes ... +2024-09-07 16:17:46,885 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::BooleanValue, _objData=UmlObjectData [id=2987, uuid={AD4E7F12-52BE-4498-9D56-489F0D36E706}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Represents a boolean value.', htmlDescription='

Represents a boolean value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=636, _eaTypeName=TruthValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1e8b406]. +2024-09-07 16:17:46,885 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::BooleanValueTs, _objData=UmlObjectData [id=2915, uuid={3DFAA603-DD4F-4fb0-B38D-E41B9F5976AD}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-07 16:17:46,885 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::BooleanValueTs, _objData=UmlObjectData [id=2916, uuid={3EDE9EA6-FA52-457e-9F52-95B08337CC6C}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Represents a boolean value.', htmlDescription='

Represents a boolean value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=636, _eaTypeName=TruthValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1e8b406]. +2024-09-07 16:17:46,885 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::CounterTs, _objData=UmlObjectData [id=2921, uuid={41F902F6-723F-4b04-A87D-8CFABFCB21DE}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-07 16:17:46,885 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::CounterTs, _objData=UmlObjectData [id=2922, uuid={CD1BCCAD-7FF8-4fd1-A24D-07EEC8C393A6}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='According to SMI v2, used to specify a value which represents a count. The range is 0 to 4294967295.', htmlDescription='

According to SMI v2, used to specify a value which represents a count. The range is 0 to 4294967295.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=624, _eaTypeName=Counter32 , _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@13f2bb1]. +2024-09-07 16:17:46,885 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::CntRs, _objData=UmlObjectData [id=3004, uuid={CBFD6F89-8B72-4d52-BB3D-1F897706A12D}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-07 16:17:46,885 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::CntRs, _objData=UmlObjectData [id=3003, uuid={8CAFD2C5-0DE7-4308-93B7-D49D6E8065AD}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Boolean', htmlDescription='

Boolean

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=636, _eaTypeName=TruthValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1e8b406]. +2024-09-07 16:17:46,885 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::Floating, _objData=UmlObjectData [id=2937, uuid={C1ACEE33-E3BF-408c-AA52-21345E91BD5B}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='IEEE Standard for Floating-Point Arithmetic, Standard 754-2008', htmlDescription='

IEEE Standard for Floating-Point Arithmetic, Standard 754-2008

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=630, _eaTypeName=Float32TC, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@18a00e3]. +2024-09-07 16:17:46,885 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::FloatingTs, _objData=UmlObjectData [id=2939, uuid={DFBCD799-E7D8-4865-988A-FB02011B6B88}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-07 16:17:46,885 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::FloatingTs, _objData=UmlObjectData [id=2940, uuid={111399D4-DEC9-4f43-A8B9-0E3848228A09}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='IEEE Standard for Floating-Point Arithmetic, Standard 754-2008', htmlDescription='

IEEE Standard for Floating-Point Arithmetic, Standard 754-2008

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=630, _eaTypeName=Float32TC, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@18a00e3]. +2024-09-07 16:17:46,885 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::EntityIndex, _objData=UmlObjectData [id=3724, uuid={5A44C892-8691-42d1-B0D8-D8DE77225CA8}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Integer value 1..2147483647 index', htmlDescription='

Integer value 1..2147483647 index

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=968, _eaTypeName=Unsigned32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@178f375]. +2024-09-07 16:17:46,885 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::Integer, _objData=UmlObjectData [id=2928, uuid={A4296952-0928-44e2-8560-C6B0DC4466A7}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Integer value -2147483648..2147483647 (inclusive) according to SMI v2', htmlDescription='

Integer value -2147483648..2147483647 (inclusive) according to SMI v2

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=173, _eaTypeName=Integer32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1375618]. +2024-09-07 16:17:46,885 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::IntegerTs, _objData=UmlObjectData [id=2930, uuid={B1DF3BAC-B146-48d1-B242-E0EE779A9B56}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-07 16:17:46,885 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::IntegerTs, _objData=UmlObjectData [id=2931, uuid={D8B8C3AD-4B33-445e-9393-31D5B1982D4A}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Integer value -2147483648..2147483647 (inclusive) according to SMI v2', htmlDescription='

Integer value -2147483648..2147483647 (inclusive) according to SMI v2

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=173, _eaTypeName=Integer32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1375618]. +2024-09-07 16:17:46,886 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::InetAddress, _objData=UmlObjectData [id=3017, uuid={8A787CF9-BA07-4486-A4DF-1CF9BA7A3A41}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='A value that represents an Internet address according to IETF RFC 4001.', htmlDescription='

A value that represents an Internet address according to IETF RFC 4001.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=952, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@15be6bb]. +2024-09-07 16:17:46,886 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::InetAddressType, _objData=UmlObjectData [id=3690, uuid={117C0501-377C-4bf4-90D9-77F084F0628D}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Address Type', htmlDescription='

Address Type

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=954, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1fcfece]. +2024-09-07 16:17:46,886 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::MacAddress, _objData=UmlObjectData [id=3019, uuid={212F7F94-30C7-4296-9560-DDE128B43ABE}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='OCTET STRING (SIZE (6)), DISPLAY-HINT "1x:"', htmlDescription='

OCTET STRING (SIZE (6)), DISPLAY-HINT "1x:"

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=966, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@15eef3d]. +2024-09-07 16:17:46,886 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::Selector, _objData=UmlObjectData [id=3015, uuid={2B45785E-70C4-45d5-B68C-37E64794195C}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='For Transport Selector, max length is 8. For Session and Presentation Selector max length is 16.', htmlDescription='

For Transport Selector, max length is 8. For Session and Presentation Selector max length is 16.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=632, _eaTypeName=DisplayString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c4c815]. +2024-09-07 16:17:46,886 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::Timestamp, _objData=UmlObjectData [id=3083, uuid={1090CB92-2A2F-4fef-8659-3BD00578C467}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='The value of year is in network-byte order, fractions of second is as defined in RFC 5905, epoch is defined as Midnight January 1, 1970.', htmlDescription='

The value of year is in network-byte order, fractions of second is as defined in RFC 5905, epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-07 16:17:46,886 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::CharString, _objData=UmlObjectData [id=2989, uuid={E34DC27C-7282-4663-B1EF-D2B160F31A39}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Represents a String.', htmlDescription='

Represents a String.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=632, _eaTypeName=DisplayString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c4c815]. +2024-09-07 16:17:46,886 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::CharStringTs, _objData=UmlObjectData [id=3380, uuid={AF16BFAF-FF80-4499-9DAD-A58391568338}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-07 16:17:46,886 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::CharStringTs, _objData=UmlObjectData [id=3379, uuid={2E8EFCAA-307D-4001-97ED-98DC7A6FCC62}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Represents a String.', htmlDescription='

Represents a String.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=632, _eaTypeName=DisplayString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c4c815]. +2024-09-07 16:17:46,886 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::AppDatStType, _objData=UmlObjectData [id=2991, uuid={20C199C1-6505-4e87-AA5E-7761159CD7E3}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp.', htmlDescription='

Timestamp.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-07 16:17:46,886 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::AppDatStType, _objData=UmlObjectData [id=2992, uuid={A150447F-47CA-40a3-A3E4-20675ECB8425}, since=null, name=Value, alias=, stereotype=enum, visibility=public, txtDescription='AppDatStKind enumeration.', htmlDescription='

AppDatStKind enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=292, _eaTypeName=AppDatStKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@100a15d]. +2024-09-07 16:17:46,886 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::PhyHealthType, _objData=UmlObjectData [id=4116, uuid={BAC3158A-D258-496a-83A5-0E64DFD67679}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp.', htmlDescription='

Timestamp.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-07 16:17:46,886 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::PhyHealthType, _objData=UmlObjectData [id=4117, uuid={D2C2C044-39BB-4b98-BC2D-E3B53A97EDAE}, since=null, name=Value, alias=, stereotype=enum, visibility=public, txtDescription='PhyHealthKind enumeration.', htmlDescription='

PhyHealthKind enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1034, _eaTypeName=PhyHealthKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@34c75a]. +2024-09-07 16:17:46,886 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::ExtType, _objData=UmlObjectData [id=3367, uuid={1245D715-EBD7-4730-A6F9-04F33AE0CF28}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='ExtKind enumeration.', htmlDescription='

ExtKind enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=856, _eaTypeName=ExtKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@16a51ab]. +2024-09-07 16:17:46,886 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::IntType, _objData=UmlObjectData [id=3395, uuid={0A1710BD-B405-499c-8631-29D2BA1F37C0}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='IntKind enumeration', htmlDescription='

IntKind enumeration

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=864, _eaTypeName=IntKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@19a81e8]. +2024-09-07 16:17:46,886 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::EventType, _objData=UmlObjectData [id=3705, uuid={CF22855C-E347-4873-AD54-398449D71764}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp.', htmlDescription='

Timestamp.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-07 16:17:46,886 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::EventType, _objData=UmlObjectData [id=3704, uuid={B8CA2998-8D74-4277-B68D-01EC12299F89}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='EventKind enumeration.', htmlDescription='

EventKind enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=958, _eaTypeName=EventKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@15b5592]. +2024-09-07 16:17:46,886 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::PSPAccType, _objData=UmlObjectData [id=3378, uuid={2DC1C237-EFE6-4e97-A76B-58AA500A8F7B}, since=null, name=Timestamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp.', htmlDescription='

Timestamp.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-07 16:17:46,886 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::PSPAccType, _objData=UmlObjectData [id=3377, uuid={018C1C51-9C40-4e91-A95B-3878F4DD9BD9}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='PSPAccKind Enumeration.', htmlDescription='

PSPAccKind Enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=293, _eaTypeName=PSPAccKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@120ebad]. +2024-09-07 16:17:46,887 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::ProtIdType, _objData=UmlObjectData [id=3011, uuid={7F5D7A4B-5851-45b9-9F48-5C8F08A97218}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='ProtIdKind Enumeration.', htmlDescription='

ProtIdKind Enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=829, _eaTypeName=ProtIdKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@19f379]. +2024-09-07 16:17:46,887 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncIssueType, _objData=UmlObjectData [id=3006, uuid={A23195C8-D6B6-4033-B7CC-798A866B84FA}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='TimSyncIssueKind Enumeration.', htmlDescription='

TimSyncIssueKind Enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=113, _eaTypeName=TimSyncIssueKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@12cc05a]. +2024-09-07 16:17:46,887 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::SecurityProfileType, _objData=UmlObjectData [id=3929, uuid={62BF7B27-EFA1-466c-AED9-06307DBA6999}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='SecurityProfile Enumeration', htmlDescription='

SecurityProfile Enumeration

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1011, _eaTypeName=SecurityProfileKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8a9f61]. +2024-09-07 16:17:46,887 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcType, _objData=UmlObjectData [id=3008, uuid={7D7258A7-E193-49cd-AA63-6F1E9EECA15D}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='TimSyncSrcKind Enumeration', htmlDescription='

TimSyncSrcKind Enumeration

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=117, _eaTypeName=TimSyncSrcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@16905e]. +2024-09-07 16:17:46,887 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::LnkType, _objData=UmlObjectData [id=3010, uuid={9322D17D-875C-49ca-B9CF-0F43B6E41A52}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='LnkType Enumeration.', htmlDescription='

LnkType Enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=644, _eaTypeName=LnkKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@5ca609]. +2024-09-07 16:17:46,887 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2673, uuid={B7336AC3-3490-4d18-9C0A-633A3375B799}, since=null, name=AppDatSt, alias=, stereotype=health, visibility=public, txtDescription='Status of the environment where the device is operated (e.g. Power Supply, Physical Access)', htmlDescription='

Status of the environment where the device is operated (e.g. Power Supply, Physical Access)

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=766, _eaTypeName=AppDatStType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@16d4b5c, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,887 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=596, uuid={F437BD0A-FA9A-4244-BD21-213EDEE71F93}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Attribute that allows a reset of the statistical information.', htmlDescription='

Attribute that allows a reset of the statistical information.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,888 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=3707, uuid={CC877A95-C652-4fe2-AD1D-655296F78214}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,888 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2257, uuid={A7F35D26-4B23-4015-AD0D-EBEFA191D4F4}, since=null, name=PSPBld, alias=, stereotype=security, visibility=public, txtDescription='Building access occurred.', htmlDescription='

Building access occurred.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,889 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2255, uuid={AE5A5B25-3635-4d4e-BB6F-3F373B37D7F7}, since=null, name=PSPIed, alias=, stereotype=security, visibility=public, txtDescription='Indicates that direct access to the IED is in process.', htmlDescription='

Indicates that direct access to the IED is in process.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,889 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2256, uuid={B58DB9CE-5D6A-4836-8A52-322BC774BC87}, since=null, name=PSPPanel, alias=, stereotype=security, visibility=public, txtDescription='Indicates that panel access is occurring to the IED.', htmlDescription='

Indicates that panel access is occurring to the IED.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,889 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2258, uuid={5330F087-530C-45ed-97CC-9AAA63252BF8}, since=null, name=PSPPerimeter, alias=, stereotype=security, visibility=public, txtDescription='Physical perimeter access occurred (e.g. door open), where available.', htmlDescription='

Physical perimeter access occurred (e.g. door open), where available.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,889 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=152, uuid={77B56447-B1AC-4c57-B772-2A438F32F38B}, since=null, name=PSUP, alias=, stereotype=table, visibility=public, txtDescription='A list of power supply entries.', htmlDescription='

A list of power supply entries.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=616, _eaTypeName=PSUPEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@feb3fa, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,889 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2260, uuid={0ABF14FE-A7EB-447e-9066-271C644F8B1A}, since=null, name=PSUPLos, alias=, stereotype=health, visibility=public, txtDescription='Power supply table entry index of the last power supply that was detected as lost.', htmlDescription='

Power supply table entry index of the last power supply that was detected as lost.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,889 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2259, uuid={ECCB9B5A-C082-4a31-BCA7-B115A8600DA0}, since=null, name=PSUPOn, alias=, stereotype=health, visibility=public, txtDescription='Index of the power supply that was the last to come on.', htmlDescription='

Index of the power supply that was the last to come on.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,889 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=3622, uuid={96BB2987-191F-4e60-BCB6-102571495093}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=874, _eaTypeName=SecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@15d3402, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,889 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=3621, uuid={75ECAF5C-210D-48b8-90F9-82576506744C}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object.', htmlDescription='

State events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=903, _eaTypeName=Notification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1565ec2, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,889 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=4501, uuid={7FB27A25-45C1-42c1-9B72-BD8FC786A10A}, since=null, name=PSPRemote, alias=, stereotype=security, visibility=public, txtDescription='Indicates that a current remote access is occurring to the IED.', htmlDescription='

Indicates that a current remote access is occurring to the IED.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,889 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2663, uuid={82D58AB7-4A2D-4041-B53A-D00E492C6C11}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,889 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2671, uuid={6A6A7DC3-B5BB-4553-84C2-44318B449579}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the power supply.', htmlDescription='

Description of the power supply.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,889 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=3725, uuid={27FE83CA-F363-47cc-8B97-92F4711DDAAF}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='Id of the power supply.', htmlDescription='

Id of the power supply.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 16:17:46,890 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2670, uuid={40DB5D25-5E33-4ad3-BB26-D2E165FEBA1F}, since=null, name=Name, alias=, stereotype=identity, visibility=public, txtDescription='Name of the power supply.', htmlDescription='

Name of the power supply.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 16:17:46,890 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2669, uuid={87F74A2E-D615-4bb8-A54D-B421846C7542}, since=null, name=PSUPLos, alias=, stereotype=health, visibility=public, txtDescription='Timestamp of the last detected power loss.', htmlDescription='

Timestamp of the last detected power loss.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,890 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2661, uuid={3F81B85E-2C71-4d22-8767-ADB07D4305CC}, since=null, name=PwrLosCnt, alias=, stereotype=health, visibility=public, txtDescription='Attribute that provides a count of number power losses. Power loss indicates primary supply power loss not shutdown.', htmlDescription='

Attribute that provides a count of number power losses. Power loss indicates primary supply power loss not shutdown.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,890 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2728, uuid={0A17570B-860F-49a1-8208-A78149EDC279}, since=null, name=PwrOn, alias=, stereotype=health, visibility=public, txtDescription='Indicates if the power supply state is currently on and operating appropriately.', htmlDescription='

Indicates if the power supply state is currently on and operating appropriately.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,890 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Notification, _objData=UmlObjectData [id=3463, uuid={99A52BA7-C37A-4d5a-9AF2-69F868DCA056}, since=null, name=PSUPLos, alias=, stereotype=health, visibility=public, txtDescription='Power supply Table Entry Index of the last power supply that was detected as lost.', htmlDescription='

Power supply Table Entry Index of the last power supply that was detected as lost.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e]. +2024-09-07 16:17:46,890 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Notification, _objData=UmlObjectData [id=3462, uuid={CF8ECE95-A139-4efa-B7E5-5EBCC29D609C}, since=null, name=PSUPOn, alias=, stereotype=health, visibility=public, txtDescription='Index of the power supply that was the last to come on.', htmlDescription='

Index of the power supply that was the last to come on.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2]. +2024-09-07 16:17:46,890 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=4039, uuid={F551C4F9-AD27-4ef4-B8FA-5DBAC7238912}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,891 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=3432, uuid={04CE81A5-8629-43c0-8F3E-D93C55B63D0B}, since=null, name=PSPBld, alias=, stereotype=security, visibility=public, txtDescription='Building Access occurred.', htmlDescription='

Building Access occurred.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@fc185]. +2024-09-07 16:17:46,891 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=3430, uuid={8AA6C984-EF4B-41bb-B433-665F0793B107}, since=null, name=PSPIed, alias=, stereotype=security, visibility=public, txtDescription='Indicates that direct access to the IED is in process.', htmlDescription='

Indicates that direct access to the IED is in process.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@fc185]. +2024-09-07 16:17:46,891 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=3431, uuid={CBC52337-714E-4296-BD4F-B152E72DF029}, since=null, name=PSPPanel, alias=, stereotype=security, visibility=public, txtDescription='Indicates that panel access is occurring to the IED.', htmlDescription='

Indicates that panel access is occurring to the IED.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@fc185]. +2024-09-07 16:17:46,891 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=3433, uuid={165E406E-AC48-43d3-A163-7401119B36B9}, since=null, name=PSPPerimeter, alias=, stereotype=security, visibility=public, txtDescription='Perimeter Access occurred.', htmlDescription='

Perimeter Access occurred.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@fc185]. +2024-09-07 16:17:46,891 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=159, uuid={1405DC0D-6A4E-4f7e-AF8C-5E21E5C79F3C}, since=null, name=AtkCnt, alias=, stereotype=security, visibility=public, txtDescription='Attribute that provides the number of cyber- attacks that have been detected.', htmlDescription='

Attribute that provides the number of cyber- attacks that have been detected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,891 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=593, uuid={D7F266B3-90FC-434c-850B-A67888D5FF8C}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,891 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3365, uuid={4F170B51-C2F3-496d-A921-71158D5FAAD4}, since=null, name=ConfigurationCRC, alias=, stereotype=identity, visibility=public, txtDescription='CRC of the last update.', htmlDescription='

CRC of the last update.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,891 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3364, uuid={70C845C3-72FA-4ee2-8C82-B541DEA6F1A6}, since=null, name=ConfigurationVersion, alias=, stereotype=identity, visibility=public, txtDescription='Version of the last uploaded configuration.', htmlDescription='

Version of the last uploaded configuration.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f5e5e3, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,891 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3264, uuid={B2181BC5-C543-4352-AF8C-CF45A0CC6715}, since=null, name=CPU, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of CPU inside the IED.', htmlDescription='

This entry defer to possible multiple instances of CPU inside the IED.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=832, _eaTypeName=CPUEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@193948d, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,891 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=164, uuid={27E657EB-F5E0-46ac-9D03-B88771E3C03E}, since=null, name=CpuUsage, alias=, stereotype=health, visibility=public, txtDescription='Provides an attribute that indicates the percentage of processing resources that is in use. Range is 0 to 100', htmlDescription='

Provides an attribute that indicates the percentage of processing resources that is in use. Range is 0 to 100

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,891 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=165, uuid={331F6C40-DC4F-47e4-A1E7-D03E91A9BAB7}, since=null, name=DataInv, alias=, stereotype=security, visibility=public, txtDescription='Provides a count of the number of attempts to write invalid data, for instance out-of-range data.', htmlDescription='

Provides a count of the number of attempts to write invalid data, for instance out-of-range data.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,891 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=1904, uuid={6044B2D8-9605-461e-A2D5-AF9EF801D394}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='This entry provides a textual description of the IED.', htmlDescription='

This entry provides a textual description of the IED.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,892 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=174, uuid={84B44E91-B83B-48bc-95EB-FCE87A7F7BC1}, since=null, name=ExpCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of expired certificates that are in the certificate storage configured for local use.', htmlDescription='

Indicates the number of expired certificates that are in the certificate storage configured for local use.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,892 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3332, uuid={609144A0-BD56-43ff-AEA6-E96829144EC8}, since=null, name=EXT, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of extension modules inside the IED.', htmlDescription='

This entry defer to possible multiple instances of extension modules inside the IED.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=850, _eaTypeName=EXTEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1604f19, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,892 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3357, uuid={40D5B796-07CF-4261-BF72-7AC36DC3E5C5}, since=null, name=FirmwareVersion, alias=, stereotype=identity, visibility=public, txtDescription='Version of the last uploaded Firmware. Timestamp refers to upload time.', htmlDescription='

Version of the last uploaded Firmware. Timestamp refers to upload time.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f5e5e3, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,892 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=1908, uuid={6FD1E9BC-3801-4721-BC75-1500D754A5F4}, since=null, name=InternalTemp, alias=, stereotype=health, visibility=public, txtDescription='Degree Centigrade measurement of the internal IED Temperature.', htmlDescription='

Degree Centigrade measurement of the internal IED Temperature.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,892 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3493, uuid={A2E2F01C-9202-4d14-B2FC-EE99FA25D64D}, since=null, name=LastCPUFail, alias=, stereotype=health, visibility=public, txtDescription='Index of last failing CPU.', htmlDescription='

Index of last failing CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,892 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3706, uuid={21041DB8-C542-4137-AADE-3D1E8DD5E1D5}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,892 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3494, uuid={7A6C77E3-9BB2-4834-8C72-DAE268A5A789}, since=null, name=LastEXTFail, alias=, stereotype=health, visibility=public, txtDescription='Index of last failing Extension.', htmlDescription='

Index of last failing Extension.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,892 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3492, uuid={4ACA1571-DB99-4447-9A06-033F9EE4348B}, since=null, name=LastSTOREFail, alias=, stereotype=health, visibility=public, txtDescription='Index of last failing Storage.', htmlDescription='

Index of last failing Storage.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,892 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3256, uuid={A9D75A03-5288-48d7-BA55-09F388369D28}, since=null, name=Location, alias=, stereotype=identity, visibility=public, txtDescription='Physical Installation coordinates (geographical and plant location).', htmlDescription='

Physical Installation coordinates (geographical and plant location).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,892 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3257, uuid={B4CF9E53-369A-47de-B31C-9255617C59E5}, since=null, name=Maintainer, alias=, stereotype=identity, visibility=public, txtDescription='Organizational reference for device maintenance.', htmlDescription='

Organizational reference for device maintenance.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,892 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3388, uuid={B008E2FB-21B8-4e33-B720-B440E4B1F49D}, since=null, name=MemTotal, alias=, stereotype=health, visibility=public, txtDescription='Provides an attribute that report the total RAM available in KBytes.', htmlDescription='

Provides an attribute that report the total RAM available in KBytes.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,892 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=1910, uuid={F6C9C372-CCF6-49b4-B39B-B7C633D0987A}, since=null, name=MemUsage, alias=, stereotype=health, visibility=public, txtDescription='Provides an attribute that indicates the percentage of memory that is in use.Range is 0 to 100.', htmlDescription='

Provides an attribute that indicates the percentage of memory that is in use.Range is 0 to 100.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,892 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3255, uuid={E81796A9-2AC8-45d5-A00C-A8FF43E2E704}, since=null, name=MIBVersion, alias=, stereotype=identity, visibility=public, txtDescription='Version of the Management Information Base.', htmlDescription='

Version of the Management Information Base.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,892 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=167, uuid={E0D67C9A-2A09-4694-B58C-55AB9281E1BA}, since=null, name=MisEvCnt, alias=, stereotype=health, visibility=public, txtDescription='Provides an attribute that represents the count of missed events or data.', htmlDescription='

Provides an attribute that represents the count of missed events or data.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,892 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=1913, uuid={FBF2BE7D-376E-477d-BEA6-8FBF4467B076}, since=null, name=Name, alias=, stereotype=identity, visibility=public, txtDescription='Name of IED.', htmlDescription='

Name of IED.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,892 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3718, uuid={472EB367-3A8B-4a9a-82E6-AD7C1825366F}, since=null, name=NearToExpCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of certificates in the certificate storage configured for local use that have exceeded the 70% of validity period.', htmlDescription='

Indicates the number of certificates in the certificate storage configured for local use that have exceeded the 70% of validity period.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,892 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=177, uuid={813425EE-45D4-449f-A1BA-5E8BDECC6309}, since=null, name=NvStore, alias=, stereotype=health, visibility=public, txtDescription='Indicates the global number of kilobytes of storage allocated for local use in all storage areas.', htmlDescription='

Indicates the global number of kilobytes of storage allocated for local use in all storage areas.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,892 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=178, uuid={82009203-F55E-466e-9B62-1933D717E9E0}, since=null, name=NvStoreRem, alias=, stereotype=health, visibility=public, txtDescription='Indicates the percentage of NvStore available for storage.', htmlDescription='

Indicates the percentage of NvStore available for storage.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,892 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=157, uuid={BE9FD31C-2E94-434f-8D2A-69F9BBC26FFD}, since=null, name=PhyHealth, alias=, stereotype=health, visibility=public, txtDescription='General health status of IED hardware and software.', htmlDescription='

General health status of IED hardware and software.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1036, _eaTypeName=PhyHealthType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1efea79, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,893 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=158, uuid={D980F3DA-CEDB-4402-837B-C8480047FB4F}, since=null, name=PhyHealthChgCnt, alias=, stereotype=health, visibility=public, txtDescription='Provides a count of the number of transitions state of PhyHealth Attribute.', htmlDescription='

Provides a count of the number of transitions state of PhyHealth Attribute.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,893 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3437, uuid={DF896F75-F02E-4195-9E06-0E9BB719136B}, since=null, name=RBACDbUpdate, alias=, stereotype=security, visibility=public, txtDescription='Version of the last uploaded RBAC Database.', htmlDescription='

Version of the last uploaded RBAC Database.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f5e5e3, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,893 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=176, uuid={BF4C520F-2A9F-434f-A442-25072A5C8B6B}, since=null, name=RevCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of revoked certificates that are still configured for local use.', htmlDescription='

Indicates the number of revoked certificates that are still configured for local use.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,893 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3479, uuid={8DA6CCEB-ED0C-41ec-B476-C7F33C86B499}, since=null, name=RevCheckFail, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number revocation check failures.', htmlDescription='

Indicates the number revocation check failures.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,893 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3620, uuid={93F9F190-837F-4def-9AE7-693E1E609256}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=912, _eaTypeName=SecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@23a2f9, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,893 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3619, uuid={167D9C3F-D113-4dd9-8CD1-62228F439DF9}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object.', htmlDescription='

State events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=911, _eaTypeName=Notification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c0edeb, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,893 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3387, uuid={2CF43DE1-E31F-4743-B645-CC6617CC65E9}, since=null, name=STORE, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of storage modules inside the IED.', htmlDescription='

This entry defer to possible multiple instances of storage modules inside the IED.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=862, _eaTypeName=STOREEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@17e2f02, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,893 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=4118, uuid={A000D652-2899-4b1e-A269-5B0E74D9612D}, since=null, name=SvcViol, alias=, stereotype=security, visibility=public, txtDescription='Number of service privilege violations (i.e., when the data object that the client wanted to access exists in the access view for the association with that client, but the requested service is not allowed).', htmlDescription='

Number of service privilege violations (i.e., when the data object that the client wanted to access exists in the access view for the association with that client, but the requested service is not allowed).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,893 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3964, uuid={8C00B0E5-5F91-4e94-AAA3-B08EFBB15D6C}, since=null, name=Watchdog, alias=, stereotype=health, visibility=public, txtDescription='This attribute report the count of Watchdog intervention on any component of the IED.', htmlDescription='

This attribute report the count of Watchdog intervention on any component of the IED.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,893 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=2217, uuid={FA50F248-F688-4b0f-B343-E8626A859677}, since=null, name=WrmStrCnt, alias=, stereotype=health, visibility=public, txtDescription='Number of warm starts detected.', htmlDescription='

Number of warm starts detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,893 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3261, uuid={F7E2552A-9E40-4498-9B35-80E4DC7388F3}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,893 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3260, uuid={2A8CCA5F-B153-4fa8-8801-52859B51BF8A}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the CPU.', htmlDescription='

Description of the CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,894 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3262, uuid={6C624EF6-19CC-45c7-8B22-52C6EB105C3F}, since=null, name=Faulty, alias=, stereotype=health, visibility=public, txtDescription='CPU generated errors.', htmlDescription='

CPU generated errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,894 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3259, uuid={18120B8F-8761-4f72-A364-9015D0229D9F}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='CPU number.', htmlDescription='

CPU number.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 16:17:46,894 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3258, uuid={5BACDAAA-B8BD-4635-B1F3-7E2C4CB93292}, since=null, name=Online, alias=, stereotype=health, visibility=public, txtDescription='Indicate that CPU is online and active.', htmlDescription='

Indicate that CPU is online and active.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,894 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3263, uuid={404E8337-84BD-4e87-888C-BC40C8FDFD3D}, since=null, name=Operable, alias=, stereotype=health, visibility=public, txtDescription='Indicates that CPU is operable (it can be either online or offline).', htmlDescription='

Indicates that CPU is operable (it can be either online or offline).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,894 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3389, uuid={D6BA8CB3-C883-4924-9F0F-3E0D3BF3FE2D}, since=null, name=Temperature, alias=, stereotype=health, visibility=public, txtDescription='Temperature of this CPU.', htmlDescription='

Temperature of this CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,894 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3965, uuid={2C004DAE-5C35-4b32-8046-95848FB39988}, since=null, name=Watchdog, alias=, stereotype=health, visibility=public, txtDescription='This attribute report the count of Watchdog intervention on this CPU.', htmlDescription='

This attribute report the count of Watchdog intervention on this CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,894 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3334, uuid={5449D06F-D84C-4247-BFF2-855283FE546B}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='Software PLC ID.', htmlDescription='

Software PLC ID.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 16:17:46,894 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3335, uuid={1FA00718-1A03-4856-BE17-E4C968E2303B}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the Software PLC.', htmlDescription='

Description of the Software PLC.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,894 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3366, uuid={26FC08E1-AE06-447a-A63C-A464EF3B6C5A}, since=null, name=ExtensionType, alias=, stereotype=identity, visibility=public, txtDescription='This attribute defines the type of the extension module.', htmlDescription='

This attribute defines the type of the extension module.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=854, _eaTypeName=ExtType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1081592, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,894 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3416, uuid={25484747-00E6-4e15-9F70-84DADE0F1C1C}, since=null, name=CodeVersion, alias=, stereotype=identity, visibility=public, txtDescription='Version of the last uploaded code.', htmlDescription='

Version of the last uploaded code.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f5e5e3, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,894 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3338, uuid={582D62C0-D628-4ccb-8BBD-32D4EE3B63BD}, since=null, name=Running, alias=, stereotype=health, visibility=public, txtDescription='Indicates that CPU is operable (it can be either online or offline).', htmlDescription='

Indicates that CPU is operable (it can be either online or offline).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,894 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3390, uuid={4838CC42-4D04-48d4-B5E0-73AC845722FF}, since=null, name=Temperature, alias=, stereotype=health, visibility=public, txtDescription='Temperature of this extension.', htmlDescription='

Temperature of this extension.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,894 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3333, uuid={884C8693-44E5-4b48-BBA4-E016ABF8B3C1}, since=null, name=Watchdog, alias=, stereotype=health, visibility=public, txtDescription='This attribute report the count of Watchdog intervention on this IED extension (e.g. software PLC).', htmlDescription='

This attribute report the count of Watchdog intervention on this IED extension (e.g. software PLC).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,894 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3337, uuid={A88DDBF9-7D12-4096-A713-D46EF92F2788}, since=null, name=Errors, alias=, stereotype=health, visibility=public, txtDescription='This attribute reports the PLC software detected errors.', htmlDescription='

This attribute reports the PLC software detected errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,894 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3336, uuid={A600A488-A1C0-4de3-BA57-148F100FC3F6}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,895 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3382, uuid={51E473C6-FD18-455e-AED3-59F394443C8D}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='Storage area ID number.', htmlDescription='

Storage area ID number.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 16:17:46,895 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3383, uuid={064A1F24-744B-46ad-AD7C-A95961E97B13}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the storage area.', htmlDescription='

Description of the storage area.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,895 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3386, uuid={F81C3EA0-A881-4cf8-981C-6AAA51137320}, since=null, name=NvStore, alias=, stereotype=health, visibility=public, txtDescription='Indicates the amount of storage.', htmlDescription='

Indicates the amount of storage.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,895 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3381, uuid={9C3D8C6F-12FE-4f73-AF1F-DE108934866D}, since=null, name=NvStoreRem, alias=, stereotype=health, visibility=public, txtDescription='Indicate remaining storage in this area.', htmlDescription='

Indicate remaining storage in this area.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,896 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3385, uuid={D8309CF9-DAF0-4ee7-A381-888D751BA0AA}, since=null, name=Faulty, alias=, stereotype=health, visibility=public, txtDescription='Storage area fault generated errors.', htmlDescription='

Storage area fault generated errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,896 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3732, uuid={39256EA1-992F-4aca-AF28-01BF33E5DF73}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,896 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3486, uuid={B5FF53A1-E8B9-46ec-BE1B-75F6EC7C48F5}, since=null, name=PhyHealthChgCnt, alias=, stereotype=health, visibility=public, txtDescription='Provides a count of the number of transitions state of PhyHealth Attribute.', htmlDescription='

Provides a count of the number of transitions state of PhyHealth Attribute.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,896 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3497, uuid={C24EC3BA-E07C-4a47-9FC1-D975C6DF5FA9}, since=null, name=InternalTemp, alias=, stereotype=health, visibility=public, txtDescription='Degree Centigrade measurement of the internal IED Temperature.', htmlDescription='

Degree Centigrade measurement of the internal IED Temperature.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,896 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3495, uuid={11B98054-C537-42a0-938C-380F69A2A3F5}, since=null, name=NvStore, alias=, stereotype=health, visibility=public, txtDescription='Indicates the global number of kilobytes of storage allocated for local use in all storage areas.', htmlDescription='

Indicates the global number of kilobytes of storage allocated for local use in all storage areas.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,896 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3496, uuid={5E3EA7C8-15A7-42f6-9FBC-0C995489AB43}, since=null, name=NvStoreRem, alias=, stereotype=health, visibility=public, txtDescription='Indicates the percentage of NvStore available for storage.', htmlDescription='

Indicates the percentage of NvStore available for storage.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,896 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3480, uuid={8334F7D0-DA9C-4f85-8A96-1ACB87744C5B}, since=null, name=PhyHealth, alias=, stereotype=health, visibility=public, txtDescription='General health status of IED hardware and software.', htmlDescription='

General health status of IED hardware and software.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1036, _eaTypeName=PhyHealthType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1efea79, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,897 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3489, uuid={37E2129D-71C5-4030-8530-00D04FA20DDF}, since=null, name=WrmStrCnt, alias=, stereotype=health, visibility=public, txtDescription='Number of warm starts detected.', htmlDescription='

Number of warm starts detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,897 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3502, uuid={E2312704-4F51-465e-8B02-4DFC37D2286B}, since=null, name=AtkCnt, alias=, stereotype=security, visibility=public, txtDescription='Attribute that provides the number of cyber- attacks that have been detected.', htmlDescription='

Attribute that provides the number of cyber- attacks that have been detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,897 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3499, uuid={7B741BD7-BDA8-4148-BDA0-6667E98C3102}, since=null, name=ExpCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of expired certificates that are in the certificate storage configured for local use.', htmlDescription='

Indicates the number of expired certificates that are in the certificate storage configured for local use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,897 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3730, uuid={7029DE89-300D-43cb-B94F-49317EE26061}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,897 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3731, uuid={554C03A1-C7D0-43ea-8541-46609B5191C2}, since=null, name=NearToExpCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of certificates in the certificate storage configured for local use that have exceeded the 70% of validity period.', htmlDescription='

Indicates the number of certificates in the certificate storage configured for local use that have exceeded the 70% of validity period.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,897 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3498, uuid={16D2AFD2-62AE-4dfe-BA94-32B996B33302}, since=null, name=RevCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of revoked certificates that are still configured for local use.', htmlDescription='

Indicates the number of revoked certificates that are still configured for local use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,897 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3500, uuid={406910CA-F346-4649-99A2-5A215611BD7D}, since=null, name=RevCheckFail, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number revocation check failures.', htmlDescription='

Indicates the number revocation check failures.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,897 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4079, uuid={CCA64890-32AD-4a39-BD2E-B115DB6259D5}, since=null, name=IEC62351part3, alias=, stereotype=security, visibility=public, txtDescription='True is security profile in use for this association (IEC 62351-3).', htmlDescription='

True is security profile in use for this association (IEC 62351-3).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@756e4d, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,897 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4087, uuid={0CDF636C-287B-44bf-AF3B-83CBAEB3791B}, since=null, name=Part3ConnectionId, alias=, stereotype=protocol, visibility=public, txtDescription='IEC 62351-3 Transport layer connection id in use for this Association. Meaningful only if IEC62351Part3 is true.', htmlDescription='

IEC 62351-3 Transport layer connection id in use for this Association. Meaningful only if IEC62351Part3 is true.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,897 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4099, uuid={18DFBDB7-B849-4a22-AEBA-4B62D877531D}, since=null, name=TCPHndShTime, alias=, stereotype=performance, visibility=public, txtDescription='Duration of the TCP handshake. Only applicable when the when the application layer has access to the TLS layer.', htmlDescription='

Duration of the TCP handshake. Only applicable when the when the application layer has access to the TLS layer.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,897 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4107, uuid={A9F9F05C-681E-480a-B663-D8EB1E1FE300}, since=null, name=TLSHndTime, alias=, stereotype=performance, visibility=public, txtDescription='TLS Handshake time. Only applicable when the when the application layer has access to the TLS layer.', htmlDescription='

TLS Handshake time. Only applicable when the when the application layer has access to the TLS layer.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,897 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4109, uuid={F7CBA04D-7FEA-47c7-A560-EA06B30C3056}, since=null, name=TLSRenegotiationTime, alias=, stereotype=performance, visibility=public, txtDescription='TLS Renegotiation time. Only applicable when the when the application layer has access to the TLS layer.', htmlDescription='

TLS Renegotiation time. Only applicable when the when the application layer has access to the TLS layer.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,897 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4108, uuid={CBC69A2E-FFEA-4612-9907-B3E519FB4E3F}, since=null, name=TLSResumptionTime, alias=, stereotype=performance, visibility=public, txtDescription='TLS Resumption time. Only applicable when the when the application layer has access to the TLS layer.', htmlDescription='

TLS Resumption time. Only applicable when the when the application layer has access to the TLS layer.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,897 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4106, uuid={EF9560F0-0EC3-4417-883D-96C32AE7803C}, since=null, name=TotalHndTime, alias=, stereotype=performance, visibility=public, txtDescription='Transport + Application Handshake time.', htmlDescription='

Transport + Application Handshake time.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,898 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4105, uuid={BCBEF3C5-946E-42cf-8D1D-CAAC2679E795}, since=null, name=TransportHndTime, alias=, stereotype=performance, visibility=public, txtDescription='Transport layer handshake time. It is equal to TCPHndTime if IEC62351part3 is false, it is equal to TCPHndTime + TLSHndTime if IEC62351part3 is true.', htmlDescription='

Transport layer handshake time. It is equal to TCPHndTime if IEC62351part3 is false, it is equal to TCPHndTime + TLSHndTime if IEC62351part3 is true.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,898 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4460, uuid={7510EED9-2C7E-480d-BD60-571DDC732128}, since=null, name=tlsEarlyDataCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: counts early data in handshake detected but neglected.', htmlDescription='

TLSv1.3: counts early data in handshake detected but neglected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,898 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4454, uuid={4FA3487F-4B3B-477e-99E8-2F5D24C013EF}, since=null, name=tlsDisallowedCipherCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts disallowed cipher suite proposed.', htmlDescription='

Counts disallowed cipher suite proposed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,898 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4461, uuid={F6A6964F-1010-4fc3-9112-0BBBF8244593}, since=null, name=tlsCertSizeMismatchCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts occurrences of endpoint certificate size exceeds limits', htmlDescription='

Counts occurrences of endpoint certificate size exceeds limits

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,898 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4463, uuid={89576E04-2176-4454-8207-BA0A305B9547}, since=null, name=tlsNoCaMatchCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts events of matching RootCA certificate for endpoint certificate validation not available.', htmlDescription='

Counts events of matching RootCA certificate for endpoint certificate validation not available.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,898 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4464, uuid={E1FBC1A2-6D0C-437e-95D2-873497AF44C6}, since=null, name=tlsNoSigAlgoExtCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: Counts events of no signature-algorithm extension included. Fallback to deprecated signature algorithm', htmlDescription='

TLSv1.2: Counts events of no signature-algorithm extension included. Fallback to deprecated signature algorithm

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,898 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4465, uuid={0A95DFE0-8624-4b8a-814E-A12605F19B07}, since=null, name=tlsDepDigAlgCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: Deprecated signature algorithm combination detected counter.', htmlDescription='

TLSv1.2: Deprecated signature algorithm combination detected counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,898 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4466, uuid={B68E613E-EEC5-4696-A841-9EE87D237582}, since=null, name=tlsNoTrustedCertMatchCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times Endpoint certificate not in certificate trust list', htmlDescription='

Counts the times Endpoint certificate not in certificate trust list

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,898 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4467, uuid={614E4EB0-BAA2-4b19-B00A-EA1FF0D8A3BD}, since=null, name=tlsCertRevokedCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times when endpoint certificate not in certificate trust list', htmlDescription='

Counts the times when endpoint certificate not in certificate trust list

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,898 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4468, uuid={1E2A987C-A48F-4eb7-A3BA-2C77F4A68216}, since=null, name=tlsNoCrlCnt, alias=, stereotype=security, visibility=public, txtDescription='Local CRL not accessible counter.', htmlDescription='

Local CRL not accessible counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,898 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4469, uuid={4A915807-5D1C-40af-9AA5-A745061F5DED}, since=null, name=tlsCrlExpCnt, alias=, stereotype=security, visibility=public, txtDescription='CRL expired.counter.', htmlDescription='

CRL expired.counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,899 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4470, uuid={AE06F05B-3CA8-44d1-9A20-5F4997A319FF}, since=null, name=tlsNoEpskModeCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: no support for encrypt-then-MAC counter', htmlDescription='

TLSv1.2: no support for encrypt-then-MAC counter

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,899 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4471, uuid={3E766604-E835-4b5a-A853-08A031D9FE22}, since=null, name=tlsNoEncryptThenMacCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: support of non-ephemeral PSK mode only counter.', htmlDescription='

TLSv1.3: support of non-ephemeral PSK mode only counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,899 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4472, uuid={C8F076B9-538C-423c-BC24-3756EAB54AEE}, since=null, name=tlsOcspResExpCnt, alias=, stereotype=security, visibility=public, txtDescription='OCSP response expired counter.', htmlDescription='

OCSP response expired counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,899 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4473, uuid={808D4C4A-240F-40a2-A84B-7EB7FAF41461}, since=null, name=tlsCertExpCnt, alias=, stereotype=security, visibility=public, txtDescription='Endpoint certificate expired counter.', htmlDescription='

Endpoint certificate expired counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,899 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4474, uuid={03D6BEA0-3F60-4e5b-BB2A-9126ABD1750F}, since=null, name=tlsNoSkUpdateCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: Peer does not perform session key update counter.', htmlDescription='

TLSv1.3: Peer does not perform session key update counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,899 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4475, uuid={264129C9-891C-4677-A001-B283CE215402}, since=null, name=tlsSigAlgMismatchCnt, alias=, stereotype=security, visibility=public, txtDescription='Signature algorithms in received endpoint certificate not supported counter.', htmlDescription='

Signature algorithms in received endpoint certificate not supported counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,899 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4476, uuid={A460A30B-5686-4f92-AFDC-C53C056A3309}, since=null, name=tlsSigVFailedCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times certificate signature could not be verified.', htmlDescription='

Counts the times certificate signature could not be verified.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,899 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4477, uuid={0FF962F9-BFB0-4683-96B5-09E38C57E324}, since=null, name=tlsShortRsaKeyCnt, alias=, stereotype=security, visibility=public, txtDescription='RSA key with key length of less than 2048 bit detected counter.', htmlDescription='

RSA key with key length of less than 2048 bit detected counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,899 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4478, uuid={39629ED0-372D-4c6f-B89B-4C13BA7374C6}, since=null, name=tlsMinKeyCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times RSA key with minimum key length of 1024 bit detected and allowed by configuration', htmlDescription='

Counts the times RSA key with minimum key length of 1024 bit detected and allowed by configuration

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,899 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4479, uuid={947A8F86-CF55-46c2-B517-3D4FA76FBA27}, since=null, name=tlsShortKeyCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times RSA key with insufficient key length (less than 1024 bit) detected..', htmlDescription='

Counts the times RSA key with insufficient key length (less than 1024 bit) detected..

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,899 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4480, uuid={560E07AC-D31D-4807-B518-20E83C9DD1A3}, since=null, name=tlsDepHashCnt, alias=, stereotype=security, visibility=public, txtDescription='Use of deprecated hash algorithm detected counter', htmlDescription='

Use of deprecated hash algorithm detected counter

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,899 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4462, uuid={6EDD77BB-4D13-4937-96A5-231A8441C74A}, since=null, name=tlsNoTrCaMatchSCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: No support of peer signalled trusted CA counter.', htmlDescription='

TLSv1.3: No support of peer signalled trusted CA counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,899 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4455, uuid={15470B2B-1EDC-41c5-AD3A-2E3583BF3A65}, since=null, name=tlsSessionidExpiredFullHsCnt, alias=, stereotype=security, visibility=public, txtDescription='Counter of sessionID expired, Resumption not possible, full TLS handshake done.', htmlDescription='

Counter of sessionID expired, Resumption not possible, full TLS handshake done.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,899 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4458, uuid={2B104C3D-3F3F-4c1a-812A-DC170DBA1CA2}, since=null, name=tlsNoRenegTicket, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: Number of times peer does not use secure renegotiation (session tickets) capability in renegotiated handshake.', htmlDescription='

TLSv1.2: Number of times peer does not use secure renegotiation (session tickets) capability in renegotiated handshake.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,899 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4457, uuid={D1BA2BD4-A79C-4617-9538-493A2956FC91}, since=null, name=tlsNoRenegSigCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: Number of times peer does not signal secure renegotiation support (session tickets) in initial handshake.', htmlDescription='

TLSv1.2: Number of times peer does not signal secure renegotiation support (session tickets) in initial handshake.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,899 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4453, uuid={E290CB99-A7B9-4ee1-AC49-29234D78A42C}, since=null, name=tlsSessionClosedRevCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the TLS session closure due to received revoked endpoint certificate.', htmlDescription='

Counts the TLS session closure due to received revoked endpoint certificate.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,899 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4459, uuid={854B3699-1B9D-4f64-B8B6-56CB2FD90FBB}, since=null, name=tlsNoTrCaMatchScCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: No support of peer signalled trusted CA counter.', htmlDescription='

TLSv1.3: No support of peer signalled trusted CA counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,899 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4450, uuid={8D2D94D8-3C6F-4bda-878C-F54D750FFD27}, since=null, name=tlsHsSuccessCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the TLS session successfully established.', htmlDescription='

Counts the TLS session successfully established.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,899 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4456, uuid={D19394DC-2DE1-403e-9C38-01EE35A0DDFD}, since=null, name=tlsNoReneg, alias=, stereotype=security, visibility=public, txtDescription='Number of times renegotiation interval is exceeded. TLSv1.2 peer does not renegotiate.', htmlDescription='

Number of times renegotiation interval is exceeded. TLSv1.2 peer does not renegotiate.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,900 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4452, uuid={B1BA2AF1-A523-4ca2-979A-38272AF41E2B}, since=null, name=tlsNoLocalCertCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times local endpoint certificate is not available.', htmlDescription='

Number of times local endpoint certificate is not available.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,900 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4447, uuid={3D255C0C-5B4C-4589-A304-5D6FAF7E69A2}, since=null, name=tlsWeakVersionCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times when deprecated TLS version proposed and support of TLS versions prior to TLSv1.2 enabled', htmlDescription='

Counts the times when deprecated TLS version proposed and support of TLS versions prior to TLSv1.2 enabled

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,900 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4449, uuid={4B8CCA5B-77FF-4b70-98D5-168DA947FE99}, since=null, name=tlsVersionChangeCnt, alias=, stereotype=security, visibility=public, txtDescription='Count the TLS version change (potential downgrade) in ongoing session detected.', htmlDescription='

Count the TLS version change (potential downgrade) in ongoing session detected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,900 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4446, uuid={C75A400F-5B38-4bc5-BE6A-48FB4977B686}, since=null, name=tlsDeprecatedVersionCnT, alias=, stereotype=security, visibility=public, txtDescription='Counts the times when a deprecated TLS version is proposed and support of TLS versions prior to TLSv1.2 is disabled.', htmlDescription='

Counts the times when a deprecated TLS version is proposed and support of TLS versions prior to TLSv1.2 is disabled.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,900 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4451, uuid={ACB5D4CD-DBF9-4e86-892D-469DB0082C7E}, since=null, name=tlsNoPeerCertCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times peer did not provide endpoint certificate during the TLS handshake.', htmlDescription='

Number of times peer did not provide endpoint certificate during the TLS handshake.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,900 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4448, uuid={A02762E7-1235-453b-8BB2-6D4E8F705EA1}, since=null, name=tlsDisallowedVersionCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times when disallowed TLS version (prior to TLSv1.0) proposed', htmlDescription='

Counts the times when disallowed TLS version (prior to TLSv1.0) proposed

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,900 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4488, uuid={851472EB-C0E1-4464-B067-F650659846CF}, since=null, name=SessionId, alias=, stereotype=index, visibility=public, txtDescription='Id of the TLS session.', htmlDescription='

Id of the TLS session.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 2_taggedValues{mibindex=yes, Version=1}]. +2024-09-07 16:17:46,900 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4489, uuid={B226702B-AC3E-4f8c-BF07-E3347944EA3A}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,900 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4490, uuid={69D938D2-D561-48eb-8BCF-FA2CFA350C07}, since=null, name=LocAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Local address.', htmlDescription='

Local address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,900 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4491, uuid={6C3E2D7A-F0C0-424b-A05C-4A96E29F65E7}, since=null, name=LocAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Local address type.', htmlDescription='

Local address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,900 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4492, uuid={5C777986-F9FD-4fbf-AAFB-2E087F0B21F7}, since=null, name=RemAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address.', htmlDescription='

Remote address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,900 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4493, uuid={7AB71D12-EB91-421a-B172-48B97B758080}, since=null, name=RemAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address type.', htmlDescription='

Remote address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,901 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4481, uuid={8E8A2B77-DF1B-4f33-B823-499F2C569AB8}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,901 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4482, uuid={CBC3AD5A-6EDA-4a33-95FA-37A565CEA2C1}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered (security or health).', htmlDescription='

Provides the last known event encountered (security or health).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,901 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4483, uuid={4669B65B-F448-43b1-9BB7-DD9A5FEFA04B}, since=null, name=Server, alias=, stereotype=table, visibility=public, txtDescription='Client session (when applicable)', htmlDescription='

Client session (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=1077, _eaTypeName=ServerTLS, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@167c1fc, 2_taggedValues{MIBPrefix=tC, Version=1}]. +2024-09-07 16:17:46,901 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4484, uuid={C3E6C81C-3F3D-4c3b-BABC-8573CD333CF5}, since=null, name=Client, alias=, stereotype=table, visibility=public, txtDescription='Server session (when applicable)', htmlDescription='

Server session (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=1079, _eaTypeName=ClientTLS, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ee9faa, 2_taggedValues{MIBPrefix=tC, Version=1}]. +2024-09-07 16:17:46,901 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4485, uuid={36BE9868-D051-429a-8C15-ADEDE8C4F60A}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object', htmlDescription='

Security events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1078, _eaTypeName=IEC62351part3ed2SecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@38203, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,901 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification, _objData=UmlObjectData [id=4487, uuid={6943E7EC-3F67-43a9-90B0-9BCF7DB4D056}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Description of last event reported', htmlDescription='

Description of last event reported

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,901 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3991, uuid={E3FE31B6-2024-4e98-99E9-12CFAC8AEC6F}, since=null, name=AuthFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Count of the number of authorization failures.', htmlDescription='

Count of the number of authorization failures.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,901 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3992, uuid={F6B00869-D41C-44b6-B4FF-FA092ED078AE}, since=null, name=CtrlPrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of control actions attempted that did not have the correct privilege.', htmlDescription='

Number of control actions attempted that did not have the correct privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,901 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3993, uuid={2CBA5468-91CA-4cf0-BAC3-55AC2EC54FC8}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted.', htmlDescription='

Number PDUs received that could not be decrypted.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,901 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3405, uuid={66AB8F6D-0721-44fb-861C-C607A8498C6F}, since=null, name=ExT0Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T0 (connection establishment).', htmlDescription='

Count the expirations of the 104 time-out T0 (connection establishment).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,901 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3406, uuid={F62CF6E4-A1AF-476b-B35E-F4DE2A4E0591}, since=null, name=ExT1Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T1 (PDU).', htmlDescription='

Count the expirations of the 104 time-out T1 (PDU).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,902 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3407, uuid={8099C0E4-518A-434c-BF60-73BC878C2238}, since=null, name=ExT2Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T2 (ACK).', htmlDescription='

Count the expirations of the 104 time-out T2 (ACK).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,903 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3408, uuid={439C3366-994E-4fbc-A804-80CA3D745D68}, since=null, name=ExT3Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T3 (TEST).', htmlDescription='

Count the expirations of the 104 time-out T3 (TEST).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,903 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3124, uuid={B8936537-E883-4ab6-8A65-47CF971C5BB4}, since=null, name=InDisc, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDUs that were discarded.', htmlDescription='

Number of received PDUs that were discarded.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,903 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3994, uuid={9A232ABD-C751-45bb-8278-552FEB934C4E}, since=null, name=InErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of PDUs received that were in error.', htmlDescription='

Number of PDUs received that were in error.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,903 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3995, uuid={A4886E74-D4DE-4163-BBF4-BFB4DA9AA818}, since=null, name=InOvCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer overflows detected due to incoming communication.', htmlDescription='

Number of buffer overflows detected due to incoming communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,903 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3996, uuid={34EAD965-3EEE-42ae-9A33-371405C3B4A8}, since=null, name=InterPDUTime, alias=, stereotype=protocol, visibility=public, txtDescription='Time between two consecutives PDUs.', htmlDescription='

Time between two consecutives PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,903 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3997, uuid={E65434B6-333B-4677-9DB7-2689202D1C31}, since=null, name=MisPDUCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Provides an attribute that represents the count of missed PDU.', htmlDescription='

Provides an attribute that represents the count of missed PDU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,903 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3141, uuid={3DEDE5E8-C46A-4627-A2B8-FA7B2651B388}, since=null, name=OutErr, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmission errors.', htmlDescription='

Number of transmission errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,903 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3990, uuid={4B336F22-0DBB-425c-9CE9-8A2B3968C18C}, since=null, name=OutUv, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer underflows detected due to outgoing serial communication.', htmlDescription='

Number of buffer underflows detected due to outgoing serial communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,903 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3998, uuid={56C57887-C03F-430b-A3CC-47993296C81A}, since=null, name=PDURTT, alias=, stereotype=protocol, visibility=public, txtDescription='PDU round trip time.', htmlDescription='

PDU round trip time.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,903 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3999, uuid={F9A50D40-7721-4f2f-B450-70B42C8159B7}, since=null, name=PDUSizeFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDU with wrong size.', htmlDescription='

Number of received PDU with wrong size.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,903 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4000, uuid={C3639D7C-0EF8-4ffb-912C-24F7FA06CBA6}, since=null, name=PduTampCnt, alias=, stereotype=security, visibility=public, txtDescription='Provides an attribute that indicates the count of the number of PDUs that have been detected to be tampered with.', htmlDescription='

Provides an attribute that indicates the count of the number of PDUs that have been detected to be tampered with.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,903 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4001, uuid={AD2C395F-15DF-4e49-A4EF-1C8758015811}, since=null, name=PrimaryInterface, alias=, stereotype=protocol, visibility=public, txtDescription='True if the Protocol is running on primary interface (false when backup interface is in use).', htmlDescription='

True if the Protocol is running on primary interface (false when backup interface is in use).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,903 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4002, uuid={15035EBB-A53C-4c7d-BEA7-D6AF668B9A81}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,904 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3403, uuid={D5E66B05-319E-467b-9B20-4D0021DE5B43}, since=null, name=RtxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the number of retransmissions.', htmlDescription='

Count the number of retransmissions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,904 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3123, uuid={5F22267E-6104-41c7-A2B6-BBFFCE828B94}, since=null, name=RxCritical, alias=, stereotype=protocol, visibility=public, txtDescription='Number of critical requests received (according to IEC 62351-5).', htmlDescription='

Number of critical requests received (according to IEC 62351-5).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,904 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4003, uuid={37C50A09-5C52-4612-ACD2-3CA5076E832A}, since=null, name=RxPdu, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDUs (including in error PDUs).', htmlDescription='

Number of received PDUs (including in error PDUs).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,904 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3135, uuid={51629B5F-2B79-4aa4-A704-E8D4D467D6E2}, since=null, name=RxSolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Number of solicited requests received. Only for DNP.', htmlDescription='

Number of solicited requests received. Only for DNP.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,904 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3145, uuid={546FFA93-9BFB-40fc-8F59-570F9FA50834}, since=null, name=RxUnsolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Contains the count of number of unsolicited requests that have been transmitted since the last reset.', htmlDescription='

Contains the count of number of unsolicited requests that have been transmitted since the last reset.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,904 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4004, uuid={219E7530-12EB-4a52-AE1A-536554F0ED28}, since=null, name=SessKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of session key negotiations that failed.', htmlDescription='

Number of session key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,904 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3122, uuid={9760193C-146A-427a-88DE-4FA2BBC2EA9E}, since=null, name=TxCritical, alias=, stereotype=protocol, visibility=public, txtDescription='Number of critical requests transmitted (according to IEC 62351-5)', htmlDescription='

Number of critical requests transmitted (according to IEC 62351-5)

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,904 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4005, uuid={984B7498-8B61-45e0-BE19-6E17EA80D9D0}, since=null, name=TxPdu, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmitted PDUs.', htmlDescription='

Number of transmitted PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,904 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3120, uuid={7F13ABEF-5E7A-4fc2-BE27-AB2E70B1B97A}, since=null, name=TxSolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Number of solicited requests transmitted. Only for DNP.', htmlDescription='

Number of solicited requests transmitted. Only for DNP.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,904 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3121, uuid={76A62C46-9C78-48ff-9770-F2A7BE837E1F}, since=null, name=TxUnsolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Contains the count of number of unsolicited requests that have been transmitted since the last reset.', htmlDescription='

Contains the count of number of unsolicited requests that have been transmitted since the last reset.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,904 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4006, uuid={2AAAEC13-D4BB-4d2a-8461-00DBAE43010B}, since=null, name=UpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations that failed.', htmlDescription='

Number of update key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,904 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=3726, uuid={361DD26C-8F48-46fd-BCE9-B6A3787F5FA6}, since=null, name=AssociationId, alias=, stereotype=index, visibility=public, txtDescription='Id of the association.', htmlDescription='

Id of the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,904 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=3241, uuid={87C4526C-4B22-42d3-BFDD-0EBE86166CDA}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,904 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2417, uuid={FF67FCFB-43B0-4a5a-8A33-52E57E2A1E33}, since=null, name=LocAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Local address.', htmlDescription='

Local address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 16:17:46,904 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=3715, uuid={857943C5-1917-46b9-BAA2-F6DBBE305DDA}, since=null, name=LocAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Local address type.', htmlDescription='

Local address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 16:17:46,904 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2413, uuid={218B44A4-22AA-4a3a-B54C-BC3742A6A951}, since=null, name=ProtID, alias=, stereotype=protocol, visibility=public, txtDescription='Protocol ID in use.', htmlDescription='

Protocol ID in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=780, _eaTypeName=ProtIdType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1c7cbad, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,904 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2412, uuid={2DCFE840-6DFB-49ca-9D60-6F00BBFE9375}, since=null, name=ProviderDesc, alias=, stereotype=identity, visibility=public, txtDescription='Textual description of the provider that is in use.', htmlDescription='

Textual description of the provider that is in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,904 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2411, uuid={739910E5-2234-4d7f-BF07-E2FAC9061548}, since=null, name=ProviderName, alias=, stereotype=identity, visibility=public, txtDescription='Identity of the provider responding as the outstation for this association.', htmlDescription='

Identity of the provider responding as the outstation for this association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,905 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2416, uuid={F1041BDF-E1EE-44c3-B346-5643EFA0E8C7}, since=null, name=RemAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address.', htmlDescription='

Remote address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 3_taggedValues{isIndex=yes, mibIndex=yes, Version=0}]. +2024-09-07 16:17:46,905 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=3714, uuid={25C69ED7-7E01-4316-B15C-28D99CC5FC94}, since=null, name=RemAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address type.', htmlDescription='

Remote address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 3_taggedValues{isIndex=yes, mibIndex=yes, Version=0}]. +2024-09-07 16:17:46,905 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2410, uuid={4F98C052-71F6-44e6-A31C-2A148D61DF91}, since=null, name=TLnkErrCnt, alias=, stereotype=health, visibility=public, txtDescription='Count of communication link errors detected.', htmlDescription='

Count of communication link errors detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,905 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2415, uuid={FED824F2-3E50-44cd-A78C-B816071534FB}, since=null, name=TLnkTyp, alias=, stereotype=protocol, visibility=public, txtDescription='Type of transport being utilized.', htmlDescription='

Type of transport being utilized.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=778, _eaTypeName=LnkType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2cbe0, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,905 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=3248, uuid={37A47CAE-5E15-4947-9824-88474381CEB3}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,905 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=3708, uuid={33EEE0D1-CEBA-4f55-8388-E92B798B5827}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered (security or health).', htmlDescription='

Provides the last known event encountered (security or health).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,905 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=2278, uuid={D8685894-627E-4b6f-B670-3C72CC90DF6B}, since=null, name=Master, alias=, stereotype=table, visibility=public, txtDescription='Client association (when applicable)', htmlDescription='

Client association (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=820, _eaTypeName=MasterAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@be83e4, 2_taggedValues{MIBPrefix=tC, Version=0}]. +2024-09-07 16:17:46,905 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=2287, uuid={364CBB2E-460C-46ce-AC40-149F1C18EAC8}, since=null, name=Outstation, alias=, stereotype=table, visibility=public, txtDescription='Server association (when applicable)', htmlDescription='

Server association (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=821, _eaTypeName=OutstationAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@cb5822, 2_taggedValues{MIBPrefix=tC, Version=0}]. +2024-09-07 16:17:46,905 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=3609, uuid={86E71A83-DD23-44dd-AF05-2C4883970DBA}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object', htmlDescription='

Security events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=914, _eaTypeName=60870andDNPSecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@19e13df, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,905 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=3608, uuid={E3191E3F-E629-4bfd-A8E1-64D78A2B9955}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object', htmlDescription='

State events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=915, _eaTypeName=60870andDNPNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@198378d, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,905 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3519, uuid={8EC7A2E6-FA1E-44bf-871A-8E7A12508F3F}, since=null, name=AuthFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Count of the number of authorization failures.', htmlDescription='

Count of the number of authorization failures.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,905 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3518, uuid={F5BEAE2F-4536-4f9c-9478-CF23E2A2D7C5}, since=null, name=CtrlPrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of control actions attempted that did not have the correct privilege.', htmlDescription='

Number of control actions attempted that did not have the correct privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,905 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3522, uuid={9ABAB39B-C8D2-427c-805D-DD74A37B15BD}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted.', htmlDescription='

Number PDUs received that could not be decrypted.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,905 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=4043, uuid={1BC26E95-9659-4250-87C9-365D73AD44BE}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered (security or health).', htmlDescription='

Provides the last known event encountered (security or health).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,905 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3520, uuid={2018A0E6-F948-40c3-98F5-CC50CFBD7527}, since=null, name=PduTampCnt, alias=, stereotype=security, visibility=public, txtDescription='Provides an attribute that indicates the count of the number of PDUs that have been detected to be tampered with.', htmlDescription='

Provides an attribute that indicates the count of the number of PDUs that have been detected to be tampered with.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,905 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3521, uuid={F0F1CF0B-1E15-4c19-ACB3-B4C1D745383F}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,906 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3523, uuid={22ADAAB8-8A4A-49c6-A261-6FC1E02DFEDB}, since=null, name=SessKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of session key negotiations that failed.', htmlDescription='

Number of session key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,906 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3524, uuid={A9AFB691-7A96-43a3-9FDB-B197827A4D8C}, since=null, name=UpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations that failed.', htmlDescription='

Number of update key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,906 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3526, uuid={6936B8C9-BCD0-46a8-B2A7-4423628A89F6}, since=null, name=InErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of PDUs received that were in error.', htmlDescription='

Number of PDUs received that were in error.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,906 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3528, uuid={97175DF9-326B-40f7-B626-D213159A0A56}, since=null, name=InOvCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer overflows detected due to incoming communication.', htmlDescription='

Number of buffer overflows detected due to incoming communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,906 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3529, uuid={47916BBB-21C9-49df-8C8B-3A9375A29441}, since=null, name=OutUv, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer underflows detected due to outgoing serial communication.', htmlDescription='

Number of buffer underflows detected due to outgoing serial communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,906 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3527, uuid={0C1DB352-F31C-4520-B8BB-43E3CB924F8D}, since=null, name=RxPdu, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDUs.', htmlDescription='

Number of received PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,906 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3525, uuid={B77A1C29-3430-40df-AC7F-D1ACC9E6C035}, since=null, name=TxPdu, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmitted PDUs.', htmlDescription='

Number of transmitted PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,906 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4257, uuid={0C0A0A2C-20C0-4ca9-9856-507B3CF40B66}, since=null, name=ExT0Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T0 (connection establishment).', htmlDescription='

Count the expirations of the 104 time-out T0 (connection establishment).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,906 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4258, uuid={C6845E20-7B2D-4978-A35B-D43715366935}, since=null, name=ExT1Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T1 (PDU).', htmlDescription='

Count the expirations of the 104 time-out T1 (PDU).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,906 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4259, uuid={15711ABC-5E51-4c9e-95EB-71E116D1CBC1}, since=null, name=ExT2Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T2 (ACK).', htmlDescription='

Count the expirations of the 104 time-out T2 (ACK).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,906 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4260, uuid={7A191FB8-98E6-4847-930B-90CB4FC6E61E}, since=null, name=ExT3Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T3 (TEST).', htmlDescription='

Count the expirations of the 104 time-out T3 (TEST).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,906 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4261, uuid={81B43739-99E7-46b8-BB5A-340970E92A28}, since=null, name=DiscPduCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of discarded messages.', htmlDescription='

Number of discarded messages.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,906 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4262, uuid={8165A5DE-3828-4785-9068-BB9EBEA44FF2}, since=null, name=InErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of PDUs received that were in error.', htmlDescription='

Number of PDUs received that were in error.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,906 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4263, uuid={D90D5B9D-8B9D-454d-83A9-E6715E4783C6}, since=null, name=InOvCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer overflows detected due to incoming communication.', htmlDescription='

Number of buffer overflows detected due to incoming communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,907 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4264, uuid={E8C8E34D-3689-46e8-B001-9DE7609677AC}, since=null, name=InterPDUTime, alias=, stereotype=protocol, visibility=public, txtDescription='Time between two consecutives PDUs.', htmlDescription='

Time between two consecutives PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,907 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4265, uuid={49E9D387-25A4-46e7-8CEB-9C75979FB7AF}, since=null, name=MisPDUCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Provides an attribute that represents the count of missed PDU.', htmlDescription='

Provides an attribute that represents the count of missed PDU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,907 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4266, uuid={8845E947-C91C-4a04-B4FE-3AEDC1029732}, since=null, name=OutErr, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmission errors.', htmlDescription='

Number of transmission errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,907 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4267, uuid={CCD6A7C5-F0B4-4402-AE88-B35035615DC3}, since=null, name=OutUv, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer underflows detected due to outgoing serial communication.', htmlDescription='

Number of buffer underflows detected due to outgoing serial communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,907 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4269, uuid={378D6C1B-B55C-457c-BD03-A017415E19C4}, since=null, name=PDUSizeFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDU with wrong size.', htmlDescription='

Number of received PDU with wrong size.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,907 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4273, uuid={8E51A58B-0043-4528-B1BC-BC2B4CC4E59C}, since=null, name=RtxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the number of retransmissions.', htmlDescription='

Count the number of retransmissions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,908 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4275, uuid={9768D1CC-F452-448b-B8DF-26922CB00ED7}, since=null, name=RxPduCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDUs (including PDUs with errors).', htmlDescription='

Number of received PDUs (including PDUs with errors).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,908 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4276, uuid={00CBF4DB-7CDE-4393-BCCF-90A5601FF89C}, since=null, name=RxSolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Number of solicited requests received. Only for DNP.', htmlDescription='

Number of solicited requests received. Only for DNP.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,908 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4277, uuid={A480B5CE-C799-40b2-9A6C-05A2B643932E}, since=null, name=RxUnsolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Contains the count of number of unsolicited requests that have been transmitted since the last reset.', htmlDescription='

Contains the count of number of unsolicited requests that have been transmitted since the last reset.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,908 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4280, uuid={7A2A5BFA-FCB8-44a4-A4CF-442CC8A9FB0E}, since=null, name=TxPduCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmitted PDUs.', htmlDescription='

Number of transmitted PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,908 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4281, uuid={BF7B41CE-7B62-4a5f-A9F6-D1E8A5A4952E}, since=null, name=TxSolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Number of solicited requests transmitted. Only for DNP.', htmlDescription='

Number of solicited requests transmitted. Only for DNP.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,908 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4282, uuid={BB6FDD4B-6837-4d88-B268-0D09301311FD}, since=null, name=TxUnsolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Contains the count of number of unsolicited requests that have been transmitted since the last reset.', htmlDescription='

Contains the count of number of unsolicited requests that have been transmitted since the last reset.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,908 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4306, uuid={85A6FA13-2677-4c99-BC12-DD878801CFC4}, since=null, name=StAsProcScsCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Station Association procedure has been successfully performed.', htmlDescription='

Number of times the Station Association procedure has been successfully performed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,908 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4307, uuid={F82373BD-CE1D-4a57-B13C-413810F179B0}, since=null, name=StAsProcFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Station Association procedure has failed.', htmlDescription='

Number of times the Station Association procedure has failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,908 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4308, uuid={69BDB5BC-DE98-4195-8110-202AD93E7AFC}, since=null, name=SKeyProcScsCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Session Key was changed successfully.', htmlDescription='

Number of times the Session Key was changed successfully.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,908 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4336, uuid={8BE551FF-4A0A-45b6-A0A0-D051150BF74D}, since=null, name=KeyAutnAlgSupFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Data authentication algorithm support failures. Controlled station only.', htmlDescription='

Number of Data authentication algorithm support failures. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,909 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4337, uuid={60FED222-F3AD-4f4c-A733-DE4950C990C2}, since=null, name=SKeyWrapAlgSupFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of key wrap algorithm support failures. Controlled station only.', htmlDescription='

Number of key wrap algorithm support failures. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,909 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4338, uuid={C2B0C0DF-C9DD-4aef-932E-B016DA2E6276}, since=null, name=DataProtAlgSupFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Data authentication algorithm support failures. Controlled station only.', htmlDescription='

Number of Data authentication algorithm support failures. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,909 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4339, uuid={55BE76A2-DF93-45de-9D84-4EE282ACC41B}, since=null, name=SKeyAutnErrCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Key authentication errors.', htmlDescription='

Number of Key authentication errors.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,910 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4340, uuid={97FE21BE-F20E-4b5f-9E7C-62B9BF57A4C7}, since=null, name=DataAutnErrCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of non-authentic Secure Data messages received.', htmlDescription='

Number of non-authentic Secure Data messages received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,910 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4341, uuid={303256CB-76CD-4b39-8D6B-6B5F7E4718DC}, since=null, name=UnxpMsgErrCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of unexpected messages received.', htmlDescription='

Number of unexpected messages received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,910 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4342, uuid={7B618961-D677-4bf9-83FB-40700B9BA9CC}, since=null, name=MaxReplyToutCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Max Reply Timeouts threshold was reached. Controlling station only.', htmlDescription='

Number of times the Max Reply Timeouts threshold was reached. Controlling station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,910 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4343, uuid={D8D3268F-F4C4-49d7-AB23-7946C1CEA6D1}, since=null, name=NodeAutrFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of unauthorized communication attempts.', htmlDescription='

Number of unauthorized communication attempts.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,910 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4344, uuid={23FA293A-4F87-4c7c-B4E2-6B3955B5ED61}, since=null, name=CtrlOperAutrFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of unauthorized operations. Controlled station only.', htmlDescription='

Number of unauthorized operations. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,910 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4345, uuid={6193E983-C056-491a-B7A3-EBE58355374C}, since=null, name=RemCertCheckFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of invalid certificates received.', htmlDescription='

Number of invalid certificates received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,910 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4346, uuid={46BA0F58-A6A4-4d23-9157-B07A5643B284}, since=null, name=RemCertExpiredCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the remote station's certificate expired.', htmlDescription='

Number of times the remote station's certificate expired.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,910 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4347, uuid={C54FF7FA-520C-4d4f-A4A1-B7E88C041568}, since=null, name=RemCertRevokedCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the remote station's certificate has been revoked.', htmlDescription='

Number of times the remote station's certificate has been revoked.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,910 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4348, uuid={95955856-F76D-4e05-B055-4FF8029E1A9D}, since=null, name=LocCertExpiredCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the local station's certificate expired.', htmlDescription='

Number of times the local station's certificate expired.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,910 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4349, uuid={DE7B5995-13C2-44c8-8579-6CEF37D201AF}, since=null, name=LocCertRevokedCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the local station's certificate has been revoked.', htmlDescription='

Number of times the local station's certificate has been revoked.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,910 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4350, uuid={2223C6EC-FBAE-4b91-8FF2-4407C5DFFF36}, since=null, name=KeysInvRemCertRevCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Cryptographic Keys were invalidated due to remote station's certificate revocation.', htmlDescription='

Number of times the Cryptographic Keys were invalidated due to remote station's certificate revocation.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,910 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4351, uuid={5DCACFEC-13BF-47c0-88D7-950B26D9DBBB}, since=null, name=KeysInvLocCertRevCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Cryptographic Keys were invalidated due to local station's certificate revocation.', htmlDescription='

Number of times the Cryptographic Keys were invalidated due to local station's certificate revocation.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,910 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4352, uuid={4A474D59-99BF-495e-BB9D-C3E096F5F83B}, since=null, name=DataAutnScsCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of authentic Secure Data messages received.', htmlDescription='

Number of authentic Secure Data messages received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,910 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4353, uuid={7F7D3F88-910D-4dae-B5B1-DED2E46A51C7}, since=null, name=ReplyToutCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Reply Timeouts. Controlling station only.', htmlDescription='

Number of Reply Timeouts. Controlling station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,910 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4354, uuid={E6FD44A6-C9CE-45d6-BA4A-3EF7DECB1691}, since=null, name=RequestToutCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Request Timeouts. Controlled station only.', htmlDescription='

Number of Request Timeouts. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,910 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4355, uuid={65E3DDC2-B3AC-4c86-8AF6-39C43114EC3C}, since=null, name=SKeyInvUseCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Session Key was invalidated due to Max Session Key Usage Count. Controlled station only.', htmlDescription='

Number of times the Session Key was invalidated due to Max Session Key Usage Count. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,910 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4356, uuid={3C26B695-A1A0-44c3-BE08-C75CA78940DA}, since=null, name=SKeyInvToutCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Session Keys were invalidated due to Max Session Key Usage Timeout. Controlled station only.', htmlDescription='

Number of times the Session Keys were invalidated due to Max Session Key Usage Timeout. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,911 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4357, uuid={B3A60D84-37C0-40f2-9019-17B8C45C778E}, since=null, name=SKeyProcFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Session Key Change failures.', htmlDescription='

Number of Session Key Change failures.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,911 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4335, uuid={90633EE5-94E7-44d3-B98C-08140BCBFCF1}, since=null, name=ProtInfoErrCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of protocol information errors. Controlled station only.', htmlDescription='

Number of protocol information errors. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,911 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4284, uuid={D3B5EC3D-3991-40b8-85B6-2AFB3206637A}, since=null, name=AssociationId, alias=, stereotype=index, visibility=public, txtDescription='Id of the association.', htmlDescription='

Id of the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,911 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4285, uuid={DB5A65D6-2349-4a56-A200-129882572A95}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,911 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4286, uuid={FABF76A8-43C1-4be2-89C5-4C3B7F18604B}, since=null, name=LocAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Local address.', htmlDescription='

Local address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 16:17:46,911 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4287, uuid={F933B36B-EE52-4922-9AA4-F0CB5A55F9CE}, since=null, name=LocAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Local address type.', htmlDescription='

Local address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 16:17:46,911 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4288, uuid={4EDE24F7-C4DB-4078-926A-3518CCBB1D8F}, since=null, name=ProtID, alias=, stereotype=protocol, visibility=public, txtDescription='Protocol ID in use.', htmlDescription='

Protocol ID in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=780, _eaTypeName=ProtIdType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1c7cbad, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,911 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4289, uuid={8CE59398-E353-464a-9B25-03588802C32E}, since=null, name=ProviderDesc, alias=, stereotype=identity, visibility=public, txtDescription='Textual description of the provider that is in use.', htmlDescription='

Textual description of the provider that is in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,911 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4290, uuid={BD1C65C9-07DF-4192-8713-A93BC3E1C050}, since=null, name=ProviderName, alias=, stereotype=identity, visibility=public, txtDescription='Identity of the provider responding as the outstation for this association.', htmlDescription='

Identity of the provider responding as the outstation for this association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,911 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4291, uuid={BEB1F3A7-96E9-4a7f-B4CE-78A311245A60}, since=null, name=RemAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address.', htmlDescription='

Remote address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 3_taggedValues{isIndex=yes, mibIndex=yes, Version=0}]. +2024-09-07 16:17:46,911 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4292, uuid={59810D47-4220-40e1-A018-FE80613740BC}, since=null, name=RemAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address type.', htmlDescription='

Remote address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 3_taggedValues{isIndex=yes, mibIndex=yes, Version=0}]. +2024-09-07 16:17:46,911 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4293, uuid={9AE7823D-F26B-48f8-A955-DA056C8C0F32}, since=null, name=TLnkErrCnt, alias=, stereotype=health, visibility=public, txtDescription='Count of communication link errors detected.', htmlDescription='

Count of communication link errors detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,911 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4294, uuid={FFAF85C1-58F9-4330-80FE-18A5100B3EE7}, since=null, name=TLnkTyp, alias=, stereotype=protocol, visibility=public, txtDescription='Type of transport being utilized.', htmlDescription='

Type of transport being utilized.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=778, _eaTypeName=LnkType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2cbe0, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,911 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4295, uuid={E543F5FE-D414-4517-9CFA-17AF02358984}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,911 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4296, uuid={A601B46C-5CB2-4663-BBDD-6B075EA07FE8}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered (security or health).', htmlDescription='

Provides the last known event encountered (security or health).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,911 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4297, uuid={DD17EC1E-C1D2-444e-BC3B-65A68EB1768E}, since=null, name=Master, alias=, stereotype=table, visibility=public, txtDescription='Client association (when applicable)', htmlDescription='

Client association (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=1057, _eaTypeName=MasterAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@4edc67, 2_taggedValues{MIBPrefix=tC, Version=0}]. +2024-09-07 16:17:46,911 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4298, uuid={927B1068-7146-4ea9-B50A-FD00B14D1747}, since=null, name=Outstation, alias=, stereotype=table, visibility=public, txtDescription='Server association (when applicable)', htmlDescription='

Server association (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=1056, _eaTypeName=OutstationAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@acaea5, 2_taggedValues{MIBPrefix=tC, Version=0}]. +2024-09-07 16:17:46,911 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4299, uuid={E4361517-7300-4db5-A392-69EAD372A4E2}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object', htmlDescription='

Security events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1055, _eaTypeName=60870andDNPSecurityNotificationEd2, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d56d67, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,912 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4300, uuid={240DF754-7E5E-4226-B4F4-F1DDBE6652EB}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object', htmlDescription='

State events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1061, _eaTypeName=60870andDNPNotificationEd2, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@18355a8, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,912 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2, _objData=UmlObjectData [id=4358, uuid={6AA445FA-BC7C-4384-8725-306C37B37564}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,912 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2, _objData=UmlObjectData [id=4360, uuid={60B53F7E-A6F1-449b-8917-E860F3F35ECB}, since=null, name=LastEvent, alias=, stereotype=protocol, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,912 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1254, uuid={60676AFB-06AF-480c-86DC-DDF92723390B}, since=null, name=assocPoolMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number of client/server associations.', htmlDescription='

Maximum number of client/server associations.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,912 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1255, uuid={B21687C2-9C22-4c8f-A435-15A69F7147D6}, since=null, name=assocPoolUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of client/server associations active.', htmlDescription='

Number of client/server associations active.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,912 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1278, uuid={6CA26B83-F728-4e94-9E7E-89E5998C3308}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,912 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=3931, uuid={75069142-E376-4865-9020-9924B1C82527}, since=null, name=CtrlPrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of control actions attempted that did not have the correct privilege.', htmlDescription='

Number of control actions attempted that did not have the correct privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,912 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1262, uuid={44D0F3A5-606C-4650-ABCB-FE16EEE777E3}, since=null, name=gsePubMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number GSE Publications supported.', htmlDescription='

Maximum number GSE Publications supported.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,912 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=2263, uuid={1C2B216E-5A48-41c9-8A95-E49BCC60C316}, since=null, name=gsePubUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of active GSE Publications.', htmlDescription='

Number of active GSE Publications.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,912 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1264, uuid={B2FDE11B-6BA3-4051-B3BD-15152FB16FED}, since=null, name=gseSubMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number of GSE Subscriptions.', htmlDescription='

Maximum number of GSE Subscriptions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,912 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1263, uuid={1842AD96-E339-455f-9BC0-7F98C8F31CEC}, since=null, name=gseSubUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of active GSE Subscriptions.', htmlDescription='

Number of active GSE Subscriptions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,912 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=3709, uuid={014B3324-A84F-455f-957B-1420E50D5C59}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,912 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=3930, uuid={F5A04750-F784-4c0c-AB12-2298DE62BB99}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,912 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1271, uuid={A10D2F0C-3A4C-4aa4-B832-655CEBF8F43C}, since=null, name=RemoteEstAssocCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count of the number of currently active associations that were established through the ACSI associate response.', htmlDescription='

Count of the number of currently active associations that were established through the ACSI associate response.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,913 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=3932, uuid={7EF57F32-F44A-4126-9201-8EFAD41F12D4}, since=null, name=AcsCtlFail, alias=, stereotype=security, visibility=public, txtDescription='Number of access control failures detected (i.e., when a data object that the client wanted to access exists in the server, but based on the access view of the association with that client, an access to the data object was refused).', htmlDescription='

Number of access control failures detected (i.e., when a data object that the client wanted to access exists in the server, but based on the access view of the association with that client, an access to the data object was refused).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,913 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1282, uuid={2E06924F-F7EB-44a7-A1D2-2428322A0892}, since=null, name=svPubMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number SV publications supported.', htmlDescription='

Maximum number SV publications supported.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,913 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1281, uuid={D6CCDFE9-6558-4cd0-B508-8BA15852D950}, since=null, name=svPubUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of active SV publications.', htmlDescription='

Number of active SV publications.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,913 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1284, uuid={769A7A31-DA16-43a0-A340-14FF723B8636}, since=null, name=svSubMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number SV subscriptions supported.', htmlDescription='

Maximum number SV subscriptions supported.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,913 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1283, uuid={40270792-85F3-4361-850B-A5F29E1B75C0}, since=null, name=svSubUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of active SV subscriptions.', htmlDescription='

Number of active SV subscriptions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,913 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=4122, uuid={B070617B-7900-42b1-8DA7-F591BA2099FA}, since=null, name=ErrorRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of error PDU that have been received including: +- Confirmed-ErrorPDU (only for client) +- Cancel-ErrorPDU (only for client) +- Initiate-ErrorPDU +- Conclude-ErrorPDU.', htmlDescription='

Number of error PDU that have been received including:

  • Confirmed-ErrorPDU (only for client)
  • Cancel-ErrorPDU (only for client)
  • Initiate-ErrorPDU
  • Conclude-ErrorPDU.
'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,913 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=4123, uuid={650B0D6F-9766-4bae-9182-5EC830CB64E3}, since=null, name=ErrorTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of error PDU that have been sent including: +- Confirmed-ErrorPDU (only for server) +- Cancel-ErrorPDU (only for server) +- Initiate-ErrorPDU +- Conclude-ErrorPDU.', htmlDescription='

Number of error PDU that have been sent including:

  • Confirmed-ErrorPDU (only for server)
  • Cancel-ErrorPDU (only for server)
  • Initiate-ErrorPDU
  • Conclude-ErrorPDU.
'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,913 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3214, uuid={30ED064F-399A-4e3a-97D2-D106F082CF4F}, since=null, name=InfoRptRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of MMS Information Reports that have been received.', htmlDescription='

Number of MMS Information Reports that have been received.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,913 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=4120, uuid={CEC51410-D5D9-4150-B1C4-AA691F453D23}, since=null, name=InfoRptTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of MMS Information Reports that have been sent.', htmlDescription='

Number of MMS Information Reports that have been sent.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,913 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3969, uuid={94722C63-A68B-4460-A0BA-93F19272E206}, since=null, name=MisCmdAckCnt, alias=, stereotype=security, visibility=public, txtDescription='Provides an attribute that indicates the count of the number of MMS request that have not been acknowledged.', htmlDescription='

Provides an attribute that indicates the count of the number of MMS request that have not been acknowledged.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,913 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3414, uuid={8F4B6AF1-5A4A-47a1-A365-8963A1FAE78F}, since=null, name=MMSProExchTime, alias=, stereotype=performance, visibility=public, txtDescription='MMS Profile exchange duration (seconds). MMS profile is meant as Logical Devices, Logical Nodes and Dataset definition are exchanged.', htmlDescription='

MMS Profile exchange duration (seconds). MMS profile is meant as Logical Devices, Logical Nodes and Dataset definition are exchanged.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,913 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3211, uuid={6C0EA55B-1ACA-4a3a-9068-E9C2CEC96B9D}, since=null, name=RejectRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of RejectPDU received.', htmlDescription='

Number of RejectPDU received.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,914 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3212, uuid={C8554D1E-C163-4286-96BB-E26046672513}, since=null, name=RejectTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of RejectPDU sent.', htmlDescription='

Number of RejectPDU sent.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,914 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3208, uuid={C94BBBC3-1104-42b0-B156-E80FE61CBDB8}, since=null, name=ReqRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of request PDU that have been received including: +- Confirmed-RequestPDU (only for server) +- Cancel-RequestPDU (only for server) +- Initiate-RequestPDU +- Conclude-RequestPDU.', htmlDescription='

Number of request PDU that have been received including:

  • Confirmed-RequestPDU (only for server)
  • Cancel-RequestPDU (only for server)
  • Initiate-RequestPDU
  • Conclude-RequestPDU.
'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,914 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3206, uuid={023D9D84-38BC-4c86-B9CC-78085AC2F869}, since=null, name=ReqTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of request PDU that have been sent including: +- Confirmed-RequestPDU (only for client) +- Cancel-RequestPDU (only for client) +- Initiate-RequestPDU +- Conclude-RequestPDU.', htmlDescription='

Number of request PDU that have been sent including:

  • Confirmed-RequestPDU (only for client)
  • Cancel-RequestPDU (only for client)
  • Initiate-RequestPDU
  • Conclude-RequestPDU.
'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,914 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3210, uuid={B07FEDC7-72A1-43b4-9CA9-AEDC8CE77EAF}, since=null, name=RespRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of response PDU that have been received including: +- Confirmed-ResponsePDU (only for client) +- Cancel-ResponsePDU (only for client) +- Initiate-ResponsePDU +- Conclude-ResponsePDU +.', htmlDescription='

Number of response PDU that have been received including:

  • Confirmed-ResponsePDU (only for client)
  • Cancel-ResponsePDU (only for client)
  • Initiate-ResponsePDU
  • Conclude-ResponsePDU

.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,914 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3209, uuid={06689B60-CBF2-4d45-8B5A-FB998997F62F}, since=null, name=RespTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of response PDU that have been sent including: +- Confirmed-ResponsePDU (only for server) +- Cancel-ResponsePDU (only for server) +- Initiate-ResponsePDU +- Conclude-ResponsePDU..', htmlDescription='

Number of response PDU that have been sent including:

  • Confirmed-ResponsePDU (only for server)
  • Cancel-ResponsePDU (only for server)
  • Initiate-ResponsePDU
  • Conclude-ResponsePDU..
'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,914 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3935, uuid={1F695097-A4ED-4e85-94FE-44B50CFE99F1}, since=null, name=SessKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of session key negotiations that failed.', htmlDescription='

Number of session key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,914 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3918, uuid={7DB85E2A-0EB8-4226-BEBB-924AB496EB36}, since=null, name=AProfileDecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted within A-Profile session.', htmlDescription='

Number PDUs received that could not be decrypted within A-Profile session.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,914 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3938, uuid={A3E432FD-BDD0-4ccf-9233-0A226162B425}, since=null, name=AuthFail, alias=, stereotype=security, visibility=public, txtDescription='Count of the number of authorization failures.', htmlDescription='

Count of the number of authorization failures.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,914 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3245, uuid={D1866C6F-051F-404e-9A2B-AC1D6D44D3FC}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,914 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2831, uuid={2F166DD9-DE35-44b6-91DE-78EA3A9D0652}, since=null, name=ConnFailInCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of incoming Initiate-requests that have been refused.', htmlDescription='

Number of incoming Initiate-requests that have been refused.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,914 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2832, uuid={BA3D3302-5D14-40f7-9AA3-145CCB5F1361}, since=null, name=ConnFailOutCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of outgoing Initiate-requests that have been refused.', htmlDescription='

Number of outgoing Initiate-requests that have been refused.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,914 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3936, uuid={86BF3330-EB9C-4633-AB27-D7612CE8D05C}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted.', htmlDescription='

Number PDUs received that could not be decrypted.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,915 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3710, uuid={0163C656-8AA1-4c67-82E4-258002A53DDE}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,916 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2803, uuid={DEAB3F8B-E3E4-4664-B8B6-2D0C07019F7B}, since=null, name=MMS, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed MMS information can be obtained for each connection.', htmlDescription='

Provides a table through which more detailed MMS information can be obtained for each connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=693, _eaTypeName=MMSAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3884b2, 3_taggedValues{mibPrefix=mMS, objectIdentity=mMSMMSEntry, Version=0}]. +2024-09-07 16:17:46,916 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3915, uuid={294CE46B-D0B5-49f5-BF02-E0988430AD45}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,916 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2810, uuid={22C7C42F-8D14-493c-A2EA-CCD76245D0BE}, since=null, name=ProviderDesc, alias=, stereotype=identity, visibility=public, txtDescription='Description of provider.', htmlDescription='

Description of provider.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,916 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2811, uuid={D38418EB-A105-4a60-8D61-BB360D9237B5}, since=null, name=ProviderName, alias=, stereotype=identity, visibility=public, txtDescription='Name of the provider.', htmlDescription='

Name of the provider.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,916 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3614, uuid={A048CDB1-2C04-4ec3-B2B0-2F9ACEE80E4F}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=920, _eaTypeName=MMSSecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1275dab, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,916 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=4030, uuid={354E6408-AAF1-42b2-B717-205A592C81BE}, since=null, name=SessionEstablishmentRate, alias=, stereotype=performance, visibility=public, txtDescription='The number of times any Association has been restablished after a disconnection within 15 minutes.', htmlDescription='

The number of times any Association has been restablished after a disconnection within 15 minutes.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,916 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=4031, uuid={F68354BD-DA88-4aca-B25F-9C06F7BEFBB9}, since=null, name=SessionRestartCnt, alias=, stereotype=security, visibility=public, txtDescription='Provides an attribute that indicates the count of the number of times the session has been restablished.', htmlDescription='

Provides an attribute that indicates the count of the number of times the session has been restablished.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,916 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3613, uuid={0233C10F-B173-4f99-A4E9-A79E7500E3B0}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object.', htmlDescription='

State events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=921, _eaTypeName=MMSNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1832929, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,916 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3919, uuid={575C57A8-200D-4db3-B297-AE2635C01BC3}, since=null, name=TProfileDecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted within T-Profile session.', htmlDescription='

Number PDUs received that could not be decrypted within T-Profile session.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,916 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3921, uuid={D87795A0-A0B4-4126-9015-DBEBDD79CA50}, since=null, name=TProfileSessKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of session key negotiations that failed. This applies only to T-Profile.', htmlDescription='

Number of session key negotiations that failed. This applies only to T-Profile.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,916 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3975, uuid={5C2EA464-4FB4-4413-90B5-E3451373A966}, since=null, name=UpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations that failed.', htmlDescription='

Number of update key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,916 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2820, uuid={3D4B3729-146B-4ed2-976D-D539FFAAAE40}, since=null, name=Active, alias=, stereotype=protocol, visibility=public, txtDescription='True if association is in use.', htmlDescription='

True if association is in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,917 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3727, uuid={9E3D1B59-980F-4217-B141-1C353C1D4E72}, since=null, name=AssociationId, alias=, stereotype=index, visibility=public, txtDescription='Id of the association.', htmlDescription='

Id of the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,917 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=4119, uuid={8717A248-6228-4974-9285-1B96BBEDF420}, since=null, name=Client, alias=, stereotype=protocol, visibility=public, txtDescription='True if role is client, false if role is server', htmlDescription='

True if role is client, false if role is server

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@756e4d, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,917 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3246, uuid={2C472C21-D2BB-4a4b-8D93-5C0E3346AA95}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,917 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3939, uuid={EBEAECC3-8BE4-4469-B891-4898C2954EE5}, since=null, name=HndShTime, alias=, stereotype=performance, visibility=public, txtDescription='Duration of the MMS session handshake. This apply to the sender only.', htmlDescription='

Duration of the MMS session handshake. This apply to the sender only.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,917 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2844, uuid={C34BBC7F-ACC5-4172-B430-081B10B49819}, since=null, name=RemoteEstAssos, alias=, stereotype=protocol, visibility=public, txtDescription='True if the association was established due to an incoming Initiate-Request.', htmlDescription='

True if the association was established due to an incoming Initiate-Request.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@756e4d, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,917 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2876, uuid={BF20C38C-E4DE-439e-A7C3-2D9FCB7CA1C2}, since=null, name=RemoteIP, alias=, stereotype=protocol, visibility=public, txtDescription='Remote entity IP network address.', htmlDescription='

Remote entity IP network address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 16:17:46,917 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3692, uuid={5EA2A0D0-6DA8-427e-ADEB-2CC19FDBB143}, since=null, name=RemoteIPAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,917 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2873, uuid={14DA2F03-EFD1-4b98-A66F-EFD6046F1025}, since=null, name=RemotePSEL, alias=, stereotype=protocol, visibility=public, txtDescription='Remote entity presentation selector.', htmlDescription='

Remote entity presentation selector.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=782, _eaTypeName=Selector, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@82f6ef, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 16:17:46,917 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2874, uuid={C4E19558-A5AA-43ce-A203-6E7BACDD96C7}, since=null, name=RemoteSSEL, alias=, stereotype=protocol, visibility=public, txtDescription='Remote entity session selector.', htmlDescription='

Remote entity session selector.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=782, _eaTypeName=Selector, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@82f6ef, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 16:17:46,917 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2875, uuid={C5BC70EE-7E84-4822-95B3-1EA00D57E252}, since=null, name=RemoteTSEL, alias=, stereotype=protocol, visibility=public, txtDescription='Remote entity transport selector.', htmlDescription='

Remote entity transport selector.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=782, _eaTypeName=Selector, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@82f6ef, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 16:17:46,917 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3972, uuid={47D3343F-E927-48ec-8558-54CC13AEC30E}, since=null, name=ReportPer100Seconds, alias=, stereotype=performance, visibility=public, txtDescription='Number of Reports received/transmitted during the last 100 seconds.', htmlDescription='

Number of Reports received/transmitted during the last 100 seconds.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,918 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3968, uuid={D1802DDE-FE54-49d6-9EBB-1A5DE0464F3A}, since=null, name=RptReceptionDelay, alias=, stereotype=performance, visibility=public, txtDescription='The time required to receive the last Report. This time is the difference between the reception time and the emission timestamp stored inside the report. If not synchronized this value shall be set to -1.', htmlDescription='

The time required to receive the last Report. This time is the difference between the reception time and the emission timestamp stored inside the report. If not synchronized this value shall be set to -1.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,918 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3913, uuid={B94A45CC-7384-41ee-9821-F77D634C675F}, since=null, name=SecurityProfile, alias=, stereotype=protocol, visibility=public, txtDescription='This is the security profile in use for this association (no security, integrity A profile, A+, AE+).', htmlDescription='

This is the security profile in use for this association (no security, integrity A profile, A+, AE+).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1013, _eaTypeName=SecurityProfileType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@153acfe, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,918 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSSecurityNotification, _objData=UmlObjectData [id=3582, uuid={ED76E952-B3FD-4bbd-B4F7-7F695D6C14B6}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of PDUs received that could not be decrypted.', htmlDescription='

Number of PDUs received that could not be decrypted.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,918 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSSecurityNotification, _objData=UmlObjectData [id=4036, uuid={6D84220E-9E6E-4b52-8843-92394244A0F5}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,918 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSSecurityNotification, _objData=UmlObjectData [id=3581, uuid={52A9B9D0-58D5-4d7d-A396-A7788A41EB89}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,918 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSSecurityNotification, _objData=UmlObjectData [id=3584, uuid={4F8B7D7A-78C6-4ac7-A43C-8B06E8D829E0}, since=null, name=UpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations that failed.', htmlDescription='

Number of update key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,918 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSNotification, _objData=UmlObjectData [id=3573, uuid={6F0A08FF-024D-4919-99B5-B68C203679AA}, since=null, name=ConnFailInCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of incoming Initiate-requests that have been refused.', htmlDescription='

Number of incoming Initiate-requests that have been refused.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,918 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSNotification, _objData=UmlObjectData [id=3574, uuid={F172E26F-F99A-4ca4-BBF3-4759B78D18F3}, since=null, name=ConnFailOutCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of outgoing Initiate-requests that have been refused.', htmlDescription='

Number of outgoing Initiate-requests that have been refused.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,918 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSNotification, _objData=UmlObjectData [id=3575, uuid={5F493EBC-63E7-480b-B344-66194892E87B}, since=null, name=RejectRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of reject issued in reception.', htmlDescription='

Number of reject issued in reception.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,918 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSNotification, _objData=UmlObjectData [id=3576, uuid={0D61F583-C436-4314-A1B5-C6FA04940FD7}, since=null, name=RejectTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received Reject on transmission.', htmlDescription='

Number of received Reject on transmission.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,918 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVCommon, _objData=UmlObjectData [id=4054, uuid={8F7CBDDF-5309-4c57-A3E5-B0C820FEC605}, since=null, name=GroupUpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations at KDC that failed.', htmlDescription='

Number of update key negotiations at KDC that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,918 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVCommon, _objData=UmlObjectData [id=4055, uuid={72C144FE-7138-4153-8C18-0FC5BC1E8998}, since=null, name=KDCAuthFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Count of the number of authorization failures against KDC.', htmlDescription='

Count of the number of authorization failures against KDC.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,918 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVCommon, _objData=UmlObjectData [id=4056, uuid={10AD71AC-8E2C-4afb-88B0-4CAAF7C06C47}, since=null, name=KDCSessionKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Session Key establishment between peer and KDC failed.', htmlDescription='

Session Key establishment between peer and KDC failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,918 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=4057, uuid={C97C7E95-F1A3-49a6-84CD-F37F54D4DCAA}, since=null, name=CBRef, alias=, stereotype=index, visibility=public, txtDescription='Reference of the GSE/SV Control block being supervised.', htmlDescription='

Reference of the GSE/SV Control block being supervised.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,919 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=4058, uuid={A3300C61-0405-4178-AA24-56139902DFD1}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,919 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=4059, uuid={B346F0EE-81BD-4f02-BD05-3DEB6C966B08}, since=null, name=OutUv, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer underflows detected due to outgoing serial communication.', htmlDescription='

Number of buffer underflows detected due to outgoing serial communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,919 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=4366, uuid={10164DB8-AB84-46a3-9325-B0D817803F9A}, since=null, name=APPID, alias=, stereotype=protocol, visibility=public, txtDescription='Application Identifier being expected.', htmlDescription='

Application Identifier being expected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,919 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=3829, uuid={F6725CAA-C95B-431e-BCC4-6877D34082A8}, since=null, name=TxPduPerSecond, alias=, stereotype=protocol, visibility=public, txtDescription='Count of the number of SV telegrams sent within a second on the association.', htmlDescription='

Count of the number of SV telegrams sent within a second on the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,919 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4061, uuid={E70C3857-A774-4635-9A52-713A3189C31C}, since=null, name=CBRef, alias=, stereotype=index, visibility=public, txtDescription='Reference of the GSE/SV Control block being supervised.', htmlDescription='

Reference of the GSE/SV Control block being supervised.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,919 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4062, uuid={2E060239-4EB9-4a8a-A7C3-AED6EDA8C5A3}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,919 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4063, uuid={B4825E20-07C1-4cde-94AD-CFE37852AE7F}, since=null, name=InOvCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer overflows detected due to incoming communication. This counter is incremented each time the buffer space is insufficient to receive an incoming message.', htmlDescription='

Number of buffer overflows detected due to incoming communication. This counter is incremented each time the buffer space is insufficient to receive an incoming message.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,919 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4064, uuid={BA2766B5-6FA2-4c9b-85EA-7353D0790FDF}, since=null, name=MessageIntegrityFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number messages that were not using the proper Group Key.', htmlDescription='

Number messages that were not using the proper Group Key.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,919 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4067, uuid={85138267-8516-4911-9D4D-D78674944F2D}, since=null, name=RxPduPerSecond, alias=, stereotype=protocol, visibility=public, txtDescription='Count of the number of SV telegrams received within a second on the association.', htmlDescription='

Count of the number of SV telegrams received within a second on the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,919 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4365, uuid={7955A1E1-9F67-46da-A434-8EA5BA1C0BE2}, since=null, name=APPID, alias=, stereotype=protocol, visibility=public, txtDescription='Application identified being expected.', htmlDescription='

Application identified being expected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,919 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4367, uuid={2B5045AC-99BD-4941-BCD5-36ABDDCAC2FF}, since=null, name=RxAPPID, alias=, stereotype=protocol, visibility=public, txtDescription='Last Application Identifier being received.', htmlDescription='

Last Application Identifier being received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f5e5e3, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,919 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3844, uuid={C24FF010-3527-40b6-A143-3CBD3C95FC45}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,919 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=4052, uuid={4D212643-73E9-4b01-B3E4-1419141F7F5C}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of PDUs received that could not be decrypted', htmlDescription='

Number of PDUs received that could not be decrypted

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,920 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3845, uuid={62E2AB60-AB61-489b-9B09-FC14A0BF4694}, since=null, name=PDUSizeFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDU with wrong size. This is meaningful only for IP telegrams.', htmlDescription='

Number of received PDU with wrong size. This is meaningful only for IP telegrams.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,920 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3846, uuid={A6C46361-5561-43d2-8B67-6DAC7566C062}, since=null, name=PIP, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed SV information can be obtained for each IP publisher connection.', htmlDescription='

Provides a table through which more detailed SV information can be obtained for each IP publisher connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=994, _eaTypeName=SVPublisherAssociationIP, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@132ec19, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}]. +2024-09-07 16:17:46,920 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3847, uuid={1C5E81A0-3007-4221-BBCF-B4538CDCD068}, since=null, name=PL2, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed SV information can be obtained for each L2 (Ethernet) publisher connection.', htmlDescription='

Provides a table through which more detailed SV information can be obtained for each L2 (Ethernet) publisher connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=995, _eaTypeName=SVPublisherAssociationL2, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c4039c, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}]. +2024-09-07 16:17:46,920 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3848, uuid={F24AD27F-DE3D-4d47-BF82-D81306D727FD}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=997, _eaTypeName=SVNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e45eb6, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,920 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3849, uuid={E61DCB59-D671-4e3e-AF63-7A7934A7139B}, since=null, name=SIP, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed SV information can be obtained for each IP subscriber connection.', htmlDescription='

Provides a table through which more detailed SV information can be obtained for each IP subscriber connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=998, _eaTypeName=SVSubcriberAssociationIP, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@19f99ea, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}]. +2024-09-07 16:17:46,920 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3850, uuid={3A8AA373-DF4D-4203-9E17-D1A556AE4626}, since=null, name=SL2, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed SV information can be obtained for each L2 (Ethernet) subscriber connection.', htmlDescription='

Provides a table through which more detailed SV information can be obtained for each L2 (Ethernet) subscriber connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=999, _eaTypeName=SVSubcriberAssociationL2, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1efef64, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}]. +2024-09-07 16:17:46,920 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVPublisherAssociationIP, _objData=UmlObjectData [id=3817, uuid={3EC59ACA-14AB-4adf-823D-4EF3DBBA4715}, since=null, name=DestIpAddr, alias=, stereotype=protocol, visibility=public, txtDescription='Destination IP address.', htmlDescription='

Destination IP address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 16:17:46,920 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVPublisherAssociationIP, _objData=UmlObjectData [id=3818, uuid={3B41797D-66B7-473b-A47C-92A5B0C6DB2C}, since=null, name=DestIpAddrType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,920 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVPublisherAssociationL2, _objData=UmlObjectData [id=3819, uuid={2E77B17F-D224-4764-9C29-36CD379797D7}, since=null, name=DestMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f4468b, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 16:17:46,920 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVSubcriberAssociationIP, _objData=UmlObjectData [id=3823, uuid={CF21D44F-A555-48cc-99A1-D49E20097B5D}, since=null, name=SrcIpAddr, alias=, stereotype=protocol, visibility=public, txtDescription='Source IP address.', htmlDescription='

Source IP address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 16:17:46,920 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVSubcriberAssociationIP, _objData=UmlObjectData [id=3824, uuid={3AB68377-764F-4314-851D-FEE4B40FC99E}, since=null, name=SrcIpAddrType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,921 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVSubcriberAssociationL2, _objData=UmlObjectData [id=3825, uuid={A6F5F486-2B40-4620-ADA1-3CBA7408C0D8}, since=null, name=SrcMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f4468b, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 16:17:46,921 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=3750, uuid={AFDD17DA-6B2F-4bc7-8F89-0E63A9B7D1D7}, since=null, name=ConfRevMis, alias=, stereotype=protocol, visibility=public, txtDescription='True indicates that the expected configuration revision did not match the received number.', htmlDescription='

True indicates that the expected configuration revision did not match the received number.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@756e4d, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,921 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=3755, uuid={2E11DB8F-06FC-485f-8C56-703E601D8A60}, since=null, name=NdsComm, alias=, stereotype=protocol, visibility=public, txtDescription='Duplicated Message received', htmlDescription='

Duplicated Message received

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@756e4d, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,921 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4368, uuid={9075FAD9-2CE1-4e5d-907F-DBD0B4B1CC32}, since=null, name=ConfRev, alias=, stereotype=protocol, visibility=public, txtDescription='Last configuration Revision being received.', htmlDescription='

Last configuration Revision being received.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,921 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4369, uuid={E4803687-6245-40fd-AB97-A5A553A34C59}, since=null, name=RxConfRev, alias=, stereotype=protocol, visibility=public, txtDescription='True indicates that the expected configuration revision did not match the received number.', htmlDescription='

True indicates that the expected configuration revision did not match the received number.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,921 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=3758, uuid={EBC5C199-473E-4859-B0FE-DD1C08CC93AF}, since=null, name=TalExpCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count of the received TAL expirations that have been detected.', htmlDescription='

Count of the received TAL expirations that have been detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,921 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4370, uuid={09E69AF6-2C2B-46e9-B274-E5220B53D94D}, since=null, name=OosErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of times out of sequence of GOOSE has been observed.', htmlDescription='

Number of times out of sequence of GOOSE has been observed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,921 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4371, uuid={5B152C15-4AC4-421a-87EB-F81484BD2524}, since=null, name=DupMsgRx, alias=, stereotype=protocol, visibility=public, txtDescription='If true, the subscription needs commissioning, i.e., the received message does not conform to the current subscription configuration (either the 'dataSetRef' is wrong, the data set members, the configuration revision number, or no subscription is configured at all).', htmlDescription='

If true, the subscription needs commissioning, i.e., the received message does not conform to the current subscription configuration (either the 'dataSetRef' is wrong, the data set members, the configuration revision number, or no subscription is configured at all).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,921 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4372, uuid={313447D4-3710-47a8-85FF-DAA9316F8720}, since=null, name=DatSet, alias=, stereotype=protocol, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,921 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4373, uuid={8E3C588A-BEC3-454f-861F-712BADFC92AA}, since=null, name=RxDatSet, alias=, stereotype=protocol, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f5e5e3, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,921 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4374, uuid={C304ABDA-E4BA-4cfc-BAD9-17425F5A0611}, since=null, name=GoID, alias=, stereotype=protocol, visibility=public, txtDescription='GOOSE Identifier being expected.', htmlDescription='

GOOSE Identifier being expected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,921 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4375, uuid={985D635D-D095-4282-B40B-8D3F15CDC152}, since=null, name=RxGoID, alias=, stereotype=protocol, visibility=public, txtDescription='Last GOOSE Identifier being received.', htmlDescription='

Last GOOSE Identifier being received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f5e5e3, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,921 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4376, uuid={3BC29513-E13B-40a1-A86D-4B3406FC2CD1}, since=null, name=StNum, alias=, stereotype=protocol, visibility=public, txtDescription='StNum being received from last accepted GOOSE message.', htmlDescription='

StNum being received from last accepted GOOSE message.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,921 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4377, uuid={699EF357-D4F5-4445-8F55-446FF895C089}, since=null, name=SqNum, alias=, stereotype=protocol, visibility=public, txtDescription='SqNum being received from last accepted GOOSE message.', htmlDescription='

SqNum being received from last accepted GOOSE message.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,921 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4378, uuid={778EF329-63E8-4a88-A172-D2DAD54D972A}, since=null, name=RejectStNum, alias=, stereotype=protocol, visibility=public, txtDescription='Last StNum being rejected.', htmlDescription='

Last StNum being rejected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,923 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4379, uuid={A699C155-79DE-4187-BDF5-AFD122DAD7CA}, since=null, name=RejectSqNum, alias=, stereotype=protocol, visibility=public, txtDescription='Last SqNum being rejected.', htmlDescription='

Last SqNum being rejected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,923 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4494, uuid={98542797-3D0F-4f54-96D7-B2BEBEAF605A}, since=null, name=RxT, alias=, stereotype=protocol, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@fc185, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,923 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3243, uuid={71555478-FCAD-4dae-B530-6956D1B5D475}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,923 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=4053, uuid={A432D351-022A-4b49-AA3D-61CBB91067FC}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of PDUs received that could not be decrypted', htmlDescription='

Number of PDUs received that could not be decrypted

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,923 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3773, uuid={4B58CE58-88E3-4e07-9FF3-FE0181F95942}, since=null, name=InErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of PDUs received that were in error due to malformed content, parity errors or configuration mismatch.', htmlDescription='

Number of PDUs received that were in error due to malformed content, parity errors or configuration mismatch.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,923 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=4121, uuid={D727F0F0-5C88-4fc4-83C5-D69614BE4ED8}, since=null, name=InUnexpectedMulticast, alias=, stereotype=protocol, visibility=public, txtDescription='Count of unexpected multicast received PDUs. This apply to GOOSE only.', htmlDescription='

Count of unexpected multicast received PDUs. This apply to GOOSE only.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,923 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3744, uuid={8BC8E8B9-0BA6-4277-B1B1-23F48CD0FD30}, since=null, name=PIP, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed GSE information can be obtained for each IP publisher connection.', htmlDescription='

Provides a table through which more detailed GSE information can be obtained for each IP publisher connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=796, _eaTypeName=GSEPublisherAssociationIP, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@6fa38a, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}]. +2024-09-07 16:17:46,923 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3745, uuid={10373ECE-DF59-4995-BA92-240A3CC2D94B}, since=null, name=PL2, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed GSE information can be obtained for each L2 (Ethernet) publisher connection.', htmlDescription='

Provides a table through which more detailed GSE information can be obtained for each L2 (Ethernet) publisher connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=984, _eaTypeName=GSEPublisherAssociationL2, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@a3ffec, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}]. +2024-09-07 16:17:46,923 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3618, uuid={BF431EAB-1B49-4c5a-8BC3-171FED573957}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=930, _eaTypeName=GSENotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1caeb3e, 1_taggedValues{Version=1}]. +2024-09-07 16:17:46,923 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3046, uuid={AA8FC433-0ACC-4dcf-9B1C-59469C28FCA5}, since=null, name=SIP, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed GSE information can be obtained for each IP subscriber connection.', htmlDescription='

Provides a table through which more detailed GSE information can be obtained for each IP subscriber connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=979, _eaTypeName=GSESubcriberAssociationIP, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1e88b3c, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}]. +2024-09-07 16:17:46,923 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3746, uuid={F6A461DF-31BD-4546-8B62-BE2A79D53F41}, since=null, name=SL2, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed GSE information can be obtained for each L2 (Ethernet) subscriber connection.', htmlDescription='

Provides a table through which more detailed GSE information can be obtained for each L2 (Ethernet) subscriber connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=977, _eaTypeName=GSESubcriberAssociationL2, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d80b78, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}]. +2024-09-07 16:17:46,923 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEPublisherAssociationIP, _objData=UmlObjectData [id=3803, uuid={9C513452-9437-4849-894C-B2C33952D4F0}, since=null, name=DestIpAddr, alias=, stereotype=protocol, visibility=public, txtDescription='Destination IP address.', htmlDescription='

Destination IP address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 16:17:46,923 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEPublisherAssociationIP, _objData=UmlObjectData [id=3802, uuid={03D1AF7D-F2B5-425c-8FD2-63B09E3887F9}, since=null, name=DestIpAddrType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,923 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEPublisherAssociationL2, _objData=UmlObjectData [id=3801, uuid={53A15D60-889F-4c5a-BCF1-89AF1D539B97}, since=null, name=DestMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f4468b, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 16:17:46,923 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEPublisherAssociationL2, _objData=UmlObjectData [id=4362, uuid={1EF8C591-A06A-43cb-8FBF-95E679E109F8}, since=null, name=SrcMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f4468b, 2_taggedValues{mibIndex=no, Version=1}]. +2024-09-07 16:17:46,923 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubcriberAssociationIP, _objData=UmlObjectData [id=3740, uuid={FFD24620-C094-400d-8BD1-F48524198222}, since=null, name=SrcIpAddr, alias=, stereotype=protocol, visibility=public, txtDescription='Source IP address. .', htmlDescription='

Source IP address. .

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 16:17:46,923 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubcriberAssociationIP, _objData=UmlObjectData [id=3739, uuid={B418786B-EB08-4581-8037-B7C3A6E0311A}, since=null, name=SrcIpAddrType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,923 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubcriberAssociationL2, _objData=UmlObjectData [id=3742, uuid={556B251D-88A4-4ac8-855E-D537776F059A}, since=null, name=SrcMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP Profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP Profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f4468b, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 16:17:46,923 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubcriberAssociationL2, _objData=UmlObjectData [id=4361, uuid={5024F7E1-FEC6-4125-AF1E-FFC7C29B18D8}, since=null, name=DstMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP Profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP Profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f4468b, 2_taggedValues{mibIndex=no, Version=1}]. +2024-09-07 16:17:46,923 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=2651, uuid={219E72A9-5B41-4365-A90E-491097F96C10}, since=null, name=clockTamperDetected, alias=, stereotype=security, visibility=public, txtDescription='Timestamp of when a tamper of a clock has been detected', htmlDescription='

Timestamp of when a tamper of a clock has been detected

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@fc185, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,924 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=2656, uuid={C95F5CA0-6663-41c7-BAE9-BB32F924F8F1}, since=null, name=LastClockHoldover, alias=, stereotype=health, visibility=public, txtDescription='Indicates the timestamp at which the last Holdover was detected.', htmlDescription='

Indicates the timestamp at which the last Holdover was detected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@fc185, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,924 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=2657, uuid={FF50E5F4-F0FB-48b1-B605-B025F27CA0DD}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='When written True, the statistics of clockTamperDetected and LastClockHoldover are set back to a value of zero. The values in the clocks table are not impacted by this reset.', htmlDescription='

When written True, the statistics of clockTamperDetected and LastClockHoldover are set back to a value of zero. The values in the clocks table are not impacted by this reset.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,924 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=2650, uuid={106DFE8D-727B-42bf-84CA-4C8E484CB760}, since=null, name=Clocks, alias=, stereotype=table, visibility=public, txtDescription='Table of information regarding the clock sources that are in use.', htmlDescription='

Table of information regarding the clock sources that are in use.

'], _isConst=false, _isStatic=false, _multiplicity=[0..n], _initValue=, _eaTypeId=608, _eaTypeName=ClockEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ce4f0a, 3_taggedValues{mibPrefix=cLK, objectIdentity=cLKclockEntry, Version=0}]. +2024-09-07 16:17:46,924 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=3631, uuid={31D800F0-35C2-4312-95B7-E3A890982D86}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=944, _eaTypeName=SecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3a8624, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,924 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2646, uuid={E98C8059-D343-41c5-A9FD-C45F4FA62052}, since=null, name=ClockAccuracy, alias=, stereotype=health, visibility=public, txtDescription='Reports the current expected accuracy of this clock in nanoseconds. A value of -1 indicates that the accuracy is unknown or estimated to be larger than 2147483647 ns.', htmlDescription='

Reports the current expected accuracy of this clock in nanoseconds. A value of -1 indicates that the accuracy is unknown or estimated to be larger than 2147483647 ns.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,924 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=3085, uuid={50EFFF08-CB85-4033-8EB9-8FC29AACD6DC}, since=null, name=ClockIndex, alias=, stereotype=index, visibility=public, txtDescription='Clock Index', htmlDescription='

Clock Index

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 16:17:46,924 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=3729, uuid={E0CAC256-AD0A-4515-9F48-63353DA71841}, since=null, name=ClockIssue, alias=, stereotype=performance, visibility=public, txtDescription='Reports the presence of any clock issue.', htmlDescription='

Reports the presence of any clock issue.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=776, _eaTypeName=TimSyncIssueType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1933fd1, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,924 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2649, uuid={1591A4AF-7AD8-4720-B04E-7C389735450F}, since=null, name=ClockTamperDetected, alias=, stereotype=security, visibility=public, txtDescription='Clock tamper have been detected.', htmlDescription='

Clock tamper have been detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@756e4d, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,924 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2645, uuid={F98377B8-808A-4705-81F9-99E14B733B97}, since=null, name=TmSrc, alias=, stereotype=performance, visibility=public, txtDescription='Reports the clock sync method.', htmlDescription='

Reports the clock sync method.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=777, _eaTypeName=TimSyncSrcType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2d45ba, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,924 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2655, uuid={EFB862ED-119C-4441-AD7D-3F382A7C0C92}, since=null, name=HoldOver, alias=, stereotype=health, visibility=public, txtDescription='The Holdover flag shall be set True whenever the Time Traceable flag is True and the IED is not receiving a qualified signal from a recognized standard time source. It shall be set False otherwise. Therefore, this flag gives an immediate indication of loss of the time reference signal.', htmlDescription='

The Holdover flag shall be set True whenever the Time Traceable flag is True and the IED is not receiving a qualified signal from a recognized standard time source. It shall be set False otherwise. Therefore, this flag gives an immediate indication of loss of the time reference signal.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@756e4d, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,924 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2648, uuid={A8CB6533-B21C-4986-941B-F8F32BD739E3}, since=null, name=LastSyncOffset, alias=, stereotype=health, visibility=public, txtDescription='Reports the time offset (in seconds) computed from the last qualified synchronization signal received by this clock. This value is used by the clock servo to gradually adjust the clock.', htmlDescription='

Reports the time offset (in seconds) computed from the last qualified synchronization signal received by this clock. This value is used by the clock servo to gradually adjust the clock.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,924 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2653, uuid={AAB46675-D113-417c-8AB8-E4E268247EF8}, since=null, name=TimeSourceAvailable, alias=, stereotype=health, visibility=public, txtDescription='The Time Source Available flag shall be set True whenever the IED is receiving a qualified signal from a recognized standard time source. If it loses this signal, then after an appropriate period (during which the additional holdover uncertainty is not a significant impairment to performance), the Time Source Available flag shall be set False. The duration of the period after loss of the time signal and negation of the Time Source Available flag depends on the quality of the holdover oscillator and the required time quality, and may be a configurable IED parameter. +This flag may not immediately be set False, because momentary loss of the time signal may not adversely affect IED time quality. The Holdover flag provides an immediate indication of this condition.', htmlDescription='

The Time Source Available flag shall be set True whenever the IED is receiving a qualified signal from a recognized standard time source. If it loses this signal, then after an appropriate period (during which the additional holdover uncertainty is not a significant impairment to performance), the Time Source Available flag shall be set False. The duration of the period after loss of the time signal and negation of the Time Source Available flag depends on the quality of the holdover oscillator and the required time quality, and may be a configurable IED parameter.

This flag may not immediately be set False, because momentary loss of the time signal may not adversely affect IED time quality. The Holdover flag provides an immediate indication of this condition.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@756e4d, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,924 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2652, uuid={ECD9FD6B-5168-426a-BF8F-D2B9B57110B0}, since=null, name=TimeTraceable, alias=, stereotype=health, visibility=public, txtDescription='The Time Traceable flag shall be set False before the IED has received and qualified a signal from a recognized standard time source. Once it has locked to the recognized standard time source and stabilized, the Time Traceable flag shall be set True. The Time Traceable flag shall not be set False again, so long as the IED can estimate its holdover uncertainty. If at some point, perhaps due to an extended holdover interval, the IED no longer can estimate its holdover uncertainty, then the Time Traceable flag shall be set False.', htmlDescription='

The Time Traceable flag shall be set False before the IED has received and qualified a signal from a recognized standard time source. Once it has locked to the recognized standard time source and stabilized, the Time Traceable flag shall be set True. The Time Traceable flag shall not be set False again, so long as the IED can estimate its holdover uncertainty. If at some point, perhaps due to an extended holdover interval, the IED no longer can estimate its holdover uncertainty, then the Time Traceable flag shall be set False.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@756e4d, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,925 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::SecurityNotification, _objData=UmlObjectData [id=3632, uuid={04B87A68-22D2-4882-A4A5-D62CF502F233}, since=null, name=clockTamperDetected, alias=, stereotype=security, visibility=public, txtDescription='Timestamp of when a tamper of a clock has been detected', htmlDescription='

Timestamp of when a tamper of a clock has been detected

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@fc185, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,925 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3319, uuid={6FD1D092-9094-4f03-8B24-7DCD8E2358AD}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='Interface number', htmlDescription='

Interface number

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 16:17:46,925 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3320, uuid={6EB13B61-C6AA-4e12-9BC2-177D8DB73982}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the CPU.', htmlDescription='

Description of the CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,925 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3415, uuid={2252ED03-8326-4d40-957F-9921BA0D74BE}, since=null, name=IntType, alias=, stereotype=identity, visibility=public, txtDescription='Interface type (Wired or Wireless)', htmlDescription='

Interface type (Wired or Wireless)

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=866, _eaTypeName=IntType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1629756, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,925 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3323, uuid={5B1D4273-C6BF-44d8-93A8-EE46A1AEBA45}, since=null, name=Operable, alias=, stereotype=health, visibility=public, txtDescription='Indicates that CPU is operable (it can be either online or offline)', htmlDescription='

Indicates that CPU is operable (it can be either online or offline)

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,925 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3318, uuid={C6769525-A8F5-4599-84AB-E17EB20458CD}, since=null, name=Online, alias=, stereotype=health, visibility=public, txtDescription='Indicate that CPU is online and active', htmlDescription='

Indicate that CPU is online and active

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,926 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3322, uuid={CF6212A6-1358-4cd8-AC00-7BE9C09A5BFE}, since=null, name=Faulty, alias=, stereotype=health, visibility=public, txtDescription='CPU generated errors', htmlDescription='

CPU generated errors

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,926 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3321, uuid={AE8F0410-796C-42ec-BA19-BA8D3B558380}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,926 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3652, uuid={F38DE40F-DC22-441d-BD42-E3990926DFB1}, since=null, name=serAvail, alias=, stereotype=performance, visibility=public, txtDescription='Number of serial interfaces installed on the device', htmlDescription='

Number of serial interfaces installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,926 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3657, uuid={4E66DA97-6D8F-450a-A00B-ADE0FEE47CE4}, since=null, name=serActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of serial interfaces active on the device', htmlDescription='

Number of serial interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,926 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3662, uuid={6F91E49F-3A68-4208-A29A-512F23CC10B0}, since=null, name=serFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing serial Interfaces on the device', htmlDescription='

Number of failing serial Interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,926 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3653, uuid={B23510B0-5513-4f80-9792-63DED4A16F44}, since=null, name=ethAvail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of ethernet Interfaces installed on the device', htmlDescription='

Number of ethernet Interfaces installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,926 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3658, uuid={6B6B3BCD-0AE0-4c6f-9FB3-472BEC079B13}, since=null, name=ethActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of ethernet interfaces active on the device', htmlDescription='

Number of ethernet interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,926 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3663, uuid={536CCD9F-B77E-465a-8898-FCD7644820AD}, since=null, name=ethFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing ethernet interfaces on the device', htmlDescription='

Number of failing ethernet interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,926 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3654, uuid={1C804DCB-08CB-41f0-B6F7-384A70C8C3C8}, since=null, name=algAvail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of analogue Interfaces installed on the device', htmlDescription='

Number of analogue Interfaces installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,926 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3659, uuid={29FE15BB-45B5-47c2-A74E-3EF574575434}, since=null, name=algActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of analogue interfaces Active on the device', htmlDescription='

Number of analogue interfaces Active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,926 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3664, uuid={54797821-2674-4526-B44A-9F87D01A6991}, since=null, name=algFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing analogue interfaces on the device', htmlDescription='

Number of failing analogue interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,926 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3655, uuid={74214291-7A17-4b83-AA3C-A305991D037A}, since=null, name=keyAvail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of keyboard Interface installed on the device', htmlDescription='

Number of keyboard Interface installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,926 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3660, uuid={AB6E018D-82C3-4524-8D58-58164F10E51B}, since=null, name=keyActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of keyboard interface active on the device', htmlDescription='

Number of keyboard interface active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,927 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3665, uuid={5F0D156E-80E6-401b-9854-FCA4DCA132BB}, since=null, name=keyFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing keyboard interface on the device', htmlDescription='

Number of failing keyboard interface on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,927 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3656, uuid={4C0A881D-B242-49b2-A9F8-DF5C3DF79322}, since=null, name=usbAvail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of Universal Serial Bus Interface installed on the device', htmlDescription='

Number of Universal Serial Bus Interface installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,927 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3661, uuid={6078BDD9-2E54-4b6b-A1B3-CCDBFE46E859}, since=null, name=usbActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of Universal Serial Bus interface active on the device', htmlDescription='

Number of Universal Serial Bus interface active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,927 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3666, uuid={64E92266-4098-47ce-9874-DBF194F6A4D1}, since=null, name=usbFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing Universal Serial Bus interface on the device', htmlDescription='

Number of failing Universal Serial Bus interface on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,927 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3283, uuid={6E4426CC-406A-429e-AD6D-1EECA102F2FC}, since=null, name=SER, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of serial interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of serial interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=836, _eaTypeName=SEREntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@4ed9f0, 3_taggedValues{mibPrefix=sER, objectIdentity=intSERIALEntry, Version=0}]. +2024-09-07 16:17:46,927 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3297, uuid={4C6CDBC0-62B0-4881-A810-A6CE56DACD81}, since=null, name=ETH, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of Ethernet interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of Ethernet interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=838, _eaTypeName=ETHEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@4f787b, 3_taggedValues{mibPrefix=eTH, objectIdentity=intETHEntry, Version=0}]. +2024-09-07 16:17:46,927 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3298, uuid={8794992C-DE7F-4bf7-83EC-5592356A181C}, since=null, name=USB, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of USB interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of USB interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=840, _eaTypeName=USBEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@5cb137, 3_taggedValues{mibPrefix=uSB, objectIdentity=intUSBEntry, Version=0}]. +2024-09-07 16:17:46,927 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3299, uuid={B0761727-4B75-4eb5-82B3-0BB613618FC7}, since=null, name=KEY, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of keyboard interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of keyboard interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=842, _eaTypeName=KEYEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@41eaa2, 3_taggedValues{mibPrefix=kEY, objectIdentity=intKEYEntry, Version=0}]. +2024-09-07 16:17:46,928 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3328, uuid={D97ACC7A-DBFA-4c92-BC5C-FF187AF4C4EF}, since=null, name=ALG, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of analogue interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of analogue interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=847, _eaTypeName=ALGEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d62f43, 3_taggedValues{mibPrefix=aLG, objectIdentity=intALGEntry, Version=0}]. +2024-09-07 16:17:46,928 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3678, uuid={B5CE0636-5BE9-4566-8B6A-2103E2769BA9}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object', htmlDescription='

State events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=946, _eaTypeName=Notification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@14b1c02, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,928 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::KEYEntry, _objData=UmlObjectData [id=3327, uuid={6A06B961-6E51-4f13-B73C-32E26BB4F831}, since=null, name=Locked, alias=, stereotype=health, visibility=public, txtDescription='Indicate a locked status for the device keyboard', htmlDescription='

Indicate a locked status for the device keyboard

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,928 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::SEREntry, _objData=UmlObjectData [id=3325, uuid={BD2A2516-013B-4f4c-83C4-6D873D08A614}, since=null, name=ByteIn, alias=, stereotype=protocol, visibility=public, txtDescription='Inbound Byte counter', htmlDescription='

Inbound Byte counter

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,928 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::SEREntry, _objData=UmlObjectData [id=3326, uuid={DB538A18-009B-4f5a-B7CD-6FDE73E706B1}, since=null, name=ByteOut, alias=, stereotype=protocol, visibility=public, txtDescription='Outbound Byte counter', htmlDescription='

Outbound Byte counter

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,928 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3668, uuid={51550105-54C1-4ba6-BC2E-E028F066BD90}, since=null, name=serActive, alias=, stereotype=health, visibility=public, txtDescription='Number of serial Interfaces active on the device', htmlDescription='

Number of serial Interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,928 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3669, uuid={BE46F414-6E9C-412e-9E70-29513A7DAA18}, since=null, name=serFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing serial Interfaces on the device', htmlDescription='

Number of failing serial Interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,928 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3670, uuid={78956E09-8F39-4f86-A5CE-B8DBF44C7D6E}, since=null, name=ethActive, alias=, stereotype=health, visibility=public, txtDescription='Number of ethernet interfaces active on the device', htmlDescription='

Number of ethernet interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,928 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3671, uuid={101FCB6C-9867-4262-8E50-6F057EEAF643}, since=null, name=ethFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing ethernet interfaces on the device', htmlDescription='

Number of failing ethernet interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,928 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3672, uuid={5171FAC8-436F-42e9-B8E2-0C31C19FAC68}, since=null, name=algActive, alias=, stereotype=health, visibility=public, txtDescription='Number of analogue interfaces active on the device', htmlDescription='

Number of analogue interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,929 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3673, uuid={9711AA3F-E429-4304-960A-AA9CF2BCC003}, since=null, name=algFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing analogue interfaces on the device', htmlDescription='

Number of failing analogue interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,929 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3667, uuid={D523B290-8CF4-4630-ADC0-AA4FF4336A1B}, since=null, name=keyActive, alias=, stereotype=health, visibility=public, txtDescription='Number of keyboard interfaces active on the device', htmlDescription='

Number of keyboard interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,929 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3674, uuid={367C987D-D473-46cd-A5B1-6B3A1D275D36}, since=null, name=keyFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing keyboard interfaces on the device', htmlDescription='

Number of failing keyboard interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,929 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3675, uuid={0F833AFE-832E-4673-99D3-42CDEFDDF7E0}, since=null, name=usbActive, alias=, stereotype=health, visibility=public, txtDescription='Number of Universal Serial Bus interfaces active on the device', htmlDescription='

Number of Universal Serial Bus interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,929 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3676, uuid={E957BF40-9F27-4a63-B2DD-16F525F01FA1}, since=null, name=usbFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing Universal Serial Bus interfaces on the device', htmlDescription='

Number of failing Universal Serial Bus interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:17:46,929 [main] INFO EaModelBuilder - assigning type for operations' parameters and exceptions ... +2024-09-07 16:17:46,929 [main] INFO EaModelBuilder - cross-checking dependencies ... +2024-09-07 16:17:46,929 [main] INFO EaModelBuilder - cross-checking associations ... +2024-09-07 16:17:46,929 [main] INFO Util - time=[0:00:00.045] linked builders. +2024-09-07 16:17:46,929 [main] INFO Util - +2024-09-07 16:17:46,930 [main] INFO Util - +2024-09-07 16:17:46,930 [main] INFO Util - ------------------------------------------------ +2024-09-07 16:17:46,930 [main] INFO Util - creating in-memory model and exporting normative diagrams... +2024-09-07 16:17:48,375 [main] TRACE UmlPackage - ---- created null model package NullCIM +2024-09-07 16:17:48,381 [main] TRACE UmlClass - created (826) OTHER_CIM CIM null CIM class NullCIM::NullCIM +2024-09-07 16:17:48,381 [main] TRACE UmlPackage - ---- created null model package NullIEC61850 +2024-09-07 16:17:48,381 [main] TRACE UmlClass - created (830) OTHER_IEC61850 IEC61850 null 61850 class NullIEC61850::NullIEC61850 +2024-09-07 16:17:48,381 [main] INFO EaModelBuilder - creating in-memory package structure ... +2024-09-07 16:17:48,381 [main] TRACE UmlPackage - ---- created model package iso +2024-09-07 16:17:48,382 [main] TRACE UmlPackage - ---- created top package standard +2024-09-07 16:17:48,382 [main] TRACE UmlPackage - ---- created package iec62351 +2024-09-07 16:17:48,382 [main] TRACE UmlPackage - ---- created package part7 +2024-09-07 16:17:48,382 [main] TRACE UmlPackage - ---- created package Profiles +2024-09-07 16:17:48,391 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{4642A2B9-A297-45be-A2B5-28C4F1A2B373}.png6764323809090462273.png. +2024-09-07 16:17:49,013 [main] DEBUG JapiDiagramExporter - ... saved in 623 ms +2024-09-07 16:17:49,017 [main] TRACE UmlDiagram - created (51) OTHER_CIM CIM class Profiles::Part7Profiles +2024-09-07 16:17:49,017 [main] TRACE UmlPackage - ---- created package nsmAgent +2024-09-07 16:17:49,018 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{8F3F8B93-6E15-4fcf-9C40-83EB793F28A5}.png6936380865032450288.png. +2024-09-07 16:17:49,767 [main] DEBUG JapiDiagramExporter - ... saved in 750 ms +2024-09-07 16:17:49,767 [main] TRACE UmlDiagram - created (52) OTHER_CIM CIM class nsmAgent::nsmAgent +2024-09-07 16:17:49,768 [main] TRACE UmlPackage - ---- created package Overview +2024-09-07 16:17:49,771 [main] TRACE UmlSkipped - created (941) OTHER_CIM CIM boundary Overview::IEC 60870, DNP and IEC 62351 +2024-09-07 16:17:49,771 [main] TRACE UmlSkipped - created (939) OTHER_CIM CIM boundary Overview::IEC 61850 +2024-09-07 16:17:49,772 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{1EC9B9AC-962E-4b2c-A2A8-EFB524CF896E}.png8638819573465371709.png. +2024-09-07 16:17:50,446 [main] DEBUG JapiDiagramExporter - ... saved in 674 ms +2024-09-07 16:17:50,446 [main] TRACE UmlDiagram - created (23) OTHER_CIM CIM class Overview::Part7 Classes Overview +2024-09-07 16:17:50,446 [main] TRACE UmlPackage - ---- created package BaseTypes +2024-09-07 16:17:50,446 [main] TRACE UmlPackage - ---- created package Abstract Types +2024-09-07 16:17:50,446 [main] TRACE UmlPackage - ---- created package EnumeratedTypes +2024-09-07 16:17:50,446 [main] TRACE UmlPackage - ---- created package Environmental Agent +2024-09-07 16:17:50,447 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{DD68DDD1-5EEB-4a23-B16C-1FF759A2EE6A}.png8357145714294883239.png. +2024-09-07 16:17:50,684 [main] DEBUG JapiDiagramExporter - ... saved in 238 ms +2024-09-07 16:17:50,684 [main] TRACE UmlDiagram - created (8) OTHER_CIM CIM class Environmental Agent::Environmental +2024-09-07 16:17:50,684 [main] TRACE UmlPackage - ---- created package IED Agent +2024-09-07 16:17:50,685 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{C3FD1BF6-CB13-4fb3-9C75-D9FACF470ACD}.png2690503108432826208.png. +2024-09-07 16:17:51,013 [main] DEBUG JapiDiagramExporter - ... saved in 329 ms +2024-09-07 16:17:51,014 [main] TRACE UmlDiagram - created (9) OTHER_CIM CIM class IED Agent::IED +2024-09-07 16:17:51,014 [main] TRACE UmlPackage - ---- created package Application Protocols Agents +2024-09-07 16:17:51,014 [main] TRACE UmlPackage - ---- created package Common objects +2024-09-07 16:17:51,015 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{583FFED4-9F6C-420f-88B3-80FF9F387121}.png98139043737120292.png. +2024-09-07 16:17:51,191 [main] DEBUG JapiDiagramExporter - ... saved in 177 ms +2024-09-07 16:17:51,191 [main] TRACE UmlDiagram - created (64) OTHER_CIM CIM class Common objects::Application Protocol common objects +2024-09-07 16:17:51,191 [main] TRACE UmlPackage - ---- created package IEC62351-3 ed.2 Agent +2024-09-07 16:17:51,192 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{38D28719-1A0B-491f-9010-AF2D3032BB4B}.png7058313008388488462.png. +2024-09-07 16:17:51,528 [main] DEBUG JapiDiagramExporter - ... saved in 337 ms +2024-09-07 16:17:51,528 [main] TRACE UmlDiagram - created (72) OTHER_CIM CIM class IEC62351-3 ed.2 Agent::IEC 62351-3 ed.2 Agent Relationships +2024-09-07 16:17:51,528 [main] TRACE UmlPackage - ---- created package IEEE 1815 and IEC 60870-5 Agent +2024-09-07 16:17:51,529 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{8B1E40BA-BA71-478e-BC81-025DA5A45A35}.png6294101973643879123.png. +2024-09-07 16:17:51,896 [main] DEBUG JapiDiagramExporter - ... saved in 368 ms +2024-09-07 16:17:51,897 [main] TRACE UmlDiagram - created (33) OTHER_CIM CIM class IEEE 1815 and IEC 60870-5 Agent::IEEE 1815 and IEC 60870 Agent Relationships +2024-09-07 16:17:51,897 [main] TRACE UmlPackage - ---- created package IEEE 1815 and IEC 60870-5 Agent - ed2 +2024-09-07 16:17:51,897 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{AA945755-BD47-4be2-A238-6331816DBA4B}.png6477835924077183308.png. +2024-09-07 16:17:52,281 [main] DEBUG JapiDiagramExporter - ... saved in 384 ms +2024-09-07 16:17:52,282 [main] TRACE UmlDiagram - created (70) OTHER_CIM CIM class IEEE 1815 and IEC 60870-5 Agent - ed2::IEEE 1815 and IEC 60870 Agent Relationships +2024-09-07 16:17:52,282 [main] TRACE UmlPackage - ---- created package IEC61850 Agent +2024-09-07 16:17:52,282 [main] TRACE UmlPackage - ---- created package ACSI +2024-09-07 16:17:52,282 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{1B1AAFC2-CBA3-401c-873D-7B6CDCE9CBD6}.png1735426109334732463.png. +2024-09-07 16:17:52,480 [main] DEBUG JapiDiagramExporter - ... saved in 198 ms +2024-09-07 16:17:52,480 [main] TRACE UmlDiagram - created (45) OTHER_CIM CIM class ACSI::ACSI +2024-09-07 16:17:52,480 [main] TRACE UmlPackage - ---- created package MMS +2024-09-07 16:17:52,481 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{C69DADFE-D7C7-45d0-83FC-41012CB3C1CA}.png5457927121723358100.png. +2024-09-07 16:17:52,809 [main] DEBUG JapiDiagramExporter - ... saved in 329 ms +2024-09-07 16:17:52,809 [main] TRACE UmlDiagram - created (42) OTHER_CIM CIM class MMS::MMS +2024-09-07 16:17:52,809 [main] TRACE UmlPackage - ---- created package SV and GSE common objects +2024-09-07 16:17:52,811 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{DFEA5E4E-B042-4697-A4BE-C60308616114}.png2773194427300051621.png. +2024-09-07 16:17:53,030 [main] DEBUG JapiDiagramExporter - ... saved in 221 ms +2024-09-07 16:17:53,031 [main] TRACE UmlDiagram - created (63) OTHER_CIM CIM class SV and GSE common objects::SV and GSE common objects +2024-09-07 16:17:53,031 [main] TRACE UmlPackage - ---- created package SV +2024-09-07 16:17:53,031 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{472A38C4-7002-4632-9EB5-EC1C28A2CCA8}.png3790663977838750586.png. +2024-09-07 16:17:53,357 [main] DEBUG JapiDiagramExporter - ... saved in 326 ms +2024-09-07 16:17:53,357 [main] TRACE UmlDiagram - created (60) OTHER_CIM CIM class SV::SV +2024-09-07 16:17:53,358 [main] TRACE UmlPackage - ---- created package GSE +2024-09-07 16:17:53,358 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{80FA056A-3318-4339-86E8-7D464BD53A85}.png5552026276882944520.png. +2024-09-07 16:17:53,734 [main] DEBUG JapiDiagramExporter - ... saved in 375 ms +2024-09-07 16:17:53,734 [main] TRACE UmlDiagram - created (44) OTHER_CIM CIM class GSE::GSE +2024-09-07 16:17:53,734 [main] TRACE UmlPackage - ---- created package Clocks Agent +2024-09-07 16:17:53,734 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{9DE08B60-19E1-4c7c-B3D6-82731BE2066A}.png747553837093294159.png. +2024-09-07 16:17:53,948 [main] DEBUG JapiDiagramExporter - ... saved in 214 ms +2024-09-07 16:17:53,948 [main] TRACE UmlDiagram - created (46) OTHER_CIM CIM class Clocks Agent::Clocks Agent +2024-09-07 16:17:53,948 [main] TRACE UmlPackage - ---- created package Interfaces Agent +2024-09-07 16:17:53,949 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{1B416A08-A236-4e2a-9A9E-6A48912EF05F}.png1609566317775387936.png. +2024-09-07 16:17:54,255 [main] DEBUG JapiDiagramExporter - ... saved in 307 ms +2024-09-07 16:17:54,256 [main] TRACE UmlDiagram - created (24) OTHER_CIM CIM class Interfaces Agent::Interfaces +2024-09-07 16:17:54,256 [main] INFO EaModelBuilder - creating in-memory root classes and enum literals ... +2024-09-07 16:17:54,256 [main] TRACE UmlClass - created (894) OTHER_CIM CIM root class <> nsmAgent::Attribute +2024-09-07 16:17:54,257 [main] TRACE UmlClass - created (886) OTHER_CIM CIM root class <> nsmAgent::Attribute +2024-09-07 16:17:54,257 [main] TRACE UmlClass - created (889) OTHER_CIM CIM root class <> nsmAgent::Attribute +2024-09-07 16:17:54,257 [main] TRACE UmlClass - created (890) OTHER_CIM CIM root class <> nsmAgent::Attribute +2024-09-07 16:17:54,257 [main] TRACE UmlClass - created (892) OTHER_CIM CIM root class <> nsmAgent::Attribute +2024-09-07 16:17:54,257 [main] TRACE UmlClass - created (896) OTHER_CIM CIM root class <> nsmAgent::Attribute +2024-09-07 16:17:54,257 [main] TRACE UmlClass - created (898) OTHER_CIM CIM root class <> nsmAgent::Attribute +2024-09-07 16:17:54,257 [main] TRACE UmlClass - created (938) OTHER_CIM CIM root class <> nsmAgent::Attribute +2024-09-07 16:17:54,257 [main] TRACE UmlClass - created (900) OTHER_CIM CIM root class <> nsmAgent::Attribute +2024-09-07 16:17:54,257 [main] TRACE UmlClass - created (888) OTHER_CIM CIM root class <> nsmAgent::Class +2024-09-07 16:17:54,258 [main] TRACE UmlClass - created (1022) OTHER_CIM CIM root class <> nsmAgent::Class +2024-09-07 16:17:54,258 [main] TRACE UmlClass - created (882) OTHER_CIM CIM root class <> nsmAgent::Class +2024-09-07 16:17:54,258 [main] TRACE UmlClass - created (895) OTHER_CIM CIM root class <> nsmAgent::health +2024-09-07 16:17:54,258 [main] TRACE UmlClass - created (893) OTHER_CIM CIM root class <> nsmAgent::identity +2024-09-07 16:17:54,258 [main] TRACE UmlClass - created (891) OTHER_CIM CIM root class <> nsmAgent::index +2024-09-07 16:17:54,258 [main] TRACE UmlClass - created (887) OTHER_CIM CIM root class <> nsmAgent::nsmAgent +2024-09-07 16:17:54,258 [main] TRACE UmlClass - created (1021) OTHER_CIM CIM root class <> nsmAgent::nsmEntry +2024-09-07 16:17:54,258 [main] TRACE UmlClass - created (883) OTHER_CIM CIM root class <> nsmAgent::nsmEvent +2024-09-07 16:17:54,258 [main] TRACE UmlClass - created (897) OTHER_CIM CIM root class <> nsmAgent::performance +2024-09-07 16:17:54,258 [main] TRACE UmlClass - created (885) OTHER_CIM CIM root class <> nsmAgent::protocol +2024-09-07 16:17:54,258 [main] TRACE UmlClass - created (884) OTHER_CIM CIM root class <> nsmAgent::security +2024-09-07 16:17:54,259 [main] TRACE UmlClass - created (899) OTHER_CIM CIM root class <> nsmAgent::setvalue +2024-09-07 16:17:54,259 [main] TRACE UmlClass - created (901) OTHER_CIM CIM root class <> nsmAgent::table +2024-09-07 16:17:54,259 [main] TRACE UmlClass - created (936) OTHER_CIM CIM root class <> nsmAgent::trap +2024-09-07 16:17:54,259 [main] TRACE UmlClass - created (660) OTHER_CIM CIM root class BaseTypes::AbsoluteDateTime +2024-09-07 16:17:54,259 [main] TRACE UmlClass - created (624) OTHER_CIM CIM root class BaseTypes::Counter32 +2024-09-07 16:17:54,259 [main] TRACE UmlClass - created (628) OTHER_CIM CIM root class BaseTypes::DateAndTime +2024-09-07 16:17:54,259 [main] TRACE UmlClass - created (632) OTHER_CIM CIM root class BaseTypes::DisplayString +2024-09-07 16:17:54,259 [main] TRACE UmlClass - created (630) OTHER_CIM CIM root class BaseTypes::Float32TC +2024-09-07 16:17:54,259 [main] TRACE UmlClass - created (622) OTHER_CIM CIM root class BaseTypes::Gauge32 +2024-09-07 16:17:54,259 [main] TRACE UmlClass - created (952) OTHER_CIM CIM root class BaseTypes::InetAddress +2024-09-07 16:17:54,260 [main] TRACE UmlClass - created (966) OTHER_CIM CIM root class BaseTypes::MacAddress +2024-09-07 16:17:54,260 [main] TRACE UmlClass - created (954) OTHER_CIM CIM enumeration <> BaseTypes::InetAddressType +2024-09-07 16:17:54,267 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 16:17:54,267 [main] TRACE UmlAttribute - created (3685) OTHER_CIM CIM literal <> BaseTypes::InetAddressType.unknown = 0 +2024-09-07 16:17:54,267 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 16:17:54,267 [main] TRACE UmlAttribute - created (3686) OTHER_CIM CIM literal <> BaseTypes::InetAddressType.ipv4 = 1 +2024-09-07 16:17:54,267 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 16:17:54,267 [main] TRACE UmlAttribute - created (3687) OTHER_CIM CIM literal <> BaseTypes::InetAddressType.ipv6 = 2 +2024-09-07 16:17:54,267 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-07 16:17:54,268 [main] TRACE UmlAttribute - created (3688) OTHER_CIM CIM literal <> BaseTypes::InetAddressType.ipv4z = 3 +2024-09-07 16:17:54,268 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-07 16:17:54,268 [main] TRACE UmlAttribute - created (3689) OTHER_CIM CIM literal <> BaseTypes::InetAddressType.ipv6z = 4 +2024-09-07 16:17:54,268 [main] TRACE ValueRange - '16' has no separator indicating range. +2024-09-07 16:17:54,268 [main] TRACE UmlAttribute - created (3683) OTHER_CIM CIM literal <> BaseTypes::InetAddressType.dns = 16 +2024-09-07 16:17:54,268 [main] TRACE UmlClass - created (972) OTHER_CIM CIM root class BaseTypes::EntityIndex +2024-09-07 16:17:54,268 [main] TRACE UmlClass - created (173) OTHER_CIM CIM root class BaseTypes::Integer32 +2024-09-07 16:17:54,268 [main] TRACE UmlClass - created (968) OTHER_CIM CIM root class BaseTypes::Unsigned32 +2024-09-07 16:17:54,268 [main] TRACE UmlClass - created (626) OTHER_CIM CIM root class BaseTypes::TimeTicks +2024-09-07 16:17:54,268 [main] TRACE UmlClass - created (636) OTHER_CIM CIM root class BaseTypes::TruthValue +2024-09-07 16:17:54,268 [main] TRACE UmlClass - created (712) OTHER_CIM CIM root class Abstract Types::AbstractBaseType +2024-09-07 16:17:54,268 [main] TRACE UmlClass - created (798) OTHER_CIM CIM root class Abstract Types::AbstractAgent +2024-09-07 16:17:54,268 [main] TRACE UmlClass - created (292) OTHER_CIM CIM enumeration <> EnumeratedTypes::AppDatStKind +2024-09-07 16:17:54,268 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 16:17:54,268 [main] TRACE UmlAttribute - created (1780) OTHER_CIM CIM literal <> EnumeratedTypes::AppDatStKind.unknown = 0 +2024-09-07 16:17:54,268 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 16:17:54,268 [main] TRACE UmlAttribute - created (1781) OTHER_CIM CIM literal <> EnumeratedTypes::AppDatStKind.good = 1 +2024-09-07 16:17:54,268 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 16:17:54,269 [main] TRACE UmlAttribute - created (1782) OTHER_CIM CIM literal <> EnumeratedTypes::AppDatStKind.bad = 2 +2024-09-07 16:17:54,269 [main] TRACE UmlClass - created (1034) OTHER_CIM CIM enumeration <> EnumeratedTypes::PhyHealthKind +2024-09-07 16:17:54,269 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 16:17:54,269 [main] TRACE UmlAttribute - created (4113) OTHER_CIM CIM literal <> EnumeratedTypes::PhyHealthKind.ok = 0 +2024-09-07 16:17:54,269 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 16:17:54,269 [main] TRACE UmlAttribute - created (4114) OTHER_CIM CIM literal <> EnumeratedTypes::PhyHealthKind.warning = 1 +2024-09-07 16:17:54,269 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 16:17:54,269 [main] TRACE UmlAttribute - created (4115) OTHER_CIM CIM literal <> EnumeratedTypes::PhyHealthKind.alarm = 2 +2024-09-07 16:17:54,269 [main] TRACE UmlClass - created (856) OTHER_CIM CIM enumeration <> EnumeratedTypes::ExtKind +2024-09-07 16:17:54,269 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 16:17:54,269 [main] TRACE UmlAttribute - created (3369) OTHER_CIM CIM literal <> EnumeratedTypes::ExtKind.unknown = 0 +2024-09-07 16:17:54,269 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 16:17:54,269 [main] TRACE UmlAttribute - created (3370) OTHER_CIM CIM literal <> EnumeratedTypes::ExtKind.ioModule = 1 +2024-09-07 16:17:54,269 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 16:17:54,269 [main] TRACE UmlAttribute - created (3371) OTHER_CIM CIM literal <> EnumeratedTypes::ExtKind.softwarePLC = 2 +2024-09-07 16:17:54,269 [main] TRACE UmlClass - created (864) OTHER_CIM CIM enumeration <> EnumeratedTypes::IntKind +2024-09-07 16:17:54,269 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 16:17:54,269 [main] TRACE UmlAttribute - created (3392) OTHER_CIM CIM literal <> EnumeratedTypes::IntKind.wired = 0 +2024-09-07 16:17:54,269 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 16:17:54,269 [main] TRACE UmlAttribute - created (3393) OTHER_CIM CIM literal <> EnumeratedTypes::IntKind.wireless = 1 +2024-09-07 16:17:54,270 [main] TRACE UmlClass - created (644) OTHER_CIM CIM enumeration <> EnumeratedTypes::LnkKind +2024-09-07 16:17:54,270 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 16:17:54,270 [main] TRACE UmlAttribute - created (2720) OTHER_CIM CIM literal <> EnumeratedTypes::LnkKind.unknown = 0 +2024-09-07 16:17:54,270 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 16:17:54,270 [main] TRACE UmlAttribute - created (2721) OTHER_CIM CIM literal <> EnumeratedTypes::LnkKind.serial = 1 +2024-09-07 16:17:54,270 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 16:17:54,270 [main] TRACE UmlAttribute - created (2722) OTHER_CIM CIM literal <> EnumeratedTypes::LnkKind.tcp = 2 +2024-09-07 16:17:54,270 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-07 16:17:54,270 [main] TRACE UmlAttribute - created (2723) OTHER_CIM CIM literal <> EnumeratedTypes::LnkKind.udp = 3 +2024-09-07 16:17:54,270 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-07 16:17:54,270 [main] TRACE UmlAttribute - created (3391) OTHER_CIM CIM literal <> EnumeratedTypes::LnkKind.eth = 4 +2024-09-07 16:17:54,270 [main] TRACE UmlClass - created (293) OTHER_CIM CIM enumeration <> EnumeratedTypes::PSPAccKind +2024-09-07 16:17:54,270 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 16:17:54,270 [main] TRACE UmlAttribute - created (1784) OTHER_CIM CIM literal EnumeratedTypes::PSPAccKind.notBeingAccessed = 0 +2024-09-07 16:17:54,270 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 16:17:54,270 [main] TRACE UmlAttribute - created (1785) OTHER_CIM CIM literal EnumeratedTypes::PSPAccKind.accessOccurring = 1 +2024-09-07 16:17:54,270 [main] TRACE UmlClass - created (829) OTHER_CIM CIM enumeration <> EnumeratedTypes::ProtIdKind +2024-09-07 16:17:54,270 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 16:17:54,270 [main] TRACE UmlAttribute - created (3250) OTHER_CIM CIM literal <> EnumeratedTypes::ProtIdKind.unknown = 0 +2024-09-07 16:17:54,270 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 16:17:54,270 [main] TRACE UmlAttribute - created (3249) OTHER_CIM CIM literal <> EnumeratedTypes::ProtIdKind.iEC6185081 = 1 +2024-09-07 16:17:54,270 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 16:17:54,271 [main] TRACE UmlAttribute - created (3251) OTHER_CIM CIM literal <> EnumeratedTypes::ProtIdKind.iEC6185081GOOSE = 2 +2024-09-07 16:17:54,271 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-07 16:17:54,271 [main] TRACE UmlAttribute - created (3252) OTHER_CIM CIM literal <> EnumeratedTypes::ProtIdKind.iEC6185092SV = 3 +2024-09-07 16:17:54,271 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-07 16:17:54,271 [main] TRACE UmlAttribute - created (3253) OTHER_CIM CIM literal <> EnumeratedTypes::ProtIdKind.ieee1815DNP = 4 +2024-09-07 16:17:54,271 [main] TRACE ValueRange - '5' has no separator indicating range. +2024-09-07 16:17:54,271 [main] TRACE UmlAttribute - created (3254) OTHER_CIM CIM literal <> EnumeratedTypes::ProtIdKind.iec608705 = 5 +2024-09-07 16:17:54,271 [main] TRACE ValueRange - '6' has no separator indicating range. +2024-09-07 16:17:54,271 [main] TRACE UmlAttribute - created (4503) OTHER_CIM CIM literal <> EnumeratedTypes::ProtIdKind.iEC6185082 = 6 +2024-09-07 16:17:54,271 [main] TRACE UmlClass - created (958) OTHER_CIM CIM enumeration <> EnumeratedTypes::EventKind +2024-09-07 16:17:54,271 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 16:17:54,271 [main] TRACE UmlAttribute - created (3694) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.none = 0 +2024-09-07 16:17:54,271 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 16:17:54,271 [main] TRACE UmlAttribute - created (3695) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.unKnown = 1 +2024-09-07 16:17:54,271 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 16:17:54,271 [main] TRACE UmlAttribute - created (3696) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.denialOfService = 2 +2024-09-07 16:17:54,271 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-07 16:17:54,271 [main] TRACE UmlAttribute - created (3697) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.malware = 3 +2024-09-07 16:17:54,271 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-07 16:17:54,271 [main] TRACE UmlAttribute - created (3698) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.bufferOverRun = 4 +2024-09-07 16:17:54,271 [main] TRACE ValueRange - '5' has no separator indicating range. +2024-09-07 16:17:54,271 [main] TRACE UmlAttribute - created (3701) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.bufferUnderRun = 5 +2024-09-07 16:17:54,271 [main] TRACE ValueRange - '6' has no separator indicating range. +2024-09-07 16:17:54,272 [main] TRACE UmlAttribute - created (3702) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.badCredential = 6 +2024-09-07 16:17:54,272 [main] TRACE ValueRange - '7' has no separator indicating range. +2024-09-07 16:17:54,272 [main] TRACE UmlAttribute - created (3703) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.badKey = 7 +2024-09-07 16:17:54,272 [main] TRACE ValueRange - '8' has no separator indicating range. +2024-09-07 16:17:54,272 [main] TRACE UmlAttribute - created (3699) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.malformedPDU = 8 +2024-09-07 16:17:54,272 [main] TRACE ValueRange - '9' has no separator indicating range. +2024-09-07 16:17:54,272 [main] TRACE UmlAttribute - created (3693) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.physicalDisruption = 9 +2024-09-07 16:17:54,272 [main] TRACE ValueRange - '10' has no separator indicating range. +2024-09-07 16:17:54,272 [main] TRACE UmlAttribute - created (3700) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.invalidNetworkAccess = 10 +2024-09-07 16:17:54,272 [main] TRACE UmlClass - created (113) OTHER_CIM CIM enumeration <> EnumeratedTypes::TimSyncIssueKind +2024-09-07 16:17:54,272 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 16:17:54,273 [main] TRACE UmlAttribute - created (644) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncIssueKind.synced = 0 +2024-09-07 16:17:54,273 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 16:17:54,273 [main] TRACE UmlAttribute - created (645) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncIssueKind.degradated = 1 +2024-09-07 16:17:54,273 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 16:17:54,273 [main] TRACE UmlAttribute - created (646) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncIssueKind.failed = 2 +2024-09-07 16:17:54,273 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-07 16:17:54,273 [main] TRACE UmlAttribute - created (4499) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncIssueKind.syncedGlobal = 3 +2024-09-07 16:17:54,273 [main] TRACE UmlClass - created (1011) OTHER_CIM CIM enumeration <> EnumeratedTypes::SecurityProfileKind +2024-09-07 16:17:54,273 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 16:17:54,273 [main] TRACE UmlAttribute - created (3924) OTHER_CIM CIM literal <> EnumeratedTypes::SecurityProfileKind.noSecurity = 0 +2024-09-07 16:17:54,273 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 16:17:54,273 [main] TRACE UmlAttribute - created (3926) OTHER_CIM CIM literal <> EnumeratedTypes::SecurityProfileKind.aProfile = 1 +2024-09-07 16:17:54,273 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 16:17:54,273 [main] TRACE UmlAttribute - created (3927) OTHER_CIM CIM literal <> EnumeratedTypes::SecurityProfileKind.e2eProfile = 2 +2024-09-07 16:17:54,274 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-07 16:17:54,274 [main] TRACE UmlAttribute - created (3922) OTHER_CIM CIM literal <> EnumeratedTypes::SecurityProfileKind.ae2eProfile = 3 +2024-09-07 16:17:54,274 [main] TRACE UmlClass - created (117) OTHER_CIM CIM enumeration <> EnumeratedTypes::TimSyncSrcKind +2024-09-07 16:17:54,274 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 16:17:54,274 [main] TRACE UmlAttribute - created (665) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.unknown = 0 +2024-09-07 16:17:54,274 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 16:17:54,274 [main] TRACE UmlAttribute - created (666) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.ntp = 1 +2024-09-07 16:17:54,274 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 16:17:54,274 [main] TRACE UmlAttribute - created (667) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.sntp = 2 +2024-09-07 16:17:54,274 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-07 16:17:54,274 [main] TRACE UmlAttribute - created (668) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.irig = 3 +2024-09-07 16:17:54,274 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-07 16:17:54,274 [main] TRACE UmlAttribute - created (669) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.gps = 4 +2024-09-07 16:17:54,274 [main] TRACE ValueRange - '5' has no separator indicating range. +2024-09-07 16:17:54,284 [main] TRACE UmlAttribute - created (670) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.ieee1588PTP = 5 +2024-09-07 16:17:54,285 [main] TRACE ValueRange - '6' has no separator indicating range. +2024-09-07 16:17:54,285 [main] TRACE UmlAttribute - created (671) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.ieee1588PTPC37238Profile2011 = 6 +2024-09-07 16:17:54,285 [main] TRACE ValueRange - '7' has no separator indicating range. +2024-09-07 16:17:54,285 [main] TRACE UmlAttribute - created (4110) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.ieee1588PTPIEC6185093 = 7 +2024-09-07 16:17:54,285 [main] TRACE ValueRange - '8' has no separator indicating range. +2024-09-07 16:17:54,285 [main] TRACE UmlAttribute - created (4495) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.ieee1588PTPC37238Profile2017 = 8 +2024-09-07 16:17:54,285 [main] TRACE ValueRange - '9' has no separator indicating range. +2024-09-07 16:17:54,285 [main] TRACE UmlAttribute - created (4496) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.ieee1588PTPIEC6185093Ed20 = 9 +2024-09-07 16:17:54,285 [main] TRACE ValueRange - '7' has no separator indicating range. +2024-09-07 16:17:54,285 [main] TRACE UmlAttribute - created (4497) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.ieee1588PTPIEC6185093Profile2016 = 7 +2024-09-07 16:17:54,285 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-07 16:17:54,285 [main] TRACE UmlAttribute - created (4498) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.gnss = 4 +2024-09-07 16:17:54,285 [main] TRACE ValueRange - '10' has no separator indicating range. +2024-09-07 16:17:54,285 [main] TRACE UmlAttribute - created (4500) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.applicationProtocol = 10 +2024-09-07 16:17:54,285 [main] TRACE ValueRange - '11' has no separator indicating range. +2024-09-07 16:17:54,285 [main] TRACE UmlAttribute - created (4504) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.ntpOnts = 11 +2024-09-07 16:17:54,285 [main] INFO EaModelBuilder - creating in-memory sub-classes recursively ... +2024-09-07 16:17:54,286 [main] TRACE UmlClass - created (760) OTHER_CIM CIM class Abstract Types::BooleanValue, 1 superclasses=[AbstractBaseType] +2024-09-07 16:17:54,286 [main] TRACE UmlClass - created (734) OTHER_CIM CIM class Abstract Types::Integer, 1 superclasses=[AbstractBaseType] +2024-09-07 16:17:54,286 [main] TRACE UmlClass - created (728) OTHER_CIM CIM class Abstract Types::BooleanValueTs, 1 superclasses=[AbstractBaseType] +2024-09-07 16:17:54,286 [main] TRACE UmlClass - created (731) OTHER_CIM CIM class Abstract Types::CounterTs, 1 superclasses=[AbstractBaseType] +2024-09-07 16:17:54,286 [main] TRACE UmlClass - created (739) OTHER_CIM CIM class Abstract Types::Floating, 1 superclasses=[AbstractBaseType] +2024-09-07 16:17:54,286 [main] TRACE UmlClass - created (740) OTHER_CIM CIM class Abstract Types::FloatingTs, 1 superclasses=[AbstractBaseType] +2024-09-07 16:17:54,286 [main] TRACE UmlClass - created (735) OTHER_CIM CIM class Abstract Types::IntegerTs, 1 superclasses=[AbstractBaseType] +2024-09-07 16:17:54,286 [main] TRACE UmlClass - created (764) OTHER_CIM CIM class Abstract Types::CharString, 1 superclasses=[AbstractBaseType] +2024-09-07 16:17:54,286 [main] TRACE UmlClass - created (860) OTHER_CIM CIM class Abstract Types::CharStringTs, 1 superclasses=[AbstractBaseType] +2024-09-07 16:17:54,286 [main] TRACE UmlClass - created (804) OTHER_CIM CIM class Abstract Types::Timestamp, 1 superclasses=[AbstractBaseType] +2024-09-07 16:17:54,286 [main] TRACE UmlClass - created (782) OTHER_CIM CIM class Abstract Types::Selector, 1 superclasses=[AbstractBaseType] +2024-09-07 16:17:54,286 [main] TRACE UmlClass - created (786) OTHER_CIM CIM class Abstract Types::MacAddress, 1 superclasses=[AbstractBaseType] +2024-09-07 16:17:54,287 [main] TRACE UmlClass - created (956) OTHER_CIM CIM class Abstract Types::InetAddressType, 1 superclasses=[AbstractBaseType] +2024-09-07 16:17:54,287 [main] TRACE UmlClass - created (784) OTHER_CIM CIM class Abstract Types::InetAddress, 1 superclasses=[AbstractBaseType] +2024-09-07 16:17:54,287 [main] TRACE UmlClass - created (974) OTHER_CIM CIM class Abstract Types::EntityIndex, 1 superclasses=[AbstractBaseType] +2024-09-07 16:17:54,287 [main] TRACE UmlClass - created (774) OTHER_CIM CIM class Abstract Types::CntRs, 1 superclasses=[AbstractBaseType] +2024-09-07 16:17:54,287 [main] TRACE UmlClass - created (766) OTHER_CIM CIM class EnumeratedTypes::AppDatStType, 1 superclasses=[AbstractBaseType] +2024-09-07 16:17:54,287 [main] TRACE UmlClass - created (1036) OTHER_CIM CIM class EnumeratedTypes::PhyHealthType, 1 superclasses=[AbstractBaseType] +2024-09-07 16:17:54,287 [main] TRACE UmlClass - created (854) OTHER_CIM CIM class EnumeratedTypes::ExtType, 1 superclasses=[AbstractBaseType] +2024-09-07 16:17:54,287 [main] TRACE UmlClass - created (866) OTHER_CIM CIM class EnumeratedTypes::IntType, 1 superclasses=[AbstractBaseType] +2024-09-07 16:17:54,287 [main] TRACE UmlClass - created (960) OTHER_CIM CIM class EnumeratedTypes::EventType, 1 superclasses=[AbstractBaseType] +2024-09-07 16:17:54,287 [main] TRACE UmlClass - created (858) OTHER_CIM CIM class EnumeratedTypes::PSPAccType, 1 superclasses=[AbstractBaseType] +2024-09-07 16:17:54,287 [main] TRACE UmlClass - created (780) OTHER_CIM CIM class EnumeratedTypes::ProtIdType, 1 superclasses=[AbstractBaseType] +2024-09-07 16:17:54,287 [main] TRACE UmlClass - created (776) OTHER_CIM CIM class EnumeratedTypes::TimSyncIssueType, 1 superclasses=[AbstractBaseType] +2024-09-07 16:17:54,287 [main] TRACE UmlClass - created (1013) OTHER_CIM CIM class EnumeratedTypes::SecurityProfileType, 1 superclasses=[AbstractBaseType] +2024-09-07 16:17:54,287 [main] TRACE UmlClass - created (777) OTHER_CIM CIM class EnumeratedTypes::TimSyncSrcType, 1 superclasses=[AbstractBaseType] +2024-09-07 16:17:54,287 [main] TRACE UmlClass - created (778) OTHER_CIM CIM class EnumeratedTypes::LnkType, 1 superclasses=[AbstractBaseType] +2024-09-07 16:17:54,287 [main] TRACE UmlClass - created (41) OTHER_CIM CIM class <> Environmental Agent::Environmental, 1 superclasses=[AbstractAgent] +2024-09-07 16:17:54,288 [main] TRACE UmlClass - created (616) OTHER_CIM CIM class <> Environmental Agent::PSUPEntry, 1 superclasses=[AbstractAgent] +2024-09-07 16:17:54,288 [main] TRACE UmlClass - created (903) OTHER_CIM CIM class <> Environmental Agent::Notification, 1 superclasses=[AbstractAgent] +2024-09-07 16:17:54,288 [main] TRACE UmlClass - created (874) OTHER_CIM CIM class <> Environmental Agent::SecurityNotification, 1 superclasses=[AbstractAgent] +2024-09-07 16:17:54,288 [main] TRACE UmlClass - created (44) OTHER_CIM CIM class <> IED Agent::IED, 1 superclasses=[AbstractAgent] +2024-09-07 16:17:54,288 [main] TRACE UmlClass - created (832) OTHER_CIM CIM class <> IED Agent::CPUEntry, 1 superclasses=[AbstractAgent] +2024-09-07 16:17:54,288 [main] TRACE UmlClass - created (850) OTHER_CIM CIM class <> IED Agent::EXTEntry, 1 superclasses=[AbstractAgent] +2024-09-07 16:17:54,288 [main] TRACE UmlClass - created (862) OTHER_CIM CIM class <> IED Agent::STOREEntry, 1 superclasses=[AbstractAgent] +2024-09-07 16:17:54,288 [main] TRACE UmlClass - created (911) OTHER_CIM CIM class <> IED Agent::Notification, 1 superclasses=[AbstractAgent] +2024-09-07 16:17:54,288 [main] TRACE UmlClass - created (912) OTHER_CIM CIM class <> IED Agent::SecurityNotification, 1 superclasses=[AbstractAgent] +2024-09-07 16:17:54,288 [main] TRACE UmlClass - created (1032) OTHER_CIM CIM class Common objects::CommonProtocolInfo, 1 superclasses=[AbstractAgent] +2024-09-07 16:17:54,288 [main] TRACE UmlClass - created (1075) OTHER_CIM CIM class IEC62351-3 ed.2 Agent::IEC62351-3ed2security, 1 superclasses=[AbstractAgent] +2024-09-07 16:17:54,288 [main] TRACE UmlClass - created (1080) OTHER_CIM CIM class IEC62351-3 ed.2 Agent::TLSSession, 3 superclasses=[AbstractAgent, CommonProtocolInfo, IEC62351-3ed2security] +2024-09-07 16:17:54,288 [main] TRACE UmlClass - created (1079) OTHER_CIM CIM class <> IEC62351-3 ed.2 Agent::ClientTLS, 1 superclasses=[TLSSession] +2024-09-07 16:17:54,288 [main] TRACE UmlClass - created (1077) OTHER_CIM CIM class <> IEC62351-3 ed.2 Agent::ServerTLS, 1 superclasses=[TLSSession] +2024-09-07 16:17:54,288 [main] TRACE UmlClass - created (808) OTHER_CIM CIM class IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, 1 superclasses=[AbstractAgent] +2024-09-07 16:17:54,289 [main] TRACE UmlClass - created (584) OTHER_CIM CIM class IEEE 1815 and IEC 60870-5 Agent::Association, 3 superclasses=[AbstractAgent, 60870andDNPProtocolInfo, CommonProtocolInfo] +2024-09-07 16:17:54,289 [main] TRACE UmlClass - created (820) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent::MasterAssociation, 1 superclasses=[Association] +2024-09-07 16:17:54,289 [main] TRACE UmlClass - created (821) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent::OutstationAssociation, 1 superclasses=[Association] +2024-09-07 16:17:54,289 [main] TRACE UmlClass - created (1063) OTHER_CIM CIM class IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, 1 superclasses=[AbstractAgent] +2024-09-07 16:17:54,289 [main] TRACE UmlClass - created (1058) OTHER_CIM CIM class IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, 2 superclasses=[AbstractAgent, IEC62351part5] +2024-09-07 16:17:54,289 [main] TRACE UmlClass - created (1059) OTHER_CIM CIM class IEEE 1815 and IEC 60870-5 Agent - ed2::Association, 3 superclasses=[CommonProtocolInfo, AbstractAgent, 60870andDNPProtocolInfoEd2] +2024-09-07 16:17:54,289 [main] TRACE UmlClass - created (1057) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent - ed2::MasterAssociation, 1 superclasses=[Association] +2024-09-07 16:17:54,289 [main] TRACE UmlClass - created (1056) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent - ed2::OutstationAssociation, 1 superclasses=[Association] +2024-09-07 16:17:54,290 [main] TRACE UmlClass - created (818) OTHER_CIM CIM class MMS::MMSProtocolInfo, 1 superclasses=[AbstractAgent] +2024-09-07 16:17:54,290 [main] TRACE UmlClass - created (693) OTHER_CIM CIM class <> MMS::MMSAssociation, 2 superclasses=[MMSProtocolInfo, CommonProtocolInfo] +2024-09-07 16:17:54,290 [main] TRACE UmlClass - created (1076) OTHER_CIM CIM class <> IEC62351-3 ed.2 Agent::Summary, 1 superclasses=[IEC62351-3ed2security] +2024-09-07 16:17:54,290 [main] TRACE UmlClass - created (1078) OTHER_CIM CIM class <> IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification, 1 superclasses=[AbstractAgent] +2024-09-07 16:17:54,290 [main] TRACE UmlClass - created (576) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent::Summary, 1 superclasses=[60870andDNPProtocolInfo] +2024-09-07 16:17:54,290 [main] TRACE UmlClass - created (914) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, 1 superclasses=[AbstractAgent] +2024-09-07 16:17:54,290 [main] TRACE UmlClass - created (915) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, 1 superclasses=[AbstractAgent] +2024-09-07 16:17:54,290 [main] TRACE UmlClass - created (1060) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, 1 superclasses=[60870andDNPProtocolInfoEd2] +2024-09-07 16:17:54,290 [main] TRACE UmlClass - created (1055) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2, 1 superclasses=[AbstractAgent] +2024-09-07 16:17:54,290 [main] TRACE UmlClass - created (1061) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2, 1 superclasses=[AbstractAgent] +2024-09-07 16:17:54,291 [main] TRACE UmlClass - created (152) OTHER_CIM CIM class <> ACSI::ACSISummary, 1 superclasses=[AbstractAgent] +2024-09-07 16:17:54,291 [main] TRACE UmlClass - created (691) OTHER_CIM CIM class <> MMS::MMSProvider, 1 superclasses=[MMSProtocolInfo] +2024-09-07 16:17:54,291 [main] TRACE UmlClass - created (920) OTHER_CIM CIM class <> MMS::MMSSecurityNotification, 1 superclasses=[AbstractAgent] +2024-09-07 16:17:54,291 [main] TRACE UmlClass - created (921) OTHER_CIM CIM class <> MMS::MMSNotification, 1 superclasses=[AbstractAgent] +2024-09-07 16:17:54,291 [main] TRACE UmlClass - created (1025) OTHER_CIM CIM class SV and GSE common objects::GSEandSVCommon, 1 superclasses=[AbstractAgent] +2024-09-07 16:17:54,291 [main] TRACE UmlClass - created (1026) OTHER_CIM CIM class SV and GSE common objects::GSEandSVPublisherAssociation, 1 superclasses=[GSEandSVCommon] +2024-09-07 16:17:54,291 [main] TRACE UmlClass - created (994) OTHER_CIM CIM class <> SV::SVPublisherAssociationIP, 1 superclasses=[GSEandSVPublisherAssociation] +2024-09-07 16:17:54,291 [main] TRACE UmlClass - created (995) OTHER_CIM CIM class <> SV::SVPublisherAssociationL2, 1 superclasses=[GSEandSVPublisherAssociation] +2024-09-07 16:17:54,291 [main] TRACE UmlClass - created (796) OTHER_CIM CIM class <> GSE::GSEPublisherAssociationIP, 1 superclasses=[GSEandSVPublisherAssociation] +2024-09-07 16:17:54,291 [main] TRACE UmlClass - created (984) OTHER_CIM CIM class <> GSE::GSEPublisherAssociationL2, 1 superclasses=[GSEandSVPublisherAssociation] +2024-09-07 16:17:54,291 [main] TRACE UmlClass - created (1027) OTHER_CIM CIM class SV and GSE common objects::GSEandSVSubscriberAssociation, 1 superclasses=[GSEandSVCommon] +2024-09-07 16:17:54,291 [main] TRACE UmlClass - created (998) OTHER_CIM CIM class <> SV::SVSubcriberAssociationIP, 1 superclasses=[GSEandSVSubscriberAssociation] +2024-09-07 16:17:54,291 [main] TRACE UmlClass - created (999) OTHER_CIM CIM class <> SV::SVSubcriberAssociationL2, 1 superclasses=[GSEandSVSubscriberAssociation] +2024-09-07 16:17:54,291 [main] TRACE UmlClass - created (986) OTHER_CIM CIM class GSE::GSESubscriberAssociation, 1 superclasses=[GSEandSVSubscriberAssociation] +2024-09-07 16:17:54,291 [main] TRACE UmlClass - created (979) OTHER_CIM CIM class <> GSE::GSESubcriberAssociationIP, 1 superclasses=[GSESubscriberAssociation] +2024-09-07 16:17:54,291 [main] TRACE UmlClass - created (977) OTHER_CIM CIM class <> GSE::GSESubcriberAssociationL2, 1 superclasses=[GSESubscriberAssociation] +2024-09-07 16:17:54,292 [main] TRACE UmlClass - created (1002) OTHER_CIM CIM class <> SV::SVProvider, 1 superclasses=[GSEandSVCommon] +2024-09-07 16:17:54,292 [main] TRACE UmlClass - created (997) OTHER_CIM CIM class <> SV::SVNotification, 1 superclasses=[GSEandSVCommon] +2024-09-07 16:17:54,292 [main] TRACE UmlClass - created (794) OTHER_CIM CIM class <> GSE::GSEProvider, 1 superclasses=[GSEandSVCommon] +2024-09-07 16:17:54,292 [main] TRACE UmlClass - created (930) OTHER_CIM CIM class <> GSE::GSENotification, 1 superclasses=[GSEandSVCommon] +2024-09-07 16:17:54,292 [main] TRACE UmlClass - created (609) OTHER_CIM CIM class <> Clocks Agent::Clock, 1 superclasses=[AbstractAgent] +2024-09-07 16:17:54,292 [main] TRACE UmlClass - created (608) OTHER_CIM CIM class <> Clocks Agent::ClockEntry, 1 superclasses=[AbstractAgent] +2024-09-07 16:17:54,292 [main] TRACE UmlClass - created (944) OTHER_CIM CIM class <> Clocks Agent::SecurityNotification, 1 superclasses=[AbstractAgent] +2024-09-07 16:17:54,292 [main] TRACE UmlClass - created (844) OTHER_CIM CIM class Interfaces Agent::Interface, 1 superclasses=[AbstractAgent] +2024-09-07 16:17:54,292 [main] TRACE UmlClass - created (838) OTHER_CIM CIM class <> Interfaces Agent::ETHEntry, 1 superclasses=[Interface] +2024-09-07 16:17:54,292 [main] TRACE UmlClass - created (842) OTHER_CIM CIM class <> Interfaces Agent::KEYEntry, 1 superclasses=[Interface] +2024-09-07 16:17:54,292 [main] TRACE UmlClass - created (836) OTHER_CIM CIM class <> Interfaces Agent::SEREntry, 1 superclasses=[Interface] +2024-09-07 16:17:54,292 [main] TRACE UmlClass - created (847) OTHER_CIM CIM class <> Interfaces Agent::ALGEntry, 1 superclasses=[Interface] +2024-09-07 16:17:54,292 [main] TRACE UmlClass - created (840) OTHER_CIM CIM class <> Interfaces Agent::USBEntry, 1 superclasses=[Interface] +2024-09-07 16:17:54,292 [main] TRACE UmlClass - created (834) OTHER_CIM CIM class <> Interfaces Agent::Interfaces, 1 superclasses=[AbstractAgent] +2024-09-07 16:17:54,292 [main] TRACE UmlClass - created (946) OTHER_CIM CIM class <> Interfaces Agent::Notification, 1 superclasses=[AbstractAgent] +2024-09-07 16:17:54,292 [main] INFO EaModelBuilder - reordering in-memory classes in packages ... +2024-09-07 16:17:54,293 [main] INFO EaModelBuilder - creating in-memory class' attributes, operations and constraints ... +2024-09-07 16:17:54,293 [main] ERROR UmlAttribute - unclassified CIM attribute: (3451) OTHER_CIM CIM [0..1] null nsmAgent::Class.isActive: NullCIM::NullCIM +2024-09-07 16:17:54,293 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,293 [main] TRACE UmlAttribute - created (3451) OTHER_CIM CIM [0..1] attribute nsmAgent::Class.isActive: NullCIM::NullCIM +2024-09-07 16:17:54,294 [main] ERROR UmlAttribute - unclassified CIM attribute: (3982) OTHER_CIM CIM [0..1] null nsmAgent::Class.isActive: NullCIM::NullCIM +2024-09-07 16:17:54,294 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,294 [main] TRACE UmlAttribute - created (3982) OTHER_CIM CIM [0..1] attribute nsmAgent::Class.isActive: NullCIM::NullCIM +2024-09-07 16:17:54,294 [main] ERROR UmlAttribute - unclassified CIM attribute: (3442) OTHER_CIM CIM [0..1] null nsmAgent::Class.isActive: NullCIM::NullCIM +2024-09-07 16:17:54,294 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,294 [main] TRACE UmlAttribute - created (3442) OTHER_CIM CIM [0..1] attribute nsmAgent::Class.isActive: NullCIM::NullCIM +2024-09-07 16:17:54,294 [main] ERROR UmlAttribute - unclassified CIM attribute: (3454) OTHER_CIM CIM [0..1] null nsmAgent::health.Version: NullCIM::NullCIM = 0 +2024-09-07 16:17:54,294 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 16:17:54,294 [main] TRACE UmlAttribute - created (3454) OTHER_CIM CIM [0..1] attribute nsmAgent::health.Version: NullCIM::NullCIM = 0 +2024-09-07 16:17:54,294 [main] ERROR UmlAttribute - unclassified CIM attribute: (3453) OTHER_CIM CIM [0..1] null nsmAgent::identity.Version: NullCIM::NullCIM = 0 +2024-09-07 16:17:54,294 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 16:17:54,295 [main] TRACE UmlAttribute - created (3453) OTHER_CIM CIM [0..1] attribute nsmAgent::identity.Version: NullCIM::NullCIM = 0 +2024-09-07 16:17:54,295 [main] ERROR UmlAttribute - unclassified CIM attribute: (3452) OTHER_CIM CIM [0..1] null nsmAgent::index.Version: NullCIM::NullCIM = 0 +2024-09-07 16:17:54,295 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 16:17:54,295 [main] TRACE UmlAttribute - created (3452) OTHER_CIM CIM [0..1] attribute nsmAgent::index.Version: NullCIM::NullCIM = 0 +2024-09-07 16:17:54,295 [main] ERROR UmlAttribute - unclassified CIM attribute: (3448) OTHER_CIM CIM [0..1] null nsmAgent::nsmAgent.mibPrefix: NullCIM::NullCIM +2024-09-07 16:17:54,295 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,295 [main] TRACE UmlAttribute - created (3448) OTHER_CIM CIM [0..1] attribute nsmAgent::nsmAgent.mibPrefix: NullCIM::NullCIM +2024-09-07 16:17:54,295 [main] ERROR UmlAttribute - unclassified CIM attribute: (3449) OTHER_CIM CIM [0..1] null nsmAgent::nsmAgent.objectIdentity: NullCIM::NullCIM +2024-09-07 16:17:54,295 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,295 [main] TRACE UmlAttribute - created (3449) OTHER_CIM CIM [0..1] attribute nsmAgent::nsmAgent.objectIdentity: NullCIM::NullCIM +2024-09-07 16:17:54,295 [main] ERROR UmlAttribute - unclassified CIM attribute: (3450) OTHER_CIM CIM [0..1] null nsmAgent::nsmAgent.objectBranchId: NullCIM::NullCIM +2024-09-07 16:17:54,296 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,296 [main] TRACE UmlAttribute - created (3450) OTHER_CIM CIM [0..1] attribute nsmAgent::nsmAgent.objectBranchId: NullCIM::NullCIM +2024-09-07 16:17:54,296 [main] ERROR UmlAttribute - unclassified CIM attribute: (3979) OTHER_CIM CIM [0..1] null nsmAgent::nsmEntry.mibPrefix: NullCIM::NullCIM +2024-09-07 16:17:54,296 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,296 [main] TRACE UmlAttribute - created (3979) OTHER_CIM CIM [0..1] attribute nsmAgent::nsmEntry.mibPrefix: NullCIM::NullCIM +2024-09-07 16:17:54,296 [main] ERROR UmlAttribute - unclassified CIM attribute: (3980) OTHER_CIM CIM [0..1] null nsmAgent::nsmEntry.objectIdentity: NullCIM::NullCIM +2024-09-07 16:17:54,296 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,296 [main] TRACE UmlAttribute - created (3980) OTHER_CIM CIM [0..1] attribute nsmAgent::nsmEntry.objectIdentity: NullCIM::NullCIM +2024-09-07 16:17:54,296 [main] ERROR UmlAttribute - unclassified CIM attribute: (3981) OTHER_CIM CIM [0..1] null nsmAgent::nsmEntry.objectBranchId: NullCIM::NullCIM +2024-09-07 16:17:54,296 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,296 [main] TRACE UmlAttribute - created (3981) OTHER_CIM CIM [0..1] attribute nsmAgent::nsmEntry.objectBranchId: NullCIM::NullCIM +2024-09-07 16:17:54,297 [main] ERROR UmlAttribute - unclassified CIM attribute: (3443) OTHER_CIM CIM [0..1] null nsmAgent::nsmEvent.mibPrefix: NullCIM::NullCIM +2024-09-07 16:17:54,297 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,297 [main] TRACE UmlAttribute - created (3443) OTHER_CIM CIM [0..1] attribute nsmAgent::nsmEvent.mibPrefix: NullCIM::NullCIM +2024-09-07 16:17:54,297 [main] ERROR UmlAttribute - unclassified CIM attribute: (3444) OTHER_CIM CIM [0..1] null nsmAgent::nsmEvent.objectIdentity: NullCIM::NullCIM +2024-09-07 16:17:54,297 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,297 [main] TRACE UmlAttribute - created (3444) OTHER_CIM CIM [0..1] attribute nsmAgent::nsmEvent.objectIdentity: NullCIM::NullCIM +2024-09-07 16:17:54,297 [main] ERROR UmlAttribute - unclassified CIM attribute: (3445) OTHER_CIM CIM [0..1] null nsmAgent::nsmEvent.objectBranchId: NullCIM::NullCIM +2024-09-07 16:17:54,297 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,298 [main] TRACE UmlAttribute - created (3445) OTHER_CIM CIM [0..1] attribute nsmAgent::nsmEvent.objectBranchId: NullCIM::NullCIM +2024-09-07 16:17:54,298 [main] ERROR UmlAttribute - unclassified CIM attribute: (3455) OTHER_CIM CIM [0..1] null nsmAgent::performance.Version: NullCIM::NullCIM = 0 +2024-09-07 16:17:54,298 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 16:17:54,298 [main] TRACE UmlAttribute - created (3455) OTHER_CIM CIM [0..1] attribute nsmAgent::performance.Version: NullCIM::NullCIM = 0 +2024-09-07 16:17:54,298 [main] ERROR UmlAttribute - unclassified CIM attribute: (3447) OTHER_CIM CIM [0..1] null nsmAgent::protocol.Version: NullCIM::NullCIM = 0 +2024-09-07 16:17:54,298 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 16:17:54,298 [main] TRACE UmlAttribute - created (3447) OTHER_CIM CIM [0..1] attribute nsmAgent::protocol.Version: NullCIM::NullCIM = 0 +2024-09-07 16:17:54,298 [main] ERROR UmlAttribute - unclassified CIM attribute: (3446) OTHER_CIM CIM [0..1] null nsmAgent::security.Version: NullCIM::NullCIM = 0 +2024-09-07 16:17:54,298 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 16:17:54,298 [main] TRACE UmlAttribute - created (3446) OTHER_CIM CIM [0..1] attribute nsmAgent::security.Version: NullCIM::NullCIM = 0 +2024-09-07 16:17:54,298 [main] ERROR UmlAttribute - unclassified CIM attribute: (3456) OTHER_CIM CIM [0..1] null nsmAgent::setvalue.Version: NullCIM::NullCIM = 0 +2024-09-07 16:17:54,299 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 16:17:54,299 [main] TRACE UmlAttribute - created (3456) OTHER_CIM CIM [0..1] attribute nsmAgent::setvalue.Version: NullCIM::NullCIM = 0 +2024-09-07 16:17:54,299 [main] ERROR UmlAttribute - unclassified CIM attribute: (3457) OTHER_CIM CIM [0..1] null nsmAgent::table.Version: NullCIM::NullCIM = 0 +2024-09-07 16:17:54,299 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 16:17:54,299 [main] TRACE UmlAttribute - created (3457) OTHER_CIM CIM [0..1] attribute nsmAgent::table.Version: NullCIM::NullCIM = 0 +2024-09-07 16:17:54,299 [main] ERROR UmlAttribute - unclassified CIM attribute: (3610) OTHER_CIM CIM [0..1] null nsmAgent::trap.Version: NullCIM::NullCIM = 0 +2024-09-07 16:17:54,299 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 16:17:54,299 [main] TRACE UmlAttribute - created (3610) OTHER_CIM CIM [0..1] attribute nsmAgent::trap.Version: NullCIM::NullCIM = 0 +2024-09-07 16:17:54,299 [main] ERROR UmlAttribute - unclassified CIM attribute: (2741) OTHER_CIM CIM [1..1] null BaseTypes::AbsoluteDateTime.value: NullCIM::NullCIM = OCTET STRING (SIZE(8..11)) +2024-09-07 16:17:54,299 [main] TRACE ValueRange - 'OCTET STRING (SIZE(8..11))' has no separator indicating range. +2024-09-07 16:17:54,299 [main] TRACE UmlAttribute - created (2741) OTHER_CIM CIM [1..1] attribute BaseTypes::AbsoluteDateTime.value: NullCIM::NullCIM = OCTET STRING (SIZE(8..11)) +2024-09-07 16:17:54,300 [main] ERROR UmlAttribute - unclassified CIM attribute: (2679) OTHER_CIM CIM [1..1] null BaseTypes::Counter32 .value: NullCIM::NullCIM = Counter32 +2024-09-07 16:17:54,300 [main] TRACE ValueRange - 'Counter32' has no separator indicating range. +2024-09-07 16:17:54,300 [main] TRACE UmlAttribute - created (2679) OTHER_CIM CIM [1..1] attribute BaseTypes::Counter32 .value: NullCIM::NullCIM = Counter32 +2024-09-07 16:17:54,300 [main] ERROR UmlAttribute - unclassified CIM attribute: (2681) OTHER_CIM CIM [1..1] null BaseTypes::DateAndTime.value: NullCIM::NullCIM = OCTET STRING (SIZE(8..11)) +2024-09-07 16:17:54,300 [main] TRACE ValueRange - 'OCTET STRING (SIZE(8..11))' has no separator indicating range. +2024-09-07 16:17:54,300 [main] TRACE UmlAttribute - created (2681) OTHER_CIM CIM [1..1] attribute BaseTypes::DateAndTime.value: NullCIM::NullCIM = OCTET STRING (SIZE(8..11)) +2024-09-07 16:17:54,300 [main] ERROR UmlAttribute - unclassified CIM attribute: (2683) OTHER_CIM CIM [1..1] null BaseTypes::DisplayString.value: NullCIM::NullCIM = DisplayString +2024-09-07 16:17:54,300 [main] TRACE ValueRange - 'DisplayString' has no separator indicating range. +2024-09-07 16:17:54,300 [main] TRACE UmlAttribute - created (2683) OTHER_CIM CIM [1..1] attribute BaseTypes::DisplayString.value: NullCIM::NullCIM = DisplayString +2024-09-07 16:17:54,300 [main] ERROR UmlAttribute - unclassified CIM attribute: (2682) OTHER_CIM CIM [1..1] null BaseTypes::Float32TC.value: NullCIM::NullCIM = OCTET STRING (SIZE(4)) +2024-09-07 16:17:54,300 [main] TRACE ValueRange - 'OCTET STRING (SIZE(4))' has no separator indicating range. +2024-09-07 16:17:54,300 [main] TRACE UmlAttribute - created (2682) OTHER_CIM CIM [1..1] attribute BaseTypes::Float32TC.value: NullCIM::NullCIM = OCTET STRING (SIZE(4)) +2024-09-07 16:17:54,301 [main] ERROR UmlAttribute - unclassified CIM attribute: (2678) OTHER_CIM CIM [1..1] null BaseTypes::Gauge32.value: NullCIM::NullCIM = Gauge32 +2024-09-07 16:17:54,301 [main] TRACE ValueRange - 'Gauge32' has no separator indicating range. +2024-09-07 16:17:54,301 [main] TRACE UmlAttribute - created (2678) OTHER_CIM CIM [1..1] attribute BaseTypes::Gauge32.value: NullCIM::NullCIM = Gauge32 +2024-09-07 16:17:54,301 [main] ERROR UmlAttribute - unclassified CIM attribute: (3682) OTHER_CIM CIM [1..1] null BaseTypes::InetAddress.value: NullCIM::NullCIM = DisplayString (SIZE(0..255)) +2024-09-07 16:17:54,301 [main] TRACE ValueRange - 'DisplayString (SIZE(0..255))' has no separator indicating range. +2024-09-07 16:17:54,301 [main] TRACE UmlAttribute - created (3682) OTHER_CIM CIM [1..1] attribute BaseTypes::InetAddress.value: NullCIM::NullCIM = DisplayString (SIZE(0..255)) +2024-09-07 16:17:54,301 [main] ERROR UmlAttribute - unclassified CIM attribute: (3719) OTHER_CIM CIM [1..1] null BaseTypes::MacAddress.value: NullCIM::NullCIM = DisplayString (SIZE(0..255)) +2024-09-07 16:17:54,301 [main] TRACE ValueRange - 'DisplayString (SIZE(0..255))' has no separator indicating range. +2024-09-07 16:17:54,301 [main] TRACE UmlAttribute - created (3719) OTHER_CIM CIM [1..1] attribute BaseTypes::MacAddress.value: NullCIM::NullCIM = DisplayString (SIZE(0..255)) +2024-09-07 16:17:54,301 [main] ERROR UmlAttribute - unclassified CIM attribute: (3723) OTHER_CIM CIM [1..1] null BaseTypes::EntityIndex.value: NullCIM::NullCIM = Integer32 +2024-09-07 16:17:54,301 [main] TRACE ValueRange - 'Integer32' has no separator indicating range. +2024-09-07 16:17:54,301 [main] TRACE UmlAttribute - created (3723) OTHER_CIM CIM [1..1] attribute BaseTypes::EntityIndex.value: NullCIM::NullCIM = Integer32 +2024-09-07 16:17:54,302 [main] ERROR UmlAttribute - unclassified CIM attribute: (1397) OTHER_CIM CIM [1..1] null BaseTypes::Integer32.value: NullCIM::NullCIM = Integer32 +2024-09-07 16:17:54,302 [main] TRACE ValueRange - 'Integer32' has no separator indicating range. +2024-09-07 16:17:54,302 [main] TRACE UmlAttribute - created (1397) OTHER_CIM CIM [1..1] attribute BaseTypes::Integer32.value: NullCIM::NullCIM = Integer32 +2024-09-07 16:17:54,302 [main] ERROR UmlAttribute - unclassified CIM attribute: (3721) OTHER_CIM CIM [1..1] null BaseTypes::Unsigned32.value: NullCIM::NullCIM = Integer32 +2024-09-07 16:17:54,302 [main] TRACE ValueRange - 'Integer32' has no separator indicating range. +2024-09-07 16:17:54,302 [main] TRACE UmlAttribute - created (3721) OTHER_CIM CIM [1..1] attribute BaseTypes::Unsigned32.value: NullCIM::NullCIM = Integer32 +2024-09-07 16:17:54,302 [main] ERROR UmlAttribute - unclassified CIM attribute: (2680) OTHER_CIM CIM [1..1] null BaseTypes::TimeTicks.value: NullCIM::NullCIM = TimeTicks +2024-09-07 16:17:54,302 [main] TRACE ValueRange - 'TimeTicks' has no separator indicating range. +2024-09-07 16:17:54,302 [main] TRACE UmlAttribute - created (2680) OTHER_CIM CIM [1..1] attribute BaseTypes::TimeTicks.value: NullCIM::NullCIM = TimeTicks +2024-09-07 16:17:54,302 [main] ERROR UmlAttribute - unclassified CIM attribute: (2685) OTHER_CIM CIM [1..1] null BaseTypes::TruthValue.value: NullCIM::NullCIM = TruthValue +2024-09-07 16:17:54,302 [main] TRACE ValueRange - 'TruthValue' has no separator indicating range. +2024-09-07 16:17:54,302 [main] TRACE UmlAttribute - created (2685) OTHER_CIM CIM [1..1] attribute BaseTypes::TruthValue.value: NullCIM::NullCIM = TruthValue +2024-09-07 16:17:54,302 [main] ERROR UmlAttribute - unclassified CIM attribute: (2987) OTHER_CIM CIM [1..1] null Abstract Types::BooleanValue.Value: BaseTypes::TruthValue +2024-09-07 16:17:54,302 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,303 [main] TRACE UmlAttribute - created (2987) OTHER_CIM CIM [1..1] attribute Abstract Types::BooleanValue.Value: BaseTypes::TruthValue +2024-09-07 16:17:54,303 [main] ERROR UmlAttribute - unclassified CIM attribute: (2915) OTHER_CIM CIM [1..1] null Abstract Types::BooleanValueTs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 16:17:54,303 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,303 [main] TRACE UmlAttribute - created (2915) OTHER_CIM CIM [1..1] attribute Abstract Types::BooleanValueTs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 16:17:54,303 [main] ERROR UmlAttribute - unclassified CIM attribute: (2916) OTHER_CIM CIM [1..1] null Abstract Types::BooleanValueTs.Value: BaseTypes::TruthValue +2024-09-07 16:17:54,303 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,303 [main] TRACE UmlAttribute - created (2916) OTHER_CIM CIM [1..1] attribute Abstract Types::BooleanValueTs.Value: BaseTypes::TruthValue +2024-09-07 16:17:54,303 [main] ERROR UmlAttribute - unclassified CIM attribute: (2921) OTHER_CIM CIM [1..1] null Abstract Types::CounterTs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 16:17:54,303 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,304 [main] TRACE UmlAttribute - created (2921) OTHER_CIM CIM [1..1] attribute Abstract Types::CounterTs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 16:17:54,304 [main] ERROR UmlAttribute - unclassified CIM attribute: (2922) OTHER_CIM CIM [1..1] null Abstract Types::CounterTs.Value: BaseTypes::Counter32 +2024-09-07 16:17:54,304 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,304 [main] TRACE UmlAttribute - created (2922) OTHER_CIM CIM [1..1] attribute Abstract Types::CounterTs.Value: BaseTypes::Counter32 +2024-09-07 16:17:54,304 [main] ERROR UmlAttribute - unclassified CIM attribute: (3004) OTHER_CIM CIM [1..1] null Abstract Types::CntRs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 16:17:54,304 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,304 [main] TRACE UmlAttribute - created (3004) OTHER_CIM CIM [1..1] attribute Abstract Types::CntRs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 16:17:54,304 [main] ERROR UmlAttribute - unclassified CIM attribute: (3003) OTHER_CIM CIM [1..1] null Abstract Types::CntRs.Value: BaseTypes::TruthValue +2024-09-07 16:17:54,304 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,304 [main] TRACE UmlAttribute - created (3003) OTHER_CIM CIM [1..1] attribute Abstract Types::CntRs.Value: BaseTypes::TruthValue +2024-09-07 16:17:54,304 [main] ERROR UmlAttribute - unclassified CIM attribute: (2937) OTHER_CIM CIM [1..1] null Abstract Types::Floating.Value: BaseTypes::Float32TC +2024-09-07 16:17:54,304 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,304 [main] TRACE UmlAttribute - created (2937) OTHER_CIM CIM [1..1] attribute Abstract Types::Floating.Value: BaseTypes::Float32TC +2024-09-07 16:17:54,305 [main] ERROR UmlAttribute - unclassified CIM attribute: (2939) OTHER_CIM CIM [1..1] null Abstract Types::FloatingTs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 16:17:54,305 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,305 [main] TRACE UmlAttribute - created (2939) OTHER_CIM CIM [1..1] attribute Abstract Types::FloatingTs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 16:17:54,305 [main] ERROR UmlAttribute - unclassified CIM attribute: (2940) OTHER_CIM CIM [1..1] null Abstract Types::FloatingTs.Value: BaseTypes::Float32TC +2024-09-07 16:17:54,305 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,305 [main] TRACE UmlAttribute - created (2940) OTHER_CIM CIM [1..1] attribute Abstract Types::FloatingTs.Value: BaseTypes::Float32TC +2024-09-07 16:17:54,305 [main] ERROR UmlAttribute - unclassified CIM attribute: (3724) OTHER_CIM CIM [1..1] null Abstract Types::EntityIndex.Value: BaseTypes::Unsigned32 +2024-09-07 16:17:54,305 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,306 [main] TRACE UmlAttribute - created (3724) OTHER_CIM CIM [1..1] attribute Abstract Types::EntityIndex.Value: BaseTypes::Unsigned32 +2024-09-07 16:17:54,306 [main] ERROR UmlAttribute - unclassified CIM attribute: (2928) OTHER_CIM CIM [1..1] null Abstract Types::Integer.Value: BaseTypes::Integer32 +2024-09-07 16:17:54,306 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,306 [main] TRACE UmlAttribute - created (2928) OTHER_CIM CIM [1..1] attribute Abstract Types::Integer.Value: BaseTypes::Integer32 +2024-09-07 16:17:54,306 [main] ERROR UmlAttribute - unclassified CIM attribute: (2930) OTHER_CIM CIM [1..1] null Abstract Types::IntegerTs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 16:17:54,306 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,306 [main] TRACE UmlAttribute - created (2930) OTHER_CIM CIM [1..1] attribute Abstract Types::IntegerTs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 16:17:54,306 [main] ERROR UmlAttribute - unclassified CIM attribute: (2931) OTHER_CIM CIM [1..1] null Abstract Types::IntegerTs.Value: BaseTypes::Integer32 +2024-09-07 16:17:54,307 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,307 [main] TRACE UmlAttribute - created (2931) OTHER_CIM CIM [1..1] attribute Abstract Types::IntegerTs.Value: BaseTypes::Integer32 +2024-09-07 16:17:54,307 [main] ERROR UmlAttribute - unclassified CIM attribute: (3017) OTHER_CIM CIM [1..1] null Abstract Types::InetAddress.Value: BaseTypes::InetAddress +2024-09-07 16:17:54,307 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,307 [main] TRACE UmlAttribute - created (3017) OTHER_CIM CIM [1..1] attribute Abstract Types::InetAddress.Value: BaseTypes::InetAddress +2024-09-07 16:17:54,307 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,307 [main] TRACE UmlAttribute - created (3690) OTHER_CIM CIM [1..1] enumeration attribute Abstract Types::InetAddressType.Value: BaseTypes::InetAddressType +2024-09-07 16:17:54,307 [main] ERROR UmlAttribute - unclassified CIM attribute: (3019) OTHER_CIM CIM [1..1] null Abstract Types::MacAddress.Value: BaseTypes::MacAddress +2024-09-07 16:17:54,307 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,308 [main] TRACE UmlAttribute - created (3019) OTHER_CIM CIM [1..1] attribute Abstract Types::MacAddress.Value: BaseTypes::MacAddress +2024-09-07 16:17:54,308 [main] ERROR UmlAttribute - unclassified CIM attribute: (3015) OTHER_CIM CIM [1..1] null Abstract Types::Selector.Value: BaseTypes::DisplayString +2024-09-07 16:17:54,308 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,308 [main] TRACE UmlAttribute - created (3015) OTHER_CIM CIM [1..1] attribute Abstract Types::Selector.Value: BaseTypes::DisplayString +2024-09-07 16:17:54,308 [main] ERROR UmlAttribute - unclassified CIM attribute: (3083) OTHER_CIM CIM [1..1] null Abstract Types::Timestamp.TimeStamp: BaseTypes::DateAndTime +2024-09-07 16:17:54,308 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,308 [main] TRACE UmlAttribute - created (3083) OTHER_CIM CIM [1..1] attribute Abstract Types::Timestamp.TimeStamp: BaseTypes::DateAndTime +2024-09-07 16:17:54,308 [main] ERROR UmlAttribute - unclassified CIM attribute: (2989) OTHER_CIM CIM [1..1] null Abstract Types::CharString.Value: BaseTypes::DisplayString +2024-09-07 16:17:54,308 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,308 [main] TRACE UmlAttribute - created (2989) OTHER_CIM CIM [1..1] attribute Abstract Types::CharString.Value: BaseTypes::DisplayString +2024-09-07 16:17:54,308 [main] ERROR UmlAttribute - unclassified CIM attribute: (3380) OTHER_CIM CIM [1..1] null Abstract Types::CharStringTs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 16:17:54,308 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,309 [main] TRACE UmlAttribute - created (3380) OTHER_CIM CIM [1..1] attribute Abstract Types::CharStringTs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 16:17:54,309 [main] ERROR UmlAttribute - unclassified CIM attribute: (3379) OTHER_CIM CIM [1..1] null Abstract Types::CharStringTs.Value: BaseTypes::DisplayString +2024-09-07 16:17:54,309 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,309 [main] TRACE UmlAttribute - created (3379) OTHER_CIM CIM [1..1] attribute Abstract Types::CharStringTs.Value: BaseTypes::DisplayString +2024-09-07 16:17:54,309 [main] ERROR UmlAttribute - unclassified CIM attribute: (2991) OTHER_CIM CIM [1..1] null EnumeratedTypes::AppDatStType.TimeStamp: BaseTypes::DateAndTime +2024-09-07 16:17:54,309 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,309 [main] TRACE UmlAttribute - created (2991) OTHER_CIM CIM [1..1] attribute EnumeratedTypes::AppDatStType.TimeStamp: BaseTypes::DateAndTime +2024-09-07 16:17:54,309 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,309 [main] TRACE UmlAttribute - created (2992) OTHER_CIM CIM [1..1] enumeration attribute <> EnumeratedTypes::AppDatStType.Value: EnumeratedTypes::AppDatStKind +2024-09-07 16:17:54,309 [main] ERROR UmlAttribute - unclassified CIM attribute: (4116) OTHER_CIM CIM [1..1] null EnumeratedTypes::PhyHealthType.TimeStamp: BaseTypes::DateAndTime +2024-09-07 16:17:54,309 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,309 [main] TRACE UmlAttribute - created (4116) OTHER_CIM CIM [1..1] attribute EnumeratedTypes::PhyHealthType.TimeStamp: BaseTypes::DateAndTime +2024-09-07 16:17:54,310 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,310 [main] TRACE UmlAttribute - created (4117) OTHER_CIM CIM [1..1] enumeration attribute <> EnumeratedTypes::PhyHealthType.Value: EnumeratedTypes::PhyHealthKind +2024-09-07 16:17:54,310 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,310 [main] TRACE UmlAttribute - created (3367) OTHER_CIM CIM [1..1] enumeration attribute EnumeratedTypes::ExtType.Value: EnumeratedTypes::ExtKind +2024-09-07 16:17:54,310 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,310 [main] TRACE UmlAttribute - created (3395) OTHER_CIM CIM [1..1] enumeration attribute EnumeratedTypes::IntType.Value: EnumeratedTypes::IntKind +2024-09-07 16:17:54,310 [main] ERROR UmlAttribute - unclassified CIM attribute: (3705) OTHER_CIM CIM [1..1] null EnumeratedTypes::EventType.TimeStamp: BaseTypes::DateAndTime +2024-09-07 16:17:54,310 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,310 [main] TRACE UmlAttribute - created (3705) OTHER_CIM CIM [1..1] attribute EnumeratedTypes::EventType.TimeStamp: BaseTypes::DateAndTime +2024-09-07 16:17:54,310 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,311 [main] TRACE UmlAttribute - created (3704) OTHER_CIM CIM [1..1] enumeration attribute EnumeratedTypes::EventType.Value: EnumeratedTypes::EventKind +2024-09-07 16:17:54,311 [main] ERROR UmlAttribute - unclassified CIM attribute: (3378) OTHER_CIM CIM [1..1] null EnumeratedTypes::PSPAccType.Timestamp: BaseTypes::DateAndTime +2024-09-07 16:17:54,311 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,311 [main] TRACE UmlAttribute - created (3378) OTHER_CIM CIM [1..1] attribute EnumeratedTypes::PSPAccType.Timestamp: BaseTypes::DateAndTime +2024-09-07 16:17:54,311 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,311 [main] TRACE UmlAttribute - created (3377) OTHER_CIM CIM [1..1] enumeration attribute EnumeratedTypes::PSPAccType.Value: EnumeratedTypes::PSPAccKind +2024-09-07 16:17:54,311 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,311 [main] TRACE UmlAttribute - created (3011) OTHER_CIM CIM [1..1] enumeration attribute EnumeratedTypes::ProtIdType.Value: EnumeratedTypes::ProtIdKind +2024-09-07 16:17:54,311 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,311 [main] TRACE UmlAttribute - created (3006) OTHER_CIM CIM [1..1] enumeration attribute EnumeratedTypes::TimSyncIssueType.Value: EnumeratedTypes::TimSyncIssueKind +2024-09-07 16:17:54,311 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,311 [main] TRACE UmlAttribute - created (3929) OTHER_CIM CIM [1..1] enumeration attribute EnumeratedTypes::SecurityProfileType.Value: EnumeratedTypes::SecurityProfileKind +2024-09-07 16:17:54,311 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,311 [main] TRACE UmlAttribute - created (3008) OTHER_CIM CIM [1..1] enumeration attribute EnumeratedTypes::TimSyncSrcType.Value: EnumeratedTypes::TimSyncSrcKind +2024-09-07 16:17:54,311 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,311 [main] TRACE UmlAttribute - created (3010) OTHER_CIM CIM [1..1] enumeration attribute EnumeratedTypes::LnkType.Value: EnumeratedTypes::LnkKind +2024-09-07 16:17:54,311 [main] ERROR UmlAttribute - unclassified CIM attribute: (2673) OTHER_CIM CIM const [1..1] null <> Environmental Agent::Environmental.AppDatSt: EnumeratedTypes::AppDatStType +2024-09-07 16:17:54,312 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,312 [main] TRACE UmlAttribute - created (2673) OTHER_CIM CIM const [1..1] attribute <> Environmental Agent::Environmental.AppDatSt: EnumeratedTypes::AppDatStType +2024-09-07 16:17:54,312 [main] ERROR UmlAttribute - unclassified CIM attribute: (596) OTHER_CIM CIM [0..1] null <> Environmental Agent::Environmental.CntRs: Abstract Types::CntRs +2024-09-07 16:17:54,312 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,312 [main] TRACE UmlAttribute - created (596) OTHER_CIM CIM [0..1] attribute <> Environmental Agent::Environmental.CntRs: Abstract Types::CntRs +2024-09-07 16:17:54,312 [main] ERROR UmlAttribute - unclassified CIM attribute: (3707) OTHER_CIM CIM const [1..1] null <> Environmental Agent::Environmental.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:17:54,312 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,312 [main] TRACE UmlAttribute - created (3707) OTHER_CIM CIM const [1..1] attribute <> Environmental Agent::Environmental.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:17:54,312 [main] ERROR UmlAttribute - unclassified CIM attribute: (2257) OTHER_CIM CIM const [0..1] null <> Environmental Agent::Environmental.PSPBld: Abstract Types::BooleanValueTs +2024-09-07 16:17:54,312 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,312 [main] TRACE UmlAttribute - created (2257) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::Environmental.PSPBld: Abstract Types::BooleanValueTs +2024-09-07 16:17:54,312 [main] ERROR UmlAttribute - unclassified CIM attribute: (2255) OTHER_CIM CIM const [1..1] null <> Environmental Agent::Environmental.PSPIed: Abstract Types::BooleanValueTs +2024-09-07 16:17:54,313 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,313 [main] TRACE UmlAttribute - created (2255) OTHER_CIM CIM const [1..1] attribute <> Environmental Agent::Environmental.PSPIed: Abstract Types::BooleanValueTs +2024-09-07 16:17:54,313 [main] ERROR UmlAttribute - unclassified CIM attribute: (2256) OTHER_CIM CIM const [1..1] null <> Environmental Agent::Environmental.PSPPanel: Abstract Types::BooleanValueTs +2024-09-07 16:17:54,313 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,313 [main] TRACE UmlAttribute - created (2256) OTHER_CIM CIM const [1..1] attribute <> Environmental Agent::Environmental.PSPPanel: Abstract Types::BooleanValueTs +2024-09-07 16:17:54,313 [main] ERROR UmlAttribute - unclassified CIM attribute: (2258) OTHER_CIM CIM const [0..1] null <> Environmental Agent::Environmental.PSPPerimeter: Abstract Types::BooleanValueTs +2024-09-07 16:17:54,313 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,313 [main] TRACE UmlAttribute - created (2258) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::Environmental.PSPPerimeter: Abstract Types::BooleanValueTs +2024-09-07 16:17:54,313 [main] ERROR UmlAttribute - unclassified CIM attribute: (152) OTHER_CIM CIM [0..*] null <> Environmental Agent::Environmental.PSUP: Environmental Agent::PSUPEntry +2024-09-07 16:17:54,313 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,313 [main] TRACE UmlAttribute - created (152) OTHER_CIM CIM [0..*] attribute <
> Environmental Agent::Environmental.PSUP: Environmental Agent::PSUPEntry +2024-09-07 16:17:54,313 [main] ERROR UmlAttribute - unclassified CIM attribute: (2260) OTHER_CIM CIM const [0..1] null <> Environmental Agent::Environmental.PSUPLos: Abstract Types::Integer +2024-09-07 16:17:54,314 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,314 [main] TRACE UmlAttribute - created (2260) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::Environmental.PSUPLos: Abstract Types::Integer +2024-09-07 16:17:54,314 [main] ERROR UmlAttribute - unclassified CIM attribute: (2259) OTHER_CIM CIM const [1..1] null <> Environmental Agent::Environmental.PSUPOn: Abstract Types::IntegerTs +2024-09-07 16:17:54,314 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,314 [main] TRACE UmlAttribute - created (2259) OTHER_CIM CIM const [1..1] attribute <> Environmental Agent::Environmental.PSUPOn: Abstract Types::IntegerTs +2024-09-07 16:17:54,314 [main] ERROR UmlAttribute - unclassified CIM attribute: (3622) OTHER_CIM CIM [0..1] null <> Environmental Agent::Environmental.SecurityNotification: Environmental Agent::SecurityNotification +2024-09-07 16:17:54,314 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,314 [main] TRACE UmlAttribute - created (3622) OTHER_CIM CIM [0..1] attribute <> Environmental Agent::Environmental.SecurityNotification: Environmental Agent::SecurityNotification +2024-09-07 16:17:54,314 [main] ERROR UmlAttribute - unclassified CIM attribute: (3621) OTHER_CIM CIM [0..1] null <> Environmental Agent::Environmental.StateNotification: Environmental Agent::Notification +2024-09-07 16:17:54,314 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,314 [main] TRACE UmlAttribute - created (3621) OTHER_CIM CIM [0..1] attribute <> Environmental Agent::Environmental.StateNotification: Environmental Agent::Notification +2024-09-07 16:17:54,314 [main] ERROR UmlAttribute - unclassified CIM attribute: (4501) OTHER_CIM CIM [1..1] null <> Environmental Agent::Environmental.PSPRemote: Abstract Types::BooleanValueTs +2024-09-07 16:17:54,314 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,315 [main] TRACE UmlAttribute - created (4501) OTHER_CIM CIM [1..1] attribute <> Environmental Agent::Environmental.PSPRemote: Abstract Types::BooleanValueTs +2024-09-07 16:17:54,315 [main] ERROR UmlAttribute - unclassified CIM attribute: (2663) OTHER_CIM CIM [0..1] null <> Environmental Agent::PSUPEntry.CntRs: Abstract Types::CntRs +2024-09-07 16:17:54,315 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,315 [main] TRACE UmlAttribute - created (2663) OTHER_CIM CIM [0..1] attribute <> Environmental Agent::PSUPEntry.CntRs: Abstract Types::CntRs +2024-09-07 16:17:54,315 [main] ERROR UmlAttribute - unclassified CIM attribute: (2671) OTHER_CIM CIM const [0..1] null <> Environmental Agent::PSUPEntry.Descr: Abstract Types::CharString +2024-09-07 16:17:54,315 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,315 [main] TRACE UmlAttribute - created (2671) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::PSUPEntry.Descr: Abstract Types::CharString +2024-09-07 16:17:54,315 [main] ERROR UmlAttribute - unclassified CIM attribute: (3725) OTHER_CIM CIM const [0..1] null <> Environmental Agent::PSUPEntry.ID: Abstract Types::EntityIndex +2024-09-07 16:17:54,315 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,315 [main] TRACE UmlAttribute - created (3725) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::PSUPEntry.ID: Abstract Types::EntityIndex +2024-09-07 16:17:54,315 [main] ERROR UmlAttribute - unclassified CIM attribute: (2670) OTHER_CIM CIM const [0..1] null <> Environmental Agent::PSUPEntry.Name: Abstract Types::CharString +2024-09-07 16:17:54,315 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,315 [main] TRACE UmlAttribute - created (2670) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::PSUPEntry.Name: Abstract Types::CharString +2024-09-07 16:17:54,316 [main] ERROR UmlAttribute - unclassified CIM attribute: (2669) OTHER_CIM CIM const [0..1] null <> Environmental Agent::PSUPEntry.PSUPLos: Abstract Types::BooleanValueTs +2024-09-07 16:17:54,316 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,316 [main] TRACE UmlAttribute - created (2669) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::PSUPEntry.PSUPLos: Abstract Types::BooleanValueTs +2024-09-07 16:17:54,316 [main] ERROR UmlAttribute - unclassified CIM attribute: (2661) OTHER_CIM CIM const [0..1] null <> Environmental Agent::PSUPEntry.PwrLosCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,316 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,316 [main] TRACE UmlAttribute - created (2661) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::PSUPEntry.PwrLosCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,316 [main] ERROR UmlAttribute - unclassified CIM attribute: (2728) OTHER_CIM CIM const [0..1] null <> Environmental Agent::PSUPEntry.PwrOn: Abstract Types::BooleanValueTs +2024-09-07 16:17:54,316 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,316 [main] TRACE UmlAttribute - created (2728) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::PSUPEntry.PwrOn: Abstract Types::BooleanValueTs +2024-09-07 16:17:54,316 [main] ERROR UmlAttribute - unclassified CIM attribute: (3463) OTHER_CIM CIM const [0..1] null <> Environmental Agent::Notification.PSUPLos: Abstract Types::Integer +2024-09-07 16:17:54,316 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,316 [main] TRACE UmlAttribute - created (3463) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::Notification.PSUPLos: Abstract Types::Integer +2024-09-07 16:17:54,317 [main] ERROR UmlAttribute - unclassified CIM attribute: (3462) OTHER_CIM CIM const [0..1] null <> Environmental Agent::Notification.PSUPOn: Abstract Types::IntegerTs +2024-09-07 16:17:54,317 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,317 [main] TRACE UmlAttribute - created (3462) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::Notification.PSUPOn: Abstract Types::IntegerTs +2024-09-07 16:17:54,317 [main] ERROR UmlAttribute - unclassified CIM attribute: (4039) OTHER_CIM CIM const [0..1] null <> Environmental Agent::SecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:17:54,317 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,317 [main] TRACE UmlAttribute - created (4039) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::SecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:17:54,317 [main] ERROR UmlAttribute - unclassified CIM attribute: (3432) OTHER_CIM CIM const [0..1] null <> Environmental Agent::SecurityNotification.PSPBld: Abstract Types::Timestamp +2024-09-07 16:17:54,317 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,317 [main] TRACE UmlAttribute - created (3432) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::SecurityNotification.PSPBld: Abstract Types::Timestamp +2024-09-07 16:17:54,317 [main] ERROR UmlAttribute - unclassified CIM attribute: (3430) OTHER_CIM CIM const [0..1] null <> Environmental Agent::SecurityNotification.PSPIed: Abstract Types::Timestamp +2024-09-07 16:17:54,318 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,318 [main] TRACE UmlAttribute - created (3430) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::SecurityNotification.PSPIed: Abstract Types::Timestamp +2024-09-07 16:17:54,318 [main] ERROR UmlAttribute - unclassified CIM attribute: (3431) OTHER_CIM CIM const [0..1] null <> Environmental Agent::SecurityNotification.PSPPanel: Abstract Types::Timestamp +2024-09-07 16:17:54,318 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,318 [main] TRACE UmlAttribute - created (3431) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::SecurityNotification.PSPPanel: Abstract Types::Timestamp +2024-09-07 16:17:54,318 [main] ERROR UmlAttribute - unclassified CIM attribute: (3433) OTHER_CIM CIM const [0..1] null <> Environmental Agent::SecurityNotification.PSPPerimeter: Abstract Types::Timestamp +2024-09-07 16:17:54,318 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,318 [main] TRACE UmlAttribute - created (3433) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::SecurityNotification.PSPPerimeter: Abstract Types::Timestamp +2024-09-07 16:17:54,318 [main] ERROR UmlAttribute - unclassified CIM attribute: (159) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.AtkCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,318 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,318 [main] TRACE UmlAttribute - created (159) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.AtkCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,318 [main] ERROR UmlAttribute - unclassified CIM attribute: (593) OTHER_CIM CIM [0..1] null <> IED Agent::IED.CntRs: Abstract Types::CntRs +2024-09-07 16:17:54,318 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,319 [main] TRACE UmlAttribute - created (593) OTHER_CIM CIM [0..1] attribute <> IED Agent::IED.CntRs: Abstract Types::CntRs +2024-09-07 16:17:54,319 [main] ERROR UmlAttribute - unclassified CIM attribute: (3365) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.ConfigurationCRC: Abstract Types::IntegerTs +2024-09-07 16:17:54,319 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,319 [main] TRACE UmlAttribute - created (3365) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.ConfigurationCRC: Abstract Types::IntegerTs +2024-09-07 16:17:54,319 [main] ERROR UmlAttribute - unclassified CIM attribute: (3364) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.ConfigurationVersion: Abstract Types::CharStringTs +2024-09-07 16:17:54,319 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,319 [main] TRACE UmlAttribute - created (3364) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.ConfigurationVersion: Abstract Types::CharStringTs +2024-09-07 16:17:54,319 [main] ERROR UmlAttribute - unclassified CIM attribute: (3264) OTHER_CIM CIM [0..*] null <
> IED Agent::IED.CPU: IED Agent::CPUEntry +2024-09-07 16:17:54,319 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,319 [main] TRACE UmlAttribute - created (3264) OTHER_CIM CIM [0..*] attribute <
> IED Agent::IED.CPU: IED Agent::CPUEntry +2024-09-07 16:17:54,319 [main] ERROR UmlAttribute - unclassified CIM attribute: (164) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.CpuUsage: Abstract Types::FloatingTs +2024-09-07 16:17:54,320 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,320 [main] TRACE UmlAttribute - created (164) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.CpuUsage: Abstract Types::FloatingTs +2024-09-07 16:17:54,320 [main] ERROR UmlAttribute - unclassified CIM attribute: (165) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.DataInv: Abstract Types::CounterTs +2024-09-07 16:17:54,320 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,320 [main] TRACE UmlAttribute - created (165) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.DataInv: Abstract Types::CounterTs +2024-09-07 16:17:54,320 [main] ERROR UmlAttribute - unclassified CIM attribute: (1904) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.Descr: Abstract Types::CharString +2024-09-07 16:17:54,320 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,320 [main] TRACE UmlAttribute - created (1904) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.Descr: Abstract Types::CharString +2024-09-07 16:17:54,320 [main] ERROR UmlAttribute - unclassified CIM attribute: (174) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.ExpCerts: Abstract Types::IntegerTs +2024-09-07 16:17:54,320 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,320 [main] TRACE UmlAttribute - created (174) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.ExpCerts: Abstract Types::IntegerTs +2024-09-07 16:17:54,320 [main] ERROR UmlAttribute - unclassified CIM attribute: (3332) OTHER_CIM CIM [0..*] null <
> IED Agent::IED.EXT: IED Agent::EXTEntry +2024-09-07 16:17:54,320 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,320 [main] TRACE UmlAttribute - created (3332) OTHER_CIM CIM [0..*] attribute <
> IED Agent::IED.EXT: IED Agent::EXTEntry +2024-09-07 16:17:54,321 [main] ERROR UmlAttribute - unclassified CIM attribute: (3357) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.FirmwareVersion: Abstract Types::CharStringTs +2024-09-07 16:17:54,321 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,321 [main] TRACE UmlAttribute - created (3357) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.FirmwareVersion: Abstract Types::CharStringTs +2024-09-07 16:17:54,321 [main] ERROR UmlAttribute - unclassified CIM attribute: (1908) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.InternalTemp: Abstract Types::FloatingTs +2024-09-07 16:17:54,321 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,321 [main] TRACE UmlAttribute - created (1908) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.InternalTemp: Abstract Types::FloatingTs +2024-09-07 16:17:54,321 [main] ERROR UmlAttribute - unclassified CIM attribute: (3493) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.LastCPUFail: Abstract Types::IntegerTs +2024-09-07 16:17:54,321 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,321 [main] TRACE UmlAttribute - created (3493) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.LastCPUFail: Abstract Types::IntegerTs +2024-09-07 16:17:54,321 [main] ERROR UmlAttribute - unclassified CIM attribute: (3706) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:17:54,321 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,322 [main] TRACE UmlAttribute - created (3706) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:17:54,322 [main] ERROR UmlAttribute - unclassified CIM attribute: (3494) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.LastEXTFail: Abstract Types::IntegerTs +2024-09-07 16:17:54,322 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,322 [main] TRACE UmlAttribute - created (3494) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.LastEXTFail: Abstract Types::IntegerTs +2024-09-07 16:17:54,323 [main] ERROR UmlAttribute - unclassified CIM attribute: (3492) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.LastSTOREFail: Abstract Types::IntegerTs +2024-09-07 16:17:54,323 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,323 [main] TRACE UmlAttribute - created (3492) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.LastSTOREFail: Abstract Types::IntegerTs +2024-09-07 16:17:54,323 [main] ERROR UmlAttribute - unclassified CIM attribute: (3256) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.Location: Abstract Types::CharString +2024-09-07 16:17:54,323 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,323 [main] TRACE UmlAttribute - created (3256) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.Location: Abstract Types::CharString +2024-09-07 16:17:54,324 [main] ERROR UmlAttribute - unclassified CIM attribute: (3257) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.Maintainer: Abstract Types::CharString +2024-09-07 16:17:54,324 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,324 [main] TRACE UmlAttribute - created (3257) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.Maintainer: Abstract Types::CharString +2024-09-07 16:17:54,324 [main] ERROR UmlAttribute - unclassified CIM attribute: (3388) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.MemTotal: Abstract Types::Integer +2024-09-07 16:17:54,324 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,324 [main] TRACE UmlAttribute - created (3388) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.MemTotal: Abstract Types::Integer +2024-09-07 16:17:54,324 [main] ERROR UmlAttribute - unclassified CIM attribute: (1910) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.MemUsage: Abstract Types::FloatingTs +2024-09-07 16:17:54,324 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,324 [main] TRACE UmlAttribute - created (1910) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.MemUsage: Abstract Types::FloatingTs +2024-09-07 16:17:54,325 [main] ERROR UmlAttribute - unclassified CIM attribute: (3255) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.MIBVersion: Abstract Types::CharString +2024-09-07 16:17:54,325 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,325 [main] TRACE UmlAttribute - created (3255) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.MIBVersion: Abstract Types::CharString +2024-09-07 16:17:54,325 [main] ERROR UmlAttribute - unclassified CIM attribute: (167) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.MisEvCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,325 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,325 [main] TRACE UmlAttribute - created (167) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.MisEvCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,325 [main] ERROR UmlAttribute - unclassified CIM attribute: (1913) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.Name: Abstract Types::CharString +2024-09-07 16:17:54,325 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,325 [main] TRACE UmlAttribute - created (1913) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.Name: Abstract Types::CharString +2024-09-07 16:17:54,325 [main] ERROR UmlAttribute - unclassified CIM attribute: (3718) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.NearToExpCerts: Abstract Types::IntegerTs +2024-09-07 16:17:54,325 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,325 [main] TRACE UmlAttribute - created (3718) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.NearToExpCerts: Abstract Types::IntegerTs +2024-09-07 16:17:54,325 [main] ERROR UmlAttribute - unclassified CIM attribute: (177) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.NvStore: Abstract Types::FloatingTs +2024-09-07 16:17:54,325 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,326 [main] TRACE UmlAttribute - created (177) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.NvStore: Abstract Types::FloatingTs +2024-09-07 16:17:54,326 [main] ERROR UmlAttribute - unclassified CIM attribute: (178) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.NvStoreRem: Abstract Types::FloatingTs +2024-09-07 16:17:54,326 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,326 [main] TRACE UmlAttribute - created (178) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.NvStoreRem: Abstract Types::FloatingTs +2024-09-07 16:17:54,326 [main] ERROR UmlAttribute - unclassified CIM attribute: (157) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.PhyHealth: EnumeratedTypes::PhyHealthType +2024-09-07 16:17:54,326 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,326 [main] TRACE UmlAttribute - created (157) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.PhyHealth: EnumeratedTypes::PhyHealthType +2024-09-07 16:17:54,326 [main] ERROR UmlAttribute - unclassified CIM attribute: (158) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.PhyHealthChgCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,326 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,326 [main] TRACE UmlAttribute - created (158) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.PhyHealthChgCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,326 [main] ERROR UmlAttribute - unclassified CIM attribute: (3437) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.RBACDbUpdate: Abstract Types::CharStringTs +2024-09-07 16:17:54,327 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,327 [main] TRACE UmlAttribute - created (3437) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.RBACDbUpdate: Abstract Types::CharStringTs +2024-09-07 16:17:54,327 [main] ERROR UmlAttribute - unclassified CIM attribute: (176) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.RevCerts: Abstract Types::IntegerTs +2024-09-07 16:17:54,327 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,327 [main] TRACE UmlAttribute - created (176) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.RevCerts: Abstract Types::IntegerTs +2024-09-07 16:17:54,327 [main] ERROR UmlAttribute - unclassified CIM attribute: (3479) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.RevCheckFail: Abstract Types::CounterTs +2024-09-07 16:17:54,327 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,327 [main] TRACE UmlAttribute - created (3479) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.RevCheckFail: Abstract Types::CounterTs +2024-09-07 16:17:54,327 [main] ERROR UmlAttribute - unclassified CIM attribute: (3620) OTHER_CIM CIM [0..1] null <> IED Agent::IED.SecurityNotification: IED Agent::SecurityNotification +2024-09-07 16:17:54,328 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,328 [main] TRACE UmlAttribute - created (3620) OTHER_CIM CIM [0..1] attribute <> IED Agent::IED.SecurityNotification: IED Agent::SecurityNotification +2024-09-07 16:17:54,328 [main] ERROR UmlAttribute - unclassified CIM attribute: (3619) OTHER_CIM CIM [0..1] null <> IED Agent::IED.StateNotification: IED Agent::Notification +2024-09-07 16:17:54,328 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,328 [main] TRACE UmlAttribute - created (3619) OTHER_CIM CIM [0..1] attribute <> IED Agent::IED.StateNotification: IED Agent::Notification +2024-09-07 16:17:54,328 [main] ERROR UmlAttribute - unclassified CIM attribute: (3387) OTHER_CIM CIM [0..*] null <
> IED Agent::IED.STORE: IED Agent::STOREEntry +2024-09-07 16:17:54,328 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,328 [main] TRACE UmlAttribute - created (3387) OTHER_CIM CIM [0..*] attribute <
> IED Agent::IED.STORE: IED Agent::STOREEntry +2024-09-07 16:17:54,328 [main] ERROR UmlAttribute - unclassified CIM attribute: (4118) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.SvcViol: Abstract Types::CounterTs +2024-09-07 16:17:54,328 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,328 [main] TRACE UmlAttribute - created (4118) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.SvcViol: Abstract Types::CounterTs +2024-09-07 16:17:54,329 [main] ERROR UmlAttribute - unclassified CIM attribute: (3964) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.Watchdog: Abstract Types::CounterTs +2024-09-07 16:17:54,329 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,329 [main] TRACE UmlAttribute - created (3964) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.Watchdog: Abstract Types::CounterTs +2024-09-07 16:17:54,329 [main] ERROR UmlAttribute - unclassified CIM attribute: (2217) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.WrmStrCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,330 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,330 [main] TRACE UmlAttribute - created (2217) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.WrmStrCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,330 [main] ERROR UmlAttribute - unclassified CIM attribute: (3261) OTHER_CIM CIM [0..1] null <> IED Agent::CPUEntry.CntRs: Abstract Types::CntRs +2024-09-07 16:17:54,330 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,330 [main] TRACE UmlAttribute - created (3261) OTHER_CIM CIM [0..1] attribute <> IED Agent::CPUEntry.CntRs: Abstract Types::CntRs +2024-09-07 16:17:54,330 [main] ERROR UmlAttribute - unclassified CIM attribute: (3260) OTHER_CIM CIM const [0..1] null <> IED Agent::CPUEntry.Descr: Abstract Types::CharString +2024-09-07 16:17:54,330 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,330 [main] TRACE UmlAttribute - created (3260) OTHER_CIM CIM const [0..1] attribute <> IED Agent::CPUEntry.Descr: Abstract Types::CharString +2024-09-07 16:17:54,331 [main] ERROR UmlAttribute - unclassified CIM attribute: (3262) OTHER_CIM CIM const [0..1] null <> IED Agent::CPUEntry.Faulty: Abstract Types::BooleanValueTs +2024-09-07 16:17:54,331 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,331 [main] TRACE UmlAttribute - created (3262) OTHER_CIM CIM const [0..1] attribute <> IED Agent::CPUEntry.Faulty: Abstract Types::BooleanValueTs +2024-09-07 16:17:54,331 [main] ERROR UmlAttribute - unclassified CIM attribute: (3259) OTHER_CIM CIM const [0..1] null <> IED Agent::CPUEntry.ID: Abstract Types::EntityIndex +2024-09-07 16:17:54,331 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,331 [main] TRACE UmlAttribute - created (3259) OTHER_CIM CIM const [0..1] attribute <> IED Agent::CPUEntry.ID: Abstract Types::EntityIndex +2024-09-07 16:17:54,331 [main] ERROR UmlAttribute - unclassified CIM attribute: (3258) OTHER_CIM CIM const [0..1] null <> IED Agent::CPUEntry.Online: Abstract Types::BooleanValueTs +2024-09-07 16:17:54,331 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,331 [main] TRACE UmlAttribute - created (3258) OTHER_CIM CIM const [0..1] attribute <> IED Agent::CPUEntry.Online: Abstract Types::BooleanValueTs +2024-09-07 16:17:54,331 [main] ERROR UmlAttribute - unclassified CIM attribute: (3263) OTHER_CIM CIM const [0..1] null <> IED Agent::CPUEntry.Operable: Abstract Types::BooleanValueTs +2024-09-07 16:17:54,331 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,332 [main] TRACE UmlAttribute - created (3263) OTHER_CIM CIM const [0..1] attribute <> IED Agent::CPUEntry.Operable: Abstract Types::BooleanValueTs +2024-09-07 16:17:54,332 [main] ERROR UmlAttribute - unclassified CIM attribute: (3389) OTHER_CIM CIM const [0..1] null <> IED Agent::CPUEntry.Temperature: Abstract Types::FloatingTs +2024-09-07 16:17:54,332 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,332 [main] TRACE UmlAttribute - created (3389) OTHER_CIM CIM const [0..1] attribute <> IED Agent::CPUEntry.Temperature: Abstract Types::FloatingTs +2024-09-07 16:17:54,332 [main] ERROR UmlAttribute - unclassified CIM attribute: (3965) OTHER_CIM CIM const [0..1] null <> IED Agent::CPUEntry.Watchdog: Abstract Types::CounterTs +2024-09-07 16:17:54,332 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,332 [main] TRACE UmlAttribute - created (3965) OTHER_CIM CIM const [0..1] attribute <> IED Agent::CPUEntry.Watchdog: Abstract Types::CounterTs +2024-09-07 16:17:54,332 [main] ERROR UmlAttribute - unclassified CIM attribute: (3334) OTHER_CIM CIM const [0..1] null <> IED Agent::EXTEntry.ID: Abstract Types::EntityIndex +2024-09-07 16:17:54,332 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,332 [main] TRACE UmlAttribute - created (3334) OTHER_CIM CIM const [0..1] attribute <> IED Agent::EXTEntry.ID: Abstract Types::EntityIndex +2024-09-07 16:17:54,332 [main] ERROR UmlAttribute - unclassified CIM attribute: (3335) OTHER_CIM CIM const [0..1] null <> IED Agent::EXTEntry.Descr: Abstract Types::CharString +2024-09-07 16:17:54,332 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,333 [main] TRACE UmlAttribute - created (3335) OTHER_CIM CIM const [0..1] attribute <> IED Agent::EXTEntry.Descr: Abstract Types::CharString +2024-09-07 16:17:54,333 [main] ERROR UmlAttribute - unclassified CIM attribute: (3366) OTHER_CIM CIM const [0..1] null <> IED Agent::EXTEntry.ExtensionType: EnumeratedTypes::ExtType +2024-09-07 16:17:54,333 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,333 [main] TRACE UmlAttribute - created (3366) OTHER_CIM CIM const [0..1] attribute <> IED Agent::EXTEntry.ExtensionType: EnumeratedTypes::ExtType +2024-09-07 16:17:54,333 [main] ERROR UmlAttribute - unclassified CIM attribute: (3416) OTHER_CIM CIM const [0..1] null <> IED Agent::EXTEntry.CodeVersion: Abstract Types::CharStringTs +2024-09-07 16:17:54,333 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,333 [main] TRACE UmlAttribute - created (3416) OTHER_CIM CIM const [0..1] attribute <> IED Agent::EXTEntry.CodeVersion: Abstract Types::CharStringTs +2024-09-07 16:17:54,333 [main] ERROR UmlAttribute - unclassified CIM attribute: (3338) OTHER_CIM CIM const [0..1] null <> IED Agent::EXTEntry.Running: Abstract Types::BooleanValueTs +2024-09-07 16:17:54,333 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,333 [main] TRACE UmlAttribute - created (3338) OTHER_CIM CIM const [0..1] attribute <> IED Agent::EXTEntry.Running: Abstract Types::BooleanValueTs +2024-09-07 16:17:54,333 [main] ERROR UmlAttribute - unclassified CIM attribute: (3390) OTHER_CIM CIM const [0..1] null <> IED Agent::EXTEntry.Temperature: Abstract Types::FloatingTs +2024-09-07 16:17:54,333 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,334 [main] TRACE UmlAttribute - created (3390) OTHER_CIM CIM const [0..1] attribute <> IED Agent::EXTEntry.Temperature: Abstract Types::FloatingTs +2024-09-07 16:17:54,334 [main] ERROR UmlAttribute - unclassified CIM attribute: (3333) OTHER_CIM CIM const [1..1] null <> IED Agent::EXTEntry.Watchdog: Abstract Types::CounterTs +2024-09-07 16:17:54,334 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,334 [main] TRACE UmlAttribute - created (3333) OTHER_CIM CIM const [1..1] attribute <> IED Agent::EXTEntry.Watchdog: Abstract Types::CounterTs +2024-09-07 16:17:54,334 [main] ERROR UmlAttribute - unclassified CIM attribute: (3337) OTHER_CIM CIM const [0..1] null <> IED Agent::EXTEntry.Errors: Abstract Types::CounterTs +2024-09-07 16:17:54,334 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,334 [main] TRACE UmlAttribute - created (3337) OTHER_CIM CIM const [0..1] attribute <> IED Agent::EXTEntry.Errors: Abstract Types::CounterTs +2024-09-07 16:17:54,334 [main] ERROR UmlAttribute - unclassified CIM attribute: (3336) OTHER_CIM CIM [0..1] null <> IED Agent::EXTEntry.CntRs: Abstract Types::CntRs +2024-09-07 16:17:54,334 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,334 [main] TRACE UmlAttribute - created (3336) OTHER_CIM CIM [0..1] attribute <> IED Agent::EXTEntry.CntRs: Abstract Types::CntRs +2024-09-07 16:17:54,334 [main] ERROR UmlAttribute - unclassified CIM attribute: (3382) OTHER_CIM CIM const [0..1] null <> IED Agent::STOREEntry.ID: Abstract Types::EntityIndex +2024-09-07 16:17:54,334 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,334 [main] TRACE UmlAttribute - created (3382) OTHER_CIM CIM const [0..1] attribute <> IED Agent::STOREEntry.ID: Abstract Types::EntityIndex +2024-09-07 16:17:54,334 [main] ERROR UmlAttribute - unclassified CIM attribute: (3383) OTHER_CIM CIM const [0..1] null <> IED Agent::STOREEntry.Descr: Abstract Types::CharString +2024-09-07 16:17:54,334 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,334 [main] TRACE UmlAttribute - created (3383) OTHER_CIM CIM const [0..1] attribute <> IED Agent::STOREEntry.Descr: Abstract Types::CharString +2024-09-07 16:17:54,335 [main] ERROR UmlAttribute - unclassified CIM attribute: (3386) OTHER_CIM CIM const [0..1] null <> IED Agent::STOREEntry.NvStore: Abstract Types::Floating +2024-09-07 16:17:54,335 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,335 [main] TRACE UmlAttribute - created (3386) OTHER_CIM CIM const [0..1] attribute <> IED Agent::STOREEntry.NvStore: Abstract Types::Floating +2024-09-07 16:17:54,335 [main] ERROR UmlAttribute - unclassified CIM attribute: (3381) OTHER_CIM CIM const [0..1] null <> IED Agent::STOREEntry.NvStoreRem: Abstract Types::FloatingTs +2024-09-07 16:17:54,335 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,335 [main] TRACE UmlAttribute - created (3381) OTHER_CIM CIM const [0..1] attribute <> IED Agent::STOREEntry.NvStoreRem: Abstract Types::FloatingTs +2024-09-07 16:17:54,335 [main] ERROR UmlAttribute - unclassified CIM attribute: (3385) OTHER_CIM CIM const [0..1] null <> IED Agent::STOREEntry.Faulty: Abstract Types::BooleanValueTs +2024-09-07 16:17:54,335 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,335 [main] TRACE UmlAttribute - created (3385) OTHER_CIM CIM const [0..1] attribute <> IED Agent::STOREEntry.Faulty: Abstract Types::BooleanValueTs +2024-09-07 16:17:54,335 [main] ERROR UmlAttribute - unclassified CIM attribute: (3732) OTHER_CIM CIM [0..1] null <> IED Agent::STOREEntry.CntRs: Abstract Types::CntRs +2024-09-07 16:17:54,335 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,336 [main] TRACE UmlAttribute - created (3732) OTHER_CIM CIM [0..1] attribute <> IED Agent::STOREEntry.CntRs: Abstract Types::CntRs +2024-09-07 16:17:54,338 [main] ERROR UmlAttribute - unclassified CIM attribute: (3486) OTHER_CIM CIM const [0..1] null <> IED Agent::Notification.PhyHealthChgCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,340 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,340 [main] TRACE UmlAttribute - created (3486) OTHER_CIM CIM const [0..1] attribute <> IED Agent::Notification.PhyHealthChgCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,340 [main] ERROR UmlAttribute - unclassified CIM attribute: (3497) OTHER_CIM CIM const [0..1] null <> IED Agent::Notification.InternalTemp: Abstract Types::FloatingTs +2024-09-07 16:17:54,340 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,340 [main] TRACE UmlAttribute - created (3497) OTHER_CIM CIM const [0..1] attribute <> IED Agent::Notification.InternalTemp: Abstract Types::FloatingTs +2024-09-07 16:17:54,340 [main] ERROR UmlAttribute - unclassified CIM attribute: (3495) OTHER_CIM CIM const [0..1] null <> IED Agent::Notification.NvStore: Abstract Types::FloatingTs +2024-09-07 16:17:54,341 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,341 [main] TRACE UmlAttribute - created (3495) OTHER_CIM CIM const [0..1] attribute <> IED Agent::Notification.NvStore: Abstract Types::FloatingTs +2024-09-07 16:17:54,341 [main] ERROR UmlAttribute - unclassified CIM attribute: (3496) OTHER_CIM CIM const [0..1] null <> IED Agent::Notification.NvStoreRem: Abstract Types::FloatingTs +2024-09-07 16:17:54,341 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,341 [main] TRACE UmlAttribute - created (3496) OTHER_CIM CIM const [0..1] attribute <> IED Agent::Notification.NvStoreRem: Abstract Types::FloatingTs +2024-09-07 16:17:54,341 [main] ERROR UmlAttribute - unclassified CIM attribute: (3480) OTHER_CIM CIM const [0..1] null <> IED Agent::Notification.PhyHealth: EnumeratedTypes::PhyHealthType +2024-09-07 16:17:54,341 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,341 [main] TRACE UmlAttribute - created (3480) OTHER_CIM CIM const [0..1] attribute <> IED Agent::Notification.PhyHealth: EnumeratedTypes::PhyHealthType +2024-09-07 16:17:54,341 [main] ERROR UmlAttribute - unclassified CIM attribute: (3489) OTHER_CIM CIM const [0..1] null <> IED Agent::Notification.WrmStrCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,341 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,342 [main] TRACE UmlAttribute - created (3489) OTHER_CIM CIM const [0..1] attribute <> IED Agent::Notification.WrmStrCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,342 [main] ERROR UmlAttribute - unclassified CIM attribute: (3502) OTHER_CIM CIM const [0..1] null <> IED Agent::SecurityNotification.AtkCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,342 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,342 [main] TRACE UmlAttribute - created (3502) OTHER_CIM CIM const [0..1] attribute <> IED Agent::SecurityNotification.AtkCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,342 [main] ERROR UmlAttribute - unclassified CIM attribute: (3499) OTHER_CIM CIM const [0..1] null <> IED Agent::SecurityNotification.ExpCerts: Abstract Types::IntegerTs +2024-09-07 16:17:54,342 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,342 [main] TRACE UmlAttribute - created (3499) OTHER_CIM CIM const [0..1] attribute <> IED Agent::SecurityNotification.ExpCerts: Abstract Types::IntegerTs +2024-09-07 16:17:54,342 [main] ERROR UmlAttribute - unclassified CIM attribute: (3730) OTHER_CIM CIM const [0..1] null <> IED Agent::SecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:17:54,342 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,342 [main] TRACE UmlAttribute - created (3730) OTHER_CIM CIM const [0..1] attribute <> IED Agent::SecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:17:54,343 [main] ERROR UmlAttribute - unclassified CIM attribute: (3731) OTHER_CIM CIM const [0..1] null <> IED Agent::SecurityNotification.NearToExpCerts: Abstract Types::IntegerTs +2024-09-07 16:17:54,343 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,343 [main] TRACE UmlAttribute - created (3731) OTHER_CIM CIM const [0..1] attribute <> IED Agent::SecurityNotification.NearToExpCerts: Abstract Types::IntegerTs +2024-09-07 16:17:54,343 [main] ERROR UmlAttribute - unclassified CIM attribute: (3498) OTHER_CIM CIM const [0..1] null <> IED Agent::SecurityNotification.RevCerts: Abstract Types::IntegerTs +2024-09-07 16:17:54,343 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,343 [main] TRACE UmlAttribute - created (3498) OTHER_CIM CIM const [0..1] attribute <> IED Agent::SecurityNotification.RevCerts: Abstract Types::IntegerTs +2024-09-07 16:17:54,343 [main] ERROR UmlAttribute - unclassified CIM attribute: (3500) OTHER_CIM CIM const [0..1] null <> IED Agent::SecurityNotification.RevCheckFail: Abstract Types::CounterTs +2024-09-07 16:17:54,343 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,343 [main] TRACE UmlAttribute - created (3500) OTHER_CIM CIM const [0..1] attribute <> IED Agent::SecurityNotification.RevCheckFail: Abstract Types::CounterTs +2024-09-07 16:17:54,343 [main] ERROR UmlAttribute - unclassified CIM attribute: (4079) OTHER_CIM CIM const [1..1] null <> Common objects::CommonProtocolInfo.IEC62351part3: Abstract Types::BooleanValue +2024-09-07 16:17:54,343 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,343 [main] TRACE UmlAttribute - created (4079) OTHER_CIM CIM const [1..1] attribute <> Common objects::CommonProtocolInfo.IEC62351part3: Abstract Types::BooleanValue +2024-09-07 16:17:54,344 [main] ERROR UmlAttribute - unclassified CIM attribute: (4087) OTHER_CIM CIM const [0..1] null <> Common objects::CommonProtocolInfo.Part3ConnectionId: Abstract Types::Integer +2024-09-07 16:17:54,344 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,344 [main] TRACE UmlAttribute - created (4087) OTHER_CIM CIM const [0..1] attribute <> Common objects::CommonProtocolInfo.Part3ConnectionId: Abstract Types::Integer +2024-09-07 16:17:54,344 [main] ERROR UmlAttribute - unclassified CIM attribute: (4099) OTHER_CIM CIM const [0..1] null <> Common objects::CommonProtocolInfo.TCPHndShTime: Abstract Types::Floating +2024-09-07 16:17:54,344 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,344 [main] TRACE UmlAttribute - created (4099) OTHER_CIM CIM const [0..1] attribute <> Common objects::CommonProtocolInfo.TCPHndShTime: Abstract Types::Floating +2024-09-07 16:17:54,344 [main] ERROR UmlAttribute - unclassified CIM attribute: (4107) OTHER_CIM CIM const [0..1] null <> Common objects::CommonProtocolInfo.TLSHndTime: Abstract Types::Floating +2024-09-07 16:17:54,344 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,344 [main] TRACE UmlAttribute - created (4107) OTHER_CIM CIM const [0..1] attribute <> Common objects::CommonProtocolInfo.TLSHndTime: Abstract Types::Floating +2024-09-07 16:17:54,344 [main] ERROR UmlAttribute - unclassified CIM attribute: (4109) OTHER_CIM CIM const [0..1] null <> Common objects::CommonProtocolInfo.TLSRenegotiationTime: Abstract Types::Floating +2024-09-07 16:17:54,344 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,344 [main] TRACE UmlAttribute - created (4109) OTHER_CIM CIM const [0..1] attribute <> Common objects::CommonProtocolInfo.TLSRenegotiationTime: Abstract Types::Floating +2024-09-07 16:17:54,345 [main] ERROR UmlAttribute - unclassified CIM attribute: (4108) OTHER_CIM CIM const [0..1] null <> Common objects::CommonProtocolInfo.TLSResumptionTime: Abstract Types::Floating +2024-09-07 16:17:54,345 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,345 [main] TRACE UmlAttribute - created (4108) OTHER_CIM CIM const [0..1] attribute <> Common objects::CommonProtocolInfo.TLSResumptionTime: Abstract Types::Floating +2024-09-07 16:17:54,345 [main] ERROR UmlAttribute - unclassified CIM attribute: (4106) OTHER_CIM CIM const [0..1] null <> Common objects::CommonProtocolInfo.TotalHndTime: Abstract Types::Floating +2024-09-07 16:17:54,345 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,345 [main] TRACE UmlAttribute - created (4106) OTHER_CIM CIM const [0..1] attribute <> Common objects::CommonProtocolInfo.TotalHndTime: Abstract Types::Floating +2024-09-07 16:17:54,345 [main] ERROR UmlAttribute - unclassified CIM attribute: (4105) OTHER_CIM CIM const [0..1] null <> Common objects::CommonProtocolInfo.TransportHndTime: Abstract Types::Floating +2024-09-07 16:17:54,345 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,346 [main] TRACE UmlAttribute - created (4105) OTHER_CIM CIM const [0..1] attribute <> Common objects::CommonProtocolInfo.TransportHndTime: Abstract Types::Floating +2024-09-07 16:17:54,346 [main] ERROR UmlAttribute - unclassified CIM attribute: (4460) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsEarlyDataCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,346 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,346 [main] TRACE UmlAttribute - created (4460) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsEarlyDataCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,346 [main] ERROR UmlAttribute - unclassified CIM attribute: (4454) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDisallowedCipherCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,346 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,346 [main] TRACE UmlAttribute - created (4454) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDisallowedCipherCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,346 [main] ERROR UmlAttribute - unclassified CIM attribute: (4461) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsCertSizeMismatchCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,346 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,346 [main] TRACE UmlAttribute - created (4461) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsCertSizeMismatchCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,346 [main] ERROR UmlAttribute - unclassified CIM attribute: (4463) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoCaMatchCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,347 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,347 [main] TRACE UmlAttribute - created (4463) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoCaMatchCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,347 [main] ERROR UmlAttribute - unclassified CIM attribute: (4464) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoSigAlgoExtCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,347 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,347 [main] TRACE UmlAttribute - created (4464) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoSigAlgoExtCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,347 [main] ERROR UmlAttribute - unclassified CIM attribute: (4465) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDepDigAlgCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,347 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,347 [main] TRACE UmlAttribute - created (4465) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDepDigAlgCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,347 [main] ERROR UmlAttribute - unclassified CIM attribute: (4466) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoTrustedCertMatchCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,347 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,347 [main] TRACE UmlAttribute - created (4466) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoTrustedCertMatchCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,347 [main] ERROR UmlAttribute - unclassified CIM attribute: (4467) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsCertRevokedCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,348 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,348 [main] TRACE UmlAttribute - created (4467) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsCertRevokedCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,348 [main] ERROR UmlAttribute - unclassified CIM attribute: (4468) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoCrlCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,348 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,348 [main] TRACE UmlAttribute - created (4468) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoCrlCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,348 [main] ERROR UmlAttribute - unclassified CIM attribute: (4469) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsCrlExpCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,348 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,348 [main] TRACE UmlAttribute - created (4469) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsCrlExpCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,348 [main] ERROR UmlAttribute - unclassified CIM attribute: (4470) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoEpskModeCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,349 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,349 [main] TRACE UmlAttribute - created (4470) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoEpskModeCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,349 [main] ERROR UmlAttribute - unclassified CIM attribute: (4471) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoEncryptThenMacCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,349 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,349 [main] TRACE UmlAttribute - created (4471) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoEncryptThenMacCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,349 [main] ERROR UmlAttribute - unclassified CIM attribute: (4472) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsOcspResExpCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,349 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,349 [main] TRACE UmlAttribute - created (4472) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsOcspResExpCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,349 [main] ERROR UmlAttribute - unclassified CIM attribute: (4473) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsCertExpCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,349 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,349 [main] TRACE UmlAttribute - created (4473) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsCertExpCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,350 [main] ERROR UmlAttribute - unclassified CIM attribute: (4474) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoSkUpdateCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,350 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,350 [main] TRACE UmlAttribute - created (4474) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoSkUpdateCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,350 [main] ERROR UmlAttribute - unclassified CIM attribute: (4475) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsSigAlgMismatchCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,350 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,350 [main] TRACE UmlAttribute - created (4475) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsSigAlgMismatchCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,350 [main] ERROR UmlAttribute - unclassified CIM attribute: (4476) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsSigVFailedCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,350 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,351 [main] TRACE UmlAttribute - created (4476) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsSigVFailedCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,351 [main] ERROR UmlAttribute - unclassified CIM attribute: (4477) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsShortRsaKeyCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,351 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,351 [main] TRACE UmlAttribute - created (4477) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsShortRsaKeyCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,351 [main] ERROR UmlAttribute - unclassified CIM attribute: (4478) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsMinKeyCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,351 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,351 [main] TRACE UmlAttribute - created (4478) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsMinKeyCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,351 [main] ERROR UmlAttribute - unclassified CIM attribute: (4479) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsShortKeyCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,351 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,351 [main] TRACE UmlAttribute - created (4479) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsShortKeyCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,351 [main] ERROR UmlAttribute - unclassified CIM attribute: (4480) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDepHashCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,352 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,352 [main] TRACE UmlAttribute - created (4480) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDepHashCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,352 [main] ERROR UmlAttribute - unclassified CIM attribute: (4462) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoTrCaMatchSCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,352 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,352 [main] TRACE UmlAttribute - created (4462) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoTrCaMatchSCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,352 [main] ERROR UmlAttribute - unclassified CIM attribute: (4455) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsSessionidExpiredFullHsCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,352 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,352 [main] TRACE UmlAttribute - created (4455) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsSessionidExpiredFullHsCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,352 [main] ERROR UmlAttribute - unclassified CIM attribute: (4458) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoRenegTicket: Abstract Types::CounterTs +2024-09-07 16:17:54,352 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,352 [main] TRACE UmlAttribute - created (4458) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoRenegTicket: Abstract Types::CounterTs +2024-09-07 16:17:54,353 [main] ERROR UmlAttribute - unclassified CIM attribute: (4457) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoRenegSigCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,353 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,353 [main] TRACE UmlAttribute - created (4457) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoRenegSigCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,353 [main] ERROR UmlAttribute - unclassified CIM attribute: (4453) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsSessionClosedRevCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,353 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,353 [main] TRACE UmlAttribute - created (4453) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsSessionClosedRevCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,353 [main] ERROR UmlAttribute - unclassified CIM attribute: (4459) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoTrCaMatchScCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,353 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,353 [main] TRACE UmlAttribute - created (4459) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoTrCaMatchScCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,353 [main] ERROR UmlAttribute - unclassified CIM attribute: (4450) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsHsSuccessCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,354 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,354 [main] TRACE UmlAttribute - created (4450) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsHsSuccessCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,354 [main] ERROR UmlAttribute - unclassified CIM attribute: (4456) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoReneg: Abstract Types::CounterTs +2024-09-07 16:17:54,354 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,354 [main] TRACE UmlAttribute - created (4456) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoReneg: Abstract Types::CounterTs +2024-09-07 16:17:54,354 [main] ERROR UmlAttribute - unclassified CIM attribute: (4452) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoLocalCertCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,354 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,354 [main] TRACE UmlAttribute - created (4452) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoLocalCertCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,354 [main] ERROR UmlAttribute - unclassified CIM attribute: (4447) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsWeakVersionCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,354 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,354 [main] TRACE UmlAttribute - created (4447) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsWeakVersionCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,354 [main] ERROR UmlAttribute - unclassified CIM attribute: (4449) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsVersionChangeCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,354 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,355 [main] TRACE UmlAttribute - created (4449) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsVersionChangeCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,355 [main] ERROR UmlAttribute - unclassified CIM attribute: (4446) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDeprecatedVersionCnT: Abstract Types::CounterTs +2024-09-07 16:17:54,355 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,355 [main] TRACE UmlAttribute - created (4446) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDeprecatedVersionCnT: Abstract Types::CounterTs +2024-09-07 16:17:54,356 [main] ERROR UmlAttribute - unclassified CIM attribute: (4451) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoPeerCertCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,356 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,356 [main] TRACE UmlAttribute - created (4451) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoPeerCertCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,356 [main] ERROR UmlAttribute - unclassified CIM attribute: (4448) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDisallowedVersionCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,356 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,356 [main] TRACE UmlAttribute - created (4448) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDisallowedVersionCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,357 [main] ERROR UmlAttribute - unclassified CIM attribute: (4488) OTHER_CIM CIM const [0..1] null <> IEC62351-3 ed.2 Agent::TLSSession.SessionId: Abstract Types::EntityIndex +2024-09-07 16:17:54,357 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,357 [main] TRACE UmlAttribute - created (4488) OTHER_CIM CIM const [0..1] attribute <> IEC62351-3 ed.2 Agent::TLSSession.SessionId: Abstract Types::EntityIndex +2024-09-07 16:17:54,357 [main] ERROR UmlAttribute - unclassified CIM attribute: (4489) OTHER_CIM CIM [0..1] null <> IEC62351-3 ed.2 Agent::TLSSession.CntRs: Abstract Types::CntRs +2024-09-07 16:17:54,357 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,357 [main] TRACE UmlAttribute - created (4489) OTHER_CIM CIM [0..1] attribute <> IEC62351-3 ed.2 Agent::TLSSession.CntRs: Abstract Types::CntRs +2024-09-07 16:17:54,357 [main] ERROR UmlAttribute - unclassified CIM attribute: (4490) OTHER_CIM CIM const [0..1] null <> IEC62351-3 ed.2 Agent::TLSSession.LocAddress: Abstract Types::InetAddress +2024-09-07 16:17:54,357 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,357 [main] TRACE UmlAttribute - created (4490) OTHER_CIM CIM const [0..1] attribute <> IEC62351-3 ed.2 Agent::TLSSession.LocAddress: Abstract Types::InetAddress +2024-09-07 16:17:54,357 [main] ERROR UmlAttribute - unclassified CIM attribute: (4491) OTHER_CIM CIM const [0..1] null <> IEC62351-3 ed.2 Agent::TLSSession.LocAddressType: Abstract Types::InetAddressType +2024-09-07 16:17:54,357 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,357 [main] TRACE UmlAttribute - created (4491) OTHER_CIM CIM const [0..1] attribute <> IEC62351-3 ed.2 Agent::TLSSession.LocAddressType: Abstract Types::InetAddressType +2024-09-07 16:17:54,358 [main] ERROR UmlAttribute - unclassified CIM attribute: (4492) OTHER_CIM CIM const [0..1] null <> IEC62351-3 ed.2 Agent::TLSSession.RemAddress: Abstract Types::InetAddress +2024-09-07 16:17:54,358 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,358 [main] TRACE UmlAttribute - created (4492) OTHER_CIM CIM const [0..1] attribute <> IEC62351-3 ed.2 Agent::TLSSession.RemAddress: Abstract Types::InetAddress +2024-09-07 16:17:54,358 [main] ERROR UmlAttribute - unclassified CIM attribute: (4493) OTHER_CIM CIM const [0..1] null <> IEC62351-3 ed.2 Agent::TLSSession.RemAddressType: Abstract Types::InetAddressType +2024-09-07 16:17:54,358 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,358 [main] TRACE UmlAttribute - created (4493) OTHER_CIM CIM const [0..1] attribute <> IEC62351-3 ed.2 Agent::TLSSession.RemAddressType: Abstract Types::InetAddressType +2024-09-07 16:17:54,358 [main] ERROR UmlAttribute - unclassified CIM attribute: (4481) OTHER_CIM CIM [0..1] null <> IEC62351-3 ed.2 Agent::Summary.CntRs: Abstract Types::CntRs +2024-09-07 16:17:54,358 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,358 [main] TRACE UmlAttribute - created (4481) OTHER_CIM CIM [0..1] attribute <> IEC62351-3 ed.2 Agent::Summary.CntRs: Abstract Types::CntRs +2024-09-07 16:17:54,359 [main] ERROR UmlAttribute - unclassified CIM attribute: (4482) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::Summary.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:17:54,359 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,359 [main] TRACE UmlAttribute - created (4482) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::Summary.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:17:54,359 [main] ERROR UmlAttribute - unclassified CIM attribute: (4483) OTHER_CIM CIM [0..*] null <
> IEC62351-3 ed.2 Agent::Summary.Server: IEC62351-3 ed.2 Agent::ServerTLS +2024-09-07 16:17:54,359 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,359 [main] TRACE UmlAttribute - created (4483) OTHER_CIM CIM [0..*] attribute <
> IEC62351-3 ed.2 Agent::Summary.Server: IEC62351-3 ed.2 Agent::ServerTLS +2024-09-07 16:17:54,359 [main] ERROR UmlAttribute - unclassified CIM attribute: (4484) OTHER_CIM CIM [0..*] null <
> IEC62351-3 ed.2 Agent::Summary.Client: IEC62351-3 ed.2 Agent::ClientTLS +2024-09-07 16:17:54,359 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,359 [main] TRACE UmlAttribute - created (4484) OTHER_CIM CIM [0..*] attribute <
> IEC62351-3 ed.2 Agent::Summary.Client: IEC62351-3 ed.2 Agent::ClientTLS +2024-09-07 16:17:54,359 [main] ERROR UmlAttribute - unclassified CIM attribute: (4485) OTHER_CIM CIM [0..1] null <> IEC62351-3 ed.2 Agent::Summary.SecurityNotification: IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification +2024-09-07 16:17:54,359 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,359 [main] TRACE UmlAttribute - created (4485) OTHER_CIM CIM [0..1] attribute <> IEC62351-3 ed.2 Agent::Summary.SecurityNotification: IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification +2024-09-07 16:17:54,359 [main] ERROR UmlAttribute - unclassified CIM attribute: (4486) OTHER_CIM CIM [0..1] null <> IEC62351-3 ed.2 Agent::Summary.StateNotification: NullCIM::NullCIM +2024-09-07 16:17:54,359 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,360 [main] TRACE UmlAttribute - created (4486) OTHER_CIM CIM [0..1] attribute <> IEC62351-3 ed.2 Agent::Summary.StateNotification: NullCIM::NullCIM +2024-09-07 16:17:54,360 [main] ERROR UmlAttribute - unclassified CIM attribute: (4487) OTHER_CIM CIM const [0..1] null <> IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:17:54,360 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,360 [main] TRACE UmlAttribute - created (4487) OTHER_CIM CIM const [0..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:17:54,360 [main] ERROR UmlAttribute - unclassified CIM attribute: (3991) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.AuthFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,360 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,360 [main] TRACE UmlAttribute - created (3991) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.AuthFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,360 [main] ERROR UmlAttribute - unclassified CIM attribute: (3992) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.CtrlPrivFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,360 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,360 [main] TRACE UmlAttribute - created (3992) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.CtrlPrivFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,360 [main] ERROR UmlAttribute - unclassified CIM attribute: (3993) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,362 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,363 [main] TRACE UmlAttribute - created (3993) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,363 [main] ERROR UmlAttribute - unclassified CIM attribute: (3405) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.ExT0Cnt: Abstract Types::CounterTs +2024-09-07 16:17:54,363 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,363 [main] TRACE UmlAttribute - created (3405) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.ExT0Cnt: Abstract Types::CounterTs +2024-09-07 16:17:54,363 [main] ERROR UmlAttribute - unclassified CIM attribute: (3406) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.ExT1Cnt: Abstract Types::CounterTs +2024-09-07 16:17:54,363 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,363 [main] TRACE UmlAttribute - created (3406) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.ExT1Cnt: Abstract Types::CounterTs +2024-09-07 16:17:54,363 [main] ERROR UmlAttribute - unclassified CIM attribute: (3407) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.ExT2Cnt: Abstract Types::CounterTs +2024-09-07 16:17:54,364 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,364 [main] TRACE UmlAttribute - created (3407) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.ExT2Cnt: Abstract Types::CounterTs +2024-09-07 16:17:54,364 [main] ERROR UmlAttribute - unclassified CIM attribute: (3408) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.ExT3Cnt: Abstract Types::CounterTs +2024-09-07 16:17:54,364 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,364 [main] TRACE UmlAttribute - created (3408) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.ExT3Cnt: Abstract Types::CounterTs +2024-09-07 16:17:54,364 [main] ERROR UmlAttribute - unclassified CIM attribute: (3124) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.InDisc: Abstract Types::CounterTs +2024-09-07 16:17:54,365 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,365 [main] TRACE UmlAttribute - created (3124) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.InDisc: Abstract Types::CounterTs +2024-09-07 16:17:54,365 [main] ERROR UmlAttribute - unclassified CIM attribute: (3994) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.InErrCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,365 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,365 [main] TRACE UmlAttribute - created (3994) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.InErrCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,365 [main] ERROR UmlAttribute - unclassified CIM attribute: (3995) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.InOvCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,366 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,366 [main] TRACE UmlAttribute - created (3995) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.InOvCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,366 [main] ERROR UmlAttribute - unclassified CIM attribute: (3996) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.InterPDUTime: Abstract Types::Floating +2024-09-07 16:17:54,367 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,367 [main] TRACE UmlAttribute - created (3996) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.InterPDUTime: Abstract Types::Floating +2024-09-07 16:17:54,367 [main] ERROR UmlAttribute - unclassified CIM attribute: (3997) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.MisPDUCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,367 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,367 [main] TRACE UmlAttribute - created (3997) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.MisPDUCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,367 [main] ERROR UmlAttribute - unclassified CIM attribute: (3141) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.OutErr: Abstract Types::CounterTs +2024-09-07 16:17:54,367 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,367 [main] TRACE UmlAttribute - created (3141) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.OutErr: Abstract Types::CounterTs +2024-09-07 16:17:54,368 [main] ERROR UmlAttribute - unclassified CIM attribute: (3990) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.OutUv: Abstract Types::CounterTs +2024-09-07 16:17:54,368 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,368 [main] TRACE UmlAttribute - created (3990) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.OutUv: Abstract Types::CounterTs +2024-09-07 16:17:54,368 [main] ERROR UmlAttribute - unclassified CIM attribute: (3998) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PDURTT: Abstract Types::Floating +2024-09-07 16:17:54,368 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,368 [main] TRACE UmlAttribute - created (3998) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PDURTT: Abstract Types::Floating +2024-09-07 16:17:54,368 [main] ERROR UmlAttribute - unclassified CIM attribute: (3999) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PDUSizeFail: Abstract Types::CounterTs +2024-09-07 16:17:54,368 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,368 [main] TRACE UmlAttribute - created (3999) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PDUSizeFail: Abstract Types::CounterTs +2024-09-07 16:17:54,368 [main] ERROR UmlAttribute - unclassified CIM attribute: (4000) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PduTampCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,369 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,369 [main] TRACE UmlAttribute - created (4000) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PduTampCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,369 [main] ERROR UmlAttribute - unclassified CIM attribute: (4001) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PrimaryInterface: Abstract Types::BooleanValueTs +2024-09-07 16:17:54,369 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,369 [main] TRACE UmlAttribute - created (4001) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PrimaryInterface: Abstract Types::BooleanValueTs +2024-09-07 16:17:54,369 [main] ERROR UmlAttribute - unclassified CIM attribute: (4002) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PrivFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,369 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,369 [main] TRACE UmlAttribute - created (4002) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PrivFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,369 [main] ERROR UmlAttribute - unclassified CIM attribute: (3403) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RtxCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,370 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,370 [main] TRACE UmlAttribute - created (3403) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RtxCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,370 [main] ERROR UmlAttribute - unclassified CIM attribute: (3123) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RxCritical: Abstract Types::CounterTs +2024-09-07 16:17:54,370 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,370 [main] TRACE UmlAttribute - created (3123) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RxCritical: Abstract Types::CounterTs +2024-09-07 16:17:54,370 [main] ERROR UmlAttribute - unclassified CIM attribute: (4003) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RxPdu: Abstract Types::CounterTs +2024-09-07 16:17:54,370 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,371 [main] TRACE UmlAttribute - created (4003) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RxPdu: Abstract Types::CounterTs +2024-09-07 16:17:54,371 [main] ERROR UmlAttribute - unclassified CIM attribute: (3135) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RxSolicitedReq: Abstract Types::CounterTs +2024-09-07 16:17:54,371 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,371 [main] TRACE UmlAttribute - created (3135) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RxSolicitedReq: Abstract Types::CounterTs +2024-09-07 16:17:54,371 [main] ERROR UmlAttribute - unclassified CIM attribute: (3145) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RxUnsolicitedReq: Abstract Types::CounterTs +2024-09-07 16:17:54,371 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,371 [main] TRACE UmlAttribute - created (3145) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RxUnsolicitedReq: Abstract Types::CounterTs +2024-09-07 16:17:54,371 [main] ERROR UmlAttribute - unclassified CIM attribute: (4004) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.SessKeyFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,371 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,371 [main] TRACE UmlAttribute - created (4004) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.SessKeyFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,372 [main] ERROR UmlAttribute - unclassified CIM attribute: (3122) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.TxCritical: Abstract Types::CounterTs +2024-09-07 16:17:54,373 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,373 [main] TRACE UmlAttribute - created (3122) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.TxCritical: Abstract Types::CounterTs +2024-09-07 16:17:54,373 [main] ERROR UmlAttribute - unclassified CIM attribute: (4005) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.TxPdu: Abstract Types::CounterTs +2024-09-07 16:17:54,373 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,373 [main] TRACE UmlAttribute - created (4005) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.TxPdu: Abstract Types::CounterTs +2024-09-07 16:17:54,373 [main] ERROR UmlAttribute - unclassified CIM attribute: (3120) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.TxSolicitedReq: Abstract Types::CounterTs +2024-09-07 16:17:54,374 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,374 [main] TRACE UmlAttribute - created (3120) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.TxSolicitedReq: Abstract Types::CounterTs +2024-09-07 16:17:54,374 [main] ERROR UmlAttribute - unclassified CIM attribute: (3121) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.TxUnsolicitedReq: Abstract Types::CounterTs +2024-09-07 16:17:54,374 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,374 [main] TRACE UmlAttribute - created (3121) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.TxUnsolicitedReq: Abstract Types::CounterTs +2024-09-07 16:17:54,374 [main] ERROR UmlAttribute - unclassified CIM attribute: (4006) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.UpKeyFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,374 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,374 [main] TRACE UmlAttribute - created (4006) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.UpKeyFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,375 [main] ERROR UmlAttribute - unclassified CIM attribute: (3726) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.AssociationId: Abstract Types::EntityIndex +2024-09-07 16:17:54,375 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,375 [main] TRACE UmlAttribute - created (3726) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.AssociationId: Abstract Types::EntityIndex +2024-09-07 16:17:54,375 [main] ERROR UmlAttribute - unclassified CIM attribute: (3241) OTHER_CIM CIM [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.CntRs: Abstract Types::CntRs +2024-09-07 16:17:54,375 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,375 [main] TRACE UmlAttribute - created (3241) OTHER_CIM CIM [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.CntRs: Abstract Types::CntRs +2024-09-07 16:17:54,375 [main] ERROR UmlAttribute - unclassified CIM attribute: (2417) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.LocAddress: Abstract Types::InetAddress +2024-09-07 16:17:54,375 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,375 [main] TRACE UmlAttribute - created (2417) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.LocAddress: Abstract Types::InetAddress +2024-09-07 16:17:54,375 [main] ERROR UmlAttribute - unclassified CIM attribute: (3715) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.LocAddressType: Abstract Types::InetAddressType +2024-09-07 16:17:54,375 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,376 [main] TRACE UmlAttribute - created (3715) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.LocAddressType: Abstract Types::InetAddressType +2024-09-07 16:17:54,376 [main] ERROR UmlAttribute - unclassified CIM attribute: (2413) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.ProtID: EnumeratedTypes::ProtIdType +2024-09-07 16:17:54,376 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,376 [main] TRACE UmlAttribute - created (2413) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.ProtID: EnumeratedTypes::ProtIdType +2024-09-07 16:17:54,376 [main] ERROR UmlAttribute - unclassified CIM attribute: (2412) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.ProviderDesc: Abstract Types::CharString +2024-09-07 16:17:54,376 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,376 [main] TRACE UmlAttribute - created (2412) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.ProviderDesc: Abstract Types::CharString +2024-09-07 16:17:54,376 [main] ERROR UmlAttribute - unclassified CIM attribute: (2411) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.ProviderName: Abstract Types::CharString +2024-09-07 16:17:54,376 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,376 [main] TRACE UmlAttribute - created (2411) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.ProviderName: Abstract Types::CharString +2024-09-07 16:17:54,377 [main] ERROR UmlAttribute - unclassified CIM attribute: (2416) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.RemAddress: Abstract Types::InetAddress +2024-09-07 16:17:54,377 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,377 [main] TRACE UmlAttribute - created (2416) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.RemAddress: Abstract Types::InetAddress +2024-09-07 16:17:54,377 [main] ERROR UmlAttribute - unclassified CIM attribute: (3714) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.RemAddressType: Abstract Types::InetAddressType +2024-09-07 16:17:54,377 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,377 [main] TRACE UmlAttribute - created (3714) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.RemAddressType: Abstract Types::InetAddressType +2024-09-07 16:17:54,377 [main] ERROR UmlAttribute - unclassified CIM attribute: (2410) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.TLnkErrCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,377 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,377 [main] TRACE UmlAttribute - created (2410) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.TLnkErrCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,377 [main] ERROR UmlAttribute - unclassified CIM attribute: (2415) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.TLnkTyp: EnumeratedTypes::LnkType +2024-09-07 16:17:54,377 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,378 [main] TRACE UmlAttribute - created (2415) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.TLnkTyp: EnumeratedTypes::LnkType +2024-09-07 16:17:54,378 [main] ERROR UmlAttribute - unclassified CIM attribute: (3248) OTHER_CIM CIM [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Summary.CntRs: Abstract Types::CntRs +2024-09-07 16:17:54,378 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,378 [main] TRACE UmlAttribute - created (3248) OTHER_CIM CIM [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Summary.CntRs: Abstract Types::CntRs +2024-09-07 16:17:54,378 [main] ERROR UmlAttribute - unclassified CIM attribute: (3708) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent::Summary.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:17:54,378 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,378 [main] TRACE UmlAttribute - created (3708) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Summary.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:17:54,378 [main] ERROR UmlAttribute - unclassified CIM attribute: (2278) OTHER_CIM CIM [0..*] null <
> IEEE 1815 and IEC 60870-5 Agent::Summary.Master: IEEE 1815 and IEC 60870-5 Agent::MasterAssociation +2024-09-07 16:17:54,378 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,378 [main] TRACE UmlAttribute - created (2278) OTHER_CIM CIM [0..*] attribute <
> IEEE 1815 and IEC 60870-5 Agent::Summary.Master: IEEE 1815 and IEC 60870-5 Agent::MasterAssociation +2024-09-07 16:17:54,378 [main] ERROR UmlAttribute - unclassified CIM attribute: (2287) OTHER_CIM CIM [0..*] null <
> IEEE 1815 and IEC 60870-5 Agent::Summary.Outstation: IEEE 1815 and IEC 60870-5 Agent::OutstationAssociation +2024-09-07 16:17:54,378 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,379 [main] TRACE UmlAttribute - created (2287) OTHER_CIM CIM [0..*] attribute <
> IEEE 1815 and IEC 60870-5 Agent::Summary.Outstation: IEEE 1815 and IEC 60870-5 Agent::OutstationAssociation +2024-09-07 16:17:54,379 [main] ERROR UmlAttribute - unclassified CIM attribute: (3609) OTHER_CIM CIM [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Summary.SecurityNotification: IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification +2024-09-07 16:17:54,379 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,379 [main] TRACE UmlAttribute - created (3609) OTHER_CIM CIM [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Summary.SecurityNotification: IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification +2024-09-07 16:17:54,379 [main] ERROR UmlAttribute - unclassified CIM attribute: (3608) OTHER_CIM CIM [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Summary.StateNotification: IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification +2024-09-07 16:17:54,379 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,379 [main] TRACE UmlAttribute - created (3608) OTHER_CIM CIM [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Summary.StateNotification: IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification +2024-09-07 16:17:54,379 [main] ERROR UmlAttribute - unclassified CIM attribute: (3519) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.AuthFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,379 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,379 [main] TRACE UmlAttribute - created (3519) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.AuthFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,379 [main] ERROR UmlAttribute - unclassified CIM attribute: (3518) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.CtrlPrivFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,380 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,380 [main] TRACE UmlAttribute - created (3518) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.CtrlPrivFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,380 [main] ERROR UmlAttribute - unclassified CIM attribute: (3522) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,380 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,380 [main] TRACE UmlAttribute - created (3522) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,380 [main] ERROR UmlAttribute - unclassified CIM attribute: (4043) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:17:54,380 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,380 [main] TRACE UmlAttribute - created (4043) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:17:54,380 [main] ERROR UmlAttribute - unclassified CIM attribute: (3520) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.PduTampCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,380 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,380 [main] TRACE UmlAttribute - created (3520) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.PduTampCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,381 [main] ERROR UmlAttribute - unclassified CIM attribute: (3521) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.PrivFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,381 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,381 [main] TRACE UmlAttribute - created (3521) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.PrivFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,381 [main] ERROR UmlAttribute - unclassified CIM attribute: (3523) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.SessKeyFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,381 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,381 [main] TRACE UmlAttribute - created (3523) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.SessKeyFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,382 [main] ERROR UmlAttribute - unclassified CIM attribute: (3524) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.UpKeyFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,382 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,382 [main] TRACE UmlAttribute - created (3524) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.UpKeyFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,382 [main] ERROR UmlAttribute - unclassified CIM attribute: (3526) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.InErrCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,382 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,382 [main] TRACE UmlAttribute - created (3526) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.InErrCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,382 [main] ERROR UmlAttribute - unclassified CIM attribute: (3528) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.InOvCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,382 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,382 [main] TRACE UmlAttribute - created (3528) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.InOvCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,382 [main] ERROR UmlAttribute - unclassified CIM attribute: (3529) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.OutUv: Abstract Types::CounterTs +2024-09-07 16:17:54,383 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,383 [main] TRACE UmlAttribute - created (3529) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.OutUv: Abstract Types::CounterTs +2024-09-07 16:17:54,383 [main] ERROR UmlAttribute - unclassified CIM attribute: (3527) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.RxPdu: Abstract Types::CounterTs +2024-09-07 16:17:54,383 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,383 [main] TRACE UmlAttribute - created (3527) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.RxPdu: Abstract Types::CounterTs +2024-09-07 16:17:54,383 [main] ERROR UmlAttribute - unclassified CIM attribute: (3525) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.TxPdu: Abstract Types::CounterTs +2024-09-07 16:17:54,383 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,383 [main] TRACE UmlAttribute - created (3525) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.TxPdu: Abstract Types::CounterTs +2024-09-07 16:17:54,383 [main] ERROR UmlAttribute - unclassified CIM attribute: (4257) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.ExT0Cnt: Abstract Types::CounterTs +2024-09-07 16:17:54,383 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,384 [main] TRACE UmlAttribute - created (4257) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.ExT0Cnt: Abstract Types::CounterTs +2024-09-07 16:17:54,384 [main] ERROR UmlAttribute - unclassified CIM attribute: (4258) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.ExT1Cnt: Abstract Types::CounterTs +2024-09-07 16:17:54,384 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,384 [main] TRACE UmlAttribute - created (4258) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.ExT1Cnt: Abstract Types::CounterTs +2024-09-07 16:17:54,384 [main] ERROR UmlAttribute - unclassified CIM attribute: (4259) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.ExT2Cnt: Abstract Types::CounterTs +2024-09-07 16:17:54,384 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,384 [main] TRACE UmlAttribute - created (4259) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.ExT2Cnt: Abstract Types::CounterTs +2024-09-07 16:17:54,384 [main] ERROR UmlAttribute - unclassified CIM attribute: (4260) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.ExT3Cnt: Abstract Types::CounterTs +2024-09-07 16:17:54,384 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,385 [main] TRACE UmlAttribute - created (4260) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.ExT3Cnt: Abstract Types::CounterTs +2024-09-07 16:17:54,385 [main] ERROR UmlAttribute - unclassified CIM attribute: (4261) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.DiscPduCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,385 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,385 [main] TRACE UmlAttribute - created (4261) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.DiscPduCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,385 [main] ERROR UmlAttribute - unclassified CIM attribute: (4262) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.InErrCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,385 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,385 [main] TRACE UmlAttribute - created (4262) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.InErrCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,385 [main] ERROR UmlAttribute - unclassified CIM attribute: (4263) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.InOvCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,385 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,386 [main] TRACE UmlAttribute - created (4263) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.InOvCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,386 [main] ERROR UmlAttribute - unclassified CIM attribute: (4264) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.InterPDUTime: Abstract Types::Floating +2024-09-07 16:17:54,386 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,386 [main] TRACE UmlAttribute - created (4264) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.InterPDUTime: Abstract Types::Floating +2024-09-07 16:17:54,386 [main] ERROR UmlAttribute - unclassified CIM attribute: (4265) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.MisPDUCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,386 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,386 [main] TRACE UmlAttribute - created (4265) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.MisPDUCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,386 [main] ERROR UmlAttribute - unclassified CIM attribute: (4266) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.OutErr: Abstract Types::CounterTs +2024-09-07 16:17:54,386 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,386 [main] TRACE UmlAttribute - created (4266) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.OutErr: Abstract Types::CounterTs +2024-09-07 16:17:54,386 [main] ERROR UmlAttribute - unclassified CIM attribute: (4267) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.OutUv: Abstract Types::CounterTs +2024-09-07 16:17:54,387 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,387 [main] TRACE UmlAttribute - created (4267) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.OutUv: Abstract Types::CounterTs +2024-09-07 16:17:54,387 [main] ERROR UmlAttribute - unclassified CIM attribute: (4269) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.PDUSizeFail: Abstract Types::CounterTs +2024-09-07 16:17:54,387 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,387 [main] TRACE UmlAttribute - created (4269) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.PDUSizeFail: Abstract Types::CounterTs +2024-09-07 16:17:54,387 [main] ERROR UmlAttribute - unclassified CIM attribute: (4273) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.RtxCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,387 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,387 [main] TRACE UmlAttribute - created (4273) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.RtxCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,387 [main] ERROR UmlAttribute - unclassified CIM attribute: (4275) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.RxPduCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,387 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,388 [main] TRACE UmlAttribute - created (4275) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.RxPduCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,388 [main] ERROR UmlAttribute - unclassified CIM attribute: (4276) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.RxSolicitedReq: Abstract Types::CounterTs +2024-09-07 16:17:54,388 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,388 [main] TRACE UmlAttribute - created (4276) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.RxSolicitedReq: Abstract Types::CounterTs +2024-09-07 16:17:54,388 [main] ERROR UmlAttribute - unclassified CIM attribute: (4277) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.RxUnsolicitedReq: Abstract Types::CounterTs +2024-09-07 16:17:54,388 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,389 [main] TRACE UmlAttribute - created (4277) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.RxUnsolicitedReq: Abstract Types::CounterTs +2024-09-07 16:17:54,390 [main] ERROR UmlAttribute - unclassified CIM attribute: (4280) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.TxPduCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,390 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,390 [main] TRACE UmlAttribute - created (4280) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.TxPduCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,390 [main] ERROR UmlAttribute - unclassified CIM attribute: (4281) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.TxSolicitedReq: Abstract Types::CounterTs +2024-09-07 16:17:54,391 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,391 [main] TRACE UmlAttribute - created (4281) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.TxSolicitedReq: Abstract Types::CounterTs +2024-09-07 16:17:54,391 [main] ERROR UmlAttribute - unclassified CIM attribute: (4282) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.TxUnsolicitedReq: Abstract Types::CounterTs +2024-09-07 16:17:54,391 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,391 [main] TRACE UmlAttribute - created (4282) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.TxUnsolicitedReq: Abstract Types::CounterTs +2024-09-07 16:17:54,391 [main] ERROR UmlAttribute - unclassified CIM attribute: (4306) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.StAsProcScsCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,391 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,391 [main] TRACE UmlAttribute - created (4306) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.StAsProcScsCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,391 [main] ERROR UmlAttribute - unclassified CIM attribute: (4307) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.StAsProcFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,391 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,391 [main] TRACE UmlAttribute - created (4307) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.StAsProcFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,392 [main] ERROR UmlAttribute - unclassified CIM attribute: (4308) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyProcScsCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,392 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,392 [main] TRACE UmlAttribute - created (4308) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyProcScsCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,392 [main] ERROR UmlAttribute - unclassified CIM attribute: (4336) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.KeyAutnAlgSupFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,392 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,392 [main] TRACE UmlAttribute - created (4336) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.KeyAutnAlgSupFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,392 [main] ERROR UmlAttribute - unclassified CIM attribute: (4337) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyWrapAlgSupFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,392 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,392 [main] TRACE UmlAttribute - created (4337) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyWrapAlgSupFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,395 [main] ERROR UmlAttribute - unclassified CIM attribute: (4338) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.DataProtAlgSupFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,395 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,395 [main] TRACE UmlAttribute - created (4338) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.DataProtAlgSupFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,395 [main] ERROR UmlAttribute - unclassified CIM attribute: (4339) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyAutnErrCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,396 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,396 [main] TRACE UmlAttribute - created (4339) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyAutnErrCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,396 [main] ERROR UmlAttribute - unclassified CIM attribute: (4340) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.DataAutnErrCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,396 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,396 [main] TRACE UmlAttribute - created (4340) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.DataAutnErrCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,396 [main] ERROR UmlAttribute - unclassified CIM attribute: (4341) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.UnxpMsgErrCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,396 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,397 [main] TRACE UmlAttribute - created (4341) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.UnxpMsgErrCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,397 [main] ERROR UmlAttribute - unclassified CIM attribute: (4342) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.MaxReplyToutCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,397 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,397 [main] TRACE UmlAttribute - created (4342) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.MaxReplyToutCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,397 [main] ERROR UmlAttribute - unclassified CIM attribute: (4343) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.NodeAutrFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,397 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,397 [main] TRACE UmlAttribute - created (4343) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.NodeAutrFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,397 [main] ERROR UmlAttribute - unclassified CIM attribute: (4344) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.CtrlOperAutrFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,398 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,398 [main] TRACE UmlAttribute - created (4344) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.CtrlOperAutrFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,398 [main] ERROR UmlAttribute - unclassified CIM attribute: (4345) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.RemCertCheckFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,398 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,398 [main] TRACE UmlAttribute - created (4345) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.RemCertCheckFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,398 [main] ERROR UmlAttribute - unclassified CIM attribute: (4346) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.RemCertExpiredCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,398 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,398 [main] TRACE UmlAttribute - created (4346) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.RemCertExpiredCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,398 [main] ERROR UmlAttribute - unclassified CIM attribute: (4347) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.RemCertRevokedCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,398 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,398 [main] TRACE UmlAttribute - created (4347) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.RemCertRevokedCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,399 [main] ERROR UmlAttribute - unclassified CIM attribute: (4348) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.LocCertExpiredCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,399 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,399 [main] TRACE UmlAttribute - created (4348) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.LocCertExpiredCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,399 [main] ERROR UmlAttribute - unclassified CIM attribute: (4349) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.LocCertRevokedCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,399 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,399 [main] TRACE UmlAttribute - created (4349) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.LocCertRevokedCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,399 [main] ERROR UmlAttribute - unclassified CIM attribute: (4350) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.KeysInvRemCertRevCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,400 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,400 [main] TRACE UmlAttribute - created (4350) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.KeysInvRemCertRevCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,400 [main] ERROR UmlAttribute - unclassified CIM attribute: (4351) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.KeysInvLocCertRevCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,400 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,400 [main] TRACE UmlAttribute - created (4351) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.KeysInvLocCertRevCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,400 [main] ERROR UmlAttribute - unclassified CIM attribute: (4352) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.DataAutnScsCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,400 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,401 [main] TRACE UmlAttribute - created (4352) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.DataAutnScsCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,401 [main] ERROR UmlAttribute - unclassified CIM attribute: (4353) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.ReplyToutCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,401 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,401 [main] TRACE UmlAttribute - created (4353) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.ReplyToutCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,401 [main] ERROR UmlAttribute - unclassified CIM attribute: (4354) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.RequestToutCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,402 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,402 [main] TRACE UmlAttribute - created (4354) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.RequestToutCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,402 [main] ERROR UmlAttribute - unclassified CIM attribute: (4355) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyInvUseCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,402 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,402 [main] TRACE UmlAttribute - created (4355) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyInvUseCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,402 [main] ERROR UmlAttribute - unclassified CIM attribute: (4356) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyInvToutCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,402 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,403 [main] TRACE UmlAttribute - created (4356) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyInvToutCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,403 [main] ERROR UmlAttribute - unclassified CIM attribute: (4357) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyProcFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,403 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,403 [main] TRACE UmlAttribute - created (4357) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyProcFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,403 [main] ERROR UmlAttribute - unclassified CIM attribute: (4335) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.ProtInfoErrCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,403 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,403 [main] TRACE UmlAttribute - created (4335) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.ProtInfoErrCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,403 [main] ERROR UmlAttribute - unclassified CIM attribute: (4284) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.AssociationId: Abstract Types::EntityIndex +2024-09-07 16:17:54,404 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,404 [main] TRACE UmlAttribute - created (4284) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.AssociationId: Abstract Types::EntityIndex +2024-09-07 16:17:54,404 [main] ERROR UmlAttribute - unclassified CIM attribute: (4285) OTHER_CIM CIM [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.CntRs: Abstract Types::CntRs +2024-09-07 16:17:54,404 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,404 [main] TRACE UmlAttribute - created (4285) OTHER_CIM CIM [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.CntRs: Abstract Types::CntRs +2024-09-07 16:17:54,404 [main] ERROR UmlAttribute - unclassified CIM attribute: (4286) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.LocAddress: Abstract Types::InetAddress +2024-09-07 16:17:54,405 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,405 [main] TRACE UmlAttribute - created (4286) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.LocAddress: Abstract Types::InetAddress +2024-09-07 16:17:54,405 [main] ERROR UmlAttribute - unclassified CIM attribute: (4287) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.LocAddressType: Abstract Types::InetAddressType +2024-09-07 16:17:54,406 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,406 [main] TRACE UmlAttribute - created (4287) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.LocAddressType: Abstract Types::InetAddressType +2024-09-07 16:17:54,406 [main] ERROR UmlAttribute - unclassified CIM attribute: (4288) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.ProtID: EnumeratedTypes::ProtIdType +2024-09-07 16:17:54,406 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,406 [main] TRACE UmlAttribute - created (4288) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.ProtID: EnumeratedTypes::ProtIdType +2024-09-07 16:17:54,407 [main] ERROR UmlAttribute - unclassified CIM attribute: (4289) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.ProviderDesc: Abstract Types::CharString +2024-09-07 16:17:54,407 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,407 [main] TRACE UmlAttribute - created (4289) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.ProviderDesc: Abstract Types::CharString +2024-09-07 16:17:54,407 [main] ERROR UmlAttribute - unclassified CIM attribute: (4290) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.ProviderName: Abstract Types::CharString +2024-09-07 16:17:54,407 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,407 [main] TRACE UmlAttribute - created (4290) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.ProviderName: Abstract Types::CharString +2024-09-07 16:17:54,407 [main] ERROR UmlAttribute - unclassified CIM attribute: (4291) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.RemAddress: Abstract Types::InetAddress +2024-09-07 16:17:54,407 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,407 [main] TRACE UmlAttribute - created (4291) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.RemAddress: Abstract Types::InetAddress +2024-09-07 16:17:54,407 [main] ERROR UmlAttribute - unclassified CIM attribute: (4292) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.RemAddressType: Abstract Types::InetAddressType +2024-09-07 16:17:54,407 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,407 [main] TRACE UmlAttribute - created (4292) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.RemAddressType: Abstract Types::InetAddressType +2024-09-07 16:17:54,407 [main] ERROR UmlAttribute - unclassified CIM attribute: (4293) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.TLnkErrCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,408 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,408 [main] TRACE UmlAttribute - created (4293) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.TLnkErrCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,408 [main] ERROR UmlAttribute - unclassified CIM attribute: (4294) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.TLnkTyp: EnumeratedTypes::LnkType +2024-09-07 16:17:54,408 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,408 [main] TRACE UmlAttribute - created (4294) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.TLnkTyp: EnumeratedTypes::LnkType +2024-09-07 16:17:54,408 [main] ERROR UmlAttribute - unclassified CIM attribute: (4295) OTHER_CIM CIM [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.CntRs: Abstract Types::CntRs +2024-09-07 16:17:54,408 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,408 [main] TRACE UmlAttribute - created (4295) OTHER_CIM CIM [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.CntRs: Abstract Types::CntRs +2024-09-07 16:17:54,408 [main] ERROR UmlAttribute - unclassified CIM attribute: (4296) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:17:54,408 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,408 [main] TRACE UmlAttribute - created (4296) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:17:54,408 [main] ERROR UmlAttribute - unclassified CIM attribute: (4297) OTHER_CIM CIM [0..*] null <
> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.Master: IEEE 1815 and IEC 60870-5 Agent - ed2::MasterAssociation +2024-09-07 16:17:54,409 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,409 [main] TRACE UmlAttribute - created (4297) OTHER_CIM CIM [0..*] attribute <
> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.Master: IEEE 1815 and IEC 60870-5 Agent - ed2::MasterAssociation +2024-09-07 16:17:54,409 [main] ERROR UmlAttribute - unclassified CIM attribute: (4298) OTHER_CIM CIM [0..*] null <
> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.Outstation: IEEE 1815 and IEC 60870-5 Agent - ed2::OutstationAssociation +2024-09-07 16:17:54,409 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,409 [main] TRACE UmlAttribute - created (4298) OTHER_CIM CIM [0..*] attribute <
> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.Outstation: IEEE 1815 and IEC 60870-5 Agent - ed2::OutstationAssociation +2024-09-07 16:17:54,409 [main] ERROR UmlAttribute - unclassified CIM attribute: (4299) OTHER_CIM CIM [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.SecurityNotification: IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2 +2024-09-07 16:17:54,409 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,409 [main] TRACE UmlAttribute - created (4299) OTHER_CIM CIM [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.SecurityNotification: IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2 +2024-09-07 16:17:54,409 [main] ERROR UmlAttribute - unclassified CIM attribute: (4300) OTHER_CIM CIM [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.StateNotification: IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2 +2024-09-07 16:17:54,409 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,409 [main] TRACE UmlAttribute - created (4300) OTHER_CIM CIM [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.StateNotification: IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2 +2024-09-07 16:17:54,409 [main] ERROR UmlAttribute - unclassified CIM attribute: (4358) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:17:54,409 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,410 [main] TRACE UmlAttribute - created (4358) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:17:54,410 [main] ERROR UmlAttribute - unclassified CIM attribute: (4360) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:17:54,410 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,410 [main] TRACE UmlAttribute - created (4360) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:17:54,410 [main] ERROR UmlAttribute - unclassified CIM attribute: (1254) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.assocPoolMax: Abstract Types::Integer +2024-09-07 16:17:54,410 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,410 [main] TRACE UmlAttribute - created (1254) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.assocPoolMax: Abstract Types::Integer +2024-09-07 16:17:54,410 [main] ERROR UmlAttribute - unclassified CIM attribute: (1255) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.assocPoolUsed: Abstract Types::Integer +2024-09-07 16:17:54,410 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,410 [main] TRACE UmlAttribute - created (1255) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.assocPoolUsed: Abstract Types::Integer +2024-09-07 16:17:54,410 [main] ERROR UmlAttribute - unclassified CIM attribute: (1278) OTHER_CIM CIM [0..1] null <> ACSI::ACSISummary.CntRs: Abstract Types::CntRs +2024-09-07 16:17:54,410 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,410 [main] TRACE UmlAttribute - created (1278) OTHER_CIM CIM [0..1] attribute <> ACSI::ACSISummary.CntRs: Abstract Types::CntRs +2024-09-07 16:17:54,410 [main] ERROR UmlAttribute - unclassified CIM attribute: (3931) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.CtrlPrivFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,411 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,411 [main] TRACE UmlAttribute - created (3931) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.CtrlPrivFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,411 [main] ERROR UmlAttribute - unclassified CIM attribute: (1262) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.gsePubMax: Abstract Types::Integer +2024-09-07 16:17:54,411 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,411 [main] TRACE UmlAttribute - created (1262) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.gsePubMax: Abstract Types::Integer +2024-09-07 16:17:54,411 [main] ERROR UmlAttribute - unclassified CIM attribute: (2263) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.gsePubUsed: Abstract Types::Integer +2024-09-07 16:17:54,411 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,411 [main] TRACE UmlAttribute - created (2263) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.gsePubUsed: Abstract Types::Integer +2024-09-07 16:17:54,411 [main] ERROR UmlAttribute - unclassified CIM attribute: (1264) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.gseSubMax: Abstract Types::Integer +2024-09-07 16:17:54,411 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,411 [main] TRACE UmlAttribute - created (1264) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.gseSubMax: Abstract Types::Integer +2024-09-07 16:17:54,411 [main] ERROR UmlAttribute - unclassified CIM attribute: (1263) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.gseSubUsed: Abstract Types::Integer +2024-09-07 16:17:54,411 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,411 [main] TRACE UmlAttribute - created (1263) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.gseSubUsed: Abstract Types::Integer +2024-09-07 16:17:54,411 [main] ERROR UmlAttribute - unclassified CIM attribute: (3709) OTHER_CIM CIM const [1..1] null <> ACSI::ACSISummary.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:17:54,412 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,412 [main] TRACE UmlAttribute - created (3709) OTHER_CIM CIM const [1..1] attribute <> ACSI::ACSISummary.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:17:54,412 [main] ERROR UmlAttribute - unclassified CIM attribute: (3930) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.PrivFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,412 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,412 [main] TRACE UmlAttribute - created (3930) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.PrivFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,412 [main] ERROR UmlAttribute - unclassified CIM attribute: (1271) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.RemoteEstAssocCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,412 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,412 [main] TRACE UmlAttribute - created (1271) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.RemoteEstAssocCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,412 [main] ERROR UmlAttribute - unclassified CIM attribute: (3932) OTHER_CIM CIM const [1..1] null <> ACSI::ACSISummary.AcsCtlFail: Abstract Types::CounterTs +2024-09-07 16:17:54,412 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,412 [main] TRACE UmlAttribute - created (3932) OTHER_CIM CIM const [1..1] attribute <> ACSI::ACSISummary.AcsCtlFail: Abstract Types::CounterTs +2024-09-07 16:17:54,413 [main] ERROR UmlAttribute - unclassified CIM attribute: (1282) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.svPubMax: Abstract Types::Integer +2024-09-07 16:17:54,413 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,413 [main] TRACE UmlAttribute - created (1282) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.svPubMax: Abstract Types::Integer +2024-09-07 16:17:54,413 [main] ERROR UmlAttribute - unclassified CIM attribute: (1281) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.svPubUsed: Abstract Types::Integer +2024-09-07 16:17:54,413 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,413 [main] TRACE UmlAttribute - created (1281) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.svPubUsed: Abstract Types::Integer +2024-09-07 16:17:54,413 [main] ERROR UmlAttribute - unclassified CIM attribute: (1284) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.svSubMax: Abstract Types::Integer +2024-09-07 16:17:54,413 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,413 [main] TRACE UmlAttribute - created (1284) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.svSubMax: Abstract Types::Integer +2024-09-07 16:17:54,413 [main] ERROR UmlAttribute - unclassified CIM attribute: (1283) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.svSubUsed: Abstract Types::Integer +2024-09-07 16:17:54,413 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,413 [main] TRACE UmlAttribute - created (1283) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.svSubUsed: Abstract Types::Integer +2024-09-07 16:17:54,413 [main] ERROR UmlAttribute - unclassified CIM attribute: (4122) OTHER_CIM CIM const [1..1] null <> MMS::MMSProtocolInfo.ErrorRxCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,414 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,414 [main] TRACE UmlAttribute - created (4122) OTHER_CIM CIM const [1..1] attribute <> MMS::MMSProtocolInfo.ErrorRxCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,414 [main] ERROR UmlAttribute - unclassified CIM attribute: (4123) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.ErrorTxCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,414 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,414 [main] TRACE UmlAttribute - created (4123) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.ErrorTxCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,414 [main] ERROR UmlAttribute - unclassified CIM attribute: (3214) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.InfoRptRxCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,414 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,414 [main] TRACE UmlAttribute - created (3214) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.InfoRptRxCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,414 [main] ERROR UmlAttribute - unclassified CIM attribute: (4120) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.InfoRptTxCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,414 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,414 [main] TRACE UmlAttribute - created (4120) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.InfoRptTxCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,414 [main] ERROR UmlAttribute - unclassified CIM attribute: (3969) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.MisCmdAckCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,415 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,415 [main] TRACE UmlAttribute - created (3969) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.MisCmdAckCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,415 [main] ERROR UmlAttribute - unclassified CIM attribute: (3414) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.MMSProExchTime: Abstract Types::Floating +2024-09-07 16:17:54,415 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,415 [main] TRACE UmlAttribute - created (3414) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.MMSProExchTime: Abstract Types::Floating +2024-09-07 16:17:54,415 [main] ERROR UmlAttribute - unclassified CIM attribute: (3211) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.RejectRxCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,415 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,415 [main] TRACE UmlAttribute - created (3211) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.RejectRxCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,415 [main] ERROR UmlAttribute - unclassified CIM attribute: (3212) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.RejectTxCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,415 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,415 [main] TRACE UmlAttribute - created (3212) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.RejectTxCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,415 [main] ERROR UmlAttribute - unclassified CIM attribute: (3208) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.ReqRxCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,415 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,416 [main] TRACE UmlAttribute - created (3208) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.ReqRxCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,416 [main] ERROR UmlAttribute - unclassified CIM attribute: (3206) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.ReqTxCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,416 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,416 [main] TRACE UmlAttribute - created (3206) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.ReqTxCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,416 [main] ERROR UmlAttribute - unclassified CIM attribute: (3210) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.RespRxCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,416 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,416 [main] TRACE UmlAttribute - created (3210) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.RespRxCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,416 [main] ERROR UmlAttribute - unclassified CIM attribute: (3209) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.RespTxCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,416 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,416 [main] TRACE UmlAttribute - created (3209) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.RespTxCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,416 [main] ERROR UmlAttribute - unclassified CIM attribute: (3935) OTHER_CIM CIM const [1..1] null <> MMS::MMSProtocolInfo.SessKeyFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,416 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,417 [main] TRACE UmlAttribute - created (3935) OTHER_CIM CIM const [1..1] attribute <> MMS::MMSProtocolInfo.SessKeyFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,417 [main] ERROR UmlAttribute - unclassified CIM attribute: (3918) OTHER_CIM CIM const [1..1] null <> MMS::MMSProvider.AProfileDecryptFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,417 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,417 [main] TRACE UmlAttribute - created (3918) OTHER_CIM CIM const [1..1] attribute <> MMS::MMSProvider.AProfileDecryptFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,417 [main] ERROR UmlAttribute - unclassified CIM attribute: (3938) OTHER_CIM CIM const [1..1] null <> MMS::MMSProvider.AuthFail: Abstract Types::CounterTs +2024-09-07 16:17:54,417 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,417 [main] TRACE UmlAttribute - created (3938) OTHER_CIM CIM const [1..1] attribute <> MMS::MMSProvider.AuthFail: Abstract Types::CounterTs +2024-09-07 16:17:54,417 [main] ERROR UmlAttribute - unclassified CIM attribute: (3245) OTHER_CIM CIM [0..1] null <> MMS::MMSProvider.CntRs: Abstract Types::CntRs +2024-09-07 16:17:54,417 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,417 [main] TRACE UmlAttribute - created (3245) OTHER_CIM CIM [0..1] attribute <> MMS::MMSProvider.CntRs: Abstract Types::CntRs +2024-09-07 16:17:54,417 [main] ERROR UmlAttribute - unclassified CIM attribute: (2831) OTHER_CIM CIM const [1..1] null <> MMS::MMSProvider.ConnFailInCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,417 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,418 [main] TRACE UmlAttribute - created (2831) OTHER_CIM CIM const [1..1] attribute <> MMS::MMSProvider.ConnFailInCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,418 [main] ERROR UmlAttribute - unclassified CIM attribute: (2832) OTHER_CIM CIM const [1..1] null <> MMS::MMSProvider.ConnFailOutCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,418 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,418 [main] TRACE UmlAttribute - created (2832) OTHER_CIM CIM const [1..1] attribute <> MMS::MMSProvider.ConnFailOutCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,418 [main] ERROR UmlAttribute - unclassified CIM attribute: (3936) OTHER_CIM CIM const [0..1] null <> MMS::MMSProvider.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,418 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,418 [main] TRACE UmlAttribute - created (3936) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProvider.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,418 [main] ERROR UmlAttribute - unclassified CIM attribute: (3710) OTHER_CIM CIM const [1..1] null <> MMS::MMSProvider.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:17:54,418 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,418 [main] TRACE UmlAttribute - created (3710) OTHER_CIM CIM const [1..1] attribute <> MMS::MMSProvider.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:17:54,418 [main] ERROR UmlAttribute - unclassified CIM attribute: (2803) OTHER_CIM CIM [0..*] null <
> MMS::MMSProvider.MMS: MMS::MMSAssociation +2024-09-07 16:17:54,419 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,419 [main] TRACE UmlAttribute - created (2803) OTHER_CIM CIM [0..*] attribute <
> MMS::MMSProvider.MMS: MMS::MMSAssociation +2024-09-07 16:17:54,419 [main] ERROR UmlAttribute - unclassified CIM attribute: (3915) OTHER_CIM CIM const [0..1] null <> MMS::MMSProvider.PrivFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,419 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,419 [main] TRACE UmlAttribute - created (3915) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProvider.PrivFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,419 [main] ERROR UmlAttribute - unclassified CIM attribute: (2810) OTHER_CIM CIM const [0..1] null <> MMS::MMSProvider.ProviderDesc: Abstract Types::CharString +2024-09-07 16:17:54,419 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,419 [main] TRACE UmlAttribute - created (2810) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProvider.ProviderDesc: Abstract Types::CharString +2024-09-07 16:17:54,419 [main] ERROR UmlAttribute - unclassified CIM attribute: (2811) OTHER_CIM CIM const [0..1] null <> MMS::MMSProvider.ProviderName: Abstract Types::CharString +2024-09-07 16:17:54,419 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,419 [main] TRACE UmlAttribute - created (2811) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProvider.ProviderName: Abstract Types::CharString +2024-09-07 16:17:54,419 [main] ERROR UmlAttribute - unclassified CIM attribute: (3614) OTHER_CIM CIM [0..1] null <> MMS::MMSProvider.SecurityNotification: MMS::MMSSecurityNotification +2024-09-07 16:17:54,420 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,420 [main] TRACE UmlAttribute - created (3614) OTHER_CIM CIM [0..1] attribute <> MMS::MMSProvider.SecurityNotification: MMS::MMSSecurityNotification +2024-09-07 16:17:54,420 [main] ERROR UmlAttribute - unclassified CIM attribute: (4030) OTHER_CIM CIM const [0..1] null <> MMS::MMSProvider.SessionEstablishmentRate: Abstract Types::Integer +2024-09-07 16:17:54,420 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,420 [main] TRACE UmlAttribute - created (4030) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProvider.SessionEstablishmentRate: Abstract Types::Integer +2024-09-07 16:17:54,420 [main] ERROR UmlAttribute - unclassified CIM attribute: (4031) OTHER_CIM CIM const [0..1] null <> MMS::MMSProvider.SessionRestartCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,420 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,420 [main] TRACE UmlAttribute - created (4031) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProvider.SessionRestartCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,420 [main] ERROR UmlAttribute - unclassified CIM attribute: (3613) OTHER_CIM CIM [0..1] null <> MMS::MMSProvider.StateNotification: MMS::MMSNotification +2024-09-07 16:17:54,420 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,420 [main] TRACE UmlAttribute - created (3613) OTHER_CIM CIM [0..1] attribute <> MMS::MMSProvider.StateNotification: MMS::MMSNotification +2024-09-07 16:17:54,420 [main] ERROR UmlAttribute - unclassified CIM attribute: (3919) OTHER_CIM CIM const [1..1] null <> MMS::MMSProvider.TProfileDecryptFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,421 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,421 [main] TRACE UmlAttribute - created (3919) OTHER_CIM CIM const [1..1] attribute <> MMS::MMSProvider.TProfileDecryptFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,421 [main] ERROR UmlAttribute - unclassified CIM attribute: (3921) OTHER_CIM CIM const [0..1] null <> MMS::MMSProvider.TProfileSessKeyFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,421 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,421 [main] TRACE UmlAttribute - created (3921) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProvider.TProfileSessKeyFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,421 [main] ERROR UmlAttribute - unclassified CIM attribute: (3975) OTHER_CIM CIM const [1..1] null <> MMS::MMSProvider.UpKeyFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,421 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,421 [main] TRACE UmlAttribute - created (3975) OTHER_CIM CIM const [1..1] attribute <> MMS::MMSProvider.UpKeyFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,421 [main] ERROR UmlAttribute - unclassified CIM attribute: (2820) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.Active: Abstract Types::BooleanValueTs +2024-09-07 16:17:54,421 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,421 [main] TRACE UmlAttribute - created (2820) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.Active: Abstract Types::BooleanValueTs +2024-09-07 16:17:54,421 [main] ERROR UmlAttribute - unclassified CIM attribute: (3727) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.AssociationId: Abstract Types::EntityIndex +2024-09-07 16:17:54,422 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,422 [main] TRACE UmlAttribute - created (3727) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.AssociationId: Abstract Types::EntityIndex +2024-09-07 16:17:54,423 [main] ERROR UmlAttribute - unclassified CIM attribute: (4119) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.Client: Abstract Types::BooleanValue +2024-09-07 16:17:54,423 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,423 [main] TRACE UmlAttribute - created (4119) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.Client: Abstract Types::BooleanValue +2024-09-07 16:17:54,423 [main] ERROR UmlAttribute - unclassified CIM attribute: (3246) OTHER_CIM CIM [0..1] null <> MMS::MMSAssociation.CntRs: Abstract Types::CntRs +2024-09-07 16:17:54,423 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,424 [main] TRACE UmlAttribute - created (3246) OTHER_CIM CIM [0..1] attribute <> MMS::MMSAssociation.CntRs: Abstract Types::CntRs +2024-09-07 16:17:54,424 [main] ERROR UmlAttribute - unclassified CIM attribute: (3939) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.HndShTime: Abstract Types::Floating +2024-09-07 16:17:54,424 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,424 [main] TRACE UmlAttribute - created (3939) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.HndShTime: Abstract Types::Floating +2024-09-07 16:17:54,424 [main] ERROR UmlAttribute - unclassified CIM attribute: (2844) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.RemoteEstAssos: Abstract Types::BooleanValue +2024-09-07 16:17:54,424 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,424 [main] TRACE UmlAttribute - created (2844) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.RemoteEstAssos: Abstract Types::BooleanValue +2024-09-07 16:17:54,424 [main] ERROR UmlAttribute - unclassified CIM attribute: (2876) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.RemoteIP: Abstract Types::InetAddress +2024-09-07 16:17:54,424 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,424 [main] TRACE UmlAttribute - created (2876) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.RemoteIP: Abstract Types::InetAddress +2024-09-07 16:17:54,424 [main] ERROR UmlAttribute - unclassified CIM attribute: (3692) OTHER_CIM CIM [0..1] null <> MMS::MMSAssociation.RemoteIPAddressType: Abstract Types::InetAddressType +2024-09-07 16:17:54,425 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,425 [main] TRACE UmlAttribute - created (3692) OTHER_CIM CIM [0..1] attribute <> MMS::MMSAssociation.RemoteIPAddressType: Abstract Types::InetAddressType +2024-09-07 16:17:54,426 [main] ERROR UmlAttribute - unclassified CIM attribute: (2873) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.RemotePSEL: Abstract Types::Selector +2024-09-07 16:17:54,426 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,426 [main] TRACE UmlAttribute - created (2873) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.RemotePSEL: Abstract Types::Selector +2024-09-07 16:17:54,426 [main] ERROR UmlAttribute - unclassified CIM attribute: (2874) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.RemoteSSEL: Abstract Types::Selector +2024-09-07 16:17:54,427 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,427 [main] TRACE UmlAttribute - created (2874) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.RemoteSSEL: Abstract Types::Selector +2024-09-07 16:17:54,427 [main] ERROR UmlAttribute - unclassified CIM attribute: (2875) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.RemoteTSEL: Abstract Types::Selector +2024-09-07 16:17:54,427 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,427 [main] TRACE UmlAttribute - created (2875) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.RemoteTSEL: Abstract Types::Selector +2024-09-07 16:17:54,427 [main] ERROR UmlAttribute - unclassified CIM attribute: (3972) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.ReportPer100Seconds: Abstract Types::Integer +2024-09-07 16:17:54,427 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,427 [main] TRACE UmlAttribute - created (3972) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.ReportPer100Seconds: Abstract Types::Integer +2024-09-07 16:17:54,427 [main] ERROR UmlAttribute - unclassified CIM attribute: (3968) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.RptReceptionDelay: Abstract Types::FloatingTs +2024-09-07 16:17:54,427 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,427 [main] TRACE UmlAttribute - created (3968) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.RptReceptionDelay: Abstract Types::FloatingTs +2024-09-07 16:17:54,427 [main] ERROR UmlAttribute - unclassified CIM attribute: (3913) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.SecurityProfile: EnumeratedTypes::SecurityProfileType +2024-09-07 16:17:54,427 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,427 [main] TRACE UmlAttribute - created (3913) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.SecurityProfile: EnumeratedTypes::SecurityProfileType +2024-09-07 16:17:54,428 [main] ERROR UmlAttribute - unclassified CIM attribute: (3582) OTHER_CIM CIM const [0..1] null <> MMS::MMSSecurityNotification.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,428 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,428 [main] TRACE UmlAttribute - created (3582) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSSecurityNotification.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,428 [main] ERROR UmlAttribute - unclassified CIM attribute: (4036) OTHER_CIM CIM const [0..1] null <> MMS::MMSSecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:17:54,428 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,428 [main] TRACE UmlAttribute - created (4036) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSSecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:17:54,428 [main] ERROR UmlAttribute - unclassified CIM attribute: (3581) OTHER_CIM CIM const [0..1] null <> MMS::MMSSecurityNotification.PrivFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,428 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,428 [main] TRACE UmlAttribute - created (3581) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSSecurityNotification.PrivFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,428 [main] ERROR UmlAttribute - unclassified CIM attribute: (3584) OTHER_CIM CIM const [0..1] null <> MMS::MMSSecurityNotification.UpKeyFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,428 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,428 [main] TRACE UmlAttribute - created (3584) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSSecurityNotification.UpKeyFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,428 [main] ERROR UmlAttribute - unclassified CIM attribute: (3573) OTHER_CIM CIM const [0..1] null <> MMS::MMSNotification.ConnFailInCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,428 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,429 [main] TRACE UmlAttribute - created (3573) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSNotification.ConnFailInCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,429 [main] ERROR UmlAttribute - unclassified CIM attribute: (3574) OTHER_CIM CIM const [0..1] null <> MMS::MMSNotification.ConnFailOutCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,429 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,429 [main] TRACE UmlAttribute - created (3574) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSNotification.ConnFailOutCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,429 [main] ERROR UmlAttribute - unclassified CIM attribute: (3575) OTHER_CIM CIM const [0..1] null <> MMS::MMSNotification.RejectRxCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,429 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,429 [main] TRACE UmlAttribute - created (3575) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSNotification.RejectRxCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,429 [main] ERROR UmlAttribute - unclassified CIM attribute: (3576) OTHER_CIM CIM const [0..1] null <> MMS::MMSNotification.RejectTxCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,429 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,429 [main] TRACE UmlAttribute - created (3576) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSNotification.RejectTxCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,429 [main] ERROR UmlAttribute - unclassified CIM attribute: (4054) OTHER_CIM CIM const [0..1] null <> SV and GSE common objects::GSEandSVCommon.GroupUpKeyFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,430 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,430 [main] TRACE UmlAttribute - created (4054) OTHER_CIM CIM const [0..1] attribute <> SV and GSE common objects::GSEandSVCommon.GroupUpKeyFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,430 [main] ERROR UmlAttribute - unclassified CIM attribute: (4055) OTHER_CIM CIM const [1..1] null <> SV and GSE common objects::GSEandSVCommon.KDCAuthFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,430 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,430 [main] TRACE UmlAttribute - created (4055) OTHER_CIM CIM const [1..1] attribute <> SV and GSE common objects::GSEandSVCommon.KDCAuthFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,430 [main] ERROR UmlAttribute - unclassified CIM attribute: (4056) OTHER_CIM CIM const [0..1] null <> SV and GSE common objects::GSEandSVCommon.KDCSessionKeyFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,430 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,431 [main] TRACE UmlAttribute - created (4056) OTHER_CIM CIM const [0..1] attribute <> SV and GSE common objects::GSEandSVCommon.KDCSessionKeyFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,431 [main] ERROR UmlAttribute - unclassified CIM attribute: (4057) OTHER_CIM CIM const [0..1] null <> SV and GSE common objects::GSEandSVPublisherAssociation.CBRef: Abstract Types::CharString +2024-09-07 16:17:54,431 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,431 [main] TRACE UmlAttribute - created (4057) OTHER_CIM CIM const [0..1] attribute <> SV and GSE common objects::GSEandSVPublisherAssociation.CBRef: Abstract Types::CharString +2024-09-07 16:17:54,431 [main] ERROR UmlAttribute - unclassified CIM attribute: (4058) OTHER_CIM CIM [0..1] null <> SV and GSE common objects::GSEandSVPublisherAssociation.CntRs: Abstract Types::CntRs +2024-09-07 16:17:54,431 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,431 [main] TRACE UmlAttribute - created (4058) OTHER_CIM CIM [0..1] attribute <> SV and GSE common objects::GSEandSVPublisherAssociation.CntRs: Abstract Types::CntRs +2024-09-07 16:17:54,431 [main] ERROR UmlAttribute - unclassified CIM attribute: (4059) OTHER_CIM CIM const [0..1] null <> SV and GSE common objects::GSEandSVPublisherAssociation.OutUv: Abstract Types::CounterTs +2024-09-07 16:17:54,431 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,431 [main] TRACE UmlAttribute - created (4059) OTHER_CIM CIM const [0..1] attribute <> SV and GSE common objects::GSEandSVPublisherAssociation.OutUv: Abstract Types::CounterTs +2024-09-07 16:17:54,431 [main] ERROR UmlAttribute - unclassified CIM attribute: (4366) OTHER_CIM CIM const [1..1] null <> SV and GSE common objects::GSEandSVPublisherAssociation.APPID: Abstract Types::CharString +2024-09-07 16:17:54,431 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,431 [main] TRACE UmlAttribute - created (4366) OTHER_CIM CIM const [1..1] attribute <> SV and GSE common objects::GSEandSVPublisherAssociation.APPID: Abstract Types::CharString +2024-09-07 16:17:54,431 [main] ERROR UmlAttribute - unclassified CIM attribute: (3829) OTHER_CIM CIM const [0..1] null <> SV and GSE common objects::GSEandSVPublisherAssociation.TxPduPerSecond: Abstract Types::Floating +2024-09-07 16:17:54,431 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,432 [main] TRACE UmlAttribute - created (3829) OTHER_CIM CIM const [0..1] attribute <> SV and GSE common objects::GSEandSVPublisherAssociation.TxPduPerSecond: Abstract Types::Floating +2024-09-07 16:17:54,432 [main] ERROR UmlAttribute - unclassified CIM attribute: (4061) OTHER_CIM CIM const [0..1] null <> SV and GSE common objects::GSEandSVSubscriberAssociation.CBRef: Abstract Types::CharString +2024-09-07 16:17:54,432 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,432 [main] TRACE UmlAttribute - created (4061) OTHER_CIM CIM const [0..1] attribute <> SV and GSE common objects::GSEandSVSubscriberAssociation.CBRef: Abstract Types::CharString +2024-09-07 16:17:54,432 [main] ERROR UmlAttribute - unclassified CIM attribute: (4062) OTHER_CIM CIM [0..1] null <> SV and GSE common objects::GSEandSVSubscriberAssociation.CntRs: Abstract Types::CntRs +2024-09-07 16:17:54,432 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,432 [main] TRACE UmlAttribute - created (4062) OTHER_CIM CIM [0..1] attribute <> SV and GSE common objects::GSEandSVSubscriberAssociation.CntRs: Abstract Types::CntRs +2024-09-07 16:17:54,432 [main] ERROR UmlAttribute - unclassified CIM attribute: (4063) OTHER_CIM CIM const [0..1] null <> SV and GSE common objects::GSEandSVSubscriberAssociation.InOvCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,432 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,432 [main] TRACE UmlAttribute - created (4063) OTHER_CIM CIM const [0..1] attribute <> SV and GSE common objects::GSEandSVSubscriberAssociation.InOvCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,432 [main] ERROR UmlAttribute - unclassified CIM attribute: (4064) OTHER_CIM CIM const [1..1] null <> SV and GSE common objects::GSEandSVSubscriberAssociation.MessageIntegrityFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,432 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,432 [main] TRACE UmlAttribute - created (4064) OTHER_CIM CIM const [1..1] attribute <> SV and GSE common objects::GSEandSVSubscriberAssociation.MessageIntegrityFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,432 [main] ERROR UmlAttribute - unclassified CIM attribute: (4067) OTHER_CIM CIM const [0..1] null <> SV and GSE common objects::GSEandSVSubscriberAssociation.RxPduPerSecond: Abstract Types::Floating +2024-09-07 16:17:54,432 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,433 [main] TRACE UmlAttribute - created (4067) OTHER_CIM CIM const [0..1] attribute <> SV and GSE common objects::GSEandSVSubscriberAssociation.RxPduPerSecond: Abstract Types::Floating +2024-09-07 16:17:54,435 [main] ERROR UmlAttribute - unclassified CIM attribute: (4365) OTHER_CIM CIM const [1..1] null <> SV and GSE common objects::GSEandSVSubscriberAssociation.APPID: Abstract Types::CharString +2024-09-07 16:17:54,435 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,435 [main] TRACE UmlAttribute - created (4365) OTHER_CIM CIM const [1..1] attribute <> SV and GSE common objects::GSEandSVSubscriberAssociation.APPID: Abstract Types::CharString +2024-09-07 16:17:54,436 [main] ERROR UmlAttribute - unclassified CIM attribute: (4367) OTHER_CIM CIM const [1..1] null <> SV and GSE common objects::GSEandSVSubscriberAssociation.RxAPPID: Abstract Types::CharStringTs +2024-09-07 16:17:54,436 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,436 [main] TRACE UmlAttribute - created (4367) OTHER_CIM CIM const [1..1] attribute <> SV and GSE common objects::GSEandSVSubscriberAssociation.RxAPPID: Abstract Types::CharStringTs +2024-09-07 16:17:54,436 [main] ERROR UmlAttribute - unclassified CIM attribute: (3844) OTHER_CIM CIM [0..1] null <> SV::SVProvider.CntRs: Abstract Types::CntRs +2024-09-07 16:17:54,436 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,436 [main] TRACE UmlAttribute - created (3844) OTHER_CIM CIM [0..1] attribute <> SV::SVProvider.CntRs: Abstract Types::CntRs +2024-09-07 16:17:54,436 [main] ERROR UmlAttribute - unclassified CIM attribute: (4052) OTHER_CIM CIM const [0..1] null <> SV::SVProvider.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,436 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,437 [main] TRACE UmlAttribute - created (4052) OTHER_CIM CIM const [0..1] attribute <> SV::SVProvider.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,437 [main] ERROR UmlAttribute - unclassified CIM attribute: (3845) OTHER_CIM CIM const [0..1] null <> SV::SVProvider.PDUSizeFail: Abstract Types::CounterTs +2024-09-07 16:17:54,437 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,437 [main] TRACE UmlAttribute - created (3845) OTHER_CIM CIM const [0..1] attribute <> SV::SVProvider.PDUSizeFail: Abstract Types::CounterTs +2024-09-07 16:17:54,437 [main] ERROR UmlAttribute - unclassified CIM attribute: (3846) OTHER_CIM CIM [0..*] null <
> SV::SVProvider.PIP: SV::SVPublisherAssociationIP +2024-09-07 16:17:54,437 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,437 [main] TRACE UmlAttribute - created (3846) OTHER_CIM CIM [0..*] attribute <
> SV::SVProvider.PIP: SV::SVPublisherAssociationIP +2024-09-07 16:17:54,437 [main] ERROR UmlAttribute - unclassified CIM attribute: (3847) OTHER_CIM CIM [0..*] null <
> SV::SVProvider.PL2: SV::SVPublisherAssociationL2 +2024-09-07 16:17:54,438 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,438 [main] TRACE UmlAttribute - created (3847) OTHER_CIM CIM [0..*] attribute <
> SV::SVProvider.PL2: SV::SVPublisherAssociationL2 +2024-09-07 16:17:54,438 [main] ERROR UmlAttribute - unclassified CIM attribute: (3848) OTHER_CIM CIM [0..1] null <> SV::SVProvider.SecurityNotification: SV::SVNotification +2024-09-07 16:17:54,438 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,438 [main] TRACE UmlAttribute - created (3848) OTHER_CIM CIM [0..1] attribute <> SV::SVProvider.SecurityNotification: SV::SVNotification +2024-09-07 16:17:54,438 [main] ERROR UmlAttribute - unclassified CIM attribute: (3849) OTHER_CIM CIM [0..*] null <
> SV::SVProvider.SIP: SV::SVSubcriberAssociationIP +2024-09-07 16:17:54,440 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,440 [main] TRACE UmlAttribute - created (3849) OTHER_CIM CIM [0..*] attribute <
> SV::SVProvider.SIP: SV::SVSubcriberAssociationIP +2024-09-07 16:17:54,440 [main] ERROR UmlAttribute - unclassified CIM attribute: (3850) OTHER_CIM CIM [0..*] null <
> SV::SVProvider.SL2: SV::SVSubcriberAssociationL2 +2024-09-07 16:17:54,440 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,440 [main] TRACE UmlAttribute - created (3850) OTHER_CIM CIM [0..*] attribute <
> SV::SVProvider.SL2: SV::SVSubcriberAssociationL2 +2024-09-07 16:17:54,441 [main] ERROR UmlAttribute - unclassified CIM attribute: (3817) OTHER_CIM CIM const [0..1] null <> SV::SVPublisherAssociationIP.DestIpAddr: Abstract Types::InetAddress +2024-09-07 16:17:54,441 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,441 [main] TRACE UmlAttribute - created (3817) OTHER_CIM CIM const [0..1] attribute <> SV::SVPublisherAssociationIP.DestIpAddr: Abstract Types::InetAddress +2024-09-07 16:17:54,441 [main] ERROR UmlAttribute - unclassified CIM attribute: (3818) OTHER_CIM CIM const [0..1] null <> SV::SVPublisherAssociationIP.DestIpAddrType: Abstract Types::InetAddressType +2024-09-07 16:17:54,441 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,441 [main] TRACE UmlAttribute - created (3818) OTHER_CIM CIM const [0..1] attribute <> SV::SVPublisherAssociationIP.DestIpAddrType: Abstract Types::InetAddressType +2024-09-07 16:17:54,442 [main] ERROR UmlAttribute - unclassified CIM attribute: (3819) OTHER_CIM CIM const [0..1] null <> SV::SVPublisherAssociationL2.DestMacAddr: Abstract Types::MacAddress +2024-09-07 16:17:54,442 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,442 [main] TRACE UmlAttribute - created (3819) OTHER_CIM CIM const [0..1] attribute <> SV::SVPublisherAssociationL2.DestMacAddr: Abstract Types::MacAddress +2024-09-07 16:17:54,442 [main] ERROR UmlAttribute - unclassified CIM attribute: (3823) OTHER_CIM CIM const [0..1] null <> SV::SVSubcriberAssociationIP.SrcIpAddr: Abstract Types::InetAddress +2024-09-07 16:17:54,442 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,442 [main] TRACE UmlAttribute - created (3823) OTHER_CIM CIM const [0..1] attribute <> SV::SVSubcriberAssociationIP.SrcIpAddr: Abstract Types::InetAddress +2024-09-07 16:17:54,442 [main] ERROR UmlAttribute - unclassified CIM attribute: (3824) OTHER_CIM CIM const [0..1] null <> SV::SVSubcriberAssociationIP.SrcIpAddrType: Abstract Types::InetAddressType +2024-09-07 16:17:54,443 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,444 [main] TRACE UmlAttribute - created (3824) OTHER_CIM CIM const [0..1] attribute <> SV::SVSubcriberAssociationIP.SrcIpAddrType: Abstract Types::InetAddressType +2024-09-07 16:17:54,444 [main] ERROR UmlAttribute - unclassified CIM attribute: (3825) OTHER_CIM CIM const [0..1] null <> SV::SVSubcriberAssociationL2.SrcMacAddr: Abstract Types::MacAddress +2024-09-07 16:17:54,444 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,444 [main] TRACE UmlAttribute - created (3825) OTHER_CIM CIM const [0..1] attribute <> SV::SVSubcriberAssociationL2.SrcMacAddr: Abstract Types::MacAddress +2024-09-07 16:17:54,444 [main] ERROR UmlAttribute - unclassified CIM attribute: (3750) OTHER_CIM CIM const [0..1] null <> GSE::GSESubscriberAssociation.ConfRevMis: Abstract Types::BooleanValue +2024-09-07 16:17:54,444 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,444 [main] TRACE UmlAttribute - created (3750) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubscriberAssociation.ConfRevMis: Abstract Types::BooleanValue +2024-09-07 16:17:54,444 [main] ERROR UmlAttribute - unclassified CIM attribute: (3755) OTHER_CIM CIM const [0..1] null <> GSE::GSESubscriberAssociation.NdsComm: Abstract Types::BooleanValue +2024-09-07 16:17:54,444 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,445 [main] TRACE UmlAttribute - created (3755) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubscriberAssociation.NdsComm: Abstract Types::BooleanValue +2024-09-07 16:17:54,445 [main] ERROR UmlAttribute - unclassified CIM attribute: (4368) OTHER_CIM CIM const [0..1] null <> GSE::GSESubscriberAssociation.ConfRev: Abstract Types::Integer +2024-09-07 16:17:54,445 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,445 [main] TRACE UmlAttribute - created (4368) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubscriberAssociation.ConfRev: Abstract Types::Integer +2024-09-07 16:17:54,445 [main] ERROR UmlAttribute - unclassified CIM attribute: (4369) OTHER_CIM CIM const [0..1] null <> GSE::GSESubscriberAssociation.RxConfRev: Abstract Types::IntegerTs +2024-09-07 16:17:54,445 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,445 [main] TRACE UmlAttribute - created (4369) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubscriberAssociation.RxConfRev: Abstract Types::IntegerTs +2024-09-07 16:17:54,446 [main] ERROR UmlAttribute - unclassified CIM attribute: (3758) OTHER_CIM CIM const [0..1] null <> GSE::GSESubscriberAssociation.TalExpCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,446 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,446 [main] TRACE UmlAttribute - created (3758) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubscriberAssociation.TalExpCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,446 [main] ERROR UmlAttribute - unclassified CIM attribute: (4370) OTHER_CIM CIM const [0..1] null <> GSE::GSESubscriberAssociation.OosErrCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,446 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,446 [main] TRACE UmlAttribute - created (4370) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubscriberAssociation.OosErrCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,447 [main] ERROR UmlAttribute - unclassified CIM attribute: (4371) OTHER_CIM CIM const [0..1] null <> GSE::GSESubscriberAssociation.DupMsgRx: Abstract Types::BooleanValueTs +2024-09-07 16:17:54,447 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,447 [main] TRACE UmlAttribute - created (4371) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubscriberAssociation.DupMsgRx: Abstract Types::BooleanValueTs +2024-09-07 16:17:54,447 [main] ERROR UmlAttribute - unclassified CIM attribute: (4372) OTHER_CIM CIM const [1..1] null <> GSE::GSESubscriberAssociation.DatSet: Abstract Types::CharString +2024-09-07 16:17:54,447 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,448 [main] TRACE UmlAttribute - created (4372) OTHER_CIM CIM const [1..1] attribute <> GSE::GSESubscriberAssociation.DatSet: Abstract Types::CharString +2024-09-07 16:17:54,448 [main] ERROR UmlAttribute - unclassified CIM attribute: (4373) OTHER_CIM CIM const [1..1] null <> GSE::GSESubscriberAssociation.RxDatSet: Abstract Types::CharStringTs +2024-09-07 16:17:54,448 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,448 [main] TRACE UmlAttribute - created (4373) OTHER_CIM CIM const [1..1] attribute <> GSE::GSESubscriberAssociation.RxDatSet: Abstract Types::CharStringTs +2024-09-07 16:17:54,448 [main] ERROR UmlAttribute - unclassified CIM attribute: (4374) OTHER_CIM CIM const [1..1] null <> GSE::GSESubscriberAssociation.GoID: Abstract Types::CharString +2024-09-07 16:17:54,448 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,448 [main] TRACE UmlAttribute - created (4374) OTHER_CIM CIM const [1..1] attribute <> GSE::GSESubscriberAssociation.GoID: Abstract Types::CharString +2024-09-07 16:17:54,448 [main] ERROR UmlAttribute - unclassified CIM attribute: (4375) OTHER_CIM CIM const [1..1] null <> GSE::GSESubscriberAssociation.RxGoID: Abstract Types::CharStringTs +2024-09-07 16:17:54,449 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,449 [main] TRACE UmlAttribute - created (4375) OTHER_CIM CIM const [1..1] attribute <> GSE::GSESubscriberAssociation.RxGoID: Abstract Types::CharStringTs +2024-09-07 16:17:54,449 [main] ERROR UmlAttribute - unclassified CIM attribute: (4376) OTHER_CIM CIM const [1..1] null <> GSE::GSESubscriberAssociation.StNum: Abstract Types::IntegerTs +2024-09-07 16:17:54,449 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,449 [main] TRACE UmlAttribute - created (4376) OTHER_CIM CIM const [1..1] attribute <> GSE::GSESubscriberAssociation.StNum: Abstract Types::IntegerTs +2024-09-07 16:17:54,449 [main] ERROR UmlAttribute - unclassified CIM attribute: (4377) OTHER_CIM CIM const [1..1] null <> GSE::GSESubscriberAssociation.SqNum: Abstract Types::IntegerTs +2024-09-07 16:17:54,450 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,450 [main] TRACE UmlAttribute - created (4377) OTHER_CIM CIM const [1..1] attribute <> GSE::GSESubscriberAssociation.SqNum: Abstract Types::IntegerTs +2024-09-07 16:17:54,450 [main] ERROR UmlAttribute - unclassified CIM attribute: (4378) OTHER_CIM CIM const [1..1] null <> GSE::GSESubscriberAssociation.RejectStNum: Abstract Types::IntegerTs +2024-09-07 16:17:54,450 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,450 [main] TRACE UmlAttribute - created (4378) OTHER_CIM CIM const [1..1] attribute <> GSE::GSESubscriberAssociation.RejectStNum: Abstract Types::IntegerTs +2024-09-07 16:17:54,450 [main] ERROR UmlAttribute - unclassified CIM attribute: (4379) OTHER_CIM CIM const [1..1] null <> GSE::GSESubscriberAssociation.RejectSqNum: Abstract Types::IntegerTs +2024-09-07 16:17:54,450 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,450 [main] TRACE UmlAttribute - created (4379) OTHER_CIM CIM const [1..1] attribute <> GSE::GSESubscriberAssociation.RejectSqNum: Abstract Types::IntegerTs +2024-09-07 16:17:54,450 [main] ERROR UmlAttribute - unclassified CIM attribute: (4494) OTHER_CIM CIM const [1..1] null <> GSE::GSESubscriberAssociation.RxT: Abstract Types::Timestamp +2024-09-07 16:17:54,451 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,451 [main] TRACE UmlAttribute - created (4494) OTHER_CIM CIM const [1..1] attribute <> GSE::GSESubscriberAssociation.RxT: Abstract Types::Timestamp +2024-09-07 16:17:54,451 [main] ERROR UmlAttribute - unclassified CIM attribute: (3243) OTHER_CIM CIM [0..1] null <> GSE::GSEProvider.CntRs: Abstract Types::CntRs +2024-09-07 16:17:54,451 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,451 [main] TRACE UmlAttribute - created (3243) OTHER_CIM CIM [0..1] attribute <> GSE::GSEProvider.CntRs: Abstract Types::CntRs +2024-09-07 16:17:54,451 [main] ERROR UmlAttribute - unclassified CIM attribute: (4053) OTHER_CIM CIM const [1..1] null <> GSE::GSEProvider.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,451 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,451 [main] TRACE UmlAttribute - created (4053) OTHER_CIM CIM const [1..1] attribute <> GSE::GSEProvider.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,452 [main] ERROR UmlAttribute - unclassified CIM attribute: (3773) OTHER_CIM CIM const [0..1] null <> GSE::GSEProvider.InErrCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,452 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,452 [main] TRACE UmlAttribute - created (3773) OTHER_CIM CIM const [0..1] attribute <> GSE::GSEProvider.InErrCnt: Abstract Types::CounterTs +2024-09-07 16:17:54,452 [main] ERROR UmlAttribute - unclassified CIM attribute: (4121) OTHER_CIM CIM const [0..1] null <> GSE::GSEProvider.InUnexpectedMulticast: Abstract Types::CounterTs +2024-09-07 16:17:54,452 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,452 [main] TRACE UmlAttribute - created (4121) OTHER_CIM CIM const [0..1] attribute <> GSE::GSEProvider.InUnexpectedMulticast: Abstract Types::CounterTs +2024-09-07 16:17:54,452 [main] ERROR UmlAttribute - unclassified CIM attribute: (3744) OTHER_CIM CIM [0..*] null <
> GSE::GSEProvider.PIP: GSE::GSEPublisherAssociationIP +2024-09-07 16:17:54,452 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,452 [main] TRACE UmlAttribute - created (3744) OTHER_CIM CIM [0..*] attribute <
> GSE::GSEProvider.PIP: GSE::GSEPublisherAssociationIP +2024-09-07 16:17:54,452 [main] ERROR UmlAttribute - unclassified CIM attribute: (3745) OTHER_CIM CIM [0..*] null <
> GSE::GSEProvider.PL2: GSE::GSEPublisherAssociationL2 +2024-09-07 16:17:54,452 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,452 [main] TRACE UmlAttribute - created (3745) OTHER_CIM CIM [0..*] attribute <
> GSE::GSEProvider.PL2: GSE::GSEPublisherAssociationL2 +2024-09-07 16:17:54,452 [main] ERROR UmlAttribute - unclassified CIM attribute: (3618) OTHER_CIM CIM [0..1] null <> GSE::GSEProvider.SecurityNotification: GSE::GSENotification +2024-09-07 16:17:54,452 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,453 [main] TRACE UmlAttribute - created (3618) OTHER_CIM CIM [0..1] attribute <> GSE::GSEProvider.SecurityNotification: GSE::GSENotification +2024-09-07 16:17:54,453 [main] ERROR UmlAttribute - unclassified CIM attribute: (3046) OTHER_CIM CIM [0..*] null <
> GSE::GSEProvider.SIP: GSE::GSESubcriberAssociationIP +2024-09-07 16:17:54,453 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,453 [main] TRACE UmlAttribute - created (3046) OTHER_CIM CIM [0..*] attribute <
> GSE::GSEProvider.SIP: GSE::GSESubcriberAssociationIP +2024-09-07 16:17:54,453 [main] ERROR UmlAttribute - unclassified CIM attribute: (3746) OTHER_CIM CIM [0..*] null <
> GSE::GSEProvider.SL2: GSE::GSESubcriberAssociationL2 +2024-09-07 16:17:54,453 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,453 [main] TRACE UmlAttribute - created (3746) OTHER_CIM CIM [0..*] attribute <
> GSE::GSEProvider.SL2: GSE::GSESubcriberAssociationL2 +2024-09-07 16:17:54,453 [main] ERROR UmlAttribute - unclassified CIM attribute: (3803) OTHER_CIM CIM const [0..1] null <> GSE::GSEPublisherAssociationIP.DestIpAddr: Abstract Types::InetAddress +2024-09-07 16:17:54,453 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,453 [main] TRACE UmlAttribute - created (3803) OTHER_CIM CIM const [0..1] attribute <> GSE::GSEPublisherAssociationIP.DestIpAddr: Abstract Types::InetAddress +2024-09-07 16:17:54,453 [main] ERROR UmlAttribute - unclassified CIM attribute: (3802) OTHER_CIM CIM const [0..1] null <> GSE::GSEPublisherAssociationIP.DestIpAddrType: Abstract Types::InetAddressType +2024-09-07 16:17:54,453 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,453 [main] TRACE UmlAttribute - created (3802) OTHER_CIM CIM const [0..1] attribute <> GSE::GSEPublisherAssociationIP.DestIpAddrType: Abstract Types::InetAddressType +2024-09-07 16:17:54,453 [main] ERROR UmlAttribute - unclassified CIM attribute: (3801) OTHER_CIM CIM const [0..1] null <> GSE::GSEPublisherAssociationL2.DestMacAddr: Abstract Types::MacAddress +2024-09-07 16:17:54,453 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,454 [main] TRACE UmlAttribute - created (3801) OTHER_CIM CIM const [0..1] attribute <> GSE::GSEPublisherAssociationL2.DestMacAddr: Abstract Types::MacAddress +2024-09-07 16:17:54,454 [main] ERROR UmlAttribute - unclassified CIM attribute: (4362) OTHER_CIM CIM const [0..1] null <> GSE::GSEPublisherAssociationL2.SrcMacAddr: Abstract Types::MacAddress +2024-09-07 16:17:54,454 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,454 [main] TRACE UmlAttribute - created (4362) OTHER_CIM CIM const [0..1] attribute <> GSE::GSEPublisherAssociationL2.SrcMacAddr: Abstract Types::MacAddress +2024-09-07 16:17:54,454 [main] ERROR UmlAttribute - unclassified CIM attribute: (3740) OTHER_CIM CIM const [0..1] null <> GSE::GSESubcriberAssociationIP.SrcIpAddr: Abstract Types::InetAddress +2024-09-07 16:17:54,454 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,454 [main] TRACE UmlAttribute - created (3740) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubcriberAssociationIP.SrcIpAddr: Abstract Types::InetAddress +2024-09-07 16:17:54,454 [main] ERROR UmlAttribute - unclassified CIM attribute: (3739) OTHER_CIM CIM const [0..1] null <> GSE::GSESubcriberAssociationIP.SrcIpAddrType: Abstract Types::InetAddressType +2024-09-07 16:17:54,454 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,454 [main] TRACE UmlAttribute - created (3739) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubcriberAssociationIP.SrcIpAddrType: Abstract Types::InetAddressType +2024-09-07 16:17:54,454 [main] ERROR UmlAttribute - unclassified CIM attribute: (3742) OTHER_CIM CIM const [0..1] null <> GSE::GSESubcriberAssociationL2.SrcMacAddr: Abstract Types::MacAddress +2024-09-07 16:17:54,454 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,454 [main] TRACE UmlAttribute - created (3742) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubcriberAssociationL2.SrcMacAddr: Abstract Types::MacAddress +2024-09-07 16:17:54,454 [main] ERROR UmlAttribute - unclassified CIM attribute: (4361) OTHER_CIM CIM const [0..1] null <> GSE::GSESubcriberAssociationL2.DstMacAddr: Abstract Types::MacAddress +2024-09-07 16:17:54,454 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,454 [main] TRACE UmlAttribute - created (4361) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubcriberAssociationL2.DstMacAddr: Abstract Types::MacAddress +2024-09-07 16:17:54,455 [main] ERROR UmlAttribute - unclassified CIM attribute: (2651) OTHER_CIM CIM const [1..1] null <> Clocks Agent::Clock.clockTamperDetected: Abstract Types::Timestamp +2024-09-07 16:17:54,455 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,455 [main] TRACE UmlAttribute - created (2651) OTHER_CIM CIM const [1..1] attribute <> Clocks Agent::Clock.clockTamperDetected: Abstract Types::Timestamp +2024-09-07 16:17:54,455 [main] ERROR UmlAttribute - unclassified CIM attribute: (2656) OTHER_CIM CIM const [1..1] null <> Clocks Agent::Clock.LastClockHoldover: Abstract Types::Timestamp +2024-09-07 16:17:54,455 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,455 [main] TRACE UmlAttribute - created (2656) OTHER_CIM CIM const [1..1] attribute <> Clocks Agent::Clock.LastClockHoldover: Abstract Types::Timestamp +2024-09-07 16:17:54,455 [main] ERROR UmlAttribute - unclassified CIM attribute: (2657) OTHER_CIM CIM [0..1] null <> Clocks Agent::Clock.CntRs: Abstract Types::CntRs +2024-09-07 16:17:54,456 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,456 [main] TRACE UmlAttribute - created (2657) OTHER_CIM CIM [0..1] attribute <> Clocks Agent::Clock.CntRs: Abstract Types::CntRs +2024-09-07 16:17:54,456 [main] ERROR UmlAttribute - unclassified CIM attribute: (2650) OTHER_CIM CIM [0..n] null <
> Clocks Agent::Clock.Clocks: Clocks Agent::ClockEntry +2024-09-07 16:17:54,456 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,456 [main] TRACE UmlAttribute - created (2650) OTHER_CIM CIM [0..n] attribute <
> Clocks Agent::Clock.Clocks: Clocks Agent::ClockEntry +2024-09-07 16:17:54,456 [main] ERROR UmlAttribute - unclassified CIM attribute: (3631) OTHER_CIM CIM [0..1] null <> Clocks Agent::Clock.SecurityNotification: Clocks Agent::SecurityNotification +2024-09-07 16:17:54,456 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,457 [main] TRACE UmlAttribute - created (3631) OTHER_CIM CIM [0..1] attribute <> Clocks Agent::Clock.SecurityNotification: Clocks Agent::SecurityNotification +2024-09-07 16:17:54,457 [main] ERROR UmlAttribute - unclassified CIM attribute: (2646) OTHER_CIM CIM const [0..1] null <> Clocks Agent::ClockEntry.ClockAccuracy: Abstract Types::Integer +2024-09-07 16:17:54,457 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,457 [main] TRACE UmlAttribute - created (2646) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::ClockEntry.ClockAccuracy: Abstract Types::Integer +2024-09-07 16:17:54,457 [main] ERROR UmlAttribute - unclassified CIM attribute: (3085) OTHER_CIM CIM const [0..1] null <> Clocks Agent::ClockEntry.ClockIndex: Abstract Types::EntityIndex +2024-09-07 16:17:54,457 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,457 [main] TRACE UmlAttribute - created (3085) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::ClockEntry.ClockIndex: Abstract Types::EntityIndex +2024-09-07 16:17:54,457 [main] ERROR UmlAttribute - unclassified CIM attribute: (3729) OTHER_CIM CIM const [0..1] null <> Clocks Agent::ClockEntry.ClockIssue: EnumeratedTypes::TimSyncIssueType +2024-09-07 16:17:54,457 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,458 [main] TRACE UmlAttribute - created (3729) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::ClockEntry.ClockIssue: EnumeratedTypes::TimSyncIssueType +2024-09-07 16:17:54,458 [main] ERROR UmlAttribute - unclassified CIM attribute: (2649) OTHER_CIM CIM const [0..1] null <> Clocks Agent::ClockEntry.ClockTamperDetected: Abstract Types::BooleanValue +2024-09-07 16:17:54,458 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,458 [main] TRACE UmlAttribute - created (2649) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::ClockEntry.ClockTamperDetected: Abstract Types::BooleanValue +2024-09-07 16:17:54,458 [main] ERROR UmlAttribute - unclassified CIM attribute: (2645) OTHER_CIM CIM const [0..1] null <> Clocks Agent::ClockEntry.TmSrc: EnumeratedTypes::TimSyncSrcType +2024-09-07 16:17:54,458 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,458 [main] TRACE UmlAttribute - created (2645) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::ClockEntry.TmSrc: EnumeratedTypes::TimSyncSrcType +2024-09-07 16:17:54,458 [main] ERROR UmlAttribute - unclassified CIM attribute: (2655) OTHER_CIM CIM const [0..1] null <> Clocks Agent::ClockEntry.HoldOver: Abstract Types::BooleanValue +2024-09-07 16:17:54,458 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,458 [main] TRACE UmlAttribute - created (2655) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::ClockEntry.HoldOver: Abstract Types::BooleanValue +2024-09-07 16:17:54,458 [main] ERROR UmlAttribute - unclassified CIM attribute: (2648) OTHER_CIM CIM const [0..1] null <> Clocks Agent::ClockEntry.LastSyncOffset: Abstract Types::FloatingTs +2024-09-07 16:17:54,458 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,458 [main] TRACE UmlAttribute - created (2648) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::ClockEntry.LastSyncOffset: Abstract Types::FloatingTs +2024-09-07 16:17:54,458 [main] ERROR UmlAttribute - unclassified CIM attribute: (2653) OTHER_CIM CIM const [0..1] null <> Clocks Agent::ClockEntry.TimeSourceAvailable: Abstract Types::BooleanValue +2024-09-07 16:17:54,458 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,459 [main] TRACE UmlAttribute - created (2653) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::ClockEntry.TimeSourceAvailable: Abstract Types::BooleanValue +2024-09-07 16:17:54,459 [main] ERROR UmlAttribute - unclassified CIM attribute: (2652) OTHER_CIM CIM const [0..1] null <> Clocks Agent::ClockEntry.TimeTraceable: Abstract Types::BooleanValue +2024-09-07 16:17:54,459 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,459 [main] TRACE UmlAttribute - created (2652) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::ClockEntry.TimeTraceable: Abstract Types::BooleanValue +2024-09-07 16:17:54,459 [main] ERROR UmlAttribute - unclassified CIM attribute: (3632) OTHER_CIM CIM const [0..1] null <> Clocks Agent::SecurityNotification.clockTamperDetected: Abstract Types::Timestamp +2024-09-07 16:17:54,459 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,459 [main] TRACE UmlAttribute - created (3632) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::SecurityNotification.clockTamperDetected: Abstract Types::Timestamp +2024-09-07 16:17:54,459 [main] ERROR UmlAttribute - unclassified CIM attribute: (3319) OTHER_CIM CIM const [0..1] null <> Interfaces Agent::Interface.ID: Abstract Types::EntityIndex +2024-09-07 16:17:54,459 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,459 [main] TRACE UmlAttribute - created (3319) OTHER_CIM CIM const [0..1] attribute <> Interfaces Agent::Interface.ID: Abstract Types::EntityIndex +2024-09-07 16:17:54,459 [main] ERROR UmlAttribute - unclassified CIM attribute: (3320) OTHER_CIM CIM const [0..1] null <> Interfaces Agent::Interface.Descr: Abstract Types::CharString +2024-09-07 16:17:54,459 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,459 [main] TRACE UmlAttribute - created (3320) OTHER_CIM CIM const [0..1] attribute <> Interfaces Agent::Interface.Descr: Abstract Types::CharString +2024-09-07 16:17:54,459 [main] ERROR UmlAttribute - unclassified CIM attribute: (3415) OTHER_CIM CIM const [0..1] null <> Interfaces Agent::Interface.IntType: EnumeratedTypes::IntType +2024-09-07 16:17:54,460 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,460 [main] TRACE UmlAttribute - created (3415) OTHER_CIM CIM const [0..1] attribute <> Interfaces Agent::Interface.IntType: EnumeratedTypes::IntType +2024-09-07 16:17:54,460 [main] ERROR UmlAttribute - unclassified CIM attribute: (3323) OTHER_CIM CIM const [0..1] null <> Interfaces Agent::Interface.Operable: Abstract Types::BooleanValueTs +2024-09-07 16:17:54,460 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,460 [main] TRACE UmlAttribute - created (3323) OTHER_CIM CIM const [0..1] attribute <> Interfaces Agent::Interface.Operable: Abstract Types::BooleanValueTs +2024-09-07 16:17:54,460 [main] ERROR UmlAttribute - unclassified CIM attribute: (3318) OTHER_CIM CIM const [0..1] null <> Interfaces Agent::Interface.Online: Abstract Types::BooleanValueTs +2024-09-07 16:17:54,460 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,460 [main] TRACE UmlAttribute - created (3318) OTHER_CIM CIM const [0..1] attribute <> Interfaces Agent::Interface.Online: Abstract Types::BooleanValueTs +2024-09-07 16:17:54,460 [main] ERROR UmlAttribute - unclassified CIM attribute: (3322) OTHER_CIM CIM const [0..1] null <> Interfaces Agent::Interface.Faulty: Abstract Types::BooleanValueTs +2024-09-07 16:17:54,460 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,460 [main] TRACE UmlAttribute - created (3322) OTHER_CIM CIM const [0..1] attribute <> Interfaces Agent::Interface.Faulty: Abstract Types::BooleanValueTs +2024-09-07 16:17:54,460 [main] ERROR UmlAttribute - unclassified CIM attribute: (3321) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interface.CntRs: Abstract Types::CntRs +2024-09-07 16:17:54,460 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,460 [main] TRACE UmlAttribute - created (3321) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interface.CntRs: Abstract Types::CntRs +2024-09-07 16:17:54,461 [main] ERROR UmlAttribute - unclassified CIM attribute: (3652) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.serAvail: Abstract Types::Integer +2024-09-07 16:17:54,461 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,461 [main] TRACE UmlAttribute - created (3652) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.serAvail: Abstract Types::Integer +2024-09-07 16:17:54,461 [main] ERROR UmlAttribute - unclassified CIM attribute: (3657) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.serActive: Abstract Types::IntegerTs +2024-09-07 16:17:54,461 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,461 [main] TRACE UmlAttribute - created (3657) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.serActive: Abstract Types::IntegerTs +2024-09-07 16:17:54,461 [main] ERROR UmlAttribute - unclassified CIM attribute: (3662) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.serFail: Abstract Types::IntegerTs +2024-09-07 16:17:54,461 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,461 [main] TRACE UmlAttribute - created (3662) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.serFail: Abstract Types::IntegerTs +2024-09-07 16:17:54,461 [main] ERROR UmlAttribute - unclassified CIM attribute: (3653) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.ethAvail: Abstract Types::Integer +2024-09-07 16:17:54,461 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,461 [main] TRACE UmlAttribute - created (3653) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.ethAvail: Abstract Types::Integer +2024-09-07 16:17:54,461 [main] ERROR UmlAttribute - unclassified CIM attribute: (3658) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.ethActive: Abstract Types::IntegerTs +2024-09-07 16:17:54,461 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,461 [main] TRACE UmlAttribute - created (3658) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.ethActive: Abstract Types::IntegerTs +2024-09-07 16:17:54,462 [main] ERROR UmlAttribute - unclassified CIM attribute: (3663) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.ethFail: Abstract Types::IntegerTs +2024-09-07 16:17:54,462 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,462 [main] TRACE UmlAttribute - created (3663) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.ethFail: Abstract Types::IntegerTs +2024-09-07 16:17:54,462 [main] ERROR UmlAttribute - unclassified CIM attribute: (3654) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.algAvail: Abstract Types::Integer +2024-09-07 16:17:54,462 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,462 [main] TRACE UmlAttribute - created (3654) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.algAvail: Abstract Types::Integer +2024-09-07 16:17:54,462 [main] ERROR UmlAttribute - unclassified CIM attribute: (3659) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.algActive: Abstract Types::IntegerTs +2024-09-07 16:17:54,462 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,462 [main] TRACE UmlAttribute - created (3659) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.algActive: Abstract Types::IntegerTs +2024-09-07 16:17:54,462 [main] ERROR UmlAttribute - unclassified CIM attribute: (3664) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.algFail: Abstract Types::IntegerTs +2024-09-07 16:17:54,462 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,462 [main] TRACE UmlAttribute - created (3664) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.algFail: Abstract Types::IntegerTs +2024-09-07 16:17:54,462 [main] ERROR UmlAttribute - unclassified CIM attribute: (3655) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.keyAvail: Abstract Types::Integer +2024-09-07 16:17:54,462 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,463 [main] TRACE UmlAttribute - created (3655) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.keyAvail: Abstract Types::Integer +2024-09-07 16:17:54,463 [main] ERROR UmlAttribute - unclassified CIM attribute: (3660) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.keyActive: Abstract Types::IntegerTs +2024-09-07 16:17:54,463 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,463 [main] TRACE UmlAttribute - created (3660) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.keyActive: Abstract Types::IntegerTs +2024-09-07 16:17:54,463 [main] ERROR UmlAttribute - unclassified CIM attribute: (3665) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.keyFail: Abstract Types::IntegerTs +2024-09-07 16:17:54,463 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,463 [main] TRACE UmlAttribute - created (3665) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.keyFail: Abstract Types::IntegerTs +2024-09-07 16:17:54,463 [main] ERROR UmlAttribute - unclassified CIM attribute: (3656) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.usbAvail: Abstract Types::Integer +2024-09-07 16:17:54,463 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,463 [main] TRACE UmlAttribute - created (3656) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.usbAvail: Abstract Types::Integer +2024-09-07 16:17:54,463 [main] ERROR UmlAttribute - unclassified CIM attribute: (3661) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.usbActive: Abstract Types::IntegerTs +2024-09-07 16:17:54,463 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,463 [main] TRACE UmlAttribute - created (3661) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.usbActive: Abstract Types::IntegerTs +2024-09-07 16:17:54,463 [main] ERROR UmlAttribute - unclassified CIM attribute: (3666) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.usbFail: Abstract Types::IntegerTs +2024-09-07 16:17:54,464 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,464 [main] TRACE UmlAttribute - created (3666) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.usbFail: Abstract Types::IntegerTs +2024-09-07 16:17:54,464 [main] ERROR UmlAttribute - unclassified CIM attribute: (3283) OTHER_CIM CIM [0..*] null <
> Interfaces Agent::Interfaces.SER: Interfaces Agent::SEREntry +2024-09-07 16:17:54,464 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,464 [main] TRACE UmlAttribute - created (3283) OTHER_CIM CIM [0..*] attribute <
> Interfaces Agent::Interfaces.SER: Interfaces Agent::SEREntry +2024-09-07 16:17:54,464 [main] ERROR UmlAttribute - unclassified CIM attribute: (3297) OTHER_CIM CIM [0..*] null <
> Interfaces Agent::Interfaces.ETH: Interfaces Agent::ETHEntry +2024-09-07 16:17:54,464 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,464 [main] TRACE UmlAttribute - created (3297) OTHER_CIM CIM [0..*] attribute <
> Interfaces Agent::Interfaces.ETH: Interfaces Agent::ETHEntry +2024-09-07 16:17:54,464 [main] ERROR UmlAttribute - unclassified CIM attribute: (3298) OTHER_CIM CIM [0..*] null <
> Interfaces Agent::Interfaces.USB: Interfaces Agent::USBEntry +2024-09-07 16:17:54,464 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,464 [main] TRACE UmlAttribute - created (3298) OTHER_CIM CIM [0..*] attribute <
> Interfaces Agent::Interfaces.USB: Interfaces Agent::USBEntry +2024-09-07 16:17:54,464 [main] ERROR UmlAttribute - unclassified CIM attribute: (3299) OTHER_CIM CIM [0..*] null <
> Interfaces Agent::Interfaces.KEY: Interfaces Agent::KEYEntry +2024-09-07 16:17:54,464 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,464 [main] TRACE UmlAttribute - created (3299) OTHER_CIM CIM [0..*] attribute <
> Interfaces Agent::Interfaces.KEY: Interfaces Agent::KEYEntry +2024-09-07 16:17:54,464 [main] ERROR UmlAttribute - unclassified CIM attribute: (3328) OTHER_CIM CIM [0..*] null <
> Interfaces Agent::Interfaces.ALG: Interfaces Agent::ALGEntry +2024-09-07 16:17:54,465 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,465 [main] TRACE UmlAttribute - created (3328) OTHER_CIM CIM [0..*] attribute <
> Interfaces Agent::Interfaces.ALG: Interfaces Agent::ALGEntry +2024-09-07 16:17:54,465 [main] ERROR UmlAttribute - unclassified CIM attribute: (3678) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.StateNotification: Interfaces Agent::Notification +2024-09-07 16:17:54,465 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,465 [main] TRACE UmlAttribute - created (3678) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.StateNotification: Interfaces Agent::Notification +2024-09-07 16:17:54,465 [main] ERROR UmlAttribute - unclassified CIM attribute: (3327) OTHER_CIM CIM const [0..1] null <> Interfaces Agent::KEYEntry.Locked: Abstract Types::BooleanValueTs +2024-09-07 16:17:54,465 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,465 [main] TRACE UmlAttribute - created (3327) OTHER_CIM CIM const [0..1] attribute <> Interfaces Agent::KEYEntry.Locked: Abstract Types::BooleanValueTs +2024-09-07 16:17:54,465 [main] ERROR UmlAttribute - unclassified CIM attribute: (3325) OTHER_CIM CIM const [0..1] null <> Interfaces Agent::SEREntry.ByteIn: Abstract Types::CounterTs +2024-09-07 16:17:54,465 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,465 [main] TRACE UmlAttribute - created (3325) OTHER_CIM CIM const [0..1] attribute <> Interfaces Agent::SEREntry.ByteIn: Abstract Types::CounterTs +2024-09-07 16:17:54,465 [main] ERROR UmlAttribute - unclassified CIM attribute: (3326) OTHER_CIM CIM const [0..1] null <> Interfaces Agent::SEREntry.ByteOut: Abstract Types::CounterTs +2024-09-07 16:17:54,465 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,466 [main] TRACE UmlAttribute - created (3326) OTHER_CIM CIM const [0..1] attribute <> Interfaces Agent::SEREntry.ByteOut: Abstract Types::CounterTs +2024-09-07 16:17:54,466 [main] ERROR UmlAttribute - unclassified CIM attribute: (3668) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.serActive: Abstract Types::IntegerTs +2024-09-07 16:17:54,466 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,466 [main] TRACE UmlAttribute - created (3668) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.serActive: Abstract Types::IntegerTs +2024-09-07 16:17:54,466 [main] ERROR UmlAttribute - unclassified CIM attribute: (3669) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.serFail: Abstract Types::IntegerTs +2024-09-07 16:17:54,466 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,466 [main] TRACE UmlAttribute - created (3669) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.serFail: Abstract Types::IntegerTs +2024-09-07 16:17:54,466 [main] ERROR UmlAttribute - unclassified CIM attribute: (3670) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.ethActive: Abstract Types::IntegerTs +2024-09-07 16:17:54,466 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,466 [main] TRACE UmlAttribute - created (3670) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.ethActive: Abstract Types::IntegerTs +2024-09-07 16:17:54,466 [main] ERROR UmlAttribute - unclassified CIM attribute: (3671) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.ethFail: Abstract Types::IntegerTs +2024-09-07 16:17:54,466 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,466 [main] TRACE UmlAttribute - created (3671) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.ethFail: Abstract Types::IntegerTs +2024-09-07 16:17:54,466 [main] ERROR UmlAttribute - unclassified CIM attribute: (3672) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.algActive: Abstract Types::IntegerTs +2024-09-07 16:17:54,466 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,467 [main] TRACE UmlAttribute - created (3672) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.algActive: Abstract Types::IntegerTs +2024-09-07 16:17:54,467 [main] ERROR UmlAttribute - unclassified CIM attribute: (3673) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.algFail: Abstract Types::IntegerTs +2024-09-07 16:17:54,467 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,467 [main] TRACE UmlAttribute - created (3673) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.algFail: Abstract Types::IntegerTs +2024-09-07 16:17:54,467 [main] ERROR UmlAttribute - unclassified CIM attribute: (3667) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.keyActive: Abstract Types::IntegerTs +2024-09-07 16:17:54,467 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,467 [main] TRACE UmlAttribute - created (3667) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.keyActive: Abstract Types::IntegerTs +2024-09-07 16:17:54,467 [main] ERROR UmlAttribute - unclassified CIM attribute: (3674) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.keyFail: Abstract Types::IntegerTs +2024-09-07 16:17:54,467 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,467 [main] TRACE UmlAttribute - created (3674) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.keyFail: Abstract Types::IntegerTs +2024-09-07 16:17:54,467 [main] ERROR UmlAttribute - unclassified CIM attribute: (3675) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.usbActive: Abstract Types::IntegerTs +2024-09-07 16:17:54,467 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,467 [main] TRACE UmlAttribute - created (3675) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.usbActive: Abstract Types::IntegerTs +2024-09-07 16:17:54,467 [main] ERROR UmlAttribute - unclassified CIM attribute: (3676) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.usbFail: Abstract Types::IntegerTs +2024-09-07 16:17:54,467 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:17:54,467 [main] TRACE UmlAttribute - created (3676) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.usbFail: Abstract Types::IntegerTs +2024-09-07 16:17:54,468 [main] INFO EaModelBuilder - creating in-memory associations ... +2024-09-07 16:17:54,470 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 16:17:54,470 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 16:17:54,477 [main] TRACE UmlAssociation - created (185) OTHER_CIM CIM association <>, qname='health.<> - Attribute.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable); otherEnd: OTHER_CIM [?..?] health.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] health.<> (navigable); otherEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable) +2024-09-07 16:17:54,477 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 16:17:54,477 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 16:17:54,477 [main] TRACE UmlAssociation - created (179) OTHER_CIM CIM association <>, qname='protocol.<> - Attribute.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable); otherEnd: OTHER_CIM [?..?] protocol.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] protocol.<> (navigable); otherEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable) +2024-09-07 16:17:54,477 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 16:17:54,477 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 16:17:54,477 [main] TRACE UmlAssociation - created (180) OTHER_CIM CIM association <>, qname='security.<> - Attribute.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable); otherEnd: OTHER_CIM [?..?] security.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] security.<> (navigable); otherEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable) +2024-09-07 16:17:54,477 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 16:17:54,477 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 16:17:54,477 [main] TRACE UmlAssociation - created (183) OTHER_CIM CIM association <>, qname='index.<> - Attribute.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable); otherEnd: OTHER_CIM [?..?] index.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] index.<> (navigable); otherEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable) +2024-09-07 16:17:54,477 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 16:17:54,477 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 16:17:54,477 [main] TRACE UmlAssociation - created (184) OTHER_CIM CIM association <>, qname='identity.<> - Attribute.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable); otherEnd: OTHER_CIM [?..?] identity.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] identity.<> (navigable); otherEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable) +2024-09-07 16:17:54,477 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 16:17:54,477 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 16:17:54,477 [main] TRACE UmlAssociation - created (186) OTHER_CIM CIM association <>, qname='performance.<> - Attribute.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable); otherEnd: OTHER_CIM [?..?] performance.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] performance.<> (navigable); otherEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable) +2024-09-07 16:17:54,477 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 16:17:54,477 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 16:17:54,478 [main] TRACE UmlAssociation - created (187) OTHER_CIM CIM association <>, qname='setvalue.<> - Attribute.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable); otherEnd: OTHER_CIM [?..?] setvalue.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] setvalue.<> (navigable); otherEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable) +2024-09-07 16:17:54,478 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 16:17:54,478 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 16:17:54,478 [main] TRACE UmlAssociation - created (207) OTHER_CIM CIM association <>, qname='trap.<> - Attribute.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable); otherEnd: OTHER_CIM [?..?] trap.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] trap.<> (navigable); otherEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable) +2024-09-07 16:17:54,478 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 16:17:54,478 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 16:17:54,478 [main] TRACE UmlAssociation - created (188) OTHER_CIM CIM association <>, qname='table.<> - Attribute.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable); otherEnd: OTHER_CIM [?..?] table.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] table.<> (navigable); otherEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable) +2024-09-07 16:17:54,478 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 16:17:54,478 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 16:17:54,478 [main] TRACE UmlAssociation - created (181) OTHER_CIM CIM association <>, qname='nsmEvent.<> - Class.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Class.<> (non-navigable); otherEnd: OTHER_CIM [?..?] nsmEvent.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] nsmEvent.<> (navigable); otherEnd: OTHER_CIM [?..?] Class.<> (non-navigable) +2024-09-07 16:17:54,478 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 16:17:54,478 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 16:17:54,478 [main] TRACE UmlAssociation - created (226) OTHER_CIM CIM association <>, qname='nsmEntry.<> - Class.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Class.<> (non-navigable); otherEnd: OTHER_CIM [?..?] nsmEntry.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] nsmEntry.<> (navigable); otherEnd: OTHER_CIM [?..?] Class.<> (non-navigable) +2024-09-07 16:17:54,478 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 16:17:54,478 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 16:17:54,478 [main] TRACE UmlAssociation - created (182) OTHER_CIM CIM association <>, qname='nsmAgent.<> - Class.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Class.<> (non-navigable); otherEnd: OTHER_CIM [?..?] nsmAgent.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] nsmAgent.<> (navigable); otherEnd: OTHER_CIM [?..?] Class.<> (non-navigable) +2024-09-07 16:17:54,478 [main] INFO EaModelBuilder - creating in-memory dependencies ... +2024-09-07 16:17:54,478 [main] INFO Util - time=[0:00:07.548] created in-memory model and exported normative diagrams +2024-09-07 16:17:54,478 [main] INFO Util - +2024-09-07 16:17:54,478 [main] INFO Util - +2024-09-07 16:17:54,478 [main] INFO Util - ------------------------------------------------ +2024-09-07 16:17:54,478 [main] INFO Util - closing EA file 'C:\Users\gigi\git\jCleanCim\input\IEC62351-7-Ed2-FDIS-20240901.eap'... +2024-09-07 16:17:55,098 [main] INFO Util - time=[0:00:00.619] closed EA file. +2024-09-07 16:17:55,098 [main] INFO Util - +2024-09-07 16:17:55,099 [main] INFO Util - time=[0:00:52.741] built model from 'iso (CIM)' +2024-09-07 16:17:55,099 [main] INFO Util - +2024-09-07 16:17:55,099 [main] INFO Util - +2024-09-07 16:17:55,099 [main] INFO Util - ================================================ +2024-09-07 16:17:55,099 [main] INFO Util - generating MIBs from iso (CIM) +2024-09-07 16:17:55,099 [main] INFO Util - ================================================ +2024-09-07 16:17:55,099 [main] INFO Util - +2024-09-07 16:17:55,099 [main] INFO Util - ------------------------------------------------ +2024-09-07 16:17:55,099 [main] INFO Util - full MIBs ... +2024-09-07 16:19:08,388 [main] INFO JCleanCim - started at: Sat Sep 07 16:19:08 CEST 2024 +2024-09-07 16:19:08,390 [main] INFO JCleanCim - execution environment: +2024-09-07 16:19:08,391 [main] INFO JCleanCim - os.name = Windows 10 +2024-09-07 16:19:08,391 [main] INFO JCleanCim - java.version = 1.8.0_351 +2024-09-07 16:19:08,391 [main] INFO JCleanCim - java.home = C:\Program Files (x86)\Java\jre1.8.0_351 +2024-09-07 16:19:08,391 [main] INFO JCleanCim - java.class.path = C:\Users\gigi\git\jCleanCim\build\prod\classes;C:\Users\gigi\git\jCleanCim\lib\eaapi.jar;C:\Users\gigi\git\jCleanCim\dlls;C:\Users\gigi\git\jCleanCim\lib\commons-cli-1.2.jar;C:\Users\gigi\git\jCleanCim\config;C:\Users\gigi\git\jCleanCim\input;C:\Users\gigi\git\jCleanCim\lib\jacob.jar;C:\Users\gigi\git\jCleanCim\test\config;C:\Users\gigi\git\jCleanCim\test\input;C:\Users\gigi\git\jCleanCim\lib\commons-logging-1.1.1.jar;C:\Users\gigi\git\jCleanCim\lib\log4j-1.2.17.jar;C:\Users\gigi\git\jCleanCim\lib\commons-lang-2.6.jar;C:\Users\gigi\git\jCleanCim\lib\junit-4.8.2.jar;C:\Users\gigi\git\jCleanCim\lib\jackcess-2.1.0.jar;C:\Users\gigi\git\jCleanCim\lib\poi-ooxml-3.15-beta2.jar +2024-09-07 16:19:08,455 [main] INFO Util - loaded properties from resource build.properties +2024-09-07 16:19:08,455 [main] INFO JCleanCim - jCleanCim version: 02v03 +2024-09-07 16:19:08,455 [main] INFO JCleanCim - +2024-09-07 16:19:08,480 [main] INFO Util - loaded properties from resource config.properties +2024-09-07 16:19:08,482 [main] INFO Util - loaded properties from resource config61850.properties +2024-09-07 16:19:08,484 [main] INFO Util - loaded properties from resource build.properties +2024-09-07 16:19:08,492 [main] INFO Config - EA model specified in config.properties: 'C:\Users\gigi\git\jCleanCim\input\IEC62351-7-Ed2-FDIS-20240901.eap' +2024-09-07 16:19:08,493 [main] INFO Config - blank image file: 'C:\Users\gigi\git\jCleanCim\input\blank.png' +2024-09-07 16:19:08,498 [main] DEBUG Config - Property validation.rules.off not found in config.properties. +2024-09-07 16:19:08,501 [main] INFO Util - Creating backup of existing file: C:\Users\gigi\git\jCleanCim\output\pics.17824152224800 +2024-09-07 16:19:08,503 [main] INFO Config - pics output directory: 'C:\Users\gigi\git\jCleanCim\output\pics' +2024-09-07 16:19:08,504 [main] INFO Config - input MS Word template: 'C:\Users\gigi\git\jCleanCim\input\57-62351-7-Ed2-FDIS-template_20240901.docx' +2024-09-07 16:19:08,504 [main] INFO Config - output MS Word file: 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 16:19:08,505 [main] INFO Util - Creating backup of existing file: C:\Users\gigi\git\jCleanCim\output\mibs.17824156317800 +2024-09-07 16:19:08,507 [main] INFO Config - full MIBs output directory: 'C:\Users\gigi\git\jCleanCim\output\mibs' +2024-09-07 16:19:08,507 [main] INFO Util - Creating backup of existing file: C:\Users\gigi\git\jCleanCim\output\mibslight.17824158777000 +2024-09-07 16:19:08,509 [main] INFO Config - light MIBs output directory: 'C:\Users\gigi\git\jCleanCim\output\mibslight' +2024-09-07 16:19:08,509 [main] DEBUG Config - Property docgen.word.styles.prefix.toc not found in config.properties. +2024-09-07 16:19:08,509 [main] DEBUG Config - Property docgen.word.styles.prefix.head not found in config.properties. +2024-09-07 16:19:08,509 [main] DEBUG Config - Property docgen.skipForCustomStereotypes not found in config.properties. +2024-09-07 16:19:08,509 [main] INFO JCleanCim - Config: +app.skipTiming = +docgen.iec61850.includeMetamodelInheritance = +docgen.iec61850.writeUmlTypes = +docgen.includeInformative = +docgen.includeNonPublic = +docgen.on = true +docgen.printHtml = +docgen.showCustomStereotypes = true +docgen.showNamespacePackages = Base, Dynamics, ExtEuBase, Ext1 +docgen.word.analysePlaceholders = +docgen.word.inTemplate = 57-62351-7-Ed2-FDIS-template_20240901.docx +docgen.word.includeInheritancePath = false +docgen.word.introToFigureBefore = +docgen.word.outDocument = 57-62351-7-Ed2-FDIS_20240901.docx +docgen.word.saveReopenEvery = 12 +docgen.word.styles.fig = FIGURE, Picture, Normal, Standard, Normal +docgen.word.styles.figcapt = FIGURE-title, Caption, Beschriftung, Légende +docgen.word.styles.para = PARAGRAPH, Normal, Standard, Normal +docgen.word.styles.tabcapt = TABLE-title, Caption, Beschriftung, Légende +docgen.word.styles.tabcell = TABLE-cell, Normal, Standard, Normal +docgen.word.styles.tabhead = TABLE-col-heading, Normal, Standard, Normal +docgen.word.useDocFormat = true +docgen.word.useHyperlinks = true +docgen.xml.scope = +mibgen.on = true +mibgen.outDirFull = mibs +mibgen.outDirLight = mibslight +model.builder = japi +model.filename = IEC62351-7-Ed2-FDIS-20240901.eap +model.nature.iec61850 = IEC61850Domain, My61850Extensions, NonCIM, IEC61850_SCL_mappings, MyNonCimExtensions +model.nature.iec62351 = IEC62351 +model.picsRelpath = +profiles.crosscheck.on = +profiles.dirnames = +profiles.docgen.on = +profiles.relpath = +project.version = 02v03 +statistics.cim.ignoreDomainClassAttributes = true +statistics.cim.ignoreIdObjectInheritance = true +statistics.on = false +statistics.tagsToIgnore = GUIDBasedOn +validation.associations.off = +validation.attributes.off = +validation.classes.off = +validation.dependencies.off = +validation.diagrams.off = +validation.iec61850.package72Top = IEC61850_7_2 +validation.iec61850.packageFC = FunctionalConstraints +validation.iec61850.packageLnMaps = Functions +validation.iec61850.packageMetaModel = MetaModel +validation.iec61850.packagePresCond = PresenceConditions +validation.iec61850.packageTrgOp = TriggerOptions +validation.iec61850.packages72 = FunctionalConstraints, TriggerOptions, ACSIEnums, CoreTypes, MetaModel +validation.iec61850.packages73 = PresenceConditions, ConstructedDAs, CommonDataClasses, DAEnums,CommonDataClasses_90_3, DAEnums_90_3,CommonDataClasses_90_4, DAEnums_90_4,CommonDataClasses_90_6, DAEnums_90_6,CommonDataClasses_90_8, DAEnums_90_8,CommonDataClasses_90_10, DAEnums_90_10,CommonDataClasses_90_17, DAEnums_90_17,CommonDataClasses_7_410, DAEnums_7_410,CommonDataClasses_7_420, DAEnums_7_420,CommonDataClasses_25_2, DAEnums_25_2 +validation.iec61850.packages74 = Functions, Abbreviations, LogicalNodes, DOEnums,Abbreviations_90_3, LogicalNodes_90_3, DOEnums_90_3,Abbreviations_90_4, LogicalNodes_90_4, DOEnums_90_4,Abbreviations_90_6, LogicalNodes_90_6, DOEnums_90_6,Abbreviations_90_8, LogicalNodes_90_8, DOEnums_90_8,Abbreviations_90_9, LogicalNodes_90_9, DOEnums_90_9,Abbreviations_90_10, LogicalNodes_90_10, DOEnums_90_10,Abbreviations_90_11, LogicalNodes_90_11, DOEnums_90_11,Abbreviations_90_17, LogicalNodes_90_17, DOEnums_90_17,Abbreviations_7_410, LogicalNodes_7_410, DOEnums_7_410,Abbreviations_7_420, LogicalNodes_7_420, DOEnums_7_420,Abbreviations_7_499, LogicalNodes_7_499, DOEnums_7_499,Abbreviations_61869-9, LogicalNodes_61869-9, Abbreviations_62271-3, LogicalNodes_62271-3, Abbreviations_25_2, LogicalNodes_25_2, DOEnums_25_2 +validation.iec61850.packagesBasic = CoreTypes +validation.iec61850.packagesCdc = CommonDataClasses, CommonDataClasses_90_3, CommonDataClasses_90_4, CommonDataClasses_90_6, CommonDataClasses_90_8, CommonDataClasses_90_9, CommonDataClasses_90_10, CommonDataClasses_90_17, CommonDataClasses_7_410, CommonDataClasses_7_420, CommonDataClasses_25_2 +validation.iec61850.packagesDa = ConstructedDAs +validation.iec61850.packagesDoAbbr = Abbreviations, Abbreviations_90_3, Abbreviations_90_4, Abbreviations_90_6, Abbreviations_90_8, Abbreviations_90_9, Abbreviations_90_10, Abbreviations_90_11, Abbreviations_90_17, Abbreviations_7_410, Abbreviations_7_420, Abbreviations_7_499, Abbreviations_61869-9, Abbreviations_62271-3, Abbreviations_25_2 +validation.iec61850.packagesEnumsXml = DomainTypesEnums, DOEnums, DAEnums, DOEnums_90_3, DAEnums_90_3, DOEnums_90_4, DAEnums_90_4, DOEnums_90_6, DAEnums_90_6, DOEnums_90_8, DAEnums_90_8, DOEnums_90_9, DAEnums_90_9, DOEnums_90_10, DAEnums_90_10, DOEnums_90_11, DAEnums_90_11, DOEnums_90_17, DAEnums_90_17, DOEnums_7_410, DAEnums_7_410, DOEnums_7_420, DAEnums_7_420, DOEnums_7_499, DAEnums_7_499, DOEnums_25_2, DAEnums_25_2 +validation.iec61850.packagesLn = LogicalNodes, LogicalNodes_90_3, LogicalNodes_90_4, LogicalNodes_90_6, LogicalNodes_90_8, LogicalNodes_90_9, LogicalNodes_90_10, LogicalNodes_90_11, LogicalNodes_90_17, LogicalNodes_7_410, LogicalNodes_7_420, LogicalNodes_7_499, LogicalNodes_61869-9, LogicalNodes_62271-3, LogicalNodes_7_420, LogicalNodes_25_2 +validation.logging.verbose = +validation.on = false +validation.operations.off = +validation.packages.off = +validation.packagesDataIndex = Core, LogicalNodes, CommonDataClasses, LogicalNodes_90_3, CommonDataClasses_90_3, LogicalNodes_90_4, CommonDataClasses_90_4, LogicalNodes_90_6, CommonDataClasses_90_6, LogicalNodes_90_8, CommonDataClasses_90_8, LogicalNodes_90_9, CommonDataClasses_90_9, LogicalNodes_90_10, CommonDataClasses_90_10, LogicalNodes_90_11, CommonDataClasses_90_11, LogicalNodes_90_17, CommonDataClasses_90_17, LogicalNodes_7_410, CommonDataClasses_7_410, LogicalNodes_7_420, LogicalNodes_7_499, CommonDataClasses_7_420, LogicalNodes_61869-9, LogicalNodes_62271-3, LogicalNodes_25_2, CommonDataClasses_25_2 +validation.scope = +xmiexport.dialects = +xmiexport.on = + +2024-09-07 16:19:08,567 [main] INFO Util - +2024-09-07 16:19:08,567 [main] INFO Util - ================================================ +2024-09-07 16:19:08,567 [main] INFO Util - building model from EA EA Java API + ea.dll... +2024-09-07 16:19:08,567 [main] INFO Util - ================================================ +2024-09-07 16:19:08,573 [main] INFO Util - +2024-09-07 16:19:08,574 [main] INFO Util - ------------------------------------------------ +2024-09-07 16:19:08,574 [main] INFO Util - initialising EA builder... +2024-09-07 16:19:09,935 [main] INFO EaModelBuilder - EA version: build 1623 +2024-09-07 16:19:09,967 [main] INFO Util - time=[0:00:01.361] initialised EA builder. +2024-09-07 16:19:09,967 [main] INFO Util - +2024-09-07 16:19:09,967 [main] INFO Util - +2024-09-07 16:19:09,967 [main] INFO Util - ------------------------------------------------ +2024-09-07 16:19:09,968 [main] INFO Util - opening EA file 'C:\Users\gigi\git\jCleanCim\input\IEC62351-7-Ed2-FDIS-20240901.eap'... +2024-09-07 16:19:30,894 [main] INFO Util - time=[0:00:20.926] opened EA file. +2024-09-07 16:19:30,894 [main] INFO Util - +2024-09-07 16:19:30,894 [main] INFO Util - +2024-09-07 16:19:30,895 [main] INFO Util - ------------------------------------------------ +2024-09-07 16:19:30,895 [main] INFO Util - reading model from EA with iteration API (this will take a while)... +2024-09-07 16:19:30,971 [main] INFO PackageBuilder - processing model package iso (0) ... +2024-09-07 16:19:31,010 [main] INFO PackageBuilder - processing top package standard (0) ... +2024-09-07 16:19:31,053 [main] INFO PackageBuilder - processing package iec62351 (0) ... +2024-09-07 16:19:31,127 [main] INFO PackageBuilder - processing package part7 (0) ... +2024-09-07 16:19:31,338 [main] INFO PackageBuilder - processing package Profiles (0) ... +2024-09-07 16:19:31,361 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Profiles, _objData=UmlObjectData [id=51, uuid={4642A2B9-A297-45be-A2B5-28C4F1A2B373}, since=null, name=Part7Profiles, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-07 16:19:31,395 [main] INFO PackageBuilder - processing package nsmAgent (0) ... +2024-09-07 16:19:31,409 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=nsmAgent, _objData=UmlObjectData [id=52, uuid={8F3F8B93-6E15-4fcf-9C40-83EB793F28A5}, since=null, name=nsmAgent, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-07 16:19:31,795 [main] TRACE ClassBuilder - Class Attribute (0 in package nsmAgent) +2024-09-07 16:19:31,889 [main] DEBUG AssociationEndBuilder - Updated target type to Attribute +2024-09-07 16:19:31,898 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=11, uuid=6512bd43-d9ca-36e0-ac99-0b0a82652dca, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=12, uuid=c20ad4d7-6fe9-3759-aa27-a0c99bff6710, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=185, uuid={037D3A56-F1D8-42bb-9EFD-F6E2309B7770}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 16:19:31,898 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=11, uuid=6512bd43-d9ca-36e0-ac99-0b0a82652dca, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=12, uuid=c20ad4d7-6fe9-3759-aa27-a0c99bff6710, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=185, uuid={037D3A56-F1D8-42bb-9EFD-F6E2309B7770}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Attribute +2024-09-07 16:19:31,898 [main] TRACE ClassBuilder - read from EA: nsmAgent::Attribute +2024-09-07 16:19:31,903 [main] TRACE ClassBuilder - Class Attribute (0 in package nsmAgent) +2024-09-07 16:19:31,970 [main] DEBUG AssociationEndBuilder - Updated target type to Attribute +2024-09-07 16:19:31,979 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=15, uuid=9bf31c7f-f062-336a-96d3-c8bd1f8f2ff3, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=16, uuid=c74d97b0-1eae-357e-84aa-9d5bade97baf, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=179, uuid={AB14A505-E58D-4c64-BE95-5835E1FE0435}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 16:19:31,979 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=15, uuid=9bf31c7f-f062-336a-96d3-c8bd1f8f2ff3, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=16, uuid=c74d97b0-1eae-357e-84aa-9d5bade97baf, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=179, uuid={AB14A505-E58D-4c64-BE95-5835E1FE0435}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Attribute +2024-09-07 16:19:31,979 [main] TRACE ClassBuilder - read from EA: nsmAgent::Attribute +2024-09-07 16:19:31,985 [main] TRACE ClassBuilder - Class Attribute (0 in package nsmAgent) +2024-09-07 16:19:32,056 [main] DEBUG AssociationEndBuilder - Updated target type to Attribute +2024-09-07 16:19:32,063 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=19, uuid=1f0e3dad-9990-3345-b743-9f8ffabdffc4, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=20, uuid=98f13708-2101-34c4-b568-7be6106a3b84, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=180, uuid={81333E16-399C-4a6d-83B9-BAC271270F32}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 16:19:32,063 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=19, uuid=1f0e3dad-9990-3345-b743-9f8ffabdffc4, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=20, uuid=98f13708-2101-34c4-b568-7be6106a3b84, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=180, uuid={81333E16-399C-4a6d-83B9-BAC271270F32}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Attribute +2024-09-07 16:19:32,063 [main] TRACE ClassBuilder - read from EA: nsmAgent::Attribute +2024-09-07 16:19:32,069 [main] TRACE ClassBuilder - Class Attribute (0 in package nsmAgent) +2024-09-07 16:19:32,134 [main] DEBUG AssociationEndBuilder - Updated target type to Attribute +2024-09-07 16:19:32,142 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=23, uuid=37693cfc-7480-39e4-9d87-b8c7d8b9aacd, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=24, uuid=1ff1de77-4005-38da-93f4-2943881c655f, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=183, uuid={A10A942F-369A-4aa5-88B5-9F7AD36E5852}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 16:19:32,142 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=23, uuid=37693cfc-7480-39e4-9d87-b8c7d8b9aacd, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=24, uuid=1ff1de77-4005-38da-93f4-2943881c655f, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=183, uuid={A10A942F-369A-4aa5-88B5-9F7AD36E5852}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Attribute +2024-09-07 16:19:32,142 [main] TRACE ClassBuilder - read from EA: nsmAgent::Attribute +2024-09-07 16:19:32,147 [main] TRACE ClassBuilder - Class Attribute (0 in package nsmAgent) +2024-09-07 16:19:32,220 [main] DEBUG AssociationEndBuilder - Updated target type to Attribute +2024-09-07 16:19:32,227 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=27, uuid=02e74f10-e032-3ad8-a8d1-38f2b4fdd6f0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=28, uuid=33e75ff0-9dd6-31bb-a69f-351039152189, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=184, uuid={0A546037-FD29-4ca6-8123-D9FEDAA5A7C4}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 16:19:32,227 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=27, uuid=02e74f10-e032-3ad8-a8d1-38f2b4fdd6f0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=28, uuid=33e75ff0-9dd6-31bb-a69f-351039152189, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=184, uuid={0A546037-FD29-4ca6-8123-D9FEDAA5A7C4}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Attribute +2024-09-07 16:19:32,227 [main] TRACE ClassBuilder - read from EA: nsmAgent::Attribute +2024-09-07 16:19:32,232 [main] TRACE ClassBuilder - Class Attribute (0 in package nsmAgent) +2024-09-07 16:19:32,299 [main] DEBUG AssociationEndBuilder - Updated target type to Attribute +2024-09-07 16:19:32,306 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=31, uuid=c16a5320-fa47-3530-9958-3c34fd356ef5, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=32, uuid=6364d3f0-f495-36ab-9dcf-8d3b5c6e0b01, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=186, uuid={5A0BDE1C-4479-472a-95D9-5E2FF2FB1D48}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 16:19:32,306 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=31, uuid=c16a5320-fa47-3530-9958-3c34fd356ef5, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=32, uuid=6364d3f0-f495-36ab-9dcf-8d3b5c6e0b01, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=186, uuid={5A0BDE1C-4479-472a-95D9-5E2FF2FB1D48}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Attribute +2024-09-07 16:19:32,306 [main] TRACE ClassBuilder - read from EA: nsmAgent::Attribute +2024-09-07 16:19:32,311 [main] TRACE ClassBuilder - Class Attribute (0 in package nsmAgent) +2024-09-07 16:19:32,381 [main] DEBUG AssociationEndBuilder - Updated target type to Attribute +2024-09-07 16:19:32,388 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=35, uuid=1c383cd3-0b7c-398a-b502-93adfecb7b18, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=36, uuid=19ca14e7-ea63-38a4-ae0e-b13d585e4c22, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=187, uuid={D024B2AD-A446-46a8-9026-6CAB3B506EAD}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 16:19:32,389 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=35, uuid=1c383cd3-0b7c-398a-b502-93adfecb7b18, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=36, uuid=19ca14e7-ea63-38a4-ae0e-b13d585e4c22, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=187, uuid={D024B2AD-A446-46a8-9026-6CAB3B506EAD}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Attribute +2024-09-07 16:19:32,389 [main] TRACE ClassBuilder - read from EA: nsmAgent::Attribute +2024-09-07 16:19:32,394 [main] TRACE ClassBuilder - Class Attribute (0 in package nsmAgent) +2024-09-07 16:19:32,459 [main] DEBUG AssociationEndBuilder - Updated target type to Attribute +2024-09-07 16:19:32,468 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=39, uuid=d67d8ab4-f4c1-3bf2-aaa3-53e27879133c, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=40, uuid=d645920e-395f-3dad-bbbb-ed0eca3fe2e0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=207, uuid={EF3A2C3D-0E4D-4d2e-98CA-E29A17F69D6F}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 16:19:32,468 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=39, uuid=d67d8ab4-f4c1-3bf2-aaa3-53e27879133c, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=40, uuid=d645920e-395f-3dad-bbbb-ed0eca3fe2e0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=207, uuid={EF3A2C3D-0E4D-4d2e-98CA-E29A17F69D6F}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Attribute +2024-09-07 16:19:32,468 [main] TRACE ClassBuilder - read from EA: nsmAgent::Attribute +2024-09-07 16:19:32,473 [main] TRACE ClassBuilder - Class Attribute (0 in package nsmAgent) +2024-09-07 16:19:32,541 [main] DEBUG AssociationEndBuilder - Updated target type to Attribute +2024-09-07 16:19:32,548 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=43, uuid=17e62166-fc85-36df-a4d1-bc0e1742c08b, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=44, uuid=f7177163-c833-3ff4-b38f-c8d2872f1ec6, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=188, uuid={779BD3EC-A6F0-4fa2-AF25-CF73DEB80D9D}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 16:19:32,548 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=43, uuid=17e62166-fc85-36df-a4d1-bc0e1742c08b, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=44, uuid=f7177163-c833-3ff4-b38f-c8d2872f1ec6, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=188, uuid={779BD3EC-A6F0-4fa2-AF25-CF73DEB80D9D}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Attribute +2024-09-07 16:19:32,548 [main] TRACE ClassBuilder - read from EA: nsmAgent::Attribute +2024-09-07 16:19:32,553 [main] TRACE ClassBuilder - Class Class (0 in package nsmAgent) +2024-09-07 16:19:32,578 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::Class, _objData=UmlObjectData [id=3451, uuid={6E8148A7-7F05-41a0-9B96-4DE1404873EE}, since=null, name=isActive, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:32,634 [main] DEBUG AssociationEndBuilder - Updated target type to Class +2024-09-07 16:19:32,642 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=48, uuid=642e92ef-b794-3173-8881-b53e1e1b18b6, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=49, uuid=f457c545-a9de-388f-98ec-ee47145a72c0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=181, uuid={B87BF513-6F00-4a87-8745-0EFE6669608B}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 16:19:32,642 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=48, uuid=642e92ef-b794-3173-8881-b53e1e1b18b6, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=49, uuid=f457c545-a9de-388f-98ec-ee47145a72c0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=181, uuid={B87BF513-6F00-4a87-8745-0EFE6669608B}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Class +2024-09-07 16:19:32,642 [main] TRACE ClassBuilder - read from EA: nsmAgent::Class +2024-09-07 16:19:32,648 [main] TRACE ClassBuilder - Class Class (0 in package nsmAgent) +2024-09-07 16:19:32,669 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::Class, _objData=UmlObjectData [id=3982, uuid={0ADC0F06-862E-4bf0-91E6-77D5A0ACAC93}, since=null, name=isActive, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:32,726 [main] DEBUG AssociationEndBuilder - Updated target type to Class +2024-09-07 16:19:32,734 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=53, uuid=d82c8d16-19ad-3176-9665-453cfb2e55f0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=54, uuid=a684ecee-e76f-3522-b732-86a895bc8436, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=226, uuid={18809321-3AB3-4ee2-8EFB-837D3C11C6DB}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 16:19:32,734 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=53, uuid=d82c8d16-19ad-3176-9665-453cfb2e55f0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=54, uuid=a684ecee-e76f-3522-b732-86a895bc8436, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=226, uuid={18809321-3AB3-4ee2-8EFB-837D3C11C6DB}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Class +2024-09-07 16:19:32,734 [main] TRACE ClassBuilder - read from EA: nsmAgent::Class +2024-09-07 16:19:32,740 [main] TRACE ClassBuilder - Class Class (0 in package nsmAgent) +2024-09-07 16:19:32,761 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::Class, _objData=UmlObjectData [id=3442, uuid={59E9AD9F-FC10-4f48-B814-DA381B64951D}, since=null, name=isActive, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:32,822 [main] DEBUG AssociationEndBuilder - Updated target type to Class +2024-09-07 16:19:32,829 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=58, uuid=66f041e1-6a60-328b-85a7-e228a89c3799, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=59, uuid=093f65e0-80a2-35f8-876b-1c5722a46aa2, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=182, uuid={3E772D79-C1EA-4a57-A5C1-11E871B0C5C7}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 16:19:32,830 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=58, uuid=66f041e1-6a60-328b-85a7-e228a89c3799, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=59, uuid=093f65e0-80a2-35f8-876b-1c5722a46aa2, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=182, uuid={3E772D79-C1EA-4a57-A5C1-11E871B0C5C7}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Class +2024-09-07 16:19:32,830 [main] TRACE ClassBuilder - read from EA: nsmAgent::Class +2024-09-07 16:19:32,835 [main] TRACE ClassBuilder - Class health (0 in package nsmAgent) +2024-09-07 16:19:32,856 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::health, _objData=UmlObjectData [id=3454, uuid={CC8861DB-2567-4147-A044-BA3F2890EF3C}, since=null, name=Version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:32,904 [main] DEBUG AssociationEndBuilder - Updated source type to health +2024-09-07 16:19:32,904 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=11, uuid=6512bd43-d9ca-36e0-ac99-0b0a82652dca, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=health, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=12, uuid=c20ad4d7-6fe9-3759-aa27-a0c99bff6710, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=185, uuid={037D3A56-F1D8-42bb-9EFD-F6E2309B7770}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::health +2024-09-07 16:19:32,904 [main] TRACE ClassBuilder - read from EA: nsmAgent::health +2024-09-07 16:19:32,910 [main] TRACE ClassBuilder - Class identity (0 in package nsmAgent) +2024-09-07 16:19:32,931 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::identity, _objData=UmlObjectData [id=3453, uuid={FCEB4C51-4294-4255-B547-06FC8EAD1631}, since=null, name=Version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:32,976 [main] DEBUG AssociationEndBuilder - Updated source type to identity +2024-09-07 16:19:32,977 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=27, uuid=02e74f10-e032-3ad8-a8d1-38f2b4fdd6f0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=identity, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=28, uuid=33e75ff0-9dd6-31bb-a69f-351039152189, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=184, uuid={0A546037-FD29-4ca6-8123-D9FEDAA5A7C4}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::identity +2024-09-07 16:19:32,977 [main] TRACE ClassBuilder - read from EA: nsmAgent::identity +2024-09-07 16:19:32,983 [main] TRACE ClassBuilder - Class index (0 in package nsmAgent) +2024-09-07 16:19:33,005 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::index, _objData=UmlObjectData [id=3452, uuid={94DC5272-A241-486c-B0B9-E954FC9CEEB9}, since=null, name=Version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:33,050 [main] DEBUG AssociationEndBuilder - Updated source type to index +2024-09-07 16:19:33,051 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=23, uuid=37693cfc-7480-39e4-9d87-b8c7d8b9aacd, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=index, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=24, uuid=1ff1de77-4005-38da-93f4-2943881c655f, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=183, uuid={A10A942F-369A-4aa5-88B5-9F7AD36E5852}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::index +2024-09-07 16:19:33,051 [main] TRACE ClassBuilder - read from EA: nsmAgent::index +2024-09-07 16:19:33,057 [main] TRACE ClassBuilder - Class nsmAgent (0 in package nsmAgent) +2024-09-07 16:19:33,080 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::nsmAgent, _objData=UmlObjectData [id=3448, uuid={5FAAD04C-5CF2-4de7-9E7A-87ED0BF31C92}, since=null, name=mibPrefix, alias=, stereotype=, visibility=public, txtDescription='The prefix to be added to the each Attributes when used within this Agent branch', htmlDescription='

The prefix to be added to the each Attributes when used within this Agent branch

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=string, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:33,090 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::nsmAgent, _objData=UmlObjectData [id=3449, uuid={91C49511-AC32-48bc-B58E-2B08325AECF0}, since=null, name=objectIdentity, alias=, stereotype=, visibility=public, txtDescription='The branch identifier', htmlDescription='

The branch identifier

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=string, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:33,099 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::nsmAgent, _objData=UmlObjectData [id=3450, uuid={ED9B83E7-AE09-4070-96DD-DC944F967E05}, since=null, name=objectBranchId, alias=, stereotype=, visibility=public, txtDescription='The branch identifier', htmlDescription='

The branch identifier

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=string, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:33,145 [main] DEBUG AssociationEndBuilder - Updated source type to nsmAgent +2024-09-07 16:19:33,146 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=58, uuid=66f041e1-6a60-328b-85a7-e228a89c3799, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=nsmAgent, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=59, uuid=093f65e0-80a2-35f8-876b-1c5722a46aa2, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=182, uuid={3E772D79-C1EA-4a57-A5C1-11E871B0C5C7}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::nsmAgent +2024-09-07 16:19:33,146 [main] TRACE ClassBuilder - read from EA: nsmAgent::nsmAgent +2024-09-07 16:19:33,152 [main] TRACE ClassBuilder - Class nsmEntry (0 in package nsmAgent) +2024-09-07 16:19:33,175 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::nsmEntry, _objData=UmlObjectData [id=3979, uuid={21B90413-2706-49d1-A52C-E5C36E7666D4}, since=null, name=mibPrefix, alias=, stereotype=, visibility=public, txtDescription='The prefix to be added to the each Attributes when used within this Agent branch', htmlDescription='

The prefix to be added to the each Attributes when used within this Agent branch

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=string, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:33,185 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::nsmEntry, _objData=UmlObjectData [id=3980, uuid={1140893C-EF40-4d4c-908C-CB302BACA4CB}, since=null, name=objectIdentity, alias=, stereotype=, visibility=public, txtDescription='The branch identifier', htmlDescription='

The branch identifier

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=string, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:33,195 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::nsmEntry, _objData=UmlObjectData [id=3981, uuid={D16EB47B-7D14-4b5a-87B0-9E3757C72F57}, since=null, name=objectBranchId, alias=, stereotype=, visibility=public, txtDescription='The branch identifier', htmlDescription='

The branch identifier

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=string, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:33,242 [main] DEBUG AssociationEndBuilder - Updated source type to nsmEntry +2024-09-07 16:19:33,243 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=53, uuid=d82c8d16-19ad-3176-9665-453cfb2e55f0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=nsmEntry, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=54, uuid=a684ecee-e76f-3522-b732-86a895bc8436, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=226, uuid={18809321-3AB3-4ee2-8EFB-837D3C11C6DB}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::nsmEntry +2024-09-07 16:19:33,243 [main] TRACE ClassBuilder - read from EA: nsmAgent::nsmEntry +2024-09-07 16:19:33,248 [main] TRACE ClassBuilder - Class nsmEvent (0 in package nsmAgent) +2024-09-07 16:19:33,272 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::nsmEvent, _objData=UmlObjectData [id=3443, uuid={897C9792-FFA0-4111-80BB-4973BBF14FBE}, since=null, name=mibPrefix, alias=, stereotype=, visibility=public, txtDescription='The prefix to be added to the each Attributes when used within this Agent branch', htmlDescription='

The prefix to be added to the each Attributes when used within this Agent branch

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=string, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:33,281 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::nsmEvent, _objData=UmlObjectData [id=3444, uuid={46527C35-A279-40fb-90C3-546B6430D724}, since=null, name=objectIdentity, alias=, stereotype=, visibility=public, txtDescription='The branch identifier', htmlDescription='

The branch identifier

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=string, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:33,290 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::nsmEvent, _objData=UmlObjectData [id=3445, uuid={07EF49E6-1576-43ed-9364-792638FA9A7F}, since=null, name=objectBranchId, alias=, stereotype=, visibility=public, txtDescription='The branch identifier', htmlDescription='

The branch identifier

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=string, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:33,337 [main] DEBUG AssociationEndBuilder - Updated source type to nsmEvent +2024-09-07 16:19:33,337 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=48, uuid=642e92ef-b794-3173-8881-b53e1e1b18b6, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=nsmEvent, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=49, uuid=f457c545-a9de-388f-98ec-ee47145a72c0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=181, uuid={B87BF513-6F00-4a87-8745-0EFE6669608B}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::nsmEvent +2024-09-07 16:19:33,337 [main] TRACE ClassBuilder - read from EA: nsmAgent::nsmEvent +2024-09-07 16:19:33,342 [main] TRACE ClassBuilder - Class performance (0 in package nsmAgent) +2024-09-07 16:19:33,365 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::performance, _objData=UmlObjectData [id=3455, uuid={F52F6387-CDFF-4a2a-B4C3-3E25870BE05A}, since=null, name=Version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:33,412 [main] DEBUG AssociationEndBuilder - Updated source type to performance +2024-09-07 16:19:33,412 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=31, uuid=c16a5320-fa47-3530-9958-3c34fd356ef5, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=performance, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=32, uuid=6364d3f0-f495-36ab-9dcf-8d3b5c6e0b01, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=186, uuid={5A0BDE1C-4479-472a-95D9-5E2FF2FB1D48}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::performance +2024-09-07 16:19:33,412 [main] TRACE ClassBuilder - read from EA: nsmAgent::performance +2024-09-07 16:19:33,417 [main] TRACE ClassBuilder - Class protocol (0 in package nsmAgent) +2024-09-07 16:19:33,438 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::protocol, _objData=UmlObjectData [id=3447, uuid={F2329AA5-0361-4f8c-92BD-CE45DB120CE3}, since=null, name=Version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:33,484 [main] DEBUG AssociationEndBuilder - Updated source type to protocol +2024-09-07 16:19:33,484 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=15, uuid=9bf31c7f-f062-336a-96d3-c8bd1f8f2ff3, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=protocol, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=16, uuid=c74d97b0-1eae-357e-84aa-9d5bade97baf, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=179, uuid={AB14A505-E58D-4c64-BE95-5835E1FE0435}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::protocol +2024-09-07 16:19:33,484 [main] TRACE ClassBuilder - read from EA: nsmAgent::protocol +2024-09-07 16:19:33,489 [main] TRACE ClassBuilder - Class security (0 in package nsmAgent) +2024-09-07 16:19:33,510 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::security, _objData=UmlObjectData [id=3446, uuid={7B1451A9-BA4A-4172-938F-AE95484B650C}, since=null, name=Version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:33,555 [main] DEBUG AssociationEndBuilder - Updated source type to security +2024-09-07 16:19:33,555 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=19, uuid=1f0e3dad-9990-3345-b743-9f8ffabdffc4, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=security, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=20, uuid=98f13708-2101-34c4-b568-7be6106a3b84, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=180, uuid={81333E16-399C-4a6d-83B9-BAC271270F32}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::security +2024-09-07 16:19:33,556 [main] TRACE ClassBuilder - read from EA: nsmAgent::security +2024-09-07 16:19:33,561 [main] TRACE ClassBuilder - Class setvalue (0 in package nsmAgent) +2024-09-07 16:19:33,582 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::setvalue, _objData=UmlObjectData [id=3456, uuid={5980FD0B-7618-42e2-8A8F-B4A3BA69C461}, since=null, name=Version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:33,627 [main] DEBUG AssociationEndBuilder - Updated source type to setvalue +2024-09-07 16:19:33,627 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=35, uuid=1c383cd3-0b7c-398a-b502-93adfecb7b18, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=setvalue, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=36, uuid=19ca14e7-ea63-38a4-ae0e-b13d585e4c22, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=187, uuid={D024B2AD-A446-46a8-9026-6CAB3B506EAD}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::setvalue +2024-09-07 16:19:33,627 [main] TRACE ClassBuilder - read from EA: nsmAgent::setvalue +2024-09-07 16:19:33,633 [main] TRACE ClassBuilder - Class table (0 in package nsmAgent) +2024-09-07 16:19:33,653 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::table, _objData=UmlObjectData [id=3457, uuid={50B5AB79-81F7-412a-AF6C-15E7D27E4EC6}, since=null, name=Version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:33,699 [main] DEBUG AssociationEndBuilder - Updated source type to table +2024-09-07 16:19:33,699 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=43, uuid=17e62166-fc85-36df-a4d1-bc0e1742c08b, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=table, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=44, uuid=f7177163-c833-3ff4-b38f-c8d2872f1ec6, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=188, uuid={779BD3EC-A6F0-4fa2-AF25-CF73DEB80D9D}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::table +2024-09-07 16:19:33,699 [main] TRACE ClassBuilder - read from EA: nsmAgent::table +2024-09-07 16:19:33,704 [main] TRACE ClassBuilder - Class trap (0 in package nsmAgent) +2024-09-07 16:19:33,725 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::trap, _objData=UmlObjectData [id=3610, uuid={321E6795-47CE-4d0f-A903-28BFD422C88F}, since=null, name=Version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:33,770 [main] DEBUG AssociationEndBuilder - Updated source type to trap +2024-09-07 16:19:33,770 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=39, uuid=d67d8ab4-f4c1-3bf2-aaa3-53e27879133c, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=trap, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=40, uuid=d645920e-395f-3dad-bbbb-ed0eca3fe2e0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=207, uuid={EF3A2C3D-0E4D-4d2e-98CA-E29A17F69D6F}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::trap +2024-09-07 16:19:33,770 [main] TRACE ClassBuilder - read from EA: nsmAgent::trap +2024-09-07 16:19:33,773 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Profiles, _depth=4, _eaElementID=881, _objData=UmlObjectData [id=330, uuid={5A3BC3BE-A490-436c-A0C4-BF2365F8CDD4}, since=null, name=nsmAgent, alias=, stereotype=profile, visibility=public, txtDescription='', htmlDescription=''], _modelId=362, _selfDependent=false, 1_taggedValues{_profile_data=}, 1_diagrams=[DiagramBuilder [_containingPackage=nsmAgent, _objData=UmlObjectData [id=52, uuid={8F3F8B93-6E15-4fcf-9C40-83EB793F28A5}, since=null, name=nsmAgent, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _classes=24 +2024-09-07 16:19:33,773 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=880, _objData=UmlObjectData [id=329, uuid={9FD92520-A629-4fe0-9C99-D01EACC33DFB}, since=null, name=Profiles, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=362, _selfDependent=false, 1_taggedValues{_profile_data=}, 1_diagrams=[DiagramBuilder [_containingPackage=Profiles, _objData=UmlObjectData [id=51, uuid={4642A2B9-A297-45be-A2B5-28C4F1A2B373}, since=null, name=Part7Profiles, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _childPackages=1] +2024-09-07 16:19:33,781 [main] INFO PackageBuilder - processing package Overview (2) ... +2024-09-07 16:19:33,793 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Overview, _objData=UmlObjectData [id=23, uuid={1EC9B9AC-962E-4b2c-A2A8-EFB524CF896E}, since=null, name=Part7 Classes Overview, alias=, stereotype=, visibility=public, txtDescription='IEC 62351-7 Objects overview', htmlDescription='

IEC 62351-7 Objects overview

'], _portrait=true, _kind=LOGICAL] +2024-09-07 16:19:33,833 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=941, uuid={F4ED4B79-564B-4c10-81A0-56580DAC755C}, since=null, name=IEC 60870, DNP and IEC 62351, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Overview, _otherEndName=] +2024-09-07 16:19:33,838 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=939, uuid={A16E0E74-46E5-4db2-9B18-5CAA5D5C1EE4}, since=null, name=IEC 61850, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Overview, _otherEndName=] +2024-09-07 16:19:33,840 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=872, _objData=UmlObjectData [id=324, uuid={E9E467F0-A1DE-4274-9A43-A31884D06B9B}, since=null, name=Overview, alias=, stereotype=, visibility=public, txtDescription='The NSM agent objects are organized in a UML package hierarchy that is shown in Figure 15. The application protocol branch is organized into further substructures that include the specific protocols agents. +The tree of packages is reflected in the translation to the SNMP MIB structure. This MIB structure shall respect additional constraints. For instance the reuse of attribute names in different MIB branches is not allowed. Additional MIB constraints are related to naming conventions and the OID specification.', htmlDescription='

The NSM agent objects are organized in a UML package hierarchy that is shown in Figure 15. The application protocol branch is organized into further substructures that include the specific protocols agents.

The tree of packages is reflected in the translation to the SNMP MIB structure. This MIB structure shall respect additional constraints. For instance the reuse of attribute names in different MIB branches is not allowed. Additional MIB constraints are related to naming conventions and the OID specification.

'], _modelId=362, _selfDependent=false, 2_skippedEaItems=[SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=941, uuid={F4ED4B79-564B-4c10-81A0-56580DAC755C}, since=null, name=IEC 60870, DNP and IEC 62351, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Overview, _otherEndName=], SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=939, uuid={A16E0E74-46E5-4db2-9B18-5CAA5D5C1EE4}, since=null, name=IEC 61850, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Overview, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=Overview, _objData=UmlObjectData [id=23, uuid={1EC9B9AC-962E-4b2c-A2A8-EFB524CF896E}, since=null, name=Part7 Classes Overview, alias=, stereotype=, visibility=public, txtDescription='IEC 62351-7 Objects overview', htmlDescription='

IEC 62351-7 Objects overview

'], _portrait=true, _kind=LOGICAL]] +2024-09-07 16:19:33,845 [main] INFO PackageBuilder - processing package BaseTypes (3) ... +2024-09-07 16:19:34,080 [main] TRACE ClassBuilder - Class AbsoluteDateTime (1 in package BaseTypes) +2024-09-07 16:19:34,102 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::AbsoluteDateTime, _objData=UmlObjectData [id=2741, uuid={F3AF56F9-1853-4d50-BE66-55698A10D728}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='String representation of date and time.', htmlDescription='

String representation of date and time.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=OCTET STRING (SIZE(8..11)), _eaTypeId=0, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:34,106 [main] TRACE ClassBuilder - read from EA: BaseTypes::AbsoluteDateTime +2024-09-07 16:19:34,113 [main] TRACE ClassBuilder - Class Counter32 (2 in package BaseTypes) +2024-09-07 16:19:34,134 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::Counter32 , _objData=UmlObjectData [id=2679, uuid={FA17507F-4E8A-4a30-A8AB-34397CB7B197}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='The range of allowed values must be specified.', htmlDescription='

The range of allowed values must be specified.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=Counter32, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:34,139 [main] TRACE ClassBuilder - read from EA: BaseTypes::Counter32 +2024-09-07 16:19:34,145 [main] TRACE ClassBuilder - Class DateAndTime (3 in package BaseTypes) +2024-09-07 16:19:34,166 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::DateAndTime, _objData=UmlObjectData [id=2681, uuid={E60E2615-6D31-4e8f-AF20-74D562BF4897}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='String representation of date and time according with SMIv2.', htmlDescription='

String representation of date and time according with SMIv2.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=OCTET STRING (SIZE(8..11)), _eaTypeId=0, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:34,170 [main] TRACE ClassBuilder - read from EA: BaseTypes::DateAndTime +2024-09-07 16:19:34,176 [main] TRACE ClassBuilder - Class DisplayString (4 in package BaseTypes) +2024-09-07 16:19:34,212 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::DisplayString, _objData=UmlObjectData [id=2683, uuid={5A7A658D-D236-49b6-BA65-B91C55B54DE8}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='The range of allowed values must be specified.', htmlDescription='

The range of allowed values must be specified.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=DisplayString, _eaTypeId=662, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:34,216 [main] TRACE ClassBuilder - read from EA: BaseTypes::DisplayString +2024-09-07 16:19:34,222 [main] TRACE ClassBuilder - Class Float32TC (6 in package BaseTypes) +2024-09-07 16:19:34,243 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::Float32TC, _objData=UmlObjectData [id=2682, uuid={82BCCE12-A0B4-4061-803E-FD3AE22BF6DC}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='This type represents a 32-bit (4-octet) IEEE floating-point number in binary interchange format', htmlDescription='

This type represents a 32-bit (4-octet) IEEE floating-point number in binary interchange format

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=OCTET STRING (SIZE(4)), _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:34,248 [main] TRACE ClassBuilder - read from EA: BaseTypes::Float32TC +2024-09-07 16:19:34,253 [main] TRACE ClassBuilder - Class Gauge32 (7 in package BaseTypes) +2024-09-07 16:19:34,273 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::Gauge32, _objData=UmlObjectData [id=2678, uuid={FFFF9E05-F8E0-4bc6-B3AB-1A2B5D086BB8}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='The range of allowed values must be specified.', htmlDescription='

The range of allowed values must be specified.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=Gauge32, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:34,278 [main] TRACE ClassBuilder - read from EA: BaseTypes::Gauge32 +2024-09-07 16:19:34,283 [main] TRACE ClassBuilder - Class InetAddress (9 in package BaseTypes) +2024-09-07 16:19:34,302 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::InetAddress, _objData=UmlObjectData [id=3682, uuid={B67A78A1-439B-400a-A30B-D4240DC32266}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='The range of allowed values must be specified.', htmlDescription='

The range of allowed values must be specified.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=DisplayString (SIZE(0..255)), _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:34,307 [main] TRACE ClassBuilder - read from EA: BaseTypes::InetAddress +2024-09-07 16:19:34,312 [main] TRACE ClassBuilder - Class MacAddress (9 in package BaseTypes) +2024-09-07 16:19:34,331 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::MacAddress, _objData=UmlObjectData [id=3719, uuid={96C8CC34-E7C1-46d8-B06F-8DF3BCF5E1C8}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='The range of allowed values must be specified.', htmlDescription='

The range of allowed values must be specified.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=DisplayString (SIZE(0..255)), _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:34,336 [main] TRACE ClassBuilder - read from EA: BaseTypes::MacAddress +2024-09-07 16:19:34,341 [main] TRACE ClassBuilder - Class InetAddressType (10 in package BaseTypes) +2024-09-07 16:19:34,368 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::InetAddressType, _objData=UmlObjectData [id=3685, uuid={7907F04A-B00E-486d-A58A-BB3F1695DE2B}, since=null, name=unknown, alias=, stereotype=enum, visibility=public, txtDescription='Indicates unknown type', htmlDescription='

Indicates unknown type

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:34,377 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::InetAddressType, _objData=UmlObjectData [id=3686, uuid={1E6CB781-CF7B-41f1-A0A8-9724E82FF6E9}, since=null, name=ipv4, alias=, stereotype=enum, visibility=public, txtDescription='An IPv4 address as defined by the InetAddressIPv4 textual convention.', htmlDescription='

An IPv4 address as defined by the InetAddressIPv4 textual convention.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:34,386 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::InetAddressType, _objData=UmlObjectData [id=3687, uuid={A7C3B60B-E33D-4d5c-8338-53FABA39CA4F}, since=null, name=ipv6, alias=, stereotype=enum, visibility=public, txtDescription='An IPv6 address as defined by the InetAddressIPv6 textual convention.', htmlDescription='

An IPv6 address as defined by the InetAddressIPv6 textual convention.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:34,395 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::InetAddressType, _objData=UmlObjectData [id=3688, uuid={F3691BC4-D8C1-4abc-B19E-53E33A9BF458}, since=null, name=ipv4z, alias=, stereotype=enum, visibility=public, txtDescription='A non-global IPv4 address including a zone index as defined by the InetAddressIPv4z textual convention.', htmlDescription='

A non-global IPv4 address including a zone index as defined by the InetAddressIPv4z textual convention.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:34,404 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::InetAddressType, _objData=UmlObjectData [id=3689, uuid={1E81FD33-C128-45bc-920A-8C4BD7E2DEBD}, since=null, name=ipv6z, alias=, stereotype=enum, visibility=public, txtDescription='A non-global IPv6 address including a zone index as defined by the InetAddressIPv6z textual convention.', htmlDescription='

A non-global IPv6 address including a zone index as defined by the InetAddressIPv6z textual convention.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:34,413 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::InetAddressType, _objData=UmlObjectData [id=3683, uuid={CA22E66E-263F-4cc6-A4E8-C19D9E3C14C2}, since=null, name=dns, alias=, stereotype=enum, visibility=public, txtDescription='A non-global IPv6 address including a zone index as defined by the InetAddressIPv6z textual convention.', htmlDescription='

A non-global IPv6 address including a zone index as defined by the InetAddressIPv6z textual convention.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=16, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:34,417 [main] TRACE ClassBuilder - read from EA: BaseTypes::InetAddressType +2024-09-07 16:19:34,423 [main] TRACE ClassBuilder - Class EntityIndex (11 in package BaseTypes) +2024-09-07 16:19:34,443 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::EntityIndex, _objData=UmlObjectData [id=3723, uuid={79B557BD-8843-4e68-94FA-BA4CD410B0E4}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='Integer value 1..2147483647', htmlDescription='

Integer value 1..2147483647

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=Integer32, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:34,448 [main] TRACE ClassBuilder - read from EA: BaseTypes::EntityIndex +2024-09-07 16:19:34,453 [main] TRACE ClassBuilder - Class Integer32 (11 in package BaseTypes) +2024-09-07 16:19:34,473 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::Integer32, _objData=UmlObjectData [id=1397, uuid={16A49FC2-9DFE-4d0a-AF1A-139BBD3A6396}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='Integer value -2147483648..2147483647 (inclusive) according to SMI v2', htmlDescription='

Integer value -2147483648..2147483647 (inclusive) according to SMI v2

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=Integer32, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:34,477 [main] TRACE ClassBuilder - read from EA: BaseTypes::Integer32 +2024-09-07 16:19:34,483 [main] TRACE ClassBuilder - Class Unsigned32 (11 in package BaseTypes) +2024-09-07 16:19:34,504 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::Unsigned32, _objData=UmlObjectData [id=3721, uuid={0EB7C369-E8EA-4733-8E05-C3D43A4FC483}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='The range of allowed values must be specified.', htmlDescription='

The range of allowed values must be specified.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=Integer32, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:34,508 [main] TRACE ClassBuilder - read from EA: BaseTypes::Unsigned32 +2024-09-07 16:19:34,514 [main] TRACE ClassBuilder - Class TimeTicks (15 in package BaseTypes) +2024-09-07 16:19:34,535 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::TimeTicks, _objData=UmlObjectData [id=2680, uuid={6097D103-479F-41f4-9A97-1F94284761AB}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='The range of allowed values must be specified.', htmlDescription='

The range of allowed values must be specified.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=TimeTicks, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:34,540 [main] TRACE ClassBuilder - read from EA: BaseTypes::TimeTicks +2024-09-07 16:19:34,546 [main] TRACE ClassBuilder - Class TruthValue (16 in package BaseTypes) +2024-09-07 16:19:34,566 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::TruthValue, _objData=UmlObjectData [id=2685, uuid={8672694D-2B24-4f77-957A-398B85E13893}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='Represents a boolean value. INTEGER { true(1), false(2) } according with RFC 2579', htmlDescription='

Represents a boolean value. INTEGER { true(1), false(2) } according with RFC 2579

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=TruthValue, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:34,571 [main] TRACE ClassBuilder - read from EA: BaseTypes::TruthValue +2024-09-07 16:19:34,573 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=163, _objData=UmlObjectData [id=45, uuid={66B1AE60-7FA0-4e1d-80D0-B1602C003F67}, since=null, name=BaseTypes, alias=, stereotype=, visibility=public, txtDescription='This package include the base data type. The type is inherited from the SNMP naming convention and is needed for the mapping from the a abstract types.', htmlDescription='

This package include the base data type. The type is inherited from the SNMP naming convention and is needed for the mapping from the a abstract types.

'], _modelId=362, _selfDependent=false, _classes=14 +2024-09-07 16:19:34,577 [main] INFO PackageBuilder - processing package Abstract Types (4) ... +2024-09-07 16:19:34,869 [main] TRACE ClassBuilder - Class BooleanValue (1 in package Abstract Types) +2024-09-07 16:19:34,905 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::BooleanValue, _objData=UmlObjectData [id=2987, uuid={AD4E7F12-52BE-4498-9D56-489F0D36E706}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Represents a boolean value.', htmlDescription='

Represents a boolean value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=636, _eaTypeName=TruthValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:34,922 [main] TRACE ClassBuilder - read from EA: Abstract Types::BooleanValue +2024-09-07 16:19:34,927 [main] TRACE ClassBuilder - Class BooleanValueTs (2 in package Abstract Types) +2024-09-07 16:19:34,979 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::BooleanValueTs, _objData=UmlObjectData [id=2915, uuid={3DFAA603-DD4F-4fb0-B38D-E41B9F5976AD}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:34,988 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::BooleanValueTs, _objData=UmlObjectData [id=2916, uuid={3EDE9EA6-FA52-457e-9F52-95B08337CC6C}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Represents a boolean value.', htmlDescription='

Represents a boolean value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=636, _eaTypeName=TruthValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:35,003 [main] TRACE ClassBuilder - read from EA: Abstract Types::BooleanValueTs +2024-09-07 16:19:35,009 [main] TRACE ClassBuilder - Class CounterTs (5 in package Abstract Types) +2024-09-07 16:19:35,061 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::CounterTs, _objData=UmlObjectData [id=2921, uuid={41F902F6-723F-4b04-A87D-8CFABFCB21DE}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:35,071 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::CounterTs, _objData=UmlObjectData [id=2922, uuid={CD1BCCAD-7FF8-4fd1-A24D-07EEC8C393A6}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='According to SMI v2, used to specify a value which represents a count. The range is 0 to 4294967295.', htmlDescription='

According to SMI v2, used to specify a value which represents a count. The range is 0 to 4294967295.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=624, _eaTypeName=Counter32 , _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:35,086 [main] TRACE ClassBuilder - read from EA: Abstract Types::CounterTs +2024-09-07 16:19:35,092 [main] TRACE ClassBuilder - Class CntRs (7 in package Abstract Types) +2024-09-07 16:19:35,142 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::CntRs, _objData=UmlObjectData [id=3004, uuid={CBFD6F89-8B72-4d52-BB3D-1F897706A12D}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:35,152 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::CntRs, _objData=UmlObjectData [id=3003, uuid={8CAFD2C5-0DE7-4308-93B7-D49D6E8065AD}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Boolean', htmlDescription='

Boolean

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=636, _eaTypeName=TruthValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:35,166 [main] TRACE ClassBuilder - read from EA: Abstract Types::CntRs +2024-09-07 16:19:35,176 [main] TRACE ClassBuilder - Class Floating (8 in package Abstract Types) +2024-09-07 16:19:35,216 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::Floating, _objData=UmlObjectData [id=2937, uuid={C1ACEE33-E3BF-408c-AA52-21345E91BD5B}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='IEEE Standard for Floating-Point Arithmetic, Standard 754-2008', htmlDescription='

IEEE Standard for Floating-Point Arithmetic, Standard 754-2008

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=630, _eaTypeName=Float32TC, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:35,231 [main] TRACE ClassBuilder - read from EA: Abstract Types::Floating +2024-09-07 16:19:35,237 [main] TRACE ClassBuilder - Class FloatingTs (9 in package Abstract Types) +2024-09-07 16:19:35,289 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::FloatingTs, _objData=UmlObjectData [id=2939, uuid={DFBCD799-E7D8-4865-988A-FB02011B6B88}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:35,299 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::FloatingTs, _objData=UmlObjectData [id=2940, uuid={111399D4-DEC9-4f43-A8B9-0E3848228A09}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='IEEE Standard for Floating-Point Arithmetic, Standard 754-2008', htmlDescription='

IEEE Standard for Floating-Point Arithmetic, Standard 754-2008

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=630, _eaTypeName=Float32TC, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:35,314 [main] TRACE ClassBuilder - read from EA: Abstract Types::FloatingTs +2024-09-07 16:19:35,320 [main] TRACE ClassBuilder - Class EntityIndex (11 in package Abstract Types) +2024-09-07 16:19:35,358 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::EntityIndex, _objData=UmlObjectData [id=3724, uuid={5A44C892-8691-42d1-B0D8-D8DE77225CA8}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Integer value 1..2147483647 index', htmlDescription='

Integer value 1..2147483647 index

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=968, _eaTypeName=Unsigned32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:35,373 [main] TRACE ClassBuilder - read from EA: Abstract Types::EntityIndex +2024-09-07 16:19:35,378 [main] TRACE ClassBuilder - Class Integer (11 in package Abstract Types) +2024-09-07 16:19:35,416 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::Integer, _objData=UmlObjectData [id=2928, uuid={A4296952-0928-44e2-8560-C6B0DC4466A7}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Integer value -2147483648..2147483647 (inclusive) according to SMI v2', htmlDescription='

Integer value -2147483648..2147483647 (inclusive) according to SMI v2

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=173, _eaTypeName=Integer32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:35,432 [main] TRACE ClassBuilder - read from EA: Abstract Types::Integer +2024-09-07 16:19:35,438 [main] TRACE ClassBuilder - Class IntegerTs (12 in package Abstract Types) +2024-09-07 16:19:35,491 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::IntegerTs, _objData=UmlObjectData [id=2930, uuid={B1DF3BAC-B146-48d1-B242-E0EE779A9B56}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:35,500 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::IntegerTs, _objData=UmlObjectData [id=2931, uuid={D8B8C3AD-4B33-445e-9393-31D5B1982D4A}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Integer value -2147483648..2147483647 (inclusive) according to SMI v2', htmlDescription='

Integer value -2147483648..2147483647 (inclusive) according to SMI v2

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=173, _eaTypeName=Integer32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:35,515 [main] TRACE ClassBuilder - read from EA: Abstract Types::IntegerTs +2024-09-07 16:19:35,521 [main] TRACE ClassBuilder - Class InetAddress (14 in package Abstract Types) +2024-09-07 16:19:35,559 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::InetAddress, _objData=UmlObjectData [id=3017, uuid={8A787CF9-BA07-4486-A4DF-1CF9BA7A3A41}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='A value that represents an Internet address according to IETF RFC 4001.', htmlDescription='

A value that represents an Internet address according to IETF RFC 4001.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=952, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:35,574 [main] TRACE ClassBuilder - read from EA: Abstract Types::InetAddress +2024-09-07 16:19:35,581 [main] TRACE ClassBuilder - Class InetAddressType (15 in package Abstract Types) +2024-09-07 16:19:35,618 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::InetAddressType, _objData=UmlObjectData [id=3690, uuid={117C0501-377C-4bf4-90D9-77F084F0628D}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Address Type', htmlDescription='

Address Type

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=954, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:35,633 [main] TRACE ClassBuilder - read from EA: Abstract Types::InetAddressType +2024-09-07 16:19:35,639 [main] TRACE ClassBuilder - Class MacAddress (16 in package Abstract Types) +2024-09-07 16:19:35,677 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::MacAddress, _objData=UmlObjectData [id=3019, uuid={212F7F94-30C7-4296-9560-DDE128B43ABE}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='OCTET STRING (SIZE (6)), DISPLAY-HINT "1x:"', htmlDescription='

OCTET STRING (SIZE (6)), DISPLAY-HINT "1x:"

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=966, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:35,692 [main] TRACE ClassBuilder - read from EA: Abstract Types::MacAddress +2024-09-07 16:19:35,698 [main] TRACE ClassBuilder - Class Selector (17 in package Abstract Types) +2024-09-07 16:19:35,737 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::Selector, _objData=UmlObjectData [id=3015, uuid={2B45785E-70C4-45d5-B68C-37E64794195C}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='For Transport Selector, max length is 8. For Session and Presentation Selector max length is 16.', htmlDescription='

For Transport Selector, max length is 8. For Session and Presentation Selector max length is 16.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=632, _eaTypeName=DisplayString, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:35,751 [main] TRACE ClassBuilder - read from EA: Abstract Types::Selector +2024-09-07 16:19:35,758 [main] TRACE ClassBuilder - Class Timestamp (18 in package Abstract Types) +2024-09-07 16:19:35,795 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::Timestamp, _objData=UmlObjectData [id=3083, uuid={1090CB92-2A2F-4fef-8659-3BD00578C467}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='The value of year is in network-byte order, fractions of second is as defined in RFC 5905, epoch is defined as Midnight January 1, 1970.', htmlDescription='

The value of year is in network-byte order, fractions of second is as defined in RFC 5905, epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:35,810 [main] TRACE ClassBuilder - read from EA: Abstract Types::Timestamp +2024-09-07 16:19:35,816 [main] TRACE ClassBuilder - Class CharString (19 in package Abstract Types) +2024-09-07 16:19:35,854 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::CharString, _objData=UmlObjectData [id=2989, uuid={E34DC27C-7282-4663-B1EF-D2B160F31A39}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Represents a String.', htmlDescription='

Represents a String.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=632, _eaTypeName=DisplayString, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:35,869 [main] TRACE ClassBuilder - read from EA: Abstract Types::CharString +2024-09-07 16:19:35,875 [main] TRACE ClassBuilder - Class CharStringTs (20 in package Abstract Types) +2024-09-07 16:19:35,931 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::CharStringTs, _objData=UmlObjectData [id=3380, uuid={AF16BFAF-FF80-4499-9DAD-A58391568338}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:35,943 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::CharStringTs, _objData=UmlObjectData [id=3379, uuid={2E8EFCAA-307D-4001-97ED-98DC7A6FCC62}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Represents a String.', htmlDescription='

Represents a String.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=632, _eaTypeName=DisplayString, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:35,958 [main] TRACE ClassBuilder - read from EA: Abstract Types::CharStringTs +2024-09-07 16:19:35,963 [main] TRACE ClassBuilder - Class AbstractBaseType (21 in package Abstract Types) +2024-09-07 16:19:36,215 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of BooleanValue +2024-09-07 16:19:36,217 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of Integer +2024-09-07 16:19:36,218 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of BooleanValueTs +2024-09-07 16:19:36,220 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of CounterTs +2024-09-07 16:19:36,222 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of Floating +2024-09-07 16:19:36,223 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of FloatingTs +2024-09-07 16:19:36,225 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of IntegerTs +2024-09-07 16:19:36,226 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of CharString +2024-09-07 16:19:36,228 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of CharStringTs +2024-09-07 16:19:36,229 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of Timestamp +2024-09-07 16:19:36,230 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of Selector +2024-09-07 16:19:36,232 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of MacAddress +2024-09-07 16:19:36,233 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of InetAddressType +2024-09-07 16:19:36,234 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of InetAddress +2024-09-07 16:19:36,236 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of EntityIndex +2024-09-07 16:19:36,238 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of CntRs +2024-09-07 16:19:36,252 [main] TRACE ClassBuilder - read from EA: Abstract Types::AbstractBaseType +2024-09-07 16:19:36,257 [main] TRACE ClassBuilder - Class AbstractAgent (22 in package Abstract Types) +2024-09-07 16:19:36,610 [main] TRACE ClassBuilder - read from EA: Abstract Types::AbstractAgent +2024-09-07 16:19:36,612 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=710, _objData=UmlObjectData [id=259, uuid={5004F08F-A898-4404-9AC0-FF579C27E37E}, since=null, name=Abstract Types, alias=, stereotype=, visibility=public, txtDescription='The abstract objects used within each agent are mapped to the following object types, except for the objects that refer to special enumerated data types which are defined by their own dedicated types. +Abstract objects are classified by the following attributes: +- Type of data (Boolean, Counter, Integer, Float) +- Timestamp required for each status value change +The type object naming actually reflects this classification, as provided in the description of each abstract type.', htmlDescription='

The abstract objects used within each agent are mapped to the following object types, except for the objects that refer to special enumerated data types which are defined by their own dedicated types.

Abstract objects are classified by the following attributes:

  • Type of data (Boolean, Counter, Integer, Float)
  • Timestamp required for each status value change

The type object naming actually reflects this classification, as provided in the description of each abstract type.

'], _modelId=362, _selfDependent=false, _classes=18 +2024-09-07 16:19:36,616 [main] INFO PackageBuilder - processing package EnumeratedTypes (5) ... +2024-09-07 16:19:36,986 [main] TRACE ClassBuilder - Class AppDatStKind (1 in package EnumeratedTypes) +2024-09-07 16:19:37,012 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::AppDatStKind, _objData=UmlObjectData [id=1780, uuid={088C6AC2-2351-44bf-92A5-C8E7C03B4C15}, since=null, name=unknown, alias=, stereotype=enum, visibility=public, txtDescription='No information available about the environment.', htmlDescription='

No information available about the environment.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=true, _isTypeSuperfluous=true, _type=null] +2024-09-07 16:19:37,022 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::AppDatStKind, _objData=UmlObjectData [id=1781, uuid={4624AC11-61D2-4ce9-99AF-1512A03A0802}, since=null, name=good, alias=, stereotype=enum, visibility=public, txtDescription='Good environment status.', htmlDescription='

Good environment status.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=int, _isLiteral=true, _isTypeSuperfluous=true, _type=null] +2024-09-07 16:19:37,031 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::AppDatStKind, _objData=UmlObjectData [id=1782, uuid={8143CB0E-A1A4-4abf-820C-2678E62A29E1}, since=null, name=bad, alias=, stereotype=enum, visibility=public, txtDescription='Environmental problems detected.', htmlDescription='

Environmental problems detected.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=2, _eaTypeId=0, _eaTypeName=int, _isLiteral=true, _isTypeSuperfluous=true, _type=null] +2024-09-07 16:19:37,035 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::AppDatStKind +2024-09-07 16:19:37,041 [main] TRACE ClassBuilder - Class PhyHealthKind (1 in package EnumeratedTypes) +2024-09-07 16:19:37,064 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::PhyHealthKind, _objData=UmlObjectData [id=4113, uuid={37ACCA99-1DF6-4847-8122-3BCE07D878BA}, since=null, name=ok, alias=, stereotype=enum, visibility=public, txtDescription='No problems, normal operation.', htmlDescription='

No problems, normal operation.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=true, _isTypeSuperfluous=true, _type=null] +2024-09-07 16:19:37,074 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::PhyHealthKind, _objData=UmlObjectData [id=4114, uuid={5D46B37F-ECC9-4e40-8A90-5061744F8173}, since=null, name=warning, alias=, stereotype=enum, visibility=public, txtDescription='Minor problems, but in safe operation mode.', htmlDescription='

Minor problems, but in safe operation mode.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=int, _isLiteral=true, _isTypeSuperfluous=true, _type=null] +2024-09-07 16:19:37,083 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::PhyHealthKind, _objData=UmlObjectData [id=4115, uuid={D7AB716A-CA99-403b-9D93-D795563A98BC}, since=null, name=alarm, alias=, stereotype=enum, visibility=public, txtDescription='Severe problem, no operation possible.', htmlDescription='

Severe problem, no operation possible.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=2, _eaTypeId=0, _eaTypeName=int, _isLiteral=true, _isTypeSuperfluous=true, _type=null] +2024-09-07 16:19:37,087 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::PhyHealthKind +2024-09-07 16:19:37,092 [main] TRACE ClassBuilder - Class ExtKind (2 in package EnumeratedTypes) +2024-09-07 16:19:37,115 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ExtKind, _objData=UmlObjectData [id=3369, uuid={27CBBAC5-2512-4f4b-A0B1-935AC701B409}, since=null, name=unknown, alias=, stereotype=enum, visibility=public, txtDescription='unknown module', htmlDescription='

unknown module

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,125 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ExtKind, _objData=UmlObjectData [id=3370, uuid={34D83563-3678-4f50-8C33-ACE3F6629F9D}, since=null, name=ioModule, alias=, stereotype=enum, visibility=public, txtDescription='I/O module', htmlDescription='

I/O module

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,135 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ExtKind, _objData=UmlObjectData [id=3371, uuid={C5B47DA7-C6A6-457c-87C7-E616CA496356}, since=null, name=softwarePLC, alias=, stereotype=enum, visibility=public, txtDescription='Software PLC module', htmlDescription='

Software PLC module

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,139 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::ExtKind +2024-09-07 16:19:37,145 [main] TRACE ClassBuilder - Class IntKind (4 in package EnumeratedTypes) +2024-09-07 16:19:37,167 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::IntKind, _objData=UmlObjectData [id=3392, uuid={0CCB0825-478A-4793-9BED-DCE9190E1B71}, since=null, name=wired, alias=, stereotype=enum, visibility=public, txtDescription='Wired interface', htmlDescription='

Wired interface

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,177 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::IntKind, _objData=UmlObjectData [id=3393, uuid={9E23B223-6923-4872-B4B4-86CB85C60579}, since=null, name=wireless, alias=, stereotype=enum, visibility=public, txtDescription='Wireless interface', htmlDescription='

Wireless interface

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,181 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::IntKind +2024-09-07 16:19:37,187 [main] TRACE ClassBuilder - Class LnkKind (5 in package EnumeratedTypes) +2024-09-07 16:19:37,212 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::LnkKind, _objData=UmlObjectData [id=2720, uuid={04896740-8BD1-4a07-987A-351CE576D6E0}, since=null, name=unknown, alias=, stereotype=enum, visibility=public, txtDescription='unknown', htmlDescription='

unknown

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,222 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::LnkKind, _objData=UmlObjectData [id=2721, uuid={61312937-D7B2-4aff-BF7B-CC599BE0AF64}, since=null, name=serial, alias=, stereotype=enum, visibility=public, txtDescription='serial', htmlDescription='

serial

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,233 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::LnkKind, _objData=UmlObjectData [id=2722, uuid={C0A08551-30DD-4843-9619-727AC796310A}, since=null, name=tcp, alias=, stereotype=enum, visibility=public, txtDescription='tcp', htmlDescription='

tcp

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,242 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::LnkKind, _objData=UmlObjectData [id=2723, uuid={93B64A96-33DB-4cfd-9500-8EC833B7FE0C}, since=null, name=udp, alias=, stereotype=enum, visibility=public, txtDescription='udp', htmlDescription='

udp

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,253 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::LnkKind, _objData=UmlObjectData [id=3391, uuid={72A18E68-801C-4831-8D81-BD42E2AC29B7}, since=null, name=eth, alias=, stereotype=enum, visibility=public, txtDescription='Ethernet interface ISO/OSI level 2 protocol, not using UDP and TCP.', htmlDescription='

Ethernet interface ISO/OSI level 2 protocol, not using UDP and TCP.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,257 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::LnkKind +2024-09-07 16:19:37,263 [main] TRACE ClassBuilder - Class PSPAccKind (6 in package EnumeratedTypes) +2024-09-07 16:19:37,285 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::PSPAccKind, _objData=UmlObjectData [id=1784, uuid={D408D95C-FFE4-4655-A529-710E301D9B38}, since=null, name=notBeingAccessed, alias=, stereotype=, visibility=public, txtDescription='No access to IED control panel is taking place.', htmlDescription='

No access to IED control panel is taking place.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=true, _isTypeSuperfluous=true, _type=null] +2024-09-07 16:19:37,295 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::PSPAccKind, _objData=UmlObjectData [id=1785, uuid={4FE96E50-3BB9-4a27-9440-1187A89DB87F}, since=null, name=accessOccurring, alias=, stereotype=, visibility=public, txtDescription='An access to IED control panel is taking place.', htmlDescription='

An access to IED control panel is taking place.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=int, _isLiteral=true, _isTypeSuperfluous=true, _type=null] +2024-09-07 16:19:37,299 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::PSPAccKind +2024-09-07 16:19:37,304 [main] TRACE ClassBuilder - Class ProtIdKind (7 in package EnumeratedTypes) +2024-09-07 16:19:37,332 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ProtIdKind, _objData=UmlObjectData [id=3250, uuid={07B1D7D8-39BB-4858-8EA3-BF4F5EC59D4E}, since=null, name=unknown, alias=, stereotype=enum, visibility=public, txtDescription='Unknown protocol', htmlDescription='

Unknown protocol

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,341 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ProtIdKind, _objData=UmlObjectData [id=3249, uuid={946B4BE5-1467-4fb2-99F0-66054A2B505E}, since=null, name=iEC6185081, alias=, stereotype=enum, visibility=public, txtDescription='MMS', htmlDescription='

MMS

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,350 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ProtIdKind, _objData=UmlObjectData [id=3251, uuid={FCC2EF29-9BF3-42ab-B706-EEC24615E648}, since=null, name=iEC6185081GOOSE, alias=, stereotype=enum, visibility=public, txtDescription='GOOSE. This type indicate also routable GOOSE when the LnkType attribute specifies a routable type (e.g. TCP)', htmlDescription='

GOOSE. This type indicate also routable GOOSE when the LnkType attribute specifies a routable type (e.g. TCP)

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,360 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ProtIdKind, _objData=UmlObjectData [id=3252, uuid={53BC9774-9A1A-4ea3-BA2C-3F3E35450676}, since=null, name=iEC6185092SV, alias=, stereotype=enum, visibility=public, txtDescription='SV. This type indicate also routable SV when the LnkType attribute specifies a routable type (e.g. TCP)', htmlDescription='

SV. This type indicate also routable SV when the LnkType attribute specifies a routable type (e.g. TCP)

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,371 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ProtIdKind, _objData=UmlObjectData [id=3253, uuid={2C9A588E-9040-4f72-A62A-0A0C70EB186D}, since=null, name=ieee1815DNP, alias=, stereotype=enum, visibility=public, txtDescription='DNP', htmlDescription='

DNP

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,381 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ProtIdKind, _objData=UmlObjectData [id=3254, uuid={B7D18D05-3E60-4a6e-9210-E719F96EA21F}, since=null, name=iec608705, alias=, stereotype=enum, visibility=public, txtDescription='IEC 60870-5 (Valid for 101 and 104 companion standards)', htmlDescription='

IEC 60870-5 (Valid for 101 and 104 companion standards)

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=5, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,390 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ProtIdKind, _objData=UmlObjectData [id=4503, uuid={BE6DDE6F-88D8-4f32-AB00-B3F5EBFA1B7B}, since=null, name=iEC6185082, alias=, stereotype=enum, visibility=public, txtDescription='MMS over Extensible Messaging Presence Protocol (XMPP)', htmlDescription='

MMS over Extensible Messaging Presence Protocol (XMPP)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=6, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,394 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::ProtIdKind +2024-09-07 16:19:37,399 [main] TRACE ClassBuilder - Class EventKind (8 in package EnumeratedTypes) +2024-09-07 16:19:37,430 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3694, uuid={648B3CAD-2A54-403c-8179-4CCAF44C7DFC}, since=null, name=none, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that the application does not exist.', htmlDescription='

Indicates that the application does not exist.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,441 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3695, uuid={629EF376-0921-44b8-9D1C-CE35E96EA70C}, since=null, name=unKnown, alias=, stereotype=enum, visibility=public, txtDescription='unclassified type', htmlDescription='

unclassified type

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,450 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3696, uuid={EAF67857-3BB4-401b-866C-95586A723502}, since=null, name=denialOfService, alias=, stereotype=enum, visibility=public, txtDescription='Denial of Service attack', htmlDescription='

Denial of Service attack

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,458 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3697, uuid={6A482C90-ACB9-4b3c-A3B6-614C2A1FF15D}, since=null, name=malware, alias=, stereotype=enum, visibility=public, txtDescription='Malware detected', htmlDescription='

Malware detected

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,469 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3698, uuid={B9FF19E5-679A-4370-AA7F-C8FBBFC5762D}, since=null, name=bufferOverRun, alias=, stereotype=enum, visibility=public, txtDescription='Buffer Over Run', htmlDescription='

Buffer Over Run

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,479 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3701, uuid={0B2BD779-5C64-4a16-B567-5B15C981A38D}, since=null, name=bufferUnderRun, alias=, stereotype=enum, visibility=public, txtDescription='Buffer Under Run', htmlDescription='

Buffer Under Run

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=5, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,488 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3702, uuid={62A177D9-B72C-456c-9901-7E28473C34BF}, since=null, name=badCredential, alias=, stereotype=enum, visibility=public, txtDescription='Bad Credential', htmlDescription='

Bad Credential

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=6, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,497 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3703, uuid={FF33276B-A640-4bff-B1CD-9BF645FB9A0F}, since=null, name=badKey, alias=, stereotype=enum, visibility=public, txtDescription='Bad Key', htmlDescription='

Bad Key

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=7, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,506 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3699, uuid={10F046F2-3549-4712-83DC-080961F7A2FF}, since=null, name=malformedPDU, alias=, stereotype=enum, visibility=public, txtDescription='Detected some tampered/malformed packets.', htmlDescription='

Detected some tampered/malformed packets.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=8, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,515 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3693, uuid={408A86F3-7E67-4037-98BE-835B3D745F6F}, since=null, name=physicalDisruption, alias=, stereotype=enum, visibility=public, txtDescription='Power failure detection or media disconnection.', htmlDescription='

Power failure detection or media disconnection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=9, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,523 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3700, uuid={2F6F7E56-04CE-45eb-A2EA-2240EA8F3214}, since=null, name=invalidNetworkAccess, alias=, stereotype=enum, visibility=public, txtDescription='Access to the device form unexpected/banned networks.', htmlDescription='

Access to the device form unexpected/banned networks.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=10, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,528 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::EventKind +2024-09-07 16:19:37,533 [main] TRACE ClassBuilder - Class TimSyncIssueKind (10 in package EnumeratedTypes) +2024-09-07 16:19:37,557 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncIssueKind, _objData=UmlObjectData [id=644, uuid={5F833F2F-8710-4c68-9FD5-2901D4F9FBAA}, since=null, name=synced, alias=, stereotype=enum, visibility=public, txtDescription='Indicates time sync is active and correctly operating with local time sync.', htmlDescription='

Indicates time sync is active and correctly operating with local time sync.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,566 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncIssueKind, _objData=UmlObjectData [id=645, uuid={88454DC2-BBEA-4021-BAD5-FE61CA4E4F49}, since=null, name=degradated, alias=, stereotype=enum, visibility=public, txtDescription='Indicates time sync is active but not operating correctly (for example because time source is not correctly operating or because of network degradation).', htmlDescription='

Indicates time sync is active but not operating correctly (for example because time source is not correctly operating or because of network degradation).

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,577 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncIssueKind, _objData=UmlObjectData [id=646, uuid={869DAB25-EE51-4fb5-9626-BD3FAFC7A6B3}, since=null, name=failed, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that sync has failed.', htmlDescription='

Indicates that sync has failed.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,627 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncIssueKind, _objData=UmlObjectData [id=4499, uuid={64AE1060-E782-4cb0-9E8C-F0A50D2EF305}, since=null, name=syncedGlobal, alias=, stereotype=enum, visibility=public, txtDescription='Indicates time sync is active and correctly operating with global time sync.', htmlDescription='

Indicates time sync is active and correctly operating with global time sync.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,633 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::TimSyncIssueKind +2024-09-07 16:19:37,639 [main] TRACE ClassBuilder - Class SecurityProfileKind (11 in package EnumeratedTypes) +2024-09-07 16:19:37,664 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::SecurityProfileKind, _objData=UmlObjectData [id=3924, uuid={F71BC91A-79AE-45ca-8AB9-6204E87EEBD0}, since=null, name=noSecurity, alias=, stereotype=enum, visibility=public, txtDescription='Indicate that no security profile is in use', htmlDescription='

Indicate that no security profile is in use

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,673 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::SecurityProfileKind, _objData=UmlObjectData [id=3926, uuid={6A444C1A-57C0-4e5d-8703-6142480FF36E}, since=null, name=aProfile, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that authentication A Profile is in use.', htmlDescription='

Indicates that authentication A Profile is in use.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,683 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::SecurityProfileKind, _objData=UmlObjectData [id=3927, uuid={89E81915-E439-46f6-B4B0-93DD1656B0A6}, since=null, name=e2eProfile, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that End-to-end application security profile is in use', htmlDescription='

Indicates that End-to-end application security profile is in use

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,692 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::SecurityProfileKind, _objData=UmlObjectData [id=3922, uuid={CF278B1A-3FC4-4998-B195-7ED80C0F5913}, since=null, name=ae2eProfile, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that encrypted End-to-end application security profile is in use', htmlDescription='

Indicates that encrypted End-to-end application security profile is in use

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,696 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::SecurityProfileKind +2024-09-07 16:19:37,700 [main] TRACE ClassBuilder - Class TimSyncSrcKind (11 in package EnumeratedTypes) +2024-09-07 16:19:37,728 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=665, uuid={952CFE67-4E7C-422f-BD48-A384F2B03616}, since=null, name=unknown, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that the type of the current time sync source is unknown.', htmlDescription='

Indicates that the type of the current time sync source is unknown.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,737 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=666, uuid={EA2E4808-5FE5-4d01-AD36-77DC2F564964}, since=null, name=ntp, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via NTP protocol.', htmlDescription='

Indicates that time sync is being performed via NTP protocol.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,746 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=667, uuid={7001BEF2-2BA7-473c-BE53-48B29DE68D38}, since=null, name=sntp, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via SNTP protocol.', htmlDescription='

Indicates that time sync is being performed via SNTP protocol.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,755 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=668, uuid={473F67F7-75B0-4ec8-AC6D-2C02DCB3D4F9}, since=null, name=irig, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via IRIG input.', htmlDescription='

Indicates that time sync is being performed via IRIG input.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,763 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=669, uuid={DFB8EAFA-7990-4ac3-AD4B-6FD2B4387C90}, since=null, name=gps, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed using GNSS input. In the previous edition GPS enumeration was in use and it is kept in this edition for backward compatibility reasons. It is equivalent to GNSS.', htmlDescription='

Indicates that time sync is being performed using GNSS input. In the previous edition GPS enumeration was in use and it is kept in this edition for backward compatibility reasons. It is equivalent to GNSS.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,772 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=670, uuid={F059225D-17FE-4d2e-8C53-948236E8E978}, since=null, name=ieee1588PTP, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via PTP protocol.', htmlDescription='

Indicates that time sync is being performed via PTP protocol.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=5, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,781 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=671, uuid={9DD2DD32-D0B5-4e2d-9449-188E91493134}, since=null, name=ieee1588PTPC37238Profile2011, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via PTP protocol using C37.238-2011 power profile.', htmlDescription='

Indicates that time sync is being performed via PTP protocol using C37.238-2011 power profile.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=6, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,790 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=4110, uuid={6D78019A-469B-4a3b-966F-A3C9D73B86EF}, since=null, name=ieee1588PTPIEC6185093, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via PTP protocol using IEC61850-9-3 profile.', htmlDescription='

Indicates that time sync is being performed via PTP protocol using IEC61850-9-3 profile.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=7, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,799 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=4495, uuid={99E0863C-202C-4217-9613-152A89692C12}, since=null, name=ieee1588PTPC37238Profile2017, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via PTP protocol using C37.238-2017 power profile.', htmlDescription='

Indicates that time sync is being performed via PTP protocol using C37.238-2017 power profile.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=8, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,807 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=4496, uuid={220F6156-D807-40ac-8E76-FC831FA1D73A}, since=null, name=ieee1588PTPIEC6185093Ed20, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via PTP protocol using IEC61850-9-3 Ed. 2.0 profile.', htmlDescription='

Indicates that time sync is being performed via PTP protocol using IEC61850-9-3 Ed. 2.0 profile.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=9, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,816 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=4497, uuid={A37E91A6-003F-4702-931D-6FC0F51BAC0C}, since=null, name=ieee1588PTPIEC6185093Profile2016, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via PTP protocol using IEC61850-9-3 profile.', htmlDescription='

Indicates that time sync is being performed via PTP protocol using IEC61850-9-3 profile.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=7, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,825 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=4498, uuid={08161D84-2F6C-4a93-A4A0-2E54C2EBA124}, since=null, name=gnss, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via GNSS input', htmlDescription='

Indicates that time sync is being performed via GNSS input

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,834 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=4500, uuid={B0AE11B0-563B-4d29-8660-1A415DFD83BC}, since=null, name=applicationProtocol, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via application protocol transport (e.g.DNP time sync)', htmlDescription='

Indicates that time sync is being performed via application protocol transport (e.g.DNP time sync)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=10, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,843 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=4504, uuid={21CB0952-E7FB-4f9d-AA97-59732AD6ADB4}, since=null, name=ntpOnts, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via NTP over NTS (RFC 8915)', htmlDescription='

Indicates that time sync is being performed via NTP over NTS (RFC 8915)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=11, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,846 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::TimSyncSrcKind +2024-09-07 16:19:37,851 [main] TRACE ClassBuilder - Class AppDatStType (12 in package EnumeratedTypes) +2024-09-07 16:19:37,902 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::AppDatStType, _objData=UmlObjectData [id=2991, uuid={20C199C1-6505-4e87-AA5E-7761159CD7E3}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp.', htmlDescription='

Timestamp.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,911 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::AppDatStType, _objData=UmlObjectData [id=2992, uuid={A150447F-47CA-40a3-A3E4-20675ECB8425}, since=null, name=Value, alias=, stereotype=enum, visibility=public, txtDescription='AppDatStKind enumeration.', htmlDescription='

AppDatStKind enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=292, _eaTypeName=AppDatStKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,925 [main] DEBUG ClassBuilder - Adding AppDatStType as subclass of AbstractBaseType +2024-09-07 16:19:37,925 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::AppDatStType +2024-09-07 16:19:37,930 [main] TRACE ClassBuilder - Class PhyHealthType (12 in package EnumeratedTypes) +2024-09-07 16:19:37,983 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::PhyHealthType, _objData=UmlObjectData [id=4116, uuid={BAC3158A-D258-496a-83A5-0E64DFD67679}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp.', htmlDescription='

Timestamp.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:37,993 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::PhyHealthType, _objData=UmlObjectData [id=4117, uuid={D2C2C044-39BB-4b98-BC2D-E3B53A97EDAE}, since=null, name=Value, alias=, stereotype=enum, visibility=public, txtDescription='PhyHealthKind enumeration.', htmlDescription='

PhyHealthKind enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1034, _eaTypeName=PhyHealthKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:38,008 [main] DEBUG ClassBuilder - Adding PhyHealthType as subclass of AbstractBaseType +2024-09-07 16:19:38,008 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::PhyHealthType +2024-09-07 16:19:38,013 [main] TRACE ClassBuilder - Class ExtType (13 in package EnumeratedTypes) +2024-09-07 16:19:38,048 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ExtType, _objData=UmlObjectData [id=3367, uuid={1245D715-EBD7-4730-A6F9-04F33AE0CF28}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='ExtKind enumeration.', htmlDescription='

ExtKind enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=856, _eaTypeName=ExtKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:38,062 [main] DEBUG ClassBuilder - Adding ExtType as subclass of AbstractBaseType +2024-09-07 16:19:38,063 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::ExtType +2024-09-07 16:19:38,068 [main] TRACE ClassBuilder - Class IntType (14 in package EnumeratedTypes) +2024-09-07 16:19:38,104 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::IntType, _objData=UmlObjectData [id=3395, uuid={0A1710BD-B405-499c-8631-29D2BA1F37C0}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='IntKind enumeration', htmlDescription='

IntKind enumeration

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=864, _eaTypeName=IntKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:38,119 [main] DEBUG ClassBuilder - Adding IntType as subclass of AbstractBaseType +2024-09-07 16:19:38,119 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::IntType +2024-09-07 16:19:38,124 [main] TRACE ClassBuilder - Class EventType (15 in package EnumeratedTypes) +2024-09-07 16:19:38,177 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventType, _objData=UmlObjectData [id=3705, uuid={CF22855C-E347-4873-AD54-398449D71764}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp.', htmlDescription='

Timestamp.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:38,187 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventType, _objData=UmlObjectData [id=3704, uuid={B8CA2998-8D74-4277-B68D-01EC12299F89}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='EventKind enumeration.', htmlDescription='

EventKind enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=958, _eaTypeName=EventKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:38,202 [main] DEBUG ClassBuilder - Adding EventType as subclass of AbstractBaseType +2024-09-07 16:19:38,202 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::EventType +2024-09-07 16:19:38,207 [main] TRACE ClassBuilder - Class PSPAccType (16 in package EnumeratedTypes) +2024-09-07 16:19:38,258 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::PSPAccType, _objData=UmlObjectData [id=3378, uuid={2DC1C237-EFE6-4e97-A76B-58AA500A8F7B}, since=null, name=Timestamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp.', htmlDescription='

Timestamp.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:38,268 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::PSPAccType, _objData=UmlObjectData [id=3377, uuid={018C1C51-9C40-4e91-A95B-3878F4DD9BD9}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='PSPAccKind Enumeration.', htmlDescription='

PSPAccKind Enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=293, _eaTypeName=PSPAccKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:38,284 [main] DEBUG ClassBuilder - Adding PSPAccType as subclass of AbstractBaseType +2024-09-07 16:19:38,284 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::PSPAccType +2024-09-07 16:19:38,290 [main] TRACE ClassBuilder - Class ProtIdType (17 in package EnumeratedTypes) +2024-09-07 16:19:38,327 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ProtIdType, _objData=UmlObjectData [id=3011, uuid={7F5D7A4B-5851-45b9-9F48-5C8F08A97218}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='ProtIdKind Enumeration.', htmlDescription='

ProtIdKind Enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=829, _eaTypeName=ProtIdKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:38,342 [main] DEBUG ClassBuilder - Adding ProtIdType as subclass of AbstractBaseType +2024-09-07 16:19:38,342 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::ProtIdType +2024-09-07 16:19:38,348 [main] TRACE ClassBuilder - Class TimSyncIssueType (18 in package EnumeratedTypes) +2024-09-07 16:19:38,385 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncIssueType, _objData=UmlObjectData [id=3006, uuid={A23195C8-D6B6-4033-B7CC-798A866B84FA}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='TimSyncIssueKind Enumeration.', htmlDescription='

TimSyncIssueKind Enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=113, _eaTypeName=TimSyncIssueKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:38,399 [main] DEBUG ClassBuilder - Adding TimSyncIssueType as subclass of AbstractBaseType +2024-09-07 16:19:38,399 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::TimSyncIssueType +2024-09-07 16:19:38,405 [main] TRACE ClassBuilder - Class SecurityProfileType (20 in package EnumeratedTypes) +2024-09-07 16:19:38,441 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::SecurityProfileType, _objData=UmlObjectData [id=3929, uuid={62BF7B27-EFA1-466c-AED9-06307DBA6999}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='SecurityProfile Enumeration', htmlDescription='

SecurityProfile Enumeration

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1011, _eaTypeName=SecurityProfileKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:38,456 [main] DEBUG ClassBuilder - Adding SecurityProfileType as subclass of AbstractBaseType +2024-09-07 16:19:38,456 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::SecurityProfileType +2024-09-07 16:19:38,461 [main] TRACE ClassBuilder - Class TimSyncSrcType (20 in package EnumeratedTypes) +2024-09-07 16:19:38,499 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcType, _objData=UmlObjectData [id=3008, uuid={7D7258A7-E193-49cd-AA63-6F1E9EECA15D}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='TimSyncSrcKind Enumeration', htmlDescription='

TimSyncSrcKind Enumeration

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=117, _eaTypeName=TimSyncSrcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:38,514 [main] DEBUG ClassBuilder - Adding TimSyncSrcType as subclass of AbstractBaseType +2024-09-07 16:19:38,514 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::TimSyncSrcType +2024-09-07 16:19:38,519 [main] TRACE ClassBuilder - Class LnkType (21 in package EnumeratedTypes) +2024-09-07 16:19:38,561 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::LnkType, _objData=UmlObjectData [id=3010, uuid={9322D17D-875C-49ca-B9CF-0F43B6E41A52}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='LnkType Enumeration.', htmlDescription='

LnkType Enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=644, _eaTypeName=LnkKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:38,579 [main] DEBUG ClassBuilder - Adding LnkType as subclass of AbstractBaseType +2024-09-07 16:19:38,579 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::LnkType +2024-09-07 16:19:38,581 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=112, _objData=UmlObjectData [id=33, uuid={EA70BE0D-4F03-49cf-98EB-61A3452B8572}, since=null, name=EnumeratedTypes, alias=, stereotype=, visibility=public, txtDescription='The abstract objects defined as enumerated types refer to special enumerated data types. +The type object naming actually reflects this classification, as explained explicitly within this section in the description of each abstract type. +Please note that the attributes defined in this package classes have 1..1 multiplicity. The multiplicity is handled when these classes are used as attributes within the agents classes definition.', htmlDescription='

The abstract objects defined as enumerated types refer to special enumerated data types.

The type object naming actually reflects this classification, as explained explicitly within this section in the description of each abstract type.

Please note that the attributes defined in this package classes have 1..1 multiplicity. The multiplicity is handled when these classes are used as attributes within the agents classes definition.

'], _modelId=362, _selfDependent=false, 5_taggedValues{isAgent=yes, isEnumeration=yes, mibIdentity=enumeration, mibName=IEC-62351-ENUM-MIB, objectIdentity=enumeration}, _classes=22 +2024-09-07 16:19:38,586 [main] INFO PackageBuilder - processing package Environmental Agent (7) ... +2024-09-07 16:19:38,606 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Environmental Agent, _objData=UmlObjectData [id=8, uuid={DD68DDD1-5EEB-4a23-B16C-1FF759A2EE6A}, since=null, name=Environmental, alias=, stereotype=, visibility=public, txtDescription='The Environmental agent class.', htmlDescription='

The Environmental agent class.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 16:19:38,691 [main] TRACE ClassBuilder - Class Environmental (1 in package Environmental Agent) +2024-09-07 16:19:38,923 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2673, uuid={B7336AC3-3490-4d18-9C0A-633A3375B799}, since=null, name=AppDatSt, alias=, stereotype=health, visibility=public, txtDescription='Status of the environment where the device is operated (e.g. Power Supply, Physical Access)', htmlDescription='

Status of the environment where the device is operated (e.g. Power Supply, Physical Access)

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=766, _eaTypeName=AppDatStType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:38,936 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=596, uuid={F437BD0A-FA9A-4244-BD21-213EDEE71F93}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Attribute that allows a reset of the statistical information.', htmlDescription='

Attribute that allows a reset of the statistical information.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:38,947 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=3707, uuid={CC877A95-C652-4fe2-AD1D-655296F78214}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:38,959 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2257, uuid={A7F35D26-4B23-4015-AD0D-EBEFA191D4F4}, since=null, name=PSPBld, alias=, stereotype=security, visibility=public, txtDescription='Building access occurred.', htmlDescription='

Building access occurred.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:38,971 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2255, uuid={AE5A5B25-3635-4d4e-BB6F-3F373B37D7F7}, since=null, name=PSPIed, alias=, stereotype=security, visibility=public, txtDescription='Indicates that direct access to the IED is in process.', htmlDescription='

Indicates that direct access to the IED is in process.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:38,984 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2256, uuid={B58DB9CE-5D6A-4836-8A52-322BC774BC87}, since=null, name=PSPPanel, alias=, stereotype=security, visibility=public, txtDescription='Indicates that panel access is occurring to the IED.', htmlDescription='

Indicates that panel access is occurring to the IED.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:38,996 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2258, uuid={5330F087-530C-45ed-97CC-9AAA63252BF8}, since=null, name=PSPPerimeter, alias=, stereotype=security, visibility=public, txtDescription='Physical perimeter access occurred (e.g. door open), where available.', htmlDescription='

Physical perimeter access occurred (e.g. door open), where available.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:39,008 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=152, uuid={77B56447-B1AC-4c57-B772-2A438F32F38B}, since=null, name=PSUP, alias=, stereotype=table, visibility=public, txtDescription='A list of power supply entries.', htmlDescription='

A list of power supply entries.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=616, _eaTypeName=PSUPEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:39,020 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2260, uuid={0ABF14FE-A7EB-447e-9066-271C644F8B1A}, since=null, name=PSUPLos, alias=, stereotype=health, visibility=public, txtDescription='Power supply table entry index of the last power supply that was detected as lost.', htmlDescription='

Power supply table entry index of the last power supply that was detected as lost.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:39,031 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2259, uuid={ECCB9B5A-C082-4a31-BCA7-B115A8600DA0}, since=null, name=PSUPOn, alias=, stereotype=health, visibility=public, txtDescription='Index of the power supply that was the last to come on.', htmlDescription='

Index of the power supply that was the last to come on.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:39,045 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=3622, uuid={96BB2987-191F-4e60-BCB6-102571495093}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=874, _eaTypeName=SecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:39,058 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=3621, uuid={75ECAF5C-210D-48b8-90F9-82576506744C}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object.', htmlDescription='

State events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=903, _eaTypeName=Notification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:39,071 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=4501, uuid={7FB27A25-45C1-42c1-9B72-BD8FC786A10A}, since=null, name=PSPRemote, alias=, stereotype=security, visibility=public, txtDescription='Indicates that a current remote access is occurring to the IED.', htmlDescription='

Indicates that a current remote access is occurring to the IED.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:39,087 [main] DEBUG ClassBuilder - Adding Environmental as subclass of AbstractAgent +2024-09-07 16:19:39,087 [main] TRACE ClassBuilder - read from EA: Environmental Agent::Environmental +2024-09-07 16:19:39,093 [main] TRACE ClassBuilder - Class PSUPEntry (2 in package Environmental Agent) +2024-09-07 16:19:39,226 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2663, uuid={82D58AB7-4A2D-4041-B53A-D00E492C6C11}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:39,238 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2671, uuid={6A6A7DC3-B5BB-4553-84C2-44318B449579}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the power supply.', htmlDescription='

Description of the power supply.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:39,253 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=3725, uuid={27FE83CA-F363-47cc-8B97-92F4711DDAAF}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='Id of the power supply.', htmlDescription='

Id of the power supply.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 16:19:39,270 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2670, uuid={40DB5D25-5E33-4ad3-BB26-D2E165FEBA1F}, since=null, name=Name, alias=, stereotype=identity, visibility=public, txtDescription='Name of the power supply.', htmlDescription='

Name of the power supply.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 16:19:39,283 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2669, uuid={87F74A2E-D615-4bb8-A54D-B421846C7542}, since=null, name=PSUPLos, alias=, stereotype=health, visibility=public, txtDescription='Timestamp of the last detected power loss.', htmlDescription='

Timestamp of the last detected power loss.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:39,295 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2661, uuid={3F81B85E-2C71-4d22-8767-ADB07D4305CC}, since=null, name=PwrLosCnt, alias=, stereotype=health, visibility=public, txtDescription='Attribute that provides a count of number power losses. Power loss indicates primary supply power loss not shutdown.', htmlDescription='

Attribute that provides a count of number power losses. Power loss indicates primary supply power loss not shutdown.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:39,307 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2728, uuid={0A17570B-860F-49a1-8208-A78149EDC279}, since=null, name=PwrOn, alias=, stereotype=health, visibility=public, txtDescription='Indicates if the power supply state is currently on and operating appropriately.', htmlDescription='

Indicates if the power supply state is currently on and operating appropriately.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:39,322 [main] DEBUG ClassBuilder - Adding PSUPEntry as subclass of AbstractAgent +2024-09-07 16:19:39,322 [main] TRACE ClassBuilder - read from EA: Environmental Agent::PSUPEntry +2024-09-07 16:19:39,328 [main] TRACE ClassBuilder - Class Notification (3 in package Environmental Agent) +2024-09-07 16:19:39,383 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Notification, _objData=UmlObjectData [id=3463, uuid={99A52BA7-C37A-4d5a-9AF2-69F868DCA056}, since=null, name=PSUPLos, alias=, stereotype=health, visibility=public, txtDescription='Power supply Table Entry Index of the last power supply that was detected as lost.', htmlDescription='

Power supply Table Entry Index of the last power supply that was detected as lost.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:39,392 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Notification, _objData=UmlObjectData [id=3462, uuid={CF8ECE95-A139-4efa-B7E5-5EBCC29D609C}, since=null, name=PSUPOn, alias=, stereotype=health, visibility=public, txtDescription='Index of the power supply that was the last to come on.', htmlDescription='

Index of the power supply that was the last to come on.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:39,407 [main] DEBUG ClassBuilder - Adding Notification as subclass of AbstractAgent +2024-09-07 16:19:39,407 [main] TRACE ClassBuilder - read from EA: Environmental Agent::Notification +2024-09-07 16:19:39,413 [main] TRACE ClassBuilder - Class SecurityNotification (4 in package Environmental Agent) +2024-09-07 16:19:39,516 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=4039, uuid={F551C4F9-AD27-4ef4-B8FA-5DBAC7238912}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:39,526 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=3432, uuid={04CE81A5-8629-43c0-8F3E-D93C55B63D0B}, since=null, name=PSPBld, alias=, stereotype=security, visibility=public, txtDescription='Building Access occurred.', htmlDescription='

Building Access occurred.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:39,535 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=3430, uuid={8AA6C984-EF4B-41bb-B433-665F0793B107}, since=null, name=PSPIed, alias=, stereotype=security, visibility=public, txtDescription='Indicates that direct access to the IED is in process.', htmlDescription='

Indicates that direct access to the IED is in process.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:39,544 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=3431, uuid={CBC52337-714E-4296-BD4F-B152E72DF029}, since=null, name=PSPPanel, alias=, stereotype=security, visibility=public, txtDescription='Indicates that panel access is occurring to the IED.', htmlDescription='

Indicates that panel access is occurring to the IED.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:39,553 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=3433, uuid={165E406E-AC48-43d3-A163-7401119B36B9}, since=null, name=PSPPerimeter, alias=, stereotype=security, visibility=public, txtDescription='Perimeter Access occurred.', htmlDescription='

Perimeter Access occurred.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 16:19:39,567 [main] DEBUG ClassBuilder - Adding SecurityNotification as subclass of AbstractAgent +2024-09-07 16:19:39,567 [main] TRACE ClassBuilder - read from EA: Environmental Agent::SecurityNotification +2024-09-07 16:19:39,569 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=40, _objData=UmlObjectData [id=10, uuid={943B03A5-8EC5-4979-8421-5F10D4177B08}, since=null, name=Environmental Agent, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 16 this package contains the object descriptions for the environmental information to be provided for the Network and System Monitoring of environmental conditions where the device is operating.', htmlDescription='

As shown in Figure 16 this package contains the object descriptions for the environmental information to be provided for the Network and System Monitoring of environmental conditions where the device is operating.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=environmental-agent, mibName=IEC-62351-ENV-MIB, mibPrefix=env, objectBranchId=1, objectIdentity=environmental-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=Environmental Agent, _objData=UmlObjectData [id=8, uuid={DD68DDD1-5EEB-4a23-B16C-1FF759A2EE6A}, since=null, name=Environmental, alias=, stereotype=, visibility=public, txtDescription='The Environmental agent class.', htmlDescription='

The Environmental agent class.

'], _portrait=true, _kind=LOGICAL]], _classes=4 +2024-09-07 16:19:39,574 [main] INFO PackageBuilder - processing package IED Agent (8) ... +2024-09-07 16:19:39,595 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=IED Agent, _objData=UmlObjectData [id=9, uuid={C3FD1BF6-CB13-4fb3-9C75-D9FACF470ACD}, since=null, name=IED, alias=, stereotype=, visibility=public, txtDescription='The Intelligent Electronic Device class attributes', htmlDescription='

The Intelligent Electronic Device class attributes

'], _portrait=true, _kind=LOGICAL] +2024-09-07 16:19:39,722 [main] TRACE ClassBuilder - Class IED (1 in package IED Agent) +2024-09-07 16:19:40,321 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=159, uuid={1405DC0D-6A4E-4f7e-AF8C-5E21E5C79F3C}, since=null, name=AtkCnt, alias=, stereotype=security, visibility=public, txtDescription='Attribute that provides the number of cyber- attacks that have been detected.', htmlDescription='

Attribute that provides the number of cyber- attacks that have been detected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:40,333 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=593, uuid={D7F266B3-90FC-434c-850B-A67888D5FF8C}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:40,344 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3365, uuid={4F170B51-C2F3-496d-A921-71158D5FAAD4}, since=null, name=ConfigurationCRC, alias=, stereotype=identity, visibility=public, txtDescription='CRC of the last update.', htmlDescription='

CRC of the last update.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:40,356 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3364, uuid={70C845C3-72FA-4ee2-8C82-B541DEA6F1A6}, since=null, name=ConfigurationVersion, alias=, stereotype=identity, visibility=public, txtDescription='Version of the last uploaded configuration.', htmlDescription='

Version of the last uploaded configuration.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:40,369 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3264, uuid={B2181BC5-C543-4352-AF8C-CF45A0CC6715}, since=null, name=CPU, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of CPU inside the IED.', htmlDescription='

This entry defer to possible multiple instances of CPU inside the IED.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=832, _eaTypeName=CPUEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:40,380 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=164, uuid={27E657EB-F5E0-46ac-9D03-B88771E3C03E}, since=null, name=CpuUsage, alias=, stereotype=health, visibility=public, txtDescription='Provides an attribute that indicates the percentage of processing resources that is in use. Range is 0 to 100', htmlDescription='

Provides an attribute that indicates the percentage of processing resources that is in use. Range is 0 to 100

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:40,391 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=165, uuid={331F6C40-DC4F-47e4-A1E7-D03E91A9BAB7}, since=null, name=DataInv, alias=, stereotype=security, visibility=public, txtDescription='Provides a count of the number of attempts to write invalid data, for instance out-of-range data.', htmlDescription='

Provides a count of the number of attempts to write invalid data, for instance out-of-range data.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:40,403 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=1904, uuid={6044B2D8-9605-461e-A2D5-AF9EF801D394}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='This entry provides a textual description of the IED.', htmlDescription='

This entry provides a textual description of the IED.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:40,414 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=174, uuid={84B44E91-B83B-48bc-95EB-FCE87A7F7BC1}, since=null, name=ExpCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of expired certificates that are in the certificate storage configured for local use.', htmlDescription='

Indicates the number of expired certificates that are in the certificate storage configured for local use.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:40,426 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3332, uuid={609144A0-BD56-43ff-AEA6-E96829144EC8}, since=null, name=EXT, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of extension modules inside the IED.', htmlDescription='

This entry defer to possible multiple instances of extension modules inside the IED.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=850, _eaTypeName=EXTEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:40,437 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3357, uuid={40D5B796-07CF-4261-BF72-7AC36DC3E5C5}, since=null, name=FirmwareVersion, alias=, stereotype=identity, visibility=public, txtDescription='Version of the last uploaded Firmware. Timestamp refers to upload time.', htmlDescription='

Version of the last uploaded Firmware. Timestamp refers to upload time.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:40,448 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=1908, uuid={6FD1E9BC-3801-4721-BC75-1500D754A5F4}, since=null, name=InternalTemp, alias=, stereotype=health, visibility=public, txtDescription='Degree Centigrade measurement of the internal IED Temperature.', htmlDescription='

Degree Centigrade measurement of the internal IED Temperature.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:40,458 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3493, uuid={A2E2F01C-9202-4d14-B2FC-EE99FA25D64D}, since=null, name=LastCPUFail, alias=, stereotype=health, visibility=public, txtDescription='Index of last failing CPU.', htmlDescription='

Index of last failing CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:40,470 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3706, uuid={21041DB8-C542-4137-AADE-3D1E8DD5E1D5}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:40,481 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3494, uuid={7A6C77E3-9BB2-4834-8C72-DAE268A5A789}, since=null, name=LastEXTFail, alias=, stereotype=health, visibility=public, txtDescription='Index of last failing Extension.', htmlDescription='

Index of last failing Extension.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:40,491 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3492, uuid={4ACA1571-DB99-4447-9A06-033F9EE4348B}, since=null, name=LastSTOREFail, alias=, stereotype=health, visibility=public, txtDescription='Index of last failing Storage.', htmlDescription='

Index of last failing Storage.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:40,502 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3256, uuid={A9D75A03-5288-48d7-BA55-09F388369D28}, since=null, name=Location, alias=, stereotype=identity, visibility=public, txtDescription='Physical Installation coordinates (geographical and plant location).', htmlDescription='

Physical Installation coordinates (geographical and plant location).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:40,514 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3257, uuid={B4CF9E53-369A-47de-B31C-9255617C59E5}, since=null, name=Maintainer, alias=, stereotype=identity, visibility=public, txtDescription='Organizational reference for device maintenance.', htmlDescription='

Organizational reference for device maintenance.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:40,526 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3388, uuid={B008E2FB-21B8-4e33-B720-B440E4B1F49D}, since=null, name=MemTotal, alias=, stereotype=health, visibility=public, txtDescription='Provides an attribute that report the total RAM available in KBytes.', htmlDescription='

Provides an attribute that report the total RAM available in KBytes.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:40,537 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=1910, uuid={F6C9C372-CCF6-49b4-B39B-B7C633D0987A}, since=null, name=MemUsage, alias=, stereotype=health, visibility=public, txtDescription='Provides an attribute that indicates the percentage of memory that is in use.Range is 0 to 100.', htmlDescription='

Provides an attribute that indicates the percentage of memory that is in use.Range is 0 to 100.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:40,548 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3255, uuid={E81796A9-2AC8-45d5-A00C-A8FF43E2E704}, since=null, name=MIBVersion, alias=, stereotype=identity, visibility=public, txtDescription='Version of the Management Information Base.', htmlDescription='

Version of the Management Information Base.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:40,559 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=167, uuid={E0D67C9A-2A09-4694-B58C-55AB9281E1BA}, since=null, name=MisEvCnt, alias=, stereotype=health, visibility=public, txtDescription='Provides an attribute that represents the count of missed events or data.', htmlDescription='

Provides an attribute that represents the count of missed events or data.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:40,570 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=1913, uuid={FBF2BE7D-376E-477d-BEA6-8FBF4467B076}, since=null, name=Name, alias=, stereotype=identity, visibility=public, txtDescription='Name of IED.', htmlDescription='

Name of IED.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:40,582 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3718, uuid={472EB367-3A8B-4a9a-82E6-AD7C1825366F}, since=null, name=NearToExpCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of certificates in the certificate storage configured for local use that have exceeded the 70% of validity period.', htmlDescription='

Indicates the number of certificates in the certificate storage configured for local use that have exceeded the 70% of validity period.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:40,594 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=177, uuid={813425EE-45D4-449f-A1BA-5E8BDECC6309}, since=null, name=NvStore, alias=, stereotype=health, visibility=public, txtDescription='Indicates the global number of kilobytes of storage allocated for local use in all storage areas.', htmlDescription='

Indicates the global number of kilobytes of storage allocated for local use in all storage areas.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:40,606 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=178, uuid={82009203-F55E-466e-9B62-1933D717E9E0}, since=null, name=NvStoreRem, alias=, stereotype=health, visibility=public, txtDescription='Indicates the percentage of NvStore available for storage.', htmlDescription='

Indicates the percentage of NvStore available for storage.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:40,618 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=157, uuid={BE9FD31C-2E94-434f-8D2A-69F9BBC26FFD}, since=null, name=PhyHealth, alias=, stereotype=health, visibility=public, txtDescription='General health status of IED hardware and software.', htmlDescription='

General health status of IED hardware and software.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1036, _eaTypeName=PhyHealthType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:40,629 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=158, uuid={D980F3DA-CEDB-4402-837B-C8480047FB4F}, since=null, name=PhyHealthChgCnt, alias=, stereotype=health, visibility=public, txtDescription='Provides a count of the number of transitions state of PhyHealth Attribute.', htmlDescription='

Provides a count of the number of transitions state of PhyHealth Attribute.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:40,642 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3437, uuid={DF896F75-F02E-4195-9E06-0E9BB719136B}, since=null, name=RBACDbUpdate, alias=, stereotype=security, visibility=public, txtDescription='Version of the last uploaded RBAC Database.', htmlDescription='

Version of the last uploaded RBAC Database.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:40,656 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=176, uuid={BF4C520F-2A9F-434f-A442-25072A5C8B6B}, since=null, name=RevCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of revoked certificates that are still configured for local use.', htmlDescription='

Indicates the number of revoked certificates that are still configured for local use.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:40,669 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3479, uuid={8DA6CCEB-ED0C-41ec-B476-C7F33C86B499}, since=null, name=RevCheckFail, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number revocation check failures.', htmlDescription='

Indicates the number revocation check failures.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:40,682 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3620, uuid={93F9F190-837F-4def-9AE7-693E1E609256}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=912, _eaTypeName=SecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:40,695 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3619, uuid={167D9C3F-D113-4dd9-8CD1-62228F439DF9}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object.', htmlDescription='

State events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=911, _eaTypeName=Notification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:40,708 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3387, uuid={2CF43DE1-E31F-4743-B645-CC6617CC65E9}, since=null, name=STORE, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of storage modules inside the IED.', htmlDescription='

This entry defer to possible multiple instances of storage modules inside the IED.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=862, _eaTypeName=STOREEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:40,720 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=4118, uuid={A000D652-2899-4b1e-A269-5B0E74D9612D}, since=null, name=SvcViol, alias=, stereotype=security, visibility=public, txtDescription='Number of service privilege violations (i.e., when the data object that the client wanted to access exists in the access view for the association with that client, but the requested service is not allowed).', htmlDescription='

Number of service privilege violations (i.e., when the data object that the client wanted to access exists in the access view for the association with that client, but the requested service is not allowed).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:40,732 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3964, uuid={8C00B0E5-5F91-4e94-AAA3-B08EFBB15D6C}, since=null, name=Watchdog, alias=, stereotype=health, visibility=public, txtDescription='This attribute report the count of Watchdog intervention on any component of the IED.', htmlDescription='

This attribute report the count of Watchdog intervention on any component of the IED.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:40,744 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=2217, uuid={FA50F248-F688-4b0f-B343-E8626A859677}, since=null, name=WrmStrCnt, alias=, stereotype=health, visibility=public, txtDescription='Number of warm starts detected.', htmlDescription='

Number of warm starts detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:40,759 [main] DEBUG ClassBuilder - Adding IED as subclass of AbstractAgent +2024-09-07 16:19:40,759 [main] TRACE ClassBuilder - read from EA: IED Agent::IED +2024-09-07 16:19:40,766 [main] TRACE ClassBuilder - Class CPUEntry (2 in package IED Agent) +2024-09-07 16:19:40,919 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3261, uuid={F7E2552A-9E40-4498-9B35-80E4DC7388F3}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:40,931 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3260, uuid={2A8CCA5F-B153-4fa8-8801-52859B51BF8A}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the CPU.', htmlDescription='

Description of the CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:40,943 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3262, uuid={6C624EF6-19CC-45c7-8B22-52C6EB105C3F}, since=null, name=Faulty, alias=, stereotype=health, visibility=public, txtDescription='CPU generated errors.', htmlDescription='

CPU generated errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:40,958 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3259, uuid={18120B8F-8761-4f72-A364-9015D0229D9F}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='CPU number.', htmlDescription='

CPU number.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 16:19:40,970 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3258, uuid={5BACDAAA-B8BD-4635-B1F3-7E2C4CB93292}, since=null, name=Online, alias=, stereotype=health, visibility=public, txtDescription='Indicate that CPU is online and active.', htmlDescription='

Indicate that CPU is online and active.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:40,981 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3263, uuid={404E8337-84BD-4e87-888C-BC40C8FDFD3D}, since=null, name=Operable, alias=, stereotype=health, visibility=public, txtDescription='Indicates that CPU is operable (it can be either online or offline).', htmlDescription='

Indicates that CPU is operable (it can be either online or offline).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:40,992 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3389, uuid={D6BA8CB3-C883-4924-9F0F-3E0D3BF3FE2D}, since=null, name=Temperature, alias=, stereotype=health, visibility=public, txtDescription='Temperature of this CPU.', htmlDescription='

Temperature of this CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:41,003 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3965, uuid={2C004DAE-5C35-4b32-8046-95848FB39988}, since=null, name=Watchdog, alias=, stereotype=health, visibility=public, txtDescription='This attribute report the count of Watchdog intervention on this CPU.', htmlDescription='

This attribute report the count of Watchdog intervention on this CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:41,017 [main] DEBUG ClassBuilder - Adding CPUEntry as subclass of AbstractAgent +2024-09-07 16:19:41,017 [main] TRACE ClassBuilder - read from EA: IED Agent::CPUEntry +2024-09-07 16:19:41,023 [main] TRACE ClassBuilder - Class EXTEntry (3 in package IED Agent) +2024-09-07 16:19:41,190 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3334, uuid={5449D06F-D84C-4247-BFF2-855283FE546B}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='Software PLC ID.', htmlDescription='

Software PLC ID.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 16:19:41,202 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3335, uuid={1FA00718-1A03-4856-BE17-E4C968E2303B}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the Software PLC.', htmlDescription='

Description of the Software PLC.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:41,214 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3366, uuid={26FC08E1-AE06-447a-A63C-A464EF3B6C5A}, since=null, name=ExtensionType, alias=, stereotype=identity, visibility=public, txtDescription='This attribute defines the type of the extension module.', htmlDescription='

This attribute defines the type of the extension module.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=854, _eaTypeName=ExtType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:41,226 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3416, uuid={25484747-00E6-4e15-9F70-84DADE0F1C1C}, since=null, name=CodeVersion, alias=, stereotype=identity, visibility=public, txtDescription='Version of the last uploaded code.', htmlDescription='

Version of the last uploaded code.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:41,237 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3338, uuid={582D62C0-D628-4ccb-8BBD-32D4EE3B63BD}, since=null, name=Running, alias=, stereotype=health, visibility=public, txtDescription='Indicates that CPU is operable (it can be either online or offline).', htmlDescription='

Indicates that CPU is operable (it can be either online or offline).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:41,249 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3390, uuid={4838CC42-4D04-48d4-B5E0-73AC845722FF}, since=null, name=Temperature, alias=, stereotype=health, visibility=public, txtDescription='Temperature of this extension.', htmlDescription='

Temperature of this extension.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:41,261 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3333, uuid={884C8693-44E5-4b48-BBA4-E016ABF8B3C1}, since=null, name=Watchdog, alias=, stereotype=health, visibility=public, txtDescription='This attribute report the count of Watchdog intervention on this IED extension (e.g. software PLC).', htmlDescription='

This attribute report the count of Watchdog intervention on this IED extension (e.g. software PLC).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:41,273 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3337, uuid={A88DDBF9-7D12-4096-A713-D46EF92F2788}, since=null, name=Errors, alias=, stereotype=health, visibility=public, txtDescription='This attribute reports the PLC software detected errors.', htmlDescription='

This attribute reports the PLC software detected errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:41,285 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3336, uuid={A600A488-A1C0-4de3-BA57-148F100FC3F6}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:41,300 [main] DEBUG ClassBuilder - Adding EXTEntry as subclass of AbstractAgent +2024-09-07 16:19:41,300 [main] TRACE ClassBuilder - read from EA: IED Agent::EXTEntry +2024-09-07 16:19:41,305 [main] TRACE ClassBuilder - Class STOREEntry (4 in package IED Agent) +2024-09-07 16:19:41,426 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3382, uuid={51E473C6-FD18-455e-AED3-59F394443C8D}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='Storage area ID number.', htmlDescription='

Storage area ID number.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 16:19:41,438 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3383, uuid={064A1F24-744B-46ad-AD7C-A95961E97B13}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the storage area.', htmlDescription='

Description of the storage area.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:41,450 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3386, uuid={F81C3EA0-A881-4cf8-981C-6AAA51137320}, since=null, name=NvStore, alias=, stereotype=health, visibility=public, txtDescription='Indicates the amount of storage.', htmlDescription='

Indicates the amount of storage.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:41,463 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3381, uuid={9C3D8C6F-12FE-4f73-AF1F-DE108934866D}, since=null, name=NvStoreRem, alias=, stereotype=health, visibility=public, txtDescription='Indicate remaining storage in this area.', htmlDescription='

Indicate remaining storage in this area.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:41,474 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3385, uuid={D8309CF9-DAF0-4ee7-A381-888D751BA0AA}, since=null, name=Faulty, alias=, stereotype=health, visibility=public, txtDescription='Storage area fault generated errors.', htmlDescription='

Storage area fault generated errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:41,485 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3732, uuid={39256EA1-992F-4aca-AF28-01BF33E5DF73}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:41,501 [main] DEBUG ClassBuilder - Adding STOREEntry as subclass of AbstractAgent +2024-09-07 16:19:41,501 [main] TRACE ClassBuilder - read from EA: IED Agent::STOREEntry +2024-09-07 16:19:41,507 [main] TRACE ClassBuilder - Class Notification (5 in package IED Agent) +2024-09-07 16:19:41,632 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3486, uuid={B5FF53A1-E8B9-46ec-BE1B-75F6EC7C48F5}, since=null, name=PhyHealthChgCnt, alias=, stereotype=health, visibility=public, txtDescription='Provides a count of the number of transitions state of PhyHealth Attribute.', htmlDescription='

Provides a count of the number of transitions state of PhyHealth Attribute.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:41,644 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3497, uuid={C24EC3BA-E07C-4a47-9FC1-D975C6DF5FA9}, since=null, name=InternalTemp, alias=, stereotype=health, visibility=public, txtDescription='Degree Centigrade measurement of the internal IED Temperature.', htmlDescription='

Degree Centigrade measurement of the internal IED Temperature.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:41,655 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3495, uuid={11B98054-C537-42a0-938C-380F69A2A3F5}, since=null, name=NvStore, alias=, stereotype=health, visibility=public, txtDescription='Indicates the global number of kilobytes of storage allocated for local use in all storage areas.', htmlDescription='

Indicates the global number of kilobytes of storage allocated for local use in all storage areas.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:41,666 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3496, uuid={5E3EA7C8-15A7-42f6-9FBC-0C995489AB43}, since=null, name=NvStoreRem, alias=, stereotype=health, visibility=public, txtDescription='Indicates the percentage of NvStore available for storage.', htmlDescription='

Indicates the percentage of NvStore available for storage.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:41,677 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3480, uuid={8334F7D0-DA9C-4f85-8A96-1ACB87744C5B}, since=null, name=PhyHealth, alias=, stereotype=health, visibility=public, txtDescription='General health status of IED hardware and software.', htmlDescription='

General health status of IED hardware and software.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1036, _eaTypeName=PhyHealthType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:41,688 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3489, uuid={37E2129D-71C5-4030-8530-00D04FA20DDF}, since=null, name=WrmStrCnt, alias=, stereotype=health, visibility=public, txtDescription='Number of warm starts detected.', htmlDescription='

Number of warm starts detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:41,702 [main] DEBUG ClassBuilder - Adding Notification as subclass of AbstractAgent +2024-09-07 16:19:41,702 [main] TRACE ClassBuilder - read from EA: IED Agent::Notification +2024-09-07 16:19:41,707 [main] TRACE ClassBuilder - Class SecurityNotification (6 in package IED Agent) +2024-09-07 16:19:41,845 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3502, uuid={E2312704-4F51-465e-8B02-4DFC37D2286B}, since=null, name=AtkCnt, alias=, stereotype=security, visibility=public, txtDescription='Attribute that provides the number of cyber- attacks that have been detected.', htmlDescription='

Attribute that provides the number of cyber- attacks that have been detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:41,856 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3499, uuid={7B741BD7-BDA8-4148-BDA0-6667E98C3102}, since=null, name=ExpCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of expired certificates that are in the certificate storage configured for local use.', htmlDescription='

Indicates the number of expired certificates that are in the certificate storage configured for local use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:41,867 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3730, uuid={7029DE89-300D-43cb-B94F-49317EE26061}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:41,878 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3731, uuid={554C03A1-C7D0-43ea-8541-46609B5191C2}, since=null, name=NearToExpCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of certificates in the certificate storage configured for local use that have exceeded the 70% of validity period.', htmlDescription='

Indicates the number of certificates in the certificate storage configured for local use that have exceeded the 70% of validity period.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:41,889 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3498, uuid={16D2AFD2-62AE-4dfe-BA94-32B996B33302}, since=null, name=RevCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of revoked certificates that are still configured for local use.', htmlDescription='

Indicates the number of revoked certificates that are still configured for local use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:41,900 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3500, uuid={406910CA-F346-4649-99A2-5A215611BD7D}, since=null, name=RevCheckFail, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number revocation check failures.', htmlDescription='

Indicates the number revocation check failures.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:41,915 [main] DEBUG ClassBuilder - Adding SecurityNotification as subclass of AbstractAgent +2024-09-07 16:19:41,915 [main] TRACE ClassBuilder - read from EA: IED Agent::SecurityNotification +2024-09-07 16:19:41,917 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=43, _objData=UmlObjectData [id=11, uuid={FA4A74C3-A660-4c32-8794-7695680DB23E}, since=null, name=IED Agent, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 17, the IED Agent package contains the object descriptions for the environmental information to be provided for the network and system monitoring of environmental conditions where the device is operating.', htmlDescription='

As shown in Figure 17, the IED Agent package contains the object descriptions for the environmental information to be provided for the network and system monitoring of environmental conditions where the device is operating.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=ied-agent, mibName=IEC-62351-DEV-MIB, mibPrefix=iED, objectBranchId=2, objectIdentity=ied-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=IED Agent, _objData=UmlObjectData [id=9, uuid={C3FD1BF6-CB13-4fb3-9C75-D9FACF470ACD}, since=null, name=IED, alias=, stereotype=, visibility=public, txtDescription='The Intelligent Electronic Device class attributes', htmlDescription='

The Intelligent Electronic Device class attributes

'], _portrait=true, _kind=LOGICAL]], _classes=6 +2024-09-07 16:19:41,921 [main] INFO PackageBuilder - processing package Application Protocols Agents (9) ... +2024-09-07 16:19:42,026 [main] INFO PackageBuilder - processing package Common objects (0) ... +2024-09-07 16:19:42,037 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Common objects, _objData=UmlObjectData [id=64, uuid={583FFED4-9F6C-420f-88B3-80FF9F387121}, since=null, name=Application Protocol common objects, alias=, stereotype=, visibility=public, txtDescription='Application Protocol common objects', htmlDescription='

Application Protocol common objects

'], _portrait=true, _kind=LOGICAL] +2024-09-07 16:19:42,064 [main] TRACE ClassBuilder - Class CommonProtocolInfo (1 in package Common objects) +2024-09-07 16:19:42,216 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4079, uuid={CCA64890-32AD-4a39-BD2E-B115DB6259D5}, since=null, name=IEC62351part3, alias=, stereotype=security, visibility=public, txtDescription='True is security profile in use for this association (IEC 62351-3).', htmlDescription='

True is security profile in use for this association (IEC 62351-3).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:42,228 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4087, uuid={0CDF636C-287B-44bf-AF3B-83CBAEB3791B}, since=null, name=Part3ConnectionId, alias=, stereotype=protocol, visibility=public, txtDescription='IEC 62351-3 Transport layer connection id in use for this Association. Meaningful only if IEC62351Part3 is true.', htmlDescription='

IEC 62351-3 Transport layer connection id in use for this Association. Meaningful only if IEC62351Part3 is true.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:42,241 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4099, uuid={18DFBDB7-B849-4a22-AEBA-4B62D877531D}, since=null, name=TCPHndShTime, alias=, stereotype=performance, visibility=public, txtDescription='Duration of the TCP handshake. Only applicable when the when the application layer has access to the TLS layer.', htmlDescription='

Duration of the TCP handshake. Only applicable when the when the application layer has access to the TLS layer.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:42,255 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4107, uuid={A9F9F05C-681E-480a-B663-D8EB1E1FE300}, since=null, name=TLSHndTime, alias=, stereotype=performance, visibility=public, txtDescription='TLS Handshake time. Only applicable when the when the application layer has access to the TLS layer.', htmlDescription='

TLS Handshake time. Only applicable when the when the application layer has access to the TLS layer.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:42,268 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4109, uuid={F7CBA04D-7FEA-47c7-A560-EA06B30C3056}, since=null, name=TLSRenegotiationTime, alias=, stereotype=performance, visibility=public, txtDescription='TLS Renegotiation time. Only applicable when the when the application layer has access to the TLS layer.', htmlDescription='

TLS Renegotiation time. Only applicable when the when the application layer has access to the TLS layer.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:42,283 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4108, uuid={CBC69A2E-FFEA-4612-9907-B3E519FB4E3F}, since=null, name=TLSResumptionTime, alias=, stereotype=performance, visibility=public, txtDescription='TLS Resumption time. Only applicable when the when the application layer has access to the TLS layer.', htmlDescription='

TLS Resumption time. Only applicable when the when the application layer has access to the TLS layer.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:42,297 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4106, uuid={EF9560F0-0EC3-4417-883D-96C32AE7803C}, since=null, name=TotalHndTime, alias=, stereotype=performance, visibility=public, txtDescription='Transport + Application Handshake time.', htmlDescription='

Transport + Application Handshake time.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:42,310 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4105, uuid={BCBEF3C5-946E-42cf-8D1D-CAAC2679E795}, since=null, name=TransportHndTime, alias=, stereotype=performance, visibility=public, txtDescription='Transport layer handshake time. It is equal to TCPHndTime if IEC62351part3 is false, it is equal to TCPHndTime + TLSHndTime if IEC62351part3 is true.', htmlDescription='

Transport layer handshake time. It is equal to TCPHndTime if IEC62351part3 is false, it is equal to TCPHndTime + TLSHndTime if IEC62351part3 is true.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:42,361 [main] DEBUG ClassBuilder - Adding CommonProtocolInfo as subclass of AbstractAgent +2024-09-07 16:19:42,364 [main] TRACE ClassBuilder - read from EA: Common objects::CommonProtocolInfo +2024-09-07 16:19:42,366 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Application Protocols Agents, _depth=4, _eaElementID=1030, _objData=UmlObjectData [id=383, uuid={AE0BBC52-C6A1-4653-96A9-F35780566A54}, since=null, name=Common objects, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 18, this package includes the common class for the application protocols.', htmlDescription='

As shown in Figure 18, this package includes the common class for the application protocols.

'], _modelId=362, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=Common objects, _objData=UmlObjectData [id=64, uuid={583FFED4-9F6C-420f-88B3-80FF9F387121}, since=null, name=Application Protocol common objects, alias=, stereotype=, visibility=public, txtDescription='Application Protocol common objects', htmlDescription='

Application Protocol common objects

'], _portrait=true, _kind=LOGICAL]], _classes=1 +2024-09-07 16:19:42,370 [main] INFO PackageBuilder - processing package IEC62351-3 ed.2 Agent (6) ... +2024-09-07 16:19:42,393 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=IEC62351-3 ed.2 Agent, _objData=UmlObjectData [id=72, uuid={38D28719-1A0B-491f-9010-AF2D3032BB4B}, since=null, name=IEC 62351-3 ed.2 Agent Relationships, alias=, stereotype=, visibility=public, txtDescription='This picture depicts the relationship between IEC 62351-3 ed.2 objects', htmlDescription='

This picture depicts the relationship between IEC 62351-3 ed.2 objects

'], _portrait=true, _kind=LOGICAL] +2024-09-07 16:19:42,505 [main] TRACE ClassBuilder - Class IEC62351-3ed2security (1 in package IEC62351-3 ed.2 Agent) +2024-09-07 16:19:43,059 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4460, uuid={7510EED9-2C7E-480d-BD60-571DDC732128}, since=null, name=tlsEarlyDataCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: counts early data in handshake detected but neglected.', htmlDescription='

TLSv1.3: counts early data in handshake detected but neglected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:43,073 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4454, uuid={4FA3487F-4B3B-477e-99E8-2F5D24C013EF}, since=null, name=tlsDisallowedCipherCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts disallowed cipher suite proposed.', htmlDescription='

Counts disallowed cipher suite proposed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:43,088 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4461, uuid={F6A6964F-1010-4fc3-9112-0BBBF8244593}, since=null, name=tlsCertSizeMismatchCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts occurrences of endpoint certificate size exceeds limits', htmlDescription='

Counts occurrences of endpoint certificate size exceeds limits

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:43,102 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4463, uuid={89576E04-2176-4454-8207-BA0A305B9547}, since=null, name=tlsNoCaMatchCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts events of matching RootCA certificate for endpoint certificate validation not available.', htmlDescription='

Counts events of matching RootCA certificate for endpoint certificate validation not available.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:43,115 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4464, uuid={E1FBC1A2-6D0C-437e-95D2-873497AF44C6}, since=null, name=tlsNoSigAlgoExtCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: Counts events of no signature-algorithm extension included. Fallback to deprecated signature algorithm', htmlDescription='

TLSv1.2: Counts events of no signature-algorithm extension included. Fallback to deprecated signature algorithm

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:43,130 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4465, uuid={0A95DFE0-8624-4b8a-814E-A12605F19B07}, since=null, name=tlsDepDigAlgCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: Deprecated signature algorithm combination detected counter.', htmlDescription='

TLSv1.2: Deprecated signature algorithm combination detected counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:43,145 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4466, uuid={B68E613E-EEC5-4696-A841-9EE87D237582}, since=null, name=tlsNoTrustedCertMatchCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times Endpoint certificate not in certificate trust list', htmlDescription='

Counts the times Endpoint certificate not in certificate trust list

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:43,159 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4467, uuid={614E4EB0-BAA2-4b19-B00A-EA1FF0D8A3BD}, since=null, name=tlsCertRevokedCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times when endpoint certificate not in certificate trust list', htmlDescription='

Counts the times when endpoint certificate not in certificate trust list

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:43,175 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4468, uuid={1E2A987C-A48F-4eb7-A3BA-2C77F4A68216}, since=null, name=tlsNoCrlCnt, alias=, stereotype=security, visibility=public, txtDescription='Local CRL not accessible counter.', htmlDescription='

Local CRL not accessible counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:43,189 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4469, uuid={4A915807-5D1C-40af-9AA5-A745061F5DED}, since=null, name=tlsCrlExpCnt, alias=, stereotype=security, visibility=public, txtDescription='CRL expired.counter.', htmlDescription='

CRL expired.counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:43,204 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4470, uuid={AE06F05B-3CA8-44d1-9A20-5F4997A319FF}, since=null, name=tlsNoEpskModeCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: no support for encrypt-then-MAC counter', htmlDescription='

TLSv1.2: no support for encrypt-then-MAC counter

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:43,219 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4471, uuid={3E766604-E835-4b5a-A853-08A031D9FE22}, since=null, name=tlsNoEncryptThenMacCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: support of non-ephemeral PSK mode only counter.', htmlDescription='

TLSv1.3: support of non-ephemeral PSK mode only counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:43,234 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4472, uuid={C8F076B9-538C-423c-BC24-3756EAB54AEE}, since=null, name=tlsOcspResExpCnt, alias=, stereotype=security, visibility=public, txtDescription='OCSP response expired counter.', htmlDescription='

OCSP response expired counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:43,249 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4473, uuid={808D4C4A-240F-40a2-A84B-7EB7FAF41461}, since=null, name=tlsCertExpCnt, alias=, stereotype=security, visibility=public, txtDescription='Endpoint certificate expired counter.', htmlDescription='

Endpoint certificate expired counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:43,263 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4474, uuid={03D6BEA0-3F60-4e5b-BB2A-9126ABD1750F}, since=null, name=tlsNoSkUpdateCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: Peer does not perform session key update counter.', htmlDescription='

TLSv1.3: Peer does not perform session key update counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:43,278 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4475, uuid={264129C9-891C-4677-A001-B283CE215402}, since=null, name=tlsSigAlgMismatchCnt, alias=, stereotype=security, visibility=public, txtDescription='Signature algorithms in received endpoint certificate not supported counter.', htmlDescription='

Signature algorithms in received endpoint certificate not supported counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:43,294 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4476, uuid={A460A30B-5686-4f92-AFDC-C53C056A3309}, since=null, name=tlsSigVFailedCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times certificate signature could not be verified.', htmlDescription='

Counts the times certificate signature could not be verified.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:43,309 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4477, uuid={0FF962F9-BFB0-4683-96B5-09E38C57E324}, since=null, name=tlsShortRsaKeyCnt, alias=, stereotype=security, visibility=public, txtDescription='RSA key with key length of less than 2048 bit detected counter.', htmlDescription='

RSA key with key length of less than 2048 bit detected counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:43,324 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4478, uuid={39629ED0-372D-4c6f-B89B-4C13BA7374C6}, since=null, name=tlsMinKeyCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times RSA key with minimum key length of 1024 bit detected and allowed by configuration', htmlDescription='

Counts the times RSA key with minimum key length of 1024 bit detected and allowed by configuration

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:43,338 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4479, uuid={947A8F86-CF55-46c2-B517-3D4FA76FBA27}, since=null, name=tlsShortKeyCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times RSA key with insufficient key length (less than 1024 bit) detected..', htmlDescription='

Counts the times RSA key with insufficient key length (less than 1024 bit) detected..

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:43,354 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4480, uuid={560E07AC-D31D-4807-B518-20E83C9DD1A3}, since=null, name=tlsDepHashCnt, alias=, stereotype=security, visibility=public, txtDescription='Use of deprecated hash algorithm detected counter', htmlDescription='

Use of deprecated hash algorithm detected counter

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:43,368 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4462, uuid={6EDD77BB-4D13-4937-96A5-231A8441C74A}, since=null, name=tlsNoTrCaMatchSCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: No support of peer signalled trusted CA counter.', htmlDescription='

TLSv1.3: No support of peer signalled trusted CA counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:43,384 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4455, uuid={15470B2B-1EDC-41c5-AD3A-2E3583BF3A65}, since=null, name=tlsSessionidExpiredFullHsCnt, alias=, stereotype=security, visibility=public, txtDescription='Counter of sessionID expired, Resumption not possible, full TLS handshake done.', htmlDescription='

Counter of sessionID expired, Resumption not possible, full TLS handshake done.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:43,399 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4458, uuid={2B104C3D-3F3F-4c1a-812A-DC170DBA1CA2}, since=null, name=tlsNoRenegTicket, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: Number of times peer does not use secure renegotiation (session tickets) capability in renegotiated handshake.', htmlDescription='

TLSv1.2: Number of times peer does not use secure renegotiation (session tickets) capability in renegotiated handshake.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:43,413 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4457, uuid={D1BA2BD4-A79C-4617-9538-493A2956FC91}, since=null, name=tlsNoRenegSigCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: Number of times peer does not signal secure renegotiation support (session tickets) in initial handshake.', htmlDescription='

TLSv1.2: Number of times peer does not signal secure renegotiation support (session tickets) in initial handshake.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:43,428 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4453, uuid={E290CB99-A7B9-4ee1-AC49-29234D78A42C}, since=null, name=tlsSessionClosedRevCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the TLS session closure due to received revoked endpoint certificate.', htmlDescription='

Counts the TLS session closure due to received revoked endpoint certificate.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:43,444 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4459, uuid={854B3699-1B9D-4f64-B8B6-56CB2FD90FBB}, since=null, name=tlsNoTrCaMatchScCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: No support of peer signalled trusted CA counter.', htmlDescription='

TLSv1.3: No support of peer signalled trusted CA counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:43,458 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4450, uuid={8D2D94D8-3C6F-4bda-878C-F54D750FFD27}, since=null, name=tlsHsSuccessCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the TLS session successfully established.', htmlDescription='

Counts the TLS session successfully established.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:43,473 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4456, uuid={D19394DC-2DE1-403e-9C38-01EE35A0DDFD}, since=null, name=tlsNoReneg, alias=, stereotype=security, visibility=public, txtDescription='Number of times renegotiation interval is exceeded. TLSv1.2 peer does not renegotiate.', htmlDescription='

Number of times renegotiation interval is exceeded. TLSv1.2 peer does not renegotiate.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:43,488 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4452, uuid={B1BA2AF1-A523-4ca2-979A-38272AF41E2B}, since=null, name=tlsNoLocalCertCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times local endpoint certificate is not available.', htmlDescription='

Number of times local endpoint certificate is not available.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:43,504 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4447, uuid={3D255C0C-5B4C-4589-A304-5D6FAF7E69A2}, since=null, name=tlsWeakVersionCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times when deprecated TLS version proposed and support of TLS versions prior to TLSv1.2 enabled', htmlDescription='

Counts the times when deprecated TLS version proposed and support of TLS versions prior to TLSv1.2 enabled

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:43,519 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4449, uuid={4B8CCA5B-77FF-4b70-98D5-168DA947FE99}, since=null, name=tlsVersionChangeCnt, alias=, stereotype=security, visibility=public, txtDescription='Count the TLS version change (potential downgrade) in ongoing session detected.', htmlDescription='

Count the TLS version change (potential downgrade) in ongoing session detected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:43,534 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4446, uuid={C75A400F-5B38-4bc5-BE6A-48FB4977B686}, since=null, name=tlsDeprecatedVersionCnT, alias=, stereotype=security, visibility=public, txtDescription='Counts the times when a deprecated TLS version is proposed and support of TLS versions prior to TLSv1.2 is disabled.', htmlDescription='

Counts the times when a deprecated TLS version is proposed and support of TLS versions prior to TLSv1.2 is disabled.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:43,549 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4451, uuid={ACB5D4CD-DBF9-4e86-892D-469DB0082C7E}, since=null, name=tlsNoPeerCertCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times peer did not provide endpoint certificate during the TLS handshake.', htmlDescription='

Number of times peer did not provide endpoint certificate during the TLS handshake.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:43,563 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4448, uuid={A02762E7-1235-453b-8BB2-6D4E8F705EA1}, since=null, name=tlsDisallowedVersionCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times when disallowed TLS version (prior to TLSv1.0) proposed', htmlDescription='

Counts the times when disallowed TLS version (prior to TLSv1.0) proposed

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:43,608 [main] DEBUG ClassBuilder - Adding IEC62351-3ed2security as subclass of AbstractAgent +2024-09-07 16:19:43,611 [main] TRACE ClassBuilder - read from EA: IEC62351-3 ed.2 Agent::IEC62351-3ed2security +2024-09-07 16:19:43,616 [main] TRACE ClassBuilder - Class TLSSession (2 in package IEC62351-3 ed.2 Agent) +2024-09-07 16:19:43,755 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4488, uuid={851472EB-C0E1-4464-B067-F650659846CF}, since=null, name=SessionId, alias=, stereotype=index, visibility=public, txtDescription='Id of the TLS session.', htmlDescription='

Id of the TLS session.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibindex=yes, Version=1}] +2024-09-07 16:19:43,766 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4489, uuid={B226702B-AC3E-4f8c-BF07-E3347944EA3A}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:43,778 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4490, uuid={69D938D2-D561-48eb-8BCF-FA2CFA350C07}, since=null, name=LocAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Local address.', htmlDescription='

Local address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:43,793 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4491, uuid={6C3E2D7A-F0C0-424b-A05C-4A96E29F65E7}, since=null, name=LocAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Local address type.', htmlDescription='

Local address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:43,806 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4492, uuid={5C777986-F9FD-4fbf-AAFB-2E087F0B21F7}, since=null, name=RemAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address.', htmlDescription='

Remote address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:43,822 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4493, uuid={7AB71D12-EB91-421a-B172-48B97B758080}, since=null, name=RemAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address type.', htmlDescription='

Remote address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:43,888 [main] DEBUG ClassBuilder - Adding TLSSession as subclass of AbstractAgent +2024-09-07 16:19:43,890 [main] DEBUG ClassBuilder - Adding TLSSession as subclass of CommonProtocolInfo +2024-09-07 16:19:43,896 [main] DEBUG ClassBuilder - Adding TLSSession as subclass of IEC62351-3ed2security +2024-09-07 16:19:43,896 [main] TRACE ClassBuilder - read from EA: IEC62351-3 ed.2 Agent::TLSSession +2024-09-07 16:19:43,903 [main] TRACE ClassBuilder - Class Summary (3 in package IEC62351-3 ed.2 Agent) +2024-09-07 16:19:44,055 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4481, uuid={8E8A2B77-DF1B-4f33-B823-499F2C569AB8}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:44,067 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4482, uuid={CBC3AD5A-6EDA-4a33-95FA-37A565CEA2C1}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered (security or health).', htmlDescription='

Provides the last known event encountered (security or health).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:44,082 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4483, uuid={4669B65B-F448-43b1-9BB7-DD9A5FEFA04B}, since=null, name=Server, alias=, stereotype=table, visibility=public, txtDescription='Client session (when applicable)', htmlDescription='

Client session (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=1077, _eaTypeName=ServerTLS, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{MIBPrefix=tC, Version=1}] +2024-09-07 16:19:44,097 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4484, uuid={C3E6C81C-3F3D-4c3b-BABC-8573CD333CF5}, since=null, name=Client, alias=, stereotype=table, visibility=public, txtDescription='Server session (when applicable)', htmlDescription='

Server session (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=1079, _eaTypeName=ClientTLS, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{MIBPrefix=tC, Version=1}] +2024-09-07 16:19:44,110 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4485, uuid={36BE9868-D051-429a-8C15-ADEDE8C4F60A}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object', htmlDescription='

Security events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1078, _eaTypeName=IEC62351part3ed2SecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:44,123 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4486, uuid={9668B8A2-A9DD-433f-A572-90776DAC42FC}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object', htmlDescription='

State events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1074, _eaTypeName=IEC62351part3edNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:44,138 [main] DEBUG ClassBuilder - Adding Summary as subclass of IEC62351-3ed2security +2024-09-07 16:19:44,138 [main] TRACE ClassBuilder - read from EA: IEC62351-3 ed.2 Agent::Summary +2024-09-07 16:19:44,144 [main] TRACE ClassBuilder - Class IEC62351part3ed2SecurityNotification (4 in package IEC62351-3 ed.2 Agent) +2024-09-07 16:19:44,187 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification, _objData=UmlObjectData [id=4487, uuid={6943E7EC-3F67-43a9-90B0-9BCF7DB4D056}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Description of last event reported', htmlDescription='

Description of last event reported

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:44,202 [main] DEBUG ClassBuilder - Adding IEC62351part3ed2SecurityNotification as subclass of AbstractAgent +2024-09-07 16:19:44,202 [main] TRACE ClassBuilder - read from EA: IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification +2024-09-07 16:19:44,208 [main] TRACE ClassBuilder - Class ClientTLS (6 in package IEC62351-3 ed.2 Agent) +2024-09-07 16:19:44,239 [main] DEBUG ClassBuilder - Adding ClientTLS as subclass of TLSSession +2024-09-07 16:19:44,239 [main] TRACE ClassBuilder - read from EA: IEC62351-3 ed.2 Agent::ClientTLS +2024-09-07 16:19:44,244 [main] TRACE ClassBuilder - Class ServerTLS (7 in package IEC62351-3 ed.2 Agent) +2024-09-07 16:19:44,274 [main] DEBUG ClassBuilder - Adding ServerTLS as subclass of TLSSession +2024-09-07 16:19:44,274 [main] TRACE ClassBuilder - read from EA: IEC62351-3 ed.2 Agent::ServerTLS +2024-09-07 16:19:44,276 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Application Protocols Agents, _depth=4, _eaElementID=1073, _objData=UmlObjectData [id=393, uuid={0BB5C1E1-95F4-4e19-914B-062361E3FE90}, since=null, name=IEC62351-3 ed.2 Agent, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 19, the IEC 62351-3 Agent package includes the monitoring classes for the IEC 62351-3 ed. 2 events.', htmlDescription='

As shown in Figure 19, the IEC 62351-3 Agent package includes the monitoring classes for the IEC 62351-3 ed. 2 events.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=iec62351-3-ed2-agent, mibName=IEC-62351-3-ED2, mibPrefix=part3, objectBranchId=4, objectIdentity=iec62351-3-ed2-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=IEC62351-3 ed.2 Agent, _objData=UmlObjectData [id=72, uuid={38D28719-1A0B-491f-9010-AF2D3032BB4B}, since=null, name=IEC 62351-3 ed.2 Agent Relationships, alias=, stereotype=, visibility=public, txtDescription='This picture depicts the relationship between IEC 62351-3 ed.2 objects', htmlDescription='

This picture depicts the relationship between IEC 62351-3 ed.2 objects

'], _portrait=true, _kind=LOGICAL]], _classes=6 +2024-09-07 16:19:44,281 [main] INFO PackageBuilder - processing package IEEE 1815 and IEC 60870-5 Agent (6) ... +2024-09-07 16:19:44,303 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=IEEE 1815 and IEC 60870-5 Agent, _objData=UmlObjectData [id=33, uuid={8B1E40BA-BA71-478e-BC81-025DA5A45A35}, since=null, name=IEEE 1815 and IEC 60870 Agent Relationships, alias=, stereotype=, visibility=public, txtDescription='This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes. +Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.', htmlDescription='

This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes.

Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 16:19:44,438 [main] TRACE ClassBuilder - Class 60870andDNPProtocolInfo (1 in package IEEE 1815 and IEC 60870-5 Agent) +2024-09-07 16:19:44,916 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3991, uuid={E3FE31B6-2024-4e98-99E9-12CFAC8AEC6F}, since=null, name=AuthFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Count of the number of authorization failures.', htmlDescription='

Count of the number of authorization failures.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:44,929 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3992, uuid={F6B00869-D41C-44b6-B4FF-FA092ED078AE}, since=null, name=CtrlPrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of control actions attempted that did not have the correct privilege.', htmlDescription='

Number of control actions attempted that did not have the correct privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:44,941 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3993, uuid={2CBA5468-91CA-4cf0-BAC3-55AC2EC54FC8}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted.', htmlDescription='

Number PDUs received that could not be decrypted.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:44,954 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3405, uuid={66AB8F6D-0721-44fb-861C-C607A8498C6F}, since=null, name=ExT0Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T0 (connection establishment).', htmlDescription='

Count the expirations of the 104 time-out T0 (connection establishment).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:44,966 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3406, uuid={F62CF6E4-A1AF-476b-B35E-F4DE2A4E0591}, since=null, name=ExT1Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T1 (PDU).', htmlDescription='

Count the expirations of the 104 time-out T1 (PDU).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:44,977 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3407, uuid={8099C0E4-518A-434c-BF60-73BC878C2238}, since=null, name=ExT2Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T2 (ACK).', htmlDescription='

Count the expirations of the 104 time-out T2 (ACK).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:44,989 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3408, uuid={439C3366-994E-4fbc-A804-80CA3D745D68}, since=null, name=ExT3Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T3 (TEST).', htmlDescription='

Count the expirations of the 104 time-out T3 (TEST).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:45,000 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3124, uuid={B8936537-E883-4ab6-8A65-47CF971C5BB4}, since=null, name=InDisc, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDUs that were discarded.', htmlDescription='

Number of received PDUs that were discarded.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:45,011 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3994, uuid={9A232ABD-C751-45bb-8278-552FEB934C4E}, since=null, name=InErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of PDUs received that were in error.', htmlDescription='

Number of PDUs received that were in error.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:45,023 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3995, uuid={A4886E74-D4DE-4163-BBF4-BFB4DA9AA818}, since=null, name=InOvCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer overflows detected due to incoming communication.', htmlDescription='

Number of buffer overflows detected due to incoming communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:45,036 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3996, uuid={34EAD965-3EEE-42ae-9A33-371405C3B4A8}, since=null, name=InterPDUTime, alias=, stereotype=protocol, visibility=public, txtDescription='Time between two consecutives PDUs.', htmlDescription='

Time between two consecutives PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:45,048 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3997, uuid={E65434B6-333B-4677-9DB7-2689202D1C31}, since=null, name=MisPDUCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Provides an attribute that represents the count of missed PDU.', htmlDescription='

Provides an attribute that represents the count of missed PDU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:45,060 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3141, uuid={3DEDE5E8-C46A-4627-A2B8-FA7B2651B388}, since=null, name=OutErr, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmission errors.', htmlDescription='

Number of transmission errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:45,071 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3990, uuid={4B336F22-0DBB-425c-9CE9-8A2B3968C18C}, since=null, name=OutUv, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer underflows detected due to outgoing serial communication.', htmlDescription='

Number of buffer underflows detected due to outgoing serial communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:45,081 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3998, uuid={56C57887-C03F-430b-A3CC-47993296C81A}, since=null, name=PDURTT, alias=, stereotype=protocol, visibility=public, txtDescription='PDU round trip time.', htmlDescription='

PDU round trip time.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:45,093 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3999, uuid={F9A50D40-7721-4f2f-B450-70B42C8159B7}, since=null, name=PDUSizeFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDU with wrong size.', htmlDescription='

Number of received PDU with wrong size.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:45,104 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4000, uuid={C3639D7C-0EF8-4ffb-912C-24F7FA06CBA6}, since=null, name=PduTampCnt, alias=, stereotype=security, visibility=public, txtDescription='Provides an attribute that indicates the count of the number of PDUs that have been detected to be tampered with.', htmlDescription='

Provides an attribute that indicates the count of the number of PDUs that have been detected to be tampered with.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:45,115 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4001, uuid={AD2C395F-15DF-4e49-A4EF-1C8758015811}, since=null, name=PrimaryInterface, alias=, stereotype=protocol, visibility=public, txtDescription='True if the Protocol is running on primary interface (false when backup interface is in use).', htmlDescription='

True if the Protocol is running on primary interface (false when backup interface is in use).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:45,130 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4002, uuid={15035EBB-A53C-4c7d-BEA7-D6AF668B9A81}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:45,142 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3403, uuid={D5E66B05-319E-467b-9B20-4D0021DE5B43}, since=null, name=RtxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the number of retransmissions.', htmlDescription='

Count the number of retransmissions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:45,154 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3123, uuid={5F22267E-6104-41c7-A2B6-BBFFCE828B94}, since=null, name=RxCritical, alias=, stereotype=protocol, visibility=public, txtDescription='Number of critical requests received (according to IEC 62351-5).', htmlDescription='

Number of critical requests received (according to IEC 62351-5).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:45,166 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4003, uuid={37C50A09-5C52-4612-ACD2-3CA5076E832A}, since=null, name=RxPdu, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDUs (including in error PDUs).', htmlDescription='

Number of received PDUs (including in error PDUs).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:45,177 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3135, uuid={51629B5F-2B79-4aa4-A704-E8D4D467D6E2}, since=null, name=RxSolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Number of solicited requests received. Only for DNP.', htmlDescription='

Number of solicited requests received. Only for DNP.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:45,188 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3145, uuid={546FFA93-9BFB-40fc-8F59-570F9FA50834}, since=null, name=RxUnsolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Contains the count of number of unsolicited requests that have been transmitted since the last reset.', htmlDescription='

Contains the count of number of unsolicited requests that have been transmitted since the last reset.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:45,198 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4004, uuid={219E7530-12EB-4a52-AE1A-536554F0ED28}, since=null, name=SessKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of session key negotiations that failed.', htmlDescription='

Number of session key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:45,209 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3122, uuid={9760193C-146A-427a-88DE-4FA2BBC2EA9E}, since=null, name=TxCritical, alias=, stereotype=protocol, visibility=public, txtDescription='Number of critical requests transmitted (according to IEC 62351-5)', htmlDescription='

Number of critical requests transmitted (according to IEC 62351-5)

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:45,222 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4005, uuid={984B7498-8B61-45e0-BE19-6E17EA80D9D0}, since=null, name=TxPdu, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmitted PDUs.', htmlDescription='

Number of transmitted PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:45,233 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3120, uuid={7F13ABEF-5E7A-4fc2-BE27-AB2E70B1B97A}, since=null, name=TxSolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Number of solicited requests transmitted. Only for DNP.', htmlDescription='

Number of solicited requests transmitted. Only for DNP.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:45,245 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3121, uuid={76A62C46-9C78-48ff-9770-F2A7BE837E1F}, since=null, name=TxUnsolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Contains the count of number of unsolicited requests that have been transmitted since the last reset.', htmlDescription='

Contains the count of number of unsolicited requests that have been transmitted since the last reset.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:45,257 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4006, uuid={2AAAEC13-D4BB-4d2a-8461-00DBAE43010B}, since=null, name=UpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations that failed.', htmlDescription='

Number of update key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:45,293 [main] DEBUG ClassBuilder - Adding 60870andDNPProtocolInfo as subclass of AbstractAgent +2024-09-07 16:19:45,293 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo +2024-09-07 16:19:45,298 [main] TRACE ClassBuilder - Class Association (2 in package IEEE 1815 and IEC 60870-5 Agent) +2024-09-07 16:19:45,489 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=3726, uuid={361DD26C-8F48-46fd-BCE9-B6A3787F5FA6}, since=null, name=AssociationId, alias=, stereotype=index, visibility=public, txtDescription='Id of the association.', htmlDescription='

Id of the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:45,502 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=3241, uuid={87C4526C-4B22-42d3-BFDD-0EBE86166CDA}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:45,519 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2417, uuid={FF67FCFB-43B0-4a5a-8A33-52E57E2A1E33}, since=null, name=LocAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Local address.', htmlDescription='

Local address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 16:19:45,536 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=3715, uuid={857943C5-1917-46b9-BAA2-F6DBBE305DDA}, since=null, name=LocAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Local address type.', htmlDescription='

Local address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 16:19:45,549 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2413, uuid={218B44A4-22AA-4a3a-B54C-BC3742A6A951}, since=null, name=ProtID, alias=, stereotype=protocol, visibility=public, txtDescription='Protocol ID in use.', htmlDescription='

Protocol ID in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=780, _eaTypeName=ProtIdType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:45,563 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2412, uuid={2DCFE840-6DFB-49ca-9D60-6F00BBFE9375}, since=null, name=ProviderDesc, alias=, stereotype=identity, visibility=public, txtDescription='Textual description of the provider that is in use.', htmlDescription='

Textual description of the provider that is in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:45,577 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2411, uuid={739910E5-2234-4d7f-BF07-E2FAC9061548}, since=null, name=ProviderName, alias=, stereotype=identity, visibility=public, txtDescription='Identity of the provider responding as the outstation for this association.', htmlDescription='

Identity of the provider responding as the outstation for this association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:45,597 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2416, uuid={F1041BDF-E1EE-44c3-B346-5643EFA0E8C7}, since=null, name=RemAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address.', htmlDescription='

Remote address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{isIndex=yes, mibIndex=yes, Version=0}] +2024-09-07 16:19:45,617 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=3714, uuid={25C69ED7-7E01-4316-B15C-28D99CC5FC94}, since=null, name=RemAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address type.', htmlDescription='

Remote address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{isIndex=yes, mibIndex=yes, Version=0}] +2024-09-07 16:19:45,630 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2410, uuid={4F98C052-71F6-44e6-A31C-2A148D61DF91}, since=null, name=TLnkErrCnt, alias=, stereotype=health, visibility=public, txtDescription='Count of communication link errors detected.', htmlDescription='

Count of communication link errors detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:45,643 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2415, uuid={FED824F2-3E50-44cd-A78C-B816071534FB}, since=null, name=TLnkTyp, alias=, stereotype=protocol, visibility=public, txtDescription='Type of transport being utilized.', htmlDescription='

Type of transport being utilized.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=778, _eaTypeName=LnkType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:45,691 [main] DEBUG ClassBuilder - Adding Association as subclass of AbstractAgent +2024-09-07 16:19:45,693 [main] DEBUG ClassBuilder - Adding Association as subclass of 60870andDNPProtocolInfo +2024-09-07 16:19:45,697 [main] DEBUG ClassBuilder - Adding Association as subclass of CommonProtocolInfo +2024-09-07 16:19:45,697 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent::Association +2024-09-07 16:19:45,702 [main] TRACE ClassBuilder - Class Summary (3 in package IEEE 1815 and IEC 60870-5 Agent) +2024-09-07 16:19:45,825 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=3248, uuid={37A47CAE-5E15-4947-9824-88474381CEB3}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:45,837 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=3708, uuid={33EEE0D1-CEBA-4f55-8388-E92B798B5827}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered (security or health).', htmlDescription='

Provides the last known event encountered (security or health).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:45,851 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=2278, uuid={D8685894-627E-4b6f-B670-3C72CC90DF6B}, since=null, name=Master, alias=, stereotype=table, visibility=public, txtDescription='Client association (when applicable)', htmlDescription='

Client association (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=820, _eaTypeName=MasterAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{MIBPrefix=tC, Version=0}] +2024-09-07 16:19:45,865 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=2287, uuid={364CBB2E-460C-46ce-AC40-149F1C18EAC8}, since=null, name=Outstation, alias=, stereotype=table, visibility=public, txtDescription='Server association (when applicable)', htmlDescription='

Server association (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=821, _eaTypeName=OutstationAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{MIBPrefix=tC, Version=0}] +2024-09-07 16:19:45,877 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=3609, uuid={86E71A83-DD23-44dd-AF05-2C4883970DBA}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object', htmlDescription='

Security events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=914, _eaTypeName=60870andDNPSecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:45,889 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=3608, uuid={E3191E3F-E629-4bfd-A8E1-64D78A2B9955}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object', htmlDescription='

State events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=915, _eaTypeName=60870andDNPNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:45,904 [main] DEBUG ClassBuilder - Adding Summary as subclass of 60870andDNPProtocolInfo +2024-09-07 16:19:45,904 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent::Summary +2024-09-07 16:19:45,909 [main] TRACE ClassBuilder - Class 60870andDNPSecurityNotification (4 in package IEEE 1815 and IEC 60870-5 Agent) +2024-09-07 16:19:46,144 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3519, uuid={8EC7A2E6-FA1E-44bf-871A-8E7A12508F3F}, since=null, name=AuthFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Count of the number of authorization failures.', htmlDescription='

Count of the number of authorization failures.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:46,157 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3518, uuid={F5BEAE2F-4536-4f9c-9478-CF23E2A2D7C5}, since=null, name=CtrlPrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of control actions attempted that did not have the correct privilege.', htmlDescription='

Number of control actions attempted that did not have the correct privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:46,171 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3522, uuid={9ABAB39B-C8D2-427c-805D-DD74A37B15BD}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted.', htmlDescription='

Number PDUs received that could not be decrypted.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:46,186 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=4043, uuid={1BC26E95-9659-4250-87C9-365D73AD44BE}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered (security or health).', htmlDescription='

Provides the last known event encountered (security or health).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:46,201 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3520, uuid={2018A0E6-F948-40c3-98F5-CC50CFBD7527}, since=null, name=PduTampCnt, alias=, stereotype=security, visibility=public, txtDescription='Provides an attribute that indicates the count of the number of PDUs that have been detected to be tampered with.', htmlDescription='

Provides an attribute that indicates the count of the number of PDUs that have been detected to be tampered with.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:46,215 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3521, uuid={F0F1CF0B-1E15-4c19-ACB3-B4C1D745383F}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:46,227 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3523, uuid={22ADAAB8-8A4A-49c6-A261-6FC1E02DFEDB}, since=null, name=SessKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of session key negotiations that failed.', htmlDescription='

Number of session key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:46,240 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3524, uuid={A9AFB691-7A96-43a3-9FDB-B197827A4D8C}, since=null, name=UpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations that failed.', htmlDescription='

Number of update key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:46,255 [main] DEBUG ClassBuilder - Adding 60870andDNPSecurityNotification as subclass of AbstractAgent +2024-09-07 16:19:46,255 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification +2024-09-07 16:19:46,260 [main] TRACE ClassBuilder - Class 60870andDNPNotification (5 in package IEEE 1815 and IEC 60870-5 Agent) +2024-09-07 16:19:46,416 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3526, uuid={6936B8C9-BCD0-46a8-B2A7-4423628A89F6}, since=null, name=InErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of PDUs received that were in error.', htmlDescription='

Number of PDUs received that were in error.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:46,427 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3528, uuid={97175DF9-326B-40f7-B626-D213159A0A56}, since=null, name=InOvCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer overflows detected due to incoming communication.', htmlDescription='

Number of buffer overflows detected due to incoming communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:46,439 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3529, uuid={47916BBB-21C9-49df-8C8B-3A9375A29441}, since=null, name=OutUv, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer underflows detected due to outgoing serial communication.', htmlDescription='

Number of buffer underflows detected due to outgoing serial communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:46,451 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3527, uuid={0C1DB352-F31C-4520-B8BB-43E3CB924F8D}, since=null, name=RxPdu, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDUs.', htmlDescription='

Number of received PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:46,464 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3525, uuid={B77A1C29-3430-40df-AC7F-D1ACC9E6C035}, since=null, name=TxPdu, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmitted PDUs.', htmlDescription='

Number of transmitted PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:46,486 [main] DEBUG ClassBuilder - Adding 60870andDNPNotification as subclass of AbstractAgent +2024-09-07 16:19:46,486 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification +2024-09-07 16:19:46,492 [main] TRACE ClassBuilder - Class MasterAssociation (6 in package IEEE 1815 and IEC 60870-5 Agent) +2024-09-07 16:19:46,531 [main] DEBUG ClassBuilder - Adding MasterAssociation as subclass of Association +2024-09-07 16:19:46,531 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent::MasterAssociation +2024-09-07 16:19:46,538 [main] TRACE ClassBuilder - Class OutstationAssociation (7 in package IEEE 1815 and IEC 60870-5 Agent) +2024-09-07 16:19:46,573 [main] DEBUG ClassBuilder - Adding OutstationAssociation as subclass of Association +2024-09-07 16:19:46,573 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent::OutstationAssociation +2024-09-07 16:19:46,575 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Application Protocols Agents, _depth=4, _eaElementID=131, _objData=UmlObjectData [id=41, uuid={B92342A5-EA3E-4be2-8BA2-4B40BB389569}, since=null, name=IEEE 1815 and IEC 60870-5 Agent, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 20, this package includes the IEEE 1815 DNP and IEC 60870-5-104 protocols classes. This high level class named "summary" includes two objects related to the application stack and "association" class that reports the object related to the possible communication sessions between masters and outstations. +This package includes the version of the objects related to IEC TS 62351-5:2013. +The two class "Master Association" and "Outstation Association" Inherits the Associations class attributes. +For each IEEE 1815 DNP or IEC 60870-5-104 application stack a single instance of "summary" class is provided. This instance of "summary" class can be related to several instances of "OutstationAssociation" and "MasterAssociation" classes which inherit the attributes from the "Association" class. Each instance "Association" is the container of the attributes of a specific application session between an Outstation and a Master. +Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Infoand Security objects, and therefore the more general class as well.', htmlDescription='

As shown in Figure 20, this package includes the IEEE 1815 DNP and IEC 60870-5-104 protocols classes. This high level class named "summary" includes two objects related to the application stack and "association" class that reports the object related to the possible communication sessions between masters and outstations.

This package includes the version of the objects related to IEC TS 62351-5:2013.

The two class "Master Association" and "Outstation Association" Inherits the Associations class attributes.

For each IEEE 1815 DNP or IEC 60870-5-104 application stack a single instance of "summary" class is provided. This instance of "summary" class can be related to several instances of "OutstationAssociation" and "MasterAssociation" classes which inherit the attributes from the "Association" class. Each instance "Association" is the container of the attributes of a specific application session between an Outstation and a Master.

Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Infoand Security objects, and therefore the more general class as well.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=ieee1815andiec60870-5-agent, mibName=IEC-62351-IEC60870-5-IEEE1815-MIB, mibPrefix=tC, objectBranchId=1, objectIdentity=ieee1815andiec60870-5-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=IEEE 1815 and IEC 60870-5 Agent, _objData=UmlObjectData [id=33, uuid={8B1E40BA-BA71-478e-BC81-025DA5A45A35}, since=null, name=IEEE 1815 and IEC 60870 Agent Relationships, alias=, stereotype=, visibility=public, txtDescription='This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes. +Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.', htmlDescription='

This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes.

Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.

'], _portrait=true, _kind=LOGICAL]], _classes=7 +2024-09-07 16:19:46,580 [main] INFO PackageBuilder - processing package IEEE 1815 and IEC 60870-5 Agent - ed2 (6) ... +2024-09-07 16:19:46,607 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=IEEE 1815 and IEC 60870-5 Agent - ed2, _objData=UmlObjectData [id=70, uuid={AA945755-BD47-4be2-A238-6331816DBA4B}, since=null, name=IEEE 1815 and IEC 60870 Agent Relationships, alias=, stereotype=, visibility=public, txtDescription='This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes. +Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.', htmlDescription='

This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes.

Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 16:19:46,764 [main] TRACE ClassBuilder - Class 60870andDNPProtocolInfoEd2 (1 in package IEEE 1815 and IEC 60870-5 Agent - ed2) +2024-09-07 16:19:47,077 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4257, uuid={0C0A0A2C-20C0-4ca9-9856-507B3CF40B66}, since=null, name=ExT0Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T0 (connection establishment).', htmlDescription='

Count the expirations of the 104 time-out T0 (connection establishment).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:47,089 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4258, uuid={C6845E20-7B2D-4978-A35B-D43715366935}, since=null, name=ExT1Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T1 (PDU).', htmlDescription='

Count the expirations of the 104 time-out T1 (PDU).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:47,102 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4259, uuid={15711ABC-5E51-4c9e-95EB-71E116D1CBC1}, since=null, name=ExT2Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T2 (ACK).', htmlDescription='

Count the expirations of the 104 time-out T2 (ACK).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:47,113 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4260, uuid={7A191FB8-98E6-4847-930B-90CB4FC6E61E}, since=null, name=ExT3Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T3 (TEST).', htmlDescription='

Count the expirations of the 104 time-out T3 (TEST).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:47,125 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4261, uuid={81B43739-99E7-46b8-BB5A-340970E92A28}, since=null, name=DiscPduCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of discarded messages.', htmlDescription='

Number of discarded messages.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:47,136 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4262, uuid={8165A5DE-3828-4785-9068-BB9EBEA44FF2}, since=null, name=InErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of PDUs received that were in error.', htmlDescription='

Number of PDUs received that were in error.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:47,147 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4263, uuid={D90D5B9D-8B9D-454d-83A9-E6715E4783C6}, since=null, name=InOvCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer overflows detected due to incoming communication.', htmlDescription='

Number of buffer overflows detected due to incoming communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:47,159 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4264, uuid={E8C8E34D-3689-46e8-B001-9DE7609677AC}, since=null, name=InterPDUTime, alias=, stereotype=protocol, visibility=public, txtDescription='Time between two consecutives PDUs.', htmlDescription='

Time between two consecutives PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:47,171 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4265, uuid={49E9D387-25A4-46e7-8CEB-9C75979FB7AF}, since=null, name=MisPDUCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Provides an attribute that represents the count of missed PDU.', htmlDescription='

Provides an attribute that represents the count of missed PDU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:47,182 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4266, uuid={8845E947-C91C-4a04-B4FE-3AEDC1029732}, since=null, name=OutErr, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmission errors.', htmlDescription='

Number of transmission errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:47,195 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4267, uuid={CCD6A7C5-F0B4-4402-AE88-B35035615DC3}, since=null, name=OutUv, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer underflows detected due to outgoing serial communication.', htmlDescription='

Number of buffer underflows detected due to outgoing serial communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:47,208 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4269, uuid={378D6C1B-B55C-457c-BD03-A017415E19C4}, since=null, name=PDUSizeFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDU with wrong size.', htmlDescription='

Number of received PDU with wrong size.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:47,220 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4273, uuid={8E51A58B-0043-4528-B1BC-BC2B4CC4E59C}, since=null, name=RtxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the number of retransmissions.', htmlDescription='

Count the number of retransmissions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:47,232 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4275, uuid={9768D1CC-F452-448b-B8DF-26922CB00ED7}, since=null, name=RxPduCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDUs (including PDUs with errors).', htmlDescription='

Number of received PDUs (including PDUs with errors).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:47,243 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4276, uuid={00CBF4DB-7CDE-4393-BCCF-90A5601FF89C}, since=null, name=RxSolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Number of solicited requests received. Only for DNP.', htmlDescription='

Number of solicited requests received. Only for DNP.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:47,254 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4277, uuid={A480B5CE-C799-40b2-9A6C-05A2B643932E}, since=null, name=RxUnsolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Contains the count of number of unsolicited requests that have been transmitted since the last reset.', htmlDescription='

Contains the count of number of unsolicited requests that have been transmitted since the last reset.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:47,266 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4280, uuid={7A2A5BFA-FCB8-44a4-A4CF-442CC8A9FB0E}, since=null, name=TxPduCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmitted PDUs.', htmlDescription='

Number of transmitted PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:47,278 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4281, uuid={BF7B41CE-7B62-4a5f-A9F6-D1E8A5A4952E}, since=null, name=TxSolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Number of solicited requests transmitted. Only for DNP.', htmlDescription='

Number of solicited requests transmitted. Only for DNP.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:47,292 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4282, uuid={BB6FDD4B-6837-4d88-B268-0D09301311FD}, since=null, name=TxUnsolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Contains the count of number of unsolicited requests that have been transmitted since the last reset.', htmlDescription='

Contains the count of number of unsolicited requests that have been transmitted since the last reset.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:47,343 [main] DEBUG ClassBuilder - Adding 60870andDNPProtocolInfoEd2 as subclass of AbstractAgent +2024-09-07 16:19:47,347 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2 +2024-09-07 16:19:47,353 [main] TRACE ClassBuilder - Class IEC62351part5 (1 in package IEEE 1815 and IEC 60870-5 Agent - ed2) +2024-09-07 16:19:47,769 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4306, uuid={85A6FA13-2677-4c99-BC12-DD878801CFC4}, since=null, name=StAsProcScsCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Station Association procedure has been successfully performed.', htmlDescription='

Number of times the Station Association procedure has been successfully performed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:47,781 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4307, uuid={F82373BD-CE1D-4a57-B13C-413810F179B0}, since=null, name=StAsProcFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Station Association procedure has failed.', htmlDescription='

Number of times the Station Association procedure has failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:47,793 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4308, uuid={69BDB5BC-DE98-4195-8110-202AD93E7AFC}, since=null, name=SKeyProcScsCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Session Key was changed successfully.', htmlDescription='

Number of times the Session Key was changed successfully.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:47,805 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4336, uuid={8BE551FF-4A0A-45b6-A0A0-D051150BF74D}, since=null, name=KeyAutnAlgSupFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Data authentication algorithm support failures. Controlled station only.', htmlDescription='

Number of Data authentication algorithm support failures. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:47,817 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4337, uuid={60FED222-F3AD-4f4c-A733-DE4950C990C2}, since=null, name=SKeyWrapAlgSupFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of key wrap algorithm support failures. Controlled station only.', htmlDescription='

Number of key wrap algorithm support failures. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:47,828 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4338, uuid={C2B0C0DF-C9DD-4aef-932E-B016DA2E6276}, since=null, name=DataProtAlgSupFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Data authentication algorithm support failures. Controlled station only.', htmlDescription='

Number of Data authentication algorithm support failures. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:47,838 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4339, uuid={55BE76A2-DF93-45de-9D84-4EE282ACC41B}, since=null, name=SKeyAutnErrCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Key authentication errors.', htmlDescription='

Number of Key authentication errors.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:47,850 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4340, uuid={97FE21BE-F20E-4b5f-9E7C-62B9BF57A4C7}, since=null, name=DataAutnErrCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of non-authentic Secure Data messages received.', htmlDescription='

Number of non-authentic Secure Data messages received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:47,861 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4341, uuid={303256CB-76CD-4b39-8D6B-6B5F7E4718DC}, since=null, name=UnxpMsgErrCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of unexpected messages received.', htmlDescription='

Number of unexpected messages received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:47,871 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4342, uuid={7B618961-D677-4bf9-83FB-40700B9BA9CC}, since=null, name=MaxReplyToutCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Max Reply Timeouts threshold was reached. Controlling station only.', htmlDescription='

Number of times the Max Reply Timeouts threshold was reached. Controlling station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:47,882 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4343, uuid={D8D3268F-F4C4-49d7-AB23-7946C1CEA6D1}, since=null, name=NodeAutrFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of unauthorized communication attempts.', htmlDescription='

Number of unauthorized communication attempts.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:47,893 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4344, uuid={23FA293A-4F87-4c7c-B4E2-6B3955B5ED61}, since=null, name=CtrlOperAutrFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of unauthorized operations. Controlled station only.', htmlDescription='

Number of unauthorized operations. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:47,903 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4345, uuid={6193E983-C056-491a-B7A3-EBE58355374C}, since=null, name=RemCertCheckFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of invalid certificates received.', htmlDescription='

Number of invalid certificates received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:47,915 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4346, uuid={46BA0F58-A6A4-4d23-9157-B07A5643B284}, since=null, name=RemCertExpiredCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the remote station's certificate expired.', htmlDescription='

Number of times the remote station's certificate expired.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:47,926 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4347, uuid={C54FF7FA-520C-4d4f-A4A1-B7E88C041568}, since=null, name=RemCertRevokedCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the remote station's certificate has been revoked.', htmlDescription='

Number of times the remote station's certificate has been revoked.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:47,937 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4348, uuid={95955856-F76D-4e05-B055-4FF8029E1A9D}, since=null, name=LocCertExpiredCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the local station's certificate expired.', htmlDescription='

Number of times the local station's certificate expired.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:47,950 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4349, uuid={DE7B5995-13C2-44c8-8579-6CEF37D201AF}, since=null, name=LocCertRevokedCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the local station's certificate has been revoked.', htmlDescription='

Number of times the local station's certificate has been revoked.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:47,962 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4350, uuid={2223C6EC-FBAE-4b91-8FF2-4407C5DFFF36}, since=null, name=KeysInvRemCertRevCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Cryptographic Keys were invalidated due to remote station's certificate revocation.', htmlDescription='

Number of times the Cryptographic Keys were invalidated due to remote station's certificate revocation.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:47,974 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4351, uuid={5DCACFEC-13BF-47c0-88D7-950B26D9DBBB}, since=null, name=KeysInvLocCertRevCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Cryptographic Keys were invalidated due to local station's certificate revocation.', htmlDescription='

Number of times the Cryptographic Keys were invalidated due to local station's certificate revocation.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:47,986 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4352, uuid={4A474D59-99BF-495e-BB9D-C3E096F5F83B}, since=null, name=DataAutnScsCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of authentic Secure Data messages received.', htmlDescription='

Number of authentic Secure Data messages received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:47,999 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4353, uuid={7F7D3F88-910D-4dae-B5B1-DED2E46A51C7}, since=null, name=ReplyToutCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Reply Timeouts. Controlling station only.', htmlDescription='

Number of Reply Timeouts. Controlling station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:48,011 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4354, uuid={E6FD44A6-C9CE-45d6-BA4A-3EF7DECB1691}, since=null, name=RequestToutCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Request Timeouts. Controlled station only.', htmlDescription='

Number of Request Timeouts. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:48,025 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4355, uuid={65E3DDC2-B3AC-4c86-8AF6-39C43114EC3C}, since=null, name=SKeyInvUseCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Session Key was invalidated due to Max Session Key Usage Count. Controlled station only.', htmlDescription='

Number of times the Session Key was invalidated due to Max Session Key Usage Count. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:48,038 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4356, uuid={3C26B695-A1A0-44c3-BE08-C75CA78940DA}, since=null, name=SKeyInvToutCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Session Keys were invalidated due to Max Session Key Usage Timeout. Controlled station only.', htmlDescription='

Number of times the Session Keys were invalidated due to Max Session Key Usage Timeout. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:48,050 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4357, uuid={B3A60D84-37C0-40f2-9019-17B8C45C778E}, since=null, name=SKeyProcFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Session Key Change failures.', htmlDescription='

Number of Session Key Change failures.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:48,061 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4335, uuid={90633EE5-94E7-44d3-B98C-08140BCBFCF1}, since=null, name=ProtInfoErrCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of protocol information errors. Controlled station only.', htmlDescription='

Number of protocol information errors. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:48,085 [main] DEBUG ClassBuilder - Adding IEC62351part5 as superclass of 60870andDNPProtocolInfoEd2 +2024-09-07 16:19:48,087 [main] DEBUG ClassBuilder - Adding IEC62351part5 as subclass of AbstractAgent +2024-09-07 16:19:48,087 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5 +2024-09-07 16:19:48,092 [main] TRACE ClassBuilder - Class Association (2 in package IEEE 1815 and IEC 60870-5 Agent - ed2) +2024-09-07 16:19:48,290 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4284, uuid={D3B5EC3D-3991-40b8-85B6-2AFB3206637A}, since=null, name=AssociationId, alias=, stereotype=index, visibility=public, txtDescription='Id of the association.', htmlDescription='

Id of the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:48,302 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4285, uuid={DB5A65D6-2349-4a56-A200-129882572A95}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:48,319 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4286, uuid={FABF76A8-43C1-4be2-89C5-4C3B7F18604B}, since=null, name=LocAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Local address.', htmlDescription='

Local address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 16:19:48,336 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4287, uuid={F933B36B-EE52-4922-9AA4-F0CB5A55F9CE}, since=null, name=LocAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Local address type.', htmlDescription='

Local address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 16:19:48,349 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4288, uuid={4EDE24F7-C4DB-4078-926A-3518CCBB1D8F}, since=null, name=ProtID, alias=, stereotype=protocol, visibility=public, txtDescription='Protocol ID in use.', htmlDescription='

Protocol ID in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=780, _eaTypeName=ProtIdType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:48,362 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4289, uuid={8CE59398-E353-464a-9B25-03588802C32E}, since=null, name=ProviderDesc, alias=, stereotype=identity, visibility=public, txtDescription='Textual description of the provider that is in use.', htmlDescription='

Textual description of the provider that is in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:48,374 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4290, uuid={BD1C65C9-07DF-4192-8713-A93BC3E1C050}, since=null, name=ProviderName, alias=, stereotype=identity, visibility=public, txtDescription='Identity of the provider responding as the outstation for this association.', htmlDescription='

Identity of the provider responding as the outstation for this association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:48,394 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4291, uuid={BEB1F3A7-96E9-4a7f-B4CE-78A311245A60}, since=null, name=RemAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address.', htmlDescription='

Remote address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{isIndex=yes, mibIndex=yes, Version=0}] +2024-09-07 16:19:48,415 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4292, uuid={59810D47-4220-40e1-A018-FE80613740BC}, since=null, name=RemAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address type.', htmlDescription='

Remote address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{isIndex=yes, mibIndex=yes, Version=0}] +2024-09-07 16:19:48,427 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4293, uuid={9AE7823D-F26B-48f8-A955-DA056C8C0F32}, since=null, name=TLnkErrCnt, alias=, stereotype=health, visibility=public, txtDescription='Count of communication link errors detected.', htmlDescription='

Count of communication link errors detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:48,438 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4294, uuid={FFAF85C1-58F9-4330-80FE-18A5100B3EE7}, since=null, name=TLnkTyp, alias=, stereotype=protocol, visibility=public, txtDescription='Type of transport being utilized.', htmlDescription='

Type of transport being utilized.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=778, _eaTypeName=LnkType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:48,489 [main] DEBUG ClassBuilder - Adding Association as subclass of CommonProtocolInfo +2024-09-07 16:19:48,491 [main] DEBUG ClassBuilder - Adding Association as subclass of AbstractAgent +2024-09-07 16:19:48,492 [main] DEBUG ClassBuilder - Adding Association as subclass of 60870andDNPProtocolInfoEd2 +2024-09-07 16:19:48,495 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent - ed2::Association +2024-09-07 16:19:48,500 [main] TRACE ClassBuilder - Class Summary (3 in package IEEE 1815 and IEC 60870-5 Agent - ed2) +2024-09-07 16:19:48,621 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4295, uuid={E543F5FE-D414-4517-9CFA-17AF02358984}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:48,634 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4296, uuid={A601B46C-5CB2-4663-BBDD-6B075EA07FE8}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered (security or health).', htmlDescription='

Provides the last known event encountered (security or health).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:48,649 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4297, uuid={DD17EC1E-C1D2-444e-BC3B-65A68EB1768E}, since=null, name=Master, alias=, stereotype=table, visibility=public, txtDescription='Client association (when applicable)', htmlDescription='

Client association (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=1057, _eaTypeName=MasterAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{MIBPrefix=tC, Version=0}] +2024-09-07 16:19:48,664 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4298, uuid={927B1068-7146-4ea9-B50A-FD00B14D1747}, since=null, name=Outstation, alias=, stereotype=table, visibility=public, txtDescription='Server association (when applicable)', htmlDescription='

Server association (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=1056, _eaTypeName=OutstationAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{MIBPrefix=tC, Version=0}] +2024-09-07 16:19:48,676 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4299, uuid={E4361517-7300-4db5-A392-69EAD372A4E2}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object', htmlDescription='

Security events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1055, _eaTypeName=60870andDNPSecurityNotificationEd2, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:48,691 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4300, uuid={240DF754-7E5E-4226-B4F4-F1DDBE6652EB}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object', htmlDescription='

State events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1061, _eaTypeName=60870andDNPNotificationEd2, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:48,706 [main] DEBUG ClassBuilder - Adding Summary as subclass of 60870andDNPProtocolInfoEd2 +2024-09-07 16:19:48,706 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent - ed2::Summary +2024-09-07 16:19:48,711 [main] TRACE ClassBuilder - Class 60870andDNPSecurityNotificationEd2 (4 in package IEEE 1815 and IEC 60870-5 Agent - ed2) +2024-09-07 16:19:48,756 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2, _objData=UmlObjectData [id=4358, uuid={6AA445FA-BC7C-4384-8725-306C37B37564}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:48,770 [main] DEBUG ClassBuilder - Adding 60870andDNPSecurityNotificationEd2 as subclass of AbstractAgent +2024-09-07 16:19:48,771 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2 +2024-09-07 16:19:48,776 [main] TRACE ClassBuilder - Class 60870andDNPNotificationEd2 (5 in package IEEE 1815 and IEC 60870-5 Agent - ed2) +2024-09-07 16:19:48,820 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2, _objData=UmlObjectData [id=4360, uuid={60B53F7E-A6F1-449b-8917-E860F3F35ECB}, since=null, name=LastEvent, alias=, stereotype=protocol, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:48,834 [main] DEBUG ClassBuilder - Adding 60870andDNPNotificationEd2 as subclass of AbstractAgent +2024-09-07 16:19:48,834 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2 +2024-09-07 16:19:48,840 [main] TRACE ClassBuilder - Class MasterAssociation (6 in package IEEE 1815 and IEC 60870-5 Agent - ed2) +2024-09-07 16:19:48,873 [main] DEBUG ClassBuilder - Adding MasterAssociation as subclass of Association +2024-09-07 16:19:48,873 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent - ed2::MasterAssociation +2024-09-07 16:19:48,879 [main] TRACE ClassBuilder - Class OutstationAssociation (7 in package IEEE 1815 and IEC 60870-5 Agent - ed2) +2024-09-07 16:19:48,911 [main] DEBUG ClassBuilder - Adding OutstationAssociation as subclass of Association +2024-09-07 16:19:48,911 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent - ed2::OutstationAssociation +2024-09-07 16:19:48,915 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Application Protocols Agents, _depth=4, _eaElementID=1054, _objData=UmlObjectData [id=390, uuid={86E0AF53-5128-4026-88AF-43035DFFE86D}, since=null, name=IEEE 1815 and IEC 60870-5 Agent - ed2, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 21, this package includes the IEEE 1815 DNP, IEC 60870-5-104 protocols classes and the IEC 62351-5 security objects. The high level class named "summary" includes two objects related to the application stack and "association" class that reports the object related to the possible communication sessions between masters and outstations. +This package includes the new version of the objects related to IEC 62351-5:2023. +The two classes "Master Association" and "Outstation Association" Inherits the Associations class attributes. +For each IEEE 1815 DNP or IEC 60870-5-104 application stack a single instance of "summary" class is provided. This instance of "summary" class can be related to several instances of "OutstationAssociation" and "MasterAssociation" classes which inherit the attributes from the "Association" class. Each instance "Association" is the container of the attributes of a specific application session between an Outstation and a Master. +Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Security objects, and therefore the more general class as well.', htmlDescription='

As shown in Figure 21, this package includes the IEEE 1815 DNP, IEC 60870-5-104 protocols classes and the IEC 62351-5 security objects. The high level class named "summary" includes two objects related to the application stack and "association" class that reports the object related to the possible communication sessions between masters and outstations.

This package includes the new version of the objects related to IEC 62351-5:2023.

The two classes "Master Association" and "Outstation Association" Inherits the Associations class attributes.

For each IEEE 1815 DNP or IEC 60870-5-104 application stack a single instance of "summary" class is provided. This instance of "summary" class can be related to several instances of "OutstationAssociation" and "MasterAssociation" classes which inherit the attributes from the "Association" class. Each instance "Association" is the container of the attributes of a specific application session between an Outstation and a Master.

Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Security objects, and therefore the more general class as well.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=ieee1815andiec60870-5-agent-ed2, mibName=IEC-62351-IEC60870-5-IEEE1815-MIB-ED2, mibPrefix=tC2, objectBranchId=3, objectIdentity=ieee1815andiec60870-5-agent-ed2}, 1_diagrams=[DiagramBuilder [_containingPackage=IEEE 1815 and IEC 60870-5 Agent - ed2, _objData=UmlObjectData [id=70, uuid={AA945755-BD47-4be2-A238-6331816DBA4B}, since=null, name=IEEE 1815 and IEC 60870 Agent Relationships, alias=, stereotype=, visibility=public, txtDescription='This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes. +Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.', htmlDescription='

This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes.

Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.

'], _portrait=true, _kind=LOGICAL]], _classes=8 +2024-09-07 16:19:48,920 [main] INFO PackageBuilder - processing package IEC61850 Agent (8) ... +2024-09-07 16:19:49,026 [main] INFO PackageBuilder - processing package ACSI (1) ... +2024-09-07 16:19:49,050 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=ACSI, _objData=UmlObjectData [id=45, uuid={1B1AAFC2-CBA3-401c-873D-7B6CDCE9CBD6}, since=null, name=ACSI, alias=, stereotype=, visibility=public, txtDescription='ACSI classes relationship. ACSI Summary inherit Security attributes from the more general classes.', htmlDescription='

ACSI classes relationship. ACSI Summary inherit Security attributes from the more general classes.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 16:19:49,079 [main] TRACE ClassBuilder - Class ACSISummary (1 in package ACSI) +2024-09-07 16:19:49,363 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1254, uuid={60676AFB-06AF-480c-86DC-DDF92723390B}, since=null, name=assocPoolMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number of client/server associations.', htmlDescription='

Maximum number of client/server associations.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:49,376 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1255, uuid={B21687C2-9C22-4c8f-A435-15A69F7147D6}, since=null, name=assocPoolUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of client/server associations active.', htmlDescription='

Number of client/server associations active.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:49,387 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1278, uuid={6CA26B83-F728-4e94-9E7E-89E5998C3308}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:49,398 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=3931, uuid={75069142-E376-4865-9020-9924B1C82527}, since=null, name=CtrlPrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of control actions attempted that did not have the correct privilege.', htmlDescription='

Number of control actions attempted that did not have the correct privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:49,409 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1262, uuid={44D0F3A5-606C-4650-ABCB-FE16EEE777E3}, since=null, name=gsePubMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number GSE Publications supported.', htmlDescription='

Maximum number GSE Publications supported.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:49,423 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=2263, uuid={1C2B216E-5A48-41c9-8A95-E49BCC60C316}, since=null, name=gsePubUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of active GSE Publications.', htmlDescription='

Number of active GSE Publications.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:49,436 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1264, uuid={B2FDE11B-6BA3-4051-B3BD-15152FB16FED}, since=null, name=gseSubMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number of GSE Subscriptions.', htmlDescription='

Maximum number of GSE Subscriptions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:49,448 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1263, uuid={1842AD96-E339-455f-9BC0-7F98C8F31CEC}, since=null, name=gseSubUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of active GSE Subscriptions.', htmlDescription='

Number of active GSE Subscriptions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:49,461 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=3709, uuid={014B3324-A84F-455f-957B-1420E50D5C59}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:49,473 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=3930, uuid={F5A04750-F784-4c0c-AB12-2298DE62BB99}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:49,485 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1271, uuid={A10D2F0C-3A4C-4aa4-B832-655CEBF8F43C}, since=null, name=RemoteEstAssocCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count of the number of currently active associations that were established through the ACSI associate response.', htmlDescription='

Count of the number of currently active associations that were established through the ACSI associate response.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:49,497 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=3932, uuid={7EF57F32-F44A-4126-9201-8EFAD41F12D4}, since=null, name=AcsCtlFail, alias=, stereotype=security, visibility=public, txtDescription='Number of access control failures detected (i.e., when a data object that the client wanted to access exists in the server, but based on the access view of the association with that client, an access to the data object was refused).', htmlDescription='

Number of access control failures detected (i.e., when a data object that the client wanted to access exists in the server, but based on the access view of the association with that client, an access to the data object was refused).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:49,509 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1282, uuid={2E06924F-F7EB-44a7-A1D2-2428322A0892}, since=null, name=svPubMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number SV publications supported.', htmlDescription='

Maximum number SV publications supported.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:49,520 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1281, uuid={D6CCDFE9-6558-4cd0-B508-8BA15852D950}, since=null, name=svPubUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of active SV publications.', htmlDescription='

Number of active SV publications.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:49,533 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1284, uuid={769A7A31-DA16-43a0-A340-14FF723B8636}, since=null, name=svSubMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number SV subscriptions supported.', htmlDescription='

Maximum number SV subscriptions supported.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:49,544 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1283, uuid={40270792-85F3-4361-850B-A5F29E1B75C0}, since=null, name=svSubUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of active SV subscriptions.', htmlDescription='

Number of active SV subscriptions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:49,559 [main] DEBUG ClassBuilder - Adding ACSISummary as subclass of AbstractAgent +2024-09-07 16:19:49,559 [main] TRACE ClassBuilder - read from EA: ACSI::ACSISummary +2024-09-07 16:19:49,561 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850 Agent, _depth=5, _eaElementID=685, _objData=UmlObjectData [id=246, uuid={624494C4-C544-437f-BE42-BED22973E721}, since=null, name=ACSI, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 22, the ACSI package includes the IEC 61850 Abstract Communication Service Interface (ACSI) classes.', htmlDescription='

As shown in Figure 22, the ACSI package includes the IEC 61850 Abstract Communication Service Interface (ACSI) classes.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=acsi-agent, mibName=IEC-62351-IEC61850-ACSI-MIB, mibPrefix=aCSI, objectBranchId=1, objectIdentity=acsi-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=ACSI, _objData=UmlObjectData [id=45, uuid={1B1AAFC2-CBA3-401c-873D-7B6CDCE9CBD6}, since=null, name=ACSI, alias=, stereotype=, visibility=public, txtDescription='ACSI classes relationship. ACSI Summary inherit Security attributes from the more general classes.', htmlDescription='

ACSI classes relationship. ACSI Summary inherit Security attributes from the more general classes.

'], _portrait=true, _kind=LOGICAL]], _classes=1 +2024-09-07 16:19:49,567 [main] INFO PackageBuilder - processing package MMS (2) ... +2024-09-07 16:19:49,589 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=MMS, _objData=UmlObjectData [id=42, uuid={C69DADFE-D7C7-45d0-83FC-41012CB3C1CA}, since=null, name=MMS, alias=, stereotype=, visibility=public, txtDescription='MMS classes relationship. MMS Provider and MMS Association inherit both Security and Procotol Info attributes from the more general classes.', htmlDescription='

MMS classes relationship. MMS Provider and MMS Association inherit both Security and Procotol Info attributes from the more general classes.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 16:19:49,692 [main] TRACE ClassBuilder - Class MMSProtocolInfo (1 in package MMS) +2024-09-07 16:19:49,914 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=4122, uuid={B070617B-7900-42b1-8DA7-F591BA2099FA}, since=null, name=ErrorRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of error PDU that have been received including: +- Confirmed-ErrorPDU (only for client) +- Cancel-ErrorPDU (only for client) +- Initiate-ErrorPDU +- Conclude-ErrorPDU.', htmlDescription='

Number of error PDU that have been received including:

  • Confirmed-ErrorPDU (only for client)
  • Cancel-ErrorPDU (only for client)
  • Initiate-ErrorPDU
  • Conclude-ErrorPDU.
'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:49,926 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=4123, uuid={650B0D6F-9766-4bae-9182-5EC830CB64E3}, since=null, name=ErrorTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of error PDU that have been sent including: +- Confirmed-ErrorPDU (only for server) +- Cancel-ErrorPDU (only for server) +- Initiate-ErrorPDU +- Conclude-ErrorPDU.', htmlDescription='

Number of error PDU that have been sent including:

  • Confirmed-ErrorPDU (only for server)
  • Cancel-ErrorPDU (only for server)
  • Initiate-ErrorPDU
  • Conclude-ErrorPDU.
'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:49,939 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3214, uuid={30ED064F-399A-4e3a-97D2-D106F082CF4F}, since=null, name=InfoRptRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of MMS Information Reports that have been received.', htmlDescription='

Number of MMS Information Reports that have been received.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:49,951 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=4120, uuid={CEC51410-D5D9-4150-B1C4-AA691F453D23}, since=null, name=InfoRptTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of MMS Information Reports that have been sent.', htmlDescription='

Number of MMS Information Reports that have been sent.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:49,964 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3969, uuid={94722C63-A68B-4460-A0BA-93F19272E206}, since=null, name=MisCmdAckCnt, alias=, stereotype=security, visibility=public, txtDescription='Provides an attribute that indicates the count of the number of MMS request that have not been acknowledged.', htmlDescription='

Provides an attribute that indicates the count of the number of MMS request that have not been acknowledged.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:49,977 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3414, uuid={8F4B6AF1-5A4A-47a1-A365-8963A1FAE78F}, since=null, name=MMSProExchTime, alias=, stereotype=performance, visibility=public, txtDescription='MMS Profile exchange duration (seconds). MMS profile is meant as Logical Devices, Logical Nodes and Dataset definition are exchanged.', htmlDescription='

MMS Profile exchange duration (seconds). MMS profile is meant as Logical Devices, Logical Nodes and Dataset definition are exchanged.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:49,988 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3211, uuid={6C0EA55B-1ACA-4a3a-9068-E9C2CEC96B9D}, since=null, name=RejectRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of RejectPDU received.', htmlDescription='

Number of RejectPDU received.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:50,000 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3212, uuid={C8554D1E-C163-4286-96BB-E26046672513}, since=null, name=RejectTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of RejectPDU sent.', htmlDescription='

Number of RejectPDU sent.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:50,012 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3208, uuid={C94BBBC3-1104-42b0-B156-E80FE61CBDB8}, since=null, name=ReqRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of request PDU that have been received including: +- Confirmed-RequestPDU (only for server) +- Cancel-RequestPDU (only for server) +- Initiate-RequestPDU +- Conclude-RequestPDU.', htmlDescription='

Number of request PDU that have been received including:

  • Confirmed-RequestPDU (only for server)
  • Cancel-RequestPDU (only for server)
  • Initiate-RequestPDU
  • Conclude-RequestPDU.
'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:50,024 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3206, uuid={023D9D84-38BC-4c86-B9CC-78085AC2F869}, since=null, name=ReqTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of request PDU that have been sent including: +- Confirmed-RequestPDU (only for client) +- Cancel-RequestPDU (only for client) +- Initiate-RequestPDU +- Conclude-RequestPDU.', htmlDescription='

Number of request PDU that have been sent including:

  • Confirmed-RequestPDU (only for client)
  • Cancel-RequestPDU (only for client)
  • Initiate-RequestPDU
  • Conclude-RequestPDU.
'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:50,035 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3210, uuid={B07FEDC7-72A1-43b4-9CA9-AEDC8CE77EAF}, since=null, name=RespRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of response PDU that have been received including: +- Confirmed-ResponsePDU (only for client) +- Cancel-ResponsePDU (only for client) +- Initiate-ResponsePDU +- Conclude-ResponsePDU +.', htmlDescription='

Number of response PDU that have been received including:

  • Confirmed-ResponsePDU (only for client)
  • Cancel-ResponsePDU (only for client)
  • Initiate-ResponsePDU
  • Conclude-ResponsePDU

.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:50,046 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3209, uuid={06689B60-CBF2-4d45-8B5A-FB998997F62F}, since=null, name=RespTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of response PDU that have been sent including: +- Confirmed-ResponsePDU (only for server) +- Cancel-ResponsePDU (only for server) +- Initiate-ResponsePDU +- Conclude-ResponsePDU..', htmlDescription='

Number of response PDU that have been sent including:

  • Confirmed-ResponsePDU (only for server)
  • Cancel-ResponsePDU (only for server)
  • Initiate-ResponsePDU
  • Conclude-ResponsePDU..
'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:50,057 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3935, uuid={1F695097-A4ED-4e85-94FE-44B50CFE99F1}, since=null, name=SessKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of session key negotiations that failed.', htmlDescription='

Number of session key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:50,092 [main] DEBUG ClassBuilder - Adding MMSProtocolInfo as subclass of AbstractAgent +2024-09-07 16:19:50,092 [main] TRACE ClassBuilder - read from EA: MMS::MMSProtocolInfo +2024-09-07 16:19:50,097 [main] TRACE ClassBuilder - Class MMSProvider (2 in package MMS) +2024-09-07 16:19:50,419 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3918, uuid={7DB85E2A-0EB8-4226-BEBB-924AB496EB36}, since=null, name=AProfileDecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted within A-Profile session.', htmlDescription='

Number PDUs received that could not be decrypted within A-Profile session.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:50,432 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3938, uuid={A3E432FD-BDD0-4ccf-9233-0A226162B425}, since=null, name=AuthFail, alias=, stereotype=security, visibility=public, txtDescription='Count of the number of authorization failures.', htmlDescription='

Count of the number of authorization failures.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:50,445 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3245, uuid={D1866C6F-051F-404e-9A2B-AC1D6D44D3FC}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:50,457 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2831, uuid={2F166DD9-DE35-44b6-91DE-78EA3A9D0652}, since=null, name=ConnFailInCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of incoming Initiate-requests that have been refused.', htmlDescription='

Number of incoming Initiate-requests that have been refused.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:50,468 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2832, uuid={BA3D3302-5D14-40f7-9AA3-145CCB5F1361}, since=null, name=ConnFailOutCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of outgoing Initiate-requests that have been refused.', htmlDescription='

Number of outgoing Initiate-requests that have been refused.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:50,479 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3936, uuid={86BF3330-EB9C-4633-AB27-D7612CE8D05C}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted.', htmlDescription='

Number PDUs received that could not be decrypted.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:50,490 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3710, uuid={0163C656-8AA1-4c67-82E4-258002A53DDE}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:50,506 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2803, uuid={DEAB3F8B-E3E4-4664-B8B6-2D0C07019F7B}, since=null, name=MMS, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed MMS information can be obtained for each connection.', htmlDescription='

Provides a table through which more detailed MMS information can be obtained for each connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=693, _eaTypeName=MMSAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=mMS, objectIdentity=mMSMMSEntry, Version=0}] +2024-09-07 16:19:50,517 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3915, uuid={294CE46B-D0B5-49f5-BF02-E0988430AD45}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:50,528 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2810, uuid={22C7C42F-8D14-493c-A2EA-CCD76245D0BE}, since=null, name=ProviderDesc, alias=, stereotype=identity, visibility=public, txtDescription='Description of provider.', htmlDescription='

Description of provider.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:50,539 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2811, uuid={D38418EB-A105-4a60-8D61-BB360D9237B5}, since=null, name=ProviderName, alias=, stereotype=identity, visibility=public, txtDescription='Name of the provider.', htmlDescription='

Name of the provider.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:50,550 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3614, uuid={A048CDB1-2C04-4ec3-B2B0-2F9ACEE80E4F}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=920, _eaTypeName=MMSSecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:50,564 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=4030, uuid={354E6408-AAF1-42b2-B717-205A592C81BE}, since=null, name=SessionEstablishmentRate, alias=, stereotype=performance, visibility=public, txtDescription='The number of times any Association has been restablished after a disconnection within 15 minutes.', htmlDescription='

The number of times any Association has been restablished after a disconnection within 15 minutes.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:50,576 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=4031, uuid={F68354BD-DA88-4aca-B25F-9C06F7BEFBB9}, since=null, name=SessionRestartCnt, alias=, stereotype=security, visibility=public, txtDescription='Provides an attribute that indicates the count of the number of times the session has been restablished.', htmlDescription='

Provides an attribute that indicates the count of the number of times the session has been restablished.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:50,589 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3613, uuid={0233C10F-B173-4f99-A4E9-A79E7500E3B0}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object.', htmlDescription='

State events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=921, _eaTypeName=MMSNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:50,601 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3919, uuid={575C57A8-200D-4db3-B297-AE2635C01BC3}, since=null, name=TProfileDecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted within T-Profile session.', htmlDescription='

Number PDUs received that could not be decrypted within T-Profile session.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:50,614 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3921, uuid={D87795A0-A0B4-4126-9015-DBEBDD79CA50}, since=null, name=TProfileSessKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of session key negotiations that failed. This applies only to T-Profile.', htmlDescription='

Number of session key negotiations that failed. This applies only to T-Profile.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:50,625 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3975, uuid={5C2EA464-4FB4-4413-90B5-E3451373A966}, since=null, name=UpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations that failed.', htmlDescription='

Number of update key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:50,640 [main] DEBUG ClassBuilder - Adding MMSProvider as subclass of MMSProtocolInfo +2024-09-07 16:19:50,640 [main] TRACE ClassBuilder - read from EA: MMS::MMSProvider +2024-09-07 16:19:50,645 [main] TRACE ClassBuilder - Class MMSAssociation (3 in package MMS) +2024-09-07 16:19:50,882 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2820, uuid={3D4B3729-146B-4ed2-976D-D539FFAAAE40}, since=null, name=Active, alias=, stereotype=protocol, visibility=public, txtDescription='True if association is in use.', htmlDescription='

True if association is in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:50,897 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3727, uuid={9E3D1B59-980F-4217-B141-1C353C1D4E72}, since=null, name=AssociationId, alias=, stereotype=index, visibility=public, txtDescription='Id of the association.', htmlDescription='

Id of the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:50,910 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=4119, uuid={8717A248-6228-4974-9285-1B96BBEDF420}, since=null, name=Client, alias=, stereotype=protocol, visibility=public, txtDescription='True if role is client, false if role is server', htmlDescription='

True if role is client, false if role is server

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:50,921 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3246, uuid={2C472C21-D2BB-4a4b-8D93-5C0E3346AA95}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:50,932 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3939, uuid={EBEAECC3-8BE4-4469-B891-4898C2954EE5}, since=null, name=HndShTime, alias=, stereotype=performance, visibility=public, txtDescription='Duration of the MMS session handshake. This apply to the sender only.', htmlDescription='

Duration of the MMS session handshake. This apply to the sender only.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:50,943 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2844, uuid={C34BBC7F-ACC5-4172-B430-081B10B49819}, since=null, name=RemoteEstAssos, alias=, stereotype=protocol, visibility=public, txtDescription='True if the association was established due to an incoming Initiate-Request.', htmlDescription='

True if the association was established due to an incoming Initiate-Request.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:50,958 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2876, uuid={BF20C38C-E4DE-439e-A7C3-2D9FCB7CA1C2}, since=null, name=RemoteIP, alias=, stereotype=protocol, visibility=public, txtDescription='Remote entity IP network address.', htmlDescription='

Remote entity IP network address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 16:19:50,970 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3692, uuid={5EA2A0D0-6DA8-427e-ADEB-2CC19FDBB143}, since=null, name=RemoteIPAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:50,984 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2873, uuid={14DA2F03-EFD1-4b98-A66F-EFD6046F1025}, since=null, name=RemotePSEL, alias=, stereotype=protocol, visibility=public, txtDescription='Remote entity presentation selector.', htmlDescription='

Remote entity presentation selector.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=782, _eaTypeName=Selector, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 16:19:50,997 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2874, uuid={C4E19558-A5AA-43ce-A203-6E7BACDD96C7}, since=null, name=RemoteSSEL, alias=, stereotype=protocol, visibility=public, txtDescription='Remote entity session selector.', htmlDescription='

Remote entity session selector.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=782, _eaTypeName=Selector, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 16:19:51,010 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2875, uuid={C5BC70EE-7E84-4822-95B3-1EA00D57E252}, since=null, name=RemoteTSEL, alias=, stereotype=protocol, visibility=public, txtDescription='Remote entity transport selector.', htmlDescription='

Remote entity transport selector.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=782, _eaTypeName=Selector, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 16:19:51,021 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3972, uuid={47D3343F-E927-48ec-8558-54CC13AEC30E}, since=null, name=ReportPer100Seconds, alias=, stereotype=performance, visibility=public, txtDescription='Number of Reports received/transmitted during the last 100 seconds.', htmlDescription='

Number of Reports received/transmitted during the last 100 seconds.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:51,032 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3968, uuid={D1802DDE-FE54-49d6-9EBB-1A5DE0464F3A}, since=null, name=RptReceptionDelay, alias=, stereotype=performance, visibility=public, txtDescription='The time required to receive the last Report. This time is the difference between the reception time and the emission timestamp stored inside the report. If not synchronized this value shall be set to -1.', htmlDescription='

The time required to receive the last Report. This time is the difference between the reception time and the emission timestamp stored inside the report. If not synchronized this value shall be set to -1.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:51,044 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3913, uuid={B94A45CC-7384-41ee-9821-F77D634C675F}, since=null, name=SecurityProfile, alias=, stereotype=protocol, visibility=public, txtDescription='This is the security profile in use for this association (no security, integrity A profile, A+, AE+).', htmlDescription='

This is the security profile in use for this association (no security, integrity A profile, A+, AE+).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1013, _eaTypeName=SecurityProfileType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:51,069 [main] DEBUG ClassBuilder - Adding MMSAssociation as subclass of MMSProtocolInfo +2024-09-07 16:19:51,070 [main] DEBUG ClassBuilder - Adding MMSAssociation as subclass of CommonProtocolInfo +2024-09-07 16:19:51,070 [main] TRACE ClassBuilder - read from EA: MMS::MMSAssociation +2024-09-07 16:19:51,075 [main] TRACE ClassBuilder - Class MMSSecurityNotification (4 in package MMS) +2024-09-07 16:19:51,193 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSSecurityNotification, _objData=UmlObjectData [id=3582, uuid={ED76E952-B3FD-4bbd-B4F7-7F695D6C14B6}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of PDUs received that could not be decrypted.', htmlDescription='

Number of PDUs received that could not be decrypted.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:51,206 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSSecurityNotification, _objData=UmlObjectData [id=4036, uuid={6D84220E-9E6E-4b52-8843-92394244A0F5}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:51,219 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSSecurityNotification, _objData=UmlObjectData [id=3581, uuid={52A9B9D0-58D5-4d7d-A396-A7788A41EB89}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:51,231 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSSecurityNotification, _objData=UmlObjectData [id=3584, uuid={4F8B7D7A-78C6-4ac7-A43C-8B06E8D829E0}, since=null, name=UpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations that failed.', htmlDescription='

Number of update key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:51,251 [main] DEBUG ClassBuilder - Adding MMSSecurityNotification as subclass of AbstractAgent +2024-09-07 16:19:51,251 [main] TRACE ClassBuilder - read from EA: MMS::MMSSecurityNotification +2024-09-07 16:19:51,256 [main] TRACE ClassBuilder - Class MMSNotification (5 in package MMS) +2024-09-07 16:19:51,373 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSNotification, _objData=UmlObjectData [id=3573, uuid={6F0A08FF-024D-4919-99B5-B68C203679AA}, since=null, name=ConnFailInCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of incoming Initiate-requests that have been refused.', htmlDescription='

Number of incoming Initiate-requests that have been refused.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:51,386 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSNotification, _objData=UmlObjectData [id=3574, uuid={F172E26F-F99A-4ca4-BBF3-4759B78D18F3}, since=null, name=ConnFailOutCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of outgoing Initiate-requests that have been refused.', htmlDescription='

Number of outgoing Initiate-requests that have been refused.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:51,399 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSNotification, _objData=UmlObjectData [id=3575, uuid={5F493EBC-63E7-480b-B344-66194892E87B}, since=null, name=RejectRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of reject issued in reception.', htmlDescription='

Number of reject issued in reception.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:51,412 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSNotification, _objData=UmlObjectData [id=3576, uuid={0D61F583-C436-4314-A1B5-C6FA04940FD7}, since=null, name=RejectTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received Reject on transmission.', htmlDescription='

Number of received Reject on transmission.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:51,432 [main] DEBUG ClassBuilder - Adding MMSNotification as subclass of AbstractAgent +2024-09-07 16:19:51,432 [main] TRACE ClassBuilder - read from EA: MMS::MMSNotification +2024-09-07 16:19:51,434 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850 Agent, _depth=5, _eaElementID=613, _objData=UmlObjectData [id=214, uuid={0123913E-3D3C-4627-ABFC-BF86D71D1894}, since=null, name=MMS, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 23, the MMS package includes the IEC 61850 Manufacturing Message Specification (MMS) classes. MMS Provider and MMS Association inherit both Security and Protocol Info attributes from the more general classes.', htmlDescription='

As shown in Figure 23, the MMS package includes the IEC 61850 Manufacturing Message Specification (MMS) classes. MMS Provider and MMS Association inherit both Security and Protocol Info attributes from the more general classes.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=mms-agent, mibName=IEC-62351-IEC61850-MMS-MIB, mibPrefix=mMS, objectBranchId=2, objectIdentity=mms-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=MMS, _objData=UmlObjectData [id=42, uuid={C69DADFE-D7C7-45d0-83FC-41012CB3C1CA}, since=null, name=MMS, alias=, stereotype=, visibility=public, txtDescription='MMS classes relationship. MMS Provider and MMS Association inherit both Security and Procotol Info attributes from the more general classes.', htmlDescription='

MMS classes relationship. MMS Provider and MMS Association inherit both Security and Procotol Info attributes from the more general classes.

'], _portrait=true, _kind=LOGICAL]], _classes=5 +2024-09-07 16:19:51,440 [main] INFO PackageBuilder - processing package SV and GSE common objects (3) ... +2024-09-07 16:19:51,452 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=SV and GSE common objects, _objData=UmlObjectData [id=63, uuid={DFEA5E4E-B042-4697-A4BE-C60308616114}, since=null, name=SV and GSE common objects, alias=, stereotype=, visibility=public, txtDescription='GSE/SV common classes relationship.', htmlDescription='

GSE/SV common classes relationship.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 16:19:51,522 [main] TRACE ClassBuilder - Class GSEandSVCommon (1 in package SV and GSE common objects) +2024-09-07 16:19:51,590 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVCommon, _objData=UmlObjectData [id=4054, uuid={8F7CBDDF-5309-4c57-A3E5-B0C820FEC605}, since=null, name=GroupUpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations at KDC that failed.', htmlDescription='

Number of update key negotiations at KDC that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:51,602 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVCommon, _objData=UmlObjectData [id=4055, uuid={72C144FE-7138-4153-8C18-0FC5BC1E8998}, since=null, name=KDCAuthFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Count of the number of authorization failures against KDC.', htmlDescription='

Count of the number of authorization failures against KDC.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:51,614 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVCommon, _objData=UmlObjectData [id=4056, uuid={10AD71AC-8E2C-4afb-88B0-4CAAF7C06C47}, since=null, name=KDCSessionKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Session Key establishment between peer and KDC failed.', htmlDescription='

Session Key establishment between peer and KDC failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:51,689 [main] DEBUG ClassBuilder - Adding GSEandSVCommon as subclass of AbstractAgent +2024-09-07 16:19:51,689 [main] TRACE ClassBuilder - read from EA: SV and GSE common objects::GSEandSVCommon +2024-09-07 16:19:51,694 [main] TRACE ClassBuilder - Class GSEandSVPublisherAssociation (2 in package SV and GSE common objects) +2024-09-07 16:19:51,793 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=4057, uuid={C97C7E95-F1A3-49a6-84CD-F37F54D4DCAA}, since=null, name=CBRef, alias=, stereotype=index, visibility=public, txtDescription='Reference of the GSE/SV Control block being supervised.', htmlDescription='

Reference of the GSE/SV Control block being supervised.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:51,805 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=4058, uuid={A3300C61-0405-4178-AA24-56139902DFD1}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:51,818 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=4059, uuid={B346F0EE-81BD-4f02-BD05-3DEB6C966B08}, since=null, name=OutUv, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer underflows detected due to outgoing serial communication.', htmlDescription='

Number of buffer underflows detected due to outgoing serial communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:51,830 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=4366, uuid={10164DB8-AB84-46a3-9325-B0D817803F9A}, since=null, name=APPID, alias=, stereotype=protocol, visibility=public, txtDescription='Application Identifier being expected.', htmlDescription='

Application Identifier being expected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:51,843 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=3829, uuid={F6725CAA-C95B-431e-BCC4-6877D34082A8}, since=null, name=TxPduPerSecond, alias=, stereotype=protocol, visibility=public, txtDescription='Count of the number of SV telegrams sent within a second on the association.', htmlDescription='

Count of the number of SV telegrams sent within a second on the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:51,843 [main] ERROR ClassBuilder - [+++ EA problem: attr count on GSEandSVPublisherAssociation = 5 +, +++ attr CBRef: pos = 1 +, +++ attr CntRs: pos = 2 +, +++ attr OutUv: pos = 3 +, +++ attr APPID: pos = 4 +, +++ attr TxPduPerSecond: pos = 4 DUPLICATE +] +2024-09-07 16:19:51,894 [main] DEBUG ClassBuilder - Adding GSEandSVPublisherAssociation as subclass of GSEandSVCommon +2024-09-07 16:19:51,901 [main] TRACE ClassBuilder - read from EA: SV and GSE common objects::GSEandSVPublisherAssociation +2024-09-07 16:19:51,906 [main] TRACE ClassBuilder - Class GSEandSVSubscriberAssociation (3 in package SV and GSE common objects) +2024-09-07 16:19:52,038 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4061, uuid={E70C3857-A774-4635-9A52-713A3189C31C}, since=null, name=CBRef, alias=, stereotype=index, visibility=public, txtDescription='Reference of the GSE/SV Control block being supervised.', htmlDescription='

Reference of the GSE/SV Control block being supervised.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:52,050 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4062, uuid={2E060239-4EB9-4a8a-A7C3-AED6EDA8C5A3}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:52,061 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4063, uuid={B4825E20-07C1-4cde-94AD-CFE37852AE7F}, since=null, name=InOvCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer overflows detected due to incoming communication. This counter is incremented each time the buffer space is insufficient to receive an incoming message.', htmlDescription='

Number of buffer overflows detected due to incoming communication. This counter is incremented each time the buffer space is insufficient to receive an incoming message.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:52,074 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4064, uuid={BA2766B5-6FA2-4c9b-85EA-7353D0790FDF}, since=null, name=MessageIntegrityFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number messages that were not using the proper Group Key.', htmlDescription='

Number messages that were not using the proper Group Key.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:52,086 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4067, uuid={85138267-8516-4911-9D4D-D78674944F2D}, since=null, name=RxPduPerSecond, alias=, stereotype=protocol, visibility=public, txtDescription='Count of the number of SV telegrams received within a second on the association.', htmlDescription='

Count of the number of SV telegrams received within a second on the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:52,097 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4365, uuid={7955A1E1-9F67-46da-A434-8EA5BA1C0BE2}, since=null, name=APPID, alias=, stereotype=protocol, visibility=public, txtDescription='Application identified being expected.', htmlDescription='

Application identified being expected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:52,108 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4367, uuid={2B5045AC-99BD-4941-BCD5-36ABDDCAC2FF}, since=null, name=RxAPPID, alias=, stereotype=protocol, visibility=public, txtDescription='Last Application Identifier being received.', htmlDescription='

Last Application Identifier being received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:52,148 [main] DEBUG ClassBuilder - Adding GSEandSVSubscriberAssociation as subclass of GSEandSVCommon +2024-09-07 16:19:52,152 [main] TRACE ClassBuilder - read from EA: SV and GSE common objects::GSEandSVSubscriberAssociation +2024-09-07 16:19:52,154 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850 Agent, _depth=5, _eaElementID=1023, _objData=UmlObjectData [id=380, uuid={206C6DF0-DCC9-45e0-B3CE-6470323EA4B6}, since=null, name=SV and GSE common objects, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 24, the SV and GSE common objects package includes the IEC 61850 Sampled Value (SV) and Generic Substation Events (GSE) common classes.', htmlDescription='

As shown in Figure 24, the SV and GSE common objects package includes the IEC 61850 Sampled Value (SV) and Generic Substation Events (GSE) common classes.

'], _modelId=362, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=SV and GSE common objects, _objData=UmlObjectData [id=63, uuid={DFEA5E4E-B042-4697-A4BE-C60308616114}, since=null, name=SV and GSE common objects, alias=, stereotype=, visibility=public, txtDescription='GSE/SV common classes relationship.', htmlDescription='

GSE/SV common classes relationship.

'], _portrait=true, _kind=LOGICAL]], _classes=3 +2024-09-07 16:19:52,159 [main] INFO PackageBuilder - processing package SV (4) ... +2024-09-07 16:19:52,180 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=SV, _objData=UmlObjectData [id=60, uuid={472A38C4-7002-4632-9EB5-EC1C28A2CCA8}, since=null, name=SV, alias=, stereotype=, visibility=public, txtDescription='SV classes relationship. SVProvider and SVAssociation inherit both Security and Procotol Info attributes from the more general classes.', htmlDescription='

SV classes relationship. SVProvider and SVAssociation inherit both Security and Procotol Info attributes from the more general classes.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 16:19:52,287 [main] TRACE ClassBuilder - Class SVProvider (4 in package SV) +2024-09-07 16:19:52,440 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3844, uuid={C24FF010-3527-40b6-A143-3CBD3C95FC45}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:52,454 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=4052, uuid={4D212643-73E9-4b01-B3E4-1419141F7F5C}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of PDUs received that could not be decrypted', htmlDescription='

Number of PDUs received that could not be decrypted

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:52,467 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3845, uuid={62E2AB60-AB61-489b-9B09-FC14A0BF4694}, since=null, name=PDUSizeFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDU with wrong size. This is meaningful only for IP telegrams.', htmlDescription='

Number of received PDU with wrong size. This is meaningful only for IP telegrams.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:52,482 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3846, uuid={A6C46361-5561-43d2-8B67-6DAC7566C062}, since=null, name=PIP, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed SV information can be obtained for each IP publisher connection.', htmlDescription='

Provides a table through which more detailed SV information can be obtained for each IP publisher connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=994, _eaTypeName=SVPublisherAssociationIP, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}] +2024-09-07 16:19:52,498 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3847, uuid={1C5E81A0-3007-4221-BBCF-B4538CDCD068}, since=null, name=PL2, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed SV information can be obtained for each L2 (Ethernet) publisher connection.', htmlDescription='

Provides a table through which more detailed SV information can be obtained for each L2 (Ethernet) publisher connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=995, _eaTypeName=SVPublisherAssociationL2, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}] +2024-09-07 16:19:52,509 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3848, uuid={F24AD27F-DE3D-4d47-BF82-D81306D727FD}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=997, _eaTypeName=SVNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:52,528 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3849, uuid={E61DCB59-D671-4e3e-AF63-7A7934A7139B}, since=null, name=SIP, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed SV information can be obtained for each IP subscriber connection.', htmlDescription='

Provides a table through which more detailed SV information can be obtained for each IP subscriber connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=998, _eaTypeName=SVSubcriberAssociationIP, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}] +2024-09-07 16:19:52,545 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3850, uuid={3A8AA373-DF4D-4203-9E17-D1A556AE4626}, since=null, name=SL2, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed SV information can be obtained for each L2 (Ethernet) subscriber connection.', htmlDescription='

Provides a table through which more detailed SV information can be obtained for each L2 (Ethernet) subscriber connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=999, _eaTypeName=SVSubcriberAssociationL2, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}] +2024-09-07 16:19:52,560 [main] DEBUG ClassBuilder - Adding SVProvider as subclass of GSEandSVCommon +2024-09-07 16:19:52,560 [main] TRACE ClassBuilder - read from EA: SV::SVProvider +2024-09-07 16:19:52,566 [main] TRACE ClassBuilder - Class SVPublisherAssociationIP (5 in package SV) +2024-09-07 16:19:52,628 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVPublisherAssociationIP, _objData=UmlObjectData [id=3817, uuid={3EC59ACA-14AB-4adf-823D-4EF3DBBA4715}, since=null, name=DestIpAddr, alias=, stereotype=protocol, visibility=public, txtDescription='Destination IP address.', htmlDescription='

Destination IP address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 16:19:52,641 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVPublisherAssociationIP, _objData=UmlObjectData [id=3818, uuid={3B41797D-66B7-473b-A47C-92A5B0C6DB2C}, since=null, name=DestIpAddrType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:52,656 [main] DEBUG ClassBuilder - Adding SVPublisherAssociationIP as subclass of GSEandSVPublisherAssociation +2024-09-07 16:19:52,656 [main] TRACE ClassBuilder - read from EA: SV::SVPublisherAssociationIP +2024-09-07 16:19:52,662 [main] TRACE ClassBuilder - Class SVPublisherAssociationL2 (6 in package SV) +2024-09-07 16:19:52,708 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVPublisherAssociationL2, _objData=UmlObjectData [id=3819, uuid={2E77B17F-D224-4764-9C29-36CD379797D7}, since=null, name=DestMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 16:19:52,722 [main] DEBUG ClassBuilder - Adding SVPublisherAssociationL2 as subclass of GSEandSVPublisherAssociation +2024-09-07 16:19:52,722 [main] TRACE ClassBuilder - read from EA: SV::SVPublisherAssociationL2 +2024-09-07 16:19:52,728 [main] TRACE ClassBuilder - Class SVSubcriberAssociationIP (7 in package SV) +2024-09-07 16:19:52,787 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVSubcriberAssociationIP, _objData=UmlObjectData [id=3823, uuid={CF21D44F-A555-48cc-99A1-D49E20097B5D}, since=null, name=SrcIpAddr, alias=, stereotype=protocol, visibility=public, txtDescription='Source IP address.', htmlDescription='

Source IP address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 16:19:52,800 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVSubcriberAssociationIP, _objData=UmlObjectData [id=3824, uuid={3AB68377-764F-4314-851D-FEE4B40FC99E}, since=null, name=SrcIpAddrType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:52,815 [main] DEBUG ClassBuilder - Adding SVSubcriberAssociationIP as subclass of GSEandSVSubscriberAssociation +2024-09-07 16:19:52,815 [main] TRACE ClassBuilder - read from EA: SV::SVSubcriberAssociationIP +2024-09-07 16:19:52,821 [main] TRACE ClassBuilder - Class SVSubcriberAssociationL2 (8 in package SV) +2024-09-07 16:19:52,867 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVSubcriberAssociationL2, _objData=UmlObjectData [id=3825, uuid={A6F5F486-2B40-4620-ADA1-3CBA7408C0D8}, since=null, name=SrcMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 16:19:52,881 [main] DEBUG ClassBuilder - Adding SVSubcriberAssociationL2 as subclass of GSEandSVSubscriberAssociation +2024-09-07 16:19:52,881 [main] TRACE ClassBuilder - read from EA: SV::SVSubcriberAssociationL2 +2024-09-07 16:19:52,887 [main] TRACE ClassBuilder - Class SVNotification (9 in package SV) +2024-09-07 16:19:52,917 [main] DEBUG ClassBuilder - Adding SVNotification as subclass of GSEandSVCommon +2024-09-07 16:19:52,917 [main] TRACE ClassBuilder - read from EA: SV::SVNotification +2024-09-07 16:19:52,919 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850 Agent, _depth=5, _eaElementID=993, _objData=UmlObjectData [id=370, uuid={FBDCDA40-333C-4feb-A44B-6E6F8766621D}, since=null, name=SV, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 25, the SV package includes the IEC 61850 Sampled Value (SV) classes. SVProvider and SVAssociation inherit both Security and Protocol Info attributes from the more general classes.', htmlDescription='

As shown in Figure 25, the SV package includes the IEC 61850 Sampled Value (SV) classes. SVProvider and SVAssociation inherit both Security and Protocol Info attributes from the more general classes.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=sv-agent, mibName=IEC-62351-IEC61850-SV-MIB, mibPrefix=sV, objectBranchId=3, objectIdentity=sv-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=SV, _objData=UmlObjectData [id=60, uuid={472A38C4-7002-4632-9EB5-EC1C28A2CCA8}, since=null, name=SV, alias=, stereotype=, visibility=public, txtDescription='SV classes relationship. SVProvider and SVAssociation inherit both Security and Procotol Info attributes from the more general classes.', htmlDescription='

SV classes relationship. SVProvider and SVAssociation inherit both Security and Procotol Info attributes from the more general classes.

'], _portrait=true, _kind=LOGICAL]], _classes=6 +2024-09-07 16:19:52,935 [main] INFO PackageBuilder - processing package GSE (5) ... +2024-09-07 16:19:52,974 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=GSE, _objData=UmlObjectData [id=44, uuid={80FA056A-3318-4339-86E8-7D464BD53A85}, since=null, name=GSE, alias=, stereotype=, visibility=public, txtDescription='GSE classes relationship. GSEProvider and GSEAssociation inherit both Security and Procotol Info attributes from the more general classes.', htmlDescription='

GSE classes relationship. GSEProvider and GSEAssociation inherit both Security and Procotol Info attributes from the more general classes.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 16:19:53,100 [main] TRACE ClassBuilder - Class GSESubscriberAssociation (3 in package GSE) +2024-09-07 16:19:53,365 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=3750, uuid={AFDD17DA-6B2F-4bc7-8F89-0E63A9B7D1D7}, since=null, name=ConfRevMis, alias=, stereotype=protocol, visibility=public, txtDescription='True indicates that the expected configuration revision did not match the received number.', htmlDescription='

True indicates that the expected configuration revision did not match the received number.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:53,378 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=3755, uuid={2E11DB8F-06FC-485f-8C56-703E601D8A60}, since=null, name=NdsComm, alias=, stereotype=protocol, visibility=public, txtDescription='Duplicated Message received', htmlDescription='

Duplicated Message received

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:53,391 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4368, uuid={9075FAD9-2CE1-4e5d-907F-DBD0B4B1CC32}, since=null, name=ConfRev, alias=, stereotype=protocol, visibility=public, txtDescription='Last configuration Revision being received.', htmlDescription='

Last configuration Revision being received.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:53,403 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4369, uuid={E4803687-6245-40fd-AB97-A5A553A34C59}, since=null, name=RxConfRev, alias=, stereotype=protocol, visibility=public, txtDescription='True indicates that the expected configuration revision did not match the received number.', htmlDescription='

True indicates that the expected configuration revision did not match the received number.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:53,414 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=3758, uuid={EBC5C199-473E-4859-B0FE-DD1C08CC93AF}, since=null, name=TalExpCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count of the received TAL expirations that have been detected.', htmlDescription='

Count of the received TAL expirations that have been detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:53,427 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4370, uuid={09E69AF6-2C2B-46e9-B274-E5220B53D94D}, since=null, name=OosErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of times out of sequence of GOOSE has been observed.', htmlDescription='

Number of times out of sequence of GOOSE has been observed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:53,440 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4371, uuid={5B152C15-4AC4-421a-87EB-F81484BD2524}, since=null, name=DupMsgRx, alias=, stereotype=protocol, visibility=public, txtDescription='If true, the subscription needs commissioning, i.e., the received message does not conform to the current subscription configuration (either the 'dataSetRef' is wrong, the data set members, the configuration revision number, or no subscription is configured at all).', htmlDescription='

If true, the subscription needs commissioning, i.e., the received message does not conform to the current subscription configuration (either the 'dataSetRef' is wrong, the data set members, the configuration revision number, or no subscription is configured at all).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:53,453 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4372, uuid={313447D4-3710-47a8-85FF-DAA9316F8720}, since=null, name=DatSet, alias=, stereotype=protocol, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:53,466 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4373, uuid={8E3C588A-BEC3-454f-861F-712BADFC92AA}, since=null, name=RxDatSet, alias=, stereotype=protocol, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:53,478 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4374, uuid={C304ABDA-E4BA-4cfc-BAD9-17425F5A0611}, since=null, name=GoID, alias=, stereotype=protocol, visibility=public, txtDescription='GOOSE Identifier being expected.', htmlDescription='

GOOSE Identifier being expected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:53,491 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4375, uuid={985D635D-D095-4282-B40B-8D3F15CDC152}, since=null, name=RxGoID, alias=, stereotype=protocol, visibility=public, txtDescription='Last GOOSE Identifier being received.', htmlDescription='

Last GOOSE Identifier being received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:53,503 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4376, uuid={3BC29513-E13B-40a1-A86D-4B3406FC2CD1}, since=null, name=StNum, alias=, stereotype=protocol, visibility=public, txtDescription='StNum being received from last accepted GOOSE message.', htmlDescription='

StNum being received from last accepted GOOSE message.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:53,515 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4377, uuid={699EF357-D4F5-4445-8F55-446FF895C089}, since=null, name=SqNum, alias=, stereotype=protocol, visibility=public, txtDescription='SqNum being received from last accepted GOOSE message.', htmlDescription='

SqNum being received from last accepted GOOSE message.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:53,527 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4378, uuid={778EF329-63E8-4a88-A172-D2DAD54D972A}, since=null, name=RejectStNum, alias=, stereotype=protocol, visibility=public, txtDescription='Last StNum being rejected.', htmlDescription='

Last StNum being rejected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:53,538 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4379, uuid={A699C155-79DE-4187-BDF5-AFD122DAD7CA}, since=null, name=RejectSqNum, alias=, stereotype=protocol, visibility=public, txtDescription='Last SqNum being rejected.', htmlDescription='

Last SqNum being rejected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:53,550 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4494, uuid={98542797-3D0F-4f54-96D7-B2BEBEAF605A}, since=null, name=RxT, alias=, stereotype=protocol, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:53,550 [main] ERROR ClassBuilder - [+++ EA problem: attr count on GSESubscriberAssociation = 16 +, +++ attr ConfRevMis: pos = 0 +, +++ attr NdsComm: pos = 2 +, +++ attr ConfRev: pos = 3 +, +++ attr RxConfRev: pos = 4 +, +++ attr TalExpCnt: pos = 4 DUPLICATE +, +++ attr OosErrCnt: pos = 5 +, +++ attr DupMsgRx: pos = 6 +, +++ attr DatSet: pos = 7 +, +++ attr RxDatSet: pos = 8 +, +++ attr GoID: pos = 9 +, +++ attr RxGoID: pos = 10 +, +++ attr StNum: pos = 11 +, +++ attr SqNum: pos = 12 +, +++ attr RejectStNum: pos = 13 +, +++ attr RejectSqNum: pos = 14 +, +++ attr RxT: pos = 15 +] +2024-09-07 16:19:53,588 [main] DEBUG ClassBuilder - Adding GSESubscriberAssociation as subclass of GSEandSVSubscriberAssociation +2024-09-07 16:19:53,588 [main] TRACE ClassBuilder - read from EA: GSE::GSESubscriberAssociation +2024-09-07 16:19:53,593 [main] TRACE ClassBuilder - Class GSEProvider (4 in package GSE) +2024-09-07 16:19:53,764 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3243, uuid={71555478-FCAD-4dae-B530-6956D1B5D475}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:53,775 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=4053, uuid={A432D351-022A-4b49-AA3D-61CBB91067FC}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of PDUs received that could not be decrypted', htmlDescription='

Number of PDUs received that could not be decrypted

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:53,787 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3773, uuid={4B58CE58-88E3-4e07-9FF3-FE0181F95942}, since=null, name=InErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of PDUs received that were in error due to malformed content, parity errors or configuration mismatch.', htmlDescription='

Number of PDUs received that were in error due to malformed content, parity errors or configuration mismatch.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:53,800 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=4121, uuid={D727F0F0-5C88-4fc4-83C5-D69614BE4ED8}, since=null, name=InUnexpectedMulticast, alias=, stereotype=protocol, visibility=public, txtDescription='Count of unexpected multicast received PDUs. This apply to GOOSE only.', htmlDescription='

Count of unexpected multicast received PDUs. This apply to GOOSE only.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:53,817 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3744, uuid={8BC8E8B9-0BA6-4277-B1B1-23F48CD0FD30}, since=null, name=PIP, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed GSE information can be obtained for each IP publisher connection.', htmlDescription='

Provides a table through which more detailed GSE information can be obtained for each IP publisher connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=796, _eaTypeName=GSEPublisherAssociationIP, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}] +2024-09-07 16:19:53,834 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3745, uuid={10373ECE-DF59-4995-BA92-240A3CC2D94B}, since=null, name=PL2, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed GSE information can be obtained for each L2 (Ethernet) publisher connection.', htmlDescription='

Provides a table through which more detailed GSE information can be obtained for each L2 (Ethernet) publisher connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=984, _eaTypeName=GSEPublisherAssociationL2, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}] +2024-09-07 16:19:53,845 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3618, uuid={BF431EAB-1B49-4c5a-8BC3-171FED573957}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=930, _eaTypeName=GSENotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 16:19:53,862 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3046, uuid={AA8FC433-0ACC-4dcf-9B1C-59469C28FCA5}, since=null, name=SIP, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed GSE information can be obtained for each IP subscriber connection.', htmlDescription='

Provides a table through which more detailed GSE information can be obtained for each IP subscriber connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=979, _eaTypeName=GSESubcriberAssociationIP, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}] +2024-09-07 16:19:53,878 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3746, uuid={F6A461DF-31BD-4546-8B62-BE2A79D53F41}, since=null, name=SL2, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed GSE information can be obtained for each L2 (Ethernet) subscriber connection.', htmlDescription='

Provides a table through which more detailed GSE information can be obtained for each L2 (Ethernet) subscriber connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=977, _eaTypeName=GSESubcriberAssociationL2, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}] +2024-09-07 16:19:53,893 [main] DEBUG ClassBuilder - Adding GSEProvider as subclass of GSEandSVCommon +2024-09-07 16:19:53,893 [main] TRACE ClassBuilder - read from EA: GSE::GSEProvider +2024-09-07 16:19:53,899 [main] TRACE ClassBuilder - Class GSEPublisherAssociationIP (5 in package GSE) +2024-09-07 16:19:53,958 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEPublisherAssociationIP, _objData=UmlObjectData [id=3803, uuid={9C513452-9437-4849-894C-B2C33952D4F0}, since=null, name=DestIpAddr, alias=, stereotype=protocol, visibility=public, txtDescription='Destination IP address.', htmlDescription='

Destination IP address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 16:19:53,972 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEPublisherAssociationIP, _objData=UmlObjectData [id=3802, uuid={03D1AF7D-F2B5-425c-8FD2-63B09E3887F9}, since=null, name=DestIpAddrType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:53,986 [main] DEBUG ClassBuilder - Adding GSEPublisherAssociationIP as subclass of GSEandSVPublisherAssociation +2024-09-07 16:19:53,986 [main] TRACE ClassBuilder - read from EA: GSE::GSEPublisherAssociationIP +2024-09-07 16:19:53,991 [main] TRACE ClassBuilder - Class GSEPublisherAssociationL2 (6 in package GSE) +2024-09-07 16:19:54,053 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEPublisherAssociationL2, _objData=UmlObjectData [id=3801, uuid={53A15D60-889F-4c5a-BCF1-89AF1D539B97}, since=null, name=DestMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 16:19:54,069 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEPublisherAssociationL2, _objData=UmlObjectData [id=4362, uuid={1EF8C591-A06A-43cb-8FBF-95E679E109F8}, since=null, name=SrcMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=no, Version=1}] +2024-09-07 16:19:54,086 [main] DEBUG ClassBuilder - Adding GSEPublisherAssociationL2 as subclass of GSEandSVPublisherAssociation +2024-09-07 16:19:54,086 [main] TRACE ClassBuilder - read from EA: GSE::GSEPublisherAssociationL2 +2024-09-07 16:19:54,092 [main] TRACE ClassBuilder - Class GSESubcriberAssociationIP (7 in package GSE) +2024-09-07 16:19:54,160 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubcriberAssociationIP, _objData=UmlObjectData [id=3740, uuid={FFD24620-C094-400d-8BD1-F48524198222}, since=null, name=SrcIpAddr, alias=, stereotype=protocol, visibility=public, txtDescription='Source IP address. .', htmlDescription='

Source IP address. .

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 16:19:54,172 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubcriberAssociationIP, _objData=UmlObjectData [id=3739, uuid={B418786B-EB08-4581-8037-B7C3A6E0311A}, since=null, name=SrcIpAddrType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:54,186 [main] DEBUG ClassBuilder - Adding GSESubcriberAssociationIP as subclass of GSESubscriberAssociation +2024-09-07 16:19:54,186 [main] TRACE ClassBuilder - read from EA: GSE::GSESubcriberAssociationIP +2024-09-07 16:19:54,191 [main] TRACE ClassBuilder - Class GSESubcriberAssociationL2 (8 in package GSE) +2024-09-07 16:19:54,248 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubcriberAssociationL2, _objData=UmlObjectData [id=3742, uuid={556B251D-88A4-4ac8-855E-D537776F059A}, since=null, name=SrcMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP Profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP Profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 16:19:54,262 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubcriberAssociationL2, _objData=UmlObjectData [id=4361, uuid={5024F7E1-FEC6-4125-AF1E-FFC7C29B18D8}, since=null, name=DstMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP Profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP Profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=no, Version=1}] +2024-09-07 16:19:54,277 [main] DEBUG ClassBuilder - Adding GSESubcriberAssociationL2 as subclass of GSESubscriberAssociation +2024-09-07 16:19:54,277 [main] TRACE ClassBuilder - read from EA: GSE::GSESubcriberAssociationL2 +2024-09-07 16:19:54,283 [main] TRACE ClassBuilder - Class GSENotification (9 in package GSE) +2024-09-07 16:19:54,313 [main] DEBUG ClassBuilder - Adding GSENotification as subclass of GSEandSVCommon +2024-09-07 16:19:54,313 [main] TRACE ClassBuilder - read from EA: GSE::GSENotification +2024-09-07 16:19:54,315 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850 Agent, _depth=5, _eaElementID=612, _objData=UmlObjectData [id=213, uuid={82435997-4AFF-4079-AAE7-9E673726C85A}, since=null, name=GSE, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 26, the GSE package includes the IEC 61850 Generic Substation Events (GSE) classes. GSEprovider and GSEAssociation inherit both Security and Protocol Info attributes from the more general classes.', htmlDescription='

As shown in Figure 26, the GSE package includes the IEC 61850 Generic Substation Events (GSE) classes. GSEprovider and GSEAssociation inherit both Security and Protocol Info attributes from the more general classes.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=gse-agent, mibName=IEC-62351-IEC61850-GSE-MIB, mibPrefix=gSE, objectBranchId=4, objectIdentity=gse-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=GSE, _objData=UmlObjectData [id=44, uuid={80FA056A-3318-4339-86E8-7D464BD53A85}, since=null, name=GSE, alias=, stereotype=, visibility=public, txtDescription='GSE classes relationship. GSEProvider and GSEAssociation inherit both Security and Procotol Info attributes from the more general classes.', htmlDescription='

GSE classes relationship. GSEProvider and GSEAssociation inherit both Security and Procotol Info attributes from the more general classes.

'], _portrait=true, _kind=LOGICAL]], _classes=7 +2024-09-07 16:19:54,315 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Application Protocols Agents, _depth=4, _eaElementID=143, _objData=UmlObjectData [id=42, uuid={AD259188-13EE-4de8-ACE5-B251CBE161AE}, since=null, name=IEC61850 Agent, alias=, stereotype=, visibility=public, txtDescription='The IEC 61850 Agent package includes the collection of IEC 61850 protocols monitoring information. It is structured into the following sub-packages: +- ACSI (Abstract communication service interface) +- MMS (Manufacturing Message Specification) +- SV (Sampled Value) +- GSE (Generic Substation Events).', htmlDescription='

The IEC 61850 Agent package includes the collection of IEC 61850 protocols monitoring information. It is structured into the following sub-packages:

  • ACSI (Abstract communication service interface)
  • MMS (Manufacturing Message Specification)
  • SV (Sampled Value)
  • GSE (Generic Substation Events).
'], _modelId=362, _selfDependent=false, 2_taggedValues{objectBranchId=2, objectIdentity=iec61850}, _childPackages=5] +2024-09-07 16:19:54,315 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=604, _objData=UmlObjectData [id=210, uuid={79D95A5F-8421-4ee5-89EC-51F26A20BCDC}, since=null, name=Application Protocols Agents, alias=, stereotype=, visibility=public, txtDescription='This Application Protocols Agents package contains the object descriptions to be provided in order to monitor the behaviour of the application protocols and any possible security information related to application communication layer. +Each protocol package is structured with the goal of exposing summary information on the overall application stack protocol statistics and information, but also of providing specialized statistics and information for each association with remote entities (the application level connections). This is done by reusing the same common or protocol-related objects with the goal of obtaining more coherent structure and semantics of variables.', htmlDescription='

This Application Protocols Agents package contains the object descriptions to be provided in order to monitor the behaviour of the application protocols and any possible security information related to application communication layer.

Each protocol package is structured with the goal of exposing summary information on the overall application stack protocol statistics and information, but also of providing specialized statistics and information for each association with remote entities (the application level connections). This is done by reusing the same common or protocol-related objects with the goal of obtaining more coherent structure and semantics of variables.

'], _modelId=362, _selfDependent=false, 2_taggedValues{objectBranchId=3, objectIdentity=application}, _childPackages=5] +2024-09-07 16:19:54,320 [main] INFO PackageBuilder - processing package Clocks Agent (10) ... +2024-09-07 16:19:54,340 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Clocks Agent, _objData=UmlObjectData [id=46, uuid={9DE08B60-19E1-4c7c-B3D6-82731BE2066A}, since=null, name=Clocks Agent, alias=, stereotype=, visibility=public, txtDescription='Clocks Agent classes', htmlDescription='

Clocks Agent classes

'], _portrait=true, _kind=LOGICAL] +2024-09-07 16:19:54,400 [main] TRACE ClassBuilder - Class Clock (0 in package Clocks Agent) +2024-09-07 16:19:54,509 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=2651, uuid={219E72A9-5B41-4365-A90E-491097F96C10}, since=null, name=clockTamperDetected, alias=, stereotype=security, visibility=public, txtDescription='Timestamp of when a tamper of a clock has been detected', htmlDescription='

Timestamp of when a tamper of a clock has been detected

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:54,522 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=2656, uuid={C95F5CA0-6663-41c7-BAE9-BB32F924F8F1}, since=null, name=LastClockHoldover, alias=, stereotype=health, visibility=public, txtDescription='Indicates the timestamp at which the last Holdover was detected.', htmlDescription='

Indicates the timestamp at which the last Holdover was detected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:54,533 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=2657, uuid={FF50E5F4-F0FB-48b1-B605-B025F27CA0DD}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='When written True, the statistics of clockTamperDetected and LastClockHoldover are set back to a value of zero. The values in the clocks table are not impacted by this reset.', htmlDescription='

When written True, the statistics of clockTamperDetected and LastClockHoldover are set back to a value of zero. The values in the clocks table are not impacted by this reset.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:54,549 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=2650, uuid={106DFE8D-727B-42bf-84CA-4C8E484CB760}, since=null, name=Clocks, alias=, stereotype=table, visibility=public, txtDescription='Table of information regarding the clock sources that are in use.', htmlDescription='

Table of information regarding the clock sources that are in use.

'], _isConst=false, _isStatic=false, _multiplicity=[0..n], _initValue=, _eaTypeId=608, _eaTypeName=ClockEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=cLK, objectIdentity=cLKclockEntry, Version=0}] +2024-09-07 16:19:54,561 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=3631, uuid={31D800F0-35C2-4312-95B7-E3A890982D86}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=944, _eaTypeName=SecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:54,576 [main] DEBUG ClassBuilder - Adding Clock as subclass of AbstractAgent +2024-09-07 16:19:54,576 [main] TRACE ClassBuilder - read from EA: Clocks Agent::Clock +2024-09-07 16:19:54,581 [main] TRACE ClassBuilder - Class ClockEntry (0 in package Clocks Agent) +2024-09-07 16:19:54,748 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2646, uuid={E98C8059-D343-41c5-A9FD-C45F4FA62052}, since=null, name=ClockAccuracy, alias=, stereotype=health, visibility=public, txtDescription='Reports the current expected accuracy of this clock in nanoseconds. A value of -1 indicates that the accuracy is unknown or estimated to be larger than 2147483647 ns.', htmlDescription='

Reports the current expected accuracy of this clock in nanoseconds. A value of -1 indicates that the accuracy is unknown or estimated to be larger than 2147483647 ns.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:54,762 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=3085, uuid={50EFFF08-CB85-4033-8EB9-8FC29AACD6DC}, since=null, name=ClockIndex, alias=, stereotype=index, visibility=public, txtDescription='Clock Index', htmlDescription='

Clock Index

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 16:19:54,773 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=3729, uuid={E0CAC256-AD0A-4515-9F48-63353DA71841}, since=null, name=ClockIssue, alias=, stereotype=performance, visibility=public, txtDescription='Reports the presence of any clock issue.', htmlDescription='

Reports the presence of any clock issue.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=776, _eaTypeName=TimSyncIssueType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:54,785 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2649, uuid={1591A4AF-7AD8-4720-B04E-7C389735450F}, since=null, name=ClockTamperDetected, alias=, stereotype=security, visibility=public, txtDescription='Clock tamper have been detected.', htmlDescription='

Clock tamper have been detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:54,797 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2645, uuid={F98377B8-808A-4705-81F9-99E14B733B97}, since=null, name=TmSrc, alias=, stereotype=performance, visibility=public, txtDescription='Reports the clock sync method.', htmlDescription='

Reports the clock sync method.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=777, _eaTypeName=TimSyncSrcType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:54,810 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2655, uuid={EFB862ED-119C-4441-AD7D-3F382A7C0C92}, since=null, name=HoldOver, alias=, stereotype=health, visibility=public, txtDescription='The Holdover flag shall be set True whenever the Time Traceable flag is True and the IED is not receiving a qualified signal from a recognized standard time source. It shall be set False otherwise. Therefore, this flag gives an immediate indication of loss of the time reference signal.', htmlDescription='

The Holdover flag shall be set True whenever the Time Traceable flag is True and the IED is not receiving a qualified signal from a recognized standard time source. It shall be set False otherwise. Therefore, this flag gives an immediate indication of loss of the time reference signal.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:54,822 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2648, uuid={A8CB6533-B21C-4986-941B-F8F32BD739E3}, since=null, name=LastSyncOffset, alias=, stereotype=health, visibility=public, txtDescription='Reports the time offset (in seconds) computed from the last qualified synchronization signal received by this clock. This value is used by the clock servo to gradually adjust the clock.', htmlDescription='

Reports the time offset (in seconds) computed from the last qualified synchronization signal received by this clock. This value is used by the clock servo to gradually adjust the clock.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:54,833 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2653, uuid={AAB46675-D113-417c-8AB8-E4E268247EF8}, since=null, name=TimeSourceAvailable, alias=, stereotype=health, visibility=public, txtDescription='The Time Source Available flag shall be set True whenever the IED is receiving a qualified signal from a recognized standard time source. If it loses this signal, then after an appropriate period (during which the additional holdover uncertainty is not a significant impairment to performance), the Time Source Available flag shall be set False. The duration of the period after loss of the time signal and negation of the Time Source Available flag depends on the quality of the holdover oscillator and the required time quality, and may be a configurable IED parameter. +This flag may not immediately be set False, because momentary loss of the time signal may not adversely affect IED time quality. The Holdover flag provides an immediate indication of this condition.', htmlDescription='

The Time Source Available flag shall be set True whenever the IED is receiving a qualified signal from a recognized standard time source. If it loses this signal, then after an appropriate period (during which the additional holdover uncertainty is not a significant impairment to performance), the Time Source Available flag shall be set False. The duration of the period after loss of the time signal and negation of the Time Source Available flag depends on the quality of the holdover oscillator and the required time quality, and may be a configurable IED parameter.

This flag may not immediately be set False, because momentary loss of the time signal may not adversely affect IED time quality. The Holdover flag provides an immediate indication of this condition.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:54,844 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2652, uuid={ECD9FD6B-5168-426a-BF8F-D2B9B57110B0}, since=null, name=TimeTraceable, alias=, stereotype=health, visibility=public, txtDescription='The Time Traceable flag shall be set False before the IED has received and qualified a signal from a recognized standard time source. Once it has locked to the recognized standard time source and stabilized, the Time Traceable flag shall be set True. The Time Traceable flag shall not be set False again, so long as the IED can estimate its holdover uncertainty. If at some point, perhaps due to an extended holdover interval, the IED no longer can estimate its holdover uncertainty, then the Time Traceable flag shall be set False.', htmlDescription='

The Time Traceable flag shall be set False before the IED has received and qualified a signal from a recognized standard time source. Once it has locked to the recognized standard time source and stabilized, the Time Traceable flag shall be set True. The Time Traceable flag shall not be set False again, so long as the IED can estimate its holdover uncertainty. If at some point, perhaps due to an extended holdover interval, the IED no longer can estimate its holdover uncertainty, then the Time Traceable flag shall be set False.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:54,859 [main] DEBUG ClassBuilder - Adding ClockEntry as subclass of AbstractAgent +2024-09-07 16:19:54,859 [main] TRACE ClassBuilder - read from EA: Clocks Agent::ClockEntry +2024-09-07 16:19:54,865 [main] TRACE ClassBuilder - Class SecurityNotification (6 in package Clocks Agent) +2024-09-07 16:19:54,908 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::SecurityNotification, _objData=UmlObjectData [id=3632, uuid={04B87A68-22D2-4882-A4A5-D62CF502F233}, since=null, name=clockTamperDetected, alias=, stereotype=security, visibility=public, txtDescription='Timestamp of when a tamper of a clock has been detected', htmlDescription='

Timestamp of when a tamper of a clock has been detected

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:54,923 [main] DEBUG ClassBuilder - Adding SecurityNotification as subclass of AbstractAgent +2024-09-07 16:19:54,923 [main] TRACE ClassBuilder - read from EA: Clocks Agent::SecurityNotification +2024-09-07 16:19:54,926 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=605, _objData=UmlObjectData [id=211, uuid={E6C708DE-BB97-4b5d-94A9-6AD67FCE234E}, since=null, name=Clocks Agent, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 28, the Clocks Agent package includes the clock monitoring classes.', htmlDescription='

As shown in Figure 28, the Clocks Agent package includes the clock monitoring classes.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=clock-agent, mibName=IEC-62351-CLK-MIB, mibPrefix=cLK, objectBranchId=4, objectIdentity=clock-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=Clocks Agent, _objData=UmlObjectData [id=46, uuid={9DE08B60-19E1-4c7c-B3D6-82731BE2066A}, since=null, name=Clocks Agent, alias=, stereotype=, visibility=public, txtDescription='Clocks Agent classes', htmlDescription='

Clocks Agent classes

'], _portrait=true, _kind=LOGICAL]], _classes=3 +2024-09-07 16:19:54,931 [main] INFO PackageBuilder - processing package Interfaces Agent (11) ... +2024-09-07 16:19:54,950 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Interfaces Agent, _objData=UmlObjectData [id=24, uuid={1B416A08-A236-4e2a-9A9E-6A48912EF05F}, since=null, name=Interfaces, alias=, stereotype=, visibility=public, txtDescription='The IED interfaces are depicted.', htmlDescription='

The IED interfaces are depicted.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 16:19:55,089 [main] TRACE ClassBuilder - Class Interface (1 in package Interfaces Agent) +2024-09-07 16:19:55,218 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3319, uuid={6FD1D092-9094-4f03-8B24-7DCD8E2358AD}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='Interface number', htmlDescription='

Interface number

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 16:19:55,230 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3320, uuid={6EB13B61-C6AA-4e12-9BC2-177D8DB73982}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the CPU.', htmlDescription='

Description of the CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:55,242 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3415, uuid={2252ED03-8326-4d40-957F-9921BA0D74BE}, since=null, name=IntType, alias=, stereotype=identity, visibility=public, txtDescription='Interface type (Wired or Wireless)', htmlDescription='

Interface type (Wired or Wireless)

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=866, _eaTypeName=IntType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:55,254 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3323, uuid={5B1D4273-C6BF-44d8-93A8-EE46A1AEBA45}, since=null, name=Operable, alias=, stereotype=health, visibility=public, txtDescription='Indicates that CPU is operable (it can be either online or offline)', htmlDescription='

Indicates that CPU is operable (it can be either online or offline)

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:55,265 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3318, uuid={C6769525-A8F5-4599-84AB-E17EB20458CD}, since=null, name=Online, alias=, stereotype=health, visibility=public, txtDescription='Indicate that CPU is online and active', htmlDescription='

Indicate that CPU is online and active

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:55,276 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3322, uuid={CF6212A6-1358-4cd8-AC00-7BE9C09A5BFE}, since=null, name=Faulty, alias=, stereotype=health, visibility=public, txtDescription='CPU generated errors', htmlDescription='

CPU generated errors

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:55,287 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3321, uuid={AE8F0410-796C-42ec-BA19-BA8D3B558380}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:55,353 [main] DEBUG ClassBuilder - Adding Interface as subclass of AbstractAgent +2024-09-07 16:19:55,353 [main] TRACE ClassBuilder - read from EA: Interfaces Agent::Interface +2024-09-07 16:19:55,358 [main] TRACE ClassBuilder - Class Interfaces (2 in package Interfaces Agent) +2024-09-07 16:19:55,720 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3652, uuid={F38DE40F-DC22-441d-BD42-E3990926DFB1}, since=null, name=serAvail, alias=, stereotype=performance, visibility=public, txtDescription='Number of serial interfaces installed on the device', htmlDescription='

Number of serial interfaces installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:55,732 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3657, uuid={4E66DA97-6D8F-450a-A00B-ADE0FEE47CE4}, since=null, name=serActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of serial interfaces active on the device', htmlDescription='

Number of serial interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:55,743 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3662, uuid={6F91E49F-3A68-4208-A29A-512F23CC10B0}, since=null, name=serFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing serial Interfaces on the device', htmlDescription='

Number of failing serial Interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:55,754 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3653, uuid={B23510B0-5513-4f80-9792-63DED4A16F44}, since=null, name=ethAvail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of ethernet Interfaces installed on the device', htmlDescription='

Number of ethernet Interfaces installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:55,765 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3658, uuid={6B6B3BCD-0AE0-4c6f-9FB3-472BEC079B13}, since=null, name=ethActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of ethernet interfaces active on the device', htmlDescription='

Number of ethernet interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:55,776 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3663, uuid={536CCD9F-B77E-465a-8898-FCD7644820AD}, since=null, name=ethFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing ethernet interfaces on the device', htmlDescription='

Number of failing ethernet interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:55,787 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3654, uuid={1C804DCB-08CB-41f0-B6F7-384A70C8C3C8}, since=null, name=algAvail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of analogue Interfaces installed on the device', htmlDescription='

Number of analogue Interfaces installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:55,799 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3659, uuid={29FE15BB-45B5-47c2-A74E-3EF574575434}, since=null, name=algActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of analogue interfaces Active on the device', htmlDescription='

Number of analogue interfaces Active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:55,809 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3664, uuid={54797821-2674-4526-B44A-9F87D01A6991}, since=null, name=algFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing analogue interfaces on the device', htmlDescription='

Number of failing analogue interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:55,820 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3655, uuid={74214291-7A17-4b83-AA3C-A305991D037A}, since=null, name=keyAvail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of keyboard Interface installed on the device', htmlDescription='

Number of keyboard Interface installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:55,834 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3660, uuid={AB6E018D-82C3-4524-8D58-58164F10E51B}, since=null, name=keyActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of keyboard interface active on the device', htmlDescription='

Number of keyboard interface active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:55,845 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3665, uuid={5F0D156E-80E6-401b-9854-FCA4DCA132BB}, since=null, name=keyFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing keyboard interface on the device', htmlDescription='

Number of failing keyboard interface on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:55,857 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3656, uuid={4C0A881D-B242-49b2-A9F8-DF5C3DF79322}, since=null, name=usbAvail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of Universal Serial Bus Interface installed on the device', htmlDescription='

Number of Universal Serial Bus Interface installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:55,869 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3661, uuid={6078BDD9-2E54-4b6b-A1B3-CCDBFE46E859}, since=null, name=usbActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of Universal Serial Bus interface active on the device', htmlDescription='

Number of Universal Serial Bus interface active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:55,881 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3666, uuid={64E92266-4098-47ce-9874-DBF194F6A4D1}, since=null, name=usbFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing Universal Serial Bus interface on the device', htmlDescription='

Number of failing Universal Serial Bus interface on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:55,898 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3283, uuid={6E4426CC-406A-429e-AD6D-1EECA102F2FC}, since=null, name=SER, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of serial interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of serial interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=836, _eaTypeName=SEREntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=sER, objectIdentity=intSERIALEntry, Version=0}] +2024-09-07 16:19:55,917 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3297, uuid={4C6CDBC0-62B0-4881-A810-A6CE56DACD81}, since=null, name=ETH, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of Ethernet interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of Ethernet interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=838, _eaTypeName=ETHEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=eTH, objectIdentity=intETHEntry, Version=0}] +2024-09-07 16:19:55,937 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3298, uuid={8794992C-DE7F-4bf7-83EC-5592356A181C}, since=null, name=USB, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of USB interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of USB interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=840, _eaTypeName=USBEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=uSB, objectIdentity=intUSBEntry, Version=0}] +2024-09-07 16:19:55,954 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3299, uuid={B0761727-4B75-4eb5-82B3-0BB613618FC7}, since=null, name=KEY, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of keyboard interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of keyboard interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=842, _eaTypeName=KEYEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=kEY, objectIdentity=intKEYEntry, Version=0}] +2024-09-07 16:19:55,972 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3328, uuid={D97ACC7A-DBFA-4c92-BC5C-FF187AF4C4EF}, since=null, name=ALG, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of analogue interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of analogue interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=847, _eaTypeName=ALGEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=aLG, objectIdentity=intALGEntry, Version=0}] +2024-09-07 16:19:55,984 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3678, uuid={B5CE0636-5BE9-4566-8B6A-2103E2769BA9}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object', htmlDescription='

State events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=946, _eaTypeName=Notification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:55,998 [main] DEBUG ClassBuilder - Adding Interfaces as subclass of AbstractAgent +2024-09-07 16:19:55,998 [main] TRACE ClassBuilder - read from EA: Interfaces Agent::Interfaces +2024-09-07 16:19:56,003 [main] TRACE ClassBuilder - Class ETHEntry (3 in package Interfaces Agent) +2024-09-07 16:19:56,031 [main] DEBUG ClassBuilder - Adding ETHEntry as subclass of Interface +2024-09-07 16:19:56,031 [main] TRACE ClassBuilder - read from EA: Interfaces Agent::ETHEntry +2024-09-07 16:19:56,036 [main] TRACE ClassBuilder - Class KEYEntry (4 in package Interfaces Agent) +2024-09-07 16:19:56,079 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::KEYEntry, _objData=UmlObjectData [id=3327, uuid={6A06B961-6E51-4f13-B73C-32E26BB4F831}, since=null, name=Locked, alias=, stereotype=health, visibility=public, txtDescription='Indicate a locked status for the device keyboard', htmlDescription='

Indicate a locked status for the device keyboard

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:56,094 [main] DEBUG ClassBuilder - Adding KEYEntry as subclass of Interface +2024-09-07 16:19:56,094 [main] TRACE ClassBuilder - read from EA: Interfaces Agent::KEYEntry +2024-09-07 16:19:56,099 [main] TRACE ClassBuilder - Class SEREntry (5 in package Interfaces Agent) +2024-09-07 16:19:56,158 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::SEREntry, _objData=UmlObjectData [id=3325, uuid={BD2A2516-013B-4f4c-83C4-6D873D08A614}, since=null, name=ByteIn, alias=, stereotype=protocol, visibility=public, txtDescription='Inbound Byte counter', htmlDescription='

Inbound Byte counter

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:56,171 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::SEREntry, _objData=UmlObjectData [id=3326, uuid={DB538A18-009B-4f5a-B7CD-6FDE73E706B1}, since=null, name=ByteOut, alias=, stereotype=protocol, visibility=public, txtDescription='Outbound Byte counter', htmlDescription='

Outbound Byte counter

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:56,185 [main] DEBUG ClassBuilder - Adding SEREntry as subclass of Interface +2024-09-07 16:19:56,185 [main] TRACE ClassBuilder - read from EA: Interfaces Agent::SEREntry +2024-09-07 16:19:56,191 [main] TRACE ClassBuilder - Class ALGEntry (6 in package Interfaces Agent) +2024-09-07 16:19:56,221 [main] DEBUG ClassBuilder - Adding ALGEntry as subclass of Interface +2024-09-07 16:19:56,221 [main] TRACE ClassBuilder - read from EA: Interfaces Agent::ALGEntry +2024-09-07 16:19:56,227 [main] TRACE ClassBuilder - Class USBEntry (7 in package Interfaces Agent) +2024-09-07 16:19:56,257 [main] DEBUG ClassBuilder - Adding USBEntry as subclass of Interface +2024-09-07 16:19:56,257 [main] TRACE ClassBuilder - read from EA: Interfaces Agent::USBEntry +2024-09-07 16:19:56,264 [main] TRACE ClassBuilder - Class Notification (8 in package Interfaces Agent) +2024-09-07 16:19:56,444 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3668, uuid={51550105-54C1-4ba6-BC2E-E028F066BD90}, since=null, name=serActive, alias=, stereotype=health, visibility=public, txtDescription='Number of serial Interfaces active on the device', htmlDescription='

Number of serial Interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:56,456 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3669, uuid={BE46F414-6E9C-412e-9E70-29513A7DAA18}, since=null, name=serFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing serial Interfaces on the device', htmlDescription='

Number of failing serial Interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:56,467 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3670, uuid={78956E09-8F39-4f86-A5CE-B8DBF44C7D6E}, since=null, name=ethActive, alias=, stereotype=health, visibility=public, txtDescription='Number of ethernet interfaces active on the device', htmlDescription='

Number of ethernet interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:56,478 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3671, uuid={101FCB6C-9867-4262-8E50-6F057EEAF643}, since=null, name=ethFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing ethernet interfaces on the device', htmlDescription='

Number of failing ethernet interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:56,489 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3672, uuid={5171FAC8-436F-42e9-B8E2-0C31C19FAC68}, since=null, name=algActive, alias=, stereotype=health, visibility=public, txtDescription='Number of analogue interfaces active on the device', htmlDescription='

Number of analogue interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:56,500 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3673, uuid={9711AA3F-E429-4304-960A-AA9CF2BCC003}, since=null, name=algFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing analogue interfaces on the device', htmlDescription='

Number of failing analogue interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:56,511 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3667, uuid={D523B290-8CF4-4630-ADC0-AA4FF4336A1B}, since=null, name=keyActive, alias=, stereotype=health, visibility=public, txtDescription='Number of keyboard interfaces active on the device', htmlDescription='

Number of keyboard interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:56,523 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3674, uuid={367C987D-D473-46cd-A5B1-6B3A1D275D36}, since=null, name=keyFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing keyboard interfaces on the device', htmlDescription='

Number of failing keyboard interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:56,534 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3675, uuid={0F833AFE-832E-4673-99D3-42CDEFDDF7E0}, since=null, name=usbActive, alias=, stereotype=health, visibility=public, txtDescription='Number of Universal Serial Bus interfaces active on the device', htmlDescription='

Number of Universal Serial Bus interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:56,545 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3676, uuid={E957BF40-9F27-4a63-B2DD-16F525F01FA1}, since=null, name=usbFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing Universal Serial Bus interfaces on the device', htmlDescription='

Number of failing Universal Serial Bus interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 16:19:56,560 [main] DEBUG ClassBuilder - Adding Notification as subclass of AbstractAgent +2024-09-07 16:19:56,560 [main] TRACE ClassBuilder - read from EA: Interfaces Agent::Notification +2024-09-07 16:19:56,562 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=130, _objData=UmlObjectData [id=40, uuid={971EA18E-FACB-4b68-BAB7-76613251FB91}, since=null, name=Interfaces Agent, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 27, the Interfaces Agent package contains the object descriptions to be provided in order to monitor the IED Interfaces state and behaviour.', htmlDescription='

As shown in Figure 27, the Interfaces Agent package contains the object descriptions to be provided in order to monitor the IED Interfaces state and behaviour.

'], _modelId=362, _selfDependent=false, 5_taggedValues{mibIdentity=interfaces-agent, mibName=IEC-62351-INT-MIB, mibPrefix=int, objectBranchId=5, objectIdentity=interfaces-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=Interfaces Agent, _objData=UmlObjectData [id=24, uuid={1B416A08-A236-4e2a-9A9E-6A48912EF05F}, since=null, name=Interfaces, alias=, stereotype=, visibility=public, txtDescription='The IED interfaces are depicted.', htmlDescription='

The IED interfaces are depicted.

'], _portrait=true, _kind=LOGICAL]], _classes=8 +2024-09-07 16:19:56,562 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=iec62351, _depth=2, _eaElementID=122, _objData=UmlObjectData [id=36, uuid={6739D61A-8BB1-4a90-AC8E-98287558CD65}, since=null, name=part7, alias=, stereotype=, visibility=public, txtDescription='IEC 62351-7 Network Management objects', htmlDescription='

IEC 62351-7 Network Management objects

'], _modelId=362, _selfDependent=false, 4_taggedValues{mibHeaderDescription=Copyright (C) IEC. This version of this MIB module is part + of IEC 57-62351-7-Ed2. + See the IEC 57-62351-7-Ed2 for full legal notices., mibHeaderRevision=202409010900Z, objectBranchId=7, objectIdentity=part7}, _childPackages=10] +2024-09-07 16:19:56,562 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=standard, _depth=1, _eaElementID=982, _objData=UmlObjectData [id=364, uuid={C0098415-D52F-4c38-9D2D-A6B872F36F1B}, since=null, name=iec62351, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=362, _selfDependent=false, 2_taggedValues{objectBranchId=62351, objectIdentity=iec62351}, _childPackages=1] +2024-09-07 16:19:56,562 [main] TRACE PackageBuilder - read PackageBuilder [_kind=TOP, _containingPackage=iso, _depth=0, _eaElementID=981, _objData=UmlObjectData [id=363, uuid={92B28419-A0C7-4a2d-8D51-D7A95DF4FBF7}, since=null, name=standard, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=362, _selfDependent=false, 2_taggedValues{objectBranchId=0, objectIdentity=standard}, _childPackages=1] +2024-09-07 16:19:56,562 [main] TRACE PackageBuilder - read PackageBuilder [_kind=MODEL, _depth=-1, _eaElementID=980, _objData=UmlObjectData [id=362, uuid={3328AB0D-72D5-404d-9405-042619AAC66A}, since=null, name=iso, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=362, _selfDependent=false, _childPackages=1] +2024-09-07 16:19:56,563 [main] INFO Util - time=[0:00:25.667] read model from EA with iteration API +2024-09-07 16:19:56,563 [main] INFO Util - +2024-09-07 16:19:56,563 [main] INFO Util - +2024-09-07 16:19:56,563 [main] INFO Util - ------------------------------------------------ +2024-09-07 16:19:56,563 [main] INFO Util - linking builders... +2024-09-07 16:19:56,563 [main] INFO EaModelBuilder - assigning type to attributes ... +2024-09-07 16:19:56,564 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::BooleanValue, _objData=UmlObjectData [id=2987, uuid={AD4E7F12-52BE-4498-9D56-489F0D36E706}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Represents a boolean value.', htmlDescription='

Represents a boolean value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=636, _eaTypeName=TruthValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1e8b406]. +2024-09-07 16:19:56,564 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::BooleanValueTs, _objData=UmlObjectData [id=2915, uuid={3DFAA603-DD4F-4fb0-B38D-E41B9F5976AD}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-07 16:19:56,564 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::BooleanValueTs, _objData=UmlObjectData [id=2916, uuid={3EDE9EA6-FA52-457e-9F52-95B08337CC6C}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Represents a boolean value.', htmlDescription='

Represents a boolean value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=636, _eaTypeName=TruthValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1e8b406]. +2024-09-07 16:19:56,564 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::CounterTs, _objData=UmlObjectData [id=2921, uuid={41F902F6-723F-4b04-A87D-8CFABFCB21DE}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-07 16:19:56,564 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::CounterTs, _objData=UmlObjectData [id=2922, uuid={CD1BCCAD-7FF8-4fd1-A24D-07EEC8C393A6}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='According to SMI v2, used to specify a value which represents a count. The range is 0 to 4294967295.', htmlDescription='

According to SMI v2, used to specify a value which represents a count. The range is 0 to 4294967295.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=624, _eaTypeName=Counter32 , _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@13f2bb1]. +2024-09-07 16:19:56,565 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::CntRs, _objData=UmlObjectData [id=3004, uuid={CBFD6F89-8B72-4d52-BB3D-1F897706A12D}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-07 16:19:56,565 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::CntRs, _objData=UmlObjectData [id=3003, uuid={8CAFD2C5-0DE7-4308-93B7-D49D6E8065AD}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Boolean', htmlDescription='

Boolean

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=636, _eaTypeName=TruthValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1e8b406]. +2024-09-07 16:19:56,565 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::Floating, _objData=UmlObjectData [id=2937, uuid={C1ACEE33-E3BF-408c-AA52-21345E91BD5B}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='IEEE Standard for Floating-Point Arithmetic, Standard 754-2008', htmlDescription='

IEEE Standard for Floating-Point Arithmetic, Standard 754-2008

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=630, _eaTypeName=Float32TC, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@18a00e3]. +2024-09-07 16:19:56,565 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::FloatingTs, _objData=UmlObjectData [id=2939, uuid={DFBCD799-E7D8-4865-988A-FB02011B6B88}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-07 16:19:56,565 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::FloatingTs, _objData=UmlObjectData [id=2940, uuid={111399D4-DEC9-4f43-A8B9-0E3848228A09}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='IEEE Standard for Floating-Point Arithmetic, Standard 754-2008', htmlDescription='

IEEE Standard for Floating-Point Arithmetic, Standard 754-2008

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=630, _eaTypeName=Float32TC, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@18a00e3]. +2024-09-07 16:19:56,565 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::EntityIndex, _objData=UmlObjectData [id=3724, uuid={5A44C892-8691-42d1-B0D8-D8DE77225CA8}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Integer value 1..2147483647 index', htmlDescription='

Integer value 1..2147483647 index

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=968, _eaTypeName=Unsigned32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@178f375]. +2024-09-07 16:19:56,565 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::Integer, _objData=UmlObjectData [id=2928, uuid={A4296952-0928-44e2-8560-C6B0DC4466A7}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Integer value -2147483648..2147483647 (inclusive) according to SMI v2', htmlDescription='

Integer value -2147483648..2147483647 (inclusive) according to SMI v2

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=173, _eaTypeName=Integer32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1375618]. +2024-09-07 16:19:56,565 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::IntegerTs, _objData=UmlObjectData [id=2930, uuid={B1DF3BAC-B146-48d1-B242-E0EE779A9B56}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-07 16:19:56,565 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::IntegerTs, _objData=UmlObjectData [id=2931, uuid={D8B8C3AD-4B33-445e-9393-31D5B1982D4A}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Integer value -2147483648..2147483647 (inclusive) according to SMI v2', htmlDescription='

Integer value -2147483648..2147483647 (inclusive) according to SMI v2

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=173, _eaTypeName=Integer32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1375618]. +2024-09-07 16:19:56,565 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::InetAddress, _objData=UmlObjectData [id=3017, uuid={8A787CF9-BA07-4486-A4DF-1CF9BA7A3A41}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='A value that represents an Internet address according to IETF RFC 4001.', htmlDescription='

A value that represents an Internet address according to IETF RFC 4001.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=952, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@15be6bb]. +2024-09-07 16:19:56,565 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::InetAddressType, _objData=UmlObjectData [id=3690, uuid={117C0501-377C-4bf4-90D9-77F084F0628D}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Address Type', htmlDescription='

Address Type

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=954, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1fcfece]. +2024-09-07 16:19:56,566 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::MacAddress, _objData=UmlObjectData [id=3019, uuid={212F7F94-30C7-4296-9560-DDE128B43ABE}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='OCTET STRING (SIZE (6)), DISPLAY-HINT "1x:"', htmlDescription='

OCTET STRING (SIZE (6)), DISPLAY-HINT "1x:"

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=966, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@15eef3d]. +2024-09-07 16:19:56,566 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::Selector, _objData=UmlObjectData [id=3015, uuid={2B45785E-70C4-45d5-B68C-37E64794195C}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='For Transport Selector, max length is 8. For Session and Presentation Selector max length is 16.', htmlDescription='

For Transport Selector, max length is 8. For Session and Presentation Selector max length is 16.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=632, _eaTypeName=DisplayString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c4c815]. +2024-09-07 16:19:56,566 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::Timestamp, _objData=UmlObjectData [id=3083, uuid={1090CB92-2A2F-4fef-8659-3BD00578C467}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='The value of year is in network-byte order, fractions of second is as defined in RFC 5905, epoch is defined as Midnight January 1, 1970.', htmlDescription='

The value of year is in network-byte order, fractions of second is as defined in RFC 5905, epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-07 16:19:56,566 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::CharString, _objData=UmlObjectData [id=2989, uuid={E34DC27C-7282-4663-B1EF-D2B160F31A39}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Represents a String.', htmlDescription='

Represents a String.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=632, _eaTypeName=DisplayString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c4c815]. +2024-09-07 16:19:56,566 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::CharStringTs, _objData=UmlObjectData [id=3380, uuid={AF16BFAF-FF80-4499-9DAD-A58391568338}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-07 16:19:56,566 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::CharStringTs, _objData=UmlObjectData [id=3379, uuid={2E8EFCAA-307D-4001-97ED-98DC7A6FCC62}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Represents a String.', htmlDescription='

Represents a String.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=632, _eaTypeName=DisplayString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c4c815]. +2024-09-07 16:19:56,566 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::AppDatStType, _objData=UmlObjectData [id=2991, uuid={20C199C1-6505-4e87-AA5E-7761159CD7E3}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp.', htmlDescription='

Timestamp.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-07 16:19:56,566 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::AppDatStType, _objData=UmlObjectData [id=2992, uuid={A150447F-47CA-40a3-A3E4-20675ECB8425}, since=null, name=Value, alias=, stereotype=enum, visibility=public, txtDescription='AppDatStKind enumeration.', htmlDescription='

AppDatStKind enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=292, _eaTypeName=AppDatStKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@100a15d]. +2024-09-07 16:19:56,566 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::PhyHealthType, _objData=UmlObjectData [id=4116, uuid={BAC3158A-D258-496a-83A5-0E64DFD67679}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp.', htmlDescription='

Timestamp.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-07 16:19:56,566 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::PhyHealthType, _objData=UmlObjectData [id=4117, uuid={D2C2C044-39BB-4b98-BC2D-E3B53A97EDAE}, since=null, name=Value, alias=, stereotype=enum, visibility=public, txtDescription='PhyHealthKind enumeration.', htmlDescription='

PhyHealthKind enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1034, _eaTypeName=PhyHealthKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@34c75a]. +2024-09-07 16:19:56,566 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::ExtType, _objData=UmlObjectData [id=3367, uuid={1245D715-EBD7-4730-A6F9-04F33AE0CF28}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='ExtKind enumeration.', htmlDescription='

ExtKind enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=856, _eaTypeName=ExtKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@16a51ab]. +2024-09-07 16:19:56,566 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::IntType, _objData=UmlObjectData [id=3395, uuid={0A1710BD-B405-499c-8631-29D2BA1F37C0}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='IntKind enumeration', htmlDescription='

IntKind enumeration

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=864, _eaTypeName=IntKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@19a81e8]. +2024-09-07 16:19:56,566 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::EventType, _objData=UmlObjectData [id=3705, uuid={CF22855C-E347-4873-AD54-398449D71764}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp.', htmlDescription='

Timestamp.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-07 16:19:56,566 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::EventType, _objData=UmlObjectData [id=3704, uuid={B8CA2998-8D74-4277-B68D-01EC12299F89}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='EventKind enumeration.', htmlDescription='

EventKind enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=958, _eaTypeName=EventKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@15b5592]. +2024-09-07 16:19:56,567 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::PSPAccType, _objData=UmlObjectData [id=3378, uuid={2DC1C237-EFE6-4e97-A76B-58AA500A8F7B}, since=null, name=Timestamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp.', htmlDescription='

Timestamp.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-07 16:19:56,567 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::PSPAccType, _objData=UmlObjectData [id=3377, uuid={018C1C51-9C40-4e91-A95B-3878F4DD9BD9}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='PSPAccKind Enumeration.', htmlDescription='

PSPAccKind Enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=293, _eaTypeName=PSPAccKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@120ebad]. +2024-09-07 16:19:56,567 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::ProtIdType, _objData=UmlObjectData [id=3011, uuid={7F5D7A4B-5851-45b9-9F48-5C8F08A97218}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='ProtIdKind Enumeration.', htmlDescription='

ProtIdKind Enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=829, _eaTypeName=ProtIdKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@19f379]. +2024-09-07 16:19:56,567 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncIssueType, _objData=UmlObjectData [id=3006, uuid={A23195C8-D6B6-4033-B7CC-798A866B84FA}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='TimSyncIssueKind Enumeration.', htmlDescription='

TimSyncIssueKind Enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=113, _eaTypeName=TimSyncIssueKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@12cc05a]. +2024-09-07 16:19:56,567 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::SecurityProfileType, _objData=UmlObjectData [id=3929, uuid={62BF7B27-EFA1-466c-AED9-06307DBA6999}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='SecurityProfile Enumeration', htmlDescription='

SecurityProfile Enumeration

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1011, _eaTypeName=SecurityProfileKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8a9f61]. +2024-09-07 16:19:56,567 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcType, _objData=UmlObjectData [id=3008, uuid={7D7258A7-E193-49cd-AA63-6F1E9EECA15D}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='TimSyncSrcKind Enumeration', htmlDescription='

TimSyncSrcKind Enumeration

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=117, _eaTypeName=TimSyncSrcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@16905e]. +2024-09-07 16:19:56,567 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::LnkType, _objData=UmlObjectData [id=3010, uuid={9322D17D-875C-49ca-B9CF-0F43B6E41A52}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='LnkType Enumeration.', htmlDescription='

LnkType Enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=644, _eaTypeName=LnkKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@5ca609]. +2024-09-07 16:19:56,567 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2673, uuid={B7336AC3-3490-4d18-9C0A-633A3375B799}, since=null, name=AppDatSt, alias=, stereotype=health, visibility=public, txtDescription='Status of the environment where the device is operated (e.g. Power Supply, Physical Access)', htmlDescription='

Status of the environment where the device is operated (e.g. Power Supply, Physical Access)

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=766, _eaTypeName=AppDatStType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@16d4b5c, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,567 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=596, uuid={F437BD0A-FA9A-4244-BD21-213EDEE71F93}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Attribute that allows a reset of the statistical information.', htmlDescription='

Attribute that allows a reset of the statistical information.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,569 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=3707, uuid={CC877A95-C652-4fe2-AD1D-655296F78214}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,569 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2257, uuid={A7F35D26-4B23-4015-AD0D-EBEFA191D4F4}, since=null, name=PSPBld, alias=, stereotype=security, visibility=public, txtDescription='Building access occurred.', htmlDescription='

Building access occurred.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,569 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2255, uuid={AE5A5B25-3635-4d4e-BB6F-3F373B37D7F7}, since=null, name=PSPIed, alias=, stereotype=security, visibility=public, txtDescription='Indicates that direct access to the IED is in process.', htmlDescription='

Indicates that direct access to the IED is in process.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,569 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2256, uuid={B58DB9CE-5D6A-4836-8A52-322BC774BC87}, since=null, name=PSPPanel, alias=, stereotype=security, visibility=public, txtDescription='Indicates that panel access is occurring to the IED.', htmlDescription='

Indicates that panel access is occurring to the IED.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,569 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2258, uuid={5330F087-530C-45ed-97CC-9AAA63252BF8}, since=null, name=PSPPerimeter, alias=, stereotype=security, visibility=public, txtDescription='Physical perimeter access occurred (e.g. door open), where available.', htmlDescription='

Physical perimeter access occurred (e.g. door open), where available.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,569 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=152, uuid={77B56447-B1AC-4c57-B772-2A438F32F38B}, since=null, name=PSUP, alias=, stereotype=table, visibility=public, txtDescription='A list of power supply entries.', htmlDescription='

A list of power supply entries.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=616, _eaTypeName=PSUPEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@feb3fa, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,569 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2260, uuid={0ABF14FE-A7EB-447e-9066-271C644F8B1A}, since=null, name=PSUPLos, alias=, stereotype=health, visibility=public, txtDescription='Power supply table entry index of the last power supply that was detected as lost.', htmlDescription='

Power supply table entry index of the last power supply that was detected as lost.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,569 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2259, uuid={ECCB9B5A-C082-4a31-BCA7-B115A8600DA0}, since=null, name=PSUPOn, alias=, stereotype=health, visibility=public, txtDescription='Index of the power supply that was the last to come on.', htmlDescription='

Index of the power supply that was the last to come on.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,569 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=3622, uuid={96BB2987-191F-4e60-BCB6-102571495093}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=874, _eaTypeName=SecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@15d3402, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,569 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=3621, uuid={75ECAF5C-210D-48b8-90F9-82576506744C}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object.', htmlDescription='

State events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=903, _eaTypeName=Notification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1565ec2, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,569 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=4501, uuid={7FB27A25-45C1-42c1-9B72-BD8FC786A10A}, since=null, name=PSPRemote, alias=, stereotype=security, visibility=public, txtDescription='Indicates that a current remote access is occurring to the IED.', htmlDescription='

Indicates that a current remote access is occurring to the IED.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,570 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2663, uuid={82D58AB7-4A2D-4041-B53A-D00E492C6C11}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,570 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2671, uuid={6A6A7DC3-B5BB-4553-84C2-44318B449579}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the power supply.', htmlDescription='

Description of the power supply.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,570 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=3725, uuid={27FE83CA-F363-47cc-8B97-92F4711DDAAF}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='Id of the power supply.', htmlDescription='

Id of the power supply.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 16:19:56,570 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2670, uuid={40DB5D25-5E33-4ad3-BB26-D2E165FEBA1F}, since=null, name=Name, alias=, stereotype=identity, visibility=public, txtDescription='Name of the power supply.', htmlDescription='

Name of the power supply.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 16:19:56,570 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2669, uuid={87F74A2E-D615-4bb8-A54D-B421846C7542}, since=null, name=PSUPLos, alias=, stereotype=health, visibility=public, txtDescription='Timestamp of the last detected power loss.', htmlDescription='

Timestamp of the last detected power loss.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,570 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2661, uuid={3F81B85E-2C71-4d22-8767-ADB07D4305CC}, since=null, name=PwrLosCnt, alias=, stereotype=health, visibility=public, txtDescription='Attribute that provides a count of number power losses. Power loss indicates primary supply power loss not shutdown.', htmlDescription='

Attribute that provides a count of number power losses. Power loss indicates primary supply power loss not shutdown.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,570 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2728, uuid={0A17570B-860F-49a1-8208-A78149EDC279}, since=null, name=PwrOn, alias=, stereotype=health, visibility=public, txtDescription='Indicates if the power supply state is currently on and operating appropriately.', htmlDescription='

Indicates if the power supply state is currently on and operating appropriately.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,570 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Notification, _objData=UmlObjectData [id=3463, uuid={99A52BA7-C37A-4d5a-9AF2-69F868DCA056}, since=null, name=PSUPLos, alias=, stereotype=health, visibility=public, txtDescription='Power supply Table Entry Index of the last power supply that was detected as lost.', htmlDescription='

Power supply Table Entry Index of the last power supply that was detected as lost.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e]. +2024-09-07 16:19:56,570 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Notification, _objData=UmlObjectData [id=3462, uuid={CF8ECE95-A139-4efa-B7E5-5EBCC29D609C}, since=null, name=PSUPOn, alias=, stereotype=health, visibility=public, txtDescription='Index of the power supply that was the last to come on.', htmlDescription='

Index of the power supply that was the last to come on.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2]. +2024-09-07 16:19:56,570 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=4039, uuid={F551C4F9-AD27-4ef4-B8FA-5DBAC7238912}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,570 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=3432, uuid={04CE81A5-8629-43c0-8F3E-D93C55B63D0B}, since=null, name=PSPBld, alias=, stereotype=security, visibility=public, txtDescription='Building Access occurred.', htmlDescription='

Building Access occurred.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@fc185]. +2024-09-07 16:19:56,570 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=3430, uuid={8AA6C984-EF4B-41bb-B433-665F0793B107}, since=null, name=PSPIed, alias=, stereotype=security, visibility=public, txtDescription='Indicates that direct access to the IED is in process.', htmlDescription='

Indicates that direct access to the IED is in process.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@fc185]. +2024-09-07 16:19:56,570 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=3431, uuid={CBC52337-714E-4296-BD4F-B152E72DF029}, since=null, name=PSPPanel, alias=, stereotype=security, visibility=public, txtDescription='Indicates that panel access is occurring to the IED.', htmlDescription='

Indicates that panel access is occurring to the IED.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@fc185]. +2024-09-07 16:19:56,570 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=3433, uuid={165E406E-AC48-43d3-A163-7401119B36B9}, since=null, name=PSPPerimeter, alias=, stereotype=security, visibility=public, txtDescription='Perimeter Access occurred.', htmlDescription='

Perimeter Access occurred.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@fc185]. +2024-09-07 16:19:56,571 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=159, uuid={1405DC0D-6A4E-4f7e-AF8C-5E21E5C79F3C}, since=null, name=AtkCnt, alias=, stereotype=security, visibility=public, txtDescription='Attribute that provides the number of cyber- attacks that have been detected.', htmlDescription='

Attribute that provides the number of cyber- attacks that have been detected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,571 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=593, uuid={D7F266B3-90FC-434c-850B-A67888D5FF8C}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,571 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3365, uuid={4F170B51-C2F3-496d-A921-71158D5FAAD4}, since=null, name=ConfigurationCRC, alias=, stereotype=identity, visibility=public, txtDescription='CRC of the last update.', htmlDescription='

CRC of the last update.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,571 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3364, uuid={70C845C3-72FA-4ee2-8C82-B541DEA6F1A6}, since=null, name=ConfigurationVersion, alias=, stereotype=identity, visibility=public, txtDescription='Version of the last uploaded configuration.', htmlDescription='

Version of the last uploaded configuration.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f5e5e3, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,571 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3264, uuid={B2181BC5-C543-4352-AF8C-CF45A0CC6715}, since=null, name=CPU, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of CPU inside the IED.', htmlDescription='

This entry defer to possible multiple instances of CPU inside the IED.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=832, _eaTypeName=CPUEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@193948d, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,571 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=164, uuid={27E657EB-F5E0-46ac-9D03-B88771E3C03E}, since=null, name=CpuUsage, alias=, stereotype=health, visibility=public, txtDescription='Provides an attribute that indicates the percentage of processing resources that is in use. Range is 0 to 100', htmlDescription='

Provides an attribute that indicates the percentage of processing resources that is in use. Range is 0 to 100

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,571 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=165, uuid={331F6C40-DC4F-47e4-A1E7-D03E91A9BAB7}, since=null, name=DataInv, alias=, stereotype=security, visibility=public, txtDescription='Provides a count of the number of attempts to write invalid data, for instance out-of-range data.', htmlDescription='

Provides a count of the number of attempts to write invalid data, for instance out-of-range data.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,571 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=1904, uuid={6044B2D8-9605-461e-A2D5-AF9EF801D394}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='This entry provides a textual description of the IED.', htmlDescription='

This entry provides a textual description of the IED.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,571 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=174, uuid={84B44E91-B83B-48bc-95EB-FCE87A7F7BC1}, since=null, name=ExpCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of expired certificates that are in the certificate storage configured for local use.', htmlDescription='

Indicates the number of expired certificates that are in the certificate storage configured for local use.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,571 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3332, uuid={609144A0-BD56-43ff-AEA6-E96829144EC8}, since=null, name=EXT, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of extension modules inside the IED.', htmlDescription='

This entry defer to possible multiple instances of extension modules inside the IED.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=850, _eaTypeName=EXTEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1604f19, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,571 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3357, uuid={40D5B796-07CF-4261-BF72-7AC36DC3E5C5}, since=null, name=FirmwareVersion, alias=, stereotype=identity, visibility=public, txtDescription='Version of the last uploaded Firmware. Timestamp refers to upload time.', htmlDescription='

Version of the last uploaded Firmware. Timestamp refers to upload time.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f5e5e3, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,571 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=1908, uuid={6FD1E9BC-3801-4721-BC75-1500D754A5F4}, since=null, name=InternalTemp, alias=, stereotype=health, visibility=public, txtDescription='Degree Centigrade measurement of the internal IED Temperature.', htmlDescription='

Degree Centigrade measurement of the internal IED Temperature.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,572 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3493, uuid={A2E2F01C-9202-4d14-B2FC-EE99FA25D64D}, since=null, name=LastCPUFail, alias=, stereotype=health, visibility=public, txtDescription='Index of last failing CPU.', htmlDescription='

Index of last failing CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,572 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3706, uuid={21041DB8-C542-4137-AADE-3D1E8DD5E1D5}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,572 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3494, uuid={7A6C77E3-9BB2-4834-8C72-DAE268A5A789}, since=null, name=LastEXTFail, alias=, stereotype=health, visibility=public, txtDescription='Index of last failing Extension.', htmlDescription='

Index of last failing Extension.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,572 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3492, uuid={4ACA1571-DB99-4447-9A06-033F9EE4348B}, since=null, name=LastSTOREFail, alias=, stereotype=health, visibility=public, txtDescription='Index of last failing Storage.', htmlDescription='

Index of last failing Storage.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,572 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3256, uuid={A9D75A03-5288-48d7-BA55-09F388369D28}, since=null, name=Location, alias=, stereotype=identity, visibility=public, txtDescription='Physical Installation coordinates (geographical and plant location).', htmlDescription='

Physical Installation coordinates (geographical and plant location).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,572 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3257, uuid={B4CF9E53-369A-47de-B31C-9255617C59E5}, since=null, name=Maintainer, alias=, stereotype=identity, visibility=public, txtDescription='Organizational reference for device maintenance.', htmlDescription='

Organizational reference for device maintenance.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,572 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3388, uuid={B008E2FB-21B8-4e33-B720-B440E4B1F49D}, since=null, name=MemTotal, alias=, stereotype=health, visibility=public, txtDescription='Provides an attribute that report the total RAM available in KBytes.', htmlDescription='

Provides an attribute that report the total RAM available in KBytes.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,572 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=1910, uuid={F6C9C372-CCF6-49b4-B39B-B7C633D0987A}, since=null, name=MemUsage, alias=, stereotype=health, visibility=public, txtDescription='Provides an attribute that indicates the percentage of memory that is in use.Range is 0 to 100.', htmlDescription='

Provides an attribute that indicates the percentage of memory that is in use.Range is 0 to 100.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,572 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3255, uuid={E81796A9-2AC8-45d5-A00C-A8FF43E2E704}, since=null, name=MIBVersion, alias=, stereotype=identity, visibility=public, txtDescription='Version of the Management Information Base.', htmlDescription='

Version of the Management Information Base.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,572 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=167, uuid={E0D67C9A-2A09-4694-B58C-55AB9281E1BA}, since=null, name=MisEvCnt, alias=, stereotype=health, visibility=public, txtDescription='Provides an attribute that represents the count of missed events or data.', htmlDescription='

Provides an attribute that represents the count of missed events or data.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,572 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=1913, uuid={FBF2BE7D-376E-477d-BEA6-8FBF4467B076}, since=null, name=Name, alias=, stereotype=identity, visibility=public, txtDescription='Name of IED.', htmlDescription='

Name of IED.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,572 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3718, uuid={472EB367-3A8B-4a9a-82E6-AD7C1825366F}, since=null, name=NearToExpCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of certificates in the certificate storage configured for local use that have exceeded the 70% of validity period.', htmlDescription='

Indicates the number of certificates in the certificate storage configured for local use that have exceeded the 70% of validity period.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,572 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=177, uuid={813425EE-45D4-449f-A1BA-5E8BDECC6309}, since=null, name=NvStore, alias=, stereotype=health, visibility=public, txtDescription='Indicates the global number of kilobytes of storage allocated for local use in all storage areas.', htmlDescription='

Indicates the global number of kilobytes of storage allocated for local use in all storage areas.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,573 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=178, uuid={82009203-F55E-466e-9B62-1933D717E9E0}, since=null, name=NvStoreRem, alias=, stereotype=health, visibility=public, txtDescription='Indicates the percentage of NvStore available for storage.', htmlDescription='

Indicates the percentage of NvStore available for storage.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,573 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=157, uuid={BE9FD31C-2E94-434f-8D2A-69F9BBC26FFD}, since=null, name=PhyHealth, alias=, stereotype=health, visibility=public, txtDescription='General health status of IED hardware and software.', htmlDescription='

General health status of IED hardware and software.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1036, _eaTypeName=PhyHealthType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1efea79, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,573 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=158, uuid={D980F3DA-CEDB-4402-837B-C8480047FB4F}, since=null, name=PhyHealthChgCnt, alias=, stereotype=health, visibility=public, txtDescription='Provides a count of the number of transitions state of PhyHealth Attribute.', htmlDescription='

Provides a count of the number of transitions state of PhyHealth Attribute.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,573 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3437, uuid={DF896F75-F02E-4195-9E06-0E9BB719136B}, since=null, name=RBACDbUpdate, alias=, stereotype=security, visibility=public, txtDescription='Version of the last uploaded RBAC Database.', htmlDescription='

Version of the last uploaded RBAC Database.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f5e5e3, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,573 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=176, uuid={BF4C520F-2A9F-434f-A442-25072A5C8B6B}, since=null, name=RevCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of revoked certificates that are still configured for local use.', htmlDescription='

Indicates the number of revoked certificates that are still configured for local use.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,573 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3479, uuid={8DA6CCEB-ED0C-41ec-B476-C7F33C86B499}, since=null, name=RevCheckFail, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number revocation check failures.', htmlDescription='

Indicates the number revocation check failures.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,573 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3620, uuid={93F9F190-837F-4def-9AE7-693E1E609256}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=912, _eaTypeName=SecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@23a2f9, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,573 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3619, uuid={167D9C3F-D113-4dd9-8CD1-62228F439DF9}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object.', htmlDescription='

State events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=911, _eaTypeName=Notification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c0edeb, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,573 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3387, uuid={2CF43DE1-E31F-4743-B645-CC6617CC65E9}, since=null, name=STORE, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of storage modules inside the IED.', htmlDescription='

This entry defer to possible multiple instances of storage modules inside the IED.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=862, _eaTypeName=STOREEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@17e2f02, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,573 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=4118, uuid={A000D652-2899-4b1e-A269-5B0E74D9612D}, since=null, name=SvcViol, alias=, stereotype=security, visibility=public, txtDescription='Number of service privilege violations (i.e., when the data object that the client wanted to access exists in the access view for the association with that client, but the requested service is not allowed).', htmlDescription='

Number of service privilege violations (i.e., when the data object that the client wanted to access exists in the access view for the association with that client, but the requested service is not allowed).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,573 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3964, uuid={8C00B0E5-5F91-4e94-AAA3-B08EFBB15D6C}, since=null, name=Watchdog, alias=, stereotype=health, visibility=public, txtDescription='This attribute report the count of Watchdog intervention on any component of the IED.', htmlDescription='

This attribute report the count of Watchdog intervention on any component of the IED.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,573 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=2217, uuid={FA50F248-F688-4b0f-B343-E8626A859677}, since=null, name=WrmStrCnt, alias=, stereotype=health, visibility=public, txtDescription='Number of warm starts detected.', htmlDescription='

Number of warm starts detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,573 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3261, uuid={F7E2552A-9E40-4498-9B35-80E4DC7388F3}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,573 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3260, uuid={2A8CCA5F-B153-4fa8-8801-52859B51BF8A}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the CPU.', htmlDescription='

Description of the CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,573 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3262, uuid={6C624EF6-19CC-45c7-8B22-52C6EB105C3F}, since=null, name=Faulty, alias=, stereotype=health, visibility=public, txtDescription='CPU generated errors.', htmlDescription='

CPU generated errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,573 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3259, uuid={18120B8F-8761-4f72-A364-9015D0229D9F}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='CPU number.', htmlDescription='

CPU number.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 16:19:56,573 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3258, uuid={5BACDAAA-B8BD-4635-B1F3-7E2C4CB93292}, since=null, name=Online, alias=, stereotype=health, visibility=public, txtDescription='Indicate that CPU is online and active.', htmlDescription='

Indicate that CPU is online and active.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,573 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3263, uuid={404E8337-84BD-4e87-888C-BC40C8FDFD3D}, since=null, name=Operable, alias=, stereotype=health, visibility=public, txtDescription='Indicates that CPU is operable (it can be either online or offline).', htmlDescription='

Indicates that CPU is operable (it can be either online or offline).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,573 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3389, uuid={D6BA8CB3-C883-4924-9F0F-3E0D3BF3FE2D}, since=null, name=Temperature, alias=, stereotype=health, visibility=public, txtDescription='Temperature of this CPU.', htmlDescription='

Temperature of this CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,574 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3965, uuid={2C004DAE-5C35-4b32-8046-95848FB39988}, since=null, name=Watchdog, alias=, stereotype=health, visibility=public, txtDescription='This attribute report the count of Watchdog intervention on this CPU.', htmlDescription='

This attribute report the count of Watchdog intervention on this CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,574 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3334, uuid={5449D06F-D84C-4247-BFF2-855283FE546B}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='Software PLC ID.', htmlDescription='

Software PLC ID.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 16:19:56,574 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3335, uuid={1FA00718-1A03-4856-BE17-E4C968E2303B}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the Software PLC.', htmlDescription='

Description of the Software PLC.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,574 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3366, uuid={26FC08E1-AE06-447a-A63C-A464EF3B6C5A}, since=null, name=ExtensionType, alias=, stereotype=identity, visibility=public, txtDescription='This attribute defines the type of the extension module.', htmlDescription='

This attribute defines the type of the extension module.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=854, _eaTypeName=ExtType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1081592, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,574 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3416, uuid={25484747-00E6-4e15-9F70-84DADE0F1C1C}, since=null, name=CodeVersion, alias=, stereotype=identity, visibility=public, txtDescription='Version of the last uploaded code.', htmlDescription='

Version of the last uploaded code.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f5e5e3, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,574 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3338, uuid={582D62C0-D628-4ccb-8BBD-32D4EE3B63BD}, since=null, name=Running, alias=, stereotype=health, visibility=public, txtDescription='Indicates that CPU is operable (it can be either online or offline).', htmlDescription='

Indicates that CPU is operable (it can be either online or offline).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,574 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3390, uuid={4838CC42-4D04-48d4-B5E0-73AC845722FF}, since=null, name=Temperature, alias=, stereotype=health, visibility=public, txtDescription='Temperature of this extension.', htmlDescription='

Temperature of this extension.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,574 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3333, uuid={884C8693-44E5-4b48-BBA4-E016ABF8B3C1}, since=null, name=Watchdog, alias=, stereotype=health, visibility=public, txtDescription='This attribute report the count of Watchdog intervention on this IED extension (e.g. software PLC).', htmlDescription='

This attribute report the count of Watchdog intervention on this IED extension (e.g. software PLC).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,574 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3337, uuid={A88DDBF9-7D12-4096-A713-D46EF92F2788}, since=null, name=Errors, alias=, stereotype=health, visibility=public, txtDescription='This attribute reports the PLC software detected errors.', htmlDescription='

This attribute reports the PLC software detected errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,574 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3336, uuid={A600A488-A1C0-4de3-BA57-148F100FC3F6}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,574 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3382, uuid={51E473C6-FD18-455e-AED3-59F394443C8D}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='Storage area ID number.', htmlDescription='

Storage area ID number.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 16:19:56,574 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3383, uuid={064A1F24-744B-46ad-AD7C-A95961E97B13}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the storage area.', htmlDescription='

Description of the storage area.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,575 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3386, uuid={F81C3EA0-A881-4cf8-981C-6AAA51137320}, since=null, name=NvStore, alias=, stereotype=health, visibility=public, txtDescription='Indicates the amount of storage.', htmlDescription='

Indicates the amount of storage.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,575 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3381, uuid={9C3D8C6F-12FE-4f73-AF1F-DE108934866D}, since=null, name=NvStoreRem, alias=, stereotype=health, visibility=public, txtDescription='Indicate remaining storage in this area.', htmlDescription='

Indicate remaining storage in this area.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,576 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3385, uuid={D8309CF9-DAF0-4ee7-A381-888D751BA0AA}, since=null, name=Faulty, alias=, stereotype=health, visibility=public, txtDescription='Storage area fault generated errors.', htmlDescription='

Storage area fault generated errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,576 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3732, uuid={39256EA1-992F-4aca-AF28-01BF33E5DF73}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,576 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3486, uuid={B5FF53A1-E8B9-46ec-BE1B-75F6EC7C48F5}, since=null, name=PhyHealthChgCnt, alias=, stereotype=health, visibility=public, txtDescription='Provides a count of the number of transitions state of PhyHealth Attribute.', htmlDescription='

Provides a count of the number of transitions state of PhyHealth Attribute.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,576 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3497, uuid={C24EC3BA-E07C-4a47-9FC1-D975C6DF5FA9}, since=null, name=InternalTemp, alias=, stereotype=health, visibility=public, txtDescription='Degree Centigrade measurement of the internal IED Temperature.', htmlDescription='

Degree Centigrade measurement of the internal IED Temperature.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,576 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3495, uuid={11B98054-C537-42a0-938C-380F69A2A3F5}, since=null, name=NvStore, alias=, stereotype=health, visibility=public, txtDescription='Indicates the global number of kilobytes of storage allocated for local use in all storage areas.', htmlDescription='

Indicates the global number of kilobytes of storage allocated for local use in all storage areas.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,576 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3496, uuid={5E3EA7C8-15A7-42f6-9FBC-0C995489AB43}, since=null, name=NvStoreRem, alias=, stereotype=health, visibility=public, txtDescription='Indicates the percentage of NvStore available for storage.', htmlDescription='

Indicates the percentage of NvStore available for storage.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,576 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3480, uuid={8334F7D0-DA9C-4f85-8A96-1ACB87744C5B}, since=null, name=PhyHealth, alias=, stereotype=health, visibility=public, txtDescription='General health status of IED hardware and software.', htmlDescription='

General health status of IED hardware and software.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1036, _eaTypeName=PhyHealthType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1efea79, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,576 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3489, uuid={37E2129D-71C5-4030-8530-00D04FA20DDF}, since=null, name=WrmStrCnt, alias=, stereotype=health, visibility=public, txtDescription='Number of warm starts detected.', htmlDescription='

Number of warm starts detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,577 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3502, uuid={E2312704-4F51-465e-8B02-4DFC37D2286B}, since=null, name=AtkCnt, alias=, stereotype=security, visibility=public, txtDescription='Attribute that provides the number of cyber- attacks that have been detected.', htmlDescription='

Attribute that provides the number of cyber- attacks that have been detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,577 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3499, uuid={7B741BD7-BDA8-4148-BDA0-6667E98C3102}, since=null, name=ExpCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of expired certificates that are in the certificate storage configured for local use.', htmlDescription='

Indicates the number of expired certificates that are in the certificate storage configured for local use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,577 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3730, uuid={7029DE89-300D-43cb-B94F-49317EE26061}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,577 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3731, uuid={554C03A1-C7D0-43ea-8541-46609B5191C2}, since=null, name=NearToExpCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of certificates in the certificate storage configured for local use that have exceeded the 70% of validity period.', htmlDescription='

Indicates the number of certificates in the certificate storage configured for local use that have exceeded the 70% of validity period.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,577 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3498, uuid={16D2AFD2-62AE-4dfe-BA94-32B996B33302}, since=null, name=RevCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of revoked certificates that are still configured for local use.', htmlDescription='

Indicates the number of revoked certificates that are still configured for local use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,577 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3500, uuid={406910CA-F346-4649-99A2-5A215611BD7D}, since=null, name=RevCheckFail, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number revocation check failures.', htmlDescription='

Indicates the number revocation check failures.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,577 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4079, uuid={CCA64890-32AD-4a39-BD2E-B115DB6259D5}, since=null, name=IEC62351part3, alias=, stereotype=security, visibility=public, txtDescription='True is security profile in use for this association (IEC 62351-3).', htmlDescription='

True is security profile in use for this association (IEC 62351-3).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@756e4d, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,577 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4087, uuid={0CDF636C-287B-44bf-AF3B-83CBAEB3791B}, since=null, name=Part3ConnectionId, alias=, stereotype=protocol, visibility=public, txtDescription='IEC 62351-3 Transport layer connection id in use for this Association. Meaningful only if IEC62351Part3 is true.', htmlDescription='

IEC 62351-3 Transport layer connection id in use for this Association. Meaningful only if IEC62351Part3 is true.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,577 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4099, uuid={18DFBDB7-B849-4a22-AEBA-4B62D877531D}, since=null, name=TCPHndShTime, alias=, stereotype=performance, visibility=public, txtDescription='Duration of the TCP handshake. Only applicable when the when the application layer has access to the TLS layer.', htmlDescription='

Duration of the TCP handshake. Only applicable when the when the application layer has access to the TLS layer.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,577 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4107, uuid={A9F9F05C-681E-480a-B663-D8EB1E1FE300}, since=null, name=TLSHndTime, alias=, stereotype=performance, visibility=public, txtDescription='TLS Handshake time. Only applicable when the when the application layer has access to the TLS layer.', htmlDescription='

TLS Handshake time. Only applicable when the when the application layer has access to the TLS layer.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,577 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4109, uuid={F7CBA04D-7FEA-47c7-A560-EA06B30C3056}, since=null, name=TLSRenegotiationTime, alias=, stereotype=performance, visibility=public, txtDescription='TLS Renegotiation time. Only applicable when the when the application layer has access to the TLS layer.', htmlDescription='

TLS Renegotiation time. Only applicable when the when the application layer has access to the TLS layer.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,577 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4108, uuid={CBC69A2E-FFEA-4612-9907-B3E519FB4E3F}, since=null, name=TLSResumptionTime, alias=, stereotype=performance, visibility=public, txtDescription='TLS Resumption time. Only applicable when the when the application layer has access to the TLS layer.', htmlDescription='

TLS Resumption time. Only applicable when the when the application layer has access to the TLS layer.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,577 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4106, uuid={EF9560F0-0EC3-4417-883D-96C32AE7803C}, since=null, name=TotalHndTime, alias=, stereotype=performance, visibility=public, txtDescription='Transport + Application Handshake time.', htmlDescription='

Transport + Application Handshake time.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,577 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4105, uuid={BCBEF3C5-946E-42cf-8D1D-CAAC2679E795}, since=null, name=TransportHndTime, alias=, stereotype=performance, visibility=public, txtDescription='Transport layer handshake time. It is equal to TCPHndTime if IEC62351part3 is false, it is equal to TCPHndTime + TLSHndTime if IEC62351part3 is true.', htmlDescription='

Transport layer handshake time. It is equal to TCPHndTime if IEC62351part3 is false, it is equal to TCPHndTime + TLSHndTime if IEC62351part3 is true.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,577 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4460, uuid={7510EED9-2C7E-480d-BD60-571DDC732128}, since=null, name=tlsEarlyDataCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: counts early data in handshake detected but neglected.', htmlDescription='

TLSv1.3: counts early data in handshake detected but neglected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,577 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4454, uuid={4FA3487F-4B3B-477e-99E8-2F5D24C013EF}, since=null, name=tlsDisallowedCipherCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts disallowed cipher suite proposed.', htmlDescription='

Counts disallowed cipher suite proposed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,577 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4461, uuid={F6A6964F-1010-4fc3-9112-0BBBF8244593}, since=null, name=tlsCertSizeMismatchCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts occurrences of endpoint certificate size exceeds limits', htmlDescription='

Counts occurrences of endpoint certificate size exceeds limits

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,577 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4463, uuid={89576E04-2176-4454-8207-BA0A305B9547}, since=null, name=tlsNoCaMatchCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts events of matching RootCA certificate for endpoint certificate validation not available.', htmlDescription='

Counts events of matching RootCA certificate for endpoint certificate validation not available.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,578 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4464, uuid={E1FBC1A2-6D0C-437e-95D2-873497AF44C6}, since=null, name=tlsNoSigAlgoExtCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: Counts events of no signature-algorithm extension included. Fallback to deprecated signature algorithm', htmlDescription='

TLSv1.2: Counts events of no signature-algorithm extension included. Fallback to deprecated signature algorithm

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,578 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4465, uuid={0A95DFE0-8624-4b8a-814E-A12605F19B07}, since=null, name=tlsDepDigAlgCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: Deprecated signature algorithm combination detected counter.', htmlDescription='

TLSv1.2: Deprecated signature algorithm combination detected counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,578 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4466, uuid={B68E613E-EEC5-4696-A841-9EE87D237582}, since=null, name=tlsNoTrustedCertMatchCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times Endpoint certificate not in certificate trust list', htmlDescription='

Counts the times Endpoint certificate not in certificate trust list

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,578 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4467, uuid={614E4EB0-BAA2-4b19-B00A-EA1FF0D8A3BD}, since=null, name=tlsCertRevokedCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times when endpoint certificate not in certificate trust list', htmlDescription='

Counts the times when endpoint certificate not in certificate trust list

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,578 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4468, uuid={1E2A987C-A48F-4eb7-A3BA-2C77F4A68216}, since=null, name=tlsNoCrlCnt, alias=, stereotype=security, visibility=public, txtDescription='Local CRL not accessible counter.', htmlDescription='

Local CRL not accessible counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,578 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4469, uuid={4A915807-5D1C-40af-9AA5-A745061F5DED}, since=null, name=tlsCrlExpCnt, alias=, stereotype=security, visibility=public, txtDescription='CRL expired.counter.', htmlDescription='

CRL expired.counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,578 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4470, uuid={AE06F05B-3CA8-44d1-9A20-5F4997A319FF}, since=null, name=tlsNoEpskModeCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: no support for encrypt-then-MAC counter', htmlDescription='

TLSv1.2: no support for encrypt-then-MAC counter

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,578 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4471, uuid={3E766604-E835-4b5a-A853-08A031D9FE22}, since=null, name=tlsNoEncryptThenMacCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: support of non-ephemeral PSK mode only counter.', htmlDescription='

TLSv1.3: support of non-ephemeral PSK mode only counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,578 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4472, uuid={C8F076B9-538C-423c-BC24-3756EAB54AEE}, since=null, name=tlsOcspResExpCnt, alias=, stereotype=security, visibility=public, txtDescription='OCSP response expired counter.', htmlDescription='

OCSP response expired counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,578 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4473, uuid={808D4C4A-240F-40a2-A84B-7EB7FAF41461}, since=null, name=tlsCertExpCnt, alias=, stereotype=security, visibility=public, txtDescription='Endpoint certificate expired counter.', htmlDescription='

Endpoint certificate expired counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,578 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4474, uuid={03D6BEA0-3F60-4e5b-BB2A-9126ABD1750F}, since=null, name=tlsNoSkUpdateCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: Peer does not perform session key update counter.', htmlDescription='

TLSv1.3: Peer does not perform session key update counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,578 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4475, uuid={264129C9-891C-4677-A001-B283CE215402}, since=null, name=tlsSigAlgMismatchCnt, alias=, stereotype=security, visibility=public, txtDescription='Signature algorithms in received endpoint certificate not supported counter.', htmlDescription='

Signature algorithms in received endpoint certificate not supported counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,578 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4476, uuid={A460A30B-5686-4f92-AFDC-C53C056A3309}, since=null, name=tlsSigVFailedCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times certificate signature could not be verified.', htmlDescription='

Counts the times certificate signature could not be verified.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,578 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4477, uuid={0FF962F9-BFB0-4683-96B5-09E38C57E324}, since=null, name=tlsShortRsaKeyCnt, alias=, stereotype=security, visibility=public, txtDescription='RSA key with key length of less than 2048 bit detected counter.', htmlDescription='

RSA key with key length of less than 2048 bit detected counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,578 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4478, uuid={39629ED0-372D-4c6f-B89B-4C13BA7374C6}, since=null, name=tlsMinKeyCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times RSA key with minimum key length of 1024 bit detected and allowed by configuration', htmlDescription='

Counts the times RSA key with minimum key length of 1024 bit detected and allowed by configuration

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,578 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4479, uuid={947A8F86-CF55-46c2-B517-3D4FA76FBA27}, since=null, name=tlsShortKeyCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times RSA key with insufficient key length (less than 1024 bit) detected..', htmlDescription='

Counts the times RSA key with insufficient key length (less than 1024 bit) detected..

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,578 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4480, uuid={560E07AC-D31D-4807-B518-20E83C9DD1A3}, since=null, name=tlsDepHashCnt, alias=, stereotype=security, visibility=public, txtDescription='Use of deprecated hash algorithm detected counter', htmlDescription='

Use of deprecated hash algorithm detected counter

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,578 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4462, uuid={6EDD77BB-4D13-4937-96A5-231A8441C74A}, since=null, name=tlsNoTrCaMatchSCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: No support of peer signalled trusted CA counter.', htmlDescription='

TLSv1.3: No support of peer signalled trusted CA counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,578 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4455, uuid={15470B2B-1EDC-41c5-AD3A-2E3583BF3A65}, since=null, name=tlsSessionidExpiredFullHsCnt, alias=, stereotype=security, visibility=public, txtDescription='Counter of sessionID expired, Resumption not possible, full TLS handshake done.', htmlDescription='

Counter of sessionID expired, Resumption not possible, full TLS handshake done.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,579 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4458, uuid={2B104C3D-3F3F-4c1a-812A-DC170DBA1CA2}, since=null, name=tlsNoRenegTicket, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: Number of times peer does not use secure renegotiation (session tickets) capability in renegotiated handshake.', htmlDescription='

TLSv1.2: Number of times peer does not use secure renegotiation (session tickets) capability in renegotiated handshake.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,579 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4457, uuid={D1BA2BD4-A79C-4617-9538-493A2956FC91}, since=null, name=tlsNoRenegSigCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: Number of times peer does not signal secure renegotiation support (session tickets) in initial handshake.', htmlDescription='

TLSv1.2: Number of times peer does not signal secure renegotiation support (session tickets) in initial handshake.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,579 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4453, uuid={E290CB99-A7B9-4ee1-AC49-29234D78A42C}, since=null, name=tlsSessionClosedRevCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the TLS session closure due to received revoked endpoint certificate.', htmlDescription='

Counts the TLS session closure due to received revoked endpoint certificate.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,579 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4459, uuid={854B3699-1B9D-4f64-B8B6-56CB2FD90FBB}, since=null, name=tlsNoTrCaMatchScCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: No support of peer signalled trusted CA counter.', htmlDescription='

TLSv1.3: No support of peer signalled trusted CA counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,579 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4450, uuid={8D2D94D8-3C6F-4bda-878C-F54D750FFD27}, since=null, name=tlsHsSuccessCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the TLS session successfully established.', htmlDescription='

Counts the TLS session successfully established.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,579 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4456, uuid={D19394DC-2DE1-403e-9C38-01EE35A0DDFD}, since=null, name=tlsNoReneg, alias=, stereotype=security, visibility=public, txtDescription='Number of times renegotiation interval is exceeded. TLSv1.2 peer does not renegotiate.', htmlDescription='

Number of times renegotiation interval is exceeded. TLSv1.2 peer does not renegotiate.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,579 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4452, uuid={B1BA2AF1-A523-4ca2-979A-38272AF41E2B}, since=null, name=tlsNoLocalCertCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times local endpoint certificate is not available.', htmlDescription='

Number of times local endpoint certificate is not available.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,579 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4447, uuid={3D255C0C-5B4C-4589-A304-5D6FAF7E69A2}, since=null, name=tlsWeakVersionCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times when deprecated TLS version proposed and support of TLS versions prior to TLSv1.2 enabled', htmlDescription='

Counts the times when deprecated TLS version proposed and support of TLS versions prior to TLSv1.2 enabled

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,579 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4449, uuid={4B8CCA5B-77FF-4b70-98D5-168DA947FE99}, since=null, name=tlsVersionChangeCnt, alias=, stereotype=security, visibility=public, txtDescription='Count the TLS version change (potential downgrade) in ongoing session detected.', htmlDescription='

Count the TLS version change (potential downgrade) in ongoing session detected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,579 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4446, uuid={C75A400F-5B38-4bc5-BE6A-48FB4977B686}, since=null, name=tlsDeprecatedVersionCnT, alias=, stereotype=security, visibility=public, txtDescription='Counts the times when a deprecated TLS version is proposed and support of TLS versions prior to TLSv1.2 is disabled.', htmlDescription='

Counts the times when a deprecated TLS version is proposed and support of TLS versions prior to TLSv1.2 is disabled.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,579 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4451, uuid={ACB5D4CD-DBF9-4e86-892D-469DB0082C7E}, since=null, name=tlsNoPeerCertCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times peer did not provide endpoint certificate during the TLS handshake.', htmlDescription='

Number of times peer did not provide endpoint certificate during the TLS handshake.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,579 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4448, uuid={A02762E7-1235-453b-8BB2-6D4E8F705EA1}, since=null, name=tlsDisallowedVersionCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times when disallowed TLS version (prior to TLSv1.0) proposed', htmlDescription='

Counts the times when disallowed TLS version (prior to TLSv1.0) proposed

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,579 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4488, uuid={851472EB-C0E1-4464-B067-F650659846CF}, since=null, name=SessionId, alias=, stereotype=index, visibility=public, txtDescription='Id of the TLS session.', htmlDescription='

Id of the TLS session.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 2_taggedValues{mibindex=yes, Version=1}]. +2024-09-07 16:19:56,580 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4489, uuid={B226702B-AC3E-4f8c-BF07-E3347944EA3A}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,580 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4490, uuid={69D938D2-D561-48eb-8BCF-FA2CFA350C07}, since=null, name=LocAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Local address.', htmlDescription='

Local address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,580 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4491, uuid={6C3E2D7A-F0C0-424b-A05C-4A96E29F65E7}, since=null, name=LocAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Local address type.', htmlDescription='

Local address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,580 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4492, uuid={5C777986-F9FD-4fbf-AAFB-2E087F0B21F7}, since=null, name=RemAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address.', htmlDescription='

Remote address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,580 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4493, uuid={7AB71D12-EB91-421a-B172-48B97B758080}, since=null, name=RemAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address type.', htmlDescription='

Remote address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,580 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4481, uuid={8E8A2B77-DF1B-4f33-B823-499F2C569AB8}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,580 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4482, uuid={CBC3AD5A-6EDA-4a33-95FA-37A565CEA2C1}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered (security or health).', htmlDescription='

Provides the last known event encountered (security or health).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,580 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4483, uuid={4669B65B-F448-43b1-9BB7-DD9A5FEFA04B}, since=null, name=Server, alias=, stereotype=table, visibility=public, txtDescription='Client session (when applicable)', htmlDescription='

Client session (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=1077, _eaTypeName=ServerTLS, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@167c1fc, 2_taggedValues{MIBPrefix=tC, Version=1}]. +2024-09-07 16:19:56,580 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4484, uuid={C3E6C81C-3F3D-4c3b-BABC-8573CD333CF5}, since=null, name=Client, alias=, stereotype=table, visibility=public, txtDescription='Server session (when applicable)', htmlDescription='

Server session (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=1079, _eaTypeName=ClientTLS, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ee9faa, 2_taggedValues{MIBPrefix=tC, Version=1}]. +2024-09-07 16:19:56,580 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4485, uuid={36BE9868-D051-429a-8C15-ADEDE8C4F60A}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object', htmlDescription='

Security events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1078, _eaTypeName=IEC62351part3ed2SecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@38203, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,580 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification, _objData=UmlObjectData [id=4487, uuid={6943E7EC-3F67-43a9-90B0-9BCF7DB4D056}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Description of last event reported', htmlDescription='

Description of last event reported

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,581 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3991, uuid={E3FE31B6-2024-4e98-99E9-12CFAC8AEC6F}, since=null, name=AuthFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Count of the number of authorization failures.', htmlDescription='

Count of the number of authorization failures.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,581 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3992, uuid={F6B00869-D41C-44b6-B4FF-FA092ED078AE}, since=null, name=CtrlPrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of control actions attempted that did not have the correct privilege.', htmlDescription='

Number of control actions attempted that did not have the correct privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,581 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3993, uuid={2CBA5468-91CA-4cf0-BAC3-55AC2EC54FC8}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted.', htmlDescription='

Number PDUs received that could not be decrypted.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,581 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3405, uuid={66AB8F6D-0721-44fb-861C-C607A8498C6F}, since=null, name=ExT0Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T0 (connection establishment).', htmlDescription='

Count the expirations of the 104 time-out T0 (connection establishment).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,581 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3406, uuid={F62CF6E4-A1AF-476b-B35E-F4DE2A4E0591}, since=null, name=ExT1Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T1 (PDU).', htmlDescription='

Count the expirations of the 104 time-out T1 (PDU).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,581 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3407, uuid={8099C0E4-518A-434c-BF60-73BC878C2238}, since=null, name=ExT2Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T2 (ACK).', htmlDescription='

Count the expirations of the 104 time-out T2 (ACK).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,582 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3408, uuid={439C3366-994E-4fbc-A804-80CA3D745D68}, since=null, name=ExT3Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T3 (TEST).', htmlDescription='

Count the expirations of the 104 time-out T3 (TEST).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,582 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3124, uuid={B8936537-E883-4ab6-8A65-47CF971C5BB4}, since=null, name=InDisc, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDUs that were discarded.', htmlDescription='

Number of received PDUs that were discarded.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,583 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3994, uuid={9A232ABD-C751-45bb-8278-552FEB934C4E}, since=null, name=InErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of PDUs received that were in error.', htmlDescription='

Number of PDUs received that were in error.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,583 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3995, uuid={A4886E74-D4DE-4163-BBF4-BFB4DA9AA818}, since=null, name=InOvCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer overflows detected due to incoming communication.', htmlDescription='

Number of buffer overflows detected due to incoming communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,583 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3996, uuid={34EAD965-3EEE-42ae-9A33-371405C3B4A8}, since=null, name=InterPDUTime, alias=, stereotype=protocol, visibility=public, txtDescription='Time between two consecutives PDUs.', htmlDescription='

Time between two consecutives PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,583 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3997, uuid={E65434B6-333B-4677-9DB7-2689202D1C31}, since=null, name=MisPDUCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Provides an attribute that represents the count of missed PDU.', htmlDescription='

Provides an attribute that represents the count of missed PDU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,583 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3141, uuid={3DEDE5E8-C46A-4627-A2B8-FA7B2651B388}, since=null, name=OutErr, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmission errors.', htmlDescription='

Number of transmission errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,583 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3990, uuid={4B336F22-0DBB-425c-9CE9-8A2B3968C18C}, since=null, name=OutUv, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer underflows detected due to outgoing serial communication.', htmlDescription='

Number of buffer underflows detected due to outgoing serial communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,583 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3998, uuid={56C57887-C03F-430b-A3CC-47993296C81A}, since=null, name=PDURTT, alias=, stereotype=protocol, visibility=public, txtDescription='PDU round trip time.', htmlDescription='

PDU round trip time.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,583 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3999, uuid={F9A50D40-7721-4f2f-B450-70B42C8159B7}, since=null, name=PDUSizeFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDU with wrong size.', htmlDescription='

Number of received PDU with wrong size.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,583 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4000, uuid={C3639D7C-0EF8-4ffb-912C-24F7FA06CBA6}, since=null, name=PduTampCnt, alias=, stereotype=security, visibility=public, txtDescription='Provides an attribute that indicates the count of the number of PDUs that have been detected to be tampered with.', htmlDescription='

Provides an attribute that indicates the count of the number of PDUs that have been detected to be tampered with.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,583 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4001, uuid={AD2C395F-15DF-4e49-A4EF-1C8758015811}, since=null, name=PrimaryInterface, alias=, stereotype=protocol, visibility=public, txtDescription='True if the Protocol is running on primary interface (false when backup interface is in use).', htmlDescription='

True if the Protocol is running on primary interface (false when backup interface is in use).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,584 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4002, uuid={15035EBB-A53C-4c7d-BEA7-D6AF668B9A81}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,584 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3403, uuid={D5E66B05-319E-467b-9B20-4D0021DE5B43}, since=null, name=RtxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the number of retransmissions.', htmlDescription='

Count the number of retransmissions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,584 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3123, uuid={5F22267E-6104-41c7-A2B6-BBFFCE828B94}, since=null, name=RxCritical, alias=, stereotype=protocol, visibility=public, txtDescription='Number of critical requests received (according to IEC 62351-5).', htmlDescription='

Number of critical requests received (according to IEC 62351-5).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,584 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4003, uuid={37C50A09-5C52-4612-ACD2-3CA5076E832A}, since=null, name=RxPdu, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDUs (including in error PDUs).', htmlDescription='

Number of received PDUs (including in error PDUs).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,584 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3135, uuid={51629B5F-2B79-4aa4-A704-E8D4D467D6E2}, since=null, name=RxSolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Number of solicited requests received. Only for DNP.', htmlDescription='

Number of solicited requests received. Only for DNP.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,584 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3145, uuid={546FFA93-9BFB-40fc-8F59-570F9FA50834}, since=null, name=RxUnsolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Contains the count of number of unsolicited requests that have been transmitted since the last reset.', htmlDescription='

Contains the count of number of unsolicited requests that have been transmitted since the last reset.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,584 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4004, uuid={219E7530-12EB-4a52-AE1A-536554F0ED28}, since=null, name=SessKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of session key negotiations that failed.', htmlDescription='

Number of session key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,584 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3122, uuid={9760193C-146A-427a-88DE-4FA2BBC2EA9E}, since=null, name=TxCritical, alias=, stereotype=protocol, visibility=public, txtDescription='Number of critical requests transmitted (according to IEC 62351-5)', htmlDescription='

Number of critical requests transmitted (according to IEC 62351-5)

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,584 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4005, uuid={984B7498-8B61-45e0-BE19-6E17EA80D9D0}, since=null, name=TxPdu, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmitted PDUs.', htmlDescription='

Number of transmitted PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,584 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3120, uuid={7F13ABEF-5E7A-4fc2-BE27-AB2E70B1B97A}, since=null, name=TxSolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Number of solicited requests transmitted. Only for DNP.', htmlDescription='

Number of solicited requests transmitted. Only for DNP.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,584 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3121, uuid={76A62C46-9C78-48ff-9770-F2A7BE837E1F}, since=null, name=TxUnsolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Contains the count of number of unsolicited requests that have been transmitted since the last reset.', htmlDescription='

Contains the count of number of unsolicited requests that have been transmitted since the last reset.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,585 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4006, uuid={2AAAEC13-D4BB-4d2a-8461-00DBAE43010B}, since=null, name=UpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations that failed.', htmlDescription='

Number of update key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,585 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=3726, uuid={361DD26C-8F48-46fd-BCE9-B6A3787F5FA6}, since=null, name=AssociationId, alias=, stereotype=index, visibility=public, txtDescription='Id of the association.', htmlDescription='

Id of the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,585 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=3241, uuid={87C4526C-4B22-42d3-BFDD-0EBE86166CDA}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,585 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2417, uuid={FF67FCFB-43B0-4a5a-8A33-52E57E2A1E33}, since=null, name=LocAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Local address.', htmlDescription='

Local address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 16:19:56,585 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=3715, uuid={857943C5-1917-46b9-BAA2-F6DBBE305DDA}, since=null, name=LocAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Local address type.', htmlDescription='

Local address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 16:19:56,585 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2413, uuid={218B44A4-22AA-4a3a-B54C-BC3742A6A951}, since=null, name=ProtID, alias=, stereotype=protocol, visibility=public, txtDescription='Protocol ID in use.', htmlDescription='

Protocol ID in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=780, _eaTypeName=ProtIdType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1c7cbad, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,585 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2412, uuid={2DCFE840-6DFB-49ca-9D60-6F00BBFE9375}, since=null, name=ProviderDesc, alias=, stereotype=identity, visibility=public, txtDescription='Textual description of the provider that is in use.', htmlDescription='

Textual description of the provider that is in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,585 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2411, uuid={739910E5-2234-4d7f-BF07-E2FAC9061548}, since=null, name=ProviderName, alias=, stereotype=identity, visibility=public, txtDescription='Identity of the provider responding as the outstation for this association.', htmlDescription='

Identity of the provider responding as the outstation for this association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,585 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2416, uuid={F1041BDF-E1EE-44c3-B346-5643EFA0E8C7}, since=null, name=RemAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address.', htmlDescription='

Remote address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 3_taggedValues{isIndex=yes, mibIndex=yes, Version=0}]. +2024-09-07 16:19:56,586 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=3714, uuid={25C69ED7-7E01-4316-B15C-28D99CC5FC94}, since=null, name=RemAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address type.', htmlDescription='

Remote address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 3_taggedValues{isIndex=yes, mibIndex=yes, Version=0}]. +2024-09-07 16:19:56,586 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2410, uuid={4F98C052-71F6-44e6-A31C-2A148D61DF91}, since=null, name=TLnkErrCnt, alias=, stereotype=health, visibility=public, txtDescription='Count of communication link errors detected.', htmlDescription='

Count of communication link errors detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,586 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2415, uuid={FED824F2-3E50-44cd-A78C-B816071534FB}, since=null, name=TLnkTyp, alias=, stereotype=protocol, visibility=public, txtDescription='Type of transport being utilized.', htmlDescription='

Type of transport being utilized.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=778, _eaTypeName=LnkType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2cbe0, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,586 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=3248, uuid={37A47CAE-5E15-4947-9824-88474381CEB3}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,586 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=3708, uuid={33EEE0D1-CEBA-4f55-8388-E92B798B5827}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered (security or health).', htmlDescription='

Provides the last known event encountered (security or health).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,586 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=2278, uuid={D8685894-627E-4b6f-B670-3C72CC90DF6B}, since=null, name=Master, alias=, stereotype=table, visibility=public, txtDescription='Client association (when applicable)', htmlDescription='

Client association (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=820, _eaTypeName=MasterAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@be83e4, 2_taggedValues{MIBPrefix=tC, Version=0}]. +2024-09-07 16:19:56,586 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=2287, uuid={364CBB2E-460C-46ce-AC40-149F1C18EAC8}, since=null, name=Outstation, alias=, stereotype=table, visibility=public, txtDescription='Server association (when applicable)', htmlDescription='

Server association (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=821, _eaTypeName=OutstationAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@cb5822, 2_taggedValues{MIBPrefix=tC, Version=0}]. +2024-09-07 16:19:56,586 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=3609, uuid={86E71A83-DD23-44dd-AF05-2C4883970DBA}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object', htmlDescription='

Security events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=914, _eaTypeName=60870andDNPSecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@19e13df, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,586 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=3608, uuid={E3191E3F-E629-4bfd-A8E1-64D78A2B9955}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object', htmlDescription='

State events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=915, _eaTypeName=60870andDNPNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@198378d, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,586 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3519, uuid={8EC7A2E6-FA1E-44bf-871A-8E7A12508F3F}, since=null, name=AuthFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Count of the number of authorization failures.', htmlDescription='

Count of the number of authorization failures.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,586 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3518, uuid={F5BEAE2F-4536-4f9c-9478-CF23E2A2D7C5}, since=null, name=CtrlPrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of control actions attempted that did not have the correct privilege.', htmlDescription='

Number of control actions attempted that did not have the correct privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,586 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3522, uuid={9ABAB39B-C8D2-427c-805D-DD74A37B15BD}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted.', htmlDescription='

Number PDUs received that could not be decrypted.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,586 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=4043, uuid={1BC26E95-9659-4250-87C9-365D73AD44BE}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered (security or health).', htmlDescription='

Provides the last known event encountered (security or health).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,587 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3520, uuid={2018A0E6-F948-40c3-98F5-CC50CFBD7527}, since=null, name=PduTampCnt, alias=, stereotype=security, visibility=public, txtDescription='Provides an attribute that indicates the count of the number of PDUs that have been detected to be tampered with.', htmlDescription='

Provides an attribute that indicates the count of the number of PDUs that have been detected to be tampered with.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,587 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3521, uuid={F0F1CF0B-1E15-4c19-ACB3-B4C1D745383F}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,587 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3523, uuid={22ADAAB8-8A4A-49c6-A261-6FC1E02DFEDB}, since=null, name=SessKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of session key negotiations that failed.', htmlDescription='

Number of session key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,587 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3524, uuid={A9AFB691-7A96-43a3-9FDB-B197827A4D8C}, since=null, name=UpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations that failed.', htmlDescription='

Number of update key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,587 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3526, uuid={6936B8C9-BCD0-46a8-B2A7-4423628A89F6}, since=null, name=InErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of PDUs received that were in error.', htmlDescription='

Number of PDUs received that were in error.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,587 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3528, uuid={97175DF9-326B-40f7-B626-D213159A0A56}, since=null, name=InOvCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer overflows detected due to incoming communication.', htmlDescription='

Number of buffer overflows detected due to incoming communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,587 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3529, uuid={47916BBB-21C9-49df-8C8B-3A9375A29441}, since=null, name=OutUv, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer underflows detected due to outgoing serial communication.', htmlDescription='

Number of buffer underflows detected due to outgoing serial communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,587 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3527, uuid={0C1DB352-F31C-4520-B8BB-43E3CB924F8D}, since=null, name=RxPdu, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDUs.', htmlDescription='

Number of received PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,587 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3525, uuid={B77A1C29-3430-40df-AC7F-D1ACC9E6C035}, since=null, name=TxPdu, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmitted PDUs.', htmlDescription='

Number of transmitted PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,587 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4257, uuid={0C0A0A2C-20C0-4ca9-9856-507B3CF40B66}, since=null, name=ExT0Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T0 (connection establishment).', htmlDescription='

Count the expirations of the 104 time-out T0 (connection establishment).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,587 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4258, uuid={C6845E20-7B2D-4978-A35B-D43715366935}, since=null, name=ExT1Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T1 (PDU).', htmlDescription='

Count the expirations of the 104 time-out T1 (PDU).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,587 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4259, uuid={15711ABC-5E51-4c9e-95EB-71E116D1CBC1}, since=null, name=ExT2Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T2 (ACK).', htmlDescription='

Count the expirations of the 104 time-out T2 (ACK).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,587 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4260, uuid={7A191FB8-98E6-4847-930B-90CB4FC6E61E}, since=null, name=ExT3Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T3 (TEST).', htmlDescription='

Count the expirations of the 104 time-out T3 (TEST).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,587 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4261, uuid={81B43739-99E7-46b8-BB5A-340970E92A28}, since=null, name=DiscPduCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of discarded messages.', htmlDescription='

Number of discarded messages.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,588 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4262, uuid={8165A5DE-3828-4785-9068-BB9EBEA44FF2}, since=null, name=InErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of PDUs received that were in error.', htmlDescription='

Number of PDUs received that were in error.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,588 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4263, uuid={D90D5B9D-8B9D-454d-83A9-E6715E4783C6}, since=null, name=InOvCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer overflows detected due to incoming communication.', htmlDescription='

Number of buffer overflows detected due to incoming communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,588 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4264, uuid={E8C8E34D-3689-46e8-B001-9DE7609677AC}, since=null, name=InterPDUTime, alias=, stereotype=protocol, visibility=public, txtDescription='Time between two consecutives PDUs.', htmlDescription='

Time between two consecutives PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,589 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4265, uuid={49E9D387-25A4-46e7-8CEB-9C75979FB7AF}, since=null, name=MisPDUCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Provides an attribute that represents the count of missed PDU.', htmlDescription='

Provides an attribute that represents the count of missed PDU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,589 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4266, uuid={8845E947-C91C-4a04-B4FE-3AEDC1029732}, since=null, name=OutErr, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmission errors.', htmlDescription='

Number of transmission errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,589 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4267, uuid={CCD6A7C5-F0B4-4402-AE88-B35035615DC3}, since=null, name=OutUv, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer underflows detected due to outgoing serial communication.', htmlDescription='

Number of buffer underflows detected due to outgoing serial communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,589 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4269, uuid={378D6C1B-B55C-457c-BD03-A017415E19C4}, since=null, name=PDUSizeFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDU with wrong size.', htmlDescription='

Number of received PDU with wrong size.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,590 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4273, uuid={8E51A58B-0043-4528-B1BC-BC2B4CC4E59C}, since=null, name=RtxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the number of retransmissions.', htmlDescription='

Count the number of retransmissions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,590 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4275, uuid={9768D1CC-F452-448b-B8DF-26922CB00ED7}, since=null, name=RxPduCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDUs (including PDUs with errors).', htmlDescription='

Number of received PDUs (including PDUs with errors).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,590 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4276, uuid={00CBF4DB-7CDE-4393-BCCF-90A5601FF89C}, since=null, name=RxSolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Number of solicited requests received. Only for DNP.', htmlDescription='

Number of solicited requests received. Only for DNP.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,590 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4277, uuid={A480B5CE-C799-40b2-9A6C-05A2B643932E}, since=null, name=RxUnsolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Contains the count of number of unsolicited requests that have been transmitted since the last reset.', htmlDescription='

Contains the count of number of unsolicited requests that have been transmitted since the last reset.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,590 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4280, uuid={7A2A5BFA-FCB8-44a4-A4CF-442CC8A9FB0E}, since=null, name=TxPduCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmitted PDUs.', htmlDescription='

Number of transmitted PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,590 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4281, uuid={BF7B41CE-7B62-4a5f-A9F6-D1E8A5A4952E}, since=null, name=TxSolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Number of solicited requests transmitted. Only for DNP.', htmlDescription='

Number of solicited requests transmitted. Only for DNP.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,590 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4282, uuid={BB6FDD4B-6837-4d88-B268-0D09301311FD}, since=null, name=TxUnsolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Contains the count of number of unsolicited requests that have been transmitted since the last reset.', htmlDescription='

Contains the count of number of unsolicited requests that have been transmitted since the last reset.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,590 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4306, uuid={85A6FA13-2677-4c99-BC12-DD878801CFC4}, since=null, name=StAsProcScsCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Station Association procedure has been successfully performed.', htmlDescription='

Number of times the Station Association procedure has been successfully performed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,590 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4307, uuid={F82373BD-CE1D-4a57-B13C-413810F179B0}, since=null, name=StAsProcFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Station Association procedure has failed.', htmlDescription='

Number of times the Station Association procedure has failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,591 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4308, uuid={69BDB5BC-DE98-4195-8110-202AD93E7AFC}, since=null, name=SKeyProcScsCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Session Key was changed successfully.', htmlDescription='

Number of times the Session Key was changed successfully.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,591 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4336, uuid={8BE551FF-4A0A-45b6-A0A0-D051150BF74D}, since=null, name=KeyAutnAlgSupFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Data authentication algorithm support failures. Controlled station only.', htmlDescription='

Number of Data authentication algorithm support failures. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,591 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4337, uuid={60FED222-F3AD-4f4c-A733-DE4950C990C2}, since=null, name=SKeyWrapAlgSupFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of key wrap algorithm support failures. Controlled station only.', htmlDescription='

Number of key wrap algorithm support failures. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,592 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4338, uuid={C2B0C0DF-C9DD-4aef-932E-B016DA2E6276}, since=null, name=DataProtAlgSupFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Data authentication algorithm support failures. Controlled station only.', htmlDescription='

Number of Data authentication algorithm support failures. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,592 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4339, uuid={55BE76A2-DF93-45de-9D84-4EE282ACC41B}, since=null, name=SKeyAutnErrCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Key authentication errors.', htmlDescription='

Number of Key authentication errors.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,592 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4340, uuid={97FE21BE-F20E-4b5f-9E7C-62B9BF57A4C7}, since=null, name=DataAutnErrCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of non-authentic Secure Data messages received.', htmlDescription='

Number of non-authentic Secure Data messages received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,592 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4341, uuid={303256CB-76CD-4b39-8D6B-6B5F7E4718DC}, since=null, name=UnxpMsgErrCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of unexpected messages received.', htmlDescription='

Number of unexpected messages received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,592 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4342, uuid={7B618961-D677-4bf9-83FB-40700B9BA9CC}, since=null, name=MaxReplyToutCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Max Reply Timeouts threshold was reached. Controlling station only.', htmlDescription='

Number of times the Max Reply Timeouts threshold was reached. Controlling station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,592 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4343, uuid={D8D3268F-F4C4-49d7-AB23-7946C1CEA6D1}, since=null, name=NodeAutrFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of unauthorized communication attempts.', htmlDescription='

Number of unauthorized communication attempts.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,592 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4344, uuid={23FA293A-4F87-4c7c-B4E2-6B3955B5ED61}, since=null, name=CtrlOperAutrFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of unauthorized operations. Controlled station only.', htmlDescription='

Number of unauthorized operations. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,592 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4345, uuid={6193E983-C056-491a-B7A3-EBE58355374C}, since=null, name=RemCertCheckFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of invalid certificates received.', htmlDescription='

Number of invalid certificates received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,592 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4346, uuid={46BA0F58-A6A4-4d23-9157-B07A5643B284}, since=null, name=RemCertExpiredCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the remote station's certificate expired.', htmlDescription='

Number of times the remote station's certificate expired.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,592 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4347, uuid={C54FF7FA-520C-4d4f-A4A1-B7E88C041568}, since=null, name=RemCertRevokedCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the remote station's certificate has been revoked.', htmlDescription='

Number of times the remote station's certificate has been revoked.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,592 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4348, uuid={95955856-F76D-4e05-B055-4FF8029E1A9D}, since=null, name=LocCertExpiredCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the local station's certificate expired.', htmlDescription='

Number of times the local station's certificate expired.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,592 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4349, uuid={DE7B5995-13C2-44c8-8579-6CEF37D201AF}, since=null, name=LocCertRevokedCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the local station's certificate has been revoked.', htmlDescription='

Number of times the local station's certificate has been revoked.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,592 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4350, uuid={2223C6EC-FBAE-4b91-8FF2-4407C5DFFF36}, since=null, name=KeysInvRemCertRevCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Cryptographic Keys were invalidated due to remote station's certificate revocation.', htmlDescription='

Number of times the Cryptographic Keys were invalidated due to remote station's certificate revocation.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,593 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4351, uuid={5DCACFEC-13BF-47c0-88D7-950B26D9DBBB}, since=null, name=KeysInvLocCertRevCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Cryptographic Keys were invalidated due to local station's certificate revocation.', htmlDescription='

Number of times the Cryptographic Keys were invalidated due to local station's certificate revocation.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,593 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4352, uuid={4A474D59-99BF-495e-BB9D-C3E096F5F83B}, since=null, name=DataAutnScsCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of authentic Secure Data messages received.', htmlDescription='

Number of authentic Secure Data messages received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,593 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4353, uuid={7F7D3F88-910D-4dae-B5B1-DED2E46A51C7}, since=null, name=ReplyToutCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Reply Timeouts. Controlling station only.', htmlDescription='

Number of Reply Timeouts. Controlling station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,593 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4354, uuid={E6FD44A6-C9CE-45d6-BA4A-3EF7DECB1691}, since=null, name=RequestToutCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Request Timeouts. Controlled station only.', htmlDescription='

Number of Request Timeouts. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,593 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4355, uuid={65E3DDC2-B3AC-4c86-8AF6-39C43114EC3C}, since=null, name=SKeyInvUseCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Session Key was invalidated due to Max Session Key Usage Count. Controlled station only.', htmlDescription='

Number of times the Session Key was invalidated due to Max Session Key Usage Count. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,593 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4356, uuid={3C26B695-A1A0-44c3-BE08-C75CA78940DA}, since=null, name=SKeyInvToutCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Session Keys were invalidated due to Max Session Key Usage Timeout. Controlled station only.', htmlDescription='

Number of times the Session Keys were invalidated due to Max Session Key Usage Timeout. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,593 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4357, uuid={B3A60D84-37C0-40f2-9019-17B8C45C778E}, since=null, name=SKeyProcFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Session Key Change failures.', htmlDescription='

Number of Session Key Change failures.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,593 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4335, uuid={90633EE5-94E7-44d3-B98C-08140BCBFCF1}, since=null, name=ProtInfoErrCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of protocol information errors. Controlled station only.', htmlDescription='

Number of protocol information errors. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,593 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4284, uuid={D3B5EC3D-3991-40b8-85B6-2AFB3206637A}, since=null, name=AssociationId, alias=, stereotype=index, visibility=public, txtDescription='Id of the association.', htmlDescription='

Id of the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,593 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4285, uuid={DB5A65D6-2349-4a56-A200-129882572A95}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,593 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4286, uuid={FABF76A8-43C1-4be2-89C5-4C3B7F18604B}, since=null, name=LocAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Local address.', htmlDescription='

Local address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 16:19:56,593 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4287, uuid={F933B36B-EE52-4922-9AA4-F0CB5A55F9CE}, since=null, name=LocAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Local address type.', htmlDescription='

Local address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 16:19:56,593 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4288, uuid={4EDE24F7-C4DB-4078-926A-3518CCBB1D8F}, since=null, name=ProtID, alias=, stereotype=protocol, visibility=public, txtDescription='Protocol ID in use.', htmlDescription='

Protocol ID in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=780, _eaTypeName=ProtIdType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1c7cbad, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,594 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4289, uuid={8CE59398-E353-464a-9B25-03588802C32E}, since=null, name=ProviderDesc, alias=, stereotype=identity, visibility=public, txtDescription='Textual description of the provider that is in use.', htmlDescription='

Textual description of the provider that is in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,594 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4290, uuid={BD1C65C9-07DF-4192-8713-A93BC3E1C050}, since=null, name=ProviderName, alias=, stereotype=identity, visibility=public, txtDescription='Identity of the provider responding as the outstation for this association.', htmlDescription='

Identity of the provider responding as the outstation for this association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,594 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4291, uuid={BEB1F3A7-96E9-4a7f-B4CE-78A311245A60}, since=null, name=RemAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address.', htmlDescription='

Remote address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 3_taggedValues{isIndex=yes, mibIndex=yes, Version=0}]. +2024-09-07 16:19:56,594 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4292, uuid={59810D47-4220-40e1-A018-FE80613740BC}, since=null, name=RemAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address type.', htmlDescription='

Remote address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 3_taggedValues{isIndex=yes, mibIndex=yes, Version=0}]. +2024-09-07 16:19:56,594 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4293, uuid={9AE7823D-F26B-48f8-A955-DA056C8C0F32}, since=null, name=TLnkErrCnt, alias=, stereotype=health, visibility=public, txtDescription='Count of communication link errors detected.', htmlDescription='

Count of communication link errors detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,594 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4294, uuid={FFAF85C1-58F9-4330-80FE-18A5100B3EE7}, since=null, name=TLnkTyp, alias=, stereotype=protocol, visibility=public, txtDescription='Type of transport being utilized.', htmlDescription='

Type of transport being utilized.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=778, _eaTypeName=LnkType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2cbe0, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,594 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4295, uuid={E543F5FE-D414-4517-9CFA-17AF02358984}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,594 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4296, uuid={A601B46C-5CB2-4663-BBDD-6B075EA07FE8}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered (security or health).', htmlDescription='

Provides the last known event encountered (security or health).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,594 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4297, uuid={DD17EC1E-C1D2-444e-BC3B-65A68EB1768E}, since=null, name=Master, alias=, stereotype=table, visibility=public, txtDescription='Client association (when applicable)', htmlDescription='

Client association (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=1057, _eaTypeName=MasterAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@4edc67, 2_taggedValues{MIBPrefix=tC, Version=0}]. +2024-09-07 16:19:56,594 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4298, uuid={927B1068-7146-4ea9-B50A-FD00B14D1747}, since=null, name=Outstation, alias=, stereotype=table, visibility=public, txtDescription='Server association (when applicable)', htmlDescription='

Server association (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=1056, _eaTypeName=OutstationAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@acaea5, 2_taggedValues{MIBPrefix=tC, Version=0}]. +2024-09-07 16:19:56,594 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4299, uuid={E4361517-7300-4db5-A392-69EAD372A4E2}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object', htmlDescription='

Security events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1055, _eaTypeName=60870andDNPSecurityNotificationEd2, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d56d67, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,595 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4300, uuid={240DF754-7E5E-4226-B4F4-F1DDBE6652EB}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object', htmlDescription='

State events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1061, _eaTypeName=60870andDNPNotificationEd2, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@18355a8, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,595 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2, _objData=UmlObjectData [id=4358, uuid={6AA445FA-BC7C-4384-8725-306C37B37564}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,595 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2, _objData=UmlObjectData [id=4360, uuid={60B53F7E-A6F1-449b-8917-E860F3F35ECB}, since=null, name=LastEvent, alias=, stereotype=protocol, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,595 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1254, uuid={60676AFB-06AF-480c-86DC-DDF92723390B}, since=null, name=assocPoolMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number of client/server associations.', htmlDescription='

Maximum number of client/server associations.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,595 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1255, uuid={B21687C2-9C22-4c8f-A435-15A69F7147D6}, since=null, name=assocPoolUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of client/server associations active.', htmlDescription='

Number of client/server associations active.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,595 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1278, uuid={6CA26B83-F728-4e94-9E7E-89E5998C3308}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,595 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=3931, uuid={75069142-E376-4865-9020-9924B1C82527}, since=null, name=CtrlPrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of control actions attempted that did not have the correct privilege.', htmlDescription='

Number of control actions attempted that did not have the correct privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,595 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1262, uuid={44D0F3A5-606C-4650-ABCB-FE16EEE777E3}, since=null, name=gsePubMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number GSE Publications supported.', htmlDescription='

Maximum number GSE Publications supported.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,595 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=2263, uuid={1C2B216E-5A48-41c9-8A95-E49BCC60C316}, since=null, name=gsePubUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of active GSE Publications.', htmlDescription='

Number of active GSE Publications.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,595 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1264, uuid={B2FDE11B-6BA3-4051-B3BD-15152FB16FED}, since=null, name=gseSubMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number of GSE Subscriptions.', htmlDescription='

Maximum number of GSE Subscriptions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,595 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1263, uuid={1842AD96-E339-455f-9BC0-7F98C8F31CEC}, since=null, name=gseSubUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of active GSE Subscriptions.', htmlDescription='

Number of active GSE Subscriptions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,595 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=3709, uuid={014B3324-A84F-455f-957B-1420E50D5C59}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,595 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=3930, uuid={F5A04750-F784-4c0c-AB12-2298DE62BB99}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,596 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1271, uuid={A10D2F0C-3A4C-4aa4-B832-655CEBF8F43C}, since=null, name=RemoteEstAssocCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count of the number of currently active associations that were established through the ACSI associate response.', htmlDescription='

Count of the number of currently active associations that were established through the ACSI associate response.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,596 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=3932, uuid={7EF57F32-F44A-4126-9201-8EFAD41F12D4}, since=null, name=AcsCtlFail, alias=, stereotype=security, visibility=public, txtDescription='Number of access control failures detected (i.e., when a data object that the client wanted to access exists in the server, but based on the access view of the association with that client, an access to the data object was refused).', htmlDescription='

Number of access control failures detected (i.e., when a data object that the client wanted to access exists in the server, but based on the access view of the association with that client, an access to the data object was refused).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,596 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1282, uuid={2E06924F-F7EB-44a7-A1D2-2428322A0892}, since=null, name=svPubMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number SV publications supported.', htmlDescription='

Maximum number SV publications supported.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,596 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1281, uuid={D6CCDFE9-6558-4cd0-B508-8BA15852D950}, since=null, name=svPubUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of active SV publications.', htmlDescription='

Number of active SV publications.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,596 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1284, uuid={769A7A31-DA16-43a0-A340-14FF723B8636}, since=null, name=svSubMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number SV subscriptions supported.', htmlDescription='

Maximum number SV subscriptions supported.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,596 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1283, uuid={40270792-85F3-4361-850B-A5F29E1B75C0}, since=null, name=svSubUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of active SV subscriptions.', htmlDescription='

Number of active SV subscriptions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,596 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=4122, uuid={B070617B-7900-42b1-8DA7-F591BA2099FA}, since=null, name=ErrorRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of error PDU that have been received including: +- Confirmed-ErrorPDU (only for client) +- Cancel-ErrorPDU (only for client) +- Initiate-ErrorPDU +- Conclude-ErrorPDU.', htmlDescription='

Number of error PDU that have been received including:

  • Confirmed-ErrorPDU (only for client)
  • Cancel-ErrorPDU (only for client)
  • Initiate-ErrorPDU
  • Conclude-ErrorPDU.
'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,596 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=4123, uuid={650B0D6F-9766-4bae-9182-5EC830CB64E3}, since=null, name=ErrorTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of error PDU that have been sent including: +- Confirmed-ErrorPDU (only for server) +- Cancel-ErrorPDU (only for server) +- Initiate-ErrorPDU +- Conclude-ErrorPDU.', htmlDescription='

Number of error PDU that have been sent including:

  • Confirmed-ErrorPDU (only for server)
  • Cancel-ErrorPDU (only for server)
  • Initiate-ErrorPDU
  • Conclude-ErrorPDU.
'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,596 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3214, uuid={30ED064F-399A-4e3a-97D2-D106F082CF4F}, since=null, name=InfoRptRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of MMS Information Reports that have been received.', htmlDescription='

Number of MMS Information Reports that have been received.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,597 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=4120, uuid={CEC51410-D5D9-4150-B1C4-AA691F453D23}, since=null, name=InfoRptTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of MMS Information Reports that have been sent.', htmlDescription='

Number of MMS Information Reports that have been sent.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,597 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3969, uuid={94722C63-A68B-4460-A0BA-93F19272E206}, since=null, name=MisCmdAckCnt, alias=, stereotype=security, visibility=public, txtDescription='Provides an attribute that indicates the count of the number of MMS request that have not been acknowledged.', htmlDescription='

Provides an attribute that indicates the count of the number of MMS request that have not been acknowledged.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,597 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3414, uuid={8F4B6AF1-5A4A-47a1-A365-8963A1FAE78F}, since=null, name=MMSProExchTime, alias=, stereotype=performance, visibility=public, txtDescription='MMS Profile exchange duration (seconds). MMS profile is meant as Logical Devices, Logical Nodes and Dataset definition are exchanged.', htmlDescription='

MMS Profile exchange duration (seconds). MMS profile is meant as Logical Devices, Logical Nodes and Dataset definition are exchanged.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,597 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3211, uuid={6C0EA55B-1ACA-4a3a-9068-E9C2CEC96B9D}, since=null, name=RejectRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of RejectPDU received.', htmlDescription='

Number of RejectPDU received.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,597 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3212, uuid={C8554D1E-C163-4286-96BB-E26046672513}, since=null, name=RejectTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of RejectPDU sent.', htmlDescription='

Number of RejectPDU sent.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,597 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3208, uuid={C94BBBC3-1104-42b0-B156-E80FE61CBDB8}, since=null, name=ReqRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of request PDU that have been received including: +- Confirmed-RequestPDU (only for server) +- Cancel-RequestPDU (only for server) +- Initiate-RequestPDU +- Conclude-RequestPDU.', htmlDescription='

Number of request PDU that have been received including:

  • Confirmed-RequestPDU (only for server)
  • Cancel-RequestPDU (only for server)
  • Initiate-RequestPDU
  • Conclude-RequestPDU.
'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,598 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3206, uuid={023D9D84-38BC-4c86-B9CC-78085AC2F869}, since=null, name=ReqTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of request PDU that have been sent including: +- Confirmed-RequestPDU (only for client) +- Cancel-RequestPDU (only for client) +- Initiate-RequestPDU +- Conclude-RequestPDU.', htmlDescription='

Number of request PDU that have been sent including:

  • Confirmed-RequestPDU (only for client)
  • Cancel-RequestPDU (only for client)
  • Initiate-RequestPDU
  • Conclude-RequestPDU.
'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,598 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3210, uuid={B07FEDC7-72A1-43b4-9CA9-AEDC8CE77EAF}, since=null, name=RespRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of response PDU that have been received including: +- Confirmed-ResponsePDU (only for client) +- Cancel-ResponsePDU (only for client) +- Initiate-ResponsePDU +- Conclude-ResponsePDU +.', htmlDescription='

Number of response PDU that have been received including:

  • Confirmed-ResponsePDU (only for client)
  • Cancel-ResponsePDU (only for client)
  • Initiate-ResponsePDU
  • Conclude-ResponsePDU

.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,598 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3209, uuid={06689B60-CBF2-4d45-8B5A-FB998997F62F}, since=null, name=RespTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of response PDU that have been sent including: +- Confirmed-ResponsePDU (only for server) +- Cancel-ResponsePDU (only for server) +- Initiate-ResponsePDU +- Conclude-ResponsePDU..', htmlDescription='

Number of response PDU that have been sent including:

  • Confirmed-ResponsePDU (only for server)
  • Cancel-ResponsePDU (only for server)
  • Initiate-ResponsePDU
  • Conclude-ResponsePDU..
'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,598 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3935, uuid={1F695097-A4ED-4e85-94FE-44B50CFE99F1}, since=null, name=SessKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of session key negotiations that failed.', htmlDescription='

Number of session key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,598 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3918, uuid={7DB85E2A-0EB8-4226-BEBB-924AB496EB36}, since=null, name=AProfileDecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted within A-Profile session.', htmlDescription='

Number PDUs received that could not be decrypted within A-Profile session.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,598 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3938, uuid={A3E432FD-BDD0-4ccf-9233-0A226162B425}, since=null, name=AuthFail, alias=, stereotype=security, visibility=public, txtDescription='Count of the number of authorization failures.', htmlDescription='

Count of the number of authorization failures.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,598 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3245, uuid={D1866C6F-051F-404e-9A2B-AC1D6D44D3FC}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,598 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2831, uuid={2F166DD9-DE35-44b6-91DE-78EA3A9D0652}, since=null, name=ConnFailInCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of incoming Initiate-requests that have been refused.', htmlDescription='

Number of incoming Initiate-requests that have been refused.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,598 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2832, uuid={BA3D3302-5D14-40f7-9AA3-145CCB5F1361}, since=null, name=ConnFailOutCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of outgoing Initiate-requests that have been refused.', htmlDescription='

Number of outgoing Initiate-requests that have been refused.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,598 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3936, uuid={86BF3330-EB9C-4633-AB27-D7612CE8D05C}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted.', htmlDescription='

Number PDUs received that could not be decrypted.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,600 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3710, uuid={0163C656-8AA1-4c67-82E4-258002A53DDE}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,600 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2803, uuid={DEAB3F8B-E3E4-4664-B8B6-2D0C07019F7B}, since=null, name=MMS, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed MMS information can be obtained for each connection.', htmlDescription='

Provides a table through which more detailed MMS information can be obtained for each connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=693, _eaTypeName=MMSAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3884b2, 3_taggedValues{mibPrefix=mMS, objectIdentity=mMSMMSEntry, Version=0}]. +2024-09-07 16:19:56,600 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3915, uuid={294CE46B-D0B5-49f5-BF02-E0988430AD45}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,600 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2810, uuid={22C7C42F-8D14-493c-A2EA-CCD76245D0BE}, since=null, name=ProviderDesc, alias=, stereotype=identity, visibility=public, txtDescription='Description of provider.', htmlDescription='

Description of provider.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,600 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2811, uuid={D38418EB-A105-4a60-8D61-BB360D9237B5}, since=null, name=ProviderName, alias=, stereotype=identity, visibility=public, txtDescription='Name of the provider.', htmlDescription='

Name of the provider.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,600 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3614, uuid={A048CDB1-2C04-4ec3-B2B0-2F9ACEE80E4F}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=920, _eaTypeName=MMSSecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1275dab, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,600 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=4030, uuid={354E6408-AAF1-42b2-B717-205A592C81BE}, since=null, name=SessionEstablishmentRate, alias=, stereotype=performance, visibility=public, txtDescription='The number of times any Association has been restablished after a disconnection within 15 minutes.', htmlDescription='

The number of times any Association has been restablished after a disconnection within 15 minutes.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,601 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=4031, uuid={F68354BD-DA88-4aca-B25F-9C06F7BEFBB9}, since=null, name=SessionRestartCnt, alias=, stereotype=security, visibility=public, txtDescription='Provides an attribute that indicates the count of the number of times the session has been restablished.', htmlDescription='

Provides an attribute that indicates the count of the number of times the session has been restablished.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,601 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3613, uuid={0233C10F-B173-4f99-A4E9-A79E7500E3B0}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object.', htmlDescription='

State events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=921, _eaTypeName=MMSNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1832929, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,601 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3919, uuid={575C57A8-200D-4db3-B297-AE2635C01BC3}, since=null, name=TProfileDecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted within T-Profile session.', htmlDescription='

Number PDUs received that could not be decrypted within T-Profile session.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,601 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3921, uuid={D87795A0-A0B4-4126-9015-DBEBDD79CA50}, since=null, name=TProfileSessKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of session key negotiations that failed. This applies only to T-Profile.', htmlDescription='

Number of session key negotiations that failed. This applies only to T-Profile.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,601 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3975, uuid={5C2EA464-4FB4-4413-90B5-E3451373A966}, since=null, name=UpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations that failed.', htmlDescription='

Number of update key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,601 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2820, uuid={3D4B3729-146B-4ed2-976D-D539FFAAAE40}, since=null, name=Active, alias=, stereotype=protocol, visibility=public, txtDescription='True if association is in use.', htmlDescription='

True if association is in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,601 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3727, uuid={9E3D1B59-980F-4217-B141-1C353C1D4E72}, since=null, name=AssociationId, alias=, stereotype=index, visibility=public, txtDescription='Id of the association.', htmlDescription='

Id of the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,602 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=4119, uuid={8717A248-6228-4974-9285-1B96BBEDF420}, since=null, name=Client, alias=, stereotype=protocol, visibility=public, txtDescription='True if role is client, false if role is server', htmlDescription='

True if role is client, false if role is server

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@756e4d, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,602 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3246, uuid={2C472C21-D2BB-4a4b-8D93-5C0E3346AA95}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,602 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3939, uuid={EBEAECC3-8BE4-4469-B891-4898C2954EE5}, since=null, name=HndShTime, alias=, stereotype=performance, visibility=public, txtDescription='Duration of the MMS session handshake. This apply to the sender only.', htmlDescription='

Duration of the MMS session handshake. This apply to the sender only.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,602 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2844, uuid={C34BBC7F-ACC5-4172-B430-081B10B49819}, since=null, name=RemoteEstAssos, alias=, stereotype=protocol, visibility=public, txtDescription='True if the association was established due to an incoming Initiate-Request.', htmlDescription='

True if the association was established due to an incoming Initiate-Request.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@756e4d, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,602 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2876, uuid={BF20C38C-E4DE-439e-A7C3-2D9FCB7CA1C2}, since=null, name=RemoteIP, alias=, stereotype=protocol, visibility=public, txtDescription='Remote entity IP network address.', htmlDescription='

Remote entity IP network address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 16:19:56,602 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3692, uuid={5EA2A0D0-6DA8-427e-ADEB-2CC19FDBB143}, since=null, name=RemoteIPAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,602 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2873, uuid={14DA2F03-EFD1-4b98-A66F-EFD6046F1025}, since=null, name=RemotePSEL, alias=, stereotype=protocol, visibility=public, txtDescription='Remote entity presentation selector.', htmlDescription='

Remote entity presentation selector.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=782, _eaTypeName=Selector, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@82f6ef, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 16:19:56,602 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2874, uuid={C4E19558-A5AA-43ce-A203-6E7BACDD96C7}, since=null, name=RemoteSSEL, alias=, stereotype=protocol, visibility=public, txtDescription='Remote entity session selector.', htmlDescription='

Remote entity session selector.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=782, _eaTypeName=Selector, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@82f6ef, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 16:19:56,602 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2875, uuid={C5BC70EE-7E84-4822-95B3-1EA00D57E252}, since=null, name=RemoteTSEL, alias=, stereotype=protocol, visibility=public, txtDescription='Remote entity transport selector.', htmlDescription='

Remote entity transport selector.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=782, _eaTypeName=Selector, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@82f6ef, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 16:19:56,603 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3972, uuid={47D3343F-E927-48ec-8558-54CC13AEC30E}, since=null, name=ReportPer100Seconds, alias=, stereotype=performance, visibility=public, txtDescription='Number of Reports received/transmitted during the last 100 seconds.', htmlDescription='

Number of Reports received/transmitted during the last 100 seconds.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,603 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3968, uuid={D1802DDE-FE54-49d6-9EBB-1A5DE0464F3A}, since=null, name=RptReceptionDelay, alias=, stereotype=performance, visibility=public, txtDescription='The time required to receive the last Report. This time is the difference between the reception time and the emission timestamp stored inside the report. If not synchronized this value shall be set to -1.', htmlDescription='

The time required to receive the last Report. This time is the difference between the reception time and the emission timestamp stored inside the report. If not synchronized this value shall be set to -1.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,603 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3913, uuid={B94A45CC-7384-41ee-9821-F77D634C675F}, since=null, name=SecurityProfile, alias=, stereotype=protocol, visibility=public, txtDescription='This is the security profile in use for this association (no security, integrity A profile, A+, AE+).', htmlDescription='

This is the security profile in use for this association (no security, integrity A profile, A+, AE+).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1013, _eaTypeName=SecurityProfileType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@153acfe, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,603 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSSecurityNotification, _objData=UmlObjectData [id=3582, uuid={ED76E952-B3FD-4bbd-B4F7-7F695D6C14B6}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of PDUs received that could not be decrypted.', htmlDescription='

Number of PDUs received that could not be decrypted.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,603 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSSecurityNotification, _objData=UmlObjectData [id=4036, uuid={6D84220E-9E6E-4b52-8843-92394244A0F5}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,603 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSSecurityNotification, _objData=UmlObjectData [id=3581, uuid={52A9B9D0-58D5-4d7d-A396-A7788A41EB89}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,603 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSSecurityNotification, _objData=UmlObjectData [id=3584, uuid={4F8B7D7A-78C6-4ac7-A43C-8B06E8D829E0}, since=null, name=UpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations that failed.', htmlDescription='

Number of update key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,603 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSNotification, _objData=UmlObjectData [id=3573, uuid={6F0A08FF-024D-4919-99B5-B68C203679AA}, since=null, name=ConnFailInCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of incoming Initiate-requests that have been refused.', htmlDescription='

Number of incoming Initiate-requests that have been refused.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,603 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSNotification, _objData=UmlObjectData [id=3574, uuid={F172E26F-F99A-4ca4-BBF3-4759B78D18F3}, since=null, name=ConnFailOutCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of outgoing Initiate-requests that have been refused.', htmlDescription='

Number of outgoing Initiate-requests that have been refused.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,603 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSNotification, _objData=UmlObjectData [id=3575, uuid={5F493EBC-63E7-480b-B344-66194892E87B}, since=null, name=RejectRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of reject issued in reception.', htmlDescription='

Number of reject issued in reception.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,603 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSNotification, _objData=UmlObjectData [id=3576, uuid={0D61F583-C436-4314-A1B5-C6FA04940FD7}, since=null, name=RejectTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received Reject on transmission.', htmlDescription='

Number of received Reject on transmission.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,604 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVCommon, _objData=UmlObjectData [id=4054, uuid={8F7CBDDF-5309-4c57-A3E5-B0C820FEC605}, since=null, name=GroupUpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations at KDC that failed.', htmlDescription='

Number of update key negotiations at KDC that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,604 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVCommon, _objData=UmlObjectData [id=4055, uuid={72C144FE-7138-4153-8C18-0FC5BC1E8998}, since=null, name=KDCAuthFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Count of the number of authorization failures against KDC.', htmlDescription='

Count of the number of authorization failures against KDC.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,604 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVCommon, _objData=UmlObjectData [id=4056, uuid={10AD71AC-8E2C-4afb-88B0-4CAAF7C06C47}, since=null, name=KDCSessionKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Session Key establishment between peer and KDC failed.', htmlDescription='

Session Key establishment between peer and KDC failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,604 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=4057, uuid={C97C7E95-F1A3-49a6-84CD-F37F54D4DCAA}, since=null, name=CBRef, alias=, stereotype=index, visibility=public, txtDescription='Reference of the GSE/SV Control block being supervised.', htmlDescription='

Reference of the GSE/SV Control block being supervised.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,604 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=4058, uuid={A3300C61-0405-4178-AA24-56139902DFD1}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,604 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=4059, uuid={B346F0EE-81BD-4f02-BD05-3DEB6C966B08}, since=null, name=OutUv, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer underflows detected due to outgoing serial communication.', htmlDescription='

Number of buffer underflows detected due to outgoing serial communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,604 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=4366, uuid={10164DB8-AB84-46a3-9325-B0D817803F9A}, since=null, name=APPID, alias=, stereotype=protocol, visibility=public, txtDescription='Application Identifier being expected.', htmlDescription='

Application Identifier being expected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,604 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=3829, uuid={F6725CAA-C95B-431e-BCC4-6877D34082A8}, since=null, name=TxPduPerSecond, alias=, stereotype=protocol, visibility=public, txtDescription='Count of the number of SV telegrams sent within a second on the association.', htmlDescription='

Count of the number of SV telegrams sent within a second on the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,604 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4061, uuid={E70C3857-A774-4635-9A52-713A3189C31C}, since=null, name=CBRef, alias=, stereotype=index, visibility=public, txtDescription='Reference of the GSE/SV Control block being supervised.', htmlDescription='

Reference of the GSE/SV Control block being supervised.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,605 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4062, uuid={2E060239-4EB9-4a8a-A7C3-AED6EDA8C5A3}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,605 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4063, uuid={B4825E20-07C1-4cde-94AD-CFE37852AE7F}, since=null, name=InOvCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer overflows detected due to incoming communication. This counter is incremented each time the buffer space is insufficient to receive an incoming message.', htmlDescription='

Number of buffer overflows detected due to incoming communication. This counter is incremented each time the buffer space is insufficient to receive an incoming message.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,605 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4064, uuid={BA2766B5-6FA2-4c9b-85EA-7353D0790FDF}, since=null, name=MessageIntegrityFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number messages that were not using the proper Group Key.', htmlDescription='

Number messages that were not using the proper Group Key.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,606 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4067, uuid={85138267-8516-4911-9D4D-D78674944F2D}, since=null, name=RxPduPerSecond, alias=, stereotype=protocol, visibility=public, txtDescription='Count of the number of SV telegrams received within a second on the association.', htmlDescription='

Count of the number of SV telegrams received within a second on the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,606 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4365, uuid={7955A1E1-9F67-46da-A434-8EA5BA1C0BE2}, since=null, name=APPID, alias=, stereotype=protocol, visibility=public, txtDescription='Application identified being expected.', htmlDescription='

Application identified being expected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,606 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4367, uuid={2B5045AC-99BD-4941-BCD5-36ABDDCAC2FF}, since=null, name=RxAPPID, alias=, stereotype=protocol, visibility=public, txtDescription='Last Application Identifier being received.', htmlDescription='

Last Application Identifier being received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f5e5e3, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,606 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3844, uuid={C24FF010-3527-40b6-A143-3CBD3C95FC45}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,606 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=4052, uuid={4D212643-73E9-4b01-B3E4-1419141F7F5C}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of PDUs received that could not be decrypted', htmlDescription='

Number of PDUs received that could not be decrypted

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,606 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3845, uuid={62E2AB60-AB61-489b-9B09-FC14A0BF4694}, since=null, name=PDUSizeFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDU with wrong size. This is meaningful only for IP telegrams.', htmlDescription='

Number of received PDU with wrong size. This is meaningful only for IP telegrams.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,606 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3846, uuid={A6C46361-5561-43d2-8B67-6DAC7566C062}, since=null, name=PIP, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed SV information can be obtained for each IP publisher connection.', htmlDescription='

Provides a table through which more detailed SV information can be obtained for each IP publisher connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=994, _eaTypeName=SVPublisherAssociationIP, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@132ec19, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}]. +2024-09-07 16:19:56,606 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3847, uuid={1C5E81A0-3007-4221-BBCF-B4538CDCD068}, since=null, name=PL2, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed SV information can be obtained for each L2 (Ethernet) publisher connection.', htmlDescription='

Provides a table through which more detailed SV information can be obtained for each L2 (Ethernet) publisher connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=995, _eaTypeName=SVPublisherAssociationL2, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c4039c, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}]. +2024-09-07 16:19:56,606 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3848, uuid={F24AD27F-DE3D-4d47-BF82-D81306D727FD}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=997, _eaTypeName=SVNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e45eb6, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,606 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3849, uuid={E61DCB59-D671-4e3e-AF63-7A7934A7139B}, since=null, name=SIP, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed SV information can be obtained for each IP subscriber connection.', htmlDescription='

Provides a table through which more detailed SV information can be obtained for each IP subscriber connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=998, _eaTypeName=SVSubcriberAssociationIP, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@19f99ea, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}]. +2024-09-07 16:19:56,607 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3850, uuid={3A8AA373-DF4D-4203-9E17-D1A556AE4626}, since=null, name=SL2, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed SV information can be obtained for each L2 (Ethernet) subscriber connection.', htmlDescription='

Provides a table through which more detailed SV information can be obtained for each L2 (Ethernet) subscriber connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=999, _eaTypeName=SVSubcriberAssociationL2, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1efef64, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}]. +2024-09-07 16:19:56,607 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVPublisherAssociationIP, _objData=UmlObjectData [id=3817, uuid={3EC59ACA-14AB-4adf-823D-4EF3DBBA4715}, since=null, name=DestIpAddr, alias=, stereotype=protocol, visibility=public, txtDescription='Destination IP address.', htmlDescription='

Destination IP address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 16:19:56,607 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVPublisherAssociationIP, _objData=UmlObjectData [id=3818, uuid={3B41797D-66B7-473b-A47C-92A5B0C6DB2C}, since=null, name=DestIpAddrType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,607 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVPublisherAssociationL2, _objData=UmlObjectData [id=3819, uuid={2E77B17F-D224-4764-9C29-36CD379797D7}, since=null, name=DestMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f4468b, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 16:19:56,607 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVSubcriberAssociationIP, _objData=UmlObjectData [id=3823, uuid={CF21D44F-A555-48cc-99A1-D49E20097B5D}, since=null, name=SrcIpAddr, alias=, stereotype=protocol, visibility=public, txtDescription='Source IP address.', htmlDescription='

Source IP address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 16:19:56,607 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVSubcriberAssociationIP, _objData=UmlObjectData [id=3824, uuid={3AB68377-764F-4314-851D-FEE4B40FC99E}, since=null, name=SrcIpAddrType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,607 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVSubcriberAssociationL2, _objData=UmlObjectData [id=3825, uuid={A6F5F486-2B40-4620-ADA1-3CBA7408C0D8}, since=null, name=SrcMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f4468b, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 16:19:56,607 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=3750, uuid={AFDD17DA-6B2F-4bc7-8F89-0E63A9B7D1D7}, since=null, name=ConfRevMis, alias=, stereotype=protocol, visibility=public, txtDescription='True indicates that the expected configuration revision did not match the received number.', htmlDescription='

True indicates that the expected configuration revision did not match the received number.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@756e4d, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,607 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=3755, uuid={2E11DB8F-06FC-485f-8C56-703E601D8A60}, since=null, name=NdsComm, alias=, stereotype=protocol, visibility=public, txtDescription='Duplicated Message received', htmlDescription='

Duplicated Message received

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@756e4d, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,607 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4368, uuid={9075FAD9-2CE1-4e5d-907F-DBD0B4B1CC32}, since=null, name=ConfRev, alias=, stereotype=protocol, visibility=public, txtDescription='Last configuration Revision being received.', htmlDescription='

Last configuration Revision being received.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,608 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4369, uuid={E4803687-6245-40fd-AB97-A5A553A34C59}, since=null, name=RxConfRev, alias=, stereotype=protocol, visibility=public, txtDescription='True indicates that the expected configuration revision did not match the received number.', htmlDescription='

True indicates that the expected configuration revision did not match the received number.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,608 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=3758, uuid={EBC5C199-473E-4859-B0FE-DD1C08CC93AF}, since=null, name=TalExpCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count of the received TAL expirations that have been detected.', htmlDescription='

Count of the received TAL expirations that have been detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,608 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4370, uuid={09E69AF6-2C2B-46e9-B274-E5220B53D94D}, since=null, name=OosErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of times out of sequence of GOOSE has been observed.', htmlDescription='

Number of times out of sequence of GOOSE has been observed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,608 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4371, uuid={5B152C15-4AC4-421a-87EB-F81484BD2524}, since=null, name=DupMsgRx, alias=, stereotype=protocol, visibility=public, txtDescription='If true, the subscription needs commissioning, i.e., the received message does not conform to the current subscription configuration (either the 'dataSetRef' is wrong, the data set members, the configuration revision number, or no subscription is configured at all).', htmlDescription='

If true, the subscription needs commissioning, i.e., the received message does not conform to the current subscription configuration (either the 'dataSetRef' is wrong, the data set members, the configuration revision number, or no subscription is configured at all).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,608 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4372, uuid={313447D4-3710-47a8-85FF-DAA9316F8720}, since=null, name=DatSet, alias=, stereotype=protocol, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,608 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4373, uuid={8E3C588A-BEC3-454f-861F-712BADFC92AA}, since=null, name=RxDatSet, alias=, stereotype=protocol, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f5e5e3, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,608 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4374, uuid={C304ABDA-E4BA-4cfc-BAD9-17425F5A0611}, since=null, name=GoID, alias=, stereotype=protocol, visibility=public, txtDescription='GOOSE Identifier being expected.', htmlDescription='

GOOSE Identifier being expected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,608 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4375, uuid={985D635D-D095-4282-B40B-8D3F15CDC152}, since=null, name=RxGoID, alias=, stereotype=protocol, visibility=public, txtDescription='Last GOOSE Identifier being received.', htmlDescription='

Last GOOSE Identifier being received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f5e5e3, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,608 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4376, uuid={3BC29513-E13B-40a1-A86D-4B3406FC2CD1}, since=null, name=StNum, alias=, stereotype=protocol, visibility=public, txtDescription='StNum being received from last accepted GOOSE message.', htmlDescription='

StNum being received from last accepted GOOSE message.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,609 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4377, uuid={699EF357-D4F5-4445-8F55-446FF895C089}, since=null, name=SqNum, alias=, stereotype=protocol, visibility=public, txtDescription='SqNum being received from last accepted GOOSE message.', htmlDescription='

SqNum being received from last accepted GOOSE message.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,609 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4378, uuid={778EF329-63E8-4a88-A172-D2DAD54D972A}, since=null, name=RejectStNum, alias=, stereotype=protocol, visibility=public, txtDescription='Last StNum being rejected.', htmlDescription='

Last StNum being rejected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,609 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4379, uuid={A699C155-79DE-4187-BDF5-AFD122DAD7CA}, since=null, name=RejectSqNum, alias=, stereotype=protocol, visibility=public, txtDescription='Last SqNum being rejected.', htmlDescription='

Last SqNum being rejected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,609 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4494, uuid={98542797-3D0F-4f54-96D7-B2BEBEAF605A}, since=null, name=RxT, alias=, stereotype=protocol, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@fc185, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,609 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3243, uuid={71555478-FCAD-4dae-B530-6956D1B5D475}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,610 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=4053, uuid={A432D351-022A-4b49-AA3D-61CBB91067FC}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of PDUs received that could not be decrypted', htmlDescription='

Number of PDUs received that could not be decrypted

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,610 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3773, uuid={4B58CE58-88E3-4e07-9FF3-FE0181F95942}, since=null, name=InErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of PDUs received that were in error due to malformed content, parity errors or configuration mismatch.', htmlDescription='

Number of PDUs received that were in error due to malformed content, parity errors or configuration mismatch.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,610 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=4121, uuid={D727F0F0-5C88-4fc4-83C5-D69614BE4ED8}, since=null, name=InUnexpectedMulticast, alias=, stereotype=protocol, visibility=public, txtDescription='Count of unexpected multicast received PDUs. This apply to GOOSE only.', htmlDescription='

Count of unexpected multicast received PDUs. This apply to GOOSE only.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,610 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3744, uuid={8BC8E8B9-0BA6-4277-B1B1-23F48CD0FD30}, since=null, name=PIP, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed GSE information can be obtained for each IP publisher connection.', htmlDescription='

Provides a table through which more detailed GSE information can be obtained for each IP publisher connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=796, _eaTypeName=GSEPublisherAssociationIP, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@6fa38a, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}]. +2024-09-07 16:19:56,610 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3745, uuid={10373ECE-DF59-4995-BA92-240A3CC2D94B}, since=null, name=PL2, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed GSE information can be obtained for each L2 (Ethernet) publisher connection.', htmlDescription='

Provides a table through which more detailed GSE information can be obtained for each L2 (Ethernet) publisher connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=984, _eaTypeName=GSEPublisherAssociationL2, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@a3ffec, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}]. +2024-09-07 16:19:56,610 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3618, uuid={BF431EAB-1B49-4c5a-8BC3-171FED573957}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=930, _eaTypeName=GSENotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1caeb3e, 1_taggedValues{Version=1}]. +2024-09-07 16:19:56,610 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3046, uuid={AA8FC433-0ACC-4dcf-9B1C-59469C28FCA5}, since=null, name=SIP, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed GSE information can be obtained for each IP subscriber connection.', htmlDescription='

Provides a table through which more detailed GSE information can be obtained for each IP subscriber connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=979, _eaTypeName=GSESubcriberAssociationIP, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1e88b3c, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}]. +2024-09-07 16:19:56,610 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3746, uuid={F6A461DF-31BD-4546-8B62-BE2A79D53F41}, since=null, name=SL2, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed GSE information can be obtained for each L2 (Ethernet) subscriber connection.', htmlDescription='

Provides a table through which more detailed GSE information can be obtained for each L2 (Ethernet) subscriber connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=977, _eaTypeName=GSESubcriberAssociationL2, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d80b78, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}]. +2024-09-07 16:19:56,610 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEPublisherAssociationIP, _objData=UmlObjectData [id=3803, uuid={9C513452-9437-4849-894C-B2C33952D4F0}, since=null, name=DestIpAddr, alias=, stereotype=protocol, visibility=public, txtDescription='Destination IP address.', htmlDescription='

Destination IP address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 16:19:56,610 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEPublisherAssociationIP, _objData=UmlObjectData [id=3802, uuid={03D1AF7D-F2B5-425c-8FD2-63B09E3887F9}, since=null, name=DestIpAddrType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,611 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEPublisherAssociationL2, _objData=UmlObjectData [id=3801, uuid={53A15D60-889F-4c5a-BCF1-89AF1D539B97}, since=null, name=DestMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f4468b, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 16:19:56,611 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEPublisherAssociationL2, _objData=UmlObjectData [id=4362, uuid={1EF8C591-A06A-43cb-8FBF-95E679E109F8}, since=null, name=SrcMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f4468b, 2_taggedValues{mibIndex=no, Version=1}]. +2024-09-07 16:19:56,611 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubcriberAssociationIP, _objData=UmlObjectData [id=3740, uuid={FFD24620-C094-400d-8BD1-F48524198222}, since=null, name=SrcIpAddr, alias=, stereotype=protocol, visibility=public, txtDescription='Source IP address. .', htmlDescription='

Source IP address. .

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 16:19:56,611 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubcriberAssociationIP, _objData=UmlObjectData [id=3739, uuid={B418786B-EB08-4581-8037-B7C3A6E0311A}, since=null, name=SrcIpAddrType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,611 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubcriberAssociationL2, _objData=UmlObjectData [id=3742, uuid={556B251D-88A4-4ac8-855E-D537776F059A}, since=null, name=SrcMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP Profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP Profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f4468b, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 16:19:56,611 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubcriberAssociationL2, _objData=UmlObjectData [id=4361, uuid={5024F7E1-FEC6-4125-AF1E-FFC7C29B18D8}, since=null, name=DstMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP Profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP Profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f4468b, 2_taggedValues{mibIndex=no, Version=1}]. +2024-09-07 16:19:56,611 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=2651, uuid={219E72A9-5B41-4365-A90E-491097F96C10}, since=null, name=clockTamperDetected, alias=, stereotype=security, visibility=public, txtDescription='Timestamp of when a tamper of a clock has been detected', htmlDescription='

Timestamp of when a tamper of a clock has been detected

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@fc185, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,611 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=2656, uuid={C95F5CA0-6663-41c7-BAE9-BB32F924F8F1}, since=null, name=LastClockHoldover, alias=, stereotype=health, visibility=public, txtDescription='Indicates the timestamp at which the last Holdover was detected.', htmlDescription='

Indicates the timestamp at which the last Holdover was detected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@fc185, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,611 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=2657, uuid={FF50E5F4-F0FB-48b1-B605-B025F27CA0DD}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='When written True, the statistics of clockTamperDetected and LastClockHoldover are set back to a value of zero. The values in the clocks table are not impacted by this reset.', htmlDescription='

When written True, the statistics of clockTamperDetected and LastClockHoldover are set back to a value of zero. The values in the clocks table are not impacted by this reset.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,611 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=2650, uuid={106DFE8D-727B-42bf-84CA-4C8E484CB760}, since=null, name=Clocks, alias=, stereotype=table, visibility=public, txtDescription='Table of information regarding the clock sources that are in use.', htmlDescription='

Table of information regarding the clock sources that are in use.

'], _isConst=false, _isStatic=false, _multiplicity=[0..n], _initValue=, _eaTypeId=608, _eaTypeName=ClockEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ce4f0a, 3_taggedValues{mibPrefix=cLK, objectIdentity=cLKclockEntry, Version=0}]. +2024-09-07 16:19:56,611 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=3631, uuid={31D800F0-35C2-4312-95B7-E3A890982D86}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=944, _eaTypeName=SecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3a8624, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,611 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2646, uuid={E98C8059-D343-41c5-A9FD-C45F4FA62052}, since=null, name=ClockAccuracy, alias=, stereotype=health, visibility=public, txtDescription='Reports the current expected accuracy of this clock in nanoseconds. A value of -1 indicates that the accuracy is unknown or estimated to be larger than 2147483647 ns.', htmlDescription='

Reports the current expected accuracy of this clock in nanoseconds. A value of -1 indicates that the accuracy is unknown or estimated to be larger than 2147483647 ns.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,611 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=3085, uuid={50EFFF08-CB85-4033-8EB9-8FC29AACD6DC}, since=null, name=ClockIndex, alias=, stereotype=index, visibility=public, txtDescription='Clock Index', htmlDescription='

Clock Index

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 16:19:56,611 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=3729, uuid={E0CAC256-AD0A-4515-9F48-63353DA71841}, since=null, name=ClockIssue, alias=, stereotype=performance, visibility=public, txtDescription='Reports the presence of any clock issue.', htmlDescription='

Reports the presence of any clock issue.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=776, _eaTypeName=TimSyncIssueType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1933fd1, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,611 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2649, uuid={1591A4AF-7AD8-4720-B04E-7C389735450F}, since=null, name=ClockTamperDetected, alias=, stereotype=security, visibility=public, txtDescription='Clock tamper have been detected.', htmlDescription='

Clock tamper have been detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@756e4d, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,611 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2645, uuid={F98377B8-808A-4705-81F9-99E14B733B97}, since=null, name=TmSrc, alias=, stereotype=performance, visibility=public, txtDescription='Reports the clock sync method.', htmlDescription='

Reports the clock sync method.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=777, _eaTypeName=TimSyncSrcType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2d45ba, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,611 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2655, uuid={EFB862ED-119C-4441-AD7D-3F382A7C0C92}, since=null, name=HoldOver, alias=, stereotype=health, visibility=public, txtDescription='The Holdover flag shall be set True whenever the Time Traceable flag is True and the IED is not receiving a qualified signal from a recognized standard time source. It shall be set False otherwise. Therefore, this flag gives an immediate indication of loss of the time reference signal.', htmlDescription='

The Holdover flag shall be set True whenever the Time Traceable flag is True and the IED is not receiving a qualified signal from a recognized standard time source. It shall be set False otherwise. Therefore, this flag gives an immediate indication of loss of the time reference signal.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@756e4d, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,612 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2648, uuid={A8CB6533-B21C-4986-941B-F8F32BD739E3}, since=null, name=LastSyncOffset, alias=, stereotype=health, visibility=public, txtDescription='Reports the time offset (in seconds) computed from the last qualified synchronization signal received by this clock. This value is used by the clock servo to gradually adjust the clock.', htmlDescription='

Reports the time offset (in seconds) computed from the last qualified synchronization signal received by this clock. This value is used by the clock servo to gradually adjust the clock.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,612 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2653, uuid={AAB46675-D113-417c-8AB8-E4E268247EF8}, since=null, name=TimeSourceAvailable, alias=, stereotype=health, visibility=public, txtDescription='The Time Source Available flag shall be set True whenever the IED is receiving a qualified signal from a recognized standard time source. If it loses this signal, then after an appropriate period (during which the additional holdover uncertainty is not a significant impairment to performance), the Time Source Available flag shall be set False. The duration of the period after loss of the time signal and negation of the Time Source Available flag depends on the quality of the holdover oscillator and the required time quality, and may be a configurable IED parameter. +This flag may not immediately be set False, because momentary loss of the time signal may not adversely affect IED time quality. The Holdover flag provides an immediate indication of this condition.', htmlDescription='

The Time Source Available flag shall be set True whenever the IED is receiving a qualified signal from a recognized standard time source. If it loses this signal, then after an appropriate period (during which the additional holdover uncertainty is not a significant impairment to performance), the Time Source Available flag shall be set False. The duration of the period after loss of the time signal and negation of the Time Source Available flag depends on the quality of the holdover oscillator and the required time quality, and may be a configurable IED parameter.

This flag may not immediately be set False, because momentary loss of the time signal may not adversely affect IED time quality. The Holdover flag provides an immediate indication of this condition.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@756e4d, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,612 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2652, uuid={ECD9FD6B-5168-426a-BF8F-D2B9B57110B0}, since=null, name=TimeTraceable, alias=, stereotype=health, visibility=public, txtDescription='The Time Traceable flag shall be set False before the IED has received and qualified a signal from a recognized standard time source. Once it has locked to the recognized standard time source and stabilized, the Time Traceable flag shall be set True. The Time Traceable flag shall not be set False again, so long as the IED can estimate its holdover uncertainty. If at some point, perhaps due to an extended holdover interval, the IED no longer can estimate its holdover uncertainty, then the Time Traceable flag shall be set False.', htmlDescription='

The Time Traceable flag shall be set False before the IED has received and qualified a signal from a recognized standard time source. Once it has locked to the recognized standard time source and stabilized, the Time Traceable flag shall be set True. The Time Traceable flag shall not be set False again, so long as the IED can estimate its holdover uncertainty. If at some point, perhaps due to an extended holdover interval, the IED no longer can estimate its holdover uncertainty, then the Time Traceable flag shall be set False.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@756e4d, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,612 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::SecurityNotification, _objData=UmlObjectData [id=3632, uuid={04B87A68-22D2-4882-A4A5-D62CF502F233}, since=null, name=clockTamperDetected, alias=, stereotype=security, visibility=public, txtDescription='Timestamp of when a tamper of a clock has been detected', htmlDescription='

Timestamp of when a tamper of a clock has been detected

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@fc185, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,612 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3319, uuid={6FD1D092-9094-4f03-8B24-7DCD8E2358AD}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='Interface number', htmlDescription='

Interface number

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 16:19:56,612 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3320, uuid={6EB13B61-C6AA-4e12-9BC2-177D8DB73982}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the CPU.', htmlDescription='

Description of the CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,612 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3415, uuid={2252ED03-8326-4d40-957F-9921BA0D74BE}, since=null, name=IntType, alias=, stereotype=identity, visibility=public, txtDescription='Interface type (Wired or Wireless)', htmlDescription='

Interface type (Wired or Wireless)

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=866, _eaTypeName=IntType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1629756, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,612 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3323, uuid={5B1D4273-C6BF-44d8-93A8-EE46A1AEBA45}, since=null, name=Operable, alias=, stereotype=health, visibility=public, txtDescription='Indicates that CPU is operable (it can be either online or offline)', htmlDescription='

Indicates that CPU is operable (it can be either online or offline)

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,612 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3318, uuid={C6769525-A8F5-4599-84AB-E17EB20458CD}, since=null, name=Online, alias=, stereotype=health, visibility=public, txtDescription='Indicate that CPU is online and active', htmlDescription='

Indicate that CPU is online and active

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,612 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3322, uuid={CF6212A6-1358-4cd8-AC00-7BE9C09A5BFE}, since=null, name=Faulty, alias=, stereotype=health, visibility=public, txtDescription='CPU generated errors', htmlDescription='

CPU generated errors

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,612 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3321, uuid={AE8F0410-796C-42ec-BA19-BA8D3B558380}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,612 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3652, uuid={F38DE40F-DC22-441d-BD42-E3990926DFB1}, since=null, name=serAvail, alias=, stereotype=performance, visibility=public, txtDescription='Number of serial interfaces installed on the device', htmlDescription='

Number of serial interfaces installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,612 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3657, uuid={4E66DA97-6D8F-450a-A00B-ADE0FEE47CE4}, since=null, name=serActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of serial interfaces active on the device', htmlDescription='

Number of serial interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,612 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3662, uuid={6F91E49F-3A68-4208-A29A-512F23CC10B0}, since=null, name=serFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing serial Interfaces on the device', htmlDescription='

Number of failing serial Interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,613 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3653, uuid={B23510B0-5513-4f80-9792-63DED4A16F44}, since=null, name=ethAvail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of ethernet Interfaces installed on the device', htmlDescription='

Number of ethernet Interfaces installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,613 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3658, uuid={6B6B3BCD-0AE0-4c6f-9FB3-472BEC079B13}, since=null, name=ethActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of ethernet interfaces active on the device', htmlDescription='

Number of ethernet interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,613 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3663, uuid={536CCD9F-B77E-465a-8898-FCD7644820AD}, since=null, name=ethFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing ethernet interfaces on the device', htmlDescription='

Number of failing ethernet interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,613 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3654, uuid={1C804DCB-08CB-41f0-B6F7-384A70C8C3C8}, since=null, name=algAvail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of analogue Interfaces installed on the device', htmlDescription='

Number of analogue Interfaces installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,613 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3659, uuid={29FE15BB-45B5-47c2-A74E-3EF574575434}, since=null, name=algActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of analogue interfaces Active on the device', htmlDescription='

Number of analogue interfaces Active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,613 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3664, uuid={54797821-2674-4526-B44A-9F87D01A6991}, since=null, name=algFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing analogue interfaces on the device', htmlDescription='

Number of failing analogue interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,613 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3655, uuid={74214291-7A17-4b83-AA3C-A305991D037A}, since=null, name=keyAvail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of keyboard Interface installed on the device', htmlDescription='

Number of keyboard Interface installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,613 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3660, uuid={AB6E018D-82C3-4524-8D58-58164F10E51B}, since=null, name=keyActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of keyboard interface active on the device', htmlDescription='

Number of keyboard interface active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,613 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3665, uuid={5F0D156E-80E6-401b-9854-FCA4DCA132BB}, since=null, name=keyFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing keyboard interface on the device', htmlDescription='

Number of failing keyboard interface on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,613 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3656, uuid={4C0A881D-B242-49b2-A9F8-DF5C3DF79322}, since=null, name=usbAvail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of Universal Serial Bus Interface installed on the device', htmlDescription='

Number of Universal Serial Bus Interface installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,614 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3661, uuid={6078BDD9-2E54-4b6b-A1B3-CCDBFE46E859}, since=null, name=usbActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of Universal Serial Bus interface active on the device', htmlDescription='

Number of Universal Serial Bus interface active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,614 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3666, uuid={64E92266-4098-47ce-9874-DBF194F6A4D1}, since=null, name=usbFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing Universal Serial Bus interface on the device', htmlDescription='

Number of failing Universal Serial Bus interface on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,614 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3283, uuid={6E4426CC-406A-429e-AD6D-1EECA102F2FC}, since=null, name=SER, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of serial interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of serial interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=836, _eaTypeName=SEREntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@4ed9f0, 3_taggedValues{mibPrefix=sER, objectIdentity=intSERIALEntry, Version=0}]. +2024-09-07 16:19:56,614 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3297, uuid={4C6CDBC0-62B0-4881-A810-A6CE56DACD81}, since=null, name=ETH, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of Ethernet interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of Ethernet interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=838, _eaTypeName=ETHEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@4f787b, 3_taggedValues{mibPrefix=eTH, objectIdentity=intETHEntry, Version=0}]. +2024-09-07 16:19:56,614 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3298, uuid={8794992C-DE7F-4bf7-83EC-5592356A181C}, since=null, name=USB, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of USB interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of USB interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=840, _eaTypeName=USBEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@5cb137, 3_taggedValues{mibPrefix=uSB, objectIdentity=intUSBEntry, Version=0}]. +2024-09-07 16:19:56,614 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3299, uuid={B0761727-4B75-4eb5-82B3-0BB613618FC7}, since=null, name=KEY, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of keyboard interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of keyboard interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=842, _eaTypeName=KEYEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@41eaa2, 3_taggedValues{mibPrefix=kEY, objectIdentity=intKEYEntry, Version=0}]. +2024-09-07 16:19:56,614 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3328, uuid={D97ACC7A-DBFA-4c92-BC5C-FF187AF4C4EF}, since=null, name=ALG, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of analogue interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of analogue interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=847, _eaTypeName=ALGEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d62f43, 3_taggedValues{mibPrefix=aLG, objectIdentity=intALGEntry, Version=0}]. +2024-09-07 16:19:56,614 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3678, uuid={B5CE0636-5BE9-4566-8B6A-2103E2769BA9}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object', htmlDescription='

State events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=946, _eaTypeName=Notification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@14b1c02, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,614 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::KEYEntry, _objData=UmlObjectData [id=3327, uuid={6A06B961-6E51-4f13-B73C-32E26BB4F831}, since=null, name=Locked, alias=, stereotype=health, visibility=public, txtDescription='Indicate a locked status for the device keyboard', htmlDescription='

Indicate a locked status for the device keyboard

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,614 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::SEREntry, _objData=UmlObjectData [id=3325, uuid={BD2A2516-013B-4f4c-83C4-6D873D08A614}, since=null, name=ByteIn, alias=, stereotype=protocol, visibility=public, txtDescription='Inbound Byte counter', htmlDescription='

Inbound Byte counter

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,614 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::SEREntry, _objData=UmlObjectData [id=3326, uuid={DB538A18-009B-4f5a-B7CD-6FDE73E706B1}, since=null, name=ByteOut, alias=, stereotype=protocol, visibility=public, txtDescription='Outbound Byte counter', htmlDescription='

Outbound Byte counter

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,614 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3668, uuid={51550105-54C1-4ba6-BC2E-E028F066BD90}, since=null, name=serActive, alias=, stereotype=health, visibility=public, txtDescription='Number of serial Interfaces active on the device', htmlDescription='

Number of serial Interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,614 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3669, uuid={BE46F414-6E9C-412e-9E70-29513A7DAA18}, since=null, name=serFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing serial Interfaces on the device', htmlDescription='

Number of failing serial Interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,614 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3670, uuid={78956E09-8F39-4f86-A5CE-B8DBF44C7D6E}, since=null, name=ethActive, alias=, stereotype=health, visibility=public, txtDescription='Number of ethernet interfaces active on the device', htmlDescription='

Number of ethernet interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,614 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3671, uuid={101FCB6C-9867-4262-8E50-6F057EEAF643}, since=null, name=ethFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing ethernet interfaces on the device', htmlDescription='

Number of failing ethernet interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,614 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3672, uuid={5171FAC8-436F-42e9-B8E2-0C31C19FAC68}, since=null, name=algActive, alias=, stereotype=health, visibility=public, txtDescription='Number of analogue interfaces active on the device', htmlDescription='

Number of analogue interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,614 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3673, uuid={9711AA3F-E429-4304-960A-AA9CF2BCC003}, since=null, name=algFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing analogue interfaces on the device', htmlDescription='

Number of failing analogue interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,614 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3667, uuid={D523B290-8CF4-4630-ADC0-AA4FF4336A1B}, since=null, name=keyActive, alias=, stereotype=health, visibility=public, txtDescription='Number of keyboard interfaces active on the device', htmlDescription='

Number of keyboard interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,614 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3674, uuid={367C987D-D473-46cd-A5B1-6B3A1D275D36}, since=null, name=keyFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing keyboard interfaces on the device', htmlDescription='

Number of failing keyboard interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,614 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3675, uuid={0F833AFE-832E-4673-99D3-42CDEFDDF7E0}, since=null, name=usbActive, alias=, stereotype=health, visibility=public, txtDescription='Number of Universal Serial Bus interfaces active on the device', htmlDescription='

Number of Universal Serial Bus interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,614 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3676, uuid={E957BF40-9F27-4a63-B2DD-16F525F01FA1}, since=null, name=usbFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing Universal Serial Bus interfaces on the device', htmlDescription='

Number of failing Universal Serial Bus interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 16:19:56,614 [main] INFO EaModelBuilder - assigning type for operations' parameters and exceptions ... +2024-09-07 16:19:56,615 [main] INFO EaModelBuilder - cross-checking dependencies ... +2024-09-07 16:19:56,615 [main] INFO EaModelBuilder - cross-checking associations ... +2024-09-07 16:19:56,615 [main] INFO Util - time=[0:00:00.052] linked builders. +2024-09-07 16:19:56,615 [main] INFO Util - +2024-09-07 16:19:56,615 [main] INFO Util - +2024-09-07 16:19:56,615 [main] INFO Util - ------------------------------------------------ +2024-09-07 16:19:56,615 [main] INFO Util - creating in-memory model and exporting normative diagrams... +2024-09-07 16:19:58,022 [main] TRACE UmlPackage - ---- created null model package NullCIM +2024-09-07 16:19:58,025 [main] TRACE UmlClass - created (826) OTHER_CIM CIM null CIM class NullCIM::NullCIM +2024-09-07 16:19:58,025 [main] TRACE UmlPackage - ---- created null model package NullIEC61850 +2024-09-07 16:19:58,026 [main] TRACE UmlClass - created (830) OTHER_IEC61850 IEC61850 null 61850 class NullIEC61850::NullIEC61850 +2024-09-07 16:19:58,026 [main] INFO EaModelBuilder - creating in-memory package structure ... +2024-09-07 16:19:58,026 [main] TRACE UmlPackage - ---- created model package iso +2024-09-07 16:19:58,026 [main] TRACE UmlPackage - ---- created top package standard +2024-09-07 16:19:58,026 [main] TRACE UmlPackage - ---- created package iec62351 +2024-09-07 16:19:58,026 [main] TRACE UmlPackage - ---- created package part7 +2024-09-07 16:19:58,026 [main] TRACE UmlPackage - ---- created package Profiles +2024-09-07 16:19:58,032 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{4642A2B9-A297-45be-A2B5-28C4F1A2B373}.png2779304385764882574.png. +2024-09-07 16:19:58,644 [main] DEBUG JapiDiagramExporter - ... saved in 613 ms +2024-09-07 16:19:58,646 [main] TRACE UmlDiagram - created (51) OTHER_CIM CIM class Profiles::Part7Profiles +2024-09-07 16:19:58,646 [main] TRACE UmlPackage - ---- created package nsmAgent +2024-09-07 16:19:58,647 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{8F3F8B93-6E15-4fcf-9C40-83EB793F28A5}.png8602470248556886726.png. +2024-09-07 16:19:59,373 [main] DEBUG JapiDiagramExporter - ... saved in 727 ms +2024-09-07 16:19:59,374 [main] TRACE UmlDiagram - created (52) OTHER_CIM CIM class nsmAgent::nsmAgent +2024-09-07 16:19:59,374 [main] TRACE UmlPackage - ---- created package Overview +2024-09-07 16:19:59,375 [main] TRACE UmlSkipped - created (941) OTHER_CIM CIM boundary Overview::IEC 60870, DNP and IEC 62351 +2024-09-07 16:19:59,375 [main] TRACE UmlSkipped - created (939) OTHER_CIM CIM boundary Overview::IEC 61850 +2024-09-07 16:19:59,376 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{1EC9B9AC-962E-4b2c-A2A8-EFB524CF896E}.png9166861819902441059.png. +2024-09-07 16:20:00,034 [main] DEBUG JapiDiagramExporter - ... saved in 659 ms +2024-09-07 16:20:00,034 [main] TRACE UmlDiagram - created (23) OTHER_CIM CIM class Overview::Part7 Classes Overview +2024-09-07 16:20:00,034 [main] TRACE UmlPackage - ---- created package BaseTypes +2024-09-07 16:20:00,034 [main] TRACE UmlPackage - ---- created package Abstract Types +2024-09-07 16:20:00,034 [main] TRACE UmlPackage - ---- created package EnumeratedTypes +2024-09-07 16:20:00,034 [main] TRACE UmlPackage - ---- created package Environmental Agent +2024-09-07 16:20:00,035 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{DD68DDD1-5EEB-4a23-B16C-1FF759A2EE6A}.png2837277843347099746.png. +2024-09-07 16:20:00,261 [main] DEBUG JapiDiagramExporter - ... saved in 227 ms +2024-09-07 16:20:00,262 [main] TRACE UmlDiagram - created (8) OTHER_CIM CIM class Environmental Agent::Environmental +2024-09-07 16:20:00,262 [main] TRACE UmlPackage - ---- created package IED Agent +2024-09-07 16:20:00,262 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{C3FD1BF6-CB13-4fb3-9C75-D9FACF470ACD}.png7999756975716621885.png. +2024-09-07 16:20:00,588 [main] DEBUG JapiDiagramExporter - ... saved in 326 ms +2024-09-07 16:20:00,589 [main] TRACE UmlDiagram - created (9) OTHER_CIM CIM class IED Agent::IED +2024-09-07 16:20:00,589 [main] TRACE UmlPackage - ---- created package Application Protocols Agents +2024-09-07 16:20:00,589 [main] TRACE UmlPackage - ---- created package Common objects +2024-09-07 16:20:00,589 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{583FFED4-9F6C-420f-88B3-80FF9F387121}.png6315283294330316019.png. +2024-09-07 16:20:00,767 [main] DEBUG JapiDiagramExporter - ... saved in 178 ms +2024-09-07 16:20:00,768 [main] TRACE UmlDiagram - created (64) OTHER_CIM CIM class Common objects::Application Protocol common objects +2024-09-07 16:20:00,768 [main] TRACE UmlPackage - ---- created package IEC62351-3 ed.2 Agent +2024-09-07 16:20:00,768 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{38D28719-1A0B-491f-9010-AF2D3032BB4B}.png4429339451765023946.png. +2024-09-07 16:20:01,126 [main] DEBUG JapiDiagramExporter - ... saved in 358 ms +2024-09-07 16:20:01,126 [main] TRACE UmlDiagram - created (72) OTHER_CIM CIM class IEC62351-3 ed.2 Agent::IEC 62351-3 ed.2 Agent Relationships +2024-09-07 16:20:01,126 [main] TRACE UmlPackage - ---- created package IEEE 1815 and IEC 60870-5 Agent +2024-09-07 16:20:01,127 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{8B1E40BA-BA71-478e-BC81-025DA5A45A35}.png5461264563655983719.png. +2024-09-07 16:20:01,490 [main] DEBUG JapiDiagramExporter - ... saved in 364 ms +2024-09-07 16:20:01,491 [main] TRACE UmlDiagram - created (33) OTHER_CIM CIM class IEEE 1815 and IEC 60870-5 Agent::IEEE 1815 and IEC 60870 Agent Relationships +2024-09-07 16:20:01,491 [main] TRACE UmlPackage - ---- created package IEEE 1815 and IEC 60870-5 Agent - ed2 +2024-09-07 16:20:01,491 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{AA945755-BD47-4be2-A238-6331816DBA4B}.png7886175870812309985.png. +2024-09-07 16:20:01,877 [main] DEBUG JapiDiagramExporter - ... saved in 386 ms +2024-09-07 16:20:01,878 [main] TRACE UmlDiagram - created (70) OTHER_CIM CIM class IEEE 1815 and IEC 60870-5 Agent - ed2::IEEE 1815 and IEC 60870 Agent Relationships +2024-09-07 16:20:01,878 [main] TRACE UmlPackage - ---- created package IEC61850 Agent +2024-09-07 16:20:01,878 [main] TRACE UmlPackage - ---- created package ACSI +2024-09-07 16:20:01,878 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{1B1AAFC2-CBA3-401c-873D-7B6CDCE9CBD6}.png2560145394458867271.png. +2024-09-07 16:20:02,068 [main] DEBUG JapiDiagramExporter - ... saved in 190 ms +2024-09-07 16:20:02,069 [main] TRACE UmlDiagram - created (45) OTHER_CIM CIM class ACSI::ACSI +2024-09-07 16:20:02,069 [main] TRACE UmlPackage - ---- created package MMS +2024-09-07 16:20:02,070 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{C69DADFE-D7C7-45d0-83FC-41012CB3C1CA}.png9163828944814646213.png. +2024-09-07 16:20:02,387 [main] DEBUG JapiDiagramExporter - ... saved in 318 ms +2024-09-07 16:20:02,387 [main] TRACE UmlDiagram - created (42) OTHER_CIM CIM class MMS::MMS +2024-09-07 16:20:02,387 [main] TRACE UmlPackage - ---- created package SV and GSE common objects +2024-09-07 16:20:02,389 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{DFEA5E4E-B042-4697-A4BE-C60308616114}.png2079963370334881732.png. +2024-09-07 16:20:02,587 [main] DEBUG JapiDiagramExporter - ... saved in 200 ms +2024-09-07 16:20:02,588 [main] TRACE UmlDiagram - created (63) OTHER_CIM CIM class SV and GSE common objects::SV and GSE common objects +2024-09-07 16:20:02,588 [main] TRACE UmlPackage - ---- created package SV +2024-09-07 16:20:02,588 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{472A38C4-7002-4632-9EB5-EC1C28A2CCA8}.png3448968097114850118.png. +2024-09-07 16:20:02,917 [main] DEBUG JapiDiagramExporter - ... saved in 329 ms +2024-09-07 16:20:02,918 [main] TRACE UmlDiagram - created (60) OTHER_CIM CIM class SV::SV +2024-09-07 16:20:02,918 [main] TRACE UmlPackage - ---- created package GSE +2024-09-07 16:20:02,918 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{80FA056A-3318-4339-86E8-7D464BD53A85}.png9147486228926025288.png. +2024-09-07 16:20:03,277 [main] DEBUG JapiDiagramExporter - ... saved in 359 ms +2024-09-07 16:20:03,277 [main] TRACE UmlDiagram - created (44) OTHER_CIM CIM class GSE::GSE +2024-09-07 16:20:03,277 [main] TRACE UmlPackage - ---- created package Clocks Agent +2024-09-07 16:20:03,278 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{9DE08B60-19E1-4c7c-B3D6-82731BE2066A}.png8152163038887567461.png. +2024-09-07 16:20:03,489 [main] DEBUG JapiDiagramExporter - ... saved in 212 ms +2024-09-07 16:20:03,490 [main] TRACE UmlDiagram - created (46) OTHER_CIM CIM class Clocks Agent::Clocks Agent +2024-09-07 16:20:03,490 [main] TRACE UmlPackage - ---- created package Interfaces Agent +2024-09-07 16:20:03,491 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{1B416A08-A236-4e2a-9A9E-6A48912EF05F}.png1862928205909672034.png. +2024-09-07 16:20:03,812 [main] DEBUG JapiDiagramExporter - ... saved in 322 ms +2024-09-07 16:20:03,812 [main] TRACE UmlDiagram - created (24) OTHER_CIM CIM class Interfaces Agent::Interfaces +2024-09-07 16:20:03,812 [main] INFO EaModelBuilder - creating in-memory root classes and enum literals ... +2024-09-07 16:20:03,812 [main] TRACE UmlClass - created (894) OTHER_CIM CIM root class <> nsmAgent::Attribute +2024-09-07 16:20:03,812 [main] TRACE UmlClass - created (886) OTHER_CIM CIM root class <> nsmAgent::Attribute +2024-09-07 16:20:03,813 [main] TRACE UmlClass - created (889) OTHER_CIM CIM root class <> nsmAgent::Attribute +2024-09-07 16:20:03,813 [main] TRACE UmlClass - created (890) OTHER_CIM CIM root class <> nsmAgent::Attribute +2024-09-07 16:20:03,813 [main] TRACE UmlClass - created (892) OTHER_CIM CIM root class <> nsmAgent::Attribute +2024-09-07 16:20:03,813 [main] TRACE UmlClass - created (896) OTHER_CIM CIM root class <> nsmAgent::Attribute +2024-09-07 16:20:03,813 [main] TRACE UmlClass - created (898) OTHER_CIM CIM root class <> nsmAgent::Attribute +2024-09-07 16:20:03,813 [main] TRACE UmlClass - created (938) OTHER_CIM CIM root class <> nsmAgent::Attribute +2024-09-07 16:20:03,813 [main] TRACE UmlClass - created (900) OTHER_CIM CIM root class <> nsmAgent::Attribute +2024-09-07 16:20:03,813 [main] TRACE UmlClass - created (888) OTHER_CIM CIM root class <> nsmAgent::Class +2024-09-07 16:20:03,813 [main] TRACE UmlClass - created (1022) OTHER_CIM CIM root class <> nsmAgent::Class +2024-09-07 16:20:03,814 [main] TRACE UmlClass - created (882) OTHER_CIM CIM root class <> nsmAgent::Class +2024-09-07 16:20:03,814 [main] TRACE UmlClass - created (895) OTHER_CIM CIM root class <> nsmAgent::health +2024-09-07 16:20:03,814 [main] TRACE UmlClass - created (893) OTHER_CIM CIM root class <> nsmAgent::identity +2024-09-07 16:20:03,814 [main] TRACE UmlClass - created (891) OTHER_CIM CIM root class <> nsmAgent::index +2024-09-07 16:20:03,814 [main] TRACE UmlClass - created (887) OTHER_CIM CIM root class <> nsmAgent::nsmAgent +2024-09-07 16:20:03,814 [main] TRACE UmlClass - created (1021) OTHER_CIM CIM root class <> nsmAgent::nsmEntry +2024-09-07 16:20:03,814 [main] TRACE UmlClass - created (883) OTHER_CIM CIM root class <> nsmAgent::nsmEvent +2024-09-07 16:20:03,814 [main] TRACE UmlClass - created (897) OTHER_CIM CIM root class <> nsmAgent::performance +2024-09-07 16:20:03,814 [main] TRACE UmlClass - created (885) OTHER_CIM CIM root class <> nsmAgent::protocol +2024-09-07 16:20:03,815 [main] TRACE UmlClass - created (884) OTHER_CIM CIM root class <> nsmAgent::security +2024-09-07 16:20:03,815 [main] TRACE UmlClass - created (899) OTHER_CIM CIM root class <> nsmAgent::setvalue +2024-09-07 16:20:03,815 [main] TRACE UmlClass - created (901) OTHER_CIM CIM root class <> nsmAgent::table +2024-09-07 16:20:03,815 [main] TRACE UmlClass - created (936) OTHER_CIM CIM root class <> nsmAgent::trap +2024-09-07 16:20:03,815 [main] TRACE UmlClass - created (660) OTHER_CIM CIM root class BaseTypes::AbsoluteDateTime +2024-09-07 16:20:03,815 [main] TRACE UmlClass - created (624) OTHER_CIM CIM root class BaseTypes::Counter32 +2024-09-07 16:20:03,815 [main] TRACE UmlClass - created (628) OTHER_CIM CIM root class BaseTypes::DateAndTime +2024-09-07 16:20:03,815 [main] TRACE UmlClass - created (632) OTHER_CIM CIM root class BaseTypes::DisplayString +2024-09-07 16:20:03,815 [main] TRACE UmlClass - created (630) OTHER_CIM CIM root class BaseTypes::Float32TC +2024-09-07 16:20:03,815 [main] TRACE UmlClass - created (622) OTHER_CIM CIM root class BaseTypes::Gauge32 +2024-09-07 16:20:03,815 [main] TRACE UmlClass - created (952) OTHER_CIM CIM root class BaseTypes::InetAddress +2024-09-07 16:20:03,816 [main] TRACE UmlClass - created (966) OTHER_CIM CIM root class BaseTypes::MacAddress +2024-09-07 16:20:03,816 [main] TRACE UmlClass - created (954) OTHER_CIM CIM enumeration <> BaseTypes::InetAddressType +2024-09-07 16:20:03,820 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 16:20:03,821 [main] TRACE UmlAttribute - created (3685) OTHER_CIM CIM literal <> BaseTypes::InetAddressType.unknown = 0 +2024-09-07 16:20:03,821 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 16:20:03,821 [main] TRACE UmlAttribute - created (3686) OTHER_CIM CIM literal <> BaseTypes::InetAddressType.ipv4 = 1 +2024-09-07 16:20:03,822 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 16:20:03,822 [main] TRACE UmlAttribute - created (3687) OTHER_CIM CIM literal <> BaseTypes::InetAddressType.ipv6 = 2 +2024-09-07 16:20:03,822 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-07 16:20:03,822 [main] TRACE UmlAttribute - created (3688) OTHER_CIM CIM literal <> BaseTypes::InetAddressType.ipv4z = 3 +2024-09-07 16:20:03,822 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-07 16:20:03,822 [main] TRACE UmlAttribute - created (3689) OTHER_CIM CIM literal <> BaseTypes::InetAddressType.ipv6z = 4 +2024-09-07 16:20:03,822 [main] TRACE ValueRange - '16' has no separator indicating range. +2024-09-07 16:20:03,822 [main] TRACE UmlAttribute - created (3683) OTHER_CIM CIM literal <> BaseTypes::InetAddressType.dns = 16 +2024-09-07 16:20:03,822 [main] TRACE UmlClass - created (972) OTHER_CIM CIM root class BaseTypes::EntityIndex +2024-09-07 16:20:03,822 [main] TRACE UmlClass - created (173) OTHER_CIM CIM root class BaseTypes::Integer32 +2024-09-07 16:20:03,822 [main] TRACE UmlClass - created (968) OTHER_CIM CIM root class BaseTypes::Unsigned32 +2024-09-07 16:20:03,822 [main] TRACE UmlClass - created (626) OTHER_CIM CIM root class BaseTypes::TimeTicks +2024-09-07 16:20:03,822 [main] TRACE UmlClass - created (636) OTHER_CIM CIM root class BaseTypes::TruthValue +2024-09-07 16:20:03,823 [main] TRACE UmlClass - created (712) OTHER_CIM CIM root class Abstract Types::AbstractBaseType +2024-09-07 16:20:03,823 [main] TRACE UmlClass - created (798) OTHER_CIM CIM root class Abstract Types::AbstractAgent +2024-09-07 16:20:03,823 [main] TRACE UmlClass - created (292) OTHER_CIM CIM enumeration <> EnumeratedTypes::AppDatStKind +2024-09-07 16:20:03,823 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 16:20:03,823 [main] TRACE UmlAttribute - created (1780) OTHER_CIM CIM literal <> EnumeratedTypes::AppDatStKind.unknown = 0 +2024-09-07 16:20:03,823 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 16:20:03,823 [main] TRACE UmlAttribute - created (1781) OTHER_CIM CIM literal <> EnumeratedTypes::AppDatStKind.good = 1 +2024-09-07 16:20:03,823 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 16:20:03,823 [main] TRACE UmlAttribute - created (1782) OTHER_CIM CIM literal <> EnumeratedTypes::AppDatStKind.bad = 2 +2024-09-07 16:20:03,823 [main] TRACE UmlClass - created (1034) OTHER_CIM CIM enumeration <> EnumeratedTypes::PhyHealthKind +2024-09-07 16:20:03,823 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 16:20:03,823 [main] TRACE UmlAttribute - created (4113) OTHER_CIM CIM literal <> EnumeratedTypes::PhyHealthKind.ok = 0 +2024-09-07 16:20:03,823 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 16:20:03,823 [main] TRACE UmlAttribute - created (4114) OTHER_CIM CIM literal <> EnumeratedTypes::PhyHealthKind.warning = 1 +2024-09-07 16:20:03,823 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 16:20:03,823 [main] TRACE UmlAttribute - created (4115) OTHER_CIM CIM literal <> EnumeratedTypes::PhyHealthKind.alarm = 2 +2024-09-07 16:20:03,823 [main] TRACE UmlClass - created (856) OTHER_CIM CIM enumeration <> EnumeratedTypes::ExtKind +2024-09-07 16:20:03,823 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 16:20:03,823 [main] TRACE UmlAttribute - created (3369) OTHER_CIM CIM literal <> EnumeratedTypes::ExtKind.unknown = 0 +2024-09-07 16:20:03,833 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 16:20:03,833 [main] TRACE UmlAttribute - created (3370) OTHER_CIM CIM literal <> EnumeratedTypes::ExtKind.ioModule = 1 +2024-09-07 16:20:03,833 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 16:20:03,834 [main] TRACE UmlAttribute - created (3371) OTHER_CIM CIM literal <> EnumeratedTypes::ExtKind.softwarePLC = 2 +2024-09-07 16:20:03,834 [main] TRACE UmlClass - created (864) OTHER_CIM CIM enumeration <> EnumeratedTypes::IntKind +2024-09-07 16:20:03,834 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 16:20:03,834 [main] TRACE UmlAttribute - created (3392) OTHER_CIM CIM literal <> EnumeratedTypes::IntKind.wired = 0 +2024-09-07 16:20:03,834 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 16:20:03,834 [main] TRACE UmlAttribute - created (3393) OTHER_CIM CIM literal <> EnumeratedTypes::IntKind.wireless = 1 +2024-09-07 16:20:03,834 [main] TRACE UmlClass - created (644) OTHER_CIM CIM enumeration <> EnumeratedTypes::LnkKind +2024-09-07 16:20:03,834 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 16:20:03,834 [main] TRACE UmlAttribute - created (2720) OTHER_CIM CIM literal <> EnumeratedTypes::LnkKind.unknown = 0 +2024-09-07 16:20:03,834 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 16:20:03,834 [main] TRACE UmlAttribute - created (2721) OTHER_CIM CIM literal <> EnumeratedTypes::LnkKind.serial = 1 +2024-09-07 16:20:03,834 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 16:20:03,834 [main] TRACE UmlAttribute - created (2722) OTHER_CIM CIM literal <> EnumeratedTypes::LnkKind.tcp = 2 +2024-09-07 16:20:03,834 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-07 16:20:03,834 [main] TRACE UmlAttribute - created (2723) OTHER_CIM CIM literal <> EnumeratedTypes::LnkKind.udp = 3 +2024-09-07 16:20:03,834 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-07 16:20:03,834 [main] TRACE UmlAttribute - created (3391) OTHER_CIM CIM literal <> EnumeratedTypes::LnkKind.eth = 4 +2024-09-07 16:20:03,834 [main] TRACE UmlClass - created (293) OTHER_CIM CIM enumeration <> EnumeratedTypes::PSPAccKind +2024-09-07 16:20:03,834 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 16:20:03,834 [main] TRACE UmlAttribute - created (1784) OTHER_CIM CIM literal EnumeratedTypes::PSPAccKind.notBeingAccessed = 0 +2024-09-07 16:20:03,835 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 16:20:03,835 [main] TRACE UmlAttribute - created (1785) OTHER_CIM CIM literal EnumeratedTypes::PSPAccKind.accessOccurring = 1 +2024-09-07 16:20:03,835 [main] TRACE UmlClass - created (829) OTHER_CIM CIM enumeration <> EnumeratedTypes::ProtIdKind +2024-09-07 16:20:03,835 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 16:20:03,835 [main] TRACE UmlAttribute - created (3250) OTHER_CIM CIM literal <> EnumeratedTypes::ProtIdKind.unknown = 0 +2024-09-07 16:20:03,835 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 16:20:03,835 [main] TRACE UmlAttribute - created (3249) OTHER_CIM CIM literal <> EnumeratedTypes::ProtIdKind.iEC6185081 = 1 +2024-09-07 16:20:03,835 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 16:20:03,835 [main] TRACE UmlAttribute - created (3251) OTHER_CIM CIM literal <> EnumeratedTypes::ProtIdKind.iEC6185081GOOSE = 2 +2024-09-07 16:20:03,835 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-07 16:20:03,835 [main] TRACE UmlAttribute - created (3252) OTHER_CIM CIM literal <> EnumeratedTypes::ProtIdKind.iEC6185092SV = 3 +2024-09-07 16:20:03,835 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-07 16:20:03,835 [main] TRACE UmlAttribute - created (3253) OTHER_CIM CIM literal <> EnumeratedTypes::ProtIdKind.ieee1815DNP = 4 +2024-09-07 16:20:03,835 [main] TRACE ValueRange - '5' has no separator indicating range. +2024-09-07 16:20:03,835 [main] TRACE UmlAttribute - created (3254) OTHER_CIM CIM literal <> EnumeratedTypes::ProtIdKind.iec608705 = 5 +2024-09-07 16:20:03,835 [main] TRACE ValueRange - '6' has no separator indicating range. +2024-09-07 16:20:03,835 [main] TRACE UmlAttribute - created (4503) OTHER_CIM CIM literal <> EnumeratedTypes::ProtIdKind.iEC6185082 = 6 +2024-09-07 16:20:03,835 [main] TRACE UmlClass - created (958) OTHER_CIM CIM enumeration <> EnumeratedTypes::EventKind +2024-09-07 16:20:03,835 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 16:20:03,835 [main] TRACE UmlAttribute - created (3694) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.none = 0 +2024-09-07 16:20:03,835 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 16:20:03,835 [main] TRACE UmlAttribute - created (3695) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.unKnown = 1 +2024-09-07 16:20:03,836 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 16:20:03,836 [main] TRACE UmlAttribute - created (3696) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.denialOfService = 2 +2024-09-07 16:20:03,836 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-07 16:20:03,836 [main] TRACE UmlAttribute - created (3697) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.malware = 3 +2024-09-07 16:20:03,836 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-07 16:20:03,836 [main] TRACE UmlAttribute - created (3698) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.bufferOverRun = 4 +2024-09-07 16:20:03,836 [main] TRACE ValueRange - '5' has no separator indicating range. +2024-09-07 16:20:03,836 [main] TRACE UmlAttribute - created (3701) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.bufferUnderRun = 5 +2024-09-07 16:20:03,836 [main] TRACE ValueRange - '6' has no separator indicating range. +2024-09-07 16:20:03,836 [main] TRACE UmlAttribute - created (3702) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.badCredential = 6 +2024-09-07 16:20:03,836 [main] TRACE ValueRange - '7' has no separator indicating range. +2024-09-07 16:20:03,836 [main] TRACE UmlAttribute - created (3703) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.badKey = 7 +2024-09-07 16:20:03,836 [main] TRACE ValueRange - '8' has no separator indicating range. +2024-09-07 16:20:03,836 [main] TRACE UmlAttribute - created (3699) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.malformedPDU = 8 +2024-09-07 16:20:03,836 [main] TRACE ValueRange - '9' has no separator indicating range. +2024-09-07 16:20:03,836 [main] TRACE UmlAttribute - created (3693) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.physicalDisruption = 9 +2024-09-07 16:20:03,836 [main] TRACE ValueRange - '10' has no separator indicating range. +2024-09-07 16:20:03,836 [main] TRACE UmlAttribute - created (3700) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.invalidNetworkAccess = 10 +2024-09-07 16:20:03,836 [main] TRACE UmlClass - created (113) OTHER_CIM CIM enumeration <> EnumeratedTypes::TimSyncIssueKind +2024-09-07 16:20:03,837 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 16:20:03,837 [main] TRACE UmlAttribute - created (644) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncIssueKind.synced = 0 +2024-09-07 16:20:03,837 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 16:20:03,837 [main] TRACE UmlAttribute - created (645) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncIssueKind.degradated = 1 +2024-09-07 16:20:03,837 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 16:20:03,837 [main] TRACE UmlAttribute - created (646) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncIssueKind.failed = 2 +2024-09-07 16:20:03,837 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-07 16:20:03,837 [main] TRACE UmlAttribute - created (4499) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncIssueKind.syncedGlobal = 3 +2024-09-07 16:20:03,837 [main] TRACE UmlClass - created (1011) OTHER_CIM CIM enumeration <> EnumeratedTypes::SecurityProfileKind +2024-09-07 16:20:03,837 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 16:20:03,837 [main] TRACE UmlAttribute - created (3924) OTHER_CIM CIM literal <> EnumeratedTypes::SecurityProfileKind.noSecurity = 0 +2024-09-07 16:20:03,837 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 16:20:03,837 [main] TRACE UmlAttribute - created (3926) OTHER_CIM CIM literal <> EnumeratedTypes::SecurityProfileKind.aProfile = 1 +2024-09-07 16:20:03,837 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 16:20:03,837 [main] TRACE UmlAttribute - created (3927) OTHER_CIM CIM literal <> EnumeratedTypes::SecurityProfileKind.e2eProfile = 2 +2024-09-07 16:20:03,838 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-07 16:20:03,838 [main] TRACE UmlAttribute - created (3922) OTHER_CIM CIM literal <> EnumeratedTypes::SecurityProfileKind.ae2eProfile = 3 +2024-09-07 16:20:03,838 [main] TRACE UmlClass - created (117) OTHER_CIM CIM enumeration <> EnumeratedTypes::TimSyncSrcKind +2024-09-07 16:20:03,838 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 16:20:03,838 [main] TRACE UmlAttribute - created (665) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.unknown = 0 +2024-09-07 16:20:03,838 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 16:20:03,838 [main] TRACE UmlAttribute - created (666) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.ntp = 1 +2024-09-07 16:20:03,838 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 16:20:03,838 [main] TRACE UmlAttribute - created (667) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.sntp = 2 +2024-09-07 16:20:03,838 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-07 16:20:03,838 [main] TRACE UmlAttribute - created (668) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.irig = 3 +2024-09-07 16:20:03,838 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-07 16:20:03,838 [main] TRACE UmlAttribute - created (669) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.gps = 4 +2024-09-07 16:20:03,838 [main] TRACE ValueRange - '5' has no separator indicating range. +2024-09-07 16:20:03,838 [main] TRACE UmlAttribute - created (670) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.ieee1588PTP = 5 +2024-09-07 16:20:03,838 [main] TRACE ValueRange - '6' has no separator indicating range. +2024-09-07 16:20:03,838 [main] TRACE UmlAttribute - created (671) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.ieee1588PTPC37238Profile2011 = 6 +2024-09-07 16:20:03,838 [main] TRACE ValueRange - '7' has no separator indicating range. +2024-09-07 16:20:03,839 [main] TRACE UmlAttribute - created (4110) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.ieee1588PTPIEC6185093 = 7 +2024-09-07 16:20:03,839 [main] TRACE ValueRange - '8' has no separator indicating range. +2024-09-07 16:20:03,839 [main] TRACE UmlAttribute - created (4495) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.ieee1588PTPC37238Profile2017 = 8 +2024-09-07 16:20:03,839 [main] TRACE ValueRange - '9' has no separator indicating range. +2024-09-07 16:20:03,839 [main] TRACE UmlAttribute - created (4496) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.ieee1588PTPIEC6185093Ed20 = 9 +2024-09-07 16:20:03,839 [main] TRACE ValueRange - '7' has no separator indicating range. +2024-09-07 16:20:03,839 [main] TRACE UmlAttribute - created (4497) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.ieee1588PTPIEC6185093Profile2016 = 7 +2024-09-07 16:20:03,839 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-07 16:20:03,839 [main] TRACE UmlAttribute - created (4498) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.gnss = 4 +2024-09-07 16:20:03,839 [main] TRACE ValueRange - '10' has no separator indicating range. +2024-09-07 16:20:03,839 [main] TRACE UmlAttribute - created (4500) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.applicationProtocol = 10 +2024-09-07 16:20:03,839 [main] TRACE ValueRange - '11' has no separator indicating range. +2024-09-07 16:20:03,839 [main] TRACE UmlAttribute - created (4504) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.ntpOnts = 11 +2024-09-07 16:20:03,839 [main] INFO EaModelBuilder - creating in-memory sub-classes recursively ... +2024-09-07 16:20:03,840 [main] TRACE UmlClass - created (760) OTHER_CIM CIM class Abstract Types::BooleanValue, 1 superclasses=[AbstractBaseType] +2024-09-07 16:20:03,840 [main] TRACE UmlClass - created (734) OTHER_CIM CIM class Abstract Types::Integer, 1 superclasses=[AbstractBaseType] +2024-09-07 16:20:03,840 [main] TRACE UmlClass - created (728) OTHER_CIM CIM class Abstract Types::BooleanValueTs, 1 superclasses=[AbstractBaseType] +2024-09-07 16:20:03,840 [main] TRACE UmlClass - created (731) OTHER_CIM CIM class Abstract Types::CounterTs, 1 superclasses=[AbstractBaseType] +2024-09-07 16:20:03,840 [main] TRACE UmlClass - created (739) OTHER_CIM CIM class Abstract Types::Floating, 1 superclasses=[AbstractBaseType] +2024-09-07 16:20:03,840 [main] TRACE UmlClass - created (740) OTHER_CIM CIM class Abstract Types::FloatingTs, 1 superclasses=[AbstractBaseType] +2024-09-07 16:20:03,840 [main] TRACE UmlClass - created (735) OTHER_CIM CIM class Abstract Types::IntegerTs, 1 superclasses=[AbstractBaseType] +2024-09-07 16:20:03,840 [main] TRACE UmlClass - created (764) OTHER_CIM CIM class Abstract Types::CharString, 1 superclasses=[AbstractBaseType] +2024-09-07 16:20:03,840 [main] TRACE UmlClass - created (860) OTHER_CIM CIM class Abstract Types::CharStringTs, 1 superclasses=[AbstractBaseType] +2024-09-07 16:20:03,840 [main] TRACE UmlClass - created (804) OTHER_CIM CIM class Abstract Types::Timestamp, 1 superclasses=[AbstractBaseType] +2024-09-07 16:20:03,840 [main] TRACE UmlClass - created (782) OTHER_CIM CIM class Abstract Types::Selector, 1 superclasses=[AbstractBaseType] +2024-09-07 16:20:03,840 [main] TRACE UmlClass - created (786) OTHER_CIM CIM class Abstract Types::MacAddress, 1 superclasses=[AbstractBaseType] +2024-09-07 16:20:03,840 [main] TRACE UmlClass - created (956) OTHER_CIM CIM class Abstract Types::InetAddressType, 1 superclasses=[AbstractBaseType] +2024-09-07 16:20:03,840 [main] TRACE UmlClass - created (784) OTHER_CIM CIM class Abstract Types::InetAddress, 1 superclasses=[AbstractBaseType] +2024-09-07 16:20:03,841 [main] TRACE UmlClass - created (974) OTHER_CIM CIM class Abstract Types::EntityIndex, 1 superclasses=[AbstractBaseType] +2024-09-07 16:20:03,841 [main] TRACE UmlClass - created (774) OTHER_CIM CIM class Abstract Types::CntRs, 1 superclasses=[AbstractBaseType] +2024-09-07 16:20:03,841 [main] TRACE UmlClass - created (766) OTHER_CIM CIM class EnumeratedTypes::AppDatStType, 1 superclasses=[AbstractBaseType] +2024-09-07 16:20:03,841 [main] TRACE UmlClass - created (1036) OTHER_CIM CIM class EnumeratedTypes::PhyHealthType, 1 superclasses=[AbstractBaseType] +2024-09-07 16:20:03,841 [main] TRACE UmlClass - created (854) OTHER_CIM CIM class EnumeratedTypes::ExtType, 1 superclasses=[AbstractBaseType] +2024-09-07 16:20:03,841 [main] TRACE UmlClass - created (866) OTHER_CIM CIM class EnumeratedTypes::IntType, 1 superclasses=[AbstractBaseType] +2024-09-07 16:20:03,841 [main] TRACE UmlClass - created (960) OTHER_CIM CIM class EnumeratedTypes::EventType, 1 superclasses=[AbstractBaseType] +2024-09-07 16:20:03,841 [main] TRACE UmlClass - created (858) OTHER_CIM CIM class EnumeratedTypes::PSPAccType, 1 superclasses=[AbstractBaseType] +2024-09-07 16:20:03,841 [main] TRACE UmlClass - created (780) OTHER_CIM CIM class EnumeratedTypes::ProtIdType, 1 superclasses=[AbstractBaseType] +2024-09-07 16:20:03,841 [main] TRACE UmlClass - created (776) OTHER_CIM CIM class EnumeratedTypes::TimSyncIssueType, 1 superclasses=[AbstractBaseType] +2024-09-07 16:20:03,841 [main] TRACE UmlClass - created (1013) OTHER_CIM CIM class EnumeratedTypes::SecurityProfileType, 1 superclasses=[AbstractBaseType] +2024-09-07 16:20:03,841 [main] TRACE UmlClass - created (777) OTHER_CIM CIM class EnumeratedTypes::TimSyncSrcType, 1 superclasses=[AbstractBaseType] +2024-09-07 16:20:03,841 [main] TRACE UmlClass - created (778) OTHER_CIM CIM class EnumeratedTypes::LnkType, 1 superclasses=[AbstractBaseType] +2024-09-07 16:20:03,841 [main] TRACE UmlClass - created (41) OTHER_CIM CIM class <> Environmental Agent::Environmental, 1 superclasses=[AbstractAgent] +2024-09-07 16:20:03,841 [main] TRACE UmlClass - created (616) OTHER_CIM CIM class <> Environmental Agent::PSUPEntry, 1 superclasses=[AbstractAgent] +2024-09-07 16:20:03,842 [main] TRACE UmlClass - created (903) OTHER_CIM CIM class <> Environmental Agent::Notification, 1 superclasses=[AbstractAgent] +2024-09-07 16:20:03,842 [main] TRACE UmlClass - created (874) OTHER_CIM CIM class <> Environmental Agent::SecurityNotification, 1 superclasses=[AbstractAgent] +2024-09-07 16:20:03,842 [main] TRACE UmlClass - created (44) OTHER_CIM CIM class <> IED Agent::IED, 1 superclasses=[AbstractAgent] +2024-09-07 16:20:03,842 [main] TRACE UmlClass - created (832) OTHER_CIM CIM class <> IED Agent::CPUEntry, 1 superclasses=[AbstractAgent] +2024-09-07 16:20:03,842 [main] TRACE UmlClass - created (850) OTHER_CIM CIM class <> IED Agent::EXTEntry, 1 superclasses=[AbstractAgent] +2024-09-07 16:20:03,842 [main] TRACE UmlClass - created (862) OTHER_CIM CIM class <> IED Agent::STOREEntry, 1 superclasses=[AbstractAgent] +2024-09-07 16:20:03,842 [main] TRACE UmlClass - created (911) OTHER_CIM CIM class <> IED Agent::Notification, 1 superclasses=[AbstractAgent] +2024-09-07 16:20:03,842 [main] TRACE UmlClass - created (912) OTHER_CIM CIM class <> IED Agent::SecurityNotification, 1 superclasses=[AbstractAgent] +2024-09-07 16:20:03,842 [main] TRACE UmlClass - created (1032) OTHER_CIM CIM class Common objects::CommonProtocolInfo, 1 superclasses=[AbstractAgent] +2024-09-07 16:20:03,842 [main] TRACE UmlClass - created (1075) OTHER_CIM CIM class IEC62351-3 ed.2 Agent::IEC62351-3ed2security, 1 superclasses=[AbstractAgent] +2024-09-07 16:20:03,842 [main] TRACE UmlClass - created (1080) OTHER_CIM CIM class IEC62351-3 ed.2 Agent::TLSSession, 3 superclasses=[AbstractAgent, CommonProtocolInfo, IEC62351-3ed2security] +2024-09-07 16:20:03,842 [main] TRACE UmlClass - created (1079) OTHER_CIM CIM class <> IEC62351-3 ed.2 Agent::ClientTLS, 1 superclasses=[TLSSession] +2024-09-07 16:20:03,842 [main] TRACE UmlClass - created (1077) OTHER_CIM CIM class <> IEC62351-3 ed.2 Agent::ServerTLS, 1 superclasses=[TLSSession] +2024-09-07 16:20:03,842 [main] TRACE UmlClass - created (808) OTHER_CIM CIM class IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, 1 superclasses=[AbstractAgent] +2024-09-07 16:20:03,843 [main] TRACE UmlClass - created (584) OTHER_CIM CIM class IEEE 1815 and IEC 60870-5 Agent::Association, 3 superclasses=[AbstractAgent, 60870andDNPProtocolInfo, CommonProtocolInfo] +2024-09-07 16:20:03,843 [main] TRACE UmlClass - created (820) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent::MasterAssociation, 1 superclasses=[Association] +2024-09-07 16:20:03,843 [main] TRACE UmlClass - created (821) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent::OutstationAssociation, 1 superclasses=[Association] +2024-09-07 16:20:03,843 [main] TRACE UmlClass - created (1063) OTHER_CIM CIM class IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, 1 superclasses=[AbstractAgent] +2024-09-07 16:20:03,843 [main] TRACE UmlClass - created (1058) OTHER_CIM CIM class IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, 2 superclasses=[AbstractAgent, IEC62351part5] +2024-09-07 16:20:03,843 [main] TRACE UmlClass - created (1059) OTHER_CIM CIM class IEEE 1815 and IEC 60870-5 Agent - ed2::Association, 3 superclasses=[CommonProtocolInfo, AbstractAgent, 60870andDNPProtocolInfoEd2] +2024-09-07 16:20:03,843 [main] TRACE UmlClass - created (1057) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent - ed2::MasterAssociation, 1 superclasses=[Association] +2024-09-07 16:20:03,843 [main] TRACE UmlClass - created (1056) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent - ed2::OutstationAssociation, 1 superclasses=[Association] +2024-09-07 16:20:03,843 [main] TRACE UmlClass - created (818) OTHER_CIM CIM class MMS::MMSProtocolInfo, 1 superclasses=[AbstractAgent] +2024-09-07 16:20:03,843 [main] TRACE UmlClass - created (693) OTHER_CIM CIM class <> MMS::MMSAssociation, 2 superclasses=[MMSProtocolInfo, CommonProtocolInfo] +2024-09-07 16:20:03,843 [main] TRACE UmlClass - created (1076) OTHER_CIM CIM class <> IEC62351-3 ed.2 Agent::Summary, 1 superclasses=[IEC62351-3ed2security] +2024-09-07 16:20:03,843 [main] TRACE UmlClass - created (1078) OTHER_CIM CIM class <> IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification, 1 superclasses=[AbstractAgent] +2024-09-07 16:20:03,844 [main] TRACE UmlClass - created (576) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent::Summary, 1 superclasses=[60870andDNPProtocolInfo] +2024-09-07 16:20:03,844 [main] TRACE UmlClass - created (914) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, 1 superclasses=[AbstractAgent] +2024-09-07 16:20:03,844 [main] TRACE UmlClass - created (915) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, 1 superclasses=[AbstractAgent] +2024-09-07 16:20:03,844 [main] TRACE UmlClass - created (1060) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, 1 superclasses=[60870andDNPProtocolInfoEd2] +2024-09-07 16:20:03,844 [main] TRACE UmlClass - created (1055) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2, 1 superclasses=[AbstractAgent] +2024-09-07 16:20:03,844 [main] TRACE UmlClass - created (1061) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2, 1 superclasses=[AbstractAgent] +2024-09-07 16:20:03,844 [main] TRACE UmlClass - created (152) OTHER_CIM CIM class <> ACSI::ACSISummary, 1 superclasses=[AbstractAgent] +2024-09-07 16:20:03,844 [main] TRACE UmlClass - created (691) OTHER_CIM CIM class <> MMS::MMSProvider, 1 superclasses=[MMSProtocolInfo] +2024-09-07 16:20:03,844 [main] TRACE UmlClass - created (920) OTHER_CIM CIM class <> MMS::MMSSecurityNotification, 1 superclasses=[AbstractAgent] +2024-09-07 16:20:03,844 [main] TRACE UmlClass - created (921) OTHER_CIM CIM class <> MMS::MMSNotification, 1 superclasses=[AbstractAgent] +2024-09-07 16:20:03,844 [main] TRACE UmlClass - created (1025) OTHER_CIM CIM class SV and GSE common objects::GSEandSVCommon, 1 superclasses=[AbstractAgent] +2024-09-07 16:20:03,844 [main] TRACE UmlClass - created (1026) OTHER_CIM CIM class SV and GSE common objects::GSEandSVPublisherAssociation, 1 superclasses=[GSEandSVCommon] +2024-09-07 16:20:03,844 [main] TRACE UmlClass - created (994) OTHER_CIM CIM class <> SV::SVPublisherAssociationIP, 1 superclasses=[GSEandSVPublisherAssociation] +2024-09-07 16:20:03,844 [main] TRACE UmlClass - created (995) OTHER_CIM CIM class <> SV::SVPublisherAssociationL2, 1 superclasses=[GSEandSVPublisherAssociation] +2024-09-07 16:20:03,845 [main] TRACE UmlClass - created (796) OTHER_CIM CIM class <> GSE::GSEPublisherAssociationIP, 1 superclasses=[GSEandSVPublisherAssociation] +2024-09-07 16:20:03,845 [main] TRACE UmlClass - created (984) OTHER_CIM CIM class <> GSE::GSEPublisherAssociationL2, 1 superclasses=[GSEandSVPublisherAssociation] +2024-09-07 16:20:03,845 [main] TRACE UmlClass - created (1027) OTHER_CIM CIM class SV and GSE common objects::GSEandSVSubscriberAssociation, 1 superclasses=[GSEandSVCommon] +2024-09-07 16:20:03,845 [main] TRACE UmlClass - created (998) OTHER_CIM CIM class <> SV::SVSubcriberAssociationIP, 1 superclasses=[GSEandSVSubscriberAssociation] +2024-09-07 16:20:03,845 [main] TRACE UmlClass - created (999) OTHER_CIM CIM class <> SV::SVSubcriberAssociationL2, 1 superclasses=[GSEandSVSubscriberAssociation] +2024-09-07 16:20:03,845 [main] TRACE UmlClass - created (986) OTHER_CIM CIM class GSE::GSESubscriberAssociation, 1 superclasses=[GSEandSVSubscriberAssociation] +2024-09-07 16:20:03,845 [main] TRACE UmlClass - created (979) OTHER_CIM CIM class <> GSE::GSESubcriberAssociationIP, 1 superclasses=[GSESubscriberAssociation] +2024-09-07 16:20:03,845 [main] TRACE UmlClass - created (977) OTHER_CIM CIM class <> GSE::GSESubcriberAssociationL2, 1 superclasses=[GSESubscriberAssociation] +2024-09-07 16:20:03,845 [main] TRACE UmlClass - created (1002) OTHER_CIM CIM class <> SV::SVProvider, 1 superclasses=[GSEandSVCommon] +2024-09-07 16:20:03,845 [main] TRACE UmlClass - created (997) OTHER_CIM CIM class <> SV::SVNotification, 1 superclasses=[GSEandSVCommon] +2024-09-07 16:20:03,845 [main] TRACE UmlClass - created (794) OTHER_CIM CIM class <> GSE::GSEProvider, 1 superclasses=[GSEandSVCommon] +2024-09-07 16:20:03,845 [main] TRACE UmlClass - created (930) OTHER_CIM CIM class <> GSE::GSENotification, 1 superclasses=[GSEandSVCommon] +2024-09-07 16:20:03,845 [main] TRACE UmlClass - created (609) OTHER_CIM CIM class <> Clocks Agent::Clock, 1 superclasses=[AbstractAgent] +2024-09-07 16:20:03,845 [main] TRACE UmlClass - created (608) OTHER_CIM CIM class <> Clocks Agent::ClockEntry, 1 superclasses=[AbstractAgent] +2024-09-07 16:20:03,846 [main] TRACE UmlClass - created (944) OTHER_CIM CIM class <> Clocks Agent::SecurityNotification, 1 superclasses=[AbstractAgent] +2024-09-07 16:20:03,846 [main] TRACE UmlClass - created (844) OTHER_CIM CIM class Interfaces Agent::Interface, 1 superclasses=[AbstractAgent] +2024-09-07 16:20:03,846 [main] TRACE UmlClass - created (838) OTHER_CIM CIM class <> Interfaces Agent::ETHEntry, 1 superclasses=[Interface] +2024-09-07 16:20:03,846 [main] TRACE UmlClass - created (842) OTHER_CIM CIM class <> Interfaces Agent::KEYEntry, 1 superclasses=[Interface] +2024-09-07 16:20:03,846 [main] TRACE UmlClass - created (836) OTHER_CIM CIM class <> Interfaces Agent::SEREntry, 1 superclasses=[Interface] +2024-09-07 16:20:03,846 [main] TRACE UmlClass - created (847) OTHER_CIM CIM class <> Interfaces Agent::ALGEntry, 1 superclasses=[Interface] +2024-09-07 16:20:03,846 [main] TRACE UmlClass - created (840) OTHER_CIM CIM class <> Interfaces Agent::USBEntry, 1 superclasses=[Interface] +2024-09-07 16:20:03,846 [main] TRACE UmlClass - created (834) OTHER_CIM CIM class <> Interfaces Agent::Interfaces, 1 superclasses=[AbstractAgent] +2024-09-07 16:20:03,846 [main] TRACE UmlClass - created (946) OTHER_CIM CIM class <> Interfaces Agent::Notification, 1 superclasses=[AbstractAgent] +2024-09-07 16:20:03,846 [main] INFO EaModelBuilder - reordering in-memory classes in packages ... +2024-09-07 16:20:03,847 [main] INFO EaModelBuilder - creating in-memory class' attributes, operations and constraints ... +2024-09-07 16:20:03,847 [main] ERROR UmlAttribute - unclassified CIM attribute: (3451) OTHER_CIM CIM [0..1] null nsmAgent::Class.isActive: NullCIM::NullCIM +2024-09-07 16:20:03,847 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,847 [main] TRACE UmlAttribute - created (3451) OTHER_CIM CIM [0..1] attribute nsmAgent::Class.isActive: NullCIM::NullCIM +2024-09-07 16:20:03,847 [main] ERROR UmlAttribute - unclassified CIM attribute: (3982) OTHER_CIM CIM [0..1] null nsmAgent::Class.isActive: NullCIM::NullCIM +2024-09-07 16:20:03,847 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,848 [main] TRACE UmlAttribute - created (3982) OTHER_CIM CIM [0..1] attribute nsmAgent::Class.isActive: NullCIM::NullCIM +2024-09-07 16:20:03,848 [main] ERROR UmlAttribute - unclassified CIM attribute: (3442) OTHER_CIM CIM [0..1] null nsmAgent::Class.isActive: NullCIM::NullCIM +2024-09-07 16:20:03,848 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,848 [main] TRACE UmlAttribute - created (3442) OTHER_CIM CIM [0..1] attribute nsmAgent::Class.isActive: NullCIM::NullCIM +2024-09-07 16:20:03,848 [main] ERROR UmlAttribute - unclassified CIM attribute: (3454) OTHER_CIM CIM [0..1] null nsmAgent::health.Version: NullCIM::NullCIM = 0 +2024-09-07 16:20:03,848 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 16:20:03,848 [main] TRACE UmlAttribute - created (3454) OTHER_CIM CIM [0..1] attribute nsmAgent::health.Version: NullCIM::NullCIM = 0 +2024-09-07 16:20:03,848 [main] ERROR UmlAttribute - unclassified CIM attribute: (3453) OTHER_CIM CIM [0..1] null nsmAgent::identity.Version: NullCIM::NullCIM = 0 +2024-09-07 16:20:03,848 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 16:20:03,848 [main] TRACE UmlAttribute - created (3453) OTHER_CIM CIM [0..1] attribute nsmAgent::identity.Version: NullCIM::NullCIM = 0 +2024-09-07 16:20:03,848 [main] ERROR UmlAttribute - unclassified CIM attribute: (3452) OTHER_CIM CIM [0..1] null nsmAgent::index.Version: NullCIM::NullCIM = 0 +2024-09-07 16:20:03,849 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 16:20:03,849 [main] TRACE UmlAttribute - created (3452) OTHER_CIM CIM [0..1] attribute nsmAgent::index.Version: NullCIM::NullCIM = 0 +2024-09-07 16:20:03,849 [main] ERROR UmlAttribute - unclassified CIM attribute: (3448) OTHER_CIM CIM [0..1] null nsmAgent::nsmAgent.mibPrefix: NullCIM::NullCIM +2024-09-07 16:20:03,849 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,849 [main] TRACE UmlAttribute - created (3448) OTHER_CIM CIM [0..1] attribute nsmAgent::nsmAgent.mibPrefix: NullCIM::NullCIM +2024-09-07 16:20:03,849 [main] ERROR UmlAttribute - unclassified CIM attribute: (3449) OTHER_CIM CIM [0..1] null nsmAgent::nsmAgent.objectIdentity: NullCIM::NullCIM +2024-09-07 16:20:03,849 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,849 [main] TRACE UmlAttribute - created (3449) OTHER_CIM CIM [0..1] attribute nsmAgent::nsmAgent.objectIdentity: NullCIM::NullCIM +2024-09-07 16:20:03,849 [main] ERROR UmlAttribute - unclassified CIM attribute: (3450) OTHER_CIM CIM [0..1] null nsmAgent::nsmAgent.objectBranchId: NullCIM::NullCIM +2024-09-07 16:20:03,849 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,849 [main] TRACE UmlAttribute - created (3450) OTHER_CIM CIM [0..1] attribute nsmAgent::nsmAgent.objectBranchId: NullCIM::NullCIM +2024-09-07 16:20:03,849 [main] ERROR UmlAttribute - unclassified CIM attribute: (3979) OTHER_CIM CIM [0..1] null nsmAgent::nsmEntry.mibPrefix: NullCIM::NullCIM +2024-09-07 16:20:03,850 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,850 [main] TRACE UmlAttribute - created (3979) OTHER_CIM CIM [0..1] attribute nsmAgent::nsmEntry.mibPrefix: NullCIM::NullCIM +2024-09-07 16:20:03,850 [main] ERROR UmlAttribute - unclassified CIM attribute: (3980) OTHER_CIM CIM [0..1] null nsmAgent::nsmEntry.objectIdentity: NullCIM::NullCIM +2024-09-07 16:20:03,850 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,850 [main] TRACE UmlAttribute - created (3980) OTHER_CIM CIM [0..1] attribute nsmAgent::nsmEntry.objectIdentity: NullCIM::NullCIM +2024-09-07 16:20:03,850 [main] ERROR UmlAttribute - unclassified CIM attribute: (3981) OTHER_CIM CIM [0..1] null nsmAgent::nsmEntry.objectBranchId: NullCIM::NullCIM +2024-09-07 16:20:03,850 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,850 [main] TRACE UmlAttribute - created (3981) OTHER_CIM CIM [0..1] attribute nsmAgent::nsmEntry.objectBranchId: NullCIM::NullCIM +2024-09-07 16:20:03,850 [main] ERROR UmlAttribute - unclassified CIM attribute: (3443) OTHER_CIM CIM [0..1] null nsmAgent::nsmEvent.mibPrefix: NullCIM::NullCIM +2024-09-07 16:20:03,850 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,850 [main] TRACE UmlAttribute - created (3443) OTHER_CIM CIM [0..1] attribute nsmAgent::nsmEvent.mibPrefix: NullCIM::NullCIM +2024-09-07 16:20:03,851 [main] ERROR UmlAttribute - unclassified CIM attribute: (3444) OTHER_CIM CIM [0..1] null nsmAgent::nsmEvent.objectIdentity: NullCIM::NullCIM +2024-09-07 16:20:03,851 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,851 [main] TRACE UmlAttribute - created (3444) OTHER_CIM CIM [0..1] attribute nsmAgent::nsmEvent.objectIdentity: NullCIM::NullCIM +2024-09-07 16:20:03,851 [main] ERROR UmlAttribute - unclassified CIM attribute: (3445) OTHER_CIM CIM [0..1] null nsmAgent::nsmEvent.objectBranchId: NullCIM::NullCIM +2024-09-07 16:20:03,851 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,851 [main] TRACE UmlAttribute - created (3445) OTHER_CIM CIM [0..1] attribute nsmAgent::nsmEvent.objectBranchId: NullCIM::NullCIM +2024-09-07 16:20:03,851 [main] ERROR UmlAttribute - unclassified CIM attribute: (3455) OTHER_CIM CIM [0..1] null nsmAgent::performance.Version: NullCIM::NullCIM = 0 +2024-09-07 16:20:03,851 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 16:20:03,852 [main] TRACE UmlAttribute - created (3455) OTHER_CIM CIM [0..1] attribute nsmAgent::performance.Version: NullCIM::NullCIM = 0 +2024-09-07 16:20:03,852 [main] ERROR UmlAttribute - unclassified CIM attribute: (3447) OTHER_CIM CIM [0..1] null nsmAgent::protocol.Version: NullCIM::NullCIM = 0 +2024-09-07 16:20:03,852 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 16:20:03,853 [main] TRACE UmlAttribute - created (3447) OTHER_CIM CIM [0..1] attribute nsmAgent::protocol.Version: NullCIM::NullCIM = 0 +2024-09-07 16:20:03,853 [main] ERROR UmlAttribute - unclassified CIM attribute: (3446) OTHER_CIM CIM [0..1] null nsmAgent::security.Version: NullCIM::NullCIM = 0 +2024-09-07 16:20:03,853 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 16:20:03,853 [main] TRACE UmlAttribute - created (3446) OTHER_CIM CIM [0..1] attribute nsmAgent::security.Version: NullCIM::NullCIM = 0 +2024-09-07 16:20:03,853 [main] ERROR UmlAttribute - unclassified CIM attribute: (3456) OTHER_CIM CIM [0..1] null nsmAgent::setvalue.Version: NullCIM::NullCIM = 0 +2024-09-07 16:20:03,853 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 16:20:03,853 [main] TRACE UmlAttribute - created (3456) OTHER_CIM CIM [0..1] attribute nsmAgent::setvalue.Version: NullCIM::NullCIM = 0 +2024-09-07 16:20:03,854 [main] ERROR UmlAttribute - unclassified CIM attribute: (3457) OTHER_CIM CIM [0..1] null nsmAgent::table.Version: NullCIM::NullCIM = 0 +2024-09-07 16:20:03,854 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 16:20:03,854 [main] TRACE UmlAttribute - created (3457) OTHER_CIM CIM [0..1] attribute nsmAgent::table.Version: NullCIM::NullCIM = 0 +2024-09-07 16:20:03,854 [main] ERROR UmlAttribute - unclassified CIM attribute: (3610) OTHER_CIM CIM [0..1] null nsmAgent::trap.Version: NullCIM::NullCIM = 0 +2024-09-07 16:20:03,855 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 16:20:03,855 [main] TRACE UmlAttribute - created (3610) OTHER_CIM CIM [0..1] attribute nsmAgent::trap.Version: NullCIM::NullCIM = 0 +2024-09-07 16:20:03,855 [main] ERROR UmlAttribute - unclassified CIM attribute: (2741) OTHER_CIM CIM [1..1] null BaseTypes::AbsoluteDateTime.value: NullCIM::NullCIM = OCTET STRING (SIZE(8..11)) +2024-09-07 16:20:03,855 [main] TRACE ValueRange - 'OCTET STRING (SIZE(8..11))' has no separator indicating range. +2024-09-07 16:20:03,855 [main] TRACE UmlAttribute - created (2741) OTHER_CIM CIM [1..1] attribute BaseTypes::AbsoluteDateTime.value: NullCIM::NullCIM = OCTET STRING (SIZE(8..11)) +2024-09-07 16:20:03,855 [main] ERROR UmlAttribute - unclassified CIM attribute: (2679) OTHER_CIM CIM [1..1] null BaseTypes::Counter32 .value: NullCIM::NullCIM = Counter32 +2024-09-07 16:20:03,856 [main] TRACE ValueRange - 'Counter32' has no separator indicating range. +2024-09-07 16:20:03,856 [main] TRACE UmlAttribute - created (2679) OTHER_CIM CIM [1..1] attribute BaseTypes::Counter32 .value: NullCIM::NullCIM = Counter32 +2024-09-07 16:20:03,856 [main] ERROR UmlAttribute - unclassified CIM attribute: (2681) OTHER_CIM CIM [1..1] null BaseTypes::DateAndTime.value: NullCIM::NullCIM = OCTET STRING (SIZE(8..11)) +2024-09-07 16:20:03,856 [main] TRACE ValueRange - 'OCTET STRING (SIZE(8..11))' has no separator indicating range. +2024-09-07 16:20:03,856 [main] TRACE UmlAttribute - created (2681) OTHER_CIM CIM [1..1] attribute BaseTypes::DateAndTime.value: NullCIM::NullCIM = OCTET STRING (SIZE(8..11)) +2024-09-07 16:20:03,856 [main] ERROR UmlAttribute - unclassified CIM attribute: (2683) OTHER_CIM CIM [1..1] null BaseTypes::DisplayString.value: NullCIM::NullCIM = DisplayString +2024-09-07 16:20:03,856 [main] TRACE ValueRange - 'DisplayString' has no separator indicating range. +2024-09-07 16:20:03,856 [main] TRACE UmlAttribute - created (2683) OTHER_CIM CIM [1..1] attribute BaseTypes::DisplayString.value: NullCIM::NullCIM = DisplayString +2024-09-07 16:20:03,857 [main] ERROR UmlAttribute - unclassified CIM attribute: (2682) OTHER_CIM CIM [1..1] null BaseTypes::Float32TC.value: NullCIM::NullCIM = OCTET STRING (SIZE(4)) +2024-09-07 16:20:03,857 [main] TRACE ValueRange - 'OCTET STRING (SIZE(4))' has no separator indicating range. +2024-09-07 16:20:03,857 [main] TRACE UmlAttribute - created (2682) OTHER_CIM CIM [1..1] attribute BaseTypes::Float32TC.value: NullCIM::NullCIM = OCTET STRING (SIZE(4)) +2024-09-07 16:20:03,857 [main] ERROR UmlAttribute - unclassified CIM attribute: (2678) OTHER_CIM CIM [1..1] null BaseTypes::Gauge32.value: NullCIM::NullCIM = Gauge32 +2024-09-07 16:20:03,857 [main] TRACE ValueRange - 'Gauge32' has no separator indicating range. +2024-09-07 16:20:03,857 [main] TRACE UmlAttribute - created (2678) OTHER_CIM CIM [1..1] attribute BaseTypes::Gauge32.value: NullCIM::NullCIM = Gauge32 +2024-09-07 16:20:03,857 [main] ERROR UmlAttribute - unclassified CIM attribute: (3682) OTHER_CIM CIM [1..1] null BaseTypes::InetAddress.value: NullCIM::NullCIM = DisplayString (SIZE(0..255)) +2024-09-07 16:20:03,857 [main] TRACE ValueRange - 'DisplayString (SIZE(0..255))' has no separator indicating range. +2024-09-07 16:20:03,857 [main] TRACE UmlAttribute - created (3682) OTHER_CIM CIM [1..1] attribute BaseTypes::InetAddress.value: NullCIM::NullCIM = DisplayString (SIZE(0..255)) +2024-09-07 16:20:03,857 [main] ERROR UmlAttribute - unclassified CIM attribute: (3719) OTHER_CIM CIM [1..1] null BaseTypes::MacAddress.value: NullCIM::NullCIM = DisplayString (SIZE(0..255)) +2024-09-07 16:20:03,857 [main] TRACE ValueRange - 'DisplayString (SIZE(0..255))' has no separator indicating range. +2024-09-07 16:20:03,858 [main] TRACE UmlAttribute - created (3719) OTHER_CIM CIM [1..1] attribute BaseTypes::MacAddress.value: NullCIM::NullCIM = DisplayString (SIZE(0..255)) +2024-09-07 16:20:03,858 [main] ERROR UmlAttribute - unclassified CIM attribute: (3723) OTHER_CIM CIM [1..1] null BaseTypes::EntityIndex.value: NullCIM::NullCIM = Integer32 +2024-09-07 16:20:03,858 [main] TRACE ValueRange - 'Integer32' has no separator indicating range. +2024-09-07 16:20:03,858 [main] TRACE UmlAttribute - created (3723) OTHER_CIM CIM [1..1] attribute BaseTypes::EntityIndex.value: NullCIM::NullCIM = Integer32 +2024-09-07 16:20:03,858 [main] ERROR UmlAttribute - unclassified CIM attribute: (1397) OTHER_CIM CIM [1..1] null BaseTypes::Integer32.value: NullCIM::NullCIM = Integer32 +2024-09-07 16:20:03,858 [main] TRACE ValueRange - 'Integer32' has no separator indicating range. +2024-09-07 16:20:03,858 [main] TRACE UmlAttribute - created (1397) OTHER_CIM CIM [1..1] attribute BaseTypes::Integer32.value: NullCIM::NullCIM = Integer32 +2024-09-07 16:20:03,858 [main] ERROR UmlAttribute - unclassified CIM attribute: (3721) OTHER_CIM CIM [1..1] null BaseTypes::Unsigned32.value: NullCIM::NullCIM = Integer32 +2024-09-07 16:20:03,858 [main] TRACE ValueRange - 'Integer32' has no separator indicating range. +2024-09-07 16:20:03,858 [main] TRACE UmlAttribute - created (3721) OTHER_CIM CIM [1..1] attribute BaseTypes::Unsigned32.value: NullCIM::NullCIM = Integer32 +2024-09-07 16:20:03,859 [main] ERROR UmlAttribute - unclassified CIM attribute: (2680) OTHER_CIM CIM [1..1] null BaseTypes::TimeTicks.value: NullCIM::NullCIM = TimeTicks +2024-09-07 16:20:03,859 [main] TRACE ValueRange - 'TimeTicks' has no separator indicating range. +2024-09-07 16:20:03,859 [main] TRACE UmlAttribute - created (2680) OTHER_CIM CIM [1..1] attribute BaseTypes::TimeTicks.value: NullCIM::NullCIM = TimeTicks +2024-09-07 16:20:03,859 [main] ERROR UmlAttribute - unclassified CIM attribute: (2685) OTHER_CIM CIM [1..1] null BaseTypes::TruthValue.value: NullCIM::NullCIM = TruthValue +2024-09-07 16:20:03,859 [main] TRACE ValueRange - 'TruthValue' has no separator indicating range. +2024-09-07 16:20:03,859 [main] TRACE UmlAttribute - created (2685) OTHER_CIM CIM [1..1] attribute BaseTypes::TruthValue.value: NullCIM::NullCIM = TruthValue +2024-09-07 16:20:03,859 [main] ERROR UmlAttribute - unclassified CIM attribute: (2987) OTHER_CIM CIM [1..1] null Abstract Types::BooleanValue.Value: BaseTypes::TruthValue +2024-09-07 16:20:03,859 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,859 [main] TRACE UmlAttribute - created (2987) OTHER_CIM CIM [1..1] attribute Abstract Types::BooleanValue.Value: BaseTypes::TruthValue +2024-09-07 16:20:03,859 [main] ERROR UmlAttribute - unclassified CIM attribute: (2915) OTHER_CIM CIM [1..1] null Abstract Types::BooleanValueTs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 16:20:03,860 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,860 [main] TRACE UmlAttribute - created (2915) OTHER_CIM CIM [1..1] attribute Abstract Types::BooleanValueTs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 16:20:03,860 [main] ERROR UmlAttribute - unclassified CIM attribute: (2916) OTHER_CIM CIM [1..1] null Abstract Types::BooleanValueTs.Value: BaseTypes::TruthValue +2024-09-07 16:20:03,860 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,860 [main] TRACE UmlAttribute - created (2916) OTHER_CIM CIM [1..1] attribute Abstract Types::BooleanValueTs.Value: BaseTypes::TruthValue +2024-09-07 16:20:03,860 [main] ERROR UmlAttribute - unclassified CIM attribute: (2921) OTHER_CIM CIM [1..1] null Abstract Types::CounterTs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 16:20:03,860 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,860 [main] TRACE UmlAttribute - created (2921) OTHER_CIM CIM [1..1] attribute Abstract Types::CounterTs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 16:20:03,860 [main] ERROR UmlAttribute - unclassified CIM attribute: (2922) OTHER_CIM CIM [1..1] null Abstract Types::CounterTs.Value: BaseTypes::Counter32 +2024-09-07 16:20:03,861 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,861 [main] TRACE UmlAttribute - created (2922) OTHER_CIM CIM [1..1] attribute Abstract Types::CounterTs.Value: BaseTypes::Counter32 +2024-09-07 16:20:03,861 [main] ERROR UmlAttribute - unclassified CIM attribute: (3004) OTHER_CIM CIM [1..1] null Abstract Types::CntRs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 16:20:03,861 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,861 [main] TRACE UmlAttribute - created (3004) OTHER_CIM CIM [1..1] attribute Abstract Types::CntRs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 16:20:03,861 [main] ERROR UmlAttribute - unclassified CIM attribute: (3003) OTHER_CIM CIM [1..1] null Abstract Types::CntRs.Value: BaseTypes::TruthValue +2024-09-07 16:20:03,861 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,861 [main] TRACE UmlAttribute - created (3003) OTHER_CIM CIM [1..1] attribute Abstract Types::CntRs.Value: BaseTypes::TruthValue +2024-09-07 16:20:03,861 [main] ERROR UmlAttribute - unclassified CIM attribute: (2937) OTHER_CIM CIM [1..1] null Abstract Types::Floating.Value: BaseTypes::Float32TC +2024-09-07 16:20:03,861 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,862 [main] TRACE UmlAttribute - created (2937) OTHER_CIM CIM [1..1] attribute Abstract Types::Floating.Value: BaseTypes::Float32TC +2024-09-07 16:20:03,862 [main] ERROR UmlAttribute - unclassified CIM attribute: (2939) OTHER_CIM CIM [1..1] null Abstract Types::FloatingTs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 16:20:03,862 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,862 [main] TRACE UmlAttribute - created (2939) OTHER_CIM CIM [1..1] attribute Abstract Types::FloatingTs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 16:20:03,862 [main] ERROR UmlAttribute - unclassified CIM attribute: (2940) OTHER_CIM CIM [1..1] null Abstract Types::FloatingTs.Value: BaseTypes::Float32TC +2024-09-07 16:20:03,862 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,862 [main] TRACE UmlAttribute - created (2940) OTHER_CIM CIM [1..1] attribute Abstract Types::FloatingTs.Value: BaseTypes::Float32TC +2024-09-07 16:20:03,862 [main] ERROR UmlAttribute - unclassified CIM attribute: (3724) OTHER_CIM CIM [1..1] null Abstract Types::EntityIndex.Value: BaseTypes::Unsigned32 +2024-09-07 16:20:03,862 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,862 [main] TRACE UmlAttribute - created (3724) OTHER_CIM CIM [1..1] attribute Abstract Types::EntityIndex.Value: BaseTypes::Unsigned32 +2024-09-07 16:20:03,863 [main] ERROR UmlAttribute - unclassified CIM attribute: (2928) OTHER_CIM CIM [1..1] null Abstract Types::Integer.Value: BaseTypes::Integer32 +2024-09-07 16:20:03,863 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,863 [main] TRACE UmlAttribute - created (2928) OTHER_CIM CIM [1..1] attribute Abstract Types::Integer.Value: BaseTypes::Integer32 +2024-09-07 16:20:03,863 [main] ERROR UmlAttribute - unclassified CIM attribute: (2930) OTHER_CIM CIM [1..1] null Abstract Types::IntegerTs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 16:20:03,863 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,863 [main] TRACE UmlAttribute - created (2930) OTHER_CIM CIM [1..1] attribute Abstract Types::IntegerTs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 16:20:03,863 [main] ERROR UmlAttribute - unclassified CIM attribute: (2931) OTHER_CIM CIM [1..1] null Abstract Types::IntegerTs.Value: BaseTypes::Integer32 +2024-09-07 16:20:03,863 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,863 [main] TRACE UmlAttribute - created (2931) OTHER_CIM CIM [1..1] attribute Abstract Types::IntegerTs.Value: BaseTypes::Integer32 +2024-09-07 16:20:03,863 [main] ERROR UmlAttribute - unclassified CIM attribute: (3017) OTHER_CIM CIM [1..1] null Abstract Types::InetAddress.Value: BaseTypes::InetAddress +2024-09-07 16:20:03,864 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,864 [main] TRACE UmlAttribute - created (3017) OTHER_CIM CIM [1..1] attribute Abstract Types::InetAddress.Value: BaseTypes::InetAddress +2024-09-07 16:20:03,864 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,864 [main] TRACE UmlAttribute - created (3690) OTHER_CIM CIM [1..1] enumeration attribute Abstract Types::InetAddressType.Value: BaseTypes::InetAddressType +2024-09-07 16:20:03,864 [main] ERROR UmlAttribute - unclassified CIM attribute: (3019) OTHER_CIM CIM [1..1] null Abstract Types::MacAddress.Value: BaseTypes::MacAddress +2024-09-07 16:20:03,864 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,864 [main] TRACE UmlAttribute - created (3019) OTHER_CIM CIM [1..1] attribute Abstract Types::MacAddress.Value: BaseTypes::MacAddress +2024-09-07 16:20:03,864 [main] ERROR UmlAttribute - unclassified CIM attribute: (3015) OTHER_CIM CIM [1..1] null Abstract Types::Selector.Value: BaseTypes::DisplayString +2024-09-07 16:20:03,864 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,864 [main] TRACE UmlAttribute - created (3015) OTHER_CIM CIM [1..1] attribute Abstract Types::Selector.Value: BaseTypes::DisplayString +2024-09-07 16:20:03,865 [main] ERROR UmlAttribute - unclassified CIM attribute: (3083) OTHER_CIM CIM [1..1] null Abstract Types::Timestamp.TimeStamp: BaseTypes::DateAndTime +2024-09-07 16:20:03,865 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,865 [main] TRACE UmlAttribute - created (3083) OTHER_CIM CIM [1..1] attribute Abstract Types::Timestamp.TimeStamp: BaseTypes::DateAndTime +2024-09-07 16:20:03,865 [main] ERROR UmlAttribute - unclassified CIM attribute: (2989) OTHER_CIM CIM [1..1] null Abstract Types::CharString.Value: BaseTypes::DisplayString +2024-09-07 16:20:03,865 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,865 [main] TRACE UmlAttribute - created (2989) OTHER_CIM CIM [1..1] attribute Abstract Types::CharString.Value: BaseTypes::DisplayString +2024-09-07 16:20:03,865 [main] ERROR UmlAttribute - unclassified CIM attribute: (3380) OTHER_CIM CIM [1..1] null Abstract Types::CharStringTs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 16:20:03,865 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,865 [main] TRACE UmlAttribute - created (3380) OTHER_CIM CIM [1..1] attribute Abstract Types::CharStringTs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 16:20:03,865 [main] ERROR UmlAttribute - unclassified CIM attribute: (3379) OTHER_CIM CIM [1..1] null Abstract Types::CharStringTs.Value: BaseTypes::DisplayString +2024-09-07 16:20:03,866 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,866 [main] TRACE UmlAttribute - created (3379) OTHER_CIM CIM [1..1] attribute Abstract Types::CharStringTs.Value: BaseTypes::DisplayString +2024-09-07 16:20:03,866 [main] ERROR UmlAttribute - unclassified CIM attribute: (2991) OTHER_CIM CIM [1..1] null EnumeratedTypes::AppDatStType.TimeStamp: BaseTypes::DateAndTime +2024-09-07 16:20:03,866 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,866 [main] TRACE UmlAttribute - created (2991) OTHER_CIM CIM [1..1] attribute EnumeratedTypes::AppDatStType.TimeStamp: BaseTypes::DateAndTime +2024-09-07 16:20:03,867 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,867 [main] TRACE UmlAttribute - created (2992) OTHER_CIM CIM [1..1] enumeration attribute <> EnumeratedTypes::AppDatStType.Value: EnumeratedTypes::AppDatStKind +2024-09-07 16:20:03,867 [main] ERROR UmlAttribute - unclassified CIM attribute: (4116) OTHER_CIM CIM [1..1] null EnumeratedTypes::PhyHealthType.TimeStamp: BaseTypes::DateAndTime +2024-09-07 16:20:03,867 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,867 [main] TRACE UmlAttribute - created (4116) OTHER_CIM CIM [1..1] attribute EnumeratedTypes::PhyHealthType.TimeStamp: BaseTypes::DateAndTime +2024-09-07 16:20:03,867 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,868 [main] TRACE UmlAttribute - created (4117) OTHER_CIM CIM [1..1] enumeration attribute <> EnumeratedTypes::PhyHealthType.Value: EnumeratedTypes::PhyHealthKind +2024-09-07 16:20:03,868 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,868 [main] TRACE UmlAttribute - created (3367) OTHER_CIM CIM [1..1] enumeration attribute EnumeratedTypes::ExtType.Value: EnumeratedTypes::ExtKind +2024-09-07 16:20:03,868 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,868 [main] TRACE UmlAttribute - created (3395) OTHER_CIM CIM [1..1] enumeration attribute EnumeratedTypes::IntType.Value: EnumeratedTypes::IntKind +2024-09-07 16:20:03,868 [main] ERROR UmlAttribute - unclassified CIM attribute: (3705) OTHER_CIM CIM [1..1] null EnumeratedTypes::EventType.TimeStamp: BaseTypes::DateAndTime +2024-09-07 16:20:03,868 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,868 [main] TRACE UmlAttribute - created (3705) OTHER_CIM CIM [1..1] attribute EnumeratedTypes::EventType.TimeStamp: BaseTypes::DateAndTime +2024-09-07 16:20:03,869 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,869 [main] TRACE UmlAttribute - created (3704) OTHER_CIM CIM [1..1] enumeration attribute EnumeratedTypes::EventType.Value: EnumeratedTypes::EventKind +2024-09-07 16:20:03,869 [main] ERROR UmlAttribute - unclassified CIM attribute: (3378) OTHER_CIM CIM [1..1] null EnumeratedTypes::PSPAccType.Timestamp: BaseTypes::DateAndTime +2024-09-07 16:20:03,869 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,869 [main] TRACE UmlAttribute - created (3378) OTHER_CIM CIM [1..1] attribute EnumeratedTypes::PSPAccType.Timestamp: BaseTypes::DateAndTime +2024-09-07 16:20:03,869 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,869 [main] TRACE UmlAttribute - created (3377) OTHER_CIM CIM [1..1] enumeration attribute EnumeratedTypes::PSPAccType.Value: EnumeratedTypes::PSPAccKind +2024-09-07 16:20:03,869 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,869 [main] TRACE UmlAttribute - created (3011) OTHER_CIM CIM [1..1] enumeration attribute EnumeratedTypes::ProtIdType.Value: EnumeratedTypes::ProtIdKind +2024-09-07 16:20:03,869 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,869 [main] TRACE UmlAttribute - created (3006) OTHER_CIM CIM [1..1] enumeration attribute EnumeratedTypes::TimSyncIssueType.Value: EnumeratedTypes::TimSyncIssueKind +2024-09-07 16:20:03,869 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,869 [main] TRACE UmlAttribute - created (3929) OTHER_CIM CIM [1..1] enumeration attribute EnumeratedTypes::SecurityProfileType.Value: EnumeratedTypes::SecurityProfileKind +2024-09-07 16:20:03,870 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,870 [main] TRACE UmlAttribute - created (3008) OTHER_CIM CIM [1..1] enumeration attribute EnumeratedTypes::TimSyncSrcType.Value: EnumeratedTypes::TimSyncSrcKind +2024-09-07 16:20:03,870 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,870 [main] TRACE UmlAttribute - created (3010) OTHER_CIM CIM [1..1] enumeration attribute EnumeratedTypes::LnkType.Value: EnumeratedTypes::LnkKind +2024-09-07 16:20:03,870 [main] ERROR UmlAttribute - unclassified CIM attribute: (2673) OTHER_CIM CIM const [1..1] null <> Environmental Agent::Environmental.AppDatSt: EnumeratedTypes::AppDatStType +2024-09-07 16:20:03,870 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,870 [main] TRACE UmlAttribute - created (2673) OTHER_CIM CIM const [1..1] attribute <> Environmental Agent::Environmental.AppDatSt: EnumeratedTypes::AppDatStType +2024-09-07 16:20:03,870 [main] ERROR UmlAttribute - unclassified CIM attribute: (596) OTHER_CIM CIM [0..1] null <> Environmental Agent::Environmental.CntRs: Abstract Types::CntRs +2024-09-07 16:20:03,870 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,870 [main] TRACE UmlAttribute - created (596) OTHER_CIM CIM [0..1] attribute <> Environmental Agent::Environmental.CntRs: Abstract Types::CntRs +2024-09-07 16:20:03,871 [main] ERROR UmlAttribute - unclassified CIM attribute: (3707) OTHER_CIM CIM const [1..1] null <> Environmental Agent::Environmental.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:20:03,871 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,872 [main] TRACE UmlAttribute - created (3707) OTHER_CIM CIM const [1..1] attribute <> Environmental Agent::Environmental.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:20:03,872 [main] ERROR UmlAttribute - unclassified CIM attribute: (2257) OTHER_CIM CIM const [0..1] null <> Environmental Agent::Environmental.PSPBld: Abstract Types::BooleanValueTs +2024-09-07 16:20:03,872 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,872 [main] TRACE UmlAttribute - created (2257) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::Environmental.PSPBld: Abstract Types::BooleanValueTs +2024-09-07 16:20:03,872 [main] ERROR UmlAttribute - unclassified CIM attribute: (2255) OTHER_CIM CIM const [1..1] null <> Environmental Agent::Environmental.PSPIed: Abstract Types::BooleanValueTs +2024-09-07 16:20:03,872 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,872 [main] TRACE UmlAttribute - created (2255) OTHER_CIM CIM const [1..1] attribute <> Environmental Agent::Environmental.PSPIed: Abstract Types::BooleanValueTs +2024-09-07 16:20:03,872 [main] ERROR UmlAttribute - unclassified CIM attribute: (2256) OTHER_CIM CIM const [1..1] null <> Environmental Agent::Environmental.PSPPanel: Abstract Types::BooleanValueTs +2024-09-07 16:20:03,873 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,873 [main] TRACE UmlAttribute - created (2256) OTHER_CIM CIM const [1..1] attribute <> Environmental Agent::Environmental.PSPPanel: Abstract Types::BooleanValueTs +2024-09-07 16:20:03,873 [main] ERROR UmlAttribute - unclassified CIM attribute: (2258) OTHER_CIM CIM const [0..1] null <> Environmental Agent::Environmental.PSPPerimeter: Abstract Types::BooleanValueTs +2024-09-07 16:20:03,873 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,873 [main] TRACE UmlAttribute - created (2258) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::Environmental.PSPPerimeter: Abstract Types::BooleanValueTs +2024-09-07 16:20:03,873 [main] ERROR UmlAttribute - unclassified CIM attribute: (152) OTHER_CIM CIM [0..*] null <
> Environmental Agent::Environmental.PSUP: Environmental Agent::PSUPEntry +2024-09-07 16:20:03,873 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,873 [main] TRACE UmlAttribute - created (152) OTHER_CIM CIM [0..*] attribute <
> Environmental Agent::Environmental.PSUP: Environmental Agent::PSUPEntry +2024-09-07 16:20:03,873 [main] ERROR UmlAttribute - unclassified CIM attribute: (2260) OTHER_CIM CIM const [0..1] null <> Environmental Agent::Environmental.PSUPLos: Abstract Types::Integer +2024-09-07 16:20:03,873 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,873 [main] TRACE UmlAttribute - created (2260) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::Environmental.PSUPLos: Abstract Types::Integer +2024-09-07 16:20:03,874 [main] ERROR UmlAttribute - unclassified CIM attribute: (2259) OTHER_CIM CIM const [1..1] null <> Environmental Agent::Environmental.PSUPOn: Abstract Types::IntegerTs +2024-09-07 16:20:03,874 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,874 [main] TRACE UmlAttribute - created (2259) OTHER_CIM CIM const [1..1] attribute <> Environmental Agent::Environmental.PSUPOn: Abstract Types::IntegerTs +2024-09-07 16:20:03,874 [main] ERROR UmlAttribute - unclassified CIM attribute: (3622) OTHER_CIM CIM [0..1] null <> Environmental Agent::Environmental.SecurityNotification: Environmental Agent::SecurityNotification +2024-09-07 16:20:03,874 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,874 [main] TRACE UmlAttribute - created (3622) OTHER_CIM CIM [0..1] attribute <> Environmental Agent::Environmental.SecurityNotification: Environmental Agent::SecurityNotification +2024-09-07 16:20:03,874 [main] ERROR UmlAttribute - unclassified CIM attribute: (3621) OTHER_CIM CIM [0..1] null <> Environmental Agent::Environmental.StateNotification: Environmental Agent::Notification +2024-09-07 16:20:03,874 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,874 [main] TRACE UmlAttribute - created (3621) OTHER_CIM CIM [0..1] attribute <> Environmental Agent::Environmental.StateNotification: Environmental Agent::Notification +2024-09-07 16:20:03,874 [main] ERROR UmlAttribute - unclassified CIM attribute: (4501) OTHER_CIM CIM [1..1] null <> Environmental Agent::Environmental.PSPRemote: Abstract Types::BooleanValueTs +2024-09-07 16:20:03,874 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,875 [main] TRACE UmlAttribute - created (4501) OTHER_CIM CIM [1..1] attribute <> Environmental Agent::Environmental.PSPRemote: Abstract Types::BooleanValueTs +2024-09-07 16:20:03,875 [main] ERROR UmlAttribute - unclassified CIM attribute: (2663) OTHER_CIM CIM [0..1] null <> Environmental Agent::PSUPEntry.CntRs: Abstract Types::CntRs +2024-09-07 16:20:03,875 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,875 [main] TRACE UmlAttribute - created (2663) OTHER_CIM CIM [0..1] attribute <> Environmental Agent::PSUPEntry.CntRs: Abstract Types::CntRs +2024-09-07 16:20:03,875 [main] ERROR UmlAttribute - unclassified CIM attribute: (2671) OTHER_CIM CIM const [0..1] null <> Environmental Agent::PSUPEntry.Descr: Abstract Types::CharString +2024-09-07 16:20:03,875 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,875 [main] TRACE UmlAttribute - created (2671) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::PSUPEntry.Descr: Abstract Types::CharString +2024-09-07 16:20:03,875 [main] ERROR UmlAttribute - unclassified CIM attribute: (3725) OTHER_CIM CIM const [0..1] null <> Environmental Agent::PSUPEntry.ID: Abstract Types::EntityIndex +2024-09-07 16:20:03,875 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,875 [main] TRACE UmlAttribute - created (3725) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::PSUPEntry.ID: Abstract Types::EntityIndex +2024-09-07 16:20:03,876 [main] ERROR UmlAttribute - unclassified CIM attribute: (2670) OTHER_CIM CIM const [0..1] null <> Environmental Agent::PSUPEntry.Name: Abstract Types::CharString +2024-09-07 16:20:03,876 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,876 [main] TRACE UmlAttribute - created (2670) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::PSUPEntry.Name: Abstract Types::CharString +2024-09-07 16:20:03,876 [main] ERROR UmlAttribute - unclassified CIM attribute: (2669) OTHER_CIM CIM const [0..1] null <> Environmental Agent::PSUPEntry.PSUPLos: Abstract Types::BooleanValueTs +2024-09-07 16:20:03,876 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,876 [main] TRACE UmlAttribute - created (2669) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::PSUPEntry.PSUPLos: Abstract Types::BooleanValueTs +2024-09-07 16:20:03,876 [main] ERROR UmlAttribute - unclassified CIM attribute: (2661) OTHER_CIM CIM const [0..1] null <> Environmental Agent::PSUPEntry.PwrLosCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,876 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,876 [main] TRACE UmlAttribute - created (2661) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::PSUPEntry.PwrLosCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,876 [main] ERROR UmlAttribute - unclassified CIM attribute: (2728) OTHER_CIM CIM const [0..1] null <> Environmental Agent::PSUPEntry.PwrOn: Abstract Types::BooleanValueTs +2024-09-07 16:20:03,877 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,877 [main] TRACE UmlAttribute - created (2728) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::PSUPEntry.PwrOn: Abstract Types::BooleanValueTs +2024-09-07 16:20:03,877 [main] ERROR UmlAttribute - unclassified CIM attribute: (3463) OTHER_CIM CIM const [0..1] null <> Environmental Agent::Notification.PSUPLos: Abstract Types::Integer +2024-09-07 16:20:03,877 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,877 [main] TRACE UmlAttribute - created (3463) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::Notification.PSUPLos: Abstract Types::Integer +2024-09-07 16:20:03,877 [main] ERROR UmlAttribute - unclassified CIM attribute: (3462) OTHER_CIM CIM const [0..1] null <> Environmental Agent::Notification.PSUPOn: Abstract Types::IntegerTs +2024-09-07 16:20:03,877 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,877 [main] TRACE UmlAttribute - created (3462) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::Notification.PSUPOn: Abstract Types::IntegerTs +2024-09-07 16:20:03,877 [main] ERROR UmlAttribute - unclassified CIM attribute: (4039) OTHER_CIM CIM const [0..1] null <> Environmental Agent::SecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:20:03,878 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,878 [main] TRACE UmlAttribute - created (4039) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::SecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:20:03,878 [main] ERROR UmlAttribute - unclassified CIM attribute: (3432) OTHER_CIM CIM const [0..1] null <> Environmental Agent::SecurityNotification.PSPBld: Abstract Types::Timestamp +2024-09-07 16:20:03,878 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,878 [main] TRACE UmlAttribute - created (3432) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::SecurityNotification.PSPBld: Abstract Types::Timestamp +2024-09-07 16:20:03,878 [main] ERROR UmlAttribute - unclassified CIM attribute: (3430) OTHER_CIM CIM const [0..1] null <> Environmental Agent::SecurityNotification.PSPIed: Abstract Types::Timestamp +2024-09-07 16:20:03,878 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,878 [main] TRACE UmlAttribute - created (3430) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::SecurityNotification.PSPIed: Abstract Types::Timestamp +2024-09-07 16:20:03,878 [main] ERROR UmlAttribute - unclassified CIM attribute: (3431) OTHER_CIM CIM const [0..1] null <> Environmental Agent::SecurityNotification.PSPPanel: Abstract Types::Timestamp +2024-09-07 16:20:03,878 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,879 [main] TRACE UmlAttribute - created (3431) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::SecurityNotification.PSPPanel: Abstract Types::Timestamp +2024-09-07 16:20:03,879 [main] ERROR UmlAttribute - unclassified CIM attribute: (3433) OTHER_CIM CIM const [0..1] null <> Environmental Agent::SecurityNotification.PSPPerimeter: Abstract Types::Timestamp +2024-09-07 16:20:03,879 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,879 [main] TRACE UmlAttribute - created (3433) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::SecurityNotification.PSPPerimeter: Abstract Types::Timestamp +2024-09-07 16:20:03,879 [main] ERROR UmlAttribute - unclassified CIM attribute: (159) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.AtkCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,879 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,880 [main] TRACE UmlAttribute - created (159) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.AtkCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,880 [main] ERROR UmlAttribute - unclassified CIM attribute: (593) OTHER_CIM CIM [0..1] null <> IED Agent::IED.CntRs: Abstract Types::CntRs +2024-09-07 16:20:03,880 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,880 [main] TRACE UmlAttribute - created (593) OTHER_CIM CIM [0..1] attribute <> IED Agent::IED.CntRs: Abstract Types::CntRs +2024-09-07 16:20:03,880 [main] ERROR UmlAttribute - unclassified CIM attribute: (3365) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.ConfigurationCRC: Abstract Types::IntegerTs +2024-09-07 16:20:03,880 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,880 [main] TRACE UmlAttribute - created (3365) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.ConfigurationCRC: Abstract Types::IntegerTs +2024-09-07 16:20:03,880 [main] ERROR UmlAttribute - unclassified CIM attribute: (3364) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.ConfigurationVersion: Abstract Types::CharStringTs +2024-09-07 16:20:03,880 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,880 [main] TRACE UmlAttribute - created (3364) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.ConfigurationVersion: Abstract Types::CharStringTs +2024-09-07 16:20:03,880 [main] ERROR UmlAttribute - unclassified CIM attribute: (3264) OTHER_CIM CIM [0..*] null <
> IED Agent::IED.CPU: IED Agent::CPUEntry +2024-09-07 16:20:03,881 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,881 [main] TRACE UmlAttribute - created (3264) OTHER_CIM CIM [0..*] attribute <
> IED Agent::IED.CPU: IED Agent::CPUEntry +2024-09-07 16:20:03,881 [main] ERROR UmlAttribute - unclassified CIM attribute: (164) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.CpuUsage: Abstract Types::FloatingTs +2024-09-07 16:20:03,881 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,881 [main] TRACE UmlAttribute - created (164) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.CpuUsage: Abstract Types::FloatingTs +2024-09-07 16:20:03,881 [main] ERROR UmlAttribute - unclassified CIM attribute: (165) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.DataInv: Abstract Types::CounterTs +2024-09-07 16:20:03,881 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,881 [main] TRACE UmlAttribute - created (165) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.DataInv: Abstract Types::CounterTs +2024-09-07 16:20:03,881 [main] ERROR UmlAttribute - unclassified CIM attribute: (1904) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.Descr: Abstract Types::CharString +2024-09-07 16:20:03,881 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,882 [main] TRACE UmlAttribute - created (1904) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.Descr: Abstract Types::CharString +2024-09-07 16:20:03,882 [main] ERROR UmlAttribute - unclassified CIM attribute: (174) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.ExpCerts: Abstract Types::IntegerTs +2024-09-07 16:20:03,882 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,882 [main] TRACE UmlAttribute - created (174) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.ExpCerts: Abstract Types::IntegerTs +2024-09-07 16:20:03,882 [main] ERROR UmlAttribute - unclassified CIM attribute: (3332) OTHER_CIM CIM [0..*] null <
> IED Agent::IED.EXT: IED Agent::EXTEntry +2024-09-07 16:20:03,882 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,882 [main] TRACE UmlAttribute - created (3332) OTHER_CIM CIM [0..*] attribute <
> IED Agent::IED.EXT: IED Agent::EXTEntry +2024-09-07 16:20:03,882 [main] ERROR UmlAttribute - unclassified CIM attribute: (3357) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.FirmwareVersion: Abstract Types::CharStringTs +2024-09-07 16:20:03,883 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,883 [main] TRACE UmlAttribute - created (3357) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.FirmwareVersion: Abstract Types::CharStringTs +2024-09-07 16:20:03,883 [main] ERROR UmlAttribute - unclassified CIM attribute: (1908) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.InternalTemp: Abstract Types::FloatingTs +2024-09-07 16:20:03,883 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,884 [main] TRACE UmlAttribute - created (1908) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.InternalTemp: Abstract Types::FloatingTs +2024-09-07 16:20:03,884 [main] ERROR UmlAttribute - unclassified CIM attribute: (3493) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.LastCPUFail: Abstract Types::IntegerTs +2024-09-07 16:20:03,884 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,884 [main] TRACE UmlAttribute - created (3493) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.LastCPUFail: Abstract Types::IntegerTs +2024-09-07 16:20:03,884 [main] ERROR UmlAttribute - unclassified CIM attribute: (3706) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:20:03,885 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,885 [main] TRACE UmlAttribute - created (3706) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:20:03,885 [main] ERROR UmlAttribute - unclassified CIM attribute: (3494) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.LastEXTFail: Abstract Types::IntegerTs +2024-09-07 16:20:03,885 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,885 [main] TRACE UmlAttribute - created (3494) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.LastEXTFail: Abstract Types::IntegerTs +2024-09-07 16:20:03,885 [main] ERROR UmlAttribute - unclassified CIM attribute: (3492) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.LastSTOREFail: Abstract Types::IntegerTs +2024-09-07 16:20:03,886 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,886 [main] TRACE UmlAttribute - created (3492) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.LastSTOREFail: Abstract Types::IntegerTs +2024-09-07 16:20:03,886 [main] ERROR UmlAttribute - unclassified CIM attribute: (3256) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.Location: Abstract Types::CharString +2024-09-07 16:20:03,886 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,886 [main] TRACE UmlAttribute - created (3256) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.Location: Abstract Types::CharString +2024-09-07 16:20:03,887 [main] ERROR UmlAttribute - unclassified CIM attribute: (3257) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.Maintainer: Abstract Types::CharString +2024-09-07 16:20:03,889 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,889 [main] TRACE UmlAttribute - created (3257) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.Maintainer: Abstract Types::CharString +2024-09-07 16:20:03,890 [main] ERROR UmlAttribute - unclassified CIM attribute: (3388) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.MemTotal: Abstract Types::Integer +2024-09-07 16:20:03,890 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,890 [main] TRACE UmlAttribute - created (3388) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.MemTotal: Abstract Types::Integer +2024-09-07 16:20:03,891 [main] ERROR UmlAttribute - unclassified CIM attribute: (1910) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.MemUsage: Abstract Types::FloatingTs +2024-09-07 16:20:03,891 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,892 [main] TRACE UmlAttribute - created (1910) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.MemUsage: Abstract Types::FloatingTs +2024-09-07 16:20:03,892 [main] ERROR UmlAttribute - unclassified CIM attribute: (3255) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.MIBVersion: Abstract Types::CharString +2024-09-07 16:20:03,893 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,893 [main] TRACE UmlAttribute - created (3255) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.MIBVersion: Abstract Types::CharString +2024-09-07 16:20:03,893 [main] ERROR UmlAttribute - unclassified CIM attribute: (167) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.MisEvCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,893 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,894 [main] TRACE UmlAttribute - created (167) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.MisEvCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,894 [main] ERROR UmlAttribute - unclassified CIM attribute: (1913) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.Name: Abstract Types::CharString +2024-09-07 16:20:03,895 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,895 [main] TRACE UmlAttribute - created (1913) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.Name: Abstract Types::CharString +2024-09-07 16:20:03,895 [main] ERROR UmlAttribute - unclassified CIM attribute: (3718) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.NearToExpCerts: Abstract Types::IntegerTs +2024-09-07 16:20:03,895 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,896 [main] TRACE UmlAttribute - created (3718) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.NearToExpCerts: Abstract Types::IntegerTs +2024-09-07 16:20:03,896 [main] ERROR UmlAttribute - unclassified CIM attribute: (177) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.NvStore: Abstract Types::FloatingTs +2024-09-07 16:20:03,896 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,897 [main] TRACE UmlAttribute - created (177) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.NvStore: Abstract Types::FloatingTs +2024-09-07 16:20:03,897 [main] ERROR UmlAttribute - unclassified CIM attribute: (178) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.NvStoreRem: Abstract Types::FloatingTs +2024-09-07 16:20:03,897 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,897 [main] TRACE UmlAttribute - created (178) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.NvStoreRem: Abstract Types::FloatingTs +2024-09-07 16:20:03,897 [main] ERROR UmlAttribute - unclassified CIM attribute: (157) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.PhyHealth: EnumeratedTypes::PhyHealthType +2024-09-07 16:20:03,898 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,898 [main] TRACE UmlAttribute - created (157) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.PhyHealth: EnumeratedTypes::PhyHealthType +2024-09-07 16:20:03,898 [main] ERROR UmlAttribute - unclassified CIM attribute: (158) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.PhyHealthChgCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,898 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,898 [main] TRACE UmlAttribute - created (158) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.PhyHealthChgCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,899 [main] ERROR UmlAttribute - unclassified CIM attribute: (3437) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.RBACDbUpdate: Abstract Types::CharStringTs +2024-09-07 16:20:03,899 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,899 [main] TRACE UmlAttribute - created (3437) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.RBACDbUpdate: Abstract Types::CharStringTs +2024-09-07 16:20:03,900 [main] ERROR UmlAttribute - unclassified CIM attribute: (176) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.RevCerts: Abstract Types::IntegerTs +2024-09-07 16:20:03,900 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,900 [main] TRACE UmlAttribute - created (176) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.RevCerts: Abstract Types::IntegerTs +2024-09-07 16:20:03,900 [main] ERROR UmlAttribute - unclassified CIM attribute: (3479) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.RevCheckFail: Abstract Types::CounterTs +2024-09-07 16:20:03,901 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,902 [main] TRACE UmlAttribute - created (3479) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.RevCheckFail: Abstract Types::CounterTs +2024-09-07 16:20:03,902 [main] ERROR UmlAttribute - unclassified CIM attribute: (3620) OTHER_CIM CIM [0..1] null <> IED Agent::IED.SecurityNotification: IED Agent::SecurityNotification +2024-09-07 16:20:03,902 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,902 [main] TRACE UmlAttribute - created (3620) OTHER_CIM CIM [0..1] attribute <> IED Agent::IED.SecurityNotification: IED Agent::SecurityNotification +2024-09-07 16:20:03,902 [main] ERROR UmlAttribute - unclassified CIM attribute: (3619) OTHER_CIM CIM [0..1] null <> IED Agent::IED.StateNotification: IED Agent::Notification +2024-09-07 16:20:03,903 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,903 [main] TRACE UmlAttribute - created (3619) OTHER_CIM CIM [0..1] attribute <> IED Agent::IED.StateNotification: IED Agent::Notification +2024-09-07 16:20:03,903 [main] ERROR UmlAttribute - unclassified CIM attribute: (3387) OTHER_CIM CIM [0..*] null <
> IED Agent::IED.STORE: IED Agent::STOREEntry +2024-09-07 16:20:03,904 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,905 [main] TRACE UmlAttribute - created (3387) OTHER_CIM CIM [0..*] attribute <
> IED Agent::IED.STORE: IED Agent::STOREEntry +2024-09-07 16:20:03,906 [main] ERROR UmlAttribute - unclassified CIM attribute: (4118) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.SvcViol: Abstract Types::CounterTs +2024-09-07 16:20:03,906 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,906 [main] TRACE UmlAttribute - created (4118) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.SvcViol: Abstract Types::CounterTs +2024-09-07 16:20:03,906 [main] ERROR UmlAttribute - unclassified CIM attribute: (3964) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.Watchdog: Abstract Types::CounterTs +2024-09-07 16:20:03,907 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,907 [main] TRACE UmlAttribute - created (3964) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.Watchdog: Abstract Types::CounterTs +2024-09-07 16:20:03,907 [main] ERROR UmlAttribute - unclassified CIM attribute: (2217) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.WrmStrCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,907 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,907 [main] TRACE UmlAttribute - created (2217) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.WrmStrCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,907 [main] ERROR UmlAttribute - unclassified CIM attribute: (3261) OTHER_CIM CIM [0..1] null <> IED Agent::CPUEntry.CntRs: Abstract Types::CntRs +2024-09-07 16:20:03,908 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,908 [main] TRACE UmlAttribute - created (3261) OTHER_CIM CIM [0..1] attribute <> IED Agent::CPUEntry.CntRs: Abstract Types::CntRs +2024-09-07 16:20:03,908 [main] ERROR UmlAttribute - unclassified CIM attribute: (3260) OTHER_CIM CIM const [0..1] null <> IED Agent::CPUEntry.Descr: Abstract Types::CharString +2024-09-07 16:20:03,909 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,909 [main] TRACE UmlAttribute - created (3260) OTHER_CIM CIM const [0..1] attribute <> IED Agent::CPUEntry.Descr: Abstract Types::CharString +2024-09-07 16:20:03,909 [main] ERROR UmlAttribute - unclassified CIM attribute: (3262) OTHER_CIM CIM const [0..1] null <> IED Agent::CPUEntry.Faulty: Abstract Types::BooleanValueTs +2024-09-07 16:20:03,909 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,909 [main] TRACE UmlAttribute - created (3262) OTHER_CIM CIM const [0..1] attribute <> IED Agent::CPUEntry.Faulty: Abstract Types::BooleanValueTs +2024-09-07 16:20:03,909 [main] ERROR UmlAttribute - unclassified CIM attribute: (3259) OTHER_CIM CIM const [0..1] null <> IED Agent::CPUEntry.ID: Abstract Types::EntityIndex +2024-09-07 16:20:03,909 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,909 [main] TRACE UmlAttribute - created (3259) OTHER_CIM CIM const [0..1] attribute <> IED Agent::CPUEntry.ID: Abstract Types::EntityIndex +2024-09-07 16:20:03,910 [main] ERROR UmlAttribute - unclassified CIM attribute: (3258) OTHER_CIM CIM const [0..1] null <> IED Agent::CPUEntry.Online: Abstract Types::BooleanValueTs +2024-09-07 16:20:03,910 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,910 [main] TRACE UmlAttribute - created (3258) OTHER_CIM CIM const [0..1] attribute <> IED Agent::CPUEntry.Online: Abstract Types::BooleanValueTs +2024-09-07 16:20:03,910 [main] ERROR UmlAttribute - unclassified CIM attribute: (3263) OTHER_CIM CIM const [0..1] null <> IED Agent::CPUEntry.Operable: Abstract Types::BooleanValueTs +2024-09-07 16:20:03,911 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,911 [main] TRACE UmlAttribute - created (3263) OTHER_CIM CIM const [0..1] attribute <> IED Agent::CPUEntry.Operable: Abstract Types::BooleanValueTs +2024-09-07 16:20:03,911 [main] ERROR UmlAttribute - unclassified CIM attribute: (3389) OTHER_CIM CIM const [0..1] null <> IED Agent::CPUEntry.Temperature: Abstract Types::FloatingTs +2024-09-07 16:20:03,911 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,912 [main] TRACE UmlAttribute - created (3389) OTHER_CIM CIM const [0..1] attribute <> IED Agent::CPUEntry.Temperature: Abstract Types::FloatingTs +2024-09-07 16:20:03,912 [main] ERROR UmlAttribute - unclassified CIM attribute: (3965) OTHER_CIM CIM const [0..1] null <> IED Agent::CPUEntry.Watchdog: Abstract Types::CounterTs +2024-09-07 16:20:03,912 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,912 [main] TRACE UmlAttribute - created (3965) OTHER_CIM CIM const [0..1] attribute <> IED Agent::CPUEntry.Watchdog: Abstract Types::CounterTs +2024-09-07 16:20:03,912 [main] ERROR UmlAttribute - unclassified CIM attribute: (3334) OTHER_CIM CIM const [0..1] null <> IED Agent::EXTEntry.ID: Abstract Types::EntityIndex +2024-09-07 16:20:03,913 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,913 [main] TRACE UmlAttribute - created (3334) OTHER_CIM CIM const [0..1] attribute <> IED Agent::EXTEntry.ID: Abstract Types::EntityIndex +2024-09-07 16:20:03,913 [main] ERROR UmlAttribute - unclassified CIM attribute: (3335) OTHER_CIM CIM const [0..1] null <> IED Agent::EXTEntry.Descr: Abstract Types::CharString +2024-09-07 16:20:03,914 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,914 [main] TRACE UmlAttribute - created (3335) OTHER_CIM CIM const [0..1] attribute <> IED Agent::EXTEntry.Descr: Abstract Types::CharString +2024-09-07 16:20:03,914 [main] ERROR UmlAttribute - unclassified CIM attribute: (3366) OTHER_CIM CIM const [0..1] null <> IED Agent::EXTEntry.ExtensionType: EnumeratedTypes::ExtType +2024-09-07 16:20:03,915 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,915 [main] TRACE UmlAttribute - created (3366) OTHER_CIM CIM const [0..1] attribute <> IED Agent::EXTEntry.ExtensionType: EnumeratedTypes::ExtType +2024-09-07 16:20:03,915 [main] ERROR UmlAttribute - unclassified CIM attribute: (3416) OTHER_CIM CIM const [0..1] null <> IED Agent::EXTEntry.CodeVersion: Abstract Types::CharStringTs +2024-09-07 16:20:03,915 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,915 [main] TRACE UmlAttribute - created (3416) OTHER_CIM CIM const [0..1] attribute <> IED Agent::EXTEntry.CodeVersion: Abstract Types::CharStringTs +2024-09-07 16:20:03,915 [main] ERROR UmlAttribute - unclassified CIM attribute: (3338) OTHER_CIM CIM const [0..1] null <> IED Agent::EXTEntry.Running: Abstract Types::BooleanValueTs +2024-09-07 16:20:03,916 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,917 [main] TRACE UmlAttribute - created (3338) OTHER_CIM CIM const [0..1] attribute <> IED Agent::EXTEntry.Running: Abstract Types::BooleanValueTs +2024-09-07 16:20:03,917 [main] ERROR UmlAttribute - unclassified CIM attribute: (3390) OTHER_CIM CIM const [0..1] null <> IED Agent::EXTEntry.Temperature: Abstract Types::FloatingTs +2024-09-07 16:20:03,917 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,918 [main] TRACE UmlAttribute - created (3390) OTHER_CIM CIM const [0..1] attribute <> IED Agent::EXTEntry.Temperature: Abstract Types::FloatingTs +2024-09-07 16:20:03,918 [main] ERROR UmlAttribute - unclassified CIM attribute: (3333) OTHER_CIM CIM const [1..1] null <> IED Agent::EXTEntry.Watchdog: Abstract Types::CounterTs +2024-09-07 16:20:03,918 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,918 [main] TRACE UmlAttribute - created (3333) OTHER_CIM CIM const [1..1] attribute <> IED Agent::EXTEntry.Watchdog: Abstract Types::CounterTs +2024-09-07 16:20:03,918 [main] ERROR UmlAttribute - unclassified CIM attribute: (3337) OTHER_CIM CIM const [0..1] null <> IED Agent::EXTEntry.Errors: Abstract Types::CounterTs +2024-09-07 16:20:03,918 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,918 [main] TRACE UmlAttribute - created (3337) OTHER_CIM CIM const [0..1] attribute <> IED Agent::EXTEntry.Errors: Abstract Types::CounterTs +2024-09-07 16:20:03,918 [main] ERROR UmlAttribute - unclassified CIM attribute: (3336) OTHER_CIM CIM [0..1] null <> IED Agent::EXTEntry.CntRs: Abstract Types::CntRs +2024-09-07 16:20:03,919 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,919 [main] TRACE UmlAttribute - created (3336) OTHER_CIM CIM [0..1] attribute <> IED Agent::EXTEntry.CntRs: Abstract Types::CntRs +2024-09-07 16:20:03,919 [main] ERROR UmlAttribute - unclassified CIM attribute: (3382) OTHER_CIM CIM const [0..1] null <> IED Agent::STOREEntry.ID: Abstract Types::EntityIndex +2024-09-07 16:20:03,919 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,919 [main] TRACE UmlAttribute - created (3382) OTHER_CIM CIM const [0..1] attribute <> IED Agent::STOREEntry.ID: Abstract Types::EntityIndex +2024-09-07 16:20:03,919 [main] ERROR UmlAttribute - unclassified CIM attribute: (3383) OTHER_CIM CIM const [0..1] null <> IED Agent::STOREEntry.Descr: Abstract Types::CharString +2024-09-07 16:20:03,920 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,920 [main] TRACE UmlAttribute - created (3383) OTHER_CIM CIM const [0..1] attribute <> IED Agent::STOREEntry.Descr: Abstract Types::CharString +2024-09-07 16:20:03,920 [main] ERROR UmlAttribute - unclassified CIM attribute: (3386) OTHER_CIM CIM const [0..1] null <> IED Agent::STOREEntry.NvStore: Abstract Types::Floating +2024-09-07 16:20:03,920 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,920 [main] TRACE UmlAttribute - created (3386) OTHER_CIM CIM const [0..1] attribute <> IED Agent::STOREEntry.NvStore: Abstract Types::Floating +2024-09-07 16:20:03,920 [main] ERROR UmlAttribute - unclassified CIM attribute: (3381) OTHER_CIM CIM const [0..1] null <> IED Agent::STOREEntry.NvStoreRem: Abstract Types::FloatingTs +2024-09-07 16:20:03,922 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,922 [main] TRACE UmlAttribute - created (3381) OTHER_CIM CIM const [0..1] attribute <> IED Agent::STOREEntry.NvStoreRem: Abstract Types::FloatingTs +2024-09-07 16:20:03,923 [main] ERROR UmlAttribute - unclassified CIM attribute: (3385) OTHER_CIM CIM const [0..1] null <> IED Agent::STOREEntry.Faulty: Abstract Types::BooleanValueTs +2024-09-07 16:20:03,923 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,923 [main] TRACE UmlAttribute - created (3385) OTHER_CIM CIM const [0..1] attribute <> IED Agent::STOREEntry.Faulty: Abstract Types::BooleanValueTs +2024-09-07 16:20:03,923 [main] ERROR UmlAttribute - unclassified CIM attribute: (3732) OTHER_CIM CIM [0..1] null <> IED Agent::STOREEntry.CntRs: Abstract Types::CntRs +2024-09-07 16:20:03,923 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,923 [main] TRACE UmlAttribute - created (3732) OTHER_CIM CIM [0..1] attribute <> IED Agent::STOREEntry.CntRs: Abstract Types::CntRs +2024-09-07 16:20:03,923 [main] ERROR UmlAttribute - unclassified CIM attribute: (3486) OTHER_CIM CIM const [0..1] null <> IED Agent::Notification.PhyHealthChgCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,923 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,927 [main] TRACE UmlAttribute - created (3486) OTHER_CIM CIM const [0..1] attribute <> IED Agent::Notification.PhyHealthChgCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,928 [main] ERROR UmlAttribute - unclassified CIM attribute: (3497) OTHER_CIM CIM const [0..1] null <> IED Agent::Notification.InternalTemp: Abstract Types::FloatingTs +2024-09-07 16:20:03,928 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,929 [main] TRACE UmlAttribute - created (3497) OTHER_CIM CIM const [0..1] attribute <> IED Agent::Notification.InternalTemp: Abstract Types::FloatingTs +2024-09-07 16:20:03,929 [main] ERROR UmlAttribute - unclassified CIM attribute: (3495) OTHER_CIM CIM const [0..1] null <> IED Agent::Notification.NvStore: Abstract Types::FloatingTs +2024-09-07 16:20:03,929 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,929 [main] TRACE UmlAttribute - created (3495) OTHER_CIM CIM const [0..1] attribute <> IED Agent::Notification.NvStore: Abstract Types::FloatingTs +2024-09-07 16:20:03,930 [main] ERROR UmlAttribute - unclassified CIM attribute: (3496) OTHER_CIM CIM const [0..1] null <> IED Agent::Notification.NvStoreRem: Abstract Types::FloatingTs +2024-09-07 16:20:03,930 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,931 [main] TRACE UmlAttribute - created (3496) OTHER_CIM CIM const [0..1] attribute <> IED Agent::Notification.NvStoreRem: Abstract Types::FloatingTs +2024-09-07 16:20:03,932 [main] ERROR UmlAttribute - unclassified CIM attribute: (3480) OTHER_CIM CIM const [0..1] null <> IED Agent::Notification.PhyHealth: EnumeratedTypes::PhyHealthType +2024-09-07 16:20:03,932 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,933 [main] TRACE UmlAttribute - created (3480) OTHER_CIM CIM const [0..1] attribute <> IED Agent::Notification.PhyHealth: EnumeratedTypes::PhyHealthType +2024-09-07 16:20:03,933 [main] ERROR UmlAttribute - unclassified CIM attribute: (3489) OTHER_CIM CIM const [0..1] null <> IED Agent::Notification.WrmStrCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,933 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,933 [main] TRACE UmlAttribute - created (3489) OTHER_CIM CIM const [0..1] attribute <> IED Agent::Notification.WrmStrCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,933 [main] ERROR UmlAttribute - unclassified CIM attribute: (3502) OTHER_CIM CIM const [0..1] null <> IED Agent::SecurityNotification.AtkCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,934 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,934 [main] TRACE UmlAttribute - created (3502) OTHER_CIM CIM const [0..1] attribute <> IED Agent::SecurityNotification.AtkCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,934 [main] ERROR UmlAttribute - unclassified CIM attribute: (3499) OTHER_CIM CIM const [0..1] null <> IED Agent::SecurityNotification.ExpCerts: Abstract Types::IntegerTs +2024-09-07 16:20:03,934 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,934 [main] TRACE UmlAttribute - created (3499) OTHER_CIM CIM const [0..1] attribute <> IED Agent::SecurityNotification.ExpCerts: Abstract Types::IntegerTs +2024-09-07 16:20:03,934 [main] ERROR UmlAttribute - unclassified CIM attribute: (3730) OTHER_CIM CIM const [0..1] null <> IED Agent::SecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:20:03,935 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,935 [main] TRACE UmlAttribute - created (3730) OTHER_CIM CIM const [0..1] attribute <> IED Agent::SecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:20:03,935 [main] ERROR UmlAttribute - unclassified CIM attribute: (3731) OTHER_CIM CIM const [0..1] null <> IED Agent::SecurityNotification.NearToExpCerts: Abstract Types::IntegerTs +2024-09-07 16:20:03,935 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,935 [main] TRACE UmlAttribute - created (3731) OTHER_CIM CIM const [0..1] attribute <> IED Agent::SecurityNotification.NearToExpCerts: Abstract Types::IntegerTs +2024-09-07 16:20:03,939 [main] ERROR UmlAttribute - unclassified CIM attribute: (3498) OTHER_CIM CIM const [0..1] null <> IED Agent::SecurityNotification.RevCerts: Abstract Types::IntegerTs +2024-09-07 16:20:03,939 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,940 [main] TRACE UmlAttribute - created (3498) OTHER_CIM CIM const [0..1] attribute <> IED Agent::SecurityNotification.RevCerts: Abstract Types::IntegerTs +2024-09-07 16:20:03,940 [main] ERROR UmlAttribute - unclassified CIM attribute: (3500) OTHER_CIM CIM const [0..1] null <> IED Agent::SecurityNotification.RevCheckFail: Abstract Types::CounterTs +2024-09-07 16:20:03,940 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,940 [main] TRACE UmlAttribute - created (3500) OTHER_CIM CIM const [0..1] attribute <> IED Agent::SecurityNotification.RevCheckFail: Abstract Types::CounterTs +2024-09-07 16:20:03,940 [main] ERROR UmlAttribute - unclassified CIM attribute: (4079) OTHER_CIM CIM const [1..1] null <> Common objects::CommonProtocolInfo.IEC62351part3: Abstract Types::BooleanValue +2024-09-07 16:20:03,940 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,940 [main] TRACE UmlAttribute - created (4079) OTHER_CIM CIM const [1..1] attribute <> Common objects::CommonProtocolInfo.IEC62351part3: Abstract Types::BooleanValue +2024-09-07 16:20:03,941 [main] ERROR UmlAttribute - unclassified CIM attribute: (4087) OTHER_CIM CIM const [0..1] null <> Common objects::CommonProtocolInfo.Part3ConnectionId: Abstract Types::Integer +2024-09-07 16:20:03,941 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,941 [main] TRACE UmlAttribute - created (4087) OTHER_CIM CIM const [0..1] attribute <> Common objects::CommonProtocolInfo.Part3ConnectionId: Abstract Types::Integer +2024-09-07 16:20:03,941 [main] ERROR UmlAttribute - unclassified CIM attribute: (4099) OTHER_CIM CIM const [0..1] null <> Common objects::CommonProtocolInfo.TCPHndShTime: Abstract Types::Floating +2024-09-07 16:20:03,941 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,942 [main] TRACE UmlAttribute - created (4099) OTHER_CIM CIM const [0..1] attribute <> Common objects::CommonProtocolInfo.TCPHndShTime: Abstract Types::Floating +2024-09-07 16:20:03,942 [main] ERROR UmlAttribute - unclassified CIM attribute: (4107) OTHER_CIM CIM const [0..1] null <> Common objects::CommonProtocolInfo.TLSHndTime: Abstract Types::Floating +2024-09-07 16:20:03,942 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,942 [main] TRACE UmlAttribute - created (4107) OTHER_CIM CIM const [0..1] attribute <> Common objects::CommonProtocolInfo.TLSHndTime: Abstract Types::Floating +2024-09-07 16:20:03,942 [main] ERROR UmlAttribute - unclassified CIM attribute: (4109) OTHER_CIM CIM const [0..1] null <> Common objects::CommonProtocolInfo.TLSRenegotiationTime: Abstract Types::Floating +2024-09-07 16:20:03,942 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,942 [main] TRACE UmlAttribute - created (4109) OTHER_CIM CIM const [0..1] attribute <> Common objects::CommonProtocolInfo.TLSRenegotiationTime: Abstract Types::Floating +2024-09-07 16:20:03,942 [main] ERROR UmlAttribute - unclassified CIM attribute: (4108) OTHER_CIM CIM const [0..1] null <> Common objects::CommonProtocolInfo.TLSResumptionTime: Abstract Types::Floating +2024-09-07 16:20:03,943 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,943 [main] TRACE UmlAttribute - created (4108) OTHER_CIM CIM const [0..1] attribute <> Common objects::CommonProtocolInfo.TLSResumptionTime: Abstract Types::Floating +2024-09-07 16:20:03,943 [main] ERROR UmlAttribute - unclassified CIM attribute: (4106) OTHER_CIM CIM const [0..1] null <> Common objects::CommonProtocolInfo.TotalHndTime: Abstract Types::Floating +2024-09-07 16:20:03,943 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,945 [main] TRACE UmlAttribute - created (4106) OTHER_CIM CIM const [0..1] attribute <> Common objects::CommonProtocolInfo.TotalHndTime: Abstract Types::Floating +2024-09-07 16:20:03,946 [main] ERROR UmlAttribute - unclassified CIM attribute: (4105) OTHER_CIM CIM const [0..1] null <> Common objects::CommonProtocolInfo.TransportHndTime: Abstract Types::Floating +2024-09-07 16:20:03,947 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,948 [main] TRACE UmlAttribute - created (4105) OTHER_CIM CIM const [0..1] attribute <> Common objects::CommonProtocolInfo.TransportHndTime: Abstract Types::Floating +2024-09-07 16:20:03,948 [main] ERROR UmlAttribute - unclassified CIM attribute: (4460) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsEarlyDataCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,949 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,949 [main] TRACE UmlAttribute - created (4460) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsEarlyDataCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,949 [main] ERROR UmlAttribute - unclassified CIM attribute: (4454) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDisallowedCipherCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,950 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,950 [main] TRACE UmlAttribute - created (4454) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDisallowedCipherCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,950 [main] ERROR UmlAttribute - unclassified CIM attribute: (4461) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsCertSizeMismatchCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,950 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,951 [main] TRACE UmlAttribute - created (4461) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsCertSizeMismatchCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,951 [main] ERROR UmlAttribute - unclassified CIM attribute: (4463) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoCaMatchCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,951 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,952 [main] TRACE UmlAttribute - created (4463) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoCaMatchCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,952 [main] ERROR UmlAttribute - unclassified CIM attribute: (4464) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoSigAlgoExtCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,952 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,953 [main] TRACE UmlAttribute - created (4464) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoSigAlgoExtCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,953 [main] ERROR UmlAttribute - unclassified CIM attribute: (4465) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDepDigAlgCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,955 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,956 [main] TRACE UmlAttribute - created (4465) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDepDigAlgCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,956 [main] ERROR UmlAttribute - unclassified CIM attribute: (4466) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoTrustedCertMatchCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,956 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,956 [main] TRACE UmlAttribute - created (4466) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoTrustedCertMatchCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,957 [main] ERROR UmlAttribute - unclassified CIM attribute: (4467) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsCertRevokedCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,957 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,957 [main] TRACE UmlAttribute - created (4467) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsCertRevokedCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,957 [main] ERROR UmlAttribute - unclassified CIM attribute: (4468) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoCrlCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,958 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,958 [main] TRACE UmlAttribute - created (4468) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoCrlCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,959 [main] ERROR UmlAttribute - unclassified CIM attribute: (4469) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsCrlExpCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,959 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,959 [main] TRACE UmlAttribute - created (4469) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsCrlExpCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,959 [main] ERROR UmlAttribute - unclassified CIM attribute: (4470) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoEpskModeCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,960 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,961 [main] TRACE UmlAttribute - created (4470) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoEpskModeCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,961 [main] ERROR UmlAttribute - unclassified CIM attribute: (4471) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoEncryptThenMacCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,961 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,961 [main] TRACE UmlAttribute - created (4471) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoEncryptThenMacCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,961 [main] ERROR UmlAttribute - unclassified CIM attribute: (4472) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsOcspResExpCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,962 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,962 [main] TRACE UmlAttribute - created (4472) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsOcspResExpCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,963 [main] ERROR UmlAttribute - unclassified CIM attribute: (4473) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsCertExpCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,963 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,964 [main] TRACE UmlAttribute - created (4473) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsCertExpCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,965 [main] ERROR UmlAttribute - unclassified CIM attribute: (4474) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoSkUpdateCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,965 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,965 [main] TRACE UmlAttribute - created (4474) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoSkUpdateCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,965 [main] ERROR UmlAttribute - unclassified CIM attribute: (4475) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsSigAlgMismatchCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,965 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,966 [main] TRACE UmlAttribute - created (4475) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsSigAlgMismatchCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,966 [main] ERROR UmlAttribute - unclassified CIM attribute: (4476) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsSigVFailedCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,966 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,966 [main] TRACE UmlAttribute - created (4476) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsSigVFailedCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,966 [main] ERROR UmlAttribute - unclassified CIM attribute: (4477) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsShortRsaKeyCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,966 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,967 [main] TRACE UmlAttribute - created (4477) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsShortRsaKeyCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,967 [main] ERROR UmlAttribute - unclassified CIM attribute: (4478) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsMinKeyCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,967 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,967 [main] TRACE UmlAttribute - created (4478) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsMinKeyCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,968 [main] ERROR UmlAttribute - unclassified CIM attribute: (4479) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsShortKeyCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,968 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,968 [main] TRACE UmlAttribute - created (4479) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsShortKeyCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,968 [main] ERROR UmlAttribute - unclassified CIM attribute: (4480) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDepHashCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,968 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,969 [main] TRACE UmlAttribute - created (4480) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDepHashCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,969 [main] ERROR UmlAttribute - unclassified CIM attribute: (4462) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoTrCaMatchSCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,969 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,969 [main] TRACE UmlAttribute - created (4462) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoTrCaMatchSCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,969 [main] ERROR UmlAttribute - unclassified CIM attribute: (4455) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsSessionidExpiredFullHsCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,970 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,970 [main] TRACE UmlAttribute - created (4455) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsSessionidExpiredFullHsCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,970 [main] ERROR UmlAttribute - unclassified CIM attribute: (4458) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoRenegTicket: Abstract Types::CounterTs +2024-09-07 16:20:03,975 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,979 [main] TRACE UmlAttribute - created (4458) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoRenegTicket: Abstract Types::CounterTs +2024-09-07 16:20:03,979 [main] ERROR UmlAttribute - unclassified CIM attribute: (4457) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoRenegSigCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,981 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,981 [main] TRACE UmlAttribute - created (4457) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoRenegSigCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,982 [main] ERROR UmlAttribute - unclassified CIM attribute: (4453) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsSessionClosedRevCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,982 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,982 [main] TRACE UmlAttribute - created (4453) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsSessionClosedRevCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,982 [main] ERROR UmlAttribute - unclassified CIM attribute: (4459) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoTrCaMatchScCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,989 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,989 [main] TRACE UmlAttribute - created (4459) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoTrCaMatchScCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,989 [main] ERROR UmlAttribute - unclassified CIM attribute: (4450) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsHsSuccessCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,990 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,990 [main] TRACE UmlAttribute - created (4450) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsHsSuccessCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,990 [main] ERROR UmlAttribute - unclassified CIM attribute: (4456) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoReneg: Abstract Types::CounterTs +2024-09-07 16:20:03,990 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,990 [main] TRACE UmlAttribute - created (4456) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoReneg: Abstract Types::CounterTs +2024-09-07 16:20:03,991 [main] ERROR UmlAttribute - unclassified CIM attribute: (4452) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoLocalCertCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,991 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,991 [main] TRACE UmlAttribute - created (4452) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoLocalCertCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,991 [main] ERROR UmlAttribute - unclassified CIM attribute: (4447) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsWeakVersionCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,991 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,992 [main] TRACE UmlAttribute - created (4447) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsWeakVersionCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,992 [main] ERROR UmlAttribute - unclassified CIM attribute: (4449) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsVersionChangeCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,992 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,992 [main] TRACE UmlAttribute - created (4449) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsVersionChangeCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,992 [main] ERROR UmlAttribute - unclassified CIM attribute: (4446) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDeprecatedVersionCnT: Abstract Types::CounterTs +2024-09-07 16:20:03,992 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,992 [main] TRACE UmlAttribute - created (4446) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDeprecatedVersionCnT: Abstract Types::CounterTs +2024-09-07 16:20:03,992 [main] ERROR UmlAttribute - unclassified CIM attribute: (4451) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoPeerCertCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,993 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,993 [main] TRACE UmlAttribute - created (4451) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoPeerCertCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,993 [main] ERROR UmlAttribute - unclassified CIM attribute: (4448) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDisallowedVersionCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,993 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,993 [main] TRACE UmlAttribute - created (4448) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDisallowedVersionCnt: Abstract Types::CounterTs +2024-09-07 16:20:03,993 [main] ERROR UmlAttribute - unclassified CIM attribute: (4488) OTHER_CIM CIM const [0..1] null <> IEC62351-3 ed.2 Agent::TLSSession.SessionId: Abstract Types::EntityIndex +2024-09-07 16:20:03,993 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,994 [main] TRACE UmlAttribute - created (4488) OTHER_CIM CIM const [0..1] attribute <> IEC62351-3 ed.2 Agent::TLSSession.SessionId: Abstract Types::EntityIndex +2024-09-07 16:20:03,994 [main] ERROR UmlAttribute - unclassified CIM attribute: (4489) OTHER_CIM CIM [0..1] null <> IEC62351-3 ed.2 Agent::TLSSession.CntRs: Abstract Types::CntRs +2024-09-07 16:20:03,994 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,994 [main] TRACE UmlAttribute - created (4489) OTHER_CIM CIM [0..1] attribute <> IEC62351-3 ed.2 Agent::TLSSession.CntRs: Abstract Types::CntRs +2024-09-07 16:20:03,994 [main] ERROR UmlAttribute - unclassified CIM attribute: (4490) OTHER_CIM CIM const [0..1] null <> IEC62351-3 ed.2 Agent::TLSSession.LocAddress: Abstract Types::InetAddress +2024-09-07 16:20:03,994 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,994 [main] TRACE UmlAttribute - created (4490) OTHER_CIM CIM const [0..1] attribute <> IEC62351-3 ed.2 Agent::TLSSession.LocAddress: Abstract Types::InetAddress +2024-09-07 16:20:03,994 [main] ERROR UmlAttribute - unclassified CIM attribute: (4491) OTHER_CIM CIM const [0..1] null <> IEC62351-3 ed.2 Agent::TLSSession.LocAddressType: Abstract Types::InetAddressType +2024-09-07 16:20:03,994 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,994 [main] TRACE UmlAttribute - created (4491) OTHER_CIM CIM const [0..1] attribute <> IEC62351-3 ed.2 Agent::TLSSession.LocAddressType: Abstract Types::InetAddressType +2024-09-07 16:20:03,994 [main] ERROR UmlAttribute - unclassified CIM attribute: (4492) OTHER_CIM CIM const [0..1] null <> IEC62351-3 ed.2 Agent::TLSSession.RemAddress: Abstract Types::InetAddress +2024-09-07 16:20:03,994 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,995 [main] TRACE UmlAttribute - created (4492) OTHER_CIM CIM const [0..1] attribute <> IEC62351-3 ed.2 Agent::TLSSession.RemAddress: Abstract Types::InetAddress +2024-09-07 16:20:03,995 [main] ERROR UmlAttribute - unclassified CIM attribute: (4493) OTHER_CIM CIM const [0..1] null <> IEC62351-3 ed.2 Agent::TLSSession.RemAddressType: Abstract Types::InetAddressType +2024-09-07 16:20:03,995 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,995 [main] TRACE UmlAttribute - created (4493) OTHER_CIM CIM const [0..1] attribute <> IEC62351-3 ed.2 Agent::TLSSession.RemAddressType: Abstract Types::InetAddressType +2024-09-07 16:20:03,995 [main] ERROR UmlAttribute - unclassified CIM attribute: (4481) OTHER_CIM CIM [0..1] null <> IEC62351-3 ed.2 Agent::Summary.CntRs: Abstract Types::CntRs +2024-09-07 16:20:03,995 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,995 [main] TRACE UmlAttribute - created (4481) OTHER_CIM CIM [0..1] attribute <> IEC62351-3 ed.2 Agent::Summary.CntRs: Abstract Types::CntRs +2024-09-07 16:20:03,996 [main] ERROR UmlAttribute - unclassified CIM attribute: (4482) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::Summary.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:20:03,997 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,997 [main] TRACE UmlAttribute - created (4482) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::Summary.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:20:03,997 [main] ERROR UmlAttribute - unclassified CIM attribute: (4483) OTHER_CIM CIM [0..*] null <
> IEC62351-3 ed.2 Agent::Summary.Server: IEC62351-3 ed.2 Agent::ServerTLS +2024-09-07 16:20:03,997 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,997 [main] TRACE UmlAttribute - created (4483) OTHER_CIM CIM [0..*] attribute <
> IEC62351-3 ed.2 Agent::Summary.Server: IEC62351-3 ed.2 Agent::ServerTLS +2024-09-07 16:20:03,997 [main] ERROR UmlAttribute - unclassified CIM attribute: (4484) OTHER_CIM CIM [0..*] null <
> IEC62351-3 ed.2 Agent::Summary.Client: IEC62351-3 ed.2 Agent::ClientTLS +2024-09-07 16:20:03,998 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:03,998 [main] TRACE UmlAttribute - created (4484) OTHER_CIM CIM [0..*] attribute <
> IEC62351-3 ed.2 Agent::Summary.Client: IEC62351-3 ed.2 Agent::ClientTLS +2024-09-07 16:20:03,999 [main] ERROR UmlAttribute - unclassified CIM attribute: (4485) OTHER_CIM CIM [0..1] null <> IEC62351-3 ed.2 Agent::Summary.SecurityNotification: IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification +2024-09-07 16:20:04,000 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,000 [main] TRACE UmlAttribute - created (4485) OTHER_CIM CIM [0..1] attribute <> IEC62351-3 ed.2 Agent::Summary.SecurityNotification: IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification +2024-09-07 16:20:04,000 [main] ERROR UmlAttribute - unclassified CIM attribute: (4486) OTHER_CIM CIM [0..1] null <> IEC62351-3 ed.2 Agent::Summary.StateNotification: NullCIM::NullCIM +2024-09-07 16:20:04,000 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,000 [main] TRACE UmlAttribute - created (4486) OTHER_CIM CIM [0..1] attribute <> IEC62351-3 ed.2 Agent::Summary.StateNotification: NullCIM::NullCIM +2024-09-07 16:20:04,001 [main] ERROR UmlAttribute - unclassified CIM attribute: (4487) OTHER_CIM CIM const [0..1] null <> IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:20:04,001 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,001 [main] TRACE UmlAttribute - created (4487) OTHER_CIM CIM const [0..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:20:04,001 [main] ERROR UmlAttribute - unclassified CIM attribute: (3991) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.AuthFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,002 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,002 [main] TRACE UmlAttribute - created (3991) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.AuthFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,002 [main] ERROR UmlAttribute - unclassified CIM attribute: (3992) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.CtrlPrivFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,002 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,002 [main] TRACE UmlAttribute - created (3992) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.CtrlPrivFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,002 [main] ERROR UmlAttribute - unclassified CIM attribute: (3993) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,003 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,003 [main] TRACE UmlAttribute - created (3993) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,003 [main] ERROR UmlAttribute - unclassified CIM attribute: (3405) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.ExT0Cnt: Abstract Types::CounterTs +2024-09-07 16:20:04,003 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,003 [main] TRACE UmlAttribute - created (3405) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.ExT0Cnt: Abstract Types::CounterTs +2024-09-07 16:20:04,003 [main] ERROR UmlAttribute - unclassified CIM attribute: (3406) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.ExT1Cnt: Abstract Types::CounterTs +2024-09-07 16:20:04,003 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,003 [main] TRACE UmlAttribute - created (3406) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.ExT1Cnt: Abstract Types::CounterTs +2024-09-07 16:20:04,003 [main] ERROR UmlAttribute - unclassified CIM attribute: (3407) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.ExT2Cnt: Abstract Types::CounterTs +2024-09-07 16:20:04,003 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,004 [main] TRACE UmlAttribute - created (3407) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.ExT2Cnt: Abstract Types::CounterTs +2024-09-07 16:20:04,004 [main] ERROR UmlAttribute - unclassified CIM attribute: (3408) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.ExT3Cnt: Abstract Types::CounterTs +2024-09-07 16:20:04,005 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,005 [main] TRACE UmlAttribute - created (3408) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.ExT3Cnt: Abstract Types::CounterTs +2024-09-07 16:20:04,005 [main] ERROR UmlAttribute - unclassified CIM attribute: (3124) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.InDisc: Abstract Types::CounterTs +2024-09-07 16:20:04,005 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,005 [main] TRACE UmlAttribute - created (3124) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.InDisc: Abstract Types::CounterTs +2024-09-07 16:20:04,005 [main] ERROR UmlAttribute - unclassified CIM attribute: (3994) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.InErrCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,005 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,005 [main] TRACE UmlAttribute - created (3994) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.InErrCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,006 [main] ERROR UmlAttribute - unclassified CIM attribute: (3995) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.InOvCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,006 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,006 [main] TRACE UmlAttribute - created (3995) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.InOvCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,006 [main] ERROR UmlAttribute - unclassified CIM attribute: (3996) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.InterPDUTime: Abstract Types::Floating +2024-09-07 16:20:04,006 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,006 [main] TRACE UmlAttribute - created (3996) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.InterPDUTime: Abstract Types::Floating +2024-09-07 16:20:04,006 [main] ERROR UmlAttribute - unclassified CIM attribute: (3997) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.MisPDUCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,006 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,006 [main] TRACE UmlAttribute - created (3997) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.MisPDUCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,007 [main] ERROR UmlAttribute - unclassified CIM attribute: (3141) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.OutErr: Abstract Types::CounterTs +2024-09-07 16:20:04,007 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,007 [main] TRACE UmlAttribute - created (3141) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.OutErr: Abstract Types::CounterTs +2024-09-07 16:20:04,007 [main] ERROR UmlAttribute - unclassified CIM attribute: (3990) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.OutUv: Abstract Types::CounterTs +2024-09-07 16:20:04,007 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,007 [main] TRACE UmlAttribute - created (3990) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.OutUv: Abstract Types::CounterTs +2024-09-07 16:20:04,007 [main] ERROR UmlAttribute - unclassified CIM attribute: (3998) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PDURTT: Abstract Types::Floating +2024-09-07 16:20:04,007 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,008 [main] TRACE UmlAttribute - created (3998) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PDURTT: Abstract Types::Floating +2024-09-07 16:20:04,008 [main] ERROR UmlAttribute - unclassified CIM attribute: (3999) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PDUSizeFail: Abstract Types::CounterTs +2024-09-07 16:20:04,008 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,008 [main] TRACE UmlAttribute - created (3999) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PDUSizeFail: Abstract Types::CounterTs +2024-09-07 16:20:04,008 [main] ERROR UmlAttribute - unclassified CIM attribute: (4000) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PduTampCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,008 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,008 [main] TRACE UmlAttribute - created (4000) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PduTampCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,008 [main] ERROR UmlAttribute - unclassified CIM attribute: (4001) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PrimaryInterface: Abstract Types::BooleanValueTs +2024-09-07 16:20:04,008 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,008 [main] TRACE UmlAttribute - created (4001) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PrimaryInterface: Abstract Types::BooleanValueTs +2024-09-07 16:20:04,009 [main] ERROR UmlAttribute - unclassified CIM attribute: (4002) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PrivFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,009 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,009 [main] TRACE UmlAttribute - created (4002) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PrivFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,009 [main] ERROR UmlAttribute - unclassified CIM attribute: (3403) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RtxCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,009 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,009 [main] TRACE UmlAttribute - created (3403) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RtxCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,009 [main] ERROR UmlAttribute - unclassified CIM attribute: (3123) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RxCritical: Abstract Types::CounterTs +2024-09-07 16:20:04,010 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,010 [main] TRACE UmlAttribute - created (3123) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RxCritical: Abstract Types::CounterTs +2024-09-07 16:20:04,010 [main] ERROR UmlAttribute - unclassified CIM attribute: (4003) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RxPdu: Abstract Types::CounterTs +2024-09-07 16:20:04,010 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,010 [main] TRACE UmlAttribute - created (4003) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RxPdu: Abstract Types::CounterTs +2024-09-07 16:20:04,010 [main] ERROR UmlAttribute - unclassified CIM attribute: (3135) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RxSolicitedReq: Abstract Types::CounterTs +2024-09-07 16:20:04,010 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,010 [main] TRACE UmlAttribute - created (3135) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RxSolicitedReq: Abstract Types::CounterTs +2024-09-07 16:20:04,010 [main] ERROR UmlAttribute - unclassified CIM attribute: (3145) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RxUnsolicitedReq: Abstract Types::CounterTs +2024-09-07 16:20:04,010 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,010 [main] TRACE UmlAttribute - created (3145) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RxUnsolicitedReq: Abstract Types::CounterTs +2024-09-07 16:20:04,010 [main] ERROR UmlAttribute - unclassified CIM attribute: (4004) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.SessKeyFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,010 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,011 [main] TRACE UmlAttribute - created (4004) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.SessKeyFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,011 [main] ERROR UmlAttribute - unclassified CIM attribute: (3122) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.TxCritical: Abstract Types::CounterTs +2024-09-07 16:20:04,011 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,011 [main] TRACE UmlAttribute - created (3122) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.TxCritical: Abstract Types::CounterTs +2024-09-07 16:20:04,011 [main] ERROR UmlAttribute - unclassified CIM attribute: (4005) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.TxPdu: Abstract Types::CounterTs +2024-09-07 16:20:04,011 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,011 [main] TRACE UmlAttribute - created (4005) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.TxPdu: Abstract Types::CounterTs +2024-09-07 16:20:04,011 [main] ERROR UmlAttribute - unclassified CIM attribute: (3120) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.TxSolicitedReq: Abstract Types::CounterTs +2024-09-07 16:20:04,011 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,011 [main] TRACE UmlAttribute - created (3120) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.TxSolicitedReq: Abstract Types::CounterTs +2024-09-07 16:20:04,013 [main] ERROR UmlAttribute - unclassified CIM attribute: (3121) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.TxUnsolicitedReq: Abstract Types::CounterTs +2024-09-07 16:20:04,013 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,014 [main] TRACE UmlAttribute - created (3121) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.TxUnsolicitedReq: Abstract Types::CounterTs +2024-09-07 16:20:04,014 [main] ERROR UmlAttribute - unclassified CIM attribute: (4006) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.UpKeyFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,014 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,014 [main] TRACE UmlAttribute - created (4006) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.UpKeyFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,014 [main] ERROR UmlAttribute - unclassified CIM attribute: (3726) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.AssociationId: Abstract Types::EntityIndex +2024-09-07 16:20:04,015 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,015 [main] TRACE UmlAttribute - created (3726) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.AssociationId: Abstract Types::EntityIndex +2024-09-07 16:20:04,015 [main] ERROR UmlAttribute - unclassified CIM attribute: (3241) OTHER_CIM CIM [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.CntRs: Abstract Types::CntRs +2024-09-07 16:20:04,015 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,015 [main] TRACE UmlAttribute - created (3241) OTHER_CIM CIM [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.CntRs: Abstract Types::CntRs +2024-09-07 16:20:04,015 [main] ERROR UmlAttribute - unclassified CIM attribute: (2417) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.LocAddress: Abstract Types::InetAddress +2024-09-07 16:20:04,016 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,016 [main] TRACE UmlAttribute - created (2417) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.LocAddress: Abstract Types::InetAddress +2024-09-07 16:20:04,016 [main] ERROR UmlAttribute - unclassified CIM attribute: (3715) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.LocAddressType: Abstract Types::InetAddressType +2024-09-07 16:20:04,016 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,016 [main] TRACE UmlAttribute - created (3715) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.LocAddressType: Abstract Types::InetAddressType +2024-09-07 16:20:04,016 [main] ERROR UmlAttribute - unclassified CIM attribute: (2413) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.ProtID: EnumeratedTypes::ProtIdType +2024-09-07 16:20:04,017 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,019 [main] TRACE UmlAttribute - created (2413) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.ProtID: EnumeratedTypes::ProtIdType +2024-09-07 16:20:04,020 [main] ERROR UmlAttribute - unclassified CIM attribute: (2412) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.ProviderDesc: Abstract Types::CharString +2024-09-07 16:20:04,022 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,022 [main] TRACE UmlAttribute - created (2412) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.ProviderDesc: Abstract Types::CharString +2024-09-07 16:20:04,022 [main] ERROR UmlAttribute - unclassified CIM attribute: (2411) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.ProviderName: Abstract Types::CharString +2024-09-07 16:20:04,023 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,023 [main] TRACE UmlAttribute - created (2411) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.ProviderName: Abstract Types::CharString +2024-09-07 16:20:04,023 [main] ERROR UmlAttribute - unclassified CIM attribute: (2416) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.RemAddress: Abstract Types::InetAddress +2024-09-07 16:20:04,023 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,024 [main] TRACE UmlAttribute - created (2416) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.RemAddress: Abstract Types::InetAddress +2024-09-07 16:20:04,024 [main] ERROR UmlAttribute - unclassified CIM attribute: (3714) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.RemAddressType: Abstract Types::InetAddressType +2024-09-07 16:20:04,024 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,024 [main] TRACE UmlAttribute - created (3714) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.RemAddressType: Abstract Types::InetAddressType +2024-09-07 16:20:04,024 [main] ERROR UmlAttribute - unclassified CIM attribute: (2410) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.TLnkErrCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,025 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,025 [main] TRACE UmlAttribute - created (2410) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.TLnkErrCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,025 [main] ERROR UmlAttribute - unclassified CIM attribute: (2415) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.TLnkTyp: EnumeratedTypes::LnkType +2024-09-07 16:20:04,025 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,025 [main] TRACE UmlAttribute - created (2415) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.TLnkTyp: EnumeratedTypes::LnkType +2024-09-07 16:20:04,025 [main] ERROR UmlAttribute - unclassified CIM attribute: (3248) OTHER_CIM CIM [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Summary.CntRs: Abstract Types::CntRs +2024-09-07 16:20:04,026 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,026 [main] TRACE UmlAttribute - created (3248) OTHER_CIM CIM [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Summary.CntRs: Abstract Types::CntRs +2024-09-07 16:20:04,026 [main] ERROR UmlAttribute - unclassified CIM attribute: (3708) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent::Summary.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:20:04,026 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,026 [main] TRACE UmlAttribute - created (3708) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Summary.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:20:04,026 [main] ERROR UmlAttribute - unclassified CIM attribute: (2278) OTHER_CIM CIM [0..*] null <
> IEEE 1815 and IEC 60870-5 Agent::Summary.Master: IEEE 1815 and IEC 60870-5 Agent::MasterAssociation +2024-09-07 16:20:04,026 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,026 [main] TRACE UmlAttribute - created (2278) OTHER_CIM CIM [0..*] attribute <
> IEEE 1815 and IEC 60870-5 Agent::Summary.Master: IEEE 1815 and IEC 60870-5 Agent::MasterAssociation +2024-09-07 16:20:04,027 [main] ERROR UmlAttribute - unclassified CIM attribute: (2287) OTHER_CIM CIM [0..*] null <
> IEEE 1815 and IEC 60870-5 Agent::Summary.Outstation: IEEE 1815 and IEC 60870-5 Agent::OutstationAssociation +2024-09-07 16:20:04,027 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,027 [main] TRACE UmlAttribute - created (2287) OTHER_CIM CIM [0..*] attribute <
> IEEE 1815 and IEC 60870-5 Agent::Summary.Outstation: IEEE 1815 and IEC 60870-5 Agent::OutstationAssociation +2024-09-07 16:20:04,027 [main] ERROR UmlAttribute - unclassified CIM attribute: (3609) OTHER_CIM CIM [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Summary.SecurityNotification: IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification +2024-09-07 16:20:04,031 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,031 [main] TRACE UmlAttribute - created (3609) OTHER_CIM CIM [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Summary.SecurityNotification: IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification +2024-09-07 16:20:04,031 [main] ERROR UmlAttribute - unclassified CIM attribute: (3608) OTHER_CIM CIM [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Summary.StateNotification: IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification +2024-09-07 16:20:04,032 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,032 [main] TRACE UmlAttribute - created (3608) OTHER_CIM CIM [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Summary.StateNotification: IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification +2024-09-07 16:20:04,032 [main] ERROR UmlAttribute - unclassified CIM attribute: (3519) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.AuthFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,034 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,034 [main] TRACE UmlAttribute - created (3519) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.AuthFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,034 [main] ERROR UmlAttribute - unclassified CIM attribute: (3518) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.CtrlPrivFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,034 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,034 [main] TRACE UmlAttribute - created (3518) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.CtrlPrivFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,034 [main] ERROR UmlAttribute - unclassified CIM attribute: (3522) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,035 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,035 [main] TRACE UmlAttribute - created (3522) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,035 [main] ERROR UmlAttribute - unclassified CIM attribute: (4043) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:20:04,035 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,036 [main] TRACE UmlAttribute - created (4043) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:20:04,036 [main] ERROR UmlAttribute - unclassified CIM attribute: (3520) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.PduTampCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,036 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,036 [main] TRACE UmlAttribute - created (3520) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.PduTampCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,039 [main] ERROR UmlAttribute - unclassified CIM attribute: (3521) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.PrivFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,039 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,040 [main] TRACE UmlAttribute - created (3521) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.PrivFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,040 [main] ERROR UmlAttribute - unclassified CIM attribute: (3523) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.SessKeyFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,040 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,040 [main] TRACE UmlAttribute - created (3523) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.SessKeyFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,040 [main] ERROR UmlAttribute - unclassified CIM attribute: (3524) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.UpKeyFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,040 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,040 [main] TRACE UmlAttribute - created (3524) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.UpKeyFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,040 [main] ERROR UmlAttribute - unclassified CIM attribute: (3526) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.InErrCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,040 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,040 [main] TRACE UmlAttribute - created (3526) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.InErrCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,041 [main] ERROR UmlAttribute - unclassified CIM attribute: (3528) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.InOvCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,041 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,041 [main] TRACE UmlAttribute - created (3528) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.InOvCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,041 [main] ERROR UmlAttribute - unclassified CIM attribute: (3529) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.OutUv: Abstract Types::CounterTs +2024-09-07 16:20:04,041 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,041 [main] TRACE UmlAttribute - created (3529) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.OutUv: Abstract Types::CounterTs +2024-09-07 16:20:04,041 [main] ERROR UmlAttribute - unclassified CIM attribute: (3527) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.RxPdu: Abstract Types::CounterTs +2024-09-07 16:20:04,041 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,041 [main] TRACE UmlAttribute - created (3527) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.RxPdu: Abstract Types::CounterTs +2024-09-07 16:20:04,041 [main] ERROR UmlAttribute - unclassified CIM attribute: (3525) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.TxPdu: Abstract Types::CounterTs +2024-09-07 16:20:04,041 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,042 [main] TRACE UmlAttribute - created (3525) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.TxPdu: Abstract Types::CounterTs +2024-09-07 16:20:04,042 [main] ERROR UmlAttribute - unclassified CIM attribute: (4257) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.ExT0Cnt: Abstract Types::CounterTs +2024-09-07 16:20:04,042 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,042 [main] TRACE UmlAttribute - created (4257) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.ExT0Cnt: Abstract Types::CounterTs +2024-09-07 16:20:04,042 [main] ERROR UmlAttribute - unclassified CIM attribute: (4258) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.ExT1Cnt: Abstract Types::CounterTs +2024-09-07 16:20:04,042 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,042 [main] TRACE UmlAttribute - created (4258) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.ExT1Cnt: Abstract Types::CounterTs +2024-09-07 16:20:04,042 [main] ERROR UmlAttribute - unclassified CIM attribute: (4259) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.ExT2Cnt: Abstract Types::CounterTs +2024-09-07 16:20:04,042 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,042 [main] TRACE UmlAttribute - created (4259) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.ExT2Cnt: Abstract Types::CounterTs +2024-09-07 16:20:04,042 [main] ERROR UmlAttribute - unclassified CIM attribute: (4260) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.ExT3Cnt: Abstract Types::CounterTs +2024-09-07 16:20:04,043 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,043 [main] TRACE UmlAttribute - created (4260) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.ExT3Cnt: Abstract Types::CounterTs +2024-09-07 16:20:04,043 [main] ERROR UmlAttribute - unclassified CIM attribute: (4261) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.DiscPduCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,043 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,043 [main] TRACE UmlAttribute - created (4261) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.DiscPduCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,043 [main] ERROR UmlAttribute - unclassified CIM attribute: (4262) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.InErrCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,043 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,043 [main] TRACE UmlAttribute - created (4262) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.InErrCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,043 [main] ERROR UmlAttribute - unclassified CIM attribute: (4263) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.InOvCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,043 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,043 [main] TRACE UmlAttribute - created (4263) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.InOvCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,043 [main] ERROR UmlAttribute - unclassified CIM attribute: (4264) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.InterPDUTime: Abstract Types::Floating +2024-09-07 16:20:04,044 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,044 [main] TRACE UmlAttribute - created (4264) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.InterPDUTime: Abstract Types::Floating +2024-09-07 16:20:04,044 [main] ERROR UmlAttribute - unclassified CIM attribute: (4265) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.MisPDUCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,044 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,044 [main] TRACE UmlAttribute - created (4265) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.MisPDUCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,044 [main] ERROR UmlAttribute - unclassified CIM attribute: (4266) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.OutErr: Abstract Types::CounterTs +2024-09-07 16:20:04,045 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,045 [main] TRACE UmlAttribute - created (4266) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.OutErr: Abstract Types::CounterTs +2024-09-07 16:20:04,045 [main] ERROR UmlAttribute - unclassified CIM attribute: (4267) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.OutUv: Abstract Types::CounterTs +2024-09-07 16:20:04,045 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,045 [main] TRACE UmlAttribute - created (4267) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.OutUv: Abstract Types::CounterTs +2024-09-07 16:20:04,045 [main] ERROR UmlAttribute - unclassified CIM attribute: (4269) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.PDUSizeFail: Abstract Types::CounterTs +2024-09-07 16:20:04,045 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,045 [main] TRACE UmlAttribute - created (4269) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.PDUSizeFail: Abstract Types::CounterTs +2024-09-07 16:20:04,045 [main] ERROR UmlAttribute - unclassified CIM attribute: (4273) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.RtxCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,045 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,045 [main] TRACE UmlAttribute - created (4273) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.RtxCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,046 [main] ERROR UmlAttribute - unclassified CIM attribute: (4275) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.RxPduCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,046 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,046 [main] TRACE UmlAttribute - created (4275) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.RxPduCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,046 [main] ERROR UmlAttribute - unclassified CIM attribute: (4276) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.RxSolicitedReq: Abstract Types::CounterTs +2024-09-07 16:20:04,046 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,046 [main] TRACE UmlAttribute - created (4276) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.RxSolicitedReq: Abstract Types::CounterTs +2024-09-07 16:20:04,046 [main] ERROR UmlAttribute - unclassified CIM attribute: (4277) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.RxUnsolicitedReq: Abstract Types::CounterTs +2024-09-07 16:20:04,046 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,046 [main] TRACE UmlAttribute - created (4277) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.RxUnsolicitedReq: Abstract Types::CounterTs +2024-09-07 16:20:04,047 [main] ERROR UmlAttribute - unclassified CIM attribute: (4280) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.TxPduCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,047 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,047 [main] TRACE UmlAttribute - created (4280) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.TxPduCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,047 [main] ERROR UmlAttribute - unclassified CIM attribute: (4281) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.TxSolicitedReq: Abstract Types::CounterTs +2024-09-07 16:20:04,047 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,047 [main] TRACE UmlAttribute - created (4281) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.TxSolicitedReq: Abstract Types::CounterTs +2024-09-07 16:20:04,047 [main] ERROR UmlAttribute - unclassified CIM attribute: (4282) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.TxUnsolicitedReq: Abstract Types::CounterTs +2024-09-07 16:20:04,048 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,048 [main] TRACE UmlAttribute - created (4282) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.TxUnsolicitedReq: Abstract Types::CounterTs +2024-09-07 16:20:04,048 [main] ERROR UmlAttribute - unclassified CIM attribute: (4306) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.StAsProcScsCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,048 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,049 [main] TRACE UmlAttribute - created (4306) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.StAsProcScsCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,049 [main] ERROR UmlAttribute - unclassified CIM attribute: (4307) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.StAsProcFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,050 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,051 [main] TRACE UmlAttribute - created (4307) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.StAsProcFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,051 [main] ERROR UmlAttribute - unclassified CIM attribute: (4308) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyProcScsCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,051 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,051 [main] TRACE UmlAttribute - created (4308) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyProcScsCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,052 [main] ERROR UmlAttribute - unclassified CIM attribute: (4336) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.KeyAutnAlgSupFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,052 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,052 [main] TRACE UmlAttribute - created (4336) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.KeyAutnAlgSupFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,052 [main] ERROR UmlAttribute - unclassified CIM attribute: (4337) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyWrapAlgSupFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,052 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,052 [main] TRACE UmlAttribute - created (4337) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyWrapAlgSupFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,052 [main] ERROR UmlAttribute - unclassified CIM attribute: (4338) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.DataProtAlgSupFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,053 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,053 [main] TRACE UmlAttribute - created (4338) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.DataProtAlgSupFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,053 [main] ERROR UmlAttribute - unclassified CIM attribute: (4339) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyAutnErrCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,053 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,053 [main] TRACE UmlAttribute - created (4339) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyAutnErrCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,053 [main] ERROR UmlAttribute - unclassified CIM attribute: (4340) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.DataAutnErrCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,055 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,056 [main] TRACE UmlAttribute - created (4340) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.DataAutnErrCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,056 [main] ERROR UmlAttribute - unclassified CIM attribute: (4341) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.UnxpMsgErrCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,056 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,056 [main] TRACE UmlAttribute - created (4341) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.UnxpMsgErrCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,057 [main] ERROR UmlAttribute - unclassified CIM attribute: (4342) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.MaxReplyToutCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,057 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,057 [main] TRACE UmlAttribute - created (4342) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.MaxReplyToutCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,057 [main] ERROR UmlAttribute - unclassified CIM attribute: (4343) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.NodeAutrFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,057 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,057 [main] TRACE UmlAttribute - created (4343) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.NodeAutrFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,058 [main] ERROR UmlAttribute - unclassified CIM attribute: (4344) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.CtrlOperAutrFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,058 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,058 [main] TRACE UmlAttribute - created (4344) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.CtrlOperAutrFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,058 [main] ERROR UmlAttribute - unclassified CIM attribute: (4345) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.RemCertCheckFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,058 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,058 [main] TRACE UmlAttribute - created (4345) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.RemCertCheckFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,059 [main] ERROR UmlAttribute - unclassified CIM attribute: (4346) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.RemCertExpiredCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,059 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,059 [main] TRACE UmlAttribute - created (4346) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.RemCertExpiredCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,059 [main] ERROR UmlAttribute - unclassified CIM attribute: (4347) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.RemCertRevokedCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,059 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,059 [main] TRACE UmlAttribute - created (4347) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.RemCertRevokedCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,059 [main] ERROR UmlAttribute - unclassified CIM attribute: (4348) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.LocCertExpiredCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,059 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,060 [main] TRACE UmlAttribute - created (4348) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.LocCertExpiredCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,060 [main] ERROR UmlAttribute - unclassified CIM attribute: (4349) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.LocCertRevokedCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,061 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,064 [main] TRACE UmlAttribute - created (4349) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.LocCertRevokedCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,064 [main] ERROR UmlAttribute - unclassified CIM attribute: (4350) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.KeysInvRemCertRevCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,065 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,065 [main] TRACE UmlAttribute - created (4350) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.KeysInvRemCertRevCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,065 [main] ERROR UmlAttribute - unclassified CIM attribute: (4351) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.KeysInvLocCertRevCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,065 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,065 [main] TRACE UmlAttribute - created (4351) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.KeysInvLocCertRevCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,065 [main] ERROR UmlAttribute - unclassified CIM attribute: (4352) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.DataAutnScsCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,065 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,065 [main] TRACE UmlAttribute - created (4352) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.DataAutnScsCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,067 [main] ERROR UmlAttribute - unclassified CIM attribute: (4353) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.ReplyToutCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,067 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,067 [main] TRACE UmlAttribute - created (4353) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.ReplyToutCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,067 [main] ERROR UmlAttribute - unclassified CIM attribute: (4354) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.RequestToutCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,068 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,068 [main] TRACE UmlAttribute - created (4354) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.RequestToutCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,068 [main] ERROR UmlAttribute - unclassified CIM attribute: (4355) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyInvUseCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,068 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,069 [main] TRACE UmlAttribute - created (4355) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyInvUseCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,069 [main] ERROR UmlAttribute - unclassified CIM attribute: (4356) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyInvToutCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,069 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,070 [main] TRACE UmlAttribute - created (4356) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyInvToutCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,070 [main] ERROR UmlAttribute - unclassified CIM attribute: (4357) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyProcFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,072 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,072 [main] TRACE UmlAttribute - created (4357) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyProcFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,072 [main] ERROR UmlAttribute - unclassified CIM attribute: (4335) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.ProtInfoErrCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,072 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,072 [main] TRACE UmlAttribute - created (4335) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.ProtInfoErrCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,074 [main] ERROR UmlAttribute - unclassified CIM attribute: (4284) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.AssociationId: Abstract Types::EntityIndex +2024-09-07 16:20:04,074 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,074 [main] TRACE UmlAttribute - created (4284) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.AssociationId: Abstract Types::EntityIndex +2024-09-07 16:20:04,074 [main] ERROR UmlAttribute - unclassified CIM attribute: (4285) OTHER_CIM CIM [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.CntRs: Abstract Types::CntRs +2024-09-07 16:20:04,075 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,075 [main] TRACE UmlAttribute - created (4285) OTHER_CIM CIM [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.CntRs: Abstract Types::CntRs +2024-09-07 16:20:04,075 [main] ERROR UmlAttribute - unclassified CIM attribute: (4286) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.LocAddress: Abstract Types::InetAddress +2024-09-07 16:20:04,076 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,076 [main] TRACE UmlAttribute - created (4286) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.LocAddress: Abstract Types::InetAddress +2024-09-07 16:20:04,077 [main] ERROR UmlAttribute - unclassified CIM attribute: (4287) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.LocAddressType: Abstract Types::InetAddressType +2024-09-07 16:20:04,077 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,077 [main] TRACE UmlAttribute - created (4287) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.LocAddressType: Abstract Types::InetAddressType +2024-09-07 16:20:04,077 [main] ERROR UmlAttribute - unclassified CIM attribute: (4288) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.ProtID: EnumeratedTypes::ProtIdType +2024-09-07 16:20:04,077 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,077 [main] TRACE UmlAttribute - created (4288) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.ProtID: EnumeratedTypes::ProtIdType +2024-09-07 16:20:04,077 [main] ERROR UmlAttribute - unclassified CIM attribute: (4289) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.ProviderDesc: Abstract Types::CharString +2024-09-07 16:20:04,078 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,078 [main] TRACE UmlAttribute - created (4289) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.ProviderDesc: Abstract Types::CharString +2024-09-07 16:20:04,078 [main] ERROR UmlAttribute - unclassified CIM attribute: (4290) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.ProviderName: Abstract Types::CharString +2024-09-07 16:20:04,078 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,078 [main] TRACE UmlAttribute - created (4290) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.ProviderName: Abstract Types::CharString +2024-09-07 16:20:04,079 [main] ERROR UmlAttribute - unclassified CIM attribute: (4291) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.RemAddress: Abstract Types::InetAddress +2024-09-07 16:20:04,079 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,079 [main] TRACE UmlAttribute - created (4291) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.RemAddress: Abstract Types::InetAddress +2024-09-07 16:20:04,079 [main] ERROR UmlAttribute - unclassified CIM attribute: (4292) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.RemAddressType: Abstract Types::InetAddressType +2024-09-07 16:20:04,079 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,080 [main] TRACE UmlAttribute - created (4292) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.RemAddressType: Abstract Types::InetAddressType +2024-09-07 16:20:04,080 [main] ERROR UmlAttribute - unclassified CIM attribute: (4293) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.TLnkErrCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,081 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,081 [main] TRACE UmlAttribute - created (4293) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.TLnkErrCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,081 [main] ERROR UmlAttribute - unclassified CIM attribute: (4294) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.TLnkTyp: EnumeratedTypes::LnkType +2024-09-07 16:20:04,082 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,082 [main] TRACE UmlAttribute - created (4294) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.TLnkTyp: EnumeratedTypes::LnkType +2024-09-07 16:20:04,082 [main] ERROR UmlAttribute - unclassified CIM attribute: (4295) OTHER_CIM CIM [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.CntRs: Abstract Types::CntRs +2024-09-07 16:20:04,082 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,082 [main] TRACE UmlAttribute - created (4295) OTHER_CIM CIM [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.CntRs: Abstract Types::CntRs +2024-09-07 16:20:04,082 [main] ERROR UmlAttribute - unclassified CIM attribute: (4296) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:20:04,082 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,082 [main] TRACE UmlAttribute - created (4296) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:20:04,082 [main] ERROR UmlAttribute - unclassified CIM attribute: (4297) OTHER_CIM CIM [0..*] null <
> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.Master: IEEE 1815 and IEC 60870-5 Agent - ed2::MasterAssociation +2024-09-07 16:20:04,083 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,083 [main] TRACE UmlAttribute - created (4297) OTHER_CIM CIM [0..*] attribute <
> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.Master: IEEE 1815 and IEC 60870-5 Agent - ed2::MasterAssociation +2024-09-07 16:20:04,083 [main] ERROR UmlAttribute - unclassified CIM attribute: (4298) OTHER_CIM CIM [0..*] null <
> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.Outstation: IEEE 1815 and IEC 60870-5 Agent - ed2::OutstationAssociation +2024-09-07 16:20:04,083 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,083 [main] TRACE UmlAttribute - created (4298) OTHER_CIM CIM [0..*] attribute <
> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.Outstation: IEEE 1815 and IEC 60870-5 Agent - ed2::OutstationAssociation +2024-09-07 16:20:04,083 [main] ERROR UmlAttribute - unclassified CIM attribute: (4299) OTHER_CIM CIM [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.SecurityNotification: IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2 +2024-09-07 16:20:04,083 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,083 [main] TRACE UmlAttribute - created (4299) OTHER_CIM CIM [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.SecurityNotification: IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2 +2024-09-07 16:20:04,083 [main] ERROR UmlAttribute - unclassified CIM attribute: (4300) OTHER_CIM CIM [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.StateNotification: IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2 +2024-09-07 16:20:04,083 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,083 [main] TRACE UmlAttribute - created (4300) OTHER_CIM CIM [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.StateNotification: IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2 +2024-09-07 16:20:04,084 [main] ERROR UmlAttribute - unclassified CIM attribute: (4358) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:20:04,084 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,084 [main] TRACE UmlAttribute - created (4358) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:20:04,084 [main] ERROR UmlAttribute - unclassified CIM attribute: (4360) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:20:04,084 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,084 [main] TRACE UmlAttribute - created (4360) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:20:04,084 [main] ERROR UmlAttribute - unclassified CIM attribute: (1254) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.assocPoolMax: Abstract Types::Integer +2024-09-07 16:20:04,085 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,085 [main] TRACE UmlAttribute - created (1254) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.assocPoolMax: Abstract Types::Integer +2024-09-07 16:20:04,085 [main] ERROR UmlAttribute - unclassified CIM attribute: (1255) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.assocPoolUsed: Abstract Types::Integer +2024-09-07 16:20:04,085 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,085 [main] TRACE UmlAttribute - created (1255) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.assocPoolUsed: Abstract Types::Integer +2024-09-07 16:20:04,085 [main] ERROR UmlAttribute - unclassified CIM attribute: (1278) OTHER_CIM CIM [0..1] null <> ACSI::ACSISummary.CntRs: Abstract Types::CntRs +2024-09-07 16:20:04,085 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,086 [main] TRACE UmlAttribute - created (1278) OTHER_CIM CIM [0..1] attribute <> ACSI::ACSISummary.CntRs: Abstract Types::CntRs +2024-09-07 16:20:04,086 [main] ERROR UmlAttribute - unclassified CIM attribute: (3931) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.CtrlPrivFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,086 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,086 [main] TRACE UmlAttribute - created (3931) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.CtrlPrivFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,088 [main] ERROR UmlAttribute - unclassified CIM attribute: (1262) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.gsePubMax: Abstract Types::Integer +2024-09-07 16:20:04,089 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,089 [main] TRACE UmlAttribute - created (1262) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.gsePubMax: Abstract Types::Integer +2024-09-07 16:20:04,089 [main] ERROR UmlAttribute - unclassified CIM attribute: (2263) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.gsePubUsed: Abstract Types::Integer +2024-09-07 16:20:04,089 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,089 [main] TRACE UmlAttribute - created (2263) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.gsePubUsed: Abstract Types::Integer +2024-09-07 16:20:04,089 [main] ERROR UmlAttribute - unclassified CIM attribute: (1264) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.gseSubMax: Abstract Types::Integer +2024-09-07 16:20:04,089 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,089 [main] TRACE UmlAttribute - created (1264) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.gseSubMax: Abstract Types::Integer +2024-09-07 16:20:04,089 [main] ERROR UmlAttribute - unclassified CIM attribute: (1263) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.gseSubUsed: Abstract Types::Integer +2024-09-07 16:20:04,090 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,090 [main] TRACE UmlAttribute - created (1263) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.gseSubUsed: Abstract Types::Integer +2024-09-07 16:20:04,090 [main] ERROR UmlAttribute - unclassified CIM attribute: (3709) OTHER_CIM CIM const [1..1] null <> ACSI::ACSISummary.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:20:04,091 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,091 [main] TRACE UmlAttribute - created (3709) OTHER_CIM CIM const [1..1] attribute <> ACSI::ACSISummary.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:20:04,091 [main] ERROR UmlAttribute - unclassified CIM attribute: (3930) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.PrivFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,091 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,091 [main] TRACE UmlAttribute - created (3930) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.PrivFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,093 [main] ERROR UmlAttribute - unclassified CIM attribute: (1271) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.RemoteEstAssocCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,093 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,093 [main] TRACE UmlAttribute - created (1271) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.RemoteEstAssocCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,093 [main] ERROR UmlAttribute - unclassified CIM attribute: (3932) OTHER_CIM CIM const [1..1] null <> ACSI::ACSISummary.AcsCtlFail: Abstract Types::CounterTs +2024-09-07 16:20:04,093 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,094 [main] TRACE UmlAttribute - created (3932) OTHER_CIM CIM const [1..1] attribute <> ACSI::ACSISummary.AcsCtlFail: Abstract Types::CounterTs +2024-09-07 16:20:04,094 [main] ERROR UmlAttribute - unclassified CIM attribute: (1282) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.svPubMax: Abstract Types::Integer +2024-09-07 16:20:04,094 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,094 [main] TRACE UmlAttribute - created (1282) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.svPubMax: Abstract Types::Integer +2024-09-07 16:20:04,094 [main] ERROR UmlAttribute - unclassified CIM attribute: (1281) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.svPubUsed: Abstract Types::Integer +2024-09-07 16:20:04,095 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,095 [main] TRACE UmlAttribute - created (1281) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.svPubUsed: Abstract Types::Integer +2024-09-07 16:20:04,095 [main] ERROR UmlAttribute - unclassified CIM attribute: (1284) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.svSubMax: Abstract Types::Integer +2024-09-07 16:20:04,095 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,095 [main] TRACE UmlAttribute - created (1284) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.svSubMax: Abstract Types::Integer +2024-09-07 16:20:04,095 [main] ERROR UmlAttribute - unclassified CIM attribute: (1283) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.svSubUsed: Abstract Types::Integer +2024-09-07 16:20:04,095 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,095 [main] TRACE UmlAttribute - created (1283) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.svSubUsed: Abstract Types::Integer +2024-09-07 16:20:04,095 [main] ERROR UmlAttribute - unclassified CIM attribute: (4122) OTHER_CIM CIM const [1..1] null <> MMS::MMSProtocolInfo.ErrorRxCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,095 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,095 [main] TRACE UmlAttribute - created (4122) OTHER_CIM CIM const [1..1] attribute <> MMS::MMSProtocolInfo.ErrorRxCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,095 [main] ERROR UmlAttribute - unclassified CIM attribute: (4123) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.ErrorTxCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,095 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,095 [main] TRACE UmlAttribute - created (4123) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.ErrorTxCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,096 [main] ERROR UmlAttribute - unclassified CIM attribute: (3214) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.InfoRptRxCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,096 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,096 [main] TRACE UmlAttribute - created (3214) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.InfoRptRxCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,096 [main] ERROR UmlAttribute - unclassified CIM attribute: (4120) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.InfoRptTxCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,096 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,096 [main] TRACE UmlAttribute - created (4120) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.InfoRptTxCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,096 [main] ERROR UmlAttribute - unclassified CIM attribute: (3969) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.MisCmdAckCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,096 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,096 [main] TRACE UmlAttribute - created (3969) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.MisCmdAckCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,096 [main] ERROR UmlAttribute - unclassified CIM attribute: (3414) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.MMSProExchTime: Abstract Types::Floating +2024-09-07 16:20:04,096 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,096 [main] TRACE UmlAttribute - created (3414) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.MMSProExchTime: Abstract Types::Floating +2024-09-07 16:20:04,096 [main] ERROR UmlAttribute - unclassified CIM attribute: (3211) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.RejectRxCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,097 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,097 [main] TRACE UmlAttribute - created (3211) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.RejectRxCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,097 [main] ERROR UmlAttribute - unclassified CIM attribute: (3212) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.RejectTxCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,097 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,097 [main] TRACE UmlAttribute - created (3212) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.RejectTxCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,097 [main] ERROR UmlAttribute - unclassified CIM attribute: (3208) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.ReqRxCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,097 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,097 [main] TRACE UmlAttribute - created (3208) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.ReqRxCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,098 [main] ERROR UmlAttribute - unclassified CIM attribute: (3206) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.ReqTxCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,098 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,098 [main] TRACE UmlAttribute - created (3206) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.ReqTxCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,098 [main] ERROR UmlAttribute - unclassified CIM attribute: (3210) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.RespRxCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,098 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,098 [main] TRACE UmlAttribute - created (3210) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.RespRxCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,098 [main] ERROR UmlAttribute - unclassified CIM attribute: (3209) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.RespTxCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,098 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,098 [main] TRACE UmlAttribute - created (3209) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.RespTxCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,098 [main] ERROR UmlAttribute - unclassified CIM attribute: (3935) OTHER_CIM CIM const [1..1] null <> MMS::MMSProtocolInfo.SessKeyFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,098 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,098 [main] TRACE UmlAttribute - created (3935) OTHER_CIM CIM const [1..1] attribute <> MMS::MMSProtocolInfo.SessKeyFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,098 [main] ERROR UmlAttribute - unclassified CIM attribute: (3918) OTHER_CIM CIM const [1..1] null <> MMS::MMSProvider.AProfileDecryptFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,099 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,099 [main] TRACE UmlAttribute - created (3918) OTHER_CIM CIM const [1..1] attribute <> MMS::MMSProvider.AProfileDecryptFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,099 [main] ERROR UmlAttribute - unclassified CIM attribute: (3938) OTHER_CIM CIM const [1..1] null <> MMS::MMSProvider.AuthFail: Abstract Types::CounterTs +2024-09-07 16:20:04,099 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,099 [main] TRACE UmlAttribute - created (3938) OTHER_CIM CIM const [1..1] attribute <> MMS::MMSProvider.AuthFail: Abstract Types::CounterTs +2024-09-07 16:20:04,099 [main] ERROR UmlAttribute - unclassified CIM attribute: (3245) OTHER_CIM CIM [0..1] null <> MMS::MMSProvider.CntRs: Abstract Types::CntRs +2024-09-07 16:20:04,099 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,099 [main] TRACE UmlAttribute - created (3245) OTHER_CIM CIM [0..1] attribute <> MMS::MMSProvider.CntRs: Abstract Types::CntRs +2024-09-07 16:20:04,099 [main] ERROR UmlAttribute - unclassified CIM attribute: (2831) OTHER_CIM CIM const [1..1] null <> MMS::MMSProvider.ConnFailInCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,099 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,099 [main] TRACE UmlAttribute - created (2831) OTHER_CIM CIM const [1..1] attribute <> MMS::MMSProvider.ConnFailInCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,099 [main] ERROR UmlAttribute - unclassified CIM attribute: (2832) OTHER_CIM CIM const [1..1] null <> MMS::MMSProvider.ConnFailOutCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,099 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,100 [main] TRACE UmlAttribute - created (2832) OTHER_CIM CIM const [1..1] attribute <> MMS::MMSProvider.ConnFailOutCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,100 [main] ERROR UmlAttribute - unclassified CIM attribute: (3936) OTHER_CIM CIM const [0..1] null <> MMS::MMSProvider.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,100 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,100 [main] TRACE UmlAttribute - created (3936) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProvider.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,100 [main] ERROR UmlAttribute - unclassified CIM attribute: (3710) OTHER_CIM CIM const [1..1] null <> MMS::MMSProvider.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:20:04,100 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,100 [main] TRACE UmlAttribute - created (3710) OTHER_CIM CIM const [1..1] attribute <> MMS::MMSProvider.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:20:04,100 [main] ERROR UmlAttribute - unclassified CIM attribute: (2803) OTHER_CIM CIM [0..*] null <
> MMS::MMSProvider.MMS: MMS::MMSAssociation +2024-09-07 16:20:04,100 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,100 [main] TRACE UmlAttribute - created (2803) OTHER_CIM CIM [0..*] attribute <
> MMS::MMSProvider.MMS: MMS::MMSAssociation +2024-09-07 16:20:04,100 [main] ERROR UmlAttribute - unclassified CIM attribute: (3915) OTHER_CIM CIM const [0..1] null <> MMS::MMSProvider.PrivFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,101 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,101 [main] TRACE UmlAttribute - created (3915) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProvider.PrivFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,101 [main] ERROR UmlAttribute - unclassified CIM attribute: (2810) OTHER_CIM CIM const [0..1] null <> MMS::MMSProvider.ProviderDesc: Abstract Types::CharString +2024-09-07 16:20:04,101 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,101 [main] TRACE UmlAttribute - created (2810) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProvider.ProviderDesc: Abstract Types::CharString +2024-09-07 16:20:04,101 [main] ERROR UmlAttribute - unclassified CIM attribute: (2811) OTHER_CIM CIM const [0..1] null <> MMS::MMSProvider.ProviderName: Abstract Types::CharString +2024-09-07 16:20:04,101 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,101 [main] TRACE UmlAttribute - created (2811) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProvider.ProviderName: Abstract Types::CharString +2024-09-07 16:20:04,101 [main] ERROR UmlAttribute - unclassified CIM attribute: (3614) OTHER_CIM CIM [0..1] null <> MMS::MMSProvider.SecurityNotification: MMS::MMSSecurityNotification +2024-09-07 16:20:04,101 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,101 [main] TRACE UmlAttribute - created (3614) OTHER_CIM CIM [0..1] attribute <> MMS::MMSProvider.SecurityNotification: MMS::MMSSecurityNotification +2024-09-07 16:20:04,102 [main] ERROR UmlAttribute - unclassified CIM attribute: (4030) OTHER_CIM CIM const [0..1] null <> MMS::MMSProvider.SessionEstablishmentRate: Abstract Types::Integer +2024-09-07 16:20:04,102 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,102 [main] TRACE UmlAttribute - created (4030) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProvider.SessionEstablishmentRate: Abstract Types::Integer +2024-09-07 16:20:04,102 [main] ERROR UmlAttribute - unclassified CIM attribute: (4031) OTHER_CIM CIM const [0..1] null <> MMS::MMSProvider.SessionRestartCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,102 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,102 [main] TRACE UmlAttribute - created (4031) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProvider.SessionRestartCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,102 [main] ERROR UmlAttribute - unclassified CIM attribute: (3613) OTHER_CIM CIM [0..1] null <> MMS::MMSProvider.StateNotification: MMS::MMSNotification +2024-09-07 16:20:04,102 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,102 [main] TRACE UmlAttribute - created (3613) OTHER_CIM CIM [0..1] attribute <> MMS::MMSProvider.StateNotification: MMS::MMSNotification +2024-09-07 16:20:04,102 [main] ERROR UmlAttribute - unclassified CIM attribute: (3919) OTHER_CIM CIM const [1..1] null <> MMS::MMSProvider.TProfileDecryptFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,103 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,103 [main] TRACE UmlAttribute - created (3919) OTHER_CIM CIM const [1..1] attribute <> MMS::MMSProvider.TProfileDecryptFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,103 [main] ERROR UmlAttribute - unclassified CIM attribute: (3921) OTHER_CIM CIM const [0..1] null <> MMS::MMSProvider.TProfileSessKeyFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,103 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,103 [main] TRACE UmlAttribute - created (3921) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProvider.TProfileSessKeyFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,103 [main] ERROR UmlAttribute - unclassified CIM attribute: (3975) OTHER_CIM CIM const [1..1] null <> MMS::MMSProvider.UpKeyFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,103 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,104 [main] TRACE UmlAttribute - created (3975) OTHER_CIM CIM const [1..1] attribute <> MMS::MMSProvider.UpKeyFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,104 [main] ERROR UmlAttribute - unclassified CIM attribute: (2820) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.Active: Abstract Types::BooleanValueTs +2024-09-07 16:20:04,104 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,104 [main] TRACE UmlAttribute - created (2820) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.Active: Abstract Types::BooleanValueTs +2024-09-07 16:20:04,104 [main] ERROR UmlAttribute - unclassified CIM attribute: (3727) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.AssociationId: Abstract Types::EntityIndex +2024-09-07 16:20:04,104 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,104 [main] TRACE UmlAttribute - created (3727) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.AssociationId: Abstract Types::EntityIndex +2024-09-07 16:20:04,104 [main] ERROR UmlAttribute - unclassified CIM attribute: (4119) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.Client: Abstract Types::BooleanValue +2024-09-07 16:20:04,105 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,105 [main] TRACE UmlAttribute - created (4119) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.Client: Abstract Types::BooleanValue +2024-09-07 16:20:04,105 [main] ERROR UmlAttribute - unclassified CIM attribute: (3246) OTHER_CIM CIM [0..1] null <> MMS::MMSAssociation.CntRs: Abstract Types::CntRs +2024-09-07 16:20:04,105 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,105 [main] TRACE UmlAttribute - created (3246) OTHER_CIM CIM [0..1] attribute <> MMS::MMSAssociation.CntRs: Abstract Types::CntRs +2024-09-07 16:20:04,105 [main] ERROR UmlAttribute - unclassified CIM attribute: (3939) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.HndShTime: Abstract Types::Floating +2024-09-07 16:20:04,105 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,105 [main] TRACE UmlAttribute - created (3939) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.HndShTime: Abstract Types::Floating +2024-09-07 16:20:04,105 [main] ERROR UmlAttribute - unclassified CIM attribute: (2844) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.RemoteEstAssos: Abstract Types::BooleanValue +2024-09-07 16:20:04,105 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,105 [main] TRACE UmlAttribute - created (2844) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.RemoteEstAssos: Abstract Types::BooleanValue +2024-09-07 16:20:04,105 [main] ERROR UmlAttribute - unclassified CIM attribute: (2876) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.RemoteIP: Abstract Types::InetAddress +2024-09-07 16:20:04,105 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,106 [main] TRACE UmlAttribute - created (2876) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.RemoteIP: Abstract Types::InetAddress +2024-09-07 16:20:04,106 [main] ERROR UmlAttribute - unclassified CIM attribute: (3692) OTHER_CIM CIM [0..1] null <> MMS::MMSAssociation.RemoteIPAddressType: Abstract Types::InetAddressType +2024-09-07 16:20:04,106 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,106 [main] TRACE UmlAttribute - created (3692) OTHER_CIM CIM [0..1] attribute <> MMS::MMSAssociation.RemoteIPAddressType: Abstract Types::InetAddressType +2024-09-07 16:20:04,106 [main] ERROR UmlAttribute - unclassified CIM attribute: (2873) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.RemotePSEL: Abstract Types::Selector +2024-09-07 16:20:04,106 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,106 [main] TRACE UmlAttribute - created (2873) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.RemotePSEL: Abstract Types::Selector +2024-09-07 16:20:04,106 [main] ERROR UmlAttribute - unclassified CIM attribute: (2874) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.RemoteSSEL: Abstract Types::Selector +2024-09-07 16:20:04,106 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,106 [main] TRACE UmlAttribute - created (2874) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.RemoteSSEL: Abstract Types::Selector +2024-09-07 16:20:04,106 [main] ERROR UmlAttribute - unclassified CIM attribute: (2875) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.RemoteTSEL: Abstract Types::Selector +2024-09-07 16:20:04,106 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,106 [main] TRACE UmlAttribute - created (2875) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.RemoteTSEL: Abstract Types::Selector +2024-09-07 16:20:04,107 [main] ERROR UmlAttribute - unclassified CIM attribute: (3972) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.ReportPer100Seconds: Abstract Types::Integer +2024-09-07 16:20:04,107 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,107 [main] TRACE UmlAttribute - created (3972) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.ReportPer100Seconds: Abstract Types::Integer +2024-09-07 16:20:04,107 [main] ERROR UmlAttribute - unclassified CIM attribute: (3968) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.RptReceptionDelay: Abstract Types::FloatingTs +2024-09-07 16:20:04,107 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,107 [main] TRACE UmlAttribute - created (3968) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.RptReceptionDelay: Abstract Types::FloatingTs +2024-09-07 16:20:04,107 [main] ERROR UmlAttribute - unclassified CIM attribute: (3913) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.SecurityProfile: EnumeratedTypes::SecurityProfileType +2024-09-07 16:20:04,107 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,107 [main] TRACE UmlAttribute - created (3913) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.SecurityProfile: EnumeratedTypes::SecurityProfileType +2024-09-07 16:20:04,107 [main] ERROR UmlAttribute - unclassified CIM attribute: (3582) OTHER_CIM CIM const [0..1] null <> MMS::MMSSecurityNotification.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,107 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,107 [main] TRACE UmlAttribute - created (3582) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSSecurityNotification.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,107 [main] ERROR UmlAttribute - unclassified CIM attribute: (4036) OTHER_CIM CIM const [0..1] null <> MMS::MMSSecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:20:04,108 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,108 [main] TRACE UmlAttribute - created (4036) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSSecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-07 16:20:04,108 [main] ERROR UmlAttribute - unclassified CIM attribute: (3581) OTHER_CIM CIM const [0..1] null <> MMS::MMSSecurityNotification.PrivFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,108 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,108 [main] TRACE UmlAttribute - created (3581) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSSecurityNotification.PrivFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,108 [main] ERROR UmlAttribute - unclassified CIM attribute: (3584) OTHER_CIM CIM const [0..1] null <> MMS::MMSSecurityNotification.UpKeyFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,108 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,108 [main] TRACE UmlAttribute - created (3584) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSSecurityNotification.UpKeyFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,108 [main] ERROR UmlAttribute - unclassified CIM attribute: (3573) OTHER_CIM CIM const [0..1] null <> MMS::MMSNotification.ConnFailInCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,109 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,109 [main] TRACE UmlAttribute - created (3573) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSNotification.ConnFailInCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,109 [main] ERROR UmlAttribute - unclassified CIM attribute: (3574) OTHER_CIM CIM const [0..1] null <> MMS::MMSNotification.ConnFailOutCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,109 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,109 [main] TRACE UmlAttribute - created (3574) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSNotification.ConnFailOutCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,109 [main] ERROR UmlAttribute - unclassified CIM attribute: (3575) OTHER_CIM CIM const [0..1] null <> MMS::MMSNotification.RejectRxCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,109 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,109 [main] TRACE UmlAttribute - created (3575) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSNotification.RejectRxCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,109 [main] ERROR UmlAttribute - unclassified CIM attribute: (3576) OTHER_CIM CIM const [0..1] null <> MMS::MMSNotification.RejectTxCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,109 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,109 [main] TRACE UmlAttribute - created (3576) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSNotification.RejectTxCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,110 [main] ERROR UmlAttribute - unclassified CIM attribute: (4054) OTHER_CIM CIM const [0..1] null <> SV and GSE common objects::GSEandSVCommon.GroupUpKeyFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,110 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,110 [main] TRACE UmlAttribute - created (4054) OTHER_CIM CIM const [0..1] attribute <> SV and GSE common objects::GSEandSVCommon.GroupUpKeyFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,110 [main] ERROR UmlAttribute - unclassified CIM attribute: (4055) OTHER_CIM CIM const [1..1] null <> SV and GSE common objects::GSEandSVCommon.KDCAuthFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,110 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,110 [main] TRACE UmlAttribute - created (4055) OTHER_CIM CIM const [1..1] attribute <> SV and GSE common objects::GSEandSVCommon.KDCAuthFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,110 [main] ERROR UmlAttribute - unclassified CIM attribute: (4056) OTHER_CIM CIM const [0..1] null <> SV and GSE common objects::GSEandSVCommon.KDCSessionKeyFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,110 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,110 [main] TRACE UmlAttribute - created (4056) OTHER_CIM CIM const [0..1] attribute <> SV and GSE common objects::GSEandSVCommon.KDCSessionKeyFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,110 [main] ERROR UmlAttribute - unclassified CIM attribute: (4057) OTHER_CIM CIM const [0..1] null <> SV and GSE common objects::GSEandSVPublisherAssociation.CBRef: Abstract Types::CharString +2024-09-07 16:20:04,110 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,111 [main] TRACE UmlAttribute - created (4057) OTHER_CIM CIM const [0..1] attribute <> SV and GSE common objects::GSEandSVPublisherAssociation.CBRef: Abstract Types::CharString +2024-09-07 16:20:04,111 [main] ERROR UmlAttribute - unclassified CIM attribute: (4058) OTHER_CIM CIM [0..1] null <> SV and GSE common objects::GSEandSVPublisherAssociation.CntRs: Abstract Types::CntRs +2024-09-07 16:20:04,111 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,111 [main] TRACE UmlAttribute - created (4058) OTHER_CIM CIM [0..1] attribute <> SV and GSE common objects::GSEandSVPublisherAssociation.CntRs: Abstract Types::CntRs +2024-09-07 16:20:04,111 [main] ERROR UmlAttribute - unclassified CIM attribute: (4059) OTHER_CIM CIM const [0..1] null <> SV and GSE common objects::GSEandSVPublisherAssociation.OutUv: Abstract Types::CounterTs +2024-09-07 16:20:04,111 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,111 [main] TRACE UmlAttribute - created (4059) OTHER_CIM CIM const [0..1] attribute <> SV and GSE common objects::GSEandSVPublisherAssociation.OutUv: Abstract Types::CounterTs +2024-09-07 16:20:04,111 [main] ERROR UmlAttribute - unclassified CIM attribute: (4366) OTHER_CIM CIM const [1..1] null <> SV and GSE common objects::GSEandSVPublisherAssociation.APPID: Abstract Types::CharString +2024-09-07 16:20:04,111 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,112 [main] TRACE UmlAttribute - created (4366) OTHER_CIM CIM const [1..1] attribute <> SV and GSE common objects::GSEandSVPublisherAssociation.APPID: Abstract Types::CharString +2024-09-07 16:20:04,112 [main] ERROR UmlAttribute - unclassified CIM attribute: (3829) OTHER_CIM CIM const [0..1] null <> SV and GSE common objects::GSEandSVPublisherAssociation.TxPduPerSecond: Abstract Types::Floating +2024-09-07 16:20:04,112 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,112 [main] TRACE UmlAttribute - created (3829) OTHER_CIM CIM const [0..1] attribute <> SV and GSE common objects::GSEandSVPublisherAssociation.TxPduPerSecond: Abstract Types::Floating +2024-09-07 16:20:04,112 [main] ERROR UmlAttribute - unclassified CIM attribute: (4061) OTHER_CIM CIM const [0..1] null <> SV and GSE common objects::GSEandSVSubscriberAssociation.CBRef: Abstract Types::CharString +2024-09-07 16:20:04,112 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,112 [main] TRACE UmlAttribute - created (4061) OTHER_CIM CIM const [0..1] attribute <> SV and GSE common objects::GSEandSVSubscriberAssociation.CBRef: Abstract Types::CharString +2024-09-07 16:20:04,112 [main] ERROR UmlAttribute - unclassified CIM attribute: (4062) OTHER_CIM CIM [0..1] null <> SV and GSE common objects::GSEandSVSubscriberAssociation.CntRs: Abstract Types::CntRs +2024-09-07 16:20:04,112 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,112 [main] TRACE UmlAttribute - created (4062) OTHER_CIM CIM [0..1] attribute <> SV and GSE common objects::GSEandSVSubscriberAssociation.CntRs: Abstract Types::CntRs +2024-09-07 16:20:04,112 [main] ERROR UmlAttribute - unclassified CIM attribute: (4063) OTHER_CIM CIM const [0..1] null <> SV and GSE common objects::GSEandSVSubscriberAssociation.InOvCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,112 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,113 [main] TRACE UmlAttribute - created (4063) OTHER_CIM CIM const [0..1] attribute <> SV and GSE common objects::GSEandSVSubscriberAssociation.InOvCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,113 [main] ERROR UmlAttribute - unclassified CIM attribute: (4064) OTHER_CIM CIM const [1..1] null <> SV and GSE common objects::GSEandSVSubscriberAssociation.MessageIntegrityFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,113 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,113 [main] TRACE UmlAttribute - created (4064) OTHER_CIM CIM const [1..1] attribute <> SV and GSE common objects::GSEandSVSubscriberAssociation.MessageIntegrityFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,113 [main] ERROR UmlAttribute - unclassified CIM attribute: (4067) OTHER_CIM CIM const [0..1] null <> SV and GSE common objects::GSEandSVSubscriberAssociation.RxPduPerSecond: Abstract Types::Floating +2024-09-07 16:20:04,113 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,113 [main] TRACE UmlAttribute - created (4067) OTHER_CIM CIM const [0..1] attribute <> SV and GSE common objects::GSEandSVSubscriberAssociation.RxPduPerSecond: Abstract Types::Floating +2024-09-07 16:20:04,116 [main] ERROR UmlAttribute - unclassified CIM attribute: (4365) OTHER_CIM CIM const [1..1] null <> SV and GSE common objects::GSEandSVSubscriberAssociation.APPID: Abstract Types::CharString +2024-09-07 16:20:04,116 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,117 [main] TRACE UmlAttribute - created (4365) OTHER_CIM CIM const [1..1] attribute <> SV and GSE common objects::GSEandSVSubscriberAssociation.APPID: Abstract Types::CharString +2024-09-07 16:20:04,117 [main] ERROR UmlAttribute - unclassified CIM attribute: (4367) OTHER_CIM CIM const [1..1] null <> SV and GSE common objects::GSEandSVSubscriberAssociation.RxAPPID: Abstract Types::CharStringTs +2024-09-07 16:20:04,117 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,117 [main] TRACE UmlAttribute - created (4367) OTHER_CIM CIM const [1..1] attribute <> SV and GSE common objects::GSEandSVSubscriberAssociation.RxAPPID: Abstract Types::CharStringTs +2024-09-07 16:20:04,117 [main] ERROR UmlAttribute - unclassified CIM attribute: (3844) OTHER_CIM CIM [0..1] null <> SV::SVProvider.CntRs: Abstract Types::CntRs +2024-09-07 16:20:04,117 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,117 [main] TRACE UmlAttribute - created (3844) OTHER_CIM CIM [0..1] attribute <> SV::SVProvider.CntRs: Abstract Types::CntRs +2024-09-07 16:20:04,117 [main] ERROR UmlAttribute - unclassified CIM attribute: (4052) OTHER_CIM CIM const [0..1] null <> SV::SVProvider.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,117 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,117 [main] TRACE UmlAttribute - created (4052) OTHER_CIM CIM const [0..1] attribute <> SV::SVProvider.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,117 [main] ERROR UmlAttribute - unclassified CIM attribute: (3845) OTHER_CIM CIM const [0..1] null <> SV::SVProvider.PDUSizeFail: Abstract Types::CounterTs +2024-09-07 16:20:04,117 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,117 [main] TRACE UmlAttribute - created (3845) OTHER_CIM CIM const [0..1] attribute <> SV::SVProvider.PDUSizeFail: Abstract Types::CounterTs +2024-09-07 16:20:04,117 [main] ERROR UmlAttribute - unclassified CIM attribute: (3846) OTHER_CIM CIM [0..*] null <
> SV::SVProvider.PIP: SV::SVPublisherAssociationIP +2024-09-07 16:20:04,118 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,118 [main] TRACE UmlAttribute - created (3846) OTHER_CIM CIM [0..*] attribute <
> SV::SVProvider.PIP: SV::SVPublisherAssociationIP +2024-09-07 16:20:04,118 [main] ERROR UmlAttribute - unclassified CIM attribute: (3847) OTHER_CIM CIM [0..*] null <
> SV::SVProvider.PL2: SV::SVPublisherAssociationL2 +2024-09-07 16:20:04,118 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,118 [main] TRACE UmlAttribute - created (3847) OTHER_CIM CIM [0..*] attribute <
> SV::SVProvider.PL2: SV::SVPublisherAssociationL2 +2024-09-07 16:20:04,118 [main] ERROR UmlAttribute - unclassified CIM attribute: (3848) OTHER_CIM CIM [0..1] null <> SV::SVProvider.SecurityNotification: SV::SVNotification +2024-09-07 16:20:04,118 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,118 [main] TRACE UmlAttribute - created (3848) OTHER_CIM CIM [0..1] attribute <> SV::SVProvider.SecurityNotification: SV::SVNotification +2024-09-07 16:20:04,118 [main] ERROR UmlAttribute - unclassified CIM attribute: (3849) OTHER_CIM CIM [0..*] null <
> SV::SVProvider.SIP: SV::SVSubcriberAssociationIP +2024-09-07 16:20:04,118 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,118 [main] TRACE UmlAttribute - created (3849) OTHER_CIM CIM [0..*] attribute <
> SV::SVProvider.SIP: SV::SVSubcriberAssociationIP +2024-09-07 16:20:04,118 [main] ERROR UmlAttribute - unclassified CIM attribute: (3850) OTHER_CIM CIM [0..*] null <
> SV::SVProvider.SL2: SV::SVSubcriberAssociationL2 +2024-09-07 16:20:04,119 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,119 [main] TRACE UmlAttribute - created (3850) OTHER_CIM CIM [0..*] attribute <
> SV::SVProvider.SL2: SV::SVSubcriberAssociationL2 +2024-09-07 16:20:04,119 [main] ERROR UmlAttribute - unclassified CIM attribute: (3817) OTHER_CIM CIM const [0..1] null <> SV::SVPublisherAssociationIP.DestIpAddr: Abstract Types::InetAddress +2024-09-07 16:20:04,119 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,119 [main] TRACE UmlAttribute - created (3817) OTHER_CIM CIM const [0..1] attribute <> SV::SVPublisherAssociationIP.DestIpAddr: Abstract Types::InetAddress +2024-09-07 16:20:04,119 [main] ERROR UmlAttribute - unclassified CIM attribute: (3818) OTHER_CIM CIM const [0..1] null <> SV::SVPublisherAssociationIP.DestIpAddrType: Abstract Types::InetAddressType +2024-09-07 16:20:04,119 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,119 [main] TRACE UmlAttribute - created (3818) OTHER_CIM CIM const [0..1] attribute <> SV::SVPublisherAssociationIP.DestIpAddrType: Abstract Types::InetAddressType +2024-09-07 16:20:04,119 [main] ERROR UmlAttribute - unclassified CIM attribute: (3819) OTHER_CIM CIM const [0..1] null <> SV::SVPublisherAssociationL2.DestMacAddr: Abstract Types::MacAddress +2024-09-07 16:20:04,119 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,120 [main] TRACE UmlAttribute - created (3819) OTHER_CIM CIM const [0..1] attribute <> SV::SVPublisherAssociationL2.DestMacAddr: Abstract Types::MacAddress +2024-09-07 16:20:04,120 [main] ERROR UmlAttribute - unclassified CIM attribute: (3823) OTHER_CIM CIM const [0..1] null <> SV::SVSubcriberAssociationIP.SrcIpAddr: Abstract Types::InetAddress +2024-09-07 16:20:04,121 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,121 [main] TRACE UmlAttribute - created (3823) OTHER_CIM CIM const [0..1] attribute <> SV::SVSubcriberAssociationIP.SrcIpAddr: Abstract Types::InetAddress +2024-09-07 16:20:04,121 [main] ERROR UmlAttribute - unclassified CIM attribute: (3824) OTHER_CIM CIM const [0..1] null <> SV::SVSubcriberAssociationIP.SrcIpAddrType: Abstract Types::InetAddressType +2024-09-07 16:20:04,122 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,122 [main] TRACE UmlAttribute - created (3824) OTHER_CIM CIM const [0..1] attribute <> SV::SVSubcriberAssociationIP.SrcIpAddrType: Abstract Types::InetAddressType +2024-09-07 16:20:04,122 [main] ERROR UmlAttribute - unclassified CIM attribute: (3825) OTHER_CIM CIM const [0..1] null <> SV::SVSubcriberAssociationL2.SrcMacAddr: Abstract Types::MacAddress +2024-09-07 16:20:04,122 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,122 [main] TRACE UmlAttribute - created (3825) OTHER_CIM CIM const [0..1] attribute <> SV::SVSubcriberAssociationL2.SrcMacAddr: Abstract Types::MacAddress +2024-09-07 16:20:04,122 [main] ERROR UmlAttribute - unclassified CIM attribute: (3750) OTHER_CIM CIM const [0..1] null <> GSE::GSESubscriberAssociation.ConfRevMis: Abstract Types::BooleanValue +2024-09-07 16:20:04,122 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,122 [main] TRACE UmlAttribute - created (3750) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubscriberAssociation.ConfRevMis: Abstract Types::BooleanValue +2024-09-07 16:20:04,123 [main] ERROR UmlAttribute - unclassified CIM attribute: (3755) OTHER_CIM CIM const [0..1] null <> GSE::GSESubscriberAssociation.NdsComm: Abstract Types::BooleanValue +2024-09-07 16:20:04,123 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,123 [main] TRACE UmlAttribute - created (3755) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubscriberAssociation.NdsComm: Abstract Types::BooleanValue +2024-09-07 16:20:04,123 [main] ERROR UmlAttribute - unclassified CIM attribute: (4368) OTHER_CIM CIM const [0..1] null <> GSE::GSESubscriberAssociation.ConfRev: Abstract Types::Integer +2024-09-07 16:20:04,123 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,123 [main] TRACE UmlAttribute - created (4368) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubscriberAssociation.ConfRev: Abstract Types::Integer +2024-09-07 16:20:04,123 [main] ERROR UmlAttribute - unclassified CIM attribute: (4369) OTHER_CIM CIM const [0..1] null <> GSE::GSESubscriberAssociation.RxConfRev: Abstract Types::IntegerTs +2024-09-07 16:20:04,123 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,124 [main] TRACE UmlAttribute - created (4369) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubscriberAssociation.RxConfRev: Abstract Types::IntegerTs +2024-09-07 16:20:04,124 [main] ERROR UmlAttribute - unclassified CIM attribute: (3758) OTHER_CIM CIM const [0..1] null <> GSE::GSESubscriberAssociation.TalExpCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,124 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,124 [main] TRACE UmlAttribute - created (3758) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubscriberAssociation.TalExpCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,124 [main] ERROR UmlAttribute - unclassified CIM attribute: (4370) OTHER_CIM CIM const [0..1] null <> GSE::GSESubscriberAssociation.OosErrCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,125 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,125 [main] TRACE UmlAttribute - created (4370) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubscriberAssociation.OosErrCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,125 [main] ERROR UmlAttribute - unclassified CIM attribute: (4371) OTHER_CIM CIM const [0..1] null <> GSE::GSESubscriberAssociation.DupMsgRx: Abstract Types::BooleanValueTs +2024-09-07 16:20:04,125 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,125 [main] TRACE UmlAttribute - created (4371) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubscriberAssociation.DupMsgRx: Abstract Types::BooleanValueTs +2024-09-07 16:20:04,126 [main] ERROR UmlAttribute - unclassified CIM attribute: (4372) OTHER_CIM CIM const [1..1] null <> GSE::GSESubscriberAssociation.DatSet: Abstract Types::CharString +2024-09-07 16:20:04,126 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,126 [main] TRACE UmlAttribute - created (4372) OTHER_CIM CIM const [1..1] attribute <> GSE::GSESubscriberAssociation.DatSet: Abstract Types::CharString +2024-09-07 16:20:04,126 [main] ERROR UmlAttribute - unclassified CIM attribute: (4373) OTHER_CIM CIM const [1..1] null <> GSE::GSESubscriberAssociation.RxDatSet: Abstract Types::CharStringTs +2024-09-07 16:20:04,126 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,127 [main] TRACE UmlAttribute - created (4373) OTHER_CIM CIM const [1..1] attribute <> GSE::GSESubscriberAssociation.RxDatSet: Abstract Types::CharStringTs +2024-09-07 16:20:04,127 [main] ERROR UmlAttribute - unclassified CIM attribute: (4374) OTHER_CIM CIM const [1..1] null <> GSE::GSESubscriberAssociation.GoID: Abstract Types::CharString +2024-09-07 16:20:04,127 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,127 [main] TRACE UmlAttribute - created (4374) OTHER_CIM CIM const [1..1] attribute <> GSE::GSESubscriberAssociation.GoID: Abstract Types::CharString +2024-09-07 16:20:04,127 [main] ERROR UmlAttribute - unclassified CIM attribute: (4375) OTHER_CIM CIM const [1..1] null <> GSE::GSESubscriberAssociation.RxGoID: Abstract Types::CharStringTs +2024-09-07 16:20:04,127 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,127 [main] TRACE UmlAttribute - created (4375) OTHER_CIM CIM const [1..1] attribute <> GSE::GSESubscriberAssociation.RxGoID: Abstract Types::CharStringTs +2024-09-07 16:20:04,127 [main] ERROR UmlAttribute - unclassified CIM attribute: (4376) OTHER_CIM CIM const [1..1] null <> GSE::GSESubscriberAssociation.StNum: Abstract Types::IntegerTs +2024-09-07 16:20:04,128 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,128 [main] TRACE UmlAttribute - created (4376) OTHER_CIM CIM const [1..1] attribute <> GSE::GSESubscriberAssociation.StNum: Abstract Types::IntegerTs +2024-09-07 16:20:04,128 [main] ERROR UmlAttribute - unclassified CIM attribute: (4377) OTHER_CIM CIM const [1..1] null <> GSE::GSESubscriberAssociation.SqNum: Abstract Types::IntegerTs +2024-09-07 16:20:04,130 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,131 [main] TRACE UmlAttribute - created (4377) OTHER_CIM CIM const [1..1] attribute <> GSE::GSESubscriberAssociation.SqNum: Abstract Types::IntegerTs +2024-09-07 16:20:04,131 [main] ERROR UmlAttribute - unclassified CIM attribute: (4378) OTHER_CIM CIM const [1..1] null <> GSE::GSESubscriberAssociation.RejectStNum: Abstract Types::IntegerTs +2024-09-07 16:20:04,131 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,131 [main] TRACE UmlAttribute - created (4378) OTHER_CIM CIM const [1..1] attribute <> GSE::GSESubscriberAssociation.RejectStNum: Abstract Types::IntegerTs +2024-09-07 16:20:04,131 [main] ERROR UmlAttribute - unclassified CIM attribute: (4379) OTHER_CIM CIM const [1..1] null <> GSE::GSESubscriberAssociation.RejectSqNum: Abstract Types::IntegerTs +2024-09-07 16:20:04,131 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,131 [main] TRACE UmlAttribute - created (4379) OTHER_CIM CIM const [1..1] attribute <> GSE::GSESubscriberAssociation.RejectSqNum: Abstract Types::IntegerTs +2024-09-07 16:20:04,131 [main] ERROR UmlAttribute - unclassified CIM attribute: (4494) OTHER_CIM CIM const [1..1] null <> GSE::GSESubscriberAssociation.RxT: Abstract Types::Timestamp +2024-09-07 16:20:04,132 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,132 [main] TRACE UmlAttribute - created (4494) OTHER_CIM CIM const [1..1] attribute <> GSE::GSESubscriberAssociation.RxT: Abstract Types::Timestamp +2024-09-07 16:20:04,132 [main] ERROR UmlAttribute - unclassified CIM attribute: (3243) OTHER_CIM CIM [0..1] null <> GSE::GSEProvider.CntRs: Abstract Types::CntRs +2024-09-07 16:20:04,132 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,132 [main] TRACE UmlAttribute - created (3243) OTHER_CIM CIM [0..1] attribute <> GSE::GSEProvider.CntRs: Abstract Types::CntRs +2024-09-07 16:20:04,132 [main] ERROR UmlAttribute - unclassified CIM attribute: (4053) OTHER_CIM CIM const [1..1] null <> GSE::GSEProvider.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,132 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,132 [main] TRACE UmlAttribute - created (4053) OTHER_CIM CIM const [1..1] attribute <> GSE::GSEProvider.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,132 [main] ERROR UmlAttribute - unclassified CIM attribute: (3773) OTHER_CIM CIM const [0..1] null <> GSE::GSEProvider.InErrCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,132 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,133 [main] TRACE UmlAttribute - created (3773) OTHER_CIM CIM const [0..1] attribute <> GSE::GSEProvider.InErrCnt: Abstract Types::CounterTs +2024-09-07 16:20:04,133 [main] ERROR UmlAttribute - unclassified CIM attribute: (4121) OTHER_CIM CIM const [0..1] null <> GSE::GSEProvider.InUnexpectedMulticast: Abstract Types::CounterTs +2024-09-07 16:20:04,133 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,133 [main] TRACE UmlAttribute - created (4121) OTHER_CIM CIM const [0..1] attribute <> GSE::GSEProvider.InUnexpectedMulticast: Abstract Types::CounterTs +2024-09-07 16:20:04,133 [main] ERROR UmlAttribute - unclassified CIM attribute: (3744) OTHER_CIM CIM [0..*] null <
> GSE::GSEProvider.PIP: GSE::GSEPublisherAssociationIP +2024-09-07 16:20:04,133 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,133 [main] TRACE UmlAttribute - created (3744) OTHER_CIM CIM [0..*] attribute <
> GSE::GSEProvider.PIP: GSE::GSEPublisherAssociationIP +2024-09-07 16:20:04,133 [main] ERROR UmlAttribute - unclassified CIM attribute: (3745) OTHER_CIM CIM [0..*] null <
> GSE::GSEProvider.PL2: GSE::GSEPublisherAssociationL2 +2024-09-07 16:20:04,133 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,133 [main] TRACE UmlAttribute - created (3745) OTHER_CIM CIM [0..*] attribute <
> GSE::GSEProvider.PL2: GSE::GSEPublisherAssociationL2 +2024-09-07 16:20:04,133 [main] ERROR UmlAttribute - unclassified CIM attribute: (3618) OTHER_CIM CIM [0..1] null <> GSE::GSEProvider.SecurityNotification: GSE::GSENotification +2024-09-07 16:20:04,134 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,134 [main] TRACE UmlAttribute - created (3618) OTHER_CIM CIM [0..1] attribute <> GSE::GSEProvider.SecurityNotification: GSE::GSENotification +2024-09-07 16:20:04,134 [main] ERROR UmlAttribute - unclassified CIM attribute: (3046) OTHER_CIM CIM [0..*] null <
> GSE::GSEProvider.SIP: GSE::GSESubcriberAssociationIP +2024-09-07 16:20:04,134 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,134 [main] TRACE UmlAttribute - created (3046) OTHER_CIM CIM [0..*] attribute <
> GSE::GSEProvider.SIP: GSE::GSESubcriberAssociationIP +2024-09-07 16:20:04,134 [main] ERROR UmlAttribute - unclassified CIM attribute: (3746) OTHER_CIM CIM [0..*] null <
> GSE::GSEProvider.SL2: GSE::GSESubcriberAssociationL2 +2024-09-07 16:20:04,134 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,134 [main] TRACE UmlAttribute - created (3746) OTHER_CIM CIM [0..*] attribute <
> GSE::GSEProvider.SL2: GSE::GSESubcriberAssociationL2 +2024-09-07 16:20:04,134 [main] ERROR UmlAttribute - unclassified CIM attribute: (3803) OTHER_CIM CIM const [0..1] null <> GSE::GSEPublisherAssociationIP.DestIpAddr: Abstract Types::InetAddress +2024-09-07 16:20:04,134 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,134 [main] TRACE UmlAttribute - created (3803) OTHER_CIM CIM const [0..1] attribute <> GSE::GSEPublisherAssociationIP.DestIpAddr: Abstract Types::InetAddress +2024-09-07 16:20:04,134 [main] ERROR UmlAttribute - unclassified CIM attribute: (3802) OTHER_CIM CIM const [0..1] null <> GSE::GSEPublisherAssociationIP.DestIpAddrType: Abstract Types::InetAddressType +2024-09-07 16:20:04,134 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,134 [main] TRACE UmlAttribute - created (3802) OTHER_CIM CIM const [0..1] attribute <> GSE::GSEPublisherAssociationIP.DestIpAddrType: Abstract Types::InetAddressType +2024-09-07 16:20:04,134 [main] ERROR UmlAttribute - unclassified CIM attribute: (3801) OTHER_CIM CIM const [0..1] null <> GSE::GSEPublisherAssociationL2.DestMacAddr: Abstract Types::MacAddress +2024-09-07 16:20:04,134 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,134 [main] TRACE UmlAttribute - created (3801) OTHER_CIM CIM const [0..1] attribute <> GSE::GSEPublisherAssociationL2.DestMacAddr: Abstract Types::MacAddress +2024-09-07 16:20:04,134 [main] ERROR UmlAttribute - unclassified CIM attribute: (4362) OTHER_CIM CIM const [0..1] null <> GSE::GSEPublisherAssociationL2.SrcMacAddr: Abstract Types::MacAddress +2024-09-07 16:20:04,135 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,135 [main] TRACE UmlAttribute - created (4362) OTHER_CIM CIM const [0..1] attribute <> GSE::GSEPublisherAssociationL2.SrcMacAddr: Abstract Types::MacAddress +2024-09-07 16:20:04,135 [main] ERROR UmlAttribute - unclassified CIM attribute: (3740) OTHER_CIM CIM const [0..1] null <> GSE::GSESubcriberAssociationIP.SrcIpAddr: Abstract Types::InetAddress +2024-09-07 16:20:04,135 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,135 [main] TRACE UmlAttribute - created (3740) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubcriberAssociationIP.SrcIpAddr: Abstract Types::InetAddress +2024-09-07 16:20:04,135 [main] ERROR UmlAttribute - unclassified CIM attribute: (3739) OTHER_CIM CIM const [0..1] null <> GSE::GSESubcriberAssociationIP.SrcIpAddrType: Abstract Types::InetAddressType +2024-09-07 16:20:04,135 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,135 [main] TRACE UmlAttribute - created (3739) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubcriberAssociationIP.SrcIpAddrType: Abstract Types::InetAddressType +2024-09-07 16:20:04,135 [main] ERROR UmlAttribute - unclassified CIM attribute: (3742) OTHER_CIM CIM const [0..1] null <> GSE::GSESubcriberAssociationL2.SrcMacAddr: Abstract Types::MacAddress +2024-09-07 16:20:04,135 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,135 [main] TRACE UmlAttribute - created (3742) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubcriberAssociationL2.SrcMacAddr: Abstract Types::MacAddress +2024-09-07 16:20:04,135 [main] ERROR UmlAttribute - unclassified CIM attribute: (4361) OTHER_CIM CIM const [0..1] null <> GSE::GSESubcriberAssociationL2.DstMacAddr: Abstract Types::MacAddress +2024-09-07 16:20:04,136 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,136 [main] TRACE UmlAttribute - created (4361) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubcriberAssociationL2.DstMacAddr: Abstract Types::MacAddress +2024-09-07 16:20:04,136 [main] ERROR UmlAttribute - unclassified CIM attribute: (2651) OTHER_CIM CIM const [1..1] null <> Clocks Agent::Clock.clockTamperDetected: Abstract Types::Timestamp +2024-09-07 16:20:04,136 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,136 [main] TRACE UmlAttribute - created (2651) OTHER_CIM CIM const [1..1] attribute <> Clocks Agent::Clock.clockTamperDetected: Abstract Types::Timestamp +2024-09-07 16:20:04,136 [main] ERROR UmlAttribute - unclassified CIM attribute: (2656) OTHER_CIM CIM const [1..1] null <> Clocks Agent::Clock.LastClockHoldover: Abstract Types::Timestamp +2024-09-07 16:20:04,137 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,138 [main] TRACE UmlAttribute - created (2656) OTHER_CIM CIM const [1..1] attribute <> Clocks Agent::Clock.LastClockHoldover: Abstract Types::Timestamp +2024-09-07 16:20:04,138 [main] ERROR UmlAttribute - unclassified CIM attribute: (2657) OTHER_CIM CIM [0..1] null <> Clocks Agent::Clock.CntRs: Abstract Types::CntRs +2024-09-07 16:20:04,138 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,138 [main] TRACE UmlAttribute - created (2657) OTHER_CIM CIM [0..1] attribute <> Clocks Agent::Clock.CntRs: Abstract Types::CntRs +2024-09-07 16:20:04,138 [main] ERROR UmlAttribute - unclassified CIM attribute: (2650) OTHER_CIM CIM [0..n] null <
> Clocks Agent::Clock.Clocks: Clocks Agent::ClockEntry +2024-09-07 16:20:04,138 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,139 [main] TRACE UmlAttribute - created (2650) OTHER_CIM CIM [0..n] attribute <
> Clocks Agent::Clock.Clocks: Clocks Agent::ClockEntry +2024-09-07 16:20:04,139 [main] ERROR UmlAttribute - unclassified CIM attribute: (3631) OTHER_CIM CIM [0..1] null <> Clocks Agent::Clock.SecurityNotification: Clocks Agent::SecurityNotification +2024-09-07 16:20:04,140 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,140 [main] TRACE UmlAttribute - created (3631) OTHER_CIM CIM [0..1] attribute <> Clocks Agent::Clock.SecurityNotification: Clocks Agent::SecurityNotification +2024-09-07 16:20:04,140 [main] ERROR UmlAttribute - unclassified CIM attribute: (2646) OTHER_CIM CIM const [0..1] null <> Clocks Agent::ClockEntry.ClockAccuracy: Abstract Types::Integer +2024-09-07 16:20:04,140 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,140 [main] TRACE UmlAttribute - created (2646) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::ClockEntry.ClockAccuracy: Abstract Types::Integer +2024-09-07 16:20:04,140 [main] ERROR UmlAttribute - unclassified CIM attribute: (3085) OTHER_CIM CIM const [0..1] null <> Clocks Agent::ClockEntry.ClockIndex: Abstract Types::EntityIndex +2024-09-07 16:20:04,140 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,140 [main] TRACE UmlAttribute - created (3085) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::ClockEntry.ClockIndex: Abstract Types::EntityIndex +2024-09-07 16:20:04,140 [main] ERROR UmlAttribute - unclassified CIM attribute: (3729) OTHER_CIM CIM const [0..1] null <> Clocks Agent::ClockEntry.ClockIssue: EnumeratedTypes::TimSyncIssueType +2024-09-07 16:20:04,140 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,141 [main] TRACE UmlAttribute - created (3729) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::ClockEntry.ClockIssue: EnumeratedTypes::TimSyncIssueType +2024-09-07 16:20:04,141 [main] ERROR UmlAttribute - unclassified CIM attribute: (2649) OTHER_CIM CIM const [0..1] null <> Clocks Agent::ClockEntry.ClockTamperDetected: Abstract Types::BooleanValue +2024-09-07 16:20:04,141 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,141 [main] TRACE UmlAttribute - created (2649) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::ClockEntry.ClockTamperDetected: Abstract Types::BooleanValue +2024-09-07 16:20:04,141 [main] ERROR UmlAttribute - unclassified CIM attribute: (2645) OTHER_CIM CIM const [0..1] null <> Clocks Agent::ClockEntry.TmSrc: EnumeratedTypes::TimSyncSrcType +2024-09-07 16:20:04,141 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,141 [main] TRACE UmlAttribute - created (2645) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::ClockEntry.TmSrc: EnumeratedTypes::TimSyncSrcType +2024-09-07 16:20:04,141 [main] ERROR UmlAttribute - unclassified CIM attribute: (2655) OTHER_CIM CIM const [0..1] null <> Clocks Agent::ClockEntry.HoldOver: Abstract Types::BooleanValue +2024-09-07 16:20:04,142 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,142 [main] TRACE UmlAttribute - created (2655) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::ClockEntry.HoldOver: Abstract Types::BooleanValue +2024-09-07 16:20:04,142 [main] ERROR UmlAttribute - unclassified CIM attribute: (2648) OTHER_CIM CIM const [0..1] null <> Clocks Agent::ClockEntry.LastSyncOffset: Abstract Types::FloatingTs +2024-09-07 16:20:04,142 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,142 [main] TRACE UmlAttribute - created (2648) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::ClockEntry.LastSyncOffset: Abstract Types::FloatingTs +2024-09-07 16:20:04,142 [main] ERROR UmlAttribute - unclassified CIM attribute: (2653) OTHER_CIM CIM const [0..1] null <> Clocks Agent::ClockEntry.TimeSourceAvailable: Abstract Types::BooleanValue +2024-09-07 16:20:04,142 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,143 [main] TRACE UmlAttribute - created (2653) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::ClockEntry.TimeSourceAvailable: Abstract Types::BooleanValue +2024-09-07 16:20:04,143 [main] ERROR UmlAttribute - unclassified CIM attribute: (2652) OTHER_CIM CIM const [0..1] null <> Clocks Agent::ClockEntry.TimeTraceable: Abstract Types::BooleanValue +2024-09-07 16:20:04,143 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,143 [main] TRACE UmlAttribute - created (2652) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::ClockEntry.TimeTraceable: Abstract Types::BooleanValue +2024-09-07 16:20:04,143 [main] ERROR UmlAttribute - unclassified CIM attribute: (3632) OTHER_CIM CIM const [0..1] null <> Clocks Agent::SecurityNotification.clockTamperDetected: Abstract Types::Timestamp +2024-09-07 16:20:04,143 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,143 [main] TRACE UmlAttribute - created (3632) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::SecurityNotification.clockTamperDetected: Abstract Types::Timestamp +2024-09-07 16:20:04,143 [main] ERROR UmlAttribute - unclassified CIM attribute: (3319) OTHER_CIM CIM const [0..1] null <> Interfaces Agent::Interface.ID: Abstract Types::EntityIndex +2024-09-07 16:20:04,143 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,144 [main] TRACE UmlAttribute - created (3319) OTHER_CIM CIM const [0..1] attribute <> Interfaces Agent::Interface.ID: Abstract Types::EntityIndex +2024-09-07 16:20:04,144 [main] ERROR UmlAttribute - unclassified CIM attribute: (3320) OTHER_CIM CIM const [0..1] null <> Interfaces Agent::Interface.Descr: Abstract Types::CharString +2024-09-07 16:20:04,144 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,144 [main] TRACE UmlAttribute - created (3320) OTHER_CIM CIM const [0..1] attribute <> Interfaces Agent::Interface.Descr: Abstract Types::CharString +2024-09-07 16:20:04,144 [main] ERROR UmlAttribute - unclassified CIM attribute: (3415) OTHER_CIM CIM const [0..1] null <> Interfaces Agent::Interface.IntType: EnumeratedTypes::IntType +2024-09-07 16:20:04,144 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,144 [main] TRACE UmlAttribute - created (3415) OTHER_CIM CIM const [0..1] attribute <> Interfaces Agent::Interface.IntType: EnumeratedTypes::IntType +2024-09-07 16:20:04,145 [main] ERROR UmlAttribute - unclassified CIM attribute: (3323) OTHER_CIM CIM const [0..1] null <> Interfaces Agent::Interface.Operable: Abstract Types::BooleanValueTs +2024-09-07 16:20:04,145 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,145 [main] TRACE UmlAttribute - created (3323) OTHER_CIM CIM const [0..1] attribute <> Interfaces Agent::Interface.Operable: Abstract Types::BooleanValueTs +2024-09-07 16:20:04,145 [main] ERROR UmlAttribute - unclassified CIM attribute: (3318) OTHER_CIM CIM const [0..1] null <> Interfaces Agent::Interface.Online: Abstract Types::BooleanValueTs +2024-09-07 16:20:04,145 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,145 [main] TRACE UmlAttribute - created (3318) OTHER_CIM CIM const [0..1] attribute <> Interfaces Agent::Interface.Online: Abstract Types::BooleanValueTs +2024-09-07 16:20:04,145 [main] ERROR UmlAttribute - unclassified CIM attribute: (3322) OTHER_CIM CIM const [0..1] null <> Interfaces Agent::Interface.Faulty: Abstract Types::BooleanValueTs +2024-09-07 16:20:04,146 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,146 [main] TRACE UmlAttribute - created (3322) OTHER_CIM CIM const [0..1] attribute <> Interfaces Agent::Interface.Faulty: Abstract Types::BooleanValueTs +2024-09-07 16:20:04,146 [main] ERROR UmlAttribute - unclassified CIM attribute: (3321) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interface.CntRs: Abstract Types::CntRs +2024-09-07 16:20:04,146 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,146 [main] TRACE UmlAttribute - created (3321) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interface.CntRs: Abstract Types::CntRs +2024-09-07 16:20:04,146 [main] ERROR UmlAttribute - unclassified CIM attribute: (3652) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.serAvail: Abstract Types::Integer +2024-09-07 16:20:04,146 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,146 [main] TRACE UmlAttribute - created (3652) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.serAvail: Abstract Types::Integer +2024-09-07 16:20:04,146 [main] ERROR UmlAttribute - unclassified CIM attribute: (3657) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.serActive: Abstract Types::IntegerTs +2024-09-07 16:20:04,147 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,147 [main] TRACE UmlAttribute - created (3657) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.serActive: Abstract Types::IntegerTs +2024-09-07 16:20:04,147 [main] ERROR UmlAttribute - unclassified CIM attribute: (3662) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.serFail: Abstract Types::IntegerTs +2024-09-07 16:20:04,147 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,147 [main] TRACE UmlAttribute - created (3662) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.serFail: Abstract Types::IntegerTs +2024-09-07 16:20:04,147 [main] ERROR UmlAttribute - unclassified CIM attribute: (3653) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.ethAvail: Abstract Types::Integer +2024-09-07 16:20:04,147 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,148 [main] TRACE UmlAttribute - created (3653) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.ethAvail: Abstract Types::Integer +2024-09-07 16:20:04,148 [main] ERROR UmlAttribute - unclassified CIM attribute: (3658) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.ethActive: Abstract Types::IntegerTs +2024-09-07 16:20:04,148 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,148 [main] TRACE UmlAttribute - created (3658) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.ethActive: Abstract Types::IntegerTs +2024-09-07 16:20:04,148 [main] ERROR UmlAttribute - unclassified CIM attribute: (3663) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.ethFail: Abstract Types::IntegerTs +2024-09-07 16:20:04,148 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,148 [main] TRACE UmlAttribute - created (3663) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.ethFail: Abstract Types::IntegerTs +2024-09-07 16:20:04,148 [main] ERROR UmlAttribute - unclassified CIM attribute: (3654) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.algAvail: Abstract Types::Integer +2024-09-07 16:20:04,149 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,149 [main] TRACE UmlAttribute - created (3654) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.algAvail: Abstract Types::Integer +2024-09-07 16:20:04,149 [main] ERROR UmlAttribute - unclassified CIM attribute: (3659) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.algActive: Abstract Types::IntegerTs +2024-09-07 16:20:04,149 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,149 [main] TRACE UmlAttribute - created (3659) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.algActive: Abstract Types::IntegerTs +2024-09-07 16:20:04,149 [main] ERROR UmlAttribute - unclassified CIM attribute: (3664) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.algFail: Abstract Types::IntegerTs +2024-09-07 16:20:04,149 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,150 [main] TRACE UmlAttribute - created (3664) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.algFail: Abstract Types::IntegerTs +2024-09-07 16:20:04,150 [main] ERROR UmlAttribute - unclassified CIM attribute: (3655) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.keyAvail: Abstract Types::Integer +2024-09-07 16:20:04,150 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,150 [main] TRACE UmlAttribute - created (3655) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.keyAvail: Abstract Types::Integer +2024-09-07 16:20:04,150 [main] ERROR UmlAttribute - unclassified CIM attribute: (3660) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.keyActive: Abstract Types::IntegerTs +2024-09-07 16:20:04,150 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,150 [main] TRACE UmlAttribute - created (3660) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.keyActive: Abstract Types::IntegerTs +2024-09-07 16:20:04,151 [main] ERROR UmlAttribute - unclassified CIM attribute: (3665) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.keyFail: Abstract Types::IntegerTs +2024-09-07 16:20:04,151 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,151 [main] TRACE UmlAttribute - created (3665) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.keyFail: Abstract Types::IntegerTs +2024-09-07 16:20:04,151 [main] ERROR UmlAttribute - unclassified CIM attribute: (3656) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.usbAvail: Abstract Types::Integer +2024-09-07 16:20:04,151 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,151 [main] TRACE UmlAttribute - created (3656) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.usbAvail: Abstract Types::Integer +2024-09-07 16:20:04,151 [main] ERROR UmlAttribute - unclassified CIM attribute: (3661) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.usbActive: Abstract Types::IntegerTs +2024-09-07 16:20:04,152 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,152 [main] TRACE UmlAttribute - created (3661) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.usbActive: Abstract Types::IntegerTs +2024-09-07 16:20:04,152 [main] ERROR UmlAttribute - unclassified CIM attribute: (3666) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.usbFail: Abstract Types::IntegerTs +2024-09-07 16:20:04,152 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,152 [main] TRACE UmlAttribute - created (3666) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.usbFail: Abstract Types::IntegerTs +2024-09-07 16:20:04,152 [main] ERROR UmlAttribute - unclassified CIM attribute: (3283) OTHER_CIM CIM [0..*] null <
> Interfaces Agent::Interfaces.SER: Interfaces Agent::SEREntry +2024-09-07 16:20:04,152 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,152 [main] TRACE UmlAttribute - created (3283) OTHER_CIM CIM [0..*] attribute <
> Interfaces Agent::Interfaces.SER: Interfaces Agent::SEREntry +2024-09-07 16:20:04,152 [main] ERROR UmlAttribute - unclassified CIM attribute: (3297) OTHER_CIM CIM [0..*] null <
> Interfaces Agent::Interfaces.ETH: Interfaces Agent::ETHEntry +2024-09-07 16:20:04,152 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,152 [main] TRACE UmlAttribute - created (3297) OTHER_CIM CIM [0..*] attribute <
> Interfaces Agent::Interfaces.ETH: Interfaces Agent::ETHEntry +2024-09-07 16:20:04,152 [main] ERROR UmlAttribute - unclassified CIM attribute: (3298) OTHER_CIM CIM [0..*] null <
> Interfaces Agent::Interfaces.USB: Interfaces Agent::USBEntry +2024-09-07 16:20:04,153 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,153 [main] TRACE UmlAttribute - created (3298) OTHER_CIM CIM [0..*] attribute <
> Interfaces Agent::Interfaces.USB: Interfaces Agent::USBEntry +2024-09-07 16:20:04,153 [main] ERROR UmlAttribute - unclassified CIM attribute: (3299) OTHER_CIM CIM [0..*] null <
> Interfaces Agent::Interfaces.KEY: Interfaces Agent::KEYEntry +2024-09-07 16:20:04,153 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,154 [main] TRACE UmlAttribute - created (3299) OTHER_CIM CIM [0..*] attribute <
> Interfaces Agent::Interfaces.KEY: Interfaces Agent::KEYEntry +2024-09-07 16:20:04,155 [main] ERROR UmlAttribute - unclassified CIM attribute: (3328) OTHER_CIM CIM [0..*] null <
> Interfaces Agent::Interfaces.ALG: Interfaces Agent::ALGEntry +2024-09-07 16:20:04,155 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,155 [main] TRACE UmlAttribute - created (3328) OTHER_CIM CIM [0..*] attribute <
> Interfaces Agent::Interfaces.ALG: Interfaces Agent::ALGEntry +2024-09-07 16:20:04,155 [main] ERROR UmlAttribute - unclassified CIM attribute: (3678) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.StateNotification: Interfaces Agent::Notification +2024-09-07 16:20:04,155 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,156 [main] TRACE UmlAttribute - created (3678) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.StateNotification: Interfaces Agent::Notification +2024-09-07 16:20:04,157 [main] ERROR UmlAttribute - unclassified CIM attribute: (3327) OTHER_CIM CIM const [0..1] null <> Interfaces Agent::KEYEntry.Locked: Abstract Types::BooleanValueTs +2024-09-07 16:20:04,157 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,157 [main] TRACE UmlAttribute - created (3327) OTHER_CIM CIM const [0..1] attribute <> Interfaces Agent::KEYEntry.Locked: Abstract Types::BooleanValueTs +2024-09-07 16:20:04,157 [main] ERROR UmlAttribute - unclassified CIM attribute: (3325) OTHER_CIM CIM const [0..1] null <> Interfaces Agent::SEREntry.ByteIn: Abstract Types::CounterTs +2024-09-07 16:20:04,157 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,158 [main] TRACE UmlAttribute - created (3325) OTHER_CIM CIM const [0..1] attribute <> Interfaces Agent::SEREntry.ByteIn: Abstract Types::CounterTs +2024-09-07 16:20:04,158 [main] ERROR UmlAttribute - unclassified CIM attribute: (3326) OTHER_CIM CIM const [0..1] null <> Interfaces Agent::SEREntry.ByteOut: Abstract Types::CounterTs +2024-09-07 16:20:04,158 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,158 [main] TRACE UmlAttribute - created (3326) OTHER_CIM CIM const [0..1] attribute <> Interfaces Agent::SEREntry.ByteOut: Abstract Types::CounterTs +2024-09-07 16:20:04,158 [main] ERROR UmlAttribute - unclassified CIM attribute: (3668) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.serActive: Abstract Types::IntegerTs +2024-09-07 16:20:04,158 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,158 [main] TRACE UmlAttribute - created (3668) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.serActive: Abstract Types::IntegerTs +2024-09-07 16:20:04,158 [main] ERROR UmlAttribute - unclassified CIM attribute: (3669) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.serFail: Abstract Types::IntegerTs +2024-09-07 16:20:04,159 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,159 [main] TRACE UmlAttribute - created (3669) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.serFail: Abstract Types::IntegerTs +2024-09-07 16:20:04,159 [main] ERROR UmlAttribute - unclassified CIM attribute: (3670) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.ethActive: Abstract Types::IntegerTs +2024-09-07 16:20:04,159 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,159 [main] TRACE UmlAttribute - created (3670) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.ethActive: Abstract Types::IntegerTs +2024-09-07 16:20:04,159 [main] ERROR UmlAttribute - unclassified CIM attribute: (3671) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.ethFail: Abstract Types::IntegerTs +2024-09-07 16:20:04,160 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,160 [main] TRACE UmlAttribute - created (3671) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.ethFail: Abstract Types::IntegerTs +2024-09-07 16:20:04,160 [main] ERROR UmlAttribute - unclassified CIM attribute: (3672) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.algActive: Abstract Types::IntegerTs +2024-09-07 16:20:04,160 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,160 [main] TRACE UmlAttribute - created (3672) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.algActive: Abstract Types::IntegerTs +2024-09-07 16:20:04,160 [main] ERROR UmlAttribute - unclassified CIM attribute: (3673) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.algFail: Abstract Types::IntegerTs +2024-09-07 16:20:04,160 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,160 [main] TRACE UmlAttribute - created (3673) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.algFail: Abstract Types::IntegerTs +2024-09-07 16:20:04,160 [main] ERROR UmlAttribute - unclassified CIM attribute: (3667) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.keyActive: Abstract Types::IntegerTs +2024-09-07 16:20:04,160 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,161 [main] TRACE UmlAttribute - created (3667) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.keyActive: Abstract Types::IntegerTs +2024-09-07 16:20:04,161 [main] ERROR UmlAttribute - unclassified CIM attribute: (3674) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.keyFail: Abstract Types::IntegerTs +2024-09-07 16:20:04,161 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,161 [main] TRACE UmlAttribute - created (3674) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.keyFail: Abstract Types::IntegerTs +2024-09-07 16:20:04,161 [main] ERROR UmlAttribute - unclassified CIM attribute: (3675) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.usbActive: Abstract Types::IntegerTs +2024-09-07 16:20:04,161 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,161 [main] TRACE UmlAttribute - created (3675) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.usbActive: Abstract Types::IntegerTs +2024-09-07 16:20:04,161 [main] ERROR UmlAttribute - unclassified CIM attribute: (3676) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.usbFail: Abstract Types::IntegerTs +2024-09-07 16:20:04,161 [main] TRACE ValueRange - '' has no values. +2024-09-07 16:20:04,161 [main] TRACE UmlAttribute - created (3676) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.usbFail: Abstract Types::IntegerTs +2024-09-07 16:20:04,161 [main] INFO EaModelBuilder - creating in-memory associations ... +2024-09-07 16:20:04,164 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 16:20:04,164 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 16:20:04,168 [main] TRACE UmlAssociation - created (185) OTHER_CIM CIM association <>, qname='health.<> - Attribute.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable); otherEnd: OTHER_CIM [?..?] health.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] health.<> (navigable); otherEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable) +2024-09-07 16:20:04,171 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 16:20:04,171 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 16:20:04,172 [main] TRACE UmlAssociation - created (179) OTHER_CIM CIM association <>, qname='protocol.<> - Attribute.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable); otherEnd: OTHER_CIM [?..?] protocol.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] protocol.<> (navigable); otherEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable) +2024-09-07 16:20:04,172 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 16:20:04,172 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 16:20:04,172 [main] TRACE UmlAssociation - created (180) OTHER_CIM CIM association <>, qname='security.<> - Attribute.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable); otherEnd: OTHER_CIM [?..?] security.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] security.<> (navigable); otherEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable) +2024-09-07 16:20:04,172 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 16:20:04,172 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 16:20:04,172 [main] TRACE UmlAssociation - created (183) OTHER_CIM CIM association <>, qname='index.<> - Attribute.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable); otherEnd: OTHER_CIM [?..?] index.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] index.<> (navigable); otherEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable) +2024-09-07 16:20:04,172 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 16:20:04,172 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 16:20:04,172 [main] TRACE UmlAssociation - created (184) OTHER_CIM CIM association <>, qname='identity.<> - Attribute.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable); otherEnd: OTHER_CIM [?..?] identity.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] identity.<> (navigable); otherEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable) +2024-09-07 16:20:04,172 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 16:20:04,172 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 16:20:04,172 [main] TRACE UmlAssociation - created (186) OTHER_CIM CIM association <>, qname='performance.<> - Attribute.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable); otherEnd: OTHER_CIM [?..?] performance.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] performance.<> (navigable); otherEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable) +2024-09-07 16:20:04,172 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 16:20:04,172 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 16:20:04,172 [main] TRACE UmlAssociation - created (187) OTHER_CIM CIM association <>, qname='setvalue.<> - Attribute.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable); otherEnd: OTHER_CIM [?..?] setvalue.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] setvalue.<> (navigable); otherEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable) +2024-09-07 16:20:04,172 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 16:20:04,173 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 16:20:04,173 [main] TRACE UmlAssociation - created (207) OTHER_CIM CIM association <>, qname='trap.<> - Attribute.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable); otherEnd: OTHER_CIM [?..?] trap.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] trap.<> (navigable); otherEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable) +2024-09-07 16:20:04,173 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 16:20:04,173 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 16:20:04,173 [main] TRACE UmlAssociation - created (188) OTHER_CIM CIM association <>, qname='table.<> - Attribute.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable); otherEnd: OTHER_CIM [?..?] table.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] table.<> (navigable); otherEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable) +2024-09-07 16:20:04,173 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 16:20:04,173 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 16:20:04,173 [main] TRACE UmlAssociation - created (181) OTHER_CIM CIM association <>, qname='nsmEvent.<> - Class.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Class.<> (non-navigable); otherEnd: OTHER_CIM [?..?] nsmEvent.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] nsmEvent.<> (navigable); otherEnd: OTHER_CIM [?..?] Class.<> (non-navigable) +2024-09-07 16:20:04,173 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 16:20:04,173 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 16:20:04,173 [main] TRACE UmlAssociation - created (226) OTHER_CIM CIM association <>, qname='nsmEntry.<> - Class.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Class.<> (non-navigable); otherEnd: OTHER_CIM [?..?] nsmEntry.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] nsmEntry.<> (navigable); otherEnd: OTHER_CIM [?..?] Class.<> (non-navigable) +2024-09-07 16:20:04,173 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 16:20:04,173 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 16:20:04,173 [main] TRACE UmlAssociation - created (182) OTHER_CIM CIM association <>, qname='nsmAgent.<> - Class.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Class.<> (non-navigable); otherEnd: OTHER_CIM [?..?] nsmAgent.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] nsmAgent.<> (navigable); otherEnd: OTHER_CIM [?..?] Class.<> (non-navigable) +2024-09-07 16:20:04,173 [main] INFO EaModelBuilder - creating in-memory dependencies ... +2024-09-07 16:20:04,174 [main] INFO Util - time=[0:00:07.558] created in-memory model and exported normative diagrams +2024-09-07 16:20:04,174 [main] INFO Util - +2024-09-07 16:20:04,174 [main] INFO Util - +2024-09-07 16:20:04,174 [main] INFO Util - ------------------------------------------------ +2024-09-07 16:20:04,174 [main] INFO Util - closing EA file 'C:\Users\gigi\git\jCleanCim\input\IEC62351-7-Ed2-FDIS-20240901.eap'... +2024-09-07 16:20:04,787 [main] INFO Util - time=[0:00:00.613] closed EA file. +2024-09-07 16:20:04,787 [main] INFO Util - +2024-09-07 16:20:04,787 [main] INFO Util - time=[0:00:56.219] built model from 'iso (CIM)' +2024-09-07 16:20:04,787 [main] INFO Util - +2024-09-07 16:20:04,788 [main] INFO Util - +2024-09-07 16:20:04,788 [main] INFO Util - ================================================ +2024-09-07 16:20:04,788 [main] INFO Util - generating MIBs from iso (CIM) +2024-09-07 16:20:04,788 [main] INFO Util - ================================================ +2024-09-07 16:20:04,788 [main] INFO Util - +2024-09-07 16:20:04,788 [main] INFO Util - ------------------------------------------------ +2024-09-07 16:20:04,788 [main] INFO Util - full MIBs ... +2024-09-07 16:20:05,080 [main] INFO Util - +2024-09-07 16:20:05,081 [main] INFO Util - ------------------------------------------------ +2024-09-07 16:20:05,081 [main] INFO Util - light MIBs ... +2024-09-07 16:20:05,326 [main] INFO Util - time=[0:00:00.538] generated MIBs in: C:\Users\gigi\git\jCleanCim\output\mibs +2024-09-07 16:20:05,326 [main] INFO Util - +2024-09-07 16:20:05,326 [main] INFO Util - +2024-09-07 16:20:05,326 [main] INFO Util - ================================================ +2024-09-07 16:20:05,326 [main] INFO Util - generating doc from iso (CIM) +2024-09-07 16:20:05,327 [main] INFO Util - ================================================ +2024-09-07 16:20:05,327 [main] INFO Util - +2024-09-07 16:20:05,327 [main] INFO Util - ------------------------------------------------ +2024-09-07 16:20:05,327 [main] INFO Util - collecting documentation content ... +2024-09-07 16:20:05,349 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Attribute': UML1 +2024-09-07 16:20:05,349 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Attribute': UML2 +2024-09-07 16:20:05,349 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Attribute': UML3 +2024-09-07 16:20:05,349 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Attribute': UML4 +2024-09-07 16:20:05,349 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Attribute': UML5 +2024-09-07 16:20:05,349 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Attribute': UML6 +2024-09-07 16:20:05,349 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Attribute': UML7 +2024-09-07 16:20:05,349 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Attribute': UML8 +2024-09-07 16:20:05,349 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Attribute': UML9 +2024-09-07 16:20:05,349 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Class': UML10 +2024-09-07 16:20:05,349 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Class': UML11 +2024-09-07 16:20:05,349 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Class': UML12 +2024-09-07 16:20:05,349 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::health': UML13 +2024-09-07 16:20:05,349 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::identity': UML14 +2024-09-07 16:20:05,349 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::index': UML15 +2024-09-07 16:20:05,349 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::nsmAgent': UML16 +2024-09-07 16:20:05,349 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::nsmEntry': UML17 +2024-09-07 16:20:05,349 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::nsmEvent': UML18 +2024-09-07 16:20:05,349 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::performance': UML19 +2024-09-07 16:20:05,349 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::protocol': UML20 +2024-09-07 16:20:05,349 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::security': UML21 +2024-09-07 16:20:05,349 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::setvalue': UML22 +2024-09-07 16:20:05,349 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::table': UML23 +2024-09-07 16:20:05,349 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::trap': UML24 +2024-09-07 16:20:05,349 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::AbsoluteDateTime': UML25 +2024-09-07 16:20:05,349 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::Counter32 ': UML26 +2024-09-07 16:20:05,349 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::DateAndTime': UML27 +2024-09-07 16:20:05,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::DisplayString': UML28 +2024-09-07 16:20:05,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::Float32TC': UML29 +2024-09-07 16:20:05,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::Gauge32': UML30 +2024-09-07 16:20:05,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::InetAddress': UML31 +2024-09-07 16:20:05,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::MacAddress': UML32 +2024-09-07 16:20:05,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::InetAddressType': UML33 +2024-09-07 16:20:05,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::EntityIndex': UML34 +2024-09-07 16:20:05,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::Integer32': UML35 +2024-09-07 16:20:05,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::Unsigned32': UML36 +2024-09-07 16:20:05,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::TimeTicks': UML37 +2024-09-07 16:20:05,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::TruthValue': UML38 +2024-09-07 16:20:05,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::AbstractBaseType': UML39 +2024-09-07 16:20:05,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::AbstractAgent': UML40 +2024-09-07 16:20:05,350 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::AppDatStKind': UML41 +2024-09-07 16:20:05,351 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::PhyHealthKind': UML42 +2024-09-07 16:20:05,351 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ExtKind': UML43 +2024-09-07 16:20:05,351 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::IntKind': UML44 +2024-09-07 16:20:05,351 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::LnkKind': UML45 +2024-09-07 16:20:05,351 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::PSPAccKind': UML46 +2024-09-07 16:20:05,351 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ProtIdKind': UML47 +2024-09-07 16:20:05,351 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind': UML48 +2024-09-07 16:20:05,351 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncIssueKind': UML49 +2024-09-07 16:20:05,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::SecurityProfileKind': UML50 +2024-09-07 16:20:05,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind': UML51 +2024-09-07 16:20:05,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::BooleanValue': UML52 +2024-09-07 16:20:05,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::Integer': UML53 +2024-09-07 16:20:05,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::BooleanValueTs': UML54 +2024-09-07 16:20:05,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::CounterTs': UML55 +2024-09-07 16:20:05,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::Floating': UML56 +2024-09-07 16:20:05,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::FloatingTs': UML57 +2024-09-07 16:20:05,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::IntegerTs': UML58 +2024-09-07 16:20:05,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::CharString': UML59 +2024-09-07 16:20:05,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::CharStringTs': UML60 +2024-09-07 16:20:05,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::Timestamp': UML61 +2024-09-07 16:20:05,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::Selector': UML62 +2024-09-07 16:20:05,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::MacAddress': UML63 +2024-09-07 16:20:05,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::InetAddressType': UML64 +2024-09-07 16:20:05,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::InetAddress': UML65 +2024-09-07 16:20:05,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::EntityIndex': UML66 +2024-09-07 16:20:05,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::CntRs': UML67 +2024-09-07 16:20:05,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::AppDatStType': UML68 +2024-09-07 16:20:05,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::PhyHealthType': UML69 +2024-09-07 16:20:05,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ExtType': UML70 +2024-09-07 16:20:05,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::IntType': UML71 +2024-09-07 16:20:05,352 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventType': UML72 +2024-09-07 16:20:05,353 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::PSPAccType': UML73 +2024-09-07 16:20:05,353 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ProtIdType': UML74 +2024-09-07 16:20:05,353 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncIssueType': UML75 +2024-09-07 16:20:05,353 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::SecurityProfileType': UML76 +2024-09-07 16:20:05,353 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcType': UML77 +2024-09-07 16:20:05,353 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::LnkType': UML78 +2024-09-07 16:20:05,353 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Environmental Agent::Environmental': UML79 +2024-09-07 16:20:05,353 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Environmental Agent::PSUPEntry': UML80 +2024-09-07 16:20:05,353 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Environmental Agent::Notification': UML81 +2024-09-07 16:20:05,353 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Environmental Agent::SecurityNotification': UML82 +2024-09-07 16:20:05,353 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IED Agent::IED': UML83 +2024-09-07 16:20:05,353 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IED Agent::CPUEntry': UML84 +2024-09-07 16:20:05,353 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IED Agent::EXTEntry': UML85 +2024-09-07 16:20:05,353 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IED Agent::STOREEntry': UML86 +2024-09-07 16:20:05,353 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IED Agent::Notification': UML87 +2024-09-07 16:20:05,353 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IED Agent::SecurityNotification': UML88 +2024-09-07 16:20:05,353 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Common objects::CommonProtocolInfo': UML89 +2024-09-07 16:20:05,353 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEC62351-3 ed.2 Agent::IEC62351-3ed2security': UML90 +2024-09-07 16:20:05,353 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEC62351-3 ed.2 Agent::TLSSession': UML91 +2024-09-07 16:20:05,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEC62351-3 ed.2 Agent::ClientTLS': UML92 +2024-09-07 16:20:05,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEC62351-3 ed.2 Agent::ServerTLS': UML93 +2024-09-07 16:20:05,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo': UML94 +2024-09-07 16:20:05,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent::Association': UML95 +2024-09-07 16:20:05,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent::MasterAssociation': UML96 +2024-09-07 16:20:05,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent::OutstationAssociation': UML97 +2024-09-07 16:20:05,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5': UML98 +2024-09-07 16:20:05,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2': UML99 +2024-09-07 16:20:05,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent - ed2::Association': UML100 +2024-09-07 16:20:05,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent - ed2::MasterAssociation': UML101 +2024-09-07 16:20:05,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent - ed2::OutstationAssociation': UML102 +2024-09-07 16:20:05,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MMS::MMSProtocolInfo': UML103 +2024-09-07 16:20:05,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MMS::MMSAssociation': UML104 +2024-09-07 16:20:05,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEC62351-3 ed.2 Agent::Summary': UML105 +2024-09-07 16:20:05,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification': UML106 +2024-09-07 16:20:05,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent::Summary': UML107 +2024-09-07 16:20:05,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification': UML108 +2024-09-07 16:20:05,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification': UML109 +2024-09-07 16:20:05,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent - ed2::Summary': UML110 +2024-09-07 16:20:05,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2': UML111 +2024-09-07 16:20:05,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2': UML112 +2024-09-07 16:20:05,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ACSI::ACSISummary': UML113 +2024-09-07 16:20:05,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MMS::MMSProvider': UML114 +2024-09-07 16:20:05,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MMS::MMSSecurityNotification': UML115 +2024-09-07 16:20:05,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MMS::MMSNotification': UML116 +2024-09-07 16:20:05,354 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'SV and GSE common objects::GSEandSVCommon': UML117 +2024-09-07 16:20:05,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'SV and GSE common objects::GSEandSVPublisherAssociation': UML118 +2024-09-07 16:20:05,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'SV::SVPublisherAssociationIP': UML119 +2024-09-07 16:20:05,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'SV::SVPublisherAssociationL2': UML120 +2024-09-07 16:20:05,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GSE::GSEPublisherAssociationIP': UML121 +2024-09-07 16:20:05,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GSE::GSEPublisherAssociationL2': UML122 +2024-09-07 16:20:05,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'SV and GSE common objects::GSEandSVSubscriberAssociation': UML123 +2024-09-07 16:20:05,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'SV::SVSubcriberAssociationIP': UML124 +2024-09-07 16:20:05,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'SV::SVSubcriberAssociationL2': UML125 +2024-09-07 16:20:05,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GSE::GSESubscriberAssociation': UML126 +2024-09-07 16:20:05,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GSE::GSESubcriberAssociationIP': UML127 +2024-09-07 16:20:05,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GSE::GSESubcriberAssociationL2': UML128 +2024-09-07 16:20:05,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'SV::SVProvider': UML129 +2024-09-07 16:20:05,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'SV::SVNotification': UML130 +2024-09-07 16:20:05,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GSE::GSEProvider': UML131 +2024-09-07 16:20:05,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GSE::GSENotification': UML132 +2024-09-07 16:20:05,355 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Clocks Agent::Clock': UML133 +2024-09-07 16:20:05,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Clocks Agent::ClockEntry': UML134 +2024-09-07 16:20:05,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Clocks Agent::SecurityNotification': UML135 +2024-09-07 16:20:05,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Interfaces Agent::Interface': UML136 +2024-09-07 16:20:05,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Interfaces Agent::ETHEntry': UML137 +2024-09-07 16:20:05,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Interfaces Agent::KEYEntry': UML138 +2024-09-07 16:20:05,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Interfaces Agent::SEREntry': UML139 +2024-09-07 16:20:05,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Interfaces Agent::ALGEntry': UML140 +2024-09-07 16:20:05,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Interfaces Agent::USBEntry': UML141 +2024-09-07 16:20:05,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Interfaces Agent::Interfaces': UML142 +2024-09-07 16:20:05,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Interfaces Agent::Notification': UML143 +2024-09-07 16:20:05,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::InetAddressType.unknown': UML144 +2024-09-07 16:20:05,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::InetAddressType.ipv4': UML145 +2024-09-07 16:20:05,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::InetAddressType.ipv6': UML146 +2024-09-07 16:20:05,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::InetAddressType.ipv4z': UML147 +2024-09-07 16:20:05,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::InetAddressType.ipv6z': UML148 +2024-09-07 16:20:05,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::InetAddressType.dns': UML149 +2024-09-07 16:20:05,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::AppDatStKind.unknown': UML150 +2024-09-07 16:20:05,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::AppDatStKind.good': UML151 +2024-09-07 16:20:05,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::AppDatStKind.bad': UML152 +2024-09-07 16:20:05,356 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::PhyHealthKind.ok': UML153 +2024-09-07 16:20:05,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::PhyHealthKind.warning': UML154 +2024-09-07 16:20:05,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::PhyHealthKind.alarm': UML155 +2024-09-07 16:20:05,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ExtKind.unknown': UML156 +2024-09-07 16:20:05,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ExtKind.ioModule': UML157 +2024-09-07 16:20:05,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ExtKind.softwarePLC': UML158 +2024-09-07 16:20:05,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::IntKind.wired': UML159 +2024-09-07 16:20:05,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::IntKind.wireless': UML160 +2024-09-07 16:20:05,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::LnkKind.unknown': UML161 +2024-09-07 16:20:05,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::LnkKind.serial': UML162 +2024-09-07 16:20:05,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::LnkKind.tcp': UML163 +2024-09-07 16:20:05,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::LnkKind.udp': UML164 +2024-09-07 16:20:05,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::LnkKind.eth': UML165 +2024-09-07 16:20:05,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::PSPAccKind.notBeingAccessed': UML166 +2024-09-07 16:20:05,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::PSPAccKind.accessOccurring': UML167 +2024-09-07 16:20:05,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ProtIdKind.unknown': UML168 +2024-09-07 16:20:05,357 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ProtIdKind.iEC6185081': UML169 +2024-09-07 16:20:05,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ProtIdKind.iEC6185081GOOSE': UML170 +2024-09-07 16:20:05,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ProtIdKind.iEC6185092SV': UML171 +2024-09-07 16:20:05,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ProtIdKind.ieee1815DNP': UML172 +2024-09-07 16:20:05,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ProtIdKind.iec608705': UML173 +2024-09-07 16:20:05,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ProtIdKind.iEC6185082': UML174 +2024-09-07 16:20:05,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind.none': UML175 +2024-09-07 16:20:05,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind.unKnown': UML176 +2024-09-07 16:20:05,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind.denialOfService': UML177 +2024-09-07 16:20:05,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind.malware': UML178 +2024-09-07 16:20:05,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind.bufferOverRun': UML179 +2024-09-07 16:20:05,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind.bufferUnderRun': UML180 +2024-09-07 16:20:05,358 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind.badCredential': UML181 +2024-09-07 16:20:05,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind.badKey': UML182 +2024-09-07 16:20:05,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind.malformedPDU': UML183 +2024-09-07 16:20:05,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind.physicalDisruption': UML184 +2024-09-07 16:20:05,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind.invalidNetworkAccess': UML185 +2024-09-07 16:20:05,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncIssueKind.synced': UML186 +2024-09-07 16:20:05,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncIssueKind.degradated': UML187 +2024-09-07 16:20:05,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncIssueKind.failed': UML188 +2024-09-07 16:20:05,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncIssueKind.syncedGlobal': UML189 +2024-09-07 16:20:05,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::SecurityProfileKind.noSecurity': UML190 +2024-09-07 16:20:05,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::SecurityProfileKind.aProfile': UML191 +2024-09-07 16:20:05,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::SecurityProfileKind.e2eProfile': UML192 +2024-09-07 16:20:05,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::SecurityProfileKind.ae2eProfile': UML193 +2024-09-07 16:20:05,359 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.unknown': UML194 +2024-09-07 16:20:05,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.ntp': UML195 +2024-09-07 16:20:05,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.sntp': UML196 +2024-09-07 16:20:05,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.irig': UML197 +2024-09-07 16:20:05,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.gps': UML198 +2024-09-07 16:20:05,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.ieee1588PTP': UML199 +2024-09-07 16:20:05,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.ieee1588PTPC37238Profile2011': UML200 +2024-09-07 16:20:05,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.ieee1588PTPIEC6185093': UML201 +2024-09-07 16:20:05,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.ieee1588PTPC37238Profile2017': UML202 +2024-09-07 16:20:05,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.ieee1588PTPIEC6185093Ed20': UML203 +2024-09-07 16:20:05,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.ieee1588PTPIEC6185093Profile2016': UML204 +2024-09-07 16:20:05,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.gnss': UML205 +2024-09-07 16:20:05,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.applicationProtocol': UML206 +2024-09-07 16:20:05,360 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.ntpOnts': UML207 +2024-09-07 16:20:05,383 [main] INFO PackageDocImpl - collecting doc for package iso ... +2024-09-07 16:20:05,391 [main] INFO PackageDocImpl - collecting doc for package standard ... +2024-09-07 16:20:05,392 [main] INFO PackageDocImpl - collecting doc for package iec62351 ... +2024-09-07 16:20:05,392 [main] INFO PackageDocImpl - collecting doc for package part7 ... +2024-09-07 16:20:05,392 [main] INFO PackageDocImpl - collecting doc for package Profiles ... +2024-09-07 16:20:05,397 [main] INFO PackageDocImpl - collecting doc for package nsmAgent ... +2024-09-07 16:20:05,435 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Attribute, hphSpec = 'aaùAttributeùUML1ùdd' +2024-09-07 16:20:05,436 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Attribute, hphSpec = 'aaùAttributeùUML5ùdd' +2024-09-07 16:20:05,436 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Attribute, hphSpec = 'aaùAttributeùUML4ùdd' +2024-09-07 16:20:05,437 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Class, hphSpec = 'aaùClassùUML12ùdd' +2024-09-07 16:20:05,438 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Class, hphSpec = 'aaùClassùUML11ùdd' +2024-09-07 16:20:05,438 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Class, hphSpec = 'aaùClassùUML10ùdd' +2024-09-07 16:20:05,439 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Attribute, hphSpec = 'aaùAttributeùUML6ùdd' +2024-09-07 16:20:05,439 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Attribute, hphSpec = 'aaùAttributeùUML2ùdd' +2024-09-07 16:20:05,440 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Attribute, hphSpec = 'aaùAttributeùUML3ùdd' +2024-09-07 16:20:05,440 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Attribute, hphSpec = 'aaùAttributeùUML7ùdd' +2024-09-07 16:20:05,440 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Attribute, hphSpec = 'aaùAttributeùUML9ùdd' +2024-09-07 16:20:05,441 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Attribute, hphSpec = 'aaùAttributeùUML8ùdd' +2024-09-07 16:20:05,442 [main] INFO PackageDocImpl - collecting doc for package Overview ... +2024-09-07 16:20:05,442 [main] INFO PackageDocImpl - collecting doc for package BaseTypes ... +2024-09-07 16:20:05,456 [main] INFO PackageDocImpl - collecting doc for package Abstract Types ... +2024-09-07 16:20:05,456 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 16:20:05,456 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TruthValue, hphSpec = 'aaùTruthValueùUML38ùdd' +2024-09-07 16:20:05,456 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 16:20:05,457 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DateAndTime, hphSpec = 'aaùDateAndTimeùUML27ùdd' +2024-09-07 16:20:05,457 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TruthValue, hphSpec = 'aaùTruthValueùUML38ùdd' +2024-09-07 16:20:05,457 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 16:20:05,457 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DateAndTime, hphSpec = 'aaùDateAndTimeùUML27ùdd' +2024-09-07 16:20:05,457 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Counter32 , hphSpec = 'aaùCounter32 ùUML26ùdd' +2024-09-07 16:20:05,457 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 16:20:05,457 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DateAndTime, hphSpec = 'aaùDateAndTimeùUML27ùdd' +2024-09-07 16:20:05,457 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TruthValue, hphSpec = 'aaùTruthValueùUML38ùdd' +2024-09-07 16:20:05,458 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 16:20:05,458 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Float32TC, hphSpec = 'aaùFloat32TCùUML29ùdd' +2024-09-07 16:20:05,458 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 16:20:05,458 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DateAndTime, hphSpec = 'aaùDateAndTimeùUML27ùdd' +2024-09-07 16:20:05,458 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Float32TC, hphSpec = 'aaùFloat32TCùUML29ùdd' +2024-09-07 16:20:05,459 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 16:20:05,459 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Unsigned32, hphSpec = 'aaùUnsigned32ùUML36ùdd' +2024-09-07 16:20:05,460 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 16:20:05,460 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer32, hphSpec = 'aaùInteger32ùUML35ùdd' +2024-09-07 16:20:05,460 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 16:20:05,461 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DateAndTime, hphSpec = 'aaùDateAndTimeùUML27ùdd' +2024-09-07 16:20:05,461 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer32, hphSpec = 'aaùInteger32ùUML35ùdd' +2024-09-07 16:20:05,461 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 16:20:05,461 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML31ùdd' +2024-09-07 16:20:05,462 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 16:20:05,462 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML33ùdd' +2024-09-07 16:20:05,463 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 16:20:05,463 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MacAddress, hphSpec = 'aaùMacAddressùUML32ùdd' +2024-09-07 16:20:05,463 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 16:20:05,464 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DisplayString, hphSpec = 'aaùDisplayStringùUML28ùdd' +2024-09-07 16:20:05,465 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 16:20:05,465 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DateAndTime, hphSpec = 'aaùDateAndTimeùUML27ùdd' +2024-09-07 16:20:05,465 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 16:20:05,465 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DisplayString, hphSpec = 'aaùDisplayStringùUML28ùdd' +2024-09-07 16:20:05,465 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 16:20:05,465 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DateAndTime, hphSpec = 'aaùDateAndTimeùUML27ùdd' +2024-09-07 16:20:05,466 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DisplayString, hphSpec = 'aaùDisplayStringùUML28ùdd' +2024-09-07 16:20:05,466 [main] INFO PackageDocImpl - collecting doc for package EnumeratedTypes ... +2024-09-07 16:20:05,473 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 16:20:05,473 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DateAndTime, hphSpec = 'aaùDateAndTimeùUML27ùdd' +2024-09-07 16:20:05,473 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AppDatStKind, hphSpec = 'aaùAppDatStKindùUML41ùdd' +2024-09-07 16:20:05,473 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 16:20:05,474 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DateAndTime, hphSpec = 'aaùDateAndTimeùUML27ùdd' +2024-09-07 16:20:05,474 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PhyHealthKind, hphSpec = 'aaùPhyHealthKindùUML42ùdd' +2024-09-07 16:20:05,474 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 16:20:05,474 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ExtKind, hphSpec = 'aaùExtKindùUML43ùdd' +2024-09-07 16:20:05,474 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 16:20:05,475 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntKind, hphSpec = 'aaùIntKindùUML44ùdd' +2024-09-07 16:20:05,475 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 16:20:05,476 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DateAndTime, hphSpec = 'aaùDateAndTimeùUML27ùdd' +2024-09-07 16:20:05,476 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventKind, hphSpec = 'aaùEventKindùUML48ùdd' +2024-09-07 16:20:05,476 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 16:20:05,477 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DateAndTime, hphSpec = 'aaùDateAndTimeùUML27ùdd' +2024-09-07 16:20:05,477 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PSPAccKind, hphSpec = 'aaùPSPAccKindùUML46ùdd' +2024-09-07 16:20:05,477 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 16:20:05,478 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ProtIdKind, hphSpec = 'aaùProtIdKindùUML47ùdd' +2024-09-07 16:20:05,478 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 16:20:05,479 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimSyncIssueKind, hphSpec = 'aaùTimSyncIssueKindùUML49ùdd' +2024-09-07 16:20:05,479 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 16:20:05,479 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SecurityProfileKind, hphSpec = 'aaùSecurityProfileKindùUML50ùdd' +2024-09-07 16:20:05,480 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 16:20:05,480 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimSyncSrcKind, hphSpec = 'aaùTimSyncSrcKindùUML51ùdd' +2024-09-07 16:20:05,481 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 16:20:05,481 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LnkKind, hphSpec = 'aaùLnkKindùUML45ùdd' +2024-09-07 16:20:05,481 [main] INFO PackageDocImpl - collecting doc for package Environmental Agent ... +2024-09-07 16:20:05,482 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,482 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AppDatStType, hphSpec = 'aaùAppDatStTypeùUML68ùdd' +2024-09-07 16:20:05,482 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 16:20:05,482 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-07 16:20:05,482 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 16:20:05,482 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 16:20:05,483 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 16:20:05,483 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 16:20:05,484 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PSUPEntry, hphSpec = 'aaùPSUPEntryùUML80ùdd' +2024-09-07 16:20:05,485 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 16:20:05,485 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 16:20:05,485 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SecurityNotification, hphSpec = 'aaùSecurityNotificationùUML82ùdd' +2024-09-07 16:20:05,485 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Notification, hphSpec = 'aaùNotificationùUML81ùdd' +2024-09-07 16:20:05,485 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 16:20:05,486 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,487 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 16:20:05,487 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,487 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 16:20:05,487 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,487 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 16:20:05,487 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,487 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 16:20:05,487 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,488 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 16:20:05,488 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 16:20:05,488 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,488 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-07 16:20:05,489 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Timestamp, hphSpec = 'aaùTimestampùUML61ùdd' +2024-09-07 16:20:05,489 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Timestamp, hphSpec = 'aaùTimestampùUML61ùdd' +2024-09-07 16:20:05,489 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Timestamp, hphSpec = 'aaùTimestampùUML61ùdd' +2024-09-07 16:20:05,489 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Timestamp, hphSpec = 'aaùTimestampùUML61ùdd' +2024-09-07 16:20:05,489 [main] INFO PackageDocImpl - collecting doc for package IED Agent ... +2024-09-07 16:20:05,489 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,490 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,490 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 16:20:05,490 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 16:20:05,490 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 16:20:05,490 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CPUEntry, hphSpec = 'aaùCPUEntryùUML84ùdd' +2024-09-07 16:20:05,490 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-07 16:20:05,490 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,491 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,491 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 16:20:05,492 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EXTEntry, hphSpec = 'aaùEXTEntryùUML85ùdd' +2024-09-07 16:20:05,492 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 16:20:05,492 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-07 16:20:05,492 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 16:20:05,492 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-07 16:20:05,492 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 16:20:05,492 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 16:20:05,492 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,492 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,492 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 16:20:05,492 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-07 16:20:05,493 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,493 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,493 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,493 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 16:20:05,493 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-07 16:20:05,493 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-07 16:20:05,493 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PhyHealthType, hphSpec = 'aaùPhyHealthTypeùUML69ùdd' +2024-09-07 16:20:05,493 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,496 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 16:20:05,496 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 16:20:05,496 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,496 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SecurityNotification, hphSpec = 'aaùSecurityNotificationùUML88ùdd' +2024-09-07 16:20:05,496 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Notification, hphSpec = 'aaùNotificationùUML87ùdd' +2024-09-07 16:20:05,497 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = STOREEntry, hphSpec = 'aaùSTOREEntryùUML86ùdd' +2024-09-07 16:20:05,497 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,497 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,497 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,497 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,497 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 16:20:05,497 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,497 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 16:20:05,497 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 16:20:05,498 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 16:20:05,498 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 16:20:05,498 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-07 16:20:05,498 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,498 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,499 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 16:20:05,499 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,499 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ExtType, hphSpec = 'aaùExtTypeùUML70ùdd' +2024-09-07 16:20:05,499 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 16:20:05,499 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 16:20:05,499 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-07 16:20:05,499 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,499 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,499 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 16:20:05,499 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,500 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 16:20:05,500 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,500 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,500 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-07 16:20:05,500 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 16:20:05,500 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 16:20:05,501 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,502 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,502 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-07 16:20:05,502 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-07 16:20:05,502 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-07 16:20:05,502 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PhyHealthType, hphSpec = 'aaùPhyHealthTypeùUML69ùdd' +2024-09-07 16:20:05,502 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,502 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,502 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,502 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 16:20:05,502 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-07 16:20:05,503 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 16:20:05,503 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 16:20:05,503 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,503 [main] INFO PackageDocImpl - collecting doc for package Application Protocols Agents ... +2024-09-07 16:20:05,503 [main] INFO PackageDocImpl - collecting doc for package Common objects ... +2024-09-07 16:20:05,504 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,504 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 16:20:05,504 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 16:20:05,504 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,504 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,504 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,504 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,504 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,504 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,505 [main] INFO PackageDocImpl - collecting doc for package IEC62351-3 ed.2 Agent ... +2024-09-07 16:20:05,505 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,506 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,506 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,506 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,506 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,506 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,506 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,507 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,507 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,507 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,507 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,507 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,507 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,507 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,508 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,508 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,508 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,508 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,508 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,508 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,508 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,508 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,508 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,508 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,509 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,509 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,509 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,509 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,509 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,509 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,509 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,509 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,509 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,509 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,509 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,509 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,510 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,510 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,510 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,510 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,510 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,512 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 16:20:05,512 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 16:20:05,512 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 16:20:05,512 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 16:20:05,512 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 16:20:05,512 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 16:20:05,512 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 16:20:05,512 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,512 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 16:20:05,512 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,513 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,513 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,513 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,513 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,513 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,513 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,513 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,513 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,513 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,513 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,513 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,513 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,513 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,513 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,513 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,513 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,513 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,513 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,513 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,513 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,513 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,513 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,513 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,513 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,513 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,513 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,513 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,513 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,513 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,513 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,514 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,514 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,514 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,514 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,514 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,514 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,514 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,514 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,514 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,514 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,514 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,514 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,514 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,514 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,514 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,514 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,514 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,514 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,514 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,514 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,514 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,514 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,514 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,514 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,514 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,514 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,515 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,515 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,515 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,515 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,515 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,515 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,515 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,515 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,515 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,515 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,515 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,515 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,515 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,515 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,515 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,515 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,515 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,515 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,515 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,515 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,515 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,515 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,515 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,515 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,515 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,516 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,516 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,516 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,516 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 16:20:05,517 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-07 16:20:05,517 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ServerTLS, hphSpec = 'aaùServerTLSùUML93ùdd' +2024-09-07 16:20:05,517 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ClientTLS, hphSpec = 'aaùClientTLSùUML92ùdd' +2024-09-07 16:20:05,517 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part3ed2SecurityNotification, hphSpec = 'aaùIEC62351part3ed2SecurityNotificationùUML106ùdd' +2024-09-07 16:20:05,517 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,517 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,517 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,517 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,518 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,518 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,518 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,518 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,518 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,518 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,518 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,518 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,518 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,518 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,518 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,518 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,519 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,519 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,519 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,519 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,519 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,519 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,519 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,519 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,519 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,519 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,519 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,519 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,519 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,519 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,519 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,519 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,519 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,519 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,520 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,520 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,520 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,520 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,520 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,520 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,520 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,520 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,520 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,520 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,520 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,520 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,520 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,520 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,520 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,520 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,520 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,520 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,520 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,520 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,521 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,521 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,521 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,521 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,521 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,521 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,521 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,521 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,521 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,521 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,521 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,521 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,521 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,521 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,521 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,521 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,521 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,522 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-07 16:20:05,522 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-07 16:20:05,522 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,522 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,522 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,522 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,522 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,522 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 16:20:05,522 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-07 16:20:05,522 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 16:20:05,522 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-07 16:20:05,522 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 16:20:05,522 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-07 16:20:05,523 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 16:20:05,523 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-07 16:20:05,523 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 16:20:05,523 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-07 16:20:05,523 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 16:20:05,523 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-07 16:20:05,523 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 16:20:05,523 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,523 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 16:20:05,523 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,523 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,523 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,523 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,523 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,523 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,523 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,523 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,524 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,524 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,524 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,524 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,524 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,524 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,524 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,524 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,524 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,524 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,524 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,524 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,524 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,524 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,524 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,524 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,524 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,525 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,525 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,525 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,525 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,525 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,525 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,525 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,525 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,525 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,525 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,525 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,525 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,525 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,525 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,525 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,525 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,525 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,525 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,526 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,526 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,526 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,526 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,526 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,526 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,526 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,526 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,526 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,526 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,526 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,526 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,526 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,526 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,526 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,526 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,526 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,526 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,526 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,526 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,526 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,526 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,526 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,526 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,526 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,526 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,527 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,527 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,527 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,527 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,527 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,527 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,527 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,527 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,527 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,527 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,527 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,527 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,527 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,527 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,528 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-07 16:20:05,528 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,528 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,528 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,528 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,528 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,528 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 16:20:05,528 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-07 16:20:05,528 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 16:20:05,528 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-07 16:20:05,528 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 16:20:05,528 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-07 16:20:05,528 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 16:20:05,528 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-07 16:20:05,528 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 16:20:05,529 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-07 16:20:05,529 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 16:20:05,529 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-07 16:20:05,529 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 16:20:05,529 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,529 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 16:20:05,529 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,529 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,529 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,529 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,529 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,529 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,529 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,529 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,529 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,529 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,529 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,529 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,529 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,530 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,530 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,530 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,530 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,530 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,530 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,530 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,530 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,530 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,530 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,530 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,530 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,530 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,530 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,530 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,530 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,530 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,530 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,530 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,530 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,530 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,530 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,530 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,530 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,530 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,530 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,530 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,530 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,530 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,530 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,530 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,530 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,531 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,531 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,531 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,531 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,531 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,531 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,531 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,531 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,531 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,531 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,531 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,531 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,531 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,531 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,531 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,531 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,531 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,531 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,531 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,531 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,531 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,531 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,531 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,531 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,531 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,531 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,531 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,531 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,531 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,532 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,532 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,532 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,532 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,532 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,532 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,532 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,532 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,532 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 16:20:05,532 [main] INFO PackageDocImpl - collecting doc for package IEEE 1815 and IEC 60870-5 Agent ... +2024-09-07 16:20:05,532 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,533 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,533 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,533 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,533 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,534 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,534 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,534 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,535 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,535 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,535 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,535 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,535 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,535 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,535 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,535 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,535 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,535 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,535 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 16:20:05,535 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,536 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,536 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,536 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,536 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,536 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,536 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,536 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,536 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,536 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,536 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,536 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,540 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,540 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,540 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,540 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,540 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,541 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 16:20:05,541 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 16:20:05,541 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 16:20:05,541 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 16:20:05,541 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ProtIdType, hphSpec = 'aaùProtIdTypeùUML74ùdd' +2024-09-07 16:20:05,541 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,541 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,541 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 16:20:05,541 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 16:20:05,542 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,542 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LnkType, hphSpec = 'aaùLnkTypeùUML78ùdd' +2024-09-07 16:20:05,542 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,542 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,542 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,542 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,542 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,542 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,542 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,542 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,542 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,542 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,542 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,542 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,542 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,542 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,542 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,542 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,542 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,542 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,542 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,543 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,543 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,543 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,543 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,543 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,543 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,543 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,543 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,543 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,543 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,543 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,543 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,543 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,543 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,543 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,543 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 16:20:05,543 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,543 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,543 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,543 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,543 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,543 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,544 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,544 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,544 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,544 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,544 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,544 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,544 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,544 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,544 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,544 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,544 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,544 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,544 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,544 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,544 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,544 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,544 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,544 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,544 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,544 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 16:20:05,544 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,544 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 16:20:05,544 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,544 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,544 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,544 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,544 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,544 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,544 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,544 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,545 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,545 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,545 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,545 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,545 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,545 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,545 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,545 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 16:20:05,545 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-07 16:20:05,545 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MasterAssociation, hphSpec = 'aaùMasterAssociationùUML96ùdd' +2024-09-07 16:20:05,545 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OutstationAssociation, hphSpec = 'aaùOutstationAssociationùUML97ùdd' +2024-09-07 16:20:05,545 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPSecurityNotification, hphSpec = 'aaù60870andDNPSecurityNotificationùUML108ùdd' +2024-09-07 16:20:05,545 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPNotification, hphSpec = 'aaù60870andDNPNotificationùUML109ùdd' +2024-09-07 16:20:05,545 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,545 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,545 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,545 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,546 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,546 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,546 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,546 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,546 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,546 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,546 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,546 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,546 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,546 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,546 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,546 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,546 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,546 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,546 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,546 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,546 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,546 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,546 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,546 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,546 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,546 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,546 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,546 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,546 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,546 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,546 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,546 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,546 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,546 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,546 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 16:20:05,546 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,546 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,546 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,546 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,546 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,547 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,547 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,547 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,547 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,547 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,547 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,547 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,547 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,547 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,547 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,547 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,547 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,547 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,547 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,547 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,547 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,547 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,547 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,547 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,547 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,547 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,547 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,548 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,548 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,548 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-07 16:20:05,548 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,548 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,548 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,548 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,548 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,549 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,549 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,549 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,549 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,549 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,549 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 16:20:05,549 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,549 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,549 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,549 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,549 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,549 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 16:20:05,549 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 16:20:05,549 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 16:20:05,549 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 16:20:05,549 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 16:20:05,550 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 16:20:05,550 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 16:20:05,550 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 16:20:05,550 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ProtIdType, hphSpec = 'aaùProtIdTypeùUML74ùdd' +2024-09-07 16:20:05,550 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 16:20:05,550 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,550 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 16:20:05,550 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,550 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 16:20:05,550 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 16:20:05,550 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 16:20:05,551 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 16:20:05,551 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 16:20:05,551 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,551 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 16:20:05,551 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LnkType, hphSpec = 'aaùLnkTypeùUML78ùdd' +2024-09-07 16:20:05,551 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 16:20:05,551 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,551 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,551 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,551 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,551 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,551 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,551 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,551 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,551 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,552 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,552 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,552 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,552 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,552 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,552 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,552 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,552 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,552 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,552 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,552 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,552 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,552 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,553 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,553 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,553 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,553 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,553 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,553 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,553 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,553 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,553 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,553 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,553 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,553 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,553 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 16:20:05,553 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,553 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,553 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,553 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,553 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,553 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,553 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,554 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,554 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,554 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,554 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,554 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,554 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,554 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,554 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,554 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,554 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,554 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,554 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,554 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,554 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,554 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,555 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,555 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,555 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,555 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 16:20:05,555 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,555 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 16:20:05,555 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,555 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,555 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,555 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,555 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,555 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,555 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,555 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,555 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,555 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,556 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,556 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,556 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,556 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 16:20:05,556 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,556 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,556 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,556 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,556 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,557 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 16:20:05,557 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 16:20:05,557 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 16:20:05,557 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 16:20:05,557 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 16:20:05,557 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 16:20:05,557 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 16:20:05,557 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 16:20:05,557 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ProtIdType, hphSpec = 'aaùProtIdTypeùUML74ùdd' +2024-09-07 16:20:05,557 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 16:20:05,557 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,557 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 16:20:05,557 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,557 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 16:20:05,557 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 16:20:05,557 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 16:20:05,557 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 16:20:05,557 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 16:20:05,557 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,557 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 16:20:05,558 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LnkType, hphSpec = 'aaùLnkTypeùUML78ùdd' +2024-09-07 16:20:05,558 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 16:20:05,558 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,558 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,558 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,558 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,558 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,558 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,558 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,558 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,558 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,558 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,558 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,558 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,558 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,558 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,558 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,558 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,558 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,558 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,558 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,558 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,558 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,558 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,558 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,558 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,558 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,559 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,559 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,559 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,559 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,559 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,559 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,559 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,559 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,559 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,559 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 16:20:05,559 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,559 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,559 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,559 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,559 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,559 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,559 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,559 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,559 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,559 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,559 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,559 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,560 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,560 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,560 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,560 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,560 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,560 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,560 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,560 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,560 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,560 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,560 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,560 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,560 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 16:20:05,560 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 16:20:05,560 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,560 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 16:20:05,560 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,560 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,560 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,560 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,560 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,560 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,560 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,560 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,560 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,560 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,560 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,561 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,561 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,561 [main] INFO PackageDocImpl - collecting doc for package IEEE 1815 and IEC 60870-5 Agent - ed2 ... +2024-09-07 16:20:05,561 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,561 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,561 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,562 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,562 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,562 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,562 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,562 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,562 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,562 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,562 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,562 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,562 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,562 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,562 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,562 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,562 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,563 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,563 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,563 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,563 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,563 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,563 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,563 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,563 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,563 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,563 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,563 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,563 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,563 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,563 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,563 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,563 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,563 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,563 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,563 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,563 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,563 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,563 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,564 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,564 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,564 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,564 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,564 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,564 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,564 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,564 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,564 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,564 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,564 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,564 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,564 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,564 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,564 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,564 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,564 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,564 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,564 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,564 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,564 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,564 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,564 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,564 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,564 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,564 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,564 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,564 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,564 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,565 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,565 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,565 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,565 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,565 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,565 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,565 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,565 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,565 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,565 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,565 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,565 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,566 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,566 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,566 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,566 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,566 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,566 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,566 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,566 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,566 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,566 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,566 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,566 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,566 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,567 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,567 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,567 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,567 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,568 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,568 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,568 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,568 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,568 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,568 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,568 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,568 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,568 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,568 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,568 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,569 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 16:20:05,569 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 16:20:05,569 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 16:20:05,569 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 16:20:05,569 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ProtIdType, hphSpec = 'aaùProtIdTypeùUML74ùdd' +2024-09-07 16:20:05,569 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,569 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,569 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 16:20:05,569 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 16:20:05,569 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,569 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LnkType, hphSpec = 'aaùLnkTypeùUML78ùdd' +2024-09-07 16:20:05,570 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 16:20:05,570 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,570 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 16:20:05,570 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,570 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,570 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,570 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,570 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,570 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,570 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,570 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,570 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,573 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,573 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,573 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,573 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,573 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,573 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,573 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,573 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,573 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,573 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,573 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,573 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,573 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,573 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,573 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,573 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,573 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,573 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,573 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,573 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,573 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,573 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,573 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,573 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,573 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 16:20:05,574 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-07 16:20:05,574 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MasterAssociation, hphSpec = 'aaùMasterAssociationùUML101ùdd' +2024-09-07 16:20:05,574 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OutstationAssociation, hphSpec = 'aaùOutstationAssociationùUML102ùdd' +2024-09-07 16:20:05,574 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPSecurityNotificationEd2, hphSpec = 'aaù60870andDNPSecurityNotificationEd2ùUML111ùdd' +2024-09-07 16:20:05,574 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPNotificationEd2, hphSpec = 'aaù60870andDNPNotificationEd2ùUML112ùdd' +2024-09-07 16:20:05,574 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,574 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,574 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,574 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,574 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,574 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,578 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,578 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,578 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,578 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,578 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,578 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,578 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,578 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,578 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,578 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,578 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,578 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,578 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,578 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,578 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,578 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,578 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,578 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,578 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,578 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,578 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,578 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,578 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,579 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-07 16:20:05,579 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,579 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-07 16:20:05,579 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 16:20:05,579 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,579 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,579 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,579 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,579 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,579 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,579 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 16:20:05,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 16:20:05,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 16:20:05,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 16:20:05,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 16:20:05,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 16:20:05,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 16:20:05,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 16:20:05,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ProtIdType, hphSpec = 'aaùProtIdTypeùUML74ùdd' +2024-09-07 16:20:05,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 16:20:05,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 16:20:05,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 16:20:05,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 16:20:05,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 16:20:05,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 16:20:05,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 16:20:05,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 16:20:05,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LnkType, hphSpec = 'aaùLnkTypeùUML78ùdd' +2024-09-07 16:20:05,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 16:20:05,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 16:20:05,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 16:20:05,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,583 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,583 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,583 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,583 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,583 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,583 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,583 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,583 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,583 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,584 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,584 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,584 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,584 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,584 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,584 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,584 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,585 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,585 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,585 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,585 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,585 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,585 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,585 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,585 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,586 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 16:20:05,586 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,586 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,586 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,586 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,586 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,586 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,586 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,587 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 16:20:05,587 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 16:20:05,587 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 16:20:05,587 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 16:20:05,587 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 16:20:05,587 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 16:20:05,587 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 16:20:05,587 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 16:20:05,587 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ProtIdType, hphSpec = 'aaùProtIdTypeùUML74ùdd' +2024-09-07 16:20:05,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 16:20:05,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 16:20:05,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 16:20:05,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 16:20:05,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 16:20:05,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 16:20:05,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 16:20:05,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 16:20:05,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LnkType, hphSpec = 'aaùLnkTypeùUML78ùdd' +2024-09-07 16:20:05,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 16:20:05,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 16:20:05,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 16:20:05,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,589 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,589 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,589 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,589 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,589 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,589 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,589 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,589 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,589 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,589 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,589 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,589 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,589 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,589 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,589 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,589 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,589 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,589 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,589 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,589 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,589 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,589 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,589 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,589 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,589 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,589 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,589 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,589 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,589 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 16:20:05,589 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,589 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,589 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,589 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,589 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,589 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,589 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,589 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,589 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,589 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,589 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,589 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,591 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,591 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,591 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,591 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,591 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,591 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,591 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,591 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 16:20:05,592 [main] INFO PackageDocImpl - collecting doc for package IEC61850 Agent ... +2024-09-07 16:20:05,592 [main] INFO PackageDocImpl - collecting doc for package ACSI ... +2024-09-07 16:20:05,592 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,592 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 16:20:05,592 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 16:20:05,593 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 16:20:05,593 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,593 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 16:20:05,593 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 16:20:05,593 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 16:20:05,593 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 16:20:05,593 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-07 16:20:05,593 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,593 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,593 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,593 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 16:20:05,593 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 16:20:05,593 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 16:20:05,593 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 16:20:05,594 [main] INFO PackageDocImpl - collecting doc for package MMS ... +2024-09-07 16:20:05,594 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,596 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,596 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,596 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,597 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,597 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,597 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,597 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,597 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,597 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,597 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,597 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,597 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,597 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,598 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 16:20:05,598 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,598 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,598 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,598 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 16:20:05,599 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,599 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,599 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,599 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-07 16:20:05,599 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSAssociation, hphSpec = 'aaùMMSAssociationùUML104ùdd' +2024-09-07 16:20:05,599 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,599 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,599 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,601 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSSecurityNotification, hphSpec = 'aaùMMSSecurityNotificationùUML115ùdd' +2024-09-07 16:20:05,601 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 16:20:05,601 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,601 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSNotification, hphSpec = 'aaùMMSNotificationùUML116ùdd' +2024-09-07 16:20:05,601 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,601 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,602 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,602 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,602 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 16:20:05,602 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,602 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 16:20:05,602 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,602 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 16:20:05,602 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,602 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 16:20:05,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 16:20:05,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 16:20:05,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 16:20:05,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 16:20:05,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 16:20:05,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 16:20:05,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 16:20:05,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 16:20:05,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 16:20:05,604 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 16:20:05,604 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,604 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,604 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,604 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 16:20:05,604 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 16:20:05,604 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 16:20:05,604 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 16:20:05,604 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,604 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 16:20:05,605 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 16:20:05,605 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 16:20:05,605 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Selector, hphSpec = 'aaùSelectorùUML62ùdd' +2024-09-07 16:20:05,605 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Selector, hphSpec = 'aaùSelectorùUML62ùdd' +2024-09-07 16:20:05,605 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Selector, hphSpec = 'aaùSelectorùUML62ùdd' +2024-09-07 16:20:05,605 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 16:20:05,605 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-07 16:20:05,605 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SecurityProfileType, hphSpec = 'aaùSecurityProfileTypeùUML76ùdd' +2024-09-07 16:20:05,605 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,605 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 16:20:05,605 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,605 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 16:20:05,605 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,605 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 16:20:05,605 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,605 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 16:20:05,605 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,605 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 16:20:05,606 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,606 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 16:20:05,606 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,606 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 16:20:05,606 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,606 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 16:20:05,606 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,606 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 16:20:05,606 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,606 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 16:20:05,606 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,606 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 16:20:05,606 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,606 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 16:20:05,606 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,606 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 16:20:05,606 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 16:20:05,606 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,606 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 16:20:05,606 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,606 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,606 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,606 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,606 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,606 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,606 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,606 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,606 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,606 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,606 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,606 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,607 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 16:20:05,607 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,608 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,608 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-07 16:20:05,608 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,608 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,608 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,608 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,608 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,608 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,608 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,609 [main] INFO PackageDocImpl - collecting doc for package SV and GSE common objects ... +2024-09-07 16:20:05,609 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,609 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,609 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,609 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,609 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,609 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,610 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,610 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 16:20:05,610 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,610 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,610 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,610 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,610 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,610 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,610 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,610 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,610 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,611 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,611 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,611 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,611 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 16:20:05,611 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,611 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,612 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,612 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,612 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 16:20:05,612 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,612 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,612 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,612 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,612 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,612 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,612 [main] INFO PackageDocImpl - collecting doc for package SV ... +2024-09-07 16:20:05,613 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,613 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,613 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 16:20:05,613 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,613 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,614 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SVPublisherAssociationIP, hphSpec = 'aaùSVPublisherAssociationIPùUML119ùdd' +2024-09-07 16:20:05,614 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SVPublisherAssociationL2, hphSpec = 'aaùSVPublisherAssociationL2ùUML120ùdd' +2024-09-07 16:20:05,614 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SVNotification, hphSpec = 'aaùSVNotificationùUML130ùdd' +2024-09-07 16:20:05,614 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SVSubcriberAssociationIP, hphSpec = 'aaùSVSubcriberAssociationIPùUML124ùdd' +2024-09-07 16:20:05,614 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SVSubcriberAssociationL2, hphSpec = 'aaùSVSubcriberAssociationL2ùUML125ùdd' +2024-09-07 16:20:05,615 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,615 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,615 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,615 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,615 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,615 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,615 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 16:20:05,615 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,615 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,615 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 16:20:05,620 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 16:20:05,620 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,621 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 16:20:05,621 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 16:20:05,621 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 16:20:05,621 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,622 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 16:20:05,622 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,622 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 16:20:05,622 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,622 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 16:20:05,622 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,622 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,622 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,622 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,623 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,623 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,623 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 16:20:05,623 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,623 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,623 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MacAddress, hphSpec = 'aaùMacAddressùUML63ùdd' +2024-09-07 16:20:05,624 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,624 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 16:20:05,624 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 16:20:05,624 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 16:20:05,624 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,624 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 16:20:05,624 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,624 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 16:20:05,624 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,624 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 16:20:05,624 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,624 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,624 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,624 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,624 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,624 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 16:20:05,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 16:20:05,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 16:20:05,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 16:20:05,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 16:20:05,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 16:20:05,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 16:20:05,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 16:20:05,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 16:20:05,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 16:20:05,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 16:20:05,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 16:20:05,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 16:20:05,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MacAddress, hphSpec = 'aaùMacAddressùUML63ùdd' +2024-09-07 16:20:05,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 16:20:05,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 16:20:05,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 16:20:05,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 16:20:05,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 16:20:05,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 16:20:05,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 16:20:05,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 16:20:05,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 16:20:05,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,628 [main] INFO PackageDocImpl - collecting doc for package GSE ... +2024-09-07 16:20:05,628 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 16:20:05,628 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,628 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,628 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 16:20:05,628 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 16:20:05,628 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 16:20:05,628 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 16:20:05,628 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,628 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,628 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 16:20:05,628 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,629 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 16:20:05,629 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,629 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 16:20:05,629 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 16:20:05,629 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 16:20:05,629 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 16:20:05,629 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 16:20:05,629 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Timestamp, hphSpec = 'aaùTimestampùUML61ùdd' +2024-09-07 16:20:05,629 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,629 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 16:20:05,629 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 16:20:05,629 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 16:20:05,629 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,629 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 16:20:05,629 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,629 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 16:20:05,629 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,630 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 16:20:05,630 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,630 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 16:20:05,630 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 16:20:05,630 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 16:20:05,630 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,630 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,630 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,630 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,630 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,630 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 16:20:05,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEPublisherAssociationIP, hphSpec = 'aaùGSEPublisherAssociationIPùUML121ùdd' +2024-09-07 16:20:05,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEPublisherAssociationL2, hphSpec = 'aaùGSEPublisherAssociationL2ùUML122ùdd' +2024-09-07 16:20:05,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSENotification, hphSpec = 'aaùGSENotificationùUML132ùdd' +2024-09-07 16:20:05,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubcriberAssociationIP, hphSpec = 'aaùGSESubcriberAssociationIPùUML127ùdd' +2024-09-07 16:20:05,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubcriberAssociationL2, hphSpec = 'aaùGSESubcriberAssociationL2ùUML128ùdd' +2024-09-07 16:20:05,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 16:20:05,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,632 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 16:20:05,632 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 16:20:05,632 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,632 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 16:20:05,632 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 16:20:05,632 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 16:20:05,632 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,632 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 16:20:05,632 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,632 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 16:20:05,632 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,632 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 16:20:05,632 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,632 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,632 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,632 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,632 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,632 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,632 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 16:20:05,632 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,632 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,632 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MacAddress, hphSpec = 'aaùMacAddressùUML63ùdd' +2024-09-07 16:20:05,632 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MacAddress, hphSpec = 'aaùMacAddressùUML63ùdd' +2024-09-07 16:20:05,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 16:20:05,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 16:20:05,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 16:20:05,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 16:20:05,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 16:20:05,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 16:20:05,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,634 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 16:20:05,634 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 16:20:05,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 16:20:05,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 16:20:05,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 16:20:05,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 16:20:05,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 16:20:05,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 16:20:05,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 16:20:05,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 16:20:05,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 16:20:05,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 16:20:05,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 16:20:05,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 16:20:05,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 16:20:05,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 16:20:05,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 16:20:05,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 16:20:05,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 16:20:05,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 16:20:05,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 16:20:05,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 16:20:05,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 16:20:05,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 16:20:05,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 16:20:05,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 16:20:05,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 16:20:05,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 16:20:05,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 16:20:05,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 16:20:05,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Timestamp, hphSpec = 'aaùTimestampùUML61ùdd' +2024-09-07 16:20:05,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 16:20:05,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 16:20:05,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 16:20:05,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 16:20:05,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 16:20:05,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 16:20:05,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 16:20:05,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 16:20:05,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 16:20:05,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 16:20:05,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 16:20:05,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 16:20:05,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MacAddress, hphSpec = 'aaùMacAddressùUML63ùdd' +2024-09-07 16:20:05,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MacAddress, hphSpec = 'aaùMacAddressùUML63ùdd' +2024-09-07 16:20:05,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 16:20:05,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 16:20:05,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 16:20:05,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 16:20:05,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 16:20:05,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 16:20:05,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 16:20:05,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 16:20:05,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 16:20:05,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 16:20:05,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 16:20:05,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 16:20:05,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 16:20:05,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 16:20:05,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 16:20:05,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 16:20:05,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 16:20:05,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 16:20:05,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 16:20:05,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 16:20:05,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 16:20:05,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 16:20:05,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 16:20:05,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 16:20:05,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 16:20:05,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 16:20:05,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Timestamp, hphSpec = 'aaùTimestampùUML61ùdd' +2024-09-07 16:20:05,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 16:20:05,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 16:20:05,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 16:20:05,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 16:20:05,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 16:20:05,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 16:20:05,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 16:20:05,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 16:20:05,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 16:20:05,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 16:20:05,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 16:20:05,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,640 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,640 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,640 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,640 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,640 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,640 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,640 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,640 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 16:20:05,640 [main] INFO PackageDocImpl - collecting doc for package Clocks Agent ... +2024-09-07 16:20:05,640 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,640 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Timestamp, hphSpec = 'aaùTimestampùUML61ùdd' +2024-09-07 16:20:05,640 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Timestamp, hphSpec = 'aaùTimestampùUML61ùdd' +2024-09-07 16:20:05,641 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 16:20:05,641 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ClockEntry, hphSpec = 'aaùClockEntryùUML134ùdd' +2024-09-07 16:20:05,641 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SecurityNotification, hphSpec = 'aaùSecurityNotificationùUML135ùdd' +2024-09-07 16:20:05,641 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,641 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 16:20:05,641 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 16:20:05,641 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimSyncIssueType, hphSpec = 'aaùTimSyncIssueTypeùUML75ùdd' +2024-09-07 16:20:05,642 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 16:20:05,642 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimSyncSrcType, hphSpec = 'aaùTimSyncSrcTypeùUML77ùdd' +2024-09-07 16:20:05,642 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 16:20:05,642 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-07 16:20:05,642 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 16:20:05,642 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 16:20:05,642 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,642 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Timestamp, hphSpec = 'aaùTimestampùUML61ùdd' +2024-09-07 16:20:05,642 [main] INFO PackageDocImpl - collecting doc for package Interfaces Agent ... +2024-09-07 16:20:05,643 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,643 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 16:20:05,643 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,643 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntType, hphSpec = 'aaùIntTypeùUML71ùdd' +2024-09-07 16:20:05,643 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 16:20:05,643 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 16:20:05,643 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 16:20:05,643 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 16:20:05,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 16:20:05,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 16:20:05,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 16:20:05,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 16:20:05,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 16:20:05,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 16:20:05,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 16:20:05,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 16:20:05,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 16:20:05,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 16:20:05,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 16:20:05,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 16:20:05,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 16:20:05,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 16:20:05,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 16:20:05,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SEREntry, hphSpec = 'aaùSEREntryùUML139ùdd' +2024-09-07 16:20:05,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ETHEntry, hphSpec = 'aaùETHEntryùUML137ùdd' +2024-09-07 16:20:05,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = USBEntry, hphSpec = 'aaùUSBEntryùUML141ùdd' +2024-09-07 16:20:05,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = KEYEntry, hphSpec = 'aaùKEYEntryùUML138ùdd' +2024-09-07 16:20:05,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ALGEntry, hphSpec = 'aaùALGEntryùUML140ùdd' +2024-09-07 16:20:05,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Notification, hphSpec = 'aaùNotificationùUML143ùdd' +2024-09-07 16:20:05,646 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 16:20:05,646 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,646 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 16:20:05,646 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 16:20:05,646 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,646 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 16:20:05,646 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntType, hphSpec = 'aaùIntTypeùUML71ùdd' +2024-09-07 16:20:05,646 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 16:20:05,646 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 16:20:05,646 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 16:20:05,646 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 16:20:05,646 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 16:20:05,646 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 16:20:05,646 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 16:20:05,647 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 16:20:05,647 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 16:20:05,647 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 16:20:05,647 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,647 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 16:20:05,647 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 16:20:05,647 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 16:20:05,648 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,648 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 16:20:05,648 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntType, hphSpec = 'aaùIntTypeùUML71ùdd' +2024-09-07 16:20:05,648 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 16:20:05,648 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 16:20:05,648 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 16:20:05,648 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 16:20:05,648 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 16:20:05,648 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 16:20:05,648 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 16:20:05,648 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 16:20:05,648 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 16:20:05,648 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 16:20:05,648 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,648 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,648 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 16:20:05,648 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 16:20:05,648 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 16:20:05,648 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,648 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 16:20:05,649 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntType, hphSpec = 'aaùIntTypeùUML71ùdd' +2024-09-07 16:20:05,649 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 16:20:05,649 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 16:20:05,649 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 16:20:05,649 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 16:20:05,649 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 16:20:05,649 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 16:20:05,649 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 16:20:05,649 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 16:20:05,649 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 16:20:05,649 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 16:20:05,649 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,649 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 16:20:05,649 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 16:20:05,649 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,649 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 16:20:05,649 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntType, hphSpec = 'aaùIntTypeùUML71ùdd' +2024-09-07 16:20:05,649 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 16:20:05,651 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 16:20:05,651 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 16:20:05,651 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 16:20:05,651 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 16:20:05,651 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 16:20:05,651 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 16:20:05,652 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 16:20:05,652 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 16:20:05,652 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 16:20:05,652 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,653 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 16:20:05,653 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 16:20:05,653 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 16:20:05,653 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 16:20:05,653 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntType, hphSpec = 'aaùIntTypeùUML71ùdd' +2024-09-07 16:20:05,653 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 16:20:05,653 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 16:20:05,653 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 16:20:05,653 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 16:20:05,653 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 16:20:05,653 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 16:20:05,653 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 16:20:05,653 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 16:20:05,653 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 16:20:05,654 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 16:20:05,654 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 16:20:05,654 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 16:20:05,655 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 16:20:05,655 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 16:20:05,655 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 16:20:05,655 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 16:20:05,655 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 16:20:05,655 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 16:20:05,655 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 16:20:05,655 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 16:20:05,656 [main] INFO Util - time=[0:00:00.329] collected documentation content for 'model packages=[iso]; retained=[iso, standard, iec62351, part7, Profiles, nsmAgent, Overview, BaseTypes, Abstract Types, EnumeratedTypes, Environmental Agent, IED Agent, Application Protocols Agents, Common objects, IEC62351-3 ed.2 Agent, IEEE 1815 and IEC 60870-5 Agent, IEEE 1815 and IEC 60870-5 Agent - ed2, IEC61850 Agent, ACSI, MMS, SV and GSE common objects, SV, GSE, Clocks Agent, Interfaces Agent]; skipped=[]'. +2024-09-07 16:20:05,656 [main] INFO Util - +2024-09-07 16:20:05,656 [main] INFO Util - +2024-09-07 16:20:05,656 [main] INFO Util - ------------------------------------------------ +2024-09-07 16:20:05,657 [main] INFO Util - writing documentation ... +2024-09-07 16:20:05,662 [main] WARN DocCollectorImpl - Multiple classes with Qname 'startUmlClass.nsmAgent.Attribute.endUml' - retaining first one in case you use its placeholder. +2024-09-07 16:20:05,663 [main] WARN DocCollectorImpl - Multiple classes with Qname 'startUmlClass.nsmAgent.Class.endUml' - retaining first one in case you use its placeholder. +2024-09-07 16:20:05,740 [main] INFO AbstractWriter - creating DocWordWriter +2024-09-07 16:20:05,743 [main] TRACE Style - === before para.addPreferredStyles([PARAGRAPH, Normal, Standard, Normal]): +Style.para=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 16:20:05,743 [main] TRACE Style - === after +Style.para=null; cfg-preferred names=[PARAGRAPH, Normal, Standard]; doc-usable styles={}; all recognised names=[PARAGRAPH, Standard, Normal] + +2024-09-07 16:20:05,743 [main] TRACE Style - === before fig.addPreferredStyles([FIGURE, Picture, Normal, Standard, Normal]): +Style.fig=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 16:20:05,743 [main] TRACE Style - === after +Style.fig=null; cfg-preferred names=[FIGURE, Picture, Normal, Standard]; doc-usable styles={}; all recognised names=[Picture, Standard, Normal, FIGURE] + +2024-09-07 16:20:05,743 [main] TRACE Style - === before tabhead.addPreferredStyles([TABLE-col-heading, Normal, Standard, Normal]): +Style.tabhead=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 16:20:05,743 [main] TRACE Style - === after +Style.tabhead=null; cfg-preferred names=[TABLE-col-heading, Normal, Standard]; doc-usable styles={}; all recognised names=[TABLE-col-heading, Standard, Normal] + +2024-09-07 16:20:05,743 [main] TRACE Style - === before tabcell.addPreferredStyles([TABLE-cell, Normal, Standard, Normal]): +Style.tabcell=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 16:20:05,744 [main] TRACE Style - === after +Style.tabcell=null; cfg-preferred names=[TABLE-cell, Normal, Standard]; doc-usable styles={}; all recognised names=[TABLE-cell, Standard, Normal] + +2024-09-07 16:20:05,744 [main] TRACE Style - === before figcapt.addPreferredStyles([FIGURE-title, Caption, Beschriftung, Légende]): +Style.figcapt=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 16:20:05,744 [main] TRACE Style - === after +Style.figcapt=null; cfg-preferred names=[FIGURE-title, Caption, Beschriftung, Légende]; doc-usable styles={}; all recognised names=[FIGURE-title, Beschriftung, Légende, Caption] + +2024-09-07 16:20:05,744 [main] TRACE Style - === before tabcapt.addPreferredStyles([TABLE-title, Caption, Beschriftung, Légende]): +Style.tabcapt=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 16:20:05,744 [main] TRACE Style - === after +Style.tabcapt=null; cfg-preferred names=[TABLE-title, Caption, Beschriftung, Légende]; doc-usable styles={}; all recognised names=[TABLE-title, Beschriftung, Légende, Caption] + +2024-09-07 16:20:05,744 [main] TRACE Style - === before toc1.addPreferredStyles([TOC]): +Style.toc1=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 16:20:05,744 [main] TRACE Style - === after +Style.toc1=null; cfg-preferred names=[TOC 1]; doc-usable styles={}; all recognised names=[TOC 1] + +2024-09-07 16:20:05,744 [main] TRACE Style - === before toc2.addPreferredStyles([TOC]): +Style.toc2=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 16:20:05,744 [main] TRACE Style - === after +Style.toc2=null; cfg-preferred names=[TOC 2]; doc-usable styles={}; all recognised names=[TOC 2] + +2024-09-07 16:20:05,744 [main] TRACE Style - === before toc3.addPreferredStyles([TOC]): +Style.toc3=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 16:20:05,744 [main] TRACE Style - === after +Style.toc3=null; cfg-preferred names=[TOC 3]; doc-usable styles={}; all recognised names=[TOC 3] + +2024-09-07 16:20:05,744 [main] TRACE Style - === before toc4.addPreferredStyles([TOC]): +Style.toc4=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 16:20:05,744 [main] TRACE Style - === after +Style.toc4=null; cfg-preferred names=[TOC 4]; doc-usable styles={}; all recognised names=[TOC 4] + +2024-09-07 16:20:05,744 [main] TRACE Style - === before toc5.addPreferredStyles([TOC]): +Style.toc5=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 16:20:05,744 [main] TRACE Style - === after +Style.toc5=null; cfg-preferred names=[TOC 5]; doc-usable styles={}; all recognised names=[TOC 5] + +2024-09-07 16:20:05,744 [main] TRACE Style - === before toc6.addPreferredStyles([TOC]): +Style.toc6=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 16:20:05,744 [main] TRACE Style - === after +Style.toc6=null; cfg-preferred names=[TOC 6]; doc-usable styles={}; all recognised names=[TOC 6] + +2024-09-07 16:20:05,744 [main] TRACE Style - === before toc7.addPreferredStyles([TOC]): +Style.toc7=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 16:20:05,744 [main] TRACE Style - === after +Style.toc7=null; cfg-preferred names=[TOC 7]; doc-usable styles={}; all recognised names=[TOC 7] + +2024-09-07 16:20:05,745 [main] TRACE Style - === before toc8.addPreferredStyles([TOC]): +Style.toc8=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 16:20:05,745 [main] TRACE Style - === after +Style.toc8=null; cfg-preferred names=[TOC 8]; doc-usable styles={}; all recognised names=[TOC 8] + +2024-09-07 16:20:05,745 [main] TRACE Style - === before toc9.addPreferredStyles([TOC]): +Style.toc9=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 16:20:05,745 [main] TRACE Style - === after +Style.toc9=null; cfg-preferred names=[TOC 9]; doc-usable styles={}; all recognised names=[TOC 9] + +2024-09-07 16:20:05,745 [main] TRACE Style - === before h1.addPreferredStyles([Heading]): +Style.h1=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 16:20:05,745 [main] TRACE Style - === after +Style.h1=null; cfg-preferred names=[Heading 1]; doc-usable styles={}; all recognised names=[Heading 1] + +2024-09-07 16:20:05,745 [main] TRACE Style - === before h2.addPreferredStyles([Heading]): +Style.h2=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 16:20:05,745 [main] TRACE Style - === after +Style.h2=null; cfg-preferred names=[Heading 2]; doc-usable styles={}; all recognised names=[Heading 2] + +2024-09-07 16:20:05,745 [main] TRACE Style - === before h3.addPreferredStyles([Heading]): +Style.h3=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 16:20:05,745 [main] TRACE Style - === after +Style.h3=null; cfg-preferred names=[Heading 3]; doc-usable styles={}; all recognised names=[Heading 3] + +2024-09-07 16:20:05,745 [main] TRACE Style - === before h4.addPreferredStyles([Heading]): +Style.h4=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 16:20:05,745 [main] TRACE Style - === after +Style.h4=null; cfg-preferred names=[Heading 4]; doc-usable styles={}; all recognised names=[Heading 4] + +2024-09-07 16:20:05,745 [main] TRACE Style - === before h5.addPreferredStyles([Heading]): +Style.h5=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 16:20:05,745 [main] TRACE Style - === after +Style.h5=null; cfg-preferred names=[Heading 5]; doc-usable styles={}; all recognised names=[Heading 5] + +2024-09-07 16:20:05,745 [main] TRACE Style - === before h6.addPreferredStyles([Heading]): +Style.h6=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 16:20:05,745 [main] TRACE Style - === after +Style.h6=null; cfg-preferred names=[Heading 6]; doc-usable styles={}; all recognised names=[Heading 6] + +2024-09-07 16:20:05,745 [main] TRACE Style - === before h7.addPreferredStyles([Heading]): +Style.h7=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 16:20:05,745 [main] TRACE Style - === after +Style.h7=null; cfg-preferred names=[Heading 7]; doc-usable styles={}; all recognised names=[Heading 7] + +2024-09-07 16:20:05,745 [main] TRACE Style - === before h8.addPreferredStyles([Heading]): +Style.h8=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 16:20:05,745 [main] TRACE Style - === after +Style.h8=null; cfg-preferred names=[Heading 8]; doc-usable styles={}; all recognised names=[Heading 8] + +2024-09-07 16:20:05,745 [main] TRACE Style - === before h9.addPreferredStyles([Heading]): +Style.h9=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 16:20:05,745 [main] TRACE Style - === after +Style.h9=null; cfg-preferred names=[Heading 9]; doc-usable styles={}; all recognised names=[Heading 9] + +2024-09-07 16:20:06,059 [main] INFO AbstractWordWriter - Created DocWordWriter. +2024-09-07 16:20:06,059 [main] INFO JCleanCim - from C:\Users\gigi\git\jCleanCim\input\57-62351-7-Ed2-FDIS-template_20240901.docx +2024-09-07 16:20:06,059 [main] INFO JCleanCim - into C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx +2024-09-07 16:20:06,059 [main] INFO DocWordWriter - creating MSWord application +2024-09-07 16:20:10,417 [main] INFO DocWordWriter - opening MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 16:20:11,385 [main] INFO AbstractWordWriter - Microsoft Word version: 15.0 + +2024-09-07 16:20:11,541 [main] DEBUG DocWordWriter - original(_initialOptions): OptimOptions [viewId=3, normView=false, paginate=true, updFld=true, updScr=true, fastSave=false, spelling=false, grammar=false] +2024-09-07 16:20:11,557 [main] DEBUG DocWordWriter - setting existing custom property: uml = IEC62351-7-Ed2-FDIS-20240901.eap +2024-09-07 16:20:11,572 [main] DEBUG DocWordWriter - setting existing custom property: jCleanCim = 02v03 +2024-09-07 16:20:11,590 [main] INFO OptimOptions - setting view to normal +2024-09-07 16:20:11,657 [main] INFO OptimOptions - disabling pagination +2024-09-07 16:20:11,814 [main] INFO OptimOptions - disabling field update +2024-09-07 16:20:11,898 [main] INFO OptimOptions - disabling screen updating +2024-09-07 16:20:11,906 [main] DEBUG DocWordWriter - current(_optimisedOptions): OptimOptions [viewId=1, normView=true, paginate=false, updFld=false, updScr=false, fastSave=false, spelling=false, grammar=false] +2024-09-07 16:20:11,906 [main] INFO Util - +2024-09-07 16:20:11,906 [main] INFO Util - ------------------------------------------------ +2024-09-07 16:20:11,906 [main] INFO Util - collecting existing and retaining usable styles from open MS Word document.... +2024-09-07 16:20:11,934 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Normal, id=-1, outline = 0, kind=normal +2024-09-07 16:20:11,954 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 1, id=-2, outline = 1, kind=heading +2024-09-07 16:20:11,964 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 2, id=-3, outline = 2, kind=heading +2024-09-07 16:20:11,980 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 3, id=-4, outline = 3, kind=heading +2024-09-07 16:20:11,988 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 4, id=-5, outline = 4, kind=heading +2024-09-07 16:20:11,992 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 5, id=-6, outline = 5, kind=heading +2024-09-07 16:20:11,999 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 6, id=-7, outline = 6, kind=heading +2024-09-07 16:20:12,004 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 7, id=-8, outline = 7, kind=heading +2024-09-07 16:20:12,008 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 8, id=-9, outline = 8, kind=heading +2024-09-07 16:20:12,013 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 9, id=-10, outline = 9, kind=heading +2024-09-07 16:20:12,018 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 1;?????????1?, id=-20, outline = 1, kind=toc +2024-09-07 16:20:12,024 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 2, id=-21, outline = 2, kind=toc +2024-09-07 16:20:12,029 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 3, id=-22, outline = 3, kind=toc +2024-09-07 16:20:12,033 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 4, id=-23, outline = 4, kind=toc +2024-09-07 16:20:12,038 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 5, id=-24, outline = 5, kind=toc +2024-09-07 16:20:12,041 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 6, id=-25, outline = 6, kind=toc +2024-09-07 16:20:12,046 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 7, id=-26, outline = 7, kind=toc +2024-09-07 16:20:12,049 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 8, id=-27, outline = 8, kind=toc +2024-09-07 16:20:12,053 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 9, id=-28, outline = 9, kind=toc +2024-09-07 16:20:12,057 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Caption, id=-35, outline = 0, kind=caption +2024-09-07 16:20:17,404 [main] INFO DocWordWriter - AMD-Heading1 (custom, id=0: OTHER) +2024-09-07 16:20:17,404 [main] INFO DocWordWriter - AMD-Heading2... (custom, id=0: OTHER) +2024-09-07 16:20:17,405 [main] INFO DocWordWriter - ANNEX_title (custom, id=0: OTHER) +2024-09-07 16:20:17,405 [main] INFO DocWordWriter - Annexes (custom, id=0: OTHER) +2024-09-07 16:20:17,405 [main] INFO DocWordWriter - ANNEX-heading1 (custom, id=0: OTHER) +2024-09-07 16:20:17,405 [main] INFO DocWordWriter - ANNEX-heading2 (custom, id=0: OTHER) +2024-09-07 16:20:17,405 [main] INFO DocWordWriter - ANNEX-heading2... (custom, id=0: OTHER) +2024-09-07 16:20:17,405 [main] INFO DocWordWriter - ANNEX-heading3 (custom, id=0: OTHER) +2024-09-07 16:20:17,405 [main] INFO DocWordWriter - ANNEX-heading4 (custom, id=0: OTHER) +2024-09-07 16:20:17,405 [main] INFO DocWordWriter - ANNEX-heading5 (custom, id=0: OTHER) +2024-09-07 16:20:17,405 [main] INFO DocWordWriter - ANNEX-title (custom, id=0: OTHER) +2024-09-07 16:20:17,405 [main] INFO DocWordWriter - BIBLIOGRAPHY-numbered (custom, id=0: OTHER) +2024-09-07 16:20:17,405 [main] INFO DocWordWriter - Body Drawing (custom, id=0: OTHER) +2024-09-07 16:20:17,405 [main] INFO DocWordWriter - Body Small (custom, id=0: OTHER) +2024-09-07 16:20:17,405 [main] INFO DocWordWriter - Body Text Bold (custom, id=0: OTHER) +2024-09-07 16:20:17,406 [main] INFO DocWordWriter - Body Text Hanging (custom, id=0: OTHER) +2024-09-07 16:20:17,406 [main] INFO DocWordWriter - Body Text Single (custom, id=0: OTHER) +2024-09-07 16:20:17,406 [main] INFO DocWordWriter - Caption (builtIn, id=-35: CAPT) +2024-09-07 16:20:17,406 [main] INFO DocWordWriter - CODE (custom, id=0: OTHER) +2024-09-07 16:20:17,406 [main] INFO DocWordWriter - CODE-TableCell (custom, id=0: OTHER) +2024-09-07 16:20:17,406 [main] INFO DocWordWriter - Colorful Grid - Accent 11 (custom, id=0: OTHER) +2024-09-07 16:20:17,406 [main] INFO DocWordWriter - Colorful List - Accent 11 (custom, id=0: OTHER) +2024-09-07 16:20:17,406 [main] INFO DocWordWriter - Confidential Page # Date (custom, id=0: OTHER) +2024-09-07 16:20:17,406 [main] INFO DocWordWriter - Cover Subtitle (custom, id=0: OTHER) +2024-09-07 16:20:17,406 [main] INFO DocWordWriter - Cover Title (custom, id=0: OTHER) +2024-09-07 16:20:17,406 [main] INFO DocWordWriter - Disclaimer (custom, id=0: OTHER) +2024-09-07 16:20:17,406 [main] INFO DocWordWriter - DisclaimerInsert (custom, id=0: OTHER) +2024-09-07 16:20:17,407 [main] INFO DocWordWriter - EPRI Address (custom, id=0: OTHER) +2024-09-07 16:20:17,407 [main] INFO DocWordWriter - EPRI Block Quote (custom, id=0: OTHER) +2024-09-07 16:20:17,407 [main] INFO DocWordWriter - EPRI Bulleted List (custom, id=0: OTHER) +2024-09-07 16:20:17,407 [main] INFO DocWordWriter - EPRI Citations (custom, id=0: OTHER) +2024-09-07 16:20:17,407 [main] INFO DocWordWriter - EPRI Citations NEPO FY01-02 (custom, id=0: OTHER) +2024-09-07 16:20:17,407 [main] INFO DocWordWriter - EPRI Citations NEPO FY03 (custom, id=0: OTHER) +2024-09-07 16:20:17,407 [main] INFO DocWordWriter - EPRI Copyright Text (custom, id=0: OTHER) +2024-09-07 16:20:17,407 [main] INFO DocWordWriter - EPRI Copyright Title (custom, id=0: OTHER) +2024-09-07 16:20:17,407 [main] INFO DocWordWriter - EPRI Cosponsor Text (custom, id=0: OTHER) +2024-09-07 16:20:17,407 [main] INFO DocWordWriter - EPRI Disclaimer (custom, id=0: OTHER) +2024-09-07 16:20:17,407 [main] INFO DocWordWriter - EPRI Disclaimer Insert (custom, id=0: OTHER) +2024-09-07 16:20:17,407 [main] INFO DocWordWriter - EPRI Disclaimer Title (custom, id=0: OTHER) +2024-09-07 16:20:17,408 [main] INFO DocWordWriter - EPRI Executable Box (custom, id=0: OTHER) +2024-09-07 16:20:17,408 [main] INFO DocWordWriter - EPRI Figure (custom, id=0: OTHER) +2024-09-07 16:20:17,408 [main] INFO DocWordWriter - EPRI Footnote Text (custom, id=0: OTHER) +2024-09-07 16:20:17,408 [main] INFO DocWordWriter - EPRI Front Matter Bullet (custom, id=0: OTHER) +2024-09-07 16:20:17,408 [main] INFO DocWordWriter - EPRI Front Matter Text First Paragraph (custom, id=0: OTHER) +2024-09-07 16:20:17,408 [main] INFO DocWordWriter - EPRI Heading 2;First Level Head (custom, id=0: OTHER) +2024-09-07 16:20:17,408 [main] INFO DocWordWriter - EPRI Heading 3;Second Level Head (custom, id=0: OTHER) +2024-09-07 16:20:17,408 [main] INFO DocWordWriter - EPRI Heading 8;Appendix 2nd Level Head (custom, id=0: OTHER) +2024-09-07 16:20:17,408 [main] INFO DocWordWriter - EPRI Heading 9;Appendix 3rd Level Head (custom, id=0: OTHER) +2024-09-07 16:20:17,408 [main] INFO DocWordWriter - EPRI Key Point (custom, id=0: OTHER) +2024-09-07 16:20:17,408 [main] INFO DocWordWriter - EPRI Licensed (custom, id=0: OTHER) +2024-09-07 16:20:17,408 [main] INFO DocWordWriter - EPRI Licensed 1st pg (custom, id=0: OTHER) +2024-09-07 16:20:17,408 [main] INFO DocWordWriter - EPRI Licensed Header (custom, id=0: OTHER) +2024-09-07 16:20:17,408 [main] INFO DocWordWriter - EPRI Normal (custom, id=0: OTHER) +2024-09-07 16:20:17,408 [main] INFO DocWordWriter - EPRI Numbered List (custom, id=0: OTHER) +2024-09-07 16:20:17,408 [main] INFO DocWordWriter - EPRI Ordering (custom, id=0: OTHER) +2024-09-07 16:20:17,409 [main] INFO DocWordWriter - EPRI Popout (custom, id=0: OTHER) +2024-09-07 16:20:17,409 [main] INFO DocWordWriter - EPRI Product ID# (custom, id=0: OTHER) +2024-09-07 16:20:17,409 [main] INFO DocWordWriter - EPRI Project Manager (custom, id=0: OTHER) +2024-09-07 16:20:17,409 [main] INFO DocWordWriter - EPRI RS Bulleted List (custom, id=0: OTHER) +2024-09-07 16:20:17,409 [main] INFO DocWordWriter - EPRI RS Subtitle (custom, id=0: OTHER) +2024-09-07 16:20:17,409 [main] INFO DocWordWriter - EPRI RS Text (custom, id=0: OTHER) +2024-09-07 16:20:17,409 [main] INFO DocWordWriter - EPRI Section Number (custom, id=0: OTHER) +2024-09-07 16:20:17,409 [main] INFO DocWordWriter - EPRI Section Style (custom, id=0: OTHER) +2024-09-07 16:20:17,409 [main] INFO DocWordWriter - EPRI Section Title (custom, id=0: OTHER) +2024-09-07 16:20:17,409 [main] INFO DocWordWriter - EPRI Sub Bulleted List (custom, id=0: OTHER) +2024-09-07 16:20:17,409 [main] INFO DocWordWriter - EPRI Sub Bulleted List 2 (custom, id=0: OTHER) +2024-09-07 16:20:17,409 [main] INFO DocWordWriter - EPRI Subheadings (custom, id=0: OTHER) +2024-09-07 16:20:17,409 [main] INFO DocWordWriter - EPRI Subtitle (custom, id=0: OTHER) +2024-09-07 16:20:17,409 [main] INFO DocWordWriter - EPRI Table Header (custom, id=0: OTHER) +2024-09-07 16:20:17,409 [main] INFO DocWordWriter - EPRI Table Text (custom, id=0: OTHER) +2024-09-07 16:20:17,409 [main] INFO DocWordWriter - EPRI Table Text Left (custom, id=0: OTHER) +2024-09-07 16:20:17,410 [main] INFO DocWordWriter - EPRI Title (custom, id=0: OTHER) +2024-09-07 16:20:17,410 [main] INFO DocWordWriter - EPRI Title Text (custom, id=0: OTHER) +2024-09-07 16:20:17,410 [main] INFO DocWordWriter - EPRI TOC 1 (custom, id=0: OTHER) +2024-09-07 16:20:17,410 [main] INFO DocWordWriter - EPRI TOC 2 (custom, id=0: OTHER) +2024-09-07 16:20:17,410 [main] INFO DocWordWriter - EPRI TOC 3 (custom, id=0: OTHER) +2024-09-07 16:20:17,410 [main] INFO DocWordWriter - EPRI TOC 4 (custom, id=0: OTHER) +2024-09-07 16:20:17,410 [main] INFO DocWordWriter - EPRI TOC 5 (custom, id=0: OTHER) +2024-09-07 16:20:17,410 [main] INFO DocWordWriter - eprinormal (custom, id=0: OTHER) +2024-09-07 16:20:17,410 [main] INFO DocWordWriter - EXAMPLE (custom, id=0: OTHER) +2024-09-07 16:20:17,410 [main] INFO DocWordWriter - FIGURE (custom, id=0: OTHER) +2024-09-07 16:20:17,410 [main] INFO DocWordWriter - FIGURE-title (custom, id=0: OTHER) +2024-09-07 16:20:17,410 [main] INFO DocWordWriter - FOREWORD (custom, id=0: OTHER) +2024-09-07 16:20:17,410 [main] INFO DocWordWriter - FORM-admin (custom, id=0: OTHER) +2024-09-07 16:20:17,410 [main] INFO DocWordWriter - Front Matter Footnote Text (custom, id=0: OTHER) +2024-09-07 16:20:17,410 [main] INFO DocWordWriter - head1 (custom, id=0: OTHER) +2024-09-07 16:20:17,411 [main] INFO DocWordWriter - Heading 1 (builtIn, id=-2: HEAD) +2024-09-07 16:20:17,411 [main] INFO DocWordWriter - Heading 2 (builtIn, id=-3: HEAD) +2024-09-07 16:20:17,411 [main] INFO DocWordWriter - Heading 3 (builtIn, id=-4: HEAD) +2024-09-07 16:20:17,411 [main] INFO DocWordWriter - Heading 4 (builtIn, id=-5: HEAD) +2024-09-07 16:20:17,411 [main] INFO DocWordWriter - Heading 5 (builtIn, id=-6: HEAD) +2024-09-07 16:20:17,411 [main] INFO DocWordWriter - Heading 6 (builtIn, id=-7: HEAD) +2024-09-07 16:20:17,411 [main] INFO DocWordWriter - Heading 7 (builtIn, id=-8: HEAD) +2024-09-07 16:20:17,411 [main] INFO DocWordWriter - Heading 8 (builtIn, id=-9: HEAD) +2024-09-07 16:20:17,411 [main] INFO DocWordWriter - Heading 9 (builtIn, id=-10: HEAD) +2024-09-07 16:20:17,411 [main] INFO DocWordWriter - HEADING(Nonumber) (custom, id=0: OTHER) +2024-09-07 16:20:17,411 [main] INFO DocWordWriter - Headings (custom, id=0: OTHER) +2024-09-07 16:20:17,411 [main] INFO DocWordWriter - IEC_INSTRUCTIONS (custom, id=0: OTHER) +2024-09-07 16:20:17,411 [main] INFO DocWordWriter - ISO_Change (custom, id=0: OTHER) +2024-09-07 16:20:17,412 [main] INFO DocWordWriter - ISO_Secret_Observations (custom, id=0: OTHER) +2024-09-07 16:20:17,412 [main] INFO DocWordWriter - List Bullet 6 (custom, id=0: OTHER) +2024-09-07 16:20:17,412 [main] INFO DocWordWriter - List Dash (custom, id=0: OTHER) +2024-09-07 16:20:17,412 [main] INFO DocWordWriter - List Dash 2 (custom, id=0: OTHER) +2024-09-07 16:20:17,412 [main] INFO DocWordWriter - List Dash 3 (custom, id=0: OTHER) +2024-09-07 16:20:17,412 [main] INFO DocWordWriter - List Dash 4 (custom, id=0: OTHER) +2024-09-07 16:20:17,412 [main] INFO DocWordWriter - List Number alt (custom, id=0: OTHER) +2024-09-07 16:20:17,412 [main] INFO DocWordWriter - List Number alt 2 (custom, id=0: OTHER) +2024-09-07 16:20:17,412 [main] INFO DocWordWriter - List Number alt 3 (custom, id=0: OTHER) +2024-09-07 16:20:17,412 [main] INFO DocWordWriter - MAIN-TITLE (custom, id=0: OTHER) +2024-09-07 16:20:17,412 [main] INFO DocWordWriter - MAIN-TITLE12 (custom, id=0: OTHER) +2024-09-07 16:20:17,412 [main] INFO DocWordWriter - Normal (builtIn, id=-1: NORM) +2024-09-07 16:20:17,412 [main] INFO DocWordWriter - Normal Hang (custom, id=0: OTHER) +2024-09-07 16:20:17,412 [main] INFO DocWordWriter - NOTE (custom, id=0: OTHER) +2024-09-07 16:20:17,412 [main] INFO DocWordWriter - Numbered PARA (level 2) (custom, id=0: OTHER) +2024-09-07 16:20:17,413 [main] INFO DocWordWriter - Numbered PARA (level 3) (custom, id=0: OTHER) +2024-09-07 16:20:17,413 [main] INFO DocWordWriter - Numbered PARA (level 4) (custom, id=0: OTHER) +2024-09-07 16:20:17,413 [main] INFO DocWordWriter - Outline (custom, id=0: OTHER) +2024-09-07 16:20:17,413 [main] INFO DocWordWriter - PARAEQUATION (custom, id=0: OTHER) +2024-09-07 16:20:17,413 [main] INFO DocWordWriter - PARAGRAPH (custom, id=0: OTHER) +2024-09-07 16:20:17,413 [main] INFO DocWordWriter - Picture (custom, id=0: OTHER) +2024-09-07 16:20:17,413 [main] INFO DocWordWriter - Product ID# (custom, id=0: OTHER) +2024-09-07 16:20:17,413 [main] INFO DocWordWriter - Section Title Only (custom, id=0: OTHER) +2024-09-07 16:20:17,413 [main] INFO DocWordWriter - SMALL-BLOCKS12 (custom, id=0: OTHER) +2024-09-07 16:20:17,413 [main] INFO DocWordWriter - Style Outline numbered (custom, id=0: OTHER) +2024-09-07 16:20:17,413 [main] INFO DocWordWriter - TAB_FIG_footnote (custom, id=0: OTHER) +2024-09-07 16:20:17,413 [main] INFO DocWordWriter - Table Bullet (custom, id=0: OTHER) +2024-09-07 16:20:17,413 [main] INFO DocWordWriter - Table Dash (custom, id=0: OTHER) +2024-09-07 16:20:17,413 [main] INFO DocWordWriter - Table Style (custom, id=0: OTHER) +2024-09-07 16:20:17,414 [main] INFO DocWordWriter - TABLE-cell (custom, id=0: OTHER) +2024-09-07 16:20:17,414 [main] INFO DocWordWriter - TABLE-centered (custom, id=0: OTHER) +2024-09-07 16:20:17,414 [main] INFO DocWordWriter - TABLE-col-heading (custom, id=0: OTHER) +2024-09-07 16:20:17,414 [main] INFO DocWordWriter - TABLE-title (custom, id=0: OTHER) +2024-09-07 16:20:17,414 [main] INFO DocWordWriter - TERM (custom, id=0: OTHER) +2024-09-07 16:20:17,414 [main] INFO DocWordWriter - TERM-admitted (custom, id=0: OTHER) +2024-09-07 16:20:17,414 [main] INFO DocWordWriter - TERM-definition (custom, id=0: OTHER) +2024-09-07 16:20:17,414 [main] INFO DocWordWriter - TERM-deprecated (custom, id=0: OTHER) +2024-09-07 16:20:17,414 [main] INFO DocWordWriter - TERM-example (custom, id=0: OTHER) +2024-09-07 16:20:17,414 [main] INFO DocWordWriter - TERM-note (custom, id=0: OTHER) +2024-09-07 16:20:17,414 [main] INFO DocWordWriter - TERM-number (custom, id=0: OTHER) +2024-09-07 16:20:17,414 [main] INFO DocWordWriter - TERM-number 3 (custom, id=0: OTHER) +2024-09-07 16:20:17,415 [main] INFO DocWordWriter - TERM-number 4 (custom, id=0: OTHER) +2024-09-07 16:20:17,415 [main] INFO DocWordWriter - TERM-source (custom, id=0: OTHER) +2024-09-07 16:20:17,415 [main] INFO DocWordWriter - Title Page Text (custom, id=0: OTHER) +2024-09-07 16:20:17,415 [main] INFO DocWordWriter - Title1 (custom, id=0: OTHER) +2024-09-07 16:20:17,415 [main] INFO DocWordWriter - TOC 1;?????????1? (builtIn, id=-20: TOC) +2024-09-07 16:20:17,415 [main] INFO DocWordWriter - TOC 2 (builtIn, id=-21: TOC) +2024-09-07 16:20:17,415 [main] INFO DocWordWriter - TOC 3 (builtIn, id=-22: TOC) +2024-09-07 16:20:17,415 [main] INFO DocWordWriter - TOC 4 (builtIn, id=-23: TOC) +2024-09-07 16:20:17,415 [main] INFO DocWordWriter - TOC 5 (builtIn, id=-24: TOC) +2024-09-07 16:20:17,415 [main] INFO DocWordWriter - TOC 6 (builtIn, id=-25: TOC) +2024-09-07 16:20:17,415 [main] INFO DocWordWriter - TOC 7 (builtIn, id=-26: TOC) +2024-09-07 16:20:17,415 [main] INFO DocWordWriter - TOC 8 (builtIn, id=-27: TOC) +2024-09-07 16:20:17,415 [main] INFO DocWordWriter - TOC 9 (builtIn, id=-28: TOC) +2024-09-07 16:20:17,416 [main] INFO DocWordWriter - UCI List (custom, id=0: OTHER) +2024-09-07 16:20:17,416 [main] INFO Util - time=[0:00:05.509] collected existing and retained usable styles +2024-09-07 16:20:17,416 [main] INFO Util - +2024-09-07 16:20:17,416 [main] TRACE Style - === before para.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.para=null; cfg-preferred names=[PARAGRAPH, Normal, Standard]; doc-usable styles={}; all recognised names=[PARAGRAPH, Standard, Normal] +2024-09-07 16:20:17,416 [main] INFO Style - Assigned from preferred names [full match]: Style.para=PARAGRAPH; cfg-preferred names=[PARAGRAPH, Normal, Standard] +2024-09-07 16:20:17,416 [main] TRACE Style - === after +Style.para=PARAGRAPH; cfg-preferred names=[PARAGRAPH, Normal, Standard]; doc-usable styles={PARAGRAPH=PARAGRAPH (custom, id=0: PARA), Normal=Normal (builtIn, id=-1: NORM)}; all recognised names=[PARAGRAPH, Standard, Normal] + +2024-09-07 16:20:17,417 [main] TRACE Style - === before fig.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.fig=null; cfg-preferred names=[FIGURE, Picture, Normal, Standard]; doc-usable styles={}; all recognised names=[Picture, Standard, Normal, FIGURE] +2024-09-07 16:20:17,417 [main] INFO Style - Assigned from preferred names [full match]: Style.fig=FIGURE; cfg-preferred names=[FIGURE, Picture, Normal, Standard] +2024-09-07 16:20:17,417 [main] TRACE Style - === after +Style.fig=FIGURE; cfg-preferred names=[FIGURE, Picture, Normal, Standard]; doc-usable styles={FIGURE=FIGURE (custom, id=0: FIG), Picture=Picture (custom, id=0: OTHER), Normal=Normal (builtIn, id=-1: NORM)}; all recognised names=[Picture, Standard, Normal, FIGURE] + +2024-09-07 16:20:17,417 [main] TRACE Style - === before tabhead.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.tabhead=null; cfg-preferred names=[TABLE-col-heading, Normal, Standard]; doc-usable styles={}; all recognised names=[TABLE-col-heading, Standard, Normal] +2024-09-07 16:20:17,417 [main] INFO Style - Assigned from preferred names [full match]: Style.tabhead=TABLE-col-heading; cfg-preferred names=[TABLE-col-heading, Normal, Standard] +2024-09-07 16:20:17,417 [main] TRACE Style - === after +Style.tabhead=TABLE-col-heading; cfg-preferred names=[TABLE-col-heading, Normal, Standard]; doc-usable styles={TABLE-col-heading=TABLE-col-heading (custom, id=0: TABHEAD), Normal=Normal (builtIn, id=-1: NORM)}; all recognised names=[TABLE-col-heading, Standard, Normal] + +2024-09-07 16:20:17,417 [main] TRACE Style - === before tabcell.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.tabcell=null; cfg-preferred names=[TABLE-cell, Normal, Standard]; doc-usable styles={}; all recognised names=[TABLE-cell, Standard, Normal] +2024-09-07 16:20:17,417 [main] INFO Style - Assigned from preferred names [full match]: Style.tabcell=TABLE-cell; cfg-preferred names=[TABLE-cell, Normal, Standard] +2024-09-07 16:20:17,418 [main] TRACE Style - === after +Style.tabcell=TABLE-cell; cfg-preferred names=[TABLE-cell, Normal, Standard]; doc-usable styles={TABLE-cell=TABLE-cell (custom, id=0: TABCELL), Normal=Normal (builtIn, id=-1: NORM)}; all recognised names=[TABLE-cell, Standard, Normal] + +2024-09-07 16:20:17,418 [main] TRACE Style - === before figcapt.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.figcapt=null; cfg-preferred names=[FIGURE-title, Caption, Beschriftung, Légende]; doc-usable styles={}; all recognised names=[FIGURE-title, Beschriftung, Légende, Caption] +2024-09-07 16:20:17,418 [main] INFO Style - Assigned from preferred names [full match]: Style.figcapt=FIGURE-title; cfg-preferred names=[FIGURE-title, Caption, Beschriftung, Légende] +2024-09-07 16:20:17,418 [main] TRACE Style - === after +Style.figcapt=FIGURE-title; cfg-preferred names=[FIGURE-title, Caption, Beschriftung, Légende]; doc-usable styles={FIGURE-title=FIGURE-title (custom, id=0: FIGCAPT), Caption=Caption (builtIn, id=-35: CAPT)}; all recognised names=[FIGURE-title, Beschriftung, Légende, Caption] + +2024-09-07 16:20:17,418 [main] TRACE Style - === before tabcapt.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.tabcapt=null; cfg-preferred names=[TABLE-title, Caption, Beschriftung, Légende]; doc-usable styles={}; all recognised names=[TABLE-title, Beschriftung, Légende, Caption] +2024-09-07 16:20:17,418 [main] INFO Style - Assigned from preferred names [full match]: Style.tabcapt=TABLE-title; cfg-preferred names=[TABLE-title, Caption, Beschriftung, Légende] +2024-09-07 16:20:17,418 [main] TRACE Style - === after +Style.tabcapt=TABLE-title; cfg-preferred names=[TABLE-title, Caption, Beschriftung, Légende]; doc-usable styles={TABLE-title=TABLE-title (custom, id=0: TABCAPT), Caption=Caption (builtIn, id=-35: CAPT)}; all recognised names=[TABLE-title, Beschriftung, Légende, Caption] + +2024-09-07 16:20:17,418 [main] TRACE Style - === before toc1.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.toc1=null; cfg-preferred names=[TOC 1]; doc-usable styles={}; all recognised names=[TOC 1] +2024-09-07 16:20:17,419 [main] INFO Style - Assigned from preferred names [matching start with preferred] :Style.toc1=TOC 1;?????????1?; cfg-preferred names=[TOC 1]; doc-usable styles={TOC 1=TOC 1;?????????1? (builtIn, id=-20: TOC)}; all recognised names=[TOC 1] +2024-09-07 16:20:17,420 [main] INFO Style - NOTE: If not happy with this assignment, add custom style(s) to your document manually. +2024-09-07 16:20:17,420 [main] TRACE Style - === after +Style.toc1=TOC 1;?????????1?; cfg-preferred names=[TOC 1]; doc-usable styles={TOC 1=TOC 1;?????????1? (builtIn, id=-20: TOC)}; all recognised names=[TOC 1] + +2024-09-07 16:20:17,420 [main] TRACE Style - === before toc2.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.toc2=null; cfg-preferred names=[TOC 2]; doc-usable styles={}; all recognised names=[TOC 2] +2024-09-07 16:20:17,420 [main] INFO Style - Assigned from preferred names [full match]: Style.toc2=TOC 2; cfg-preferred names=[TOC 2] +2024-09-07 16:20:17,420 [main] TRACE Style - === after +Style.toc2=TOC 2; cfg-preferred names=[TOC 2]; doc-usable styles={TOC 2=TOC 2 (builtIn, id=-21: TOC)}; all recognised names=[TOC 2] + +2024-09-07 16:20:17,420 [main] TRACE Style - === before toc3.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.toc3=null; cfg-preferred names=[TOC 3]; doc-usable styles={}; all recognised names=[TOC 3] +2024-09-07 16:20:17,421 [main] INFO Style - Assigned from preferred names [full match]: Style.toc3=TOC 3; cfg-preferred names=[TOC 3] +2024-09-07 16:20:17,422 [main] TRACE Style - === after +Style.toc3=TOC 3; cfg-preferred names=[TOC 3]; doc-usable styles={TOC 3=TOC 3 (builtIn, id=-22: TOC)}; all recognised names=[TOC 3] + +2024-09-07 16:20:17,422 [main] TRACE Style - === before toc4.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.toc4=null; cfg-preferred names=[TOC 4]; doc-usable styles={}; all recognised names=[TOC 4] +2024-09-07 16:20:17,422 [main] INFO Style - Assigned from preferred names [full match]: Style.toc4=TOC 4; cfg-preferred names=[TOC 4] +2024-09-07 16:20:17,422 [main] TRACE Style - === after +Style.toc4=TOC 4; cfg-preferred names=[TOC 4]; doc-usable styles={TOC 4=TOC 4 (builtIn, id=-23: TOC)}; all recognised names=[TOC 4] + +2024-09-07 16:20:17,422 [main] TRACE Style - === before toc5.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.toc5=null; cfg-preferred names=[TOC 5]; doc-usable styles={}; all recognised names=[TOC 5] +2024-09-07 16:20:17,423 [main] INFO Style - Assigned from preferred names [full match]: Style.toc5=TOC 5; cfg-preferred names=[TOC 5] +2024-09-07 16:20:17,423 [main] TRACE Style - === after +Style.toc5=TOC 5; cfg-preferred names=[TOC 5]; doc-usable styles={TOC 5=TOC 5 (builtIn, id=-24: TOC)}; all recognised names=[TOC 5] + +2024-09-07 16:20:17,423 [main] TRACE Style - === before toc6.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.toc6=null; cfg-preferred names=[TOC 6]; doc-usable styles={}; all recognised names=[TOC 6] +2024-09-07 16:20:17,423 [main] INFO Style - Assigned from preferred names [full match]: Style.toc6=TOC 6; cfg-preferred names=[TOC 6] +2024-09-07 16:20:17,423 [main] TRACE Style - === after +Style.toc6=TOC 6; cfg-preferred names=[TOC 6]; doc-usable styles={TOC 6=TOC 6 (builtIn, id=-25: TOC)}; all recognised names=[TOC 6] + +2024-09-07 16:20:17,423 [main] TRACE Style - === before toc7.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.toc7=null; cfg-preferred names=[TOC 7]; doc-usable styles={}; all recognised names=[TOC 7] +2024-09-07 16:20:17,423 [main] INFO Style - Assigned from preferred names [full match]: Style.toc7=TOC 7; cfg-preferred names=[TOC 7] +2024-09-07 16:20:17,423 [main] TRACE Style - === after +Style.toc7=TOC 7; cfg-preferred names=[TOC 7]; doc-usable styles={TOC 7=TOC 7 (builtIn, id=-26: TOC)}; all recognised names=[TOC 7] + +2024-09-07 16:20:17,423 [main] TRACE Style - === before toc8.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.toc8=null; cfg-preferred names=[TOC 8]; doc-usable styles={}; all recognised names=[TOC 8] +2024-09-07 16:20:17,424 [main] INFO Style - Assigned from preferred names [full match]: Style.toc8=TOC 8; cfg-preferred names=[TOC 8] +2024-09-07 16:20:17,424 [main] TRACE Style - === after +Style.toc8=TOC 8; cfg-preferred names=[TOC 8]; doc-usable styles={TOC 8=TOC 8 (builtIn, id=-27: TOC)}; all recognised names=[TOC 8] + +2024-09-07 16:20:17,424 [main] TRACE Style - === before toc9.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.toc9=null; cfg-preferred names=[TOC 9]; doc-usable styles={}; all recognised names=[TOC 9] +2024-09-07 16:20:17,424 [main] INFO Style - Assigned from preferred names [full match]: Style.toc9=TOC 9; cfg-preferred names=[TOC 9] +2024-09-07 16:20:17,424 [main] TRACE Style - === after +Style.toc9=TOC 9; cfg-preferred names=[TOC 9]; doc-usable styles={TOC 9=TOC 9 (builtIn, id=-28: TOC)}; all recognised names=[TOC 9] + +2024-09-07 16:20:17,424 [main] TRACE Style - === before h1.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.h1=null; cfg-preferred names=[Heading 1]; doc-usable styles={}; all recognised names=[Heading 1] +2024-09-07 16:20:17,424 [main] INFO Style - Assigned from preferred names [full match]: Style.h1=Heading 1; cfg-preferred names=[Heading 1] +2024-09-07 16:20:17,424 [main] TRACE Style - === after +Style.h1=Heading 1; cfg-preferred names=[Heading 1]; doc-usable styles={Heading 1=Heading 1 (builtIn, id=-2: HEAD)}; all recognised names=[Heading 1] + +2024-09-07 16:20:17,425 [main] TRACE Style - === before h2.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.h2=null; cfg-preferred names=[Heading 2]; doc-usable styles={}; all recognised names=[Heading 2] +2024-09-07 16:20:17,425 [main] INFO Style - Assigned from preferred names [full match]: Style.h2=Heading 2; cfg-preferred names=[Heading 2] +2024-09-07 16:20:17,425 [main] TRACE Style - === after +Style.h2=Heading 2; cfg-preferred names=[Heading 2]; doc-usable styles={Heading 2=Heading 2 (builtIn, id=-3: HEAD)}; all recognised names=[Heading 2] + +2024-09-07 16:20:17,425 [main] TRACE Style - === before h3.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.h3=null; cfg-preferred names=[Heading 3]; doc-usable styles={}; all recognised names=[Heading 3] +2024-09-07 16:20:17,425 [main] INFO Style - Assigned from preferred names [full match]: Style.h3=Heading 3; cfg-preferred names=[Heading 3] +2024-09-07 16:20:17,425 [main] TRACE Style - === after +Style.h3=Heading 3; cfg-preferred names=[Heading 3]; doc-usable styles={Heading 3=Heading 3 (builtIn, id=-4: HEAD)}; all recognised names=[Heading 3] + +2024-09-07 16:20:17,425 [main] TRACE Style - === before h4.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.h4=null; cfg-preferred names=[Heading 4]; doc-usable styles={}; all recognised names=[Heading 4] +2024-09-07 16:20:17,425 [main] INFO Style - Assigned from preferred names [full match]: Style.h4=Heading 4; cfg-preferred names=[Heading 4] +2024-09-07 16:20:17,425 [main] TRACE Style - === after +Style.h4=Heading 4; cfg-preferred names=[Heading 4]; doc-usable styles={Heading 4=Heading 4 (builtIn, id=-5: HEAD)}; all recognised names=[Heading 4] + +2024-09-07 16:20:17,426 [main] TRACE Style - === before h5.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.h5=null; cfg-preferred names=[Heading 5]; doc-usable styles={}; all recognised names=[Heading 5] +2024-09-07 16:20:17,426 [main] INFO Style - Assigned from preferred names [full match]: Style.h5=Heading 5; cfg-preferred names=[Heading 5] +2024-09-07 16:20:17,426 [main] TRACE Style - === after +Style.h5=Heading 5; cfg-preferred names=[Heading 5]; doc-usable styles={Heading 5=Heading 5 (builtIn, id=-6: HEAD)}; all recognised names=[Heading 5] + +2024-09-07 16:20:17,426 [main] TRACE Style - === before h6.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.h6=null; cfg-preferred names=[Heading 6]; doc-usable styles={}; all recognised names=[Heading 6] +2024-09-07 16:20:17,426 [main] INFO Style - Assigned from preferred names [full match]: Style.h6=Heading 6; cfg-preferred names=[Heading 6] +2024-09-07 16:20:17,426 [main] TRACE Style - === after +Style.h6=Heading 6; cfg-preferred names=[Heading 6]; doc-usable styles={Heading 6=Heading 6 (builtIn, id=-7: HEAD)}; all recognised names=[Heading 6] + +2024-09-07 16:20:17,426 [main] TRACE Style - === before h7.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.h7=null; cfg-preferred names=[Heading 7]; doc-usable styles={}; all recognised names=[Heading 7] +2024-09-07 16:20:17,426 [main] INFO Style - Assigned from preferred names [full match]: Style.h7=Heading 7; cfg-preferred names=[Heading 7] +2024-09-07 16:20:17,426 [main] TRACE Style - === after +Style.h7=Heading 7; cfg-preferred names=[Heading 7]; doc-usable styles={Heading 7=Heading 7 (builtIn, id=-8: HEAD)}; all recognised names=[Heading 7] + +2024-09-07 16:20:17,426 [main] TRACE Style - === before h8.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.h8=null; cfg-preferred names=[Heading 8]; doc-usable styles={}; all recognised names=[Heading 8] +2024-09-07 16:20:17,427 [main] INFO Style - Assigned from preferred names [full match]: Style.h8=Heading 8; cfg-preferred names=[Heading 8] +2024-09-07 16:20:17,427 [main] TRACE Style - === after +Style.h8=Heading 8; cfg-preferred names=[Heading 8]; doc-usable styles={Heading 8=Heading 8 (builtIn, id=-9: HEAD)}; all recognised names=[Heading 8] + +2024-09-07 16:20:17,427 [main] TRACE Style - === before h9.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.h9=null; cfg-preferred names=[Heading 9]; doc-usable styles={}; all recognised names=[Heading 9] +2024-09-07 16:20:17,427 [main] INFO Style - Assigned from preferred names [full match]: Style.h9=Heading 9; cfg-preferred names=[Heading 9] +2024-09-07 16:20:17,427 [main] TRACE Style - === after +Style.h9=Heading 9; cfg-preferred names=[Heading 9]; doc-usable styles={Heading 9=Heading 9 (builtIn, id=-10: HEAD)}; all recognised names=[Heading 9] + +2024-09-07 16:20:17,427 [main] INFO Util - +2024-09-07 16:20:17,427 [main] INFO Util - ------------------------------------------------ +2024-09-07 16:20:17,427 [main] INFO Util - collecting used existing figure/table caption ranges from template... +2024-09-07 16:20:22,587 [main] INFO DocWordWriter - found paragraph [Figure 1 – Example of a power system SCADA architecture extended with NSM Data Objects ] with caption style [FIGURE-title] +2024-09-07 16:20:23,698 [main] INFO DocWordWriter - found paragraph [Figure 2 – IDS Information exchange between applications: generic communication topology ] with caption style [FIGURE-title] +2024-09-07 16:20:24,079 [main] INFO DocWordWriter - found paragraph [Figure 3 – Active security monitoring architecture with NSM data objects ] with caption style [FIGURE-title] +2024-09-07 16:20:24,452 [main] INFO DocWordWriter - found paragraph [Figure 4 – Comparison of NSM data objects with IEC 61850 objects ] with caption style [FIGURE-title] +2024-09-07 16:20:24,480 [main] INFO DocWordWriter - found paragraph [Figure 5 – Management of both the power system infrastructure and the information infrastructure ] with caption style [FIGURE-title] +2024-09-07 16:20:25,420 [main] INFO DocWordWriter - found paragraph [Figure 6 – Abstract types ] with caption style [FIGURE-title] +2024-09-07 16:20:25,506 [main] INFO DocWordWriter - found paragraph [Figure 7 – Enumerated types ] with caption style [FIGURE-title] +2024-09-07 16:20:25,680 [main] INFO DocWordWriter - found paragraph [Figure 8 – Subagents ] with caption style [FIGURE-title] +2024-09-07 16:20:25,781 [main] INFO DocWordWriter - found paragraph [Figure 9 – Environmental agent ] with caption style [FIGURE-title] +2024-09-07 16:20:25,826 [main] INFO DocWordWriter - found paragraph [Figure 10 – Model stereotypes ] with caption style [FIGURE-title] +2024-09-07 16:20:26,116 [main] INFO DocWordWriter - found paragraph [Figure 11 – Object identifier structure ] with caption style [FIGURE-title] +2024-09-07 16:20:26,394 [main] INFO DocWordWriter - found paragraph [Figure 12 – SNMP table ] with caption style [FIGURE-title] +2024-09-07 16:20:26,521 [main] INFO DocWordWriter - found paragraph [Figure 13 – SNMP RFCs map and security ] with caption style [FIGURE-title] +2024-09-07 16:20:26,642 [main] INFO DocWordWriter - found paragraph [Figure 14 – SNMP Entity ] with caption style [FIGURE-title] +2024-09-07 16:20:27,344 [main] INFO DocWordWriter - found paragraph [Table B.1 – IEC 61850-7-4 objects mapping ] with caption style [TABLE-title] +2024-09-07 16:20:28,248 [main] INFO Util - time=[0:00:10.821] collected used figure/table caption ranges from template. +2024-09-07 16:20:28,248 [main] INFO Util - +2024-09-07 16:20:28,248 [main] INFO Util - +2024-09-07 16:20:28,248 [main] INFO Util - ------------------------------------------------ +2024-09-07 16:20:28,248 [main] INFO Util - scanning placeholders... +2024-09-07 16:20:28,856 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.Abstract Types.endUml' PACKAGE Abstract Types, figures (14 before ) +2024-09-07 16:20:28,935 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.EnumeratedTypes.endUml' PACKAGE EnumeratedTypes, figures (14 before ) +2024-09-07 16:20:29,016 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.Overview.endUml' PACKAGE Overview, figures (14 before ) +2024-09-07 16:20:29,094 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.Environmental Agent.endUml' PACKAGE Environmental Agent, figures (14 before ) +2024-09-07 16:20:29,182 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.IED Agent.endUml' PACKAGE IED Agent, figures (14 before ) +2024-09-07 16:20:29,254 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.Application Protocols Agents.endUml' PACKAGE Application Protocols Agents, figures (14 before ) +2024-09-07 16:20:29,327 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.Interfaces Agent.endUml' PACKAGE Interfaces Agent, figures (14 before ) +2024-09-07 16:20:29,400 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.Clocks Agent.endUml' PACKAGE Clocks Agent, figures (14 before ) +2024-09-07 16:20:29,411 [main] INFO AbstractWordWriter - 8 placeholders found. +2024-09-07 16:20:29,411 [main] INFO Util - time=[0:00:01.162] scanned placeholders. +2024-09-07 16:20:29,411 [main] INFO Util - +2024-09-07 16:20:29,412 [main] INFO Util - +2024-09-07 16:20:29,412 [main] INFO Util - ------------------------------------------------ +2024-09-07 16:20:29,412 [main] INFO Util - inserting documentation into placeholders +2024-09-07 16:20:29,420 [main] INFO AbstractWordWriter - replacing [99221 - 99258] PACKAGE Abstract Types, figures (14 before )... +2024-09-07 16:20:29,450 [main] INFO AbstractWordWriter - writing doc for package Abstract Types ... +2024-09-07 16:20:29,530 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML52' to Word document and to used list. +2024-09-07 16:20:29,578 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of Abstract Types::BooleanValue +2024-09-07 16:20:29,600 [main] DEBUG DocWordWriter - ... 22 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:20:29,611 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 16:20:29,668 [main] DEBUG DocWordWriter - ... 57 ms for fillValues() +2024-09-07 16:20:29,682 [main] DEBUG DocWordWriter - ... 14 ms for widths (table) +2024-09-07 16:20:29,789 [main] DEBUG DocWordWriter - ... 107 ms for widths (columns) +2024-09-07 16:20:29,815 [main] DEBUG DocWordWriter - ... 26 ms for shadding/merging/styling (rows) +2024-09-07 16:20:29,837 [main] DEBUG DocWordWriter - ... 22 ms for borders +2024-09-07 16:20:29,837 [main] DEBUG DocWordWriter - ... 169 ms for formatTable() +2024-09-07 16:20:29,844 [main] INFO DocWordWriter - ... 259 ms total for insertTable() +2024-09-07 16:20:29,874 [main] INFO DocWordWriter - ... 23 ms for insertCaption(): Table 1 – Attributes of Abstract Types::BooleanValue +2024-09-07 16:20:29,910 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of BooleanValue.', [99813 - 99850] +2024-09-07 16:20:29,917 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of BooleanValue.', [99813 - 99851] +2024-09-07 16:20:29,924 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [99813 - 99813] +2024-09-07 16:20:29,937 [main] INFO DocWordWriter - ... 34 ms for insertCaptionRef() +2024-09-07 16:20:29,937 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:20:29,966 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML54' to Word document and to used list. +2024-09-07 16:20:30,016 [main] INFO DocWordWriter - --- insertTable() 3 rows: Attributes of Abstract Types::BooleanValueTs +2024-09-07 16:20:30,037 [main] DEBUG DocWordWriter - ... 21 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:20:30,049 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-07 16:20:30,132 [main] DEBUG DocWordWriter - ... 83 ms for fillValues() +2024-09-07 16:20:30,147 [main] DEBUG DocWordWriter - ... 15 ms for widths (table) +2024-09-07 16:20:30,229 [main] DEBUG DocWordWriter - ... 82 ms for widths (columns) +2024-09-07 16:20:30,249 [main] DEBUG DocWordWriter - ... 20 ms for shadding/merging/styling (rows) +2024-09-07 16:20:30,278 [main] DEBUG DocWordWriter - ... 29 ms for borders +2024-09-07 16:20:30,278 [main] DEBUG DocWordWriter - ... 146 ms for formatTable() +2024-09-07 16:20:30,285 [main] INFO DocWordWriter - ... 262 ms total for insertTable() +2024-09-07 16:20:30,320 [main] INFO DocWordWriter - ... 27 ms for insertCaption(): Table 2 – Attributes of Abstract Types::BooleanValueTs +2024-09-07 16:20:30,359 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of BooleanValueTs.', [100232 - 100271] +2024-09-07 16:20:30,367 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of BooleanValueTs.', [100232 - 100272] +2024-09-07 16:20:30,374 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [100232 - 100232] +2024-09-07 16:20:30,386 [main] INFO DocWordWriter - ... 35 ms for insertCaptionRef() +2024-09-07 16:20:30,386 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:20:30,415 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML55' to Word document and to used list. +2024-09-07 16:20:30,466 [main] INFO DocWordWriter - --- insertTable() 3 rows: Attributes of Abstract Types::CounterTs +2024-09-07 16:20:30,486 [main] DEBUG DocWordWriter - ... 20 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:20:30,498 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-07 16:20:30,576 [main] DEBUG DocWordWriter - ... 78 ms for fillValues() +2024-09-07 16:20:30,591 [main] DEBUG DocWordWriter - ... 15 ms for widths (table) +2024-09-07 16:20:30,679 [main] DEBUG DocWordWriter - ... 88 ms for widths (columns) +2024-09-07 16:20:30,697 [main] DEBUG DocWordWriter - ... 18 ms for shadding/merging/styling (rows) +2024-09-07 16:20:30,721 [main] DEBUG DocWordWriter - ... 24 ms for borders +2024-09-07 16:20:30,721 [main] DEBUG DocWordWriter - ... 145 ms for formatTable() +2024-09-07 16:20:30,728 [main] INFO DocWordWriter - ... 255 ms total for insertTable() +2024-09-07 16:20:30,771 [main] INFO DocWordWriter - ... 35 ms for insertCaption(): Table 3 – Attributes of Abstract Types::CounterTs +2024-09-07 16:20:30,805 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of CounterTs.', [100812 - 100846] +2024-09-07 16:20:30,813 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of CounterTs.', [100812 - 100847] +2024-09-07 16:20:30,819 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [100812 - 100812] +2024-09-07 16:20:30,834 [main] INFO DocWordWriter - ... 36 ms for insertCaptionRef() +2024-09-07 16:20:30,834 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:20:30,863 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML67' to Word document and to used list. +2024-09-07 16:20:30,913 [main] INFO DocWordWriter - --- insertTable() 3 rows: Attributes of Abstract Types::CntRs +2024-09-07 16:20:30,942 [main] DEBUG DocWordWriter - ... 29 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:20:30,957 [main] DEBUG DocWordWriter - ... 15 ms for createTable() +2024-09-07 16:20:31,038 [main] DEBUG DocWordWriter - ... 81 ms for fillValues() +2024-09-07 16:20:31,054 [main] DEBUG DocWordWriter - ... 15 ms for widths (table) +2024-09-07 16:20:31,126 [main] DEBUG DocWordWriter - ... 72 ms for widths (columns) +2024-09-07 16:20:31,162 [main] DEBUG DocWordWriter - ... 36 ms for shadding/merging/styling (rows) +2024-09-07 16:20:31,184 [main] DEBUG DocWordWriter - ... 22 ms for borders +2024-09-07 16:20:31,185 [main] DEBUG DocWordWriter - ... 147 ms for formatTable() +2024-09-07 16:20:31,194 [main] INFO DocWordWriter - ... 272 ms total for insertTable() +2024-09-07 16:20:31,237 [main] INFO DocWordWriter - ... 36 ms for insertCaption(): Table 4 – Attributes of Abstract Types::CntRs +2024-09-07 16:20:31,277 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of CntRs.', [101378 - 101408] +2024-09-07 16:20:31,285 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of CntRs.', [101378 - 101409] +2024-09-07 16:20:31,292 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [101378 - 101378] +2024-09-07 16:20:31,307 [main] INFO DocWordWriter - ... 39 ms for insertCaptionRef() +2024-09-07 16:20:31,307 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:20:31,335 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML56' to Word document and to used list. +2024-09-07 16:20:31,388 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of Abstract Types::Floating +2024-09-07 16:20:31,409 [main] DEBUG DocWordWriter - ... 21 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:20:31,419 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-07 16:20:31,476 [main] DEBUG DocWordWriter - ... 57 ms for fillValues() +2024-09-07 16:20:31,491 [main] DEBUG DocWordWriter - ... 15 ms for widths (table) +2024-09-07 16:20:31,560 [main] DEBUG DocWordWriter - ... 69 ms for widths (columns) +2024-09-07 16:20:31,579 [main] DEBUG DocWordWriter - ... 19 ms for shadding/merging/styling (rows) +2024-09-07 16:20:31,600 [main] DEBUG DocWordWriter - ... 21 ms for borders +2024-09-07 16:20:31,600 [main] DEBUG DocWordWriter - ... 124 ms for formatTable() +2024-09-07 16:20:31,608 [main] INFO DocWordWriter - ... 212 ms total for insertTable() +2024-09-07 16:20:31,660 [main] INFO DocWordWriter - ... 44 ms for insertCaption(): Table 5 – Attributes of Abstract Types::Floating +2024-09-07 16:20:31,697 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Floating.', [101910 - 101943] +2024-09-07 16:20:31,706 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Floating.', [101910 - 101944] +2024-09-07 16:20:31,712 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [101910 - 101910] +2024-09-07 16:20:31,724 [main] INFO DocWordWriter - ... 34 ms for insertCaptionRef() +2024-09-07 16:20:31,725 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:20:31,753 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML57' to Word document and to used list. +2024-09-07 16:20:31,805 [main] INFO DocWordWriter - --- insertTable() 3 rows: Attributes of Abstract Types::FloatingTs +2024-09-07 16:20:31,827 [main] DEBUG DocWordWriter - ... 22 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:20:31,839 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-07 16:20:31,923 [main] DEBUG DocWordWriter - ... 84 ms for fillValues() +2024-09-07 16:20:31,939 [main] DEBUG DocWordWriter - ... 16 ms for widths (table) +2024-09-07 16:20:32,019 [main] DEBUG DocWordWriter - ... 80 ms for widths (columns) +2024-09-07 16:20:32,040 [main] DEBUG DocWordWriter - ... 21 ms for shadding/merging/styling (rows) +2024-09-07 16:20:32,065 [main] DEBUG DocWordWriter - ... 25 ms for borders +2024-09-07 16:20:32,065 [main] DEBUG DocWordWriter - ... 142 ms for formatTable() +2024-09-07 16:20:32,073 [main] INFO DocWordWriter - ... 260 ms total for insertTable() +2024-09-07 16:20:32,125 [main] INFO DocWordWriter - ... 45 ms for insertCaption(): Table 6 – Attributes of Abstract Types::FloatingTs +2024-09-07 16:20:32,170 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of FloatingTs.', [102337 - 102372] +2024-09-07 16:20:32,180 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of FloatingTs.', [102337 - 102373] +2024-09-07 16:20:32,186 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [102337 - 102337] +2024-09-07 16:20:32,198 [main] INFO DocWordWriter - ... 37 ms for insertCaptionRef() +2024-09-07 16:20:32,198 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:20:32,233 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML66' to Word document and to used list. +2024-09-07 16:20:32,303 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of Abstract Types::EntityIndex +2024-09-07 16:20:32,331 [main] DEBUG DocWordWriter - ... 28 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:20:32,347 [main] DEBUG DocWordWriter - ... 16 ms for createTable() +2024-09-07 16:20:32,445 [main] DEBUG DocWordWriter - ... 98 ms for fillValues() +2024-09-07 16:20:32,465 [main] DEBUG DocWordWriter - ... 20 ms for widths (table) +2024-09-07 16:20:32,560 [main] DEBUG DocWordWriter - ... 95 ms for widths (columns) +2024-09-07 16:20:32,582 [main] DEBUG DocWordWriter - ... 22 ms for shadding/merging/styling (rows) +2024-09-07 16:20:32,609 [main] DEBUG DocWordWriter - ... 27 ms for borders +2024-09-07 16:20:32,610 [main] DEBUG DocWordWriter - ... 165 ms for formatTable() +2024-09-07 16:20:32,618 [main] INFO DocWordWriter - ... 307 ms total for insertTable() +2024-09-07 16:20:32,682 [main] INFO DocWordWriter - ... 57 ms for insertCaption(): Table 7 – Attributes of Abstract Types::EntityIndex +2024-09-07 16:20:32,722 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of EntityIndex.', [102939 - 102975] +2024-09-07 16:20:32,730 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of EntityIndex.', [102939 - 102976] +2024-09-07 16:20:32,737 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [102939 - 102939] +2024-09-07 16:20:32,749 [main] INFO DocWordWriter - ... 36 ms for insertCaptionRef() +2024-09-07 16:20:32,749 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:20:32,780 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML53' to Word document and to used list. +2024-09-07 16:20:32,838 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of Abstract Types::Integer +2024-09-07 16:20:32,861 [main] DEBUG DocWordWriter - ... 23 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:20:32,872 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 16:20:32,936 [main] DEBUG DocWordWriter - ... 64 ms for fillValues() +2024-09-07 16:20:32,954 [main] DEBUG DocWordWriter - ... 18 ms for widths (table) +2024-09-07 16:20:33,033 [main] DEBUG DocWordWriter - ... 79 ms for widths (columns) +2024-09-07 16:20:33,054 [main] DEBUG DocWordWriter - ... 21 ms for shadding/merging/styling (rows) +2024-09-07 16:20:33,079 [main] DEBUG DocWordWriter - ... 25 ms for borders +2024-09-07 16:20:33,079 [main] DEBUG DocWordWriter - ... 143 ms for formatTable() +2024-09-07 16:20:33,091 [main] INFO DocWordWriter - ... 241 ms total for insertTable() +2024-09-07 16:20:33,154 [main] INFO DocWordWriter - ... 55 ms for insertCaption(): Table 8 – Attributes of Abstract Types::Integer +2024-09-07 16:20:33,195 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Integer.', [103261 - 103293] +2024-09-07 16:20:33,206 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Integer.', [103261 - 103294] +2024-09-07 16:20:33,213 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [103261 - 103261] +2024-09-07 16:20:33,225 [main] INFO DocWordWriter - ... 38 ms for insertCaptionRef() +2024-09-07 16:20:33,226 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:20:33,259 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML58' to Word document and to used list. +2024-09-07 16:20:33,322 [main] INFO DocWordWriter - --- insertTable() 3 rows: Attributes of Abstract Types::IntegerTs +2024-09-07 16:20:33,347 [main] DEBUG DocWordWriter - ... 25 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:20:33,361 [main] DEBUG DocWordWriter - ... 14 ms for createTable() +2024-09-07 16:20:33,461 [main] DEBUG DocWordWriter - ... 100 ms for fillValues() +2024-09-07 16:20:33,479 [main] DEBUG DocWordWriter - ... 18 ms for widths (table) +2024-09-07 16:20:33,558 [main] DEBUG DocWordWriter - ... 79 ms for widths (columns) +2024-09-07 16:20:33,579 [main] DEBUG DocWordWriter - ... 21 ms for shadding/merging/styling (rows) +2024-09-07 16:20:33,604 [main] DEBUG DocWordWriter - ... 25 ms for borders +2024-09-07 16:20:33,604 [main] DEBUG DocWordWriter - ... 143 ms for formatTable() +2024-09-07 16:20:33,613 [main] INFO DocWordWriter - ... 282 ms total for insertTable() +2024-09-07 16:20:33,690 [main] INFO DocWordWriter - ... 69 ms for insertCaption(): Table 9 – Attributes of Abstract Types::IntegerTs +2024-09-07 16:20:33,729 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of IntegerTs.', [103694 - 103728] +2024-09-07 16:20:33,738 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of IntegerTs.', [103694 - 103729] +2024-09-07 16:20:33,744 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [103694 - 103694] +2024-09-07 16:20:33,758 [main] INFO DocWordWriter - ... 37 ms for insertCaptionRef() +2024-09-07 16:20:33,758 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:20:33,790 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML65' to Word document and to used list. +2024-09-07 16:20:33,853 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of Abstract Types::InetAddress +2024-09-07 16:20:33,877 [main] DEBUG DocWordWriter - ... 24 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:20:33,888 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 16:20:33,955 [main] DEBUG DocWordWriter - ... 67 ms for fillValues() +2024-09-07 16:20:33,973 [main] DEBUG DocWordWriter - ... 18 ms for widths (table) +2024-09-07 16:20:34,047 [main] DEBUG DocWordWriter - ... 74 ms for widths (columns) +2024-09-07 16:20:34,070 [main] DEBUG DocWordWriter - ... 23 ms for shadding/merging/styling (rows) +2024-09-07 16:20:34,094 [main] DEBUG DocWordWriter - ... 24 ms for borders +2024-09-07 16:20:34,094 [main] DEBUG DocWordWriter - ... 139 ms for formatTable() +2024-09-07 16:20:34,104 [main] INFO DocWordWriter - ... 241 ms total for insertTable() +2024-09-07 16:20:34,181 [main] INFO DocWordWriter - ... 70 ms for insertCaption(): Table 10 – Attributes of Abstract Types::InetAddress +2024-09-07 16:20:34,221 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of InetAddress.', [104877 - 104913] +2024-09-07 16:20:34,231 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of InetAddress.', [104877 - 104914] +2024-09-07 16:20:34,239 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [104877 - 104877] +2024-09-07 16:20:34,253 [main] INFO DocWordWriter - ... 42 ms for insertCaptionRef() +2024-09-07 16:20:34,253 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:20:34,286 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML64' to Word document and to used list. +2024-09-07 16:20:34,348 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of Abstract Types::InetAddressType +2024-09-07 16:20:34,373 [main] DEBUG DocWordWriter - ... 25 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:20:34,384 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 16:20:34,449 [main] DEBUG DocWordWriter - ... 65 ms for fillValues() +2024-09-07 16:20:34,466 [main] DEBUG DocWordWriter - ... 17 ms for widths (table) +2024-09-07 16:20:34,544 [main] DEBUG DocWordWriter - ... 78 ms for widths (columns) +2024-09-07 16:20:34,566 [main] DEBUG DocWordWriter - ... 22 ms for shadding/merging/styling (rows) +2024-09-07 16:20:34,589 [main] DEBUG DocWordWriter - ... 23 ms for borders +2024-09-07 16:20:34,589 [main] DEBUG DocWordWriter - ... 140 ms for formatTable() +2024-09-07 16:20:34,599 [main] INFO DocWordWriter - ... 241 ms total for insertTable() +2024-09-07 16:20:34,683 [main] INFO DocWordWriter - ... 78 ms for insertCaption(): Table 11 – Attributes of Abstract Types::InetAddressType +2024-09-07 16:20:34,725 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of InetAddressType.', [105288 - 105328] +2024-09-07 16:20:34,735 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of InetAddressType.', [105288 - 105329] +2024-09-07 16:20:34,744 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [105288 - 105288] +2024-09-07 16:20:34,757 [main] INFO DocWordWriter - ... 40 ms for insertCaptionRef() +2024-09-07 16:20:34,757 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:20:34,792 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML63' to Word document and to used list. +2024-09-07 16:20:34,855 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of Abstract Types::MacAddress +2024-09-07 16:20:34,881 [main] DEBUG DocWordWriter - ... 26 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:20:34,892 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 16:20:34,994 [main] DEBUG DocWordWriter - ... 102 ms for fillValues() +2024-09-07 16:20:35,012 [main] DEBUG DocWordWriter - ... 18 ms for widths (table) +2024-09-07 16:20:35,084 [main] DEBUG DocWordWriter - ... 71 ms for widths (columns) +2024-09-07 16:20:35,104 [main] DEBUG DocWordWriter - ... 21 ms for shadding/merging/styling (rows) +2024-09-07 16:20:35,128 [main] DEBUG DocWordWriter - ... 24 ms for borders +2024-09-07 16:20:35,128 [main] DEBUG DocWordWriter - ... 134 ms for formatTable() +2024-09-07 16:20:35,136 [main] INFO DocWordWriter - ... 273 ms total for insertTable() +2024-09-07 16:20:35,224 [main] INFO DocWordWriter - ... 80 ms for insertCaption(): Table 12 – Attributes of Abstract Types::MacAddress +2024-09-07 16:20:35,266 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of MacAddress.', [105854 - 105889] +2024-09-07 16:20:35,276 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of MacAddress.', [105854 - 105890] +2024-09-07 16:20:35,284 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [105854 - 105854] +2024-09-07 16:20:35,298 [main] INFO DocWordWriter - ... 42 ms for insertCaptionRef() +2024-09-07 16:20:35,298 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:20:35,334 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML62' to Word document and to used list. +2024-09-07 16:20:35,398 [main] INFO DocWordWriter - closing MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 16:20:36,804 [main] INFO DocWordWriter - opening MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 16:20:37,629 [main] INFO OptimOptions - setting view to normal +2024-09-07 16:20:37,678 [main] INFO OptimOptions - disabling pagination +2024-09-07 16:20:37,715 [main] INFO OptimOptions - disabling field update +2024-09-07 16:20:37,804 [main] INFO OptimOptions - disabling screen updating +2024-09-07 16:20:37,827 [main] DEBUG DocWordWriter - current(_optimisedOptions): OptimOptions [viewId=1, normView=true, paginate=false, updFld=false, updScr=false, fastSave=false, spelling=false, grammar=false] +2024-09-07 16:20:37,998 [main] INFO Util - time=[0:00:02.630] closed and reopened document. +2024-09-07 16:20:37,998 [main] INFO Util - +2024-09-07 16:20:38,045 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of Abstract Types::Selector +2024-09-07 16:20:38,067 [main] DEBUG DocWordWriter - ... 22 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:20:38,076 [main] DEBUG DocWordWriter - ... 9 ms for createTable() +2024-09-07 16:20:38,133 [main] DEBUG DocWordWriter - ... 57 ms for fillValues() +2024-09-07 16:20:38,149 [main] DEBUG DocWordWriter - ... 16 ms for widths (table) +2024-09-07 16:20:38,221 [main] DEBUG DocWordWriter - ... 72 ms for widths (columns) +2024-09-07 16:20:38,242 [main] DEBUG DocWordWriter - ... 21 ms for shadding/merging/styling (rows) +2024-09-07 16:20:38,265 [main] DEBUG DocWordWriter - ... 23 ms for borders +2024-09-07 16:20:38,265 [main] DEBUG DocWordWriter - ... 132 ms for formatTable() +2024-09-07 16:20:38,275 [main] INFO DocWordWriter - ... 220 ms total for insertTable() +2024-09-07 16:20:38,294 [main] INFO DocWordWriter - ... 13 ms for insertCaption(): Table 13 – Attributes of Abstract Types::Selector +2024-09-07 16:20:38,333 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Selector.', [106372 - 106405] +2024-09-07 16:20:38,342 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Selector.', [106372 - 106406] +2024-09-07 16:20:38,348 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [106372 - 106372] +2024-09-07 16:20:38,357 [main] INFO DocWordWriter - ... 34 ms for insertCaptionRef() +2024-09-07 16:20:38,357 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:20:38,387 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML61' to Word document and to used list. +2024-09-07 16:20:38,443 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of Abstract Types::Timestamp +2024-09-07 16:20:38,466 [main] DEBUG DocWordWriter - ... 23 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:20:38,474 [main] DEBUG DocWordWriter - ... 8 ms for createTable() +2024-09-07 16:20:38,536 [main] DEBUG DocWordWriter - ... 62 ms for fillValues() +2024-09-07 16:20:38,554 [main] DEBUG DocWordWriter - ... 18 ms for widths (table) +2024-09-07 16:20:38,626 [main] DEBUG DocWordWriter - ... 72 ms for widths (columns) +2024-09-07 16:20:38,646 [main] DEBUG DocWordWriter - ... 20 ms for shadding/merging/styling (rows) +2024-09-07 16:20:38,671 [main] DEBUG DocWordWriter - ... 25 ms for borders +2024-09-07 16:20:38,671 [main] DEBUG DocWordWriter - ... 135 ms for formatTable() +2024-09-07 16:20:38,680 [main] INFO DocWordWriter - ... 228 ms total for insertTable() +2024-09-07 16:20:38,704 [main] INFO DocWordWriter - ... 16 ms for insertCaption(): Table 14 – Attributes of Abstract Types::Timestamp +2024-09-07 16:20:38,741 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Timestamp.', [106730 - 106764] +2024-09-07 16:20:38,750 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Timestamp.', [106730 - 106765] +2024-09-07 16:20:38,757 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [106730 - 106730] +2024-09-07 16:20:38,765 [main] INFO DocWordWriter - ... 32 ms for insertCaptionRef() +2024-09-07 16:20:38,765 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:20:38,796 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML59' to Word document and to used list. +2024-09-07 16:20:38,853 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of Abstract Types::CharString +2024-09-07 16:20:38,875 [main] DEBUG DocWordWriter - ... 22 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:20:38,883 [main] DEBUG DocWordWriter - ... 8 ms for createTable() +2024-09-07 16:20:38,941 [main] DEBUG DocWordWriter - ... 58 ms for fillValues() +2024-09-07 16:20:38,958 [main] DEBUG DocWordWriter - ... 17 ms for widths (table) +2024-09-07 16:20:39,035 [main] DEBUG DocWordWriter - ... 77 ms for widths (columns) +2024-09-07 16:20:39,056 [main] DEBUG DocWordWriter - ... 21 ms for shadding/merging/styling (rows) +2024-09-07 16:20:39,078 [main] DEBUG DocWordWriter - ... 22 ms for borders +2024-09-07 16:20:39,078 [main] DEBUG DocWordWriter - ... 137 ms for formatTable() +2024-09-07 16:20:39,087 [main] INFO DocWordWriter - ... 225 ms total for insertTable() +2024-09-07 16:20:39,110 [main] INFO DocWordWriter - ... 16 ms for insertCaption(): Table 15 – Attributes of Abstract Types::CharString +2024-09-07 16:20:39,149 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of CharString.', [107155 - 107190] +2024-09-07 16:20:39,158 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of CharString.', [107155 - 107191] +2024-09-07 16:20:39,165 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [107155 - 107155] +2024-09-07 16:20:39,173 [main] INFO DocWordWriter - ... 33 ms for insertCaptionRef() +2024-09-07 16:20:39,173 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:20:39,204 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML60' to Word document and to used list. +2024-09-07 16:20:39,265 [main] INFO DocWordWriter - --- insertTable() 3 rows: Attributes of Abstract Types::CharStringTs +2024-09-07 16:20:39,292 [main] DEBUG DocWordWriter - ... 27 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:20:39,302 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-07 16:20:39,410 [main] DEBUG DocWordWriter - ... 108 ms for fillValues() +2024-09-07 16:20:39,429 [main] DEBUG DocWordWriter - ... 19 ms for widths (table) +2024-09-07 16:20:39,520 [main] DEBUG DocWordWriter - ... 91 ms for widths (columns) +2024-09-07 16:20:39,545 [main] DEBUG DocWordWriter - ... 25 ms for shadding/merging/styling (rows) +2024-09-07 16:20:39,574 [main] DEBUG DocWordWriter - ... 29 ms for borders +2024-09-07 16:20:39,574 [main] DEBUG DocWordWriter - ... 164 ms for formatTable() +2024-09-07 16:20:39,582 [main] INFO DocWordWriter - ... 309 ms total for insertTable() +2024-09-07 16:20:39,610 [main] INFO DocWordWriter - ... 19 ms for insertCaption(): Table 16 – Attributes of Abstract Types::CharStringTs +2024-09-07 16:20:39,647 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of CharStringTs.', [107550 - 107587] +2024-09-07 16:20:39,656 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of CharStringTs.', [107550 - 107588] +2024-09-07 16:20:39,662 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [107550 - 107550] +2024-09-07 16:20:39,670 [main] INFO DocWordWriter - ... 31 ms for insertCaptionRef() +2024-09-07 16:20:39,670 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:20:39,705 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML39' to Word document and to used list. +2024-09-07 16:20:39,757 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML40' to Word document and to used list. +2024-09-07 16:20:39,788 [main] INFO Util - time=[0:00:10.375] replaced [108106 - 108166] PACKAGE Abstract Types, figures (14 before ), tables (16 mine)... +2024-09-07 16:20:39,788 [main] INFO Util - +2024-09-07 16:20:39,793 [main] INFO AbstractWordWriter - replacing [108204 - 108242] PACKAGE EnumeratedTypes, figures (14 before ), tables (16 before )... +2024-09-07 16:20:39,816 [main] INFO AbstractWordWriter - writing doc for package EnumeratedTypes ... +2024-09-07 16:20:39,889 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML41' to Word document and to used list. +2024-09-07 16:20:39,942 [main] INFO DocWordWriter - --- insertTable() 4 rows: Literals of EnumeratedTypes::AppDatStKind +2024-09-07 16:20:39,963 [main] DEBUG DocWordWriter - ... 21 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:20:39,972 [main] DEBUG DocWordWriter - ... 9 ms for createTable() +2024-09-07 16:20:40,009 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML150' to Word document and to used list. +2024-09-07 16:20:40,047 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML151' to Word document and to used list. +2024-09-07 16:20:40,073 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML152' to Word document and to used list. +2024-09-07 16:20:40,086 [main] DEBUG DocWordWriter - ... 114 ms for fillValues() +2024-09-07 16:20:40,103 [main] DEBUG DocWordWriter - ... 17 ms for widths (table) +2024-09-07 16:20:40,158 [main] DEBUG DocWordWriter - ... 55 ms for widths (columns) +2024-09-07 16:20:40,179 [main] DEBUG DocWordWriter - ... 21 ms for shadding/merging/styling (rows) +2024-09-07 16:20:40,206 [main] DEBUG DocWordWriter - ... 27 ms for borders +2024-09-07 16:20:40,206 [main] DEBUG DocWordWriter - ... 120 ms for formatTable() +2024-09-07 16:20:40,214 [main] INFO DocWordWriter - ... 264 ms total for insertTable() +2024-09-07 16:20:40,243 [main] INFO DocWordWriter - ... 21 ms for insertCaption(): Table 17 – Literals of EnumeratedTypes::AppDatStKind +2024-09-07 16:20:40,284 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all literals of AppDatStKind.', [108822 - 108857] +2024-09-07 16:20:40,293 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all literals of AppDatStKind.', [108822 - 108858] +2024-09-07 16:20:40,300 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [108822 - 108822] +2024-09-07 16:20:40,308 [main] INFO DocWordWriter - ... 33 ms for insertCaptionRef() +2024-09-07 16:20:40,308 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:20:40,339 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML42' to Word document and to used list. +2024-09-07 16:20:40,396 [main] INFO DocWordWriter - --- insertTable() 4 rows: Literals of EnumeratedTypes::PhyHealthKind +2024-09-07 16:20:40,419 [main] DEBUG DocWordWriter - ... 23 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:20:40,428 [main] DEBUG DocWordWriter - ... 9 ms for createTable() +2024-09-07 16:20:40,468 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML153' to Word document and to used list. +2024-09-07 16:20:40,490 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML154' to Word document and to used list. +2024-09-07 16:20:40,514 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML155' to Word document and to used list. +2024-09-07 16:20:40,527 [main] DEBUG DocWordWriter - ... 99 ms for fillValues() +2024-09-07 16:20:40,543 [main] DEBUG DocWordWriter - ... 16 ms for widths (table) +2024-09-07 16:20:40,602 [main] DEBUG DocWordWriter - ... 59 ms for widths (columns) +2024-09-07 16:20:40,624 [main] DEBUG DocWordWriter - ... 21 ms for shadding/merging/styling (rows) +2024-09-07 16:20:40,650 [main] DEBUG DocWordWriter - ... 27 ms for borders +2024-09-07 16:20:40,650 [main] DEBUG DocWordWriter - ... 123 ms for formatTable() +2024-09-07 16:20:40,659 [main] INFO DocWordWriter - ... 254 ms total for insertTable() +2024-09-07 16:20:40,694 [main] INFO DocWordWriter - ... 27 ms for insertCaption(): Table 18 – Literals of EnumeratedTypes::PhyHealthKind +2024-09-07 16:20:40,735 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all literals of PhyHealthKind.', [109221 - 109257] +2024-09-07 16:20:40,744 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all literals of PhyHealthKind.', [109221 - 109258] +2024-09-07 16:20:40,751 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [109221 - 109221] +2024-09-07 16:20:40,759 [main] INFO DocWordWriter - ... 33 ms for insertCaptionRef() +2024-09-07 16:20:40,759 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:20:40,792 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML43' to Word document and to used list. +2024-09-07 16:20:40,852 [main] INFO DocWordWriter - --- insertTable() 4 rows: Literals of EnumeratedTypes::ExtKind +2024-09-07 16:20:40,876 [main] DEBUG DocWordWriter - ... 24 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:20:40,885 [main] DEBUG DocWordWriter - ... 9 ms for createTable() +2024-09-07 16:20:40,925 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML156' to Word document and to used list. +2024-09-07 16:20:40,947 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML157' to Word document and to used list. +2024-09-07 16:20:40,972 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML158' to Word document and to used list. +2024-09-07 16:20:40,986 [main] DEBUG DocWordWriter - ... 101 ms for fillValues() +2024-09-07 16:20:41,003 [main] DEBUG DocWordWriter - ... 17 ms for widths (table) +2024-09-07 16:20:41,062 [main] DEBUG DocWordWriter - ... 59 ms for widths (columns) +2024-09-07 16:20:41,085 [main] DEBUG DocWordWriter - ... 23 ms for shadding/merging/styling (rows) +2024-09-07 16:20:41,116 [main] DEBUG DocWordWriter - ... 31 ms for borders +2024-09-07 16:20:41,116 [main] DEBUG DocWordWriter - ... 130 ms for formatTable() +2024-09-07 16:20:41,126 [main] INFO DocWordWriter - ... 264 ms total for insertTable() +2024-09-07 16:20:41,165 [main] INFO DocWordWriter - ... 30 ms for insertCaption(): Table 19 – Literals of EnumeratedTypes::ExtKind +2024-09-07 16:20:41,205 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all literals of ExtKind.', [109618 - 109648] +2024-09-07 16:20:41,214 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all literals of ExtKind.', [109618 - 109649] +2024-09-07 16:20:41,221 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [109618 - 109618] +2024-09-07 16:20:41,230 [main] INFO DocWordWriter - ... 33 ms for insertCaptionRef() +2024-09-07 16:20:41,230 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:20:41,261 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML44' to Word document and to used list. +2024-09-07 16:20:41,320 [main] INFO DocWordWriter - --- insertTable() 3 rows: Literals of EnumeratedTypes::IntKind +2024-09-07 16:20:41,344 [main] DEBUG DocWordWriter - ... 24 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:20:41,354 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-07 16:20:41,393 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML159' to Word document and to used list. +2024-09-07 16:20:41,416 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML160' to Word document and to used list. +2024-09-07 16:20:41,428 [main] DEBUG DocWordWriter - ... 74 ms for fillValues() +2024-09-07 16:20:41,444 [main] DEBUG DocWordWriter - ... 16 ms for widths (table) +2024-09-07 16:20:41,503 [main] DEBUG DocWordWriter - ... 59 ms for widths (columns) +2024-09-07 16:20:41,524 [main] DEBUG DocWordWriter - ... 21 ms for shadding/merging/styling (rows) +2024-09-07 16:20:41,549 [main] DEBUG DocWordWriter - ... 25 ms for borders +2024-09-07 16:20:41,549 [main] DEBUG DocWordWriter - ... 121 ms for formatTable() +2024-09-07 16:20:41,557 [main] INFO DocWordWriter - ... 229 ms total for insertTable() +2024-09-07 16:20:41,595 [main] INFO DocWordWriter - ... 29 ms for insertCaption(): Table 20 – Literals of EnumeratedTypes::IntKind +2024-09-07 16:20:41,640 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all literals of IntKind.', [109951 - 109981] +2024-09-07 16:20:41,653 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all literals of IntKind.', [109951 - 109982] +2024-09-07 16:20:41,663 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [109951 - 109951] +2024-09-07 16:20:41,676 [main] INFO DocWordWriter - ... 49 ms for insertCaptionRef() +2024-09-07 16:20:41,677 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:20:41,716 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML45' to Word document and to used list. +2024-09-07 16:20:41,781 [main] INFO DocWordWriter - --- insertTable() 6 rows: Literals of EnumeratedTypes::LnkKind +2024-09-07 16:20:41,810 [main] DEBUG DocWordWriter - ... 29 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:20:41,821 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 16:20:41,865 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML161' to Word document and to used list. +2024-09-07 16:20:41,892 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML162' to Word document and to used list. +2024-09-07 16:20:41,919 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML163' to Word document and to used list. +2024-09-07 16:20:41,942 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML164' to Word document and to used list. +2024-09-07 16:20:41,965 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML165' to Word document and to used list. +2024-09-07 16:20:41,979 [main] DEBUG DocWordWriter - ... 158 ms for fillValues() +2024-09-07 16:20:41,996 [main] DEBUG DocWordWriter - ... 17 ms for widths (table) +2024-09-07 16:20:42,064 [main] DEBUG DocWordWriter - ... 68 ms for widths (columns) +2024-09-07 16:20:42,085 [main] DEBUG DocWordWriter - ... 21 ms for shadding/merging/styling (rows) +2024-09-07 16:20:42,115 [main] DEBUG DocWordWriter - ... 30 ms for borders +2024-09-07 16:20:42,115 [main] DEBUG DocWordWriter - ... 136 ms for formatTable() +2024-09-07 16:20:42,123 [main] INFO DocWordWriter - ... 334 ms total for insertTable() +2024-09-07 16:20:42,166 [main] INFO DocWordWriter - ... 35 ms for insertCaption(): Table 21 – Literals of EnumeratedTypes::LnkKind +2024-09-07 16:20:42,215 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all literals of LnkKind.', [110231 - 110261] +2024-09-07 16:20:42,224 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all literals of LnkKind.', [110231 - 110262] +2024-09-07 16:20:42,232 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [110231 - 110231] +2024-09-07 16:20:42,240 [main] INFO DocWordWriter - ... 36 ms for insertCaptionRef() +2024-09-07 16:20:42,240 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:20:42,272 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML46' to Word document and to used list. +2024-09-07 16:20:42,331 [main] INFO DocWordWriter - --- insertTable() 3 rows: Literals of EnumeratedTypes::PSPAccKind +2024-09-07 16:20:42,355 [main] DEBUG DocWordWriter - ... 24 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:20:42,364 [main] DEBUG DocWordWriter - ... 9 ms for createTable() +2024-09-07 16:20:42,404 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML166' to Word document and to used list. +2024-09-07 16:20:42,428 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML167' to Word document and to used list. +2024-09-07 16:20:42,441 [main] DEBUG DocWordWriter - ... 77 ms for fillValues() +2024-09-07 16:20:42,458 [main] DEBUG DocWordWriter - ... 17 ms for widths (table) +2024-09-07 16:20:42,519 [main] DEBUG DocWordWriter - ... 61 ms for widths (columns) +2024-09-07 16:20:42,540 [main] DEBUG DocWordWriter - ... 21 ms for shadding/merging/styling (rows) +2024-09-07 16:20:42,565 [main] DEBUG DocWordWriter - ... 25 ms for borders +2024-09-07 16:20:42,566 [main] DEBUG DocWordWriter - ... 124 ms for formatTable() +2024-09-07 16:20:42,574 [main] INFO DocWordWriter - ... 234 ms total for insertTable() +2024-09-07 16:20:42,617 [main] INFO DocWordWriter - ... 34 ms for insertCaption(): Table 22 – Literals of EnumeratedTypes::PSPAccKind +2024-09-07 16:20:42,657 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all literals of PSPAccKind.', [110617 - 110650] +2024-09-07 16:20:42,667 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all literals of PSPAccKind.', [110617 - 110651] +2024-09-07 16:20:42,674 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [110617 - 110617] +2024-09-07 16:20:42,683 [main] INFO DocWordWriter - ... 34 ms for insertCaptionRef() +2024-09-07 16:20:42,683 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:20:42,718 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML47' to Word document and to used list. +2024-09-07 16:20:42,775 [main] INFO DocWordWriter - --- insertTable() 8 rows: Literals of EnumeratedTypes::ProtIdKind +2024-09-07 16:20:42,799 [main] DEBUG DocWordWriter - ... 24 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:20:42,808 [main] DEBUG DocWordWriter - ... 9 ms for createTable() +2024-09-07 16:20:42,850 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML168' to Word document and to used list. +2024-09-07 16:20:42,873 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML169' to Word document and to used list. +2024-09-07 16:20:42,897 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML170' to Word document and to used list. +2024-09-07 16:20:42,921 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML171' to Word document and to used list. +2024-09-07 16:20:42,944 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML172' to Word document and to used list. +2024-09-07 16:20:42,968 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML173' to Word document and to used list. +2024-09-07 16:20:42,992 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML174' to Word document and to used list. +2024-09-07 16:20:43,005 [main] DEBUG DocWordWriter - ... 197 ms for fillValues() +2024-09-07 16:20:43,024 [main] DEBUG DocWordWriter - ... 19 ms for widths (table) +2024-09-07 16:20:43,099 [main] DEBUG DocWordWriter - ... 75 ms for widths (columns) +2024-09-07 16:20:43,123 [main] DEBUG DocWordWriter - ... 24 ms for shadding/merging/styling (rows) +2024-09-07 16:20:43,157 [main] DEBUG DocWordWriter - ... 34 ms for borders +2024-09-07 16:20:43,158 [main] DEBUG DocWordWriter - ... 153 ms for formatTable() +2024-09-07 16:20:43,167 [main] INFO DocWordWriter - ... 383 ms total for insertTable() +2024-09-07 16:20:43,216 [main] INFO DocWordWriter - ... 40 ms for insertCaption(): Table 23 – Literals of EnumeratedTypes::ProtIdKind +2024-09-07 16:20:43,261 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all literals of ProtIdKind.', [111014 - 111047] +2024-09-07 16:20:43,271 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all literals of ProtIdKind.', [111014 - 111048] +2024-09-07 16:20:43,278 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [111014 - 111014] +2024-09-07 16:20:43,289 [main] INFO DocWordWriter - ... 38 ms for insertCaptionRef() +2024-09-07 16:20:43,289 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:20:43,322 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML48' to Word document and to used list. +2024-09-07 16:20:43,383 [main] INFO DocWordWriter - --- insertTable() 12 rows: Literals of EnumeratedTypes::EventKind +2024-09-07 16:20:43,408 [main] DEBUG DocWordWriter - ... 25 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:20:43,419 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 16:20:43,462 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML175' to Word document and to used list. +2024-09-07 16:20:43,487 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML176' to Word document and to used list. +2024-09-07 16:20:43,511 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML177' to Word document and to used list. +2024-09-07 16:20:43,535 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML178' to Word document and to used list. +2024-09-07 16:20:43,559 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML179' to Word document and to used list. +2024-09-07 16:20:43,583 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML180' to Word document and to used list. +2024-09-07 16:20:43,607 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML181' to Word document and to used list. +2024-09-07 16:20:43,631 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML182' to Word document and to used list. +2024-09-07 16:20:43,655 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML183' to Word document and to used list. +2024-09-07 16:20:43,679 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML184' to Word document and to used list. +2024-09-07 16:20:43,704 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML185' to Word document and to used list. +2024-09-07 16:20:43,717 [main] DEBUG DocWordWriter - ... 298 ms for fillValues() +2024-09-07 16:20:43,739 [main] DEBUG DocWordWriter - ... 22 ms for widths (table) +2024-09-07 16:20:43,826 [main] DEBUG DocWordWriter - ... 87 ms for widths (columns) +2024-09-07 16:20:43,850 [main] DEBUG DocWordWriter - ... 24 ms for shadding/merging/styling (rows) +2024-09-07 16:20:43,893 [main] DEBUG DocWordWriter - ... 43 ms for borders +2024-09-07 16:20:43,893 [main] DEBUG DocWordWriter - ... 176 ms for formatTable() +2024-09-07 16:20:43,903 [main] INFO DocWordWriter - ... 510 ms total for insertTable() +2024-09-07 16:20:43,956 [main] INFO DocWordWriter - ... 45 ms for insertCaption(): Table 24 – Literals of EnumeratedTypes::EventKind +2024-09-07 16:20:44,001 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all literals of EventKind.', [111742 - 111774] +2024-09-07 16:20:44,010 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all literals of EventKind.', [111742 - 111775] +2024-09-07 16:20:44,018 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [111742 - 111742] +2024-09-07 16:20:44,027 [main] INFO DocWordWriter - ... 35 ms for insertCaptionRef() +2024-09-07 16:20:44,027 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:20:44,061 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML49' to Word document and to used list. +2024-09-07 16:20:44,118 [main] INFO DocWordWriter - closing MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 16:20:45,348 [main] INFO DocWordWriter - opening MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 16:20:46,282 [main] INFO OptimOptions - setting view to normal +2024-09-07 16:20:46,313 [main] INFO OptimOptions - disabling pagination +2024-09-07 16:20:46,351 [main] INFO OptimOptions - disabling field update +2024-09-07 16:20:46,456 [main] INFO OptimOptions - disabling screen updating +2024-09-07 16:20:46,463 [main] DEBUG DocWordWriter - current(_optimisedOptions): OptimOptions [viewId=1, normView=true, paginate=false, updFld=false, updScr=false, fastSave=false, spelling=false, grammar=false] +2024-09-07 16:20:46,612 [main] INFO Util - time=[0:00:02.520] closed and reopened document. +2024-09-07 16:20:46,612 [main] INFO Util - +2024-09-07 16:20:46,695 [main] INFO DocWordWriter - --- insertTable() 5 rows: Literals of EnumeratedTypes::TimSyncIssueKind +2024-09-07 16:20:46,726 [main] DEBUG DocWordWriter - ... 31 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:20:46,735 [main] DEBUG DocWordWriter - ... 9 ms for createTable() +2024-09-07 16:20:46,774 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML186' to Word document and to used list. +2024-09-07 16:20:46,812 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML187' to Word document and to used list. +2024-09-07 16:20:46,835 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML188' to Word document and to used list. +2024-09-07 16:20:46,858 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML189' to Word document and to used list. +2024-09-07 16:20:46,871 [main] DEBUG DocWordWriter - ... 136 ms for fillValues() +2024-09-07 16:20:46,890 [main] DEBUG DocWordWriter - ... 19 ms for widths (table) +2024-09-07 16:20:46,949 [main] DEBUG DocWordWriter - ... 59 ms for widths (columns) +2024-09-07 16:20:46,971 [main] DEBUG DocWordWriter - ... 22 ms for shadding/merging/styling (rows) +2024-09-07 16:20:46,999 [main] DEBUG DocWordWriter - ... 28 ms for borders +2024-09-07 16:20:46,999 [main] DEBUG DocWordWriter - ... 128 ms for formatTable() +2024-09-07 16:20:47,007 [main] INFO DocWordWriter - ... 304 ms total for insertTable() +2024-09-07 16:20:47,029 [main] INFO DocWordWriter - ... 15 ms for insertCaption(): Table 25 – Literals of EnumeratedTypes::TimSyncIssueKind +2024-09-07 16:20:47,068 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all literals of TimSyncIssueKind.', [112505 - 112544] +2024-09-07 16:20:47,076 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all literals of TimSyncIssueKind.', [112505 - 112545] +2024-09-07 16:20:47,083 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [112505 - 112505] +2024-09-07 16:20:47,091 [main] INFO DocWordWriter - ... 32 ms for insertCaptionRef() +2024-09-07 16:20:47,091 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:20:47,120 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML50' to Word document and to used list. +2024-09-07 16:20:47,178 [main] INFO DocWordWriter - --- insertTable() 5 rows: Literals of EnumeratedTypes::SecurityProfileKind +2024-09-07 16:20:47,204 [main] DEBUG DocWordWriter - ... 26 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:20:47,213 [main] DEBUG DocWordWriter - ... 9 ms for createTable() +2024-09-07 16:20:47,254 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML190' to Word document and to used list. +2024-09-07 16:20:47,277 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML191' to Word document and to used list. +2024-09-07 16:20:47,302 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML192' to Word document and to used list. +2024-09-07 16:20:47,326 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML193' to Word document and to used list. +2024-09-07 16:20:47,339 [main] DEBUG DocWordWriter - ... 126 ms for fillValues() +2024-09-07 16:20:47,356 [main] DEBUG DocWordWriter - ... 17 ms for widths (table) +2024-09-07 16:20:47,420 [main] DEBUG DocWordWriter - ... 64 ms for widths (columns) +2024-09-07 16:20:47,442 [main] DEBUG DocWordWriter - ... 22 ms for shadding/merging/styling (rows) +2024-09-07 16:20:47,470 [main] DEBUG DocWordWriter - ... 28 ms for borders +2024-09-07 16:20:47,470 [main] DEBUG DocWordWriter - ... 131 ms for formatTable() +2024-09-07 16:20:47,479 [main] INFO DocWordWriter - ... 292 ms total for insertTable() +2024-09-07 16:20:47,505 [main] INFO DocWordWriter - ... 18 ms for insertCaption(): Table 26 – Literals of EnumeratedTypes::SecurityProfileKind +2024-09-07 16:20:47,548 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all literals of SecurityProfileKind.', [113376 - 113418] +2024-09-07 16:20:47,557 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all literals of SecurityProfileKind.', [113376 - 113419] +2024-09-07 16:20:47,564 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [113376 - 113376] +2024-09-07 16:20:47,572 [main] INFO DocWordWriter - ... 34 ms for insertCaptionRef() +2024-09-07 16:20:47,572 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:20:47,606 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML51' to Word document and to used list. +2024-09-07 16:20:47,670 [main] INFO DocWordWriter - --- insertTable() 15 rows: Literals of EnumeratedTypes::TimSyncSrcKind +2024-09-07 16:20:47,698 [main] DEBUG DocWordWriter - ... 28 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:20:47,709 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 16:20:47,753 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML194' to Word document and to used list. +2024-09-07 16:20:47,776 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML195' to Word document and to used list. +2024-09-07 16:20:47,799 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML196' to Word document and to used list. +2024-09-07 16:20:47,823 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML197' to Word document and to used list. +2024-09-07 16:20:47,852 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML198' to Word document and to used list. +2024-09-07 16:20:47,875 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML199' to Word document and to used list. +2024-09-07 16:20:47,898 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML200' to Word document and to used list. +2024-09-07 16:20:47,922 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML201' to Word document and to used list. +2024-09-07 16:20:47,945 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML202' to Word document and to used list. +2024-09-07 16:20:47,969 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML203' to Word document and to used list. +2024-09-07 16:20:47,992 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML204' to Word document and to used list. +2024-09-07 16:20:48,016 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML205' to Word document and to used list. +2024-09-07 16:20:48,039 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML206' to Word document and to used list. +2024-09-07 16:20:48,064 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML207' to Word document and to used list. +2024-09-07 16:20:48,076 [main] DEBUG DocWordWriter - ... 367 ms for fillValues() +2024-09-07 16:20:48,100 [main] DEBUG DocWordWriter - ... 23 ms for widths (table) +2024-09-07 16:20:48,198 [main] DEBUG DocWordWriter - ... 98 ms for widths (columns) +2024-09-07 16:20:48,220 [main] DEBUG DocWordWriter - ... 22 ms for shadding/merging/styling (rows) +2024-09-07 16:20:48,268 [main] DEBUG DocWordWriter - ... 48 ms for borders +2024-09-07 16:20:48,268 [main] DEBUG DocWordWriter - ... 192 ms for formatTable() +2024-09-07 16:20:48,277 [main] INFO DocWordWriter - ... 598 ms total for insertTable() +2024-09-07 16:20:48,308 [main] INFO DocWordWriter - ... 23 ms for insertCaption(): Table 27 – Literals of EnumeratedTypes::TimSyncSrcKind +2024-09-07 16:20:48,355 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all literals of TimSyncSrcKind.', [114135 - 114172] +2024-09-07 16:20:48,364 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all literals of TimSyncSrcKind.', [114135 - 114173] +2024-09-07 16:20:48,372 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [114135 - 114135] +2024-09-07 16:20:48,381 [main] INFO DocWordWriter - ... 37 ms for insertCaptionRef() +2024-09-07 16:20:48,381 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:20:48,413 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML68' to Word document and to used list. +2024-09-07 16:20:48,473 [main] INFO DocWordWriter - --- insertTable() 3 rows: Attributes of EnumeratedTypes::AppDatStType +2024-09-07 16:20:48,499 [main] DEBUG DocWordWriter - ... 26 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:20:48,507 [main] DEBUG DocWordWriter - ... 8 ms for createTable() +2024-09-07 16:20:48,613 [main] DEBUG DocWordWriter - ... 106 ms for fillValues() +2024-09-07 16:20:48,636 [main] DEBUG DocWordWriter - ... 23 ms for widths (table) +2024-09-07 16:20:48,729 [main] DEBUG DocWordWriter - ... 93 ms for widths (columns) +2024-09-07 16:20:48,759 [main] DEBUG DocWordWriter - ... 30 ms for shadding/merging/styling (rows) +2024-09-07 16:20:48,789 [main] DEBUG DocWordWriter - ... 30 ms for borders +2024-09-07 16:20:48,789 [main] DEBUG DocWordWriter - ... 176 ms for formatTable() +2024-09-07 16:20:48,798 [main] INFO DocWordWriter - ... 316 ms total for insertTable() +2024-09-07 16:20:48,827 [main] INFO DocWordWriter - ... 21 ms for insertCaption(): Table 28 – Attributes of EnumeratedTypes::AppDatStType +2024-09-07 16:20:48,868 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of AppDatStType.', [115936 - 115973] +2024-09-07 16:20:48,878 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of AppDatStType.', [115936 - 115974] +2024-09-07 16:20:48,884 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [115936 - 115936] +2024-09-07 16:20:48,894 [main] INFO DocWordWriter - ... 35 ms for insertCaptionRef() +2024-09-07 16:20:48,894 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:20:48,927 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML69' to Word document and to used list. +2024-09-07 16:20:48,986 [main] INFO DocWordWriter - --- insertTable() 3 rows: Attributes of EnumeratedTypes::PhyHealthType +2024-09-07 16:20:49,011 [main] DEBUG DocWordWriter - ... 25 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:20:49,020 [main] DEBUG DocWordWriter - ... 9 ms for createTable() +2024-09-07 16:20:49,110 [main] DEBUG DocWordWriter - ... 90 ms for fillValues() +2024-09-07 16:20:49,128 [main] DEBUG DocWordWriter - ... 18 ms for widths (table) +2024-09-07 16:20:49,201 [main] DEBUG DocWordWriter - ... 73 ms for widths (columns) +2024-09-07 16:20:49,222 [main] DEBUG DocWordWriter - ... 21 ms for shadding/merging/styling (rows) +2024-09-07 16:20:49,249 [main] DEBUG DocWordWriter - ... 27 ms for borders +2024-09-07 16:20:49,249 [main] DEBUG DocWordWriter - ... 139 ms for formatTable() +2024-09-07 16:20:49,258 [main] INFO DocWordWriter - ... 263 ms total for insertTable() +2024-09-07 16:20:49,288 [main] INFO DocWordWriter - ... 23 ms for insertCaption(): Table 29 – Attributes of EnumeratedTypes::PhyHealthType +2024-09-07 16:20:49,330 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of PhyHealthType.', [116320 - 116358] +2024-09-07 16:20:49,339 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of PhyHealthType.', [116320 - 116359] +2024-09-07 16:20:49,346 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [116320 - 116320] +2024-09-07 16:20:49,355 [main] INFO DocWordWriter - ... 34 ms for insertCaptionRef() +2024-09-07 16:20:49,355 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:20:49,387 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML70' to Word document and to used list. +2024-09-07 16:20:49,450 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of EnumeratedTypes::ExtType +2024-09-07 16:20:49,474 [main] DEBUG DocWordWriter - ... 24 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:20:49,483 [main] DEBUG DocWordWriter - ... 9 ms for createTable() +2024-09-07 16:20:49,544 [main] DEBUG DocWordWriter - ... 61 ms for fillValues() +2024-09-07 16:20:49,564 [main] DEBUG DocWordWriter - ... 20 ms for widths (table) +2024-09-07 16:20:49,636 [main] DEBUG DocWordWriter - ... 72 ms for widths (columns) +2024-09-07 16:20:49,658 [main] DEBUG DocWordWriter - ... 22 ms for shadding/merging/styling (rows) +2024-09-07 16:20:49,682 [main] DEBUG DocWordWriter - ... 24 ms for borders +2024-09-07 16:20:49,682 [main] DEBUG DocWordWriter - ... 138 ms for formatTable() +2024-09-07 16:20:49,692 [main] INFO DocWordWriter - ... 232 ms total for insertTable() +2024-09-07 16:20:49,728 [main] INFO DocWordWriter - ... 28 ms for insertCaption(): Table 30 – Attributes of EnumeratedTypes::ExtType +2024-09-07 16:20:49,768 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of ExtType.', [116710 - 116742] +2024-09-07 16:20:49,777 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of ExtType.', [116710 - 116743] +2024-09-07 16:20:49,784 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [116710 - 116710] +2024-09-07 16:20:49,796 [main] INFO DocWordWriter - ... 36 ms for insertCaptionRef() +2024-09-07 16:20:49,796 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:20:49,831 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML71' to Word document and to used list. +2024-09-07 16:20:49,892 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of EnumeratedTypes::IntType +2024-09-07 16:20:49,918 [main] DEBUG DocWordWriter - ... 26 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:20:49,927 [main] DEBUG DocWordWriter - ... 9 ms for createTable() +2024-09-07 16:20:49,991 [main] DEBUG DocWordWriter - ... 64 ms for fillValues() +2024-09-07 16:20:50,009 [main] DEBUG DocWordWriter - ... 18 ms for widths (table) +2024-09-07 16:20:50,083 [main] DEBUG DocWordWriter - ... 74 ms for widths (columns) +2024-09-07 16:20:50,104 [main] DEBUG DocWordWriter - ... 21 ms for shadding/merging/styling (rows) +2024-09-07 16:20:50,128 [main] DEBUG DocWordWriter - ... 24 ms for borders +2024-09-07 16:20:50,128 [main] DEBUG DocWordWriter - ... 137 ms for formatTable() +2024-09-07 16:20:50,136 [main] INFO DocWordWriter - ... 236 ms total for insertTable() +2024-09-07 16:20:50,175 [main] INFO DocWordWriter - ... 30 ms for insertCaption(): Table 31 – Attributes of EnumeratedTypes::IntType +2024-09-07 16:20:50,222 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of IntType.', [117048 - 117080] +2024-09-07 16:20:50,232 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of IntType.', [117048 - 117081] +2024-09-07 16:20:50,239 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [117048 - 117048] +2024-09-07 16:20:50,248 [main] INFO DocWordWriter - ... 36 ms for insertCaptionRef() +2024-09-07 16:20:50,248 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:20:50,282 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML72' to Word document and to used list. +2024-09-07 16:20:50,346 [main] INFO DocWordWriter - --- insertTable() 3 rows: Attributes of EnumeratedTypes::EventType +2024-09-07 16:20:50,371 [main] DEBUG DocWordWriter - ... 25 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:20:50,381 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-07 16:20:50,478 [main] DEBUG DocWordWriter - ... 97 ms for fillValues() +2024-09-07 16:20:50,496 [main] DEBUG DocWordWriter - ... 18 ms for widths (table) +2024-09-07 16:20:50,577 [main] DEBUG DocWordWriter - ... 81 ms for widths (columns) +2024-09-07 16:20:50,600 [main] DEBUG DocWordWriter - ... 23 ms for shadding/merging/styling (rows) +2024-09-07 16:20:50,627 [main] DEBUG DocWordWriter - ... 27 ms for borders +2024-09-07 16:20:50,627 [main] DEBUG DocWordWriter - ... 149 ms for formatTable() +2024-09-07 16:20:50,636 [main] INFO DocWordWriter - ... 281 ms total for insertTable() +2024-09-07 16:20:50,682 [main] INFO DocWordWriter - ... 37 ms for insertCaption(): Table 32 – Attributes of EnumeratedTypes::EventType +2024-09-07 16:20:50,727 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of EventType.', [117379 - 117413] +2024-09-07 16:20:50,735 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of EventType.', [117379 - 117414] +2024-09-07 16:20:50,742 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [117379 - 117379] +2024-09-07 16:20:50,751 [main] INFO DocWordWriter - ... 34 ms for insertCaptionRef() +2024-09-07 16:20:50,751 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:20:50,784 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML73' to Word document and to used list. +2024-09-07 16:20:50,847 [main] INFO DocWordWriter - --- insertTable() 3 rows: Attributes of EnumeratedTypes::PSPAccType +2024-09-07 16:20:50,875 [main] DEBUG DocWordWriter - ... 28 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:20:50,885 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-07 16:20:50,983 [main] DEBUG DocWordWriter - ... 98 ms for fillValues() +2024-09-07 16:20:51,002 [main] DEBUG DocWordWriter - ... 18 ms for widths (table) +2024-09-07 16:20:51,084 [main] DEBUG DocWordWriter - ... 82 ms for widths (columns) +2024-09-07 16:20:51,107 [main] DEBUG DocWordWriter - ... 23 ms for shadding/merging/styling (rows) +2024-09-07 16:20:51,135 [main] DEBUG DocWordWriter - ... 28 ms for borders +2024-09-07 16:20:51,135 [main] DEBUG DocWordWriter - ... 152 ms for formatTable() +2024-09-07 16:20:51,148 [main] INFO DocWordWriter - ... 288 ms total for insertTable() +2024-09-07 16:20:51,194 [main] INFO DocWordWriter - ... 38 ms for insertCaption(): Table 33 – Attributes of EnumeratedTypes::PSPAccType +2024-09-07 16:20:51,234 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of PSPAccType.', [117763 - 117798] +2024-09-07 16:20:51,243 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of PSPAccType.', [117763 - 117799] +2024-09-07 16:20:51,250 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [117763 - 117763] +2024-09-07 16:20:51,260 [main] INFO DocWordWriter - ... 35 ms for insertCaptionRef() +2024-09-07 16:20:51,260 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:20:51,293 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML74' to Word document and to used list. +2024-09-07 16:20:51,357 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of EnumeratedTypes::ProtIdType +2024-09-07 16:20:51,381 [main] DEBUG DocWordWriter - ... 24 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:20:51,391 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-07 16:20:51,454 [main] DEBUG DocWordWriter - ... 63 ms for fillValues() +2024-09-07 16:20:51,474 [main] DEBUG DocWordWriter - ... 19 ms for widths (table) +2024-09-07 16:20:51,554 [main] DEBUG DocWordWriter - ... 80 ms for widths (columns) +2024-09-07 16:20:51,577 [main] DEBUG DocWordWriter - ... 23 ms for shadding/merging/styling (rows) +2024-09-07 16:20:51,602 [main] DEBUG DocWordWriter - ... 25 ms for borders +2024-09-07 16:20:51,602 [main] DEBUG DocWordWriter - ... 148 ms for formatTable() +2024-09-07 16:20:51,612 [main] INFO DocWordWriter - ... 245 ms total for insertTable() +2024-09-07 16:20:51,662 [main] INFO DocWordWriter - ... 43 ms for insertCaption(): Table 34 – Attributes of EnumeratedTypes::ProtIdType +2024-09-07 16:20:51,709 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of ProtIdType.', [118228 - 118263] +2024-09-07 16:20:51,719 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of ProtIdType.', [118228 - 118264] +2024-09-07 16:20:51,726 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [118228 - 118228] +2024-09-07 16:20:51,736 [main] INFO DocWordWriter - ... 38 ms for insertCaptionRef() +2024-09-07 16:20:51,736 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:20:51,775 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML75' to Word document and to used list. +2024-09-07 16:20:51,842 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of EnumeratedTypes::TimSyncIssueType +2024-09-07 16:20:51,868 [main] DEBUG DocWordWriter - ... 26 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:20:51,878 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-07 16:20:51,947 [main] DEBUG DocWordWriter - ... 69 ms for fillValues() +2024-09-07 16:20:51,968 [main] DEBUG DocWordWriter - ... 21 ms for widths (table) +2024-09-07 16:20:52,043 [main] DEBUG DocWordWriter - ... 75 ms for widths (columns) +2024-09-07 16:20:52,065 [main] DEBUG DocWordWriter - ... 22 ms for shadding/merging/styling (rows) +2024-09-07 16:20:52,088 [main] DEBUG DocWordWriter - ... 23 ms for borders +2024-09-07 16:20:52,088 [main] DEBUG DocWordWriter - ... 141 ms for formatTable() +2024-09-07 16:20:52,098 [main] INFO DocWordWriter - ... 246 ms total for insertTable() +2024-09-07 16:20:52,156 [main] INFO DocWordWriter - ... 51 ms for insertCaption(): Table 35 – Attributes of EnumeratedTypes::TimSyncIssueType +2024-09-07 16:20:52,199 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of TimSyncIssueType.', [118598 - 118639] +2024-09-07 16:20:52,211 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of TimSyncIssueType.', [118598 - 118640] +2024-09-07 16:20:52,219 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [118598 - 118598] +2024-09-07 16:20:52,228 [main] INFO DocWordWriter - ... 38 ms for insertCaptionRef() +2024-09-07 16:20:52,228 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:20:52,264 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML76' to Word document and to used list. +2024-09-07 16:20:52,326 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of EnumeratedTypes::SecurityProfileType +2024-09-07 16:20:52,353 [main] DEBUG DocWordWriter - ... 27 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:20:52,362 [main] DEBUG DocWordWriter - ... 9 ms for createTable() +2024-09-07 16:20:52,427 [main] DEBUG DocWordWriter - ... 65 ms for fillValues() +2024-09-07 16:20:52,445 [main] DEBUG DocWordWriter - ... 18 ms for widths (table) +2024-09-07 16:20:52,521 [main] DEBUG DocWordWriter - ... 76 ms for widths (columns) +2024-09-07 16:20:52,543 [main] DEBUG DocWordWriter - ... 22 ms for shadding/merging/styling (rows) +2024-09-07 16:20:52,567 [main] DEBUG DocWordWriter - ... 24 ms for borders +2024-09-07 16:20:52,567 [main] DEBUG DocWordWriter - ... 140 ms for formatTable() +2024-09-07 16:20:52,576 [main] INFO DocWordWriter - ... 241 ms total for insertTable() +2024-09-07 16:20:52,637 [main] INFO DocWordWriter - ... 54 ms for insertCaption(): Table 36 – Attributes of EnumeratedTypes::SecurityProfileType +2024-09-07 16:20:52,677 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of SecurityProfileType.', [119192 - 119236] +2024-09-07 16:20:52,688 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of SecurityProfileType.', [119192 - 119237] +2024-09-07 16:20:52,694 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [119192 - 119192] +2024-09-07 16:20:52,706 [main] INFO DocWordWriter - ... 38 ms for insertCaptionRef() +2024-09-07 16:20:52,706 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:20:52,742 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML77' to Word document and to used list. +2024-09-07 16:20:52,799 [main] INFO DocWordWriter - closing MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 16:20:54,094 [main] INFO DocWordWriter - opening MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 16:20:55,069 [main] INFO OptimOptions - setting view to normal +2024-09-07 16:20:55,116 [main] INFO OptimOptions - disabling pagination +2024-09-07 16:20:55,150 [main] INFO OptimOptions - disabling field update +2024-09-07 16:20:55,260 [main] INFO OptimOptions - disabling screen updating +2024-09-07 16:20:55,265 [main] DEBUG DocWordWriter - current(_optimisedOptions): OptimOptions [viewId=1, normView=true, paginate=false, updFld=false, updScr=false, fastSave=false, spelling=false, grammar=false] +2024-09-07 16:20:55,421 [main] INFO Util - time=[0:00:02.646] closed and reopened document. +2024-09-07 16:20:55,421 [main] INFO Util - +2024-09-07 16:20:55,481 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of EnumeratedTypes::TimSyncSrcType +2024-09-07 16:20:55,504 [main] DEBUG DocWordWriter - ... 23 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:20:55,512 [main] DEBUG DocWordWriter - ... 8 ms for createTable() +2024-09-07 16:20:55,578 [main] DEBUG DocWordWriter - ... 66 ms for fillValues() +2024-09-07 16:20:55,596 [main] DEBUG DocWordWriter - ... 18 ms for widths (table) +2024-09-07 16:20:55,669 [main] DEBUG DocWordWriter - ... 73 ms for widths (columns) +2024-09-07 16:20:55,691 [main] DEBUG DocWordWriter - ... 22 ms for shadding/merging/styling (rows) +2024-09-07 16:20:55,719 [main] DEBUG DocWordWriter - ... 28 ms for borders +2024-09-07 16:20:55,719 [main] DEBUG DocWordWriter - ... 141 ms for formatTable() +2024-09-07 16:20:55,728 [main] INFO DocWordWriter - ... 238 ms total for insertTable() +2024-09-07 16:20:55,751 [main] INFO DocWordWriter - ... 16 ms for insertCaption(): Table 37 – Attributes of EnumeratedTypes::TimSyncSrcType +2024-09-07 16:20:55,791 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of TimSyncSrcType.', [119605 - 119644] +2024-09-07 16:20:55,801 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of TimSyncSrcType.', [119605 - 119645] +2024-09-07 16:20:55,807 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [119605 - 119605] +2024-09-07 16:20:55,819 [main] INFO DocWordWriter - ... 38 ms for insertCaptionRef() +2024-09-07 16:20:55,819 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:20:55,851 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML78' to Word document and to used list. +2024-09-07 16:20:55,913 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of EnumeratedTypes::LnkType +2024-09-07 16:20:55,937 [main] DEBUG DocWordWriter - ... 24 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:20:55,947 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-07 16:20:56,011 [main] DEBUG DocWordWriter - ... 64 ms for fillValues() +2024-09-07 16:20:56,029 [main] DEBUG DocWordWriter - ... 18 ms for widths (table) +2024-09-07 16:20:56,106 [main] DEBUG DocWordWriter - ... 77 ms for widths (columns) +2024-09-07 16:20:56,130 [main] DEBUG DocWordWriter - ... 24 ms for shadding/merging/styling (rows) +2024-09-07 16:20:56,154 [main] DEBUG DocWordWriter - ... 24 ms for borders +2024-09-07 16:20:56,154 [main] DEBUG DocWordWriter - ... 143 ms for formatTable() +2024-09-07 16:20:56,164 [main] INFO DocWordWriter - ... 241 ms total for insertTable() +2024-09-07 16:20:56,191 [main] INFO DocWordWriter - ... 20 ms for insertCaption(): Table 38 – Attributes of EnumeratedTypes::LnkType +2024-09-07 16:20:56,235 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of LnkType.', [120017 - 120049] +2024-09-07 16:20:56,245 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of LnkType.', [120017 - 120050] +2024-09-07 16:20:56,252 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [120017 - 120017] +2024-09-07 16:20:56,262 [main] INFO DocWordWriter - ... 37 ms for insertCaptionRef() +2024-09-07 16:20:56,262 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:20:56,272 [main] INFO Util - time=[0:00:16.484] replaced [120240 - 120240] PACKAGE EnumeratedTypes, figures (14 before ), tables (16 before 22 mine)... +2024-09-07 16:20:56,272 [main] INFO Util - +2024-09-07 16:20:56,278 [main] INFO AbstractWordWriter - replacing [120286 - 120317] PACKAGE Overview, figures (14 before ), tables (38 before )... +2024-09-07 16:20:56,305 [main] INFO AbstractWordWriter - writing doc for package Overview ... +2024-09-07 16:20:56,449 [main] INFO DocWordWriter - ... 15 ms for insertCaption(): Figure 15 – Class diagram Overview::Part7 Classes Overview +2024-09-07 16:20:56,510 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': IEC 62351-7 Objects overview', [120905 - 120935] +2024-09-07 16:20:56,517 [main] TRACE DocWordWriter - prepend : range.txt = ': IEC 62351-7 Objects overview', [120905 - 120935] +2024-09-07 16:20:56,523 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [120905 - 120905] +2024-09-07 16:20:56,532 [main] INFO DocWordWriter - ... 27 ms for insertCaptionRef() +2024-09-07 16:20:56,532 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:20:56,543 [main] INFO Util - time=[0:00:00.270] replaced [120819 - 120970] PACKAGE Overview, figures (14 before 1 mine), tables (38 before )... +2024-09-07 16:20:56,543 [main] INFO Util - +2024-09-07 16:20:56,547 [main] INFO AbstractWordWriter - replacing [121003 - 121045] PACKAGE Environmental Agent, figures (15 before ), tables (38 before )... +2024-09-07 16:20:56,571 [main] INFO AbstractWordWriter - writing doc for package Environmental Agent ... +2024-09-07 16:20:56,723 [main] INFO DocWordWriter - ... 21 ms for insertCaption(): Figure 16 – Class diagram Environmental Agent::Environmental +2024-09-07 16:20:56,784 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': The Environmental agent class.', [121341 - 121373] +2024-09-07 16:20:56,790 [main] TRACE DocWordWriter - prepend : range.txt = ': The Environmental agent class.', [121341 - 121373] +2024-09-07 16:20:56,796 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [121341 - 121341] +2024-09-07 16:20:56,805 [main] INFO DocWordWriter - ... 26 ms for insertCaptionRef() +2024-09-07 16:20:56,805 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:20:56,838 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML79' to Word document and to used list. +2024-09-07 16:20:56,899 [main] INFO DocWordWriter - --- insertTable() 14 rows: Attributes of Environmental Agent::Environmental +2024-09-07 16:20:56,923 [main] DEBUG DocWordWriter - ... 24 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:20:56,933 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-07 16:20:57,331 [main] DEBUG DocWordWriter - ... 398 ms for fillValues() +2024-09-07 16:20:57,359 [main] DEBUG DocWordWriter - ... 27 ms for widths (table) +2024-09-07 16:20:57,495 [main] DEBUG DocWordWriter - ... 136 ms for widths (columns) +2024-09-07 16:20:57,521 [main] DEBUG DocWordWriter - ... 26 ms for shadding/merging/styling (rows) +2024-09-07 16:20:57,568 [main] DEBUG DocWordWriter - ... 47 ms for borders +2024-09-07 16:20:57,568 [main] DEBUG DocWordWriter - ... 237 ms for formatTable() +2024-09-07 16:20:57,578 [main] INFO DocWordWriter - ... 669 ms total for insertTable() +2024-09-07 16:20:57,614 [main] INFO DocWordWriter - ... 29 ms for insertCaption(): Table 39 – Attributes of Environmental Agent::Environmental +2024-09-07 16:20:57,658 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Environmental.', [121724 - 121762] +2024-09-07 16:20:57,668 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Environmental.', [121724 - 121763] +2024-09-07 16:20:57,675 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [121724 - 121724] +2024-09-07 16:20:57,686 [main] INFO DocWordWriter - ... 38 ms for insertCaptionRef() +2024-09-07 16:20:57,686 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:20:57,720 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML80' to Word document and to used list. +2024-09-07 16:20:57,782 [main] INFO DocWordWriter - --- insertTable() 8 rows: Attributes of Environmental Agent::PSUPEntry +2024-09-07 16:20:57,807 [main] DEBUG DocWordWriter - ... 25 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:20:57,815 [main] DEBUG DocWordWriter - ... 8 ms for createTable() +2024-09-07 16:20:58,053 [main] DEBUG DocWordWriter - ... 238 ms for fillValues() +2024-09-07 16:20:58,077 [main] DEBUG DocWordWriter - ... 24 ms for widths (table) +2024-09-07 16:20:58,181 [main] DEBUG DocWordWriter - ... 104 ms for widths (columns) +2024-09-07 16:20:58,205 [main] DEBUG DocWordWriter - ... 24 ms for shadding/merging/styling (rows) +2024-09-07 16:20:58,242 [main] DEBUG DocWordWriter - ... 37 ms for borders +2024-09-07 16:20:58,242 [main] DEBUG DocWordWriter - ... 189 ms for formatTable() +2024-09-07 16:20:58,251 [main] INFO DocWordWriter - ... 460 ms total for insertTable() +2024-09-07 16:20:58,289 [main] INFO DocWordWriter - ... 30 ms for insertCaption(): Table 40 – Attributes of Environmental Agent::PSUPEntry +2024-09-07 16:20:58,335 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of PSUPEntry.', [123390 - 123424] +2024-09-07 16:20:58,345 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of PSUPEntry.', [123390 - 123425] +2024-09-07 16:20:58,352 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [123390 - 123390] +2024-09-07 16:20:58,362 [main] INFO DocWordWriter - ... 37 ms for insertCaptionRef() +2024-09-07 16:20:58,362 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:20:58,396 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML81' to Word document and to used list. +2024-09-07 16:20:58,460 [main] INFO DocWordWriter - --- insertTable() 3 rows: Attributes of Environmental Agent::Notification +2024-09-07 16:20:58,485 [main] DEBUG DocWordWriter - ... 25 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:20:58,495 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-07 16:20:58,600 [main] DEBUG DocWordWriter - ... 105 ms for fillValues() +2024-09-07 16:20:58,620 [main] DEBUG DocWordWriter - ... 20 ms for widths (table) +2024-09-07 16:20:58,694 [main] DEBUG DocWordWriter - ... 74 ms for widths (columns) +2024-09-07 16:20:58,718 [main] DEBUG DocWordWriter - ... 24 ms for shadding/merging/styling (rows) +2024-09-07 16:20:58,745 [main] DEBUG DocWordWriter - ... 27 ms for borders +2024-09-07 16:20:58,745 [main] DEBUG DocWordWriter - ... 145 ms for formatTable() +2024-09-07 16:20:58,754 [main] INFO DocWordWriter - ... 285 ms total for insertTable() +2024-09-07 16:20:58,794 [main] INFO DocWordWriter - ... 31 ms for insertCaption(): Table 41 – Attributes of Environmental Agent::Notification +2024-09-07 16:20:58,844 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Notification.', [124394 - 124431] +2024-09-07 16:20:58,855 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Notification.', [124394 - 124432] +2024-09-07 16:20:58,864 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [124394 - 124394] +2024-09-07 16:20:58,875 [main] INFO DocWordWriter - ... 42 ms for insertCaptionRef() +2024-09-07 16:20:58,876 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:20:58,911 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML82' to Word document and to used list. +2024-09-07 16:20:58,974 [main] INFO DocWordWriter - --- insertTable() 6 rows: Attributes of Environmental Agent::SecurityNotification +2024-09-07 16:20:58,999 [main] DEBUG DocWordWriter - ... 25 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:20:59,009 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-07 16:20:59,193 [main] DEBUG DocWordWriter - ... 184 ms for fillValues() +2024-09-07 16:20:59,213 [main] DEBUG DocWordWriter - ... 20 ms for widths (table) +2024-09-07 16:20:59,297 [main] DEBUG DocWordWriter - ... 84 ms for widths (columns) +2024-09-07 16:20:59,321 [main] DEBUG DocWordWriter - ... 24 ms for shadding/merging/styling (rows) +2024-09-07 16:20:59,353 [main] DEBUG DocWordWriter - ... 32 ms for borders +2024-09-07 16:20:59,353 [main] DEBUG DocWordWriter - ... 160 ms for formatTable() +2024-09-07 16:20:59,363 [main] INFO DocWordWriter - ... 379 ms total for insertTable() +2024-09-07 16:20:59,410 [main] INFO DocWordWriter - ... 38 ms for insertCaption(): Table 42 – Attributes of Environmental Agent::SecurityNotification +2024-09-07 16:20:59,453 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of SecurityNotification.', [124974 - 125019] +2024-09-07 16:20:59,463 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of SecurityNotification.', [124974 - 125020] +2024-09-07 16:20:59,472 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [124974 - 124974] +2024-09-07 16:20:59,481 [main] INFO DocWordWriter - ... 38 ms for insertCaptionRef() +2024-09-07 16:20:59,481 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:20:59,490 [main] INFO Util - time=[0:00:02.947] replaced [125619 - 125619] PACKAGE Environmental Agent, figures (15 before 1 mine), tables (38 before 4 mine)... +2024-09-07 16:20:59,490 [main] INFO Util - +2024-09-07 16:20:59,494 [main] INFO AbstractWordWriter - replacing [125663 - 125695] PACKAGE IED Agent, figures (16 before ), tables (42 before )... +2024-09-07 16:20:59,522 [main] INFO AbstractWordWriter - writing doc for package IED Agent ... +2024-09-07 16:20:59,707 [main] INFO DocWordWriter - ... 27 ms for insertCaption(): Figure 17 – Class diagram IED Agent::IED +2024-09-07 16:20:59,770 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': The Intelligent Electronic Device class attributes', [125981 - 126033] +2024-09-07 16:20:59,778 [main] TRACE DocWordWriter - prepend : range.txt = ': The Intelligent Electronic Device class attributes', [125981 - 126033] +2024-09-07 16:20:59,784 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [125981 - 125981] +2024-09-07 16:20:59,794 [main] INFO DocWordWriter - ... 29 ms for insertCaptionRef() +2024-09-07 16:20:59,794 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:20:59,830 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML83' to Word document and to used list. +2024-09-07 16:20:59,893 [main] INFO DocWordWriter - --- insertTable() 38 rows: Attributes of IED Agent::IED +2024-09-07 16:20:59,916 [main] DEBUG DocWordWriter - ... 23 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:20:59,931 [main] DEBUG DocWordWriter - ... 15 ms for createTable() +2024-09-07 16:21:01,077 [main] DEBUG DocWordWriter - ... 1146 ms for fillValues() +2024-09-07 16:21:01,121 [main] DEBUG DocWordWriter - ... 44 ms for widths (table) +2024-09-07 16:21:01,346 [main] DEBUG DocWordWriter - ... 225 ms for widths (columns) +2024-09-07 16:21:01,372 [main] DEBUG DocWordWriter - ... 26 ms for shadding/merging/styling (rows) +2024-09-07 16:21:01,466 [main] DEBUG DocWordWriter - ... 94 ms for borders +2024-09-07 16:21:01,466 [main] DEBUG DocWordWriter - ... 389 ms for formatTable() +2024-09-07 16:21:01,475 [main] INFO DocWordWriter - ... 1573 ms total for insertTable() +2024-09-07 16:21:01,540 [main] INFO DocWordWriter - ... 57 ms for insertCaption(): Table 43 – Attributes of IED Agent::IED +2024-09-07 16:21:01,588 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of IED.', [126373 - 126401] +2024-09-07 16:21:01,599 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of IED.', [126373 - 126402] +2024-09-07 16:21:01,606 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [126373 - 126373] +2024-09-07 16:21:01,616 [main] INFO DocWordWriter - ... 38 ms for insertCaptionRef() +2024-09-07 16:21:01,616 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:21:01,650 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML84' to Word document and to used list. +2024-09-07 16:21:01,720 [main] INFO DocWordWriter - --- insertTable() 9 rows: Attributes of IED Agent::CPUEntry +2024-09-07 16:21:01,748 [main] DEBUG DocWordWriter - ... 28 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:21:01,760 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-07 16:21:02,039 [main] DEBUG DocWordWriter - ... 279 ms for fillValues() +2024-09-07 16:21:02,062 [main] DEBUG DocWordWriter - ... 23 ms for widths (table) +2024-09-07 16:21:02,170 [main] DEBUG DocWordWriter - ... 108 ms for widths (columns) +2024-09-07 16:21:02,195 [main] DEBUG DocWordWriter - ... 25 ms for shadding/merging/styling (rows) +2024-09-07 16:21:02,234 [main] DEBUG DocWordWriter - ... 39 ms for borders +2024-09-07 16:21:02,234 [main] DEBUG DocWordWriter - ... 195 ms for formatTable() +2024-09-07 16:21:02,244 [main] INFO DocWordWriter - ... 514 ms total for insertTable() +2024-09-07 16:21:02,306 [main] INFO DocWordWriter - ... 53 ms for insertCaption(): Table 44 – Attributes of IED Agent::CPUEntry +2024-09-07 16:21:02,352 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of CPUEntry.', [130924 - 130957] +2024-09-07 16:21:02,362 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of CPUEntry.', [130924 - 130958] +2024-09-07 16:21:02,370 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [130924 - 130924] +2024-09-07 16:21:02,380 [main] INFO DocWordWriter - ... 38 ms for insertCaptionRef() +2024-09-07 16:21:02,380 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:21:02,418 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML85' to Word document and to used list. +2024-09-07 16:21:02,483 [main] INFO DocWordWriter - --- insertTable() 10 rows: Attributes of IED Agent::EXTEntry +2024-09-07 16:21:02,508 [main] DEBUG DocWordWriter - ... 25 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:21:02,520 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-07 16:21:02,832 [main] DEBUG DocWordWriter - ... 311 ms for fillValues() +2024-09-07 16:21:02,860 [main] DEBUG DocWordWriter - ... 28 ms for widths (table) +2024-09-07 16:21:02,972 [main] DEBUG DocWordWriter - ... 112 ms for widths (columns) +2024-09-07 16:21:02,997 [main] DEBUG DocWordWriter - ... 25 ms for shadding/merging/styling (rows) +2024-09-07 16:21:03,038 [main] DEBUG DocWordWriter - ... 41 ms for borders +2024-09-07 16:21:03,038 [main] DEBUG DocWordWriter - ... 207 ms for formatTable() +2024-09-07 16:21:03,048 [main] INFO DocWordWriter - ... 555 ms total for insertTable() +2024-09-07 16:21:03,115 [main] INFO DocWordWriter - ... 59 ms for insertCaption(): Table 45 – Attributes of IED Agent::EXTEntry +2024-09-07 16:21:03,161 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of EXTEntry.', [131899 - 131932] +2024-09-07 16:21:03,171 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of EXTEntry.', [131899 - 131933] +2024-09-07 16:21:03,179 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [131899 - 131899] +2024-09-07 16:21:03,189 [main] INFO DocWordWriter - ... 39 ms for insertCaptionRef() +2024-09-07 16:21:03,189 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:21:03,225 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML86' to Word document and to used list. +2024-09-07 16:21:03,292 [main] INFO DocWordWriter - --- insertTable() 7 rows: Attributes of IED Agent::STOREEntry +2024-09-07 16:21:03,318 [main] DEBUG DocWordWriter - ... 26 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:21:03,329 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 16:21:03,554 [main] DEBUG DocWordWriter - ... 225 ms for fillValues() +2024-09-07 16:21:03,576 [main] DEBUG DocWordWriter - ... 22 ms for widths (table) +2024-09-07 16:21:03,668 [main] DEBUG DocWordWriter - ... 92 ms for widths (columns) +2024-09-07 16:21:03,691 [main] DEBUG DocWordWriter - ... 23 ms for shadding/merging/styling (rows) +2024-09-07 16:21:03,726 [main] DEBUG DocWordWriter - ... 35 ms for borders +2024-09-07 16:21:03,726 [main] DEBUG DocWordWriter - ... 172 ms for formatTable() +2024-09-07 16:21:03,736 [main] INFO DocWordWriter - ... 434 ms total for insertTable() +2024-09-07 16:21:03,809 [main] INFO DocWordWriter - ... 64 ms for insertCaption(): Table 46 – Attributes of IED Agent::STOREEntry +2024-09-07 16:21:03,855 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of STOREEntry.', [133028 - 133063] +2024-09-07 16:21:03,866 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of STOREEntry.', [133028 - 133064] +2024-09-07 16:21:03,873 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [133028 - 133028] +2024-09-07 16:21:03,884 [main] INFO DocWordWriter - ... 38 ms for insertCaptionRef() +2024-09-07 16:21:03,884 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:21:03,923 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML87' to Word document and to used list. +2024-09-07 16:21:03,990 [main] INFO DocWordWriter - --- insertTable() 7 rows: Attributes of IED Agent::Notification +2024-09-07 16:21:04,014 [main] DEBUG DocWordWriter - ... 24 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:21:04,026 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-07 16:21:04,252 [main] DEBUG DocWordWriter - ... 226 ms for fillValues() +2024-09-07 16:21:04,274 [main] DEBUG DocWordWriter - ... 22 ms for widths (table) +2024-09-07 16:21:04,372 [main] DEBUG DocWordWriter - ... 98 ms for widths (columns) +2024-09-07 16:21:04,398 [main] DEBUG DocWordWriter - ... 26 ms for shadding/merging/styling (rows) +2024-09-07 16:21:04,436 [main] DEBUG DocWordWriter - ... 38 ms for borders +2024-09-07 16:21:04,436 [main] DEBUG DocWordWriter - ... 184 ms for formatTable() +2024-09-07 16:21:04,446 [main] INFO DocWordWriter - ... 446 ms total for insertTable() +2024-09-07 16:21:04,526 [main] INFO DocWordWriter - ... 72 ms for insertCaption(): Table 47 – Attributes of IED Agent::Notification +2024-09-07 16:21:04,571 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Notification.', [133820 - 133857] +2024-09-07 16:21:04,581 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Notification.', [133820 - 133858] +2024-09-07 16:21:04,588 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [133820 - 133820] +2024-09-07 16:21:04,601 [main] INFO DocWordWriter - ... 40 ms for insertCaptionRef() +2024-09-07 16:21:04,601 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:21:04,636 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML88' to Word document and to used list. +2024-09-07 16:21:04,703 [main] INFO DocWordWriter - --- insertTable() 7 rows: Attributes of IED Agent::SecurityNotification +2024-09-07 16:21:04,729 [main] DEBUG DocWordWriter - ... 26 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:21:04,744 [main] DEBUG DocWordWriter - ... 15 ms for createTable() +2024-09-07 16:21:04,977 [main] DEBUG DocWordWriter - ... 233 ms for fillValues() +2024-09-07 16:21:05,001 [main] DEBUG DocWordWriter - ... 24 ms for widths (table) +2024-09-07 16:21:05,094 [main] DEBUG DocWordWriter - ... 93 ms for widths (columns) +2024-09-07 16:21:05,116 [main] DEBUG DocWordWriter - ... 22 ms for shadding/merging/styling (rows) +2024-09-07 16:21:05,155 [main] DEBUG DocWordWriter - ... 39 ms for borders +2024-09-07 16:21:05,155 [main] DEBUG DocWordWriter - ... 178 ms for formatTable() +2024-09-07 16:21:05,164 [main] INFO DocWordWriter - ... 452 ms total for insertTable() +2024-09-07 16:21:05,252 [main] INFO DocWordWriter - ... 80 ms for insertCaption(): Table 48 – Attributes of IED Agent::SecurityNotification +2024-09-07 16:21:05,299 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of SecurityNotification.', [134839 - 134884] +2024-09-07 16:21:05,309 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of SecurityNotification.', [134839 - 134885] +2024-09-07 16:21:05,316 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [134839 - 134839] +2024-09-07 16:21:05,327 [main] INFO DocWordWriter - ... 38 ms for insertCaptionRef() +2024-09-07 16:21:05,327 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:21:05,337 [main] INFO Util - time=[0:00:05.847] replaced [135824 - 135824] PACKAGE IED Agent, figures (16 before 1 mine), tables (42 before 6 mine)... +2024-09-07 16:21:05,337 [main] INFO Util - +2024-09-07 16:21:05,341 [main] INFO AbstractWordWriter - replacing [135858 - 135909] PACKAGE Application Protocols Agents, figures (17 before ), tables (48 before )... +2024-09-07 16:21:05,369 [main] INFO AbstractWordWriter - writing doc for package Application Protocols Agents ... +2024-09-07 16:21:05,470 [main] INFO AbstractWordWriter - writing doc for package Common objects ... +2024-09-07 16:21:05,619 [main] INFO DocWordWriter - ... 37 ms for insertCaption(): Figure 18 – Class diagram Common objects::Application Protocol common objects +2024-09-07 16:21:05,682 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': Application Protocol common objects', [136806 - 136843] +2024-09-07 16:21:05,689 [main] TRACE DocWordWriter - prepend : range.txt = ': Application Protocol common objects', [136806 - 136843] +2024-09-07 16:21:05,696 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [136806 - 136806] +2024-09-07 16:21:05,710 [main] INFO DocWordWriter - ... 33 ms for insertCaptionRef() +2024-09-07 16:21:05,710 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:21:05,749 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML89' to Word document and to used list. +2024-09-07 16:21:05,812 [main] INFO DocWordWriter - closing MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 16:21:07,184 [main] INFO DocWordWriter - opening MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 16:21:08,209 [main] INFO OptimOptions - setting view to normal +2024-09-07 16:21:08,273 [main] INFO OptimOptions - disabling pagination +2024-09-07 16:21:08,311 [main] INFO OptimOptions - disabling field update +2024-09-07 16:21:08,433 [main] INFO OptimOptions - disabling screen updating +2024-09-07 16:21:08,444 [main] DEBUG DocWordWriter - current(_optimisedOptions): OptimOptions [viewId=1, normView=true, paginate=false, updFld=false, updScr=false, fastSave=false, spelling=false, grammar=false] +2024-09-07 16:21:08,575 [main] INFO Util - time=[0:00:02.787] closed and reopened document. +2024-09-07 16:21:08,576 [main] INFO Util - +2024-09-07 16:21:08,616 [main] INFO DocWordWriter - --- insertTable() 9 rows: Attributes of Common objects::CommonProtocolInfo +2024-09-07 16:21:08,642 [main] DEBUG DocWordWriter - ... 26 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:21:08,651 [main] DEBUG DocWordWriter - ... 9 ms for createTable() +2024-09-07 16:21:08,915 [main] DEBUG DocWordWriter - ... 264 ms for fillValues() +2024-09-07 16:21:08,938 [main] DEBUG DocWordWriter - ... 23 ms for widths (table) +2024-09-07 16:21:09,045 [main] DEBUG DocWordWriter - ... 107 ms for widths (columns) +2024-09-07 16:21:09,069 [main] DEBUG DocWordWriter - ... 24 ms for shadding/merging/styling (rows) +2024-09-07 16:21:09,108 [main] DEBUG DocWordWriter - ... 39 ms for borders +2024-09-07 16:21:09,108 [main] DEBUG DocWordWriter - ... 193 ms for formatTable() +2024-09-07 16:21:09,119 [main] INFO DocWordWriter - ... 492 ms total for insertTable() +2024-09-07 16:21:09,148 [main] INFO DocWordWriter - ... 21 ms for insertCaption(): Table 49 – Attributes of Common objects::CommonProtocolInfo +2024-09-07 16:21:09,192 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of CommonProtocolInfo.', [137318 - 137361] +2024-09-07 16:21:09,202 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of CommonProtocolInfo.', [137318 - 137362] +2024-09-07 16:21:09,209 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [137318 - 137318] +2024-09-07 16:21:09,218 [main] INFO DocWordWriter - ... 36 ms for insertCaptionRef() +2024-09-07 16:21:09,218 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:21:09,289 [main] INFO AbstractWordWriter - writing doc for package IEC62351-3 ed.2 Agent ... +2024-09-07 16:21:09,466 [main] INFO DocWordWriter - ... 22 ms for insertCaption(): Figure 19 – Class diagram IEC62351-3 ed.2 Agent::IEC 62351-3 ed.2 Agent Relationships +2024-09-07 16:21:09,534 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': This picture depicts the relationship between IEC 62351-3 ed.2 objects', [139022 - 139094] +2024-09-07 16:21:09,541 [main] TRACE DocWordWriter - prepend : range.txt = ': This picture depicts the relationship between IEC 62351-3 ed.2 objects', [139022 - 139094] +2024-09-07 16:21:09,549 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [139022 - 139022] +2024-09-07 16:21:09,558 [main] INFO DocWordWriter - ... 29 ms for insertCaptionRef() +2024-09-07 16:21:09,558 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:21:09,595 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML90' to Word document and to used list. +2024-09-07 16:21:09,659 [main] INFO DocWordWriter - --- insertTable() 36 rows: Attributes of IEC62351-3 ed.2 Agent::IEC62351-3ed2security +2024-09-07 16:21:09,683 [main] DEBUG DocWordWriter - ... 24 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:21:09,696 [main] DEBUG DocWordWriter - ... 13 ms for createTable() +2024-09-07 16:21:10,797 [main] DEBUG DocWordWriter - ... 1101 ms for fillValues() +2024-09-07 16:21:10,845 [main] DEBUG DocWordWriter - ... 48 ms for widths (table) +2024-09-07 16:21:11,062 [main] DEBUG DocWordWriter - ... 217 ms for widths (columns) +2024-09-07 16:21:11,088 [main] DEBUG DocWordWriter - ... 26 ms for shadding/merging/styling (rows) +2024-09-07 16:21:11,181 [main] DEBUG DocWordWriter - ... 93 ms for borders +2024-09-07 16:21:11,181 [main] DEBUG DocWordWriter - ... 384 ms for formatTable() +2024-09-07 16:21:11,192 [main] INFO DocWordWriter - ... 1522 ms total for insertTable() +2024-09-07 16:21:11,234 [main] INFO DocWordWriter - ... 35 ms for insertCaption(): Table 50 – Attributes of IEC62351-3 ed.2 Agent::IEC62351-3ed2security +2024-09-07 16:21:11,280 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of IEC62351-3ed2security.', [139231 - 139277] +2024-09-07 16:21:11,290 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of IEC62351-3ed2security.', [139231 - 139278] +2024-09-07 16:21:11,298 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [139231 - 139231] +2024-09-07 16:21:11,308 [main] INFO DocWordWriter - ... 38 ms for insertCaptionRef() +2024-09-07 16:21:11,308 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:21:11,344 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML91' to Word document and to used list. +2024-09-07 16:21:11,412 [main] INFO DocWordWriter - --- insertTable() 50 rows: Attributes of IEC62351-3 ed.2 Agent::TLSSession +2024-09-07 16:21:11,439 [main] DEBUG DocWordWriter - ... 27 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:21:11,457 [main] DEBUG DocWordWriter - ... 18 ms for createTable() +2024-09-07 16:21:13,050 [main] DEBUG DocWordWriter - ... 1593 ms for fillValues() +2024-09-07 16:21:13,104 [main] DEBUG DocWordWriter - ... 53 ms for widths (table) +2024-09-07 16:21:13,379 [main] DEBUG DocWordWriter - ... 275 ms for widths (columns) +2024-09-07 16:21:13,406 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-07 16:21:13,525 [main] DEBUG DocWordWriter - ... 119 ms for borders +2024-09-07 16:21:13,525 [main] DEBUG DocWordWriter - ... 475 ms for formatTable() +2024-09-07 16:21:13,536 [main] INFO DocWordWriter - ... 2113 ms total for insertTable() +2024-09-07 16:21:13,593 [main] INFO DocWordWriter - ... 48 ms for insertCaption(): Table 51 – Attributes of IEC62351-3 ed.2 Agent::TLSSession +2024-09-07 16:21:13,641 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of TLSSession.', [144154 - 144189] +2024-09-07 16:21:13,652 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of TLSSession.', [144154 - 144190] +2024-09-07 16:21:13,659 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [144154 - 144154] +2024-09-07 16:21:13,670 [main] INFO DocWordWriter - ... 39 ms for insertCaptionRef() +2024-09-07 16:21:13,670 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:21:13,719 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML105' to Word document and to used list. +2024-09-07 16:21:13,809 [main] INFO DocWordWriter - --- insertTable() 42 rows: Attributes of IEC62351-3 ed.2 Agent::Summary +2024-09-07 16:21:13,840 [main] DEBUG DocWordWriter - ... 31 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:21:13,868 [main] DEBUG DocWordWriter - ... 28 ms for createTable() +2024-09-07 16:21:15,242 [main] DEBUG DocWordWriter - ... 1374 ms for fillValues() +2024-09-07 16:21:15,288 [main] DEBUG DocWordWriter - ... 46 ms for widths (table) +2024-09-07 16:21:15,534 [main] DEBUG DocWordWriter - ... 246 ms for widths (columns) +2024-09-07 16:21:15,561 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-07 16:21:15,665 [main] DEBUG DocWordWriter - ... 104 ms for borders +2024-09-07 16:21:15,665 [main] DEBUG DocWordWriter - ... 423 ms for formatTable() +2024-09-07 16:21:15,675 [main] INFO DocWordWriter - ... 1856 ms total for insertTable() +2024-09-07 16:21:15,736 [main] INFO DocWordWriter - ... 53 ms for insertCaption(): Table 52 – Attributes of IEC62351-3 ed.2 Agent::Summary +2024-09-07 16:21:15,784 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Summary.', [149491 - 149523] +2024-09-07 16:21:15,796 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Summary.', [149491 - 149524] +2024-09-07 16:21:15,803 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [149491 - 149491] +2024-09-07 16:21:15,815 [main] INFO DocWordWriter - ... 42 ms for insertCaptionRef() +2024-09-07 16:21:15,815 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:21:15,852 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML106' to Word document and to used list. +2024-09-07 16:21:15,924 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification +2024-09-07 16:21:15,951 [main] DEBUG DocWordWriter - ... 27 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:21:15,961 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-07 16:21:16,032 [main] DEBUG DocWordWriter - ... 71 ms for fillValues() +2024-09-07 16:21:16,052 [main] DEBUG DocWordWriter - ... 19 ms for widths (table) +2024-09-07 16:21:16,127 [main] DEBUG DocWordWriter - ... 75 ms for widths (columns) +2024-09-07 16:21:16,151 [main] DEBUG DocWordWriter - ... 24 ms for shadding/merging/styling (rows) +2024-09-07 16:21:16,177 [main] DEBUG DocWordWriter - ... 26 ms for borders +2024-09-07 16:21:16,177 [main] DEBUG DocWordWriter - ... 145 ms for formatTable() +2024-09-07 16:21:16,186 [main] INFO DocWordWriter - ... 253 ms total for insertTable() +2024-09-07 16:21:16,237 [main] INFO DocWordWriter - ... 44 ms for insertCaption(): Table 53 – Attributes of IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification +2024-09-07 16:21:16,280 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of IEC62351part3ed2SecurityNotification.', [154153 - 154214] +2024-09-07 16:21:16,290 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of IEC62351part3ed2SecurityNotification.', [154153 - 154215] +2024-09-07 16:21:16,297 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [154153 - 154153] +2024-09-07 16:21:16,308 [main] INFO DocWordWriter - ... 38 ms for insertCaptionRef() +2024-09-07 16:21:16,308 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:21:16,344 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML92' to Word document and to used list. +2024-09-07 16:21:16,412 [main] INFO DocWordWriter - --- insertTable() 50 rows: Attributes of IEC62351-3 ed.2 Agent::ClientTLS +2024-09-07 16:21:16,438 [main] DEBUG DocWordWriter - ... 26 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:21:16,469 [main] DEBUG DocWordWriter - ... 31 ms for createTable() +2024-09-07 16:21:18,133 [main] DEBUG DocWordWriter - ... 1664 ms for fillValues() +2024-09-07 16:21:18,186 [main] DEBUG DocWordWriter - ... 52 ms for widths (table) +2024-09-07 16:21:18,462 [main] DEBUG DocWordWriter - ... 276 ms for widths (columns) +2024-09-07 16:21:18,489 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-07 16:21:18,610 [main] DEBUG DocWordWriter - ... 121 ms for borders +2024-09-07 16:21:18,610 [main] DEBUG DocWordWriter - ... 477 ms for formatTable() +2024-09-07 16:21:18,620 [main] INFO DocWordWriter - ... 2198 ms total for insertTable() +2024-09-07 16:21:18,699 [main] INFO DocWordWriter - ... 71 ms for insertCaption(): Table 54 – Attributes of IEC62351-3 ed.2 Agent::ClientTLS +2024-09-07 16:21:18,753 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of ClientTLS.', [154569 - 154603] +2024-09-07 16:21:18,765 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of ClientTLS.', [154569 - 154604] +2024-09-07 16:21:18,772 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [154569 - 154569] +2024-09-07 16:21:18,788 [main] INFO DocWordWriter - ... 45 ms for insertCaptionRef() +2024-09-07 16:21:18,788 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:21:18,828 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML93' to Word document and to used list. +2024-09-07 16:21:18,898 [main] INFO DocWordWriter - --- insertTable() 50 rows: Attributes of IEC62351-3 ed.2 Agent::ServerTLS +2024-09-07 16:21:18,925 [main] DEBUG DocWordWriter - ... 27 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:21:18,963 [main] DEBUG DocWordWriter - ... 38 ms for createTable() +2024-09-07 16:21:20,674 [main] DEBUG DocWordWriter - ... 1711 ms for fillValues() +2024-09-07 16:21:20,728 [main] DEBUG DocWordWriter - ... 53 ms for widths (table) +2024-09-07 16:21:21,007 [main] DEBUG DocWordWriter - ... 280 ms for widths (columns) +2024-09-07 16:21:21,035 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-07 16:21:21,156 [main] DEBUG DocWordWriter - ... 121 ms for borders +2024-09-07 16:21:21,156 [main] DEBUG DocWordWriter - ... 482 ms for formatTable() +2024-09-07 16:21:21,167 [main] INFO DocWordWriter - ... 2258 ms total for insertTable() +2024-09-07 16:21:21,276 [main] INFO DocWordWriter - ... 100 ms for insertCaption(): Table 55 – Attributes of IEC62351-3 ed.2 Agent::ServerTLS +2024-09-07 16:21:21,324 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of ServerTLS.', [159974 - 160008] +2024-09-07 16:21:21,336 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of ServerTLS.', [159974 - 160009] +2024-09-07 16:21:21,343 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [159974 - 159974] +2024-09-07 16:21:21,360 [main] INFO DocWordWriter - ... 46 ms for insertCaptionRef() +2024-09-07 16:21:21,360 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:21:21,411 [main] INFO AbstractWordWriter - writing doc for package IEEE 1815 and IEC 60870-5 Agent ... +2024-09-07 16:21:21,626 [main] INFO DocWordWriter - ... 38 ms for insertCaption(): Figure 20 – Class diagram IEEE 1815 and IEC 60870-5 Agent::IEEE 1815 and IEC 60870 Agent Relationships +2024-09-07 16:21:21,700 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes. Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.', [166569 - 166850] +2024-09-07 16:21:21,708 [main] TRACE DocWordWriter - prepend : range.txt = ': This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes. Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.', [166569 - 166850] +2024-09-07 16:21:21,716 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [166569 - 166569] +2024-09-07 16:21:21,730 [main] INFO DocWordWriter - ... 36 ms for insertCaptionRef() +2024-09-07 16:21:21,730 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:21:21,771 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML94' to Word document and to used list. +2024-09-07 16:21:21,846 [main] INFO DocWordWriter - --- insertTable() 31 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo +2024-09-07 16:21:21,873 [main] DEBUG DocWordWriter - ... 27 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:21:21,905 [main] DEBUG DocWordWriter - ... 32 ms for createTable() +2024-09-07 16:21:23,025 [main] DEBUG DocWordWriter - ... 1120 ms for fillValues() +2024-09-07 16:21:23,065 [main] DEBUG DocWordWriter - ... 40 ms for widths (table) +2024-09-07 16:21:23,269 [main] DEBUG DocWordWriter - ... 204 ms for widths (columns) +2024-09-07 16:21:23,296 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-07 16:21:23,392 [main] DEBUG DocWordWriter - ... 96 ms for borders +2024-09-07 16:21:23,392 [main] DEBUG DocWordWriter - ... 367 ms for formatTable() +2024-09-07 16:21:23,404 [main] INFO DocWordWriter - ... 1546 ms total for insertTable() +2024-09-07 16:21:23,501 [main] INFO DocWordWriter - ... 88 ms for insertCaption(): Table 56 – Attributes of IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo +2024-09-07 16:21:23,550 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of 60870andDNPProtocolInfo.', [167124 - 167172] +2024-09-07 16:21:23,561 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of 60870andDNPProtocolInfo.', [167124 - 167173] +2024-09-07 16:21:23,568 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [167124 - 167124] +2024-09-07 16:21:23,583 [main] INFO DocWordWriter - ... 44 ms for insertCaptionRef() +2024-09-07 16:21:23,583 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:21:23,623 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML95' to Word document and to used list. +2024-09-07 16:21:23,699 [main] INFO DocWordWriter - --- insertTable() 50 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent::Association +2024-09-07 16:21:23,727 [main] DEBUG DocWordWriter - ... 28 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:21:23,783 [main] DEBUG DocWordWriter - ... 56 ms for createTable() +2024-09-07 16:21:25,521 [main] DEBUG DocWordWriter - ... 1738 ms for fillValues() +2024-09-07 16:21:25,575 [main] DEBUG DocWordWriter - ... 54 ms for widths (table) +2024-09-07 16:21:25,862 [main] DEBUG DocWordWriter - ... 287 ms for widths (columns) +2024-09-07 16:21:25,891 [main] DEBUG DocWordWriter - ... 29 ms for shadding/merging/styling (rows) +2024-09-07 16:21:26,013 [main] DEBUG DocWordWriter - ... 122 ms for borders +2024-09-07 16:21:26,013 [main] DEBUG DocWordWriter - ... 492 ms for formatTable() +2024-09-07 16:21:26,024 [main] INFO DocWordWriter - ... 2314 ms total for insertTable() +2024-09-07 16:21:26,148 [main] INFO DocWordWriter - ... 116 ms for insertCaption(): Table 57 – Attributes of IEEE 1815 and IEC 60870-5 Agent::Association +2024-09-07 16:21:26,198 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Association.', [170880 - 170916] +2024-09-07 16:21:26,211 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Association.', [170880 - 170917] +2024-09-07 16:21:26,219 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [170880 - 170880] +2024-09-07 16:21:26,235 [main] INFO DocWordWriter - ... 47 ms for insertCaptionRef() +2024-09-07 16:21:26,236 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:21:26,276 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML107' to Word document and to used list. +2024-09-07 16:21:26,354 [main] INFO DocWordWriter - --- insertTable() 37 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent::Summary +2024-09-07 16:21:26,383 [main] DEBUG DocWordWriter - ... 29 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:21:26,430 [main] DEBUG DocWordWriter - ... 47 ms for createTable() +2024-09-07 16:21:27,787 [main] DEBUG DocWordWriter - ... 1357 ms for fillValues() +2024-09-07 16:21:27,835 [main] DEBUG DocWordWriter - ... 48 ms for widths (table) +2024-09-07 16:21:28,068 [main] DEBUG DocWordWriter - ... 233 ms for widths (columns) +2024-09-07 16:21:28,097 [main] DEBUG DocWordWriter - ... 29 ms for shadding/merging/styling (rows) +2024-09-07 16:21:28,198 [main] DEBUG DocWordWriter - ... 101 ms for borders +2024-09-07 16:21:28,198 [main] DEBUG DocWordWriter - ... 411 ms for formatTable() +2024-09-07 16:21:28,208 [main] INFO DocWordWriter - ... 1844 ms total for insertTable() +2024-09-07 16:21:28,344 [main] INFO DocWordWriter - ... 127 ms for insertCaption(): Table 58 – Attributes of IEEE 1815 and IEC 60870-5 Agent::Summary +2024-09-07 16:21:28,401 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Summary.', [176061 - 176093] +2024-09-07 16:21:28,416 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Summary.', [176061 - 176094] +2024-09-07 16:21:28,424 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [176061 - 176061] +2024-09-07 16:21:28,452 [main] INFO DocWordWriter - ... 64 ms for insertCaptionRef() +2024-09-07 16:21:28,452 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:21:28,506 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML108' to Word document and to used list. +2024-09-07 16:21:28,590 [main] INFO DocWordWriter - --- insertTable() 9 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification +2024-09-07 16:21:28,619 [main] DEBUG DocWordWriter - ... 29 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:21:28,644 [main] DEBUG DocWordWriter - ... 25 ms for createTable() +2024-09-07 16:21:28,971 [main] DEBUG DocWordWriter - ... 327 ms for fillValues() +2024-09-07 16:21:28,998 [main] DEBUG DocWordWriter - ... 27 ms for widths (table) +2024-09-07 16:21:29,110 [main] DEBUG DocWordWriter - ... 112 ms for widths (columns) +2024-09-07 16:21:29,135 [main] DEBUG DocWordWriter - ... 25 ms for shadding/merging/styling (rows) +2024-09-07 16:21:29,178 [main] DEBUG DocWordWriter - ... 43 ms for borders +2024-09-07 16:21:29,178 [main] DEBUG DocWordWriter - ... 207 ms for formatTable() +2024-09-07 16:21:29,188 [main] INFO DocWordWriter - ... 588 ms total for insertTable() +2024-09-07 16:21:29,330 [main] INFO DocWordWriter - ... 133 ms for insertCaption(): Table 59 – Attributes of IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification +2024-09-07 16:21:29,376 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of 60870andDNPSecurityNotification.', [180084 - 180140] +2024-09-07 16:21:29,388 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of 60870andDNPSecurityNotification.', [180084 - 180141] +2024-09-07 16:21:29,395 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [180084 - 180084] +2024-09-07 16:21:29,412 [main] INFO DocWordWriter - ... 45 ms for insertCaptionRef() +2024-09-07 16:21:29,412 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:21:29,454 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML109' to Word document and to used list. +2024-09-07 16:21:29,530 [main] INFO DocWordWriter - --- insertTable() 6 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification +2024-09-07 16:21:29,558 [main] DEBUG DocWordWriter - ... 28 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:21:29,576 [main] DEBUG DocWordWriter - ... 18 ms for createTable() +2024-09-07 16:21:29,809 [main] DEBUG DocWordWriter - ... 233 ms for fillValues() +2024-09-07 16:21:29,832 [main] DEBUG DocWordWriter - ... 23 ms for widths (table) +2024-09-07 16:21:29,923 [main] DEBUG DocWordWriter - ... 91 ms for widths (columns) +2024-09-07 16:21:29,948 [main] DEBUG DocWordWriter - ... 25 ms for shadding/merging/styling (rows) +2024-09-07 16:21:29,983 [main] DEBUG DocWordWriter - ... 35 ms for borders +2024-09-07 16:21:29,983 [main] DEBUG DocWordWriter - ... 174 ms for formatTable() +2024-09-07 16:21:29,994 [main] INFO DocWordWriter - ... 453 ms total for insertTable() +2024-09-07 16:21:30,145 [main] INFO DocWordWriter - ... 143 ms for insertCaption(): Table 60 – Attributes of IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification +2024-09-07 16:21:30,192 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of 60870andDNPNotification.', [181441 - 181489] +2024-09-07 16:21:30,204 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of 60870andDNPNotification.', [181441 - 181490] +2024-09-07 16:21:30,212 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [181441 - 181441] +2024-09-07 16:21:30,231 [main] INFO DocWordWriter - ... 50 ms for insertCaptionRef() +2024-09-07 16:21:30,231 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:21:30,274 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML96' to Word document and to used list. +2024-09-07 16:21:30,340 [main] INFO DocWordWriter - closing MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 16:21:32,087 [main] INFO DocWordWriter - opening MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 16:21:33,254 [main] INFO OptimOptions - setting view to normal +2024-09-07 16:21:33,308 [main] INFO OptimOptions - disabling pagination +2024-09-07 16:21:33,410 [main] INFO OptimOptions - disabling field update +2024-09-07 16:21:33,529 [main] INFO OptimOptions - disabling screen updating +2024-09-07 16:21:33,544 [main] DEBUG DocWordWriter - current(_optimisedOptions): OptimOptions [viewId=1, normView=true, paginate=false, updFld=false, updScr=false, fastSave=false, spelling=false, grammar=false] +2024-09-07 16:21:33,644 [main] INFO Util - time=[0:00:03.330] closed and reopened document. +2024-09-07 16:21:33,644 [main] INFO Util - +2024-09-07 16:21:33,687 [main] INFO DocWordWriter - --- insertTable() 50 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent::MasterAssociation +2024-09-07 16:21:33,713 [main] DEBUG DocWordWriter - ... 26 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:21:33,725 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-07 16:21:35,279 [main] DEBUG DocWordWriter - ... 1554 ms for fillValues() +2024-09-07 16:21:35,333 [main] DEBUG DocWordWriter - ... 53 ms for widths (table) +2024-09-07 16:21:35,606 [main] DEBUG DocWordWriter - ... 273 ms for widths (columns) +2024-09-07 16:21:35,634 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-07 16:21:35,751 [main] DEBUG DocWordWriter - ... 117 ms for borders +2024-09-07 16:21:35,751 [main] DEBUG DocWordWriter - ... 472 ms for formatTable() +2024-09-07 16:21:35,763 [main] INFO DocWordWriter - ... 2064 ms total for insertTable() +2024-09-07 16:21:35,808 [main] INFO DocWordWriter - ... 38 ms for insertCaption(): Table 61 – Attributes of IEEE 1815 and IEC 60870-5 Agent::MasterAssociation +2024-09-07 16:21:35,857 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of MasterAssociation.', [182234 - 182276] +2024-09-07 16:21:35,869 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of MasterAssociation.', [182234 - 182277] +2024-09-07 16:21:35,876 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [182234 - 182234] +2024-09-07 16:21:35,888 [main] INFO DocWordWriter - ... 42 ms for insertCaptionRef() +2024-09-07 16:21:35,888 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:21:35,977 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML97' to Word document and to used list. +2024-09-07 16:21:36,047 [main] INFO DocWordWriter - --- insertTable() 50 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent::OutstationAssociation +2024-09-07 16:21:36,073 [main] DEBUG DocWordWriter - ... 26 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:21:36,090 [main] DEBUG DocWordWriter - ... 17 ms for createTable() +2024-09-07 16:21:37,728 [main] DEBUG DocWordWriter - ... 1638 ms for fillValues() +2024-09-07 16:21:37,781 [main] DEBUG DocWordWriter - ... 53 ms for widths (table) +2024-09-07 16:21:38,053 [main] DEBUG DocWordWriter - ... 272 ms for widths (columns) +2024-09-07 16:21:38,082 [main] DEBUG DocWordWriter - ... 29 ms for shadding/merging/styling (rows) +2024-09-07 16:21:38,201 [main] DEBUG DocWordWriter - ... 119 ms for borders +2024-09-07 16:21:38,201 [main] DEBUG DocWordWriter - ... 473 ms for formatTable() +2024-09-07 16:21:38,212 [main] INFO DocWordWriter - ... 2154 ms total for insertTable() +2024-09-07 16:21:38,269 [main] INFO DocWordWriter - ... 50 ms for insertCaption(): Table 62 – Attributes of IEEE 1815 and IEC 60870-5 Agent::OutstationAssociation +2024-09-07 16:21:38,327 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of OutstationAssociation.', [187447 - 187493] +2024-09-07 16:21:38,337 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of OutstationAssociation.', [187447 - 187494] +2024-09-07 16:21:38,344 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [187447 - 187447] +2024-09-07 16:21:38,355 [main] INFO DocWordWriter - ... 39 ms for insertCaptionRef() +2024-09-07 16:21:38,355 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:21:38,401 [main] INFO AbstractWordWriter - writing doc for package IEEE 1815 and IEC 60870-5 Agent - ed2 ... +2024-09-07 16:21:38,602 [main] INFO DocWordWriter - ... 26 ms for insertCaption(): Figure 21 – Class diagram IEEE 1815 and IEC 60870-5 Agent - ed2::IEEE 1815 and IEC 60870 Agent Relationships +2024-09-07 16:21:38,677 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes. Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.', [193886 - 194167] +2024-09-07 16:21:38,684 [main] TRACE DocWordWriter - prepend : range.txt = ': This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes. Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.', [193886 - 194167] +2024-09-07 16:21:38,691 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [193886 - 193886] +2024-09-07 16:21:38,702 [main] INFO DocWordWriter - ... 31 ms for insertCaptionRef() +2024-09-07 16:21:38,702 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:21:38,750 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML99' to Word document and to used list. +2024-09-07 16:21:38,826 [main] INFO DocWordWriter - --- insertTable() 46 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2 +2024-09-07 16:21:38,852 [main] DEBUG DocWordWriter - ... 26 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:21:38,875 [main] DEBUG DocWordWriter - ... 23 ms for createTable() +2024-09-07 16:21:40,410 [main] DEBUG DocWordWriter - ... 1535 ms for fillValues() +2024-09-07 16:21:40,467 [main] DEBUG DocWordWriter - ... 57 ms for widths (table) +2024-09-07 16:21:40,727 [main] DEBUG DocWordWriter - ... 260 ms for widths (columns) +2024-09-07 16:21:40,756 [main] DEBUG DocWordWriter - ... 29 ms for shadding/merging/styling (rows) +2024-09-07 16:21:40,869 [main] DEBUG DocWordWriter - ... 113 ms for borders +2024-09-07 16:21:40,869 [main] DEBUG DocWordWriter - ... 459 ms for formatTable() +2024-09-07 16:21:40,880 [main] INFO DocWordWriter - ... 2043 ms total for insertTable() +2024-09-07 16:21:40,941 [main] INFO DocWordWriter - ... 53 ms for insertCaption(): Table 63 – Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2 +2024-09-07 16:21:40,990 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of 60870andDNPProtocolInfoEd2.', [194444 - 194495] +2024-09-07 16:21:41,001 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of 60870andDNPProtocolInfoEd2.', [194444 - 194496] +2024-09-07 16:21:41,008 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [194444 - 194444] +2024-09-07 16:21:41,020 [main] INFO DocWordWriter - ... 41 ms for insertCaptionRef() +2024-09-07 16:21:41,020 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:21:41,057 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML98' to Word document and to used list. +2024-09-07 16:21:41,130 [main] INFO DocWordWriter - --- insertTable() 27 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5 +2024-09-07 16:21:41,156 [main] DEBUG DocWordWriter - ... 26 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:21:41,180 [main] DEBUG DocWordWriter - ... 24 ms for createTable() +2024-09-07 16:21:42,115 [main] DEBUG DocWordWriter - ... 935 ms for fillValues() +2024-09-07 16:21:42,154 [main] DEBUG DocWordWriter - ... 39 ms for widths (table) +2024-09-07 16:21:42,341 [main] DEBUG DocWordWriter - ... 187 ms for widths (columns) +2024-09-07 16:21:42,369 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-07 16:21:42,449 [main] DEBUG DocWordWriter - ... 80 ms for borders +2024-09-07 16:21:42,449 [main] DEBUG DocWordWriter - ... 334 ms for formatTable() +2024-09-07 16:21:42,458 [main] INFO DocWordWriter - ... 1319 ms total for insertTable() +2024-09-07 16:21:42,521 [main] INFO DocWordWriter - ... 54 ms for insertCaption(): Table 64 – Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5 +2024-09-07 16:21:42,585 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of IEC62351part5.', [199359 - 199397] +2024-09-07 16:21:42,597 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of IEC62351part5.', [199359 - 199398] +2024-09-07 16:21:42,604 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [199359 - 199359] +2024-09-07 16:21:42,619 [main] INFO DocWordWriter - ... 47 ms for insertCaptionRef() +2024-09-07 16:21:42,619 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:21:42,663 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML100' to Word document and to used list. +2024-09-07 16:21:42,746 [main] INFO DocWordWriter - --- insertTable() 65 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::Association +2024-09-07 16:21:42,779 [main] DEBUG DocWordWriter - ... 33 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:21:42,871 [main] DEBUG DocWordWriter - ... 92 ms for createTable() +2024-09-07 16:21:45,108 [main] DEBUG DocWordWriter - ... 2237 ms for fillValues() +2024-09-07 16:21:45,170 [main] DEBUG DocWordWriter - ... 62 ms for widths (table) +2024-09-07 16:21:45,508 [main] DEBUG DocWordWriter - ... 338 ms for widths (columns) +2024-09-07 16:21:45,538 [main] DEBUG DocWordWriter - ... 30 ms for shadding/merging/styling (rows) +2024-09-07 16:21:45,689 [main] DEBUG DocWordWriter - ... 150 ms for borders +2024-09-07 16:21:45,689 [main] DEBUG DocWordWriter - ... 581 ms for formatTable() +2024-09-07 16:21:45,699 [main] INFO DocWordWriter - ... 2943 ms total for insertTable() +2024-09-07 16:21:45,792 [main] INFO DocWordWriter - ... 85 ms for insertCaption(): Table 65 – Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::Association +2024-09-07 16:21:45,845 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Association.', [203028 - 203064] +2024-09-07 16:21:45,857 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Association.', [203028 - 203065] +2024-09-07 16:21:45,864 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [203028 - 203028] +2024-09-07 16:21:45,877 [main] INFO DocWordWriter - ... 43 ms for insertCaptionRef() +2024-09-07 16:21:45,877 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:21:45,918 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML110' to Word document and to used list. +2024-09-07 16:21:45,992 [main] INFO DocWordWriter - --- insertTable() 52 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::Summary +2024-09-07 16:21:46,021 [main] DEBUG DocWordWriter - ... 29 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:21:46,068 [main] DEBUG DocWordWriter - ... 47 ms for createTable() +2024-09-07 16:21:47,927 [main] DEBUG DocWordWriter - ... 1859 ms for fillValues() +2024-09-07 16:21:47,983 [main] DEBUG DocWordWriter - ... 55 ms for widths (table) +2024-09-07 16:21:48,303 [main] DEBUG DocWordWriter - ... 320 ms for widths (columns) +2024-09-07 16:21:48,333 [main] DEBUG DocWordWriter - ... 30 ms for shadding/merging/styling (rows) +2024-09-07 16:21:48,459 [main] DEBUG DocWordWriter - ... 126 ms for borders +2024-09-07 16:21:48,459 [main] DEBUG DocWordWriter - ... 532 ms for formatTable() +2024-09-07 16:21:48,470 [main] INFO DocWordWriter - ... 2467 ms total for insertTable() +2024-09-07 16:21:48,568 [main] INFO DocWordWriter - ... 91 ms for insertCaption(): Table 66 – Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::Summary +2024-09-07 16:21:48,620 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Summary.', [209687 - 209719] +2024-09-07 16:21:48,635 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Summary.', [209687 - 209720] +2024-09-07 16:21:48,642 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [209687 - 209687] +2024-09-07 16:21:48,657 [main] INFO DocWordWriter - ... 47 ms for insertCaptionRef() +2024-09-07 16:21:48,658 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:21:48,700 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML111' to Word document and to used list. +2024-09-07 16:21:48,773 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2 +2024-09-07 16:21:48,803 [main] DEBUG DocWordWriter - ... 30 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:21:48,817 [main] DEBUG DocWordWriter - ... 14 ms for createTable() +2024-09-07 16:21:48,899 [main] DEBUG DocWordWriter - ... 82 ms for fillValues() +2024-09-07 16:21:48,919 [main] DEBUG DocWordWriter - ... 20 ms for widths (table) +2024-09-07 16:21:49,003 [main] DEBUG DocWordWriter - ... 84 ms for widths (columns) +2024-09-07 16:21:49,026 [main] DEBUG DocWordWriter - ... 23 ms for shadding/merging/styling (rows) +2024-09-07 16:21:49,055 [main] DEBUG DocWordWriter - ... 29 ms for borders +2024-09-07 16:21:49,055 [main] DEBUG DocWordWriter - ... 156 ms for formatTable() +2024-09-07 16:21:49,067 [main] INFO DocWordWriter - ... 282 ms total for insertTable() +2024-09-07 16:21:49,163 [main] INFO DocWordWriter - ... 88 ms for insertCaption(): Table 67 – Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2 +2024-09-07 16:21:49,208 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of 60870andDNPSecurityNotificationEd2.', [215199 - 215258] +2024-09-07 16:21:49,219 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of 60870andDNPSecurityNotificationEd2.', [215199 - 215259] +2024-09-07 16:21:49,226 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [215199 - 215199] +2024-09-07 16:21:49,244 [main] INFO DocWordWriter - ... 46 ms for insertCaptionRef() +2024-09-07 16:21:49,244 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:21:49,285 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML112' to Word document and to used list. +2024-09-07 16:21:49,362 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2 +2024-09-07 16:21:49,396 [main] DEBUG DocWordWriter - ... 34 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:21:49,408 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-07 16:21:49,493 [main] DEBUG DocWordWriter - ... 85 ms for fillValues() +2024-09-07 16:21:49,514 [main] DEBUG DocWordWriter - ... 21 ms for widths (table) +2024-09-07 16:21:49,590 [main] DEBUG DocWordWriter - ... 76 ms for widths (columns) +2024-09-07 16:21:49,616 [main] DEBUG DocWordWriter - ... 26 ms for shadding/merging/styling (rows) +2024-09-07 16:21:49,644 [main] DEBUG DocWordWriter - ... 28 ms for borders +2024-09-07 16:21:49,644 [main] DEBUG DocWordWriter - ... 151 ms for formatTable() +2024-09-07 16:21:49,657 [main] INFO DocWordWriter - ... 282 ms total for insertTable() +2024-09-07 16:21:49,751 [main] INFO DocWordWriter - ... 86 ms for insertCaption(): Table 68 – Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2 +2024-09-07 16:21:49,796 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of 60870andDNPNotificationEd2.', [215671 - 215722] +2024-09-07 16:21:49,808 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of 60870andDNPNotificationEd2.', [215671 - 215723] +2024-09-07 16:21:49,815 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [215671 - 215671] +2024-09-07 16:21:49,830 [main] INFO DocWordWriter - ... 44 ms for insertCaptionRef() +2024-09-07 16:21:49,830 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:21:49,875 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML101' to Word document and to used list. +2024-09-07 16:21:49,952 [main] INFO DocWordWriter - --- insertTable() 65 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::MasterAssociation +2024-09-07 16:21:49,981 [main] DEBUG DocWordWriter - ... 29 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:21:50,059 [main] DEBUG DocWordWriter - ... 78 ms for createTable() +2024-09-07 16:21:52,456 [main] DEBUG DocWordWriter - ... 2397 ms for fillValues() +2024-09-07 16:21:52,521 [main] DEBUG DocWordWriter - ... 65 ms for widths (table) +2024-09-07 16:21:52,874 [main] DEBUG DocWordWriter - ... 353 ms for widths (columns) +2024-09-07 16:21:52,905 [main] DEBUG DocWordWriter - ... 31 ms for shadding/merging/styling (rows) +2024-09-07 16:21:53,079 [main] DEBUG DocWordWriter - ... 174 ms for borders +2024-09-07 16:21:53,079 [main] DEBUG DocWordWriter - ... 623 ms for formatTable() +2024-09-07 16:21:53,090 [main] INFO DocWordWriter - ... 3127 ms total for insertTable() +2024-09-07 16:21:53,241 [main] INFO DocWordWriter - ... 142 ms for insertCaption(): Table 69 – Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::MasterAssociation +2024-09-07 16:21:53,291 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of MasterAssociation.', [216056 - 216098] +2024-09-07 16:21:53,305 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of MasterAssociation.', [216056 - 216099] +2024-09-07 16:21:53,311 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [216056 - 216056] +2024-09-07 16:21:53,329 [main] INFO DocWordWriter - ... 48 ms for insertCaptionRef() +2024-09-07 16:21:53,329 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:21:53,372 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML102' to Word document and to used list. +2024-09-07 16:21:53,448 [main] INFO DocWordWriter - --- insertTable() 65 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::OutstationAssociation +2024-09-07 16:21:53,483 [main] DEBUG DocWordWriter - ... 35 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:21:53,572 [main] DEBUG DocWordWriter - ... 89 ms for createTable() +2024-09-07 16:21:56,099 [main] DEBUG DocWordWriter - ... 2527 ms for fillValues() +2024-09-07 16:21:56,163 [main] DEBUG DocWordWriter - ... 64 ms for widths (table) +2024-09-07 16:21:56,531 [main] DEBUG DocWordWriter - ... 368 ms for widths (columns) +2024-09-07 16:21:56,561 [main] DEBUG DocWordWriter - ... 30 ms for shadding/merging/styling (rows) +2024-09-07 16:21:56,716 [main] DEBUG DocWordWriter - ... 155 ms for borders +2024-09-07 16:21:56,716 [main] DEBUG DocWordWriter - ... 617 ms for formatTable() +2024-09-07 16:21:56,728 [main] INFO DocWordWriter - ... 3268 ms total for insertTable() +2024-09-07 16:21:56,890 [main] INFO DocWordWriter - ... 155 ms for insertCaption(): Table 70 – Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::OutstationAssociation +2024-09-07 16:21:56,942 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of OutstationAssociation.', [222758 - 222804] +2024-09-07 16:21:56,954 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of OutstationAssociation.', [222758 - 222805] +2024-09-07 16:21:56,961 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [222758 - 222758] +2024-09-07 16:21:56,981 [main] INFO DocWordWriter - ... 50 ms for insertCaptionRef() +2024-09-07 16:21:56,981 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:21:57,033 [main] INFO AbstractWordWriter - writing doc for package IEC61850 Agent ... +2024-09-07 16:21:57,158 [main] INFO AbstractWordWriter - writing doc for package ACSI ... +2024-09-07 16:21:57,358 [main] INFO DocWordWriter - ... 60 ms for insertCaption(): Figure 22 – Class diagram ACSI::ACSI +2024-09-07 16:21:57,432 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': ACSI classes relationship. ACSI Summary inherit Security attributes from the more general classes.', [229887 - 229987] +2024-09-07 16:21:57,439 [main] TRACE DocWordWriter - prepend : range.txt = ': ACSI classes relationship. ACSI Summary inherit Security attributes from the more general classes.', [229887 - 229987] +2024-09-07 16:21:57,446 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [229887 - 229887] +2024-09-07 16:21:57,470 [main] INFO DocWordWriter - ... 43 ms for insertCaptionRef() +2024-09-07 16:21:57,470 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:21:57,520 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML113' to Word document and to used list. +2024-09-07 16:21:57,601 [main] INFO DocWordWriter - --- insertTable() 17 rows: Attributes of ACSI::ACSISummary +2024-09-07 16:21:57,632 [main] DEBUG DocWordWriter - ... 31 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:21:57,669 [main] DEBUG DocWordWriter - ... 37 ms for createTable() +2024-09-07 16:21:58,364 [main] DEBUG DocWordWriter - ... 695 ms for fillValues() +2024-09-07 16:21:58,397 [main] DEBUG DocWordWriter - ... 33 ms for widths (table) +2024-09-07 16:21:58,551 [main] DEBUG DocWordWriter - ... 154 ms for widths (columns) +2024-09-07 16:21:58,580 [main] DEBUG DocWordWriter - ... 29 ms for shadding/merging/styling (rows) +2024-09-07 16:21:58,643 [main] DEBUG DocWordWriter - ... 63 ms for borders +2024-09-07 16:21:58,643 [main] DEBUG DocWordWriter - ... 279 ms for formatTable() +2024-09-07 16:21:58,654 [main] INFO DocWordWriter - ... 1042 ms total for insertTable() +2024-09-07 16:21:58,815 [main] INFO DocWordWriter - ... 153 ms for insertCaption(): Table 71 – Attributes of ACSI::ACSISummary +2024-09-07 16:21:58,866 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of ACSISummary.', [230183 - 230219] +2024-09-07 16:21:58,879 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of ACSISummary.', [230183 - 230220] +2024-09-07 16:21:58,887 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [230183 - 230183] +2024-09-07 16:21:58,909 [main] INFO DocWordWriter - ... 54 ms for insertCaptionRef() +2024-09-07 16:21:58,909 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:21:58,961 [main] INFO AbstractWordWriter - writing doc for package MMS ... +2024-09-07 16:21:59,209 [main] INFO DocWordWriter - ... 71 ms for insertCaption(): Figure 23 – Class diagram MMS::MMS +2024-09-07 16:21:59,286 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': MMS classes relationship. MMS Provider and MMS Association inherit both Security and Procotol Info attributes from the more general classes.', [232420 - 232562] +2024-09-07 16:21:59,293 [main] TRACE DocWordWriter - prepend : range.txt = ': MMS classes relationship. MMS Provider and MMS Association inherit both Security and Procotol Info attributes from the more general classes.', [232420 - 232562] +2024-09-07 16:21:59,299 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [232420 - 232420] +2024-09-07 16:21:59,324 [main] INFO DocWordWriter - ... 43 ms for insertCaptionRef() +2024-09-07 16:21:59,324 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:21:59,373 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML103' to Word document and to used list. +2024-09-07 16:21:59,457 [main] INFO DocWordWriter - --- insertTable() 14 rows: Attributes of MMS::MMSProtocolInfo +2024-09-07 16:21:59,489 [main] DEBUG DocWordWriter - ... 32 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:21:59,524 [main] DEBUG DocWordWriter - ... 35 ms for createTable() +2024-09-07 16:22:00,150 [main] DEBUG DocWordWriter - ... 626 ms for fillValues() +2024-09-07 16:22:00,180 [main] DEBUG DocWordWriter - ... 30 ms for widths (table) +2024-09-07 16:22:00,319 [main] DEBUG DocWordWriter - ... 139 ms for widths (columns) +2024-09-07 16:22:00,346 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-07 16:22:00,404 [main] DEBUG DocWordWriter - ... 58 ms for borders +2024-09-07 16:22:00,404 [main] DEBUG DocWordWriter - ... 254 ms for formatTable() +2024-09-07 16:22:00,415 [main] INFO DocWordWriter - ... 947 ms total for insertTable() +2024-09-07 16:22:00,589 [main] INFO DocWordWriter - ... 167 ms for insertCaption(): Table 72 – Attributes of MMS::MMSProtocolInfo +2024-09-07 16:22:00,640 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of MMSProtocolInfo.', [232752 - 232792] +2024-09-07 16:22:00,652 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of MMSProtocolInfo.', [232752 - 232793] +2024-09-07 16:22:00,659 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [232752 - 232752] +2024-09-07 16:22:00,686 [main] INFO DocWordWriter - ... 58 ms for insertCaptionRef() +2024-09-07 16:22:00,686 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:22:00,738 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML114' to Word document and to used list. +2024-09-07 16:22:00,807 [main] INFO DocWordWriter - closing MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 16:22:03,018 [main] INFO DocWordWriter - opening MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 16:22:04,410 [main] INFO OptimOptions - setting view to normal +2024-09-07 16:22:04,464 [main] INFO OptimOptions - disabling pagination +2024-09-07 16:22:04,510 [main] INFO OptimOptions - disabling field update +2024-09-07 16:22:04,607 [main] INFO OptimOptions - disabling screen updating +2024-09-07 16:22:04,617 [main] DEBUG DocWordWriter - current(_optimisedOptions): OptimOptions [viewId=1, normView=true, paginate=false, updFld=false, updScr=false, fastSave=false, spelling=false, grammar=false] +2024-09-07 16:22:04,749 [main] INFO Util - time=[0:00:03.968] closed and reopened document. +2024-09-07 16:22:04,750 [main] INFO Util - +2024-09-07 16:22:04,802 [main] INFO DocWordWriter - --- insertTable() 32 rows: Attributes of MMS::MMSProvider +2024-09-07 16:22:04,832 [main] DEBUG DocWordWriter - ... 30 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:22:04,843 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 16:22:05,928 [main] DEBUG DocWordWriter - ... 1085 ms for fillValues() +2024-09-07 16:22:05,968 [main] DEBUG DocWordWriter - ... 40 ms for widths (table) +2024-09-07 16:22:06,181 [main] DEBUG DocWordWriter - ... 213 ms for widths (columns) +2024-09-07 16:22:06,209 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-07 16:22:06,292 [main] DEBUG DocWordWriter - ... 83 ms for borders +2024-09-07 16:22:06,292 [main] DEBUG DocWordWriter - ... 364 ms for formatTable() +2024-09-07 16:22:06,304 [main] INFO DocWordWriter - ... 1490 ms total for insertTable() +2024-09-07 16:22:06,343 [main] INFO DocWordWriter - ... 32 ms for insertCaption(): Table 73 – Attributes of MMS::MMSProvider +2024-09-07 16:22:06,394 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of MMSProvider.', [235286 - 235322] +2024-09-07 16:22:06,405 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of MMSProvider.', [235286 - 235323] +2024-09-07 16:22:06,412 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [235286 - 235286] +2024-09-07 16:22:06,423 [main] INFO DocWordWriter - ... 41 ms for insertCaptionRef() +2024-09-07 16:22:06,423 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:22:06,550 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML104' to Word document and to used list. +2024-09-07 16:22:06,622 [main] INFO DocWordWriter - --- insertTable() 36 rows: Attributes of MMS::MMSAssociation +2024-09-07 16:22:06,649 [main] DEBUG DocWordWriter - ... 27 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:22:06,664 [main] DEBUG DocWordWriter - ... 15 ms for createTable() +2024-09-07 16:22:07,922 [main] DEBUG DocWordWriter - ... 1258 ms for fillValues() +2024-09-07 16:22:07,967 [main] DEBUG DocWordWriter - ... 45 ms for widths (table) +2024-09-07 16:22:08,195 [main] DEBUG DocWordWriter - ... 228 ms for widths (columns) +2024-09-07 16:22:08,223 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-07 16:22:08,318 [main] DEBUG DocWordWriter - ... 95 ms for borders +2024-09-07 16:22:08,318 [main] DEBUG DocWordWriter - ... 396 ms for formatTable() +2024-09-07 16:22:08,329 [main] INFO DocWordWriter - ... 1696 ms total for insertTable() +2024-09-07 16:22:08,379 [main] INFO DocWordWriter - ... 42 ms for insertCaption(): Table 74 – Attributes of MMS::MMSAssociation +2024-09-07 16:22:08,429 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of MMSAssociation.', [238982 - 239021] +2024-09-07 16:22:08,441 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of MMSAssociation.', [238982 - 239022] +2024-09-07 16:22:08,446 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [238982 - 238982] +2024-09-07 16:22:08,457 [main] INFO DocWordWriter - ... 38 ms for insertCaptionRef() +2024-09-07 16:22:08,457 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:22:08,495 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML115' to Word document and to used list. +2024-09-07 16:22:08,566 [main] INFO DocWordWriter - --- insertTable() 5 rows: Attributes of MMS::MMSSecurityNotification +2024-09-07 16:22:08,593 [main] DEBUG DocWordWriter - ... 27 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:22:08,605 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-07 16:22:08,785 [main] DEBUG DocWordWriter - ... 180 ms for fillValues() +2024-09-07 16:22:08,808 [main] DEBUG DocWordWriter - ... 23 ms for widths (table) +2024-09-07 16:22:08,896 [main] DEBUG DocWordWriter - ... 88 ms for widths (columns) +2024-09-07 16:22:08,923 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-07 16:22:08,956 [main] DEBUG DocWordWriter - ... 33 ms for borders +2024-09-07 16:22:08,956 [main] DEBUG DocWordWriter - ... 171 ms for formatTable() +2024-09-07 16:22:08,967 [main] INFO DocWordWriter - ... 390 ms total for insertTable() +2024-09-07 16:22:09,010 [main] INFO DocWordWriter - ... 36 ms for insertCaption(): Table 75 – Attributes of MMS::MMSSecurityNotification +2024-09-07 16:22:09,056 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of MMSSecurityNotification.', [242970 - 243018] +2024-09-07 16:22:09,067 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of MMSSecurityNotification.', [242970 - 243019] +2024-09-07 16:22:09,074 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [242970 - 242970] +2024-09-07 16:22:09,085 [main] INFO DocWordWriter - ... 39 ms for insertCaptionRef() +2024-09-07 16:22:09,085 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:22:09,123 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML116' to Word document and to used list. +2024-09-07 16:22:09,196 [main] INFO DocWordWriter - --- insertTable() 5 rows: Attributes of MMS::MMSNotification +2024-09-07 16:22:09,227 [main] DEBUG DocWordWriter - ... 31 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:22:09,239 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-07 16:22:09,419 [main] DEBUG DocWordWriter - ... 180 ms for fillValues() +2024-09-07 16:22:09,442 [main] DEBUG DocWordWriter - ... 23 ms for widths (table) +2024-09-07 16:22:09,529 [main] DEBUG DocWordWriter - ... 87 ms for widths (columns) +2024-09-07 16:22:09,556 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-07 16:22:09,589 [main] DEBUG DocWordWriter - ... 33 ms for borders +2024-09-07 16:22:09,589 [main] DEBUG DocWordWriter - ... 170 ms for formatTable() +2024-09-07 16:22:09,601 [main] INFO DocWordWriter - ... 393 ms total for insertTable() +2024-09-07 16:22:09,648 [main] INFO DocWordWriter - ... 40 ms for insertCaption(): Table 76 – Attributes of MMS::MMSNotification +2024-09-07 16:22:09,695 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of MMSNotification.', [243753 - 243793] +2024-09-07 16:22:09,706 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of MMSNotification.', [243753 - 243794] +2024-09-07 16:22:09,713 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [243753 - 243753] +2024-09-07 16:22:09,725 [main] INFO DocWordWriter - ... 41 ms for insertCaptionRef() +2024-09-07 16:22:09,725 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:22:09,771 [main] INFO AbstractWordWriter - writing doc for package SV and GSE common objects ... +2024-09-07 16:22:09,931 [main] INFO DocWordWriter - ... 26 ms for insertCaption(): Figure 24 – Class diagram SV and GSE common objects::SV and GSE common objects +2024-09-07 16:22:10,001 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': GSE/SV common classes relationship.', [244644 - 244681] +2024-09-07 16:22:10,007 [main] TRACE DocWordWriter - prepend : range.txt = ': GSE/SV common classes relationship.', [244644 - 244681] +2024-09-07 16:22:10,014 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [244644 - 244644] +2024-09-07 16:22:10,028 [main] INFO DocWordWriter - ... 32 ms for insertCaptionRef() +2024-09-07 16:22:10,028 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:22:10,069 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML117' to Word document and to used list. +2024-09-07 16:22:10,143 [main] INFO DocWordWriter - --- insertTable() 4 rows: Attributes of SV and GSE common objects::GSEandSVCommon +2024-09-07 16:22:10,172 [main] DEBUG DocWordWriter - ... 29 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:22:10,182 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-07 16:22:10,341 [main] DEBUG DocWordWriter - ... 159 ms for fillValues() +2024-09-07 16:22:10,364 [main] DEBUG DocWordWriter - ... 23 ms for widths (table) +2024-09-07 16:22:10,448 [main] DEBUG DocWordWriter - ... 84 ms for widths (columns) +2024-09-07 16:22:10,473 [main] DEBUG DocWordWriter - ... 25 ms for shadding/merging/styling (rows) +2024-09-07 16:22:10,506 [main] DEBUG DocWordWriter - ... 33 ms for borders +2024-09-07 16:22:10,506 [main] DEBUG DocWordWriter - ... 165 ms for formatTable() +2024-09-07 16:22:10,517 [main] INFO DocWordWriter - ... 363 ms total for insertTable() +2024-09-07 16:22:10,573 [main] INFO DocWordWriter - ... 46 ms for insertCaption(): Table 77 – Attributes of SV and GSE common objects::GSEandSVCommon +2024-09-07 16:22:10,621 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of GSEandSVCommon.', [244851 - 244890] +2024-09-07 16:22:10,632 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of GSEandSVCommon.', [244851 - 244891] +2024-09-07 16:22:10,639 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [244851 - 244851] +2024-09-07 16:22:10,651 [main] INFO DocWordWriter - ... 41 ms for insertCaptionRef() +2024-09-07 16:22:10,651 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:22:10,690 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML118' to Word document and to used list. +2024-09-07 16:22:10,765 [main] INFO DocWordWriter - --- insertTable() 9 rows: Attributes of SV and GSE common objects::GSEandSVPublisherAssociation +2024-09-07 16:22:10,792 [main] DEBUG DocWordWriter - ... 27 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:22:10,805 [main] DEBUG DocWordWriter - ... 13 ms for createTable() +2024-09-07 16:22:11,137 [main] DEBUG DocWordWriter - ... 332 ms for fillValues() +2024-09-07 16:22:11,164 [main] DEBUG DocWordWriter - ... 27 ms for widths (table) +2024-09-07 16:22:11,275 [main] DEBUG DocWordWriter - ... 111 ms for widths (columns) +2024-09-07 16:22:11,302 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-07 16:22:11,350 [main] DEBUG DocWordWriter - ... 48 ms for borders +2024-09-07 16:22:11,350 [main] DEBUG DocWordWriter - ... 213 ms for formatTable() +2024-09-07 16:22:11,362 [main] INFO DocWordWriter - ... 585 ms total for insertTable() +2024-09-07 16:22:11,427 [main] INFO DocWordWriter - ... 57 ms for insertCaption(): Table 78 – Attributes of SV and GSE common objects::GSEandSVPublisherAssociation +2024-09-07 16:22:11,475 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of GSEandSVPublisherAssociation.', [245565 - 245618] +2024-09-07 16:22:11,486 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of GSEandSVPublisherAssociation.', [245565 - 245619] +2024-09-07 16:22:11,494 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [245565 - 245565] +2024-09-07 16:22:11,505 [main] INFO DocWordWriter - ... 41 ms for insertCaptionRef() +2024-09-07 16:22:11,505 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:22:11,549 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML123' to Word document and to used list. +2024-09-07 16:22:11,626 [main] INFO DocWordWriter - --- insertTable() 11 rows: Attributes of SV and GSE common objects::GSEandSVSubscriberAssociation +2024-09-07 16:22:11,653 [main] DEBUG DocWordWriter - ... 27 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:22:11,667 [main] DEBUG DocWordWriter - ... 14 ms for createTable() +2024-09-07 16:22:12,091 [main] DEBUG DocWordWriter - ... 424 ms for fillValues() +2024-09-07 16:22:12,119 [main] DEBUG DocWordWriter - ... 28 ms for widths (table) +2024-09-07 16:22:12,239 [main] DEBUG DocWordWriter - ... 120 ms for widths (columns) +2024-09-07 16:22:12,264 [main] DEBUG DocWordWriter - ... 25 ms for shadding/merging/styling (rows) +2024-09-07 16:22:12,309 [main] DEBUG DocWordWriter - ... 45 ms for borders +2024-09-07 16:22:12,309 [main] DEBUG DocWordWriter - ... 218 ms for formatTable() +2024-09-07 16:22:12,320 [main] INFO DocWordWriter - ... 683 ms total for insertTable() +2024-09-07 16:22:12,398 [main] INFO DocWordWriter - ... 71 ms for insertCaption(): Table 79 – Attributes of SV and GSE common objects::GSEandSVSubscriberAssociation +2024-09-07 16:22:12,448 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of GSEandSVSubscriberAssociation.', [246775 - 246829] +2024-09-07 16:22:12,460 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of GSEandSVSubscriberAssociation.', [246775 - 246830] +2024-09-07 16:22:12,466 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [246775 - 246775] +2024-09-07 16:22:12,479 [main] INFO DocWordWriter - ... 41 ms for insertCaptionRef() +2024-09-07 16:22:12,480 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:22:12,527 [main] INFO AbstractWordWriter - writing doc for package SV ... +2024-09-07 16:22:12,714 [main] INFO DocWordWriter - ... 33 ms for insertCaption(): Figure 25 – Class diagram SV::SV +2024-09-07 16:22:12,791 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': SV classes relationship. SVProvider and SVAssociation inherit both Security and Procotol Info attributes from the more general classes.', [248406 - 248543] +2024-09-07 16:22:12,799 [main] TRACE DocWordWriter - prepend : range.txt = ': SV classes relationship. SVProvider and SVAssociation inherit both Security and Procotol Info attributes from the more general classes.', [248406 - 248543] +2024-09-07 16:22:12,806 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [248406 - 248406] +2024-09-07 16:22:12,821 [main] INFO DocWordWriter - ... 36 ms for insertCaptionRef() +2024-09-07 16:22:12,821 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:22:12,866 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML129' to Word document and to used list. +2024-09-07 16:22:12,941 [main] INFO DocWordWriter - --- insertTable() 12 rows: Attributes of SV::SVProvider +2024-09-07 16:22:12,969 [main] DEBUG DocWordWriter - ... 28 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:22:12,984 [main] DEBUG DocWordWriter - ... 15 ms for createTable() +2024-09-07 16:22:13,434 [main] DEBUG DocWordWriter - ... 450 ms for fillValues() +2024-09-07 16:22:13,464 [main] DEBUG DocWordWriter - ... 29 ms for widths (table) +2024-09-07 16:22:13,595 [main] DEBUG DocWordWriter - ... 131 ms for widths (columns) +2024-09-07 16:22:13,622 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-07 16:22:13,669 [main] DEBUG DocWordWriter - ... 47 ms for borders +2024-09-07 16:22:13,669 [main] DEBUG DocWordWriter - ... 235 ms for formatTable() +2024-09-07 16:22:13,681 [main] INFO DocWordWriter - ... 728 ms total for insertTable() +2024-09-07 16:22:13,762 [main] INFO DocWordWriter - ... 73 ms for insertCaption(): Table 80 – Attributes of SV::SVProvider +2024-09-07 16:22:13,812 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of SVProvider.', [248744 - 248779] +2024-09-07 16:22:13,824 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of SVProvider.', [248744 - 248780] +2024-09-07 16:22:13,831 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [248744 - 248744] +2024-09-07 16:22:13,843 [main] INFO DocWordWriter - ... 41 ms for insertCaptionRef() +2024-09-07 16:22:13,843 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:22:13,885 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML119' to Word document and to used list. +2024-09-07 16:22:13,963 [main] INFO DocWordWriter - --- insertTable() 11 rows: Attributes of SV::SVPublisherAssociationIP +2024-09-07 16:22:13,993 [main] DEBUG DocWordWriter - ... 30 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:22:14,008 [main] DEBUG DocWordWriter - ... 15 ms for createTable() +2024-09-07 16:22:14,410 [main] DEBUG DocWordWriter - ... 402 ms for fillValues() +2024-09-07 16:22:14,439 [main] DEBUG DocWordWriter - ... 29 ms for widths (table) +2024-09-07 16:22:14,570 [main] DEBUG DocWordWriter - ... 131 ms for widths (columns) +2024-09-07 16:22:14,596 [main] DEBUG DocWordWriter - ... 26 ms for shadding/merging/styling (rows) +2024-09-07 16:22:14,642 [main] DEBUG DocWordWriter - ... 46 ms for borders +2024-09-07 16:22:14,642 [main] DEBUG DocWordWriter - ... 232 ms for formatTable() +2024-09-07 16:22:14,653 [main] INFO DocWordWriter - ... 679 ms total for insertTable() +2024-09-07 16:22:14,745 [main] INFO DocWordWriter - ... 82 ms for insertCaption(): Table 81 – Attributes of SV::SVPublisherAssociationIP +2024-09-07 16:22:14,792 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of SVPublisherAssociationIP.', [250603 - 250652] +2024-09-07 16:22:14,804 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of SVPublisherAssociationIP.', [250603 - 250653] +2024-09-07 16:22:14,810 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [250603 - 250603] +2024-09-07 16:22:14,823 [main] INFO DocWordWriter - ... 42 ms for insertCaptionRef() +2024-09-07 16:22:14,823 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:22:14,867 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML120' to Word document and to used list. +2024-09-07 16:22:14,946 [main] INFO DocWordWriter - --- insertTable() 10 rows: Attributes of SV::SVPublisherAssociationL2 +2024-09-07 16:22:14,974 [main] DEBUG DocWordWriter - ... 28 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:22:14,990 [main] DEBUG DocWordWriter - ... 16 ms for createTable() +2024-09-07 16:22:15,361 [main] DEBUG DocWordWriter - ... 371 ms for fillValues() +2024-09-07 16:22:15,390 [main] DEBUG DocWordWriter - ... 28 ms for widths (table) +2024-09-07 16:22:15,509 [main] DEBUG DocWordWriter - ... 119 ms for widths (columns) +2024-09-07 16:22:15,536 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-07 16:22:15,580 [main] DEBUG DocWordWriter - ... 44 ms for borders +2024-09-07 16:22:15,580 [main] DEBUG DocWordWriter - ... 219 ms for formatTable() +2024-09-07 16:22:15,592 [main] INFO DocWordWriter - ... 634 ms total for insertTable() +2024-09-07 16:22:15,695 [main] INFO DocWordWriter - ... 93 ms for insertCaption(): Table 82 – Attributes of SV::SVPublisherAssociationL2 +2024-09-07 16:22:15,743 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of SVPublisherAssociationL2.', [252079 - 252128] +2024-09-07 16:22:15,755 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of SVPublisherAssociationL2.', [252079 - 252129] +2024-09-07 16:22:15,762 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [252079 - 252079] +2024-09-07 16:22:15,775 [main] INFO DocWordWriter - ... 42 ms for insertCaptionRef() +2024-09-07 16:22:15,775 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:22:15,818 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML124' to Word document and to used list. +2024-09-07 16:22:15,901 [main] INFO DocWordWriter - --- insertTable() 13 rows: Attributes of SV::SVSubcriberAssociationIP +2024-09-07 16:22:15,931 [main] DEBUG DocWordWriter - ... 30 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:22:15,947 [main] DEBUG DocWordWriter - ... 16 ms for createTable() +2024-09-07 16:22:16,442 [main] DEBUG DocWordWriter - ... 495 ms for fillValues() +2024-09-07 16:22:16,471 [main] DEBUG DocWordWriter - ... 29 ms for widths (table) +2024-09-07 16:22:16,603 [main] DEBUG DocWordWriter - ... 132 ms for widths (columns) +2024-09-07 16:22:16,631 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-07 16:22:16,687 [main] DEBUG DocWordWriter - ... 56 ms for borders +2024-09-07 16:22:16,687 [main] DEBUG DocWordWriter - ... 245 ms for formatTable() +2024-09-07 16:22:16,700 [main] INFO DocWordWriter - ... 786 ms total for insertTable() +2024-09-07 16:22:16,809 [main] INFO DocWordWriter - ... 101 ms for insertCaption(): Table 83 – Attributes of SV::SVSubcriberAssociationIP +2024-09-07 16:22:16,860 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of SVSubcriberAssociationIP.', [253516 - 253565] +2024-09-07 16:22:16,872 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of SVSubcriberAssociationIP.', [253516 - 253566] +2024-09-07 16:22:16,880 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [253516 - 253516] +2024-09-07 16:22:16,893 [main] INFO DocWordWriter - ... 45 ms for insertCaptionRef() +2024-09-07 16:22:16,893 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:22:16,937 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML125' to Word document and to used list. +2024-09-07 16:22:17,019 [main] INFO DocWordWriter - --- insertTable() 12 rows: Attributes of SV::SVSubcriberAssociationL2 +2024-09-07 16:22:17,049 [main] DEBUG DocWordWriter - ... 30 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:22:17,066 [main] DEBUG DocWordWriter - ... 17 ms for createTable() +2024-09-07 16:22:17,528 [main] DEBUG DocWordWriter - ... 462 ms for fillValues() +2024-09-07 16:22:17,557 [main] DEBUG DocWordWriter - ... 29 ms for widths (table) +2024-09-07 16:22:17,684 [main] DEBUG DocWordWriter - ... 127 ms for widths (columns) +2024-09-07 16:22:17,713 [main] DEBUG DocWordWriter - ... 29 ms for shadding/merging/styling (rows) +2024-09-07 16:22:17,774 [main] DEBUG DocWordWriter - ... 61 ms for borders +2024-09-07 16:22:17,774 [main] DEBUG DocWordWriter - ... 246 ms for formatTable() +2024-09-07 16:22:17,786 [main] INFO DocWordWriter - ... 755 ms total for insertTable() +2024-09-07 16:22:17,904 [main] INFO DocWordWriter - ... 111 ms for insertCaption(): Table 84 – Attributes of SV::SVSubcriberAssociationL2 +2024-09-07 16:22:17,953 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of SVSubcriberAssociationL2.', [255223 - 255272] +2024-09-07 16:22:17,966 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of SVSubcriberAssociationL2.', [255223 - 255273] +2024-09-07 16:22:17,974 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [255223 - 255223] +2024-09-07 16:22:17,987 [main] INFO DocWordWriter - ... 45 ms for insertCaptionRef() +2024-09-07 16:22:17,987 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:22:18,031 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML130' to Word document and to used list. +2024-09-07 16:22:18,098 [main] INFO DocWordWriter - closing MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 16:22:20,391 [main] INFO DocWordWriter - opening MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 16:22:21,874 [main] INFO OptimOptions - setting view to normal +2024-09-07 16:22:21,921 [main] INFO OptimOptions - disabling pagination +2024-09-07 16:22:21,963 [main] INFO OptimOptions - disabling field update +2024-09-07 16:22:22,099 [main] INFO OptimOptions - disabling screen updating +2024-09-07 16:22:22,113 [main] DEBUG DocWordWriter - current(_optimisedOptions): OptimOptions [viewId=1, normView=true, paginate=false, updFld=false, updScr=false, fastSave=false, spelling=false, grammar=false] +2024-09-07 16:22:22,256 [main] INFO Util - time=[0:00:04.185] closed and reopened document. +2024-09-07 16:22:22,256 [main] INFO Util - +2024-09-07 16:22:22,299 [main] INFO DocWordWriter - --- insertTable() 4 rows: Attributes of SV::SVNotification +2024-09-07 16:22:22,327 [main] DEBUG DocWordWriter - ... 28 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:22:22,336 [main] DEBUG DocWordWriter - ... 9 ms for createTable() +2024-09-07 16:22:22,477 [main] DEBUG DocWordWriter - ... 141 ms for fillValues() +2024-09-07 16:22:22,499 [main] DEBUG DocWordWriter - ... 22 ms for widths (table) +2024-09-07 16:22:22,579 [main] DEBUG DocWordWriter - ... 80 ms for widths (columns) +2024-09-07 16:22:22,606 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-07 16:22:22,638 [main] DEBUG DocWordWriter - ... 32 ms for borders +2024-09-07 16:22:22,638 [main] DEBUG DocWordWriter - ... 161 ms for formatTable() +2024-09-07 16:22:22,651 [main] INFO DocWordWriter - ... 339 ms total for insertTable() +2024-09-07 16:22:22,681 [main] INFO DocWordWriter - ... 23 ms for insertCaption(): Table 85 – Attributes of SV::SVNotification +2024-09-07 16:22:22,727 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of SVNotification.', [256760 - 256799] +2024-09-07 16:22:22,739 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of SVNotification.', [256760 - 256800] +2024-09-07 16:22:22,746 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [256760 - 256760] +2024-09-07 16:22:22,756 [main] INFO DocWordWriter - ... 39 ms for insertCaptionRef() +2024-09-07 16:22:22,756 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:22:22,925 [main] INFO AbstractWordWriter - writing doc for package GSE ... +2024-09-07 16:22:23,158 [main] INFO DocWordWriter - ... 31 ms for insertCaption(): Figure 26 – Class diagram GSE::GSE +2024-09-07 16:22:23,254 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': GSE classes relationship. GSEProvider and GSEAssociation inherit both Security and Procotol Info attributes from the more general classes.', [257533 - 257673] +2024-09-07 16:22:23,262 [main] TRACE DocWordWriter - prepend : range.txt = ': GSE classes relationship. GSEProvider and GSEAssociation inherit both Security and Procotol Info attributes from the more general classes.', [257533 - 257673] +2024-09-07 16:22:23,268 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [257533 - 257533] +2024-09-07 16:22:23,279 [main] INFO DocWordWriter - ... 30 ms for insertCaptionRef() +2024-09-07 16:22:23,279 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:22:23,320 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML126' to Word document and to used list. +2024-09-07 16:22:23,400 [main] INFO DocWordWriter - --- insertTable() 27 rows: Attributes of GSE::GSESubscriberAssociation +2024-09-07 16:22:23,426 [main] DEBUG DocWordWriter - ... 26 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:22:23,438 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-07 16:22:24,390 [main] DEBUG DocWordWriter - ... 952 ms for fillValues() +2024-09-07 16:22:24,428 [main] DEBUG DocWordWriter - ... 38 ms for widths (table) +2024-09-07 16:22:24,636 [main] DEBUG DocWordWriter - ... 208 ms for widths (columns) +2024-09-07 16:22:24,670 [main] DEBUG DocWordWriter - ... 33 ms for shadding/merging/styling (rows) +2024-09-07 16:22:24,746 [main] DEBUG DocWordWriter - ... 77 ms for borders +2024-09-07 16:22:24,746 [main] DEBUG DocWordWriter - ... 356 ms for formatTable() +2024-09-07 16:22:24,757 [main] INFO DocWordWriter - ... 1346 ms total for insertTable() +2024-09-07 16:22:24,801 [main] INFO DocWordWriter - ... 37 ms for insertCaption(): Table 86 – Attributes of GSE::GSESubscriberAssociation +2024-09-07 16:22:24,850 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of GSESubscriberAssociation.', [257860 - 257909] +2024-09-07 16:22:24,861 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of GSESubscriberAssociation.', [257860 - 257910] +2024-09-07 16:22:24,869 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [257860 - 257860] +2024-09-07 16:22:24,883 [main] INFO DocWordWriter - ... 44 ms for insertCaptionRef() +2024-09-07 16:22:24,884 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:22:24,924 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML131' to Word document and to used list. +2024-09-07 16:22:25,000 [main] INFO DocWordWriter - --- insertTable() 13 rows: Attributes of GSE::GSEProvider +2024-09-07 16:22:25,037 [main] DEBUG DocWordWriter - ... 37 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:22:25,053 [main] DEBUG DocWordWriter - ... 16 ms for createTable() +2024-09-07 16:22:25,535 [main] DEBUG DocWordWriter - ... 482 ms for fillValues() +2024-09-07 16:22:25,564 [main] DEBUG DocWordWriter - ... 29 ms for widths (table) +2024-09-07 16:22:25,696 [main] DEBUG DocWordWriter - ... 132 ms for widths (columns) +2024-09-07 16:22:25,722 [main] DEBUG DocWordWriter - ... 26 ms for shadding/merging/styling (rows) +2024-09-07 16:22:25,771 [main] DEBUG DocWordWriter - ... 49 ms for borders +2024-09-07 16:22:25,771 [main] DEBUG DocWordWriter - ... 236 ms for formatTable() +2024-09-07 16:22:25,782 [main] INFO DocWordWriter - ... 771 ms total for insertTable() +2024-09-07 16:22:25,830 [main] INFO DocWordWriter - ... 40 ms for insertCaption(): Table 87 – Attributes of GSE::GSEProvider +2024-09-07 16:22:25,880 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of GSEProvider.', [260934 - 260970] +2024-09-07 16:22:25,894 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of GSEProvider.', [260934 - 260971] +2024-09-07 16:22:25,901 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [260934 - 260934] +2024-09-07 16:22:25,912 [main] INFO DocWordWriter - ... 45 ms for insertCaptionRef() +2024-09-07 16:22:25,912 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:22:25,952 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML121' to Word document and to used list. +2024-09-07 16:22:26,027 [main] INFO DocWordWriter - --- insertTable() 11 rows: Attributes of GSE::GSEPublisherAssociationIP +2024-09-07 16:22:26,056 [main] DEBUG DocWordWriter - ... 28 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:22:26,067 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-07 16:22:26,473 [main] DEBUG DocWordWriter - ... 406 ms for fillValues() +2024-09-07 16:22:26,500 [main] DEBUG DocWordWriter - ... 27 ms for widths (table) +2024-09-07 16:22:26,620 [main] DEBUG DocWordWriter - ... 120 ms for widths (columns) +2024-09-07 16:22:26,647 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-07 16:22:26,695 [main] DEBUG DocWordWriter - ... 48 ms for borders +2024-09-07 16:22:26,695 [main] DEBUG DocWordWriter - ... 222 ms for formatTable() +2024-09-07 16:22:26,707 [main] INFO DocWordWriter - ... 668 ms total for insertTable() +2024-09-07 16:22:26,762 [main] INFO DocWordWriter - ... 46 ms for insertCaption(): Table 88 – Attributes of GSE::GSEPublisherAssociationIP +2024-09-07 16:22:26,809 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of GSEPublisherAssociationIP.', [262965 - 263015] +2024-09-07 16:22:26,820 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of GSEPublisherAssociationIP.', [262965 - 263016] +2024-09-07 16:22:26,827 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [262965 - 262965] +2024-09-07 16:22:26,838 [main] INFO DocWordWriter - ... 41 ms for insertCaptionRef() +2024-09-07 16:22:26,838 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:22:26,880 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML122' to Word document and to used list. +2024-09-07 16:22:26,957 [main] INFO DocWordWriter - --- insertTable() 11 rows: Attributes of GSE::GSEPublisherAssociationL2 +2024-09-07 16:22:26,988 [main] DEBUG DocWordWriter - ... 31 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:22:27,000 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-07 16:22:27,403 [main] DEBUG DocWordWriter - ... 403 ms for fillValues() +2024-09-07 16:22:27,432 [main] DEBUG DocWordWriter - ... 29 ms for widths (table) +2024-09-07 16:22:27,561 [main] DEBUG DocWordWriter - ... 129 ms for widths (columns) +2024-09-07 16:22:27,589 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-07 16:22:27,644 [main] DEBUG DocWordWriter - ... 55 ms for borders +2024-09-07 16:22:27,644 [main] DEBUG DocWordWriter - ... 241 ms for formatTable() +2024-09-07 16:22:27,656 [main] INFO DocWordWriter - ... 687 ms total for insertTable() +2024-09-07 16:22:27,719 [main] INFO DocWordWriter - ... 56 ms for insertCaption(): Table 89 – Attributes of GSE::GSEPublisherAssociationL2 +2024-09-07 16:22:27,768 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of GSEPublisherAssociationL2.', [264446 - 264496] +2024-09-07 16:22:27,780 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of GSEPublisherAssociationL2.', [264446 - 264497] +2024-09-07 16:22:27,787 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [264446 - 264446] +2024-09-07 16:22:27,800 [main] INFO DocWordWriter - ... 43 ms for insertCaptionRef() +2024-09-07 16:22:27,800 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:22:27,846 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML127' to Word document and to used list. +2024-09-07 16:22:27,927 [main] INFO DocWordWriter - --- insertTable() 29 rows: Attributes of GSE::GSESubcriberAssociationIP +2024-09-07 16:22:27,957 [main] DEBUG DocWordWriter - ... 30 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:22:27,975 [main] DEBUG DocWordWriter - ... 18 ms for createTable() +2024-09-07 16:22:29,055 [main] DEBUG DocWordWriter - ... 1080 ms for fillValues() +2024-09-07 16:22:29,095 [main] DEBUG DocWordWriter - ... 40 ms for widths (table) +2024-09-07 16:22:29,290 [main] DEBUG DocWordWriter - ... 195 ms for widths (columns) +2024-09-07 16:22:29,319 [main] DEBUG DocWordWriter - ... 29 ms for shadding/merging/styling (rows) +2024-09-07 16:22:29,398 [main] DEBUG DocWordWriter - ... 79 ms for borders +2024-09-07 16:22:29,398 [main] DEBUG DocWordWriter - ... 343 ms for formatTable() +2024-09-07 16:22:29,411 [main] INFO DocWordWriter - ... 1471 ms total for insertTable() +2024-09-07 16:22:29,490 [main] INFO DocWordWriter - ... 71 ms for insertCaption(): Table 90 – Attributes of GSE::GSESubcriberAssociationIP +2024-09-07 16:22:29,542 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of GSESubcriberAssociationIP.', [266018 - 266068] +2024-09-07 16:22:29,555 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of GSESubcriberAssociationIP.', [266018 - 266069] +2024-09-07 16:22:29,562 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [266018 - 266018] +2024-09-07 16:22:29,574 [main] INFO DocWordWriter - ... 43 ms for insertCaptionRef() +2024-09-07 16:22:29,574 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:22:29,620 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML128' to Word document and to used list. +2024-09-07 16:22:29,704 [main] INFO DocWordWriter - --- insertTable() 29 rows: Attributes of GSE::GSESubcriberAssociationL2 +2024-09-07 16:22:29,733 [main] DEBUG DocWordWriter - ... 29 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:22:29,753 [main] DEBUG DocWordWriter - ... 20 ms for createTable() +2024-09-07 16:22:30,865 [main] DEBUG DocWordWriter - ... 1112 ms for fillValues() +2024-09-07 16:22:30,906 [main] DEBUG DocWordWriter - ... 41 ms for widths (table) +2024-09-07 16:22:31,113 [main] DEBUG DocWordWriter - ... 207 ms for widths (columns) +2024-09-07 16:22:31,143 [main] DEBUG DocWordWriter - ... 30 ms for shadding/merging/styling (rows) +2024-09-07 16:22:31,224 [main] DEBUG DocWordWriter - ... 81 ms for borders +2024-09-07 16:22:31,224 [main] DEBUG DocWordWriter - ... 359 ms for formatTable() +2024-09-07 16:22:31,235 [main] INFO DocWordWriter - ... 1520 ms total for insertTable() +2024-09-07 16:22:31,324 [main] INFO DocWordWriter - ... 81 ms for insertCaption(): Table 91 – Attributes of GSE::GSESubcriberAssociationL2 +2024-09-07 16:22:31,376 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of GSESubcriberAssociationL2.', [269371 - 269421] +2024-09-07 16:22:31,388 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of GSESubcriberAssociationL2.', [269371 - 269422] +2024-09-07 16:22:31,395 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [269371 - 269371] +2024-09-07 16:22:31,408 [main] INFO DocWordWriter - ... 43 ms for insertCaptionRef() +2024-09-07 16:22:31,408 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:22:31,451 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML132' to Word document and to used list. +2024-09-07 16:22:31,533 [main] INFO DocWordWriter - --- insertTable() 4 rows: Attributes of GSE::GSENotification +2024-09-07 16:22:31,564 [main] DEBUG DocWordWriter - ... 31 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:22:31,576 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-07 16:22:31,737 [main] DEBUG DocWordWriter - ... 161 ms for fillValues() +2024-09-07 16:22:31,763 [main] DEBUG DocWordWriter - ... 26 ms for widths (table) +2024-09-07 16:22:31,850 [main] DEBUG DocWordWriter - ... 87 ms for widths (columns) +2024-09-07 16:22:31,878 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-07 16:22:31,912 [main] DEBUG DocWordWriter - ... 34 ms for borders +2024-09-07 16:22:31,912 [main] DEBUG DocWordWriter - ... 175 ms for formatTable() +2024-09-07 16:22:31,923 [main] INFO DocWordWriter - ... 379 ms total for insertTable() +2024-09-07 16:22:32,034 [main] INFO DocWordWriter - ... 103 ms for insertCaption(): Table 92 – Attributes of GSE::GSENotification +2024-09-07 16:22:32,083 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of GSENotification.', [272681 - 272721] +2024-09-07 16:22:32,095 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of GSENotification.', [272681 - 272722] +2024-09-07 16:22:32,102 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [272681 - 272681] +2024-09-07 16:22:32,115 [main] INFO DocWordWriter - ... 44 ms for insertCaptionRef() +2024-09-07 16:22:32,115 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:22:32,126 [main] INFO Util - time=[0:01:26.788] replaced [273158 - 273158] PACKAGE Application Protocols Agents, figures (17 before 9 mine), tables (48 before 44 mine)... +2024-09-07 16:22:32,126 [main] INFO Util - +2024-09-07 16:22:32,129 [main] INFO AbstractWordWriter - replacing [273211 - 273250] PACKAGE Interfaces Agent, figures (26 before ), tables (92 before )... +2024-09-07 16:22:32,160 [main] INFO AbstractWordWriter - writing doc for package Interfaces Agent ... +2024-09-07 16:22:32,350 [main] INFO DocWordWriter - ... 32 ms for insertCaption(): Figure 27 – Class diagram Interfaces Agent::Interfaces +2024-09-07 16:22:32,423 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': The IED interfaces are depicted.', [273486 - 273520] +2024-09-07 16:22:32,429 [main] TRACE DocWordWriter - prepend : range.txt = ': The IED interfaces are depicted.', [273486 - 273520] +2024-09-07 16:22:32,436 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [273486 - 273486] +2024-09-07 16:22:32,449 [main] INFO DocWordWriter - ... 32 ms for insertCaptionRef() +2024-09-07 16:22:32,449 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:22:32,491 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML136' to Word document and to used list. +2024-09-07 16:22:32,566 [main] INFO DocWordWriter - --- insertTable() 8 rows: Attributes of Interfaces Agent::Interface +2024-09-07 16:22:32,594 [main] DEBUG DocWordWriter - ... 28 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:22:32,607 [main] DEBUG DocWordWriter - ... 13 ms for createTable() +2024-09-07 16:22:32,917 [main] DEBUG DocWordWriter - ... 310 ms for fillValues() +2024-09-07 16:22:32,943 [main] DEBUG DocWordWriter - ... 26 ms for widths (table) +2024-09-07 16:22:33,051 [main] DEBUG DocWordWriter - ... 108 ms for widths (columns) +2024-09-07 16:22:33,079 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-07 16:22:33,119 [main] DEBUG DocWordWriter - ... 40 ms for borders +2024-09-07 16:22:33,120 [main] DEBUG DocWordWriter - ... 203 ms for formatTable() +2024-09-07 16:22:33,132 [main] INFO DocWordWriter - ... 554 ms total for insertTable() +2024-09-07 16:22:33,243 [main] INFO DocWordWriter - ... 103 ms for insertCaption(): Table 93 – Attributes of Interfaces Agent::Interface +2024-09-07 16:22:33,294 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Interface.', [273670 - 273704] +2024-09-07 16:22:33,308 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Interface.', [273670 - 273705] +2024-09-07 16:22:33,316 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [273670 - 273670] +2024-09-07 16:22:33,329 [main] INFO DocWordWriter - ... 46 ms for insertCaptionRef() +2024-09-07 16:22:33,329 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:22:33,371 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML142' to Word document and to used list. +2024-09-07 16:22:33,452 [main] INFO DocWordWriter - --- insertTable() 22 rows: Attributes of Interfaces Agent::Interfaces +2024-09-07 16:22:33,480 [main] DEBUG DocWordWriter - ... 28 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:22:33,499 [main] DEBUG DocWordWriter - ... 19 ms for createTable() +2024-09-07 16:22:34,335 [main] DEBUG DocWordWriter - ... 836 ms for fillValues() +2024-09-07 16:22:34,372 [main] DEBUG DocWordWriter - ... 36 ms for widths (table) +2024-09-07 16:22:34,538 [main] DEBUG DocWordWriter - ... 166 ms for widths (columns) +2024-09-07 16:22:34,568 [main] DEBUG DocWordWriter - ... 30 ms for shadding/merging/styling (rows) +2024-09-07 16:22:34,636 [main] DEBUG DocWordWriter - ... 68 ms for borders +2024-09-07 16:22:34,636 [main] DEBUG DocWordWriter - ... 301 ms for formatTable() +2024-09-07 16:22:34,647 [main] INFO DocWordWriter - ... 1184 ms total for insertTable() +2024-09-07 16:22:34,775 [main] INFO DocWordWriter - ... 119 ms for insertCaption(): Table 94 – Attributes of Interfaces Agent::Interfaces +2024-09-07 16:22:34,827 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Interfaces.', [274520 - 274555] +2024-09-07 16:22:34,840 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Interfaces.', [274520 - 274556] +2024-09-07 16:22:34,847 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [274520 - 274520] +2024-09-07 16:22:34,861 [main] INFO DocWordWriter - ... 45 ms for insertCaptionRef() +2024-09-07 16:22:34,861 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:22:34,907 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML137' to Word document and to used list. +2024-09-07 16:22:34,995 [main] INFO DocWordWriter - --- insertTable() 8 rows: Attributes of Interfaces Agent::ETHEntry +2024-09-07 16:22:35,024 [main] DEBUG DocWordWriter - ... 29 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:22:35,040 [main] DEBUG DocWordWriter - ... 16 ms for createTable() +2024-09-07 16:22:35,383 [main] DEBUG DocWordWriter - ... 343 ms for fillValues() +2024-09-07 16:22:35,409 [main] DEBUG DocWordWriter - ... 26 ms for widths (table) +2024-09-07 16:22:35,520 [main] DEBUG DocWordWriter - ... 111 ms for widths (columns) +2024-09-07 16:22:35,548 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-07 16:22:35,589 [main] DEBUG DocWordWriter - ... 41 ms for borders +2024-09-07 16:22:35,590 [main] DEBUG DocWordWriter - ... 207 ms for formatTable() +2024-09-07 16:22:35,602 [main] INFO DocWordWriter - ... 595 ms total for insertTable() +2024-09-07 16:22:35,734 [main] INFO DocWordWriter - ... 123 ms for insertCaption(): Table 95 – Attributes of Interfaces Agent::ETHEntry +2024-09-07 16:22:35,784 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of ETHEntry.', [277042 - 277075] +2024-09-07 16:22:35,799 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of ETHEntry.', [277042 - 277076] +2024-09-07 16:22:35,805 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [277042 - 277042] +2024-09-07 16:22:35,820 [main] INFO DocWordWriter - ... 48 ms for insertCaptionRef() +2024-09-07 16:22:35,820 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:22:35,863 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML138' to Word document and to used list. +2024-09-07 16:22:35,947 [main] INFO DocWordWriter - --- insertTable() 9 rows: Attributes of Interfaces Agent::KEYEntry +2024-09-07 16:22:35,977 [main] DEBUG DocWordWriter - ... 30 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:22:35,992 [main] DEBUG DocWordWriter - ... 15 ms for createTable() +2024-09-07 16:22:36,358 [main] DEBUG DocWordWriter - ... 366 ms for fillValues() +2024-09-07 16:22:36,385 [main] DEBUG DocWordWriter - ... 27 ms for widths (table) +2024-09-07 16:22:36,497 [main] DEBUG DocWordWriter - ... 112 ms for widths (columns) +2024-09-07 16:22:36,524 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-07 16:22:36,568 [main] DEBUG DocWordWriter - ... 44 ms for borders +2024-09-07 16:22:36,568 [main] DEBUG DocWordWriter - ... 210 ms for formatTable() +2024-09-07 16:22:36,579 [main] INFO DocWordWriter - ... 621 ms total for insertTable() +2024-09-07 16:22:36,718 [main] INFO DocWordWriter - ... 132 ms for insertCaption(): Table 96 – Attributes of Interfaces Agent::KEYEntry +2024-09-07 16:22:36,768 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of KEYEntry.', [277921 - 277954] +2024-09-07 16:22:36,780 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of KEYEntry.', [277921 - 277955] +2024-09-07 16:22:36,786 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [277921 - 277921] +2024-09-07 16:22:36,801 [main] INFO DocWordWriter - ... 45 ms for insertCaptionRef() +2024-09-07 16:22:36,801 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:22:36,842 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML139' to Word document and to used list. +2024-09-07 16:22:36,913 [main] INFO DocWordWriter - closing MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 16:22:39,460 [main] INFO DocWordWriter - opening MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 16:22:41,059 [main] INFO OptimOptions - setting view to normal +2024-09-07 16:22:41,107 [main] INFO OptimOptions - disabling pagination +2024-09-07 16:22:41,148 [main] INFO OptimOptions - disabling field update +2024-09-07 16:22:41,253 [main] INFO OptimOptions - disabling screen updating +2024-09-07 16:22:41,274 [main] DEBUG DocWordWriter - current(_optimisedOptions): OptimOptions [viewId=1, normView=true, paginate=false, updFld=false, updScr=false, fastSave=false, spelling=false, grammar=false] +2024-09-07 16:22:41,401 [main] INFO Util - time=[0:00:04.515] closed and reopened document. +2024-09-07 16:22:41,401 [main] INFO Util - +2024-09-07 16:22:41,460 [main] INFO DocWordWriter - --- insertTable() 10 rows: Attributes of Interfaces Agent::SEREntry +2024-09-07 16:22:41,494 [main] DEBUG DocWordWriter - ... 34 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:22:41,504 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-07 16:22:41,882 [main] DEBUG DocWordWriter - ... 378 ms for fillValues() +2024-09-07 16:22:41,912 [main] DEBUG DocWordWriter - ... 30 ms for widths (table) +2024-09-07 16:22:42,028 [main] DEBUG DocWordWriter - ... 116 ms for widths (columns) +2024-09-07 16:22:42,057 [main] DEBUG DocWordWriter - ... 29 ms for shadding/merging/styling (rows) +2024-09-07 16:22:42,106 [main] DEBUG DocWordWriter - ... 49 ms for borders +2024-09-07 16:22:42,106 [main] DEBUG DocWordWriter - ... 224 ms for formatTable() +2024-09-07 16:22:42,120 [main] INFO DocWordWriter - ... 646 ms total for insertTable() +2024-09-07 16:22:42,163 [main] INFO DocWordWriter - ... 34 ms for insertCaption(): Table 97 – Attributes of Interfaces Agent::SEREntry +2024-09-07 16:22:42,222 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of SEREntry.', [278890 - 278923] +2024-09-07 16:22:42,233 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of SEREntry.', [278890 - 278924] +2024-09-07 16:22:42,240 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [278890 - 278890] +2024-09-07 16:22:42,250 [main] INFO DocWordWriter - ... 39 ms for insertCaptionRef() +2024-09-07 16:22:42,250 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:22:42,402 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML140' to Word document and to used list. +2024-09-07 16:22:42,479 [main] INFO DocWordWriter - --- insertTable() 8 rows: Attributes of Interfaces Agent::ALGEntry +2024-09-07 16:22:42,507 [main] DEBUG DocWordWriter - ... 28 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:22:42,518 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 16:22:42,820 [main] DEBUG DocWordWriter - ... 301 ms for fillValues() +2024-09-07 16:22:42,846 [main] DEBUG DocWordWriter - ... 26 ms for widths (table) +2024-09-07 16:22:42,957 [main] DEBUG DocWordWriter - ... 111 ms for widths (columns) +2024-09-07 16:22:42,985 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-07 16:22:43,025 [main] DEBUG DocWordWriter - ... 40 ms for borders +2024-09-07 16:22:43,025 [main] DEBUG DocWordWriter - ... 206 ms for formatTable() +2024-09-07 16:22:43,036 [main] INFO DocWordWriter - ... 546 ms total for insertTable() +2024-09-07 16:22:43,076 [main] INFO DocWordWriter - ... 33 ms for insertCaption(): Table 98 – Attributes of Interfaces Agent::ALGEntry +2024-09-07 16:22:43,124 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of ALGEntry.', [279901 - 279934] +2024-09-07 16:22:43,135 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of ALGEntry.', [279901 - 279935] +2024-09-07 16:22:43,143 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [279901 - 279901] +2024-09-07 16:22:43,153 [main] INFO DocWordWriter - ... 40 ms for insertCaptionRef() +2024-09-07 16:22:43,153 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:22:43,193 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML141' to Word document and to used list. +2024-09-07 16:22:43,271 [main] INFO DocWordWriter - --- insertTable() 8 rows: Attributes of Interfaces Agent::USBEntry +2024-09-07 16:22:43,299 [main] DEBUG DocWordWriter - ... 28 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:22:43,310 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 16:22:43,626 [main] DEBUG DocWordWriter - ... 316 ms for fillValues() +2024-09-07 16:22:43,652 [main] DEBUG DocWordWriter - ... 26 ms for widths (table) +2024-09-07 16:22:43,760 [main] DEBUG DocWordWriter - ... 108 ms for widths (columns) +2024-09-07 16:22:43,787 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-07 16:22:43,827 [main] DEBUG DocWordWriter - ... 40 ms for borders +2024-09-07 16:22:43,827 [main] DEBUG DocWordWriter - ... 201 ms for formatTable() +2024-09-07 16:22:43,839 [main] INFO DocWordWriter - ... 556 ms total for insertTable() +2024-09-07 16:22:43,886 [main] INFO DocWordWriter - ... 39 ms for insertCaption(): Table 99 – Attributes of Interfaces Agent::USBEntry +2024-09-07 16:22:43,937 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of USBEntry.', [280772 - 280805] +2024-09-07 16:22:43,949 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of USBEntry.', [280772 - 280806] +2024-09-07 16:22:43,956 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [280772 - 280772] +2024-09-07 16:22:43,966 [main] INFO DocWordWriter - ... 41 ms for insertCaptionRef() +2024-09-07 16:22:43,966 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:22:44,006 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML143' to Word document and to used list. +2024-09-07 16:22:44,081 [main] INFO DocWordWriter - --- insertTable() 11 rows: Attributes of Interfaces Agent::Notification +2024-09-07 16:22:44,110 [main] DEBUG DocWordWriter - ... 29 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:22:44,121 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 16:22:44,534 [main] DEBUG DocWordWriter - ... 413 ms for fillValues() +2024-09-07 16:22:44,562 [main] DEBUG DocWordWriter - ... 28 ms for widths (table) +2024-09-07 16:22:44,693 [main] DEBUG DocWordWriter - ... 131 ms for widths (columns) +2024-09-07 16:22:44,721 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-07 16:22:44,767 [main] DEBUG DocWordWriter - ... 46 ms for borders +2024-09-07 16:22:44,767 [main] DEBUG DocWordWriter - ... 233 ms for formatTable() +2024-09-07 16:22:44,779 [main] INFO DocWordWriter - ... 686 ms total for insertTable() +2024-09-07 16:22:44,833 [main] INFO DocWordWriter - ... 47 ms for insertCaption(): Table 100 – Attributes of Interfaces Agent::Notification +2024-09-07 16:22:44,883 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Notification.', [281693 - 281730] +2024-09-07 16:22:44,895 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Notification.', [281693 - 281731] +2024-09-07 16:22:44,902 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [281693 - 281693] +2024-09-07 16:22:44,915 [main] INFO DocWordWriter - ... 43 ms for insertCaptionRef() +2024-09-07 16:22:44,915 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:22:44,926 [main] INFO Util - time=[0:00:12.800] replaced [282873 - 282873] PACKAGE Interfaces Agent, figures (26 before 1 mine), tables (92 before 8 mine)... +2024-09-07 16:22:44,926 [main] INFO Util - +2024-09-07 16:22:44,930 [main] INFO AbstractWordWriter - replacing [282914 - 282949] PACKAGE Clocks Agent, figures (27 before ), tables (100 before )... +2024-09-07 16:22:44,959 [main] INFO AbstractWordWriter - writing doc for package Clocks Agent ... +2024-09-07 16:22:45,127 [main] INFO DocWordWriter - ... 24 ms for insertCaption(): Figure 28 – Class diagram Clocks Agent::Clocks Agent +2024-09-07 16:22:45,198 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': Clocks Agent classes', [283111 - 283133] +2024-09-07 16:22:45,205 [main] TRACE DocWordWriter - prepend : range.txt = ': Clocks Agent classes', [283111 - 283133] +2024-09-07 16:22:45,212 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [283111 - 283111] +2024-09-07 16:22:45,224 [main] INFO DocWordWriter - ... 30 ms for insertCaptionRef() +2024-09-07 16:22:45,224 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:22:45,267 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML133' to Word document and to used list. +2024-09-07 16:22:45,355 [main] INFO DocWordWriter - --- insertTable() 6 rows: Attributes of Clocks Agent::Clock +2024-09-07 16:22:45,384 [main] DEBUG DocWordWriter - ... 29 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:22:45,395 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 16:22:45,623 [main] DEBUG DocWordWriter - ... 228 ms for fillValues() +2024-09-07 16:22:45,647 [main] DEBUG DocWordWriter - ... 24 ms for widths (table) +2024-09-07 16:22:45,743 [main] DEBUG DocWordWriter - ... 96 ms for widths (columns) +2024-09-07 16:22:45,770 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-07 16:22:45,809 [main] DEBUG DocWordWriter - ... 39 ms for borders +2024-09-07 16:22:45,809 [main] DEBUG DocWordWriter - ... 186 ms for formatTable() +2024-09-07 16:22:45,820 [main] INFO DocWordWriter - ... 454 ms total for insertTable() +2024-09-07 16:22:45,882 [main] INFO DocWordWriter - ... 54 ms for insertCaption(): Table 101 – Attributes of Clocks Agent::Clock +2024-09-07 16:22:45,932 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Clock.', [283245 - 283275] +2024-09-07 16:22:45,945 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Clock.', [283245 - 283276] +2024-09-07 16:22:45,952 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [283245 - 283245] +2024-09-07 16:22:45,963 [main] INFO DocWordWriter - ... 43 ms for insertCaptionRef() +2024-09-07 16:22:45,963 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:22:46,004 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML134' to Word document and to used list. +2024-09-07 16:22:46,091 [main] INFO DocWordWriter - --- insertTable() 10 rows: Attributes of Clocks Agent::ClockEntry +2024-09-07 16:22:46,127 [main] DEBUG DocWordWriter - ... 36 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:22:46,141 [main] DEBUG DocWordWriter - ... 14 ms for createTable() +2024-09-07 16:22:46,560 [main] DEBUG DocWordWriter - ... 419 ms for fillValues() +2024-09-07 16:22:46,587 [main] DEBUG DocWordWriter - ... 27 ms for widths (table) +2024-09-07 16:22:46,704 [main] DEBUG DocWordWriter - ... 117 ms for widths (columns) +2024-09-07 16:22:46,733 [main] DEBUG DocWordWriter - ... 29 ms for shadding/merging/styling (rows) +2024-09-07 16:22:46,782 [main] DEBUG DocWordWriter - ... 49 ms for borders +2024-09-07 16:22:46,782 [main] DEBUG DocWordWriter - ... 222 ms for formatTable() +2024-09-07 16:22:46,795 [main] INFO DocWordWriter - ... 691 ms total for insertTable() +2024-09-07 16:22:46,872 [main] INFO DocWordWriter - ... 68 ms for insertCaption(): Table 102 – Attributes of Clocks Agent::ClockEntry +2024-09-07 16:22:46,923 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of ClockEntry.', [284172 - 284207] +2024-09-07 16:22:46,935 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of ClockEntry.', [284172 - 284208] +2024-09-07 16:22:46,943 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [284172 - 284172] +2024-09-07 16:22:46,955 [main] INFO DocWordWriter - ... 44 ms for insertCaptionRef() +2024-09-07 16:22:46,955 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:22:46,998 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML135' to Word document and to used list. +2024-09-07 16:22:47,078 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of Clocks Agent::SecurityNotification +2024-09-07 16:22:47,107 [main] DEBUG DocWordWriter - ... 29 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 16:22:47,117 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-07 16:22:47,201 [main] DEBUG DocWordWriter - ... 84 ms for fillValues() +2024-09-07 16:22:47,224 [main] DEBUG DocWordWriter - ... 22 ms for widths (table) +2024-09-07 16:22:47,304 [main] DEBUG DocWordWriter - ... 80 ms for widths (columns) +2024-09-07 16:22:47,330 [main] DEBUG DocWordWriter - ... 26 ms for shadding/merging/styling (rows) +2024-09-07 16:22:47,365 [main] DEBUG DocWordWriter - ... 35 ms for borders +2024-09-07 16:22:47,366 [main] DEBUG DocWordWriter - ... 165 ms for formatTable() +2024-09-07 16:22:47,380 [main] INFO DocWordWriter - ... 288 ms total for insertTable() +2024-09-07 16:22:47,454 [main] INFO DocWordWriter - ... 66 ms for insertCaption(): Table 103 – Attributes of Clocks Agent::SecurityNotification +2024-09-07 16:22:47,503 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of SecurityNotification.', [287067 - 287112] +2024-09-07 16:22:47,515 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of SecurityNotification.', [287067 - 287113] +2024-09-07 16:22:47,522 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [287067 - 287067] +2024-09-07 16:22:47,534 [main] INFO DocWordWriter - ... 43 ms for insertCaptionRef() +2024-09-07 16:22:47,534 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 16:22:47,544 [main] INFO Util - time=[0:00:02.618] replaced [287377 - 287377] PACKAGE Clocks Agent, figures (27 before 1 mine), tables (100 before 3 mine)... +2024-09-07 16:22:47,544 [main] INFO Util - +2024-09-07 16:22:47,545 [main] INFO Util - +2024-09-07 16:22:47,545 [main] INFO Util - ------------------------------------------------ +2024-09-07 16:22:47,545 [main] INFO Util - scanning placeholders... +2024-09-07 16:22:48,061 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTruthValueùUML38ùdd' HYPERLINK TruthValue, UML38 +2024-09-07 16:22:48,076 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDateAndTimeùUML27ùdd' HYPERLINK DateAndTime, UML27 +2024-09-07 16:22:48,091 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTruthValueùUML38ùdd' HYPERLINK TruthValue, UML38 +2024-09-07 16:22:48,105 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDateAndTimeùUML27ùdd' HYPERLINK DateAndTime, UML27 +2024-09-07 16:22:48,120 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounter32 ùUML26ùdd' HYPERLINK Counter32 , UML26 +2024-09-07 16:22:48,136 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDateAndTimeùUML27ùdd' HYPERLINK DateAndTime, UML27 +2024-09-07 16:22:48,150 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTruthValueùUML38ùdd' HYPERLINK TruthValue, UML38 +2024-09-07 16:22:48,164 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloat32TCùUML29ùdd' HYPERLINK Float32TC, UML29 +2024-09-07 16:22:48,179 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDateAndTimeùUML27ùdd' HYPERLINK DateAndTime, UML27 +2024-09-07 16:22:48,194 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloat32TCùUML29ùdd' HYPERLINK Float32TC, UML29 +2024-09-07 16:22:48,209 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùUnsigned32ùUML36ùdd' HYPERLINK Unsigned32, UML36 +2024-09-07 16:22:48,224 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInteger32ùUML35ùdd' HYPERLINK Integer32, UML35 +2024-09-07 16:22:48,238 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDateAndTimeùUML27ùdd' HYPERLINK DateAndTime, UML27 +2024-09-07 16:22:48,252 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInteger32ùUML35ùdd' HYPERLINK Integer32, UML35 +2024-09-07 16:22:48,266 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML31ùdd' HYPERLINK InetAddress, UML31 +2024-09-07 16:22:48,280 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML33ùdd' HYPERLINK InetAddressType, UML33 +2024-09-07 16:22:48,294 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMacAddressùUML32ùdd' HYPERLINK MacAddress, UML32 +2024-09-07 16:22:48,308 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDisplayStringùUML28ùdd' HYPERLINK DisplayString, UML28 +2024-09-07 16:22:48,322 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDateAndTimeùUML27ùdd' HYPERLINK DateAndTime, UML27 +2024-09-07 16:22:48,336 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDisplayStringùUML28ùdd' HYPERLINK DisplayString, UML28 +2024-09-07 16:22:48,351 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDateAndTimeùUML27ùdd' HYPERLINK DateAndTime, UML27 +2024-09-07 16:22:48,364 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDisplayStringùUML28ùdd' HYPERLINK DisplayString, UML28 +2024-09-07 16:22:48,381 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDateAndTimeùUML27ùdd' HYPERLINK DateAndTime, UML27 +2024-09-07 16:22:48,396 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAppDatStKindùUML41ùdd' HYPERLINK AppDatStKind, UML41 +2024-09-07 16:22:48,410 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDateAndTimeùUML27ùdd' HYPERLINK DateAndTime, UML27 +2024-09-07 16:22:48,423 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùPhyHealthKindùUML42ùdd' HYPERLINK PhyHealthKind, UML42 +2024-09-07 16:22:48,438 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùExtKindùUML43ùdd' HYPERLINK ExtKind, UML43 +2024-09-07 16:22:48,452 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntKindùUML44ùdd' HYPERLINK IntKind, UML44 +2024-09-07 16:22:48,466 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDateAndTimeùUML27ùdd' HYPERLINK DateAndTime, UML27 +2024-09-07 16:22:48,479 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventKindùUML48ùdd' HYPERLINK EventKind, UML48 +2024-09-07 16:22:48,493 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDateAndTimeùUML27ùdd' HYPERLINK DateAndTime, UML27 +2024-09-07 16:22:48,506 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùPSPAccKindùUML46ùdd' HYPERLINK PSPAccKind, UML46 +2024-09-07 16:22:48,520 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùProtIdKindùUML47ùdd' HYPERLINK ProtIdKind, UML47 +2024-09-07 16:22:48,534 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimSyncIssueKindùUML49ùdd' HYPERLINK TimSyncIssueKind, UML49 +2024-09-07 16:22:48,547 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSecurityProfileKindùUML50ùdd' HYPERLINK SecurityProfileKind, UML50 +2024-09-07 16:22:48,562 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimSyncSrcKindùUML51ùdd' HYPERLINK TimSyncSrcKind, UML51 +2024-09-07 16:22:48,575 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùLnkKindùUML45ùdd' HYPERLINK LnkKind, UML45 +2024-09-07 16:22:48,590 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAppDatStTypeùUML68ùdd' HYPERLINK AppDatStType, UML68 +2024-09-07 16:22:48,604 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 16:22:48,618 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-07 16:22:48,631 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 16:22:48,646 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 16:22:48,660 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 16:22:48,674 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 16:22:48,688 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùPSUPEntryùUML80ùdd' HYPERLINK PSUPEntry, UML80 +2024-09-07 16:22:48,706 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 16:22:48,720 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 16:22:48,733 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSecurityNotificationùUML82ùdd' HYPERLINK SecurityNotification, UML82 +2024-09-07 16:22:48,747 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùNotificationùUML81ùdd' HYPERLINK Notification, UML81 +2024-09-07 16:22:48,760 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 16:22:48,774 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 16:22:48,788 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:22:48,802 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 16:22:48,815 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:22:48,829 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 16:22:48,842 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:48,857 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 16:22:48,872 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 16:22:48,887 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 16:22:48,903 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-07 16:22:48,919 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimestampùUML61ùdd' HYPERLINK Timestamp, UML61 +2024-09-07 16:22:48,934 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimestampùUML61ùdd' HYPERLINK Timestamp, UML61 +2024-09-07 16:22:48,950 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimestampùUML61ùdd' HYPERLINK Timestamp, UML61 +2024-09-07 16:22:48,962 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimestampùUML61ùdd' HYPERLINK Timestamp, UML61 +2024-09-07 16:22:48,975 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:48,988 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 16:22:49,001 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 16:22:49,014 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 16:22:49,028 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCPUEntryùUML84ùdd' HYPERLINK CPUEntry, UML84 +2024-09-07 16:22:49,053 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-07 16:22:49,066 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:49,079 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:22:49,092 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 16:22:49,105 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEXTEntryùUML85ùdd' HYPERLINK EXTEntry, UML85 +2024-09-07 16:22:49,119 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 16:22:49,134 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-07 16:22:49,147 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 16:22:49,160 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-07 16:22:49,174 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 16:22:49,188 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 16:22:49,202 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:22:49,216 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:22:49,228 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 16:22:49,242 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-07 16:22:49,256 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:22:49,271 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:49,285 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:22:49,300 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 16:22:49,313 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-07 16:22:49,326 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-07 16:22:49,340 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùPhyHealthTypeùUML69ùdd' HYPERLINK PhyHealthType, UML69 +2024-09-07 16:22:49,354 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:49,369 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 16:22:49,383 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 16:22:49,397 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:49,410 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSecurityNotificationùUML88ùdd' HYPERLINK SecurityNotification, UML88 +2024-09-07 16:22:49,423 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùNotificationùUML87ùdd' HYPERLINK Notification, UML87 +2024-09-07 16:22:49,437 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSTOREEntryùUML86ùdd' HYPERLINK STOREEntry, UML86 +2024-09-07 16:22:49,451 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:49,465 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:49,478 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:49,493 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 16:22:49,507 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:22:49,521 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 16:22:49,535 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 16:22:49,548 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 16:22:49,562 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 16:22:49,576 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-07 16:22:49,589 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:49,603 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 16:22:49,617 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:22:49,630 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùExtTypeùUML70ùdd' HYPERLINK ExtType, UML70 +2024-09-07 16:22:49,643 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 16:22:49,657 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 16:22:49,671 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-07 16:22:49,688 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:49,703 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:49,718 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 16:22:49,732 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 16:22:49,746 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:22:49,760 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:22:49,774 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-07 16:22:49,788 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 16:22:49,801 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 16:22:49,815 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:49,829 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-07 16:22:49,843 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-07 16:22:49,857 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-07 16:22:49,873 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùPhyHealthTypeùUML69ùdd' HYPERLINK PhyHealthType, UML69 +2024-09-07 16:22:49,887 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:49,903 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:49,917 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 16:22:49,932 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-07 16:22:49,945 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 16:22:49,958 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 16:22:49,972 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:49,987 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 16:22:50,003 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 16:22:50,019 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:22:50,034 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:22:50,048 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:22:50,060 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:22:50,073 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:22:50,086 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:22:50,100 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:50,113 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:50,125 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:50,138 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:50,151 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:50,164 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:50,178 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:50,191 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:50,204 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:50,217 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:50,234 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:50,248 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:50,261 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:50,274 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:50,288 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:50,302 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:50,316 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:50,330 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:50,343 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:50,356 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:50,370 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:50,386 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:50,402 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:50,416 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:50,430 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:50,443 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:50,457 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:50,470 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:50,484 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:50,498 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:50,512 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:50,526 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:50,540 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:50,554 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:50,568 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:50,582 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 16:22:50,595 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 16:22:50,608 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 16:22:50,622 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 16:22:50,636 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 16:22:50,649 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 16:22:50,664 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 16:22:50,677 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:22:50,690 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 16:22:50,704 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:22:50,719 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:22:50,734 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:22:50,748 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:22:50,762 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:22:50,774 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:22:50,787 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:22:50,801 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:22:50,815 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:22:50,829 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:22:50,841 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:22:50,855 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:22:50,868 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:22:50,883 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:50,900 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:50,914 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:50,930 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:50,944 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:50,957 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:50,971 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:50,984 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:50,998 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:51,012 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:51,025 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:51,039 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:51,054 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:51,068 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:51,083 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:51,099 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:51,112 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:51,124 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:51,137 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:51,149 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:51,162 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:51,174 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:51,187 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:51,200 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:51,213 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:51,226 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:51,238 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:51,251 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:51,264 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:51,282 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:51,298 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:51,311 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:51,325 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:51,338 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:51,352 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:51,365 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:51,378 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:51,391 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:51,406 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:51,419 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:51,432 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:51,445 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:51,457 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:51,470 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:51,483 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:51,496 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:51,509 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:51,522 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:51,535 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:51,549 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:51,565 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:51,579 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:51,593 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:51,605 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:51,618 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:51,631 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:51,645 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:51,659 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:51,672 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:51,685 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:51,698 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:51,712 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:51,725 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:51,738 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:51,752 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:51,765 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:51,781 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:51,794 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:51,806 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:51,819 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:51,833 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 16:22:51,846 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-07 16:22:51,859 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùServerTLSùUML93ùdd' HYPERLINK ServerTLS, UML93 +2024-09-07 16:22:51,871 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùClientTLSùUML92ùdd' HYPERLINK ClientTLS, UML92 +2024-09-07 16:22:51,884 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part3ed2SecurityNotificationùUML106ùdd' HYPERLINK IEC62351part3ed2SecurityNotification, UML106 +2024-09-07 16:22:51,897 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:51,911 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:51,926 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:51,939 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:51,952 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:51,966 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:51,980 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:51,997 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:52,011 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:52,026 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:52,039 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:52,053 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:52,067 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:52,080 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:52,093 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:52,107 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:52,121 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:52,135 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:52,150 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:52,165 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:52,181 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:52,194 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:52,207 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:52,220 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:52,232 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:52,245 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:52,259 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:52,271 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:52,283 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:52,296 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:52,310 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:52,323 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:52,335 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:52,348 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:52,362 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:52,379 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:52,392 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:52,405 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:52,420 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:52,433 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:52,446 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:52,460 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:52,473 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:52,485 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:52,498 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:52,513 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:52,527 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:52,541 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:52,554 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:52,567 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:52,580 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:52,596 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:52,610 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:52,623 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:52,636 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:52,650 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:52,662 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:52,675 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:52,687 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:52,700 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:52,713 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:52,726 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:52,739 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:52,752 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:52,765 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:52,778 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:52,791 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:52,803 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:52,816 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:52,829 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:52,842 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-07 16:22:52,857 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 16:22:52,869 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-07 16:22:52,882 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 16:22:52,895 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-07 16:22:52,911 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 16:22:52,927 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-07 16:22:52,942 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 16:22:52,967 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-07 16:22:52,996 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 16:22:53,009 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-07 16:22:53,023 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 16:22:53,035 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-07 16:22:53,048 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 16:22:53,061 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:22:53,074 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 16:22:53,086 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:22:53,099 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:22:53,111 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:22:53,125 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:22:53,138 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:22:53,152 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:22:53,165 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:22:53,180 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:22:53,193 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:22:53,209 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:22:53,224 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:22:53,240 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:22:53,254 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:22:53,268 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:53,281 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:53,294 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:53,308 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:53,320 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:53,333 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:53,346 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:53,358 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:53,372 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:53,388 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:53,401 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:53,413 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:53,427 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:53,443 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:53,456 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:53,468 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:53,481 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:53,494 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:53,509 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:53,522 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:53,535 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:53,548 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:53,561 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:53,574 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:53,588 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:53,600 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:53,613 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:53,626 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:53,639 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:53,651 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:53,665 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:53,677 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:53,690 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:53,703 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:53,715 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:53,728 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:53,741 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:53,754 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:53,766 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:53,778 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:53,792 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:53,809 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:53,822 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:53,836 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:53,850 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:53,863 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:53,876 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:53,889 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:53,902 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:53,915 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:53,930 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:53,945 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:53,958 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:53,976 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:53,989 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:54,001 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:54,014 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:54,027 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:54,040 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:54,054 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:54,066 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:54,079 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:54,094 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:54,110 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:54,127 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:54,148 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:54,166 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:54,182 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:54,198 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:54,213 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:54,229 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 16:22:54,245 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-07 16:22:54,260 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 16:22:54,279 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-07 16:22:54,300 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 16:22:54,321 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-07 16:22:54,341 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 16:22:54,362 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-07 16:22:54,381 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 16:22:54,397 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-07 16:22:54,413 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 16:22:54,428 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-07 16:22:54,443 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 16:22:54,460 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:22:54,475 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 16:22:54,492 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:22:54,508 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:22:54,523 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:22:54,539 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:22:54,555 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:22:54,571 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:22:54,587 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:22:54,604 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:22:54,619 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:22:54,634 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:22:54,649 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:22:54,665 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:22:54,680 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:22:54,696 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:54,711 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:54,726 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:54,742 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:54,758 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:54,774 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:54,790 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:54,805 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:54,821 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:54,836 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:54,852 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:54,868 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:54,883 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:54,901 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:54,921 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:54,940 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:54,959 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:54,975 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:54,991 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:55,007 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:55,022 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:55,038 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:55,055 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:55,072 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:55,087 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:55,103 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:55,119 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:55,134 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:55,151 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:55,166 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:55,183 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:55,198 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:55,214 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:55,230 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:55,245 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:55,260 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:55,275 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:55,291 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:55,307 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:55,323 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:55,340 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:55,357 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:55,373 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:55,389 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:55,408 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:55,425 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:55,442 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:55,459 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:55,476 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:55,492 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:55,510 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:55,527 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:55,544 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:55,559 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:55,574 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:55,590 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:55,606 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:55,621 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:55,638 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:55,654 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:55,670 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:55,685 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:55,701 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:55,716 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:55,731 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:55,746 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:55,761 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:55,776 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:55,791 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:55,808 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 16:22:55,825 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:55,841 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:55,857 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:55,874 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:55,890 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:55,907 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:55,923 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:55,987 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:56,007 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:56,024 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:56,042 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:22:56,059 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:56,088 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:56,107 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:56,125 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:22:56,143 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:56,160 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:56,177 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 16:22:56,194 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:56,210 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:56,226 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:56,242 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:56,258 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:56,274 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:56,289 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:56,305 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:56,321 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:56,336 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:56,352 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:56,368 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:56,385 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 16:22:56,401 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 16:22:56,416 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 16:22:56,432 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 16:22:56,448 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùProtIdTypeùUML74ùdd' HYPERLINK ProtIdType, UML74 +2024-09-07 16:22:56,464 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:22:56,482 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:22:56,500 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 16:22:56,519 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 16:22:56,536 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:56,554 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùLnkTypeùUML78ùdd' HYPERLINK LnkType, UML78 +2024-09-07 16:22:56,571 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:56,587 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:56,605 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:56,621 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:56,637 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:56,654 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:56,671 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:56,689 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:56,707 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:56,725 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:56,743 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:56,761 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:56,777 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:56,792 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:56,807 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:56,823 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:56,839 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:56,854 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:56,870 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:56,885 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:56,901 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:22:56,920 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:56,937 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:56,952 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:56,969 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:56,987 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:57,006 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:57,022 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:57,038 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:22:57,055 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:57,072 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:57,088 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:57,105 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:57,122 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:57,139 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 16:22:57,155 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:57,172 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:57,189 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:57,206 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:57,223 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:57,240 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:57,256 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:57,275 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:57,293 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:57,313 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:57,332 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:57,349 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:57,365 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:57,381 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:57,396 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:57,412 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:57,428 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:57,445 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:57,461 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:57,477 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:57,491 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:57,507 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:57,524 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:57,541 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:57,557 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:57,573 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 16:22:57,589 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:22:57,605 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 16:22:57,622 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:22:57,639 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:22:57,654 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:22:57,669 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:22:57,685 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:22:57,702 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:22:57,718 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:22:57,735 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:22:57,751 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:22:57,768 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:22:57,785 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:22:57,802 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:22:57,819 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:22:57,837 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 16:22:57,856 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-07 16:22:57,875 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMasterAssociationùUML96ùdd' HYPERLINK MasterAssociation, UML96 +2024-09-07 16:22:57,891 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùOutstationAssociationùUML97ùdd' HYPERLINK OutstationAssociation, UML97 +2024-09-07 16:22:57,906 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPSecurityNotificationùUML108ùdd' HYPERLINK 60870andDNPSecurityNotification, UML108 +2024-09-07 16:22:57,922 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPNotificationùUML109ùdd' HYPERLINK 60870andDNPNotification, UML109 +2024-09-07 16:22:57,939 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:57,954 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:57,970 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:57,986 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:58,003 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:58,019 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:58,035 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:58,050 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:58,067 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:58,083 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:58,099 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:58,115 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:58,133 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:58,148 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:58,164 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:58,180 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:58,196 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:58,214 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:58,230 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:58,245 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:58,261 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:22:58,278 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:58,293 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:58,308 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:58,324 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:58,339 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:58,355 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:58,373 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:58,393 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:22:58,411 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:58,428 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:58,444 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:58,460 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:58,476 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:58,492 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 16:22:58,508 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:58,523 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:58,537 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:58,550 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:58,563 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:58,581 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:58,594 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:58,606 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:58,619 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:58,633 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:58,648 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:58,664 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:58,679 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:58,693 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:58,708 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:58,721 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:58,746 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:58,760 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:58,773 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:58,787 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:58,800 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:58,816 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:58,832 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:58,849 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:58,864 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:58,880 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:58,894 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:58,908 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:58,922 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-07 16:22:58,936 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:58,949 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:58,962 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:58,975 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:58,988 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:59,000 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:59,014 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:59,027 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:59,040 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:59,054 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 16:22:59,066 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 16:22:59,079 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 16:22:59,093 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 16:22:59,107 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 16:22:59,120 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 16:22:59,133 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 16:22:59,147 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 16:22:59,161 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùProtIdTypeùUML74ùdd' HYPERLINK ProtIdType, UML74 +2024-09-07 16:22:59,175 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 16:22:59,189 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:22:59,202 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 16:22:59,215 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:22:59,229 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 16:22:59,243 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 16:22:59,256 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 16:22:59,269 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 16:22:59,282 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 16:22:59,296 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:59,313 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 16:22:59,329 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùLnkTypeùUML78ùdd' HYPERLINK LnkType, UML78 +2024-09-07 16:22:59,347 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 16:22:59,360 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:59,373 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:59,386 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:59,399 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:59,414 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:59,428 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:59,442 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:59,453 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:59,467 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:59,479 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:59,496 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:59,509 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:59,522 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:59,534 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:59,547 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:59,561 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:59,574 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:59,587 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:59,600 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:59,613 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:59,625 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:22:59,638 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:59,651 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:59,664 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:59,677 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:59,690 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:59,702 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:59,715 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:59,730 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:22:59,745 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:59,762 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:59,777 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:59,790 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:59,802 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:59,815 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 16:22:59,827 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:59,841 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:59,852 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:59,865 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:59,878 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:59,893 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:59,906 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:59,919 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:59,933 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:59,946 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:59,959 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:22:59,977 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:22:59,990 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:23:00,003 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:00,020 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:23:00,038 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:00,051 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:23:00,065 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:00,078 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:23:00,094 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:00,107 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:23:00,120 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:00,133 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:23:00,146 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:00,158 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:23:00,173 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 16:23:00,185 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:00,199 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 16:23:00,211 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:00,224 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:00,237 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:00,249 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:00,263 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:00,277 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:00,291 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:00,306 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:00,318 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:00,332 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:00,346 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:00,360 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:00,374 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:00,388 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 16:23:00,401 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 16:23:00,415 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 16:23:00,428 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 16:23:00,441 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 16:23:00,455 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 16:23:00,467 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 16:23:00,480 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 16:23:00,493 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùProtIdTypeùUML74ùdd' HYPERLINK ProtIdType, UML74 +2024-09-07 16:23:00,506 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 16:23:00,520 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:23:00,532 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 16:23:00,545 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:23:00,557 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 16:23:00,570 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 16:23:00,584 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 16:23:00,597 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 16:23:00,610 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 16:23:00,626 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:00,639 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 16:23:00,651 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùLnkTypeùUML78ùdd' HYPERLINK LnkType, UML78 +2024-09-07 16:23:00,664 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 16:23:00,677 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:00,689 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:23:00,703 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:00,715 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:23:00,728 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:00,741 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:23:00,754 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:00,767 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:23:00,781 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:00,795 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:23:00,810 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:00,827 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:23:00,844 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:00,859 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:23:00,876 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:00,892 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:23:00,906 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:00,920 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:23:00,933 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:00,946 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:23:00,974 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:00,987 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:23:00,999 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:01,011 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:23:01,025 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:01,039 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:23:01,052 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:01,066 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:23:01,079 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:01,094 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:23:01,109 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:01,122 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:23:01,135 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:01,148 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:23:01,189 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 16:23:01,213 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:23:01,226 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:01,241 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:23:01,255 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:01,267 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:23:01,280 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:01,293 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:23:01,307 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:01,320 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:23:01,332 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:01,345 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:23:01,358 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:01,371 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:23:01,384 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:01,396 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:23:01,410 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:01,424 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:23:01,438 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:01,452 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:23:01,464 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:01,477 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:23:01,490 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:01,507 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:23:01,520 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:01,533 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 16:23:01,546 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 16:23:01,559 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:01,572 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 16:23:01,585 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:01,599 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:01,611 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:01,624 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:01,638 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:01,651 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:01,663 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:01,676 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:01,689 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:01,702 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:01,714 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:01,726 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:01,739 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:01,753 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:01,767 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:01,779 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:01,792 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:01,805 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:01,823 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:01,836 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:01,850 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:01,866 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:01,881 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:01,896 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:01,911 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:01,926 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:01,939 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:01,953 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:01,965 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:01,978 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:01,992 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,005 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,019 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,032 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:02,045 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,058 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:02,071 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,084 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:02,096 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,110 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:02,123 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,137 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:02,150 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,162 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:02,175 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,190 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:02,205 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,218 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:02,231 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,244 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:02,257 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,270 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:02,283 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,296 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:02,309 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,321 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:02,335 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,348 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:02,361 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,375 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:02,388 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,401 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:02,413 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,426 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:02,439 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,452 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:02,465 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,477 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:02,490 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,503 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:02,516 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,528 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:02,540 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,553 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:02,567 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,579 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:02,593 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,606 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:02,620 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,633 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:02,646 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,659 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:02,671 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,684 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:02,696 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,710 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,723 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,736 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,749 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,761 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,774 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,787 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,800 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,814 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,826 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,840 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,853 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,868 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,882 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,895 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,909 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,925 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,940 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,956 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,971 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,985 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:02,999 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:03,011 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:03,024 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:03,037 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:03,051 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 16:23:03,063 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 16:23:03,075 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 16:23:03,089 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 16:23:03,102 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùProtIdTypeùUML74ùdd' HYPERLINK ProtIdType, UML74 +2024-09-07 16:23:03,121 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:23:03,135 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:23:03,149 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 16:23:03,161 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 16:23:03,185 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:03,198 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùLnkTypeùUML78ùdd' HYPERLINK LnkType, UML78 +2024-09-07 16:23:03,211 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 16:23:03,225 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:03,238 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 16:23:03,252 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:03,266 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:03,279 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:03,293 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:03,309 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:03,324 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:03,339 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:03,355 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:03,371 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:03,387 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:03,400 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:03,414 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:03,426 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:03,439 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:03,452 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:03,469 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:03,482 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:03,495 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:03,508 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:03,521 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:03,534 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:03,548 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:03,560 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:03,572 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:03,585 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:03,599 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:03,611 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:03,625 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:03,638 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:03,651 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:03,665 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:03,677 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:03,690 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:03,704 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:03,717 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:03,730 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:03,742 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:03,754 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:03,768 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:03,785 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:03,798 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:03,811 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:03,823 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:03,836 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:03,849 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:03,862 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:03,875 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:03,888 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:03,901 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:03,915 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:03,931 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:03,945 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:03,958 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:03,972 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:03,984 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:04,001 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:04,016 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:04,031 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:04,047 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:04,059 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:04,072 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:04,085 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:04,098 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:04,111 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:04,124 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:04,137 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:04,151 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:04,167 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:04,181 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:04,193 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:04,206 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:04,219 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:04,232 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:04,245 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:04,258 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:04,271 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:04,284 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:04,297 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:04,309 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:04,322 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:04,335 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:04,348 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:04,363 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:04,378 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:04,391 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:04,405 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:04,418 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:04,431 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:04,444 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:04,457 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:04,469 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:04,483 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:04,496 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:04,508 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:04,521 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:04,534 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:04,547 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:04,560 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:04,572 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:04,585 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:04,598 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:04,611 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:04,623 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:04,636 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 16:23:04,650 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-07 16:23:04,664 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMasterAssociationùUML101ùdd' HYPERLINK MasterAssociation, UML101 +2024-09-07 16:23:04,677 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùOutstationAssociationùUML102ùdd' HYPERLINK OutstationAssociation, UML102 +2024-09-07 16:23:04,690 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPSecurityNotificationEd2ùUML111ùdd' HYPERLINK 60870andDNPSecurityNotificationEd2, UML111 +2024-09-07 16:23:04,703 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPNotificationEd2ùUML112ùdd' HYPERLINK 60870andDNPNotificationEd2, UML112 +2024-09-07 16:23:04,717 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:04,730 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:04,785 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:04,798 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:04,812 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:04,824 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:04,837 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:04,850 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:04,863 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:04,876 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:04,889 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:04,902 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:04,915 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:04,930 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:04,944 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:04,957 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:04,970 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:04,983 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:04,996 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:05,009 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:05,022 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:05,035 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:05,048 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:05,066 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:05,081 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:05,096 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:05,111 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:05,125 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:05,139 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:05,153 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:05,166 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:05,182 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:05,196 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:05,209 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:05,222 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:05,237 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:05,250 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:05,263 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:05,277 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:05,289 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:05,302 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:05,315 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:05,328 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:05,341 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:05,355 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:05,368 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:05,382 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:05,398 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:05,413 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:05,427 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:05,439 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:05,453 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:05,467 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:05,481 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:05,494 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:05,508 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:05,521 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:05,534 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:05,548 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:05,565 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:05,579 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:05,593 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:05,605 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:05,619 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:05,632 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:05,646 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:05,660 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:05,673 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:05,686 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:05,699 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:05,712 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:05,730 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:05,743 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:05,755 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:05,769 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:05,781 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:05,795 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:05,808 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:05,820 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:05,833 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:05,846 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:05,859 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:05,877 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:05,893 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:05,911 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:05,929 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:05,947 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:05,962 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:05,978 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:05,992 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:06,005 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-07 16:23:06,018 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-07 16:23:06,032 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 16:23:06,045 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 16:23:06,059 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 16:23:06,071 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 16:23:06,085 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 16:23:06,100 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 16:23:06,115 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 16:23:06,129 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 16:23:06,145 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùProtIdTypeùUML74ùdd' HYPERLINK ProtIdType, UML74 +2024-09-07 16:23:06,160 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 16:23:06,177 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:23:06,191 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 16:23:06,206 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:23:06,227 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 16:23:06,248 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 16:23:06,273 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 16:23:06,290 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 16:23:06,308 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 16:23:06,331 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:06,354 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 16:23:06,374 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùLnkTypeùUML78ùdd' HYPERLINK LnkType, UML78 +2024-09-07 16:23:06,389 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 16:23:06,407 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 16:23:06,422 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:06,438 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 16:23:06,453 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:06,470 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:06,487 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:06,517 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:06,532 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:06,547 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:06,560 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:06,573 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:06,585 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:06,599 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:06,611 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:06,628 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:06,641 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:06,653 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:06,666 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:06,681 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:06,694 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:06,708 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:06,720 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:06,733 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:06,746 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:06,759 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:06,772 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:06,785 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:06,798 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:06,811 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:06,824 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:06,837 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:06,850 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:06,862 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:06,875 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:06,888 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:06,901 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:06,914 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:06,928 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:06,944 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:06,957 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:06,971 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:06,984 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:06,999 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:07,012 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:07,025 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:07,038 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:07,051 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:07,064 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:07,077 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:07,090 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:07,104 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:07,116 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:07,129 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:07,141 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:07,160 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:07,174 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:07,188 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:07,201 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:07,216 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:07,231 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:07,245 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:07,259 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:07,276 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:07,290 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:07,304 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:07,316 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:07,329 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:07,342 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:07,355 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:07,367 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:07,381 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:07,394 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:07,407 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:07,419 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:07,432 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:07,445 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:07,459 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:07,473 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:07,486 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:07,498 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:07,511 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:07,524 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:07,542 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:07,556 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:07,569 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:07,581 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:07,594 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:07,607 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:07,620 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:07,633 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:07,646 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:07,660 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:07,674 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:07,688 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:07,703 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:07,715 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:07,741 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:07,754 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:07,770 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:07,784 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:07,799 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:07,812 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:07,826 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:07,840 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:07,854 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:07,866 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:07,880 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 16:23:07,894 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 16:23:07,908 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 16:23:07,922 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 16:23:07,937 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 16:23:07,950 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 16:23:07,964 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 16:23:07,977 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 16:23:07,992 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùProtIdTypeùUML74ùdd' HYPERLINK ProtIdType, UML74 +2024-09-07 16:23:08,005 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 16:23:08,019 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:23:08,032 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 16:23:08,046 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:23:08,059 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 16:23:08,073 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 16:23:08,086 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 16:23:08,099 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 16:23:08,112 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 16:23:08,126 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:08,140 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 16:23:08,153 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùLnkTypeùUML78ùdd' HYPERLINK LnkType, UML78 +2024-09-07 16:23:08,166 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 16:23:08,180 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 16:23:08,194 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:08,209 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 16:23:08,222 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:08,236 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:08,250 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:08,262 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:08,277 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:08,292 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:08,306 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:08,322 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:08,336 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:08,348 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:08,361 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:08,374 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:08,390 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:08,404 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:08,417 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:08,430 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:08,443 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:08,456 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:08,469 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:08,482 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:08,495 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:08,508 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:08,521 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:08,535 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:08,547 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:08,559 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:08,572 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:08,585 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:08,597 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:08,610 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:08,623 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:08,637 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:08,650 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:08,664 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:08,679 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:08,692 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:08,706 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:08,720 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:08,733 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:08,746 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:08,759 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:08,772 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:08,785 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:08,798 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:08,810 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:08,823 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:08,836 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:08,849 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:08,862 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:08,875 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:08,888 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 16:23:08,901 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:08,914 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:08,929 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:08,942 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:08,955 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:08,972 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:08,986 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:08,999 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:09,011 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:09,024 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:09,037 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:09,050 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:09,063 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:09,076 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:09,089 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:09,102 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:09,116 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:09,128 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:09,141 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:09,155 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:09,169 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:09,183 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:09,196 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:09,210 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:09,224 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:09,239 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:09,253 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:09,267 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:09,279 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:09,293 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:09,306 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:09,320 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:09,333 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:09,347 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:09,362 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:09,376 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:09,392 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:09,407 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:09,421 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:09,434 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:09,449 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:09,462 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:09,475 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:09,490 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:09,503 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:09,517 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:09,529 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:09,543 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:09,556 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:09,570 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:09,584 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:09,597 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 16:23:09,611 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 16:23:09,624 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 16:23:09,637 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 16:23:09,651 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:09,665 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 16:23:09,678 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 16:23:09,691 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 16:23:09,705 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 16:23:09,719 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-07 16:23:09,734 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:09,749 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:09,761 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:09,775 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 16:23:09,788 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 16:23:09,802 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 16:23:09,815 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 16:23:09,828 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:09,842 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:09,856 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:09,870 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:09,884 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:09,898 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:09,911 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:09,926 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:09,952 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:09,966 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:09,978 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:09,992 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:10,005 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:10,019 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:10,032 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:10,044 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 16:23:10,058 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:10,070 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:10,084 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:10,097 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-07 16:23:10,109 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSAssociationùUML104ùdd' HYPERLINK MMSAssociation, UML104 +2024-09-07 16:23:10,122 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:10,136 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:23:10,150 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:23:10,163 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSSecurityNotificationùUML115ùdd' HYPERLINK MMSSecurityNotification, UML115 +2024-09-07 16:23:10,176 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 16:23:10,189 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:10,202 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSNotificationùUML116ùdd' HYPERLINK MMSNotification, UML116 +2024-09-07 16:23:10,217 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:10,231 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:10,245 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:10,258 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:10,271 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 16:23:10,285 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:10,303 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 16:23:10,317 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:10,330 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 16:23:10,343 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:10,356 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 16:23:10,370 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:10,384 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 16:23:10,397 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:10,411 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 16:23:10,426 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:10,441 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 16:23:10,456 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:10,470 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 16:23:10,483 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:10,497 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 16:23:10,509 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:10,522 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 16:23:10,535 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:10,549 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 16:23:10,560 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:10,573 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 16:23:10,586 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:10,600 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 16:23:10,614 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 16:23:10,627 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 16:23:10,641 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 16:23:10,655 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 16:23:10,669 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:10,685 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 16:23:10,698 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 16:23:10,712 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 16:23:10,725 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSelectorùUML62ùdd' HYPERLINK Selector, UML62 +2024-09-07 16:23:10,739 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSelectorùUML62ùdd' HYPERLINK Selector, UML62 +2024-09-07 16:23:10,753 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSelectorùUML62ùdd' HYPERLINK Selector, UML62 +2024-09-07 16:23:10,767 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 16:23:10,781 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-07 16:23:10,794 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSecurityProfileTypeùUML76ùdd' HYPERLINK SecurityProfileType, UML76 +2024-09-07 16:23:10,807 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:10,821 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 16:23:10,834 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:10,851 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 16:23:10,867 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:10,880 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 16:23:10,893 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:10,907 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 16:23:10,921 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:10,935 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 16:23:10,951 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:10,965 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 16:23:10,979 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:10,991 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 16:23:11,004 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:11,017 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 16:23:11,031 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:11,046 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 16:23:11,059 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:11,073 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 16:23:11,086 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:11,101 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 16:23:11,115 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:11,128 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 16:23:11,142 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:11,155 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 16:23:11,168 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 16:23:11,182 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:11,197 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 16:23:11,209 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:11,222 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:11,236 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:11,251 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:11,265 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:11,279 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:11,292 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:11,305 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:11,318 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:11,331 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:11,345 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:11,358 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:11,373 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 16:23:11,388 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:11,402 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-07 16:23:11,415 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:11,429 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:11,444 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:11,457 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:11,470 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:11,484 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:11,499 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:11,515 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:11,530 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:11,546 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:23:11,559 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 16:23:11,572 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:11,585 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:23:11,599 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:11,613 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:11,626 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 16:23:11,639 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:11,652 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 16:23:11,665 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:11,678 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 16:23:11,692 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:23:11,707 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 16:23:11,723 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:11,737 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:11,752 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:11,768 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:23:11,782 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 16:23:11,797 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:11,812 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 16:23:11,827 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:11,840 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 16:23:11,855 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:11,869 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 16:23:11,884 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 16:23:11,898 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:11,911 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:11,926 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSVPublisherAssociationIPùUML119ùdd' HYPERLINK SVPublisherAssociationIP, UML119 +2024-09-07 16:23:11,940 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSVPublisherAssociationL2ùUML120ùdd' HYPERLINK SVPublisherAssociationL2, UML120 +2024-09-07 16:23:11,953 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSVNotificationùUML130ùdd' HYPERLINK SVNotification, UML130 +2024-09-07 16:23:11,968 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSVSubcriberAssociationIPùUML124ùdd' HYPERLINK SVSubcriberAssociationIP, UML124 +2024-09-07 16:23:11,982 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSVSubcriberAssociationL2ùUML125ùdd' HYPERLINK SVSubcriberAssociationL2, UML125 +2024-09-07 16:23:11,998 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:12,011 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 16:23:12,024 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:12,037 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 16:23:12,051 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:12,064 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 16:23:12,078 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 16:23:12,091 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 16:23:12,104 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:23:12,117 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 16:23:12,131 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 16:23:12,148 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 16:23:12,162 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:12,177 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 16:23:12,197 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:23:12,210 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 16:23:12,223 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:12,237 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 16:23:12,249 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:12,264 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 16:23:12,278 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:12,290 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 16:23:12,303 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:12,317 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 16:23:12,331 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMacAddressùUML63ùdd' HYPERLINK MacAddress, UML63 +2024-09-07 16:23:12,345 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:23:12,358 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 16:23:12,371 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 16:23:12,385 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 16:23:12,398 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:12,412 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 16:23:12,426 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:23:12,439 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 16:23:12,452 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:12,465 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 16:23:12,481 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:12,494 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 16:23:12,508 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:12,521 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 16:23:12,534 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:12,548 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 16:23:12,563 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 16:23:12,578 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 16:23:12,594 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:23:12,610 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 16:23:12,624 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 16:23:12,638 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 16:23:12,651 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:12,665 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 16:23:12,678 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:12,692 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 16:23:12,705 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:12,719 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 16:23:12,732 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:23:12,745 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 16:23:12,763 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 16:23:12,777 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 16:23:12,791 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:12,804 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 16:23:12,817 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:12,830 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 16:23:12,843 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:12,856 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 16:23:12,870 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMacAddressùUML63ùdd' HYPERLINK MacAddress, UML63 +2024-09-07 16:23:12,883 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:23:12,897 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 16:23:12,911 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 16:23:12,927 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 16:23:12,943 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:12,957 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 16:23:12,970 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:12,983 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 16:23:12,997 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:13,011 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 16:23:13,025 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:23:13,037 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 16:23:13,052 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 16:23:13,065 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 16:23:13,079 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:13,092 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 16:23:13,105 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:13,118 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 16:23:13,132 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:13,146 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 16:23:13,160 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:13,174 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 16:23:13,187 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:13,200 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 16:23:13,213 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:13,226 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 16:23:13,240 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 16:23:13,252 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 16:23:13,266 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 16:23:13,279 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 16:23:13,294 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:13,307 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:13,320 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 16:23:13,332 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:23:13,345 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 16:23:13,358 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:23:13,372 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 16:23:13,385 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 16:23:13,400 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 16:23:13,413 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 16:23:13,427 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 16:23:13,441 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimestampùUML61ùdd' HYPERLINK Timestamp, UML61 +2024-09-07 16:23:13,454 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:23:13,468 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 16:23:13,481 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 16:23:13,495 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 16:23:13,510 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:13,524 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 16:23:13,536 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:13,549 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 16:23:13,563 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:13,577 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 16:23:13,591 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:23:13,603 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 16:23:13,617 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 16:23:13,632 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 16:23:13,647 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:13,661 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 16:23:13,677 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:13,690 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 16:23:13,702 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:13,715 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 16:23:13,729 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 16:23:13,742 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:13,755 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:13,768 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:13,781 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEPublisherAssociationIPùUML121ùdd' HYPERLINK GSEPublisherAssociationIP, UML121 +2024-09-07 16:23:13,794 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEPublisherAssociationL2ùUML122ùdd' HYPERLINK GSEPublisherAssociationL2, UML122 +2024-09-07 16:23:13,812 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSENotificationùUML132ùdd' HYPERLINK GSENotification, UML132 +2024-09-07 16:23:13,825 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubcriberAssociationIPùUML127ùdd' HYPERLINK GSESubcriberAssociationIP, UML127 +2024-09-07 16:23:13,841 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubcriberAssociationL2ùUML128ùdd' HYPERLINK GSESubcriberAssociationL2, UML128 +2024-09-07 16:23:13,858 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:13,872 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 16:23:13,886 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:13,905 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 16:23:13,935 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:13,952 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 16:23:13,968 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 16:23:13,985 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 16:23:14,004 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:23:14,021 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 16:23:14,037 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 16:23:14,054 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 16:23:14,071 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:14,088 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 16:23:14,104 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:23:14,119 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 16:23:14,134 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:14,148 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 16:23:14,162 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:14,176 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 16:23:14,189 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:14,201 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 16:23:14,214 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:14,228 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 16:23:14,241 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMacAddressùUML63ùdd' HYPERLINK MacAddress, UML63 +2024-09-07 16:23:14,260 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMacAddressùUML63ùdd' HYPERLINK MacAddress, UML63 +2024-09-07 16:23:14,273 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:23:14,286 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 16:23:14,298 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 16:23:14,311 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 16:23:14,325 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:14,339 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 16:23:14,352 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:23:14,365 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 16:23:14,377 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:14,390 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 16:23:14,404 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:14,416 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 16:23:14,430 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:14,443 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 16:23:14,456 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:14,475 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 16:23:14,488 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 16:23:14,501 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 16:23:14,514 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 16:23:14,527 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 16:23:14,540 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 16:23:14,553 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 16:23:14,566 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 16:23:14,579 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 16:23:14,591 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 16:23:14,604 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 16:23:14,616 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:14,629 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 16:23:14,642 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:14,655 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 16:23:14,667 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 16:23:14,680 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 16:23:14,693 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:23:14,708 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 16:23:14,723 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 16:23:14,738 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 16:23:14,753 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:23:14,766 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 16:23:14,780 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 16:23:14,793 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 16:23:14,806 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 16:23:14,819 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 16:23:14,833 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 16:23:14,845 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 16:23:14,858 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 16:23:14,871 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 16:23:14,885 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 16:23:14,897 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 16:23:14,910 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimestampùUML61ùdd' HYPERLINK Timestamp, UML61 +2024-09-07 16:23:14,924 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 16:23:14,938 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:23:14,950 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 16:23:14,964 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 16:23:14,976 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 16:23:14,989 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:15,003 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 16:23:15,015 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:15,028 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 16:23:15,041 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:15,055 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 16:23:15,068 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:23:15,081 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 16:23:15,094 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 16:23:15,107 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 16:23:15,120 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:15,132 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 16:23:15,145 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:15,159 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 16:23:15,173 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:15,187 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 16:23:15,199 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMacAddressùUML63ùdd' HYPERLINK MacAddress, UML63 +2024-09-07 16:23:15,213 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMacAddressùUML63ùdd' HYPERLINK MacAddress, UML63 +2024-09-07 16:23:15,226 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 16:23:15,239 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 16:23:15,252 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 16:23:15,264 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 16:23:15,277 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 16:23:15,290 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 16:23:15,303 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 16:23:15,316 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 16:23:15,329 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:15,342 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 16:23:15,356 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:15,369 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 16:23:15,382 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 16:23:15,395 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 16:23:15,408 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:23:15,422 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 16:23:15,435 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 16:23:15,447 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 16:23:15,460 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:23:15,473 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 16:23:15,490 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 16:23:15,503 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 16:23:15,515 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 16:23:15,528 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 16:23:15,542 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 16:23:15,555 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 16:23:15,569 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 16:23:15,581 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 16:23:15,595 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 16:23:15,608 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 16:23:15,621 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimestampùUML61ùdd' HYPERLINK Timestamp, UML61 +2024-09-07 16:23:15,635 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 16:23:15,648 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:23:15,661 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 16:23:15,675 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 16:23:15,688 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 16:23:15,706 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:15,720 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 16:23:15,734 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:15,747 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 16:23:15,760 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 16:23:15,773 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 16:23:15,789 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:23:15,805 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 16:23:15,820 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 16:23:15,835 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 16:23:15,849 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:15,862 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 16:23:15,875 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:15,888 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 16:23:15,902 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:15,913 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 16:23:15,929 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:15,942 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 16:23:15,955 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:15,969 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 16:23:15,981 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:15,993 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 16:23:16,007 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 16:23:16,020 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:23:16,033 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntTypeùUML71ùdd' HYPERLINK IntType, UML71 +2024-09-07 16:23:16,046 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 16:23:16,059 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 16:23:16,072 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 16:23:16,088 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 16:23:16,102 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 16:23:16,116 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 16:23:16,129 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 16:23:16,141 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 16:23:16,154 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 16:23:16,167 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 16:23:16,181 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 16:23:16,193 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 16:23:16,207 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 16:23:16,220 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 16:23:16,233 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 16:23:16,245 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 16:23:16,258 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 16:23:16,272 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 16:23:16,285 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 16:23:16,297 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSEREntryùUML139ùdd' HYPERLINK SEREntry, UML139 +2024-09-07 16:23:16,310 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùETHEntryùUML137ùdd' HYPERLINK ETHEntry, UML137 +2024-09-07 16:23:16,323 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùUSBEntryùUML141ùdd' HYPERLINK USBEntry, UML141 +2024-09-07 16:23:16,337 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùKEYEntryùUML138ùdd' HYPERLINK KEYEntry, UML138 +2024-09-07 16:23:16,351 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùALGEntryùUML140ùdd' HYPERLINK ALGEntry, UML140 +2024-09-07 16:23:16,365 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùNotificationùUML143ùdd' HYPERLINK Notification, UML143 +2024-09-07 16:23:16,377 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 16:23:16,390 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 16:23:16,403 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:23:16,416 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 16:23:16,429 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntTypeùUML71ùdd' HYPERLINK IntType, UML71 +2024-09-07 16:23:16,441 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 16:23:16,454 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 16:23:16,468 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 16:23:16,481 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 16:23:16,494 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 16:23:16,508 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 16:23:16,521 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 16:23:16,535 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 16:23:16,549 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 16:23:16,562 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 16:23:16,575 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 16:23:16,587 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 16:23:16,601 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:23:16,612 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 16:23:16,637 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntTypeùUML71ùdd' HYPERLINK IntType, UML71 +2024-09-07 16:23:16,654 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 16:23:16,671 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 16:23:16,684 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 16:23:16,696 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 16:23:16,709 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 16:23:16,722 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 16:23:16,735 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 16:23:16,748 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 16:23:16,760 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 16:23:16,773 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:16,786 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 16:23:16,798 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 16:23:16,810 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 16:23:16,823 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:23:16,836 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 16:23:16,849 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntTypeùUML71ùdd' HYPERLINK IntType, UML71 +2024-09-07 16:23:16,864 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 16:23:16,879 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 16:23:16,893 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 16:23:16,907 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 16:23:16,922 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 16:23:16,935 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 16:23:16,948 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 16:23:16,960 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 16:23:16,973 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 16:23:16,986 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 16:23:17,000 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 16:23:17,013 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:23:17,026 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 16:23:17,039 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntTypeùUML71ùdd' HYPERLINK IntType, UML71 +2024-09-07 16:23:17,052 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 16:23:17,067 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 16:23:17,081 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 16:23:17,094 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 16:23:17,106 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 16:23:17,120 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 16:23:17,133 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 16:23:17,146 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 16:23:17,159 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 16:23:17,174 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 16:23:17,187 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 16:23:17,201 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 16:23:17,213 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 16:23:17,226 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntTypeùUML71ùdd' HYPERLINK IntType, UML71 +2024-09-07 16:23:17,239 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 16:23:17,253 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 16:23:17,267 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 16:23:17,280 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 16:23:17,293 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 16:23:17,307 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 16:23:17,320 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 16:23:17,333 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 16:23:17,346 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 16:23:17,358 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 16:23:17,373 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 16:23:17,386 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 16:23:17,399 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 16:23:17,412 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 16:23:17,424 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 16:23:17,437 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 16:23:17,450 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 16:23:17,463 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 16:23:17,475 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 16:23:17,488 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimestampùUML61ùdd' HYPERLINK Timestamp, UML61 +2024-09-07 16:23:17,501 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimestampùUML61ùdd' HYPERLINK Timestamp, UML61 +2024-09-07 16:23:17,514 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 16:23:17,527 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùClockEntryùUML134ùdd' HYPERLINK ClockEntry, UML134 +2024-09-07 16:23:17,541 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSecurityNotificationùUML135ùdd' HYPERLINK SecurityNotification, UML135 +2024-09-07 16:23:17,555 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 16:23:17,568 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 16:23:17,582 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimSyncIssueTypeùUML75ùdd' HYPERLINK TimSyncIssueType, UML75 +2024-09-07 16:23:17,595 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 16:23:17,608 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimSyncSrcTypeùUML77ùdd' HYPERLINK TimSyncSrcType, UML77 +2024-09-07 16:23:17,621 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 16:23:17,635 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-07 16:23:17,652 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 16:23:17,666 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 16:23:17,680 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimestampùUML61ùdd' HYPERLINK Timestamp, UML61 +2024-09-07 16:23:17,689 [main] INFO AbstractWordWriter - 2092 hyperlink placeholders found. +2024-09-07 16:23:17,690 [main] INFO Util - time=[0:00:30.144] scanned hyperlink placeholders. +2024-09-07 16:23:17,690 [main] INFO Util - +2024-09-07 16:23:17,691 [main] INFO Util - +2024-09-07 16:23:17,691 [main] INFO Util - ------------------------------------------------ +2024-09-07 16:23:17,691 [main] INFO Util - inserting 2092 hyperlinks (or text only) into hyperlink placeholders +2024-09-07 16:23:17,699 [main] TRACE AbstractWordWriter - replacing hyperlink [100001 - 100023] HYPERLINK TruthValue, UML38... +2024-09-07 16:23:17,713 [main] TRACE AbstractWordWriter - No hyperlink added: 'TruthValue' for bookmark 'UML38' not in this document. +2024-09-07 16:23:17,717 [main] TRACE AbstractWordWriter - replacing hyperlink [100416 - 100439] HYPERLINK DateAndTime, UML27... +2024-09-07 16:23:17,732 [main] TRACE AbstractWordWriter - No hyperlink added: 'DateAndTime' for bookmark 'UML27' not in this document. +2024-09-07 16:23:17,735 [main] TRACE AbstractWordWriter - replacing hyperlink [100586 - 100608] HYPERLINK TruthValue, UML38... +2024-09-07 16:23:17,752 [main] TRACE AbstractWordWriter - No hyperlink added: 'TruthValue' for bookmark 'UML38' not in this document. +2024-09-07 16:23:17,755 [main] TRACE AbstractWordWriter - replacing hyperlink [100962 - 100985] HYPERLINK DateAndTime, UML27... +2024-09-07 16:23:17,770 [main] TRACE AbstractWordWriter - No hyperlink added: 'DateAndTime' for bookmark 'UML27' not in this document. +2024-09-07 16:23:17,774 [main] TRACE AbstractWordWriter - replacing hyperlink [101132 - 101154] HYPERLINK Counter32 , UML26... +2024-09-07 16:23:17,790 [main] TRACE AbstractWordWriter - No hyperlink added: 'Counter32 ' for bookmark 'UML26' not in this document. +2024-09-07 16:23:17,794 [main] TRACE AbstractWordWriter - replacing hyperlink [101496 - 101519] HYPERLINK DateAndTime, UML27... +2024-09-07 16:23:17,808 [main] TRACE AbstractWordWriter - No hyperlink added: 'DateAndTime' for bookmark 'UML27' not in this document. +2024-09-07 16:23:17,812 [main] TRACE AbstractWordWriter - replacing hyperlink [101666 - 101688] HYPERLINK TruthValue, UML38... +2024-09-07 16:23:17,827 [main] TRACE AbstractWordWriter - No hyperlink added: 'TruthValue' for bookmark 'UML38' not in this document. +2024-09-07 16:23:17,830 [main] TRACE AbstractWordWriter - replacing hyperlink [102006 - 102027] HYPERLINK Float32TC, UML29... +2024-09-07 16:23:17,845 [main] TRACE AbstractWordWriter - No hyperlink added: 'Float32TC' for bookmark 'UML29' not in this document. +2024-09-07 16:23:17,848 [main] TRACE AbstractWordWriter - replacing hyperlink [102429 - 102452] HYPERLINK DateAndTime, UML27... +2024-09-07 16:23:17,863 [main] TRACE AbstractWordWriter - No hyperlink added: 'DateAndTime' for bookmark 'UML27' not in this document. +2024-09-07 16:23:17,867 [main] TRACE AbstractWordWriter - replacing hyperlink [102599 - 102620] HYPERLINK Float32TC, UML29... +2024-09-07 16:23:17,882 [main] TRACE AbstractWordWriter - No hyperlink added: 'Float32TC' for bookmark 'UML29' not in this document. +2024-09-07 16:23:17,886 [main] TRACE AbstractWordWriter - replacing hyperlink [103005 - 103027] HYPERLINK Unsigned32, UML36... +2024-09-07 16:23:17,900 [main] TRACE AbstractWordWriter - No hyperlink added: 'Unsigned32' for bookmark 'UML36' not in this document. +2024-09-07 16:23:17,904 [main] TRACE AbstractWordWriter - replacing hyperlink [103307 - 103328] HYPERLINK Integer32, UML35... +2024-09-07 16:23:17,921 [main] TRACE AbstractWordWriter - No hyperlink added: 'Integer32' for bookmark 'UML35' not in this document. +2024-09-07 16:23:17,926 [main] TRACE AbstractWordWriter - replacing hyperlink [103736 - 103759] HYPERLINK DateAndTime, UML27... +2024-09-07 16:23:17,947 [main] TRACE AbstractWordWriter - No hyperlink added: 'DateAndTime' for bookmark 'UML27' not in this document. +2024-09-07 16:23:17,951 [main] TRACE AbstractWordWriter - replacing hyperlink [103906 - 103927] HYPERLINK Integer32, UML35... +2024-09-07 16:23:17,966 [main] TRACE AbstractWordWriter - No hyperlink added: 'Integer32' for bookmark 'UML35' not in this document. +2024-09-07 16:23:17,969 [main] TRACE AbstractWordWriter - replacing hyperlink [104897 - 104920] HYPERLINK InetAddress, UML31... +2024-09-07 16:23:17,984 [main] TRACE AbstractWordWriter - No hyperlink added: 'InetAddress' for bookmark 'UML31' not in this document. +2024-09-07 16:23:17,987 [main] TRACE AbstractWordWriter - replacing hyperlink [105304 - 105331] HYPERLINK InetAddressType, UML33... +2024-09-07 16:23:18,001 [main] TRACE AbstractWordWriter - No hyperlink added: 'InetAddressType' for bookmark 'UML33' not in this document. +2024-09-07 16:23:18,004 [main] TRACE AbstractWordWriter - replacing hyperlink [105848 - 105870] HYPERLINK MacAddress, UML32... +2024-09-07 16:23:18,019 [main] TRACE AbstractWordWriter - No hyperlink added: 'MacAddress' for bookmark 'UML32' not in this document. +2024-09-07 16:23:18,022 [main] TRACE AbstractWordWriter - replacing hyperlink [106350 - 106375] HYPERLINK DisplayString, UML28... +2024-09-07 16:23:18,037 [main] TRACE AbstractWordWriter - No hyperlink added: 'DisplayString' for bookmark 'UML28' not in this document. +2024-09-07 16:23:18,040 [main] TRACE AbstractWordWriter - replacing hyperlink [106702 - 106725] HYPERLINK DateAndTime, UML27... +2024-09-07 16:23:18,055 [main] TRACE AbstractWordWriter - No hyperlink added: 'DateAndTime' for bookmark 'UML27' not in this document. +2024-09-07 16:23:18,059 [main] TRACE AbstractWordWriter - replacing hyperlink [107113 - 107138] HYPERLINK DisplayString, UML28... +2024-09-07 16:23:18,074 [main] TRACE AbstractWordWriter - No hyperlink added: 'DisplayString' for bookmark 'UML28' not in this document. +2024-09-07 16:23:18,077 [main] TRACE AbstractWordWriter - replacing hyperlink [107504 - 107527] HYPERLINK DateAndTime, UML27... +2024-09-07 16:23:18,092 [main] TRACE AbstractWordWriter - No hyperlink added: 'DateAndTime' for bookmark 'UML27' not in this document. +2024-09-07 16:23:18,096 [main] TRACE AbstractWordWriter - replacing hyperlink [107674 - 107699] HYPERLINK DisplayString, UML28... +2024-09-07 16:23:18,110 [main] TRACE AbstractWordWriter - No hyperlink added: 'DisplayString' for bookmark 'UML28' not in this document. +2024-09-07 16:23:18,114 [main] TRACE AbstractWordWriter - replacing hyperlink [115867 - 115890] HYPERLINK DateAndTime, UML27... +2024-09-07 16:23:18,128 [main] TRACE AbstractWordWriter - No hyperlink added: 'DateAndTime' for bookmark 'UML27' not in this document. +2024-09-07 16:23:18,132 [main] TRACE AbstractWordWriter - replacing hyperlink [115902 - 115926] HYPERLINK AppDatStKind, UML41... +2024-09-07 16:23:18,182 [main] TRACE AbstractWordWriter - replacing hyperlink [116271 - 116294] HYPERLINK DateAndTime, UML27... +2024-09-07 16:23:18,196 [main] TRACE AbstractWordWriter - No hyperlink added: 'DateAndTime' for bookmark 'UML27' not in this document. +2024-09-07 16:23:18,200 [main] TRACE AbstractWordWriter - replacing hyperlink [116306 - 116331] HYPERLINK PhyHealthKind, UML42... +2024-09-07 16:23:18,250 [main] TRACE AbstractWordWriter - replacing hyperlink [116664 - 116683] HYPERLINK ExtKind, UML43... +2024-09-07 16:23:18,298 [main] TRACE AbstractWordWriter - replacing hyperlink [117027 - 117046] HYPERLINK IntKind, UML44... +2024-09-07 16:23:18,345 [main] TRACE AbstractWordWriter - replacing hyperlink [117391 - 117414] HYPERLINK DateAndTime, UML27... +2024-09-07 16:23:18,359 [main] TRACE AbstractWordWriter - No hyperlink added: 'DateAndTime' for bookmark 'UML27' not in this document. +2024-09-07 16:23:18,363 [main] TRACE AbstractWordWriter - replacing hyperlink [117426 - 117447] HYPERLINK EventKind, UML48... +2024-09-07 16:23:18,432 [main] TRACE AbstractWordWriter - replacing hyperlink [117792 - 117815] HYPERLINK DateAndTime, UML27... +2024-09-07 16:23:18,453 [main] TRACE AbstractWordWriter - No hyperlink added: 'DateAndTime' for bookmark 'UML27' not in this document. +2024-09-07 16:23:18,457 [main] TRACE AbstractWordWriter - replacing hyperlink [117827 - 117849] HYPERLINK PSPAccKind, UML46... +2024-09-07 16:23:18,526 [main] TRACE AbstractWordWriter - replacing hyperlink [118269 - 118291] HYPERLINK ProtIdKind, UML47... +2024-09-07 16:23:18,574 [main] TRACE AbstractWordWriter - replacing hyperlink [118679 - 118707] HYPERLINK TimSyncIssueKind, UML49... +2024-09-07 16:23:18,623 [main] TRACE AbstractWordWriter - replacing hyperlink [119313 - 119344] HYPERLINK SecurityProfileKind, UML50... +2024-09-07 16:23:18,671 [main] TRACE AbstractWordWriter - replacing hyperlink [119753 - 119779] HYPERLINK TimSyncSrcKind, UML51... +2024-09-07 16:23:18,717 [main] TRACE AbstractWordWriter - replacing hyperlink [120183 - 120202] HYPERLINK LnkKind, UML45... +2024-09-07 16:23:18,765 [main] TRACE AbstractWordWriter - replacing hyperlink [121934 - 121958] HYPERLINK AppDatStType, UML68... +2024-09-07 16:23:18,816 [main] TRACE AbstractWordWriter - replacing hyperlink [122102 - 122119] HYPERLINK CntRs, UML67... +2024-09-07 16:23:18,863 [main] TRACE AbstractWordWriter - replacing hyperlink [122232 - 122253] HYPERLINK EventType, UML72... +2024-09-07 16:23:18,910 [main] TRACE AbstractWordWriter - replacing hyperlink [122348 - 122374] HYPERLINK BooleanValueTs, UML54... +2024-09-07 16:23:18,961 [main] TRACE AbstractWordWriter - replacing hyperlink [122457 - 122483] HYPERLINK BooleanValueTs, UML54... +2024-09-07 16:23:19,013 [main] TRACE AbstractWordWriter - replacing hyperlink [122597 - 122623] HYPERLINK BooleanValueTs, UML54... +2024-09-07 16:23:19,061 [main] TRACE AbstractWordWriter - replacing hyperlink [122739 - 122765] HYPERLINK BooleanValueTs, UML54... +2024-09-07 16:23:19,109 [main] TRACE AbstractWordWriter - replacing hyperlink [122890 - 122911] HYPERLINK PSUPEntry, UML80... +2024-09-07 16:23:19,160 [main] TRACE AbstractWordWriter - replacing hyperlink [122993 - 123012] HYPERLINK Integer, UML53... +2024-09-07 16:23:19,208 [main] TRACE AbstractWordWriter - replacing hyperlink [123143 - 123164] HYPERLINK IntegerTs, UML58... +2024-09-07 16:23:19,255 [main] TRACE AbstractWordWriter - replacing hyperlink [123284 - 123316] HYPERLINK SecurityNotification, UML82... +2024-09-07 16:23:19,305 [main] TRACE AbstractWordWriter - replacing hyperlink [123423 - 123447] HYPERLINK Notification, UML81... +2024-09-07 16:23:19,353 [main] TRACE AbstractWordWriter - replacing hyperlink [123535 - 123561] HYPERLINK BooleanValueTs, UML54... +2024-09-07 16:23:19,405 [main] TRACE AbstractWordWriter - replacing hyperlink [123976 - 123993] HYPERLINK CntRs, UML67... +2024-09-07 16:23:19,449 [main] TRACE AbstractWordWriter - replacing hyperlink [124072 - 124094] HYPERLINK CharString, UML59... +2024-09-07 16:23:19,497 [main] TRACE AbstractWordWriter - replacing hyperlink [124176 - 124199] HYPERLINK EntityIndex, UML66... +2024-09-07 16:23:19,547 [main] TRACE AbstractWordWriter - replacing hyperlink [124272 - 124294] HYPERLINK CharString, UML59... +2024-09-07 16:23:19,595 [main] TRACE AbstractWordWriter - replacing hyperlink [124374 - 124400] HYPERLINK BooleanValueTs, UML54... +2024-09-07 16:23:19,641 [main] TRACE AbstractWordWriter - replacing hyperlink [124501 - 124522] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:19,690 [main] TRACE AbstractWordWriter - replacing hyperlink [124688 - 124714] HYPERLINK BooleanValueTs, UML54... +2024-09-07 16:23:19,737 [main] TRACE AbstractWordWriter - replacing hyperlink [125187 - 125206] HYPERLINK Integer, UML53... +2024-09-07 16:23:19,785 [main] TRACE AbstractWordWriter - replacing hyperlink [125337 - 125358] HYPERLINK IntegerTs, UML58... +2024-09-07 16:23:19,834 [main] TRACE AbstractWordWriter - replacing hyperlink [125837 - 125858] HYPERLINK EventType, UML72... +2024-09-07 16:23:19,882 [main] TRACE AbstractWordWriter - replacing hyperlink [125953 - 125974] HYPERLINK Timestamp, UML61... +2024-09-07 16:23:19,934 [main] TRACE AbstractWordWriter - replacing hyperlink [126052 - 126073] HYPERLINK Timestamp, UML61... +2024-09-07 16:23:19,981 [main] TRACE AbstractWordWriter - replacing hyperlink [126182 - 126203] HYPERLINK Timestamp, UML61... +2024-09-07 16:23:20,027 [main] TRACE AbstractWordWriter - replacing hyperlink [126314 - 126335] HYPERLINK Timestamp, UML61... +2024-09-07 16:23:20,082 [main] TRACE AbstractWordWriter - replacing hyperlink [127324 - 127345] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:20,132 [main] TRACE AbstractWordWriter - replacing hyperlink [127474 - 127491] HYPERLINK CntRs, UML67... +2024-09-07 16:23:20,189 [main] TRACE AbstractWordWriter - replacing hyperlink [127581 - 127602] HYPERLINK IntegerTs, UML58... +2024-09-07 16:23:20,236 [main] TRACE AbstractWordWriter - replacing hyperlink [127692 - 127716] HYPERLINK CharStringTs, UML60... +2024-09-07 16:23:20,283 [main] TRACE AbstractWordWriter - replacing hyperlink [127812 - 127832] HYPERLINK CPUEntry, UML84... +2024-09-07 16:23:20,330 [main] TRACE AbstractWordWriter - replacing hyperlink [127953 - 127975] HYPERLINK FloatingTs, UML57... +2024-09-07 16:23:20,378 [main] TRACE AbstractWordWriter - replacing hyperlink [128137 - 128158] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:20,426 [main] TRACE AbstractWordWriter - replacing hyperlink [128307 - 128329] HYPERLINK CharString, UML59... +2024-09-07 16:23:20,472 [main] TRACE AbstractWordWriter - replacing hyperlink [128438 - 128459] HYPERLINK IntegerTs, UML58... +2024-09-07 16:23:20,523 [main] TRACE AbstractWordWriter - replacing hyperlink [128615 - 128635] HYPERLINK EXTEntry, UML85... +2024-09-07 16:23:20,569 [main] TRACE AbstractWordWriter - replacing hyperlink [128777 - 128801] HYPERLINK CharStringTs, UML60... +2024-09-07 16:23:20,616 [main] TRACE AbstractWordWriter - replacing hyperlink [128934 - 128956] HYPERLINK FloatingTs, UML57... +2024-09-07 16:23:20,665 [main] TRACE AbstractWordWriter - replacing hyperlink [129075 - 129096] HYPERLINK IntegerTs, UML58... +2024-09-07 16:23:20,716 [main] TRACE AbstractWordWriter - replacing hyperlink [129176 - 129197] HYPERLINK EventType, UML72... +2024-09-07 16:23:20,764 [main] TRACE AbstractWordWriter - replacing hyperlink [129297 - 129318] HYPERLINK IntegerTs, UML58... +2024-09-07 16:23:20,814 [main] TRACE AbstractWordWriter - replacing hyperlink [129408 - 129429] HYPERLINK IntegerTs, UML58... +2024-09-07 16:23:20,865 [main] TRACE AbstractWordWriter - replacing hyperlink [129512 - 129534] HYPERLINK CharString, UML59... +2024-09-07 16:23:20,911 [main] TRACE AbstractWordWriter - replacing hyperlink [129660 - 129682] HYPERLINK CharString, UML59... +2024-09-07 16:23:20,965 [main] TRACE AbstractWordWriter - replacing hyperlink [129786 - 129805] HYPERLINK Integer, UML53... +2024-09-07 16:23:21,013 [main] TRACE AbstractWordWriter - replacing hyperlink [129924 - 129946] HYPERLINK FloatingTs, UML57... +2024-09-07 16:23:21,061 [main] TRACE AbstractWordWriter - replacing hyperlink [130097 - 130119] HYPERLINK CharString, UML59... +2024-09-07 16:23:21,109 [main] TRACE AbstractWordWriter - replacing hyperlink [130218 - 130239] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:21,163 [main] TRACE AbstractWordWriter - replacing hyperlink [130361 - 130383] HYPERLINK CharString, UML59... +2024-09-07 16:23:21,212 [main] TRACE AbstractWordWriter - replacing hyperlink [130457 - 130478] HYPERLINK IntegerTs, UML58... +2024-09-07 16:23:21,261 [main] TRACE AbstractWordWriter - replacing hyperlink [130667 - 130689] HYPERLINK FloatingTs, UML57... +2024-09-07 16:23:21,309 [main] TRACE AbstractWordWriter - replacing hyperlink [130842 - 130864] HYPERLINK FloatingTs, UML57... +2024-09-07 16:23:21,357 [main] TRACE AbstractWordWriter - replacing hyperlink [130977 - 131002] HYPERLINK PhyHealthType, UML69... +2024-09-07 16:23:21,403 [main] TRACE AbstractWordWriter - replacing hyperlink [131117 - 131138] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:21,454 [main] TRACE AbstractWordWriter - replacing hyperlink [131270 - 131294] HYPERLINK CharStringTs, UML60... +2024-09-07 16:23:21,503 [main] TRACE AbstractWordWriter - replacing hyperlink [131395 - 131416] HYPERLINK IntegerTs, UML58... +2024-09-07 16:23:21,552 [main] TRACE AbstractWordWriter - replacing hyperlink [131560 - 131581] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:21,601 [main] TRACE AbstractWordWriter - replacing hyperlink [131695 - 131727] HYPERLINK SecurityNotification, UML88... +2024-09-07 16:23:21,647 [main] TRACE AbstractWordWriter - replacing hyperlink [131834 - 131858] HYPERLINK Notification, UML87... +2024-09-07 16:23:21,698 [main] TRACE AbstractWordWriter - replacing hyperlink [131942 - 131964] HYPERLINK STOREEntry, UML86... +2024-09-07 16:23:21,746 [main] TRACE AbstractWordWriter - replacing hyperlink [132098 - 132119] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:21,796 [main] TRACE AbstractWordWriter - replacing hyperlink [132380 - 132401] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:21,843 [main] TRACE AbstractWordWriter - replacing hyperlink [132540 - 132561] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:21,892 [main] TRACE AbstractWordWriter - replacing hyperlink [132913 - 132930] HYPERLINK CntRs, UML67... +2024-09-07 16:23:21,943 [main] TRACE AbstractWordWriter - replacing hyperlink [133009 - 133031] HYPERLINK CharString, UML59... +2024-09-07 16:23:21,991 [main] TRACE AbstractWordWriter - replacing hyperlink [133108 - 133134] HYPERLINK BooleanValueTs, UML54... +2024-09-07 16:23:22,041 [main] TRACE AbstractWordWriter - replacing hyperlink [133207 - 133230] HYPERLINK EntityIndex, UML66... +2024-09-07 16:23:22,090 [main] TRACE AbstractWordWriter - replacing hyperlink [133293 - 133319] HYPERLINK BooleanValueTs, UML54... +2024-09-07 16:23:22,141 [main] TRACE AbstractWordWriter - replacing hyperlink [133416 - 133442] HYPERLINK BooleanValueTs, UML54... +2024-09-07 16:23:22,197 [main] TRACE AbstractWordWriter - replacing hyperlink [133571 - 133593] HYPERLINK FloatingTs, UML57... +2024-09-07 16:23:22,246 [main] TRACE AbstractWordWriter - replacing hyperlink [133671 - 133692] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:22,296 [main] TRACE AbstractWordWriter - replacing hyperlink [134116 - 134139] HYPERLINK EntityIndex, UML66... +2024-09-07 16:23:22,344 [main] TRACE AbstractWordWriter - replacing hyperlink [134206 - 134228] HYPERLINK CharString, UML59... +2024-09-07 16:23:22,391 [main] TRACE AbstractWordWriter - replacing hyperlink [134321 - 134340] HYPERLINK ExtType, UML70... +2024-09-07 16:23:22,439 [main] TRACE AbstractWordWriter - replacing hyperlink [134452 - 134476] HYPERLINK CharStringTs, UML60... +2024-09-07 16:23:22,490 [main] TRACE AbstractWordWriter - replacing hyperlink [134567 - 134593] HYPERLINK BooleanValueTs, UML54... +2024-09-07 16:23:22,540 [main] TRACE AbstractWordWriter - replacing hyperlink [134722 - 134744] HYPERLINK FloatingTs, UML57... +2024-09-07 16:23:22,595 [main] TRACE AbstractWordWriter - replacing hyperlink [134828 - 134849] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:22,645 [main] TRACE AbstractWordWriter - replacing hyperlink [134999 - 135020] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:22,692 [main] TRACE AbstractWordWriter - replacing hyperlink [135126 - 135143] HYPERLINK CntRs, UML67... +2024-09-07 16:23:22,743 [main] TRACE AbstractWordWriter - replacing hyperlink [135498 - 135521] HYPERLINK EntityIndex, UML66... +2024-09-07 16:23:22,792 [main] TRACE AbstractWordWriter - replacing hyperlink [135595 - 135617] HYPERLINK CharString, UML59... +2024-09-07 16:23:22,840 [main] TRACE AbstractWordWriter - replacing hyperlink [135704 - 135724] HYPERLINK Floating, UML56... +2024-09-07 16:23:22,887 [main] TRACE AbstractWordWriter - replacing hyperlink [135810 - 135832] HYPERLINK FloatingTs, UML57... +2024-09-07 16:23:22,938 [main] TRACE AbstractWordWriter - replacing hyperlink [135924 - 135950] HYPERLINK BooleanValueTs, UML54... +2024-09-07 16:23:22,989 [main] TRACE AbstractWordWriter - replacing hyperlink [136041 - 136058] HYPERLINK CntRs, UML67... +2024-09-07 16:23:23,038 [main] TRACE AbstractWordWriter - replacing hyperlink [136473 - 136494] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:23,088 [main] TRACE AbstractWordWriter - replacing hyperlink [136626 - 136648] HYPERLINK FloatingTs, UML57... +2024-09-07 16:23:23,137 [main] TRACE AbstractWordWriter - replacing hyperlink [136763 - 136785] HYPERLINK FloatingTs, UML57... +2024-09-07 16:23:23,188 [main] TRACE AbstractWordWriter - replacing hyperlink [136938 - 136960] HYPERLINK FloatingTs, UML57... +2024-09-07 16:23:23,240 [main] TRACE AbstractWordWriter - replacing hyperlink [137073 - 137098] HYPERLINK PhyHealthType, UML69... +2024-09-07 16:23:23,301 [main] TRACE AbstractWordWriter - replacing hyperlink [137207 - 137228] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:23,352 [main] TRACE AbstractWordWriter - replacing hyperlink [137668 - 137689] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:23,398 [main] TRACE AbstractWordWriter - replacing hyperlink [137821 - 137842] HYPERLINK IntegerTs, UML58... +2024-09-07 16:23:23,449 [main] TRACE AbstractWordWriter - replacing hyperlink [138004 - 138025] HYPERLINK EventType, UML72... +2024-09-07 16:23:23,499 [main] TRACE AbstractWordWriter - replacing hyperlink [138128 - 138149] HYPERLINK IntegerTs, UML58... +2024-09-07 16:23:23,549 [main] TRACE AbstractWordWriter - replacing hyperlink [138339 - 138360] HYPERLINK IntegerTs, UML58... +2024-09-07 16:23:23,597 [main] TRACE AbstractWordWriter - replacing hyperlink [138504 - 138525] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:23,646 [main] TRACE AbstractWordWriter - replacing hyperlink [140317 - 140341] HYPERLINK BooleanValue, UML52... +2024-09-07 16:23:23,700 [main] TRACE AbstractWordWriter - replacing hyperlink [140475 - 140494] HYPERLINK Integer, UML53... +2024-09-07 16:23:23,748 [main] TRACE AbstractWordWriter - replacing hyperlink [140663 - 140683] HYPERLINK Floating, UML56... +2024-09-07 16:23:23,793 [main] TRACE AbstractWordWriter - replacing hyperlink [140853 - 140873] HYPERLINK Floating, UML56... +2024-09-07 16:23:23,841 [main] TRACE AbstractWordWriter - replacing hyperlink [141042 - 141062] HYPERLINK Floating, UML56... +2024-09-07 16:23:23,889 [main] TRACE AbstractWordWriter - replacing hyperlink [141232 - 141252] HYPERLINK Floating, UML56... +2024-09-07 16:23:23,942 [main] TRACE AbstractWordWriter - replacing hyperlink [141414 - 141434] HYPERLINK Floating, UML56... +2024-09-07 16:23:23,993 [main] TRACE AbstractWordWriter - replacing hyperlink [141538 - 141558] HYPERLINK Floating, UML56... +2024-09-07 16:23:24,040 [main] TRACE AbstractWordWriter - replacing hyperlink [142456 - 142477] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:24,088 [main] TRACE AbstractWordWriter - replacing hyperlink [142609 - 142630] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:24,136 [main] TRACE AbstractWordWriter - replacing hyperlink [142739 - 142760] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:24,184 [main] TRACE AbstractWordWriter - replacing hyperlink [142884 - 142905] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:24,234 [main] TRACE AbstractWordWriter - replacing hyperlink [143065 - 143086] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:24,281 [main] TRACE AbstractWordWriter - replacing hyperlink [143259 - 143280] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:24,337 [main] TRACE AbstractWordWriter - replacing hyperlink [143420 - 143441] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:24,387 [main] TRACE AbstractWordWriter - replacing hyperlink [143572 - 143593] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:24,435 [main] TRACE AbstractWordWriter - replacing hyperlink [143723 - 143744] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:24,483 [main] TRACE AbstractWordWriter - replacing hyperlink [143836 - 143857] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:24,531 [main] TRACE AbstractWordWriter - replacing hyperlink [143940 - 143961] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:24,581 [main] TRACE AbstractWordWriter - replacing hyperlink [144078 - 144099] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:24,628 [main] TRACE AbstractWordWriter - replacing hyperlink [144218 - 144239] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:24,679 [main] TRACE AbstractWordWriter - replacing hyperlink [144329 - 144350] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:24,727 [main] TRACE AbstractWordWriter - replacing hyperlink [144450 - 144471] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:24,774 [main] TRACE AbstractWordWriter - replacing hyperlink [144596 - 144617] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:24,822 [main] TRACE AbstractWordWriter - replacing hyperlink [144756 - 144777] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:24,873 [main] TRACE AbstractWordWriter - replacing hyperlink [144902 - 144923] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:24,923 [main] TRACE AbstractWordWriter - replacing hyperlink [145046 - 145067] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:24,970 [main] TRACE AbstractWordWriter - replacing hyperlink [145226 - 145247] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:25,020 [main] TRACE AbstractWordWriter - replacing hyperlink [145392 - 145413] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:25,080 [main] TRACE AbstractWordWriter - replacing hyperlink [145527 - 145548] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:25,131 [main] TRACE AbstractWordWriter - replacing hyperlink [145680 - 145701] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:25,179 [main] TRACE AbstractWordWriter - replacing hyperlink [145843 - 145864] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:25,230 [main] TRACE AbstractWordWriter - replacing hyperlink [146046 - 146067] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:25,278 [main] TRACE AbstractWordWriter - replacing hyperlink [146251 - 146272] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:25,325 [main] TRACE AbstractWordWriter - replacing hyperlink [146414 - 146435] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:25,384 [main] TRACE AbstractWordWriter - replacing hyperlink [146554 - 146575] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:25,437 [main] TRACE AbstractWordWriter - replacing hyperlink [146680 - 146701] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:25,484 [main] TRACE AbstractWordWriter - replacing hyperlink [146851 - 146872] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:25,536 [main] TRACE AbstractWordWriter - replacing hyperlink [146996 - 147017] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:25,586 [main] TRACE AbstractWordWriter - replacing hyperlink [147189 - 147210] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:25,637 [main] TRACE AbstractWordWriter - replacing hyperlink [147359 - 147380] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:25,687 [main] TRACE AbstractWordWriter - replacing hyperlink [147559 - 147580] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:25,737 [main] TRACE AbstractWordWriter - replacing hyperlink [147733 - 147754] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:25,785 [main] TRACE AbstractWordWriter - replacing hyperlink [148296 - 148319] HYPERLINK EntityIndex, UML66... +2024-09-07 16:23:25,833 [main] TRACE AbstractWordWriter - replacing hyperlink [148392 - 148409] HYPERLINK CntRs, UML67... +2024-09-07 16:23:25,883 [main] TRACE AbstractWordWriter - replacing hyperlink [148493 - 148516] HYPERLINK InetAddress, UML65... +2024-09-07 16:23:25,934 [main] TRACE AbstractWordWriter - replacing hyperlink [148593 - 148620] HYPERLINK InetAddressType, UML64... +2024-09-07 16:23:25,983 [main] TRACE AbstractWordWriter - replacing hyperlink [148702 - 148725] HYPERLINK InetAddress, UML65... +2024-09-07 16:23:26,032 [main] TRACE AbstractWordWriter - replacing hyperlink [148803 - 148830] HYPERLINK InetAddressType, UML64... +2024-09-07 16:23:26,083 [main] TRACE AbstractWordWriter - replacing hyperlink [148916 - 148940] HYPERLINK BooleanValue, UML52... +2024-09-07 16:23:26,131 [main] TRACE AbstractWordWriter - replacing hyperlink [148998 - 149028] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:23:26,180 [main] TRACE AbstractWordWriter - replacing hyperlink [149089 - 149108] HYPERLINK Integer, UML53... +2024-09-07 16:23:26,230 [main] TRACE AbstractWordWriter - replacing hyperlink [149161 - 149191] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:23:26,278 [main] TRACE AbstractWordWriter - replacing hyperlink [149247 - 149267] HYPERLINK Floating, UML56... +2024-09-07 16:23:26,325 [main] TRACE AbstractWordWriter - replacing hyperlink [149324 - 149354] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:23:26,374 [main] TRACE AbstractWordWriter - replacing hyperlink [149408 - 149428] HYPERLINK Floating, UML56... +2024-09-07 16:23:26,422 [main] TRACE AbstractWordWriter - replacing hyperlink [149485 - 149515] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:23:26,479 [main] TRACE AbstractWordWriter - replacing hyperlink [149579 - 149599] HYPERLINK Floating, UML56... +2024-09-07 16:23:26,531 [main] TRACE AbstractWordWriter - replacing hyperlink [149656 - 149686] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:23:26,579 [main] TRACE AbstractWordWriter - replacing hyperlink [149747 - 149767] HYPERLINK Floating, UML56... +2024-09-07 16:23:26,626 [main] TRACE AbstractWordWriter - replacing hyperlink [149824 - 149854] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:23:26,673 [main] TRACE AbstractWordWriter - replacing hyperlink [149910 - 149930] HYPERLINK Floating, UML56... +2024-09-07 16:23:26,721 [main] TRACE AbstractWordWriter - replacing hyperlink [149987 - 150017] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:23:26,773 [main] TRACE AbstractWordWriter - replacing hyperlink [150077 - 150097] HYPERLINK Floating, UML56... +2024-09-07 16:23:26,818 [main] TRACE AbstractWordWriter - replacing hyperlink [150154 - 150184] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:23:26,868 [main] TRACE AbstractWordWriter - replacing hyperlink [150243 - 150264] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:26,916 [main] TRACE AbstractWordWriter - replacing hyperlink [150319 - 150352] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:26,965 [main] TRACE AbstractWordWriter - replacing hyperlink [150421 - 150442] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:27,015 [main] TRACE AbstractWordWriter - replacing hyperlink [150497 - 150530] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:27,064 [main] TRACE AbstractWordWriter - replacing hyperlink [150599 - 150620] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:27,115 [main] TRACE AbstractWordWriter - replacing hyperlink [150675 - 150708] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:27,161 [main] TRACE AbstractWordWriter - replacing hyperlink [150770 - 150791] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:27,213 [main] TRACE AbstractWordWriter - replacing hyperlink [150846 - 150879] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:27,262 [main] TRACE AbstractWordWriter - replacing hyperlink [150944 - 150965] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:27,348 [main] TRACE AbstractWordWriter - replacing hyperlink [151020 - 151053] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:27,400 [main] TRACE AbstractWordWriter - replacing hyperlink [151115 - 151136] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:27,447 [main] TRACE AbstractWordWriter - replacing hyperlink [151191 - 151224] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:27,502 [main] TRACE AbstractWordWriter - replacing hyperlink [151295 - 151316] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:27,560 [main] TRACE AbstractWordWriter - replacing hyperlink [151371 - 151404] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:27,610 [main] TRACE AbstractWordWriter - replacing hyperlink [151468 - 151489] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:27,658 [main] TRACE AbstractWordWriter - replacing hyperlink [151544 - 151577] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:27,709 [main] TRACE AbstractWordWriter - replacing hyperlink [151635 - 151656] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:27,762 [main] TRACE AbstractWordWriter - replacing hyperlink [151711 - 151744] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:27,810 [main] TRACE AbstractWordWriter - replacing hyperlink [151803 - 151824] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:27,860 [main] TRACE AbstractWordWriter - replacing hyperlink [151879 - 151912] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:27,912 [main] TRACE AbstractWordWriter - replacing hyperlink [151975 - 151996] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:27,966 [main] TRACE AbstractWordWriter - replacing hyperlink [152051 - 152084] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:28,013 [main] TRACE AbstractWordWriter - replacing hyperlink [152153 - 152174] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:28,065 [main] TRACE AbstractWordWriter - replacing hyperlink [152229 - 152262] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:28,115 [main] TRACE AbstractWordWriter - replacing hyperlink [152325 - 152346] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:28,165 [main] TRACE AbstractWordWriter - replacing hyperlink [152401 - 152434] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:28,213 [main] TRACE AbstractWordWriter - replacing hyperlink [152494 - 152515] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:28,261 [main] TRACE AbstractWordWriter - replacing hyperlink [152570 - 152603] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:28,320 [main] TRACE AbstractWordWriter - replacing hyperlink [152666 - 152687] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:28,371 [main] TRACE AbstractWordWriter - replacing hyperlink [152742 - 152775] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:28,422 [main] TRACE AbstractWordWriter - replacing hyperlink [152842 - 152863] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:28,469 [main] TRACE AbstractWordWriter - replacing hyperlink [152918 - 152951] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:28,518 [main] TRACE AbstractWordWriter - replacing hyperlink [153014 - 153035] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:28,573 [main] TRACE AbstractWordWriter - replacing hyperlink [153090 - 153123] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:28,627 [main] TRACE AbstractWordWriter - replacing hyperlink [153187 - 153208] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:28,678 [main] TRACE AbstractWordWriter - replacing hyperlink [153263 - 153296] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:28,726 [main] TRACE AbstractWordWriter - replacing hyperlink [153355 - 153376] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:28,774 [main] TRACE AbstractWordWriter - replacing hyperlink [153431 - 153464] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:28,825 [main] TRACE AbstractWordWriter - replacing hyperlink [153525 - 153546] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:28,874 [main] TRACE AbstractWordWriter - replacing hyperlink [153601 - 153634] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:28,923 [main] TRACE AbstractWordWriter - replacing hyperlink [153694 - 153715] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:28,975 [main] TRACE AbstractWordWriter - replacing hyperlink [153770 - 153803] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:29,030 [main] TRACE AbstractWordWriter - replacing hyperlink [153868 - 153889] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:29,077 [main] TRACE AbstractWordWriter - replacing hyperlink [153944 - 153977] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:29,130 [main] TRACE AbstractWordWriter - replacing hyperlink [154052 - 154073] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:29,178 [main] TRACE AbstractWordWriter - replacing hyperlink [154128 - 154161] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:29,229 [main] TRACE AbstractWordWriter - replacing hyperlink [154224 - 154245] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:29,279 [main] TRACE AbstractWordWriter - replacing hyperlink [154300 - 154333] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:29,329 [main] TRACE AbstractWordWriter - replacing hyperlink [154396 - 154417] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:29,378 [main] TRACE AbstractWordWriter - replacing hyperlink [154472 - 154505] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:29,425 [main] TRACE AbstractWordWriter - replacing hyperlink [154574 - 154595] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:29,478 [main] TRACE AbstractWordWriter - replacing hyperlink [154650 - 154683] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:29,528 [main] TRACE AbstractWordWriter - replacing hyperlink [154749 - 154770] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:29,576 [main] TRACE AbstractWordWriter - replacing hyperlink [154825 - 154858] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:29,626 [main] TRACE AbstractWordWriter - replacing hyperlink [154920 - 154941] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:29,683 [main] TRACE AbstractWordWriter - replacing hyperlink [154996 - 155029] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:29,731 [main] TRACE AbstractWordWriter - replacing hyperlink [155086 - 155107] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:29,778 [main] TRACE AbstractWordWriter - replacing hyperlink [155162 - 155195] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:29,825 [main] TRACE AbstractWordWriter - replacing hyperlink [155259 - 155280] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:29,876 [main] TRACE AbstractWordWriter - replacing hyperlink [155335 - 155368] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:29,927 [main] TRACE AbstractWordWriter - replacing hyperlink [155432 - 155453] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:29,979 [main] TRACE AbstractWordWriter - replacing hyperlink [155508 - 155541] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:30,029 [main] TRACE AbstractWordWriter - replacing hyperlink [155607 - 155628] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:30,076 [main] TRACE AbstractWordWriter - replacing hyperlink [155683 - 155716] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:30,126 [main] TRACE AbstractWordWriter - replacing hyperlink [155786 - 155807] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:30,177 [main] TRACE AbstractWordWriter - replacing hyperlink [155862 - 155895] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:30,226 [main] TRACE AbstractWordWriter - replacing hyperlink [155958 - 155979] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:30,278 [main] TRACE AbstractWordWriter - replacing hyperlink [156034 - 156067] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:30,327 [main] TRACE AbstractWordWriter - replacing hyperlink [156137 - 156158] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:30,379 [main] TRACE AbstractWordWriter - replacing hyperlink [156213 - 156246] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:30,428 [main] TRACE AbstractWordWriter - replacing hyperlink [156608 - 156625] HYPERLINK CntRs, UML67... +2024-09-07 16:23:30,478 [main] TRACE AbstractWordWriter - replacing hyperlink [156708 - 156729] HYPERLINK EventType, UML72... +2024-09-07 16:23:30,525 [main] TRACE AbstractWordWriter - replacing hyperlink [156845 - 156866] HYPERLINK ServerTLS, UML93... +2024-09-07 16:23:30,573 [main] TRACE AbstractWordWriter - replacing hyperlink [156948 - 156969] HYPERLINK ClientTLS, UML92... +2024-09-07 16:23:30,626 [main] TRACE AbstractWordWriter - replacing hyperlink [157065 - 157114] HYPERLINK IEC62351part3ed2SecurityNotification, UML106... +2024-09-07 16:23:30,676 [main] TRACE AbstractWordWriter - replacing hyperlink [157306 - 157327] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:30,731 [main] TRACE AbstractWordWriter - replacing hyperlink [157382 - 157415] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:30,782 [main] TRACE AbstractWordWriter - replacing hyperlink [157484 - 157505] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:30,831 [main] TRACE AbstractWordWriter - replacing hyperlink [157560 - 157593] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:30,880 [main] TRACE AbstractWordWriter - replacing hyperlink [157662 - 157683] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:30,932 [main] TRACE AbstractWordWriter - replacing hyperlink [157738 - 157771] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:30,983 [main] TRACE AbstractWordWriter - replacing hyperlink [157833 - 157854] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:31,035 [main] TRACE AbstractWordWriter - replacing hyperlink [157909 - 157942] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:31,086 [main] TRACE AbstractWordWriter - replacing hyperlink [158007 - 158028] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:31,137 [main] TRACE AbstractWordWriter - replacing hyperlink [158083 - 158116] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:31,188 [main] TRACE AbstractWordWriter - replacing hyperlink [158178 - 158199] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:31,238 [main] TRACE AbstractWordWriter - replacing hyperlink [158254 - 158287] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:31,287 [main] TRACE AbstractWordWriter - replacing hyperlink [158358 - 158379] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:31,338 [main] TRACE AbstractWordWriter - replacing hyperlink [158434 - 158467] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:31,389 [main] TRACE AbstractWordWriter - replacing hyperlink [158531 - 158552] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:31,440 [main] TRACE AbstractWordWriter - replacing hyperlink [158607 - 158640] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:31,488 [main] TRACE AbstractWordWriter - replacing hyperlink [158698 - 158719] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:31,541 [main] TRACE AbstractWordWriter - replacing hyperlink [158774 - 158807] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:31,594 [main] TRACE AbstractWordWriter - replacing hyperlink [158866 - 158887] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:31,645 [main] TRACE AbstractWordWriter - replacing hyperlink [158942 - 158975] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:31,694 [main] TRACE AbstractWordWriter - replacing hyperlink [159038 - 159059] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:31,744 [main] TRACE AbstractWordWriter - replacing hyperlink [159114 - 159147] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:31,802 [main] TRACE AbstractWordWriter - replacing hyperlink [159216 - 159237] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:31,860 [main] TRACE AbstractWordWriter - replacing hyperlink [159292 - 159325] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:31,910 [main] TRACE AbstractWordWriter - replacing hyperlink [159388 - 159409] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:31,960 [main] TRACE AbstractWordWriter - replacing hyperlink [159464 - 159497] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:32,013 [main] TRACE AbstractWordWriter - replacing hyperlink [159557 - 159578] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:32,065 [main] TRACE AbstractWordWriter - replacing hyperlink [159633 - 159666] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:32,118 [main] TRACE AbstractWordWriter - replacing hyperlink [159729 - 159750] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:32,170 [main] TRACE AbstractWordWriter - replacing hyperlink [159805 - 159838] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:32,220 [main] TRACE AbstractWordWriter - replacing hyperlink [159905 - 159926] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:32,272 [main] TRACE AbstractWordWriter - replacing hyperlink [159981 - 160014] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:32,323 [main] TRACE AbstractWordWriter - replacing hyperlink [160077 - 160098] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:32,375 [main] TRACE AbstractWordWriter - replacing hyperlink [160153 - 160186] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:32,424 [main] TRACE AbstractWordWriter - replacing hyperlink [160250 - 160271] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:32,471 [main] TRACE AbstractWordWriter - replacing hyperlink [160326 - 160359] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:32,557 [main] TRACE AbstractWordWriter - replacing hyperlink [160418 - 160439] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:32,606 [main] TRACE AbstractWordWriter - replacing hyperlink [160494 - 160527] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:32,654 [main] TRACE AbstractWordWriter - replacing hyperlink [160588 - 160609] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:32,704 [main] TRACE AbstractWordWriter - replacing hyperlink [160664 - 160697] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:32,753 [main] TRACE AbstractWordWriter - replacing hyperlink [160757 - 160778] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:32,805 [main] TRACE AbstractWordWriter - replacing hyperlink [160833 - 160866] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:32,860 [main] TRACE AbstractWordWriter - replacing hyperlink [160931 - 160952] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:32,908 [main] TRACE AbstractWordWriter - replacing hyperlink [161007 - 161040] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:32,956 [main] TRACE AbstractWordWriter - replacing hyperlink [161115 - 161136] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:33,008 [main] TRACE AbstractWordWriter - replacing hyperlink [161191 - 161224] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:33,058 [main] TRACE AbstractWordWriter - replacing hyperlink [161287 - 161308] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:33,108 [main] TRACE AbstractWordWriter - replacing hyperlink [161363 - 161396] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:33,159 [main] TRACE AbstractWordWriter - replacing hyperlink [161459 - 161480] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:33,212 [main] TRACE AbstractWordWriter - replacing hyperlink [161535 - 161568] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:33,261 [main] TRACE AbstractWordWriter - replacing hyperlink [161637 - 161658] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:33,312 [main] TRACE AbstractWordWriter - replacing hyperlink [161713 - 161746] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:33,362 [main] TRACE AbstractWordWriter - replacing hyperlink [161812 - 161833] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:33,415 [main] TRACE AbstractWordWriter - replacing hyperlink [161888 - 161921] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:33,464 [main] TRACE AbstractWordWriter - replacing hyperlink [161983 - 162004] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:33,520 [main] TRACE AbstractWordWriter - replacing hyperlink [162059 - 162092] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:33,576 [main] TRACE AbstractWordWriter - replacing hyperlink [162149 - 162170] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:33,629 [main] TRACE AbstractWordWriter - replacing hyperlink [162225 - 162258] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:33,680 [main] TRACE AbstractWordWriter - replacing hyperlink [162322 - 162343] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:33,733 [main] TRACE AbstractWordWriter - replacing hyperlink [162398 - 162431] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:33,785 [main] TRACE AbstractWordWriter - replacing hyperlink [162495 - 162516] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:33,834 [main] TRACE AbstractWordWriter - replacing hyperlink [162571 - 162604] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:33,888 [main] TRACE AbstractWordWriter - replacing hyperlink [162670 - 162691] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:33,940 [main] TRACE AbstractWordWriter - replacing hyperlink [162746 - 162779] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:33,995 [main] TRACE AbstractWordWriter - replacing hyperlink [162849 - 162870] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:34,044 [main] TRACE AbstractWordWriter - replacing hyperlink [162925 - 162958] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:34,098 [main] TRACE AbstractWordWriter - replacing hyperlink [163021 - 163042] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:34,150 [main] TRACE AbstractWordWriter - replacing hyperlink [163097 - 163130] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:34,201 [main] TRACE AbstractWordWriter - replacing hyperlink [163200 - 163221] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:34,250 [main] TRACE AbstractWordWriter - replacing hyperlink [163276 - 163309] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:34,299 [main] TRACE AbstractWordWriter - replacing hyperlink [163800 - 163821] HYPERLINK EventType, UML72... +2024-09-07 16:23:34,349 [main] TRACE AbstractWordWriter - replacing hyperlink [164189 - 164212] HYPERLINK EntityIndex, UML66... +2024-09-07 16:23:34,401 [main] TRACE AbstractWordWriter - replacing hyperlink [164266 - 164288] HYPERLINK TLSSession, UML91... +2024-09-07 16:23:34,448 [main] TRACE AbstractWordWriter - replacing hyperlink [164329 - 164346] HYPERLINK CntRs, UML67... +2024-09-07 16:23:34,498 [main] TRACE AbstractWordWriter - replacing hyperlink [164397 - 164419] HYPERLINK TLSSession, UML91... +2024-09-07 16:23:34,552 [main] TRACE AbstractWordWriter - replacing hyperlink [164465 - 164488] HYPERLINK InetAddress, UML65... +2024-09-07 16:23:34,601 [main] TRACE AbstractWordWriter - replacing hyperlink [164545 - 164567] HYPERLINK TLSSession, UML91... +2024-09-07 16:23:34,649 [main] TRACE AbstractWordWriter - replacing hyperlink [164617 - 164644] HYPERLINK InetAddressType, UML64... +2024-09-07 16:23:34,697 [main] TRACE AbstractWordWriter - replacing hyperlink [164705 - 164727] HYPERLINK TLSSession, UML91... +2024-09-07 16:23:34,747 [main] TRACE AbstractWordWriter - replacing hyperlink [164773 - 164796] HYPERLINK InetAddress, UML65... +2024-09-07 16:23:34,797 [main] TRACE AbstractWordWriter - replacing hyperlink [164853 - 164875] HYPERLINK TLSSession, UML91... +2024-09-07 16:23:34,845 [main] TRACE AbstractWordWriter - replacing hyperlink [164925 - 164952] HYPERLINK InetAddressType, UML64... +2024-09-07 16:23:34,895 [main] TRACE AbstractWordWriter - replacing hyperlink [165013 - 165035] HYPERLINK TLSSession, UML91... +2024-09-07 16:23:34,950 [main] TRACE AbstractWordWriter - replacing hyperlink [165084 - 165108] HYPERLINK BooleanValue, UML52... +2024-09-07 16:23:35,005 [main] TRACE AbstractWordWriter - replacing hyperlink [165166 - 165196] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:23:35,058 [main] TRACE AbstractWordWriter - replacing hyperlink [165257 - 165276] HYPERLINK Integer, UML53... +2024-09-07 16:23:35,108 [main] TRACE AbstractWordWriter - replacing hyperlink [165329 - 165359] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:23:35,159 [main] TRACE AbstractWordWriter - replacing hyperlink [165415 - 165435] HYPERLINK Floating, UML56... +2024-09-07 16:23:35,207 [main] TRACE AbstractWordWriter - replacing hyperlink [165492 - 165522] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:23:35,257 [main] TRACE AbstractWordWriter - replacing hyperlink [165576 - 165596] HYPERLINK Floating, UML56... +2024-09-07 16:23:35,307 [main] TRACE AbstractWordWriter - replacing hyperlink [165653 - 165683] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:23:35,356 [main] TRACE AbstractWordWriter - replacing hyperlink [165747 - 165767] HYPERLINK Floating, UML56... +2024-09-07 16:23:35,404 [main] TRACE AbstractWordWriter - replacing hyperlink [165824 - 165854] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:23:35,456 [main] TRACE AbstractWordWriter - replacing hyperlink [165915 - 165935] HYPERLINK Floating, UML56... +2024-09-07 16:23:35,505 [main] TRACE AbstractWordWriter - replacing hyperlink [165992 - 166022] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:23:35,555 [main] TRACE AbstractWordWriter - replacing hyperlink [166078 - 166098] HYPERLINK Floating, UML56... +2024-09-07 16:23:35,604 [main] TRACE AbstractWordWriter - replacing hyperlink [166155 - 166185] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:23:35,654 [main] TRACE AbstractWordWriter - replacing hyperlink [166245 - 166265] HYPERLINK Floating, UML56... +2024-09-07 16:23:35,705 [main] TRACE AbstractWordWriter - replacing hyperlink [166322 - 166352] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:23:35,753 [main] TRACE AbstractWordWriter - replacing hyperlink [166411 - 166432] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:35,801 [main] TRACE AbstractWordWriter - replacing hyperlink [166487 - 166520] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:35,851 [main] TRACE AbstractWordWriter - replacing hyperlink [166589 - 166610] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:35,901 [main] TRACE AbstractWordWriter - replacing hyperlink [166665 - 166698] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:35,952 [main] TRACE AbstractWordWriter - replacing hyperlink [166767 - 166788] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:36,003 [main] TRACE AbstractWordWriter - replacing hyperlink [166843 - 166876] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:36,060 [main] TRACE AbstractWordWriter - replacing hyperlink [166938 - 166959] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:36,114 [main] TRACE AbstractWordWriter - replacing hyperlink [167014 - 167047] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:36,166 [main] TRACE AbstractWordWriter - replacing hyperlink [167112 - 167133] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:36,216 [main] TRACE AbstractWordWriter - replacing hyperlink [167188 - 167221] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:36,266 [main] TRACE AbstractWordWriter - replacing hyperlink [167283 - 167304] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:36,317 [main] TRACE AbstractWordWriter - replacing hyperlink [167359 - 167392] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:36,368 [main] TRACE AbstractWordWriter - replacing hyperlink [167463 - 167484] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:36,416 [main] TRACE AbstractWordWriter - replacing hyperlink [167539 - 167572] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:36,468 [main] TRACE AbstractWordWriter - replacing hyperlink [167636 - 167657] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:36,520 [main] TRACE AbstractWordWriter - replacing hyperlink [167712 - 167745] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:36,573 [main] TRACE AbstractWordWriter - replacing hyperlink [167803 - 167824] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:36,622 [main] TRACE AbstractWordWriter - replacing hyperlink [167879 - 167912] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:36,671 [main] TRACE AbstractWordWriter - replacing hyperlink [167971 - 167992] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:36,721 [main] TRACE AbstractWordWriter - replacing hyperlink [168047 - 168080] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:36,771 [main] TRACE AbstractWordWriter - replacing hyperlink [168143 - 168164] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:36,820 [main] TRACE AbstractWordWriter - replacing hyperlink [168219 - 168252] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:36,871 [main] TRACE AbstractWordWriter - replacing hyperlink [168321 - 168342] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:36,923 [main] TRACE AbstractWordWriter - replacing hyperlink [168397 - 168430] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:36,971 [main] TRACE AbstractWordWriter - replacing hyperlink [168493 - 168514] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:37,022 [main] TRACE AbstractWordWriter - replacing hyperlink [168569 - 168602] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:37,072 [main] TRACE AbstractWordWriter - replacing hyperlink [168662 - 168683] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:37,130 [main] TRACE AbstractWordWriter - replacing hyperlink [168738 - 168771] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:37,178 [main] TRACE AbstractWordWriter - replacing hyperlink [168834 - 168855] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:37,226 [main] TRACE AbstractWordWriter - replacing hyperlink [168910 - 168943] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:37,275 [main] TRACE AbstractWordWriter - replacing hyperlink [169010 - 169031] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:37,327 [main] TRACE AbstractWordWriter - replacing hyperlink [169086 - 169119] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:37,375 [main] TRACE AbstractWordWriter - replacing hyperlink [169182 - 169203] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:37,427 [main] TRACE AbstractWordWriter - replacing hyperlink [169258 - 169291] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:37,473 [main] TRACE AbstractWordWriter - replacing hyperlink [169355 - 169376] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:37,525 [main] TRACE AbstractWordWriter - replacing hyperlink [169431 - 169464] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:37,575 [main] TRACE AbstractWordWriter - replacing hyperlink [169523 - 169544] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:37,624 [main] TRACE AbstractWordWriter - replacing hyperlink [169599 - 169632] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:37,679 [main] TRACE AbstractWordWriter - replacing hyperlink [169693 - 169714] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:37,759 [main] TRACE AbstractWordWriter - replacing hyperlink [169769 - 169802] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:37,811 [main] TRACE AbstractWordWriter - replacing hyperlink [169862 - 169883] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:37,877 [main] TRACE AbstractWordWriter - replacing hyperlink [169938 - 169971] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:37,929 [main] TRACE AbstractWordWriter - replacing hyperlink [170036 - 170057] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:37,982 [main] TRACE AbstractWordWriter - replacing hyperlink [170112 - 170145] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:38,033 [main] TRACE AbstractWordWriter - replacing hyperlink [170220 - 170241] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:38,083 [main] TRACE AbstractWordWriter - replacing hyperlink [170296 - 170329] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:38,133 [main] TRACE AbstractWordWriter - replacing hyperlink [170392 - 170413] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:38,186 [main] TRACE AbstractWordWriter - replacing hyperlink [170468 - 170501] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:38,242 [main] TRACE AbstractWordWriter - replacing hyperlink [170564 - 170585] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:38,290 [main] TRACE AbstractWordWriter - replacing hyperlink [170640 - 170673] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:38,341 [main] TRACE AbstractWordWriter - replacing hyperlink [170742 - 170763] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:38,390 [main] TRACE AbstractWordWriter - replacing hyperlink [170818 - 170851] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:38,440 [main] TRACE AbstractWordWriter - replacing hyperlink [170917 - 170938] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:38,492 [main] TRACE AbstractWordWriter - replacing hyperlink [170993 - 171026] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:38,540 [main] TRACE AbstractWordWriter - replacing hyperlink [171088 - 171109] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:38,595 [main] TRACE AbstractWordWriter - replacing hyperlink [171164 - 171197] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:38,644 [main] TRACE AbstractWordWriter - replacing hyperlink [171254 - 171275] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:38,694 [main] TRACE AbstractWordWriter - replacing hyperlink [171330 - 171363] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:38,751 [main] TRACE AbstractWordWriter - replacing hyperlink [171427 - 171448] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:38,802 [main] TRACE AbstractWordWriter - replacing hyperlink [171503 - 171536] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:38,857 [main] TRACE AbstractWordWriter - replacing hyperlink [171600 - 171621] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:38,908 [main] TRACE AbstractWordWriter - replacing hyperlink [171676 - 171709] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:38,958 [main] TRACE AbstractWordWriter - replacing hyperlink [171775 - 171796] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:39,010 [main] TRACE AbstractWordWriter - replacing hyperlink [171851 - 171884] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:39,065 [main] TRACE AbstractWordWriter - replacing hyperlink [171954 - 171975] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:39,116 [main] TRACE AbstractWordWriter - replacing hyperlink [172030 - 172063] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:39,167 [main] TRACE AbstractWordWriter - replacing hyperlink [172126 - 172147] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:39,221 [main] TRACE AbstractWordWriter - replacing hyperlink [172202 - 172235] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:39,274 [main] TRACE AbstractWordWriter - replacing hyperlink [172305 - 172326] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:39,323 [main] TRACE AbstractWordWriter - replacing hyperlink [172381 - 172414] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:39,378 [main] TRACE AbstractWordWriter - replacing hyperlink [172747 - 172770] HYPERLINK EntityIndex, UML66... +2024-09-07 16:23:39,427 [main] TRACE AbstractWordWriter - replacing hyperlink [172824 - 172846] HYPERLINK TLSSession, UML91... +2024-09-07 16:23:39,474 [main] TRACE AbstractWordWriter - replacing hyperlink [172887 - 172904] HYPERLINK CntRs, UML67... +2024-09-07 16:23:39,523 [main] TRACE AbstractWordWriter - replacing hyperlink [172955 - 172977] HYPERLINK TLSSession, UML91... +2024-09-07 16:23:39,570 [main] TRACE AbstractWordWriter - replacing hyperlink [173023 - 173046] HYPERLINK InetAddress, UML65... +2024-09-07 16:23:39,824 [main] TRACE AbstractWordWriter - replacing hyperlink [173103 - 173125] HYPERLINK TLSSession, UML91... +2024-09-07 16:23:39,961 [main] TRACE AbstractWordWriter - replacing hyperlink [173175 - 173202] HYPERLINK InetAddressType, UML64... +2024-09-07 16:23:40,067 [main] TRACE AbstractWordWriter - replacing hyperlink [173263 - 173285] HYPERLINK TLSSession, UML91... +2024-09-07 16:23:40,157 [main] TRACE AbstractWordWriter - replacing hyperlink [173331 - 173354] HYPERLINK InetAddress, UML65... +2024-09-07 16:23:40,243 [main] TRACE AbstractWordWriter - replacing hyperlink [173411 - 173433] HYPERLINK TLSSession, UML91... +2024-09-07 16:23:40,315 [main] TRACE AbstractWordWriter - replacing hyperlink [173483 - 173510] HYPERLINK InetAddressType, UML64... +2024-09-07 16:23:40,368 [main] TRACE AbstractWordWriter - replacing hyperlink [173571 - 173593] HYPERLINK TLSSession, UML91... +2024-09-07 16:23:40,422 [main] TRACE AbstractWordWriter - replacing hyperlink [173642 - 173666] HYPERLINK BooleanValue, UML52... +2024-09-07 16:23:40,472 [main] TRACE AbstractWordWriter - replacing hyperlink [173724 - 173754] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:23:40,520 [main] TRACE AbstractWordWriter - replacing hyperlink [173815 - 173834] HYPERLINK Integer, UML53... +2024-09-07 16:23:40,572 [main] TRACE AbstractWordWriter - replacing hyperlink [173887 - 173917] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:23:40,620 [main] TRACE AbstractWordWriter - replacing hyperlink [173973 - 173993] HYPERLINK Floating, UML56... +2024-09-07 16:23:40,670 [main] TRACE AbstractWordWriter - replacing hyperlink [174050 - 174080] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:23:40,717 [main] TRACE AbstractWordWriter - replacing hyperlink [174134 - 174154] HYPERLINK Floating, UML56... +2024-09-07 16:23:40,769 [main] TRACE AbstractWordWriter - replacing hyperlink [174211 - 174241] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:23:40,818 [main] TRACE AbstractWordWriter - replacing hyperlink [174305 - 174325] HYPERLINK Floating, UML56... +2024-09-07 16:23:40,868 [main] TRACE AbstractWordWriter - replacing hyperlink [174382 - 174412] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:23:40,919 [main] TRACE AbstractWordWriter - replacing hyperlink [174473 - 174493] HYPERLINK Floating, UML56... +2024-09-07 16:23:40,972 [main] TRACE AbstractWordWriter - replacing hyperlink [174550 - 174580] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:23:41,023 [main] TRACE AbstractWordWriter - replacing hyperlink [174636 - 174656] HYPERLINK Floating, UML56... +2024-09-07 16:23:41,074 [main] TRACE AbstractWordWriter - replacing hyperlink [174713 - 174743] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:23:41,129 [main] TRACE AbstractWordWriter - replacing hyperlink [174803 - 174823] HYPERLINK Floating, UML56... +2024-09-07 16:23:41,181 [main] TRACE AbstractWordWriter - replacing hyperlink [174880 - 174910] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:23:41,232 [main] TRACE AbstractWordWriter - replacing hyperlink [174969 - 174990] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:41,281 [main] TRACE AbstractWordWriter - replacing hyperlink [175045 - 175078] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:41,331 [main] TRACE AbstractWordWriter - replacing hyperlink [175147 - 175168] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:41,388 [main] TRACE AbstractWordWriter - replacing hyperlink [175223 - 175256] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:41,438 [main] TRACE AbstractWordWriter - replacing hyperlink [175325 - 175346] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:41,491 [main] TRACE AbstractWordWriter - replacing hyperlink [175401 - 175434] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:41,540 [main] TRACE AbstractWordWriter - replacing hyperlink [175496 - 175517] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:41,592 [main] TRACE AbstractWordWriter - replacing hyperlink [175572 - 175605] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:41,642 [main] TRACE AbstractWordWriter - replacing hyperlink [175670 - 175691] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:41,692 [main] TRACE AbstractWordWriter - replacing hyperlink [175746 - 175779] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:41,748 [main] TRACE AbstractWordWriter - replacing hyperlink [175841 - 175862] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:41,803 [main] TRACE AbstractWordWriter - replacing hyperlink [175917 - 175950] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:41,856 [main] TRACE AbstractWordWriter - replacing hyperlink [176021 - 176042] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:41,911 [main] TRACE AbstractWordWriter - replacing hyperlink [176097 - 176130] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:41,961 [main] TRACE AbstractWordWriter - replacing hyperlink [176194 - 176215] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:42,012 [main] TRACE AbstractWordWriter - replacing hyperlink [176270 - 176303] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:42,067 [main] TRACE AbstractWordWriter - replacing hyperlink [176361 - 176382] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:42,115 [main] TRACE AbstractWordWriter - replacing hyperlink [176437 - 176470] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:42,169 [main] TRACE AbstractWordWriter - replacing hyperlink [176529 - 176550] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:42,220 [main] TRACE AbstractWordWriter - replacing hyperlink [176605 - 176638] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:42,270 [main] TRACE AbstractWordWriter - replacing hyperlink [176701 - 176722] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:42,319 [main] TRACE AbstractWordWriter - replacing hyperlink [176777 - 176810] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:42,371 [main] TRACE AbstractWordWriter - replacing hyperlink [176879 - 176900] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:42,428 [main] TRACE AbstractWordWriter - replacing hyperlink [176955 - 176988] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:42,481 [main] TRACE AbstractWordWriter - replacing hyperlink [177051 - 177072] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:42,530 [main] TRACE AbstractWordWriter - replacing hyperlink [177127 - 177160] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:42,582 [main] TRACE AbstractWordWriter - replacing hyperlink [177220 - 177241] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:42,635 [main] TRACE AbstractWordWriter - replacing hyperlink [177296 - 177329] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:42,686 [main] TRACE AbstractWordWriter - replacing hyperlink [177392 - 177413] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:42,738 [main] TRACE AbstractWordWriter - replacing hyperlink [177468 - 177501] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:42,789 [main] TRACE AbstractWordWriter - replacing hyperlink [177568 - 177589] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:42,841 [main] TRACE AbstractWordWriter - replacing hyperlink [177644 - 177677] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:42,891 [main] TRACE AbstractWordWriter - replacing hyperlink [177740 - 177761] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:42,967 [main] TRACE AbstractWordWriter - replacing hyperlink [177816 - 177849] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:43,026 [main] TRACE AbstractWordWriter - replacing hyperlink [177913 - 177934] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:43,078 [main] TRACE AbstractWordWriter - replacing hyperlink [177989 - 178022] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:43,130 [main] TRACE AbstractWordWriter - replacing hyperlink [178081 - 178102] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:43,186 [main] TRACE AbstractWordWriter - replacing hyperlink [178157 - 178190] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:43,237 [main] TRACE AbstractWordWriter - replacing hyperlink [178251 - 178272] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:43,288 [main] TRACE AbstractWordWriter - replacing hyperlink [178327 - 178360] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:43,341 [main] TRACE AbstractWordWriter - replacing hyperlink [178420 - 178441] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:43,392 [main] TRACE AbstractWordWriter - replacing hyperlink [178496 - 178529] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:43,441 [main] TRACE AbstractWordWriter - replacing hyperlink [178594 - 178615] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:43,498 [main] TRACE AbstractWordWriter - replacing hyperlink [178670 - 178703] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:43,547 [main] TRACE AbstractWordWriter - replacing hyperlink [178778 - 178799] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:43,600 [main] TRACE AbstractWordWriter - replacing hyperlink [178854 - 178887] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:43,649 [main] TRACE AbstractWordWriter - replacing hyperlink [178950 - 178971] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:43,698 [main] TRACE AbstractWordWriter - replacing hyperlink [179026 - 179059] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:43,747 [main] TRACE AbstractWordWriter - replacing hyperlink [179122 - 179143] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:43,800 [main] TRACE AbstractWordWriter - replacing hyperlink [179198 - 179231] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:43,852 [main] TRACE AbstractWordWriter - replacing hyperlink [179300 - 179321] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:43,901 [main] TRACE AbstractWordWriter - replacing hyperlink [179376 - 179409] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:43,949 [main] TRACE AbstractWordWriter - replacing hyperlink [179475 - 179496] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:44,004 [main] TRACE AbstractWordWriter - replacing hyperlink [179551 - 179584] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:44,055 [main] TRACE AbstractWordWriter - replacing hyperlink [179646 - 179667] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:44,105 [main] TRACE AbstractWordWriter - replacing hyperlink [179722 - 179755] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:44,157 [main] TRACE AbstractWordWriter - replacing hyperlink [179812 - 179833] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:44,209 [main] TRACE AbstractWordWriter - replacing hyperlink [179888 - 179921] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:44,259 [main] TRACE AbstractWordWriter - replacing hyperlink [179985 - 180006] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:44,308 [main] TRACE AbstractWordWriter - replacing hyperlink [180061 - 180094] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:44,357 [main] TRACE AbstractWordWriter - replacing hyperlink [180158 - 180179] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:44,413 [main] TRACE AbstractWordWriter - replacing hyperlink [180234 - 180267] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:44,465 [main] TRACE AbstractWordWriter - replacing hyperlink [180333 - 180354] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:44,515 [main] TRACE AbstractWordWriter - replacing hyperlink [180409 - 180442] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:44,572 [main] TRACE AbstractWordWriter - replacing hyperlink [180512 - 180533] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:44,625 [main] TRACE AbstractWordWriter - replacing hyperlink [180588 - 180621] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:44,675 [main] TRACE AbstractWordWriter - replacing hyperlink [180684 - 180705] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:44,726 [main] TRACE AbstractWordWriter - replacing hyperlink [180760 - 180793] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:44,776 [main] TRACE AbstractWordWriter - replacing hyperlink [180863 - 180884] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:44,828 [main] TRACE AbstractWordWriter - replacing hyperlink [180939 - 180972] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 16:23:44,878 [main] TRACE AbstractWordWriter - replacing hyperlink [183090 - 183111] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:44,930 [main] TRACE AbstractWordWriter - replacing hyperlink [183219 - 183240] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:44,980 [main] TRACE AbstractWordWriter - replacing hyperlink [183377 - 183398] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:45,033 [main] TRACE AbstractWordWriter - replacing hyperlink [183501 - 183522] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:45,086 [main] TRACE AbstractWordWriter - replacing hyperlink [183648 - 183669] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:45,140 [main] TRACE AbstractWordWriter - replacing hyperlink [183774 - 183795] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:45,190 [main] TRACE AbstractWordWriter - replacing hyperlink [183900 - 183921] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:45,242 [main] TRACE AbstractWordWriter - replacing hyperlink [184026 - 184047] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:45,291 [main] TRACE AbstractWordWriter - replacing hyperlink [184146 - 184167] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:45,339 [main] TRACE AbstractWordWriter - replacing hyperlink [184264 - 184285] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:45,390 [main] TRACE AbstractWordWriter - replacing hyperlink [184410 - 184430] HYPERLINK Floating, UML56... +2024-09-07 16:23:45,441 [main] TRACE AbstractWordWriter - replacing hyperlink [184520 - 184541] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:45,493 [main] TRACE AbstractWordWriter - replacing hyperlink [184656 - 184677] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:45,545 [main] TRACE AbstractWordWriter - replacing hyperlink [184759 - 184780] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:45,597 [main] TRACE AbstractWordWriter - replacing hyperlink [184907 - 184927] HYPERLINK Floating, UML56... +2024-09-07 16:23:45,653 [main] TRACE AbstractWordWriter - replacing hyperlink [185004 - 185025] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:45,704 [main] TRACE AbstractWordWriter - replacing hyperlink [185121 - 185142] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:45,756 [main] TRACE AbstractWordWriter - replacing hyperlink [185318 - 185344] HYPERLINK BooleanValueTs, UML54... +2024-09-07 16:23:45,805 [main] TRACE AbstractWordWriter - replacing hyperlink [185500 - 185521] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:45,856 [main] TRACE AbstractWordWriter - replacing hyperlink [185659 - 185680] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:45,910 [main] TRACE AbstractWordWriter - replacing hyperlink [185774 - 185795] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:45,963 [main] TRACE AbstractWordWriter - replacing hyperlink [185911 - 185932] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:46,014 [main] TRACE AbstractWordWriter - replacing hyperlink [186043 - 186064] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:46,069 [main] TRACE AbstractWordWriter - replacing hyperlink [186179 - 186200] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:46,124 [main] TRACE AbstractWordWriter - replacing hyperlink [186362 - 186383] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:46,174 [main] TRACE AbstractWordWriter - replacing hyperlink [186487 - 186508] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:46,227 [main] TRACE AbstractWordWriter - replacing hyperlink [186626 - 186647] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:46,276 [main] TRACE AbstractWordWriter - replacing hyperlink [186735 - 186756] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:46,326 [main] TRACE AbstractWordWriter - replacing hyperlink [186874 - 186895] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:46,384 [main] TRACE AbstractWordWriter - replacing hyperlink [187055 - 187076] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:46,438 [main] TRACE AbstractWordWriter - replacing hyperlink [187637 - 187660] HYPERLINK EntityIndex, UML66... +2024-09-07 16:23:46,495 [main] TRACE AbstractWordWriter - replacing hyperlink [187733 - 187750] HYPERLINK CntRs, UML67... +2024-09-07 16:23:46,544 [main] TRACE AbstractWordWriter - replacing hyperlink [187834 - 187857] HYPERLINK InetAddress, UML65... +2024-09-07 16:23:46,596 [main] TRACE AbstractWordWriter - replacing hyperlink [187934 - 187961] HYPERLINK InetAddressType, UML64... +2024-09-07 16:23:46,649 [main] TRACE AbstractWordWriter - replacing hyperlink [188039 - 188061] HYPERLINK ProtIdType, UML74... +2024-09-07 16:23:46,709 [main] TRACE AbstractWordWriter - replacing hyperlink [188140 - 188162] HYPERLINK CharString, UML59... +2024-09-07 16:23:46,763 [main] TRACE AbstractWordWriter - replacing hyperlink [188273 - 188295] HYPERLINK CharString, UML59... +2024-09-07 16:23:46,816 [main] TRACE AbstractWordWriter - replacing hyperlink [188428 - 188451] HYPERLINK InetAddress, UML65... +2024-09-07 16:23:46,865 [main] TRACE AbstractWordWriter - replacing hyperlink [188529 - 188556] HYPERLINK InetAddressType, UML64... +2024-09-07 16:23:46,919 [main] TRACE AbstractWordWriter - replacing hyperlink [188639 - 188660] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:46,971 [main] TRACE AbstractWordWriter - replacing hyperlink [188756 - 188775] HYPERLINK LnkType, UML78... +2024-09-07 16:23:47,025 [main] TRACE AbstractWordWriter - replacing hyperlink [188864 - 188885] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:47,077 [main] TRACE AbstractWordWriter - replacing hyperlink [188940 - 188975] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:47,128 [main] TRACE AbstractWordWriter - replacing hyperlink [189039 - 189060] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:47,177 [main] TRACE AbstractWordWriter - replacing hyperlink [189115 - 189150] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:47,233 [main] TRACE AbstractWordWriter - replacing hyperlink [189213 - 189234] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:47,287 [main] TRACE AbstractWordWriter - replacing hyperlink [189289 - 189324] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:47,336 [main] TRACE AbstractWordWriter - replacing hyperlink [189380 - 189401] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:47,385 [main] TRACE AbstractWordWriter - replacing hyperlink [189456 - 189491] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:47,440 [main] TRACE AbstractWordWriter - replacing hyperlink [189547 - 189568] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:47,493 [main] TRACE AbstractWordWriter - replacing hyperlink [189623 - 189658] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:47,546 [main] TRACE AbstractWordWriter - replacing hyperlink [189714 - 189735] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:47,597 [main] TRACE AbstractWordWriter - replacing hyperlink [189790 - 189825] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:47,649 [main] TRACE AbstractWordWriter - replacing hyperlink [189881 - 189902] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:47,699 [main] TRACE AbstractWordWriter - replacing hyperlink [189957 - 189992] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:47,756 [main] TRACE AbstractWordWriter - replacing hyperlink [190047 - 190068] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:47,808 [main] TRACE AbstractWordWriter - replacing hyperlink [190123 - 190158] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:47,858 [main] TRACE AbstractWordWriter - replacing hyperlink [190215 - 190236] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:47,908 [main] TRACE AbstractWordWriter - replacing hyperlink [190291 - 190326] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:47,960 [main] TRACE AbstractWordWriter - replacing hyperlink [190382 - 190403] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:48,012 [main] TRACE AbstractWordWriter - replacing hyperlink [190458 - 190493] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:48,067 [main] TRACE AbstractWordWriter - replacing hyperlink [190554 - 190574] HYPERLINK Floating, UML56... +2024-09-07 16:23:48,119 [main] TRACE AbstractWordWriter - replacing hyperlink [190628 - 190663] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:48,170 [main] TRACE AbstractWordWriter - replacing hyperlink [190721 - 190742] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:48,223 [main] TRACE AbstractWordWriter - replacing hyperlink [190797 - 190832] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:48,273 [main] TRACE AbstractWordWriter - replacing hyperlink [190887 - 190908] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:48,326 [main] TRACE AbstractWordWriter - replacing hyperlink [190963 - 190998] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:48,379 [main] TRACE AbstractWordWriter - replacing hyperlink [191052 - 191073] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:48,433 [main] TRACE AbstractWordWriter - replacing hyperlink [191128 - 191163] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:48,487 [main] TRACE AbstractWordWriter - replacing hyperlink [191218 - 191238] HYPERLINK Floating, UML56... +2024-09-07 16:23:48,536 [main] TRACE AbstractWordWriter - replacing hyperlink [191292 - 191327] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:48,589 [main] TRACE AbstractWordWriter - replacing hyperlink [191387 - 191408] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:48,640 [main] TRACE AbstractWordWriter - replacing hyperlink [191463 - 191498] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:48,693 [main] TRACE AbstractWordWriter - replacing hyperlink [191557 - 191578] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:48,744 [main] TRACE AbstractWordWriter - replacing hyperlink [191633 - 191668] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:48,796 [main] TRACE AbstractWordWriter - replacing hyperlink [191733 - 191759] HYPERLINK BooleanValueTs, UML54... +2024-09-07 16:23:48,856 [main] TRACE AbstractWordWriter - replacing hyperlink [191819 - 191854] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:48,912 [main] TRACE AbstractWordWriter - replacing hyperlink [191914 - 191935] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:48,966 [main] TRACE AbstractWordWriter - replacing hyperlink [191990 - 192025] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:49,022 [main] TRACE AbstractWordWriter - replacing hyperlink [192080 - 192101] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:49,077 [main] TRACE AbstractWordWriter - replacing hyperlink [192156 - 192191] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:49,128 [main] TRACE AbstractWordWriter - replacing hyperlink [192250 - 192271] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:49,181 [main] TRACE AbstractWordWriter - replacing hyperlink [192326 - 192361] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:49,235 [main] TRACE AbstractWordWriter - replacing hyperlink [192415 - 192436] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:49,289 [main] TRACE AbstractWordWriter - replacing hyperlink [192491 - 192526] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:49,343 [main] TRACE AbstractWordWriter - replacing hyperlink [192589 - 192610] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:49,396 [main] TRACE AbstractWordWriter - replacing hyperlink [192665 - 192700] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:49,455 [main] TRACE AbstractWordWriter - replacing hyperlink [192765 - 192786] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:49,510 [main] TRACE AbstractWordWriter - replacing hyperlink [192841 - 192876] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:49,563 [main] TRACE AbstractWordWriter - replacing hyperlink [192939 - 192960] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:49,617 [main] TRACE AbstractWordWriter - replacing hyperlink [193015 - 193050] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:49,671 [main] TRACE AbstractWordWriter - replacing hyperlink [193109 - 193130] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:49,719 [main] TRACE AbstractWordWriter - replacing hyperlink [193185 - 193220] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:49,769 [main] TRACE AbstractWordWriter - replacing hyperlink [193274 - 193295] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:49,822 [main] TRACE AbstractWordWriter - replacing hyperlink [193350 - 193385] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:49,876 [main] TRACE AbstractWordWriter - replacing hyperlink [193448 - 193469] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:49,929 [main] TRACE AbstractWordWriter - replacing hyperlink [193524 - 193559] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:49,985 [main] TRACE AbstractWordWriter - replacing hyperlink [193624 - 193645] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:50,039 [main] TRACE AbstractWordWriter - replacing hyperlink [193700 - 193735] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:50,094 [main] TRACE AbstractWordWriter - replacing hyperlink [193796 - 193817] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:50,146 [main] TRACE AbstractWordWriter - replacing hyperlink [193872 - 193907] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:50,196 [main] TRACE AbstractWordWriter - replacing hyperlink [193969 - 193993] HYPERLINK BooleanValue, UML52... +2024-09-07 16:23:50,248 [main] TRACE AbstractWordWriter - replacing hyperlink [194051 - 194081] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:23:50,300 [main] TRACE AbstractWordWriter - replacing hyperlink [194142 - 194161] HYPERLINK Integer, UML53... +2024-09-07 16:23:50,352 [main] TRACE AbstractWordWriter - replacing hyperlink [194214 - 194244] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:23:50,404 [main] TRACE AbstractWordWriter - replacing hyperlink [194300 - 194320] HYPERLINK Floating, UML56... +2024-09-07 16:23:50,458 [main] TRACE AbstractWordWriter - replacing hyperlink [194377 - 194407] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:23:50,510 [main] TRACE AbstractWordWriter - replacing hyperlink [194461 - 194481] HYPERLINK Floating, UML56... +2024-09-07 16:23:50,563 [main] TRACE AbstractWordWriter - replacing hyperlink [194538 - 194568] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:23:50,614 [main] TRACE AbstractWordWriter - replacing hyperlink [194632 - 194652] HYPERLINK Floating, UML56... +2024-09-07 16:23:50,666 [main] TRACE AbstractWordWriter - replacing hyperlink [194709 - 194739] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:23:50,716 [main] TRACE AbstractWordWriter - replacing hyperlink [194800 - 194820] HYPERLINK Floating, UML56... +2024-09-07 16:23:50,770 [main] TRACE AbstractWordWriter - replacing hyperlink [194877 - 194907] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:23:50,823 [main] TRACE AbstractWordWriter - replacing hyperlink [194963 - 194983] HYPERLINK Floating, UML56... +2024-09-07 16:23:50,876 [main] TRACE AbstractWordWriter - replacing hyperlink [195040 - 195070] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:23:50,935 [main] TRACE AbstractWordWriter - replacing hyperlink [195130 - 195150] HYPERLINK Floating, UML56... +2024-09-07 16:23:50,993 [main] TRACE AbstractWordWriter - replacing hyperlink [195207 - 195237] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:23:51,042 [main] TRACE AbstractWordWriter - replacing hyperlink [195656 - 195673] HYPERLINK CntRs, UML67... +2024-09-07 16:23:51,094 [main] TRACE AbstractWordWriter - replacing hyperlink [195756 - 195777] HYPERLINK EventType, UML72... +2024-09-07 16:23:51,149 [main] TRACE AbstractWordWriter - replacing hyperlink [195893 - 195922] HYPERLINK MasterAssociation, UML96... +2024-09-07 16:23:51,201 [main] TRACE AbstractWordWriter - replacing hyperlink [196020 - 196053] HYPERLINK OutstationAssociation, UML97... +2024-09-07 16:23:51,256 [main] TRACE AbstractWordWriter - replacing hyperlink [196165 - 196209] HYPERLINK 60870andDNPSecurityNotification, UML108... +2024-09-07 16:23:51,306 [main] TRACE AbstractWordWriter - replacing hyperlink [196326 - 196362] HYPERLINK 60870andDNPNotification, UML109... +2024-09-07 16:23:51,360 [main] TRACE AbstractWordWriter - replacing hyperlink [196462 - 196483] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:51,411 [main] TRACE AbstractWordWriter - replacing hyperlink [196538 - 196573] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:51,463 [main] TRACE AbstractWordWriter - replacing hyperlink [196637 - 196658] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:51,514 [main] TRACE AbstractWordWriter - replacing hyperlink [196713 - 196748] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:51,567 [main] TRACE AbstractWordWriter - replacing hyperlink [196811 - 196832] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:51,620 [main] TRACE AbstractWordWriter - replacing hyperlink [196887 - 196922] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:51,670 [main] TRACE AbstractWordWriter - replacing hyperlink [196978 - 196999] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:51,721 [main] TRACE AbstractWordWriter - replacing hyperlink [197054 - 197089] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:51,775 [main] TRACE AbstractWordWriter - replacing hyperlink [197145 - 197166] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:51,827 [main] TRACE AbstractWordWriter - replacing hyperlink [197221 - 197256] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:51,882 [main] TRACE AbstractWordWriter - replacing hyperlink [197312 - 197333] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:51,934 [main] TRACE AbstractWordWriter - replacing hyperlink [197388 - 197423] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:51,994 [main] TRACE AbstractWordWriter - replacing hyperlink [197479 - 197500] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:52,060 [main] TRACE AbstractWordWriter - replacing hyperlink [197555 - 197590] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:52,112 [main] TRACE AbstractWordWriter - replacing hyperlink [197645 - 197666] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:52,165 [main] TRACE AbstractWordWriter - replacing hyperlink [197721 - 197756] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:52,218 [main] TRACE AbstractWordWriter - replacing hyperlink [197813 - 197834] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:52,271 [main] TRACE AbstractWordWriter - replacing hyperlink [197889 - 197924] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:52,322 [main] TRACE AbstractWordWriter - replacing hyperlink [197980 - 198001] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:52,376 [main] TRACE AbstractWordWriter - replacing hyperlink [198056 - 198091] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:52,430 [main] TRACE AbstractWordWriter - replacing hyperlink [198152 - 198172] HYPERLINK Floating, UML56... +2024-09-07 16:23:52,485 [main] TRACE AbstractWordWriter - replacing hyperlink [198226 - 198261] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:52,538 [main] TRACE AbstractWordWriter - replacing hyperlink [198319 - 198340] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:52,593 [main] TRACE AbstractWordWriter - replacing hyperlink [198395 - 198430] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:52,647 [main] TRACE AbstractWordWriter - replacing hyperlink [198485 - 198506] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:52,701 [main] TRACE AbstractWordWriter - replacing hyperlink [198561 - 198596] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:52,753 [main] TRACE AbstractWordWriter - replacing hyperlink [198650 - 198671] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:52,806 [main] TRACE AbstractWordWriter - replacing hyperlink [198726 - 198761] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:52,858 [main] TRACE AbstractWordWriter - replacing hyperlink [198816 - 198836] HYPERLINK Floating, UML56... +2024-09-07 16:23:52,909 [main] TRACE AbstractWordWriter - replacing hyperlink [198890 - 198925] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:52,990 [main] TRACE AbstractWordWriter - replacing hyperlink [198985 - 199006] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:53,044 [main] TRACE AbstractWordWriter - replacing hyperlink [199061 - 199096] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:53,114 [main] TRACE AbstractWordWriter - replacing hyperlink [199155 - 199176] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:53,166 [main] TRACE AbstractWordWriter - replacing hyperlink [199231 - 199266] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:53,220 [main] TRACE AbstractWordWriter - replacing hyperlink [199331 - 199357] HYPERLINK BooleanValueTs, UML54... +2024-09-07 16:23:53,274 [main] TRACE AbstractWordWriter - replacing hyperlink [199417 - 199452] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:53,328 [main] TRACE AbstractWordWriter - replacing hyperlink [199512 - 199533] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:53,386 [main] TRACE AbstractWordWriter - replacing hyperlink [199588 - 199623] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:53,441 [main] TRACE AbstractWordWriter - replacing hyperlink [199678 - 199699] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:53,493 [main] TRACE AbstractWordWriter - replacing hyperlink [199754 - 199789] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:53,545 [main] TRACE AbstractWordWriter - replacing hyperlink [199848 - 199869] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:53,602 [main] TRACE AbstractWordWriter - replacing hyperlink [199924 - 199959] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:53,655 [main] TRACE AbstractWordWriter - replacing hyperlink [200013 - 200034] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:53,709 [main] TRACE AbstractWordWriter - replacing hyperlink [200089 - 200124] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:53,762 [main] TRACE AbstractWordWriter - replacing hyperlink [200187 - 200208] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:53,816 [main] TRACE AbstractWordWriter - replacing hyperlink [200263 - 200298] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:53,868 [main] TRACE AbstractWordWriter - replacing hyperlink [200363 - 200384] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:53,922 [main] TRACE AbstractWordWriter - replacing hyperlink [200439 - 200474] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:53,972 [main] TRACE AbstractWordWriter - replacing hyperlink [200537 - 200558] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:54,024 [main] TRACE AbstractWordWriter - replacing hyperlink [200613 - 200648] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:54,079 [main] TRACE AbstractWordWriter - replacing hyperlink [200707 - 200728] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:54,143 [main] TRACE AbstractWordWriter - replacing hyperlink [200783 - 200818] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:54,201 [main] TRACE AbstractWordWriter - replacing hyperlink [200872 - 200893] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:54,252 [main] TRACE AbstractWordWriter - replacing hyperlink [200948 - 200983] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:54,310 [main] TRACE AbstractWordWriter - replacing hyperlink [201046 - 201067] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:54,406 [main] TRACE AbstractWordWriter - replacing hyperlink [201122 - 201157] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:54,456 [main] TRACE AbstractWordWriter - replacing hyperlink [201222 - 201243] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:54,510 [main] TRACE AbstractWordWriter - replacing hyperlink [201298 - 201333] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:54,565 [main] TRACE AbstractWordWriter - replacing hyperlink [201394 - 201415] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:54,620 [main] TRACE AbstractWordWriter - replacing hyperlink [201470 - 201505] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:54,675 [main] TRACE AbstractWordWriter - replacing hyperlink [201990 - 202011] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:54,731 [main] TRACE AbstractWordWriter - replacing hyperlink [202119 - 202140] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:54,782 [main] TRACE AbstractWordWriter - replacing hyperlink [202277 - 202298] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:54,837 [main] TRACE AbstractWordWriter - replacing hyperlink [202403 - 202424] HYPERLINK EventType, UML72... +2024-09-07 16:23:54,890 [main] TRACE AbstractWordWriter - replacing hyperlink [202544 - 202565] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:54,944 [main] TRACE AbstractWordWriter - replacing hyperlink [202736 - 202757] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:54,997 [main] TRACE AbstractWordWriter - replacing hyperlink [202903 - 202924] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:55,050 [main] TRACE AbstractWordWriter - replacing hyperlink [203030 - 203051] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:55,103 [main] TRACE AbstractWordWriter - replacing hyperlink [203544 - 203565] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:55,156 [main] TRACE AbstractWordWriter - replacing hyperlink [203662 - 203683] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:55,209 [main] TRACE AbstractWordWriter - replacing hyperlink [203801 - 203822] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:55,267 [main] TRACE AbstractWordWriter - replacing hyperlink [203948 - 203969] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:55,322 [main] TRACE AbstractWordWriter - replacing hyperlink [204045 - 204066] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:55,390 [main] TRACE AbstractWordWriter - replacing hyperlink [204465 - 204488] HYPERLINK EntityIndex, UML66... +2024-09-07 16:23:55,459 [main] TRACE AbstractWordWriter - replacing hyperlink [204542 - 204565] HYPERLINK Association, UML95... +2024-09-07 16:23:55,522 [main] TRACE AbstractWordWriter - replacing hyperlink [204607 - 204624] HYPERLINK CntRs, UML67... +2024-09-07 16:23:55,573 [main] TRACE AbstractWordWriter - replacing hyperlink [204675 - 204698] HYPERLINK Association, UML95... +2024-09-07 16:23:55,628 [main] TRACE AbstractWordWriter - replacing hyperlink [204745 - 204768] HYPERLINK InetAddress, UML65... +2024-09-07 16:23:55,682 [main] TRACE AbstractWordWriter - replacing hyperlink [204825 - 204848] HYPERLINK Association, UML95... +2024-09-07 16:23:55,735 [main] TRACE AbstractWordWriter - replacing hyperlink [204899 - 204926] HYPERLINK InetAddressType, UML64... +2024-09-07 16:23:55,786 [main] TRACE AbstractWordWriter - replacing hyperlink [204987 - 205010] HYPERLINK Association, UML95... +2024-09-07 16:23:55,837 [main] TRACE AbstractWordWriter - replacing hyperlink [205053 - 205075] HYPERLINK ProtIdType, UML74... +2024-09-07 16:23:55,889 [main] TRACE AbstractWordWriter - replacing hyperlink [205131 - 205154] HYPERLINK Association, UML95... +2024-09-07 16:23:55,942 [main] TRACE AbstractWordWriter - replacing hyperlink [205203 - 205225] HYPERLINK CharString, UML59... +2024-09-07 16:23:55,995 [main] TRACE AbstractWordWriter - replacing hyperlink [205281 - 205304] HYPERLINK Association, UML95... +2024-09-07 16:23:56,052 [main] TRACE AbstractWordWriter - replacing hyperlink [205353 - 205375] HYPERLINK CharString, UML59... +2024-09-07 16:23:56,110 [main] TRACE AbstractWordWriter - replacing hyperlink [205431 - 205454] HYPERLINK Association, UML95... +2024-09-07 16:23:56,164 [main] TRACE AbstractWordWriter - replacing hyperlink [205501 - 205524] HYPERLINK InetAddress, UML65... +2024-09-07 16:23:56,216 [main] TRACE AbstractWordWriter - replacing hyperlink [205581 - 205604] HYPERLINK Association, UML95... +2024-09-07 16:23:56,273 [main] TRACE AbstractWordWriter - replacing hyperlink [205655 - 205682] HYPERLINK InetAddressType, UML64... +2024-09-07 16:23:56,330 [main] TRACE AbstractWordWriter - replacing hyperlink [205743 - 205766] HYPERLINK Association, UML95... +2024-09-07 16:23:56,385 [main] TRACE AbstractWordWriter - replacing hyperlink [205813 - 205834] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:56,437 [main] TRACE AbstractWordWriter - replacing hyperlink [205887 - 205910] HYPERLINK Association, UML95... +2024-09-07 16:23:56,489 [main] TRACE AbstractWordWriter - replacing hyperlink [205954 - 205973] HYPERLINK LnkType, UML78... +2024-09-07 16:23:56,541 [main] TRACE AbstractWordWriter - replacing hyperlink [206026 - 206049] HYPERLINK Association, UML95... +2024-09-07 16:23:56,593 [main] TRACE AbstractWordWriter - replacing hyperlink [206097 - 206118] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:56,646 [main] TRACE AbstractWordWriter - replacing hyperlink [206173 - 206208] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:56,696 [main] TRACE AbstractWordWriter - replacing hyperlink [206272 - 206293] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:56,749 [main] TRACE AbstractWordWriter - replacing hyperlink [206348 - 206383] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:56,803 [main] TRACE AbstractWordWriter - replacing hyperlink [206446 - 206467] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:56,856 [main] TRACE AbstractWordWriter - replacing hyperlink [206522 - 206557] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:56,909 [main] TRACE AbstractWordWriter - replacing hyperlink [206613 - 206634] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:56,962 [main] TRACE AbstractWordWriter - replacing hyperlink [206689 - 206724] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:57,017 [main] TRACE AbstractWordWriter - replacing hyperlink [206780 - 206801] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:57,067 [main] TRACE AbstractWordWriter - replacing hyperlink [206856 - 206891] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:57,126 [main] TRACE AbstractWordWriter - replacing hyperlink [206947 - 206968] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:57,180 [main] TRACE AbstractWordWriter - replacing hyperlink [207023 - 207058] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:57,234 [main] TRACE AbstractWordWriter - replacing hyperlink [207114 - 207135] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:57,287 [main] TRACE AbstractWordWriter - replacing hyperlink [207190 - 207225] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:57,344 [main] TRACE AbstractWordWriter - replacing hyperlink [207280 - 207301] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:57,403 [main] TRACE AbstractWordWriter - replacing hyperlink [207356 - 207391] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:57,457 [main] TRACE AbstractWordWriter - replacing hyperlink [207448 - 207469] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:57,511 [main] TRACE AbstractWordWriter - replacing hyperlink [207524 - 207559] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:57,563 [main] TRACE AbstractWordWriter - replacing hyperlink [207615 - 207636] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:57,615 [main] TRACE AbstractWordWriter - replacing hyperlink [207691 - 207726] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:57,669 [main] TRACE AbstractWordWriter - replacing hyperlink [207787 - 207807] HYPERLINK Floating, UML56... +2024-09-07 16:23:57,721 [main] TRACE AbstractWordWriter - replacing hyperlink [207861 - 207896] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:57,775 [main] TRACE AbstractWordWriter - replacing hyperlink [207954 - 207975] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:57,830 [main] TRACE AbstractWordWriter - replacing hyperlink [208030 - 208065] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:57,884 [main] TRACE AbstractWordWriter - replacing hyperlink [208120 - 208141] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:57,938 [main] TRACE AbstractWordWriter - replacing hyperlink [208196 - 208231] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:57,993 [main] TRACE AbstractWordWriter - replacing hyperlink [208285 - 208306] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:58,048 [main] TRACE AbstractWordWriter - replacing hyperlink [208361 - 208396] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:58,107 [main] TRACE AbstractWordWriter - replacing hyperlink [208451 - 208471] HYPERLINK Floating, UML56... +2024-09-07 16:23:58,161 [main] TRACE AbstractWordWriter - replacing hyperlink [208525 - 208560] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:58,213 [main] TRACE AbstractWordWriter - replacing hyperlink [208620 - 208641] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:58,268 [main] TRACE AbstractWordWriter - replacing hyperlink [208696 - 208731] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:58,322 [main] TRACE AbstractWordWriter - replacing hyperlink [208790 - 208811] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:58,377 [main] TRACE AbstractWordWriter - replacing hyperlink [208866 - 208901] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:58,438 [main] TRACE AbstractWordWriter - replacing hyperlink [208966 - 208992] HYPERLINK BooleanValueTs, UML54... +2024-09-07 16:23:58,493 [main] TRACE AbstractWordWriter - replacing hyperlink [209052 - 209087] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:58,545 [main] TRACE AbstractWordWriter - replacing hyperlink [209147 - 209168] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:58,599 [main] TRACE AbstractWordWriter - replacing hyperlink [209223 - 209258] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:58,688 [main] TRACE AbstractWordWriter - replacing hyperlink [209313 - 209334] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:58,740 [main] TRACE AbstractWordWriter - replacing hyperlink [209389 - 209424] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:58,794 [main] TRACE AbstractWordWriter - replacing hyperlink [209483 - 209504] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:58,848 [main] TRACE AbstractWordWriter - replacing hyperlink [209559 - 209594] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:58,902 [main] TRACE AbstractWordWriter - replacing hyperlink [209648 - 209669] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:58,954 [main] TRACE AbstractWordWriter - replacing hyperlink [209724 - 209759] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:59,009 [main] TRACE AbstractWordWriter - replacing hyperlink [209822 - 209843] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:59,063 [main] TRACE AbstractWordWriter - replacing hyperlink [209898 - 209933] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:59,119 [main] TRACE AbstractWordWriter - replacing hyperlink [209998 - 210019] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:59,173 [main] TRACE AbstractWordWriter - replacing hyperlink [210074 - 210109] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:59,228 [main] TRACE AbstractWordWriter - replacing hyperlink [210172 - 210193] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:59,281 [main] TRACE AbstractWordWriter - replacing hyperlink [210248 - 210283] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:59,333 [main] TRACE AbstractWordWriter - replacing hyperlink [210342 - 210363] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:59,388 [main] TRACE AbstractWordWriter - replacing hyperlink [210418 - 210453] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:59,440 [main] TRACE AbstractWordWriter - replacing hyperlink [210507 - 210528] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:59,500 [main] TRACE AbstractWordWriter - replacing hyperlink [210583 - 210618] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:59,555 [main] TRACE AbstractWordWriter - replacing hyperlink [210681 - 210702] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:59,614 [main] TRACE AbstractWordWriter - replacing hyperlink [210757 - 210792] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:59,670 [main] TRACE AbstractWordWriter - replacing hyperlink [210857 - 210878] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:59,725 [main] TRACE AbstractWordWriter - replacing hyperlink [210933 - 210968] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:59,780 [main] TRACE AbstractWordWriter - replacing hyperlink [211029 - 211050] HYPERLINK CounterTs, UML55... +2024-09-07 16:23:59,834 [main] TRACE AbstractWordWriter - replacing hyperlink [211105 - 211140] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:23:59,889 [main] TRACE AbstractWordWriter - replacing hyperlink [211202 - 211226] HYPERLINK BooleanValue, UML52... +2024-09-07 16:23:59,942 [main] TRACE AbstractWordWriter - replacing hyperlink [211284 - 211314] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:23:59,996 [main] TRACE AbstractWordWriter - replacing hyperlink [211375 - 211394] HYPERLINK Integer, UML53... +2024-09-07 16:24:00,057 [main] TRACE AbstractWordWriter - replacing hyperlink [211447 - 211477] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:24:00,110 [main] TRACE AbstractWordWriter - replacing hyperlink [211533 - 211553] HYPERLINK Floating, UML56... +2024-09-07 16:24:00,167 [main] TRACE AbstractWordWriter - replacing hyperlink [211610 - 211640] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:24:00,223 [main] TRACE AbstractWordWriter - replacing hyperlink [211694 - 211714] HYPERLINK Floating, UML56... +2024-09-07 16:24:00,278 [main] TRACE AbstractWordWriter - replacing hyperlink [211771 - 211801] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:24:00,332 [main] TRACE AbstractWordWriter - replacing hyperlink [211865 - 211885] HYPERLINK Floating, UML56... +2024-09-07 16:24:00,394 [main] TRACE AbstractWordWriter - replacing hyperlink [211942 - 211972] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:24:00,453 [main] TRACE AbstractWordWriter - replacing hyperlink [212033 - 212053] HYPERLINK Floating, UML56... +2024-09-07 16:24:00,507 [main] TRACE AbstractWordWriter - replacing hyperlink [212110 - 212140] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:24:00,568 [main] TRACE AbstractWordWriter - replacing hyperlink [212196 - 212216] HYPERLINK Floating, UML56... +2024-09-07 16:24:00,623 [main] TRACE AbstractWordWriter - replacing hyperlink [212273 - 212303] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:24:00,678 [main] TRACE AbstractWordWriter - replacing hyperlink [212363 - 212383] HYPERLINK Floating, UML56... +2024-09-07 16:24:00,733 [main] TRACE AbstractWordWriter - replacing hyperlink [212440 - 212470] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:24:00,788 [main] TRACE AbstractWordWriter - replacing hyperlink [212859 - 212882] HYPERLINK EntityIndex, UML66... +2024-09-07 16:24:00,840 [main] TRACE AbstractWordWriter - replacing hyperlink [212936 - 212959] HYPERLINK Association, UML95... +2024-09-07 16:24:00,895 [main] TRACE AbstractWordWriter - replacing hyperlink [213001 - 213018] HYPERLINK CntRs, UML67... +2024-09-07 16:24:00,950 [main] TRACE AbstractWordWriter - replacing hyperlink [213069 - 213092] HYPERLINK Association, UML95... +2024-09-07 16:24:01,005 [main] TRACE AbstractWordWriter - replacing hyperlink [213139 - 213162] HYPERLINK InetAddress, UML65... +2024-09-07 16:24:01,059 [main] TRACE AbstractWordWriter - replacing hyperlink [213219 - 213242] HYPERLINK Association, UML95... +2024-09-07 16:24:01,113 [main] TRACE AbstractWordWriter - replacing hyperlink [213293 - 213320] HYPERLINK InetAddressType, UML64... +2024-09-07 16:24:01,171 [main] TRACE AbstractWordWriter - replacing hyperlink [213381 - 213404] HYPERLINK Association, UML95... +2024-09-07 16:24:01,226 [main] TRACE AbstractWordWriter - replacing hyperlink [213447 - 213469] HYPERLINK ProtIdType, UML74... +2024-09-07 16:24:01,279 [main] TRACE AbstractWordWriter - replacing hyperlink [213525 - 213548] HYPERLINK Association, UML95... +2024-09-07 16:24:01,332 [main] TRACE AbstractWordWriter - replacing hyperlink [213597 - 213619] HYPERLINK CharString, UML59... +2024-09-07 16:24:01,389 [main] TRACE AbstractWordWriter - replacing hyperlink [213675 - 213698] HYPERLINK Association, UML95... +2024-09-07 16:24:01,442 [main] TRACE AbstractWordWriter - replacing hyperlink [213747 - 213769] HYPERLINK CharString, UML59... +2024-09-07 16:24:01,495 [main] TRACE AbstractWordWriter - replacing hyperlink [213825 - 213848] HYPERLINK Association, UML95... +2024-09-07 16:24:01,550 [main] TRACE AbstractWordWriter - replacing hyperlink [213895 - 213918] HYPERLINK InetAddress, UML65... +2024-09-07 16:24:01,611 [main] TRACE AbstractWordWriter - replacing hyperlink [213975 - 213998] HYPERLINK Association, UML95... +2024-09-07 16:24:01,667 [main] TRACE AbstractWordWriter - replacing hyperlink [214049 - 214076] HYPERLINK InetAddressType, UML64... +2024-09-07 16:24:01,720 [main] TRACE AbstractWordWriter - replacing hyperlink [214137 - 214160] HYPERLINK Association, UML95... +2024-09-07 16:24:01,775 [main] TRACE AbstractWordWriter - replacing hyperlink [214207 - 214228] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:01,829 [main] TRACE AbstractWordWriter - replacing hyperlink [214281 - 214304] HYPERLINK Association, UML95... +2024-09-07 16:24:01,883 [main] TRACE AbstractWordWriter - replacing hyperlink [214348 - 214367] HYPERLINK LnkType, UML78... +2024-09-07 16:24:01,935 [main] TRACE AbstractWordWriter - replacing hyperlink [214420 - 214443] HYPERLINK Association, UML95... +2024-09-07 16:24:01,991 [main] TRACE AbstractWordWriter - replacing hyperlink [214491 - 214512] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:02,047 [main] TRACE AbstractWordWriter - replacing hyperlink [214567 - 214602] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:24:02,104 [main] TRACE AbstractWordWriter - replacing hyperlink [214666 - 214687] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:02,162 [main] TRACE AbstractWordWriter - replacing hyperlink [214742 - 214777] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:24:02,219 [main] TRACE AbstractWordWriter - replacing hyperlink [214840 - 214861] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:02,274 [main] TRACE AbstractWordWriter - replacing hyperlink [214916 - 214951] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:24:02,331 [main] TRACE AbstractWordWriter - replacing hyperlink [215007 - 215028] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:02,385 [main] TRACE AbstractWordWriter - replacing hyperlink [215083 - 215118] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:24:02,441 [main] TRACE AbstractWordWriter - replacing hyperlink [215174 - 215195] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:02,495 [main] TRACE AbstractWordWriter - replacing hyperlink [215250 - 215285] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:24:02,548 [main] TRACE AbstractWordWriter - replacing hyperlink [215341 - 215362] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:02,601 [main] TRACE AbstractWordWriter - replacing hyperlink [215417 - 215452] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:24:02,658 [main] TRACE AbstractWordWriter - replacing hyperlink [215508 - 215529] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:02,718 [main] TRACE AbstractWordWriter - replacing hyperlink [215584 - 215619] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:24:02,772 [main] TRACE AbstractWordWriter - replacing hyperlink [215674 - 215695] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:02,825 [main] TRACE AbstractWordWriter - replacing hyperlink [215750 - 215785] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:24:02,879 [main] TRACE AbstractWordWriter - replacing hyperlink [215842 - 215863] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:02,930 [main] TRACE AbstractWordWriter - replacing hyperlink [215918 - 215953] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:24:02,985 [main] TRACE AbstractWordWriter - replacing hyperlink [216009 - 216030] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:03,039 [main] TRACE AbstractWordWriter - replacing hyperlink [216085 - 216120] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:24:03,094 [main] TRACE AbstractWordWriter - replacing hyperlink [216181 - 216201] HYPERLINK Floating, UML56... +2024-09-07 16:24:03,151 [main] TRACE AbstractWordWriter - replacing hyperlink [216255 - 216290] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:24:03,206 [main] TRACE AbstractWordWriter - replacing hyperlink [216348 - 216369] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:03,261 [main] TRACE AbstractWordWriter - replacing hyperlink [216424 - 216459] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:24:03,315 [main] TRACE AbstractWordWriter - replacing hyperlink [216514 - 216535] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:03,369 [main] TRACE AbstractWordWriter - replacing hyperlink [216590 - 216625] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:24:03,427 [main] TRACE AbstractWordWriter - replacing hyperlink [216679 - 216700] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:03,482 [main] TRACE AbstractWordWriter - replacing hyperlink [216755 - 216790] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:24:03,537 [main] TRACE AbstractWordWriter - replacing hyperlink [216845 - 216865] HYPERLINK Floating, UML56... +2024-09-07 16:24:03,591 [main] TRACE AbstractWordWriter - replacing hyperlink [216919 - 216954] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:24:03,647 [main] TRACE AbstractWordWriter - replacing hyperlink [217014 - 217035] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:03,701 [main] TRACE AbstractWordWriter - replacing hyperlink [217090 - 217125] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:24:03,765 [main] TRACE AbstractWordWriter - replacing hyperlink [217184 - 217205] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:03,820 [main] TRACE AbstractWordWriter - replacing hyperlink [217260 - 217295] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:24:03,876 [main] TRACE AbstractWordWriter - replacing hyperlink [217360 - 217386] HYPERLINK BooleanValueTs, UML54... +2024-09-07 16:24:03,931 [main] TRACE AbstractWordWriter - replacing hyperlink [217446 - 217481] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:24:03,985 [main] TRACE AbstractWordWriter - replacing hyperlink [217541 - 217562] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:04,040 [main] TRACE AbstractWordWriter - replacing hyperlink [217617 - 217652] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:24:04,094 [main] TRACE AbstractWordWriter - replacing hyperlink [217707 - 217728] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:04,152 [main] TRACE AbstractWordWriter - replacing hyperlink [217783 - 217818] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:24:04,208 [main] TRACE AbstractWordWriter - replacing hyperlink [217877 - 217898] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:04,265 [main] TRACE AbstractWordWriter - replacing hyperlink [217953 - 217988] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:24:04,319 [main] TRACE AbstractWordWriter - replacing hyperlink [218042 - 218063] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:04,376 [main] TRACE AbstractWordWriter - replacing hyperlink [218118 - 218153] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:24:04,432 [main] TRACE AbstractWordWriter - replacing hyperlink [218216 - 218237] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:04,485 [main] TRACE AbstractWordWriter - replacing hyperlink [218292 - 218327] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:24:04,539 [main] TRACE AbstractWordWriter - replacing hyperlink [218392 - 218413] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:04,597 [main] TRACE AbstractWordWriter - replacing hyperlink [218468 - 218503] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:24:04,651 [main] TRACE AbstractWordWriter - replacing hyperlink [218566 - 218587] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:04,705 [main] TRACE AbstractWordWriter - replacing hyperlink [218642 - 218677] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:24:04,764 [main] TRACE AbstractWordWriter - replacing hyperlink [218736 - 218757] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:04,827 [main] TRACE AbstractWordWriter - replacing hyperlink [218812 - 218847] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:24:04,881 [main] TRACE AbstractWordWriter - replacing hyperlink [218901 - 218922] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:04,935 [main] TRACE AbstractWordWriter - replacing hyperlink [218977 - 219012] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:24:04,989 [main] TRACE AbstractWordWriter - replacing hyperlink [219075 - 219096] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:05,045 [main] TRACE AbstractWordWriter - replacing hyperlink [219151 - 219186] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:24:05,099 [main] TRACE AbstractWordWriter - replacing hyperlink [219251 - 219272] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:05,153 [main] TRACE AbstractWordWriter - replacing hyperlink [219327 - 219362] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:24:05,209 [main] TRACE AbstractWordWriter - replacing hyperlink [219423 - 219444] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:05,271 [main] TRACE AbstractWordWriter - replacing hyperlink [219499 - 219534] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 16:24:05,327 [main] TRACE AbstractWordWriter - replacing hyperlink [219596 - 219620] HYPERLINK BooleanValue, UML52... +2024-09-07 16:24:05,383 [main] TRACE AbstractWordWriter - replacing hyperlink [219678 - 219708] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:24:05,437 [main] TRACE AbstractWordWriter - replacing hyperlink [219769 - 219788] HYPERLINK Integer, UML53... +2024-09-07 16:24:05,492 [main] TRACE AbstractWordWriter - replacing hyperlink [219841 - 219871] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:24:05,547 [main] TRACE AbstractWordWriter - replacing hyperlink [219927 - 219947] HYPERLINK Floating, UML56... +2024-09-07 16:24:05,607 [main] TRACE AbstractWordWriter - replacing hyperlink [220004 - 220034] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:24:05,689 [main] TRACE AbstractWordWriter - replacing hyperlink [220088 - 220108] HYPERLINK Floating, UML56... +2024-09-07 16:24:05,765 [main] TRACE AbstractWordWriter - replacing hyperlink [220165 - 220195] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:24:05,860 [main] TRACE AbstractWordWriter - replacing hyperlink [220259 - 220279] HYPERLINK Floating, UML56... +2024-09-07 16:24:05,936 [main] TRACE AbstractWordWriter - replacing hyperlink [220336 - 220366] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:24:06,007 [main] TRACE AbstractWordWriter - replacing hyperlink [220427 - 220447] HYPERLINK Floating, UML56... +2024-09-07 16:24:06,075 [main] TRACE AbstractWordWriter - replacing hyperlink [220504 - 220534] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:24:06,163 [main] TRACE AbstractWordWriter - replacing hyperlink [220590 - 220610] HYPERLINK Floating, UML56... +2024-09-07 16:24:06,250 [main] TRACE AbstractWordWriter - replacing hyperlink [220667 - 220697] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:24:06,333 [main] TRACE AbstractWordWriter - replacing hyperlink [220757 - 220777] HYPERLINK Floating, UML56... +2024-09-07 16:24:06,419 [main] TRACE AbstractWordWriter - replacing hyperlink [220834 - 220864] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:24:06,495 [main] TRACE AbstractWordWriter - replacing hyperlink [223039 - 223060] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:06,562 [main] TRACE AbstractWordWriter - replacing hyperlink [223186 - 223207] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:06,634 [main] TRACE AbstractWordWriter - replacing hyperlink [223312 - 223333] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:06,701 [main] TRACE AbstractWordWriter - replacing hyperlink [223438 - 223459] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:06,771 [main] TRACE AbstractWordWriter - replacing hyperlink [223568 - 223589] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:06,844 [main] TRACE AbstractWordWriter - replacing hyperlink [223673 - 223694] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:06,919 [main] TRACE AbstractWordWriter - replacing hyperlink [223791 - 223812] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:07,002 [main] TRACE AbstractWordWriter - replacing hyperlink [223937 - 223957] HYPERLINK Floating, UML56... +2024-09-07 16:24:07,082 [main] TRACE AbstractWordWriter - replacing hyperlink [224047 - 224068] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:07,160 [main] TRACE AbstractWordWriter - replacing hyperlink [224183 - 224204] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:07,235 [main] TRACE AbstractWordWriter - replacing hyperlink [224286 - 224307] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:07,307 [main] TRACE AbstractWordWriter - replacing hyperlink [224439 - 224460] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:07,375 [main] TRACE AbstractWordWriter - replacing hyperlink [224552 - 224573] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:07,453 [main] TRACE AbstractWordWriter - replacing hyperlink [224665 - 224686] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:07,525 [main] TRACE AbstractWordWriter - replacing hyperlink [224800 - 224821] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:07,594 [main] TRACE AbstractWordWriter - replacing hyperlink [224936 - 224957] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:07,666 [main] TRACE AbstractWordWriter - replacing hyperlink [225113 - 225134] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:07,739 [main] TRACE AbstractWordWriter - replacing hyperlink [225222 - 225243] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:07,811 [main] TRACE AbstractWordWriter - replacing hyperlink [225361 - 225382] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:07,882 [main] TRACE AbstractWordWriter - replacing hyperlink [225544 - 225565] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:07,955 [main] TRACE AbstractWordWriter - replacing hyperlink [225620 - 225645] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:08,033 [main] TRACE AbstractWordWriter - replacing hyperlink [225699 - 225720] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:08,114 [main] TRACE AbstractWordWriter - replacing hyperlink [225775 - 225800] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:08,194 [main] TRACE AbstractWordWriter - replacing hyperlink [225853 - 225874] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:08,275 [main] TRACE AbstractWordWriter - replacing hyperlink [225929 - 225954] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:08,350 [main] TRACE AbstractWordWriter - replacing hyperlink [226013 - 226034] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:08,428 [main] TRACE AbstractWordWriter - replacing hyperlink [226089 - 226114] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:08,498 [main] TRACE AbstractWordWriter - replacing hyperlink [226174 - 226195] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:08,565 [main] TRACE AbstractWordWriter - replacing hyperlink [226250 - 226275] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:08,635 [main] TRACE AbstractWordWriter - replacing hyperlink [226335 - 226356] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:08,704 [main] TRACE AbstractWordWriter - replacing hyperlink [226411 - 226436] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:08,776 [main] TRACE AbstractWordWriter - replacing hyperlink [226489 - 226510] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:08,849 [main] TRACE AbstractWordWriter - replacing hyperlink [226565 - 226590] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:08,931 [main] TRACE AbstractWordWriter - replacing hyperlink [226643 - 226664] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:09,010 [main] TRACE AbstractWordWriter - replacing hyperlink [226719 - 226744] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:09,108 [main] TRACE AbstractWordWriter - replacing hyperlink [226796 - 226817] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:09,191 [main] TRACE AbstractWordWriter - replacing hyperlink [226872 - 226897] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:09,274 [main] TRACE AbstractWordWriter - replacing hyperlink [226951 - 226972] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:09,352 [main] TRACE AbstractWordWriter - replacing hyperlink [227027 - 227052] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:09,427 [main] TRACE AbstractWordWriter - replacing hyperlink [227106 - 227127] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:09,504 [main] TRACE AbstractWordWriter - replacing hyperlink [227182 - 227207] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:09,569 [main] TRACE AbstractWordWriter - replacing hyperlink [227265 - 227286] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:09,662 [main] TRACE AbstractWordWriter - replacing hyperlink [227341 - 227366] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:09,742 [main] TRACE AbstractWordWriter - replacing hyperlink [227424 - 227445] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:09,825 [main] TRACE AbstractWordWriter - replacing hyperlink [227500 - 227525] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:09,903 [main] TRACE AbstractWordWriter - replacing hyperlink [227581 - 227602] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:09,972 [main] TRACE AbstractWordWriter - replacing hyperlink [227657 - 227682] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:10,051 [main] TRACE AbstractWordWriter - replacing hyperlink [227738 - 227759] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:10,130 [main] TRACE AbstractWordWriter - replacing hyperlink [227814 - 227839] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:10,205 [main] TRACE AbstractWordWriter - replacing hyperlink [227895 - 227916] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:10,281 [main] TRACE AbstractWordWriter - replacing hyperlink [227971 - 227996] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:10,355 [main] TRACE AbstractWordWriter - replacing hyperlink [228052 - 228073] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:10,426 [main] TRACE AbstractWordWriter - replacing hyperlink [228128 - 228153] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:10,495 [main] TRACE AbstractWordWriter - replacing hyperlink [228212 - 228233] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:10,569 [main] TRACE AbstractWordWriter - replacing hyperlink [228288 - 228313] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:10,639 [main] TRACE AbstractWordWriter - replacing hyperlink [228372 - 228393] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:10,717 [main] TRACE AbstractWordWriter - replacing hyperlink [228448 - 228473] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:10,793 [main] TRACE AbstractWordWriter - replacing hyperlink [228526 - 228547] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:10,868 [main] TRACE AbstractWordWriter - replacing hyperlink [228602 - 228627] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:10,935 [main] TRACE AbstractWordWriter - replacing hyperlink [228678 - 228699] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:10,999 [main] TRACE AbstractWordWriter - replacing hyperlink [228754 - 228779] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:11,063 [main] TRACE AbstractWordWriter - replacing hyperlink [228832 - 228853] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:11,131 [main] TRACE AbstractWordWriter - replacing hyperlink [228908 - 228933] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:11,193 [main] TRACE AbstractWordWriter - replacing hyperlink [228985 - 229006] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:11,254 [main] TRACE AbstractWordWriter - replacing hyperlink [229061 - 229086] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:11,324 [main] TRACE AbstractWordWriter - replacing hyperlink [229139 - 229160] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:11,386 [main] TRACE AbstractWordWriter - replacing hyperlink [229215 - 229240] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:11,446 [main] TRACE AbstractWordWriter - replacing hyperlink [229294 - 229315] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:11,508 [main] TRACE AbstractWordWriter - replacing hyperlink [229370 - 229395] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:11,568 [main] TRACE AbstractWordWriter - replacing hyperlink [229448 - 229469] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:11,631 [main] TRACE AbstractWordWriter - replacing hyperlink [229524 - 229549] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:11,695 [main] TRACE AbstractWordWriter - replacing hyperlink [229955 - 229976] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:11,763 [main] TRACE AbstractWordWriter - replacing hyperlink [230120 - 230141] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:11,836 [main] TRACE AbstractWordWriter - replacing hyperlink [230263 - 230284] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:11,908 [main] TRACE AbstractWordWriter - replacing hyperlink [230408 - 230429] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:11,969 [main] TRACE AbstractWordWriter - replacing hyperlink [230579 - 230600] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:12,030 [main] TRACE AbstractWordWriter - replacing hyperlink [230739 - 230760] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:12,092 [main] TRACE AbstractWordWriter - replacing hyperlink [230903 - 230924] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:12,156 [main] TRACE AbstractWordWriter - replacing hyperlink [231021 - 231042] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:12,220 [main] TRACE AbstractWordWriter - replacing hyperlink [231156 - 231177] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:12,291 [main] TRACE AbstractWordWriter - replacing hyperlink [231278 - 231299] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:12,357 [main] TRACE AbstractWordWriter - replacing hyperlink [231448 - 231469] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:12,421 [main] TRACE AbstractWordWriter - replacing hyperlink [231581 - 231602] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:12,479 [main] TRACE AbstractWordWriter - replacing hyperlink [231727 - 231748] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:12,538 [main] TRACE AbstractWordWriter - replacing hyperlink [231852 - 231873] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:12,595 [main] TRACE AbstractWordWriter - replacing hyperlink [231994 - 232015] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:12,659 [main] TRACE AbstractWordWriter - replacing hyperlink [232145 - 232166] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:12,736 [main] TRACE AbstractWordWriter - replacing hyperlink [232286 - 232307] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:12,798 [main] TRACE AbstractWordWriter - replacing hyperlink [232439 - 232460] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:12,864 [main] TRACE AbstractWordWriter - replacing hyperlink [232630 - 232651] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:12,938 [main] TRACE AbstractWordWriter - replacing hyperlink [232814 - 232835] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:13,011 [main] TRACE AbstractWordWriter - replacing hyperlink [232944 - 232965] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:13,069 [main] TRACE AbstractWordWriter - replacing hyperlink [233077 - 233098] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:13,124 [main] TRACE AbstractWordWriter - replacing hyperlink [233210 - 233231] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:13,187 [main] TRACE AbstractWordWriter - replacing hyperlink [233400 - 233421] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:13,246 [main] TRACE AbstractWordWriter - replacing hyperlink [233595 - 233616] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:13,303 [main] TRACE AbstractWordWriter - replacing hyperlink [233715 - 233736] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:13,357 [main] TRACE AbstractWordWriter - replacing hyperlink [234321 - 234344] HYPERLINK EntityIndex, UML66... +2024-09-07 16:24:13,417 [main] TRACE AbstractWordWriter - replacing hyperlink [234417 - 234434] HYPERLINK CntRs, UML67... +2024-09-07 16:24:13,477 [main] TRACE AbstractWordWriter - replacing hyperlink [234518 - 234541] HYPERLINK InetAddress, UML65... +2024-09-07 16:24:13,532 [main] TRACE AbstractWordWriter - replacing hyperlink [234618 - 234645] HYPERLINK InetAddressType, UML64... +2024-09-07 16:24:13,586 [main] TRACE AbstractWordWriter - replacing hyperlink [234723 - 234745] HYPERLINK ProtIdType, UML74... +2024-09-07 16:24:13,641 [main] TRACE AbstractWordWriter - replacing hyperlink [234824 - 234846] HYPERLINK CharString, UML59... +2024-09-07 16:24:13,696 [main] TRACE AbstractWordWriter - replacing hyperlink [234957 - 234979] HYPERLINK CharString, UML59... +2024-09-07 16:24:13,752 [main] TRACE AbstractWordWriter - replacing hyperlink [235112 - 235135] HYPERLINK InetAddress, UML65... +2024-09-07 16:24:13,807 [main] TRACE AbstractWordWriter - replacing hyperlink [235213 - 235240] HYPERLINK InetAddressType, UML64... +2024-09-07 16:24:13,861 [main] TRACE AbstractWordWriter - replacing hyperlink [235323 - 235344] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:13,917 [main] TRACE AbstractWordWriter - replacing hyperlink [235440 - 235459] HYPERLINK LnkType, UML78... +2024-09-07 16:24:13,974 [main] TRACE AbstractWordWriter - replacing hyperlink [235550 - 235574] HYPERLINK BooleanValue, UML52... +2024-09-07 16:24:14,030 [main] TRACE AbstractWordWriter - replacing hyperlink [235632 - 235662] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:24:14,086 [main] TRACE AbstractWordWriter - replacing hyperlink [235723 - 235742] HYPERLINK Integer, UML53... +2024-09-07 16:24:14,145 [main] TRACE AbstractWordWriter - replacing hyperlink [235795 - 235825] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:24:14,205 [main] TRACE AbstractWordWriter - replacing hyperlink [235881 - 235901] HYPERLINK Floating, UML56... +2024-09-07 16:24:14,262 [main] TRACE AbstractWordWriter - replacing hyperlink [235958 - 235988] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:24:14,352 [main] TRACE AbstractWordWriter - replacing hyperlink [236042 - 236062] HYPERLINK Floating, UML56... +2024-09-07 16:24:14,406 [main] TRACE AbstractWordWriter - replacing hyperlink [236119 - 236149] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:24:14,462 [main] TRACE AbstractWordWriter - replacing hyperlink [236213 - 236233] HYPERLINK Floating, UML56... +2024-09-07 16:24:14,526 [main] TRACE AbstractWordWriter - replacing hyperlink [236290 - 236320] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:24:14,581 [main] TRACE AbstractWordWriter - replacing hyperlink [236381 - 236401] HYPERLINK Floating, UML56... +2024-09-07 16:24:14,639 [main] TRACE AbstractWordWriter - replacing hyperlink [236458 - 236488] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:24:14,695 [main] TRACE AbstractWordWriter - replacing hyperlink [236544 - 236564] HYPERLINK Floating, UML56... +2024-09-07 16:24:14,752 [main] TRACE AbstractWordWriter - replacing hyperlink [236621 - 236651] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:24:14,808 [main] TRACE AbstractWordWriter - replacing hyperlink [236711 - 236731] HYPERLINK Floating, UML56... +2024-09-07 16:24:14,864 [main] TRACE AbstractWordWriter - replacing hyperlink [236788 - 236818] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:24:14,920 [main] TRACE AbstractWordWriter - replacing hyperlink [236869 - 236890] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:14,975 [main] TRACE AbstractWordWriter - replacing hyperlink [236945 - 236983] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:15,028 [main] TRACE AbstractWordWriter - replacing hyperlink [237042 - 237063] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:15,082 [main] TRACE AbstractWordWriter - replacing hyperlink [237118 - 237156] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:15,135 [main] TRACE AbstractWordWriter - replacing hyperlink [237215 - 237236] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:15,193 [main] TRACE AbstractWordWriter - replacing hyperlink [237291 - 237329] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:15,248 [main] TRACE AbstractWordWriter - replacing hyperlink [237388 - 237409] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:15,312 [main] TRACE AbstractWordWriter - replacing hyperlink [237464 - 237502] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:15,368 [main] TRACE AbstractWordWriter - replacing hyperlink [237564 - 237585] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:15,423 [main] TRACE AbstractWordWriter - replacing hyperlink [237640 - 237678] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:15,478 [main] TRACE AbstractWordWriter - replacing hyperlink [237738 - 237759] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:15,534 [main] TRACE AbstractWordWriter - replacing hyperlink [237814 - 237852] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:15,593 [main] TRACE AbstractWordWriter - replacing hyperlink [237911 - 237932] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:15,649 [main] TRACE AbstractWordWriter - replacing hyperlink [237987 - 238025] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:15,703 [main] TRACE AbstractWordWriter - replacing hyperlink [238089 - 238109] HYPERLINK Floating, UML56... +2024-09-07 16:24:15,760 [main] TRACE AbstractWordWriter - replacing hyperlink [238163 - 238201] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:15,815 [main] TRACE AbstractWordWriter - replacing hyperlink [238262 - 238283] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:15,870 [main] TRACE AbstractWordWriter - replacing hyperlink [238338 - 238376] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:15,924 [main] TRACE AbstractWordWriter - replacing hyperlink [238434 - 238455] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:15,981 [main] TRACE AbstractWordWriter - replacing hyperlink [238510 - 238548] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:16,035 [main] TRACE AbstractWordWriter - replacing hyperlink [238605 - 238626] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:16,090 [main] TRACE AbstractWordWriter - replacing hyperlink [238681 - 238719] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:16,148 [main] TRACE AbstractWordWriter - replacing hyperlink [238782 - 238803] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:16,204 [main] TRACE AbstractWordWriter - replacing hyperlink [238858 - 238896] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:16,258 [main] TRACE AbstractWordWriter - replacing hyperlink [238954 - 238975] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:16,313 [main] TRACE AbstractWordWriter - replacing hyperlink [239030 - 239068] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:16,368 [main] TRACE AbstractWordWriter - replacing hyperlink [239128 - 239149] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:16,422 [main] TRACE AbstractWordWriter - replacing hyperlink [239204 - 239242] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:16,475 [main] TRACE AbstractWordWriter - replacing hyperlink [239308 - 239329] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:16,533 [main] TRACE AbstractWordWriter - replacing hyperlink [239384 - 239422] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:16,589 [main] TRACE AbstractWordWriter - replacing hyperlink [239490 - 239511] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:16,650 [main] TRACE AbstractWordWriter - replacing hyperlink [239566 - 239604] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:16,703 [main] TRACE AbstractWordWriter - replacing hyperlink [239664 - 239685] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:16,758 [main] TRACE AbstractWordWriter - replacing hyperlink [239740 - 239778] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:16,813 [main] TRACE AbstractWordWriter - replacing hyperlink [239844 - 239865] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:16,867 [main] TRACE AbstractWordWriter - replacing hyperlink [239920 - 239958] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:16,924 [main] TRACE AbstractWordWriter - replacing hyperlink [240026 - 240047] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:16,979 [main] TRACE AbstractWordWriter - replacing hyperlink [240102 - 240140] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:17,037 [main] TRACE AbstractWordWriter - replacing hyperlink [240206 - 240227] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:17,092 [main] TRACE AbstractWordWriter - replacing hyperlink [240282 - 240307] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:17,149 [main] TRACE AbstractWordWriter - replacing hyperlink [240361 - 240382] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:17,204 [main] TRACE AbstractWordWriter - replacing hyperlink [240437 - 240462] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:17,261 [main] TRACE AbstractWordWriter - replacing hyperlink [240515 - 240536] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:17,319 [main] TRACE AbstractWordWriter - replacing hyperlink [240591 - 240616] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:17,373 [main] TRACE AbstractWordWriter - replacing hyperlink [240675 - 240696] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:17,428 [main] TRACE AbstractWordWriter - replacing hyperlink [240751 - 240776] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:17,486 [main] TRACE AbstractWordWriter - replacing hyperlink [240836 - 240857] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:17,543 [main] TRACE AbstractWordWriter - replacing hyperlink [240912 - 240937] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:17,599 [main] TRACE AbstractWordWriter - replacing hyperlink [240997 - 241018] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:17,654 [main] TRACE AbstractWordWriter - replacing hyperlink [241073 - 241098] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:17,717 [main] TRACE AbstractWordWriter - replacing hyperlink [241151 - 241172] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:17,774 [main] TRACE AbstractWordWriter - replacing hyperlink [241227 - 241252] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:17,829 [main] TRACE AbstractWordWriter - replacing hyperlink [241305 - 241326] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:17,886 [main] TRACE AbstractWordWriter - replacing hyperlink [241381 - 241406] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:17,942 [main] TRACE AbstractWordWriter - replacing hyperlink [241458 - 241479] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:17,997 [main] TRACE AbstractWordWriter - replacing hyperlink [241534 - 241559] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:18,054 [main] TRACE AbstractWordWriter - replacing hyperlink [241613 - 241634] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:18,110 [main] TRACE AbstractWordWriter - replacing hyperlink [241689 - 241714] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:18,164 [main] TRACE AbstractWordWriter - replacing hyperlink [241768 - 241789] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:18,221 [main] TRACE AbstractWordWriter - replacing hyperlink [241844 - 241869] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:18,278 [main] TRACE AbstractWordWriter - replacing hyperlink [241927 - 241948] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:18,333 [main] TRACE AbstractWordWriter - replacing hyperlink [242003 - 242028] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:18,387 [main] TRACE AbstractWordWriter - replacing hyperlink [242086 - 242107] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:18,442 [main] TRACE AbstractWordWriter - replacing hyperlink [242162 - 242187] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:18,496 [main] TRACE AbstractWordWriter - replacing hyperlink [242243 - 242264] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:18,551 [main] TRACE AbstractWordWriter - replacing hyperlink [242319 - 242344] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:18,609 [main] TRACE AbstractWordWriter - replacing hyperlink [242400 - 242421] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:18,664 [main] TRACE AbstractWordWriter - replacing hyperlink [242476 - 242501] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:18,723 [main] TRACE AbstractWordWriter - replacing hyperlink [242557 - 242578] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:18,788 [main] TRACE AbstractWordWriter - replacing hyperlink [242633 - 242658] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:18,846 [main] TRACE AbstractWordWriter - replacing hyperlink [242714 - 242735] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:18,903 [main] TRACE AbstractWordWriter - replacing hyperlink [242790 - 242815] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:18,957 [main] TRACE AbstractWordWriter - replacing hyperlink [242874 - 242895] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:19,014 [main] TRACE AbstractWordWriter - replacing hyperlink [242950 - 242975] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:19,068 [main] TRACE AbstractWordWriter - replacing hyperlink [243034 - 243055] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:19,124 [main] TRACE AbstractWordWriter - replacing hyperlink [243110 - 243135] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:19,179 [main] TRACE AbstractWordWriter - replacing hyperlink [243188 - 243209] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:19,237 [main] TRACE AbstractWordWriter - replacing hyperlink [243264 - 243289] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:19,295 [main] TRACE AbstractWordWriter - replacing hyperlink [243340 - 243361] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:19,350 [main] TRACE AbstractWordWriter - replacing hyperlink [243416 - 243441] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:19,405 [main] TRACE AbstractWordWriter - replacing hyperlink [243494 - 243515] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:19,464 [main] TRACE AbstractWordWriter - replacing hyperlink [243570 - 243595] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:19,522 [main] TRACE AbstractWordWriter - replacing hyperlink [243647 - 243668] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:19,579 [main] TRACE AbstractWordWriter - replacing hyperlink [243723 - 243748] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:19,635 [main] TRACE AbstractWordWriter - replacing hyperlink [243801 - 243822] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:19,692 [main] TRACE AbstractWordWriter - replacing hyperlink [243877 - 243902] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:19,748 [main] TRACE AbstractWordWriter - replacing hyperlink [243956 - 243977] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:19,807 [main] TRACE AbstractWordWriter - replacing hyperlink [244032 - 244057] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:19,866 [main] TRACE AbstractWordWriter - replacing hyperlink [244110 - 244131] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:19,922 [main] TRACE AbstractWordWriter - replacing hyperlink [244186 - 244211] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:19,978 [main] TRACE AbstractWordWriter - replacing hyperlink [244631 - 244648] HYPERLINK CntRs, UML67... +2024-09-07 16:24:20,032 [main] TRACE AbstractWordWriter - replacing hyperlink [244731 - 244752] HYPERLINK EventType, UML72... +2024-09-07 16:24:20,087 [main] TRACE AbstractWordWriter - replacing hyperlink [244868 - 244898] HYPERLINK MasterAssociation, UML101... +2024-09-07 16:24:20,142 [main] TRACE AbstractWordWriter - replacing hyperlink [244996 - 245030] HYPERLINK OutstationAssociation, UML102... +2024-09-07 16:24:20,198 [main] TRACE AbstractWordWriter - replacing hyperlink [245142 - 245189] HYPERLINK 60870andDNPSecurityNotificationEd2, UML111... +2024-09-07 16:24:20,253 [main] TRACE AbstractWordWriter - replacing hyperlink [245309 - 245348] HYPERLINK 60870andDNPNotificationEd2, UML112... +2024-09-07 16:24:20,309 [main] TRACE AbstractWordWriter - replacing hyperlink [245447 - 245468] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:20,363 [main] TRACE AbstractWordWriter - replacing hyperlink [245523 - 245561] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:20,419 [main] TRACE AbstractWordWriter - replacing hyperlink [245620 - 245641] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:20,476 [main] TRACE AbstractWordWriter - replacing hyperlink [245696 - 245734] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:20,533 [main] TRACE AbstractWordWriter - replacing hyperlink [245793 - 245814] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:20,590 [main] TRACE AbstractWordWriter - replacing hyperlink [245869 - 245907] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:20,645 [main] TRACE AbstractWordWriter - replacing hyperlink [245966 - 245987] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:20,701 [main] TRACE AbstractWordWriter - replacing hyperlink [246042 - 246080] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:20,759 [main] TRACE AbstractWordWriter - replacing hyperlink [246142 - 246163] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:20,814 [main] TRACE AbstractWordWriter - replacing hyperlink [246218 - 246256] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:20,874 [main] TRACE AbstractWordWriter - replacing hyperlink [246316 - 246337] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:20,930 [main] TRACE AbstractWordWriter - replacing hyperlink [246392 - 246430] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:20,986 [main] TRACE AbstractWordWriter - replacing hyperlink [246489 - 246510] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:21,042 [main] TRACE AbstractWordWriter - replacing hyperlink [246565 - 246603] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:21,097 [main] TRACE AbstractWordWriter - replacing hyperlink [246667 - 246687] HYPERLINK Floating, UML56... +2024-09-07 16:24:21,153 [main] TRACE AbstractWordWriter - replacing hyperlink [246741 - 246779] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:21,210 [main] TRACE AbstractWordWriter - replacing hyperlink [246840 - 246861] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:21,265 [main] TRACE AbstractWordWriter - replacing hyperlink [246916 - 246954] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:21,320 [main] TRACE AbstractWordWriter - replacing hyperlink [247012 - 247033] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:21,374 [main] TRACE AbstractWordWriter - replacing hyperlink [247088 - 247126] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:21,427 [main] TRACE AbstractWordWriter - replacing hyperlink [247183 - 247204] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:21,482 [main] TRACE AbstractWordWriter - replacing hyperlink [247259 - 247297] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:21,538 [main] TRACE AbstractWordWriter - replacing hyperlink [247360 - 247381] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:21,593 [main] TRACE AbstractWordWriter - replacing hyperlink [247436 - 247474] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:21,648 [main] TRACE AbstractWordWriter - replacing hyperlink [247532 - 247553] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:21,704 [main] TRACE AbstractWordWriter - replacing hyperlink [247608 - 247646] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:21,760 [main] TRACE AbstractWordWriter - replacing hyperlink [247706 - 247727] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:21,819 [main] TRACE AbstractWordWriter - replacing hyperlink [247782 - 247820] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:21,872 [main] TRACE AbstractWordWriter - replacing hyperlink [247886 - 247907] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:21,929 [main] TRACE AbstractWordWriter - replacing hyperlink [247962 - 248000] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:21,993 [main] TRACE AbstractWordWriter - replacing hyperlink [248068 - 248089] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:22,047 [main] TRACE AbstractWordWriter - replacing hyperlink [248144 - 248182] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:22,104 [main] TRACE AbstractWordWriter - replacing hyperlink [248242 - 248263] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:22,159 [main] TRACE AbstractWordWriter - replacing hyperlink [248318 - 248356] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:22,219 [main] TRACE AbstractWordWriter - replacing hyperlink [248422 - 248443] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:22,273 [main] TRACE AbstractWordWriter - replacing hyperlink [248498 - 248536] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:22,329 [main] TRACE AbstractWordWriter - replacing hyperlink [248604 - 248625] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:22,388 [main] TRACE AbstractWordWriter - replacing hyperlink [248680 - 248718] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:22,444 [main] TRACE AbstractWordWriter - replacing hyperlink [248784 - 248805] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:22,501 [main] TRACE AbstractWordWriter - replacing hyperlink [248860 - 248885] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:22,554 [main] TRACE AbstractWordWriter - replacing hyperlink [248939 - 248960] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:22,609 [main] TRACE AbstractWordWriter - replacing hyperlink [249015 - 249040] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:22,664 [main] TRACE AbstractWordWriter - replacing hyperlink [249093 - 249114] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:22,719 [main] TRACE AbstractWordWriter - replacing hyperlink [249169 - 249194] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:22,773 [main] TRACE AbstractWordWriter - replacing hyperlink [249253 - 249274] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:22,831 [main] TRACE AbstractWordWriter - replacing hyperlink [249329 - 249354] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:22,886 [main] TRACE AbstractWordWriter - replacing hyperlink [249414 - 249435] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:22,940 [main] TRACE AbstractWordWriter - replacing hyperlink [249490 - 249515] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:22,998 [main] TRACE AbstractWordWriter - replacing hyperlink [249575 - 249596] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:23,056 [main] TRACE AbstractWordWriter - replacing hyperlink [249651 - 249676] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:23,113 [main] TRACE AbstractWordWriter - replacing hyperlink [249729 - 249750] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:23,169 [main] TRACE AbstractWordWriter - replacing hyperlink [249805 - 249830] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:23,226 [main] TRACE AbstractWordWriter - replacing hyperlink [249883 - 249904] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:23,284 [main] TRACE AbstractWordWriter - replacing hyperlink [249959 - 249984] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:23,340 [main] TRACE AbstractWordWriter - replacing hyperlink [250036 - 250057] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:23,397 [main] TRACE AbstractWordWriter - replacing hyperlink [250112 - 250137] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:23,454 [main] TRACE AbstractWordWriter - replacing hyperlink [250191 - 250212] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:23,509 [main] TRACE AbstractWordWriter - replacing hyperlink [250267 - 250292] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:23,566 [main] TRACE AbstractWordWriter - replacing hyperlink [250346 - 250367] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:23,621 [main] TRACE AbstractWordWriter - replacing hyperlink [250422 - 250447] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:23,680 [main] TRACE AbstractWordWriter - replacing hyperlink [250505 - 250526] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:23,733 [main] TRACE AbstractWordWriter - replacing hyperlink [250581 - 250606] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:23,788 [main] TRACE AbstractWordWriter - replacing hyperlink [250664 - 250685] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:23,848 [main] TRACE AbstractWordWriter - replacing hyperlink [250740 - 250765] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:23,904 [main] TRACE AbstractWordWriter - replacing hyperlink [250821 - 250842] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:23,961 [main] TRACE AbstractWordWriter - replacing hyperlink [250897 - 250922] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:24,015 [main] TRACE AbstractWordWriter - replacing hyperlink [250978 - 250999] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:24,074 [main] TRACE AbstractWordWriter - replacing hyperlink [251054 - 251079] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:24,135 [main] TRACE AbstractWordWriter - replacing hyperlink [251135 - 251156] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:24,189 [main] TRACE AbstractWordWriter - replacing hyperlink [251211 - 251236] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:24,248 [main] TRACE AbstractWordWriter - replacing hyperlink [251292 - 251313] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:24,305 [main] TRACE AbstractWordWriter - replacing hyperlink [251368 - 251393] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:24,362 [main] TRACE AbstractWordWriter - replacing hyperlink [251452 - 251473] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:24,419 [main] TRACE AbstractWordWriter - replacing hyperlink [251528 - 251553] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:24,477 [main] TRACE AbstractWordWriter - replacing hyperlink [251612 - 251633] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:24,534 [main] TRACE AbstractWordWriter - replacing hyperlink [251688 - 251713] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:24,588 [main] TRACE AbstractWordWriter - replacing hyperlink [251766 - 251787] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:24,644 [main] TRACE AbstractWordWriter - replacing hyperlink [251842 - 251867] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:24,699 [main] TRACE AbstractWordWriter - replacing hyperlink [251918 - 251939] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:24,789 [main] TRACE AbstractWordWriter - replacing hyperlink [251994 - 252019] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:24,852 [main] TRACE AbstractWordWriter - replacing hyperlink [252072 - 252093] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:24,907 [main] TRACE AbstractWordWriter - replacing hyperlink [252148 - 252173] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:24,965 [main] TRACE AbstractWordWriter - replacing hyperlink [252225 - 252246] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:25,020 [main] TRACE AbstractWordWriter - replacing hyperlink [252301 - 252326] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:25,077 [main] TRACE AbstractWordWriter - replacing hyperlink [252379 - 252400] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:25,137 [main] TRACE AbstractWordWriter - replacing hyperlink [252455 - 252480] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:25,196 [main] TRACE AbstractWordWriter - replacing hyperlink [252534 - 252555] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:25,255 [main] TRACE AbstractWordWriter - replacing hyperlink [252610 - 252635] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:25,314 [main] TRACE AbstractWordWriter - replacing hyperlink [252688 - 252709] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:25,368 [main] TRACE AbstractWordWriter - replacing hyperlink [252764 - 252789] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:25,425 [main] TRACE AbstractWordWriter - replacing hyperlink [253277 - 253298] HYPERLINK EventType, UML72... +2024-09-07 16:24:25,483 [main] TRACE AbstractWordWriter - replacing hyperlink [253760 - 253781] HYPERLINK EventType, UML72... +2024-09-07 16:24:25,542 [main] TRACE AbstractWordWriter - replacing hyperlink [254158 - 254181] HYPERLINK EntityIndex, UML66... +2024-09-07 16:24:25,597 [main] TRACE AbstractWordWriter - replacing hyperlink [254235 - 254259] HYPERLINK Association, UML100... +2024-09-07 16:24:25,654 [main] TRACE AbstractWordWriter - replacing hyperlink [254301 - 254318] HYPERLINK CntRs, UML67... +2024-09-07 16:24:25,711 [main] TRACE AbstractWordWriter - replacing hyperlink [254369 - 254393] HYPERLINK Association, UML100... +2024-09-07 16:24:25,769 [main] TRACE AbstractWordWriter - replacing hyperlink [254440 - 254463] HYPERLINK InetAddress, UML65... +2024-09-07 16:24:25,827 [main] TRACE AbstractWordWriter - replacing hyperlink [254520 - 254544] HYPERLINK Association, UML100... +2024-09-07 16:24:25,883 [main] TRACE AbstractWordWriter - replacing hyperlink [254595 - 254622] HYPERLINK InetAddressType, UML64... +2024-09-07 16:24:25,944 [main] TRACE AbstractWordWriter - replacing hyperlink [254683 - 254707] HYPERLINK Association, UML100... +2024-09-07 16:24:26,004 [main] TRACE AbstractWordWriter - replacing hyperlink [254750 - 254772] HYPERLINK ProtIdType, UML74... +2024-09-07 16:24:26,063 [main] TRACE AbstractWordWriter - replacing hyperlink [254828 - 254852] HYPERLINK Association, UML100... +2024-09-07 16:24:26,121 [main] TRACE AbstractWordWriter - replacing hyperlink [254901 - 254923] HYPERLINK CharString, UML59... +2024-09-07 16:24:26,182 [main] TRACE AbstractWordWriter - replacing hyperlink [254979 - 255003] HYPERLINK Association, UML100... +2024-09-07 16:24:26,247 [main] TRACE AbstractWordWriter - replacing hyperlink [255052 - 255074] HYPERLINK CharString, UML59... +2024-09-07 16:24:26,304 [main] TRACE AbstractWordWriter - replacing hyperlink [255130 - 255154] HYPERLINK Association, UML100... +2024-09-07 16:24:26,361 [main] TRACE AbstractWordWriter - replacing hyperlink [255201 - 255224] HYPERLINK InetAddress, UML65... +2024-09-07 16:24:26,415 [main] TRACE AbstractWordWriter - replacing hyperlink [255281 - 255305] HYPERLINK Association, UML100... +2024-09-07 16:24:26,472 [main] TRACE AbstractWordWriter - replacing hyperlink [255356 - 255383] HYPERLINK InetAddressType, UML64... +2024-09-07 16:24:26,528 [main] TRACE AbstractWordWriter - replacing hyperlink [255444 - 255468] HYPERLINK Association, UML100... +2024-09-07 16:24:26,583 [main] TRACE AbstractWordWriter - replacing hyperlink [255515 - 255536] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:26,639 [main] TRACE AbstractWordWriter - replacing hyperlink [255589 - 255613] HYPERLINK Association, UML100... +2024-09-07 16:24:26,698 [main] TRACE AbstractWordWriter - replacing hyperlink [255657 - 255676] HYPERLINK LnkType, UML78... +2024-09-07 16:24:26,753 [main] TRACE AbstractWordWriter - replacing hyperlink [255729 - 255753] HYPERLINK Association, UML100... +2024-09-07 16:24:26,812 [main] TRACE AbstractWordWriter - replacing hyperlink [255803 - 255827] HYPERLINK BooleanValue, UML52... +2024-09-07 16:24:26,868 [main] TRACE AbstractWordWriter - replacing hyperlink [255885 - 255915] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:24:26,926 [main] TRACE AbstractWordWriter - replacing hyperlink [255976 - 255995] HYPERLINK Integer, UML53... +2024-09-07 16:24:26,984 [main] TRACE AbstractWordWriter - replacing hyperlink [256048 - 256078] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:24:27,043 [main] TRACE AbstractWordWriter - replacing hyperlink [256134 - 256154] HYPERLINK Floating, UML56... +2024-09-07 16:24:27,099 [main] TRACE AbstractWordWriter - replacing hyperlink [256211 - 256241] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:24:27,155 [main] TRACE AbstractWordWriter - replacing hyperlink [256295 - 256315] HYPERLINK Floating, UML56... +2024-09-07 16:24:27,213 [main] TRACE AbstractWordWriter - replacing hyperlink [256372 - 256402] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:24:27,278 [main] TRACE AbstractWordWriter - replacing hyperlink [256466 - 256486] HYPERLINK Floating, UML56... +2024-09-07 16:24:27,337 [main] TRACE AbstractWordWriter - replacing hyperlink [256543 - 256573] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:24:27,394 [main] TRACE AbstractWordWriter - replacing hyperlink [256634 - 256654] HYPERLINK Floating, UML56... +2024-09-07 16:24:27,450 [main] TRACE AbstractWordWriter - replacing hyperlink [256711 - 256741] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:24:27,505 [main] TRACE AbstractWordWriter - replacing hyperlink [256797 - 256817] HYPERLINK Floating, UML56... +2024-09-07 16:24:27,561 [main] TRACE AbstractWordWriter - replacing hyperlink [256874 - 256904] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:24:27,618 [main] TRACE AbstractWordWriter - replacing hyperlink [256964 - 256984] HYPERLINK Floating, UML56... +2024-09-07 16:24:27,674 [main] TRACE AbstractWordWriter - replacing hyperlink [257041 - 257071] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:24:27,730 [main] TRACE AbstractWordWriter - replacing hyperlink [257122 - 257143] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:27,785 [main] TRACE AbstractWordWriter - replacing hyperlink [257198 - 257236] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:27,842 [main] TRACE AbstractWordWriter - replacing hyperlink [257295 - 257316] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:27,900 [main] TRACE AbstractWordWriter - replacing hyperlink [257371 - 257409] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:28,002 [main] TRACE AbstractWordWriter - replacing hyperlink [257468 - 257489] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:28,064 [main] TRACE AbstractWordWriter - replacing hyperlink [257544 - 257582] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:28,126 [main] TRACE AbstractWordWriter - replacing hyperlink [257641 - 257662] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:28,182 [main] TRACE AbstractWordWriter - replacing hyperlink [257717 - 257755] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:28,247 [main] TRACE AbstractWordWriter - replacing hyperlink [257817 - 257838] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:28,311 [main] TRACE AbstractWordWriter - replacing hyperlink [257893 - 257931] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:28,376 [main] TRACE AbstractWordWriter - replacing hyperlink [257991 - 258012] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:28,438 [main] TRACE AbstractWordWriter - replacing hyperlink [258067 - 258105] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:28,496 [main] TRACE AbstractWordWriter - replacing hyperlink [258164 - 258185] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:28,558 [main] TRACE AbstractWordWriter - replacing hyperlink [258240 - 258278] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:28,617 [main] TRACE AbstractWordWriter - replacing hyperlink [258342 - 258362] HYPERLINK Floating, UML56... +2024-09-07 16:24:28,678 [main] TRACE AbstractWordWriter - replacing hyperlink [258416 - 258454] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:28,742 [main] TRACE AbstractWordWriter - replacing hyperlink [258515 - 258536] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:28,805 [main] TRACE AbstractWordWriter - replacing hyperlink [258591 - 258629] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:28,865 [main] TRACE AbstractWordWriter - replacing hyperlink [258687 - 258708] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:28,926 [main] TRACE AbstractWordWriter - replacing hyperlink [258763 - 258801] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:28,992 [main] TRACE AbstractWordWriter - replacing hyperlink [258858 - 258879] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:29,049 [main] TRACE AbstractWordWriter - replacing hyperlink [258934 - 258972] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:29,106 [main] TRACE AbstractWordWriter - replacing hyperlink [259035 - 259056] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:29,163 [main] TRACE AbstractWordWriter - replacing hyperlink [259111 - 259149] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:29,221 [main] TRACE AbstractWordWriter - replacing hyperlink [259207 - 259228] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:29,281 [main] TRACE AbstractWordWriter - replacing hyperlink [259283 - 259321] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:29,339 [main] TRACE AbstractWordWriter - replacing hyperlink [259381 - 259402] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:29,396 [main] TRACE AbstractWordWriter - replacing hyperlink [259457 - 259495] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:29,457 [main] TRACE AbstractWordWriter - replacing hyperlink [259561 - 259582] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:29,515 [main] TRACE AbstractWordWriter - replacing hyperlink [259637 - 259675] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:29,573 [main] TRACE AbstractWordWriter - replacing hyperlink [259743 - 259764] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:29,629 [main] TRACE AbstractWordWriter - replacing hyperlink [259819 - 259857] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:29,686 [main] TRACE AbstractWordWriter - replacing hyperlink [259917 - 259938] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:29,741 [main] TRACE AbstractWordWriter - replacing hyperlink [259993 - 260031] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:29,798 [main] TRACE AbstractWordWriter - replacing hyperlink [260097 - 260118] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:29,856 [main] TRACE AbstractWordWriter - replacing hyperlink [260173 - 260211] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:29,913 [main] TRACE AbstractWordWriter - replacing hyperlink [260279 - 260300] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:30,006 [main] TRACE AbstractWordWriter - replacing hyperlink [260355 - 260393] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:30,063 [main] TRACE AbstractWordWriter - replacing hyperlink [260459 - 260480] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:30,118 [main] TRACE AbstractWordWriter - replacing hyperlink [260535 - 260560] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:30,174 [main] TRACE AbstractWordWriter - replacing hyperlink [260614 - 260635] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:30,230 [main] TRACE AbstractWordWriter - replacing hyperlink [260690 - 260715] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:30,287 [main] TRACE AbstractWordWriter - replacing hyperlink [260768 - 260789] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:30,344 [main] TRACE AbstractWordWriter - replacing hyperlink [260844 - 260869] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:30,403 [main] TRACE AbstractWordWriter - replacing hyperlink [260928 - 260949] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:30,465 [main] TRACE AbstractWordWriter - replacing hyperlink [261004 - 261029] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:30,521 [main] TRACE AbstractWordWriter - replacing hyperlink [261089 - 261110] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:30,577 [main] TRACE AbstractWordWriter - replacing hyperlink [261165 - 261190] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:30,633 [main] TRACE AbstractWordWriter - replacing hyperlink [261250 - 261271] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:30,687 [main] TRACE AbstractWordWriter - replacing hyperlink [261326 - 261351] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:30,741 [main] TRACE AbstractWordWriter - replacing hyperlink [261404 - 261425] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:30,797 [main] TRACE AbstractWordWriter - replacing hyperlink [261480 - 261505] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:30,854 [main] TRACE AbstractWordWriter - replacing hyperlink [261558 - 261579] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:30,912 [main] TRACE AbstractWordWriter - replacing hyperlink [261634 - 261659] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:30,977 [main] TRACE AbstractWordWriter - replacing hyperlink [261711 - 261732] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:31,036 [main] TRACE AbstractWordWriter - replacing hyperlink [261787 - 261812] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:31,092 [main] TRACE AbstractWordWriter - replacing hyperlink [261866 - 261887] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:31,150 [main] TRACE AbstractWordWriter - replacing hyperlink [261942 - 261967] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:31,207 [main] TRACE AbstractWordWriter - replacing hyperlink [262021 - 262042] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:31,269 [main] TRACE AbstractWordWriter - replacing hyperlink [262097 - 262122] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:31,329 [main] TRACE AbstractWordWriter - replacing hyperlink [262180 - 262201] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:31,386 [main] TRACE AbstractWordWriter - replacing hyperlink [262256 - 262281] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:31,442 [main] TRACE AbstractWordWriter - replacing hyperlink [262339 - 262360] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:31,501 [main] TRACE AbstractWordWriter - replacing hyperlink [262415 - 262440] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:31,564 [main] TRACE AbstractWordWriter - replacing hyperlink [262496 - 262517] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:31,623 [main] TRACE AbstractWordWriter - replacing hyperlink [262572 - 262597] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:31,680 [main] TRACE AbstractWordWriter - replacing hyperlink [262653 - 262674] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:31,740 [main] TRACE AbstractWordWriter - replacing hyperlink [262729 - 262754] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:31,800 [main] TRACE AbstractWordWriter - replacing hyperlink [262810 - 262831] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:31,856 [main] TRACE AbstractWordWriter - replacing hyperlink [262886 - 262911] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:31,915 [main] TRACE AbstractWordWriter - replacing hyperlink [262967 - 262988] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:31,974 [main] TRACE AbstractWordWriter - replacing hyperlink [263043 - 263068] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:32,032 [main] TRACE AbstractWordWriter - replacing hyperlink [263127 - 263148] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:32,089 [main] TRACE AbstractWordWriter - replacing hyperlink [263203 - 263228] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:32,148 [main] TRACE AbstractWordWriter - replacing hyperlink [263287 - 263308] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:32,203 [main] TRACE AbstractWordWriter - replacing hyperlink [263363 - 263388] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:32,264 [main] TRACE AbstractWordWriter - replacing hyperlink [263441 - 263462] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:32,324 [main] TRACE AbstractWordWriter - replacing hyperlink [263517 - 263542] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:32,380 [main] TRACE AbstractWordWriter - replacing hyperlink [263593 - 263614] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:32,437 [main] TRACE AbstractWordWriter - replacing hyperlink [263669 - 263694] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:32,496 [main] TRACE AbstractWordWriter - replacing hyperlink [263747 - 263768] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:32,553 [main] TRACE AbstractWordWriter - replacing hyperlink [263823 - 263848] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:32,615 [main] TRACE AbstractWordWriter - replacing hyperlink [263900 - 263921] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:32,674 [main] TRACE AbstractWordWriter - replacing hyperlink [263976 - 264001] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:32,731 [main] TRACE AbstractWordWriter - replacing hyperlink [264054 - 264075] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:32,789 [main] TRACE AbstractWordWriter - replacing hyperlink [264130 - 264155] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:32,844 [main] TRACE AbstractWordWriter - replacing hyperlink [264209 - 264230] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:32,904 [main] TRACE AbstractWordWriter - replacing hyperlink [264285 - 264310] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:32,963 [main] TRACE AbstractWordWriter - replacing hyperlink [264363 - 264384] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:33,018 [main] TRACE AbstractWordWriter - replacing hyperlink [264439 - 264464] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:33,076 [main] TRACE AbstractWordWriter - replacing hyperlink [264854 - 264877] HYPERLINK EntityIndex, UML66... +2024-09-07 16:24:33,133 [main] TRACE AbstractWordWriter - replacing hyperlink [264931 - 264955] HYPERLINK Association, UML100... +2024-09-07 16:24:33,191 [main] TRACE AbstractWordWriter - replacing hyperlink [264997 - 265014] HYPERLINK CntRs, UML67... +2024-09-07 16:24:33,249 [main] TRACE AbstractWordWriter - replacing hyperlink [265065 - 265089] HYPERLINK Association, UML100... +2024-09-07 16:24:33,307 [main] TRACE AbstractWordWriter - replacing hyperlink [265136 - 265159] HYPERLINK InetAddress, UML65... +2024-09-07 16:24:33,362 [main] TRACE AbstractWordWriter - replacing hyperlink [265216 - 265240] HYPERLINK Association, UML100... +2024-09-07 16:24:33,420 [main] TRACE AbstractWordWriter - replacing hyperlink [265291 - 265318] HYPERLINK InetAddressType, UML64... +2024-09-07 16:24:33,477 [main] TRACE AbstractWordWriter - replacing hyperlink [265379 - 265403] HYPERLINK Association, UML100... +2024-09-07 16:24:33,534 [main] TRACE AbstractWordWriter - replacing hyperlink [265446 - 265468] HYPERLINK ProtIdType, UML74... +2024-09-07 16:24:33,592 [main] TRACE AbstractWordWriter - replacing hyperlink [265524 - 265548] HYPERLINK Association, UML100... +2024-09-07 16:24:33,651 [main] TRACE AbstractWordWriter - replacing hyperlink [265597 - 265619] HYPERLINK CharString, UML59... +2024-09-07 16:24:33,711 [main] TRACE AbstractWordWriter - replacing hyperlink [265675 - 265699] HYPERLINK Association, UML100... +2024-09-07 16:24:33,768 [main] TRACE AbstractWordWriter - replacing hyperlink [265748 - 265770] HYPERLINK CharString, UML59... +2024-09-07 16:24:33,828 [main] TRACE AbstractWordWriter - replacing hyperlink [265826 - 265850] HYPERLINK Association, UML100... +2024-09-07 16:24:33,888 [main] TRACE AbstractWordWriter - replacing hyperlink [265897 - 265920] HYPERLINK InetAddress, UML65... +2024-09-07 16:24:33,947 [main] TRACE AbstractWordWriter - replacing hyperlink [265977 - 266001] HYPERLINK Association, UML100... +2024-09-07 16:24:34,007 [main] TRACE AbstractWordWriter - replacing hyperlink [266052 - 266079] HYPERLINK InetAddressType, UML64... +2024-09-07 16:24:34,063 [main] TRACE AbstractWordWriter - replacing hyperlink [266140 - 266164] HYPERLINK Association, UML100... +2024-09-07 16:24:34,120 [main] TRACE AbstractWordWriter - replacing hyperlink [266211 - 266232] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:34,178 [main] TRACE AbstractWordWriter - replacing hyperlink [266285 - 266309] HYPERLINK Association, UML100... +2024-09-07 16:24:34,236 [main] TRACE AbstractWordWriter - replacing hyperlink [266353 - 266372] HYPERLINK LnkType, UML78... +2024-09-07 16:24:34,295 [main] TRACE AbstractWordWriter - replacing hyperlink [266425 - 266449] HYPERLINK Association, UML100... +2024-09-07 16:24:34,354 [main] TRACE AbstractWordWriter - replacing hyperlink [266499 - 266523] HYPERLINK BooleanValue, UML52... +2024-09-07 16:24:34,411 [main] TRACE AbstractWordWriter - replacing hyperlink [266581 - 266611] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:24:34,469 [main] TRACE AbstractWordWriter - replacing hyperlink [266672 - 266691] HYPERLINK Integer, UML53... +2024-09-07 16:24:34,524 [main] TRACE AbstractWordWriter - replacing hyperlink [266744 - 266774] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:24:34,580 [main] TRACE AbstractWordWriter - replacing hyperlink [266830 - 266850] HYPERLINK Floating, UML56... +2024-09-07 16:24:34,638 [main] TRACE AbstractWordWriter - replacing hyperlink [266907 - 266937] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:24:34,696 [main] TRACE AbstractWordWriter - replacing hyperlink [266991 - 267011] HYPERLINK Floating, UML56... +2024-09-07 16:24:34,759 [main] TRACE AbstractWordWriter - replacing hyperlink [267068 - 267098] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:24:34,819 [main] TRACE AbstractWordWriter - replacing hyperlink [267162 - 267182] HYPERLINK Floating, UML56... +2024-09-07 16:24:34,877 [main] TRACE AbstractWordWriter - replacing hyperlink [267239 - 267269] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:24:34,937 [main] TRACE AbstractWordWriter - replacing hyperlink [267330 - 267350] HYPERLINK Floating, UML56... +2024-09-07 16:24:34,996 [main] TRACE AbstractWordWriter - replacing hyperlink [267407 - 267437] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:24:35,055 [main] TRACE AbstractWordWriter - replacing hyperlink [267493 - 267513] HYPERLINK Floating, UML56... +2024-09-07 16:24:35,113 [main] TRACE AbstractWordWriter - replacing hyperlink [267570 - 267600] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:24:35,171 [main] TRACE AbstractWordWriter - replacing hyperlink [267660 - 267680] HYPERLINK Floating, UML56... +2024-09-07 16:24:35,227 [main] TRACE AbstractWordWriter - replacing hyperlink [267737 - 267767] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:24:35,286 [main] TRACE AbstractWordWriter - replacing hyperlink [267818 - 267839] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:35,344 [main] TRACE AbstractWordWriter - replacing hyperlink [267894 - 267932] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:35,400 [main] TRACE AbstractWordWriter - replacing hyperlink [267991 - 268012] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:35,458 [main] TRACE AbstractWordWriter - replacing hyperlink [268067 - 268105] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:35,516 [main] TRACE AbstractWordWriter - replacing hyperlink [268164 - 268185] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:35,573 [main] TRACE AbstractWordWriter - replacing hyperlink [268240 - 268278] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:35,634 [main] TRACE AbstractWordWriter - replacing hyperlink [268337 - 268358] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:35,691 [main] TRACE AbstractWordWriter - replacing hyperlink [268413 - 268451] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:35,747 [main] TRACE AbstractWordWriter - replacing hyperlink [268513 - 268534] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:35,813 [main] TRACE AbstractWordWriter - replacing hyperlink [268589 - 268627] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:35,873 [main] TRACE AbstractWordWriter - replacing hyperlink [268687 - 268708] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:35,932 [main] TRACE AbstractWordWriter - replacing hyperlink [268763 - 268801] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:35,990 [main] TRACE AbstractWordWriter - replacing hyperlink [268860 - 268881] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:36,050 [main] TRACE AbstractWordWriter - replacing hyperlink [268936 - 268974] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:36,107 [main] TRACE AbstractWordWriter - replacing hyperlink [269038 - 269058] HYPERLINK Floating, UML56... +2024-09-07 16:24:36,164 [main] TRACE AbstractWordWriter - replacing hyperlink [269112 - 269150] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:36,222 [main] TRACE AbstractWordWriter - replacing hyperlink [269211 - 269232] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:36,281 [main] TRACE AbstractWordWriter - replacing hyperlink [269287 - 269325] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:36,339 [main] TRACE AbstractWordWriter - replacing hyperlink [269383 - 269404] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:36,398 [main] TRACE AbstractWordWriter - replacing hyperlink [269459 - 269497] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:36,455 [main] TRACE AbstractWordWriter - replacing hyperlink [269554 - 269575] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:36,510 [main] TRACE AbstractWordWriter - replacing hyperlink [269630 - 269668] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:36,569 [main] TRACE AbstractWordWriter - replacing hyperlink [269731 - 269752] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:36,626 [main] TRACE AbstractWordWriter - replacing hyperlink [269807 - 269845] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:36,686 [main] TRACE AbstractWordWriter - replacing hyperlink [269903 - 269924] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:36,741 [main] TRACE AbstractWordWriter - replacing hyperlink [269979 - 270017] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:36,800 [main] TRACE AbstractWordWriter - replacing hyperlink [270077 - 270098] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:36,860 [main] TRACE AbstractWordWriter - replacing hyperlink [270153 - 270191] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:36,918 [main] TRACE AbstractWordWriter - replacing hyperlink [270257 - 270278] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:36,976 [main] TRACE AbstractWordWriter - replacing hyperlink [270333 - 270371] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:37,037 [main] TRACE AbstractWordWriter - replacing hyperlink [270439 - 270460] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:37,095 [main] TRACE AbstractWordWriter - replacing hyperlink [270515 - 270553] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:37,155 [main] TRACE AbstractWordWriter - replacing hyperlink [270613 - 270634] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:37,211 [main] TRACE AbstractWordWriter - replacing hyperlink [270689 - 270727] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:37,269 [main] TRACE AbstractWordWriter - replacing hyperlink [270793 - 270814] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:37,325 [main] TRACE AbstractWordWriter - replacing hyperlink [270869 - 270907] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:37,385 [main] TRACE AbstractWordWriter - replacing hyperlink [270975 - 270996] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:37,444 [main] TRACE AbstractWordWriter - replacing hyperlink [271051 - 271089] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 16:24:37,510 [main] TRACE AbstractWordWriter - replacing hyperlink [271155 - 271176] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:37,581 [main] TRACE AbstractWordWriter - replacing hyperlink [271231 - 271256] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:37,653 [main] TRACE AbstractWordWriter - replacing hyperlink [271310 - 271331] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:37,723 [main] TRACE AbstractWordWriter - replacing hyperlink [271386 - 271411] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:37,795 [main] TRACE AbstractWordWriter - replacing hyperlink [271464 - 271485] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:37,877 [main] TRACE AbstractWordWriter - replacing hyperlink [271540 - 271565] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:37,958 [main] TRACE AbstractWordWriter - replacing hyperlink [271624 - 271645] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:38,028 [main] TRACE AbstractWordWriter - replacing hyperlink [271700 - 271725] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:38,098 [main] TRACE AbstractWordWriter - replacing hyperlink [271785 - 271806] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:38,173 [main] TRACE AbstractWordWriter - replacing hyperlink [271861 - 271886] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:38,250 [main] TRACE AbstractWordWriter - replacing hyperlink [271946 - 271967] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:38,325 [main] TRACE AbstractWordWriter - replacing hyperlink [272022 - 272047] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:38,406 [main] TRACE AbstractWordWriter - replacing hyperlink [272100 - 272121] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:38,487 [main] TRACE AbstractWordWriter - replacing hyperlink [272176 - 272201] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:38,560 [main] TRACE AbstractWordWriter - replacing hyperlink [272254 - 272275] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:38,638 [main] TRACE AbstractWordWriter - replacing hyperlink [272330 - 272355] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:38,704 [main] TRACE AbstractWordWriter - replacing hyperlink [272407 - 272428] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:38,775 [main] TRACE AbstractWordWriter - replacing hyperlink [272483 - 272508] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:38,857 [main] TRACE AbstractWordWriter - replacing hyperlink [272562 - 272583] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:38,941 [main] TRACE AbstractWordWriter - replacing hyperlink [272638 - 272663] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:39,019 [main] TRACE AbstractWordWriter - replacing hyperlink [272717 - 272738] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:39,089 [main] TRACE AbstractWordWriter - replacing hyperlink [272793 - 272818] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:39,164 [main] TRACE AbstractWordWriter - replacing hyperlink [272876 - 272897] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:39,242 [main] TRACE AbstractWordWriter - replacing hyperlink [272952 - 272977] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:39,321 [main] TRACE AbstractWordWriter - replacing hyperlink [273035 - 273056] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:39,406 [main] TRACE AbstractWordWriter - replacing hyperlink [273111 - 273136] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:39,482 [main] TRACE AbstractWordWriter - replacing hyperlink [273192 - 273213] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:39,554 [main] TRACE AbstractWordWriter - replacing hyperlink [273268 - 273293] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:39,624 [main] TRACE AbstractWordWriter - replacing hyperlink [273349 - 273370] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:39,695 [main] TRACE AbstractWordWriter - replacing hyperlink [273425 - 273450] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:39,767 [main] TRACE AbstractWordWriter - replacing hyperlink [273506 - 273527] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:39,852 [main] TRACE AbstractWordWriter - replacing hyperlink [273582 - 273607] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:39,940 [main] TRACE AbstractWordWriter - replacing hyperlink [273663 - 273684] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:40,011 [main] TRACE AbstractWordWriter - replacing hyperlink [273739 - 273764] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:40,085 [main] TRACE AbstractWordWriter - replacing hyperlink [273823 - 273844] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:40,156 [main] TRACE AbstractWordWriter - replacing hyperlink [273899 - 273924] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:40,228 [main] TRACE AbstractWordWriter - replacing hyperlink [273983 - 274004] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:40,305 [main] TRACE AbstractWordWriter - replacing hyperlink [274059 - 274084] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:40,433 [main] TRACE AbstractWordWriter - replacing hyperlink [274137 - 274158] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:40,517 [main] TRACE AbstractWordWriter - replacing hyperlink [274213 - 274238] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:40,583 [main] TRACE AbstractWordWriter - replacing hyperlink [274289 - 274310] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:40,658 [main] TRACE AbstractWordWriter - replacing hyperlink [274365 - 274390] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:40,726 [main] TRACE AbstractWordWriter - replacing hyperlink [274443 - 274464] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:40,797 [main] TRACE AbstractWordWriter - replacing hyperlink [274519 - 274544] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:40,868 [main] TRACE AbstractWordWriter - replacing hyperlink [274596 - 274617] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:40,948 [main] TRACE AbstractWordWriter - replacing hyperlink [274672 - 274697] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:41,021 [main] TRACE AbstractWordWriter - replacing hyperlink [274750 - 274771] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:41,096 [main] TRACE AbstractWordWriter - replacing hyperlink [274826 - 274851] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:41,178 [main] TRACE AbstractWordWriter - replacing hyperlink [274905 - 274926] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:41,252 [main] TRACE AbstractWordWriter - replacing hyperlink [274981 - 275006] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:41,324 [main] TRACE AbstractWordWriter - replacing hyperlink [275059 - 275080] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:41,392 [main] TRACE AbstractWordWriter - replacing hyperlink [275135 - 275160] HYPERLINK IEC62351part5, UML98... +2024-09-07 16:24:41,466 [main] TRACE AbstractWordWriter - replacing hyperlink [276211 - 276230] HYPERLINK Integer, UML53... +2024-09-07 16:24:41,531 [main] TRACE AbstractWordWriter - replacing hyperlink [276333 - 276352] HYPERLINK Integer, UML53... +2024-09-07 16:24:41,598 [main] TRACE AbstractWordWriter - replacing hyperlink [276446 - 276463] HYPERLINK CntRs, UML67... +2024-09-07 16:24:41,669 [main] TRACE AbstractWordWriter - replacing hyperlink [276552 - 276573] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:41,742 [main] TRACE AbstractWordWriter - replacing hyperlink [276705 - 276724] HYPERLINK Integer, UML53... +2024-09-07 16:24:41,821 [main] TRACE AbstractWordWriter - replacing hyperlink [276821 - 276840] HYPERLINK Integer, UML53... +2024-09-07 16:24:41,901 [main] TRACE AbstractWordWriter - replacing hyperlink [276928 - 276947] HYPERLINK Integer, UML53... +2024-09-07 16:24:41,979 [main] TRACE AbstractWordWriter - replacing hyperlink [277038 - 277057] HYPERLINK Integer, UML53... +2024-09-07 16:24:42,048 [main] TRACE AbstractWordWriter - replacing hyperlink [277146 - 277167] HYPERLINK EventType, UML72... +2024-09-07 16:24:42,122 [main] TRACE AbstractWordWriter - replacing hyperlink [277267 - 277288] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:42,195 [main] TRACE AbstractWordWriter - replacing hyperlink [277437 - 277458] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:42,274 [main] TRACE AbstractWordWriter - replacing hyperlink [277626 - 277647] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:42,336 [main] TRACE AbstractWordWriter - replacing hyperlink [277934 - 277953] HYPERLINK Integer, UML53... +2024-09-07 16:24:42,405 [main] TRACE AbstractWordWriter - replacing hyperlink [278048 - 278067] HYPERLINK Integer, UML53... +2024-09-07 16:24:42,475 [main] TRACE AbstractWordWriter - replacing hyperlink [278153 - 278172] HYPERLINK Integer, UML53... +2024-09-07 16:24:42,538 [main] TRACE AbstractWordWriter - replacing hyperlink [278268 - 278287] HYPERLINK Integer, UML53... +2024-09-07 16:24:42,610 [main] TRACE AbstractWordWriter - replacing hyperlink [279193 - 279214] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:42,679 [main] TRACE AbstractWordWriter - replacing hyperlink [279441 - 279462] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:42,741 [main] TRACE AbstractWordWriter - replacing hyperlink [279687 - 279708] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:42,809 [main] TRACE AbstractWordWriter - replacing hyperlink [279825 - 279846] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:42,877 [main] TRACE AbstractWordWriter - replacing hyperlink [279959 - 279980] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:42,948 [main] TRACE AbstractWordWriter - replacing hyperlink [280149 - 280169] HYPERLINK Floating, UML56... +2024-09-07 16:24:43,023 [main] TRACE AbstractWordWriter - replacing hyperlink [280362 - 280383] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:43,098 [main] TRACE AbstractWordWriter - replacing hyperlink [280471 - 280492] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:43,167 [main] TRACE AbstractWordWriter - replacing hyperlink [280572 - 280593] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:43,234 [main] TRACE AbstractWordWriter - replacing hyperlink [280828 - 280849] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:43,310 [main] TRACE AbstractWordWriter - replacing hyperlink [281082 - 281103] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:43,384 [main] TRACE AbstractWordWriter - replacing hyperlink [281345 - 281366] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:43,450 [main] TRACE AbstractWordWriter - replacing hyperlink [281609 - 281630] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:43,515 [main] TRACE AbstractWordWriter - replacing hyperlink [282081 - 282102] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:43,583 [main] TRACE AbstractWordWriter - replacing hyperlink [282231 - 282252] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:43,664 [main] TRACE AbstractWordWriter - replacing hyperlink [282350 - 282367] HYPERLINK CntRs, UML67... +2024-09-07 16:24:43,742 [main] TRACE AbstractWordWriter - replacing hyperlink [282454 - 282475] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:43,833 [main] TRACE AbstractWordWriter - replacing hyperlink [282596 - 282617] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:43,931 [main] TRACE AbstractWordWriter - replacing hyperlink [282738 - 282759] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:44,001 [main] TRACE AbstractWordWriter - replacing hyperlink [282864 - 282885] HYPERLINK EventType, UML72... +2024-09-07 16:24:44,067 [main] TRACE AbstractWordWriter - replacing hyperlink [282977 - 283004] HYPERLINK MMSAssociation, UML104... +2024-09-07 16:24:44,136 [main] TRACE AbstractWordWriter - replacing hyperlink [283161 - 283182] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:44,210 [main] TRACE AbstractWordWriter - replacing hyperlink [283326 - 283348] HYPERLINK CharString, UML59... +2024-09-07 16:24:44,281 [main] TRACE AbstractWordWriter - replacing hyperlink [283432 - 283454] HYPERLINK CharString, UML59... +2024-09-07 16:24:44,354 [main] TRACE AbstractWordWriter - replacing hyperlink [283543 - 283579] HYPERLINK MMSSecurityNotification, UML115... +2024-09-07 16:24:44,432 [main] TRACE AbstractWordWriter - replacing hyperlink [283696 - 283715] HYPERLINK Integer, UML53... +2024-09-07 16:24:44,501 [main] TRACE AbstractWordWriter - replacing hyperlink [283878 - 283899] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:44,570 [main] TRACE AbstractWordWriter - replacing hyperlink [284067 - 284095] HYPERLINK MMSNotification, UML116... +2024-09-07 16:24:44,638 [main] TRACE AbstractWordWriter - replacing hyperlink [284199 - 284220] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:44,710 [main] TRACE AbstractWordWriter - replacing hyperlink [284363 - 284384] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:44,779 [main] TRACE AbstractWordWriter - replacing hyperlink [284522 - 284543] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:44,839 [main] TRACE AbstractWordWriter - replacing hyperlink [284646 - 284667] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:44,898 [main] TRACE AbstractWordWriter - replacing hyperlink [284722 - 284750] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 16:24:44,957 [main] TRACE AbstractWordWriter - replacing hyperlink [284801 - 284822] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:45,018 [main] TRACE AbstractWordWriter - replacing hyperlink [284877 - 284905] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 16:24:45,075 [main] TRACE AbstractWordWriter - replacing hyperlink [284958 - 284979] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:45,135 [main] TRACE AbstractWordWriter - replacing hyperlink [285034 - 285062] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 16:24:45,195 [main] TRACE AbstractWordWriter - replacing hyperlink [285115 - 285136] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:45,257 [main] TRACE AbstractWordWriter - replacing hyperlink [285191 - 285219] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 16:24:45,316 [main] TRACE AbstractWordWriter - replacing hyperlink [285272 - 285293] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:45,375 [main] TRACE AbstractWordWriter - replacing hyperlink [285348 - 285376] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 16:24:45,435 [main] TRACE AbstractWordWriter - replacing hyperlink [285431 - 285451] HYPERLINK Floating, UML56... +2024-09-07 16:24:45,499 [main] TRACE AbstractWordWriter - replacing hyperlink [285508 - 285536] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 16:24:45,560 [main] TRACE AbstractWordWriter - replacing hyperlink [285588 - 285609] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:45,618 [main] TRACE AbstractWordWriter - replacing hyperlink [285664 - 285692] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 16:24:45,676 [main] TRACE AbstractWordWriter - replacing hyperlink [285744 - 285765] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:45,733 [main] TRACE AbstractWordWriter - replacing hyperlink [285820 - 285848] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 16:24:45,792 [main] TRACE AbstractWordWriter - replacing hyperlink [285897 - 285918] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:45,849 [main] TRACE AbstractWordWriter - replacing hyperlink [285973 - 286001] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 16:24:45,909 [main] TRACE AbstractWordWriter - replacing hyperlink [286050 - 286071] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:46,004 [main] TRACE AbstractWordWriter - replacing hyperlink [286126 - 286154] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 16:24:46,103 [main] TRACE AbstractWordWriter - replacing hyperlink [286204 - 286225] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:46,177 [main] TRACE AbstractWordWriter - replacing hyperlink [286280 - 286308] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 16:24:46,284 [main] TRACE AbstractWordWriter - replacing hyperlink [286358 - 286379] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:46,345 [main] TRACE AbstractWordWriter - replacing hyperlink [286434 - 286462] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 16:24:46,403 [main] TRACE AbstractWordWriter - replacing hyperlink [286517 - 286538] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:46,464 [main] TRACE AbstractWordWriter - replacing hyperlink [286593 - 286621] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 16:24:46,527 [main] TRACE AbstractWordWriter - replacing hyperlink [287053 - 287079] HYPERLINK BooleanValueTs, UML54... +2024-09-07 16:24:46,589 [main] TRACE AbstractWordWriter - replacing hyperlink [287174 - 287197] HYPERLINK EntityIndex, UML66... +2024-09-07 16:24:46,650 [main] TRACE AbstractWordWriter - replacing hyperlink [287271 - 287295] HYPERLINK BooleanValue, UML52... +2024-09-07 16:24:46,709 [main] TRACE AbstractWordWriter - replacing hyperlink [287397 - 287414] HYPERLINK CntRs, UML67... +2024-09-07 16:24:46,766 [main] TRACE AbstractWordWriter - replacing hyperlink [287497 - 287517] HYPERLINK Floating, UML56... +2024-09-07 16:24:46,828 [main] TRACE AbstractWordWriter - replacing hyperlink [287649 - 287673] HYPERLINK BooleanValue, UML52... +2024-09-07 16:24:46,888 [main] TRACE AbstractWordWriter - replacing hyperlink [287807 - 287830] HYPERLINK InetAddress, UML65... +2024-09-07 16:24:46,951 [main] TRACE AbstractWordWriter - replacing hyperlink [287931 - 287958] HYPERLINK InetAddressType, UML64... +2024-09-07 16:24:47,009 [main] TRACE AbstractWordWriter - replacing hyperlink [288047 - 288067] HYPERLINK Selector, UML62... +2024-09-07 16:24:47,070 [main] TRACE AbstractWordWriter - replacing hyperlink [288159 - 288179] HYPERLINK Selector, UML62... +2024-09-07 16:24:47,130 [main] TRACE AbstractWordWriter - replacing hyperlink [288266 - 288286] HYPERLINK Selector, UML62... +2024-09-07 16:24:47,189 [main] TRACE AbstractWordWriter - replacing hyperlink [288384 - 288403] HYPERLINK Integer, UML53... +2024-09-07 16:24:47,252 [main] TRACE AbstractWordWriter - replacing hyperlink [288535 - 288557] HYPERLINK FloatingTs, UML57... +2024-09-07 16:24:47,311 [main] TRACE AbstractWordWriter - replacing hyperlink [288827 - 288858] HYPERLINK SecurityProfileType, UML76... +2024-09-07 16:24:47,373 [main] TRACE AbstractWordWriter - replacing hyperlink [289026 - 289047] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:47,431 [main] TRACE AbstractWordWriter - replacing hyperlink [289102 - 289130] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 16:24:47,490 [main] TRACE AbstractWordWriter - replacing hyperlink [289181 - 289202] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:47,549 [main] TRACE AbstractWordWriter - replacing hyperlink [289257 - 289285] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 16:24:47,612 [main] TRACE AbstractWordWriter - replacing hyperlink [289338 - 289359] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:47,673 [main] TRACE AbstractWordWriter - replacing hyperlink [289414 - 289442] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 16:24:47,733 [main] TRACE AbstractWordWriter - replacing hyperlink [289495 - 289516] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:47,793 [main] TRACE AbstractWordWriter - replacing hyperlink [289571 - 289599] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 16:24:47,852 [main] TRACE AbstractWordWriter - replacing hyperlink [289652 - 289673] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:47,911 [main] TRACE AbstractWordWriter - replacing hyperlink [289728 - 289756] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 16:24:47,971 [main] TRACE AbstractWordWriter - replacing hyperlink [289811 - 289831] HYPERLINK Floating, UML56... +2024-09-07 16:24:48,029 [main] TRACE AbstractWordWriter - replacing hyperlink [289888 - 289916] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 16:24:48,092 [main] TRACE AbstractWordWriter - replacing hyperlink [289968 - 289989] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:48,150 [main] TRACE AbstractWordWriter - replacing hyperlink [290044 - 290072] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 16:24:48,209 [main] TRACE AbstractWordWriter - replacing hyperlink [290124 - 290145] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:48,274 [main] TRACE AbstractWordWriter - replacing hyperlink [290200 - 290228] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 16:24:48,333 [main] TRACE AbstractWordWriter - replacing hyperlink [290277 - 290298] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:48,393 [main] TRACE AbstractWordWriter - replacing hyperlink [290353 - 290381] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 16:24:48,453 [main] TRACE AbstractWordWriter - replacing hyperlink [290430 - 290451] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:48,514 [main] TRACE AbstractWordWriter - replacing hyperlink [290506 - 290534] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 16:24:48,574 [main] TRACE AbstractWordWriter - replacing hyperlink [290584 - 290605] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:48,640 [main] TRACE AbstractWordWriter - replacing hyperlink [290660 - 290688] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 16:24:48,706 [main] TRACE AbstractWordWriter - replacing hyperlink [290738 - 290759] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:48,762 [main] TRACE AbstractWordWriter - replacing hyperlink [290814 - 290842] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 16:24:48,823 [main] TRACE AbstractWordWriter - replacing hyperlink [290897 - 290918] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:48,887 [main] TRACE AbstractWordWriter - replacing hyperlink [290973 - 291001] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 16:24:48,946 [main] TRACE AbstractWordWriter - replacing hyperlink [291055 - 291079] HYPERLINK BooleanValue, UML52... +2024-09-07 16:24:49,006 [main] TRACE AbstractWordWriter - replacing hyperlink [291137 - 291167] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:24:49,065 [main] TRACE AbstractWordWriter - replacing hyperlink [291228 - 291247] HYPERLINK Integer, UML53... +2024-09-07 16:24:49,124 [main] TRACE AbstractWordWriter - replacing hyperlink [291300 - 291330] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:24:49,185 [main] TRACE AbstractWordWriter - replacing hyperlink [291386 - 291406] HYPERLINK Floating, UML56... +2024-09-07 16:24:49,245 [main] TRACE AbstractWordWriter - replacing hyperlink [291463 - 291493] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:24:49,308 [main] TRACE AbstractWordWriter - replacing hyperlink [291547 - 291567] HYPERLINK Floating, UML56... +2024-09-07 16:24:49,368 [main] TRACE AbstractWordWriter - replacing hyperlink [291624 - 291654] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:24:49,426 [main] TRACE AbstractWordWriter - replacing hyperlink [291718 - 291738] HYPERLINK Floating, UML56... +2024-09-07 16:24:49,485 [main] TRACE AbstractWordWriter - replacing hyperlink [291795 - 291825] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:24:49,541 [main] TRACE AbstractWordWriter - replacing hyperlink [291886 - 291906] HYPERLINK Floating, UML56... +2024-09-07 16:24:49,597 [main] TRACE AbstractWordWriter - replacing hyperlink [291963 - 291993] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:24:49,658 [main] TRACE AbstractWordWriter - replacing hyperlink [292049 - 292069] HYPERLINK Floating, UML56... +2024-09-07 16:24:49,728 [main] TRACE AbstractWordWriter - replacing hyperlink [292126 - 292156] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:24:49,789 [main] TRACE AbstractWordWriter - replacing hyperlink [292216 - 292236] HYPERLINK Floating, UML56... +2024-09-07 16:24:49,848 [main] TRACE AbstractWordWriter - replacing hyperlink [292293 - 292323] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 16:24:49,907 [main] TRACE AbstractWordWriter - replacing hyperlink [292745 - 292766] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:49,966 [main] TRACE AbstractWordWriter - replacing hyperlink [292874 - 292895] HYPERLINK EventType, UML72... +2024-09-07 16:24:50,026 [main] TRACE AbstractWordWriter - replacing hyperlink [292995 - 293016] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:50,087 [main] TRACE AbstractWordWriter - replacing hyperlink [293160 - 293181] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:50,147 [main] TRACE AbstractWordWriter - replacing hyperlink [293619 - 293640] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:50,206 [main] TRACE AbstractWordWriter - replacing hyperlink [293761 - 293782] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:50,267 [main] TRACE AbstractWordWriter - replacing hyperlink [293900 - 293921] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:50,332 [main] TRACE AbstractWordWriter - replacing hyperlink [294016 - 294037] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:50,390 [main] TRACE AbstractWordWriter - replacing hyperlink [294849 - 294870] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:50,449 [main] TRACE AbstractWordWriter - replacing hyperlink [294984 - 295005] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:50,509 [main] TRACE AbstractWordWriter - replacing hyperlink [295130 - 295151] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:50,569 [main] TRACE AbstractWordWriter - replacing hyperlink [295660 - 295682] HYPERLINK CharString, UML59... +2024-09-07 16:24:50,629 [main] TRACE AbstractWordWriter - replacing hyperlink [295787 - 295804] HYPERLINK CntRs, UML67... +2024-09-07 16:24:50,685 [main] TRACE AbstractWordWriter - replacing hyperlink [295883 - 295904] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:50,744 [main] TRACE AbstractWordWriter - replacing hyperlink [296030 - 296052] HYPERLINK CharString, UML59... +2024-09-07 16:24:50,809 [main] TRACE AbstractWordWriter - replacing hyperlink [296152 - 296172] HYPERLINK Floating, UML56... +2024-09-07 16:24:50,869 [main] TRACE AbstractWordWriter - replacing hyperlink [296312 - 296333] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:50,927 [main] TRACE AbstractWordWriter - replacing hyperlink [296388 - 296415] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 16:24:50,987 [main] TRACE AbstractWordWriter - replacing hyperlink [296469 - 296490] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:51,045 [main] TRACE AbstractWordWriter - replacing hyperlink [296545 - 296572] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 16:24:51,104 [main] TRACE AbstractWordWriter - replacing hyperlink [296632 - 296653] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:51,166 [main] TRACE AbstractWordWriter - replacing hyperlink [296708 - 296735] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 16:24:51,226 [main] TRACE AbstractWordWriter - replacing hyperlink [297181 - 297203] HYPERLINK CharString, UML59... +2024-09-07 16:24:51,288 [main] TRACE AbstractWordWriter - replacing hyperlink [297308 - 297325] HYPERLINK CntRs, UML67... +2024-09-07 16:24:51,354 [main] TRACE AbstractWordWriter - replacing hyperlink [297406 - 297427] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:51,414 [main] TRACE AbstractWordWriter - replacing hyperlink [297666 - 297687] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:51,472 [main] TRACE AbstractWordWriter - replacing hyperlink [297805 - 297825] HYPERLINK Floating, UML56... +2024-09-07 16:24:51,531 [main] TRACE AbstractWordWriter - replacing hyperlink [297957 - 297979] HYPERLINK CharString, UML59... +2024-09-07 16:24:51,589 [main] TRACE AbstractWordWriter - replacing hyperlink [298072 - 298096] HYPERLINK CharStringTs, UML60... +2024-09-07 16:24:51,649 [main] TRACE AbstractWordWriter - replacing hyperlink [298206 - 298227] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:51,706 [main] TRACE AbstractWordWriter - replacing hyperlink [298282 - 298309] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 16:24:51,768 [main] TRACE AbstractWordWriter - replacing hyperlink [298363 - 298384] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:51,832 [main] TRACE AbstractWordWriter - replacing hyperlink [298439 - 298466] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 16:24:51,902 [main] TRACE AbstractWordWriter - replacing hyperlink [298526 - 298547] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:51,961 [main] TRACE AbstractWordWriter - replacing hyperlink [298602 - 298629] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 16:24:52,017 [main] TRACE AbstractWordWriter - replacing hyperlink [299455 - 299472] HYPERLINK CntRs, UML67... +2024-09-07 16:24:52,078 [main] TRACE AbstractWordWriter - replacing hyperlink [299560 - 299581] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:52,136 [main] TRACE AbstractWordWriter - replacing hyperlink [299690 - 299711] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:52,195 [main] TRACE AbstractWordWriter - replacing hyperlink [299842 - 299879] HYPERLINK SVPublisherAssociationIP, UML119... +2024-09-07 16:24:52,254 [main] TRACE AbstractWordWriter - replacing hyperlink [300050 - 300087] HYPERLINK SVPublisherAssociationL2, UML120... +2024-09-07 16:24:52,319 [main] TRACE AbstractWordWriter - replacing hyperlink [300286 - 300313] HYPERLINK SVNotification, UML130... +2024-09-07 16:24:52,380 [main] TRACE AbstractWordWriter - replacing hyperlink [300400 - 300437] HYPERLINK SVSubcriberAssociationIP, UML124... +2024-09-07 16:24:52,440 [main] TRACE AbstractWordWriter - replacing hyperlink [300609 - 300646] HYPERLINK SVSubcriberAssociationL2, UML125... +2024-09-07 16:24:52,501 [main] TRACE AbstractWordWriter - replacing hyperlink [300843 - 300864] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:52,560 [main] TRACE AbstractWordWriter - replacing hyperlink [300919 - 300946] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 16:24:52,620 [main] TRACE AbstractWordWriter - replacing hyperlink [301000 - 301021] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:52,682 [main] TRACE AbstractWordWriter - replacing hyperlink [301076 - 301103] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 16:24:52,742 [main] TRACE AbstractWordWriter - replacing hyperlink [301163 - 301184] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:52,800 [main] TRACE AbstractWordWriter - replacing hyperlink [301239 - 301266] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 16:24:52,858 [main] TRACE AbstractWordWriter - replacing hyperlink [301801 - 301824] HYPERLINK InetAddress, UML65... +2024-09-07 16:24:52,921 [main] TRACE AbstractWordWriter - replacing hyperlink [301910 - 301937] HYPERLINK InetAddressType, UML64... +2024-09-07 16:24:53,005 [main] TRACE AbstractWordWriter - replacing hyperlink [302021 - 302043] HYPERLINK CharString, UML59... +2024-09-07 16:24:53,068 [main] TRACE AbstractWordWriter - replacing hyperlink [302096 - 302137] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 16:24:53,131 [main] TRACE AbstractWordWriter - replacing hyperlink [302196 - 302213] HYPERLINK CntRs, UML67... +2024-09-07 16:24:53,192 [main] TRACE AbstractWordWriter - replacing hyperlink [302264 - 302305] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 16:24:53,251 [main] TRACE AbstractWordWriter - replacing hyperlink [302364 - 302385] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:53,315 [main] TRACE AbstractWordWriter - replacing hyperlink [302440 - 302481] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 16:24:53,375 [main] TRACE AbstractWordWriter - replacing hyperlink [302540 - 302562] HYPERLINK CharString, UML59... +2024-09-07 16:24:53,435 [main] TRACE AbstractWordWriter - replacing hyperlink [302618 - 302659] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 16:24:53,497 [main] TRACE AbstractWordWriter - replacing hyperlink [302727 - 302747] HYPERLINK Floating, UML56... +2024-09-07 16:24:53,555 [main] TRACE AbstractWordWriter - replacing hyperlink [302801 - 302842] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 16:24:53,614 [main] TRACE AbstractWordWriter - replacing hyperlink [302913 - 302934] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:53,675 [main] TRACE AbstractWordWriter - replacing hyperlink [302989 - 303016] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 16:24:53,733 [main] TRACE AbstractWordWriter - replacing hyperlink [303070 - 303091] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:53,793 [main] TRACE AbstractWordWriter - replacing hyperlink [303146 - 303173] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 16:24:53,852 [main] TRACE AbstractWordWriter - replacing hyperlink [303233 - 303254] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:53,914 [main] TRACE AbstractWordWriter - replacing hyperlink [303309 - 303336] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 16:24:53,976 [main] TRACE AbstractWordWriter - replacing hyperlink [303879 - 303901] HYPERLINK MacAddress, UML63... +2024-09-07 16:24:54,040 [main] TRACE AbstractWordWriter - replacing hyperlink [304032 - 304054] HYPERLINK CharString, UML59... +2024-09-07 16:24:54,098 [main] TRACE AbstractWordWriter - replacing hyperlink [304107 - 304148] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 16:24:54,166 [main] TRACE AbstractWordWriter - replacing hyperlink [304207 - 304224] HYPERLINK CntRs, UML67... +2024-09-07 16:24:54,225 [main] TRACE AbstractWordWriter - replacing hyperlink [304275 - 304316] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 16:24:54,288 [main] TRACE AbstractWordWriter - replacing hyperlink [304375 - 304396] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:54,348 [main] TRACE AbstractWordWriter - replacing hyperlink [304451 - 304492] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 16:24:54,408 [main] TRACE AbstractWordWriter - replacing hyperlink [304551 - 304573] HYPERLINK CharString, UML59... +2024-09-07 16:24:54,470 [main] TRACE AbstractWordWriter - replacing hyperlink [304629 - 304670] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 16:24:54,529 [main] TRACE AbstractWordWriter - replacing hyperlink [304738 - 304758] HYPERLINK Floating, UML56... +2024-09-07 16:24:54,590 [main] TRACE AbstractWordWriter - replacing hyperlink [304812 - 304853] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 16:24:54,649 [main] TRACE AbstractWordWriter - replacing hyperlink [304924 - 304945] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:54,711 [main] TRACE AbstractWordWriter - replacing hyperlink [305000 - 305027] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 16:24:54,772 [main] TRACE AbstractWordWriter - replacing hyperlink [305081 - 305102] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:54,828 [main] TRACE AbstractWordWriter - replacing hyperlink [305157 - 305184] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 16:24:54,889 [main] TRACE AbstractWordWriter - replacing hyperlink [305244 - 305265] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:54,948 [main] TRACE AbstractWordWriter - replacing hyperlink [305320 - 305347] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 16:24:55,007 [main] TRACE AbstractWordWriter - replacing hyperlink [305881 - 305904] HYPERLINK InetAddress, UML65... +2024-09-07 16:24:55,070 [main] TRACE AbstractWordWriter - replacing hyperlink [305984 - 306011] HYPERLINK InetAddressType, UML64... +2024-09-07 16:24:55,130 [main] TRACE AbstractWordWriter - replacing hyperlink [306095 - 306117] HYPERLINK CharString, UML59... +2024-09-07 16:24:55,190 [main] TRACE AbstractWordWriter - replacing hyperlink [306170 - 306212] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 16:24:55,251 [main] TRACE AbstractWordWriter - replacing hyperlink [306272 - 306289] HYPERLINK CntRs, UML67... +2024-09-07 16:24:55,312 [main] TRACE AbstractWordWriter - replacing hyperlink [306340 - 306382] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 16:24:55,374 [main] TRACE AbstractWordWriter - replacing hyperlink [306444 - 306465] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:55,432 [main] TRACE AbstractWordWriter - replacing hyperlink [306520 - 306562] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 16:24:55,491 [main] TRACE AbstractWordWriter - replacing hyperlink [306640 - 306661] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:55,551 [main] TRACE AbstractWordWriter - replacing hyperlink [306716 - 306758] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 16:24:55,610 [main] TRACE AbstractWordWriter - replacing hyperlink [306827 - 306847] HYPERLINK Floating, UML56... +2024-09-07 16:24:55,671 [main] TRACE AbstractWordWriter - replacing hyperlink [306901 - 306943] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 16:24:55,731 [main] TRACE AbstractWordWriter - replacing hyperlink [307003 - 307025] HYPERLINK CharString, UML59... +2024-09-07 16:24:55,792 [main] TRACE AbstractWordWriter - replacing hyperlink [307081 - 307123] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 16:24:55,852 [main] TRACE AbstractWordWriter - replacing hyperlink [307185 - 307209] HYPERLINK CharStringTs, UML60... +2024-09-07 16:24:55,912 [main] TRACE AbstractWordWriter - replacing hyperlink [307267 - 307309] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 16:24:55,972 [main] TRACE AbstractWordWriter - replacing hyperlink [307381 - 307402] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:56,033 [main] TRACE AbstractWordWriter - replacing hyperlink [307457 - 307484] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 16:24:56,101 [main] TRACE AbstractWordWriter - replacing hyperlink [307538 - 307559] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:56,163 [main] TRACE AbstractWordWriter - replacing hyperlink [307614 - 307641] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 16:24:56,225 [main] TRACE AbstractWordWriter - replacing hyperlink [307701 - 307722] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:56,286 [main] TRACE AbstractWordWriter - replacing hyperlink [307777 - 307804] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 16:24:56,348 [main] TRACE AbstractWordWriter - replacing hyperlink [308346 - 308368] HYPERLINK MacAddress, UML63... +2024-09-07 16:24:56,407 [main] TRACE AbstractWordWriter - replacing hyperlink [308499 - 308521] HYPERLINK CharString, UML59... +2024-09-07 16:24:56,466 [main] TRACE AbstractWordWriter - replacing hyperlink [308574 - 308616] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 16:24:56,525 [main] TRACE AbstractWordWriter - replacing hyperlink [308676 - 308693] HYPERLINK CntRs, UML67... +2024-09-07 16:24:56,585 [main] TRACE AbstractWordWriter - replacing hyperlink [308744 - 308786] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 16:24:56,644 [main] TRACE AbstractWordWriter - replacing hyperlink [308848 - 308869] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:56,704 [main] TRACE AbstractWordWriter - replacing hyperlink [308924 - 308966] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 16:24:56,766 [main] TRACE AbstractWordWriter - replacing hyperlink [309044 - 309065] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:56,825 [main] TRACE AbstractWordWriter - replacing hyperlink [309120 - 309162] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 16:24:56,886 [main] TRACE AbstractWordWriter - replacing hyperlink [309231 - 309251] HYPERLINK Floating, UML56... +2024-09-07 16:24:56,945 [main] TRACE AbstractWordWriter - replacing hyperlink [309305 - 309347] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 16:24:57,004 [main] TRACE AbstractWordWriter - replacing hyperlink [309407 - 309429] HYPERLINK CharString, UML59... +2024-09-07 16:24:57,066 [main] TRACE AbstractWordWriter - replacing hyperlink [309485 - 309527] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 16:24:57,124 [main] TRACE AbstractWordWriter - replacing hyperlink [309589 - 309613] HYPERLINK CharStringTs, UML60... +2024-09-07 16:24:57,187 [main] TRACE AbstractWordWriter - replacing hyperlink [309671 - 309713] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 16:24:57,249 [main] TRACE AbstractWordWriter - replacing hyperlink [309785 - 309806] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:57,309 [main] TRACE AbstractWordWriter - replacing hyperlink [309861 - 309888] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 16:24:57,370 [main] TRACE AbstractWordWriter - replacing hyperlink [309942 - 309963] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:57,430 [main] TRACE AbstractWordWriter - replacing hyperlink [310018 - 310045] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 16:24:57,488 [main] TRACE AbstractWordWriter - replacing hyperlink [310105 - 310126] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:57,548 [main] TRACE AbstractWordWriter - replacing hyperlink [310181 - 310208] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 16:24:57,607 [main] TRACE AbstractWordWriter - replacing hyperlink [310593 - 310614] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:57,667 [main] TRACE AbstractWordWriter - replacing hyperlink [310669 - 310696] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 16:24:57,725 [main] TRACE AbstractWordWriter - replacing hyperlink [310750 - 310771] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:57,785 [main] TRACE AbstractWordWriter - replacing hyperlink [310826 - 310853] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 16:24:57,846 [main] TRACE AbstractWordWriter - replacing hyperlink [310913 - 310934] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:57,906 [main] TRACE AbstractWordWriter - replacing hyperlink [310989 - 311016] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 16:24:57,968 [main] TRACE AbstractWordWriter - replacing hyperlink [311884 - 311908] HYPERLINK BooleanValue, UML52... +2024-09-07 16:24:58,031 [main] TRACE AbstractWordWriter - replacing hyperlink [312055 - 312079] HYPERLINK BooleanValue, UML52... +2024-09-07 16:24:58,088 [main] TRACE AbstractWordWriter - replacing hyperlink [312163 - 312182] HYPERLINK Integer, UML53... +2024-09-07 16:24:58,150 [main] TRACE AbstractWordWriter - replacing hyperlink [312279 - 312300] HYPERLINK IntegerTs, UML58... +2024-09-07 16:24:58,211 [main] TRACE AbstractWordWriter - replacing hyperlink [312446 - 312467] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:58,280 [main] TRACE AbstractWordWriter - replacing hyperlink [312585 - 312606] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:58,339 [main] TRACE AbstractWordWriter - replacing hyperlink [312720 - 312746] HYPERLINK BooleanValueTs, UML54... +2024-09-07 16:24:58,401 [main] TRACE AbstractWordWriter - replacing hyperlink [313070 - 313092] HYPERLINK CharString, UML59... +2024-09-07 16:24:58,462 [main] TRACE AbstractWordWriter - replacing hyperlink [313147 - 313171] HYPERLINK CharStringTs, UML60... +2024-09-07 16:24:58,520 [main] TRACE AbstractWordWriter - replacing hyperlink [313224 - 313246] HYPERLINK CharString, UML59... +2024-09-07 16:24:58,581 [main] TRACE AbstractWordWriter - replacing hyperlink [313332 - 313356] HYPERLINK CharStringTs, UML60... +2024-09-07 16:24:58,640 [main] TRACE AbstractWordWriter - replacing hyperlink [313448 - 313469] HYPERLINK IntegerTs, UML58... +2024-09-07 16:24:58,700 [main] TRACE AbstractWordWriter - replacing hyperlink [313575 - 313596] HYPERLINK IntegerTs, UML58... +2024-09-07 16:24:58,760 [main] TRACE AbstractWordWriter - replacing hyperlink [313708 - 313729] HYPERLINK IntegerTs, UML58... +2024-09-07 16:24:58,817 [main] TRACE AbstractWordWriter - replacing hyperlink [313813 - 313834] HYPERLINK IntegerTs, UML58... +2024-09-07 16:24:58,882 [main] TRACE AbstractWordWriter - replacing hyperlink [313910 - 313931] HYPERLINK Timestamp, UML61... +2024-09-07 16:24:58,942 [main] TRACE AbstractWordWriter - replacing hyperlink [313982 - 314004] HYPERLINK CharString, UML59... +2024-09-07 16:24:59,000 [main] TRACE AbstractWordWriter - replacing hyperlink [314057 - 314099] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 16:24:59,060 [main] TRACE AbstractWordWriter - replacing hyperlink [314159 - 314176] HYPERLINK CntRs, UML67... +2024-09-07 16:24:59,119 [main] TRACE AbstractWordWriter - replacing hyperlink [314227 - 314269] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 16:24:59,179 [main] TRACE AbstractWordWriter - replacing hyperlink [314331 - 314352] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:59,238 [main] TRACE AbstractWordWriter - replacing hyperlink [314407 - 314449] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 16:24:59,300 [main] TRACE AbstractWordWriter - replacing hyperlink [314527 - 314548] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:59,371 [main] TRACE AbstractWordWriter - replacing hyperlink [314603 - 314645] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 16:24:59,432 [main] TRACE AbstractWordWriter - replacing hyperlink [314714 - 314734] HYPERLINK Floating, UML56... +2024-09-07 16:24:59,491 [main] TRACE AbstractWordWriter - replacing hyperlink [314788 - 314830] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 16:24:59,548 [main] TRACE AbstractWordWriter - replacing hyperlink [314890 - 314912] HYPERLINK CharString, UML59... +2024-09-07 16:24:59,608 [main] TRACE AbstractWordWriter - replacing hyperlink [314968 - 315010] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 16:24:59,669 [main] TRACE AbstractWordWriter - replacing hyperlink [315072 - 315096] HYPERLINK CharStringTs, UML60... +2024-09-07 16:24:59,732 [main] TRACE AbstractWordWriter - replacing hyperlink [315154 - 315196] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 16:24:59,794 [main] TRACE AbstractWordWriter - replacing hyperlink [315268 - 315289] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:59,853 [main] TRACE AbstractWordWriter - replacing hyperlink [315344 - 315371] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 16:24:59,913 [main] TRACE AbstractWordWriter - replacing hyperlink [315425 - 315446] HYPERLINK CounterTs, UML55... +2024-09-07 16:24:59,974 [main] TRACE AbstractWordWriter - replacing hyperlink [315501 - 315528] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 16:25:00,041 [main] TRACE AbstractWordWriter - replacing hyperlink [315588 - 315609] HYPERLINK CounterTs, UML55... +2024-09-07 16:25:00,105 [main] TRACE AbstractWordWriter - replacing hyperlink [315664 - 315691] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 16:25:00,168 [main] TRACE AbstractWordWriter - replacing hyperlink [316071 - 316088] HYPERLINK CntRs, UML67... +2024-09-07 16:25:00,229 [main] TRACE AbstractWordWriter - replacing hyperlink [316176 - 316197] HYPERLINK CounterTs, UML55... +2024-09-07 16:25:00,288 [main] TRACE AbstractWordWriter - replacing hyperlink [316303 - 316324] HYPERLINK CounterTs, UML55... +2024-09-07 16:25:00,351 [main] TRACE AbstractWordWriter - replacing hyperlink [316502 - 316523] HYPERLINK CounterTs, UML55... +2024-09-07 16:25:00,422 [main] TRACE AbstractWordWriter - replacing hyperlink [316643 - 316681] HYPERLINK GSEPublisherAssociationIP, UML121... +2024-09-07 16:25:00,482 [main] TRACE AbstractWordWriter - replacing hyperlink [316854 - 316892] HYPERLINK GSEPublisherAssociationL2, UML122... +2024-09-07 16:25:00,545 [main] TRACE AbstractWordWriter - replacing hyperlink [317093 - 317121] HYPERLINK GSENotification, UML132... +2024-09-07 16:25:00,606 [main] TRACE AbstractWordWriter - replacing hyperlink [317209 - 317247] HYPERLINK GSESubcriberAssociationIP, UML127... +2024-09-07 16:25:00,663 [main] TRACE AbstractWordWriter - replacing hyperlink [317421 - 317459] HYPERLINK GSESubcriberAssociationL2, UML128... +2024-09-07 16:25:00,726 [main] TRACE AbstractWordWriter - replacing hyperlink [317658 - 317679] HYPERLINK CounterTs, UML55... +2024-09-07 16:25:00,786 [main] TRACE AbstractWordWriter - replacing hyperlink [317734 - 317761] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 16:25:00,853 [main] TRACE AbstractWordWriter - replacing hyperlink [317815 - 317836] HYPERLINK CounterTs, UML55... +2024-09-07 16:25:00,915 [main] TRACE AbstractWordWriter - replacing hyperlink [317891 - 317918] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 16:25:00,978 [main] TRACE AbstractWordWriter - replacing hyperlink [317978 - 317999] HYPERLINK CounterTs, UML55... +2024-09-07 16:25:01,041 [main] TRACE AbstractWordWriter - replacing hyperlink [318054 - 318081] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 16:25:01,104 [main] TRACE AbstractWordWriter - replacing hyperlink [318621 - 318644] HYPERLINK InetAddress, UML65... +2024-09-07 16:25:01,166 [main] TRACE AbstractWordWriter - replacing hyperlink [318730 - 318757] HYPERLINK InetAddressType, UML64... +2024-09-07 16:25:01,227 [main] TRACE AbstractWordWriter - replacing hyperlink [318841 - 318863] HYPERLINK CharString, UML59... +2024-09-07 16:25:01,290 [main] TRACE AbstractWordWriter - replacing hyperlink [318916 - 318957] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 16:25:01,351 [main] TRACE AbstractWordWriter - replacing hyperlink [319016 - 319033] HYPERLINK CntRs, UML67... +2024-09-07 16:25:01,413 [main] TRACE AbstractWordWriter - replacing hyperlink [319084 - 319125] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 16:25:01,480 [main] TRACE AbstractWordWriter - replacing hyperlink [319184 - 319205] HYPERLINK CounterTs, UML55... +2024-09-07 16:25:01,540 [main] TRACE AbstractWordWriter - replacing hyperlink [319260 - 319301] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 16:25:01,600 [main] TRACE AbstractWordWriter - replacing hyperlink [319360 - 319382] HYPERLINK CharString, UML59... +2024-09-07 16:25:01,660 [main] TRACE AbstractWordWriter - replacing hyperlink [319438 - 319479] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 16:25:01,721 [main] TRACE AbstractWordWriter - replacing hyperlink [319547 - 319567] HYPERLINK Floating, UML56... +2024-09-07 16:25:01,779 [main] TRACE AbstractWordWriter - replacing hyperlink [319621 - 319662] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 16:25:01,842 [main] TRACE AbstractWordWriter - replacing hyperlink [319733 - 319754] HYPERLINK CounterTs, UML55... +2024-09-07 16:25:01,905 [main] TRACE AbstractWordWriter - replacing hyperlink [319809 - 319836] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 16:25:01,964 [main] TRACE AbstractWordWriter - replacing hyperlink [319890 - 319911] HYPERLINK CounterTs, UML55... +2024-09-07 16:25:02,026 [main] TRACE AbstractWordWriter - replacing hyperlink [319966 - 319993] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 16:25:02,087 [main] TRACE AbstractWordWriter - replacing hyperlink [320053 - 320074] HYPERLINK CounterTs, UML55... +2024-09-07 16:25:02,147 [main] TRACE AbstractWordWriter - replacing hyperlink [320129 - 320156] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 16:25:02,207 [main] TRACE AbstractWordWriter - replacing hyperlink [320704 - 320726] HYPERLINK MacAddress, UML63... +2024-09-07 16:25:02,271 [main] TRACE AbstractWordWriter - replacing hyperlink [320862 - 320884] HYPERLINK MacAddress, UML63... +2024-09-07 16:25:02,332 [main] TRACE AbstractWordWriter - replacing hyperlink [321015 - 321037] HYPERLINK CharString, UML59... +2024-09-07 16:25:02,394 [main] TRACE AbstractWordWriter - replacing hyperlink [321090 - 321131] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 16:25:02,457 [main] TRACE AbstractWordWriter - replacing hyperlink [321190 - 321207] HYPERLINK CntRs, UML67... +2024-09-07 16:25:02,522 [main] TRACE AbstractWordWriter - replacing hyperlink [321258 - 321299] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 16:25:02,586 [main] TRACE AbstractWordWriter - replacing hyperlink [321358 - 321379] HYPERLINK CounterTs, UML55... +2024-09-07 16:25:02,643 [main] TRACE AbstractWordWriter - replacing hyperlink [321434 - 321475] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 16:25:02,704 [main] TRACE AbstractWordWriter - replacing hyperlink [321534 - 321556] HYPERLINK CharString, UML59... +2024-09-07 16:25:02,760 [main] TRACE AbstractWordWriter - replacing hyperlink [321612 - 321653] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 16:25:02,822 [main] TRACE AbstractWordWriter - replacing hyperlink [321721 - 321741] HYPERLINK Floating, UML56... +2024-09-07 16:25:02,882 [main] TRACE AbstractWordWriter - replacing hyperlink [321795 - 321836] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 16:25:02,941 [main] TRACE AbstractWordWriter - replacing hyperlink [321907 - 321928] HYPERLINK CounterTs, UML55... +2024-09-07 16:25:03,001 [main] TRACE AbstractWordWriter - replacing hyperlink [321983 - 322010] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 16:25:03,060 [main] TRACE AbstractWordWriter - replacing hyperlink [322064 - 322085] HYPERLINK CounterTs, UML55... +2024-09-07 16:25:03,121 [main] TRACE AbstractWordWriter - replacing hyperlink [322140 - 322167] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 16:25:03,180 [main] TRACE AbstractWordWriter - replacing hyperlink [322227 - 322248] HYPERLINK CounterTs, UML55... +2024-09-07 16:25:03,239 [main] TRACE AbstractWordWriter - replacing hyperlink [322303 - 322330] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 16:25:03,298 [main] TRACE AbstractWordWriter - replacing hyperlink [322869 - 322892] HYPERLINK InetAddress, UML65... +2024-09-07 16:25:03,363 [main] TRACE AbstractWordWriter - replacing hyperlink [322974 - 323001] HYPERLINK InetAddressType, UML64... +2024-09-07 16:25:03,424 [main] TRACE AbstractWordWriter - replacing hyperlink [323090 - 323114] HYPERLINK BooleanValue, UML52... +2024-09-07 16:25:03,487 [main] TRACE AbstractWordWriter - replacing hyperlink [323172 - 323209] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 16:25:03,549 [main] TRACE AbstractWordWriter - replacing hyperlink [323266 - 323290] HYPERLINK BooleanValue, UML52... +2024-09-07 16:25:03,619 [main] TRACE AbstractWordWriter - replacing hyperlink [323348 - 323385] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 16:25:03,680 [main] TRACE AbstractWordWriter - replacing hyperlink [323442 - 323461] HYPERLINK Integer, UML53... +2024-09-07 16:25:03,741 [main] TRACE AbstractWordWriter - replacing hyperlink [323514 - 323551] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 16:25:03,803 [main] TRACE AbstractWordWriter - replacing hyperlink [323610 - 323631] HYPERLINK IntegerTs, UML58... +2024-09-07 16:25:03,862 [main] TRACE AbstractWordWriter - replacing hyperlink [323686 - 323723] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 16:25:03,922 [main] TRACE AbstractWordWriter - replacing hyperlink [323782 - 323803] HYPERLINK CounterTs, UML55... +2024-09-07 16:25:03,984 [main] TRACE AbstractWordWriter - replacing hyperlink [323858 - 323895] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 16:25:04,043 [main] TRACE AbstractWordWriter - replacing hyperlink [323954 - 323975] HYPERLINK CounterTs, UML55... +2024-09-07 16:25:04,105 [main] TRACE AbstractWordWriter - replacing hyperlink [324030 - 324067] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 16:25:04,168 [main] TRACE AbstractWordWriter - replacing hyperlink [324125 - 324151] HYPERLINK BooleanValueTs, UML54... +2024-09-07 16:25:04,228 [main] TRACE AbstractWordWriter - replacing hyperlink [324211 - 324248] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 16:25:04,286 [main] TRACE AbstractWordWriter - replacing hyperlink [324304 - 324326] HYPERLINK CharString, UML59... +2024-09-07 16:25:04,350 [main] TRACE AbstractWordWriter - replacing hyperlink [324382 - 324419] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 16:25:04,418 [main] TRACE AbstractWordWriter - replacing hyperlink [324477 - 324501] HYPERLINK CharStringTs, UML60... +2024-09-07 16:25:04,475 [main] TRACE AbstractWordWriter - replacing hyperlink [324559 - 324596] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 16:25:04,536 [main] TRACE AbstractWordWriter - replacing hyperlink [324650 - 324672] HYPERLINK CharString, UML59... +2024-09-07 16:25:04,599 [main] TRACE AbstractWordWriter - replacing hyperlink [324728 - 324765] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 16:25:04,667 [main] TRACE AbstractWordWriter - replacing hyperlink [324821 - 324845] HYPERLINK CharStringTs, UML60... +2024-09-07 16:25:04,728 [main] TRACE AbstractWordWriter - replacing hyperlink [324903 - 324940] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 16:25:04,790 [main] TRACE AbstractWordWriter - replacing hyperlink [324995 - 325016] HYPERLINK IntegerTs, UML58... +2024-09-07 16:25:04,851 [main] TRACE AbstractWordWriter - replacing hyperlink [325071 - 325108] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 16:25:04,909 [main] TRACE AbstractWordWriter - replacing hyperlink [325163 - 325184] HYPERLINK IntegerTs, UML58... +2024-09-07 16:25:04,970 [main] TRACE AbstractWordWriter - replacing hyperlink [325239 - 325276] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 16:25:05,031 [main] TRACE AbstractWordWriter - replacing hyperlink [325337 - 325358] HYPERLINK IntegerTs, UML58... +2024-09-07 16:25:05,093 [main] TRACE AbstractWordWriter - replacing hyperlink [325413 - 325450] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 16:25:05,154 [main] TRACE AbstractWordWriter - replacing hyperlink [325511 - 325532] HYPERLINK IntegerTs, UML58... +2024-09-07 16:25:05,216 [main] TRACE AbstractWordWriter - replacing hyperlink [325587 - 325624] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 16:25:05,280 [main] TRACE AbstractWordWriter - replacing hyperlink [325677 - 325698] HYPERLINK Timestamp, UML61... +2024-09-07 16:25:05,339 [main] TRACE AbstractWordWriter - replacing hyperlink [325753 - 325790] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 16:25:05,403 [main] TRACE AbstractWordWriter - replacing hyperlink [325845 - 325867] HYPERLINK CharString, UML59... +2024-09-07 16:25:05,463 [main] TRACE AbstractWordWriter - replacing hyperlink [325920 - 325962] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 16:25:05,525 [main] TRACE AbstractWordWriter - replacing hyperlink [326022 - 326039] HYPERLINK CntRs, UML67... +2024-09-07 16:25:05,586 [main] TRACE AbstractWordWriter - replacing hyperlink [326090 - 326132] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 16:25:05,647 [main] TRACE AbstractWordWriter - replacing hyperlink [326194 - 326215] HYPERLINK CounterTs, UML55... +2024-09-07 16:25:05,713 [main] TRACE AbstractWordWriter - replacing hyperlink [326270 - 326312] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 16:25:05,774 [main] TRACE AbstractWordWriter - replacing hyperlink [326390 - 326411] HYPERLINK CounterTs, UML55... +2024-09-07 16:25:05,834 [main] TRACE AbstractWordWriter - replacing hyperlink [326466 - 326508] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 16:25:05,897 [main] TRACE AbstractWordWriter - replacing hyperlink [326577 - 326597] HYPERLINK Floating, UML56... +2024-09-07 16:25:05,955 [main] TRACE AbstractWordWriter - replacing hyperlink [326651 - 326693] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 16:25:06,016 [main] TRACE AbstractWordWriter - replacing hyperlink [326753 - 326775] HYPERLINK CharString, UML59... +2024-09-07 16:25:06,080 [main] TRACE AbstractWordWriter - replacing hyperlink [326831 - 326873] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 16:25:06,142 [main] TRACE AbstractWordWriter - replacing hyperlink [326935 - 326959] HYPERLINK CharStringTs, UML60... +2024-09-07 16:25:06,204 [main] TRACE AbstractWordWriter - replacing hyperlink [327017 - 327059] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 16:25:06,266 [main] TRACE AbstractWordWriter - replacing hyperlink [327131 - 327152] HYPERLINK CounterTs, UML55... +2024-09-07 16:25:06,326 [main] TRACE AbstractWordWriter - replacing hyperlink [327207 - 327234] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 16:25:06,390 [main] TRACE AbstractWordWriter - replacing hyperlink [327288 - 327309] HYPERLINK CounterTs, UML55... +2024-09-07 16:25:06,450 [main] TRACE AbstractWordWriter - replacing hyperlink [327364 - 327391] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 16:25:06,511 [main] TRACE AbstractWordWriter - replacing hyperlink [327451 - 327472] HYPERLINK CounterTs, UML55... +2024-09-07 16:25:06,571 [main] TRACE AbstractWordWriter - replacing hyperlink [327527 - 327554] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 16:25:06,633 [main] TRACE AbstractWordWriter - replacing hyperlink [328101 - 328123] HYPERLINK MacAddress, UML63... +2024-09-07 16:25:06,694 [main] TRACE AbstractWordWriter - replacing hyperlink [328259 - 328281] HYPERLINK MacAddress, UML63... +2024-09-07 16:25:06,757 [main] TRACE AbstractWordWriter - replacing hyperlink [328417 - 328441] HYPERLINK BooleanValue, UML52... +2024-09-07 16:25:06,818 [main] TRACE AbstractWordWriter - replacing hyperlink [328499 - 328536] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 16:25:06,881 [main] TRACE AbstractWordWriter - replacing hyperlink [328593 - 328617] HYPERLINK BooleanValue, UML52... +2024-09-07 16:25:06,941 [main] TRACE AbstractWordWriter - replacing hyperlink [328675 - 328712] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 16:25:07,001 [main] TRACE AbstractWordWriter - replacing hyperlink [328769 - 328788] HYPERLINK Integer, UML53... +2024-09-07 16:25:07,064 [main] TRACE AbstractWordWriter - replacing hyperlink [328841 - 328878] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 16:25:07,125 [main] TRACE AbstractWordWriter - replacing hyperlink [328937 - 328958] HYPERLINK IntegerTs, UML58... +2024-09-07 16:25:07,184 [main] TRACE AbstractWordWriter - replacing hyperlink [329013 - 329050] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 16:25:07,247 [main] TRACE AbstractWordWriter - replacing hyperlink [329109 - 329130] HYPERLINK CounterTs, UML55... +2024-09-07 16:25:07,306 [main] TRACE AbstractWordWriter - replacing hyperlink [329185 - 329222] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 16:25:07,376 [main] TRACE AbstractWordWriter - replacing hyperlink [329281 - 329302] HYPERLINK CounterTs, UML55... +2024-09-07 16:25:07,436 [main] TRACE AbstractWordWriter - replacing hyperlink [329357 - 329394] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 16:25:07,496 [main] TRACE AbstractWordWriter - replacing hyperlink [329452 - 329478] HYPERLINK BooleanValueTs, UML54... +2024-09-07 16:25:07,555 [main] TRACE AbstractWordWriter - replacing hyperlink [329538 - 329575] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 16:25:07,615 [main] TRACE AbstractWordWriter - replacing hyperlink [329631 - 329653] HYPERLINK CharString, UML59... +2024-09-07 16:25:07,677 [main] TRACE AbstractWordWriter - replacing hyperlink [329709 - 329746] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 16:25:07,738 [main] TRACE AbstractWordWriter - replacing hyperlink [329804 - 329828] HYPERLINK CharStringTs, UML60... +2024-09-07 16:25:07,799 [main] TRACE AbstractWordWriter - replacing hyperlink [329886 - 329923] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 16:25:07,867 [main] TRACE AbstractWordWriter - replacing hyperlink [329977 - 329999] HYPERLINK CharString, UML59... +2024-09-07 16:25:07,927 [main] TRACE AbstractWordWriter - replacing hyperlink [330055 - 330092] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 16:25:07,990 [main] TRACE AbstractWordWriter - replacing hyperlink [330148 - 330172] HYPERLINK CharStringTs, UML60... +2024-09-07 16:25:08,049 [main] TRACE AbstractWordWriter - replacing hyperlink [330230 - 330267] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 16:25:08,109 [main] TRACE AbstractWordWriter - replacing hyperlink [330322 - 330343] HYPERLINK IntegerTs, UML58... +2024-09-07 16:25:08,169 [main] TRACE AbstractWordWriter - replacing hyperlink [330398 - 330435] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 16:25:08,230 [main] TRACE AbstractWordWriter - replacing hyperlink [330490 - 330511] HYPERLINK IntegerTs, UML58... +2024-09-07 16:25:08,292 [main] TRACE AbstractWordWriter - replacing hyperlink [330566 - 330603] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 16:25:08,356 [main] TRACE AbstractWordWriter - replacing hyperlink [330664 - 330685] HYPERLINK IntegerTs, UML58... +2024-09-07 16:25:08,417 [main] TRACE AbstractWordWriter - replacing hyperlink [330740 - 330777] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 16:25:08,478 [main] TRACE AbstractWordWriter - replacing hyperlink [330838 - 330859] HYPERLINK IntegerTs, UML58... +2024-09-07 16:25:08,538 [main] TRACE AbstractWordWriter - replacing hyperlink [330914 - 330951] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 16:25:08,597 [main] TRACE AbstractWordWriter - replacing hyperlink [331004 - 331025] HYPERLINK Timestamp, UML61... +2024-09-07 16:25:08,657 [main] TRACE AbstractWordWriter - replacing hyperlink [331080 - 331117] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 16:25:08,717 [main] TRACE AbstractWordWriter - replacing hyperlink [331172 - 331194] HYPERLINK CharString, UML59... +2024-09-07 16:25:08,777 [main] TRACE AbstractWordWriter - replacing hyperlink [331247 - 331289] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 16:25:08,840 [main] TRACE AbstractWordWriter - replacing hyperlink [331349 - 331366] HYPERLINK CntRs, UML67... +2024-09-07 16:25:08,903 [main] TRACE AbstractWordWriter - replacing hyperlink [331417 - 331459] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 16:25:08,967 [main] TRACE AbstractWordWriter - replacing hyperlink [331521 - 331542] HYPERLINK CounterTs, UML55... +2024-09-07 16:25:09,027 [main] TRACE AbstractWordWriter - replacing hyperlink [331597 - 331639] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 16:25:09,088 [main] TRACE AbstractWordWriter - replacing hyperlink [331717 - 331738] HYPERLINK CounterTs, UML55... +2024-09-07 16:25:09,147 [main] TRACE AbstractWordWriter - replacing hyperlink [331793 - 331835] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 16:25:09,209 [main] TRACE AbstractWordWriter - replacing hyperlink [331904 - 331924] HYPERLINK Floating, UML56... +2024-09-07 16:25:09,283 [main] TRACE AbstractWordWriter - replacing hyperlink [331978 - 332020] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 16:25:09,350 [main] TRACE AbstractWordWriter - replacing hyperlink [332080 - 332102] HYPERLINK CharString, UML59... +2024-09-07 16:25:09,410 [main] TRACE AbstractWordWriter - replacing hyperlink [332158 - 332200] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 16:25:09,473 [main] TRACE AbstractWordWriter - replacing hyperlink [332262 - 332286] HYPERLINK CharStringTs, UML60... +2024-09-07 16:25:09,533 [main] TRACE AbstractWordWriter - replacing hyperlink [332344 - 332386] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 16:25:09,593 [main] TRACE AbstractWordWriter - replacing hyperlink [332458 - 332479] HYPERLINK CounterTs, UML55... +2024-09-07 16:25:09,655 [main] TRACE AbstractWordWriter - replacing hyperlink [332534 - 332561] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 16:25:09,717 [main] TRACE AbstractWordWriter - replacing hyperlink [332615 - 332636] HYPERLINK CounterTs, UML55... +2024-09-07 16:25:09,777 [main] TRACE AbstractWordWriter - replacing hyperlink [332691 - 332718] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 16:25:09,839 [main] TRACE AbstractWordWriter - replacing hyperlink [332778 - 332799] HYPERLINK CounterTs, UML55... +2024-09-07 16:25:09,902 [main] TRACE AbstractWordWriter - replacing hyperlink [332854 - 332881] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 16:25:09,967 [main] TRACE AbstractWordWriter - replacing hyperlink [333270 - 333291] HYPERLINK CounterTs, UML55... +2024-09-07 16:25:10,031 [main] TRACE AbstractWordWriter - replacing hyperlink [333346 - 333373] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 16:25:10,093 [main] TRACE AbstractWordWriter - replacing hyperlink [333427 - 333448] HYPERLINK CounterTs, UML55... +2024-09-07 16:25:10,156 [main] TRACE AbstractWordWriter - replacing hyperlink [333503 - 333530] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 16:25:10,218 [main] TRACE AbstractWordWriter - replacing hyperlink [333590 - 333611] HYPERLINK CounterTs, UML55... +2024-09-07 16:25:10,277 [main] TRACE AbstractWordWriter - replacing hyperlink [333666 - 333693] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 16:25:10,339 [main] TRACE AbstractWordWriter - replacing hyperlink [334422 - 334445] HYPERLINK EntityIndex, UML66... +2024-09-07 16:25:10,443 [main] TRACE AbstractWordWriter - replacing hyperlink [334512 - 334534] HYPERLINK CharString, UML59... +2024-09-07 16:25:10,507 [main] TRACE AbstractWordWriter - replacing hyperlink [334612 - 334631] HYPERLINK IntType, UML71... +2024-09-07 16:25:10,568 [main] TRACE AbstractWordWriter - replacing hyperlink [334718 - 334744] HYPERLINK BooleanValueTs, UML54... +2024-09-07 16:25:10,627 [main] TRACE AbstractWordWriter - replacing hyperlink [334867 - 334893] HYPERLINK BooleanValueTs, UML54... +2024-09-07 16:25:10,690 [main] TRACE AbstractWordWriter - replacing hyperlink [334987 - 335013] HYPERLINK BooleanValueTs, UML54... +2024-09-07 16:25:10,751 [main] TRACE AbstractWordWriter - replacing hyperlink [335088 - 335105] HYPERLINK CntRs, UML67... +2024-09-07 16:25:10,812 [main] TRACE AbstractWordWriter - replacing hyperlink [335481 - 335500] HYPERLINK Integer, UML53... +2024-09-07 16:25:10,874 [main] TRACE AbstractWordWriter - replacing hyperlink [335608 - 335629] HYPERLINK IntegerTs, UML58... +2024-09-07 16:25:10,937 [main] TRACE AbstractWordWriter - replacing hyperlink [335731 - 335752] HYPERLINK IntegerTs, UML58... +2024-09-07 16:25:11,002 [main] TRACE AbstractWordWriter - replacing hyperlink [335856 - 335875] HYPERLINK Integer, UML53... +2024-09-07 16:25:11,071 [main] TRACE AbstractWordWriter - replacing hyperlink [335982 - 336003] HYPERLINK IntegerTs, UML58... +2024-09-07 16:25:11,134 [main] TRACE AbstractWordWriter - replacing hyperlink [336107 - 336128] HYPERLINK IntegerTs, UML58... +2024-09-07 16:25:11,196 [main] TRACE AbstractWordWriter - replacing hyperlink [336235 - 336254] HYPERLINK Integer, UML53... +2024-09-07 16:25:11,262 [main] TRACE AbstractWordWriter - replacing hyperlink [336361 - 336382] HYPERLINK IntegerTs, UML58... +2024-09-07 16:25:11,322 [main] TRACE AbstractWordWriter - replacing hyperlink [336486 - 336507] HYPERLINK IntegerTs, UML58... +2024-09-07 16:25:11,391 [main] TRACE AbstractWordWriter - replacing hyperlink [336614 - 336633] HYPERLINK Integer, UML53... +2024-09-07 16:25:11,482 [main] TRACE AbstractWordWriter - replacing hyperlink [336739 - 336760] HYPERLINK IntegerTs, UML58... +2024-09-07 16:25:11,556 [main] TRACE AbstractWordWriter - replacing hyperlink [336863 - 336884] HYPERLINK IntegerTs, UML58... +2024-09-07 16:25:11,617 [main] TRACE AbstractWordWriter - replacing hyperlink [336989 - 337008] HYPERLINK Integer, UML53... +2024-09-07 16:25:11,678 [main] TRACE AbstractWordWriter - replacing hyperlink [337126 - 337147] HYPERLINK IntegerTs, UML58... +2024-09-07 16:25:11,739 [main] TRACE AbstractWordWriter - replacing hyperlink [337262 - 337283] HYPERLINK IntegerTs, UML58... +2024-09-07 16:25:11,805 [main] TRACE AbstractWordWriter - replacing hyperlink [337395 - 337416] HYPERLINK SEREntry, UML139... +2024-09-07 16:25:11,871 [main] TRACE AbstractWordWriter - replacing hyperlink [337545 - 337566] HYPERLINK ETHEntry, UML137... +2024-09-07 16:25:11,940 [main] TRACE AbstractWordWriter - replacing hyperlink [337697 - 337718] HYPERLINK USBEntry, UML141... +2024-09-07 16:25:12,003 [main] TRACE AbstractWordWriter - replacing hyperlink [337844 - 337865] HYPERLINK KEYEntry, UML138... +2024-09-07 16:25:12,061 [main] TRACE AbstractWordWriter - replacing hyperlink [337996 - 338017] HYPERLINK ALGEntry, UML140... +2024-09-07 16:25:12,122 [main] TRACE AbstractWordWriter - replacing hyperlink [338162 - 338187] HYPERLINK Notification, UML143... +2024-09-07 16:25:12,185 [main] TRACE AbstractWordWriter - replacing hyperlink [338548 - 338571] HYPERLINK EntityIndex, UML66... +2024-09-07 16:25:12,247 [main] TRACE AbstractWordWriter - replacing hyperlink [338625 - 338647] HYPERLINK Interface, UML136... +2024-09-07 16:25:12,309 [main] TRACE AbstractWordWriter - replacing hyperlink [338687 - 338709] HYPERLINK CharString, UML59... +2024-09-07 16:25:12,375 [main] TRACE AbstractWordWriter - replacing hyperlink [338765 - 338787] HYPERLINK Interface, UML136... +2024-09-07 16:25:12,436 [main] TRACE AbstractWordWriter - replacing hyperlink [338829 - 338848] HYPERLINK IntType, UML71... +2024-09-07 16:25:12,499 [main] TRACE AbstractWordWriter - replacing hyperlink [338901 - 338923] HYPERLINK Interface, UML136... +2024-09-07 16:25:12,563 [main] TRACE AbstractWordWriter - replacing hyperlink [338966 - 338992] HYPERLINK BooleanValueTs, UML54... +2024-09-07 16:25:12,625 [main] TRACE AbstractWordWriter - replacing hyperlink [339050 - 339072] HYPERLINK Interface, UML136... +2024-09-07 16:25:12,686 [main] TRACE AbstractWordWriter - replacing hyperlink [339113 - 339139] HYPERLINK BooleanValueTs, UML54... +2024-09-07 16:25:12,748 [main] TRACE AbstractWordWriter - replacing hyperlink [339197 - 339219] HYPERLINK Interface, UML136... +2024-09-07 16:25:12,811 [main] TRACE AbstractWordWriter - replacing hyperlink [339260 - 339286] HYPERLINK BooleanValueTs, UML54... +2024-09-07 16:25:12,884 [main] TRACE AbstractWordWriter - replacing hyperlink [339344 - 339366] HYPERLINK Interface, UML136... +2024-09-07 16:25:12,963 [main] TRACE AbstractWordWriter - replacing hyperlink [339406 - 339423] HYPERLINK CntRs, UML67... +2024-09-07 16:25:13,044 [main] TRACE AbstractWordWriter - replacing hyperlink [339474 - 339496] HYPERLINK Interface, UML136... +2024-09-07 16:25:13,121 [main] TRACE AbstractWordWriter - replacing hyperlink [339821 - 339847] HYPERLINK BooleanValueTs, UML54... +2024-09-07 16:25:13,206 [main] TRACE AbstractWordWriter - replacing hyperlink [339947 - 339970] HYPERLINK EntityIndex, UML66... +2024-09-07 16:25:13,282 [main] TRACE AbstractWordWriter - replacing hyperlink [340024 - 340046] HYPERLINK Interface, UML136... +2024-09-07 16:25:13,361 [main] TRACE AbstractWordWriter - replacing hyperlink [340086 - 340108] HYPERLINK CharString, UML59... +2024-09-07 16:25:13,441 [main] TRACE AbstractWordWriter - replacing hyperlink [340164 - 340186] HYPERLINK Interface, UML136... +2024-09-07 16:25:13,532 [main] TRACE AbstractWordWriter - replacing hyperlink [340228 - 340247] HYPERLINK IntType, UML71... +2024-09-07 16:25:13,611 [main] TRACE AbstractWordWriter - replacing hyperlink [340300 - 340322] HYPERLINK Interface, UML136... +2024-09-07 16:25:13,692 [main] TRACE AbstractWordWriter - replacing hyperlink [340365 - 340391] HYPERLINK BooleanValueTs, UML54... +2024-09-07 16:25:13,769 [main] TRACE AbstractWordWriter - replacing hyperlink [340449 - 340471] HYPERLINK Interface, UML136... +2024-09-07 16:25:13,859 [main] TRACE AbstractWordWriter - replacing hyperlink [340512 - 340538] HYPERLINK BooleanValueTs, UML54... +2024-09-07 16:25:13,938 [main] TRACE AbstractWordWriter - replacing hyperlink [340596 - 340618] HYPERLINK Interface, UML136... +2024-09-07 16:25:14,023 [main] TRACE AbstractWordWriter - replacing hyperlink [340659 - 340685] HYPERLINK BooleanValueTs, UML54... +2024-09-07 16:25:14,102 [main] TRACE AbstractWordWriter - replacing hyperlink [340743 - 340765] HYPERLINK Interface, UML136... +2024-09-07 16:25:14,181 [main] TRACE AbstractWordWriter - replacing hyperlink [340805 - 340822] HYPERLINK CntRs, UML67... +2024-09-07 16:25:14,268 [main] TRACE AbstractWordWriter - replacing hyperlink [340873 - 340895] HYPERLINK Interface, UML136... +2024-09-07 16:25:14,349 [main] TRACE AbstractWordWriter - replacing hyperlink [341212 - 341233] HYPERLINK CounterTs, UML55... +2024-09-07 16:25:14,438 [main] TRACE AbstractWordWriter - replacing hyperlink [341307 - 341328] HYPERLINK CounterTs, UML55... +2024-09-07 16:25:14,518 [main] TRACE AbstractWordWriter - replacing hyperlink [341398 - 341421] HYPERLINK EntityIndex, UML66... +2024-09-07 16:25:14,598 [main] TRACE AbstractWordWriter - replacing hyperlink [341475 - 341497] HYPERLINK Interface, UML136... +2024-09-07 16:25:14,679 [main] TRACE AbstractWordWriter - replacing hyperlink [341537 - 341559] HYPERLINK CharString, UML59... +2024-09-07 16:25:14,760 [main] TRACE AbstractWordWriter - replacing hyperlink [341615 - 341637] HYPERLINK Interface, UML136... +2024-09-07 16:25:14,839 [main] TRACE AbstractWordWriter - replacing hyperlink [341679 - 341698] HYPERLINK IntType, UML71... +2024-09-07 16:25:14,918 [main] TRACE AbstractWordWriter - replacing hyperlink [341751 - 341773] HYPERLINK Interface, UML136... +2024-09-07 16:25:14,993 [main] TRACE AbstractWordWriter - replacing hyperlink [341816 - 341842] HYPERLINK BooleanValueTs, UML54... +2024-09-07 16:25:15,076 [main] TRACE AbstractWordWriter - replacing hyperlink [341900 - 341922] HYPERLINK Interface, UML136... +2024-09-07 16:25:15,153 [main] TRACE AbstractWordWriter - replacing hyperlink [341963 - 341989] HYPERLINK BooleanValueTs, UML54... +2024-09-07 16:25:15,230 [main] TRACE AbstractWordWriter - replacing hyperlink [342047 - 342069] HYPERLINK Interface, UML136... +2024-09-07 16:25:15,316 [main] TRACE AbstractWordWriter - replacing hyperlink [342110 - 342136] HYPERLINK BooleanValueTs, UML54... +2024-09-07 16:25:15,394 [main] TRACE AbstractWordWriter - replacing hyperlink [342194 - 342216] HYPERLINK Interface, UML136... +2024-09-07 16:25:15,468 [main] TRACE AbstractWordWriter - replacing hyperlink [342256 - 342273] HYPERLINK CntRs, UML67... +2024-09-07 16:25:15,542 [main] TRACE AbstractWordWriter - replacing hyperlink [342324 - 342346] HYPERLINK Interface, UML136... +2024-09-07 16:25:15,621 [main] TRACE AbstractWordWriter - replacing hyperlink [342663 - 342686] HYPERLINK EntityIndex, UML66... +2024-09-07 16:25:15,698 [main] TRACE AbstractWordWriter - replacing hyperlink [342740 - 342762] HYPERLINK Interface, UML136... +2024-09-07 16:25:15,773 [main] TRACE AbstractWordWriter - replacing hyperlink [342802 - 342824] HYPERLINK CharString, UML59... +2024-09-07 16:25:15,849 [main] TRACE AbstractWordWriter - replacing hyperlink [342880 - 342902] HYPERLINK Interface, UML136... +2024-09-07 16:25:15,937 [main] TRACE AbstractWordWriter - replacing hyperlink [342944 - 342963] HYPERLINK IntType, UML71... +2024-09-07 16:25:16,009 [main] TRACE AbstractWordWriter - replacing hyperlink [343016 - 343038] HYPERLINK Interface, UML136... +2024-09-07 16:25:16,088 [main] TRACE AbstractWordWriter - replacing hyperlink [343081 - 343107] HYPERLINK BooleanValueTs, UML54... +2024-09-07 16:25:16,174 [main] TRACE AbstractWordWriter - replacing hyperlink [343165 - 343187] HYPERLINK Interface, UML136... +2024-09-07 16:25:16,254 [main] TRACE AbstractWordWriter - replacing hyperlink [343228 - 343254] HYPERLINK BooleanValueTs, UML54... +2024-09-07 16:25:16,336 [main] TRACE AbstractWordWriter - replacing hyperlink [343312 - 343334] HYPERLINK Interface, UML136... +2024-09-07 16:25:16,425 [main] TRACE AbstractWordWriter - replacing hyperlink [343375 - 343401] HYPERLINK BooleanValueTs, UML54... +2024-09-07 16:25:16,502 [main] TRACE AbstractWordWriter - replacing hyperlink [343459 - 343481] HYPERLINK Interface, UML136... +2024-09-07 16:25:16,581 [main] TRACE AbstractWordWriter - replacing hyperlink [343521 - 343538] HYPERLINK CntRs, UML67... +2024-09-07 16:25:16,661 [main] TRACE AbstractWordWriter - replacing hyperlink [343589 - 343611] HYPERLINK Interface, UML136... +2024-09-07 16:25:16,748 [main] TRACE AbstractWordWriter - replacing hyperlink [343924 - 343947] HYPERLINK EntityIndex, UML66... +2024-09-07 16:25:16,823 [main] TRACE AbstractWordWriter - replacing hyperlink [344001 - 344023] HYPERLINK Interface, UML136... +2024-09-07 16:25:16,900 [main] TRACE AbstractWordWriter - replacing hyperlink [344063 - 344085] HYPERLINK CharString, UML59... +2024-09-07 16:25:16,977 [main] TRACE AbstractWordWriter - replacing hyperlink [344141 - 344163] HYPERLINK Interface, UML136... +2024-09-07 16:25:17,054 [main] TRACE AbstractWordWriter - replacing hyperlink [344205 - 344224] HYPERLINK IntType, UML71... +2024-09-07 16:25:17,135 [main] TRACE AbstractWordWriter - replacing hyperlink [344277 - 344299] HYPERLINK Interface, UML136... +2024-09-07 16:25:17,209 [main] TRACE AbstractWordWriter - replacing hyperlink [344342 - 344368] HYPERLINK BooleanValueTs, UML54... +2024-09-07 16:25:17,290 [main] TRACE AbstractWordWriter - replacing hyperlink [344426 - 344448] HYPERLINK Interface, UML136... +2024-09-07 16:25:17,369 [main] TRACE AbstractWordWriter - replacing hyperlink [344489 - 344515] HYPERLINK BooleanValueTs, UML54... +2024-09-07 16:25:17,446 [main] TRACE AbstractWordWriter - replacing hyperlink [344573 - 344595] HYPERLINK Interface, UML136... +2024-09-07 16:25:17,526 [main] TRACE AbstractWordWriter - replacing hyperlink [344636 - 344662] HYPERLINK BooleanValueTs, UML54... +2024-09-07 16:25:17,606 [main] TRACE AbstractWordWriter - replacing hyperlink [344720 - 344742] HYPERLINK Interface, UML136... +2024-09-07 16:25:17,687 [main] TRACE AbstractWordWriter - replacing hyperlink [344782 - 344799] HYPERLINK CntRs, UML67... +2024-09-07 16:25:17,766 [main] TRACE AbstractWordWriter - replacing hyperlink [344850 - 344872] HYPERLINK Interface, UML136... +2024-09-07 16:25:17,847 [main] TRACE AbstractWordWriter - replacing hyperlink [345252 - 345273] HYPERLINK IntegerTs, UML58... +2024-09-07 16:25:17,926 [main] TRACE AbstractWordWriter - replacing hyperlink [345373 - 345394] HYPERLINK IntegerTs, UML58... +2024-09-07 16:25:18,006 [main] TRACE AbstractWordWriter - replacing hyperlink [345497 - 345518] HYPERLINK IntegerTs, UML58... +2024-09-07 16:25:18,081 [main] TRACE AbstractWordWriter - replacing hyperlink [345620 - 345641] HYPERLINK IntegerTs, UML58... +2024-09-07 16:25:18,159 [main] TRACE AbstractWordWriter - replacing hyperlink [345747 - 345768] HYPERLINK IntegerTs, UML58... +2024-09-07 16:25:18,240 [main] TRACE AbstractWordWriter - replacing hyperlink [345870 - 345891] HYPERLINK IntegerTs, UML58... +2024-09-07 16:25:18,327 [main] TRACE AbstractWordWriter - replacing hyperlink [345997 - 346018] HYPERLINK IntegerTs, UML58... +2024-09-07 16:25:18,418 [main] TRACE AbstractWordWriter - replacing hyperlink [346120 - 346141] HYPERLINK IntegerTs, UML58... +2024-09-07 16:25:18,492 [main] TRACE AbstractWordWriter - replacing hyperlink [346246 - 346267] HYPERLINK IntegerTs, UML58... +2024-09-07 16:25:18,575 [main] TRACE AbstractWordWriter - replacing hyperlink [346381 - 346402] HYPERLINK IntegerTs, UML58... +2024-09-07 16:25:18,652 [main] TRACE AbstractWordWriter - replacing hyperlink [347066 - 347087] HYPERLINK Timestamp, UML61... +2024-09-07 16:25:18,734 [main] TRACE AbstractWordWriter - replacing hyperlink [347206 - 347227] HYPERLINK Timestamp, UML61... +2024-09-07 16:25:18,806 [main] TRACE AbstractWordWriter - replacing hyperlink [347341 - 347358] HYPERLINK CntRs, UML67... +2024-09-07 16:25:18,883 [main] TRACE AbstractWordWriter - replacing hyperlink [347582 - 347605] HYPERLINK ClockEntry, UML134... +2024-09-07 16:25:18,961 [main] TRACE AbstractWordWriter - replacing hyperlink [347735 - 347768] HYPERLINK SecurityNotification, UML135... +2024-09-07 16:25:19,040 [main] TRACE AbstractWordWriter - replacing hyperlink [348140 - 348159] HYPERLINK Integer, UML53... +2024-09-07 16:25:19,116 [main] TRACE AbstractWordWriter - replacing hyperlink [348379 - 348402] HYPERLINK EntityIndex, UML66... +2024-09-07 16:25:19,192 [main] TRACE AbstractWordWriter - replacing hyperlink [348469 - 348497] HYPERLINK TimSyncIssueType, UML75... +2024-09-07 16:25:19,270 [main] TRACE AbstractWordWriter - replacing hyperlink [348613 - 348637] HYPERLINK BooleanValue, UML52... +2024-09-07 16:25:19,353 [main] TRACE AbstractWordWriter - replacing hyperlink [348724 - 348750] HYPERLINK TimSyncSrcType, UML77... +2024-09-07 16:25:19,433 [main] TRACE AbstractWordWriter - replacing hyperlink [348843 - 348867] HYPERLINK BooleanValue, UML52... +2024-09-07 16:25:19,507 [main] TRACE AbstractWordWriter - replacing hyperlink [349215 - 349237] HYPERLINK FloatingTs, UML57... +2024-09-07 16:25:19,590 [main] TRACE AbstractWordWriter - replacing hyperlink [349488 - 349512] HYPERLINK BooleanValue, UML52... +2024-09-07 16:25:19,671 [main] TRACE AbstractWordWriter - replacing hyperlink [350343 - 350367] HYPERLINK BooleanValue, UML52... +2024-09-07 16:25:19,754 [main] TRACE AbstractWordWriter - replacing hyperlink [351329 - 351350] HYPERLINK Timestamp, UML61... +2024-09-07 16:25:19,826 [main] INFO Util - time=[0:02:02.135] replaced 2092 hyperlink placeholders +2024-09-07 16:25:19,826 [main] INFO Util - +2024-09-07 16:25:19,826 [main] DEBUG DocWordWriter - restoring original options +2024-09-07 16:25:19,826 [main] INFO OptimOptions - bringing back original view +2024-09-07 16:25:19,912 [main] INFO OptimOptions - enabling pagination +2024-09-07 16:25:19,952 [main] INFO OptimOptions - enabling field updates +2024-09-07 16:25:20,102 [main] INFO OptimOptions - enabling screen updating +2024-09-07 16:25:20,106 [main] DEBUG DocWordWriter - >> current/restored : OptimOptions [viewId=3, normView=false, paginate=true, updFld=true, updScr=true, fastSave=false, spelling=false, grammar=false] +2024-09-07 16:25:20,106 [main] INFO AbstractWordWriter - updating document fields (takes a while)... +2024-09-07 16:25:36,988 [main] INFO DocWordWriter - updateFields: 16882 ms +2024-09-07 16:25:44,751 [main] INFO DocWordWriter - updateTablesOfContents: 7763 ms +2024-09-07 16:25:53,023 [main] INFO DocWordWriter - updateTablesOfFigures: 8272 ms +2024-09-07 16:25:53,023 [main] INFO Util - time=[0:00:32.917] updated document fields +2024-09-07 16:25:53,024 [main] INFO Util - +2024-09-07 16:25:53,024 [main] INFO DocWordWriter - closing MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 16:25:57,068 [main] INFO DocWordWriter - exiting MSWord application +2024-09-07 16:25:57,073 [main] INFO Util - time=[0:05:51.416] written documentation to C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx +2024-09-07 16:25:57,073 [main] INFO Util - +2024-09-07 16:25:57,073 [main] INFO Util - time=[0:06:48.683] completed all configured steps - exiting +2024-09-07 16:25:57,073 [main] INFO Util - +2024-09-07 16:25:57,077 [main] INFO JCleanCim - completed at: Sat Sep 07 16:25:57 CEST 2024 +2024-09-07 16:25:57,077 [main] INFO JCleanCim - exiting +2024-09-07 21:41:36,939 [main] INFO JCleanCim - started at: Sat Sep 07 21:41:36 CEST 2024 +2024-09-07 21:41:36,940 [main] INFO JCleanCim - execution environment: +2024-09-07 21:41:36,940 [main] INFO JCleanCim - os.name = Windows 10 +2024-09-07 21:41:36,941 [main] INFO JCleanCim - java.version = 1.8.0_351 +2024-09-07 21:41:36,941 [main] INFO JCleanCim - java.home = C:\Program Files (x86)\Java\jre1.8.0_351 +2024-09-07 21:41:36,941 [main] INFO JCleanCim - java.class.path = C:\Users\gigi\git\jCleanCim\build\prod\classes;C:\Users\gigi\git\jCleanCim\lib\eaapi.jar;C:\Users\gigi\git\jCleanCim\dlls;C:\Users\gigi\git\jCleanCim\lib\commons-cli-1.2.jar;C:\Users\gigi\git\jCleanCim\config;C:\Users\gigi\git\jCleanCim\input;C:\Users\gigi\git\jCleanCim\lib\jacob.jar;C:\Users\gigi\git\jCleanCim\test\config;C:\Users\gigi\git\jCleanCim\test\input;C:\Users\gigi\git\jCleanCim\lib\commons-logging-1.1.1.jar;C:\Users\gigi\git\jCleanCim\lib\log4j-1.2.17.jar;C:\Users\gigi\git\jCleanCim\lib\commons-lang-2.6.jar;C:\Users\gigi\git\jCleanCim\lib\junit-4.8.2.jar;C:\Users\gigi\git\jCleanCim\lib\jackcess-2.1.0.jar;C:\Users\gigi\git\jCleanCim\lib\poi-ooxml-3.15-beta2.jar +2024-09-07 21:41:36,953 [main] INFO Util - loaded properties from resource build.properties +2024-09-07 21:41:36,954 [main] INFO JCleanCim - jCleanCim version: 02v03 +2024-09-07 21:41:36,954 [main] INFO JCleanCim - +2024-09-07 21:41:36,971 [main] INFO Util - loaded properties from resource config.properties +2024-09-07 21:41:36,973 [main] INFO Util - loaded properties from resource config61850.properties +2024-09-07 21:41:36,974 [main] INFO Util - loaded properties from resource build.properties +2024-09-07 21:41:36,979 [main] INFO Config - EA model specified in config.properties: 'C:\Users\gigi\git\jCleanCim\input\IEC62351-7-Ed2-FDIS-20240901.eap' +2024-09-07 21:41:36,979 [main] INFO Config - blank image file: 'C:\Users\gigi\git\jCleanCim\input\blank.png' +2024-09-07 21:41:36,985 [main] DEBUG Config - Property validation.rules.off not found in config.properties. +2024-09-07 21:41:36,986 [main] INFO Util - Creating backup of existing file: C:\Users\gigi\git\jCleanCim\output\pics.37172644703400 +2024-09-07 21:41:36,988 [main] INFO Config - pics output directory: 'C:\Users\gigi\git\jCleanCim\output\pics' +2024-09-07 21:41:36,989 [main] INFO Config - input MS Word template: 'C:\Users\gigi\git\jCleanCim\input\57-62351-7-Ed2-FDIS-template_20240901.docx' +2024-09-07 21:41:36,990 [main] INFO Util - Creating backup of existing file: C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx.37172649017800 +2024-09-07 21:41:36,992 [main] INFO Config - output MS Word file: 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 21:41:36,993 [main] INFO Util - Creating backup of existing file: C:\Users\gigi\git\jCleanCim\output\mibs.37172651894900 +2024-09-07 21:41:36,995 [main] INFO Config - full MIBs output directory: 'C:\Users\gigi\git\jCleanCim\output\mibs' +2024-09-07 21:41:36,996 [main] INFO Util - Creating backup of existing file: C:\Users\gigi\git\jCleanCim\output\mibslight.37172655171200 +2024-09-07 21:41:37,000 [main] INFO Config - light MIBs output directory: 'C:\Users\gigi\git\jCleanCim\output\mibslight' +2024-09-07 21:41:37,000 [main] DEBUG Config - Property docgen.word.styles.prefix.toc not found in config.properties. +2024-09-07 21:41:37,000 [main] DEBUG Config - Property docgen.word.styles.prefix.head not found in config.properties. +2024-09-07 21:41:37,000 [main] DEBUG Config - Property docgen.skipForCustomStereotypes not found in config.properties. +2024-09-07 21:41:37,001 [main] INFO JCleanCim - Config: +app.skipTiming = +docgen.iec61850.includeMetamodelInheritance = +docgen.iec61850.writeUmlTypes = +docgen.includeInformative = +docgen.includeNonPublic = +docgen.on = true +docgen.printHtml = +docgen.showCustomStereotypes = true +docgen.showNamespacePackages = Base, Dynamics, ExtEuBase, Ext1 +docgen.word.analysePlaceholders = +docgen.word.inTemplate = 57-62351-7-Ed2-FDIS-template_20240901.docx +docgen.word.includeInheritancePath = false +docgen.word.introToFigureBefore = +docgen.word.outDocument = 57-62351-7-Ed2-FDIS_20240901.docx +docgen.word.saveReopenEvery = 12 +docgen.word.styles.fig = FIGURE, Picture, Normal, Standard, Normal +docgen.word.styles.figcapt = FIGURE-title, Caption, Beschriftung, Légende +docgen.word.styles.para = PARAGRAPH, Normal, Standard, Normal +docgen.word.styles.tabcapt = TABLE-title, Caption, Beschriftung, Légende +docgen.word.styles.tabcell = TABLE-cell, Normal, Standard, Normal +docgen.word.styles.tabhead = TABLE-col-heading, Normal, Standard, Normal +docgen.word.useDocFormat = true +docgen.word.useHyperlinks = true +docgen.xml.scope = +mibgen.on = true +mibgen.outDirFull = mibs +mibgen.outDirLight = mibslight +model.builder = japi +model.filename = IEC62351-7-Ed2-FDIS-20240901.eap +model.nature.iec61850 = IEC61850Domain, My61850Extensions, NonCIM, IEC61850_SCL_mappings, MyNonCimExtensions +model.nature.iec62351 = IEC62351 +model.picsRelpath = +profiles.crosscheck.on = +profiles.dirnames = +profiles.docgen.on = +profiles.relpath = +project.version = 02v03 +statistics.cim.ignoreDomainClassAttributes = true +statistics.cim.ignoreIdObjectInheritance = true +statistics.on = false +statistics.tagsToIgnore = GUIDBasedOn +validation.associations.off = +validation.attributes.off = +validation.classes.off = +validation.dependencies.off = +validation.diagrams.off = +validation.iec61850.package72Top = IEC61850_7_2 +validation.iec61850.packageFC = FunctionalConstraints +validation.iec61850.packageLnMaps = Functions +validation.iec61850.packageMetaModel = MetaModel +validation.iec61850.packagePresCond = PresenceConditions +validation.iec61850.packageTrgOp = TriggerOptions +validation.iec61850.packages72 = FunctionalConstraints, TriggerOptions, ACSIEnums, CoreTypes, MetaModel +validation.iec61850.packages73 = PresenceConditions, ConstructedDAs, CommonDataClasses, DAEnums,CommonDataClasses_90_3, DAEnums_90_3,CommonDataClasses_90_4, DAEnums_90_4,CommonDataClasses_90_6, DAEnums_90_6,CommonDataClasses_90_8, DAEnums_90_8,CommonDataClasses_90_10, DAEnums_90_10,CommonDataClasses_90_17, DAEnums_90_17,CommonDataClasses_7_410, DAEnums_7_410,CommonDataClasses_7_420, DAEnums_7_420,CommonDataClasses_25_2, DAEnums_25_2 +validation.iec61850.packages74 = Functions, Abbreviations, LogicalNodes, DOEnums,Abbreviations_90_3, LogicalNodes_90_3, DOEnums_90_3,Abbreviations_90_4, LogicalNodes_90_4, DOEnums_90_4,Abbreviations_90_6, LogicalNodes_90_6, DOEnums_90_6,Abbreviations_90_8, LogicalNodes_90_8, DOEnums_90_8,Abbreviations_90_9, LogicalNodes_90_9, DOEnums_90_9,Abbreviations_90_10, LogicalNodes_90_10, DOEnums_90_10,Abbreviations_90_11, LogicalNodes_90_11, DOEnums_90_11,Abbreviations_90_17, LogicalNodes_90_17, DOEnums_90_17,Abbreviations_7_410, LogicalNodes_7_410, DOEnums_7_410,Abbreviations_7_420, LogicalNodes_7_420, DOEnums_7_420,Abbreviations_7_499, LogicalNodes_7_499, DOEnums_7_499,Abbreviations_61869-9, LogicalNodes_61869-9, Abbreviations_62271-3, LogicalNodes_62271-3, Abbreviations_25_2, LogicalNodes_25_2, DOEnums_25_2 +validation.iec61850.packagesBasic = CoreTypes +validation.iec61850.packagesCdc = CommonDataClasses, CommonDataClasses_90_3, CommonDataClasses_90_4, CommonDataClasses_90_6, CommonDataClasses_90_8, CommonDataClasses_90_9, CommonDataClasses_90_10, CommonDataClasses_90_17, CommonDataClasses_7_410, CommonDataClasses_7_420, CommonDataClasses_25_2 +validation.iec61850.packagesDa = ConstructedDAs +validation.iec61850.packagesDoAbbr = Abbreviations, Abbreviations_90_3, Abbreviations_90_4, Abbreviations_90_6, Abbreviations_90_8, Abbreviations_90_9, Abbreviations_90_10, Abbreviations_90_11, Abbreviations_90_17, Abbreviations_7_410, Abbreviations_7_420, Abbreviations_7_499, Abbreviations_61869-9, Abbreviations_62271-3, Abbreviations_25_2 +validation.iec61850.packagesEnumsXml = DomainTypesEnums, DOEnums, DAEnums, DOEnums_90_3, DAEnums_90_3, DOEnums_90_4, DAEnums_90_4, DOEnums_90_6, DAEnums_90_6, DOEnums_90_8, DAEnums_90_8, DOEnums_90_9, DAEnums_90_9, DOEnums_90_10, DAEnums_90_10, DOEnums_90_11, DAEnums_90_11, DOEnums_90_17, DAEnums_90_17, DOEnums_7_410, DAEnums_7_410, DOEnums_7_420, DAEnums_7_420, DOEnums_7_499, DAEnums_7_499, DOEnums_25_2, DAEnums_25_2 +validation.iec61850.packagesLn = LogicalNodes, LogicalNodes_90_3, LogicalNodes_90_4, LogicalNodes_90_6, LogicalNodes_90_8, LogicalNodes_90_9, LogicalNodes_90_10, LogicalNodes_90_11, LogicalNodes_90_17, LogicalNodes_7_410, LogicalNodes_7_420, LogicalNodes_7_499, LogicalNodes_61869-9, LogicalNodes_62271-3, LogicalNodes_7_420, LogicalNodes_25_2 +validation.logging.verbose = +validation.on = false +validation.operations.off = +validation.packages.off = +validation.packagesDataIndex = Core, LogicalNodes, CommonDataClasses, LogicalNodes_90_3, CommonDataClasses_90_3, LogicalNodes_90_4, CommonDataClasses_90_4, LogicalNodes_90_6, CommonDataClasses_90_6, LogicalNodes_90_8, CommonDataClasses_90_8, LogicalNodes_90_9, CommonDataClasses_90_9, LogicalNodes_90_10, CommonDataClasses_90_10, LogicalNodes_90_11, CommonDataClasses_90_11, LogicalNodes_90_17, CommonDataClasses_90_17, LogicalNodes_7_410, CommonDataClasses_7_410, LogicalNodes_7_420, LogicalNodes_7_499, CommonDataClasses_7_420, LogicalNodes_61869-9, LogicalNodes_62271-3, LogicalNodes_25_2, CommonDataClasses_25_2 +validation.scope = +xmiexport.dialects = +xmiexport.on = + +2024-09-07 21:41:37,018 [main] INFO Util - +2024-09-07 21:41:37,018 [main] INFO Util - ================================================ +2024-09-07 21:41:37,019 [main] INFO Util - building model from EA EA Java API + ea.dll... +2024-09-07 21:41:37,019 [main] INFO Util - ================================================ +2024-09-07 21:41:37,027 [main] INFO Util - +2024-09-07 21:41:37,027 [main] INFO Util - ------------------------------------------------ +2024-09-07 21:41:37,028 [main] INFO Util - initialising EA builder... +2024-09-07 21:41:38,126 [main] INFO EaModelBuilder - EA version: build 1623 +2024-09-07 21:41:38,155 [main] INFO Util - time=[0:00:01.098] initialised EA builder. +2024-09-07 21:41:38,155 [main] INFO Util - +2024-09-07 21:41:38,155 [main] INFO Util - +2024-09-07 21:41:38,156 [main] INFO Util - ------------------------------------------------ +2024-09-07 21:41:38,156 [main] INFO Util - opening EA file 'C:\Users\gigi\git\jCleanCim\input\IEC62351-7-Ed2-FDIS-20240901.eap'... +2024-09-07 21:41:55,375 [main] INFO Util - time=[0:00:17.219] opened EA file. +2024-09-07 21:41:55,375 [main] INFO Util - +2024-09-07 21:41:55,375 [main] INFO Util - +2024-09-07 21:41:55,375 [main] INFO Util - ------------------------------------------------ +2024-09-07 21:41:55,376 [main] INFO Util - reading model from EA with iteration API (this will take a while)... +2024-09-07 21:41:55,450 [main] INFO PackageBuilder - processing model package iso (0) ... +2024-09-07 21:41:55,488 [main] INFO PackageBuilder - processing top package standard (0) ... +2024-09-07 21:41:55,529 [main] INFO PackageBuilder - processing package iec62351 (0) ... +2024-09-07 21:41:55,615 [main] INFO PackageBuilder - processing package part7 (0) ... +2024-09-07 21:41:55,818 [main] INFO PackageBuilder - processing package Profiles (0) ... +2024-09-07 21:41:55,838 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Profiles, _objData=UmlObjectData [id=51, uuid={4642A2B9-A297-45be-A2B5-28C4F1A2B373}, since=null, name=Part7Profiles, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-07 21:41:55,870 [main] INFO PackageBuilder - processing package nsmAgent (0) ... +2024-09-07 21:41:55,882 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=nsmAgent, _objData=UmlObjectData [id=52, uuid={8F3F8B93-6E15-4fcf-9C40-83EB793F28A5}, since=null, name=nsmAgent, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-07 21:41:56,262 [main] TRACE ClassBuilder - Class Attribute (0 in package nsmAgent) +2024-09-07 21:41:56,363 [main] DEBUG AssociationEndBuilder - Updated target type to Attribute +2024-09-07 21:41:56,373 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=11, uuid=6512bd43-d9ca-36e0-ac99-0b0a82652dca, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=12, uuid=c20ad4d7-6fe9-3759-aa27-a0c99bff6710, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=185, uuid={037D3A56-F1D8-42bb-9EFD-F6E2309B7770}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 21:41:56,373 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=11, uuid=6512bd43-d9ca-36e0-ac99-0b0a82652dca, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=12, uuid=c20ad4d7-6fe9-3759-aa27-a0c99bff6710, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=185, uuid={037D3A56-F1D8-42bb-9EFD-F6E2309B7770}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Attribute +2024-09-07 21:41:56,373 [main] TRACE ClassBuilder - read from EA: nsmAgent::Attribute +2024-09-07 21:41:56,380 [main] TRACE ClassBuilder - Class Attribute (0 in package nsmAgent) +2024-09-07 21:41:56,446 [main] DEBUG AssociationEndBuilder - Updated target type to Attribute +2024-09-07 21:41:56,454 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=15, uuid=9bf31c7f-f062-336a-96d3-c8bd1f8f2ff3, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=16, uuid=c74d97b0-1eae-357e-84aa-9d5bade97baf, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=179, uuid={AB14A505-E58D-4c64-BE95-5835E1FE0435}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 21:41:56,454 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=15, uuid=9bf31c7f-f062-336a-96d3-c8bd1f8f2ff3, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=16, uuid=c74d97b0-1eae-357e-84aa-9d5bade97baf, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=179, uuid={AB14A505-E58D-4c64-BE95-5835E1FE0435}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Attribute +2024-09-07 21:41:56,454 [main] TRACE ClassBuilder - read from EA: nsmAgent::Attribute +2024-09-07 21:41:56,460 [main] TRACE ClassBuilder - Class Attribute (0 in package nsmAgent) +2024-09-07 21:41:56,525 [main] DEBUG AssociationEndBuilder - Updated target type to Attribute +2024-09-07 21:41:56,533 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=19, uuid=1f0e3dad-9990-3345-b743-9f8ffabdffc4, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=20, uuid=98f13708-2101-34c4-b568-7be6106a3b84, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=180, uuid={81333E16-399C-4a6d-83B9-BAC271270F32}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 21:41:56,534 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=19, uuid=1f0e3dad-9990-3345-b743-9f8ffabdffc4, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=20, uuid=98f13708-2101-34c4-b568-7be6106a3b84, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=180, uuid={81333E16-399C-4a6d-83B9-BAC271270F32}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Attribute +2024-09-07 21:41:56,534 [main] TRACE ClassBuilder - read from EA: nsmAgent::Attribute +2024-09-07 21:41:56,540 [main] TRACE ClassBuilder - Class Attribute (0 in package nsmAgent) +2024-09-07 21:41:56,606 [main] DEBUG AssociationEndBuilder - Updated target type to Attribute +2024-09-07 21:41:56,614 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=23, uuid=37693cfc-7480-39e4-9d87-b8c7d8b9aacd, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=24, uuid=1ff1de77-4005-38da-93f4-2943881c655f, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=183, uuid={A10A942F-369A-4aa5-88B5-9F7AD36E5852}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 21:41:56,614 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=23, uuid=37693cfc-7480-39e4-9d87-b8c7d8b9aacd, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=24, uuid=1ff1de77-4005-38da-93f4-2943881c655f, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=183, uuid={A10A942F-369A-4aa5-88B5-9F7AD36E5852}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Attribute +2024-09-07 21:41:56,614 [main] TRACE ClassBuilder - read from EA: nsmAgent::Attribute +2024-09-07 21:41:56,619 [main] TRACE ClassBuilder - Class Attribute (0 in package nsmAgent) +2024-09-07 21:41:56,685 [main] DEBUG AssociationEndBuilder - Updated target type to Attribute +2024-09-07 21:41:56,693 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=27, uuid=02e74f10-e032-3ad8-a8d1-38f2b4fdd6f0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=28, uuid=33e75ff0-9dd6-31bb-a69f-351039152189, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=184, uuid={0A546037-FD29-4ca6-8123-D9FEDAA5A7C4}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 21:41:56,693 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=27, uuid=02e74f10-e032-3ad8-a8d1-38f2b4fdd6f0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=28, uuid=33e75ff0-9dd6-31bb-a69f-351039152189, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=184, uuid={0A546037-FD29-4ca6-8123-D9FEDAA5A7C4}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Attribute +2024-09-07 21:41:56,693 [main] TRACE ClassBuilder - read from EA: nsmAgent::Attribute +2024-09-07 21:41:56,698 [main] TRACE ClassBuilder - Class Attribute (0 in package nsmAgent) +2024-09-07 21:41:56,764 [main] DEBUG AssociationEndBuilder - Updated target type to Attribute +2024-09-07 21:41:56,771 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=31, uuid=c16a5320-fa47-3530-9958-3c34fd356ef5, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=32, uuid=6364d3f0-f495-36ab-9dcf-8d3b5c6e0b01, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=186, uuid={5A0BDE1C-4479-472a-95D9-5E2FF2FB1D48}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 21:41:56,771 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=31, uuid=c16a5320-fa47-3530-9958-3c34fd356ef5, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=32, uuid=6364d3f0-f495-36ab-9dcf-8d3b5c6e0b01, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=186, uuid={5A0BDE1C-4479-472a-95D9-5E2FF2FB1D48}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Attribute +2024-09-07 21:41:56,771 [main] TRACE ClassBuilder - read from EA: nsmAgent::Attribute +2024-09-07 21:41:56,776 [main] TRACE ClassBuilder - Class Attribute (0 in package nsmAgent) +2024-09-07 21:41:56,844 [main] DEBUG AssociationEndBuilder - Updated target type to Attribute +2024-09-07 21:41:56,851 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=35, uuid=1c383cd3-0b7c-398a-b502-93adfecb7b18, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=36, uuid=19ca14e7-ea63-38a4-ae0e-b13d585e4c22, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=187, uuid={D024B2AD-A446-46a8-9026-6CAB3B506EAD}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 21:41:56,852 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=35, uuid=1c383cd3-0b7c-398a-b502-93adfecb7b18, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=36, uuid=19ca14e7-ea63-38a4-ae0e-b13d585e4c22, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=187, uuid={D024B2AD-A446-46a8-9026-6CAB3B506EAD}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Attribute +2024-09-07 21:41:56,852 [main] TRACE ClassBuilder - read from EA: nsmAgent::Attribute +2024-09-07 21:41:56,857 [main] TRACE ClassBuilder - Class Attribute (0 in package nsmAgent) +2024-09-07 21:41:56,924 [main] DEBUG AssociationEndBuilder - Updated target type to Attribute +2024-09-07 21:41:56,933 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=39, uuid=d67d8ab4-f4c1-3bf2-aaa3-53e27879133c, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=40, uuid=d645920e-395f-3dad-bbbb-ed0eca3fe2e0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=207, uuid={EF3A2C3D-0E4D-4d2e-98CA-E29A17F69D6F}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 21:41:56,933 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=39, uuid=d67d8ab4-f4c1-3bf2-aaa3-53e27879133c, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=40, uuid=d645920e-395f-3dad-bbbb-ed0eca3fe2e0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=207, uuid={EF3A2C3D-0E4D-4d2e-98CA-E29A17F69D6F}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Attribute +2024-09-07 21:41:56,933 [main] TRACE ClassBuilder - read from EA: nsmAgent::Attribute +2024-09-07 21:41:56,938 [main] TRACE ClassBuilder - Class Attribute (0 in package nsmAgent) +2024-09-07 21:41:57,004 [main] DEBUG AssociationEndBuilder - Updated target type to Attribute +2024-09-07 21:41:57,012 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=43, uuid=17e62166-fc85-36df-a4d1-bc0e1742c08b, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=44, uuid=f7177163-c833-3ff4-b38f-c8d2872f1ec6, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=188, uuid={779BD3EC-A6F0-4fa2-AF25-CF73DEB80D9D}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 21:41:57,013 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=43, uuid=17e62166-fc85-36df-a4d1-bc0e1742c08b, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=44, uuid=f7177163-c833-3ff4-b38f-c8d2872f1ec6, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=188, uuid={779BD3EC-A6F0-4fa2-AF25-CF73DEB80D9D}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Attribute +2024-09-07 21:41:57,013 [main] TRACE ClassBuilder - read from EA: nsmAgent::Attribute +2024-09-07 21:41:57,018 [main] TRACE ClassBuilder - Class Class (0 in package nsmAgent) +2024-09-07 21:41:57,042 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::Class, _objData=UmlObjectData [id=3451, uuid={6E8148A7-7F05-41a0-9B96-4DE1404873EE}, since=null, name=isActive, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:57,098 [main] DEBUG AssociationEndBuilder - Updated target type to Class +2024-09-07 21:41:57,105 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=48, uuid=642e92ef-b794-3173-8881-b53e1e1b18b6, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=49, uuid=f457c545-a9de-388f-98ec-ee47145a72c0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=181, uuid={B87BF513-6F00-4a87-8745-0EFE6669608B}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 21:41:57,105 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=48, uuid=642e92ef-b794-3173-8881-b53e1e1b18b6, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=49, uuid=f457c545-a9de-388f-98ec-ee47145a72c0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=181, uuid={B87BF513-6F00-4a87-8745-0EFE6669608B}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Class +2024-09-07 21:41:57,105 [main] TRACE ClassBuilder - read from EA: nsmAgent::Class +2024-09-07 21:41:57,110 [main] TRACE ClassBuilder - Class Class (0 in package nsmAgent) +2024-09-07 21:41:57,129 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::Class, _objData=UmlObjectData [id=3982, uuid={0ADC0F06-862E-4bf0-91E6-77D5A0ACAC93}, since=null, name=isActive, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:57,186 [main] DEBUG AssociationEndBuilder - Updated target type to Class +2024-09-07 21:41:57,193 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=53, uuid=d82c8d16-19ad-3176-9665-453cfb2e55f0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=54, uuid=a684ecee-e76f-3522-b732-86a895bc8436, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=226, uuid={18809321-3AB3-4ee2-8EFB-837D3C11C6DB}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 21:41:57,193 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=53, uuid=d82c8d16-19ad-3176-9665-453cfb2e55f0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=54, uuid=a684ecee-e76f-3522-b732-86a895bc8436, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=226, uuid={18809321-3AB3-4ee2-8EFB-837D3C11C6DB}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Class +2024-09-07 21:41:57,193 [main] TRACE ClassBuilder - read from EA: nsmAgent::Class +2024-09-07 21:41:57,199 [main] TRACE ClassBuilder - Class Class (0 in package nsmAgent) +2024-09-07 21:41:57,219 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::Class, _objData=UmlObjectData [id=3442, uuid={59E9AD9F-FC10-4f48-B814-DA381B64951D}, since=null, name=isActive, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:57,276 [main] DEBUG AssociationEndBuilder - Updated target type to Class +2024-09-07 21:41:57,284 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=58, uuid=66f041e1-6a60-328b-85a7-e228a89c3799, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=59, uuid=093f65e0-80a2-35f8-876b-1c5722a46aa2, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=182, uuid={3E772D79-C1EA-4a57-A5C1-11E871B0C5C7}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 21:41:57,284 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=58, uuid=66f041e1-6a60-328b-85a7-e228a89c3799, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=59, uuid=093f65e0-80a2-35f8-876b-1c5722a46aa2, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=182, uuid={3E772D79-C1EA-4a57-A5C1-11E871B0C5C7}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Class +2024-09-07 21:41:57,284 [main] TRACE ClassBuilder - read from EA: nsmAgent::Class +2024-09-07 21:41:57,290 [main] TRACE ClassBuilder - Class health (0 in package nsmAgent) +2024-09-07 21:41:57,310 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::health, _objData=UmlObjectData [id=3454, uuid={CC8861DB-2567-4147-A044-BA3F2890EF3C}, since=null, name=Version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:57,357 [main] DEBUG AssociationEndBuilder - Updated source type to health +2024-09-07 21:41:57,357 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=11, uuid=6512bd43-d9ca-36e0-ac99-0b0a82652dca, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=health, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=12, uuid=c20ad4d7-6fe9-3759-aa27-a0c99bff6710, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=185, uuid={037D3A56-F1D8-42bb-9EFD-F6E2309B7770}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::health +2024-09-07 21:41:57,357 [main] TRACE ClassBuilder - read from EA: nsmAgent::health +2024-09-07 21:41:57,364 [main] TRACE ClassBuilder - Class identity (0 in package nsmAgent) +2024-09-07 21:41:57,383 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::identity, _objData=UmlObjectData [id=3453, uuid={FCEB4C51-4294-4255-B547-06FC8EAD1631}, since=null, name=Version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:57,433 [main] DEBUG AssociationEndBuilder - Updated source type to identity +2024-09-07 21:41:57,433 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=27, uuid=02e74f10-e032-3ad8-a8d1-38f2b4fdd6f0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=identity, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=28, uuid=33e75ff0-9dd6-31bb-a69f-351039152189, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=184, uuid={0A546037-FD29-4ca6-8123-D9FEDAA5A7C4}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::identity +2024-09-07 21:41:57,433 [main] TRACE ClassBuilder - read from EA: nsmAgent::identity +2024-09-07 21:41:57,438 [main] TRACE ClassBuilder - Class index (0 in package nsmAgent) +2024-09-07 21:41:57,458 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::index, _objData=UmlObjectData [id=3452, uuid={94DC5272-A241-486c-B0B9-E954FC9CEEB9}, since=null, name=Version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:57,504 [main] DEBUG AssociationEndBuilder - Updated source type to index +2024-09-07 21:41:57,504 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=23, uuid=37693cfc-7480-39e4-9d87-b8c7d8b9aacd, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=index, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=24, uuid=1ff1de77-4005-38da-93f4-2943881c655f, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=183, uuid={A10A942F-369A-4aa5-88B5-9F7AD36E5852}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::index +2024-09-07 21:41:57,504 [main] TRACE ClassBuilder - read from EA: nsmAgent::index +2024-09-07 21:41:57,510 [main] TRACE ClassBuilder - Class nsmAgent (0 in package nsmAgent) +2024-09-07 21:41:57,532 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::nsmAgent, _objData=UmlObjectData [id=3448, uuid={5FAAD04C-5CF2-4de7-9E7A-87ED0BF31C92}, since=null, name=mibPrefix, alias=, stereotype=, visibility=public, txtDescription='The prefix to be added to the each Attributes when used within this Agent branch', htmlDescription='

The prefix to be added to the each Attributes when used within this Agent branch

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=string, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:57,541 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::nsmAgent, _objData=UmlObjectData [id=3449, uuid={91C49511-AC32-48bc-B58E-2B08325AECF0}, since=null, name=objectIdentity, alias=, stereotype=, visibility=public, txtDescription='The branch identifier', htmlDescription='

The branch identifier

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=string, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:57,549 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::nsmAgent, _objData=UmlObjectData [id=3450, uuid={ED9B83E7-AE09-4070-96DD-DC944F967E05}, since=null, name=objectBranchId, alias=, stereotype=, visibility=public, txtDescription='The branch identifier', htmlDescription='

The branch identifier

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=string, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:57,596 [main] DEBUG AssociationEndBuilder - Updated source type to nsmAgent +2024-09-07 21:41:57,596 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=58, uuid=66f041e1-6a60-328b-85a7-e228a89c3799, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=nsmAgent, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=59, uuid=093f65e0-80a2-35f8-876b-1c5722a46aa2, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=182, uuid={3E772D79-C1EA-4a57-A5C1-11E871B0C5C7}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::nsmAgent +2024-09-07 21:41:57,596 [main] TRACE ClassBuilder - read from EA: nsmAgent::nsmAgent +2024-09-07 21:41:57,602 [main] TRACE ClassBuilder - Class nsmEntry (0 in package nsmAgent) +2024-09-07 21:41:57,626 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::nsmEntry, _objData=UmlObjectData [id=3979, uuid={21B90413-2706-49d1-A52C-E5C36E7666D4}, since=null, name=mibPrefix, alias=, stereotype=, visibility=public, txtDescription='The prefix to be added to the each Attributes when used within this Agent branch', htmlDescription='

The prefix to be added to the each Attributes when used within this Agent branch

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=string, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:57,635 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::nsmEntry, _objData=UmlObjectData [id=3980, uuid={1140893C-EF40-4d4c-908C-CB302BACA4CB}, since=null, name=objectIdentity, alias=, stereotype=, visibility=public, txtDescription='The branch identifier', htmlDescription='

The branch identifier

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=string, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:57,644 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::nsmEntry, _objData=UmlObjectData [id=3981, uuid={D16EB47B-7D14-4b5a-87B0-9E3757C72F57}, since=null, name=objectBranchId, alias=, stereotype=, visibility=public, txtDescription='The branch identifier', htmlDescription='

The branch identifier

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=string, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:57,691 [main] DEBUG AssociationEndBuilder - Updated source type to nsmEntry +2024-09-07 21:41:57,691 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=53, uuid=d82c8d16-19ad-3176-9665-453cfb2e55f0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=nsmEntry, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=54, uuid=a684ecee-e76f-3522-b732-86a895bc8436, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=226, uuid={18809321-3AB3-4ee2-8EFB-837D3C11C6DB}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::nsmEntry +2024-09-07 21:41:57,691 [main] TRACE ClassBuilder - read from EA: nsmAgent::nsmEntry +2024-09-07 21:41:57,696 [main] TRACE ClassBuilder - Class nsmEvent (0 in package nsmAgent) +2024-09-07 21:41:57,718 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::nsmEvent, _objData=UmlObjectData [id=3443, uuid={897C9792-FFA0-4111-80BB-4973BBF14FBE}, since=null, name=mibPrefix, alias=, stereotype=, visibility=public, txtDescription='The prefix to be added to the each Attributes when used within this Agent branch', htmlDescription='

The prefix to be added to the each Attributes when used within this Agent branch

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=string, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:57,726 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::nsmEvent, _objData=UmlObjectData [id=3444, uuid={46527C35-A279-40fb-90C3-546B6430D724}, since=null, name=objectIdentity, alias=, stereotype=, visibility=public, txtDescription='The branch identifier', htmlDescription='

The branch identifier

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=string, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:57,735 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::nsmEvent, _objData=UmlObjectData [id=3445, uuid={07EF49E6-1576-43ed-9364-792638FA9A7F}, since=null, name=objectBranchId, alias=, stereotype=, visibility=public, txtDescription='The branch identifier', htmlDescription='

The branch identifier

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=string, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:57,780 [main] DEBUG AssociationEndBuilder - Updated source type to nsmEvent +2024-09-07 21:41:57,781 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=48, uuid=642e92ef-b794-3173-8881-b53e1e1b18b6, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=nsmEvent, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=49, uuid=f457c545-a9de-388f-98ec-ee47145a72c0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=181, uuid={B87BF513-6F00-4a87-8745-0EFE6669608B}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::nsmEvent +2024-09-07 21:41:57,781 [main] TRACE ClassBuilder - read from EA: nsmAgent::nsmEvent +2024-09-07 21:41:57,786 [main] TRACE ClassBuilder - Class performance (0 in package nsmAgent) +2024-09-07 21:41:57,809 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::performance, _objData=UmlObjectData [id=3455, uuid={F52F6387-CDFF-4a2a-B4C3-3E25870BE05A}, since=null, name=Version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:57,859 [main] DEBUG AssociationEndBuilder - Updated source type to performance +2024-09-07 21:41:57,859 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=31, uuid=c16a5320-fa47-3530-9958-3c34fd356ef5, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=performance, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=32, uuid=6364d3f0-f495-36ab-9dcf-8d3b5c6e0b01, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=186, uuid={5A0BDE1C-4479-472a-95D9-5E2FF2FB1D48}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::performance +2024-09-07 21:41:57,859 [main] TRACE ClassBuilder - read from EA: nsmAgent::performance +2024-09-07 21:41:57,865 [main] TRACE ClassBuilder - Class protocol (0 in package nsmAgent) +2024-09-07 21:41:57,885 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::protocol, _objData=UmlObjectData [id=3447, uuid={F2329AA5-0361-4f8c-92BD-CE45DB120CE3}, since=null, name=Version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:57,934 [main] DEBUG AssociationEndBuilder - Updated source type to protocol +2024-09-07 21:41:57,934 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=15, uuid=9bf31c7f-f062-336a-96d3-c8bd1f8f2ff3, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=protocol, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=16, uuid=c74d97b0-1eae-357e-84aa-9d5bade97baf, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=179, uuid={AB14A505-E58D-4c64-BE95-5835E1FE0435}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::protocol +2024-09-07 21:41:57,934 [main] TRACE ClassBuilder - read from EA: nsmAgent::protocol +2024-09-07 21:41:57,940 [main] TRACE ClassBuilder - Class security (0 in package nsmAgent) +2024-09-07 21:41:57,962 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::security, _objData=UmlObjectData [id=3446, uuid={7B1451A9-BA4A-4172-938F-AE95484B650C}, since=null, name=Version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:58,008 [main] DEBUG AssociationEndBuilder - Updated source type to security +2024-09-07 21:41:58,009 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=19, uuid=1f0e3dad-9990-3345-b743-9f8ffabdffc4, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=security, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=20, uuid=98f13708-2101-34c4-b568-7be6106a3b84, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=180, uuid={81333E16-399C-4a6d-83B9-BAC271270F32}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::security +2024-09-07 21:41:58,009 [main] TRACE ClassBuilder - read from EA: nsmAgent::security +2024-09-07 21:41:58,014 [main] TRACE ClassBuilder - Class setvalue (0 in package nsmAgent) +2024-09-07 21:41:58,034 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::setvalue, _objData=UmlObjectData [id=3456, uuid={5980FD0B-7618-42e2-8A8F-B4A3BA69C461}, since=null, name=Version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:58,080 [main] DEBUG AssociationEndBuilder - Updated source type to setvalue +2024-09-07 21:41:58,080 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=35, uuid=1c383cd3-0b7c-398a-b502-93adfecb7b18, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=setvalue, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=36, uuid=19ca14e7-ea63-38a4-ae0e-b13d585e4c22, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=187, uuid={D024B2AD-A446-46a8-9026-6CAB3B506EAD}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::setvalue +2024-09-07 21:41:58,080 [main] TRACE ClassBuilder - read from EA: nsmAgent::setvalue +2024-09-07 21:41:58,086 [main] TRACE ClassBuilder - Class table (0 in package nsmAgent) +2024-09-07 21:41:58,107 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::table, _objData=UmlObjectData [id=3457, uuid={50B5AB79-81F7-412a-AF6C-15E7D27E4EC6}, since=null, name=Version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:58,152 [main] DEBUG AssociationEndBuilder - Updated source type to table +2024-09-07 21:41:58,152 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=43, uuid=17e62166-fc85-36df-a4d1-bc0e1742c08b, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=table, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=44, uuid=f7177163-c833-3ff4-b38f-c8d2872f1ec6, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=188, uuid={779BD3EC-A6F0-4fa2-AF25-CF73DEB80D9D}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::table +2024-09-07 21:41:58,152 [main] TRACE ClassBuilder - read from EA: nsmAgent::table +2024-09-07 21:41:58,158 [main] TRACE ClassBuilder - Class trap (0 in package nsmAgent) +2024-09-07 21:41:58,179 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::trap, _objData=UmlObjectData [id=3610, uuid={321E6795-47CE-4d0f-A903-28BFD422C88F}, since=null, name=Version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:58,224 [main] DEBUG AssociationEndBuilder - Updated source type to trap +2024-09-07 21:41:58,224 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=39, uuid=d67d8ab4-f4c1-3bf2-aaa3-53e27879133c, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=trap, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=40, uuid=d645920e-395f-3dad-bbbb-ed0eca3fe2e0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=207, uuid={EF3A2C3D-0E4D-4d2e-98CA-E29A17F69D6F}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::trap +2024-09-07 21:41:58,224 [main] TRACE ClassBuilder - read from EA: nsmAgent::trap +2024-09-07 21:41:58,227 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Profiles, _depth=4, _eaElementID=881, _objData=UmlObjectData [id=330, uuid={5A3BC3BE-A490-436c-A0C4-BF2365F8CDD4}, since=null, name=nsmAgent, alias=, stereotype=profile, visibility=public, txtDescription='', htmlDescription=''], _modelId=362, _selfDependent=false, 1_taggedValues{_profile_data=}, 1_diagrams=[DiagramBuilder [_containingPackage=nsmAgent, _objData=UmlObjectData [id=52, uuid={8F3F8B93-6E15-4fcf-9C40-83EB793F28A5}, since=null, name=nsmAgent, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _classes=24 +2024-09-07 21:41:58,227 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=880, _objData=UmlObjectData [id=329, uuid={9FD92520-A629-4fe0-9C99-D01EACC33DFB}, since=null, name=Profiles, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=362, _selfDependent=false, 1_taggedValues{_profile_data=}, 1_diagrams=[DiagramBuilder [_containingPackage=Profiles, _objData=UmlObjectData [id=51, uuid={4642A2B9-A297-45be-A2B5-28C4F1A2B373}, since=null, name=Part7Profiles, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _childPackages=1] +2024-09-07 21:41:58,235 [main] INFO PackageBuilder - processing package Overview (2) ... +2024-09-07 21:41:58,246 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Overview, _objData=UmlObjectData [id=23, uuid={1EC9B9AC-962E-4b2c-A2A8-EFB524CF896E}, since=null, name=Part7 Classes Overview, alias=, stereotype=, visibility=public, txtDescription='IEC 62351-7 Objects overview', htmlDescription='

IEC 62351-7 Objects overview

'], _portrait=true, _kind=LOGICAL] +2024-09-07 21:41:58,287 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=941, uuid={F4ED4B79-564B-4c10-81A0-56580DAC755C}, since=null, name=IEC 60870, DNP and IEC 62351, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Overview, _otherEndName=] +2024-09-07 21:41:58,293 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=939, uuid={A16E0E74-46E5-4db2-9B18-5CAA5D5C1EE4}, since=null, name=IEC 61850, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Overview, _otherEndName=] +2024-09-07 21:41:58,295 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=872, _objData=UmlObjectData [id=324, uuid={E9E467F0-A1DE-4274-9A43-A31884D06B9B}, since=null, name=Overview, alias=, stereotype=, visibility=public, txtDescription='The NSM agent objects are organized in a UML package hierarchy that is shown in Figure 15. The application protocol branch is organized into further substructures that include the specific protocols agents. +The tree of packages is reflected in the translation to the SNMP MIB structure. This MIB structure shall respect additional constraints. For instance the reuse of attribute names in different MIB branches is not allowed. Additional MIB constraints are related to naming conventions and the OID specification.', htmlDescription='

The NSM agent objects are organized in a UML package hierarchy that is shown in Figure 15. The application protocol branch is organized into further substructures that include the specific protocols agents.

The tree of packages is reflected in the translation to the SNMP MIB structure. This MIB structure shall respect additional constraints. For instance the reuse of attribute names in different MIB branches is not allowed. Additional MIB constraints are related to naming conventions and the OID specification.

'], _modelId=362, _selfDependent=false, 2_skippedEaItems=[SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=941, uuid={F4ED4B79-564B-4c10-81A0-56580DAC755C}, since=null, name=IEC 60870, DNP and IEC 62351, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Overview, _otherEndName=], SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=939, uuid={A16E0E74-46E5-4db2-9B18-5CAA5D5C1EE4}, since=null, name=IEC 61850, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Overview, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=Overview, _objData=UmlObjectData [id=23, uuid={1EC9B9AC-962E-4b2c-A2A8-EFB524CF896E}, since=null, name=Part7 Classes Overview, alias=, stereotype=, visibility=public, txtDescription='IEC 62351-7 Objects overview', htmlDescription='

IEC 62351-7 Objects overview

'], _portrait=true, _kind=LOGICAL]] +2024-09-07 21:41:58,301 [main] INFO PackageBuilder - processing package BaseTypes (3) ... +2024-09-07 21:41:58,540 [main] TRACE ClassBuilder - Class AbsoluteDateTime (1 in package BaseTypes) +2024-09-07 21:41:58,562 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::AbsoluteDateTime, _objData=UmlObjectData [id=2741, uuid={F3AF56F9-1853-4d50-BE66-55698A10D728}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='String representation of date and time.', htmlDescription='

String representation of date and time.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=OCTET STRING (SIZE(8..11)), _eaTypeId=0, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:58,567 [main] TRACE ClassBuilder - read from EA: BaseTypes::AbsoluteDateTime +2024-09-07 21:41:58,573 [main] TRACE ClassBuilder - Class Counter32 (2 in package BaseTypes) +2024-09-07 21:41:58,594 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::Counter32 , _objData=UmlObjectData [id=2679, uuid={FA17507F-4E8A-4a30-A8AB-34397CB7B197}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='The range of allowed values must be specified.', htmlDescription='

The range of allowed values must be specified.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=Counter32, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:58,599 [main] TRACE ClassBuilder - read from EA: BaseTypes::Counter32 +2024-09-07 21:41:58,604 [main] TRACE ClassBuilder - Class DateAndTime (3 in package BaseTypes) +2024-09-07 21:41:58,626 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::DateAndTime, _objData=UmlObjectData [id=2681, uuid={E60E2615-6D31-4e8f-AF20-74D562BF4897}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='String representation of date and time according with SMIv2.', htmlDescription='

String representation of date and time according with SMIv2.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=OCTET STRING (SIZE(8..11)), _eaTypeId=0, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:58,631 [main] TRACE ClassBuilder - read from EA: BaseTypes::DateAndTime +2024-09-07 21:41:58,636 [main] TRACE ClassBuilder - Class DisplayString (4 in package BaseTypes) +2024-09-07 21:41:58,673 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::DisplayString, _objData=UmlObjectData [id=2683, uuid={5A7A658D-D236-49b6-BA65-B91C55B54DE8}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='The range of allowed values must be specified.', htmlDescription='

The range of allowed values must be specified.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=DisplayString, _eaTypeId=662, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:58,677 [main] TRACE ClassBuilder - read from EA: BaseTypes::DisplayString +2024-09-07 21:41:58,683 [main] TRACE ClassBuilder - Class Float32TC (6 in package BaseTypes) +2024-09-07 21:41:58,702 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::Float32TC, _objData=UmlObjectData [id=2682, uuid={82BCCE12-A0B4-4061-803E-FD3AE22BF6DC}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='This type represents a 32-bit (4-octet) IEEE floating-point number in binary interchange format', htmlDescription='

This type represents a 32-bit (4-octet) IEEE floating-point number in binary interchange format

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=OCTET STRING (SIZE(4)), _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:58,707 [main] TRACE ClassBuilder - read from EA: BaseTypes::Float32TC +2024-09-07 21:41:58,712 [main] TRACE ClassBuilder - Class Gauge32 (7 in package BaseTypes) +2024-09-07 21:41:58,731 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::Gauge32, _objData=UmlObjectData [id=2678, uuid={FFFF9E05-F8E0-4bc6-B3AB-1A2B5D086BB8}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='The range of allowed values must be specified.', htmlDescription='

The range of allowed values must be specified.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=Gauge32, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:58,736 [main] TRACE ClassBuilder - read from EA: BaseTypes::Gauge32 +2024-09-07 21:41:58,741 [main] TRACE ClassBuilder - Class InetAddress (9 in package BaseTypes) +2024-09-07 21:41:58,763 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::InetAddress, _objData=UmlObjectData [id=3682, uuid={B67A78A1-439B-400a-A30B-D4240DC32266}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='The range of allowed values must be specified.', htmlDescription='

The range of allowed values must be specified.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=DisplayString (SIZE(0..255)), _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:58,767 [main] TRACE ClassBuilder - read from EA: BaseTypes::InetAddress +2024-09-07 21:41:58,773 [main] TRACE ClassBuilder - Class MacAddress (9 in package BaseTypes) +2024-09-07 21:41:58,792 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::MacAddress, _objData=UmlObjectData [id=3719, uuid={96C8CC34-E7C1-46d8-B06F-8DF3BCF5E1C8}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='The range of allowed values must be specified.', htmlDescription='

The range of allowed values must be specified.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=DisplayString (SIZE(0..255)), _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:58,797 [main] TRACE ClassBuilder - read from EA: BaseTypes::MacAddress +2024-09-07 21:41:58,801 [main] TRACE ClassBuilder - Class InetAddressType (10 in package BaseTypes) +2024-09-07 21:41:58,824 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::InetAddressType, _objData=UmlObjectData [id=3685, uuid={7907F04A-B00E-486d-A58A-BB3F1695DE2B}, since=null, name=unknown, alias=, stereotype=enum, visibility=public, txtDescription='Indicates unknown type', htmlDescription='

Indicates unknown type

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:58,833 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::InetAddressType, _objData=UmlObjectData [id=3686, uuid={1E6CB781-CF7B-41f1-A0A8-9724E82FF6E9}, since=null, name=ipv4, alias=, stereotype=enum, visibility=public, txtDescription='An IPv4 address as defined by the InetAddressIPv4 textual convention.', htmlDescription='

An IPv4 address as defined by the InetAddressIPv4 textual convention.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:58,843 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::InetAddressType, _objData=UmlObjectData [id=3687, uuid={A7C3B60B-E33D-4d5c-8338-53FABA39CA4F}, since=null, name=ipv6, alias=, stereotype=enum, visibility=public, txtDescription='An IPv6 address as defined by the InetAddressIPv6 textual convention.', htmlDescription='

An IPv6 address as defined by the InetAddressIPv6 textual convention.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:58,851 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::InetAddressType, _objData=UmlObjectData [id=3688, uuid={F3691BC4-D8C1-4abc-B19E-53E33A9BF458}, since=null, name=ipv4z, alias=, stereotype=enum, visibility=public, txtDescription='A non-global IPv4 address including a zone index as defined by the InetAddressIPv4z textual convention.', htmlDescription='

A non-global IPv4 address including a zone index as defined by the InetAddressIPv4z textual convention.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:58,861 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::InetAddressType, _objData=UmlObjectData [id=3689, uuid={1E81FD33-C128-45bc-920A-8C4BD7E2DEBD}, since=null, name=ipv6z, alias=, stereotype=enum, visibility=public, txtDescription='A non-global IPv6 address including a zone index as defined by the InetAddressIPv6z textual convention.', htmlDescription='

A non-global IPv6 address including a zone index as defined by the InetAddressIPv6z textual convention.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:58,871 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::InetAddressType, _objData=UmlObjectData [id=3683, uuid={CA22E66E-263F-4cc6-A4E8-C19D9E3C14C2}, since=null, name=dns, alias=, stereotype=enum, visibility=public, txtDescription='A non-global IPv6 address including a zone index as defined by the InetAddressIPv6z textual convention.', htmlDescription='

A non-global IPv6 address including a zone index as defined by the InetAddressIPv6z textual convention.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=16, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:58,875 [main] TRACE ClassBuilder - read from EA: BaseTypes::InetAddressType +2024-09-07 21:41:58,880 [main] TRACE ClassBuilder - Class EntityIndex (11 in package BaseTypes) +2024-09-07 21:41:58,902 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::EntityIndex, _objData=UmlObjectData [id=3723, uuid={79B557BD-8843-4e68-94FA-BA4CD410B0E4}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='Integer value 1..2147483647', htmlDescription='

Integer value 1..2147483647

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=Integer32, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:58,906 [main] TRACE ClassBuilder - read from EA: BaseTypes::EntityIndex +2024-09-07 21:41:58,911 [main] TRACE ClassBuilder - Class Integer32 (11 in package BaseTypes) +2024-09-07 21:41:58,932 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::Integer32, _objData=UmlObjectData [id=1397, uuid={16A49FC2-9DFE-4d0a-AF1A-139BBD3A6396}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='Integer value -2147483648..2147483647 (inclusive) according to SMI v2', htmlDescription='

Integer value -2147483648..2147483647 (inclusive) according to SMI v2

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=Integer32, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:58,936 [main] TRACE ClassBuilder - read from EA: BaseTypes::Integer32 +2024-09-07 21:41:58,941 [main] TRACE ClassBuilder - Class Unsigned32 (11 in package BaseTypes) +2024-09-07 21:41:58,961 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::Unsigned32, _objData=UmlObjectData [id=3721, uuid={0EB7C369-E8EA-4733-8E05-C3D43A4FC483}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='The range of allowed values must be specified.', htmlDescription='

The range of allowed values must be specified.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=Integer32, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:58,965 [main] TRACE ClassBuilder - read from EA: BaseTypes::Unsigned32 +2024-09-07 21:41:58,971 [main] TRACE ClassBuilder - Class TimeTicks (15 in package BaseTypes) +2024-09-07 21:41:58,991 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::TimeTicks, _objData=UmlObjectData [id=2680, uuid={6097D103-479F-41f4-9A97-1F94284761AB}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='The range of allowed values must be specified.', htmlDescription='

The range of allowed values must be specified.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=TimeTicks, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:58,995 [main] TRACE ClassBuilder - read from EA: BaseTypes::TimeTicks +2024-09-07 21:41:59,000 [main] TRACE ClassBuilder - Class TruthValue (16 in package BaseTypes) +2024-09-07 21:41:59,020 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::TruthValue, _objData=UmlObjectData [id=2685, uuid={8672694D-2B24-4f77-957A-398B85E13893}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='Represents a boolean value. INTEGER { true(1), false(2) } according with RFC 2579', htmlDescription='

Represents a boolean value. INTEGER { true(1), false(2) } according with RFC 2579

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=TruthValue, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:59,025 [main] TRACE ClassBuilder - read from EA: BaseTypes::TruthValue +2024-09-07 21:41:59,027 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=163, _objData=UmlObjectData [id=45, uuid={66B1AE60-7FA0-4e1d-80D0-B1602C003F67}, since=null, name=BaseTypes, alias=, stereotype=, visibility=public, txtDescription='This package include the base data type. The type is inherited from the SNMP naming convention and is needed for the mapping from the a abstract types.', htmlDescription='

This package include the base data type. The type is inherited from the SNMP naming convention and is needed for the mapping from the a abstract types.

'], _modelId=362, _selfDependent=false, _classes=14 +2024-09-07 21:41:59,031 [main] INFO PackageBuilder - processing package Abstract Types (4) ... +2024-09-07 21:41:59,316 [main] TRACE ClassBuilder - Class BooleanValue (1 in package Abstract Types) +2024-09-07 21:41:59,353 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::BooleanValue, _objData=UmlObjectData [id=2987, uuid={AD4E7F12-52BE-4498-9D56-489F0D36E706}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Represents a boolean value.', htmlDescription='

Represents a boolean value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=636, _eaTypeName=TruthValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:59,369 [main] TRACE ClassBuilder - read from EA: Abstract Types::BooleanValue +2024-09-07 21:41:59,374 [main] TRACE ClassBuilder - Class BooleanValueTs (2 in package Abstract Types) +2024-09-07 21:41:59,427 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::BooleanValueTs, _objData=UmlObjectData [id=2915, uuid={3DFAA603-DD4F-4fb0-B38D-E41B9F5976AD}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:59,437 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::BooleanValueTs, _objData=UmlObjectData [id=2916, uuid={3EDE9EA6-FA52-457e-9F52-95B08337CC6C}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Represents a boolean value.', htmlDescription='

Represents a boolean value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=636, _eaTypeName=TruthValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:59,452 [main] TRACE ClassBuilder - read from EA: Abstract Types::BooleanValueTs +2024-09-07 21:41:59,458 [main] TRACE ClassBuilder - Class CounterTs (5 in package Abstract Types) +2024-09-07 21:41:59,509 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::CounterTs, _objData=UmlObjectData [id=2921, uuid={41F902F6-723F-4b04-A87D-8CFABFCB21DE}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:59,518 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::CounterTs, _objData=UmlObjectData [id=2922, uuid={CD1BCCAD-7FF8-4fd1-A24D-07EEC8C393A6}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='According to SMI v2, used to specify a value which represents a count. The range is 0 to 4294967295.', htmlDescription='

According to SMI v2, used to specify a value which represents a count. The range is 0 to 4294967295.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=624, _eaTypeName=Counter32 , _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:59,532 [main] TRACE ClassBuilder - read from EA: Abstract Types::CounterTs +2024-09-07 21:41:59,537 [main] TRACE ClassBuilder - Class CntRs (7 in package Abstract Types) +2024-09-07 21:41:59,586 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::CntRs, _objData=UmlObjectData [id=3004, uuid={CBFD6F89-8B72-4d52-BB3D-1F897706A12D}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:59,595 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::CntRs, _objData=UmlObjectData [id=3003, uuid={8CAFD2C5-0DE7-4308-93B7-D49D6E8065AD}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Boolean', htmlDescription='

Boolean

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=636, _eaTypeName=TruthValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:59,609 [main] TRACE ClassBuilder - read from EA: Abstract Types::CntRs +2024-09-07 21:41:59,614 [main] TRACE ClassBuilder - Class Floating (8 in package Abstract Types) +2024-09-07 21:41:59,650 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::Floating, _objData=UmlObjectData [id=2937, uuid={C1ACEE33-E3BF-408c-AA52-21345E91BD5B}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='IEEE Standard for Floating-Point Arithmetic, Standard 754-2008', htmlDescription='

IEEE Standard for Floating-Point Arithmetic, Standard 754-2008

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=630, _eaTypeName=Float32TC, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:59,664 [main] TRACE ClassBuilder - read from EA: Abstract Types::Floating +2024-09-07 21:41:59,669 [main] TRACE ClassBuilder - Class FloatingTs (9 in package Abstract Types) +2024-09-07 21:41:59,721 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::FloatingTs, _objData=UmlObjectData [id=2939, uuid={DFBCD799-E7D8-4865-988A-FB02011B6B88}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:59,730 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::FloatingTs, _objData=UmlObjectData [id=2940, uuid={111399D4-DEC9-4f43-A8B9-0E3848228A09}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='IEEE Standard for Floating-Point Arithmetic, Standard 754-2008', htmlDescription='

IEEE Standard for Floating-Point Arithmetic, Standard 754-2008

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=630, _eaTypeName=Float32TC, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:59,745 [main] TRACE ClassBuilder - read from EA: Abstract Types::FloatingTs +2024-09-07 21:41:59,750 [main] TRACE ClassBuilder - Class EntityIndex (11 in package Abstract Types) +2024-09-07 21:41:59,786 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::EntityIndex, _objData=UmlObjectData [id=3724, uuid={5A44C892-8691-42d1-B0D8-D8DE77225CA8}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Integer value 1..2147483647 index', htmlDescription='

Integer value 1..2147483647 index

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=968, _eaTypeName=Unsigned32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:59,800 [main] TRACE ClassBuilder - read from EA: Abstract Types::EntityIndex +2024-09-07 21:41:59,805 [main] TRACE ClassBuilder - Class Integer (11 in package Abstract Types) +2024-09-07 21:41:59,841 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::Integer, _objData=UmlObjectData [id=2928, uuid={A4296952-0928-44e2-8560-C6B0DC4466A7}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Integer value -2147483648..2147483647 (inclusive) according to SMI v2', htmlDescription='

Integer value -2147483648..2147483647 (inclusive) according to SMI v2

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=173, _eaTypeName=Integer32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:59,856 [main] TRACE ClassBuilder - read from EA: Abstract Types::Integer +2024-09-07 21:41:59,861 [main] TRACE ClassBuilder - Class IntegerTs (12 in package Abstract Types) +2024-09-07 21:41:59,912 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::IntegerTs, _objData=UmlObjectData [id=2930, uuid={B1DF3BAC-B146-48d1-B242-E0EE779A9B56}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:59,921 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::IntegerTs, _objData=UmlObjectData [id=2931, uuid={D8B8C3AD-4B33-445e-9393-31D5B1982D4A}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Integer value -2147483648..2147483647 (inclusive) according to SMI v2', htmlDescription='

Integer value -2147483648..2147483647 (inclusive) according to SMI v2

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=173, _eaTypeName=Integer32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:59,935 [main] TRACE ClassBuilder - read from EA: Abstract Types::IntegerTs +2024-09-07 21:41:59,941 [main] TRACE ClassBuilder - Class InetAddress (14 in package Abstract Types) +2024-09-07 21:41:59,977 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::InetAddress, _objData=UmlObjectData [id=3017, uuid={8A787CF9-BA07-4486-A4DF-1CF9BA7A3A41}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='A value that represents an Internet address according to IETF RFC 4001.', htmlDescription='

A value that represents an Internet address according to IETF RFC 4001.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=952, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:41:59,991 [main] TRACE ClassBuilder - read from EA: Abstract Types::InetAddress +2024-09-07 21:41:59,999 [main] TRACE ClassBuilder - Class InetAddressType (15 in package Abstract Types) +2024-09-07 21:42:00,040 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::InetAddressType, _objData=UmlObjectData [id=3690, uuid={117C0501-377C-4bf4-90D9-77F084F0628D}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Address Type', htmlDescription='

Address Type

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=954, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:00,054 [main] TRACE ClassBuilder - read from EA: Abstract Types::InetAddressType +2024-09-07 21:42:00,059 [main] TRACE ClassBuilder - Class MacAddress (16 in package Abstract Types) +2024-09-07 21:42:00,096 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::MacAddress, _objData=UmlObjectData [id=3019, uuid={212F7F94-30C7-4296-9560-DDE128B43ABE}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='OCTET STRING (SIZE (6)), DISPLAY-HINT "1x:"', htmlDescription='

OCTET STRING (SIZE (6)), DISPLAY-HINT "1x:"

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=966, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:00,110 [main] TRACE ClassBuilder - read from EA: Abstract Types::MacAddress +2024-09-07 21:42:00,117 [main] TRACE ClassBuilder - Class Selector (17 in package Abstract Types) +2024-09-07 21:42:00,154 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::Selector, _objData=UmlObjectData [id=3015, uuid={2B45785E-70C4-45d5-B68C-37E64794195C}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='For Transport Selector, max length is 8. For Session and Presentation Selector max length is 16.', htmlDescription='

For Transport Selector, max length is 8. For Session and Presentation Selector max length is 16.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=632, _eaTypeName=DisplayString, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:00,168 [main] TRACE ClassBuilder - read from EA: Abstract Types::Selector +2024-09-07 21:42:00,173 [main] TRACE ClassBuilder - Class Timestamp (18 in package Abstract Types) +2024-09-07 21:42:00,208 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::Timestamp, _objData=UmlObjectData [id=3083, uuid={1090CB92-2A2F-4fef-8659-3BD00578C467}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='The value of year is in network-byte order, fractions of second is as defined in RFC 5905, epoch is defined as Midnight January 1, 1970.', htmlDescription='

The value of year is in network-byte order, fractions of second is as defined in RFC 5905, epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:00,222 [main] TRACE ClassBuilder - read from EA: Abstract Types::Timestamp +2024-09-07 21:42:00,230 [main] TRACE ClassBuilder - Class CharString (19 in package Abstract Types) +2024-09-07 21:42:00,265 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::CharString, _objData=UmlObjectData [id=2989, uuid={E34DC27C-7282-4663-B1EF-D2B160F31A39}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Represents a String.', htmlDescription='

Represents a String.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=632, _eaTypeName=DisplayString, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:00,279 [main] TRACE ClassBuilder - read from EA: Abstract Types::CharString +2024-09-07 21:42:00,284 [main] TRACE ClassBuilder - Class CharStringTs (20 in package Abstract Types) +2024-09-07 21:42:00,334 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::CharStringTs, _objData=UmlObjectData [id=3380, uuid={AF16BFAF-FF80-4499-9DAD-A58391568338}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:00,343 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::CharStringTs, _objData=UmlObjectData [id=3379, uuid={2E8EFCAA-307D-4001-97ED-98DC7A6FCC62}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Represents a String.', htmlDescription='

Represents a String.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=632, _eaTypeName=DisplayString, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:00,357 [main] TRACE ClassBuilder - read from EA: Abstract Types::CharStringTs +2024-09-07 21:42:00,361 [main] TRACE ClassBuilder - Class AbstractBaseType (21 in package Abstract Types) +2024-09-07 21:42:00,612 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of BooleanValue +2024-09-07 21:42:00,614 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of Integer +2024-09-07 21:42:00,616 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of BooleanValueTs +2024-09-07 21:42:00,617 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of CounterTs +2024-09-07 21:42:00,619 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of Floating +2024-09-07 21:42:00,620 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of FloatingTs +2024-09-07 21:42:00,621 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of IntegerTs +2024-09-07 21:42:00,623 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of CharString +2024-09-07 21:42:00,625 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of CharStringTs +2024-09-07 21:42:00,626 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of Timestamp +2024-09-07 21:42:00,628 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of Selector +2024-09-07 21:42:00,629 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of MacAddress +2024-09-07 21:42:00,630 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of InetAddressType +2024-09-07 21:42:00,632 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of InetAddress +2024-09-07 21:42:00,633 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of EntityIndex +2024-09-07 21:42:00,634 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of CntRs +2024-09-07 21:42:00,648 [main] TRACE ClassBuilder - read from EA: Abstract Types::AbstractBaseType +2024-09-07 21:42:00,653 [main] TRACE ClassBuilder - Class AbstractAgent (22 in package Abstract Types) +2024-09-07 21:42:01,007 [main] TRACE ClassBuilder - read from EA: Abstract Types::AbstractAgent +2024-09-07 21:42:01,009 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=710, _objData=UmlObjectData [id=259, uuid={5004F08F-A898-4404-9AC0-FF579C27E37E}, since=null, name=Abstract Types, alias=, stereotype=, visibility=public, txtDescription='The abstract objects used within each agent are mapped to the following object types, except for the objects that refer to special enumerated data types which are defined by their own dedicated types. +Abstract objects are classified by the following attributes: +- Type of data (Boolean, Counter, Integer, Float) +- Timestamp required for each status value change +The type object naming actually reflects this classification, as provided in the description of each abstract type.', htmlDescription='

The abstract objects used within each agent are mapped to the following object types, except for the objects that refer to special enumerated data types which are defined by their own dedicated types.

Abstract objects are classified by the following attributes:

  • Type of data (Boolean, Counter, Integer, Float)
  • Timestamp required for each status value change

The type object naming actually reflects this classification, as provided in the description of each abstract type.

'], _modelId=362, _selfDependent=false, _classes=18 +2024-09-07 21:42:01,013 [main] INFO PackageBuilder - processing package EnumeratedTypes (5) ... +2024-09-07 21:42:01,384 [main] TRACE ClassBuilder - Class AppDatStKind (1 in package EnumeratedTypes) +2024-09-07 21:42:01,406 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::AppDatStKind, _objData=UmlObjectData [id=1780, uuid={088C6AC2-2351-44bf-92A5-C8E7C03B4C15}, since=null, name=unknown, alias=, stereotype=enum, visibility=public, txtDescription='No information available about the environment.', htmlDescription='

No information available about the environment.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=true, _isTypeSuperfluous=true, _type=null] +2024-09-07 21:42:01,414 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::AppDatStKind, _objData=UmlObjectData [id=1781, uuid={4624AC11-61D2-4ce9-99AF-1512A03A0802}, since=null, name=good, alias=, stereotype=enum, visibility=public, txtDescription='Good environment status.', htmlDescription='

Good environment status.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=int, _isLiteral=true, _isTypeSuperfluous=true, _type=null] +2024-09-07 21:42:01,423 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::AppDatStKind, _objData=UmlObjectData [id=1782, uuid={8143CB0E-A1A4-4abf-820C-2678E62A29E1}, since=null, name=bad, alias=, stereotype=enum, visibility=public, txtDescription='Environmental problems detected.', htmlDescription='

Environmental problems detected.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=2, _eaTypeId=0, _eaTypeName=int, _isLiteral=true, _isTypeSuperfluous=true, _type=null] +2024-09-07 21:42:01,427 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::AppDatStKind +2024-09-07 21:42:01,433 [main] TRACE ClassBuilder - Class PhyHealthKind (1 in package EnumeratedTypes) +2024-09-07 21:42:01,455 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::PhyHealthKind, _objData=UmlObjectData [id=4113, uuid={37ACCA99-1DF6-4847-8122-3BCE07D878BA}, since=null, name=ok, alias=, stereotype=enum, visibility=public, txtDescription='No problems, normal operation.', htmlDescription='

No problems, normal operation.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=true, _isTypeSuperfluous=true, _type=null] +2024-09-07 21:42:01,463 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::PhyHealthKind, _objData=UmlObjectData [id=4114, uuid={5D46B37F-ECC9-4e40-8A90-5061744F8173}, since=null, name=warning, alias=, stereotype=enum, visibility=public, txtDescription='Minor problems, but in safe operation mode.', htmlDescription='

Minor problems, but in safe operation mode.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=int, _isLiteral=true, _isTypeSuperfluous=true, _type=null] +2024-09-07 21:42:01,473 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::PhyHealthKind, _objData=UmlObjectData [id=4115, uuid={D7AB716A-CA99-403b-9D93-D795563A98BC}, since=null, name=alarm, alias=, stereotype=enum, visibility=public, txtDescription='Severe problem, no operation possible.', htmlDescription='

Severe problem, no operation possible.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=2, _eaTypeId=0, _eaTypeName=int, _isLiteral=true, _isTypeSuperfluous=true, _type=null] +2024-09-07 21:42:01,477 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::PhyHealthKind +2024-09-07 21:42:01,483 [main] TRACE ClassBuilder - Class ExtKind (2 in package EnumeratedTypes) +2024-09-07 21:42:01,507 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ExtKind, _objData=UmlObjectData [id=3369, uuid={27CBBAC5-2512-4f4b-A0B1-935AC701B409}, since=null, name=unknown, alias=, stereotype=enum, visibility=public, txtDescription='unknown module', htmlDescription='

unknown module

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:01,516 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ExtKind, _objData=UmlObjectData [id=3370, uuid={34D83563-3678-4f50-8C33-ACE3F6629F9D}, since=null, name=ioModule, alias=, stereotype=enum, visibility=public, txtDescription='I/O module', htmlDescription='

I/O module

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:01,525 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ExtKind, _objData=UmlObjectData [id=3371, uuid={C5B47DA7-C6A6-457c-87C7-E616CA496356}, since=null, name=softwarePLC, alias=, stereotype=enum, visibility=public, txtDescription='Software PLC module', htmlDescription='

Software PLC module

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:01,529 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::ExtKind +2024-09-07 21:42:01,535 [main] TRACE ClassBuilder - Class IntKind (4 in package EnumeratedTypes) +2024-09-07 21:42:01,557 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::IntKind, _objData=UmlObjectData [id=3392, uuid={0CCB0825-478A-4793-9BED-DCE9190E1B71}, since=null, name=wired, alias=, stereotype=enum, visibility=public, txtDescription='Wired interface', htmlDescription='

Wired interface

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:01,567 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::IntKind, _objData=UmlObjectData [id=3393, uuid={9E23B223-6923-4872-B4B4-86CB85C60579}, since=null, name=wireless, alias=, stereotype=enum, visibility=public, txtDescription='Wireless interface', htmlDescription='

Wireless interface

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:01,572 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::IntKind +2024-09-07 21:42:01,577 [main] TRACE ClassBuilder - Class LnkKind (5 in package EnumeratedTypes) +2024-09-07 21:42:01,601 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::LnkKind, _objData=UmlObjectData [id=2720, uuid={04896740-8BD1-4a07-987A-351CE576D6E0}, since=null, name=unknown, alias=, stereotype=enum, visibility=public, txtDescription='unknown', htmlDescription='

unknown

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:01,610 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::LnkKind, _objData=UmlObjectData [id=2721, uuid={61312937-D7B2-4aff-BF7B-CC599BE0AF64}, since=null, name=serial, alias=, stereotype=enum, visibility=public, txtDescription='serial', htmlDescription='

serial

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:01,619 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::LnkKind, _objData=UmlObjectData [id=2722, uuid={C0A08551-30DD-4843-9619-727AC796310A}, since=null, name=tcp, alias=, stereotype=enum, visibility=public, txtDescription='tcp', htmlDescription='

tcp

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:01,627 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::LnkKind, _objData=UmlObjectData [id=2723, uuid={93B64A96-33DB-4cfd-9500-8EC833B7FE0C}, since=null, name=udp, alias=, stereotype=enum, visibility=public, txtDescription='udp', htmlDescription='

udp

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:01,636 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::LnkKind, _objData=UmlObjectData [id=3391, uuid={72A18E68-801C-4831-8D81-BD42E2AC29B7}, since=null, name=eth, alias=, stereotype=enum, visibility=public, txtDescription='Ethernet interface ISO/OSI level 2 protocol, not using UDP and TCP.', htmlDescription='

Ethernet interface ISO/OSI level 2 protocol, not using UDP and TCP.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:01,640 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::LnkKind +2024-09-07 21:42:01,646 [main] TRACE ClassBuilder - Class PSPAccKind (6 in package EnumeratedTypes) +2024-09-07 21:42:01,668 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::PSPAccKind, _objData=UmlObjectData [id=1784, uuid={D408D95C-FFE4-4655-A529-710E301D9B38}, since=null, name=notBeingAccessed, alias=, stereotype=, visibility=public, txtDescription='No access to IED control panel is taking place.', htmlDescription='

No access to IED control panel is taking place.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=true, _isTypeSuperfluous=true, _type=null] +2024-09-07 21:42:01,678 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::PSPAccKind, _objData=UmlObjectData [id=1785, uuid={4FE96E50-3BB9-4a27-9440-1187A89DB87F}, since=null, name=accessOccurring, alias=, stereotype=, visibility=public, txtDescription='An access to IED control panel is taking place.', htmlDescription='

An access to IED control panel is taking place.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=int, _isLiteral=true, _isTypeSuperfluous=true, _type=null] +2024-09-07 21:42:01,683 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::PSPAccKind +2024-09-07 21:42:01,688 [main] TRACE ClassBuilder - Class ProtIdKind (7 in package EnumeratedTypes) +2024-09-07 21:42:01,712 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ProtIdKind, _objData=UmlObjectData [id=3250, uuid={07B1D7D8-39BB-4858-8EA3-BF4F5EC59D4E}, since=null, name=unknown, alias=, stereotype=enum, visibility=public, txtDescription='Unknown protocol', htmlDescription='

Unknown protocol

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:01,721 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ProtIdKind, _objData=UmlObjectData [id=3249, uuid={946B4BE5-1467-4fb2-99F0-66054A2B505E}, since=null, name=iEC6185081, alias=, stereotype=enum, visibility=public, txtDescription='MMS', htmlDescription='

MMS

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:01,729 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ProtIdKind, _objData=UmlObjectData [id=3251, uuid={FCC2EF29-9BF3-42ab-B706-EEC24615E648}, since=null, name=iEC6185081GOOSE, alias=, stereotype=enum, visibility=public, txtDescription='GOOSE. This type indicate also routable GOOSE when the LnkType attribute specifies a routable type (e.g. TCP)', htmlDescription='

GOOSE. This type indicate also routable GOOSE when the LnkType attribute specifies a routable type (e.g. TCP)

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:01,738 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ProtIdKind, _objData=UmlObjectData [id=3252, uuid={53BC9774-9A1A-4ea3-BA2C-3F3E35450676}, since=null, name=iEC6185092SV, alias=, stereotype=enum, visibility=public, txtDescription='SV. This type indicate also routable SV when the LnkType attribute specifies a routable type (e.g. TCP)', htmlDescription='

SV. This type indicate also routable SV when the LnkType attribute specifies a routable type (e.g. TCP)

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:01,747 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ProtIdKind, _objData=UmlObjectData [id=3253, uuid={2C9A588E-9040-4f72-A62A-0A0C70EB186D}, since=null, name=ieee1815DNP, alias=, stereotype=enum, visibility=public, txtDescription='DNP', htmlDescription='

DNP

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:01,756 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ProtIdKind, _objData=UmlObjectData [id=3254, uuid={B7D18D05-3E60-4a6e-9210-E719F96EA21F}, since=null, name=iec608705, alias=, stereotype=enum, visibility=public, txtDescription='IEC 60870-5 (Valid for 101 and 104 companion standards)', htmlDescription='

IEC 60870-5 (Valid for 101 and 104 companion standards)

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=5, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:01,764 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ProtIdKind, _objData=UmlObjectData [id=4503, uuid={BE6DDE6F-88D8-4f32-AB00-B3F5EBFA1B7B}, since=null, name=iEC6185082, alias=, stereotype=enum, visibility=public, txtDescription='MMS over Extensible Messaging Presence Protocol (XMPP)', htmlDescription='

MMS over Extensible Messaging Presence Protocol (XMPP)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=6, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:01,768 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::ProtIdKind +2024-09-07 21:42:01,773 [main] TRACE ClassBuilder - Class EventKind (8 in package EnumeratedTypes) +2024-09-07 21:42:01,802 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3694, uuid={648B3CAD-2A54-403c-8179-4CCAF44C7DFC}, since=null, name=none, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that the application does not exist.', htmlDescription='

Indicates that the application does not exist.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:01,812 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3695, uuid={629EF376-0921-44b8-9D1C-CE35E96EA70C}, since=null, name=unKnown, alias=, stereotype=enum, visibility=public, txtDescription='unclassified type', htmlDescription='

unclassified type

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:01,821 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3696, uuid={EAF67857-3BB4-401b-866C-95586A723502}, since=null, name=denialOfService, alias=, stereotype=enum, visibility=public, txtDescription='Denial of Service attack', htmlDescription='

Denial of Service attack

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:01,830 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3697, uuid={6A482C90-ACB9-4b3c-A3B6-614C2A1FF15D}, since=null, name=malware, alias=, stereotype=enum, visibility=public, txtDescription='Malware detected', htmlDescription='

Malware detected

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:01,839 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3698, uuid={B9FF19E5-679A-4370-AA7F-C8FBBFC5762D}, since=null, name=bufferOverRun, alias=, stereotype=enum, visibility=public, txtDescription='Buffer Over Run', htmlDescription='

Buffer Over Run

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:01,848 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3701, uuid={0B2BD779-5C64-4a16-B567-5B15C981A38D}, since=null, name=bufferUnderRun, alias=, stereotype=enum, visibility=public, txtDescription='Buffer Under Run', htmlDescription='

Buffer Under Run

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=5, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:01,857 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3702, uuid={62A177D9-B72C-456c-9901-7E28473C34BF}, since=null, name=badCredential, alias=, stereotype=enum, visibility=public, txtDescription='Bad Credential', htmlDescription='

Bad Credential

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=6, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:01,867 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3703, uuid={FF33276B-A640-4bff-B1CD-9BF645FB9A0F}, since=null, name=badKey, alias=, stereotype=enum, visibility=public, txtDescription='Bad Key', htmlDescription='

Bad Key

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=7, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:01,877 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3699, uuid={10F046F2-3549-4712-83DC-080961F7A2FF}, since=null, name=malformedPDU, alias=, stereotype=enum, visibility=public, txtDescription='Detected some tampered/malformed packets.', htmlDescription='

Detected some tampered/malformed packets.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=8, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:01,886 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3693, uuid={408A86F3-7E67-4037-98BE-835B3D745F6F}, since=null, name=physicalDisruption, alias=, stereotype=enum, visibility=public, txtDescription='Power failure detection or media disconnection.', htmlDescription='

Power failure detection or media disconnection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=9, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:01,894 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3700, uuid={2F6F7E56-04CE-45eb-A2EA-2240EA8F3214}, since=null, name=invalidNetworkAccess, alias=, stereotype=enum, visibility=public, txtDescription='Access to the device form unexpected/banned networks.', htmlDescription='

Access to the device form unexpected/banned networks.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=10, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:01,899 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::EventKind +2024-09-07 21:42:01,905 [main] TRACE ClassBuilder - Class TimSyncIssueKind (10 in package EnumeratedTypes) +2024-09-07 21:42:01,927 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncIssueKind, _objData=UmlObjectData [id=644, uuid={5F833F2F-8710-4c68-9FD5-2901D4F9FBAA}, since=null, name=synced, alias=, stereotype=enum, visibility=public, txtDescription='Indicates time sync is active and correctly operating with local time sync.', htmlDescription='

Indicates time sync is active and correctly operating with local time sync.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:01,936 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncIssueKind, _objData=UmlObjectData [id=645, uuid={88454DC2-BBEA-4021-BAD5-FE61CA4E4F49}, since=null, name=degradated, alias=, stereotype=enum, visibility=public, txtDescription='Indicates time sync is active but not operating correctly (for example because time source is not correctly operating or because of network degradation).', htmlDescription='

Indicates time sync is active but not operating correctly (for example because time source is not correctly operating or because of network degradation).

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:01,945 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncIssueKind, _objData=UmlObjectData [id=646, uuid={869DAB25-EE51-4fb5-9626-BD3FAFC7A6B3}, since=null, name=failed, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that sync has failed.', htmlDescription='

Indicates that sync has failed.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:01,955 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncIssueKind, _objData=UmlObjectData [id=4499, uuid={64AE1060-E782-4cb0-9E8C-F0A50D2EF305}, since=null, name=syncedGlobal, alias=, stereotype=enum, visibility=public, txtDescription='Indicates time sync is active and correctly operating with global time sync.', htmlDescription='

Indicates time sync is active and correctly operating with global time sync.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:01,959 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::TimSyncIssueKind +2024-09-07 21:42:01,964 [main] TRACE ClassBuilder - Class SecurityProfileKind (11 in package EnumeratedTypes) +2024-09-07 21:42:01,987 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::SecurityProfileKind, _objData=UmlObjectData [id=3924, uuid={F71BC91A-79AE-45ca-8AB9-6204E87EEBD0}, since=null, name=noSecurity, alias=, stereotype=enum, visibility=public, txtDescription='Indicate that no security profile is in use', htmlDescription='

Indicate that no security profile is in use

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:01,998 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::SecurityProfileKind, _objData=UmlObjectData [id=3926, uuid={6A444C1A-57C0-4e5d-8703-6142480FF36E}, since=null, name=aProfile, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that authentication A Profile is in use.', htmlDescription='

Indicates that authentication A Profile is in use.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:02,008 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::SecurityProfileKind, _objData=UmlObjectData [id=3927, uuid={89E81915-E439-46f6-B4B0-93DD1656B0A6}, since=null, name=e2eProfile, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that End-to-end application security profile is in use', htmlDescription='

Indicates that End-to-end application security profile is in use

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:02,017 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::SecurityProfileKind, _objData=UmlObjectData [id=3922, uuid={CF278B1A-3FC4-4998-B195-7ED80C0F5913}, since=null, name=ae2eProfile, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that encrypted End-to-end application security profile is in use', htmlDescription='

Indicates that encrypted End-to-end application security profile is in use

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:02,022 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::SecurityProfileKind +2024-09-07 21:42:02,027 [main] TRACE ClassBuilder - Class TimSyncSrcKind (11 in package EnumeratedTypes) +2024-09-07 21:42:02,057 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=665, uuid={952CFE67-4E7C-422f-BD48-A384F2B03616}, since=null, name=unknown, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that the type of the current time sync source is unknown.', htmlDescription='

Indicates that the type of the current time sync source is unknown.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:02,066 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=666, uuid={EA2E4808-5FE5-4d01-AD36-77DC2F564964}, since=null, name=ntp, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via NTP protocol.', htmlDescription='

Indicates that time sync is being performed via NTP protocol.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:02,075 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=667, uuid={7001BEF2-2BA7-473c-BE53-48B29DE68D38}, since=null, name=sntp, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via SNTP protocol.', htmlDescription='

Indicates that time sync is being performed via SNTP protocol.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:02,083 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=668, uuid={473F67F7-75B0-4ec8-AC6D-2C02DCB3D4F9}, since=null, name=irig, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via IRIG input.', htmlDescription='

Indicates that time sync is being performed via IRIG input.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:02,092 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=669, uuid={DFB8EAFA-7990-4ac3-AD4B-6FD2B4387C90}, since=null, name=gps, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed using GNSS input. In the previous edition GPS enumeration was in use and it is kept in this edition for backward compatibility reasons. It is equivalent to GNSS.', htmlDescription='

Indicates that time sync is being performed using GNSS input. In the previous edition GPS enumeration was in use and it is kept in this edition for backward compatibility reasons. It is equivalent to GNSS.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:02,101 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=670, uuid={F059225D-17FE-4d2e-8C53-948236E8E978}, since=null, name=ieee1588PTP, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via PTP protocol.', htmlDescription='

Indicates that time sync is being performed via PTP protocol.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=5, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:02,111 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=671, uuid={9DD2DD32-D0B5-4e2d-9449-188E91493134}, since=null, name=ieee1588PTPC37238Profile2011, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via PTP protocol using C37.238-2011 power profile.', htmlDescription='

Indicates that time sync is being performed via PTP protocol using C37.238-2011 power profile.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=6, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:02,120 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=4110, uuid={6D78019A-469B-4a3b-966F-A3C9D73B86EF}, since=null, name=ieee1588PTPIEC6185093, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via PTP protocol using IEC61850-9-3 profile.', htmlDescription='

Indicates that time sync is being performed via PTP protocol using IEC61850-9-3 profile.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=7, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:02,128 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=4495, uuid={99E0863C-202C-4217-9613-152A89692C12}, since=null, name=ieee1588PTPC37238Profile2017, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via PTP protocol using C37.238-2017 power profile.', htmlDescription='

Indicates that time sync is being performed via PTP protocol using C37.238-2017 power profile.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=8, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:02,137 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=4496, uuid={220F6156-D807-40ac-8E76-FC831FA1D73A}, since=null, name=ieee1588PTPIEC6185093Ed20, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via PTP protocol using IEC61850-9-3 Ed. 2.0 profile.', htmlDescription='

Indicates that time sync is being performed via PTP protocol using IEC61850-9-3 Ed. 2.0 profile.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=9, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:02,146 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=4497, uuid={A37E91A6-003F-4702-931D-6FC0F51BAC0C}, since=null, name=ieee1588PTPIEC6185093Profile2016, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via PTP protocol using IEC61850-9-3 profile.', htmlDescription='

Indicates that time sync is being performed via PTP protocol using IEC61850-9-3 profile.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=7, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:02,154 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=4498, uuid={08161D84-2F6C-4a93-A4A0-2E54C2EBA124}, since=null, name=gnss, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via GNSS input', htmlDescription='

Indicates that time sync is being performed via GNSS input

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:02,163 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=4500, uuid={B0AE11B0-563B-4d29-8660-1A415DFD83BC}, since=null, name=applicationProtocol, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via application protocol transport (e.g.DNP time sync)', htmlDescription='

Indicates that time sync is being performed via application protocol transport (e.g.DNP time sync)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=10, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:02,172 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=4504, uuid={21CB0952-E7FB-4f9d-AA97-59732AD6ADB4}, since=null, name=ntpOnts, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via NTP over NTS (RFC 8915)', htmlDescription='

Indicates that time sync is being performed via NTP over NTS (RFC 8915)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=11, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:02,176 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::TimSyncSrcKind +2024-09-07 21:42:02,180 [main] TRACE ClassBuilder - Class AppDatStType (12 in package EnumeratedTypes) +2024-09-07 21:42:02,233 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::AppDatStType, _objData=UmlObjectData [id=2991, uuid={20C199C1-6505-4e87-AA5E-7761159CD7E3}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp.', htmlDescription='

Timestamp.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:02,242 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::AppDatStType, _objData=UmlObjectData [id=2992, uuid={A150447F-47CA-40a3-A3E4-20675ECB8425}, since=null, name=Value, alias=, stereotype=enum, visibility=public, txtDescription='AppDatStKind enumeration.', htmlDescription='

AppDatStKind enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=292, _eaTypeName=AppDatStKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:02,256 [main] DEBUG ClassBuilder - Adding AppDatStType as subclass of AbstractBaseType +2024-09-07 21:42:02,256 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::AppDatStType +2024-09-07 21:42:02,261 [main] TRACE ClassBuilder - Class PhyHealthType (12 in package EnumeratedTypes) +2024-09-07 21:42:02,313 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::PhyHealthType, _objData=UmlObjectData [id=4116, uuid={BAC3158A-D258-496a-83A5-0E64DFD67679}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp.', htmlDescription='

Timestamp.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:02,323 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::PhyHealthType, _objData=UmlObjectData [id=4117, uuid={D2C2C044-39BB-4b98-BC2D-E3B53A97EDAE}, since=null, name=Value, alias=, stereotype=enum, visibility=public, txtDescription='PhyHealthKind enumeration.', htmlDescription='

PhyHealthKind enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1034, _eaTypeName=PhyHealthKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:02,338 [main] DEBUG ClassBuilder - Adding PhyHealthType as subclass of AbstractBaseType +2024-09-07 21:42:02,338 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::PhyHealthType +2024-09-07 21:42:02,343 [main] TRACE ClassBuilder - Class ExtType (13 in package EnumeratedTypes) +2024-09-07 21:42:02,401 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ExtType, _objData=UmlObjectData [id=3367, uuid={1245D715-EBD7-4730-A6F9-04F33AE0CF28}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='ExtKind enumeration.', htmlDescription='

ExtKind enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=856, _eaTypeName=ExtKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:02,416 [main] DEBUG ClassBuilder - Adding ExtType as subclass of AbstractBaseType +2024-09-07 21:42:02,416 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::ExtType +2024-09-07 21:42:02,420 [main] TRACE ClassBuilder - Class IntType (14 in package EnumeratedTypes) +2024-09-07 21:42:02,454 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::IntType, _objData=UmlObjectData [id=3395, uuid={0A1710BD-B405-499c-8631-29D2BA1F37C0}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='IntKind enumeration', htmlDescription='

IntKind enumeration

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=864, _eaTypeName=IntKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:02,468 [main] DEBUG ClassBuilder - Adding IntType as subclass of AbstractBaseType +2024-09-07 21:42:02,468 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::IntType +2024-09-07 21:42:02,474 [main] TRACE ClassBuilder - Class EventType (15 in package EnumeratedTypes) +2024-09-07 21:42:02,525 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventType, _objData=UmlObjectData [id=3705, uuid={CF22855C-E347-4873-AD54-398449D71764}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp.', htmlDescription='

Timestamp.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:02,534 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventType, _objData=UmlObjectData [id=3704, uuid={B8CA2998-8D74-4277-B68D-01EC12299F89}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='EventKind enumeration.', htmlDescription='

EventKind enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=958, _eaTypeName=EventKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:02,548 [main] DEBUG ClassBuilder - Adding EventType as subclass of AbstractBaseType +2024-09-07 21:42:02,548 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::EventType +2024-09-07 21:42:02,554 [main] TRACE ClassBuilder - Class PSPAccType (16 in package EnumeratedTypes) +2024-09-07 21:42:02,603 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::PSPAccType, _objData=UmlObjectData [id=3378, uuid={2DC1C237-EFE6-4e97-A76B-58AA500A8F7B}, since=null, name=Timestamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp.', htmlDescription='

Timestamp.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:02,613 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::PSPAccType, _objData=UmlObjectData [id=3377, uuid={018C1C51-9C40-4e91-A95B-3878F4DD9BD9}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='PSPAccKind Enumeration.', htmlDescription='

PSPAccKind Enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=293, _eaTypeName=PSPAccKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:02,626 [main] DEBUG ClassBuilder - Adding PSPAccType as subclass of AbstractBaseType +2024-09-07 21:42:02,626 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::PSPAccType +2024-09-07 21:42:02,632 [main] TRACE ClassBuilder - Class ProtIdType (17 in package EnumeratedTypes) +2024-09-07 21:42:02,667 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ProtIdType, _objData=UmlObjectData [id=3011, uuid={7F5D7A4B-5851-45b9-9F48-5C8F08A97218}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='ProtIdKind Enumeration.', htmlDescription='

ProtIdKind Enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=829, _eaTypeName=ProtIdKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:02,682 [main] DEBUG ClassBuilder - Adding ProtIdType as subclass of AbstractBaseType +2024-09-07 21:42:02,682 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::ProtIdType +2024-09-07 21:42:02,686 [main] TRACE ClassBuilder - Class TimSyncIssueType (18 in package EnumeratedTypes) +2024-09-07 21:42:02,720 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncIssueType, _objData=UmlObjectData [id=3006, uuid={A23195C8-D6B6-4033-B7CC-798A866B84FA}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='TimSyncIssueKind Enumeration.', htmlDescription='

TimSyncIssueKind Enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=113, _eaTypeName=TimSyncIssueKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:02,735 [main] DEBUG ClassBuilder - Adding TimSyncIssueType as subclass of AbstractBaseType +2024-09-07 21:42:02,735 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::TimSyncIssueType +2024-09-07 21:42:02,741 [main] TRACE ClassBuilder - Class SecurityProfileType (20 in package EnumeratedTypes) +2024-09-07 21:42:02,779 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::SecurityProfileType, _objData=UmlObjectData [id=3929, uuid={62BF7B27-EFA1-466c-AED9-06307DBA6999}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='SecurityProfile Enumeration', htmlDescription='

SecurityProfile Enumeration

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1011, _eaTypeName=SecurityProfileKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:02,793 [main] DEBUG ClassBuilder - Adding SecurityProfileType as subclass of AbstractBaseType +2024-09-07 21:42:02,793 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::SecurityProfileType +2024-09-07 21:42:02,799 [main] TRACE ClassBuilder - Class TimSyncSrcType (20 in package EnumeratedTypes) +2024-09-07 21:42:02,835 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcType, _objData=UmlObjectData [id=3008, uuid={7D7258A7-E193-49cd-AA63-6F1E9EECA15D}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='TimSyncSrcKind Enumeration', htmlDescription='

TimSyncSrcKind Enumeration

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=117, _eaTypeName=TimSyncSrcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:02,850 [main] DEBUG ClassBuilder - Adding TimSyncSrcType as subclass of AbstractBaseType +2024-09-07 21:42:02,850 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::TimSyncSrcType +2024-09-07 21:42:02,856 [main] TRACE ClassBuilder - Class LnkType (21 in package EnumeratedTypes) +2024-09-07 21:42:02,892 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::LnkType, _objData=UmlObjectData [id=3010, uuid={9322D17D-875C-49ca-B9CF-0F43B6E41A52}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='LnkType Enumeration.', htmlDescription='

LnkType Enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=644, _eaTypeName=LnkKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:02,906 [main] DEBUG ClassBuilder - Adding LnkType as subclass of AbstractBaseType +2024-09-07 21:42:02,906 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::LnkType +2024-09-07 21:42:02,908 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=112, _objData=UmlObjectData [id=33, uuid={EA70BE0D-4F03-49cf-98EB-61A3452B8572}, since=null, name=EnumeratedTypes, alias=, stereotype=, visibility=public, txtDescription='The abstract objects defined as enumerated types refer to special enumerated data types. +The type object naming actually reflects this classification, as explained explicitly within this section in the description of each abstract type. +Please note that the attributes defined in this package classes have 1..1 multiplicity. The multiplicity is handled when these classes are used as attributes within the agents classes definition.', htmlDescription='

The abstract objects defined as enumerated types refer to special enumerated data types.

The type object naming actually reflects this classification, as explained explicitly within this section in the description of each abstract type.

Please note that the attributes defined in this package classes have 1..1 multiplicity. The multiplicity is handled when these classes are used as attributes within the agents classes definition.

'], _modelId=362, _selfDependent=false, 5_taggedValues{isAgent=yes, isEnumeration=yes, mibIdentity=enumeration, mibName=IEC-62351-ENUM-MIB, objectIdentity=enumeration}, _classes=22 +2024-09-07 21:42:02,913 [main] INFO PackageBuilder - processing package Environmental Agent (7) ... +2024-09-07 21:42:02,932 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Environmental Agent, _objData=UmlObjectData [id=8, uuid={DD68DDD1-5EEB-4a23-B16C-1FF759A2EE6A}, since=null, name=Environmental, alias=, stereotype=, visibility=public, txtDescription='The Environmental agent class.', htmlDescription='

The Environmental agent class.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 21:42:03,015 [main] TRACE ClassBuilder - Class Environmental (1 in package Environmental Agent) +2024-09-07 21:42:03,242 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2673, uuid={B7336AC3-3490-4d18-9C0A-633A3375B799}, since=null, name=AppDatSt, alias=, stereotype=health, visibility=public, txtDescription='Status of the environment where the device is operated (e.g. Power Supply, Physical Access)', htmlDescription='

Status of the environment where the device is operated (e.g. Power Supply, Physical Access)

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=766, _eaTypeName=AppDatStType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:03,254 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=596, uuid={F437BD0A-FA9A-4244-BD21-213EDEE71F93}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Attribute that allows a reset of the statistical information.', htmlDescription='

Attribute that allows a reset of the statistical information.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:03,266 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=3707, uuid={CC877A95-C652-4fe2-AD1D-655296F78214}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:03,278 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2257, uuid={A7F35D26-4B23-4015-AD0D-EBEFA191D4F4}, since=null, name=PSPBld, alias=, stereotype=security, visibility=public, txtDescription='Building access occurred.', htmlDescription='

Building access occurred.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:03,290 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2255, uuid={AE5A5B25-3635-4d4e-BB6F-3F373B37D7F7}, since=null, name=PSPIed, alias=, stereotype=security, visibility=public, txtDescription='Indicates that direct access to the IED is in process.', htmlDescription='

Indicates that direct access to the IED is in process.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:03,301 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2256, uuid={B58DB9CE-5D6A-4836-8A52-322BC774BC87}, since=null, name=PSPPanel, alias=, stereotype=security, visibility=public, txtDescription='Indicates that panel access is occurring to the IED.', htmlDescription='

Indicates that panel access is occurring to the IED.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:03,311 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2258, uuid={5330F087-530C-45ed-97CC-9AAA63252BF8}, since=null, name=PSPPerimeter, alias=, stereotype=security, visibility=public, txtDescription='Physical perimeter access occurred (e.g. door open), where available.', htmlDescription='

Physical perimeter access occurred (e.g. door open), where available.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:03,323 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=152, uuid={77B56447-B1AC-4c57-B772-2A438F32F38B}, since=null, name=PSUP, alias=, stereotype=table, visibility=public, txtDescription='A list of power supply entries.', htmlDescription='

A list of power supply entries.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=616, _eaTypeName=PSUPEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:03,334 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2260, uuid={0ABF14FE-A7EB-447e-9066-271C644F8B1A}, since=null, name=PSUPLos, alias=, stereotype=health, visibility=public, txtDescription='Power supply table entry index of the last power supply that was detected as lost.', htmlDescription='

Power supply table entry index of the last power supply that was detected as lost.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:03,345 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2259, uuid={ECCB9B5A-C082-4a31-BCA7-B115A8600DA0}, since=null, name=PSUPOn, alias=, stereotype=health, visibility=public, txtDescription='Index of the power supply that was the last to come on.', htmlDescription='

Index of the power supply that was the last to come on.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:03,360 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=3622, uuid={96BB2987-191F-4e60-BCB6-102571495093}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=874, _eaTypeName=SecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:03,371 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=3621, uuid={75ECAF5C-210D-48b8-90F9-82576506744C}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object.', htmlDescription='

State events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=903, _eaTypeName=Notification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:03,383 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=4501, uuid={7FB27A25-45C1-42c1-9B72-BD8FC786A10A}, since=null, name=PSPRemote, alias=, stereotype=security, visibility=public, txtDescription='Indicates that a current remote access is occurring to the IED.', htmlDescription='

Indicates that a current remote access is occurring to the IED.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:03,397 [main] DEBUG ClassBuilder - Adding Environmental as subclass of AbstractAgent +2024-09-07 21:42:03,397 [main] TRACE ClassBuilder - read from EA: Environmental Agent::Environmental +2024-09-07 21:42:03,402 [main] TRACE ClassBuilder - Class PSUPEntry (2 in package Environmental Agent) +2024-09-07 21:42:03,533 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2663, uuid={82D58AB7-4A2D-4041-B53A-D00E492C6C11}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:03,546 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2671, uuid={6A6A7DC3-B5BB-4553-84C2-44318B449579}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the power supply.', htmlDescription='

Description of the power supply.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:03,560 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=3725, uuid={27FE83CA-F363-47cc-8B97-92F4711DDAAF}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='Id of the power supply.', htmlDescription='

Id of the power supply.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 21:42:03,576 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2670, uuid={40DB5D25-5E33-4ad3-BB26-D2E165FEBA1F}, since=null, name=Name, alias=, stereotype=identity, visibility=public, txtDescription='Name of the power supply.', htmlDescription='

Name of the power supply.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 21:42:03,588 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2669, uuid={87F74A2E-D615-4bb8-A54D-B421846C7542}, since=null, name=PSUPLos, alias=, stereotype=health, visibility=public, txtDescription='Timestamp of the last detected power loss.', htmlDescription='

Timestamp of the last detected power loss.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:03,599 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2661, uuid={3F81B85E-2C71-4d22-8767-ADB07D4305CC}, since=null, name=PwrLosCnt, alias=, stereotype=health, visibility=public, txtDescription='Attribute that provides a count of number power losses. Power loss indicates primary supply power loss not shutdown.', htmlDescription='

Attribute that provides a count of number power losses. Power loss indicates primary supply power loss not shutdown.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:03,610 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2728, uuid={0A17570B-860F-49a1-8208-A78149EDC279}, since=null, name=PwrOn, alias=, stereotype=health, visibility=public, txtDescription='Indicates if the power supply state is currently on and operating appropriately.', htmlDescription='

Indicates if the power supply state is currently on and operating appropriately.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:03,624 [main] DEBUG ClassBuilder - Adding PSUPEntry as subclass of AbstractAgent +2024-09-07 21:42:03,624 [main] TRACE ClassBuilder - read from EA: Environmental Agent::PSUPEntry +2024-09-07 21:42:03,629 [main] TRACE ClassBuilder - Class Notification (3 in package Environmental Agent) +2024-09-07 21:42:03,682 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Notification, _objData=UmlObjectData [id=3463, uuid={99A52BA7-C37A-4d5a-9AF2-69F868DCA056}, since=null, name=PSUPLos, alias=, stereotype=health, visibility=public, txtDescription='Power supply Table Entry Index of the last power supply that was detected as lost.', htmlDescription='

Power supply Table Entry Index of the last power supply that was detected as lost.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:03,691 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Notification, _objData=UmlObjectData [id=3462, uuid={CF8ECE95-A139-4efa-B7E5-5EBCC29D609C}, since=null, name=PSUPOn, alias=, stereotype=health, visibility=public, txtDescription='Index of the power supply that was the last to come on.', htmlDescription='

Index of the power supply that was the last to come on.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:03,704 [main] DEBUG ClassBuilder - Adding Notification as subclass of AbstractAgent +2024-09-07 21:42:03,704 [main] TRACE ClassBuilder - read from EA: Environmental Agent::Notification +2024-09-07 21:42:03,709 [main] TRACE ClassBuilder - Class SecurityNotification (4 in package Environmental Agent) +2024-09-07 21:42:03,810 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=4039, uuid={F551C4F9-AD27-4ef4-B8FA-5DBAC7238912}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:03,820 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=3432, uuid={04CE81A5-8629-43c0-8F3E-D93C55B63D0B}, since=null, name=PSPBld, alias=, stereotype=security, visibility=public, txtDescription='Building Access occurred.', htmlDescription='

Building Access occurred.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:03,829 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=3430, uuid={8AA6C984-EF4B-41bb-B433-665F0793B107}, since=null, name=PSPIed, alias=, stereotype=security, visibility=public, txtDescription='Indicates that direct access to the IED is in process.', htmlDescription='

Indicates that direct access to the IED is in process.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:03,838 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=3431, uuid={CBC52337-714E-4296-BD4F-B152E72DF029}, since=null, name=PSPPanel, alias=, stereotype=security, visibility=public, txtDescription='Indicates that panel access is occurring to the IED.', htmlDescription='

Indicates that panel access is occurring to the IED.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:03,847 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=3433, uuid={165E406E-AC48-43d3-A163-7401119B36B9}, since=null, name=PSPPerimeter, alias=, stereotype=security, visibility=public, txtDescription='Perimeter Access occurred.', htmlDescription='

Perimeter Access occurred.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:42:03,862 [main] DEBUG ClassBuilder - Adding SecurityNotification as subclass of AbstractAgent +2024-09-07 21:42:03,862 [main] TRACE ClassBuilder - read from EA: Environmental Agent::SecurityNotification +2024-09-07 21:42:03,864 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=40, _objData=UmlObjectData [id=10, uuid={943B03A5-8EC5-4979-8421-5F10D4177B08}, since=null, name=Environmental Agent, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 16 this package contains the object descriptions for the environmental information to be provided for the Network and System Monitoring of environmental conditions where the device is operating.', htmlDescription='

As shown in Figure 16 this package contains the object descriptions for the environmental information to be provided for the Network and System Monitoring of environmental conditions where the device is operating.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=environmental-agent, mibName=IEC-62351-ENV-MIB, mibPrefix=env, objectBranchId=1, objectIdentity=environmental-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=Environmental Agent, _objData=UmlObjectData [id=8, uuid={DD68DDD1-5EEB-4a23-B16C-1FF759A2EE6A}, since=null, name=Environmental, alias=, stereotype=, visibility=public, txtDescription='The Environmental agent class.', htmlDescription='

The Environmental agent class.

'], _portrait=true, _kind=LOGICAL]], _classes=4 +2024-09-07 21:42:03,869 [main] INFO PackageBuilder - processing package IED Agent (8) ... +2024-09-07 21:42:03,888 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=IED Agent, _objData=UmlObjectData [id=9, uuid={C3FD1BF6-CB13-4fb3-9C75-D9FACF470ACD}, since=null, name=IED, alias=, stereotype=, visibility=public, txtDescription='The Intelligent Electronic Device class attributes', htmlDescription='

The Intelligent Electronic Device class attributes

'], _portrait=true, _kind=LOGICAL] +2024-09-07 21:42:04,004 [main] TRACE ClassBuilder - Class IED (1 in package IED Agent) +2024-09-07 21:42:04,595 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=159, uuid={1405DC0D-6A4E-4f7e-AF8C-5E21E5C79F3C}, since=null, name=AtkCnt, alias=, stereotype=security, visibility=public, txtDescription='Attribute that provides the number of cyber- attacks that have been detected.', htmlDescription='

Attribute that provides the number of cyber- attacks that have been detected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:04,606 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=593, uuid={D7F266B3-90FC-434c-850B-A67888D5FF8C}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:04,618 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3365, uuid={4F170B51-C2F3-496d-A921-71158D5FAAD4}, since=null, name=ConfigurationCRC, alias=, stereotype=identity, visibility=public, txtDescription='CRC of the last update.', htmlDescription='

CRC of the last update.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:04,630 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3364, uuid={70C845C3-72FA-4ee2-8C82-B541DEA6F1A6}, since=null, name=ConfigurationVersion, alias=, stereotype=identity, visibility=public, txtDescription='Version of the last uploaded configuration.', htmlDescription='

Version of the last uploaded configuration.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:04,642 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3264, uuid={B2181BC5-C543-4352-AF8C-CF45A0CC6715}, since=null, name=CPU, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of CPU inside the IED.', htmlDescription='

This entry defer to possible multiple instances of CPU inside the IED.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=832, _eaTypeName=CPUEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:04,653 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=164, uuid={27E657EB-F5E0-46ac-9D03-B88771E3C03E}, since=null, name=CpuUsage, alias=, stereotype=health, visibility=public, txtDescription='Provides an attribute that indicates the percentage of processing resources that is in use. Range is 0 to 100', htmlDescription='

Provides an attribute that indicates the percentage of processing resources that is in use. Range is 0 to 100

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:04,664 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=165, uuid={331F6C40-DC4F-47e4-A1E7-D03E91A9BAB7}, since=null, name=DataInv, alias=, stereotype=security, visibility=public, txtDescription='Provides a count of the number of attempts to write invalid data, for instance out-of-range data.', htmlDescription='

Provides a count of the number of attempts to write invalid data, for instance out-of-range data.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:04,676 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=1904, uuid={6044B2D8-9605-461e-A2D5-AF9EF801D394}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='This entry provides a textual description of the IED.', htmlDescription='

This entry provides a textual description of the IED.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:04,688 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=174, uuid={84B44E91-B83B-48bc-95EB-FCE87A7F7BC1}, since=null, name=ExpCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of expired certificates that are in the certificate storage configured for local use.', htmlDescription='

Indicates the number of expired certificates that are in the certificate storage configured for local use.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:04,699 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3332, uuid={609144A0-BD56-43ff-AEA6-E96829144EC8}, since=null, name=EXT, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of extension modules inside the IED.', htmlDescription='

This entry defer to possible multiple instances of extension modules inside the IED.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=850, _eaTypeName=EXTEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:04,712 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3357, uuid={40D5B796-07CF-4261-BF72-7AC36DC3E5C5}, since=null, name=FirmwareVersion, alias=, stereotype=identity, visibility=public, txtDescription='Version of the last uploaded Firmware. Timestamp refers to upload time.', htmlDescription='

Version of the last uploaded Firmware. Timestamp refers to upload time.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:04,723 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=1908, uuid={6FD1E9BC-3801-4721-BC75-1500D754A5F4}, since=null, name=InternalTemp, alias=, stereotype=health, visibility=public, txtDescription='Degree Centigrade measurement of the internal IED Temperature.', htmlDescription='

Degree Centigrade measurement of the internal IED Temperature.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:04,734 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3493, uuid={A2E2F01C-9202-4d14-B2FC-EE99FA25D64D}, since=null, name=LastCPUFail, alias=, stereotype=health, visibility=public, txtDescription='Index of last failing CPU.', htmlDescription='

Index of last failing CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:04,745 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3706, uuid={21041DB8-C542-4137-AADE-3D1E8DD5E1D5}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:04,756 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3494, uuid={7A6C77E3-9BB2-4834-8C72-DAE268A5A789}, since=null, name=LastEXTFail, alias=, stereotype=health, visibility=public, txtDescription='Index of last failing Extension.', htmlDescription='

Index of last failing Extension.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:04,768 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3492, uuid={4ACA1571-DB99-4447-9A06-033F9EE4348B}, since=null, name=LastSTOREFail, alias=, stereotype=health, visibility=public, txtDescription='Index of last failing Storage.', htmlDescription='

Index of last failing Storage.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:04,779 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3256, uuid={A9D75A03-5288-48d7-BA55-09F388369D28}, since=null, name=Location, alias=, stereotype=identity, visibility=public, txtDescription='Physical Installation coordinates (geographical and plant location).', htmlDescription='

Physical Installation coordinates (geographical and plant location).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:04,789 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3257, uuid={B4CF9E53-369A-47de-B31C-9255617C59E5}, since=null, name=Maintainer, alias=, stereotype=identity, visibility=public, txtDescription='Organizational reference for device maintenance.', htmlDescription='

Organizational reference for device maintenance.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:04,800 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3388, uuid={B008E2FB-21B8-4e33-B720-B440E4B1F49D}, since=null, name=MemTotal, alias=, stereotype=health, visibility=public, txtDescription='Provides an attribute that report the total RAM available in KBytes.', htmlDescription='

Provides an attribute that report the total RAM available in KBytes.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:04,812 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=1910, uuid={F6C9C372-CCF6-49b4-B39B-B7C633D0987A}, since=null, name=MemUsage, alias=, stereotype=health, visibility=public, txtDescription='Provides an attribute that indicates the percentage of memory that is in use.Range is 0 to 100.', htmlDescription='

Provides an attribute that indicates the percentage of memory that is in use.Range is 0 to 100.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:04,823 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3255, uuid={E81796A9-2AC8-45d5-A00C-A8FF43E2E704}, since=null, name=MIBVersion, alias=, stereotype=identity, visibility=public, txtDescription='Version of the Management Information Base.', htmlDescription='

Version of the Management Information Base.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:04,834 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=167, uuid={E0D67C9A-2A09-4694-B58C-55AB9281E1BA}, since=null, name=MisEvCnt, alias=, stereotype=health, visibility=public, txtDescription='Provides an attribute that represents the count of missed events or data.', htmlDescription='

Provides an attribute that represents the count of missed events or data.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:04,845 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=1913, uuid={FBF2BE7D-376E-477d-BEA6-8FBF4467B076}, since=null, name=Name, alias=, stereotype=identity, visibility=public, txtDescription='Name of IED.', htmlDescription='

Name of IED.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:04,857 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3718, uuid={472EB367-3A8B-4a9a-82E6-AD7C1825366F}, since=null, name=NearToExpCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of certificates in the certificate storage configured for local use that have exceeded the 70% of validity period.', htmlDescription='

Indicates the number of certificates in the certificate storage configured for local use that have exceeded the 70% of validity period.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:04,869 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=177, uuid={813425EE-45D4-449f-A1BA-5E8BDECC6309}, since=null, name=NvStore, alias=, stereotype=health, visibility=public, txtDescription='Indicates the global number of kilobytes of storage allocated for local use in all storage areas.', htmlDescription='

Indicates the global number of kilobytes of storage allocated for local use in all storage areas.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:04,880 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=178, uuid={82009203-F55E-466e-9B62-1933D717E9E0}, since=null, name=NvStoreRem, alias=, stereotype=health, visibility=public, txtDescription='Indicates the percentage of NvStore available for storage.', htmlDescription='

Indicates the percentage of NvStore available for storage.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:04,891 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=157, uuid={BE9FD31C-2E94-434f-8D2A-69F9BBC26FFD}, since=null, name=PhyHealth, alias=, stereotype=health, visibility=public, txtDescription='General health status of IED hardware and software.', htmlDescription='

General health status of IED hardware and software.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1036, _eaTypeName=PhyHealthType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:04,903 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=158, uuid={D980F3DA-CEDB-4402-837B-C8480047FB4F}, since=null, name=PhyHealthChgCnt, alias=, stereotype=health, visibility=public, txtDescription='Provides a count of the number of transitions state of PhyHealth Attribute.', htmlDescription='

Provides a count of the number of transitions state of PhyHealth Attribute.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:04,915 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3437, uuid={DF896F75-F02E-4195-9E06-0E9BB719136B}, since=null, name=RBACDbUpdate, alias=, stereotype=security, visibility=public, txtDescription='Version of the last uploaded RBAC Database.', htmlDescription='

Version of the last uploaded RBAC Database.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:04,928 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=176, uuid={BF4C520F-2A9F-434f-A442-25072A5C8B6B}, since=null, name=RevCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of revoked certificates that are still configured for local use.', htmlDescription='

Indicates the number of revoked certificates that are still configured for local use.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:04,940 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3479, uuid={8DA6CCEB-ED0C-41ec-B476-C7F33C86B499}, since=null, name=RevCheckFail, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number revocation check failures.', htmlDescription='

Indicates the number revocation check failures.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:04,952 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3620, uuid={93F9F190-837F-4def-9AE7-693E1E609256}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=912, _eaTypeName=SecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:04,964 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3619, uuid={167D9C3F-D113-4dd9-8CD1-62228F439DF9}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object.', htmlDescription='

State events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=911, _eaTypeName=Notification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:04,975 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3387, uuid={2CF43DE1-E31F-4743-B645-CC6617CC65E9}, since=null, name=STORE, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of storage modules inside the IED.', htmlDescription='

This entry defer to possible multiple instances of storage modules inside the IED.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=862, _eaTypeName=STOREEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:04,987 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=4118, uuid={A000D652-2899-4b1e-A269-5B0E74D9612D}, since=null, name=SvcViol, alias=, stereotype=security, visibility=public, txtDescription='Number of service privilege violations (i.e., when the data object that the client wanted to access exists in the access view for the association with that client, but the requested service is not allowed).', htmlDescription='

Number of service privilege violations (i.e., when the data object that the client wanted to access exists in the access view for the association with that client, but the requested service is not allowed).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:04,999 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3964, uuid={8C00B0E5-5F91-4e94-AAA3-B08EFBB15D6C}, since=null, name=Watchdog, alias=, stereotype=health, visibility=public, txtDescription='This attribute report the count of Watchdog intervention on any component of the IED.', htmlDescription='

This attribute report the count of Watchdog intervention on any component of the IED.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:05,011 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=2217, uuid={FA50F248-F688-4b0f-B343-E8626A859677}, since=null, name=WrmStrCnt, alias=, stereotype=health, visibility=public, txtDescription='Number of warm starts detected.', htmlDescription='

Number of warm starts detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:05,025 [main] DEBUG ClassBuilder - Adding IED as subclass of AbstractAgent +2024-09-07 21:42:05,025 [main] TRACE ClassBuilder - read from EA: IED Agent::IED +2024-09-07 21:42:05,031 [main] TRACE ClassBuilder - Class CPUEntry (2 in package IED Agent) +2024-09-07 21:42:05,174 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3261, uuid={F7E2552A-9E40-4498-9B35-80E4DC7388F3}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:05,186 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3260, uuid={2A8CCA5F-B153-4fa8-8801-52859B51BF8A}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the CPU.', htmlDescription='

Description of the CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:05,200 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3262, uuid={6C624EF6-19CC-45c7-8B22-52C6EB105C3F}, since=null, name=Faulty, alias=, stereotype=health, visibility=public, txtDescription='CPU generated errors.', htmlDescription='

CPU generated errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:05,214 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3259, uuid={18120B8F-8761-4f72-A364-9015D0229D9F}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='CPU number.', htmlDescription='

CPU number.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 21:42:05,227 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3258, uuid={5BACDAAA-B8BD-4635-B1F3-7E2C4CB93292}, since=null, name=Online, alias=, stereotype=health, visibility=public, txtDescription='Indicate that CPU is online and active.', htmlDescription='

Indicate that CPU is online and active.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:05,239 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3263, uuid={404E8337-84BD-4e87-888C-BC40C8FDFD3D}, since=null, name=Operable, alias=, stereotype=health, visibility=public, txtDescription='Indicates that CPU is operable (it can be either online or offline).', htmlDescription='

Indicates that CPU is operable (it can be either online or offline).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:05,251 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3389, uuid={D6BA8CB3-C883-4924-9F0F-3E0D3BF3FE2D}, since=null, name=Temperature, alias=, stereotype=health, visibility=public, txtDescription='Temperature of this CPU.', htmlDescription='

Temperature of this CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:05,263 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3965, uuid={2C004DAE-5C35-4b32-8046-95848FB39988}, since=null, name=Watchdog, alias=, stereotype=health, visibility=public, txtDescription='This attribute report the count of Watchdog intervention on this CPU.', htmlDescription='

This attribute report the count of Watchdog intervention on this CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:05,277 [main] DEBUG ClassBuilder - Adding CPUEntry as subclass of AbstractAgent +2024-09-07 21:42:05,277 [main] TRACE ClassBuilder - read from EA: IED Agent::CPUEntry +2024-09-07 21:42:05,284 [main] TRACE ClassBuilder - Class EXTEntry (3 in package IED Agent) +2024-09-07 21:42:05,449 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3334, uuid={5449D06F-D84C-4247-BFF2-855283FE546B}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='Software PLC ID.', htmlDescription='

Software PLC ID.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 21:42:05,461 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3335, uuid={1FA00718-1A03-4856-BE17-E4C968E2303B}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the Software PLC.', htmlDescription='

Description of the Software PLC.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:05,473 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3366, uuid={26FC08E1-AE06-447a-A63C-A464EF3B6C5A}, since=null, name=ExtensionType, alias=, stereotype=identity, visibility=public, txtDescription='This attribute defines the type of the extension module.', htmlDescription='

This attribute defines the type of the extension module.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=854, _eaTypeName=ExtType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:05,485 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3416, uuid={25484747-00E6-4e15-9F70-84DADE0F1C1C}, since=null, name=CodeVersion, alias=, stereotype=identity, visibility=public, txtDescription='Version of the last uploaded code.', htmlDescription='

Version of the last uploaded code.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:05,497 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3338, uuid={582D62C0-D628-4ccb-8BBD-32D4EE3B63BD}, since=null, name=Running, alias=, stereotype=health, visibility=public, txtDescription='Indicates that CPU is operable (it can be either online or offline).', htmlDescription='

Indicates that CPU is operable (it can be either online or offline).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:05,509 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3390, uuid={4838CC42-4D04-48d4-B5E0-73AC845722FF}, since=null, name=Temperature, alias=, stereotype=health, visibility=public, txtDescription='Temperature of this extension.', htmlDescription='

Temperature of this extension.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:05,519 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3333, uuid={884C8693-44E5-4b48-BBA4-E016ABF8B3C1}, since=null, name=Watchdog, alias=, stereotype=health, visibility=public, txtDescription='This attribute report the count of Watchdog intervention on this IED extension (e.g. software PLC).', htmlDescription='

This attribute report the count of Watchdog intervention on this IED extension (e.g. software PLC).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:05,530 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3337, uuid={A88DDBF9-7D12-4096-A713-D46EF92F2788}, since=null, name=Errors, alias=, stereotype=health, visibility=public, txtDescription='This attribute reports the PLC software detected errors.', htmlDescription='

This attribute reports the PLC software detected errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:05,541 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3336, uuid={A600A488-A1C0-4de3-BA57-148F100FC3F6}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:05,556 [main] DEBUG ClassBuilder - Adding EXTEntry as subclass of AbstractAgent +2024-09-07 21:42:05,556 [main] TRACE ClassBuilder - read from EA: IED Agent::EXTEntry +2024-09-07 21:42:05,561 [main] TRACE ClassBuilder - Class STOREEntry (4 in package IED Agent) +2024-09-07 21:42:05,683 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3382, uuid={51E473C6-FD18-455e-AED3-59F394443C8D}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='Storage area ID number.', htmlDescription='

Storage area ID number.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 21:42:05,695 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3383, uuid={064A1F24-744B-46ad-AD7C-A95961E97B13}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the storage area.', htmlDescription='

Description of the storage area.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:05,706 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3386, uuid={F81C3EA0-A881-4cf8-981C-6AAA51137320}, since=null, name=NvStore, alias=, stereotype=health, visibility=public, txtDescription='Indicates the amount of storage.', htmlDescription='

Indicates the amount of storage.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:05,717 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3381, uuid={9C3D8C6F-12FE-4f73-AF1F-DE108934866D}, since=null, name=NvStoreRem, alias=, stereotype=health, visibility=public, txtDescription='Indicate remaining storage in this area.', htmlDescription='

Indicate remaining storage in this area.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:05,728 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3385, uuid={D8309CF9-DAF0-4ee7-A381-888D751BA0AA}, since=null, name=Faulty, alias=, stereotype=health, visibility=public, txtDescription='Storage area fault generated errors.', htmlDescription='

Storage area fault generated errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:05,739 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3732, uuid={39256EA1-992F-4aca-AF28-01BF33E5DF73}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:05,753 [main] DEBUG ClassBuilder - Adding STOREEntry as subclass of AbstractAgent +2024-09-07 21:42:05,753 [main] TRACE ClassBuilder - read from EA: IED Agent::STOREEntry +2024-09-07 21:42:05,758 [main] TRACE ClassBuilder - Class Notification (5 in package IED Agent) +2024-09-07 21:42:05,887 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3486, uuid={B5FF53A1-E8B9-46ec-BE1B-75F6EC7C48F5}, since=null, name=PhyHealthChgCnt, alias=, stereotype=health, visibility=public, txtDescription='Provides a count of the number of transitions state of PhyHealth Attribute.', htmlDescription='

Provides a count of the number of transitions state of PhyHealth Attribute.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:05,900 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3497, uuid={C24EC3BA-E07C-4a47-9FC1-D975C6DF5FA9}, since=null, name=InternalTemp, alias=, stereotype=health, visibility=public, txtDescription='Degree Centigrade measurement of the internal IED Temperature.', htmlDescription='

Degree Centigrade measurement of the internal IED Temperature.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:05,911 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3495, uuid={11B98054-C537-42a0-938C-380F69A2A3F5}, since=null, name=NvStore, alias=, stereotype=health, visibility=public, txtDescription='Indicates the global number of kilobytes of storage allocated for local use in all storage areas.', htmlDescription='

Indicates the global number of kilobytes of storage allocated for local use in all storage areas.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:05,924 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3496, uuid={5E3EA7C8-15A7-42f6-9FBC-0C995489AB43}, since=null, name=NvStoreRem, alias=, stereotype=health, visibility=public, txtDescription='Indicates the percentage of NvStore available for storage.', htmlDescription='

Indicates the percentage of NvStore available for storage.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:05,935 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3480, uuid={8334F7D0-DA9C-4f85-8A96-1ACB87744C5B}, since=null, name=PhyHealth, alias=, stereotype=health, visibility=public, txtDescription='General health status of IED hardware and software.', htmlDescription='

General health status of IED hardware and software.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1036, _eaTypeName=PhyHealthType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:05,947 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3489, uuid={37E2129D-71C5-4030-8530-00D04FA20DDF}, since=null, name=WrmStrCnt, alias=, stereotype=health, visibility=public, txtDescription='Number of warm starts detected.', htmlDescription='

Number of warm starts detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:05,961 [main] DEBUG ClassBuilder - Adding Notification as subclass of AbstractAgent +2024-09-07 21:42:05,961 [main] TRACE ClassBuilder - read from EA: IED Agent::Notification +2024-09-07 21:42:05,967 [main] TRACE ClassBuilder - Class SecurityNotification (6 in package IED Agent) +2024-09-07 21:42:06,088 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3502, uuid={E2312704-4F51-465e-8B02-4DFC37D2286B}, since=null, name=AtkCnt, alias=, stereotype=security, visibility=public, txtDescription='Attribute that provides the number of cyber- attacks that have been detected.', htmlDescription='

Attribute that provides the number of cyber- attacks that have been detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:06,102 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3499, uuid={7B741BD7-BDA8-4148-BDA0-6667E98C3102}, since=null, name=ExpCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of expired certificates that are in the certificate storage configured for local use.', htmlDescription='

Indicates the number of expired certificates that are in the certificate storage configured for local use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:06,113 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3730, uuid={7029DE89-300D-43cb-B94F-49317EE26061}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:06,126 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3731, uuid={554C03A1-C7D0-43ea-8541-46609B5191C2}, since=null, name=NearToExpCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of certificates in the certificate storage configured for local use that have exceeded the 70% of validity period.', htmlDescription='

Indicates the number of certificates in the certificate storage configured for local use that have exceeded the 70% of validity period.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:06,137 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3498, uuid={16D2AFD2-62AE-4dfe-BA94-32B996B33302}, since=null, name=RevCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of revoked certificates that are still configured for local use.', htmlDescription='

Indicates the number of revoked certificates that are still configured for local use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:06,148 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3500, uuid={406910CA-F346-4649-99A2-5A215611BD7D}, since=null, name=RevCheckFail, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number revocation check failures.', htmlDescription='

Indicates the number revocation check failures.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:06,163 [main] DEBUG ClassBuilder - Adding SecurityNotification as subclass of AbstractAgent +2024-09-07 21:42:06,163 [main] TRACE ClassBuilder - read from EA: IED Agent::SecurityNotification +2024-09-07 21:42:06,165 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=43, _objData=UmlObjectData [id=11, uuid={FA4A74C3-A660-4c32-8794-7695680DB23E}, since=null, name=IED Agent, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 17, the IED Agent package contains the object descriptions for the environmental information to be provided for the network and system monitoring of environmental conditions where the device is operating.', htmlDescription='

As shown in Figure 17, the IED Agent package contains the object descriptions for the environmental information to be provided for the network and system monitoring of environmental conditions where the device is operating.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=ied-agent, mibName=IEC-62351-DEV-MIB, mibPrefix=iED, objectBranchId=2, objectIdentity=ied-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=IED Agent, _objData=UmlObjectData [id=9, uuid={C3FD1BF6-CB13-4fb3-9C75-D9FACF470ACD}, since=null, name=IED, alias=, stereotype=, visibility=public, txtDescription='The Intelligent Electronic Device class attributes', htmlDescription='

The Intelligent Electronic Device class attributes

'], _portrait=true, _kind=LOGICAL]], _classes=6 +2024-09-07 21:42:06,170 [main] INFO PackageBuilder - processing package Application Protocols Agents (9) ... +2024-09-07 21:42:06,273 [main] INFO PackageBuilder - processing package Common objects (0) ... +2024-09-07 21:42:06,283 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Common objects, _objData=UmlObjectData [id=64, uuid={583FFED4-9F6C-420f-88B3-80FF9F387121}, since=null, name=Application Protocol common objects, alias=, stereotype=, visibility=public, txtDescription='Application Protocol common objects', htmlDescription='

Application Protocol common objects

'], _portrait=true, _kind=LOGICAL] +2024-09-07 21:42:06,311 [main] TRACE ClassBuilder - Class CommonProtocolInfo (1 in package Common objects) +2024-09-07 21:42:06,456 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4079, uuid={CCA64890-32AD-4a39-BD2E-B115DB6259D5}, since=null, name=IEC62351part3, alias=, stereotype=security, visibility=public, txtDescription='True is security profile in use for this association (IEC 62351-3).', htmlDescription='

True is security profile in use for this association (IEC 62351-3).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:06,468 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4087, uuid={0CDF636C-287B-44bf-AF3B-83CBAEB3791B}, since=null, name=Part3ConnectionId, alias=, stereotype=protocol, visibility=public, txtDescription='IEC 62351-3 Transport layer connection id in use for this Association. Meaningful only if IEC62351Part3 is true.', htmlDescription='

IEC 62351-3 Transport layer connection id in use for this Association. Meaningful only if IEC62351Part3 is true.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:06,482 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4099, uuid={18DFBDB7-B849-4a22-AEBA-4B62D877531D}, since=null, name=TCPHndShTime, alias=, stereotype=performance, visibility=public, txtDescription='Duration of the TCP handshake. Only applicable when the when the application layer has access to the TLS layer.', htmlDescription='

Duration of the TCP handshake. Only applicable when the when the application layer has access to the TLS layer.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:06,496 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4107, uuid={A9F9F05C-681E-480a-B663-D8EB1E1FE300}, since=null, name=TLSHndTime, alias=, stereotype=performance, visibility=public, txtDescription='TLS Handshake time. Only applicable when the when the application layer has access to the TLS layer.', htmlDescription='

TLS Handshake time. Only applicable when the when the application layer has access to the TLS layer.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:06,509 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4109, uuid={F7CBA04D-7FEA-47c7-A560-EA06B30C3056}, since=null, name=TLSRenegotiationTime, alias=, stereotype=performance, visibility=public, txtDescription='TLS Renegotiation time. Only applicable when the when the application layer has access to the TLS layer.', htmlDescription='

TLS Renegotiation time. Only applicable when the when the application layer has access to the TLS layer.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:06,521 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4108, uuid={CBC69A2E-FFEA-4612-9907-B3E519FB4E3F}, since=null, name=TLSResumptionTime, alias=, stereotype=performance, visibility=public, txtDescription='TLS Resumption time. Only applicable when the when the application layer has access to the TLS layer.', htmlDescription='

TLS Resumption time. Only applicable when the when the application layer has access to the TLS layer.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:06,535 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4106, uuid={EF9560F0-0EC3-4417-883D-96C32AE7803C}, since=null, name=TotalHndTime, alias=, stereotype=performance, visibility=public, txtDescription='Transport + Application Handshake time.', htmlDescription='

Transport + Application Handshake time.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:06,548 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4105, uuid={BCBEF3C5-946E-42cf-8D1D-CAAC2679E795}, since=null, name=TransportHndTime, alias=, stereotype=performance, visibility=public, txtDescription='Transport layer handshake time. It is equal to TCPHndTime if IEC62351part3 is false, it is equal to TCPHndTime + TLSHndTime if IEC62351part3 is true.', htmlDescription='

Transport layer handshake time. It is equal to TCPHndTime if IEC62351part3 is false, it is equal to TCPHndTime + TLSHndTime if IEC62351part3 is true.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:06,604 [main] DEBUG ClassBuilder - Adding CommonProtocolInfo as subclass of AbstractAgent +2024-09-07 21:42:06,607 [main] TRACE ClassBuilder - read from EA: Common objects::CommonProtocolInfo +2024-09-07 21:42:06,609 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Application Protocols Agents, _depth=4, _eaElementID=1030, _objData=UmlObjectData [id=383, uuid={AE0BBC52-C6A1-4653-96A9-F35780566A54}, since=null, name=Common objects, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 18, this package includes the common class for the application protocols.', htmlDescription='

As shown in Figure 18, this package includes the common class for the application protocols.

'], _modelId=362, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=Common objects, _objData=UmlObjectData [id=64, uuid={583FFED4-9F6C-420f-88B3-80FF9F387121}, since=null, name=Application Protocol common objects, alias=, stereotype=, visibility=public, txtDescription='Application Protocol common objects', htmlDescription='

Application Protocol common objects

'], _portrait=true, _kind=LOGICAL]], _classes=1 +2024-09-07 21:42:06,614 [main] INFO PackageBuilder - processing package IEC62351-3 ed.2 Agent (6) ... +2024-09-07 21:42:06,634 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=IEC62351-3 ed.2 Agent, _objData=UmlObjectData [id=72, uuid={38D28719-1A0B-491f-9010-AF2D3032BB4B}, since=null, name=IEC 62351-3 ed.2 Agent Relationships, alias=, stereotype=, visibility=public, txtDescription='This picture depicts the relationship between IEC 62351-3 ed.2 objects', htmlDescription='

This picture depicts the relationship between IEC 62351-3 ed.2 objects

'], _portrait=true, _kind=LOGICAL] +2024-09-07 21:42:06,741 [main] TRACE ClassBuilder - Class IEC62351-3ed2security (1 in package IEC62351-3 ed.2 Agent) +2024-09-07 21:42:07,292 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4460, uuid={7510EED9-2C7E-480d-BD60-571DDC732128}, since=null, name=tlsEarlyDataCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: counts early data in handshake detected but neglected.', htmlDescription='

TLSv1.3: counts early data in handshake detected but neglected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:07,305 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4454, uuid={4FA3487F-4B3B-477e-99E8-2F5D24C013EF}, since=null, name=tlsDisallowedCipherCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts disallowed cipher suite proposed.', htmlDescription='

Counts disallowed cipher suite proposed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:07,318 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4461, uuid={F6A6964F-1010-4fc3-9112-0BBBF8244593}, since=null, name=tlsCertSizeMismatchCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts occurrences of endpoint certificate size exceeds limits', htmlDescription='

Counts occurrences of endpoint certificate size exceeds limits

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:07,331 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4463, uuid={89576E04-2176-4454-8207-BA0A305B9547}, since=null, name=tlsNoCaMatchCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts events of matching RootCA certificate for endpoint certificate validation not available.', htmlDescription='

Counts events of matching RootCA certificate for endpoint certificate validation not available.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:07,344 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4464, uuid={E1FBC1A2-6D0C-437e-95D2-873497AF44C6}, since=null, name=tlsNoSigAlgoExtCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: Counts events of no signature-algorithm extension included. Fallback to deprecated signature algorithm', htmlDescription='

TLSv1.2: Counts events of no signature-algorithm extension included. Fallback to deprecated signature algorithm

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:07,357 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4465, uuid={0A95DFE0-8624-4b8a-814E-A12605F19B07}, since=null, name=tlsDepDigAlgCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: Deprecated signature algorithm combination detected counter.', htmlDescription='

TLSv1.2: Deprecated signature algorithm combination detected counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:07,371 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4466, uuid={B68E613E-EEC5-4696-A841-9EE87D237582}, since=null, name=tlsNoTrustedCertMatchCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times Endpoint certificate not in certificate trust list', htmlDescription='

Counts the times Endpoint certificate not in certificate trust list

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:07,385 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4467, uuid={614E4EB0-BAA2-4b19-B00A-EA1FF0D8A3BD}, since=null, name=tlsCertRevokedCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times when endpoint certificate not in certificate trust list', htmlDescription='

Counts the times when endpoint certificate not in certificate trust list

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:07,399 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4468, uuid={1E2A987C-A48F-4eb7-A3BA-2C77F4A68216}, since=null, name=tlsNoCrlCnt, alias=, stereotype=security, visibility=public, txtDescription='Local CRL not accessible counter.', htmlDescription='

Local CRL not accessible counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:07,412 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4469, uuid={4A915807-5D1C-40af-9AA5-A745061F5DED}, since=null, name=tlsCrlExpCnt, alias=, stereotype=security, visibility=public, txtDescription='CRL expired.counter.', htmlDescription='

CRL expired.counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:07,427 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4470, uuid={AE06F05B-3CA8-44d1-9A20-5F4997A319FF}, since=null, name=tlsNoEpskModeCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: no support for encrypt-then-MAC counter', htmlDescription='

TLSv1.2: no support for encrypt-then-MAC counter

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:07,442 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4471, uuid={3E766604-E835-4b5a-A853-08A031D9FE22}, since=null, name=tlsNoEncryptThenMacCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: support of non-ephemeral PSK mode only counter.', htmlDescription='

TLSv1.3: support of non-ephemeral PSK mode only counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:07,456 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4472, uuid={C8F076B9-538C-423c-BC24-3756EAB54AEE}, since=null, name=tlsOcspResExpCnt, alias=, stereotype=security, visibility=public, txtDescription='OCSP response expired counter.', htmlDescription='

OCSP response expired counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:07,470 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4473, uuid={808D4C4A-240F-40a2-A84B-7EB7FAF41461}, since=null, name=tlsCertExpCnt, alias=, stereotype=security, visibility=public, txtDescription='Endpoint certificate expired counter.', htmlDescription='

Endpoint certificate expired counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:07,483 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4474, uuid={03D6BEA0-3F60-4e5b-BB2A-9126ABD1750F}, since=null, name=tlsNoSkUpdateCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: Peer does not perform session key update counter.', htmlDescription='

TLSv1.3: Peer does not perform session key update counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:07,497 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4475, uuid={264129C9-891C-4677-A001-B283CE215402}, since=null, name=tlsSigAlgMismatchCnt, alias=, stereotype=security, visibility=public, txtDescription='Signature algorithms in received endpoint certificate not supported counter.', htmlDescription='

Signature algorithms in received endpoint certificate not supported counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:07,510 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4476, uuid={A460A30B-5686-4f92-AFDC-C53C056A3309}, since=null, name=tlsSigVFailedCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times certificate signature could not be verified.', htmlDescription='

Counts the times certificate signature could not be verified.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:07,522 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4477, uuid={0FF962F9-BFB0-4683-96B5-09E38C57E324}, since=null, name=tlsShortRsaKeyCnt, alias=, stereotype=security, visibility=public, txtDescription='RSA key with key length of less than 2048 bit detected counter.', htmlDescription='

RSA key with key length of less than 2048 bit detected counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:07,535 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4478, uuid={39629ED0-372D-4c6f-B89B-4C13BA7374C6}, since=null, name=tlsMinKeyCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times RSA key with minimum key length of 1024 bit detected and allowed by configuration', htmlDescription='

Counts the times RSA key with minimum key length of 1024 bit detected and allowed by configuration

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:07,548 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4479, uuid={947A8F86-CF55-46c2-B517-3D4FA76FBA27}, since=null, name=tlsShortKeyCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times RSA key with insufficient key length (less than 1024 bit) detected..', htmlDescription='

Counts the times RSA key with insufficient key length (less than 1024 bit) detected..

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:07,561 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4480, uuid={560E07AC-D31D-4807-B518-20E83C9DD1A3}, since=null, name=tlsDepHashCnt, alias=, stereotype=security, visibility=public, txtDescription='Use of deprecated hash algorithm detected counter', htmlDescription='

Use of deprecated hash algorithm detected counter

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:07,574 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4462, uuid={6EDD77BB-4D13-4937-96A5-231A8441C74A}, since=null, name=tlsNoTrCaMatchSCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: No support of peer signalled trusted CA counter.', htmlDescription='

TLSv1.3: No support of peer signalled trusted CA counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:07,587 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4455, uuid={15470B2B-1EDC-41c5-AD3A-2E3583BF3A65}, since=null, name=tlsSessionidExpiredFullHsCnt, alias=, stereotype=security, visibility=public, txtDescription='Counter of sessionID expired, Resumption not possible, full TLS handshake done.', htmlDescription='

Counter of sessionID expired, Resumption not possible, full TLS handshake done.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:07,602 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4458, uuid={2B104C3D-3F3F-4c1a-812A-DC170DBA1CA2}, since=null, name=tlsNoRenegTicket, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: Number of times peer does not use secure renegotiation (session tickets) capability in renegotiated handshake.', htmlDescription='

TLSv1.2: Number of times peer does not use secure renegotiation (session tickets) capability in renegotiated handshake.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:07,617 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4457, uuid={D1BA2BD4-A79C-4617-9538-493A2956FC91}, since=null, name=tlsNoRenegSigCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: Number of times peer does not signal secure renegotiation support (session tickets) in initial handshake.', htmlDescription='

TLSv1.2: Number of times peer does not signal secure renegotiation support (session tickets) in initial handshake.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:07,632 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4453, uuid={E290CB99-A7B9-4ee1-AC49-29234D78A42C}, since=null, name=tlsSessionClosedRevCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the TLS session closure due to received revoked endpoint certificate.', htmlDescription='

Counts the TLS session closure due to received revoked endpoint certificate.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:07,645 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4459, uuid={854B3699-1B9D-4f64-B8B6-56CB2FD90FBB}, since=null, name=tlsNoTrCaMatchScCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: No support of peer signalled trusted CA counter.', htmlDescription='

TLSv1.3: No support of peer signalled trusted CA counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:07,658 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4450, uuid={8D2D94D8-3C6F-4bda-878C-F54D750FFD27}, since=null, name=tlsHsSuccessCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the TLS session successfully established.', htmlDescription='

Counts the TLS session successfully established.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:07,671 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4456, uuid={D19394DC-2DE1-403e-9C38-01EE35A0DDFD}, since=null, name=tlsNoReneg, alias=, stereotype=security, visibility=public, txtDescription='Number of times renegotiation interval is exceeded. TLSv1.2 peer does not renegotiate.', htmlDescription='

Number of times renegotiation interval is exceeded. TLSv1.2 peer does not renegotiate.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:07,684 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4452, uuid={B1BA2AF1-A523-4ca2-979A-38272AF41E2B}, since=null, name=tlsNoLocalCertCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times local endpoint certificate is not available.', htmlDescription='

Number of times local endpoint certificate is not available.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:07,697 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4447, uuid={3D255C0C-5B4C-4589-A304-5D6FAF7E69A2}, since=null, name=tlsWeakVersionCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times when deprecated TLS version proposed and support of TLS versions prior to TLSv1.2 enabled', htmlDescription='

Counts the times when deprecated TLS version proposed and support of TLS versions prior to TLSv1.2 enabled

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:07,710 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4449, uuid={4B8CCA5B-77FF-4b70-98D5-168DA947FE99}, since=null, name=tlsVersionChangeCnt, alias=, stereotype=security, visibility=public, txtDescription='Count the TLS version change (potential downgrade) in ongoing session detected.', htmlDescription='

Count the TLS version change (potential downgrade) in ongoing session detected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:07,725 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4446, uuid={C75A400F-5B38-4bc5-BE6A-48FB4977B686}, since=null, name=tlsDeprecatedVersionCnT, alias=, stereotype=security, visibility=public, txtDescription='Counts the times when a deprecated TLS version is proposed and support of TLS versions prior to TLSv1.2 is disabled.', htmlDescription='

Counts the times when a deprecated TLS version is proposed and support of TLS versions prior to TLSv1.2 is disabled.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:07,738 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4451, uuid={ACB5D4CD-DBF9-4e86-892D-469DB0082C7E}, since=null, name=tlsNoPeerCertCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times peer did not provide endpoint certificate during the TLS handshake.', htmlDescription='

Number of times peer did not provide endpoint certificate during the TLS handshake.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:07,751 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4448, uuid={A02762E7-1235-453b-8BB2-6D4E8F705EA1}, since=null, name=tlsDisallowedVersionCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times when disallowed TLS version (prior to TLSv1.0) proposed', htmlDescription='

Counts the times when disallowed TLS version (prior to TLSv1.0) proposed

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:07,793 [main] DEBUG ClassBuilder - Adding IEC62351-3ed2security as subclass of AbstractAgent +2024-09-07 21:42:07,796 [main] TRACE ClassBuilder - read from EA: IEC62351-3 ed.2 Agent::IEC62351-3ed2security +2024-09-07 21:42:07,801 [main] TRACE ClassBuilder - Class TLSSession (2 in package IEC62351-3 ed.2 Agent) +2024-09-07 21:42:07,917 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4488, uuid={851472EB-C0E1-4464-B067-F650659846CF}, since=null, name=SessionId, alias=, stereotype=index, visibility=public, txtDescription='Id of the TLS session.', htmlDescription='

Id of the TLS session.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibindex=yes, Version=1}] +2024-09-07 21:42:07,930 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4489, uuid={B226702B-AC3E-4f8c-BF07-E3347944EA3A}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:07,942 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4490, uuid={69D938D2-D561-48eb-8BCF-FA2CFA350C07}, since=null, name=LocAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Local address.', htmlDescription='

Local address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:07,954 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4491, uuid={6C3E2D7A-F0C0-424b-A05C-4A96E29F65E7}, since=null, name=LocAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Local address type.', htmlDescription='

Local address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:07,966 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4492, uuid={5C777986-F9FD-4fbf-AAFB-2E087F0B21F7}, since=null, name=RemAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address.', htmlDescription='

Remote address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:07,979 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4493, uuid={7AB71D12-EB91-421a-B172-48B97B758080}, since=null, name=RemAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address type.', htmlDescription='

Remote address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:08,026 [main] DEBUG ClassBuilder - Adding TLSSession as subclass of AbstractAgent +2024-09-07 21:42:08,028 [main] DEBUG ClassBuilder - Adding TLSSession as subclass of CommonProtocolInfo +2024-09-07 21:42:08,033 [main] DEBUG ClassBuilder - Adding TLSSession as subclass of IEC62351-3ed2security +2024-09-07 21:42:08,033 [main] TRACE ClassBuilder - read from EA: IEC62351-3 ed.2 Agent::TLSSession +2024-09-07 21:42:08,038 [main] TRACE ClassBuilder - Class Summary (3 in package IEC62351-3 ed.2 Agent) +2024-09-07 21:42:08,154 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4481, uuid={8E8A2B77-DF1B-4f33-B823-499F2C569AB8}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:08,166 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4482, uuid={CBC3AD5A-6EDA-4a33-95FA-37A565CEA2C1}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered (security or health).', htmlDescription='

Provides the last known event encountered (security or health).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:08,181 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4483, uuid={4669B65B-F448-43b1-9BB7-DD9A5FEFA04B}, since=null, name=Server, alias=, stereotype=table, visibility=public, txtDescription='Client session (when applicable)', htmlDescription='

Client session (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=1077, _eaTypeName=ServerTLS, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{MIBPrefix=tC, Version=1}] +2024-09-07 21:42:08,196 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4484, uuid={C3E6C81C-3F3D-4c3b-BABC-8573CD333CF5}, since=null, name=Client, alias=, stereotype=table, visibility=public, txtDescription='Server session (when applicable)', htmlDescription='

Server session (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=1079, _eaTypeName=ClientTLS, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{MIBPrefix=tC, Version=1}] +2024-09-07 21:42:08,208 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4485, uuid={36BE9868-D051-429a-8C15-ADEDE8C4F60A}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object', htmlDescription='

Security events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1078, _eaTypeName=IEC62351part3ed2SecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:08,219 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4486, uuid={9668B8A2-A9DD-433f-A572-90776DAC42FC}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object', htmlDescription='

State events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1074, _eaTypeName=IEC62351part3edNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:08,234 [main] DEBUG ClassBuilder - Adding Summary as subclass of IEC62351-3ed2security +2024-09-07 21:42:08,234 [main] TRACE ClassBuilder - read from EA: IEC62351-3 ed.2 Agent::Summary +2024-09-07 21:42:08,240 [main] TRACE ClassBuilder - Class IEC62351part3ed2SecurityNotification (4 in package IEC62351-3 ed.2 Agent) +2024-09-07 21:42:08,284 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification, _objData=UmlObjectData [id=4487, uuid={6943E7EC-3F67-43a9-90B0-9BCF7DB4D056}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Description of last event reported', htmlDescription='

Description of last event reported

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:08,298 [main] DEBUG ClassBuilder - Adding IEC62351part3ed2SecurityNotification as subclass of AbstractAgent +2024-09-07 21:42:08,298 [main] TRACE ClassBuilder - read from EA: IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification +2024-09-07 21:42:08,304 [main] TRACE ClassBuilder - Class ClientTLS (6 in package IEC62351-3 ed.2 Agent) +2024-09-07 21:42:08,334 [main] DEBUG ClassBuilder - Adding ClientTLS as subclass of TLSSession +2024-09-07 21:42:08,334 [main] TRACE ClassBuilder - read from EA: IEC62351-3 ed.2 Agent::ClientTLS +2024-09-07 21:42:08,339 [main] TRACE ClassBuilder - Class ServerTLS (7 in package IEC62351-3 ed.2 Agent) +2024-09-07 21:42:08,370 [main] DEBUG ClassBuilder - Adding ServerTLS as subclass of TLSSession +2024-09-07 21:42:08,370 [main] TRACE ClassBuilder - read from EA: IEC62351-3 ed.2 Agent::ServerTLS +2024-09-07 21:42:08,372 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Application Protocols Agents, _depth=4, _eaElementID=1073, _objData=UmlObjectData [id=393, uuid={0BB5C1E1-95F4-4e19-914B-062361E3FE90}, since=null, name=IEC62351-3 ed.2 Agent, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 19, the IEC 62351-3 Agent package includes the monitoring classes for the IEC 62351-3 ed. 2 events.', htmlDescription='

As shown in Figure 19, the IEC 62351-3 Agent package includes the monitoring classes for the IEC 62351-3 ed. 2 events.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=iec62351-3-ed2-agent, mibName=IEC-62351-3-ED2, mibPrefix=part3, objectBranchId=4, objectIdentity=iec62351-3-ed2-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=IEC62351-3 ed.2 Agent, _objData=UmlObjectData [id=72, uuid={38D28719-1A0B-491f-9010-AF2D3032BB4B}, since=null, name=IEC 62351-3 ed.2 Agent Relationships, alias=, stereotype=, visibility=public, txtDescription='This picture depicts the relationship between IEC 62351-3 ed.2 objects', htmlDescription='

This picture depicts the relationship between IEC 62351-3 ed.2 objects

'], _portrait=true, _kind=LOGICAL]], _classes=6 +2024-09-07 21:42:08,377 [main] INFO PackageBuilder - processing package IEEE 1815 and IEC 60870-5 Agent (6) ... +2024-09-07 21:42:08,398 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=IEEE 1815 and IEC 60870-5 Agent, _objData=UmlObjectData [id=33, uuid={8B1E40BA-BA71-478e-BC81-025DA5A45A35}, since=null, name=IEEE 1815 and IEC 60870 Agent Relationships, alias=, stereotype=, visibility=public, txtDescription='This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes. +Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.', htmlDescription='

This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes.

Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 21:42:08,526 [main] TRACE ClassBuilder - Class 60870andDNPProtocolInfo (1 in package IEEE 1815 and IEC 60870-5 Agent) +2024-09-07 21:42:08,998 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3991, uuid={E3FE31B6-2024-4e98-99E9-12CFAC8AEC6F}, since=null, name=AuthFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Count of the number of authorization failures.', htmlDescription='

Count of the number of authorization failures.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:09,008 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3992, uuid={F6B00869-D41C-44b6-B4FF-FA092ED078AE}, since=null, name=CtrlPrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of control actions attempted that did not have the correct privilege.', htmlDescription='

Number of control actions attempted that did not have the correct privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:09,020 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3993, uuid={2CBA5468-91CA-4cf0-BAC3-55AC2EC54FC8}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted.', htmlDescription='

Number PDUs received that could not be decrypted.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:09,031 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3405, uuid={66AB8F6D-0721-44fb-861C-C607A8498C6F}, since=null, name=ExT0Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T0 (connection establishment).', htmlDescription='

Count the expirations of the 104 time-out T0 (connection establishment).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:09,043 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3406, uuid={F62CF6E4-A1AF-476b-B35E-F4DE2A4E0591}, since=null, name=ExT1Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T1 (PDU).', htmlDescription='

Count the expirations of the 104 time-out T1 (PDU).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:09,055 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3407, uuid={8099C0E4-518A-434c-BF60-73BC878C2238}, since=null, name=ExT2Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T2 (ACK).', htmlDescription='

Count the expirations of the 104 time-out T2 (ACK).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:09,066 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3408, uuid={439C3366-994E-4fbc-A804-80CA3D745D68}, since=null, name=ExT3Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T3 (TEST).', htmlDescription='

Count the expirations of the 104 time-out T3 (TEST).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:09,077 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3124, uuid={B8936537-E883-4ab6-8A65-47CF971C5BB4}, since=null, name=InDisc, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDUs that were discarded.', htmlDescription='

Number of received PDUs that were discarded.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:09,088 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3994, uuid={9A232ABD-C751-45bb-8278-552FEB934C4E}, since=null, name=InErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of PDUs received that were in error.', htmlDescription='

Number of PDUs received that were in error.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:09,099 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3995, uuid={A4886E74-D4DE-4163-BBF4-BFB4DA9AA818}, since=null, name=InOvCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer overflows detected due to incoming communication.', htmlDescription='

Number of buffer overflows detected due to incoming communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:09,109 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3996, uuid={34EAD965-3EEE-42ae-9A33-371405C3B4A8}, since=null, name=InterPDUTime, alias=, stereotype=protocol, visibility=public, txtDescription='Time between two consecutives PDUs.', htmlDescription='

Time between two consecutives PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:09,120 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3997, uuid={E65434B6-333B-4677-9DB7-2689202D1C31}, since=null, name=MisPDUCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Provides an attribute that represents the count of missed PDU.', htmlDescription='

Provides an attribute that represents the count of missed PDU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:09,132 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3141, uuid={3DEDE5E8-C46A-4627-A2B8-FA7B2651B388}, since=null, name=OutErr, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmission errors.', htmlDescription='

Number of transmission errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:09,142 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3990, uuid={4B336F22-0DBB-425c-9CE9-8A2B3968C18C}, since=null, name=OutUv, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer underflows detected due to outgoing serial communication.', htmlDescription='

Number of buffer underflows detected due to outgoing serial communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:09,155 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3998, uuid={56C57887-C03F-430b-A3CC-47993296C81A}, since=null, name=PDURTT, alias=, stereotype=protocol, visibility=public, txtDescription='PDU round trip time.', htmlDescription='

PDU round trip time.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:09,166 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3999, uuid={F9A50D40-7721-4f2f-B450-70B42C8159B7}, since=null, name=PDUSizeFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDU with wrong size.', htmlDescription='

Number of received PDU with wrong size.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:09,176 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4000, uuid={C3639D7C-0EF8-4ffb-912C-24F7FA06CBA6}, since=null, name=PduTampCnt, alias=, stereotype=security, visibility=public, txtDescription='Provides an attribute that indicates the count of the number of PDUs that have been detected to be tampered with.', htmlDescription='

Provides an attribute that indicates the count of the number of PDUs that have been detected to be tampered with.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:09,187 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4001, uuid={AD2C395F-15DF-4e49-A4EF-1C8758015811}, since=null, name=PrimaryInterface, alias=, stereotype=protocol, visibility=public, txtDescription='True if the Protocol is running on primary interface (false when backup interface is in use).', htmlDescription='

True if the Protocol is running on primary interface (false when backup interface is in use).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:09,198 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4002, uuid={15035EBB-A53C-4c7d-BEA7-D6AF668B9A81}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:09,209 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3403, uuid={D5E66B05-319E-467b-9B20-4D0021DE5B43}, since=null, name=RtxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the number of retransmissions.', htmlDescription='

Count the number of retransmissions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:09,220 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3123, uuid={5F22267E-6104-41c7-A2B6-BBFFCE828B94}, since=null, name=RxCritical, alias=, stereotype=protocol, visibility=public, txtDescription='Number of critical requests received (according to IEC 62351-5).', htmlDescription='

Number of critical requests received (according to IEC 62351-5).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:09,231 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4003, uuid={37C50A09-5C52-4612-ACD2-3CA5076E832A}, since=null, name=RxPdu, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDUs (including in error PDUs).', htmlDescription='

Number of received PDUs (including in error PDUs).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:09,242 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3135, uuid={51629B5F-2B79-4aa4-A704-E8D4D467D6E2}, since=null, name=RxSolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Number of solicited requests received. Only for DNP.', htmlDescription='

Number of solicited requests received. Only for DNP.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:09,253 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3145, uuid={546FFA93-9BFB-40fc-8F59-570F9FA50834}, since=null, name=RxUnsolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Contains the count of number of unsolicited requests that have been transmitted since the last reset.', htmlDescription='

Contains the count of number of unsolicited requests that have been transmitted since the last reset.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:09,264 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4004, uuid={219E7530-12EB-4a52-AE1A-536554F0ED28}, since=null, name=SessKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of session key negotiations that failed.', htmlDescription='

Number of session key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:09,274 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3122, uuid={9760193C-146A-427a-88DE-4FA2BBC2EA9E}, since=null, name=TxCritical, alias=, stereotype=protocol, visibility=public, txtDescription='Number of critical requests transmitted (according to IEC 62351-5)', htmlDescription='

Number of critical requests transmitted (according to IEC 62351-5)

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:09,285 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4005, uuid={984B7498-8B61-45e0-BE19-6E17EA80D9D0}, since=null, name=TxPdu, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmitted PDUs.', htmlDescription='

Number of transmitted PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:09,296 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3120, uuid={7F13ABEF-5E7A-4fc2-BE27-AB2E70B1B97A}, since=null, name=TxSolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Number of solicited requests transmitted. Only for DNP.', htmlDescription='

Number of solicited requests transmitted. Only for DNP.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:09,306 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3121, uuid={76A62C46-9C78-48ff-9770-F2A7BE837E1F}, since=null, name=TxUnsolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Contains the count of number of unsolicited requests that have been transmitted since the last reset.', htmlDescription='

Contains the count of number of unsolicited requests that have been transmitted since the last reset.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:09,317 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4006, uuid={2AAAEC13-D4BB-4d2a-8461-00DBAE43010B}, since=null, name=UpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations that failed.', htmlDescription='

Number of update key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:09,351 [main] DEBUG ClassBuilder - Adding 60870andDNPProtocolInfo as subclass of AbstractAgent +2024-09-07 21:42:09,351 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo +2024-09-07 21:42:09,358 [main] TRACE ClassBuilder - Class Association (2 in package IEEE 1815 and IEC 60870-5 Agent) +2024-09-07 21:42:09,544 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=3726, uuid={361DD26C-8F48-46fd-BCE9-B6A3787F5FA6}, since=null, name=AssociationId, alias=, stereotype=index, visibility=public, txtDescription='Id of the association.', htmlDescription='

Id of the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:09,556 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=3241, uuid={87C4526C-4B22-42d3-BFDD-0EBE86166CDA}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:09,573 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2417, uuid={FF67FCFB-43B0-4a5a-8A33-52E57E2A1E33}, since=null, name=LocAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Local address.', htmlDescription='

Local address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 21:42:09,589 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=3715, uuid={857943C5-1917-46b9-BAA2-F6DBBE305DDA}, since=null, name=LocAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Local address type.', htmlDescription='

Local address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 21:42:09,601 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2413, uuid={218B44A4-22AA-4a3a-B54C-BC3742A6A951}, since=null, name=ProtID, alias=, stereotype=protocol, visibility=public, txtDescription='Protocol ID in use.', htmlDescription='

Protocol ID in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=780, _eaTypeName=ProtIdType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:09,613 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2412, uuid={2DCFE840-6DFB-49ca-9D60-6F00BBFE9375}, since=null, name=ProviderDesc, alias=, stereotype=identity, visibility=public, txtDescription='Textual description of the provider that is in use.', htmlDescription='

Textual description of the provider that is in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:09,626 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2411, uuid={739910E5-2234-4d7f-BF07-E2FAC9061548}, since=null, name=ProviderName, alias=, stereotype=identity, visibility=public, txtDescription='Identity of the provider responding as the outstation for this association.', htmlDescription='

Identity of the provider responding as the outstation for this association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:09,644 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2416, uuid={F1041BDF-E1EE-44c3-B346-5643EFA0E8C7}, since=null, name=RemAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address.', htmlDescription='

Remote address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{isIndex=yes, mibIndex=yes, Version=0}] +2024-09-07 21:42:09,664 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=3714, uuid={25C69ED7-7E01-4316-B15C-28D99CC5FC94}, since=null, name=RemAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address type.', htmlDescription='

Remote address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{isIndex=yes, mibIndex=yes, Version=0}] +2024-09-07 21:42:09,677 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2410, uuid={4F98C052-71F6-44e6-A31C-2A148D61DF91}, since=null, name=TLnkErrCnt, alias=, stereotype=health, visibility=public, txtDescription='Count of communication link errors detected.', htmlDescription='

Count of communication link errors detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:09,689 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2415, uuid={FED824F2-3E50-44cd-A78C-B816071534FB}, since=null, name=TLnkTyp, alias=, stereotype=protocol, visibility=public, txtDescription='Type of transport being utilized.', htmlDescription='

Type of transport being utilized.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=778, _eaTypeName=LnkType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:09,738 [main] DEBUG ClassBuilder - Adding Association as subclass of AbstractAgent +2024-09-07 21:42:09,740 [main] DEBUG ClassBuilder - Adding Association as subclass of 60870andDNPProtocolInfo +2024-09-07 21:42:09,744 [main] DEBUG ClassBuilder - Adding Association as subclass of CommonProtocolInfo +2024-09-07 21:42:09,744 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent::Association +2024-09-07 21:42:09,749 [main] TRACE ClassBuilder - Class Summary (3 in package IEEE 1815 and IEC 60870-5 Agent) +2024-09-07 21:42:09,869 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=3248, uuid={37A47CAE-5E15-4947-9824-88474381CEB3}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:09,881 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=3708, uuid={33EEE0D1-CEBA-4f55-8388-E92B798B5827}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered (security or health).', htmlDescription='

Provides the last known event encountered (security or health).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:09,894 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=2278, uuid={D8685894-627E-4b6f-B670-3C72CC90DF6B}, since=null, name=Master, alias=, stereotype=table, visibility=public, txtDescription='Client association (when applicable)', htmlDescription='

Client association (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=820, _eaTypeName=MasterAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{MIBPrefix=tC, Version=0}] +2024-09-07 21:42:09,909 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=2287, uuid={364CBB2E-460C-46ce-AC40-149F1C18EAC8}, since=null, name=Outstation, alias=, stereotype=table, visibility=public, txtDescription='Server association (when applicable)', htmlDescription='

Server association (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=821, _eaTypeName=OutstationAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{MIBPrefix=tC, Version=0}] +2024-09-07 21:42:09,921 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=3609, uuid={86E71A83-DD23-44dd-AF05-2C4883970DBA}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object', htmlDescription='

Security events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=914, _eaTypeName=60870andDNPSecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:09,933 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=3608, uuid={E3191E3F-E629-4bfd-A8E1-64D78A2B9955}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object', htmlDescription='

State events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=915, _eaTypeName=60870andDNPNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:09,947 [main] DEBUG ClassBuilder - Adding Summary as subclass of 60870andDNPProtocolInfo +2024-09-07 21:42:09,947 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent::Summary +2024-09-07 21:42:09,952 [main] TRACE ClassBuilder - Class 60870andDNPSecurityNotification (4 in package IEEE 1815 and IEC 60870-5 Agent) +2024-09-07 21:42:10,102 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3519, uuid={8EC7A2E6-FA1E-44bf-871A-8E7A12508F3F}, since=null, name=AuthFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Count of the number of authorization failures.', htmlDescription='

Count of the number of authorization failures.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:10,114 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3518, uuid={F5BEAE2F-4536-4f9c-9478-CF23E2A2D7C5}, since=null, name=CtrlPrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of control actions attempted that did not have the correct privilege.', htmlDescription='

Number of control actions attempted that did not have the correct privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:10,125 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3522, uuid={9ABAB39B-C8D2-427c-805D-DD74A37B15BD}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted.', htmlDescription='

Number PDUs received that could not be decrypted.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:10,136 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=4043, uuid={1BC26E95-9659-4250-87C9-365D73AD44BE}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered (security or health).', htmlDescription='

Provides the last known event encountered (security or health).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:10,147 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3520, uuid={2018A0E6-F948-40c3-98F5-CC50CFBD7527}, since=null, name=PduTampCnt, alias=, stereotype=security, visibility=public, txtDescription='Provides an attribute that indicates the count of the number of PDUs that have been detected to be tampered with.', htmlDescription='

Provides an attribute that indicates the count of the number of PDUs that have been detected to be tampered with.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:10,157 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3521, uuid={F0F1CF0B-1E15-4c19-ACB3-B4C1D745383F}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:10,169 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3523, uuid={22ADAAB8-8A4A-49c6-A261-6FC1E02DFEDB}, since=null, name=SessKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of session key negotiations that failed.', htmlDescription='

Number of session key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:10,182 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3524, uuid={A9AFB691-7A96-43a3-9FDB-B197827A4D8C}, since=null, name=UpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations that failed.', htmlDescription='

Number of update key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:10,196 [main] DEBUG ClassBuilder - Adding 60870andDNPSecurityNotification as subclass of AbstractAgent +2024-09-07 21:42:10,196 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification +2024-09-07 21:42:10,201 [main] TRACE ClassBuilder - Class 60870andDNPNotification (5 in package IEEE 1815 and IEC 60870-5 Agent) +2024-09-07 21:42:10,304 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3526, uuid={6936B8C9-BCD0-46a8-B2A7-4423628A89F6}, since=null, name=InErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of PDUs received that were in error.', htmlDescription='

Number of PDUs received that were in error.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:10,317 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3528, uuid={97175DF9-326B-40f7-B626-D213159A0A56}, since=null, name=InOvCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer overflows detected due to incoming communication.', htmlDescription='

Number of buffer overflows detected due to incoming communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:10,329 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3529, uuid={47916BBB-21C9-49df-8C8B-3A9375A29441}, since=null, name=OutUv, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer underflows detected due to outgoing serial communication.', htmlDescription='

Number of buffer underflows detected due to outgoing serial communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:10,340 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3527, uuid={0C1DB352-F31C-4520-B8BB-43E3CB924F8D}, since=null, name=RxPdu, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDUs.', htmlDescription='

Number of received PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:10,352 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3525, uuid={B77A1C29-3430-40df-AC7F-D1ACC9E6C035}, since=null, name=TxPdu, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmitted PDUs.', htmlDescription='

Number of transmitted PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:10,367 [main] DEBUG ClassBuilder - Adding 60870andDNPNotification as subclass of AbstractAgent +2024-09-07 21:42:10,367 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification +2024-09-07 21:42:10,372 [main] TRACE ClassBuilder - Class MasterAssociation (6 in package IEEE 1815 and IEC 60870-5 Agent) +2024-09-07 21:42:10,399 [main] DEBUG ClassBuilder - Adding MasterAssociation as subclass of Association +2024-09-07 21:42:10,399 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent::MasterAssociation +2024-09-07 21:42:10,404 [main] TRACE ClassBuilder - Class OutstationAssociation (7 in package IEEE 1815 and IEC 60870-5 Agent) +2024-09-07 21:42:10,432 [main] DEBUG ClassBuilder - Adding OutstationAssociation as subclass of Association +2024-09-07 21:42:10,432 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent::OutstationAssociation +2024-09-07 21:42:10,434 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Application Protocols Agents, _depth=4, _eaElementID=131, _objData=UmlObjectData [id=41, uuid={B92342A5-EA3E-4be2-8BA2-4B40BB389569}, since=null, name=IEEE 1815 and IEC 60870-5 Agent, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 20, this package includes the IEEE 1815 DNP and IEC 60870-5-104 protocols classes. This high level class named "summary" includes two objects related to the application stack and "association" class that reports the object related to the possible communication sessions between masters and outstations. +This package includes the version of the objects related to IEC TS 62351-5:2013. +The two class "Master Association" and "Outstation Association" Inherits the Associations class attributes. +For each IEEE 1815 DNP or IEC 60870-5-104 application stack a single instance of "summary" class is provided. This instance of "summary" class can be related to several instances of "OutstationAssociation" and "MasterAssociation" classes which inherit the attributes from the "Association" class. Each instance "Association" is the container of the attributes of a specific application session between an Outstation and a Master. +Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Infoand Security objects, and therefore the more general class as well.', htmlDescription='

As shown in Figure 20, this package includes the IEEE 1815 DNP and IEC 60870-5-104 protocols classes. This high level class named "summary" includes two objects related to the application stack and "association" class that reports the object related to the possible communication sessions between masters and outstations.

This package includes the version of the objects related to IEC TS 62351-5:2013.

The two class "Master Association" and "Outstation Association" Inherits the Associations class attributes.

For each IEEE 1815 DNP or IEC 60870-5-104 application stack a single instance of "summary" class is provided. This instance of "summary" class can be related to several instances of "OutstationAssociation" and "MasterAssociation" classes which inherit the attributes from the "Association" class. Each instance "Association" is the container of the attributes of a specific application session between an Outstation and a Master.

Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Infoand Security objects, and therefore the more general class as well.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=ieee1815andiec60870-5-agent, mibName=IEC-62351-IEC60870-5-IEEE1815-MIB, mibPrefix=tC, objectBranchId=1, objectIdentity=ieee1815andiec60870-5-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=IEEE 1815 and IEC 60870-5 Agent, _objData=UmlObjectData [id=33, uuid={8B1E40BA-BA71-478e-BC81-025DA5A45A35}, since=null, name=IEEE 1815 and IEC 60870 Agent Relationships, alias=, stereotype=, visibility=public, txtDescription='This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes. +Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.', htmlDescription='

This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes.

Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.

'], _portrait=true, _kind=LOGICAL]], _classes=7 +2024-09-07 21:42:10,439 [main] INFO PackageBuilder - processing package IEEE 1815 and IEC 60870-5 Agent - ed2 (6) ... +2024-09-07 21:42:10,460 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=IEEE 1815 and IEC 60870-5 Agent - ed2, _objData=UmlObjectData [id=70, uuid={AA945755-BD47-4be2-A238-6331816DBA4B}, since=null, name=IEEE 1815 and IEC 60870 Agent Relationships, alias=, stereotype=, visibility=public, txtDescription='This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes. +Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.', htmlDescription='

This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes.

Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 21:42:10,599 [main] TRACE ClassBuilder - Class 60870andDNPProtocolInfoEd2 (1 in package IEEE 1815 and IEC 60870-5 Agent - ed2) +2024-09-07 21:42:10,908 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4257, uuid={0C0A0A2C-20C0-4ca9-9856-507B3CF40B66}, since=null, name=ExT0Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T0 (connection establishment).', htmlDescription='

Count the expirations of the 104 time-out T0 (connection establishment).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:10,919 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4258, uuid={C6845E20-7B2D-4978-A35B-D43715366935}, since=null, name=ExT1Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T1 (PDU).', htmlDescription='

Count the expirations of the 104 time-out T1 (PDU).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:10,932 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4259, uuid={15711ABC-5E51-4c9e-95EB-71E116D1CBC1}, since=null, name=ExT2Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T2 (ACK).', htmlDescription='

Count the expirations of the 104 time-out T2 (ACK).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:10,944 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4260, uuid={7A191FB8-98E6-4847-930B-90CB4FC6E61E}, since=null, name=ExT3Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T3 (TEST).', htmlDescription='

Count the expirations of the 104 time-out T3 (TEST).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:10,956 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4261, uuid={81B43739-99E7-46b8-BB5A-340970E92A28}, since=null, name=DiscPduCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of discarded messages.', htmlDescription='

Number of discarded messages.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:10,967 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4262, uuid={8165A5DE-3828-4785-9068-BB9EBEA44FF2}, since=null, name=InErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of PDUs received that were in error.', htmlDescription='

Number of PDUs received that were in error.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:10,977 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4263, uuid={D90D5B9D-8B9D-454d-83A9-E6715E4783C6}, since=null, name=InOvCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer overflows detected due to incoming communication.', htmlDescription='

Number of buffer overflows detected due to incoming communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:10,988 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4264, uuid={E8C8E34D-3689-46e8-B001-9DE7609677AC}, since=null, name=InterPDUTime, alias=, stereotype=protocol, visibility=public, txtDescription='Time between two consecutives PDUs.', htmlDescription='

Time between two consecutives PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:10,999 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4265, uuid={49E9D387-25A4-46e7-8CEB-9C75979FB7AF}, since=null, name=MisPDUCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Provides an attribute that represents the count of missed PDU.', htmlDescription='

Provides an attribute that represents the count of missed PDU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:11,010 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4266, uuid={8845E947-C91C-4a04-B4FE-3AEDC1029732}, since=null, name=OutErr, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmission errors.', htmlDescription='

Number of transmission errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:11,021 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4267, uuid={CCD6A7C5-F0B4-4402-AE88-B35035615DC3}, since=null, name=OutUv, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer underflows detected due to outgoing serial communication.', htmlDescription='

Number of buffer underflows detected due to outgoing serial communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:11,031 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4269, uuid={378D6C1B-B55C-457c-BD03-A017415E19C4}, since=null, name=PDUSizeFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDU with wrong size.', htmlDescription='

Number of received PDU with wrong size.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:11,043 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4273, uuid={8E51A58B-0043-4528-B1BC-BC2B4CC4E59C}, since=null, name=RtxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the number of retransmissions.', htmlDescription='

Count the number of retransmissions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:11,054 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4275, uuid={9768D1CC-F452-448b-B8DF-26922CB00ED7}, since=null, name=RxPduCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDUs (including PDUs with errors).', htmlDescription='

Number of received PDUs (including PDUs with errors).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:11,066 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4276, uuid={00CBF4DB-7CDE-4393-BCCF-90A5601FF89C}, since=null, name=RxSolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Number of solicited requests received. Only for DNP.', htmlDescription='

Number of solicited requests received. Only for DNP.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:11,076 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4277, uuid={A480B5CE-C799-40b2-9A6C-05A2B643932E}, since=null, name=RxUnsolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Contains the count of number of unsolicited requests that have been transmitted since the last reset.', htmlDescription='

Contains the count of number of unsolicited requests that have been transmitted since the last reset.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:11,088 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4280, uuid={7A2A5BFA-FCB8-44a4-A4CF-442CC8A9FB0E}, since=null, name=TxPduCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmitted PDUs.', htmlDescription='

Number of transmitted PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:11,099 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4281, uuid={BF7B41CE-7B62-4a5f-A9F6-D1E8A5A4952E}, since=null, name=TxSolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Number of solicited requests transmitted. Only for DNP.', htmlDescription='

Number of solicited requests transmitted. Only for DNP.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:11,112 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4282, uuid={BB6FDD4B-6837-4d88-B268-0D09301311FD}, since=null, name=TxUnsolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Contains the count of number of unsolicited requests that have been transmitted since the last reset.', htmlDescription='

Contains the count of number of unsolicited requests that have been transmitted since the last reset.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:11,164 [main] DEBUG ClassBuilder - Adding 60870andDNPProtocolInfoEd2 as subclass of AbstractAgent +2024-09-07 21:42:11,166 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2 +2024-09-07 21:42:11,171 [main] TRACE ClassBuilder - Class IEC62351part5 (1 in package IEEE 1815 and IEC 60870-5 Agent - ed2) +2024-09-07 21:42:11,591 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4306, uuid={85A6FA13-2677-4c99-BC12-DD878801CFC4}, since=null, name=StAsProcScsCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Station Association procedure has been successfully performed.', htmlDescription='

Number of times the Station Association procedure has been successfully performed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:11,603 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4307, uuid={F82373BD-CE1D-4a57-B13C-413810F179B0}, since=null, name=StAsProcFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Station Association procedure has failed.', htmlDescription='

Number of times the Station Association procedure has failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:11,615 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4308, uuid={69BDB5BC-DE98-4195-8110-202AD93E7AFC}, since=null, name=SKeyProcScsCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Session Key was changed successfully.', htmlDescription='

Number of times the Session Key was changed successfully.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:11,626 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4336, uuid={8BE551FF-4A0A-45b6-A0A0-D051150BF74D}, since=null, name=KeyAutnAlgSupFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Data authentication algorithm support failures. Controlled station only.', htmlDescription='

Number of Data authentication algorithm support failures. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:11,638 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4337, uuid={60FED222-F3AD-4f4c-A733-DE4950C990C2}, since=null, name=SKeyWrapAlgSupFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of key wrap algorithm support failures. Controlled station only.', htmlDescription='

Number of key wrap algorithm support failures. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:11,650 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4338, uuid={C2B0C0DF-C9DD-4aef-932E-B016DA2E6276}, since=null, name=DataProtAlgSupFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Data authentication algorithm support failures. Controlled station only.', htmlDescription='

Number of Data authentication algorithm support failures. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:11,661 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4339, uuid={55BE76A2-DF93-45de-9D84-4EE282ACC41B}, since=null, name=SKeyAutnErrCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Key authentication errors.', htmlDescription='

Number of Key authentication errors.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:11,673 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4340, uuid={97FE21BE-F20E-4b5f-9E7C-62B9BF57A4C7}, since=null, name=DataAutnErrCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of non-authentic Secure Data messages received.', htmlDescription='

Number of non-authentic Secure Data messages received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:11,684 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4341, uuid={303256CB-76CD-4b39-8D6B-6B5F7E4718DC}, since=null, name=UnxpMsgErrCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of unexpected messages received.', htmlDescription='

Number of unexpected messages received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:11,695 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4342, uuid={7B618961-D677-4bf9-83FB-40700B9BA9CC}, since=null, name=MaxReplyToutCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Max Reply Timeouts threshold was reached. Controlling station only.', htmlDescription='

Number of times the Max Reply Timeouts threshold was reached. Controlling station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:11,709 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4343, uuid={D8D3268F-F4C4-49d7-AB23-7946C1CEA6D1}, since=null, name=NodeAutrFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of unauthorized communication attempts.', htmlDescription='

Number of unauthorized communication attempts.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:11,720 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4344, uuid={23FA293A-4F87-4c7c-B4E2-6B3955B5ED61}, since=null, name=CtrlOperAutrFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of unauthorized operations. Controlled station only.', htmlDescription='

Number of unauthorized operations. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:11,731 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4345, uuid={6193E983-C056-491a-B7A3-EBE58355374C}, since=null, name=RemCertCheckFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of invalid certificates received.', htmlDescription='

Number of invalid certificates received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:11,743 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4346, uuid={46BA0F58-A6A4-4d23-9157-B07A5643B284}, since=null, name=RemCertExpiredCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the remote station's certificate expired.', htmlDescription='

Number of times the remote station's certificate expired.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:11,755 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4347, uuid={C54FF7FA-520C-4d4f-A4A1-B7E88C041568}, since=null, name=RemCertRevokedCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the remote station's certificate has been revoked.', htmlDescription='

Number of times the remote station's certificate has been revoked.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:11,765 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4348, uuid={95955856-F76D-4e05-B055-4FF8029E1A9D}, since=null, name=LocCertExpiredCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the local station's certificate expired.', htmlDescription='

Number of times the local station's certificate expired.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:11,776 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4349, uuid={DE7B5995-13C2-44c8-8579-6CEF37D201AF}, since=null, name=LocCertRevokedCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the local station's certificate has been revoked.', htmlDescription='

Number of times the local station's certificate has been revoked.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:11,786 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4350, uuid={2223C6EC-FBAE-4b91-8FF2-4407C5DFFF36}, since=null, name=KeysInvRemCertRevCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Cryptographic Keys were invalidated due to remote station's certificate revocation.', htmlDescription='

Number of times the Cryptographic Keys were invalidated due to remote station's certificate revocation.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:11,797 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4351, uuid={5DCACFEC-13BF-47c0-88D7-950B26D9DBBB}, since=null, name=KeysInvLocCertRevCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Cryptographic Keys were invalidated due to local station's certificate revocation.', htmlDescription='

Number of times the Cryptographic Keys were invalidated due to local station's certificate revocation.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:11,808 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4352, uuid={4A474D59-99BF-495e-BB9D-C3E096F5F83B}, since=null, name=DataAutnScsCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of authentic Secure Data messages received.', htmlDescription='

Number of authentic Secure Data messages received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:11,818 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4353, uuid={7F7D3F88-910D-4dae-B5B1-DED2E46A51C7}, since=null, name=ReplyToutCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Reply Timeouts. Controlling station only.', htmlDescription='

Number of Reply Timeouts. Controlling station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:11,829 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4354, uuid={E6FD44A6-C9CE-45d6-BA4A-3EF7DECB1691}, since=null, name=RequestToutCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Request Timeouts. Controlled station only.', htmlDescription='

Number of Request Timeouts. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:11,841 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4355, uuid={65E3DDC2-B3AC-4c86-8AF6-39C43114EC3C}, since=null, name=SKeyInvUseCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Session Key was invalidated due to Max Session Key Usage Count. Controlled station only.', htmlDescription='

Number of times the Session Key was invalidated due to Max Session Key Usage Count. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:11,851 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4356, uuid={3C26B695-A1A0-44c3-BE08-C75CA78940DA}, since=null, name=SKeyInvToutCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Session Keys were invalidated due to Max Session Key Usage Timeout. Controlled station only.', htmlDescription='

Number of times the Session Keys were invalidated due to Max Session Key Usage Timeout. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:11,863 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4357, uuid={B3A60D84-37C0-40f2-9019-17B8C45C778E}, since=null, name=SKeyProcFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Session Key Change failures.', htmlDescription='

Number of Session Key Change failures.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:11,874 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4335, uuid={90633EE5-94E7-44d3-B98C-08140BCBFCF1}, since=null, name=ProtInfoErrCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of protocol information errors. Controlled station only.', htmlDescription='

Number of protocol information errors. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:11,896 [main] DEBUG ClassBuilder - Adding IEC62351part5 as superclass of 60870andDNPProtocolInfoEd2 +2024-09-07 21:42:11,897 [main] DEBUG ClassBuilder - Adding IEC62351part5 as subclass of AbstractAgent +2024-09-07 21:42:11,897 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5 +2024-09-07 21:42:11,902 [main] TRACE ClassBuilder - Class Association (2 in package IEEE 1815 and IEC 60870-5 Agent - ed2) +2024-09-07 21:42:12,091 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4284, uuid={D3B5EC3D-3991-40b8-85B6-2AFB3206637A}, since=null, name=AssociationId, alias=, stereotype=index, visibility=public, txtDescription='Id of the association.', htmlDescription='

Id of the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:12,103 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4285, uuid={DB5A65D6-2349-4a56-A200-129882572A95}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:12,119 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4286, uuid={FABF76A8-43C1-4be2-89C5-4C3B7F18604B}, since=null, name=LocAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Local address.', htmlDescription='

Local address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 21:42:12,134 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4287, uuid={F933B36B-EE52-4922-9AA4-F0CB5A55F9CE}, since=null, name=LocAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Local address type.', htmlDescription='

Local address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 21:42:12,144 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4288, uuid={4EDE24F7-C4DB-4078-926A-3518CCBB1D8F}, since=null, name=ProtID, alias=, stereotype=protocol, visibility=public, txtDescription='Protocol ID in use.', htmlDescription='

Protocol ID in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=780, _eaTypeName=ProtIdType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:12,156 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4289, uuid={8CE59398-E353-464a-9B25-03588802C32E}, since=null, name=ProviderDesc, alias=, stereotype=identity, visibility=public, txtDescription='Textual description of the provider that is in use.', htmlDescription='

Textual description of the provider that is in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:12,168 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4290, uuid={BD1C65C9-07DF-4192-8713-A93BC3E1C050}, since=null, name=ProviderName, alias=, stereotype=identity, visibility=public, txtDescription='Identity of the provider responding as the outstation for this association.', htmlDescription='

Identity of the provider responding as the outstation for this association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:12,186 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4291, uuid={BEB1F3A7-96E9-4a7f-B4CE-78A311245A60}, since=null, name=RemAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address.', htmlDescription='

Remote address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{isIndex=yes, mibIndex=yes, Version=0}] +2024-09-07 21:42:12,204 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4292, uuid={59810D47-4220-40e1-A018-FE80613740BC}, since=null, name=RemAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address type.', htmlDescription='

Remote address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{isIndex=yes, mibIndex=yes, Version=0}] +2024-09-07 21:42:12,216 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4293, uuid={9AE7823D-F26B-48f8-A955-DA056C8C0F32}, since=null, name=TLnkErrCnt, alias=, stereotype=health, visibility=public, txtDescription='Count of communication link errors detected.', htmlDescription='

Count of communication link errors detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:12,229 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4294, uuid={FFAF85C1-58F9-4330-80FE-18A5100B3EE7}, since=null, name=TLnkTyp, alias=, stereotype=protocol, visibility=public, txtDescription='Type of transport being utilized.', htmlDescription='

Type of transport being utilized.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=778, _eaTypeName=LnkType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:12,276 [main] DEBUG ClassBuilder - Adding Association as subclass of CommonProtocolInfo +2024-09-07 21:42:12,278 [main] DEBUG ClassBuilder - Adding Association as subclass of AbstractAgent +2024-09-07 21:42:12,280 [main] DEBUG ClassBuilder - Adding Association as subclass of 60870andDNPProtocolInfoEd2 +2024-09-07 21:42:12,282 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent - ed2::Association +2024-09-07 21:42:12,287 [main] TRACE ClassBuilder - Class Summary (3 in package IEEE 1815 and IEC 60870-5 Agent - ed2) +2024-09-07 21:42:12,412 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4295, uuid={E543F5FE-D414-4517-9CFA-17AF02358984}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:12,425 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4296, uuid={A601B46C-5CB2-4663-BBDD-6B075EA07FE8}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered (security or health).', htmlDescription='

Provides the last known event encountered (security or health).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:12,440 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4297, uuid={DD17EC1E-C1D2-444e-BC3B-65A68EB1768E}, since=null, name=Master, alias=, stereotype=table, visibility=public, txtDescription='Client association (when applicable)', htmlDescription='

Client association (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=1057, _eaTypeName=MasterAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{MIBPrefix=tC, Version=0}] +2024-09-07 21:42:12,455 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4298, uuid={927B1068-7146-4ea9-B50A-FD00B14D1747}, since=null, name=Outstation, alias=, stereotype=table, visibility=public, txtDescription='Server association (when applicable)', htmlDescription='

Server association (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=1056, _eaTypeName=OutstationAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{MIBPrefix=tC, Version=0}] +2024-09-07 21:42:12,468 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4299, uuid={E4361517-7300-4db5-A392-69EAD372A4E2}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object', htmlDescription='

Security events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1055, _eaTypeName=60870andDNPSecurityNotificationEd2, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:12,480 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4300, uuid={240DF754-7E5E-4226-B4F4-F1DDBE6652EB}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object', htmlDescription='

State events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1061, _eaTypeName=60870andDNPNotificationEd2, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:12,494 [main] DEBUG ClassBuilder - Adding Summary as subclass of 60870andDNPProtocolInfoEd2 +2024-09-07 21:42:12,494 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent - ed2::Summary +2024-09-07 21:42:12,500 [main] TRACE ClassBuilder - Class 60870andDNPSecurityNotificationEd2 (4 in package IEEE 1815 and IEC 60870-5 Agent - ed2) +2024-09-07 21:42:12,544 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2, _objData=UmlObjectData [id=4358, uuid={6AA445FA-BC7C-4384-8725-306C37B37564}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:12,557 [main] DEBUG ClassBuilder - Adding 60870andDNPSecurityNotificationEd2 as subclass of AbstractAgent +2024-09-07 21:42:12,558 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2 +2024-09-07 21:42:12,562 [main] TRACE ClassBuilder - Class 60870andDNPNotificationEd2 (5 in package IEEE 1815 and IEC 60870-5 Agent - ed2) +2024-09-07 21:42:12,604 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2, _objData=UmlObjectData [id=4360, uuid={60B53F7E-A6F1-449b-8917-E860F3F35ECB}, since=null, name=LastEvent, alias=, stereotype=protocol, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:12,618 [main] DEBUG ClassBuilder - Adding 60870andDNPNotificationEd2 as subclass of AbstractAgent +2024-09-07 21:42:12,618 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2 +2024-09-07 21:42:12,623 [main] TRACE ClassBuilder - Class MasterAssociation (6 in package IEEE 1815 and IEC 60870-5 Agent - ed2) +2024-09-07 21:42:12,652 [main] DEBUG ClassBuilder - Adding MasterAssociation as subclass of Association +2024-09-07 21:42:12,652 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent - ed2::MasterAssociation +2024-09-07 21:42:12,657 [main] TRACE ClassBuilder - Class OutstationAssociation (7 in package IEEE 1815 and IEC 60870-5 Agent - ed2) +2024-09-07 21:42:12,686 [main] DEBUG ClassBuilder - Adding OutstationAssociation as subclass of Association +2024-09-07 21:42:12,686 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent - ed2::OutstationAssociation +2024-09-07 21:42:12,689 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Application Protocols Agents, _depth=4, _eaElementID=1054, _objData=UmlObjectData [id=390, uuid={86E0AF53-5128-4026-88AF-43035DFFE86D}, since=null, name=IEEE 1815 and IEC 60870-5 Agent - ed2, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 21, this package includes the IEEE 1815 DNP, IEC 60870-5-104 protocols classes and the IEC 62351-5 security objects. The high level class named "summary" includes two objects related to the application stack and "association" class that reports the object related to the possible communication sessions between masters and outstations. +This package includes the new version of the objects related to IEC 62351-5:2023. +The two classes "Master Association" and "Outstation Association" Inherits the Associations class attributes. +For each IEEE 1815 DNP or IEC 60870-5-104 application stack a single instance of "summary" class is provided. This instance of "summary" class can be related to several instances of "OutstationAssociation" and "MasterAssociation" classes which inherit the attributes from the "Association" class. Each instance "Association" is the container of the attributes of a specific application session between an Outstation and a Master. +Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Security objects, and therefore the more general class as well.', htmlDescription='

As shown in Figure 21, this package includes the IEEE 1815 DNP, IEC 60870-5-104 protocols classes and the IEC 62351-5 security objects. The high level class named "summary" includes two objects related to the application stack and "association" class that reports the object related to the possible communication sessions between masters and outstations.

This package includes the new version of the objects related to IEC 62351-5:2023.

The two classes "Master Association" and "Outstation Association" Inherits the Associations class attributes.

For each IEEE 1815 DNP or IEC 60870-5-104 application stack a single instance of "summary" class is provided. This instance of "summary" class can be related to several instances of "OutstationAssociation" and "MasterAssociation" classes which inherit the attributes from the "Association" class. Each instance "Association" is the container of the attributes of a specific application session between an Outstation and a Master.

Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Security objects, and therefore the more general class as well.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=ieee1815andiec60870-5-agent-ed2, mibName=IEC-62351-IEC60870-5-IEEE1815-MIB-ED2, mibPrefix=tC2, objectBranchId=3, objectIdentity=ieee1815andiec60870-5-agent-ed2}, 1_diagrams=[DiagramBuilder [_containingPackage=IEEE 1815 and IEC 60870-5 Agent - ed2, _objData=UmlObjectData [id=70, uuid={AA945755-BD47-4be2-A238-6331816DBA4B}, since=null, name=IEEE 1815 and IEC 60870 Agent Relationships, alias=, stereotype=, visibility=public, txtDescription='This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes. +Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.', htmlDescription='

This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes.

Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.

'], _portrait=true, _kind=LOGICAL]], _classes=8 +2024-09-07 21:42:12,695 [main] INFO PackageBuilder - processing package IEC61850 Agent (8) ... +2024-09-07 21:42:12,796 [main] INFO PackageBuilder - processing package ACSI (1) ... +2024-09-07 21:42:12,816 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=ACSI, _objData=UmlObjectData [id=45, uuid={1B1AAFC2-CBA3-401c-873D-7B6CDCE9CBD6}, since=null, name=ACSI, alias=, stereotype=, visibility=public, txtDescription='ACSI classes relationship. ACSI Summary inherit Security attributes from the more general classes.', htmlDescription='

ACSI classes relationship. ACSI Summary inherit Security attributes from the more general classes.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 21:42:12,845 [main] TRACE ClassBuilder - Class ACSISummary (1 in package ACSI) +2024-09-07 21:42:13,115 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1254, uuid={60676AFB-06AF-480c-86DC-DDF92723390B}, since=null, name=assocPoolMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number of client/server associations.', htmlDescription='

Maximum number of client/server associations.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:13,127 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1255, uuid={B21687C2-9C22-4c8f-A435-15A69F7147D6}, since=null, name=assocPoolUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of client/server associations active.', htmlDescription='

Number of client/server associations active.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:13,138 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1278, uuid={6CA26B83-F728-4e94-9E7E-89E5998C3308}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:13,149 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=3931, uuid={75069142-E376-4865-9020-9924B1C82527}, since=null, name=CtrlPrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of control actions attempted that did not have the correct privilege.', htmlDescription='

Number of control actions attempted that did not have the correct privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:13,160 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1262, uuid={44D0F3A5-606C-4650-ABCB-FE16EEE777E3}, since=null, name=gsePubMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number GSE Publications supported.', htmlDescription='

Maximum number GSE Publications supported.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:13,171 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=2263, uuid={1C2B216E-5A48-41c9-8A95-E49BCC60C316}, since=null, name=gsePubUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of active GSE Publications.', htmlDescription='

Number of active GSE Publications.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:13,182 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1264, uuid={B2FDE11B-6BA3-4051-B3BD-15152FB16FED}, since=null, name=gseSubMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number of GSE Subscriptions.', htmlDescription='

Maximum number of GSE Subscriptions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:13,192 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1263, uuid={1842AD96-E339-455f-9BC0-7F98C8F31CEC}, since=null, name=gseSubUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of active GSE Subscriptions.', htmlDescription='

Number of active GSE Subscriptions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:13,204 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=3709, uuid={014B3324-A84F-455f-957B-1420E50D5C59}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:13,215 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=3930, uuid={F5A04750-F784-4c0c-AB12-2298DE62BB99}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:13,226 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1271, uuid={A10D2F0C-3A4C-4aa4-B832-655CEBF8F43C}, since=null, name=RemoteEstAssocCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count of the number of currently active associations that were established through the ACSI associate response.', htmlDescription='

Count of the number of currently active associations that were established through the ACSI associate response.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:13,239 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=3932, uuid={7EF57F32-F44A-4126-9201-8EFAD41F12D4}, since=null, name=AcsCtlFail, alias=, stereotype=security, visibility=public, txtDescription='Number of access control failures detected (i.e., when a data object that the client wanted to access exists in the server, but based on the access view of the association with that client, an access to the data object was refused).', htmlDescription='

Number of access control failures detected (i.e., when a data object that the client wanted to access exists in the server, but based on the access view of the association with that client, an access to the data object was refused).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:13,251 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1282, uuid={2E06924F-F7EB-44a7-A1D2-2428322A0892}, since=null, name=svPubMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number SV publications supported.', htmlDescription='

Maximum number SV publications supported.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:13,263 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1281, uuid={D6CCDFE9-6558-4cd0-B508-8BA15852D950}, since=null, name=svPubUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of active SV publications.', htmlDescription='

Number of active SV publications.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:13,276 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1284, uuid={769A7A31-DA16-43a0-A340-14FF723B8636}, since=null, name=svSubMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number SV subscriptions supported.', htmlDescription='

Maximum number SV subscriptions supported.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:13,288 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1283, uuid={40270792-85F3-4361-850B-A5F29E1B75C0}, since=null, name=svSubUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of active SV subscriptions.', htmlDescription='

Number of active SV subscriptions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:13,303 [main] DEBUG ClassBuilder - Adding ACSISummary as subclass of AbstractAgent +2024-09-07 21:42:13,303 [main] TRACE ClassBuilder - read from EA: ACSI::ACSISummary +2024-09-07 21:42:13,305 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850 Agent, _depth=5, _eaElementID=685, _objData=UmlObjectData [id=246, uuid={624494C4-C544-437f-BE42-BED22973E721}, since=null, name=ACSI, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 22, the ACSI package includes the IEC 61850 Abstract Communication Service Interface (ACSI) classes.', htmlDescription='

As shown in Figure 22, the ACSI package includes the IEC 61850 Abstract Communication Service Interface (ACSI) classes.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=acsi-agent, mibName=IEC-62351-IEC61850-ACSI-MIB, mibPrefix=aCSI, objectBranchId=1, objectIdentity=acsi-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=ACSI, _objData=UmlObjectData [id=45, uuid={1B1AAFC2-CBA3-401c-873D-7B6CDCE9CBD6}, since=null, name=ACSI, alias=, stereotype=, visibility=public, txtDescription='ACSI classes relationship. ACSI Summary inherit Security attributes from the more general classes.', htmlDescription='

ACSI classes relationship. ACSI Summary inherit Security attributes from the more general classes.

'], _portrait=true, _kind=LOGICAL]], _classes=1 +2024-09-07 21:42:13,310 [main] INFO PackageBuilder - processing package MMS (2) ... +2024-09-07 21:42:13,330 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=MMS, _objData=UmlObjectData [id=42, uuid={C69DADFE-D7C7-45d0-83FC-41012CB3C1CA}, since=null, name=MMS, alias=, stereotype=, visibility=public, txtDescription='MMS classes relationship. MMS Provider and MMS Association inherit both Security and Procotol Info attributes from the more general classes.', htmlDescription='

MMS classes relationship. MMS Provider and MMS Association inherit both Security and Procotol Info attributes from the more general classes.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 21:42:13,426 [main] TRACE ClassBuilder - Class MMSProtocolInfo (1 in package MMS) +2024-09-07 21:42:13,645 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=4122, uuid={B070617B-7900-42b1-8DA7-F591BA2099FA}, since=null, name=ErrorRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of error PDU that have been received including: +- Confirmed-ErrorPDU (only for client) +- Cancel-ErrorPDU (only for client) +- Initiate-ErrorPDU +- Conclude-ErrorPDU.', htmlDescription='

Number of error PDU that have been received including:

  • Confirmed-ErrorPDU (only for client)
  • Cancel-ErrorPDU (only for client)
  • Initiate-ErrorPDU
  • Conclude-ErrorPDU.
'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:13,657 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=4123, uuid={650B0D6F-9766-4bae-9182-5EC830CB64E3}, since=null, name=ErrorTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of error PDU that have been sent including: +- Confirmed-ErrorPDU (only for server) +- Cancel-ErrorPDU (only for server) +- Initiate-ErrorPDU +- Conclude-ErrorPDU.', htmlDescription='

Number of error PDU that have been sent including:

  • Confirmed-ErrorPDU (only for server)
  • Cancel-ErrorPDU (only for server)
  • Initiate-ErrorPDU
  • Conclude-ErrorPDU.
'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:13,668 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3214, uuid={30ED064F-399A-4e3a-97D2-D106F082CF4F}, since=null, name=InfoRptRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of MMS Information Reports that have been received.', htmlDescription='

Number of MMS Information Reports that have been received.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:13,679 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=4120, uuid={CEC51410-D5D9-4150-B1C4-AA691F453D23}, since=null, name=InfoRptTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of MMS Information Reports that have been sent.', htmlDescription='

Number of MMS Information Reports that have been sent.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:13,690 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3969, uuid={94722C63-A68B-4460-A0BA-93F19272E206}, since=null, name=MisCmdAckCnt, alias=, stereotype=security, visibility=public, txtDescription='Provides an attribute that indicates the count of the number of MMS request that have not been acknowledged.', htmlDescription='

Provides an attribute that indicates the count of the number of MMS request that have not been acknowledged.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:13,701 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3414, uuid={8F4B6AF1-5A4A-47a1-A365-8963A1FAE78F}, since=null, name=MMSProExchTime, alias=, stereotype=performance, visibility=public, txtDescription='MMS Profile exchange duration (seconds). MMS profile is meant as Logical Devices, Logical Nodes and Dataset definition are exchanged.', htmlDescription='

MMS Profile exchange duration (seconds). MMS profile is meant as Logical Devices, Logical Nodes and Dataset definition are exchanged.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:13,712 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3211, uuid={6C0EA55B-1ACA-4a3a-9068-E9C2CEC96B9D}, since=null, name=RejectRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of RejectPDU received.', htmlDescription='

Number of RejectPDU received.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:13,722 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3212, uuid={C8554D1E-C163-4286-96BB-E26046672513}, since=null, name=RejectTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of RejectPDU sent.', htmlDescription='

Number of RejectPDU sent.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:13,733 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3208, uuid={C94BBBC3-1104-42b0-B156-E80FE61CBDB8}, since=null, name=ReqRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of request PDU that have been received including: +- Confirmed-RequestPDU (only for server) +- Cancel-RequestPDU (only for server) +- Initiate-RequestPDU +- Conclude-RequestPDU.', htmlDescription='

Number of request PDU that have been received including:

  • Confirmed-RequestPDU (only for server)
  • Cancel-RequestPDU (only for server)
  • Initiate-RequestPDU
  • Conclude-RequestPDU.
'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:13,744 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3206, uuid={023D9D84-38BC-4c86-B9CC-78085AC2F869}, since=null, name=ReqTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of request PDU that have been sent including: +- Confirmed-RequestPDU (only for client) +- Cancel-RequestPDU (only for client) +- Initiate-RequestPDU +- Conclude-RequestPDU.', htmlDescription='

Number of request PDU that have been sent including:

  • Confirmed-RequestPDU (only for client)
  • Cancel-RequestPDU (only for client)
  • Initiate-RequestPDU
  • Conclude-RequestPDU.
'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:13,756 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3210, uuid={B07FEDC7-72A1-43b4-9CA9-AEDC8CE77EAF}, since=null, name=RespRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of response PDU that have been received including: +- Confirmed-ResponsePDU (only for client) +- Cancel-ResponsePDU (only for client) +- Initiate-ResponsePDU +- Conclude-ResponsePDU +.', htmlDescription='

Number of response PDU that have been received including:

  • Confirmed-ResponsePDU (only for client)
  • Cancel-ResponsePDU (only for client)
  • Initiate-ResponsePDU
  • Conclude-ResponsePDU

.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:13,768 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3209, uuid={06689B60-CBF2-4d45-8B5A-FB998997F62F}, since=null, name=RespTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of response PDU that have been sent including: +- Confirmed-ResponsePDU (only for server) +- Cancel-ResponsePDU (only for server) +- Initiate-ResponsePDU +- Conclude-ResponsePDU..', htmlDescription='

Number of response PDU that have been sent including:

  • Confirmed-ResponsePDU (only for server)
  • Cancel-ResponsePDU (only for server)
  • Initiate-ResponsePDU
  • Conclude-ResponsePDU..
'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:13,778 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3935, uuid={1F695097-A4ED-4e85-94FE-44B50CFE99F1}, since=null, name=SessKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of session key negotiations that failed.', htmlDescription='

Number of session key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:13,812 [main] DEBUG ClassBuilder - Adding MMSProtocolInfo as subclass of AbstractAgent +2024-09-07 21:42:13,812 [main] TRACE ClassBuilder - read from EA: MMS::MMSProtocolInfo +2024-09-07 21:42:13,816 [main] TRACE ClassBuilder - Class MMSProvider (2 in package MMS) +2024-09-07 21:42:14,121 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3918, uuid={7DB85E2A-0EB8-4226-BEBB-924AB496EB36}, since=null, name=AProfileDecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted within A-Profile session.', htmlDescription='

Number PDUs received that could not be decrypted within A-Profile session.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:14,135 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3938, uuid={A3E432FD-BDD0-4ccf-9233-0A226162B425}, since=null, name=AuthFail, alias=, stereotype=security, visibility=public, txtDescription='Count of the number of authorization failures.', htmlDescription='

Count of the number of authorization failures.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:14,148 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3245, uuid={D1866C6F-051F-404e-9A2B-AC1D6D44D3FC}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:14,160 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2831, uuid={2F166DD9-DE35-44b6-91DE-78EA3A9D0652}, since=null, name=ConnFailInCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of incoming Initiate-requests that have been refused.', htmlDescription='

Number of incoming Initiate-requests that have been refused.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:14,171 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2832, uuid={BA3D3302-5D14-40f7-9AA3-145CCB5F1361}, since=null, name=ConnFailOutCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of outgoing Initiate-requests that have been refused.', htmlDescription='

Number of outgoing Initiate-requests that have been refused.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:14,182 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3936, uuid={86BF3330-EB9C-4633-AB27-D7612CE8D05C}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted.', htmlDescription='

Number PDUs received that could not be decrypted.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:14,194 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3710, uuid={0163C656-8AA1-4c67-82E4-258002A53DDE}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:14,209 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2803, uuid={DEAB3F8B-E3E4-4664-B8B6-2D0C07019F7B}, since=null, name=MMS, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed MMS information can be obtained for each connection.', htmlDescription='

Provides a table through which more detailed MMS information can be obtained for each connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=693, _eaTypeName=MMSAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=mMS, objectIdentity=mMSMMSEntry, Version=0}] +2024-09-07 21:42:14,220 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3915, uuid={294CE46B-D0B5-49f5-BF02-E0988430AD45}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:14,231 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2810, uuid={22C7C42F-8D14-493c-A2EA-CCD76245D0BE}, since=null, name=ProviderDesc, alias=, stereotype=identity, visibility=public, txtDescription='Description of provider.', htmlDescription='

Description of provider.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:14,242 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2811, uuid={D38418EB-A105-4a60-8D61-BB360D9237B5}, since=null, name=ProviderName, alias=, stereotype=identity, visibility=public, txtDescription='Name of the provider.', htmlDescription='

Name of the provider.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:14,253 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3614, uuid={A048CDB1-2C04-4ec3-B2B0-2F9ACEE80E4F}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=920, _eaTypeName=MMSSecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:14,270 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=4030, uuid={354E6408-AAF1-42b2-B717-205A592C81BE}, since=null, name=SessionEstablishmentRate, alias=, stereotype=performance, visibility=public, txtDescription='The number of times any Association has been restablished after a disconnection within 15 minutes.', htmlDescription='

The number of times any Association has been restablished after a disconnection within 15 minutes.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:14,283 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=4031, uuid={F68354BD-DA88-4aca-B25F-9C06F7BEFBB9}, since=null, name=SessionRestartCnt, alias=, stereotype=security, visibility=public, txtDescription='Provides an attribute that indicates the count of the number of times the session has been restablished.', htmlDescription='

Provides an attribute that indicates the count of the number of times the session has been restablished.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:14,296 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3613, uuid={0233C10F-B173-4f99-A4E9-A79E7500E3B0}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object.', htmlDescription='

State events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=921, _eaTypeName=MMSNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:14,308 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3919, uuid={575C57A8-200D-4db3-B297-AE2635C01BC3}, since=null, name=TProfileDecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted within T-Profile session.', htmlDescription='

Number PDUs received that could not be decrypted within T-Profile session.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:14,320 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3921, uuid={D87795A0-A0B4-4126-9015-DBEBDD79CA50}, since=null, name=TProfileSessKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of session key negotiations that failed. This applies only to T-Profile.', htmlDescription='

Number of session key negotiations that failed. This applies only to T-Profile.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:14,331 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3975, uuid={5C2EA464-4FB4-4413-90B5-E3451373A966}, since=null, name=UpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations that failed.', htmlDescription='

Number of update key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:14,346 [main] DEBUG ClassBuilder - Adding MMSProvider as subclass of MMSProtocolInfo +2024-09-07 21:42:14,346 [main] TRACE ClassBuilder - read from EA: MMS::MMSProvider +2024-09-07 21:42:14,351 [main] TRACE ClassBuilder - Class MMSAssociation (3 in package MMS) +2024-09-07 21:42:14,587 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2820, uuid={3D4B3729-146B-4ed2-976D-D539FFAAAE40}, since=null, name=Active, alias=, stereotype=protocol, visibility=public, txtDescription='True if association is in use.', htmlDescription='

True if association is in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:14,602 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3727, uuid={9E3D1B59-980F-4217-B141-1C353C1D4E72}, since=null, name=AssociationId, alias=, stereotype=index, visibility=public, txtDescription='Id of the association.', htmlDescription='

Id of the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:14,615 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=4119, uuid={8717A248-6228-4974-9285-1B96BBEDF420}, since=null, name=Client, alias=, stereotype=protocol, visibility=public, txtDescription='True if role is client, false if role is server', htmlDescription='

True if role is client, false if role is server

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:14,628 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3246, uuid={2C472C21-D2BB-4a4b-8D93-5C0E3346AA95}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:14,639 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3939, uuid={EBEAECC3-8BE4-4469-B891-4898C2954EE5}, since=null, name=HndShTime, alias=, stereotype=performance, visibility=public, txtDescription='Duration of the MMS session handshake. This apply to the sender only.', htmlDescription='

Duration of the MMS session handshake. This apply to the sender only.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:14,651 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2844, uuid={C34BBC7F-ACC5-4172-B430-081B10B49819}, since=null, name=RemoteEstAssos, alias=, stereotype=protocol, visibility=public, txtDescription='True if the association was established due to an incoming Initiate-Request.', htmlDescription='

True if the association was established due to an incoming Initiate-Request.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:14,666 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2876, uuid={BF20C38C-E4DE-439e-A7C3-2D9FCB7CA1C2}, since=null, name=RemoteIP, alias=, stereotype=protocol, visibility=public, txtDescription='Remote entity IP network address.', htmlDescription='

Remote entity IP network address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 21:42:14,677 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3692, uuid={5EA2A0D0-6DA8-427e-ADEB-2CC19FDBB143}, since=null, name=RemoteIPAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:14,690 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2873, uuid={14DA2F03-EFD1-4b98-A66F-EFD6046F1025}, since=null, name=RemotePSEL, alias=, stereotype=protocol, visibility=public, txtDescription='Remote entity presentation selector.', htmlDescription='

Remote entity presentation selector.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=782, _eaTypeName=Selector, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 21:42:14,703 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2874, uuid={C4E19558-A5AA-43ce-A203-6E7BACDD96C7}, since=null, name=RemoteSSEL, alias=, stereotype=protocol, visibility=public, txtDescription='Remote entity session selector.', htmlDescription='

Remote entity session selector.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=782, _eaTypeName=Selector, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 21:42:14,715 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2875, uuid={C5BC70EE-7E84-4822-95B3-1EA00D57E252}, since=null, name=RemoteTSEL, alias=, stereotype=protocol, visibility=public, txtDescription='Remote entity transport selector.', htmlDescription='

Remote entity transport selector.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=782, _eaTypeName=Selector, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 21:42:14,727 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3972, uuid={47D3343F-E927-48ec-8558-54CC13AEC30E}, since=null, name=ReportPer100Seconds, alias=, stereotype=performance, visibility=public, txtDescription='Number of Reports received/transmitted during the last 100 seconds.', htmlDescription='

Number of Reports received/transmitted during the last 100 seconds.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:14,738 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3968, uuid={D1802DDE-FE54-49d6-9EBB-1A5DE0464F3A}, since=null, name=RptReceptionDelay, alias=, stereotype=performance, visibility=public, txtDescription='The time required to receive the last Report. This time is the difference between the reception time and the emission timestamp stored inside the report. If not synchronized this value shall be set to -1.', htmlDescription='

The time required to receive the last Report. This time is the difference between the reception time and the emission timestamp stored inside the report. If not synchronized this value shall be set to -1.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:14,750 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3913, uuid={B94A45CC-7384-41ee-9821-F77D634C675F}, since=null, name=SecurityProfile, alias=, stereotype=protocol, visibility=public, txtDescription='This is the security profile in use for this association (no security, integrity A profile, A+, AE+).', htmlDescription='

This is the security profile in use for this association (no security, integrity A profile, A+, AE+).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1013, _eaTypeName=SecurityProfileType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:14,774 [main] DEBUG ClassBuilder - Adding MMSAssociation as subclass of MMSProtocolInfo +2024-09-07 21:42:14,775 [main] DEBUG ClassBuilder - Adding MMSAssociation as subclass of CommonProtocolInfo +2024-09-07 21:42:14,775 [main] TRACE ClassBuilder - read from EA: MMS::MMSAssociation +2024-09-07 21:42:14,780 [main] TRACE ClassBuilder - Class MMSSecurityNotification (4 in package MMS) +2024-09-07 21:42:14,868 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSSecurityNotification, _objData=UmlObjectData [id=3582, uuid={ED76E952-B3FD-4bbd-B4F7-7F695D6C14B6}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of PDUs received that could not be decrypted.', htmlDescription='

Number of PDUs received that could not be decrypted.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:14,879 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSSecurityNotification, _objData=UmlObjectData [id=4036, uuid={6D84220E-9E6E-4b52-8843-92394244A0F5}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:14,890 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSSecurityNotification, _objData=UmlObjectData [id=3581, uuid={52A9B9D0-58D5-4d7d-A396-A7788A41EB89}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:14,901 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSSecurityNotification, _objData=UmlObjectData [id=3584, uuid={4F8B7D7A-78C6-4ac7-A43C-8B06E8D829E0}, since=null, name=UpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations that failed.', htmlDescription='

Number of update key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:14,915 [main] DEBUG ClassBuilder - Adding MMSSecurityNotification as subclass of AbstractAgent +2024-09-07 21:42:14,915 [main] TRACE ClassBuilder - read from EA: MMS::MMSSecurityNotification +2024-09-07 21:42:14,920 [main] TRACE ClassBuilder - Class MMSNotification (5 in package MMS) +2024-09-07 21:42:15,008 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSNotification, _objData=UmlObjectData [id=3573, uuid={6F0A08FF-024D-4919-99B5-B68C203679AA}, since=null, name=ConnFailInCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of incoming Initiate-requests that have been refused.', htmlDescription='

Number of incoming Initiate-requests that have been refused.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:15,019 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSNotification, _objData=UmlObjectData [id=3574, uuid={F172E26F-F99A-4ca4-BBF3-4759B78D18F3}, since=null, name=ConnFailOutCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of outgoing Initiate-requests that have been refused.', htmlDescription='

Number of outgoing Initiate-requests that have been refused.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:15,030 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSNotification, _objData=UmlObjectData [id=3575, uuid={5F493EBC-63E7-480b-B344-66194892E87B}, since=null, name=RejectRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of reject issued in reception.', htmlDescription='

Number of reject issued in reception.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:15,040 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSNotification, _objData=UmlObjectData [id=3576, uuid={0D61F583-C436-4314-A1B5-C6FA04940FD7}, since=null, name=RejectTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received Reject on transmission.', htmlDescription='

Number of received Reject on transmission.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:15,054 [main] DEBUG ClassBuilder - Adding MMSNotification as subclass of AbstractAgent +2024-09-07 21:42:15,054 [main] TRACE ClassBuilder - read from EA: MMS::MMSNotification +2024-09-07 21:42:15,057 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850 Agent, _depth=5, _eaElementID=613, _objData=UmlObjectData [id=214, uuid={0123913E-3D3C-4627-ABFC-BF86D71D1894}, since=null, name=MMS, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 23, the MMS package includes the IEC 61850 Manufacturing Message Specification (MMS) classes. MMS Provider and MMS Association inherit both Security and Protocol Info attributes from the more general classes.', htmlDescription='

As shown in Figure 23, the MMS package includes the IEC 61850 Manufacturing Message Specification (MMS) classes. MMS Provider and MMS Association inherit both Security and Protocol Info attributes from the more general classes.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=mms-agent, mibName=IEC-62351-IEC61850-MMS-MIB, mibPrefix=mMS, objectBranchId=2, objectIdentity=mms-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=MMS, _objData=UmlObjectData [id=42, uuid={C69DADFE-D7C7-45d0-83FC-41012CB3C1CA}, since=null, name=MMS, alias=, stereotype=, visibility=public, txtDescription='MMS classes relationship. MMS Provider and MMS Association inherit both Security and Procotol Info attributes from the more general classes.', htmlDescription='

MMS classes relationship. MMS Provider and MMS Association inherit both Security and Procotol Info attributes from the more general classes.

'], _portrait=true, _kind=LOGICAL]], _classes=5 +2024-09-07 21:42:15,061 [main] INFO PackageBuilder - processing package SV and GSE common objects (3) ... +2024-09-07 21:42:15,072 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=SV and GSE common objects, _objData=UmlObjectData [id=63, uuid={DFEA5E4E-B042-4697-A4BE-C60308616114}, since=null, name=SV and GSE common objects, alias=, stereotype=, visibility=public, txtDescription='GSE/SV common classes relationship.', htmlDescription='

GSE/SV common classes relationship.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 21:42:15,132 [main] TRACE ClassBuilder - Class GSEandSVCommon (1 in package SV and GSE common objects) +2024-09-07 21:42:15,199 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVCommon, _objData=UmlObjectData [id=4054, uuid={8F7CBDDF-5309-4c57-A3E5-B0C820FEC605}, since=null, name=GroupUpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations at KDC that failed.', htmlDescription='

Number of update key negotiations at KDC that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:15,210 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVCommon, _objData=UmlObjectData [id=4055, uuid={72C144FE-7138-4153-8C18-0FC5BC1E8998}, since=null, name=KDCAuthFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Count of the number of authorization failures against KDC.', htmlDescription='

Count of the number of authorization failures against KDC.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:15,221 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVCommon, _objData=UmlObjectData [id=4056, uuid={10AD71AC-8E2C-4afb-88B0-4CAAF7C06C47}, since=null, name=KDCSessionKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Session Key establishment between peer and KDC failed.', htmlDescription='

Session Key establishment between peer and KDC failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:15,295 [main] DEBUG ClassBuilder - Adding GSEandSVCommon as subclass of AbstractAgent +2024-09-07 21:42:15,295 [main] TRACE ClassBuilder - read from EA: SV and GSE common objects::GSEandSVCommon +2024-09-07 21:42:15,300 [main] TRACE ClassBuilder - Class GSEandSVPublisherAssociation (2 in package SV and GSE common objects) +2024-09-07 21:42:15,397 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=4057, uuid={C97C7E95-F1A3-49a6-84CD-F37F54D4DCAA}, since=null, name=CBRef, alias=, stereotype=index, visibility=public, txtDescription='Reference of the GSE/SV Control block being supervised.', htmlDescription='

Reference of the GSE/SV Control block being supervised.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:15,409 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=4058, uuid={A3300C61-0405-4178-AA24-56139902DFD1}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:15,420 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=4059, uuid={B346F0EE-81BD-4f02-BD05-3DEB6C966B08}, since=null, name=OutUv, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer underflows detected due to outgoing serial communication.', htmlDescription='

Number of buffer underflows detected due to outgoing serial communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:15,431 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=4366, uuid={10164DB8-AB84-46a3-9325-B0D817803F9A}, since=null, name=APPID, alias=, stereotype=protocol, visibility=public, txtDescription='Application Identifier being expected.', htmlDescription='

Application Identifier being expected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:15,441 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=3829, uuid={F6725CAA-C95B-431e-BCC4-6877D34082A8}, since=null, name=TxPduPerSecond, alias=, stereotype=protocol, visibility=public, txtDescription='Count of the number of SV telegrams sent within a second on the association.', htmlDescription='

Count of the number of SV telegrams sent within a second on the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:15,442 [main] ERROR ClassBuilder - [+++ EA problem: attr count on GSEandSVPublisherAssociation = 5 +, +++ attr CBRef: pos = 1 +, +++ attr CntRs: pos = 2 +, +++ attr OutUv: pos = 3 +, +++ attr APPID: pos = 4 +, +++ attr TxPduPerSecond: pos = 4 DUPLICATE +] +2024-09-07 21:42:15,493 [main] DEBUG ClassBuilder - Adding GSEandSVPublisherAssociation as subclass of GSEandSVCommon +2024-09-07 21:42:15,500 [main] TRACE ClassBuilder - read from EA: SV and GSE common objects::GSEandSVPublisherAssociation +2024-09-07 21:42:15,506 [main] TRACE ClassBuilder - Class GSEandSVSubscriberAssociation (3 in package SV and GSE common objects) +2024-09-07 21:42:15,634 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4061, uuid={E70C3857-A774-4635-9A52-713A3189C31C}, since=null, name=CBRef, alias=, stereotype=index, visibility=public, txtDescription='Reference of the GSE/SV Control block being supervised.', htmlDescription='

Reference of the GSE/SV Control block being supervised.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:15,645 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4062, uuid={2E060239-4EB9-4a8a-A7C3-AED6EDA8C5A3}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:15,658 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4063, uuid={B4825E20-07C1-4cde-94AD-CFE37852AE7F}, since=null, name=InOvCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer overflows detected due to incoming communication. This counter is incremented each time the buffer space is insufficient to receive an incoming message.', htmlDescription='

Number of buffer overflows detected due to incoming communication. This counter is incremented each time the buffer space is insufficient to receive an incoming message.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:15,670 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4064, uuid={BA2766B5-6FA2-4c9b-85EA-7353D0790FDF}, since=null, name=MessageIntegrityFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number messages that were not using the proper Group Key.', htmlDescription='

Number messages that were not using the proper Group Key.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:15,682 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4067, uuid={85138267-8516-4911-9D4D-D78674944F2D}, since=null, name=RxPduPerSecond, alias=, stereotype=protocol, visibility=public, txtDescription='Count of the number of SV telegrams received within a second on the association.', htmlDescription='

Count of the number of SV telegrams received within a second on the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:15,695 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4365, uuid={7955A1E1-9F67-46da-A434-8EA5BA1C0BE2}, since=null, name=APPID, alias=, stereotype=protocol, visibility=public, txtDescription='Application identified being expected.', htmlDescription='

Application identified being expected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:15,706 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4367, uuid={2B5045AC-99BD-4941-BCD5-36ABDDCAC2FF}, since=null, name=RxAPPID, alias=, stereotype=protocol, visibility=public, txtDescription='Last Application Identifier being received.', htmlDescription='

Last Application Identifier being received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:15,746 [main] DEBUG ClassBuilder - Adding GSEandSVSubscriberAssociation as subclass of GSEandSVCommon +2024-09-07 21:42:15,750 [main] TRACE ClassBuilder - read from EA: SV and GSE common objects::GSEandSVSubscriberAssociation +2024-09-07 21:42:15,752 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850 Agent, _depth=5, _eaElementID=1023, _objData=UmlObjectData [id=380, uuid={206C6DF0-DCC9-45e0-B3CE-6470323EA4B6}, since=null, name=SV and GSE common objects, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 24, the SV and GSE common objects package includes the IEC 61850 Sampled Value (SV) and Generic Substation Events (GSE) common classes.', htmlDescription='

As shown in Figure 24, the SV and GSE common objects package includes the IEC 61850 Sampled Value (SV) and Generic Substation Events (GSE) common classes.

'], _modelId=362, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=SV and GSE common objects, _objData=UmlObjectData [id=63, uuid={DFEA5E4E-B042-4697-A4BE-C60308616114}, since=null, name=SV and GSE common objects, alias=, stereotype=, visibility=public, txtDescription='GSE/SV common classes relationship.', htmlDescription='

GSE/SV common classes relationship.

'], _portrait=true, _kind=LOGICAL]], _classes=3 +2024-09-07 21:42:15,757 [main] INFO PackageBuilder - processing package SV (4) ... +2024-09-07 21:42:15,778 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=SV, _objData=UmlObjectData [id=60, uuid={472A38C4-7002-4632-9EB5-EC1C28A2CCA8}, since=null, name=SV, alias=, stereotype=, visibility=public, txtDescription='SV classes relationship. SVProvider and SVAssociation inherit both Security and Procotol Info attributes from the more general classes.', htmlDescription='

SV classes relationship. SVProvider and SVAssociation inherit both Security and Procotol Info attributes from the more general classes.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 21:42:15,882 [main] TRACE ClassBuilder - Class SVProvider (4 in package SV) +2024-09-07 21:42:16,028 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3844, uuid={C24FF010-3527-40b6-A143-3CBD3C95FC45}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:16,040 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=4052, uuid={4D212643-73E9-4b01-B3E4-1419141F7F5C}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of PDUs received that could not be decrypted', htmlDescription='

Number of PDUs received that could not be decrypted

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:16,052 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3845, uuid={62E2AB60-AB61-489b-9B09-FC14A0BF4694}, since=null, name=PDUSizeFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDU with wrong size. This is meaningful only for IP telegrams.', htmlDescription='

Number of received PDU with wrong size. This is meaningful only for IP telegrams.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:16,069 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3846, uuid={A6C46361-5561-43d2-8B67-6DAC7566C062}, since=null, name=PIP, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed SV information can be obtained for each IP publisher connection.', htmlDescription='

Provides a table through which more detailed SV information can be obtained for each IP publisher connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=994, _eaTypeName=SVPublisherAssociationIP, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}] +2024-09-07 21:42:16,088 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3847, uuid={1C5E81A0-3007-4221-BBCF-B4538CDCD068}, since=null, name=PL2, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed SV information can be obtained for each L2 (Ethernet) publisher connection.', htmlDescription='

Provides a table through which more detailed SV information can be obtained for each L2 (Ethernet) publisher connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=995, _eaTypeName=SVPublisherAssociationL2, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}] +2024-09-07 21:42:16,102 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3848, uuid={F24AD27F-DE3D-4d47-BF82-D81306D727FD}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=997, _eaTypeName=SVNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:16,119 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3849, uuid={E61DCB59-D671-4e3e-AF63-7A7934A7139B}, since=null, name=SIP, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed SV information can be obtained for each IP subscriber connection.', htmlDescription='

Provides a table through which more detailed SV information can be obtained for each IP subscriber connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=998, _eaTypeName=SVSubcriberAssociationIP, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}] +2024-09-07 21:42:16,135 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3850, uuid={3A8AA373-DF4D-4203-9E17-D1A556AE4626}, since=null, name=SL2, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed SV information can be obtained for each L2 (Ethernet) subscriber connection.', htmlDescription='

Provides a table through which more detailed SV information can be obtained for each L2 (Ethernet) subscriber connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=999, _eaTypeName=SVSubcriberAssociationL2, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}] +2024-09-07 21:42:16,150 [main] DEBUG ClassBuilder - Adding SVProvider as subclass of GSEandSVCommon +2024-09-07 21:42:16,150 [main] TRACE ClassBuilder - read from EA: SV::SVProvider +2024-09-07 21:42:16,156 [main] TRACE ClassBuilder - Class SVPublisherAssociationIP (5 in package SV) +2024-09-07 21:42:16,214 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVPublisherAssociationIP, _objData=UmlObjectData [id=3817, uuid={3EC59ACA-14AB-4adf-823D-4EF3DBBA4715}, since=null, name=DestIpAddr, alias=, stereotype=protocol, visibility=public, txtDescription='Destination IP address.', htmlDescription='

Destination IP address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 21:42:16,226 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVPublisherAssociationIP, _objData=UmlObjectData [id=3818, uuid={3B41797D-66B7-473b-A47C-92A5B0C6DB2C}, since=null, name=DestIpAddrType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:16,240 [main] DEBUG ClassBuilder - Adding SVPublisherAssociationIP as subclass of GSEandSVPublisherAssociation +2024-09-07 21:42:16,240 [main] TRACE ClassBuilder - read from EA: SV::SVPublisherAssociationIP +2024-09-07 21:42:16,245 [main] TRACE ClassBuilder - Class SVPublisherAssociationL2 (6 in package SV) +2024-09-07 21:42:16,290 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVPublisherAssociationL2, _objData=UmlObjectData [id=3819, uuid={2E77B17F-D224-4764-9C29-36CD379797D7}, since=null, name=DestMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 21:42:16,305 [main] DEBUG ClassBuilder - Adding SVPublisherAssociationL2 as subclass of GSEandSVPublisherAssociation +2024-09-07 21:42:16,305 [main] TRACE ClassBuilder - read from EA: SV::SVPublisherAssociationL2 +2024-09-07 21:42:16,310 [main] TRACE ClassBuilder - Class SVSubcriberAssociationIP (7 in package SV) +2024-09-07 21:42:16,371 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVSubcriberAssociationIP, _objData=UmlObjectData [id=3823, uuid={CF21D44F-A555-48cc-99A1-D49E20097B5D}, since=null, name=SrcIpAddr, alias=, stereotype=protocol, visibility=public, txtDescription='Source IP address.', htmlDescription='

Source IP address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 21:42:16,383 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVSubcriberAssociationIP, _objData=UmlObjectData [id=3824, uuid={3AB68377-764F-4314-851D-FEE4B40FC99E}, since=null, name=SrcIpAddrType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:16,398 [main] DEBUG ClassBuilder - Adding SVSubcriberAssociationIP as subclass of GSEandSVSubscriberAssociation +2024-09-07 21:42:16,398 [main] TRACE ClassBuilder - read from EA: SV::SVSubcriberAssociationIP +2024-09-07 21:42:16,403 [main] TRACE ClassBuilder - Class SVSubcriberAssociationL2 (8 in package SV) +2024-09-07 21:42:16,445 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVSubcriberAssociationL2, _objData=UmlObjectData [id=3825, uuid={A6F5F486-2B40-4620-ADA1-3CBA7408C0D8}, since=null, name=SrcMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 21:42:16,460 [main] DEBUG ClassBuilder - Adding SVSubcriberAssociationL2 as subclass of GSEandSVSubscriberAssociation +2024-09-07 21:42:16,460 [main] TRACE ClassBuilder - read from EA: SV::SVSubcriberAssociationL2 +2024-09-07 21:42:16,467 [main] TRACE ClassBuilder - Class SVNotification (9 in package SV) +2024-09-07 21:42:16,498 [main] DEBUG ClassBuilder - Adding SVNotification as subclass of GSEandSVCommon +2024-09-07 21:42:16,498 [main] TRACE ClassBuilder - read from EA: SV::SVNotification +2024-09-07 21:42:16,500 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850 Agent, _depth=5, _eaElementID=993, _objData=UmlObjectData [id=370, uuid={FBDCDA40-333C-4feb-A44B-6E6F8766621D}, since=null, name=SV, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 25, the SV package includes the IEC 61850 Sampled Value (SV) classes. SVProvider and SVAssociation inherit both Security and Protocol Info attributes from the more general classes.', htmlDescription='

As shown in Figure 25, the SV package includes the IEC 61850 Sampled Value (SV) classes. SVProvider and SVAssociation inherit both Security and Protocol Info attributes from the more general classes.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=sv-agent, mibName=IEC-62351-IEC61850-SV-MIB, mibPrefix=sV, objectBranchId=3, objectIdentity=sv-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=SV, _objData=UmlObjectData [id=60, uuid={472A38C4-7002-4632-9EB5-EC1C28A2CCA8}, since=null, name=SV, alias=, stereotype=, visibility=public, txtDescription='SV classes relationship. SVProvider and SVAssociation inherit both Security and Procotol Info attributes from the more general classes.', htmlDescription='

SV classes relationship. SVProvider and SVAssociation inherit both Security and Procotol Info attributes from the more general classes.

'], _portrait=true, _kind=LOGICAL]], _classes=6 +2024-09-07 21:42:16,505 [main] INFO PackageBuilder - processing package GSE (5) ... +2024-09-07 21:42:16,524 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=GSE, _objData=UmlObjectData [id=44, uuid={80FA056A-3318-4339-86E8-7D464BD53A85}, since=null, name=GSE, alias=, stereotype=, visibility=public, txtDescription='GSE classes relationship. GSEProvider and GSEAssociation inherit both Security and Procotol Info attributes from the more general classes.', htmlDescription='

GSE classes relationship. GSEProvider and GSEAssociation inherit both Security and Procotol Info attributes from the more general classes.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 21:42:16,648 [main] TRACE ClassBuilder - Class GSESubscriberAssociation (3 in package GSE) +2024-09-07 21:42:16,912 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=3750, uuid={AFDD17DA-6B2F-4bc7-8F89-0E63A9B7D1D7}, since=null, name=ConfRevMis, alias=, stereotype=protocol, visibility=public, txtDescription='True indicates that the expected configuration revision did not match the received number.', htmlDescription='

True indicates that the expected configuration revision did not match the received number.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:16,925 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=3755, uuid={2E11DB8F-06FC-485f-8C56-703E601D8A60}, since=null, name=NdsComm, alias=, stereotype=protocol, visibility=public, txtDescription='Duplicated Message received', htmlDescription='

Duplicated Message received

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:16,938 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4368, uuid={9075FAD9-2CE1-4e5d-907F-DBD0B4B1CC32}, since=null, name=ConfRev, alias=, stereotype=protocol, visibility=public, txtDescription='Last configuration Revision being received.', htmlDescription='

Last configuration Revision being received.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:16,949 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4369, uuid={E4803687-6245-40fd-AB97-A5A553A34C59}, since=null, name=RxConfRev, alias=, stereotype=protocol, visibility=public, txtDescription='True indicates that the expected configuration revision did not match the received number.', htmlDescription='

True indicates that the expected configuration revision did not match the received number.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:16,961 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=3758, uuid={EBC5C199-473E-4859-B0FE-DD1C08CC93AF}, since=null, name=TalExpCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count of the received TAL expirations that have been detected.', htmlDescription='

Count of the received TAL expirations that have been detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:16,972 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4370, uuid={09E69AF6-2C2B-46e9-B274-E5220B53D94D}, since=null, name=OosErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of times out of sequence of GOOSE has been observed.', htmlDescription='

Number of times out of sequence of GOOSE has been observed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:16,982 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4371, uuid={5B152C15-4AC4-421a-87EB-F81484BD2524}, since=null, name=DupMsgRx, alias=, stereotype=protocol, visibility=public, txtDescription='If true, the subscription needs commissioning, i.e., the received message does not conform to the current subscription configuration (either the 'dataSetRef' is wrong, the data set members, the configuration revision number, or no subscription is configured at all).', htmlDescription='

If true, the subscription needs commissioning, i.e., the received message does not conform to the current subscription configuration (either the 'dataSetRef' is wrong, the data set members, the configuration revision number, or no subscription is configured at all).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:16,993 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4372, uuid={313447D4-3710-47a8-85FF-DAA9316F8720}, since=null, name=DatSet, alias=, stereotype=protocol, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:17,004 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4373, uuid={8E3C588A-BEC3-454f-861F-712BADFC92AA}, since=null, name=RxDatSet, alias=, stereotype=protocol, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:17,015 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4374, uuid={C304ABDA-E4BA-4cfc-BAD9-17425F5A0611}, since=null, name=GoID, alias=, stereotype=protocol, visibility=public, txtDescription='GOOSE Identifier being expected.', htmlDescription='

GOOSE Identifier being expected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:17,025 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4375, uuid={985D635D-D095-4282-B40B-8D3F15CDC152}, since=null, name=RxGoID, alias=, stereotype=protocol, visibility=public, txtDescription='Last GOOSE Identifier being received.', htmlDescription='

Last GOOSE Identifier being received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:17,037 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4376, uuid={3BC29513-E13B-40a1-A86D-4B3406FC2CD1}, since=null, name=StNum, alias=, stereotype=protocol, visibility=public, txtDescription='StNum being received from last accepted GOOSE message.', htmlDescription='

StNum being received from last accepted GOOSE message.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:17,047 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4377, uuid={699EF357-D4F5-4445-8F55-446FF895C089}, since=null, name=SqNum, alias=, stereotype=protocol, visibility=public, txtDescription='SqNum being received from last accepted GOOSE message.', htmlDescription='

SqNum being received from last accepted GOOSE message.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:17,058 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4378, uuid={778EF329-63E8-4a88-A172-D2DAD54D972A}, since=null, name=RejectStNum, alias=, stereotype=protocol, visibility=public, txtDescription='Last StNum being rejected.', htmlDescription='

Last StNum being rejected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:17,069 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4379, uuid={A699C155-79DE-4187-BDF5-AFD122DAD7CA}, since=null, name=RejectSqNum, alias=, stereotype=protocol, visibility=public, txtDescription='Last SqNum being rejected.', htmlDescription='

Last SqNum being rejected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:17,080 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4494, uuid={98542797-3D0F-4f54-96D7-B2BEBEAF605A}, since=null, name=RxT, alias=, stereotype=protocol, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:17,080 [main] ERROR ClassBuilder - [+++ EA problem: attr count on GSESubscriberAssociation = 16 +, +++ attr ConfRevMis: pos = 0 +, +++ attr NdsComm: pos = 2 +, +++ attr ConfRev: pos = 3 +, +++ attr RxConfRev: pos = 4 +, +++ attr TalExpCnt: pos = 4 DUPLICATE +, +++ attr OosErrCnt: pos = 5 +, +++ attr DupMsgRx: pos = 6 +, +++ attr DatSet: pos = 7 +, +++ attr RxDatSet: pos = 8 +, +++ attr GoID: pos = 9 +, +++ attr RxGoID: pos = 10 +, +++ attr StNum: pos = 11 +, +++ attr SqNum: pos = 12 +, +++ attr RejectStNum: pos = 13 +, +++ attr RejectSqNum: pos = 14 +, +++ attr RxT: pos = 15 +] +2024-09-07 21:42:17,114 [main] DEBUG ClassBuilder - Adding GSESubscriberAssociation as subclass of GSEandSVSubscriberAssociation +2024-09-07 21:42:17,114 [main] TRACE ClassBuilder - read from EA: GSE::GSESubscriberAssociation +2024-09-07 21:42:17,119 [main] TRACE ClassBuilder - Class GSEProvider (4 in package GSE) +2024-09-07 21:42:17,284 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3243, uuid={71555478-FCAD-4dae-B530-6956D1B5D475}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:17,296 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=4053, uuid={A432D351-022A-4b49-AA3D-61CBB91067FC}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of PDUs received that could not be decrypted', htmlDescription='

Number of PDUs received that could not be decrypted

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:17,307 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3773, uuid={4B58CE58-88E3-4e07-9FF3-FE0181F95942}, since=null, name=InErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of PDUs received that were in error due to malformed content, parity errors or configuration mismatch.', htmlDescription='

Number of PDUs received that were in error due to malformed content, parity errors or configuration mismatch.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:17,318 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=4121, uuid={D727F0F0-5C88-4fc4-83C5-D69614BE4ED8}, since=null, name=InUnexpectedMulticast, alias=, stereotype=protocol, visibility=public, txtDescription='Count of unexpected multicast received PDUs. This apply to GOOSE only.', htmlDescription='

Count of unexpected multicast received PDUs. This apply to GOOSE only.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:17,334 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3744, uuid={8BC8E8B9-0BA6-4277-B1B1-23F48CD0FD30}, since=null, name=PIP, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed GSE information can be obtained for each IP publisher connection.', htmlDescription='

Provides a table through which more detailed GSE information can be obtained for each IP publisher connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=796, _eaTypeName=GSEPublisherAssociationIP, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}] +2024-09-07 21:42:17,349 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3745, uuid={10373ECE-DF59-4995-BA92-240A3CC2D94B}, since=null, name=PL2, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed GSE information can be obtained for each L2 (Ethernet) publisher connection.', htmlDescription='

Provides a table through which more detailed GSE information can be obtained for each L2 (Ethernet) publisher connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=984, _eaTypeName=GSEPublisherAssociationL2, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}] +2024-09-07 21:42:17,362 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3618, uuid={BF431EAB-1B49-4c5a-8BC3-171FED573957}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=930, _eaTypeName=GSENotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:42:17,377 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3046, uuid={AA8FC433-0ACC-4dcf-9B1C-59469C28FCA5}, since=null, name=SIP, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed GSE information can be obtained for each IP subscriber connection.', htmlDescription='

Provides a table through which more detailed GSE information can be obtained for each IP subscriber connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=979, _eaTypeName=GSESubcriberAssociationIP, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}] +2024-09-07 21:42:17,392 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3746, uuid={F6A461DF-31BD-4546-8B62-BE2A79D53F41}, since=null, name=SL2, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed GSE information can be obtained for each L2 (Ethernet) subscriber connection.', htmlDescription='

Provides a table through which more detailed GSE information can be obtained for each L2 (Ethernet) subscriber connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=977, _eaTypeName=GSESubcriberAssociationL2, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}] +2024-09-07 21:42:17,406 [main] DEBUG ClassBuilder - Adding GSEProvider as subclass of GSEandSVCommon +2024-09-07 21:42:17,406 [main] TRACE ClassBuilder - read from EA: GSE::GSEProvider +2024-09-07 21:42:17,412 [main] TRACE ClassBuilder - Class GSEPublisherAssociationIP (5 in package GSE) +2024-09-07 21:42:17,477 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEPublisherAssociationIP, _objData=UmlObjectData [id=3803, uuid={9C513452-9437-4849-894C-B2C33952D4F0}, since=null, name=DestIpAddr, alias=, stereotype=protocol, visibility=public, txtDescription='Destination IP address.', htmlDescription='

Destination IP address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 21:42:17,489 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEPublisherAssociationIP, _objData=UmlObjectData [id=3802, uuid={03D1AF7D-F2B5-425c-8FD2-63B09E3887F9}, since=null, name=DestIpAddrType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:17,503 [main] DEBUG ClassBuilder - Adding GSEPublisherAssociationIP as subclass of GSEandSVPublisherAssociation +2024-09-07 21:42:17,503 [main] TRACE ClassBuilder - read from EA: GSE::GSEPublisherAssociationIP +2024-09-07 21:42:17,508 [main] TRACE ClassBuilder - Class GSEPublisherAssociationL2 (6 in package GSE) +2024-09-07 21:42:17,568 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEPublisherAssociationL2, _objData=UmlObjectData [id=3801, uuid={53A15D60-889F-4c5a-BCF1-89AF1D539B97}, since=null, name=DestMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 21:42:17,586 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEPublisherAssociationL2, _objData=UmlObjectData [id=4362, uuid={1EF8C591-A06A-43cb-8FBF-95E679E109F8}, since=null, name=SrcMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=no, Version=1}] +2024-09-07 21:42:17,600 [main] DEBUG ClassBuilder - Adding GSEPublisherAssociationL2 as subclass of GSEandSVPublisherAssociation +2024-09-07 21:42:17,600 [main] TRACE ClassBuilder - read from EA: GSE::GSEPublisherAssociationL2 +2024-09-07 21:42:17,605 [main] TRACE ClassBuilder - Class GSESubcriberAssociationIP (7 in package GSE) +2024-09-07 21:42:17,664 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubcriberAssociationIP, _objData=UmlObjectData [id=3740, uuid={FFD24620-C094-400d-8BD1-F48524198222}, since=null, name=SrcIpAddr, alias=, stereotype=protocol, visibility=public, txtDescription='Source IP address. .', htmlDescription='

Source IP address. .

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 21:42:17,676 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubcriberAssociationIP, _objData=UmlObjectData [id=3739, uuid={B418786B-EB08-4581-8037-B7C3A6E0311A}, since=null, name=SrcIpAddrType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:17,691 [main] DEBUG ClassBuilder - Adding GSESubcriberAssociationIP as subclass of GSESubscriberAssociation +2024-09-07 21:42:17,691 [main] TRACE ClassBuilder - read from EA: GSE::GSESubcriberAssociationIP +2024-09-07 21:42:17,696 [main] TRACE ClassBuilder - Class GSESubcriberAssociationL2 (8 in package GSE) +2024-09-07 21:42:17,754 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubcriberAssociationL2, _objData=UmlObjectData [id=3742, uuid={556B251D-88A4-4ac8-855E-D537776F059A}, since=null, name=SrcMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP Profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP Profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 21:42:17,769 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubcriberAssociationL2, _objData=UmlObjectData [id=4361, uuid={5024F7E1-FEC6-4125-AF1E-FFC7C29B18D8}, since=null, name=DstMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP Profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP Profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=no, Version=1}] +2024-09-07 21:42:17,783 [main] DEBUG ClassBuilder - Adding GSESubcriberAssociationL2 as subclass of GSESubscriberAssociation +2024-09-07 21:42:17,783 [main] TRACE ClassBuilder - read from EA: GSE::GSESubcriberAssociationL2 +2024-09-07 21:42:17,789 [main] TRACE ClassBuilder - Class GSENotification (9 in package GSE) +2024-09-07 21:42:17,818 [main] DEBUG ClassBuilder - Adding GSENotification as subclass of GSEandSVCommon +2024-09-07 21:42:17,818 [main] TRACE ClassBuilder - read from EA: GSE::GSENotification +2024-09-07 21:42:17,821 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850 Agent, _depth=5, _eaElementID=612, _objData=UmlObjectData [id=213, uuid={82435997-4AFF-4079-AAE7-9E673726C85A}, since=null, name=GSE, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 26, the GSE package includes the IEC 61850 Generic Substation Events (GSE) classes. GSEprovider and GSEAssociation inherit both Security and Protocol Info attributes from the more general classes.', htmlDescription='

As shown in Figure 26, the GSE package includes the IEC 61850 Generic Substation Events (GSE) classes. GSEprovider and GSEAssociation inherit both Security and Protocol Info attributes from the more general classes.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=gse-agent, mibName=IEC-62351-IEC61850-GSE-MIB, mibPrefix=gSE, objectBranchId=4, objectIdentity=gse-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=GSE, _objData=UmlObjectData [id=44, uuid={80FA056A-3318-4339-86E8-7D464BD53A85}, since=null, name=GSE, alias=, stereotype=, visibility=public, txtDescription='GSE classes relationship. GSEProvider and GSEAssociation inherit both Security and Procotol Info attributes from the more general classes.', htmlDescription='

GSE classes relationship. GSEProvider and GSEAssociation inherit both Security and Procotol Info attributes from the more general classes.

'], _portrait=true, _kind=LOGICAL]], _classes=7 +2024-09-07 21:42:17,821 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Application Protocols Agents, _depth=4, _eaElementID=143, _objData=UmlObjectData [id=42, uuid={AD259188-13EE-4de8-ACE5-B251CBE161AE}, since=null, name=IEC61850 Agent, alias=, stereotype=, visibility=public, txtDescription='The IEC 61850 Agent package includes the collection of IEC 61850 protocols monitoring information. It is structured into the following sub-packages: +- ACSI (Abstract communication service interface) +- MMS (Manufacturing Message Specification) +- SV (Sampled Value) +- GSE (Generic Substation Events).', htmlDescription='

The IEC 61850 Agent package includes the collection of IEC 61850 protocols monitoring information. It is structured into the following sub-packages:

  • ACSI (Abstract communication service interface)
  • MMS (Manufacturing Message Specification)
  • SV (Sampled Value)
  • GSE (Generic Substation Events).
'], _modelId=362, _selfDependent=false, 2_taggedValues{objectBranchId=2, objectIdentity=iec61850}, _childPackages=5] +2024-09-07 21:42:17,821 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=604, _objData=UmlObjectData [id=210, uuid={79D95A5F-8421-4ee5-89EC-51F26A20BCDC}, since=null, name=Application Protocols Agents, alias=, stereotype=, visibility=public, txtDescription='This Application Protocols Agents package contains the object descriptions to be provided in order to monitor the behaviour of the application protocols and any possible security information related to application communication layer. +Each protocol package is structured with the goal of exposing summary information on the overall application stack protocol statistics and information, but also of providing specialized statistics and information for each association with remote entities (the application level connections). This is done by reusing the same common or protocol-related objects with the goal of obtaining more coherent structure and semantics of variables.', htmlDescription='

This Application Protocols Agents package contains the object descriptions to be provided in order to monitor the behaviour of the application protocols and any possible security information related to application communication layer.

Each protocol package is structured with the goal of exposing summary information on the overall application stack protocol statistics and information, but also of providing specialized statistics and information for each association with remote entities (the application level connections). This is done by reusing the same common or protocol-related objects with the goal of obtaining more coherent structure and semantics of variables.

'], _modelId=362, _selfDependent=false, 2_taggedValues{objectBranchId=3, objectIdentity=application}, _childPackages=5] +2024-09-07 21:42:17,825 [main] INFO PackageBuilder - processing package Clocks Agent (10) ... +2024-09-07 21:42:17,846 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Clocks Agent, _objData=UmlObjectData [id=46, uuid={9DE08B60-19E1-4c7c-B3D6-82731BE2066A}, since=null, name=Clocks Agent, alias=, stereotype=, visibility=public, txtDescription='Clocks Agent classes', htmlDescription='

Clocks Agent classes

'], _portrait=true, _kind=LOGICAL] +2024-09-07 21:42:17,905 [main] TRACE ClassBuilder - Class Clock (0 in package Clocks Agent) +2024-09-07 21:42:18,013 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=2651, uuid={219E72A9-5B41-4365-A90E-491097F96C10}, since=null, name=clockTamperDetected, alias=, stereotype=security, visibility=public, txtDescription='Timestamp of when a tamper of a clock has been detected', htmlDescription='

Timestamp of when a tamper of a clock has been detected

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:18,025 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=2656, uuid={C95F5CA0-6663-41c7-BAE9-BB32F924F8F1}, since=null, name=LastClockHoldover, alias=, stereotype=health, visibility=public, txtDescription='Indicates the timestamp at which the last Holdover was detected.', htmlDescription='

Indicates the timestamp at which the last Holdover was detected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:18,036 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=2657, uuid={FF50E5F4-F0FB-48b1-B605-B025F27CA0DD}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='When written True, the statistics of clockTamperDetected and LastClockHoldover are set back to a value of zero. The values in the clocks table are not impacted by this reset.', htmlDescription='

When written True, the statistics of clockTamperDetected and LastClockHoldover are set back to a value of zero. The values in the clocks table are not impacted by this reset.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:18,052 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=2650, uuid={106DFE8D-727B-42bf-84CA-4C8E484CB760}, since=null, name=Clocks, alias=, stereotype=table, visibility=public, txtDescription='Table of information regarding the clock sources that are in use.', htmlDescription='

Table of information regarding the clock sources that are in use.

'], _isConst=false, _isStatic=false, _multiplicity=[0..n], _initValue=, _eaTypeId=608, _eaTypeName=ClockEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=cLK, objectIdentity=cLKclockEntry, Version=0}] +2024-09-07 21:42:18,062 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=3631, uuid={31D800F0-35C2-4312-95B7-E3A890982D86}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=944, _eaTypeName=SecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:18,077 [main] DEBUG ClassBuilder - Adding Clock as subclass of AbstractAgent +2024-09-07 21:42:18,077 [main] TRACE ClassBuilder - read from EA: Clocks Agent::Clock +2024-09-07 21:42:18,083 [main] TRACE ClassBuilder - Class ClockEntry (0 in package Clocks Agent) +2024-09-07 21:42:18,243 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2646, uuid={E98C8059-D343-41c5-A9FD-C45F4FA62052}, since=null, name=ClockAccuracy, alias=, stereotype=health, visibility=public, txtDescription='Reports the current expected accuracy of this clock in nanoseconds. A value of -1 indicates that the accuracy is unknown or estimated to be larger than 2147483647 ns.', htmlDescription='

Reports the current expected accuracy of this clock in nanoseconds. A value of -1 indicates that the accuracy is unknown or estimated to be larger than 2147483647 ns.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:18,256 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=3085, uuid={50EFFF08-CB85-4033-8EB9-8FC29AACD6DC}, since=null, name=ClockIndex, alias=, stereotype=index, visibility=public, txtDescription='Clock Index', htmlDescription='

Clock Index

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 21:42:18,268 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=3729, uuid={E0CAC256-AD0A-4515-9F48-63353DA71841}, since=null, name=ClockIssue, alias=, stereotype=performance, visibility=public, txtDescription='Reports the presence of any clock issue.', htmlDescription='

Reports the presence of any clock issue.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=776, _eaTypeName=TimSyncIssueType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:18,280 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2649, uuid={1591A4AF-7AD8-4720-B04E-7C389735450F}, since=null, name=ClockTamperDetected, alias=, stereotype=security, visibility=public, txtDescription='Clock tamper have been detected.', htmlDescription='

Clock tamper have been detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:18,292 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2645, uuid={F98377B8-808A-4705-81F9-99E14B733B97}, since=null, name=TmSrc, alias=, stereotype=performance, visibility=public, txtDescription='Reports the clock sync method.', htmlDescription='

Reports the clock sync method.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=777, _eaTypeName=TimSyncSrcType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:18,303 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2655, uuid={EFB862ED-119C-4441-AD7D-3F382A7C0C92}, since=null, name=HoldOver, alias=, stereotype=health, visibility=public, txtDescription='The Holdover flag shall be set True whenever the Time Traceable flag is True and the IED is not receiving a qualified signal from a recognized standard time source. It shall be set False otherwise. Therefore, this flag gives an immediate indication of loss of the time reference signal.', htmlDescription='

The Holdover flag shall be set True whenever the Time Traceable flag is True and the IED is not receiving a qualified signal from a recognized standard time source. It shall be set False otherwise. Therefore, this flag gives an immediate indication of loss of the time reference signal.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:18,314 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2648, uuid={A8CB6533-B21C-4986-941B-F8F32BD739E3}, since=null, name=LastSyncOffset, alias=, stereotype=health, visibility=public, txtDescription='Reports the time offset (in seconds) computed from the last qualified synchronization signal received by this clock. This value is used by the clock servo to gradually adjust the clock.', htmlDescription='

Reports the time offset (in seconds) computed from the last qualified synchronization signal received by this clock. This value is used by the clock servo to gradually adjust the clock.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:18,324 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2653, uuid={AAB46675-D113-417c-8AB8-E4E268247EF8}, since=null, name=TimeSourceAvailable, alias=, stereotype=health, visibility=public, txtDescription='The Time Source Available flag shall be set True whenever the IED is receiving a qualified signal from a recognized standard time source. If it loses this signal, then after an appropriate period (during which the additional holdover uncertainty is not a significant impairment to performance), the Time Source Available flag shall be set False. The duration of the period after loss of the time signal and negation of the Time Source Available flag depends on the quality of the holdover oscillator and the required time quality, and may be a configurable IED parameter. +This flag may not immediately be set False, because momentary loss of the time signal may not adversely affect IED time quality. The Holdover flag provides an immediate indication of this condition.', htmlDescription='

The Time Source Available flag shall be set True whenever the IED is receiving a qualified signal from a recognized standard time source. If it loses this signal, then after an appropriate period (during which the additional holdover uncertainty is not a significant impairment to performance), the Time Source Available flag shall be set False. The duration of the period after loss of the time signal and negation of the Time Source Available flag depends on the quality of the holdover oscillator and the required time quality, and may be a configurable IED parameter.

This flag may not immediately be set False, because momentary loss of the time signal may not adversely affect IED time quality. The Holdover flag provides an immediate indication of this condition.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:18,335 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2652, uuid={ECD9FD6B-5168-426a-BF8F-D2B9B57110B0}, since=null, name=TimeTraceable, alias=, stereotype=health, visibility=public, txtDescription='The Time Traceable flag shall be set False before the IED has received and qualified a signal from a recognized standard time source. Once it has locked to the recognized standard time source and stabilized, the Time Traceable flag shall be set True. The Time Traceable flag shall not be set False again, so long as the IED can estimate its holdover uncertainty. If at some point, perhaps due to an extended holdover interval, the IED no longer can estimate its holdover uncertainty, then the Time Traceable flag shall be set False.', htmlDescription='

The Time Traceable flag shall be set False before the IED has received and qualified a signal from a recognized standard time source. Once it has locked to the recognized standard time source and stabilized, the Time Traceable flag shall be set True. The Time Traceable flag shall not be set False again, so long as the IED can estimate its holdover uncertainty. If at some point, perhaps due to an extended holdover interval, the IED no longer can estimate its holdover uncertainty, then the Time Traceable flag shall be set False.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:18,351 [main] DEBUG ClassBuilder - Adding ClockEntry as subclass of AbstractAgent +2024-09-07 21:42:18,351 [main] TRACE ClassBuilder - read from EA: Clocks Agent::ClockEntry +2024-09-07 21:42:18,356 [main] TRACE ClassBuilder - Class SecurityNotification (6 in package Clocks Agent) +2024-09-07 21:42:18,398 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::SecurityNotification, _objData=UmlObjectData [id=3632, uuid={04B87A68-22D2-4882-A4A5-D62CF502F233}, since=null, name=clockTamperDetected, alias=, stereotype=security, visibility=public, txtDescription='Timestamp of when a tamper of a clock has been detected', htmlDescription='

Timestamp of when a tamper of a clock has been detected

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:18,412 [main] DEBUG ClassBuilder - Adding SecurityNotification as subclass of AbstractAgent +2024-09-07 21:42:18,413 [main] TRACE ClassBuilder - read from EA: Clocks Agent::SecurityNotification +2024-09-07 21:42:18,415 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=605, _objData=UmlObjectData [id=211, uuid={E6C708DE-BB97-4b5d-94A9-6AD67FCE234E}, since=null, name=Clocks Agent, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 28, the Clocks Agent package includes the clock monitoring classes.', htmlDescription='

As shown in Figure 28, the Clocks Agent package includes the clock monitoring classes.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=clock-agent, mibName=IEC-62351-CLK-MIB, mibPrefix=cLK, objectBranchId=4, objectIdentity=clock-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=Clocks Agent, _objData=UmlObjectData [id=46, uuid={9DE08B60-19E1-4c7c-B3D6-82731BE2066A}, since=null, name=Clocks Agent, alias=, stereotype=, visibility=public, txtDescription='Clocks Agent classes', htmlDescription='

Clocks Agent classes

'], _portrait=true, _kind=LOGICAL]], _classes=3 +2024-09-07 21:42:18,419 [main] INFO PackageBuilder - processing package Interfaces Agent (11) ... +2024-09-07 21:42:18,438 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Interfaces Agent, _objData=UmlObjectData [id=24, uuid={1B416A08-A236-4e2a-9A9E-6A48912EF05F}, since=null, name=Interfaces, alias=, stereotype=, visibility=public, txtDescription='The IED interfaces are depicted.', htmlDescription='

The IED interfaces are depicted.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 21:42:18,580 [main] TRACE ClassBuilder - Class Interface (1 in package Interfaces Agent) +2024-09-07 21:42:18,708 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3319, uuid={6FD1D092-9094-4f03-8B24-7DCD8E2358AD}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='Interface number', htmlDescription='

Interface number

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 21:42:18,720 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3320, uuid={6EB13B61-C6AA-4e12-9BC2-177D8DB73982}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the CPU.', htmlDescription='

Description of the CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:18,731 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3415, uuid={2252ED03-8326-4d40-957F-9921BA0D74BE}, since=null, name=IntType, alias=, stereotype=identity, visibility=public, txtDescription='Interface type (Wired or Wireless)', htmlDescription='

Interface type (Wired or Wireless)

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=866, _eaTypeName=IntType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:18,742 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3323, uuid={5B1D4273-C6BF-44d8-93A8-EE46A1AEBA45}, since=null, name=Operable, alias=, stereotype=health, visibility=public, txtDescription='Indicates that CPU is operable (it can be either online or offline)', htmlDescription='

Indicates that CPU is operable (it can be either online or offline)

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:18,753 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3318, uuid={C6769525-A8F5-4599-84AB-E17EB20458CD}, since=null, name=Online, alias=, stereotype=health, visibility=public, txtDescription='Indicate that CPU is online and active', htmlDescription='

Indicate that CPU is online and active

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:18,764 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3322, uuid={CF6212A6-1358-4cd8-AC00-7BE9C09A5BFE}, since=null, name=Faulty, alias=, stereotype=health, visibility=public, txtDescription='CPU generated errors', htmlDescription='

CPU generated errors

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:18,775 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3321, uuid={AE8F0410-796C-42ec-BA19-BA8D3B558380}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:18,836 [main] DEBUG ClassBuilder - Adding Interface as subclass of AbstractAgent +2024-09-07 21:42:18,836 [main] TRACE ClassBuilder - read from EA: Interfaces Agent::Interface +2024-09-07 21:42:18,841 [main] TRACE ClassBuilder - Class Interfaces (2 in package Interfaces Agent) +2024-09-07 21:42:19,182 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3652, uuid={F38DE40F-DC22-441d-BD42-E3990926DFB1}, since=null, name=serAvail, alias=, stereotype=performance, visibility=public, txtDescription='Number of serial interfaces installed on the device', htmlDescription='

Number of serial interfaces installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:19,194 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3657, uuid={4E66DA97-6D8F-450a-A00B-ADE0FEE47CE4}, since=null, name=serActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of serial interfaces active on the device', htmlDescription='

Number of serial interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:19,206 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3662, uuid={6F91E49F-3A68-4208-A29A-512F23CC10B0}, since=null, name=serFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing serial Interfaces on the device', htmlDescription='

Number of failing serial Interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:19,216 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3653, uuid={B23510B0-5513-4f80-9792-63DED4A16F44}, since=null, name=ethAvail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of ethernet Interfaces installed on the device', htmlDescription='

Number of ethernet Interfaces installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:19,227 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3658, uuid={6B6B3BCD-0AE0-4c6f-9FB3-472BEC079B13}, since=null, name=ethActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of ethernet interfaces active on the device', htmlDescription='

Number of ethernet interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:19,238 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3663, uuid={536CCD9F-B77E-465a-8898-FCD7644820AD}, since=null, name=ethFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing ethernet interfaces on the device', htmlDescription='

Number of failing ethernet interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:19,249 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3654, uuid={1C804DCB-08CB-41f0-B6F7-384A70C8C3C8}, since=null, name=algAvail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of analogue Interfaces installed on the device', htmlDescription='

Number of analogue Interfaces installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:19,260 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3659, uuid={29FE15BB-45B5-47c2-A74E-3EF574575434}, since=null, name=algActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of analogue interfaces Active on the device', htmlDescription='

Number of analogue interfaces Active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:19,271 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3664, uuid={54797821-2674-4526-B44A-9F87D01A6991}, since=null, name=algFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing analogue interfaces on the device', htmlDescription='

Number of failing analogue interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:19,282 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3655, uuid={74214291-7A17-4b83-AA3C-A305991D037A}, since=null, name=keyAvail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of keyboard Interface installed on the device', htmlDescription='

Number of keyboard Interface installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:19,294 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3660, uuid={AB6E018D-82C3-4524-8D58-58164F10E51B}, since=null, name=keyActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of keyboard interface active on the device', htmlDescription='

Number of keyboard interface active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:19,306 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3665, uuid={5F0D156E-80E6-401b-9854-FCA4DCA132BB}, since=null, name=keyFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing keyboard interface on the device', htmlDescription='

Number of failing keyboard interface on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:19,318 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3656, uuid={4C0A881D-B242-49b2-A9F8-DF5C3DF79322}, since=null, name=usbAvail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of Universal Serial Bus Interface installed on the device', htmlDescription='

Number of Universal Serial Bus Interface installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:19,329 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3661, uuid={6078BDD9-2E54-4b6b-A1B3-CCDBFE46E859}, since=null, name=usbActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of Universal Serial Bus interface active on the device', htmlDescription='

Number of Universal Serial Bus interface active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:19,340 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3666, uuid={64E92266-4098-47ce-9874-DBF194F6A4D1}, since=null, name=usbFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing Universal Serial Bus interface on the device', htmlDescription='

Number of failing Universal Serial Bus interface on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:19,358 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3283, uuid={6E4426CC-406A-429e-AD6D-1EECA102F2FC}, since=null, name=SER, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of serial interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of serial interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=836, _eaTypeName=SEREntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=sER, objectIdentity=intSERIALEntry, Version=0}] +2024-09-07 21:42:19,376 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3297, uuid={4C6CDBC0-62B0-4881-A810-A6CE56DACD81}, since=null, name=ETH, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of Ethernet interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of Ethernet interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=838, _eaTypeName=ETHEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=eTH, objectIdentity=intETHEntry, Version=0}] +2024-09-07 21:42:19,392 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3298, uuid={8794992C-DE7F-4bf7-83EC-5592356A181C}, since=null, name=USB, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of USB interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of USB interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=840, _eaTypeName=USBEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=uSB, objectIdentity=intUSBEntry, Version=0}] +2024-09-07 21:42:19,407 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3299, uuid={B0761727-4B75-4eb5-82B3-0BB613618FC7}, since=null, name=KEY, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of keyboard interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of keyboard interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=842, _eaTypeName=KEYEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=kEY, objectIdentity=intKEYEntry, Version=0}] +2024-09-07 21:42:19,423 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3328, uuid={D97ACC7A-DBFA-4c92-BC5C-FF187AF4C4EF}, since=null, name=ALG, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of analogue interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of analogue interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=847, _eaTypeName=ALGEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=aLG, objectIdentity=intALGEntry, Version=0}] +2024-09-07 21:42:19,433 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3678, uuid={B5CE0636-5BE9-4566-8B6A-2103E2769BA9}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object', htmlDescription='

State events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=946, _eaTypeName=Notification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:19,447 [main] DEBUG ClassBuilder - Adding Interfaces as subclass of AbstractAgent +2024-09-07 21:42:19,447 [main] TRACE ClassBuilder - read from EA: Interfaces Agent::Interfaces +2024-09-07 21:42:19,452 [main] TRACE ClassBuilder - Class ETHEntry (3 in package Interfaces Agent) +2024-09-07 21:42:19,479 [main] DEBUG ClassBuilder - Adding ETHEntry as subclass of Interface +2024-09-07 21:42:19,479 [main] TRACE ClassBuilder - read from EA: Interfaces Agent::ETHEntry +2024-09-07 21:42:19,483 [main] TRACE ClassBuilder - Class KEYEntry (4 in package Interfaces Agent) +2024-09-07 21:42:19,523 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::KEYEntry, _objData=UmlObjectData [id=3327, uuid={6A06B961-6E51-4f13-B73C-32E26BB4F831}, since=null, name=Locked, alias=, stereotype=health, visibility=public, txtDescription='Indicate a locked status for the device keyboard', htmlDescription='

Indicate a locked status for the device keyboard

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:19,537 [main] DEBUG ClassBuilder - Adding KEYEntry as subclass of Interface +2024-09-07 21:42:19,537 [main] TRACE ClassBuilder - read from EA: Interfaces Agent::KEYEntry +2024-09-07 21:42:19,542 [main] TRACE ClassBuilder - Class SEREntry (5 in package Interfaces Agent) +2024-09-07 21:42:19,597 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::SEREntry, _objData=UmlObjectData [id=3325, uuid={BD2A2516-013B-4f4c-83C4-6D873D08A614}, since=null, name=ByteIn, alias=, stereotype=protocol, visibility=public, txtDescription='Inbound Byte counter', htmlDescription='

Inbound Byte counter

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:19,608 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::SEREntry, _objData=UmlObjectData [id=3326, uuid={DB538A18-009B-4f5a-B7CD-6FDE73E706B1}, since=null, name=ByteOut, alias=, stereotype=protocol, visibility=public, txtDescription='Outbound Byte counter', htmlDescription='

Outbound Byte counter

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:19,622 [main] DEBUG ClassBuilder - Adding SEREntry as subclass of Interface +2024-09-07 21:42:19,622 [main] TRACE ClassBuilder - read from EA: Interfaces Agent::SEREntry +2024-09-07 21:42:19,627 [main] TRACE ClassBuilder - Class ALGEntry (6 in package Interfaces Agent) +2024-09-07 21:42:19,656 [main] DEBUG ClassBuilder - Adding ALGEntry as subclass of Interface +2024-09-07 21:42:19,656 [main] TRACE ClassBuilder - read from EA: Interfaces Agent::ALGEntry +2024-09-07 21:42:19,662 [main] TRACE ClassBuilder - Class USBEntry (7 in package Interfaces Agent) +2024-09-07 21:42:19,692 [main] DEBUG ClassBuilder - Adding USBEntry as subclass of Interface +2024-09-07 21:42:19,692 [main] TRACE ClassBuilder - read from EA: Interfaces Agent::USBEntry +2024-09-07 21:42:19,698 [main] TRACE ClassBuilder - Class Notification (8 in package Interfaces Agent) +2024-09-07 21:42:19,881 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3668, uuid={51550105-54C1-4ba6-BC2E-E028F066BD90}, since=null, name=serActive, alias=, stereotype=health, visibility=public, txtDescription='Number of serial Interfaces active on the device', htmlDescription='

Number of serial Interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:19,893 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3669, uuid={BE46F414-6E9C-412e-9E70-29513A7DAA18}, since=null, name=serFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing serial Interfaces on the device', htmlDescription='

Number of failing serial Interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:19,905 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3670, uuid={78956E09-8F39-4f86-A5CE-B8DBF44C7D6E}, since=null, name=ethActive, alias=, stereotype=health, visibility=public, txtDescription='Number of ethernet interfaces active on the device', htmlDescription='

Number of ethernet interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:19,916 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3671, uuid={101FCB6C-9867-4262-8E50-6F057EEAF643}, since=null, name=ethFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing ethernet interfaces on the device', htmlDescription='

Number of failing ethernet interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:19,928 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3672, uuid={5171FAC8-436F-42e9-B8E2-0C31C19FAC68}, since=null, name=algActive, alias=, stereotype=health, visibility=public, txtDescription='Number of analogue interfaces active on the device', htmlDescription='

Number of analogue interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:19,940 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3673, uuid={9711AA3F-E429-4304-960A-AA9CF2BCC003}, since=null, name=algFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing analogue interfaces on the device', htmlDescription='

Number of failing analogue interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:19,952 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3667, uuid={D523B290-8CF4-4630-ADC0-AA4FF4336A1B}, since=null, name=keyActive, alias=, stereotype=health, visibility=public, txtDescription='Number of keyboard interfaces active on the device', htmlDescription='

Number of keyboard interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:19,964 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3674, uuid={367C987D-D473-46cd-A5B1-6B3A1D275D36}, since=null, name=keyFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing keyboard interfaces on the device', htmlDescription='

Number of failing keyboard interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:19,976 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3675, uuid={0F833AFE-832E-4673-99D3-42CDEFDDF7E0}, since=null, name=usbActive, alias=, stereotype=health, visibility=public, txtDescription='Number of Universal Serial Bus interfaces active on the device', htmlDescription='

Number of Universal Serial Bus interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:19,987 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3676, uuid={E957BF40-9F27-4a63-B2DD-16F525F01FA1}, since=null, name=usbFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing Universal Serial Bus interfaces on the device', htmlDescription='

Number of failing Universal Serial Bus interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:42:20,003 [main] DEBUG ClassBuilder - Adding Notification as subclass of AbstractAgent +2024-09-07 21:42:20,003 [main] TRACE ClassBuilder - read from EA: Interfaces Agent::Notification +2024-09-07 21:42:20,005 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=130, _objData=UmlObjectData [id=40, uuid={971EA18E-FACB-4b68-BAB7-76613251FB91}, since=null, name=Interfaces Agent, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 27, the Interfaces Agent package contains the object descriptions to be provided in order to monitor the IED Interfaces state and behaviour.', htmlDescription='

As shown in Figure 27, the Interfaces Agent package contains the object descriptions to be provided in order to monitor the IED Interfaces state and behaviour.

'], _modelId=362, _selfDependent=false, 5_taggedValues{mibIdentity=interfaces-agent, mibName=IEC-62351-INT-MIB, mibPrefix=int, objectBranchId=5, objectIdentity=interfaces-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=Interfaces Agent, _objData=UmlObjectData [id=24, uuid={1B416A08-A236-4e2a-9A9E-6A48912EF05F}, since=null, name=Interfaces, alias=, stereotype=, visibility=public, txtDescription='The IED interfaces are depicted.', htmlDescription='

The IED interfaces are depicted.

'], _portrait=true, _kind=LOGICAL]], _classes=8 +2024-09-07 21:42:20,005 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=iec62351, _depth=2, _eaElementID=122, _objData=UmlObjectData [id=36, uuid={6739D61A-8BB1-4a90-AC8E-98287558CD65}, since=null, name=part7, alias=, stereotype=, visibility=public, txtDescription='IEC 62351-7 Network Management objects', htmlDescription='

IEC 62351-7 Network Management objects

'], _modelId=362, _selfDependent=false, 4_taggedValues{mibHeaderDescription=Copyright (C) IEC. This version of this MIB module is part + of IEC 57-62351-7-Ed2. + See the IEC 57-62351-7-Ed2 for full legal notices., mibHeaderRevision=202409010900Z, objectBranchId=7, objectIdentity=part7}, _childPackages=10] +2024-09-07 21:42:20,005 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=standard, _depth=1, _eaElementID=982, _objData=UmlObjectData [id=364, uuid={C0098415-D52F-4c38-9D2D-A6B872F36F1B}, since=null, name=iec62351, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=362, _selfDependent=false, 2_taggedValues{objectBranchId=62351, objectIdentity=iec62351}, _childPackages=1] +2024-09-07 21:42:20,005 [main] TRACE PackageBuilder - read PackageBuilder [_kind=TOP, _containingPackage=iso, _depth=0, _eaElementID=981, _objData=UmlObjectData [id=363, uuid={92B28419-A0C7-4a2d-8D51-D7A95DF4FBF7}, since=null, name=standard, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=362, _selfDependent=false, 2_taggedValues{objectBranchId=0, objectIdentity=standard}, _childPackages=1] +2024-09-07 21:42:20,005 [main] TRACE PackageBuilder - read PackageBuilder [_kind=MODEL, _depth=-1, _eaElementID=980, _objData=UmlObjectData [id=362, uuid={3328AB0D-72D5-404d-9405-042619AAC66A}, since=null, name=iso, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=362, _selfDependent=false, _childPackages=1] +2024-09-07 21:42:20,006 [main] INFO Util - time=[0:00:24.629] read model from EA with iteration API +2024-09-07 21:42:20,006 [main] INFO Util - +2024-09-07 21:42:20,006 [main] INFO Util - +2024-09-07 21:42:20,006 [main] INFO Util - ------------------------------------------------ +2024-09-07 21:42:20,006 [main] INFO Util - linking builders... +2024-09-07 21:42:20,006 [main] INFO EaModelBuilder - assigning type to attributes ... +2024-09-07 21:42:20,007 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::BooleanValue, _objData=UmlObjectData [id=2987, uuid={AD4E7F12-52BE-4498-9D56-489F0D36E706}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Represents a boolean value.', htmlDescription='

Represents a boolean value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=636, _eaTypeName=TruthValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1e8b406]. +2024-09-07 21:42:20,007 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::BooleanValueTs, _objData=UmlObjectData [id=2915, uuid={3DFAA603-DD4F-4fb0-B38D-E41B9F5976AD}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-07 21:42:20,007 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::BooleanValueTs, _objData=UmlObjectData [id=2916, uuid={3EDE9EA6-FA52-457e-9F52-95B08337CC6C}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Represents a boolean value.', htmlDescription='

Represents a boolean value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=636, _eaTypeName=TruthValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1e8b406]. +2024-09-07 21:42:20,007 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::CounterTs, _objData=UmlObjectData [id=2921, uuid={41F902F6-723F-4b04-A87D-8CFABFCB21DE}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-07 21:42:20,007 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::CounterTs, _objData=UmlObjectData [id=2922, uuid={CD1BCCAD-7FF8-4fd1-A24D-07EEC8C393A6}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='According to SMI v2, used to specify a value which represents a count. The range is 0 to 4294967295.', htmlDescription='

According to SMI v2, used to specify a value which represents a count. The range is 0 to 4294967295.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=624, _eaTypeName=Counter32 , _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@13f2bb1]. +2024-09-07 21:42:20,007 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::CntRs, _objData=UmlObjectData [id=3004, uuid={CBFD6F89-8B72-4d52-BB3D-1F897706A12D}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-07 21:42:20,007 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::CntRs, _objData=UmlObjectData [id=3003, uuid={8CAFD2C5-0DE7-4308-93B7-D49D6E8065AD}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Boolean', htmlDescription='

Boolean

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=636, _eaTypeName=TruthValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1e8b406]. +2024-09-07 21:42:20,007 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::Floating, _objData=UmlObjectData [id=2937, uuid={C1ACEE33-E3BF-408c-AA52-21345E91BD5B}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='IEEE Standard for Floating-Point Arithmetic, Standard 754-2008', htmlDescription='

IEEE Standard for Floating-Point Arithmetic, Standard 754-2008

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=630, _eaTypeName=Float32TC, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@18a00e3]. +2024-09-07 21:42:20,007 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::FloatingTs, _objData=UmlObjectData [id=2939, uuid={DFBCD799-E7D8-4865-988A-FB02011B6B88}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-07 21:42:20,007 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::FloatingTs, _objData=UmlObjectData [id=2940, uuid={111399D4-DEC9-4f43-A8B9-0E3848228A09}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='IEEE Standard for Floating-Point Arithmetic, Standard 754-2008', htmlDescription='

IEEE Standard for Floating-Point Arithmetic, Standard 754-2008

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=630, _eaTypeName=Float32TC, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@18a00e3]. +2024-09-07 21:42:20,007 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::EntityIndex, _objData=UmlObjectData [id=3724, uuid={5A44C892-8691-42d1-B0D8-D8DE77225CA8}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Integer value 1..2147483647 index', htmlDescription='

Integer value 1..2147483647 index

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=968, _eaTypeName=Unsigned32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@178f375]. +2024-09-07 21:42:20,007 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::Integer, _objData=UmlObjectData [id=2928, uuid={A4296952-0928-44e2-8560-C6B0DC4466A7}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Integer value -2147483648..2147483647 (inclusive) according to SMI v2', htmlDescription='

Integer value -2147483648..2147483647 (inclusive) according to SMI v2

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=173, _eaTypeName=Integer32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1375618]. +2024-09-07 21:42:20,007 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::IntegerTs, _objData=UmlObjectData [id=2930, uuid={B1DF3BAC-B146-48d1-B242-E0EE779A9B56}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-07 21:42:20,007 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::IntegerTs, _objData=UmlObjectData [id=2931, uuid={D8B8C3AD-4B33-445e-9393-31D5B1982D4A}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Integer value -2147483648..2147483647 (inclusive) according to SMI v2', htmlDescription='

Integer value -2147483648..2147483647 (inclusive) according to SMI v2

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=173, _eaTypeName=Integer32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1375618]. +2024-09-07 21:42:20,007 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::InetAddress, _objData=UmlObjectData [id=3017, uuid={8A787CF9-BA07-4486-A4DF-1CF9BA7A3A41}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='A value that represents an Internet address according to IETF RFC 4001.', htmlDescription='

A value that represents an Internet address according to IETF RFC 4001.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=952, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@15be6bb]. +2024-09-07 21:42:20,008 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::InetAddressType, _objData=UmlObjectData [id=3690, uuid={117C0501-377C-4bf4-90D9-77F084F0628D}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Address Type', htmlDescription='

Address Type

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=954, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1fcfece]. +2024-09-07 21:42:20,008 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::MacAddress, _objData=UmlObjectData [id=3019, uuid={212F7F94-30C7-4296-9560-DDE128B43ABE}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='OCTET STRING (SIZE (6)), DISPLAY-HINT "1x:"', htmlDescription='

OCTET STRING (SIZE (6)), DISPLAY-HINT "1x:"

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=966, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@15eef3d]. +2024-09-07 21:42:20,008 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::Selector, _objData=UmlObjectData [id=3015, uuid={2B45785E-70C4-45d5-B68C-37E64794195C}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='For Transport Selector, max length is 8. For Session and Presentation Selector max length is 16.', htmlDescription='

For Transport Selector, max length is 8. For Session and Presentation Selector max length is 16.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=632, _eaTypeName=DisplayString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c4c815]. +2024-09-07 21:42:20,008 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::Timestamp, _objData=UmlObjectData [id=3083, uuid={1090CB92-2A2F-4fef-8659-3BD00578C467}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='The value of year is in network-byte order, fractions of second is as defined in RFC 5905, epoch is defined as Midnight January 1, 1970.', htmlDescription='

The value of year is in network-byte order, fractions of second is as defined in RFC 5905, epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-07 21:42:20,008 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::CharString, _objData=UmlObjectData [id=2989, uuid={E34DC27C-7282-4663-B1EF-D2B160F31A39}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Represents a String.', htmlDescription='

Represents a String.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=632, _eaTypeName=DisplayString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c4c815]. +2024-09-07 21:42:20,008 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::CharStringTs, _objData=UmlObjectData [id=3380, uuid={AF16BFAF-FF80-4499-9DAD-A58391568338}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-07 21:42:20,008 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::CharStringTs, _objData=UmlObjectData [id=3379, uuid={2E8EFCAA-307D-4001-97ED-98DC7A6FCC62}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Represents a String.', htmlDescription='

Represents a String.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=632, _eaTypeName=DisplayString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c4c815]. +2024-09-07 21:42:20,008 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::AppDatStType, _objData=UmlObjectData [id=2991, uuid={20C199C1-6505-4e87-AA5E-7761159CD7E3}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp.', htmlDescription='

Timestamp.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-07 21:42:20,008 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::AppDatStType, _objData=UmlObjectData [id=2992, uuid={A150447F-47CA-40a3-A3E4-20675ECB8425}, since=null, name=Value, alias=, stereotype=enum, visibility=public, txtDescription='AppDatStKind enumeration.', htmlDescription='

AppDatStKind enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=292, _eaTypeName=AppDatStKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@100a15d]. +2024-09-07 21:42:20,008 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::PhyHealthType, _objData=UmlObjectData [id=4116, uuid={BAC3158A-D258-496a-83A5-0E64DFD67679}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp.', htmlDescription='

Timestamp.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-07 21:42:20,008 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::PhyHealthType, _objData=UmlObjectData [id=4117, uuid={D2C2C044-39BB-4b98-BC2D-E3B53A97EDAE}, since=null, name=Value, alias=, stereotype=enum, visibility=public, txtDescription='PhyHealthKind enumeration.', htmlDescription='

PhyHealthKind enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1034, _eaTypeName=PhyHealthKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@34c75a]. +2024-09-07 21:42:20,008 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::ExtType, _objData=UmlObjectData [id=3367, uuid={1245D715-EBD7-4730-A6F9-04F33AE0CF28}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='ExtKind enumeration.', htmlDescription='

ExtKind enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=856, _eaTypeName=ExtKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@16a51ab]. +2024-09-07 21:42:20,008 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::IntType, _objData=UmlObjectData [id=3395, uuid={0A1710BD-B405-499c-8631-29D2BA1F37C0}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='IntKind enumeration', htmlDescription='

IntKind enumeration

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=864, _eaTypeName=IntKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@19a81e8]. +2024-09-07 21:42:20,008 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::EventType, _objData=UmlObjectData [id=3705, uuid={CF22855C-E347-4873-AD54-398449D71764}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp.', htmlDescription='

Timestamp.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-07 21:42:20,009 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::EventType, _objData=UmlObjectData [id=3704, uuid={B8CA2998-8D74-4277-B68D-01EC12299F89}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='EventKind enumeration.', htmlDescription='

EventKind enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=958, _eaTypeName=EventKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@15b5592]. +2024-09-07 21:42:20,009 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::PSPAccType, _objData=UmlObjectData [id=3378, uuid={2DC1C237-EFE6-4e97-A76B-58AA500A8F7B}, since=null, name=Timestamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp.', htmlDescription='

Timestamp.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-07 21:42:20,009 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::PSPAccType, _objData=UmlObjectData [id=3377, uuid={018C1C51-9C40-4e91-A95B-3878F4DD9BD9}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='PSPAccKind Enumeration.', htmlDescription='

PSPAccKind Enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=293, _eaTypeName=PSPAccKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@120ebad]. +2024-09-07 21:42:20,009 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::ProtIdType, _objData=UmlObjectData [id=3011, uuid={7F5D7A4B-5851-45b9-9F48-5C8F08A97218}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='ProtIdKind Enumeration.', htmlDescription='

ProtIdKind Enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=829, _eaTypeName=ProtIdKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@19f379]. +2024-09-07 21:42:20,009 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncIssueType, _objData=UmlObjectData [id=3006, uuid={A23195C8-D6B6-4033-B7CC-798A866B84FA}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='TimSyncIssueKind Enumeration.', htmlDescription='

TimSyncIssueKind Enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=113, _eaTypeName=TimSyncIssueKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@12cc05a]. +2024-09-07 21:42:20,009 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::SecurityProfileType, _objData=UmlObjectData [id=3929, uuid={62BF7B27-EFA1-466c-AED9-06307DBA6999}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='SecurityProfile Enumeration', htmlDescription='

SecurityProfile Enumeration

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1011, _eaTypeName=SecurityProfileKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8a9f61]. +2024-09-07 21:42:20,009 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcType, _objData=UmlObjectData [id=3008, uuid={7D7258A7-E193-49cd-AA63-6F1E9EECA15D}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='TimSyncSrcKind Enumeration', htmlDescription='

TimSyncSrcKind Enumeration

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=117, _eaTypeName=TimSyncSrcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@16905e]. +2024-09-07 21:42:20,009 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::LnkType, _objData=UmlObjectData [id=3010, uuid={9322D17D-875C-49ca-B9CF-0F43B6E41A52}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='LnkType Enumeration.', htmlDescription='

LnkType Enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=644, _eaTypeName=LnkKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@5ca609]. +2024-09-07 21:42:20,009 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2673, uuid={B7336AC3-3490-4d18-9C0A-633A3375B799}, since=null, name=AppDatSt, alias=, stereotype=health, visibility=public, txtDescription='Status of the environment where the device is operated (e.g. Power Supply, Physical Access)', htmlDescription='

Status of the environment where the device is operated (e.g. Power Supply, Physical Access)

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=766, _eaTypeName=AppDatStType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@16d4b5c, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,011 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=596, uuid={F437BD0A-FA9A-4244-BD21-213EDEE71F93}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Attribute that allows a reset of the statistical information.', htmlDescription='

Attribute that allows a reset of the statistical information.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,012 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=3707, uuid={CC877A95-C652-4fe2-AD1D-655296F78214}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,012 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2257, uuid={A7F35D26-4B23-4015-AD0D-EBEFA191D4F4}, since=null, name=PSPBld, alias=, stereotype=security, visibility=public, txtDescription='Building access occurred.', htmlDescription='

Building access occurred.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,012 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2255, uuid={AE5A5B25-3635-4d4e-BB6F-3F373B37D7F7}, since=null, name=PSPIed, alias=, stereotype=security, visibility=public, txtDescription='Indicates that direct access to the IED is in process.', htmlDescription='

Indicates that direct access to the IED is in process.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,012 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2256, uuid={B58DB9CE-5D6A-4836-8A52-322BC774BC87}, since=null, name=PSPPanel, alias=, stereotype=security, visibility=public, txtDescription='Indicates that panel access is occurring to the IED.', htmlDescription='

Indicates that panel access is occurring to the IED.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,012 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2258, uuid={5330F087-530C-45ed-97CC-9AAA63252BF8}, since=null, name=PSPPerimeter, alias=, stereotype=security, visibility=public, txtDescription='Physical perimeter access occurred (e.g. door open), where available.', htmlDescription='

Physical perimeter access occurred (e.g. door open), where available.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,012 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=152, uuid={77B56447-B1AC-4c57-B772-2A438F32F38B}, since=null, name=PSUP, alias=, stereotype=table, visibility=public, txtDescription='A list of power supply entries.', htmlDescription='

A list of power supply entries.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=616, _eaTypeName=PSUPEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@feb3fa, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,012 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2260, uuid={0ABF14FE-A7EB-447e-9066-271C644F8B1A}, since=null, name=PSUPLos, alias=, stereotype=health, visibility=public, txtDescription='Power supply table entry index of the last power supply that was detected as lost.', htmlDescription='

Power supply table entry index of the last power supply that was detected as lost.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,012 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2259, uuid={ECCB9B5A-C082-4a31-BCA7-B115A8600DA0}, since=null, name=PSUPOn, alias=, stereotype=health, visibility=public, txtDescription='Index of the power supply that was the last to come on.', htmlDescription='

Index of the power supply that was the last to come on.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,012 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=3622, uuid={96BB2987-191F-4e60-BCB6-102571495093}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=874, _eaTypeName=SecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@15d3402, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,012 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=3621, uuid={75ECAF5C-210D-48b8-90F9-82576506744C}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object.', htmlDescription='

State events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=903, _eaTypeName=Notification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1565ec2, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,013 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=4501, uuid={7FB27A25-45C1-42c1-9B72-BD8FC786A10A}, since=null, name=PSPRemote, alias=, stereotype=security, visibility=public, txtDescription='Indicates that a current remote access is occurring to the IED.', htmlDescription='

Indicates that a current remote access is occurring to the IED.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,013 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2663, uuid={82D58AB7-4A2D-4041-B53A-D00E492C6C11}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,013 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2671, uuid={6A6A7DC3-B5BB-4553-84C2-44318B449579}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the power supply.', htmlDescription='

Description of the power supply.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,013 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=3725, uuid={27FE83CA-F363-47cc-8B97-92F4711DDAAF}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='Id of the power supply.', htmlDescription='

Id of the power supply.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 21:42:20,013 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2670, uuid={40DB5D25-5E33-4ad3-BB26-D2E165FEBA1F}, since=null, name=Name, alias=, stereotype=identity, visibility=public, txtDescription='Name of the power supply.', htmlDescription='

Name of the power supply.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 21:42:20,013 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2669, uuid={87F74A2E-D615-4bb8-A54D-B421846C7542}, since=null, name=PSUPLos, alias=, stereotype=health, visibility=public, txtDescription='Timestamp of the last detected power loss.', htmlDescription='

Timestamp of the last detected power loss.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,013 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2661, uuid={3F81B85E-2C71-4d22-8767-ADB07D4305CC}, since=null, name=PwrLosCnt, alias=, stereotype=health, visibility=public, txtDescription='Attribute that provides a count of number power losses. Power loss indicates primary supply power loss not shutdown.', htmlDescription='

Attribute that provides a count of number power losses. Power loss indicates primary supply power loss not shutdown.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,013 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2728, uuid={0A17570B-860F-49a1-8208-A78149EDC279}, since=null, name=PwrOn, alias=, stereotype=health, visibility=public, txtDescription='Indicates if the power supply state is currently on and operating appropriately.', htmlDescription='

Indicates if the power supply state is currently on and operating appropriately.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,013 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Notification, _objData=UmlObjectData [id=3463, uuid={99A52BA7-C37A-4d5a-9AF2-69F868DCA056}, since=null, name=PSUPLos, alias=, stereotype=health, visibility=public, txtDescription='Power supply Table Entry Index of the last power supply that was detected as lost.', htmlDescription='

Power supply Table Entry Index of the last power supply that was detected as lost.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e]. +2024-09-07 21:42:20,013 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Notification, _objData=UmlObjectData [id=3462, uuid={CF8ECE95-A139-4efa-B7E5-5EBCC29D609C}, since=null, name=PSUPOn, alias=, stereotype=health, visibility=public, txtDescription='Index of the power supply that was the last to come on.', htmlDescription='

Index of the power supply that was the last to come on.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2]. +2024-09-07 21:42:20,013 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=4039, uuid={F551C4F9-AD27-4ef4-B8FA-5DBAC7238912}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,014 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=3432, uuid={04CE81A5-8629-43c0-8F3E-D93C55B63D0B}, since=null, name=PSPBld, alias=, stereotype=security, visibility=public, txtDescription='Building Access occurred.', htmlDescription='

Building Access occurred.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@fc185]. +2024-09-07 21:42:20,014 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=3430, uuid={8AA6C984-EF4B-41bb-B433-665F0793B107}, since=null, name=PSPIed, alias=, stereotype=security, visibility=public, txtDescription='Indicates that direct access to the IED is in process.', htmlDescription='

Indicates that direct access to the IED is in process.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@fc185]. +2024-09-07 21:42:20,014 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=3431, uuid={CBC52337-714E-4296-BD4F-B152E72DF029}, since=null, name=PSPPanel, alias=, stereotype=security, visibility=public, txtDescription='Indicates that panel access is occurring to the IED.', htmlDescription='

Indicates that panel access is occurring to the IED.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@fc185]. +2024-09-07 21:42:20,014 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=3433, uuid={165E406E-AC48-43d3-A163-7401119B36B9}, since=null, name=PSPPerimeter, alias=, stereotype=security, visibility=public, txtDescription='Perimeter Access occurred.', htmlDescription='

Perimeter Access occurred.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@fc185]. +2024-09-07 21:42:20,014 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=159, uuid={1405DC0D-6A4E-4f7e-AF8C-5E21E5C79F3C}, since=null, name=AtkCnt, alias=, stereotype=security, visibility=public, txtDescription='Attribute that provides the number of cyber- attacks that have been detected.', htmlDescription='

Attribute that provides the number of cyber- attacks that have been detected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,014 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=593, uuid={D7F266B3-90FC-434c-850B-A67888D5FF8C}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,014 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3365, uuid={4F170B51-C2F3-496d-A921-71158D5FAAD4}, since=null, name=ConfigurationCRC, alias=, stereotype=identity, visibility=public, txtDescription='CRC of the last update.', htmlDescription='

CRC of the last update.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,014 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3364, uuid={70C845C3-72FA-4ee2-8C82-B541DEA6F1A6}, since=null, name=ConfigurationVersion, alias=, stereotype=identity, visibility=public, txtDescription='Version of the last uploaded configuration.', htmlDescription='

Version of the last uploaded configuration.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f5e5e3, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,014 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3264, uuid={B2181BC5-C543-4352-AF8C-CF45A0CC6715}, since=null, name=CPU, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of CPU inside the IED.', htmlDescription='

This entry defer to possible multiple instances of CPU inside the IED.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=832, _eaTypeName=CPUEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@193948d, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,014 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=164, uuid={27E657EB-F5E0-46ac-9D03-B88771E3C03E}, since=null, name=CpuUsage, alias=, stereotype=health, visibility=public, txtDescription='Provides an attribute that indicates the percentage of processing resources that is in use. Range is 0 to 100', htmlDescription='

Provides an attribute that indicates the percentage of processing resources that is in use. Range is 0 to 100

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,014 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=165, uuid={331F6C40-DC4F-47e4-A1E7-D03E91A9BAB7}, since=null, name=DataInv, alias=, stereotype=security, visibility=public, txtDescription='Provides a count of the number of attempts to write invalid data, for instance out-of-range data.', htmlDescription='

Provides a count of the number of attempts to write invalid data, for instance out-of-range data.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,014 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=1904, uuid={6044B2D8-9605-461e-A2D5-AF9EF801D394}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='This entry provides a textual description of the IED.', htmlDescription='

This entry provides a textual description of the IED.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,014 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=174, uuid={84B44E91-B83B-48bc-95EB-FCE87A7F7BC1}, since=null, name=ExpCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of expired certificates that are in the certificate storage configured for local use.', htmlDescription='

Indicates the number of expired certificates that are in the certificate storage configured for local use.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,014 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3332, uuid={609144A0-BD56-43ff-AEA6-E96829144EC8}, since=null, name=EXT, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of extension modules inside the IED.', htmlDescription='

This entry defer to possible multiple instances of extension modules inside the IED.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=850, _eaTypeName=EXTEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1604f19, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,014 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3357, uuid={40D5B796-07CF-4261-BF72-7AC36DC3E5C5}, since=null, name=FirmwareVersion, alias=, stereotype=identity, visibility=public, txtDescription='Version of the last uploaded Firmware. Timestamp refers to upload time.', htmlDescription='

Version of the last uploaded Firmware. Timestamp refers to upload time.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f5e5e3, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,014 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=1908, uuid={6FD1E9BC-3801-4721-BC75-1500D754A5F4}, since=null, name=InternalTemp, alias=, stereotype=health, visibility=public, txtDescription='Degree Centigrade measurement of the internal IED Temperature.', htmlDescription='

Degree Centigrade measurement of the internal IED Temperature.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,014 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3493, uuid={A2E2F01C-9202-4d14-B2FC-EE99FA25D64D}, since=null, name=LastCPUFail, alias=, stereotype=health, visibility=public, txtDescription='Index of last failing CPU.', htmlDescription='

Index of last failing CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,014 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3706, uuid={21041DB8-C542-4137-AADE-3D1E8DD5E1D5}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,014 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3494, uuid={7A6C77E3-9BB2-4834-8C72-DAE268A5A789}, since=null, name=LastEXTFail, alias=, stereotype=health, visibility=public, txtDescription='Index of last failing Extension.', htmlDescription='

Index of last failing Extension.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,014 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3492, uuid={4ACA1571-DB99-4447-9A06-033F9EE4348B}, since=null, name=LastSTOREFail, alias=, stereotype=health, visibility=public, txtDescription='Index of last failing Storage.', htmlDescription='

Index of last failing Storage.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,015 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3256, uuid={A9D75A03-5288-48d7-BA55-09F388369D28}, since=null, name=Location, alias=, stereotype=identity, visibility=public, txtDescription='Physical Installation coordinates (geographical and plant location).', htmlDescription='

Physical Installation coordinates (geographical and plant location).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,015 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3257, uuid={B4CF9E53-369A-47de-B31C-9255617C59E5}, since=null, name=Maintainer, alias=, stereotype=identity, visibility=public, txtDescription='Organizational reference for device maintenance.', htmlDescription='

Organizational reference for device maintenance.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,015 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3388, uuid={B008E2FB-21B8-4e33-B720-B440E4B1F49D}, since=null, name=MemTotal, alias=, stereotype=health, visibility=public, txtDescription='Provides an attribute that report the total RAM available in KBytes.', htmlDescription='

Provides an attribute that report the total RAM available in KBytes.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,015 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=1910, uuid={F6C9C372-CCF6-49b4-B39B-B7C633D0987A}, since=null, name=MemUsage, alias=, stereotype=health, visibility=public, txtDescription='Provides an attribute that indicates the percentage of memory that is in use.Range is 0 to 100.', htmlDescription='

Provides an attribute that indicates the percentage of memory that is in use.Range is 0 to 100.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,015 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3255, uuid={E81796A9-2AC8-45d5-A00C-A8FF43E2E704}, since=null, name=MIBVersion, alias=, stereotype=identity, visibility=public, txtDescription='Version of the Management Information Base.', htmlDescription='

Version of the Management Information Base.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,015 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=167, uuid={E0D67C9A-2A09-4694-B58C-55AB9281E1BA}, since=null, name=MisEvCnt, alias=, stereotype=health, visibility=public, txtDescription='Provides an attribute that represents the count of missed events or data.', htmlDescription='

Provides an attribute that represents the count of missed events or data.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,015 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=1913, uuid={FBF2BE7D-376E-477d-BEA6-8FBF4467B076}, since=null, name=Name, alias=, stereotype=identity, visibility=public, txtDescription='Name of IED.', htmlDescription='

Name of IED.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,015 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3718, uuid={472EB367-3A8B-4a9a-82E6-AD7C1825366F}, since=null, name=NearToExpCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of certificates in the certificate storage configured for local use that have exceeded the 70% of validity period.', htmlDescription='

Indicates the number of certificates in the certificate storage configured for local use that have exceeded the 70% of validity period.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,015 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=177, uuid={813425EE-45D4-449f-A1BA-5E8BDECC6309}, since=null, name=NvStore, alias=, stereotype=health, visibility=public, txtDescription='Indicates the global number of kilobytes of storage allocated for local use in all storage areas.', htmlDescription='

Indicates the global number of kilobytes of storage allocated for local use in all storage areas.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,015 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=178, uuid={82009203-F55E-466e-9B62-1933D717E9E0}, since=null, name=NvStoreRem, alias=, stereotype=health, visibility=public, txtDescription='Indicates the percentage of NvStore available for storage.', htmlDescription='

Indicates the percentage of NvStore available for storage.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,015 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=157, uuid={BE9FD31C-2E94-434f-8D2A-69F9BBC26FFD}, since=null, name=PhyHealth, alias=, stereotype=health, visibility=public, txtDescription='General health status of IED hardware and software.', htmlDescription='

General health status of IED hardware and software.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1036, _eaTypeName=PhyHealthType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1efea79, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,015 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=158, uuid={D980F3DA-CEDB-4402-837B-C8480047FB4F}, since=null, name=PhyHealthChgCnt, alias=, stereotype=health, visibility=public, txtDescription='Provides a count of the number of transitions state of PhyHealth Attribute.', htmlDescription='

Provides a count of the number of transitions state of PhyHealth Attribute.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,015 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3437, uuid={DF896F75-F02E-4195-9E06-0E9BB719136B}, since=null, name=RBACDbUpdate, alias=, stereotype=security, visibility=public, txtDescription='Version of the last uploaded RBAC Database.', htmlDescription='

Version of the last uploaded RBAC Database.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f5e5e3, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,015 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=176, uuid={BF4C520F-2A9F-434f-A442-25072A5C8B6B}, since=null, name=RevCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of revoked certificates that are still configured for local use.', htmlDescription='

Indicates the number of revoked certificates that are still configured for local use.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,015 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3479, uuid={8DA6CCEB-ED0C-41ec-B476-C7F33C86B499}, since=null, name=RevCheckFail, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number revocation check failures.', htmlDescription='

Indicates the number revocation check failures.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,015 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3620, uuid={93F9F190-837F-4def-9AE7-693E1E609256}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=912, _eaTypeName=SecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@23a2f9, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,015 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3619, uuid={167D9C3F-D113-4dd9-8CD1-62228F439DF9}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object.', htmlDescription='

State events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=911, _eaTypeName=Notification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c0edeb, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,015 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3387, uuid={2CF43DE1-E31F-4743-B645-CC6617CC65E9}, since=null, name=STORE, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of storage modules inside the IED.', htmlDescription='

This entry defer to possible multiple instances of storage modules inside the IED.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=862, _eaTypeName=STOREEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@17e2f02, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,015 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=4118, uuid={A000D652-2899-4b1e-A269-5B0E74D9612D}, since=null, name=SvcViol, alias=, stereotype=security, visibility=public, txtDescription='Number of service privilege violations (i.e., when the data object that the client wanted to access exists in the access view for the association with that client, but the requested service is not allowed).', htmlDescription='

Number of service privilege violations (i.e., when the data object that the client wanted to access exists in the access view for the association with that client, but the requested service is not allowed).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,016 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3964, uuid={8C00B0E5-5F91-4e94-AAA3-B08EFBB15D6C}, since=null, name=Watchdog, alias=, stereotype=health, visibility=public, txtDescription='This attribute report the count of Watchdog intervention on any component of the IED.', htmlDescription='

This attribute report the count of Watchdog intervention on any component of the IED.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,016 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=2217, uuid={FA50F248-F688-4b0f-B343-E8626A859677}, since=null, name=WrmStrCnt, alias=, stereotype=health, visibility=public, txtDescription='Number of warm starts detected.', htmlDescription='

Number of warm starts detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,016 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3261, uuid={F7E2552A-9E40-4498-9B35-80E4DC7388F3}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,016 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3260, uuid={2A8CCA5F-B153-4fa8-8801-52859B51BF8A}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the CPU.', htmlDescription='

Description of the CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,016 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3262, uuid={6C624EF6-19CC-45c7-8B22-52C6EB105C3F}, since=null, name=Faulty, alias=, stereotype=health, visibility=public, txtDescription='CPU generated errors.', htmlDescription='

CPU generated errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,016 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3259, uuid={18120B8F-8761-4f72-A364-9015D0229D9F}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='CPU number.', htmlDescription='

CPU number.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 21:42:20,016 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3258, uuid={5BACDAAA-B8BD-4635-B1F3-7E2C4CB93292}, since=null, name=Online, alias=, stereotype=health, visibility=public, txtDescription='Indicate that CPU is online and active.', htmlDescription='

Indicate that CPU is online and active.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,016 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3263, uuid={404E8337-84BD-4e87-888C-BC40C8FDFD3D}, since=null, name=Operable, alias=, stereotype=health, visibility=public, txtDescription='Indicates that CPU is operable (it can be either online or offline).', htmlDescription='

Indicates that CPU is operable (it can be either online or offline).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,016 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3389, uuid={D6BA8CB3-C883-4924-9F0F-3E0D3BF3FE2D}, since=null, name=Temperature, alias=, stereotype=health, visibility=public, txtDescription='Temperature of this CPU.', htmlDescription='

Temperature of this CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,016 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3965, uuid={2C004DAE-5C35-4b32-8046-95848FB39988}, since=null, name=Watchdog, alias=, stereotype=health, visibility=public, txtDescription='This attribute report the count of Watchdog intervention on this CPU.', htmlDescription='

This attribute report the count of Watchdog intervention on this CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,016 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3334, uuid={5449D06F-D84C-4247-BFF2-855283FE546B}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='Software PLC ID.', htmlDescription='

Software PLC ID.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 21:42:20,016 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3335, uuid={1FA00718-1A03-4856-BE17-E4C968E2303B}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the Software PLC.', htmlDescription='

Description of the Software PLC.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,016 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3366, uuid={26FC08E1-AE06-447a-A63C-A464EF3B6C5A}, since=null, name=ExtensionType, alias=, stereotype=identity, visibility=public, txtDescription='This attribute defines the type of the extension module.', htmlDescription='

This attribute defines the type of the extension module.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=854, _eaTypeName=ExtType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1081592, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,016 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3416, uuid={25484747-00E6-4e15-9F70-84DADE0F1C1C}, since=null, name=CodeVersion, alias=, stereotype=identity, visibility=public, txtDescription='Version of the last uploaded code.', htmlDescription='

Version of the last uploaded code.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f5e5e3, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,016 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3338, uuid={582D62C0-D628-4ccb-8BBD-32D4EE3B63BD}, since=null, name=Running, alias=, stereotype=health, visibility=public, txtDescription='Indicates that CPU is operable (it can be either online or offline).', htmlDescription='

Indicates that CPU is operable (it can be either online or offline).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,017 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3390, uuid={4838CC42-4D04-48d4-B5E0-73AC845722FF}, since=null, name=Temperature, alias=, stereotype=health, visibility=public, txtDescription='Temperature of this extension.', htmlDescription='

Temperature of this extension.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,017 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3333, uuid={884C8693-44E5-4b48-BBA4-E016ABF8B3C1}, since=null, name=Watchdog, alias=, stereotype=health, visibility=public, txtDescription='This attribute report the count of Watchdog intervention on this IED extension (e.g. software PLC).', htmlDescription='

This attribute report the count of Watchdog intervention on this IED extension (e.g. software PLC).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,017 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3337, uuid={A88DDBF9-7D12-4096-A713-D46EF92F2788}, since=null, name=Errors, alias=, stereotype=health, visibility=public, txtDescription='This attribute reports the PLC software detected errors.', htmlDescription='

This attribute reports the PLC software detected errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,017 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3336, uuid={A600A488-A1C0-4de3-BA57-148F100FC3F6}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,017 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3382, uuid={51E473C6-FD18-455e-AED3-59F394443C8D}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='Storage area ID number.', htmlDescription='

Storage area ID number.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 21:42:20,017 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3383, uuid={064A1F24-744B-46ad-AD7C-A95961E97B13}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the storage area.', htmlDescription='

Description of the storage area.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,017 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3386, uuid={F81C3EA0-A881-4cf8-981C-6AAA51137320}, since=null, name=NvStore, alias=, stereotype=health, visibility=public, txtDescription='Indicates the amount of storage.', htmlDescription='

Indicates the amount of storage.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,018 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3381, uuid={9C3D8C6F-12FE-4f73-AF1F-DE108934866D}, since=null, name=NvStoreRem, alias=, stereotype=health, visibility=public, txtDescription='Indicate remaining storage in this area.', htmlDescription='

Indicate remaining storage in this area.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,018 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3385, uuid={D8309CF9-DAF0-4ee7-A381-888D751BA0AA}, since=null, name=Faulty, alias=, stereotype=health, visibility=public, txtDescription='Storage area fault generated errors.', htmlDescription='

Storage area fault generated errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,019 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3732, uuid={39256EA1-992F-4aca-AF28-01BF33E5DF73}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,019 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3486, uuid={B5FF53A1-E8B9-46ec-BE1B-75F6EC7C48F5}, since=null, name=PhyHealthChgCnt, alias=, stereotype=health, visibility=public, txtDescription='Provides a count of the number of transitions state of PhyHealth Attribute.', htmlDescription='

Provides a count of the number of transitions state of PhyHealth Attribute.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,019 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3497, uuid={C24EC3BA-E07C-4a47-9FC1-D975C6DF5FA9}, since=null, name=InternalTemp, alias=, stereotype=health, visibility=public, txtDescription='Degree Centigrade measurement of the internal IED Temperature.', htmlDescription='

Degree Centigrade measurement of the internal IED Temperature.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,019 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3495, uuid={11B98054-C537-42a0-938C-380F69A2A3F5}, since=null, name=NvStore, alias=, stereotype=health, visibility=public, txtDescription='Indicates the global number of kilobytes of storage allocated for local use in all storage areas.', htmlDescription='

Indicates the global number of kilobytes of storage allocated for local use in all storage areas.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,019 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3496, uuid={5E3EA7C8-15A7-42f6-9FBC-0C995489AB43}, since=null, name=NvStoreRem, alias=, stereotype=health, visibility=public, txtDescription='Indicates the percentage of NvStore available for storage.', htmlDescription='

Indicates the percentage of NvStore available for storage.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,019 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3480, uuid={8334F7D0-DA9C-4f85-8A96-1ACB87744C5B}, since=null, name=PhyHealth, alias=, stereotype=health, visibility=public, txtDescription='General health status of IED hardware and software.', htmlDescription='

General health status of IED hardware and software.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1036, _eaTypeName=PhyHealthType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1efea79, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,019 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3489, uuid={37E2129D-71C5-4030-8530-00D04FA20DDF}, since=null, name=WrmStrCnt, alias=, stereotype=health, visibility=public, txtDescription='Number of warm starts detected.', htmlDescription='

Number of warm starts detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,019 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3502, uuid={E2312704-4F51-465e-8B02-4DFC37D2286B}, since=null, name=AtkCnt, alias=, stereotype=security, visibility=public, txtDescription='Attribute that provides the number of cyber- attacks that have been detected.', htmlDescription='

Attribute that provides the number of cyber- attacks that have been detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,019 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3499, uuid={7B741BD7-BDA8-4148-BDA0-6667E98C3102}, since=null, name=ExpCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of expired certificates that are in the certificate storage configured for local use.', htmlDescription='

Indicates the number of expired certificates that are in the certificate storage configured for local use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,019 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3730, uuid={7029DE89-300D-43cb-B94F-49317EE26061}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,019 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3731, uuid={554C03A1-C7D0-43ea-8541-46609B5191C2}, since=null, name=NearToExpCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of certificates in the certificate storage configured for local use that have exceeded the 70% of validity period.', htmlDescription='

Indicates the number of certificates in the certificate storage configured for local use that have exceeded the 70% of validity period.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,020 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3498, uuid={16D2AFD2-62AE-4dfe-BA94-32B996B33302}, since=null, name=RevCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of revoked certificates that are still configured for local use.', htmlDescription='

Indicates the number of revoked certificates that are still configured for local use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,020 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3500, uuid={406910CA-F346-4649-99A2-5A215611BD7D}, since=null, name=RevCheckFail, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number revocation check failures.', htmlDescription='

Indicates the number revocation check failures.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,020 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4079, uuid={CCA64890-32AD-4a39-BD2E-B115DB6259D5}, since=null, name=IEC62351part3, alias=, stereotype=security, visibility=public, txtDescription='True is security profile in use for this association (IEC 62351-3).', htmlDescription='

True is security profile in use for this association (IEC 62351-3).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@756e4d, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,020 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4087, uuid={0CDF636C-287B-44bf-AF3B-83CBAEB3791B}, since=null, name=Part3ConnectionId, alias=, stereotype=protocol, visibility=public, txtDescription='IEC 62351-3 Transport layer connection id in use for this Association. Meaningful only if IEC62351Part3 is true.', htmlDescription='

IEC 62351-3 Transport layer connection id in use for this Association. Meaningful only if IEC62351Part3 is true.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,020 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4099, uuid={18DFBDB7-B849-4a22-AEBA-4B62D877531D}, since=null, name=TCPHndShTime, alias=, stereotype=performance, visibility=public, txtDescription='Duration of the TCP handshake. Only applicable when the when the application layer has access to the TLS layer.', htmlDescription='

Duration of the TCP handshake. Only applicable when the when the application layer has access to the TLS layer.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,021 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4107, uuid={A9F9F05C-681E-480a-B663-D8EB1E1FE300}, since=null, name=TLSHndTime, alias=, stereotype=performance, visibility=public, txtDescription='TLS Handshake time. Only applicable when the when the application layer has access to the TLS layer.', htmlDescription='

TLS Handshake time. Only applicable when the when the application layer has access to the TLS layer.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,021 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4109, uuid={F7CBA04D-7FEA-47c7-A560-EA06B30C3056}, since=null, name=TLSRenegotiationTime, alias=, stereotype=performance, visibility=public, txtDescription='TLS Renegotiation time. Only applicable when the when the application layer has access to the TLS layer.', htmlDescription='

TLS Renegotiation time. Only applicable when the when the application layer has access to the TLS layer.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,021 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4108, uuid={CBC69A2E-FFEA-4612-9907-B3E519FB4E3F}, since=null, name=TLSResumptionTime, alias=, stereotype=performance, visibility=public, txtDescription='TLS Resumption time. Only applicable when the when the application layer has access to the TLS layer.', htmlDescription='

TLS Resumption time. Only applicable when the when the application layer has access to the TLS layer.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,021 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4106, uuid={EF9560F0-0EC3-4417-883D-96C32AE7803C}, since=null, name=TotalHndTime, alias=, stereotype=performance, visibility=public, txtDescription='Transport + Application Handshake time.', htmlDescription='

Transport + Application Handshake time.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,021 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4105, uuid={BCBEF3C5-946E-42cf-8D1D-CAAC2679E795}, since=null, name=TransportHndTime, alias=, stereotype=performance, visibility=public, txtDescription='Transport layer handshake time. It is equal to TCPHndTime if IEC62351part3 is false, it is equal to TCPHndTime + TLSHndTime if IEC62351part3 is true.', htmlDescription='

Transport layer handshake time. It is equal to TCPHndTime if IEC62351part3 is false, it is equal to TCPHndTime + TLSHndTime if IEC62351part3 is true.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,021 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4460, uuid={7510EED9-2C7E-480d-BD60-571DDC732128}, since=null, name=tlsEarlyDataCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: counts early data in handshake detected but neglected.', htmlDescription='

TLSv1.3: counts early data in handshake detected but neglected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,021 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4454, uuid={4FA3487F-4B3B-477e-99E8-2F5D24C013EF}, since=null, name=tlsDisallowedCipherCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts disallowed cipher suite proposed.', htmlDescription='

Counts disallowed cipher suite proposed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,021 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4461, uuid={F6A6964F-1010-4fc3-9112-0BBBF8244593}, since=null, name=tlsCertSizeMismatchCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts occurrences of endpoint certificate size exceeds limits', htmlDescription='

Counts occurrences of endpoint certificate size exceeds limits

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,021 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4463, uuid={89576E04-2176-4454-8207-BA0A305B9547}, since=null, name=tlsNoCaMatchCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts events of matching RootCA certificate for endpoint certificate validation not available.', htmlDescription='

Counts events of matching RootCA certificate for endpoint certificate validation not available.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,021 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4464, uuid={E1FBC1A2-6D0C-437e-95D2-873497AF44C6}, since=null, name=tlsNoSigAlgoExtCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: Counts events of no signature-algorithm extension included. Fallback to deprecated signature algorithm', htmlDescription='

TLSv1.2: Counts events of no signature-algorithm extension included. Fallback to deprecated signature algorithm

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,021 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4465, uuid={0A95DFE0-8624-4b8a-814E-A12605F19B07}, since=null, name=tlsDepDigAlgCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: Deprecated signature algorithm combination detected counter.', htmlDescription='

TLSv1.2: Deprecated signature algorithm combination detected counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,022 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4466, uuid={B68E613E-EEC5-4696-A841-9EE87D237582}, since=null, name=tlsNoTrustedCertMatchCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times Endpoint certificate not in certificate trust list', htmlDescription='

Counts the times Endpoint certificate not in certificate trust list

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,022 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4467, uuid={614E4EB0-BAA2-4b19-B00A-EA1FF0D8A3BD}, since=null, name=tlsCertRevokedCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times when endpoint certificate not in certificate trust list', htmlDescription='

Counts the times when endpoint certificate not in certificate trust list

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,022 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4468, uuid={1E2A987C-A48F-4eb7-A3BA-2C77F4A68216}, since=null, name=tlsNoCrlCnt, alias=, stereotype=security, visibility=public, txtDescription='Local CRL not accessible counter.', htmlDescription='

Local CRL not accessible counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,022 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4469, uuid={4A915807-5D1C-40af-9AA5-A745061F5DED}, since=null, name=tlsCrlExpCnt, alias=, stereotype=security, visibility=public, txtDescription='CRL expired.counter.', htmlDescription='

CRL expired.counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,022 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4470, uuid={AE06F05B-3CA8-44d1-9A20-5F4997A319FF}, since=null, name=tlsNoEpskModeCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: no support for encrypt-then-MAC counter', htmlDescription='

TLSv1.2: no support for encrypt-then-MAC counter

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,022 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4471, uuid={3E766604-E835-4b5a-A853-08A031D9FE22}, since=null, name=tlsNoEncryptThenMacCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: support of non-ephemeral PSK mode only counter.', htmlDescription='

TLSv1.3: support of non-ephemeral PSK mode only counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,022 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4472, uuid={C8F076B9-538C-423c-BC24-3756EAB54AEE}, since=null, name=tlsOcspResExpCnt, alias=, stereotype=security, visibility=public, txtDescription='OCSP response expired counter.', htmlDescription='

OCSP response expired counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,022 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4473, uuid={808D4C4A-240F-40a2-A84B-7EB7FAF41461}, since=null, name=tlsCertExpCnt, alias=, stereotype=security, visibility=public, txtDescription='Endpoint certificate expired counter.', htmlDescription='

Endpoint certificate expired counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,022 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4474, uuid={03D6BEA0-3F60-4e5b-BB2A-9126ABD1750F}, since=null, name=tlsNoSkUpdateCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: Peer does not perform session key update counter.', htmlDescription='

TLSv1.3: Peer does not perform session key update counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,022 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4475, uuid={264129C9-891C-4677-A001-B283CE215402}, since=null, name=tlsSigAlgMismatchCnt, alias=, stereotype=security, visibility=public, txtDescription='Signature algorithms in received endpoint certificate not supported counter.', htmlDescription='

Signature algorithms in received endpoint certificate not supported counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,022 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4476, uuid={A460A30B-5686-4f92-AFDC-C53C056A3309}, since=null, name=tlsSigVFailedCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times certificate signature could not be verified.', htmlDescription='

Counts the times certificate signature could not be verified.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,022 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4477, uuid={0FF962F9-BFB0-4683-96B5-09E38C57E324}, since=null, name=tlsShortRsaKeyCnt, alias=, stereotype=security, visibility=public, txtDescription='RSA key with key length of less than 2048 bit detected counter.', htmlDescription='

RSA key with key length of less than 2048 bit detected counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,023 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4478, uuid={39629ED0-372D-4c6f-B89B-4C13BA7374C6}, since=null, name=tlsMinKeyCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times RSA key with minimum key length of 1024 bit detected and allowed by configuration', htmlDescription='

Counts the times RSA key with minimum key length of 1024 bit detected and allowed by configuration

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,023 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4479, uuid={947A8F86-CF55-46c2-B517-3D4FA76FBA27}, since=null, name=tlsShortKeyCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times RSA key with insufficient key length (less than 1024 bit) detected..', htmlDescription='

Counts the times RSA key with insufficient key length (less than 1024 bit) detected..

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,023 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4480, uuid={560E07AC-D31D-4807-B518-20E83C9DD1A3}, since=null, name=tlsDepHashCnt, alias=, stereotype=security, visibility=public, txtDescription='Use of deprecated hash algorithm detected counter', htmlDescription='

Use of deprecated hash algorithm detected counter

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,023 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4462, uuid={6EDD77BB-4D13-4937-96A5-231A8441C74A}, since=null, name=tlsNoTrCaMatchSCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: No support of peer signalled trusted CA counter.', htmlDescription='

TLSv1.3: No support of peer signalled trusted CA counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,023 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4455, uuid={15470B2B-1EDC-41c5-AD3A-2E3583BF3A65}, since=null, name=tlsSessionidExpiredFullHsCnt, alias=, stereotype=security, visibility=public, txtDescription='Counter of sessionID expired, Resumption not possible, full TLS handshake done.', htmlDescription='

Counter of sessionID expired, Resumption not possible, full TLS handshake done.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,023 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4458, uuid={2B104C3D-3F3F-4c1a-812A-DC170DBA1CA2}, since=null, name=tlsNoRenegTicket, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: Number of times peer does not use secure renegotiation (session tickets) capability in renegotiated handshake.', htmlDescription='

TLSv1.2: Number of times peer does not use secure renegotiation (session tickets) capability in renegotiated handshake.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,023 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4457, uuid={D1BA2BD4-A79C-4617-9538-493A2956FC91}, since=null, name=tlsNoRenegSigCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: Number of times peer does not signal secure renegotiation support (session tickets) in initial handshake.', htmlDescription='

TLSv1.2: Number of times peer does not signal secure renegotiation support (session tickets) in initial handshake.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,023 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4453, uuid={E290CB99-A7B9-4ee1-AC49-29234D78A42C}, since=null, name=tlsSessionClosedRevCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the TLS session closure due to received revoked endpoint certificate.', htmlDescription='

Counts the TLS session closure due to received revoked endpoint certificate.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,023 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4459, uuid={854B3699-1B9D-4f64-B8B6-56CB2FD90FBB}, since=null, name=tlsNoTrCaMatchScCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: No support of peer signalled trusted CA counter.', htmlDescription='

TLSv1.3: No support of peer signalled trusted CA counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,023 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4450, uuid={8D2D94D8-3C6F-4bda-878C-F54D750FFD27}, since=null, name=tlsHsSuccessCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the TLS session successfully established.', htmlDescription='

Counts the TLS session successfully established.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,023 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4456, uuid={D19394DC-2DE1-403e-9C38-01EE35A0DDFD}, since=null, name=tlsNoReneg, alias=, stereotype=security, visibility=public, txtDescription='Number of times renegotiation interval is exceeded. TLSv1.2 peer does not renegotiate.', htmlDescription='

Number of times renegotiation interval is exceeded. TLSv1.2 peer does not renegotiate.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,023 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4452, uuid={B1BA2AF1-A523-4ca2-979A-38272AF41E2B}, since=null, name=tlsNoLocalCertCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times local endpoint certificate is not available.', htmlDescription='

Number of times local endpoint certificate is not available.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,024 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4447, uuid={3D255C0C-5B4C-4589-A304-5D6FAF7E69A2}, since=null, name=tlsWeakVersionCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times when deprecated TLS version proposed and support of TLS versions prior to TLSv1.2 enabled', htmlDescription='

Counts the times when deprecated TLS version proposed and support of TLS versions prior to TLSv1.2 enabled

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,024 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4449, uuid={4B8CCA5B-77FF-4b70-98D5-168DA947FE99}, since=null, name=tlsVersionChangeCnt, alias=, stereotype=security, visibility=public, txtDescription='Count the TLS version change (potential downgrade) in ongoing session detected.', htmlDescription='

Count the TLS version change (potential downgrade) in ongoing session detected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,024 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4446, uuid={C75A400F-5B38-4bc5-BE6A-48FB4977B686}, since=null, name=tlsDeprecatedVersionCnT, alias=, stereotype=security, visibility=public, txtDescription='Counts the times when a deprecated TLS version is proposed and support of TLS versions prior to TLSv1.2 is disabled.', htmlDescription='

Counts the times when a deprecated TLS version is proposed and support of TLS versions prior to TLSv1.2 is disabled.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,024 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4451, uuid={ACB5D4CD-DBF9-4e86-892D-469DB0082C7E}, since=null, name=tlsNoPeerCertCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times peer did not provide endpoint certificate during the TLS handshake.', htmlDescription='

Number of times peer did not provide endpoint certificate during the TLS handshake.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,024 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4448, uuid={A02762E7-1235-453b-8BB2-6D4E8F705EA1}, since=null, name=tlsDisallowedVersionCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times when disallowed TLS version (prior to TLSv1.0) proposed', htmlDescription='

Counts the times when disallowed TLS version (prior to TLSv1.0) proposed

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,024 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4488, uuid={851472EB-C0E1-4464-B067-F650659846CF}, since=null, name=SessionId, alias=, stereotype=index, visibility=public, txtDescription='Id of the TLS session.', htmlDescription='

Id of the TLS session.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 2_taggedValues{mibindex=yes, Version=1}]. +2024-09-07 21:42:20,024 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4489, uuid={B226702B-AC3E-4f8c-BF07-E3347944EA3A}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,024 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4490, uuid={69D938D2-D561-48eb-8BCF-FA2CFA350C07}, since=null, name=LocAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Local address.', htmlDescription='

Local address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,024 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4491, uuid={6C3E2D7A-F0C0-424b-A05C-4A96E29F65E7}, since=null, name=LocAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Local address type.', htmlDescription='

Local address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,024 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4492, uuid={5C777986-F9FD-4fbf-AAFB-2E087F0B21F7}, since=null, name=RemAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address.', htmlDescription='

Remote address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,025 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4493, uuid={7AB71D12-EB91-421a-B172-48B97B758080}, since=null, name=RemAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address type.', htmlDescription='

Remote address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,025 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4481, uuid={8E8A2B77-DF1B-4f33-B823-499F2C569AB8}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,025 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4482, uuid={CBC3AD5A-6EDA-4a33-95FA-37A565CEA2C1}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered (security or health).', htmlDescription='

Provides the last known event encountered (security or health).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,025 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4483, uuid={4669B65B-F448-43b1-9BB7-DD9A5FEFA04B}, since=null, name=Server, alias=, stereotype=table, visibility=public, txtDescription='Client session (when applicable)', htmlDescription='

Client session (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=1077, _eaTypeName=ServerTLS, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@167c1fc, 2_taggedValues{MIBPrefix=tC, Version=1}]. +2024-09-07 21:42:20,025 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4484, uuid={C3E6C81C-3F3D-4c3b-BABC-8573CD333CF5}, since=null, name=Client, alias=, stereotype=table, visibility=public, txtDescription='Server session (when applicable)', htmlDescription='

Server session (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=1079, _eaTypeName=ClientTLS, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ee9faa, 2_taggedValues{MIBPrefix=tC, Version=1}]. +2024-09-07 21:42:20,025 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4485, uuid={36BE9868-D051-429a-8C15-ADEDE8C4F60A}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object', htmlDescription='

Security events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1078, _eaTypeName=IEC62351part3ed2SecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@38203, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,025 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification, _objData=UmlObjectData [id=4487, uuid={6943E7EC-3F67-43a9-90B0-9BCF7DB4D056}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Description of last event reported', htmlDescription='

Description of last event reported

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,025 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3991, uuid={E3FE31B6-2024-4e98-99E9-12CFAC8AEC6F}, since=null, name=AuthFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Count of the number of authorization failures.', htmlDescription='

Count of the number of authorization failures.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,025 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3992, uuid={F6B00869-D41C-44b6-B4FF-FA092ED078AE}, since=null, name=CtrlPrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of control actions attempted that did not have the correct privilege.', htmlDescription='

Number of control actions attempted that did not have the correct privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,026 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3993, uuid={2CBA5468-91CA-4cf0-BAC3-55AC2EC54FC8}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted.', htmlDescription='

Number PDUs received that could not be decrypted.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,026 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3405, uuid={66AB8F6D-0721-44fb-861C-C607A8498C6F}, since=null, name=ExT0Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T0 (connection establishment).', htmlDescription='

Count the expirations of the 104 time-out T0 (connection establishment).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,026 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3406, uuid={F62CF6E4-A1AF-476b-B35E-F4DE2A4E0591}, since=null, name=ExT1Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T1 (PDU).', htmlDescription='

Count the expirations of the 104 time-out T1 (PDU).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,026 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3407, uuid={8099C0E4-518A-434c-BF60-73BC878C2238}, since=null, name=ExT2Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T2 (ACK).', htmlDescription='

Count the expirations of the 104 time-out T2 (ACK).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,027 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3408, uuid={439C3366-994E-4fbc-A804-80CA3D745D68}, since=null, name=ExT3Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T3 (TEST).', htmlDescription='

Count the expirations of the 104 time-out T3 (TEST).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,028 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3124, uuid={B8936537-E883-4ab6-8A65-47CF971C5BB4}, since=null, name=InDisc, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDUs that were discarded.', htmlDescription='

Number of received PDUs that were discarded.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,028 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3994, uuid={9A232ABD-C751-45bb-8278-552FEB934C4E}, since=null, name=InErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of PDUs received that were in error.', htmlDescription='

Number of PDUs received that were in error.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,028 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3995, uuid={A4886E74-D4DE-4163-BBF4-BFB4DA9AA818}, since=null, name=InOvCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer overflows detected due to incoming communication.', htmlDescription='

Number of buffer overflows detected due to incoming communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,028 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3996, uuid={34EAD965-3EEE-42ae-9A33-371405C3B4A8}, since=null, name=InterPDUTime, alias=, stereotype=protocol, visibility=public, txtDescription='Time between two consecutives PDUs.', htmlDescription='

Time between two consecutives PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,028 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3997, uuid={E65434B6-333B-4677-9DB7-2689202D1C31}, since=null, name=MisPDUCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Provides an attribute that represents the count of missed PDU.', htmlDescription='

Provides an attribute that represents the count of missed PDU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,028 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3141, uuid={3DEDE5E8-C46A-4627-A2B8-FA7B2651B388}, since=null, name=OutErr, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmission errors.', htmlDescription='

Number of transmission errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,028 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3990, uuid={4B336F22-0DBB-425c-9CE9-8A2B3968C18C}, since=null, name=OutUv, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer underflows detected due to outgoing serial communication.', htmlDescription='

Number of buffer underflows detected due to outgoing serial communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,028 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3998, uuid={56C57887-C03F-430b-A3CC-47993296C81A}, since=null, name=PDURTT, alias=, stereotype=protocol, visibility=public, txtDescription='PDU round trip time.', htmlDescription='

PDU round trip time.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,028 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3999, uuid={F9A50D40-7721-4f2f-B450-70B42C8159B7}, since=null, name=PDUSizeFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDU with wrong size.', htmlDescription='

Number of received PDU with wrong size.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,028 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4000, uuid={C3639D7C-0EF8-4ffb-912C-24F7FA06CBA6}, since=null, name=PduTampCnt, alias=, stereotype=security, visibility=public, txtDescription='Provides an attribute that indicates the count of the number of PDUs that have been detected to be tampered with.', htmlDescription='

Provides an attribute that indicates the count of the number of PDUs that have been detected to be tampered with.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,028 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4001, uuid={AD2C395F-15DF-4e49-A4EF-1C8758015811}, since=null, name=PrimaryInterface, alias=, stereotype=protocol, visibility=public, txtDescription='True if the Protocol is running on primary interface (false when backup interface is in use).', htmlDescription='

True if the Protocol is running on primary interface (false when backup interface is in use).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,028 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4002, uuid={15035EBB-A53C-4c7d-BEA7-D6AF668B9A81}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,028 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3403, uuid={D5E66B05-319E-467b-9B20-4D0021DE5B43}, since=null, name=RtxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the number of retransmissions.', htmlDescription='

Count the number of retransmissions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,028 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3123, uuid={5F22267E-6104-41c7-A2B6-BBFFCE828B94}, since=null, name=RxCritical, alias=, stereotype=protocol, visibility=public, txtDescription='Number of critical requests received (according to IEC 62351-5).', htmlDescription='

Number of critical requests received (according to IEC 62351-5).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,028 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4003, uuid={37C50A09-5C52-4612-ACD2-3CA5076E832A}, since=null, name=RxPdu, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDUs (including in error PDUs).', htmlDescription='

Number of received PDUs (including in error PDUs).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,028 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3135, uuid={51629B5F-2B79-4aa4-A704-E8D4D467D6E2}, since=null, name=RxSolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Number of solicited requests received. Only for DNP.', htmlDescription='

Number of solicited requests received. Only for DNP.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,029 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3145, uuid={546FFA93-9BFB-40fc-8F59-570F9FA50834}, since=null, name=RxUnsolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Contains the count of number of unsolicited requests that have been transmitted since the last reset.', htmlDescription='

Contains the count of number of unsolicited requests that have been transmitted since the last reset.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,029 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4004, uuid={219E7530-12EB-4a52-AE1A-536554F0ED28}, since=null, name=SessKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of session key negotiations that failed.', htmlDescription='

Number of session key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,029 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3122, uuid={9760193C-146A-427a-88DE-4FA2BBC2EA9E}, since=null, name=TxCritical, alias=, stereotype=protocol, visibility=public, txtDescription='Number of critical requests transmitted (according to IEC 62351-5)', htmlDescription='

Number of critical requests transmitted (according to IEC 62351-5)

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,029 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4005, uuid={984B7498-8B61-45e0-BE19-6E17EA80D9D0}, since=null, name=TxPdu, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmitted PDUs.', htmlDescription='

Number of transmitted PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,029 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3120, uuid={7F13ABEF-5E7A-4fc2-BE27-AB2E70B1B97A}, since=null, name=TxSolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Number of solicited requests transmitted. Only for DNP.', htmlDescription='

Number of solicited requests transmitted. Only for DNP.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,029 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3121, uuid={76A62C46-9C78-48ff-9770-F2A7BE837E1F}, since=null, name=TxUnsolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Contains the count of number of unsolicited requests that have been transmitted since the last reset.', htmlDescription='

Contains the count of number of unsolicited requests that have been transmitted since the last reset.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,029 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4006, uuid={2AAAEC13-D4BB-4d2a-8461-00DBAE43010B}, since=null, name=UpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations that failed.', htmlDescription='

Number of update key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,029 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=3726, uuid={361DD26C-8F48-46fd-BCE9-B6A3787F5FA6}, since=null, name=AssociationId, alias=, stereotype=index, visibility=public, txtDescription='Id of the association.', htmlDescription='

Id of the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,029 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=3241, uuid={87C4526C-4B22-42d3-BFDD-0EBE86166CDA}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,029 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2417, uuid={FF67FCFB-43B0-4a5a-8A33-52E57E2A1E33}, since=null, name=LocAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Local address.', htmlDescription='

Local address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 21:42:20,029 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=3715, uuid={857943C5-1917-46b9-BAA2-F6DBBE305DDA}, since=null, name=LocAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Local address type.', htmlDescription='

Local address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 21:42:20,029 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2413, uuid={218B44A4-22AA-4a3a-B54C-BC3742A6A951}, since=null, name=ProtID, alias=, stereotype=protocol, visibility=public, txtDescription='Protocol ID in use.', htmlDescription='

Protocol ID in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=780, _eaTypeName=ProtIdType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1c7cbad, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,029 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2412, uuid={2DCFE840-6DFB-49ca-9D60-6F00BBFE9375}, since=null, name=ProviderDesc, alias=, stereotype=identity, visibility=public, txtDescription='Textual description of the provider that is in use.', htmlDescription='

Textual description of the provider that is in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,029 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2411, uuid={739910E5-2234-4d7f-BF07-E2FAC9061548}, since=null, name=ProviderName, alias=, stereotype=identity, visibility=public, txtDescription='Identity of the provider responding as the outstation for this association.', htmlDescription='

Identity of the provider responding as the outstation for this association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,029 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2416, uuid={F1041BDF-E1EE-44c3-B346-5643EFA0E8C7}, since=null, name=RemAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address.', htmlDescription='

Remote address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 3_taggedValues{isIndex=yes, mibIndex=yes, Version=0}]. +2024-09-07 21:42:20,029 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=3714, uuid={25C69ED7-7E01-4316-B15C-28D99CC5FC94}, since=null, name=RemAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address type.', htmlDescription='

Remote address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 3_taggedValues{isIndex=yes, mibIndex=yes, Version=0}]. +2024-09-07 21:42:20,029 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2410, uuid={4F98C052-71F6-44e6-A31C-2A148D61DF91}, since=null, name=TLnkErrCnt, alias=, stereotype=health, visibility=public, txtDescription='Count of communication link errors detected.', htmlDescription='

Count of communication link errors detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,029 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2415, uuid={FED824F2-3E50-44cd-A78C-B816071534FB}, since=null, name=TLnkTyp, alias=, stereotype=protocol, visibility=public, txtDescription='Type of transport being utilized.', htmlDescription='

Type of transport being utilized.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=778, _eaTypeName=LnkType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2cbe0, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,029 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=3248, uuid={37A47CAE-5E15-4947-9824-88474381CEB3}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,030 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=3708, uuid={33EEE0D1-CEBA-4f55-8388-E92B798B5827}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered (security or health).', htmlDescription='

Provides the last known event encountered (security or health).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,030 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=2278, uuid={D8685894-627E-4b6f-B670-3C72CC90DF6B}, since=null, name=Master, alias=, stereotype=table, visibility=public, txtDescription='Client association (when applicable)', htmlDescription='

Client association (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=820, _eaTypeName=MasterAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@be83e4, 2_taggedValues{MIBPrefix=tC, Version=0}]. +2024-09-07 21:42:20,030 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=2287, uuid={364CBB2E-460C-46ce-AC40-149F1C18EAC8}, since=null, name=Outstation, alias=, stereotype=table, visibility=public, txtDescription='Server association (when applicable)', htmlDescription='

Server association (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=821, _eaTypeName=OutstationAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@cb5822, 2_taggedValues{MIBPrefix=tC, Version=0}]. +2024-09-07 21:42:20,030 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=3609, uuid={86E71A83-DD23-44dd-AF05-2C4883970DBA}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object', htmlDescription='

Security events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=914, _eaTypeName=60870andDNPSecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@19e13df, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,030 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=3608, uuid={E3191E3F-E629-4bfd-A8E1-64D78A2B9955}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object', htmlDescription='

State events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=915, _eaTypeName=60870andDNPNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@198378d, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,030 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3519, uuid={8EC7A2E6-FA1E-44bf-871A-8E7A12508F3F}, since=null, name=AuthFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Count of the number of authorization failures.', htmlDescription='

Count of the number of authorization failures.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,030 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3518, uuid={F5BEAE2F-4536-4f9c-9478-CF23E2A2D7C5}, since=null, name=CtrlPrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of control actions attempted that did not have the correct privilege.', htmlDescription='

Number of control actions attempted that did not have the correct privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,030 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3522, uuid={9ABAB39B-C8D2-427c-805D-DD74A37B15BD}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted.', htmlDescription='

Number PDUs received that could not be decrypted.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,030 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=4043, uuid={1BC26E95-9659-4250-87C9-365D73AD44BE}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered (security or health).', htmlDescription='

Provides the last known event encountered (security or health).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,030 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3520, uuid={2018A0E6-F948-40c3-98F5-CC50CFBD7527}, since=null, name=PduTampCnt, alias=, stereotype=security, visibility=public, txtDescription='Provides an attribute that indicates the count of the number of PDUs that have been detected to be tampered with.', htmlDescription='

Provides an attribute that indicates the count of the number of PDUs that have been detected to be tampered with.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,031 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3521, uuid={F0F1CF0B-1E15-4c19-ACB3-B4C1D745383F}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,031 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3523, uuid={22ADAAB8-8A4A-49c6-A261-6FC1E02DFEDB}, since=null, name=SessKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of session key negotiations that failed.', htmlDescription='

Number of session key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,031 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3524, uuid={A9AFB691-7A96-43a3-9FDB-B197827A4D8C}, since=null, name=UpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations that failed.', htmlDescription='

Number of update key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,031 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3526, uuid={6936B8C9-BCD0-46a8-B2A7-4423628A89F6}, since=null, name=InErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of PDUs received that were in error.', htmlDescription='

Number of PDUs received that were in error.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,031 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3528, uuid={97175DF9-326B-40f7-B626-D213159A0A56}, since=null, name=InOvCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer overflows detected due to incoming communication.', htmlDescription='

Number of buffer overflows detected due to incoming communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,031 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3529, uuid={47916BBB-21C9-49df-8C8B-3A9375A29441}, since=null, name=OutUv, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer underflows detected due to outgoing serial communication.', htmlDescription='

Number of buffer underflows detected due to outgoing serial communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,031 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3527, uuid={0C1DB352-F31C-4520-B8BB-43E3CB924F8D}, since=null, name=RxPdu, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDUs.', htmlDescription='

Number of received PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,031 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3525, uuid={B77A1C29-3430-40df-AC7F-D1ACC9E6C035}, since=null, name=TxPdu, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmitted PDUs.', htmlDescription='

Number of transmitted PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,031 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4257, uuid={0C0A0A2C-20C0-4ca9-9856-507B3CF40B66}, since=null, name=ExT0Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T0 (connection establishment).', htmlDescription='

Count the expirations of the 104 time-out T0 (connection establishment).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,031 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4258, uuid={C6845E20-7B2D-4978-A35B-D43715366935}, since=null, name=ExT1Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T1 (PDU).', htmlDescription='

Count the expirations of the 104 time-out T1 (PDU).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,031 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4259, uuid={15711ABC-5E51-4c9e-95EB-71E116D1CBC1}, since=null, name=ExT2Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T2 (ACK).', htmlDescription='

Count the expirations of the 104 time-out T2 (ACK).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,031 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4260, uuid={7A191FB8-98E6-4847-930B-90CB4FC6E61E}, since=null, name=ExT3Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T3 (TEST).', htmlDescription='

Count the expirations of the 104 time-out T3 (TEST).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,031 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4261, uuid={81B43739-99E7-46b8-BB5A-340970E92A28}, since=null, name=DiscPduCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of discarded messages.', htmlDescription='

Number of discarded messages.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,032 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4262, uuid={8165A5DE-3828-4785-9068-BB9EBEA44FF2}, since=null, name=InErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of PDUs received that were in error.', htmlDescription='

Number of PDUs received that were in error.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,032 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4263, uuid={D90D5B9D-8B9D-454d-83A9-E6715E4783C6}, since=null, name=InOvCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer overflows detected due to incoming communication.', htmlDescription='

Number of buffer overflows detected due to incoming communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,032 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4264, uuid={E8C8E34D-3689-46e8-B001-9DE7609677AC}, since=null, name=InterPDUTime, alias=, stereotype=protocol, visibility=public, txtDescription='Time between two consecutives PDUs.', htmlDescription='

Time between two consecutives PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,032 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4265, uuid={49E9D387-25A4-46e7-8CEB-9C75979FB7AF}, since=null, name=MisPDUCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Provides an attribute that represents the count of missed PDU.', htmlDescription='

Provides an attribute that represents the count of missed PDU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,032 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4266, uuid={8845E947-C91C-4a04-B4FE-3AEDC1029732}, since=null, name=OutErr, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmission errors.', htmlDescription='

Number of transmission errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,032 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4267, uuid={CCD6A7C5-F0B4-4402-AE88-B35035615DC3}, since=null, name=OutUv, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer underflows detected due to outgoing serial communication.', htmlDescription='

Number of buffer underflows detected due to outgoing serial communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,032 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4269, uuid={378D6C1B-B55C-457c-BD03-A017415E19C4}, since=null, name=PDUSizeFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDU with wrong size.', htmlDescription='

Number of received PDU with wrong size.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,032 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4273, uuid={8E51A58B-0043-4528-B1BC-BC2B4CC4E59C}, since=null, name=RtxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the number of retransmissions.', htmlDescription='

Count the number of retransmissions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,032 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4275, uuid={9768D1CC-F452-448b-B8DF-26922CB00ED7}, since=null, name=RxPduCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDUs (including PDUs with errors).', htmlDescription='

Number of received PDUs (including PDUs with errors).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,032 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4276, uuid={00CBF4DB-7CDE-4393-BCCF-90A5601FF89C}, since=null, name=RxSolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Number of solicited requests received. Only for DNP.', htmlDescription='

Number of solicited requests received. Only for DNP.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,032 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4277, uuid={A480B5CE-C799-40b2-9A6C-05A2B643932E}, since=null, name=RxUnsolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Contains the count of number of unsolicited requests that have been transmitted since the last reset.', htmlDescription='

Contains the count of number of unsolicited requests that have been transmitted since the last reset.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,032 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4280, uuid={7A2A5BFA-FCB8-44a4-A4CF-442CC8A9FB0E}, since=null, name=TxPduCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmitted PDUs.', htmlDescription='

Number of transmitted PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,033 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4281, uuid={BF7B41CE-7B62-4a5f-A9F6-D1E8A5A4952E}, since=null, name=TxSolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Number of solicited requests transmitted. Only for DNP.', htmlDescription='

Number of solicited requests transmitted. Only for DNP.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,033 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4282, uuid={BB6FDD4B-6837-4d88-B268-0D09301311FD}, since=null, name=TxUnsolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Contains the count of number of unsolicited requests that have been transmitted since the last reset.', htmlDescription='

Contains the count of number of unsolicited requests that have been transmitted since the last reset.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,033 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4306, uuid={85A6FA13-2677-4c99-BC12-DD878801CFC4}, since=null, name=StAsProcScsCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Station Association procedure has been successfully performed.', htmlDescription='

Number of times the Station Association procedure has been successfully performed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,033 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4307, uuid={F82373BD-CE1D-4a57-B13C-413810F179B0}, since=null, name=StAsProcFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Station Association procedure has failed.', htmlDescription='

Number of times the Station Association procedure has failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,033 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4308, uuid={69BDB5BC-DE98-4195-8110-202AD93E7AFC}, since=null, name=SKeyProcScsCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Session Key was changed successfully.', htmlDescription='

Number of times the Session Key was changed successfully.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,034 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4336, uuid={8BE551FF-4A0A-45b6-A0A0-D051150BF74D}, since=null, name=KeyAutnAlgSupFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Data authentication algorithm support failures. Controlled station only.', htmlDescription='

Number of Data authentication algorithm support failures. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,034 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4337, uuid={60FED222-F3AD-4f4c-A733-DE4950C990C2}, since=null, name=SKeyWrapAlgSupFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of key wrap algorithm support failures. Controlled station only.', htmlDescription='

Number of key wrap algorithm support failures. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,034 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4338, uuid={C2B0C0DF-C9DD-4aef-932E-B016DA2E6276}, since=null, name=DataProtAlgSupFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Data authentication algorithm support failures. Controlled station only.', htmlDescription='

Number of Data authentication algorithm support failures. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,034 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4339, uuid={55BE76A2-DF93-45de-9D84-4EE282ACC41B}, since=null, name=SKeyAutnErrCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Key authentication errors.', htmlDescription='

Number of Key authentication errors.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,034 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4340, uuid={97FE21BE-F20E-4b5f-9E7C-62B9BF57A4C7}, since=null, name=DataAutnErrCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of non-authentic Secure Data messages received.', htmlDescription='

Number of non-authentic Secure Data messages received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,034 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4341, uuid={303256CB-76CD-4b39-8D6B-6B5F7E4718DC}, since=null, name=UnxpMsgErrCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of unexpected messages received.', htmlDescription='

Number of unexpected messages received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,034 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4342, uuid={7B618961-D677-4bf9-83FB-40700B9BA9CC}, since=null, name=MaxReplyToutCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Max Reply Timeouts threshold was reached. Controlling station only.', htmlDescription='

Number of times the Max Reply Timeouts threshold was reached. Controlling station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,034 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4343, uuid={D8D3268F-F4C4-49d7-AB23-7946C1CEA6D1}, since=null, name=NodeAutrFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of unauthorized communication attempts.', htmlDescription='

Number of unauthorized communication attempts.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,034 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4344, uuid={23FA293A-4F87-4c7c-B4E2-6B3955B5ED61}, since=null, name=CtrlOperAutrFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of unauthorized operations. Controlled station only.', htmlDescription='

Number of unauthorized operations. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,034 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4345, uuid={6193E983-C056-491a-B7A3-EBE58355374C}, since=null, name=RemCertCheckFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of invalid certificates received.', htmlDescription='

Number of invalid certificates received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,034 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4346, uuid={46BA0F58-A6A4-4d23-9157-B07A5643B284}, since=null, name=RemCertExpiredCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the remote station's certificate expired.', htmlDescription='

Number of times the remote station's certificate expired.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,034 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4347, uuid={C54FF7FA-520C-4d4f-A4A1-B7E88C041568}, since=null, name=RemCertRevokedCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the remote station's certificate has been revoked.', htmlDescription='

Number of times the remote station's certificate has been revoked.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,034 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4348, uuid={95955856-F76D-4e05-B055-4FF8029E1A9D}, since=null, name=LocCertExpiredCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the local station's certificate expired.', htmlDescription='

Number of times the local station's certificate expired.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,034 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4349, uuid={DE7B5995-13C2-44c8-8579-6CEF37D201AF}, since=null, name=LocCertRevokedCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the local station's certificate has been revoked.', htmlDescription='

Number of times the local station's certificate has been revoked.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,034 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4350, uuid={2223C6EC-FBAE-4b91-8FF2-4407C5DFFF36}, since=null, name=KeysInvRemCertRevCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Cryptographic Keys were invalidated due to remote station's certificate revocation.', htmlDescription='

Number of times the Cryptographic Keys were invalidated due to remote station's certificate revocation.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,034 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4351, uuid={5DCACFEC-13BF-47c0-88D7-950B26D9DBBB}, since=null, name=KeysInvLocCertRevCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Cryptographic Keys were invalidated due to local station's certificate revocation.', htmlDescription='

Number of times the Cryptographic Keys were invalidated due to local station's certificate revocation.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,034 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4352, uuid={4A474D59-99BF-495e-BB9D-C3E096F5F83B}, since=null, name=DataAutnScsCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of authentic Secure Data messages received.', htmlDescription='

Number of authentic Secure Data messages received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,035 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4353, uuid={7F7D3F88-910D-4dae-B5B1-DED2E46A51C7}, since=null, name=ReplyToutCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Reply Timeouts. Controlling station only.', htmlDescription='

Number of Reply Timeouts. Controlling station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,035 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4354, uuid={E6FD44A6-C9CE-45d6-BA4A-3EF7DECB1691}, since=null, name=RequestToutCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Request Timeouts. Controlled station only.', htmlDescription='

Number of Request Timeouts. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,035 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4355, uuid={65E3DDC2-B3AC-4c86-8AF6-39C43114EC3C}, since=null, name=SKeyInvUseCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Session Key was invalidated due to Max Session Key Usage Count. Controlled station only.', htmlDescription='

Number of times the Session Key was invalidated due to Max Session Key Usage Count. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,035 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4356, uuid={3C26B695-A1A0-44c3-BE08-C75CA78940DA}, since=null, name=SKeyInvToutCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Session Keys were invalidated due to Max Session Key Usage Timeout. Controlled station only.', htmlDescription='

Number of times the Session Keys were invalidated due to Max Session Key Usage Timeout. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,035 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4357, uuid={B3A60D84-37C0-40f2-9019-17B8C45C778E}, since=null, name=SKeyProcFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Session Key Change failures.', htmlDescription='

Number of Session Key Change failures.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,035 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4335, uuid={90633EE5-94E7-44d3-B98C-08140BCBFCF1}, since=null, name=ProtInfoErrCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of protocol information errors. Controlled station only.', htmlDescription='

Number of protocol information errors. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,035 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4284, uuid={D3B5EC3D-3991-40b8-85B6-2AFB3206637A}, since=null, name=AssociationId, alias=, stereotype=index, visibility=public, txtDescription='Id of the association.', htmlDescription='

Id of the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,035 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4285, uuid={DB5A65D6-2349-4a56-A200-129882572A95}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,035 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4286, uuid={FABF76A8-43C1-4be2-89C5-4C3B7F18604B}, since=null, name=LocAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Local address.', htmlDescription='

Local address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 21:42:20,035 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4287, uuid={F933B36B-EE52-4922-9AA4-F0CB5A55F9CE}, since=null, name=LocAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Local address type.', htmlDescription='

Local address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 21:42:20,035 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4288, uuid={4EDE24F7-C4DB-4078-926A-3518CCBB1D8F}, since=null, name=ProtID, alias=, stereotype=protocol, visibility=public, txtDescription='Protocol ID in use.', htmlDescription='

Protocol ID in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=780, _eaTypeName=ProtIdType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1c7cbad, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,035 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4289, uuid={8CE59398-E353-464a-9B25-03588802C32E}, since=null, name=ProviderDesc, alias=, stereotype=identity, visibility=public, txtDescription='Textual description of the provider that is in use.', htmlDescription='

Textual description of the provider that is in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,035 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4290, uuid={BD1C65C9-07DF-4192-8713-A93BC3E1C050}, since=null, name=ProviderName, alias=, stereotype=identity, visibility=public, txtDescription='Identity of the provider responding as the outstation for this association.', htmlDescription='

Identity of the provider responding as the outstation for this association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,035 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4291, uuid={BEB1F3A7-96E9-4a7f-B4CE-78A311245A60}, since=null, name=RemAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address.', htmlDescription='

Remote address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 3_taggedValues{isIndex=yes, mibIndex=yes, Version=0}]. +2024-09-07 21:42:20,035 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4292, uuid={59810D47-4220-40e1-A018-FE80613740BC}, since=null, name=RemAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address type.', htmlDescription='

Remote address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 3_taggedValues{isIndex=yes, mibIndex=yes, Version=0}]. +2024-09-07 21:42:20,035 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4293, uuid={9AE7823D-F26B-48f8-A955-DA056C8C0F32}, since=null, name=TLnkErrCnt, alias=, stereotype=health, visibility=public, txtDescription='Count of communication link errors detected.', htmlDescription='

Count of communication link errors detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,035 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4294, uuid={FFAF85C1-58F9-4330-80FE-18A5100B3EE7}, since=null, name=TLnkTyp, alias=, stereotype=protocol, visibility=public, txtDescription='Type of transport being utilized.', htmlDescription='

Type of transport being utilized.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=778, _eaTypeName=LnkType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2cbe0, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,035 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4295, uuid={E543F5FE-D414-4517-9CFA-17AF02358984}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,036 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4296, uuid={A601B46C-5CB2-4663-BBDD-6B075EA07FE8}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered (security or health).', htmlDescription='

Provides the last known event encountered (security or health).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,036 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4297, uuid={DD17EC1E-C1D2-444e-BC3B-65A68EB1768E}, since=null, name=Master, alias=, stereotype=table, visibility=public, txtDescription='Client association (when applicable)', htmlDescription='

Client association (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=1057, _eaTypeName=MasterAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@4edc67, 2_taggedValues{MIBPrefix=tC, Version=0}]. +2024-09-07 21:42:20,036 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4298, uuid={927B1068-7146-4ea9-B50A-FD00B14D1747}, since=null, name=Outstation, alias=, stereotype=table, visibility=public, txtDescription='Server association (when applicable)', htmlDescription='

Server association (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=1056, _eaTypeName=OutstationAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@acaea5, 2_taggedValues{MIBPrefix=tC, Version=0}]. +2024-09-07 21:42:20,036 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4299, uuid={E4361517-7300-4db5-A392-69EAD372A4E2}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object', htmlDescription='

Security events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1055, _eaTypeName=60870andDNPSecurityNotificationEd2, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d56d67, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,036 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4300, uuid={240DF754-7E5E-4226-B4F4-F1DDBE6652EB}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object', htmlDescription='

State events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1061, _eaTypeName=60870andDNPNotificationEd2, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@18355a8, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,036 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2, _objData=UmlObjectData [id=4358, uuid={6AA445FA-BC7C-4384-8725-306C37B37564}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,036 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2, _objData=UmlObjectData [id=4360, uuid={60B53F7E-A6F1-449b-8917-E860F3F35ECB}, since=null, name=LastEvent, alias=, stereotype=protocol, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,036 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1254, uuid={60676AFB-06AF-480c-86DC-DDF92723390B}, since=null, name=assocPoolMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number of client/server associations.', htmlDescription='

Maximum number of client/server associations.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,036 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1255, uuid={B21687C2-9C22-4c8f-A435-15A69F7147D6}, since=null, name=assocPoolUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of client/server associations active.', htmlDescription='

Number of client/server associations active.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,036 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1278, uuid={6CA26B83-F728-4e94-9E7E-89E5998C3308}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,036 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=3931, uuid={75069142-E376-4865-9020-9924B1C82527}, since=null, name=CtrlPrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of control actions attempted that did not have the correct privilege.', htmlDescription='

Number of control actions attempted that did not have the correct privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,036 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1262, uuid={44D0F3A5-606C-4650-ABCB-FE16EEE777E3}, since=null, name=gsePubMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number GSE Publications supported.', htmlDescription='

Maximum number GSE Publications supported.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,036 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=2263, uuid={1C2B216E-5A48-41c9-8A95-E49BCC60C316}, since=null, name=gsePubUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of active GSE Publications.', htmlDescription='

Number of active GSE Publications.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,036 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1264, uuid={B2FDE11B-6BA3-4051-B3BD-15152FB16FED}, since=null, name=gseSubMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number of GSE Subscriptions.', htmlDescription='

Maximum number of GSE Subscriptions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,036 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1263, uuid={1842AD96-E339-455f-9BC0-7F98C8F31CEC}, since=null, name=gseSubUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of active GSE Subscriptions.', htmlDescription='

Number of active GSE Subscriptions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,037 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=3709, uuid={014B3324-A84F-455f-957B-1420E50D5C59}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,037 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=3930, uuid={F5A04750-F784-4c0c-AB12-2298DE62BB99}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,037 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1271, uuid={A10D2F0C-3A4C-4aa4-B832-655CEBF8F43C}, since=null, name=RemoteEstAssocCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count of the number of currently active associations that were established through the ACSI associate response.', htmlDescription='

Count of the number of currently active associations that were established through the ACSI associate response.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,037 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=3932, uuid={7EF57F32-F44A-4126-9201-8EFAD41F12D4}, since=null, name=AcsCtlFail, alias=, stereotype=security, visibility=public, txtDescription='Number of access control failures detected (i.e., when a data object that the client wanted to access exists in the server, but based on the access view of the association with that client, an access to the data object was refused).', htmlDescription='

Number of access control failures detected (i.e., when a data object that the client wanted to access exists in the server, but based on the access view of the association with that client, an access to the data object was refused).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,037 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1282, uuid={2E06924F-F7EB-44a7-A1D2-2428322A0892}, since=null, name=svPubMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number SV publications supported.', htmlDescription='

Maximum number SV publications supported.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,037 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1281, uuid={D6CCDFE9-6558-4cd0-B508-8BA15852D950}, since=null, name=svPubUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of active SV publications.', htmlDescription='

Number of active SV publications.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,037 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1284, uuid={769A7A31-DA16-43a0-A340-14FF723B8636}, since=null, name=svSubMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number SV subscriptions supported.', htmlDescription='

Maximum number SV subscriptions supported.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,037 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1283, uuid={40270792-85F3-4361-850B-A5F29E1B75C0}, since=null, name=svSubUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of active SV subscriptions.', htmlDescription='

Number of active SV subscriptions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,037 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=4122, uuid={B070617B-7900-42b1-8DA7-F591BA2099FA}, since=null, name=ErrorRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of error PDU that have been received including: +- Confirmed-ErrorPDU (only for client) +- Cancel-ErrorPDU (only for client) +- Initiate-ErrorPDU +- Conclude-ErrorPDU.', htmlDescription='

Number of error PDU that have been received including:

  • Confirmed-ErrorPDU (only for client)
  • Cancel-ErrorPDU (only for client)
  • Initiate-ErrorPDU
  • Conclude-ErrorPDU.
'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,037 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=4123, uuid={650B0D6F-9766-4bae-9182-5EC830CB64E3}, since=null, name=ErrorTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of error PDU that have been sent including: +- Confirmed-ErrorPDU (only for server) +- Cancel-ErrorPDU (only for server) +- Initiate-ErrorPDU +- Conclude-ErrorPDU.', htmlDescription='

Number of error PDU that have been sent including:

  • Confirmed-ErrorPDU (only for server)
  • Cancel-ErrorPDU (only for server)
  • Initiate-ErrorPDU
  • Conclude-ErrorPDU.
'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,037 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3214, uuid={30ED064F-399A-4e3a-97D2-D106F082CF4F}, since=null, name=InfoRptRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of MMS Information Reports that have been received.', htmlDescription='

Number of MMS Information Reports that have been received.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,037 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=4120, uuid={CEC51410-D5D9-4150-B1C4-AA691F453D23}, since=null, name=InfoRptTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of MMS Information Reports that have been sent.', htmlDescription='

Number of MMS Information Reports that have been sent.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,037 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3969, uuid={94722C63-A68B-4460-A0BA-93F19272E206}, since=null, name=MisCmdAckCnt, alias=, stereotype=security, visibility=public, txtDescription='Provides an attribute that indicates the count of the number of MMS request that have not been acknowledged.', htmlDescription='

Provides an attribute that indicates the count of the number of MMS request that have not been acknowledged.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,037 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3414, uuid={8F4B6AF1-5A4A-47a1-A365-8963A1FAE78F}, since=null, name=MMSProExchTime, alias=, stereotype=performance, visibility=public, txtDescription='MMS Profile exchange duration (seconds). MMS profile is meant as Logical Devices, Logical Nodes and Dataset definition are exchanged.', htmlDescription='

MMS Profile exchange duration (seconds). MMS profile is meant as Logical Devices, Logical Nodes and Dataset definition are exchanged.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,038 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3211, uuid={6C0EA55B-1ACA-4a3a-9068-E9C2CEC96B9D}, since=null, name=RejectRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of RejectPDU received.', htmlDescription='

Number of RejectPDU received.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,038 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3212, uuid={C8554D1E-C163-4286-96BB-E26046672513}, since=null, name=RejectTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of RejectPDU sent.', htmlDescription='

Number of RejectPDU sent.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,038 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3208, uuid={C94BBBC3-1104-42b0-B156-E80FE61CBDB8}, since=null, name=ReqRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of request PDU that have been received including: +- Confirmed-RequestPDU (only for server) +- Cancel-RequestPDU (only for server) +- Initiate-RequestPDU +- Conclude-RequestPDU.', htmlDescription='

Number of request PDU that have been received including:

  • Confirmed-RequestPDU (only for server)
  • Cancel-RequestPDU (only for server)
  • Initiate-RequestPDU
  • Conclude-RequestPDU.
'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,038 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3206, uuid={023D9D84-38BC-4c86-B9CC-78085AC2F869}, since=null, name=ReqTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of request PDU that have been sent including: +- Confirmed-RequestPDU (only for client) +- Cancel-RequestPDU (only for client) +- Initiate-RequestPDU +- Conclude-RequestPDU.', htmlDescription='

Number of request PDU that have been sent including:

  • Confirmed-RequestPDU (only for client)
  • Cancel-RequestPDU (only for client)
  • Initiate-RequestPDU
  • Conclude-RequestPDU.
'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,038 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3210, uuid={B07FEDC7-72A1-43b4-9CA9-AEDC8CE77EAF}, since=null, name=RespRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of response PDU that have been received including: +- Confirmed-ResponsePDU (only for client) +- Cancel-ResponsePDU (only for client) +- Initiate-ResponsePDU +- Conclude-ResponsePDU +.', htmlDescription='

Number of response PDU that have been received including:

  • Confirmed-ResponsePDU (only for client)
  • Cancel-ResponsePDU (only for client)
  • Initiate-ResponsePDU
  • Conclude-ResponsePDU

.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,038 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3209, uuid={06689B60-CBF2-4d45-8B5A-FB998997F62F}, since=null, name=RespTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of response PDU that have been sent including: +- Confirmed-ResponsePDU (only for server) +- Cancel-ResponsePDU (only for server) +- Initiate-ResponsePDU +- Conclude-ResponsePDU..', htmlDescription='

Number of response PDU that have been sent including:

  • Confirmed-ResponsePDU (only for server)
  • Cancel-ResponsePDU (only for server)
  • Initiate-ResponsePDU
  • Conclude-ResponsePDU..
'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,038 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3935, uuid={1F695097-A4ED-4e85-94FE-44B50CFE99F1}, since=null, name=SessKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of session key negotiations that failed.', htmlDescription='

Number of session key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,038 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3918, uuid={7DB85E2A-0EB8-4226-BEBB-924AB496EB36}, since=null, name=AProfileDecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted within A-Profile session.', htmlDescription='

Number PDUs received that could not be decrypted within A-Profile session.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,038 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3938, uuid={A3E432FD-BDD0-4ccf-9233-0A226162B425}, since=null, name=AuthFail, alias=, stereotype=security, visibility=public, txtDescription='Count of the number of authorization failures.', htmlDescription='

Count of the number of authorization failures.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,038 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3245, uuid={D1866C6F-051F-404e-9A2B-AC1D6D44D3FC}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,038 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2831, uuid={2F166DD9-DE35-44b6-91DE-78EA3A9D0652}, since=null, name=ConnFailInCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of incoming Initiate-requests that have been refused.', htmlDescription='

Number of incoming Initiate-requests that have been refused.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,039 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2832, uuid={BA3D3302-5D14-40f7-9AA3-145CCB5F1361}, since=null, name=ConnFailOutCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of outgoing Initiate-requests that have been refused.', htmlDescription='

Number of outgoing Initiate-requests that have been refused.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,039 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3936, uuid={86BF3330-EB9C-4633-AB27-D7612CE8D05C}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted.', htmlDescription='

Number PDUs received that could not be decrypted.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,040 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3710, uuid={0163C656-8AA1-4c67-82E4-258002A53DDE}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,040 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2803, uuid={DEAB3F8B-E3E4-4664-B8B6-2D0C07019F7B}, since=null, name=MMS, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed MMS information can be obtained for each connection.', htmlDescription='

Provides a table through which more detailed MMS information can be obtained for each connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=693, _eaTypeName=MMSAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3884b2, 3_taggedValues{mibPrefix=mMS, objectIdentity=mMSMMSEntry, Version=0}]. +2024-09-07 21:42:20,040 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3915, uuid={294CE46B-D0B5-49f5-BF02-E0988430AD45}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,040 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2810, uuid={22C7C42F-8D14-493c-A2EA-CCD76245D0BE}, since=null, name=ProviderDesc, alias=, stereotype=identity, visibility=public, txtDescription='Description of provider.', htmlDescription='

Description of provider.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,040 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2811, uuid={D38418EB-A105-4a60-8D61-BB360D9237B5}, since=null, name=ProviderName, alias=, stereotype=identity, visibility=public, txtDescription='Name of the provider.', htmlDescription='

Name of the provider.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,040 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3614, uuid={A048CDB1-2C04-4ec3-B2B0-2F9ACEE80E4F}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=920, _eaTypeName=MMSSecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1275dab, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,040 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=4030, uuid={354E6408-AAF1-42b2-B717-205A592C81BE}, since=null, name=SessionEstablishmentRate, alias=, stereotype=performance, visibility=public, txtDescription='The number of times any Association has been restablished after a disconnection within 15 minutes.', htmlDescription='

The number of times any Association has been restablished after a disconnection within 15 minutes.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,040 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=4031, uuid={F68354BD-DA88-4aca-B25F-9C06F7BEFBB9}, since=null, name=SessionRestartCnt, alias=, stereotype=security, visibility=public, txtDescription='Provides an attribute that indicates the count of the number of times the session has been restablished.', htmlDescription='

Provides an attribute that indicates the count of the number of times the session has been restablished.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,040 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3613, uuid={0233C10F-B173-4f99-A4E9-A79E7500E3B0}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object.', htmlDescription='

State events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=921, _eaTypeName=MMSNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1832929, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,040 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3919, uuid={575C57A8-200D-4db3-B297-AE2635C01BC3}, since=null, name=TProfileDecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted within T-Profile session.', htmlDescription='

Number PDUs received that could not be decrypted within T-Profile session.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,040 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3921, uuid={D87795A0-A0B4-4126-9015-DBEBDD79CA50}, since=null, name=TProfileSessKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of session key negotiations that failed. This applies only to T-Profile.', htmlDescription='

Number of session key negotiations that failed. This applies only to T-Profile.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,040 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3975, uuid={5C2EA464-4FB4-4413-90B5-E3451373A966}, since=null, name=UpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations that failed.', htmlDescription='

Number of update key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,041 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2820, uuid={3D4B3729-146B-4ed2-976D-D539FFAAAE40}, since=null, name=Active, alias=, stereotype=protocol, visibility=public, txtDescription='True if association is in use.', htmlDescription='

True if association is in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,041 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3727, uuid={9E3D1B59-980F-4217-B141-1C353C1D4E72}, since=null, name=AssociationId, alias=, stereotype=index, visibility=public, txtDescription='Id of the association.', htmlDescription='

Id of the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,041 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=4119, uuid={8717A248-6228-4974-9285-1B96BBEDF420}, since=null, name=Client, alias=, stereotype=protocol, visibility=public, txtDescription='True if role is client, false if role is server', htmlDescription='

True if role is client, false if role is server

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@756e4d, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,041 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3246, uuid={2C472C21-D2BB-4a4b-8D93-5C0E3346AA95}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,041 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3939, uuid={EBEAECC3-8BE4-4469-B891-4898C2954EE5}, since=null, name=HndShTime, alias=, stereotype=performance, visibility=public, txtDescription='Duration of the MMS session handshake. This apply to the sender only.', htmlDescription='

Duration of the MMS session handshake. This apply to the sender only.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,041 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2844, uuid={C34BBC7F-ACC5-4172-B430-081B10B49819}, since=null, name=RemoteEstAssos, alias=, stereotype=protocol, visibility=public, txtDescription='True if the association was established due to an incoming Initiate-Request.', htmlDescription='

True if the association was established due to an incoming Initiate-Request.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@756e4d, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,041 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2876, uuid={BF20C38C-E4DE-439e-A7C3-2D9FCB7CA1C2}, since=null, name=RemoteIP, alias=, stereotype=protocol, visibility=public, txtDescription='Remote entity IP network address.', htmlDescription='

Remote entity IP network address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 21:42:20,041 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3692, uuid={5EA2A0D0-6DA8-427e-ADEB-2CC19FDBB143}, since=null, name=RemoteIPAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,041 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2873, uuid={14DA2F03-EFD1-4b98-A66F-EFD6046F1025}, since=null, name=RemotePSEL, alias=, stereotype=protocol, visibility=public, txtDescription='Remote entity presentation selector.', htmlDescription='

Remote entity presentation selector.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=782, _eaTypeName=Selector, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@82f6ef, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 21:42:20,041 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2874, uuid={C4E19558-A5AA-43ce-A203-6E7BACDD96C7}, since=null, name=RemoteSSEL, alias=, stereotype=protocol, visibility=public, txtDescription='Remote entity session selector.', htmlDescription='

Remote entity session selector.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=782, _eaTypeName=Selector, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@82f6ef, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 21:42:20,041 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2875, uuid={C5BC70EE-7E84-4822-95B3-1EA00D57E252}, since=null, name=RemoteTSEL, alias=, stereotype=protocol, visibility=public, txtDescription='Remote entity transport selector.', htmlDescription='

Remote entity transport selector.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=782, _eaTypeName=Selector, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@82f6ef, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 21:42:20,041 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3972, uuid={47D3343F-E927-48ec-8558-54CC13AEC30E}, since=null, name=ReportPer100Seconds, alias=, stereotype=performance, visibility=public, txtDescription='Number of Reports received/transmitted during the last 100 seconds.', htmlDescription='

Number of Reports received/transmitted during the last 100 seconds.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,042 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3968, uuid={D1802DDE-FE54-49d6-9EBB-1A5DE0464F3A}, since=null, name=RptReceptionDelay, alias=, stereotype=performance, visibility=public, txtDescription='The time required to receive the last Report. This time is the difference between the reception time and the emission timestamp stored inside the report. If not synchronized this value shall be set to -1.', htmlDescription='

The time required to receive the last Report. This time is the difference between the reception time and the emission timestamp stored inside the report. If not synchronized this value shall be set to -1.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,042 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3913, uuid={B94A45CC-7384-41ee-9821-F77D634C675F}, since=null, name=SecurityProfile, alias=, stereotype=protocol, visibility=public, txtDescription='This is the security profile in use for this association (no security, integrity A profile, A+, AE+).', htmlDescription='

This is the security profile in use for this association (no security, integrity A profile, A+, AE+).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1013, _eaTypeName=SecurityProfileType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@153acfe, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,042 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSSecurityNotification, _objData=UmlObjectData [id=3582, uuid={ED76E952-B3FD-4bbd-B4F7-7F695D6C14B6}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of PDUs received that could not be decrypted.', htmlDescription='

Number of PDUs received that could not be decrypted.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,042 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSSecurityNotification, _objData=UmlObjectData [id=4036, uuid={6D84220E-9E6E-4b52-8843-92394244A0F5}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,042 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSSecurityNotification, _objData=UmlObjectData [id=3581, uuid={52A9B9D0-58D5-4d7d-A396-A7788A41EB89}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,042 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSSecurityNotification, _objData=UmlObjectData [id=3584, uuid={4F8B7D7A-78C6-4ac7-A43C-8B06E8D829E0}, since=null, name=UpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations that failed.', htmlDescription='

Number of update key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,042 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSNotification, _objData=UmlObjectData [id=3573, uuid={6F0A08FF-024D-4919-99B5-B68C203679AA}, since=null, name=ConnFailInCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of incoming Initiate-requests that have been refused.', htmlDescription='

Number of incoming Initiate-requests that have been refused.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,042 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSNotification, _objData=UmlObjectData [id=3574, uuid={F172E26F-F99A-4ca4-BBF3-4759B78D18F3}, since=null, name=ConnFailOutCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of outgoing Initiate-requests that have been refused.', htmlDescription='

Number of outgoing Initiate-requests that have been refused.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,042 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSNotification, _objData=UmlObjectData [id=3575, uuid={5F493EBC-63E7-480b-B344-66194892E87B}, since=null, name=RejectRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of reject issued in reception.', htmlDescription='

Number of reject issued in reception.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,042 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSNotification, _objData=UmlObjectData [id=3576, uuid={0D61F583-C436-4314-A1B5-C6FA04940FD7}, since=null, name=RejectTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received Reject on transmission.', htmlDescription='

Number of received Reject on transmission.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,043 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVCommon, _objData=UmlObjectData [id=4054, uuid={8F7CBDDF-5309-4c57-A3E5-B0C820FEC605}, since=null, name=GroupUpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations at KDC that failed.', htmlDescription='

Number of update key negotiations at KDC that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,043 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVCommon, _objData=UmlObjectData [id=4055, uuid={72C144FE-7138-4153-8C18-0FC5BC1E8998}, since=null, name=KDCAuthFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Count of the number of authorization failures against KDC.', htmlDescription='

Count of the number of authorization failures against KDC.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,043 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVCommon, _objData=UmlObjectData [id=4056, uuid={10AD71AC-8E2C-4afb-88B0-4CAAF7C06C47}, since=null, name=KDCSessionKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Session Key establishment between peer and KDC failed.', htmlDescription='

Session Key establishment between peer and KDC failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,043 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=4057, uuid={C97C7E95-F1A3-49a6-84CD-F37F54D4DCAA}, since=null, name=CBRef, alias=, stereotype=index, visibility=public, txtDescription='Reference of the GSE/SV Control block being supervised.', htmlDescription='

Reference of the GSE/SV Control block being supervised.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,043 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=4058, uuid={A3300C61-0405-4178-AA24-56139902DFD1}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,043 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=4059, uuid={B346F0EE-81BD-4f02-BD05-3DEB6C966B08}, since=null, name=OutUv, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer underflows detected due to outgoing serial communication.', htmlDescription='

Number of buffer underflows detected due to outgoing serial communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,044 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=4366, uuid={10164DB8-AB84-46a3-9325-B0D817803F9A}, since=null, name=APPID, alias=, stereotype=protocol, visibility=public, txtDescription='Application Identifier being expected.', htmlDescription='

Application Identifier being expected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,044 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=3829, uuid={F6725CAA-C95B-431e-BCC4-6877D34082A8}, since=null, name=TxPduPerSecond, alias=, stereotype=protocol, visibility=public, txtDescription='Count of the number of SV telegrams sent within a second on the association.', htmlDescription='

Count of the number of SV telegrams sent within a second on the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,044 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4061, uuid={E70C3857-A774-4635-9A52-713A3189C31C}, since=null, name=CBRef, alias=, stereotype=index, visibility=public, txtDescription='Reference of the GSE/SV Control block being supervised.', htmlDescription='

Reference of the GSE/SV Control block being supervised.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,044 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4062, uuid={2E060239-4EB9-4a8a-A7C3-AED6EDA8C5A3}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,044 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4063, uuid={B4825E20-07C1-4cde-94AD-CFE37852AE7F}, since=null, name=InOvCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer overflows detected due to incoming communication. This counter is incremented each time the buffer space is insufficient to receive an incoming message.', htmlDescription='

Number of buffer overflows detected due to incoming communication. This counter is incremented each time the buffer space is insufficient to receive an incoming message.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,044 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4064, uuid={BA2766B5-6FA2-4c9b-85EA-7353D0790FDF}, since=null, name=MessageIntegrityFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number messages that were not using the proper Group Key.', htmlDescription='

Number messages that were not using the proper Group Key.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,044 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4067, uuid={85138267-8516-4911-9D4D-D78674944F2D}, since=null, name=RxPduPerSecond, alias=, stereotype=protocol, visibility=public, txtDescription='Count of the number of SV telegrams received within a second on the association.', htmlDescription='

Count of the number of SV telegrams received within a second on the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,044 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4365, uuid={7955A1E1-9F67-46da-A434-8EA5BA1C0BE2}, since=null, name=APPID, alias=, stereotype=protocol, visibility=public, txtDescription='Application identified being expected.', htmlDescription='

Application identified being expected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,044 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4367, uuid={2B5045AC-99BD-4941-BCD5-36ABDDCAC2FF}, since=null, name=RxAPPID, alias=, stereotype=protocol, visibility=public, txtDescription='Last Application Identifier being received.', htmlDescription='

Last Application Identifier being received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f5e5e3, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,044 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3844, uuid={C24FF010-3527-40b6-A143-3CBD3C95FC45}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,044 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=4052, uuid={4D212643-73E9-4b01-B3E4-1419141F7F5C}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of PDUs received that could not be decrypted', htmlDescription='

Number of PDUs received that could not be decrypted

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,044 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3845, uuid={62E2AB60-AB61-489b-9B09-FC14A0BF4694}, since=null, name=PDUSizeFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDU with wrong size. This is meaningful only for IP telegrams.', htmlDescription='

Number of received PDU with wrong size. This is meaningful only for IP telegrams.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,044 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3846, uuid={A6C46361-5561-43d2-8B67-6DAC7566C062}, since=null, name=PIP, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed SV information can be obtained for each IP publisher connection.', htmlDescription='

Provides a table through which more detailed SV information can be obtained for each IP publisher connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=994, _eaTypeName=SVPublisherAssociationIP, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@132ec19, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}]. +2024-09-07 21:42:20,045 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3847, uuid={1C5E81A0-3007-4221-BBCF-B4538CDCD068}, since=null, name=PL2, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed SV information can be obtained for each L2 (Ethernet) publisher connection.', htmlDescription='

Provides a table through which more detailed SV information can be obtained for each L2 (Ethernet) publisher connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=995, _eaTypeName=SVPublisherAssociationL2, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c4039c, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}]. +2024-09-07 21:42:20,045 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3848, uuid={F24AD27F-DE3D-4d47-BF82-D81306D727FD}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=997, _eaTypeName=SVNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e45eb6, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,045 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3849, uuid={E61DCB59-D671-4e3e-AF63-7A7934A7139B}, since=null, name=SIP, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed SV information can be obtained for each IP subscriber connection.', htmlDescription='

Provides a table through which more detailed SV information can be obtained for each IP subscriber connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=998, _eaTypeName=SVSubcriberAssociationIP, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@19f99ea, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}]. +2024-09-07 21:42:20,045 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3850, uuid={3A8AA373-DF4D-4203-9E17-D1A556AE4626}, since=null, name=SL2, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed SV information can be obtained for each L2 (Ethernet) subscriber connection.', htmlDescription='

Provides a table through which more detailed SV information can be obtained for each L2 (Ethernet) subscriber connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=999, _eaTypeName=SVSubcriberAssociationL2, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1efef64, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}]. +2024-09-07 21:42:20,045 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVPublisherAssociationIP, _objData=UmlObjectData [id=3817, uuid={3EC59ACA-14AB-4adf-823D-4EF3DBBA4715}, since=null, name=DestIpAddr, alias=, stereotype=protocol, visibility=public, txtDescription='Destination IP address.', htmlDescription='

Destination IP address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 21:42:20,045 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVPublisherAssociationIP, _objData=UmlObjectData [id=3818, uuid={3B41797D-66B7-473b-A47C-92A5B0C6DB2C}, since=null, name=DestIpAddrType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,045 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVPublisherAssociationL2, _objData=UmlObjectData [id=3819, uuid={2E77B17F-D224-4764-9C29-36CD379797D7}, since=null, name=DestMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f4468b, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 21:42:20,045 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVSubcriberAssociationIP, _objData=UmlObjectData [id=3823, uuid={CF21D44F-A555-48cc-99A1-D49E20097B5D}, since=null, name=SrcIpAddr, alias=, stereotype=protocol, visibility=public, txtDescription='Source IP address.', htmlDescription='

Source IP address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 21:42:20,045 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVSubcriberAssociationIP, _objData=UmlObjectData [id=3824, uuid={3AB68377-764F-4314-851D-FEE4B40FC99E}, since=null, name=SrcIpAddrType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,045 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVSubcriberAssociationL2, _objData=UmlObjectData [id=3825, uuid={A6F5F486-2B40-4620-ADA1-3CBA7408C0D8}, since=null, name=SrcMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f4468b, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 21:42:20,045 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=3750, uuid={AFDD17DA-6B2F-4bc7-8F89-0E63A9B7D1D7}, since=null, name=ConfRevMis, alias=, stereotype=protocol, visibility=public, txtDescription='True indicates that the expected configuration revision did not match the received number.', htmlDescription='

True indicates that the expected configuration revision did not match the received number.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@756e4d, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,046 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=3755, uuid={2E11DB8F-06FC-485f-8C56-703E601D8A60}, since=null, name=NdsComm, alias=, stereotype=protocol, visibility=public, txtDescription='Duplicated Message received', htmlDescription='

Duplicated Message received

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@756e4d, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,046 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4368, uuid={9075FAD9-2CE1-4e5d-907F-DBD0B4B1CC32}, since=null, name=ConfRev, alias=, stereotype=protocol, visibility=public, txtDescription='Last configuration Revision being received.', htmlDescription='

Last configuration Revision being received.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,046 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4369, uuid={E4803687-6245-40fd-AB97-A5A553A34C59}, since=null, name=RxConfRev, alias=, stereotype=protocol, visibility=public, txtDescription='True indicates that the expected configuration revision did not match the received number.', htmlDescription='

True indicates that the expected configuration revision did not match the received number.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,046 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=3758, uuid={EBC5C199-473E-4859-B0FE-DD1C08CC93AF}, since=null, name=TalExpCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count of the received TAL expirations that have been detected.', htmlDescription='

Count of the received TAL expirations that have been detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,046 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4370, uuid={09E69AF6-2C2B-46e9-B274-E5220B53D94D}, since=null, name=OosErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of times out of sequence of GOOSE has been observed.', htmlDescription='

Number of times out of sequence of GOOSE has been observed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,046 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4371, uuid={5B152C15-4AC4-421a-87EB-F81484BD2524}, since=null, name=DupMsgRx, alias=, stereotype=protocol, visibility=public, txtDescription='If true, the subscription needs commissioning, i.e., the received message does not conform to the current subscription configuration (either the 'dataSetRef' is wrong, the data set members, the configuration revision number, or no subscription is configured at all).', htmlDescription='

If true, the subscription needs commissioning, i.e., the received message does not conform to the current subscription configuration (either the 'dataSetRef' is wrong, the data set members, the configuration revision number, or no subscription is configured at all).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,046 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4372, uuid={313447D4-3710-47a8-85FF-DAA9316F8720}, since=null, name=DatSet, alias=, stereotype=protocol, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,046 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4373, uuid={8E3C588A-BEC3-454f-861F-712BADFC92AA}, since=null, name=RxDatSet, alias=, stereotype=protocol, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f5e5e3, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,046 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4374, uuid={C304ABDA-E4BA-4cfc-BAD9-17425F5A0611}, since=null, name=GoID, alias=, stereotype=protocol, visibility=public, txtDescription='GOOSE Identifier being expected.', htmlDescription='

GOOSE Identifier being expected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,046 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4375, uuid={985D635D-D095-4282-B40B-8D3F15CDC152}, since=null, name=RxGoID, alias=, stereotype=protocol, visibility=public, txtDescription='Last GOOSE Identifier being received.', htmlDescription='

Last GOOSE Identifier being received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f5e5e3, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,047 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4376, uuid={3BC29513-E13B-40a1-A86D-4B3406FC2CD1}, since=null, name=StNum, alias=, stereotype=protocol, visibility=public, txtDescription='StNum being received from last accepted GOOSE message.', htmlDescription='

StNum being received from last accepted GOOSE message.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,047 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4377, uuid={699EF357-D4F5-4445-8F55-446FF895C089}, since=null, name=SqNum, alias=, stereotype=protocol, visibility=public, txtDescription='SqNum being received from last accepted GOOSE message.', htmlDescription='

SqNum being received from last accepted GOOSE message.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,047 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4378, uuid={778EF329-63E8-4a88-A172-D2DAD54D972A}, since=null, name=RejectStNum, alias=, stereotype=protocol, visibility=public, txtDescription='Last StNum being rejected.', htmlDescription='

Last StNum being rejected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,047 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4379, uuid={A699C155-79DE-4187-BDF5-AFD122DAD7CA}, since=null, name=RejectSqNum, alias=, stereotype=protocol, visibility=public, txtDescription='Last SqNum being rejected.', htmlDescription='

Last SqNum being rejected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,047 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4494, uuid={98542797-3D0F-4f54-96D7-B2BEBEAF605A}, since=null, name=RxT, alias=, stereotype=protocol, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@fc185, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,048 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3243, uuid={71555478-FCAD-4dae-B530-6956D1B5D475}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,048 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=4053, uuid={A432D351-022A-4b49-AA3D-61CBB91067FC}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of PDUs received that could not be decrypted', htmlDescription='

Number of PDUs received that could not be decrypted

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,048 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3773, uuid={4B58CE58-88E3-4e07-9FF3-FE0181F95942}, since=null, name=InErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of PDUs received that were in error due to malformed content, parity errors or configuration mismatch.', htmlDescription='

Number of PDUs received that were in error due to malformed content, parity errors or configuration mismatch.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,048 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=4121, uuid={D727F0F0-5C88-4fc4-83C5-D69614BE4ED8}, since=null, name=InUnexpectedMulticast, alias=, stereotype=protocol, visibility=public, txtDescription='Count of unexpected multicast received PDUs. This apply to GOOSE only.', htmlDescription='

Count of unexpected multicast received PDUs. This apply to GOOSE only.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,049 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3744, uuid={8BC8E8B9-0BA6-4277-B1B1-23F48CD0FD30}, since=null, name=PIP, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed GSE information can be obtained for each IP publisher connection.', htmlDescription='

Provides a table through which more detailed GSE information can be obtained for each IP publisher connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=796, _eaTypeName=GSEPublisherAssociationIP, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@6fa38a, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}]. +2024-09-07 21:42:20,049 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3745, uuid={10373ECE-DF59-4995-BA92-240A3CC2D94B}, since=null, name=PL2, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed GSE information can be obtained for each L2 (Ethernet) publisher connection.', htmlDescription='

Provides a table through which more detailed GSE information can be obtained for each L2 (Ethernet) publisher connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=984, _eaTypeName=GSEPublisherAssociationL2, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@a3ffec, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}]. +2024-09-07 21:42:20,049 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3618, uuid={BF431EAB-1B49-4c5a-8BC3-171FED573957}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=930, _eaTypeName=GSENotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1caeb3e, 1_taggedValues{Version=1}]. +2024-09-07 21:42:20,049 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3046, uuid={AA8FC433-0ACC-4dcf-9B1C-59469C28FCA5}, since=null, name=SIP, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed GSE information can be obtained for each IP subscriber connection.', htmlDescription='

Provides a table through which more detailed GSE information can be obtained for each IP subscriber connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=979, _eaTypeName=GSESubcriberAssociationIP, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1e88b3c, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}]. +2024-09-07 21:42:20,049 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3746, uuid={F6A461DF-31BD-4546-8B62-BE2A79D53F41}, since=null, name=SL2, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed GSE information can be obtained for each L2 (Ethernet) subscriber connection.', htmlDescription='

Provides a table through which more detailed GSE information can be obtained for each L2 (Ethernet) subscriber connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=977, _eaTypeName=GSESubcriberAssociationL2, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d80b78, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}]. +2024-09-07 21:42:20,049 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEPublisherAssociationIP, _objData=UmlObjectData [id=3803, uuid={9C513452-9437-4849-894C-B2C33952D4F0}, since=null, name=DestIpAddr, alias=, stereotype=protocol, visibility=public, txtDescription='Destination IP address.', htmlDescription='

Destination IP address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 21:42:20,049 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEPublisherAssociationIP, _objData=UmlObjectData [id=3802, uuid={03D1AF7D-F2B5-425c-8FD2-63B09E3887F9}, since=null, name=DestIpAddrType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,049 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEPublisherAssociationL2, _objData=UmlObjectData [id=3801, uuid={53A15D60-889F-4c5a-BCF1-89AF1D539B97}, since=null, name=DestMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f4468b, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 21:42:20,049 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEPublisherAssociationL2, _objData=UmlObjectData [id=4362, uuid={1EF8C591-A06A-43cb-8FBF-95E679E109F8}, since=null, name=SrcMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f4468b, 2_taggedValues{mibIndex=no, Version=1}]. +2024-09-07 21:42:20,050 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubcriberAssociationIP, _objData=UmlObjectData [id=3740, uuid={FFD24620-C094-400d-8BD1-F48524198222}, since=null, name=SrcIpAddr, alias=, stereotype=protocol, visibility=public, txtDescription='Source IP address. .', htmlDescription='

Source IP address. .

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 21:42:20,050 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubcriberAssociationIP, _objData=UmlObjectData [id=3739, uuid={B418786B-EB08-4581-8037-B7C3A6E0311A}, since=null, name=SrcIpAddrType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,050 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubcriberAssociationL2, _objData=UmlObjectData [id=3742, uuid={556B251D-88A4-4ac8-855E-D537776F059A}, since=null, name=SrcMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP Profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP Profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f4468b, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 21:42:20,050 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubcriberAssociationL2, _objData=UmlObjectData [id=4361, uuid={5024F7E1-FEC6-4125-AF1E-FFC7C29B18D8}, since=null, name=DstMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP Profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP Profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f4468b, 2_taggedValues{mibIndex=no, Version=1}]. +2024-09-07 21:42:20,050 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=2651, uuid={219E72A9-5B41-4365-A90E-491097F96C10}, since=null, name=clockTamperDetected, alias=, stereotype=security, visibility=public, txtDescription='Timestamp of when a tamper of a clock has been detected', htmlDescription='

Timestamp of when a tamper of a clock has been detected

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@fc185, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,050 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=2656, uuid={C95F5CA0-6663-41c7-BAE9-BB32F924F8F1}, since=null, name=LastClockHoldover, alias=, stereotype=health, visibility=public, txtDescription='Indicates the timestamp at which the last Holdover was detected.', htmlDescription='

Indicates the timestamp at which the last Holdover was detected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@fc185, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,050 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=2657, uuid={FF50E5F4-F0FB-48b1-B605-B025F27CA0DD}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='When written True, the statistics of clockTamperDetected and LastClockHoldover are set back to a value of zero. The values in the clocks table are not impacted by this reset.', htmlDescription='

When written True, the statistics of clockTamperDetected and LastClockHoldover are set back to a value of zero. The values in the clocks table are not impacted by this reset.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,051 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=2650, uuid={106DFE8D-727B-42bf-84CA-4C8E484CB760}, since=null, name=Clocks, alias=, stereotype=table, visibility=public, txtDescription='Table of information regarding the clock sources that are in use.', htmlDescription='

Table of information regarding the clock sources that are in use.

'], _isConst=false, _isStatic=false, _multiplicity=[0..n], _initValue=, _eaTypeId=608, _eaTypeName=ClockEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ce4f0a, 3_taggedValues{mibPrefix=cLK, objectIdentity=cLKclockEntry, Version=0}]. +2024-09-07 21:42:20,051 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=3631, uuid={31D800F0-35C2-4312-95B7-E3A890982D86}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=944, _eaTypeName=SecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3a8624, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,051 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2646, uuid={E98C8059-D343-41c5-A9FD-C45F4FA62052}, since=null, name=ClockAccuracy, alias=, stereotype=health, visibility=public, txtDescription='Reports the current expected accuracy of this clock in nanoseconds. A value of -1 indicates that the accuracy is unknown or estimated to be larger than 2147483647 ns.', htmlDescription='

Reports the current expected accuracy of this clock in nanoseconds. A value of -1 indicates that the accuracy is unknown or estimated to be larger than 2147483647 ns.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,051 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=3085, uuid={50EFFF08-CB85-4033-8EB9-8FC29AACD6DC}, since=null, name=ClockIndex, alias=, stereotype=index, visibility=public, txtDescription='Clock Index', htmlDescription='

Clock Index

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 21:42:20,051 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=3729, uuid={E0CAC256-AD0A-4515-9F48-63353DA71841}, since=null, name=ClockIssue, alias=, stereotype=performance, visibility=public, txtDescription='Reports the presence of any clock issue.', htmlDescription='

Reports the presence of any clock issue.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=776, _eaTypeName=TimSyncIssueType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1933fd1, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,051 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2649, uuid={1591A4AF-7AD8-4720-B04E-7C389735450F}, since=null, name=ClockTamperDetected, alias=, stereotype=security, visibility=public, txtDescription='Clock tamper have been detected.', htmlDescription='

Clock tamper have been detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@756e4d, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,051 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2645, uuid={F98377B8-808A-4705-81F9-99E14B733B97}, since=null, name=TmSrc, alias=, stereotype=performance, visibility=public, txtDescription='Reports the clock sync method.', htmlDescription='

Reports the clock sync method.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=777, _eaTypeName=TimSyncSrcType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2d45ba, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,051 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2655, uuid={EFB862ED-119C-4441-AD7D-3F382A7C0C92}, since=null, name=HoldOver, alias=, stereotype=health, visibility=public, txtDescription='The Holdover flag shall be set True whenever the Time Traceable flag is True and the IED is not receiving a qualified signal from a recognized standard time source. It shall be set False otherwise. Therefore, this flag gives an immediate indication of loss of the time reference signal.', htmlDescription='

The Holdover flag shall be set True whenever the Time Traceable flag is True and the IED is not receiving a qualified signal from a recognized standard time source. It shall be set False otherwise. Therefore, this flag gives an immediate indication of loss of the time reference signal.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@756e4d, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,051 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2648, uuid={A8CB6533-B21C-4986-941B-F8F32BD739E3}, since=null, name=LastSyncOffset, alias=, stereotype=health, visibility=public, txtDescription='Reports the time offset (in seconds) computed from the last qualified synchronization signal received by this clock. This value is used by the clock servo to gradually adjust the clock.', htmlDescription='

Reports the time offset (in seconds) computed from the last qualified synchronization signal received by this clock. This value is used by the clock servo to gradually adjust the clock.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,051 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2653, uuid={AAB46675-D113-417c-8AB8-E4E268247EF8}, since=null, name=TimeSourceAvailable, alias=, stereotype=health, visibility=public, txtDescription='The Time Source Available flag shall be set True whenever the IED is receiving a qualified signal from a recognized standard time source. If it loses this signal, then after an appropriate period (during which the additional holdover uncertainty is not a significant impairment to performance), the Time Source Available flag shall be set False. The duration of the period after loss of the time signal and negation of the Time Source Available flag depends on the quality of the holdover oscillator and the required time quality, and may be a configurable IED parameter. +This flag may not immediately be set False, because momentary loss of the time signal may not adversely affect IED time quality. The Holdover flag provides an immediate indication of this condition.', htmlDescription='

The Time Source Available flag shall be set True whenever the IED is receiving a qualified signal from a recognized standard time source. If it loses this signal, then after an appropriate period (during which the additional holdover uncertainty is not a significant impairment to performance), the Time Source Available flag shall be set False. The duration of the period after loss of the time signal and negation of the Time Source Available flag depends on the quality of the holdover oscillator and the required time quality, and may be a configurable IED parameter.

This flag may not immediately be set False, because momentary loss of the time signal may not adversely affect IED time quality. The Holdover flag provides an immediate indication of this condition.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@756e4d, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,052 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2652, uuid={ECD9FD6B-5168-426a-BF8F-D2B9B57110B0}, since=null, name=TimeTraceable, alias=, stereotype=health, visibility=public, txtDescription='The Time Traceable flag shall be set False before the IED has received and qualified a signal from a recognized standard time source. Once it has locked to the recognized standard time source and stabilized, the Time Traceable flag shall be set True. The Time Traceable flag shall not be set False again, so long as the IED can estimate its holdover uncertainty. If at some point, perhaps due to an extended holdover interval, the IED no longer can estimate its holdover uncertainty, then the Time Traceable flag shall be set False.', htmlDescription='

The Time Traceable flag shall be set False before the IED has received and qualified a signal from a recognized standard time source. Once it has locked to the recognized standard time source and stabilized, the Time Traceable flag shall be set True. The Time Traceable flag shall not be set False again, so long as the IED can estimate its holdover uncertainty. If at some point, perhaps due to an extended holdover interval, the IED no longer can estimate its holdover uncertainty, then the Time Traceable flag shall be set False.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@756e4d, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,052 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::SecurityNotification, _objData=UmlObjectData [id=3632, uuid={04B87A68-22D2-4882-A4A5-D62CF502F233}, since=null, name=clockTamperDetected, alias=, stereotype=security, visibility=public, txtDescription='Timestamp of when a tamper of a clock has been detected', htmlDescription='

Timestamp of when a tamper of a clock has been detected

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@fc185, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,052 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3319, uuid={6FD1D092-9094-4f03-8B24-7DCD8E2358AD}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='Interface number', htmlDescription='

Interface number

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 21:42:20,052 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3320, uuid={6EB13B61-C6AA-4e12-9BC2-177D8DB73982}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the CPU.', htmlDescription='

Description of the CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,052 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3415, uuid={2252ED03-8326-4d40-957F-9921BA0D74BE}, since=null, name=IntType, alias=, stereotype=identity, visibility=public, txtDescription='Interface type (Wired or Wireless)', htmlDescription='

Interface type (Wired or Wireless)

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=866, _eaTypeName=IntType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1629756, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,052 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3323, uuid={5B1D4273-C6BF-44d8-93A8-EE46A1AEBA45}, since=null, name=Operable, alias=, stereotype=health, visibility=public, txtDescription='Indicates that CPU is operable (it can be either online or offline)', htmlDescription='

Indicates that CPU is operable (it can be either online or offline)

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,052 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3318, uuid={C6769525-A8F5-4599-84AB-E17EB20458CD}, since=null, name=Online, alias=, stereotype=health, visibility=public, txtDescription='Indicate that CPU is online and active', htmlDescription='

Indicate that CPU is online and active

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,053 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3322, uuid={CF6212A6-1358-4cd8-AC00-7BE9C09A5BFE}, since=null, name=Faulty, alias=, stereotype=health, visibility=public, txtDescription='CPU generated errors', htmlDescription='

CPU generated errors

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,053 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3321, uuid={AE8F0410-796C-42ec-BA19-BA8D3B558380}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,053 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3652, uuid={F38DE40F-DC22-441d-BD42-E3990926DFB1}, since=null, name=serAvail, alias=, stereotype=performance, visibility=public, txtDescription='Number of serial interfaces installed on the device', htmlDescription='

Number of serial interfaces installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,053 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3657, uuid={4E66DA97-6D8F-450a-A00B-ADE0FEE47CE4}, since=null, name=serActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of serial interfaces active on the device', htmlDescription='

Number of serial interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,053 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3662, uuid={6F91E49F-3A68-4208-A29A-512F23CC10B0}, since=null, name=serFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing serial Interfaces on the device', htmlDescription='

Number of failing serial Interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,053 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3653, uuid={B23510B0-5513-4f80-9792-63DED4A16F44}, since=null, name=ethAvail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of ethernet Interfaces installed on the device', htmlDescription='

Number of ethernet Interfaces installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,053 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3658, uuid={6B6B3BCD-0AE0-4c6f-9FB3-472BEC079B13}, since=null, name=ethActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of ethernet interfaces active on the device', htmlDescription='

Number of ethernet interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,053 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3663, uuid={536CCD9F-B77E-465a-8898-FCD7644820AD}, since=null, name=ethFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing ethernet interfaces on the device', htmlDescription='

Number of failing ethernet interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,053 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3654, uuid={1C804DCB-08CB-41f0-B6F7-384A70C8C3C8}, since=null, name=algAvail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of analogue Interfaces installed on the device', htmlDescription='

Number of analogue Interfaces installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,053 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3659, uuid={29FE15BB-45B5-47c2-A74E-3EF574575434}, since=null, name=algActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of analogue interfaces Active on the device', htmlDescription='

Number of analogue interfaces Active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,053 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3664, uuid={54797821-2674-4526-B44A-9F87D01A6991}, since=null, name=algFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing analogue interfaces on the device', htmlDescription='

Number of failing analogue interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,053 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3655, uuid={74214291-7A17-4b83-AA3C-A305991D037A}, since=null, name=keyAvail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of keyboard Interface installed on the device', htmlDescription='

Number of keyboard Interface installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,053 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3660, uuid={AB6E018D-82C3-4524-8D58-58164F10E51B}, since=null, name=keyActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of keyboard interface active on the device', htmlDescription='

Number of keyboard interface active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,053 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3665, uuid={5F0D156E-80E6-401b-9854-FCA4DCA132BB}, since=null, name=keyFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing keyboard interface on the device', htmlDescription='

Number of failing keyboard interface on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,053 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3656, uuid={4C0A881D-B242-49b2-A9F8-DF5C3DF79322}, since=null, name=usbAvail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of Universal Serial Bus Interface installed on the device', htmlDescription='

Number of Universal Serial Bus Interface installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,053 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3661, uuid={6078BDD9-2E54-4b6b-A1B3-CCDBFE46E859}, since=null, name=usbActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of Universal Serial Bus interface active on the device', htmlDescription='

Number of Universal Serial Bus interface active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,053 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3666, uuid={64E92266-4098-47ce-9874-DBF194F6A4D1}, since=null, name=usbFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing Universal Serial Bus interface on the device', htmlDescription='

Number of failing Universal Serial Bus interface on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,053 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3283, uuid={6E4426CC-406A-429e-AD6D-1EECA102F2FC}, since=null, name=SER, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of serial interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of serial interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=836, _eaTypeName=SEREntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@4ed9f0, 3_taggedValues{mibPrefix=sER, objectIdentity=intSERIALEntry, Version=0}]. +2024-09-07 21:42:20,054 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3297, uuid={4C6CDBC0-62B0-4881-A810-A6CE56DACD81}, since=null, name=ETH, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of Ethernet interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of Ethernet interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=838, _eaTypeName=ETHEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@4f787b, 3_taggedValues{mibPrefix=eTH, objectIdentity=intETHEntry, Version=0}]. +2024-09-07 21:42:20,054 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3298, uuid={8794992C-DE7F-4bf7-83EC-5592356A181C}, since=null, name=USB, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of USB interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of USB interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=840, _eaTypeName=USBEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@5cb137, 3_taggedValues{mibPrefix=uSB, objectIdentity=intUSBEntry, Version=0}]. +2024-09-07 21:42:20,054 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3299, uuid={B0761727-4B75-4eb5-82B3-0BB613618FC7}, since=null, name=KEY, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of keyboard interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of keyboard interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=842, _eaTypeName=KEYEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@41eaa2, 3_taggedValues{mibPrefix=kEY, objectIdentity=intKEYEntry, Version=0}]. +2024-09-07 21:42:20,054 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3328, uuid={D97ACC7A-DBFA-4c92-BC5C-FF187AF4C4EF}, since=null, name=ALG, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of analogue interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of analogue interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=847, _eaTypeName=ALGEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d62f43, 3_taggedValues{mibPrefix=aLG, objectIdentity=intALGEntry, Version=0}]. +2024-09-07 21:42:20,054 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3678, uuid={B5CE0636-5BE9-4566-8B6A-2103E2769BA9}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object', htmlDescription='

State events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=946, _eaTypeName=Notification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@14b1c02, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,054 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::KEYEntry, _objData=UmlObjectData [id=3327, uuid={6A06B961-6E51-4f13-B73C-32E26BB4F831}, since=null, name=Locked, alias=, stereotype=health, visibility=public, txtDescription='Indicate a locked status for the device keyboard', htmlDescription='

Indicate a locked status for the device keyboard

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,054 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::SEREntry, _objData=UmlObjectData [id=3325, uuid={BD2A2516-013B-4f4c-83C4-6D873D08A614}, since=null, name=ByteIn, alias=, stereotype=protocol, visibility=public, txtDescription='Inbound Byte counter', htmlDescription='

Inbound Byte counter

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,054 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::SEREntry, _objData=UmlObjectData [id=3326, uuid={DB538A18-009B-4f5a-B7CD-6FDE73E706B1}, since=null, name=ByteOut, alias=, stereotype=protocol, visibility=public, txtDescription='Outbound Byte counter', htmlDescription='

Outbound Byte counter

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,054 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3668, uuid={51550105-54C1-4ba6-BC2E-E028F066BD90}, since=null, name=serActive, alias=, stereotype=health, visibility=public, txtDescription='Number of serial Interfaces active on the device', htmlDescription='

Number of serial Interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,054 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3669, uuid={BE46F414-6E9C-412e-9E70-29513A7DAA18}, since=null, name=serFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing serial Interfaces on the device', htmlDescription='

Number of failing serial Interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,054 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3670, uuid={78956E09-8F39-4f86-A5CE-B8DBF44C7D6E}, since=null, name=ethActive, alias=, stereotype=health, visibility=public, txtDescription='Number of ethernet interfaces active on the device', htmlDescription='

Number of ethernet interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,054 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3671, uuid={101FCB6C-9867-4262-8E50-6F057EEAF643}, since=null, name=ethFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing ethernet interfaces on the device', htmlDescription='

Number of failing ethernet interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,054 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3672, uuid={5171FAC8-436F-42e9-B8E2-0C31C19FAC68}, since=null, name=algActive, alias=, stereotype=health, visibility=public, txtDescription='Number of analogue interfaces active on the device', htmlDescription='

Number of analogue interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,054 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3673, uuid={9711AA3F-E429-4304-960A-AA9CF2BCC003}, since=null, name=algFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing analogue interfaces on the device', htmlDescription='

Number of failing analogue interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,054 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3667, uuid={D523B290-8CF4-4630-ADC0-AA4FF4336A1B}, since=null, name=keyActive, alias=, stereotype=health, visibility=public, txtDescription='Number of keyboard interfaces active on the device', htmlDescription='

Number of keyboard interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,054 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3674, uuid={367C987D-D473-46cd-A5B1-6B3A1D275D36}, since=null, name=keyFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing keyboard interfaces on the device', htmlDescription='

Number of failing keyboard interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,054 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3675, uuid={0F833AFE-832E-4673-99D3-42CDEFDDF7E0}, since=null, name=usbActive, alias=, stereotype=health, visibility=public, txtDescription='Number of Universal Serial Bus interfaces active on the device', htmlDescription='

Number of Universal Serial Bus interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,054 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3676, uuid={E957BF40-9F27-4a63-B2DD-16F525F01FA1}, since=null, name=usbFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing Universal Serial Bus interfaces on the device', htmlDescription='

Number of failing Universal Serial Bus interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:42:20,054 [main] INFO EaModelBuilder - assigning type for operations' parameters and exceptions ... +2024-09-07 21:42:20,054 [main] INFO EaModelBuilder - cross-checking dependencies ... +2024-09-07 21:42:20,055 [main] INFO EaModelBuilder - cross-checking associations ... +2024-09-07 21:42:20,055 [main] INFO Util - time=[0:00:00.049] linked builders. +2024-09-07 21:42:20,055 [main] INFO Util - +2024-09-07 21:42:20,055 [main] INFO Util - +2024-09-07 21:42:20,055 [main] INFO Util - ------------------------------------------------ +2024-09-07 21:42:20,055 [main] INFO Util - creating in-memory model and exporting normative diagrams... +2024-09-07 21:42:21,448 [main] TRACE UmlPackage - ---- created null model package NullCIM +2024-09-07 21:42:21,452 [main] TRACE UmlClass - created (826) OTHER_CIM CIM null CIM class NullCIM::NullCIM +2024-09-07 21:42:21,452 [main] TRACE UmlPackage - ---- created null model package NullIEC61850 +2024-09-07 21:42:21,452 [main] TRACE UmlClass - created (830) OTHER_IEC61850 IEC61850 null 61850 class NullIEC61850::NullIEC61850 +2024-09-07 21:42:21,452 [main] INFO EaModelBuilder - creating in-memory package structure ... +2024-09-07 21:42:21,453 [main] TRACE UmlPackage - ---- created model package iso +2024-09-07 21:42:21,453 [main] TRACE UmlPackage - ---- created top package standard +2024-09-07 21:42:21,453 [main] TRACE UmlPackage - ---- created package iec62351 +2024-09-07 21:42:21,453 [main] TRACE UmlPackage - ---- created package part7 +2024-09-07 21:42:21,453 [main] TRACE UmlPackage - ---- created package Profiles +2024-09-07 21:42:21,462 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{4642A2B9-A297-45be-A2B5-28C4F1A2B373}.png6027258105220175197.png. +2024-09-07 21:42:22,060 [main] DEBUG JapiDiagramExporter - ... saved in 600 ms +2024-09-07 21:42:22,062 [main] TRACE UmlDiagram - created (51) OTHER_CIM CIM class Profiles::Part7Profiles +2024-09-07 21:42:22,062 [main] TRACE UmlPackage - ---- created package nsmAgent +2024-09-07 21:42:22,063 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{8F3F8B93-6E15-4fcf-9C40-83EB793F28A5}.png829107863622465401.png. +2024-09-07 21:42:22,781 [main] DEBUG JapiDiagramExporter - ... saved in 719 ms +2024-09-07 21:42:22,782 [main] TRACE UmlDiagram - created (52) OTHER_CIM CIM class nsmAgent::nsmAgent +2024-09-07 21:42:22,782 [main] TRACE UmlPackage - ---- created package Overview +2024-09-07 21:42:22,784 [main] TRACE UmlSkipped - created (941) OTHER_CIM CIM boundary Overview::IEC 60870, DNP and IEC 62351 +2024-09-07 21:42:22,784 [main] TRACE UmlSkipped - created (939) OTHER_CIM CIM boundary Overview::IEC 61850 +2024-09-07 21:42:22,786 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{1EC9B9AC-962E-4b2c-A2A8-EFB524CF896E}.png6153816131539676742.png. +2024-09-07 21:42:23,460 [main] DEBUG JapiDiagramExporter - ... saved in 676 ms +2024-09-07 21:42:23,460 [main] TRACE UmlDiagram - created (23) OTHER_CIM CIM class Overview::Part7 Classes Overview +2024-09-07 21:42:23,460 [main] TRACE UmlPackage - ---- created package BaseTypes +2024-09-07 21:42:23,460 [main] TRACE UmlPackage - ---- created package Abstract Types +2024-09-07 21:42:23,460 [main] TRACE UmlPackage - ---- created package EnumeratedTypes +2024-09-07 21:42:23,460 [main] TRACE UmlPackage - ---- created package Environmental Agent +2024-09-07 21:42:23,461 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{DD68DDD1-5EEB-4a23-B16C-1FF759A2EE6A}.png1961676334217965892.png. +2024-09-07 21:42:23,694 [main] DEBUG JapiDiagramExporter - ... saved in 234 ms +2024-09-07 21:42:23,694 [main] TRACE UmlDiagram - created (8) OTHER_CIM CIM class Environmental Agent::Environmental +2024-09-07 21:42:23,694 [main] TRACE UmlPackage - ---- created package IED Agent +2024-09-07 21:42:23,695 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{C3FD1BF6-CB13-4fb3-9C75-D9FACF470ACD}.png4044686661630884032.png. +2024-09-07 21:42:24,023 [main] DEBUG JapiDiagramExporter - ... saved in 329 ms +2024-09-07 21:42:24,023 [main] TRACE UmlDiagram - created (9) OTHER_CIM CIM class IED Agent::IED +2024-09-07 21:42:24,023 [main] TRACE UmlPackage - ---- created package Application Protocols Agents +2024-09-07 21:42:24,023 [main] TRACE UmlPackage - ---- created package Common objects +2024-09-07 21:42:24,024 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{583FFED4-9F6C-420f-88B3-80FF9F387121}.png5528470002908515890.png. +2024-09-07 21:42:24,192 [main] DEBUG JapiDiagramExporter - ... saved in 168 ms +2024-09-07 21:42:24,193 [main] TRACE UmlDiagram - created (64) OTHER_CIM CIM class Common objects::Application Protocol common objects +2024-09-07 21:42:24,193 [main] TRACE UmlPackage - ---- created package IEC62351-3 ed.2 Agent +2024-09-07 21:42:24,193 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{38D28719-1A0B-491f-9010-AF2D3032BB4B}.png3895733127718501175.png. +2024-09-07 21:42:24,509 [main] DEBUG JapiDiagramExporter - ... saved in 315 ms +2024-09-07 21:42:24,509 [main] TRACE UmlDiagram - created (72) OTHER_CIM CIM class IEC62351-3 ed.2 Agent::IEC 62351-3 ed.2 Agent Relationships +2024-09-07 21:42:24,509 [main] TRACE UmlPackage - ---- created package IEEE 1815 and IEC 60870-5 Agent +2024-09-07 21:42:24,509 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{8B1E40BA-BA71-478e-BC81-025DA5A45A35}.png2700624912934275688.png. +2024-09-07 21:42:24,868 [main] DEBUG JapiDiagramExporter - ... saved in 359 ms +2024-09-07 21:42:24,868 [main] TRACE UmlDiagram - created (33) OTHER_CIM CIM class IEEE 1815 and IEC 60870-5 Agent::IEEE 1815 and IEC 60870 Agent Relationships +2024-09-07 21:42:24,868 [main] TRACE UmlPackage - ---- created package IEEE 1815 and IEC 60870-5 Agent - ed2 +2024-09-07 21:42:24,869 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{AA945755-BD47-4be2-A238-6331816DBA4B}.png1183305797403830093.png. +2024-09-07 21:42:25,251 [main] DEBUG JapiDiagramExporter - ... saved in 383 ms +2024-09-07 21:42:25,252 [main] TRACE UmlDiagram - created (70) OTHER_CIM CIM class IEEE 1815 and IEC 60870-5 Agent - ed2::IEEE 1815 and IEC 60870 Agent Relationships +2024-09-07 21:42:25,252 [main] TRACE UmlPackage - ---- created package IEC61850 Agent +2024-09-07 21:42:25,252 [main] TRACE UmlPackage - ---- created package ACSI +2024-09-07 21:42:25,252 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{1B1AAFC2-CBA3-401c-873D-7B6CDCE9CBD6}.png425164000016625078.png. +2024-09-07 21:42:25,437 [main] DEBUG JapiDiagramExporter - ... saved in 185 ms +2024-09-07 21:42:25,437 [main] TRACE UmlDiagram - created (45) OTHER_CIM CIM class ACSI::ACSI +2024-09-07 21:42:25,438 [main] TRACE UmlPackage - ---- created package MMS +2024-09-07 21:42:25,438 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{C69DADFE-D7C7-45d0-83FC-41012CB3C1CA}.png1449957880961235848.png. +2024-09-07 21:42:25,755 [main] DEBUG JapiDiagramExporter - ... saved in 317 ms +2024-09-07 21:42:25,755 [main] TRACE UmlDiagram - created (42) OTHER_CIM CIM class MMS::MMS +2024-09-07 21:42:25,755 [main] TRACE UmlPackage - ---- created package SV and GSE common objects +2024-09-07 21:42:25,756 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{DFEA5E4E-B042-4697-A4BE-C60308616114}.png4834430952657332211.png. +2024-09-07 21:42:25,961 [main] DEBUG JapiDiagramExporter - ... saved in 206 ms +2024-09-07 21:42:25,961 [main] TRACE UmlDiagram - created (63) OTHER_CIM CIM class SV and GSE common objects::SV and GSE common objects +2024-09-07 21:42:25,961 [main] TRACE UmlPackage - ---- created package SV +2024-09-07 21:42:25,962 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{472A38C4-7002-4632-9EB5-EC1C28A2CCA8}.png6630999925653303244.png. +2024-09-07 21:42:26,279 [main] DEBUG JapiDiagramExporter - ... saved in 318 ms +2024-09-07 21:42:26,279 [main] TRACE UmlDiagram - created (60) OTHER_CIM CIM class SV::SV +2024-09-07 21:42:26,279 [main] TRACE UmlPackage - ---- created package GSE +2024-09-07 21:42:26,280 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{80FA056A-3318-4339-86E8-7D464BD53A85}.png3184437554873735528.png. +2024-09-07 21:42:26,635 [main] DEBUG JapiDiagramExporter - ... saved in 355 ms +2024-09-07 21:42:26,635 [main] TRACE UmlDiagram - created (44) OTHER_CIM CIM class GSE::GSE +2024-09-07 21:42:26,635 [main] TRACE UmlPackage - ---- created package Clocks Agent +2024-09-07 21:42:26,636 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{9DE08B60-19E1-4c7c-B3D6-82731BE2066A}.png6149519963225459448.png. +2024-09-07 21:42:26,844 [main] DEBUG JapiDiagramExporter - ... saved in 208 ms +2024-09-07 21:42:26,844 [main] TRACE UmlDiagram - created (46) OTHER_CIM CIM class Clocks Agent::Clocks Agent +2024-09-07 21:42:26,844 [main] TRACE UmlPackage - ---- created package Interfaces Agent +2024-09-07 21:42:26,844 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{1B416A08-A236-4e2a-9A9E-6A48912EF05F}.png5679334493181824335.png. +2024-09-07 21:42:27,133 [main] DEBUG JapiDiagramExporter - ... saved in 289 ms +2024-09-07 21:42:27,133 [main] TRACE UmlDiagram - created (24) OTHER_CIM CIM class Interfaces Agent::Interfaces +2024-09-07 21:42:27,133 [main] INFO EaModelBuilder - creating in-memory root classes and enum literals ... +2024-09-07 21:42:27,133 [main] TRACE UmlClass - created (894) OTHER_CIM CIM root class <> nsmAgent::Attribute +2024-09-07 21:42:27,133 [main] TRACE UmlClass - created (886) OTHER_CIM CIM root class <> nsmAgent::Attribute +2024-09-07 21:42:27,134 [main] TRACE UmlClass - created (889) OTHER_CIM CIM root class <> nsmAgent::Attribute +2024-09-07 21:42:27,134 [main] TRACE UmlClass - created (890) OTHER_CIM CIM root class <> nsmAgent::Attribute +2024-09-07 21:42:27,134 [main] TRACE UmlClass - created (892) OTHER_CIM CIM root class <> nsmAgent::Attribute +2024-09-07 21:42:27,134 [main] TRACE UmlClass - created (896) OTHER_CIM CIM root class <> nsmAgent::Attribute +2024-09-07 21:42:27,134 [main] TRACE UmlClass - created (898) OTHER_CIM CIM root class <> nsmAgent::Attribute +2024-09-07 21:42:27,134 [main] TRACE UmlClass - created (938) OTHER_CIM CIM root class <> nsmAgent::Attribute +2024-09-07 21:42:27,134 [main] TRACE UmlClass - created (900) OTHER_CIM CIM root class <> nsmAgent::Attribute +2024-09-07 21:42:27,134 [main] TRACE UmlClass - created (888) OTHER_CIM CIM root class <> nsmAgent::Class +2024-09-07 21:42:27,134 [main] TRACE UmlClass - created (1022) OTHER_CIM CIM root class <> nsmAgent::Class +2024-09-07 21:42:27,134 [main] TRACE UmlClass - created (882) OTHER_CIM CIM root class <> nsmAgent::Class +2024-09-07 21:42:27,134 [main] TRACE UmlClass - created (895) OTHER_CIM CIM root class <> nsmAgent::health +2024-09-07 21:42:27,134 [main] TRACE UmlClass - created (893) OTHER_CIM CIM root class <> nsmAgent::identity +2024-09-07 21:42:27,135 [main] TRACE UmlClass - created (891) OTHER_CIM CIM root class <> nsmAgent::index +2024-09-07 21:42:27,135 [main] TRACE UmlClass - created (887) OTHER_CIM CIM root class <> nsmAgent::nsmAgent +2024-09-07 21:42:27,135 [main] TRACE UmlClass - created (1021) OTHER_CIM CIM root class <> nsmAgent::nsmEntry +2024-09-07 21:42:27,135 [main] TRACE UmlClass - created (883) OTHER_CIM CIM root class <> nsmAgent::nsmEvent +2024-09-07 21:42:27,135 [main] TRACE UmlClass - created (897) OTHER_CIM CIM root class <> nsmAgent::performance +2024-09-07 21:42:27,135 [main] TRACE UmlClass - created (885) OTHER_CIM CIM root class <> nsmAgent::protocol +2024-09-07 21:42:27,135 [main] TRACE UmlClass - created (884) OTHER_CIM CIM root class <> nsmAgent::security +2024-09-07 21:42:27,135 [main] TRACE UmlClass - created (899) OTHER_CIM CIM root class <> nsmAgent::setvalue +2024-09-07 21:42:27,135 [main] TRACE UmlClass - created (901) OTHER_CIM CIM root class <> nsmAgent::table +2024-09-07 21:42:27,135 [main] TRACE UmlClass - created (936) OTHER_CIM CIM root class <> nsmAgent::trap +2024-09-07 21:42:27,135 [main] TRACE UmlClass - created (660) OTHER_CIM CIM root class BaseTypes::AbsoluteDateTime +2024-09-07 21:42:27,135 [main] TRACE UmlClass - created (624) OTHER_CIM CIM root class BaseTypes::Counter32 +2024-09-07 21:42:27,136 [main] TRACE UmlClass - created (628) OTHER_CIM CIM root class BaseTypes::DateAndTime +2024-09-07 21:42:27,136 [main] TRACE UmlClass - created (632) OTHER_CIM CIM root class BaseTypes::DisplayString +2024-09-07 21:42:27,136 [main] TRACE UmlClass - created (630) OTHER_CIM CIM root class BaseTypes::Float32TC +2024-09-07 21:42:27,136 [main] TRACE UmlClass - created (622) OTHER_CIM CIM root class BaseTypes::Gauge32 +2024-09-07 21:42:27,136 [main] TRACE UmlClass - created (952) OTHER_CIM CIM root class BaseTypes::InetAddress +2024-09-07 21:42:27,136 [main] TRACE UmlClass - created (966) OTHER_CIM CIM root class BaseTypes::MacAddress +2024-09-07 21:42:27,136 [main] TRACE UmlClass - created (954) OTHER_CIM CIM enumeration <> BaseTypes::InetAddressType +2024-09-07 21:42:27,141 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 21:42:27,141 [main] TRACE UmlAttribute - created (3685) OTHER_CIM CIM literal <> BaseTypes::InetAddressType.unknown = 0 +2024-09-07 21:42:27,141 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 21:42:27,141 [main] TRACE UmlAttribute - created (3686) OTHER_CIM CIM literal <> BaseTypes::InetAddressType.ipv4 = 1 +2024-09-07 21:42:27,141 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 21:42:27,141 [main] TRACE UmlAttribute - created (3687) OTHER_CIM CIM literal <> BaseTypes::InetAddressType.ipv6 = 2 +2024-09-07 21:42:27,141 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-07 21:42:27,141 [main] TRACE UmlAttribute - created (3688) OTHER_CIM CIM literal <> BaseTypes::InetAddressType.ipv4z = 3 +2024-09-07 21:42:27,141 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-07 21:42:27,141 [main] TRACE UmlAttribute - created (3689) OTHER_CIM CIM literal <> BaseTypes::InetAddressType.ipv6z = 4 +2024-09-07 21:42:27,141 [main] TRACE ValueRange - '16' has no separator indicating range. +2024-09-07 21:42:27,141 [main] TRACE UmlAttribute - created (3683) OTHER_CIM CIM literal <> BaseTypes::InetAddressType.dns = 16 +2024-09-07 21:42:27,141 [main] TRACE UmlClass - created (972) OTHER_CIM CIM root class BaseTypes::EntityIndex +2024-09-07 21:42:27,141 [main] TRACE UmlClass - created (173) OTHER_CIM CIM root class BaseTypes::Integer32 +2024-09-07 21:42:27,142 [main] TRACE UmlClass - created (968) OTHER_CIM CIM root class BaseTypes::Unsigned32 +2024-09-07 21:42:27,142 [main] TRACE UmlClass - created (626) OTHER_CIM CIM root class BaseTypes::TimeTicks +2024-09-07 21:42:27,142 [main] TRACE UmlClass - created (636) OTHER_CIM CIM root class BaseTypes::TruthValue +2024-09-07 21:42:27,142 [main] TRACE UmlClass - created (712) OTHER_CIM CIM root class Abstract Types::AbstractBaseType +2024-09-07 21:42:27,142 [main] TRACE UmlClass - created (798) OTHER_CIM CIM root class Abstract Types::AbstractAgent +2024-09-07 21:42:27,142 [main] TRACE UmlClass - created (292) OTHER_CIM CIM enumeration <> EnumeratedTypes::AppDatStKind +2024-09-07 21:42:27,143 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 21:42:27,143 [main] TRACE UmlAttribute - created (1780) OTHER_CIM CIM literal <> EnumeratedTypes::AppDatStKind.unknown = 0 +2024-09-07 21:42:27,143 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 21:42:27,143 [main] TRACE UmlAttribute - created (1781) OTHER_CIM CIM literal <> EnumeratedTypes::AppDatStKind.good = 1 +2024-09-07 21:42:27,143 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 21:42:27,143 [main] TRACE UmlAttribute - created (1782) OTHER_CIM CIM literal <> EnumeratedTypes::AppDatStKind.bad = 2 +2024-09-07 21:42:27,143 [main] TRACE UmlClass - created (1034) OTHER_CIM CIM enumeration <> EnumeratedTypes::PhyHealthKind +2024-09-07 21:42:27,143 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 21:42:27,143 [main] TRACE UmlAttribute - created (4113) OTHER_CIM CIM literal <> EnumeratedTypes::PhyHealthKind.ok = 0 +2024-09-07 21:42:27,143 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 21:42:27,143 [main] TRACE UmlAttribute - created (4114) OTHER_CIM CIM literal <> EnumeratedTypes::PhyHealthKind.warning = 1 +2024-09-07 21:42:27,143 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 21:42:27,143 [main] TRACE UmlAttribute - created (4115) OTHER_CIM CIM literal <> EnumeratedTypes::PhyHealthKind.alarm = 2 +2024-09-07 21:42:27,143 [main] TRACE UmlClass - created (856) OTHER_CIM CIM enumeration <> EnumeratedTypes::ExtKind +2024-09-07 21:42:27,143 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 21:42:27,144 [main] TRACE UmlAttribute - created (3369) OTHER_CIM CIM literal <> EnumeratedTypes::ExtKind.unknown = 0 +2024-09-07 21:42:27,144 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 21:42:27,144 [main] TRACE UmlAttribute - created (3370) OTHER_CIM CIM literal <> EnumeratedTypes::ExtKind.ioModule = 1 +2024-09-07 21:42:27,144 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 21:42:27,144 [main] TRACE UmlAttribute - created (3371) OTHER_CIM CIM literal <> EnumeratedTypes::ExtKind.softwarePLC = 2 +2024-09-07 21:42:27,144 [main] TRACE UmlClass - created (864) OTHER_CIM CIM enumeration <> EnumeratedTypes::IntKind +2024-09-07 21:42:27,144 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 21:42:27,144 [main] TRACE UmlAttribute - created (3392) OTHER_CIM CIM literal <> EnumeratedTypes::IntKind.wired = 0 +2024-09-07 21:42:27,144 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 21:42:27,144 [main] TRACE UmlAttribute - created (3393) OTHER_CIM CIM literal <> EnumeratedTypes::IntKind.wireless = 1 +2024-09-07 21:42:27,144 [main] TRACE UmlClass - created (644) OTHER_CIM CIM enumeration <> EnumeratedTypes::LnkKind +2024-09-07 21:42:27,144 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 21:42:27,144 [main] TRACE UmlAttribute - created (2720) OTHER_CIM CIM literal <> EnumeratedTypes::LnkKind.unknown = 0 +2024-09-07 21:42:27,144 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 21:42:27,144 [main] TRACE UmlAttribute - created (2721) OTHER_CIM CIM literal <> EnumeratedTypes::LnkKind.serial = 1 +2024-09-07 21:42:27,144 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 21:42:27,144 [main] TRACE UmlAttribute - created (2722) OTHER_CIM CIM literal <> EnumeratedTypes::LnkKind.tcp = 2 +2024-09-07 21:42:27,144 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-07 21:42:27,144 [main] TRACE UmlAttribute - created (2723) OTHER_CIM CIM literal <> EnumeratedTypes::LnkKind.udp = 3 +2024-09-07 21:42:27,144 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-07 21:42:27,144 [main] TRACE UmlAttribute - created (3391) OTHER_CIM CIM literal <> EnumeratedTypes::LnkKind.eth = 4 +2024-09-07 21:42:27,145 [main] TRACE UmlClass - created (293) OTHER_CIM CIM enumeration <> EnumeratedTypes::PSPAccKind +2024-09-07 21:42:27,145 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 21:42:27,145 [main] TRACE UmlAttribute - created (1784) OTHER_CIM CIM literal EnumeratedTypes::PSPAccKind.notBeingAccessed = 0 +2024-09-07 21:42:27,145 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 21:42:27,145 [main] TRACE UmlAttribute - created (1785) OTHER_CIM CIM literal EnumeratedTypes::PSPAccKind.accessOccurring = 1 +2024-09-07 21:42:27,145 [main] TRACE UmlClass - created (829) OTHER_CIM CIM enumeration <> EnumeratedTypes::ProtIdKind +2024-09-07 21:42:27,145 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 21:42:27,145 [main] TRACE UmlAttribute - created (3250) OTHER_CIM CIM literal <> EnumeratedTypes::ProtIdKind.unknown = 0 +2024-09-07 21:42:27,145 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 21:42:27,145 [main] TRACE UmlAttribute - created (3249) OTHER_CIM CIM literal <> EnumeratedTypes::ProtIdKind.iEC6185081 = 1 +2024-09-07 21:42:27,145 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 21:42:27,145 [main] TRACE UmlAttribute - created (3251) OTHER_CIM CIM literal <> EnumeratedTypes::ProtIdKind.iEC6185081GOOSE = 2 +2024-09-07 21:42:27,145 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-07 21:42:27,145 [main] TRACE UmlAttribute - created (3252) OTHER_CIM CIM literal <> EnumeratedTypes::ProtIdKind.iEC6185092SV = 3 +2024-09-07 21:42:27,145 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-07 21:42:27,145 [main] TRACE UmlAttribute - created (3253) OTHER_CIM CIM literal <> EnumeratedTypes::ProtIdKind.ieee1815DNP = 4 +2024-09-07 21:42:27,145 [main] TRACE ValueRange - '5' has no separator indicating range. +2024-09-07 21:42:27,145 [main] TRACE UmlAttribute - created (3254) OTHER_CIM CIM literal <> EnumeratedTypes::ProtIdKind.iec608705 = 5 +2024-09-07 21:42:27,145 [main] TRACE ValueRange - '6' has no separator indicating range. +2024-09-07 21:42:27,145 [main] TRACE UmlAttribute - created (4503) OTHER_CIM CIM literal <> EnumeratedTypes::ProtIdKind.iEC6185082 = 6 +2024-09-07 21:42:27,145 [main] TRACE UmlClass - created (958) OTHER_CIM CIM enumeration <> EnumeratedTypes::EventKind +2024-09-07 21:42:27,145 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 21:42:27,146 [main] TRACE UmlAttribute - created (3694) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.none = 0 +2024-09-07 21:42:27,146 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 21:42:27,146 [main] TRACE UmlAttribute - created (3695) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.unKnown = 1 +2024-09-07 21:42:27,146 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 21:42:27,146 [main] TRACE UmlAttribute - created (3696) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.denialOfService = 2 +2024-09-07 21:42:27,146 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-07 21:42:27,146 [main] TRACE UmlAttribute - created (3697) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.malware = 3 +2024-09-07 21:42:27,146 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-07 21:42:27,146 [main] TRACE UmlAttribute - created (3698) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.bufferOverRun = 4 +2024-09-07 21:42:27,146 [main] TRACE ValueRange - '5' has no separator indicating range. +2024-09-07 21:42:27,146 [main] TRACE UmlAttribute - created (3701) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.bufferUnderRun = 5 +2024-09-07 21:42:27,146 [main] TRACE ValueRange - '6' has no separator indicating range. +2024-09-07 21:42:27,146 [main] TRACE UmlAttribute - created (3702) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.badCredential = 6 +2024-09-07 21:42:27,146 [main] TRACE ValueRange - '7' has no separator indicating range. +2024-09-07 21:42:27,146 [main] TRACE UmlAttribute - created (3703) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.badKey = 7 +2024-09-07 21:42:27,146 [main] TRACE ValueRange - '8' has no separator indicating range. +2024-09-07 21:42:27,146 [main] TRACE UmlAttribute - created (3699) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.malformedPDU = 8 +2024-09-07 21:42:27,146 [main] TRACE ValueRange - '9' has no separator indicating range. +2024-09-07 21:42:27,146 [main] TRACE UmlAttribute - created (3693) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.physicalDisruption = 9 +2024-09-07 21:42:27,146 [main] TRACE ValueRange - '10' has no separator indicating range. +2024-09-07 21:42:27,146 [main] TRACE UmlAttribute - created (3700) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.invalidNetworkAccess = 10 +2024-09-07 21:42:27,147 [main] TRACE UmlClass - created (113) OTHER_CIM CIM enumeration <> EnumeratedTypes::TimSyncIssueKind +2024-09-07 21:42:27,147 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 21:42:27,147 [main] TRACE UmlAttribute - created (644) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncIssueKind.synced = 0 +2024-09-07 21:42:27,147 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 21:42:27,147 [main] TRACE UmlAttribute - created (645) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncIssueKind.degradated = 1 +2024-09-07 21:42:27,147 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 21:42:27,147 [main] TRACE UmlAttribute - created (646) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncIssueKind.failed = 2 +2024-09-07 21:42:27,147 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-07 21:42:27,147 [main] TRACE UmlAttribute - created (4499) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncIssueKind.syncedGlobal = 3 +2024-09-07 21:42:27,147 [main] TRACE UmlClass - created (1011) OTHER_CIM CIM enumeration <> EnumeratedTypes::SecurityProfileKind +2024-09-07 21:42:27,147 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 21:42:27,147 [main] TRACE UmlAttribute - created (3924) OTHER_CIM CIM literal <> EnumeratedTypes::SecurityProfileKind.noSecurity = 0 +2024-09-07 21:42:27,147 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 21:42:27,147 [main] TRACE UmlAttribute - created (3926) OTHER_CIM CIM literal <> EnumeratedTypes::SecurityProfileKind.aProfile = 1 +2024-09-07 21:42:27,147 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 21:42:27,147 [main] TRACE UmlAttribute - created (3927) OTHER_CIM CIM literal <> EnumeratedTypes::SecurityProfileKind.e2eProfile = 2 +2024-09-07 21:42:27,147 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-07 21:42:27,147 [main] TRACE UmlAttribute - created (3922) OTHER_CIM CIM literal <> EnumeratedTypes::SecurityProfileKind.ae2eProfile = 3 +2024-09-07 21:42:27,147 [main] TRACE UmlClass - created (117) OTHER_CIM CIM enumeration <> EnumeratedTypes::TimSyncSrcKind +2024-09-07 21:42:27,147 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 21:42:27,147 [main] TRACE UmlAttribute - created (665) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.unknown = 0 +2024-09-07 21:42:27,148 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 21:42:27,148 [main] TRACE UmlAttribute - created (666) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.ntp = 1 +2024-09-07 21:42:27,148 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 21:42:27,148 [main] TRACE UmlAttribute - created (667) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.sntp = 2 +2024-09-07 21:42:27,148 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-07 21:42:27,148 [main] TRACE UmlAttribute - created (668) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.irig = 3 +2024-09-07 21:42:27,148 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-07 21:42:27,148 [main] TRACE UmlAttribute - created (669) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.gps = 4 +2024-09-07 21:42:27,148 [main] TRACE ValueRange - '5' has no separator indicating range. +2024-09-07 21:42:27,148 [main] TRACE UmlAttribute - created (670) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.ieee1588PTP = 5 +2024-09-07 21:42:27,148 [main] TRACE ValueRange - '6' has no separator indicating range. +2024-09-07 21:42:27,148 [main] TRACE UmlAttribute - created (671) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.ieee1588PTPC37238Profile2011 = 6 +2024-09-07 21:42:27,148 [main] TRACE ValueRange - '7' has no separator indicating range. +2024-09-07 21:42:27,148 [main] TRACE UmlAttribute - created (4110) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.ieee1588PTPIEC6185093 = 7 +2024-09-07 21:42:27,148 [main] TRACE ValueRange - '8' has no separator indicating range. +2024-09-07 21:42:27,148 [main] TRACE UmlAttribute - created (4495) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.ieee1588PTPC37238Profile2017 = 8 +2024-09-07 21:42:27,148 [main] TRACE ValueRange - '9' has no separator indicating range. +2024-09-07 21:42:27,148 [main] TRACE UmlAttribute - created (4496) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.ieee1588PTPIEC6185093Ed20 = 9 +2024-09-07 21:42:27,148 [main] TRACE ValueRange - '7' has no separator indicating range. +2024-09-07 21:42:27,148 [main] TRACE UmlAttribute - created (4497) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.ieee1588PTPIEC6185093Profile2016 = 7 +2024-09-07 21:42:27,148 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-07 21:42:27,149 [main] TRACE UmlAttribute - created (4498) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.gnss = 4 +2024-09-07 21:42:27,149 [main] TRACE ValueRange - '10' has no separator indicating range. +2024-09-07 21:42:27,149 [main] TRACE UmlAttribute - created (4500) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.applicationProtocol = 10 +2024-09-07 21:42:27,149 [main] TRACE ValueRange - '11' has no separator indicating range. +2024-09-07 21:42:27,149 [main] TRACE UmlAttribute - created (4504) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.ntpOnts = 11 +2024-09-07 21:42:27,149 [main] INFO EaModelBuilder - creating in-memory sub-classes recursively ... +2024-09-07 21:42:27,160 [main] TRACE UmlClass - created (760) OTHER_CIM CIM class Abstract Types::BooleanValue, 1 superclasses=[AbstractBaseType] +2024-09-07 21:42:27,160 [main] TRACE UmlClass - created (734) OTHER_CIM CIM class Abstract Types::Integer, 1 superclasses=[AbstractBaseType] +2024-09-07 21:42:27,160 [main] TRACE UmlClass - created (728) OTHER_CIM CIM class Abstract Types::BooleanValueTs, 1 superclasses=[AbstractBaseType] +2024-09-07 21:42:27,160 [main] TRACE UmlClass - created (731) OTHER_CIM CIM class Abstract Types::CounterTs, 1 superclasses=[AbstractBaseType] +2024-09-07 21:42:27,160 [main] TRACE UmlClass - created (739) OTHER_CIM CIM class Abstract Types::Floating, 1 superclasses=[AbstractBaseType] +2024-09-07 21:42:27,160 [main] TRACE UmlClass - created (740) OTHER_CIM CIM class Abstract Types::FloatingTs, 1 superclasses=[AbstractBaseType] +2024-09-07 21:42:27,161 [main] TRACE UmlClass - created (735) OTHER_CIM CIM class Abstract Types::IntegerTs, 1 superclasses=[AbstractBaseType] +2024-09-07 21:42:27,161 [main] TRACE UmlClass - created (764) OTHER_CIM CIM class Abstract Types::CharString, 1 superclasses=[AbstractBaseType] +2024-09-07 21:42:27,161 [main] TRACE UmlClass - created (860) OTHER_CIM CIM class Abstract Types::CharStringTs, 1 superclasses=[AbstractBaseType] +2024-09-07 21:42:27,161 [main] TRACE UmlClass - created (804) OTHER_CIM CIM class Abstract Types::Timestamp, 1 superclasses=[AbstractBaseType] +2024-09-07 21:42:27,161 [main] TRACE UmlClass - created (782) OTHER_CIM CIM class Abstract Types::Selector, 1 superclasses=[AbstractBaseType] +2024-09-07 21:42:27,161 [main] TRACE UmlClass - created (786) OTHER_CIM CIM class Abstract Types::MacAddress, 1 superclasses=[AbstractBaseType] +2024-09-07 21:42:27,161 [main] TRACE UmlClass - created (956) OTHER_CIM CIM class Abstract Types::InetAddressType, 1 superclasses=[AbstractBaseType] +2024-09-07 21:42:27,161 [main] TRACE UmlClass - created (784) OTHER_CIM CIM class Abstract Types::InetAddress, 1 superclasses=[AbstractBaseType] +2024-09-07 21:42:27,161 [main] TRACE UmlClass - created (974) OTHER_CIM CIM class Abstract Types::EntityIndex, 1 superclasses=[AbstractBaseType] +2024-09-07 21:42:27,161 [main] TRACE UmlClass - created (774) OTHER_CIM CIM class Abstract Types::CntRs, 1 superclasses=[AbstractBaseType] +2024-09-07 21:42:27,161 [main] TRACE UmlClass - created (766) OTHER_CIM CIM class EnumeratedTypes::AppDatStType, 1 superclasses=[AbstractBaseType] +2024-09-07 21:42:27,161 [main] TRACE UmlClass - created (1036) OTHER_CIM CIM class EnumeratedTypes::PhyHealthType, 1 superclasses=[AbstractBaseType] +2024-09-07 21:42:27,161 [main] TRACE UmlClass - created (854) OTHER_CIM CIM class EnumeratedTypes::ExtType, 1 superclasses=[AbstractBaseType] +2024-09-07 21:42:27,161 [main] TRACE UmlClass - created (866) OTHER_CIM CIM class EnumeratedTypes::IntType, 1 superclasses=[AbstractBaseType] +2024-09-07 21:42:27,161 [main] TRACE UmlClass - created (960) OTHER_CIM CIM class EnumeratedTypes::EventType, 1 superclasses=[AbstractBaseType] +2024-09-07 21:42:27,161 [main] TRACE UmlClass - created (858) OTHER_CIM CIM class EnumeratedTypes::PSPAccType, 1 superclasses=[AbstractBaseType] +2024-09-07 21:42:27,162 [main] TRACE UmlClass - created (780) OTHER_CIM CIM class EnumeratedTypes::ProtIdType, 1 superclasses=[AbstractBaseType] +2024-09-07 21:42:27,162 [main] TRACE UmlClass - created (776) OTHER_CIM CIM class EnumeratedTypes::TimSyncIssueType, 1 superclasses=[AbstractBaseType] +2024-09-07 21:42:27,162 [main] TRACE UmlClass - created (1013) OTHER_CIM CIM class EnumeratedTypes::SecurityProfileType, 1 superclasses=[AbstractBaseType] +2024-09-07 21:42:27,162 [main] TRACE UmlClass - created (777) OTHER_CIM CIM class EnumeratedTypes::TimSyncSrcType, 1 superclasses=[AbstractBaseType] +2024-09-07 21:42:27,162 [main] TRACE UmlClass - created (778) OTHER_CIM CIM class EnumeratedTypes::LnkType, 1 superclasses=[AbstractBaseType] +2024-09-07 21:42:27,162 [main] TRACE UmlClass - created (41) OTHER_CIM CIM class <> Environmental Agent::Environmental, 1 superclasses=[AbstractAgent] +2024-09-07 21:42:27,162 [main] TRACE UmlClass - created (616) OTHER_CIM CIM class <> Environmental Agent::PSUPEntry, 1 superclasses=[AbstractAgent] +2024-09-07 21:42:27,162 [main] TRACE UmlClass - created (903) OTHER_CIM CIM class <> Environmental Agent::Notification, 1 superclasses=[AbstractAgent] +2024-09-07 21:42:27,162 [main] TRACE UmlClass - created (874) OTHER_CIM CIM class <> Environmental Agent::SecurityNotification, 1 superclasses=[AbstractAgent] +2024-09-07 21:42:27,162 [main] TRACE UmlClass - created (44) OTHER_CIM CIM class <> IED Agent::IED, 1 superclasses=[AbstractAgent] +2024-09-07 21:42:27,162 [main] TRACE UmlClass - created (832) OTHER_CIM CIM class <> IED Agent::CPUEntry, 1 superclasses=[AbstractAgent] +2024-09-07 21:42:27,162 [main] TRACE UmlClass - created (850) OTHER_CIM CIM class <> IED Agent::EXTEntry, 1 superclasses=[AbstractAgent] +2024-09-07 21:42:27,162 [main] TRACE UmlClass - created (862) OTHER_CIM CIM class <> IED Agent::STOREEntry, 1 superclasses=[AbstractAgent] +2024-09-07 21:42:27,162 [main] TRACE UmlClass - created (911) OTHER_CIM CIM class <> IED Agent::Notification, 1 superclasses=[AbstractAgent] +2024-09-07 21:42:27,163 [main] TRACE UmlClass - created (912) OTHER_CIM CIM class <> IED Agent::SecurityNotification, 1 superclasses=[AbstractAgent] +2024-09-07 21:42:27,163 [main] TRACE UmlClass - created (1032) OTHER_CIM CIM class Common objects::CommonProtocolInfo, 1 superclasses=[AbstractAgent] +2024-09-07 21:42:27,163 [main] TRACE UmlClass - created (1075) OTHER_CIM CIM class IEC62351-3 ed.2 Agent::IEC62351-3ed2security, 1 superclasses=[AbstractAgent] +2024-09-07 21:42:27,163 [main] TRACE UmlClass - created (1080) OTHER_CIM CIM class IEC62351-3 ed.2 Agent::TLSSession, 3 superclasses=[AbstractAgent, CommonProtocolInfo, IEC62351-3ed2security] +2024-09-07 21:42:27,163 [main] TRACE UmlClass - created (1079) OTHER_CIM CIM class <> IEC62351-3 ed.2 Agent::ClientTLS, 1 superclasses=[TLSSession] +2024-09-07 21:42:27,163 [main] TRACE UmlClass - created (1077) OTHER_CIM CIM class <> IEC62351-3 ed.2 Agent::ServerTLS, 1 superclasses=[TLSSession] +2024-09-07 21:42:27,163 [main] TRACE UmlClass - created (808) OTHER_CIM CIM class IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, 1 superclasses=[AbstractAgent] +2024-09-07 21:42:27,163 [main] TRACE UmlClass - created (584) OTHER_CIM CIM class IEEE 1815 and IEC 60870-5 Agent::Association, 3 superclasses=[AbstractAgent, 60870andDNPProtocolInfo, CommonProtocolInfo] +2024-09-07 21:42:27,163 [main] TRACE UmlClass - created (820) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent::MasterAssociation, 1 superclasses=[Association] +2024-09-07 21:42:27,163 [main] TRACE UmlClass - created (821) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent::OutstationAssociation, 1 superclasses=[Association] +2024-09-07 21:42:27,163 [main] TRACE UmlClass - created (1063) OTHER_CIM CIM class IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, 1 superclasses=[AbstractAgent] +2024-09-07 21:42:27,163 [main] TRACE UmlClass - created (1058) OTHER_CIM CIM class IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, 2 superclasses=[AbstractAgent, IEC62351part5] +2024-09-07 21:42:27,163 [main] TRACE UmlClass - created (1059) OTHER_CIM CIM class IEEE 1815 and IEC 60870-5 Agent - ed2::Association, 3 superclasses=[CommonProtocolInfo, AbstractAgent, 60870andDNPProtocolInfoEd2] +2024-09-07 21:42:27,163 [main] TRACE UmlClass - created (1057) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent - ed2::MasterAssociation, 1 superclasses=[Association] +2024-09-07 21:42:27,163 [main] TRACE UmlClass - created (1056) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent - ed2::OutstationAssociation, 1 superclasses=[Association] +2024-09-07 21:42:27,163 [main] TRACE UmlClass - created (818) OTHER_CIM CIM class MMS::MMSProtocolInfo, 1 superclasses=[AbstractAgent] +2024-09-07 21:42:27,164 [main] TRACE UmlClass - created (693) OTHER_CIM CIM class <> MMS::MMSAssociation, 2 superclasses=[MMSProtocolInfo, CommonProtocolInfo] +2024-09-07 21:42:27,164 [main] TRACE UmlClass - created (1076) OTHER_CIM CIM class <> IEC62351-3 ed.2 Agent::Summary, 1 superclasses=[IEC62351-3ed2security] +2024-09-07 21:42:27,164 [main] TRACE UmlClass - created (1078) OTHER_CIM CIM class <> IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification, 1 superclasses=[AbstractAgent] +2024-09-07 21:42:27,164 [main] TRACE UmlClass - created (576) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent::Summary, 1 superclasses=[60870andDNPProtocolInfo] +2024-09-07 21:42:27,164 [main] TRACE UmlClass - created (914) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, 1 superclasses=[AbstractAgent] +2024-09-07 21:42:27,164 [main] TRACE UmlClass - created (915) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, 1 superclasses=[AbstractAgent] +2024-09-07 21:42:27,164 [main] TRACE UmlClass - created (1060) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, 1 superclasses=[60870andDNPProtocolInfoEd2] +2024-09-07 21:42:27,164 [main] TRACE UmlClass - created (1055) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2, 1 superclasses=[AbstractAgent] +2024-09-07 21:42:27,164 [main] TRACE UmlClass - created (1061) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2, 1 superclasses=[AbstractAgent] +2024-09-07 21:42:27,164 [main] TRACE UmlClass - created (152) OTHER_CIM CIM class <> ACSI::ACSISummary, 1 superclasses=[AbstractAgent] +2024-09-07 21:42:27,164 [main] TRACE UmlClass - created (691) OTHER_CIM CIM class <> MMS::MMSProvider, 1 superclasses=[MMSProtocolInfo] +2024-09-07 21:42:27,164 [main] TRACE UmlClass - created (920) OTHER_CIM CIM class <> MMS::MMSSecurityNotification, 1 superclasses=[AbstractAgent] +2024-09-07 21:42:27,164 [main] TRACE UmlClass - created (921) OTHER_CIM CIM class <> MMS::MMSNotification, 1 superclasses=[AbstractAgent] +2024-09-07 21:42:27,164 [main] TRACE UmlClass - created (1025) OTHER_CIM CIM class SV and GSE common objects::GSEandSVCommon, 1 superclasses=[AbstractAgent] +2024-09-07 21:42:27,165 [main] TRACE UmlClass - created (1026) OTHER_CIM CIM class SV and GSE common objects::GSEandSVPublisherAssociation, 1 superclasses=[GSEandSVCommon] +2024-09-07 21:42:27,165 [main] TRACE UmlClass - created (994) OTHER_CIM CIM class <> SV::SVPublisherAssociationIP, 1 superclasses=[GSEandSVPublisherAssociation] +2024-09-07 21:42:27,165 [main] TRACE UmlClass - created (995) OTHER_CIM CIM class <> SV::SVPublisherAssociationL2, 1 superclasses=[GSEandSVPublisherAssociation] +2024-09-07 21:42:27,165 [main] TRACE UmlClass - created (796) OTHER_CIM CIM class <> GSE::GSEPublisherAssociationIP, 1 superclasses=[GSEandSVPublisherAssociation] +2024-09-07 21:42:27,165 [main] TRACE UmlClass - created (984) OTHER_CIM CIM class <> GSE::GSEPublisherAssociationL2, 1 superclasses=[GSEandSVPublisherAssociation] +2024-09-07 21:42:27,165 [main] TRACE UmlClass - created (1027) OTHER_CIM CIM class SV and GSE common objects::GSEandSVSubscriberAssociation, 1 superclasses=[GSEandSVCommon] +2024-09-07 21:42:27,165 [main] TRACE UmlClass - created (998) OTHER_CIM CIM class <> SV::SVSubcriberAssociationIP, 1 superclasses=[GSEandSVSubscriberAssociation] +2024-09-07 21:42:27,165 [main] TRACE UmlClass - created (999) OTHER_CIM CIM class <> SV::SVSubcriberAssociationL2, 1 superclasses=[GSEandSVSubscriberAssociation] +2024-09-07 21:42:27,165 [main] TRACE UmlClass - created (986) OTHER_CIM CIM class GSE::GSESubscriberAssociation, 1 superclasses=[GSEandSVSubscriberAssociation] +2024-09-07 21:42:27,165 [main] TRACE UmlClass - created (979) OTHER_CIM CIM class <> GSE::GSESubcriberAssociationIP, 1 superclasses=[GSESubscriberAssociation] +2024-09-07 21:42:27,165 [main] TRACE UmlClass - created (977) OTHER_CIM CIM class <> GSE::GSESubcriberAssociationL2, 1 superclasses=[GSESubscriberAssociation] +2024-09-07 21:42:27,165 [main] TRACE UmlClass - created (1002) OTHER_CIM CIM class <> SV::SVProvider, 1 superclasses=[GSEandSVCommon] +2024-09-07 21:42:27,165 [main] TRACE UmlClass - created (997) OTHER_CIM CIM class <> SV::SVNotification, 1 superclasses=[GSEandSVCommon] +2024-09-07 21:42:27,165 [main] TRACE UmlClass - created (794) OTHER_CIM CIM class <> GSE::GSEProvider, 1 superclasses=[GSEandSVCommon] +2024-09-07 21:42:27,165 [main] TRACE UmlClass - created (930) OTHER_CIM CIM class <> GSE::GSENotification, 1 superclasses=[GSEandSVCommon] +2024-09-07 21:42:27,165 [main] TRACE UmlClass - created (609) OTHER_CIM CIM class <> Clocks Agent::Clock, 1 superclasses=[AbstractAgent] +2024-09-07 21:42:27,166 [main] TRACE UmlClass - created (608) OTHER_CIM CIM class <> Clocks Agent::ClockEntry, 1 superclasses=[AbstractAgent] +2024-09-07 21:42:27,166 [main] TRACE UmlClass - created (944) OTHER_CIM CIM class <> Clocks Agent::SecurityNotification, 1 superclasses=[AbstractAgent] +2024-09-07 21:42:27,166 [main] TRACE UmlClass - created (844) OTHER_CIM CIM class Interfaces Agent::Interface, 1 superclasses=[AbstractAgent] +2024-09-07 21:42:27,166 [main] TRACE UmlClass - created (838) OTHER_CIM CIM class <> Interfaces Agent::ETHEntry, 1 superclasses=[Interface] +2024-09-07 21:42:27,166 [main] TRACE UmlClass - created (842) OTHER_CIM CIM class <> Interfaces Agent::KEYEntry, 1 superclasses=[Interface] +2024-09-07 21:42:27,166 [main] TRACE UmlClass - created (836) OTHER_CIM CIM class <> Interfaces Agent::SEREntry, 1 superclasses=[Interface] +2024-09-07 21:42:27,166 [main] TRACE UmlClass - created (847) OTHER_CIM CIM class <> Interfaces Agent::ALGEntry, 1 superclasses=[Interface] +2024-09-07 21:42:27,166 [main] TRACE UmlClass - created (840) OTHER_CIM CIM class <> Interfaces Agent::USBEntry, 1 superclasses=[Interface] +2024-09-07 21:42:27,166 [main] TRACE UmlClass - created (834) OTHER_CIM CIM class <> Interfaces Agent::Interfaces, 1 superclasses=[AbstractAgent] +2024-09-07 21:42:27,166 [main] TRACE UmlClass - created (946) OTHER_CIM CIM class <> Interfaces Agent::Notification, 1 superclasses=[AbstractAgent] +2024-09-07 21:42:27,166 [main] INFO EaModelBuilder - reordering in-memory classes in packages ... +2024-09-07 21:42:27,167 [main] INFO EaModelBuilder - creating in-memory class' attributes, operations and constraints ... +2024-09-07 21:42:27,167 [main] ERROR UmlAttribute - unclassified CIM attribute: (3451) OTHER_CIM CIM [0..1] null nsmAgent::Class.isActive: NullCIM::NullCIM +2024-09-07 21:42:27,167 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,167 [main] TRACE UmlAttribute - created (3451) OTHER_CIM CIM [0..1] attribute nsmAgent::Class.isActive: NullCIM::NullCIM +2024-09-07 21:42:27,167 [main] ERROR UmlAttribute - unclassified CIM attribute: (3982) OTHER_CIM CIM [0..1] null nsmAgent::Class.isActive: NullCIM::NullCIM +2024-09-07 21:42:27,167 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,167 [main] TRACE UmlAttribute - created (3982) OTHER_CIM CIM [0..1] attribute nsmAgent::Class.isActive: NullCIM::NullCIM +2024-09-07 21:42:27,167 [main] ERROR UmlAttribute - unclassified CIM attribute: (3442) OTHER_CIM CIM [0..1] null nsmAgent::Class.isActive: NullCIM::NullCIM +2024-09-07 21:42:27,168 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,168 [main] TRACE UmlAttribute - created (3442) OTHER_CIM CIM [0..1] attribute nsmAgent::Class.isActive: NullCIM::NullCIM +2024-09-07 21:42:27,168 [main] ERROR UmlAttribute - unclassified CIM attribute: (3454) OTHER_CIM CIM [0..1] null nsmAgent::health.Version: NullCIM::NullCIM = 0 +2024-09-07 21:42:27,168 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 21:42:27,168 [main] TRACE UmlAttribute - created (3454) OTHER_CIM CIM [0..1] attribute nsmAgent::health.Version: NullCIM::NullCIM = 0 +2024-09-07 21:42:27,168 [main] ERROR UmlAttribute - unclassified CIM attribute: (3453) OTHER_CIM CIM [0..1] null nsmAgent::identity.Version: NullCIM::NullCIM = 0 +2024-09-07 21:42:27,168 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 21:42:27,168 [main] TRACE UmlAttribute - created (3453) OTHER_CIM CIM [0..1] attribute nsmAgent::identity.Version: NullCIM::NullCIM = 0 +2024-09-07 21:42:27,168 [main] ERROR UmlAttribute - unclassified CIM attribute: (3452) OTHER_CIM CIM [0..1] null nsmAgent::index.Version: NullCIM::NullCIM = 0 +2024-09-07 21:42:27,168 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 21:42:27,168 [main] TRACE UmlAttribute - created (3452) OTHER_CIM CIM [0..1] attribute nsmAgent::index.Version: NullCIM::NullCIM = 0 +2024-09-07 21:42:27,168 [main] ERROR UmlAttribute - unclassified CIM attribute: (3448) OTHER_CIM CIM [0..1] null nsmAgent::nsmAgent.mibPrefix: NullCIM::NullCIM +2024-09-07 21:42:27,169 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,169 [main] TRACE UmlAttribute - created (3448) OTHER_CIM CIM [0..1] attribute nsmAgent::nsmAgent.mibPrefix: NullCIM::NullCIM +2024-09-07 21:42:27,169 [main] ERROR UmlAttribute - unclassified CIM attribute: (3449) OTHER_CIM CIM [0..1] null nsmAgent::nsmAgent.objectIdentity: NullCIM::NullCIM +2024-09-07 21:42:27,169 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,169 [main] TRACE UmlAttribute - created (3449) OTHER_CIM CIM [0..1] attribute nsmAgent::nsmAgent.objectIdentity: NullCIM::NullCIM +2024-09-07 21:42:27,169 [main] ERROR UmlAttribute - unclassified CIM attribute: (3450) OTHER_CIM CIM [0..1] null nsmAgent::nsmAgent.objectBranchId: NullCIM::NullCIM +2024-09-07 21:42:27,169 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,169 [main] TRACE UmlAttribute - created (3450) OTHER_CIM CIM [0..1] attribute nsmAgent::nsmAgent.objectBranchId: NullCIM::NullCIM +2024-09-07 21:42:27,169 [main] ERROR UmlAttribute - unclassified CIM attribute: (3979) OTHER_CIM CIM [0..1] null nsmAgent::nsmEntry.mibPrefix: NullCIM::NullCIM +2024-09-07 21:42:27,169 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,169 [main] TRACE UmlAttribute - created (3979) OTHER_CIM CIM [0..1] attribute nsmAgent::nsmEntry.mibPrefix: NullCIM::NullCIM +2024-09-07 21:42:27,169 [main] ERROR UmlAttribute - unclassified CIM attribute: (3980) OTHER_CIM CIM [0..1] null nsmAgent::nsmEntry.objectIdentity: NullCIM::NullCIM +2024-09-07 21:42:27,170 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,170 [main] TRACE UmlAttribute - created (3980) OTHER_CIM CIM [0..1] attribute nsmAgent::nsmEntry.objectIdentity: NullCIM::NullCIM +2024-09-07 21:42:27,170 [main] ERROR UmlAttribute - unclassified CIM attribute: (3981) OTHER_CIM CIM [0..1] null nsmAgent::nsmEntry.objectBranchId: NullCIM::NullCIM +2024-09-07 21:42:27,170 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,170 [main] TRACE UmlAttribute - created (3981) OTHER_CIM CIM [0..1] attribute nsmAgent::nsmEntry.objectBranchId: NullCIM::NullCIM +2024-09-07 21:42:27,170 [main] ERROR UmlAttribute - unclassified CIM attribute: (3443) OTHER_CIM CIM [0..1] null nsmAgent::nsmEvent.mibPrefix: NullCIM::NullCIM +2024-09-07 21:42:27,170 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,170 [main] TRACE UmlAttribute - created (3443) OTHER_CIM CIM [0..1] attribute nsmAgent::nsmEvent.mibPrefix: NullCIM::NullCIM +2024-09-07 21:42:27,170 [main] ERROR UmlAttribute - unclassified CIM attribute: (3444) OTHER_CIM CIM [0..1] null nsmAgent::nsmEvent.objectIdentity: NullCIM::NullCIM +2024-09-07 21:42:27,170 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,170 [main] TRACE UmlAttribute - created (3444) OTHER_CIM CIM [0..1] attribute nsmAgent::nsmEvent.objectIdentity: NullCIM::NullCIM +2024-09-07 21:42:27,170 [main] ERROR UmlAttribute - unclassified CIM attribute: (3445) OTHER_CIM CIM [0..1] null nsmAgent::nsmEvent.objectBranchId: NullCIM::NullCIM +2024-09-07 21:42:27,171 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,171 [main] TRACE UmlAttribute - created (3445) OTHER_CIM CIM [0..1] attribute nsmAgent::nsmEvent.objectBranchId: NullCIM::NullCIM +2024-09-07 21:42:27,171 [main] ERROR UmlAttribute - unclassified CIM attribute: (3455) OTHER_CIM CIM [0..1] null nsmAgent::performance.Version: NullCIM::NullCIM = 0 +2024-09-07 21:42:27,171 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 21:42:27,171 [main] TRACE UmlAttribute - created (3455) OTHER_CIM CIM [0..1] attribute nsmAgent::performance.Version: NullCIM::NullCIM = 0 +2024-09-07 21:42:27,171 [main] ERROR UmlAttribute - unclassified CIM attribute: (3447) OTHER_CIM CIM [0..1] null nsmAgent::protocol.Version: NullCIM::NullCIM = 0 +2024-09-07 21:42:27,171 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 21:42:27,171 [main] TRACE UmlAttribute - created (3447) OTHER_CIM CIM [0..1] attribute nsmAgent::protocol.Version: NullCIM::NullCIM = 0 +2024-09-07 21:42:27,171 [main] ERROR UmlAttribute - unclassified CIM attribute: (3446) OTHER_CIM CIM [0..1] null nsmAgent::security.Version: NullCIM::NullCIM = 0 +2024-09-07 21:42:27,171 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 21:42:27,171 [main] TRACE UmlAttribute - created (3446) OTHER_CIM CIM [0..1] attribute nsmAgent::security.Version: NullCIM::NullCIM = 0 +2024-09-07 21:42:27,171 [main] ERROR UmlAttribute - unclassified CIM attribute: (3456) OTHER_CIM CIM [0..1] null nsmAgent::setvalue.Version: NullCIM::NullCIM = 0 +2024-09-07 21:42:27,171 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 21:42:27,172 [main] TRACE UmlAttribute - created (3456) OTHER_CIM CIM [0..1] attribute nsmAgent::setvalue.Version: NullCIM::NullCIM = 0 +2024-09-07 21:42:27,172 [main] ERROR UmlAttribute - unclassified CIM attribute: (3457) OTHER_CIM CIM [0..1] null nsmAgent::table.Version: NullCIM::NullCIM = 0 +2024-09-07 21:42:27,172 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 21:42:27,172 [main] TRACE UmlAttribute - created (3457) OTHER_CIM CIM [0..1] attribute nsmAgent::table.Version: NullCIM::NullCIM = 0 +2024-09-07 21:42:27,172 [main] ERROR UmlAttribute - unclassified CIM attribute: (3610) OTHER_CIM CIM [0..1] null nsmAgent::trap.Version: NullCIM::NullCIM = 0 +2024-09-07 21:42:27,172 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 21:42:27,172 [main] TRACE UmlAttribute - created (3610) OTHER_CIM CIM [0..1] attribute nsmAgent::trap.Version: NullCIM::NullCIM = 0 +2024-09-07 21:42:27,172 [main] ERROR UmlAttribute - unclassified CIM attribute: (2741) OTHER_CIM CIM [1..1] null BaseTypes::AbsoluteDateTime.value: NullCIM::NullCIM = OCTET STRING (SIZE(8..11)) +2024-09-07 21:42:27,173 [main] TRACE ValueRange - 'OCTET STRING (SIZE(8..11))' has no separator indicating range. +2024-09-07 21:42:27,173 [main] TRACE UmlAttribute - created (2741) OTHER_CIM CIM [1..1] attribute BaseTypes::AbsoluteDateTime.value: NullCIM::NullCIM = OCTET STRING (SIZE(8..11)) +2024-09-07 21:42:27,173 [main] ERROR UmlAttribute - unclassified CIM attribute: (2679) OTHER_CIM CIM [1..1] null BaseTypes::Counter32 .value: NullCIM::NullCIM = Counter32 +2024-09-07 21:42:27,173 [main] TRACE ValueRange - 'Counter32' has no separator indicating range. +2024-09-07 21:42:27,173 [main] TRACE UmlAttribute - created (2679) OTHER_CIM CIM [1..1] attribute BaseTypes::Counter32 .value: NullCIM::NullCIM = Counter32 +2024-09-07 21:42:27,173 [main] ERROR UmlAttribute - unclassified CIM attribute: (2681) OTHER_CIM CIM [1..1] null BaseTypes::DateAndTime.value: NullCIM::NullCIM = OCTET STRING (SIZE(8..11)) +2024-09-07 21:42:27,173 [main] TRACE ValueRange - 'OCTET STRING (SIZE(8..11))' has no separator indicating range. +2024-09-07 21:42:27,173 [main] TRACE UmlAttribute - created (2681) OTHER_CIM CIM [1..1] attribute BaseTypes::DateAndTime.value: NullCIM::NullCIM = OCTET STRING (SIZE(8..11)) +2024-09-07 21:42:27,173 [main] ERROR UmlAttribute - unclassified CIM attribute: (2683) OTHER_CIM CIM [1..1] null BaseTypes::DisplayString.value: NullCIM::NullCIM = DisplayString +2024-09-07 21:42:27,173 [main] TRACE ValueRange - 'DisplayString' has no separator indicating range. +2024-09-07 21:42:27,173 [main] TRACE UmlAttribute - created (2683) OTHER_CIM CIM [1..1] attribute BaseTypes::DisplayString.value: NullCIM::NullCIM = DisplayString +2024-09-07 21:42:27,173 [main] ERROR UmlAttribute - unclassified CIM attribute: (2682) OTHER_CIM CIM [1..1] null BaseTypes::Float32TC.value: NullCIM::NullCIM = OCTET STRING (SIZE(4)) +2024-09-07 21:42:27,174 [main] TRACE ValueRange - 'OCTET STRING (SIZE(4))' has no separator indicating range. +2024-09-07 21:42:27,174 [main] TRACE UmlAttribute - created (2682) OTHER_CIM CIM [1..1] attribute BaseTypes::Float32TC.value: NullCIM::NullCIM = OCTET STRING (SIZE(4)) +2024-09-07 21:42:27,174 [main] ERROR UmlAttribute - unclassified CIM attribute: (2678) OTHER_CIM CIM [1..1] null BaseTypes::Gauge32.value: NullCIM::NullCIM = Gauge32 +2024-09-07 21:42:27,174 [main] TRACE ValueRange - 'Gauge32' has no separator indicating range. +2024-09-07 21:42:27,174 [main] TRACE UmlAttribute - created (2678) OTHER_CIM CIM [1..1] attribute BaseTypes::Gauge32.value: NullCIM::NullCIM = Gauge32 +2024-09-07 21:42:27,174 [main] ERROR UmlAttribute - unclassified CIM attribute: (3682) OTHER_CIM CIM [1..1] null BaseTypes::InetAddress.value: NullCIM::NullCIM = DisplayString (SIZE(0..255)) +2024-09-07 21:42:27,174 [main] TRACE ValueRange - 'DisplayString (SIZE(0..255))' has no separator indicating range. +2024-09-07 21:42:27,174 [main] TRACE UmlAttribute - created (3682) OTHER_CIM CIM [1..1] attribute BaseTypes::InetAddress.value: NullCIM::NullCIM = DisplayString (SIZE(0..255)) +2024-09-07 21:42:27,174 [main] ERROR UmlAttribute - unclassified CIM attribute: (3719) OTHER_CIM CIM [1..1] null BaseTypes::MacAddress.value: NullCIM::NullCIM = DisplayString (SIZE(0..255)) +2024-09-07 21:42:27,174 [main] TRACE ValueRange - 'DisplayString (SIZE(0..255))' has no separator indicating range. +2024-09-07 21:42:27,174 [main] TRACE UmlAttribute - created (3719) OTHER_CIM CIM [1..1] attribute BaseTypes::MacAddress.value: NullCIM::NullCIM = DisplayString (SIZE(0..255)) +2024-09-07 21:42:27,174 [main] ERROR UmlAttribute - unclassified CIM attribute: (3723) OTHER_CIM CIM [1..1] null BaseTypes::EntityIndex.value: NullCIM::NullCIM = Integer32 +2024-09-07 21:42:27,175 [main] TRACE ValueRange - 'Integer32' has no separator indicating range. +2024-09-07 21:42:27,175 [main] TRACE UmlAttribute - created (3723) OTHER_CIM CIM [1..1] attribute BaseTypes::EntityIndex.value: NullCIM::NullCIM = Integer32 +2024-09-07 21:42:27,175 [main] ERROR UmlAttribute - unclassified CIM attribute: (1397) OTHER_CIM CIM [1..1] null BaseTypes::Integer32.value: NullCIM::NullCIM = Integer32 +2024-09-07 21:42:27,175 [main] TRACE ValueRange - 'Integer32' has no separator indicating range. +2024-09-07 21:42:27,175 [main] TRACE UmlAttribute - created (1397) OTHER_CIM CIM [1..1] attribute BaseTypes::Integer32.value: NullCIM::NullCIM = Integer32 +2024-09-07 21:42:27,175 [main] ERROR UmlAttribute - unclassified CIM attribute: (3721) OTHER_CIM CIM [1..1] null BaseTypes::Unsigned32.value: NullCIM::NullCIM = Integer32 +2024-09-07 21:42:27,175 [main] TRACE ValueRange - 'Integer32' has no separator indicating range. +2024-09-07 21:42:27,176 [main] TRACE UmlAttribute - created (3721) OTHER_CIM CIM [1..1] attribute BaseTypes::Unsigned32.value: NullCIM::NullCIM = Integer32 +2024-09-07 21:42:27,176 [main] ERROR UmlAttribute - unclassified CIM attribute: (2680) OTHER_CIM CIM [1..1] null BaseTypes::TimeTicks.value: NullCIM::NullCIM = TimeTicks +2024-09-07 21:42:27,176 [main] TRACE ValueRange - 'TimeTicks' has no separator indicating range. +2024-09-07 21:42:27,176 [main] TRACE UmlAttribute - created (2680) OTHER_CIM CIM [1..1] attribute BaseTypes::TimeTicks.value: NullCIM::NullCIM = TimeTicks +2024-09-07 21:42:27,176 [main] ERROR UmlAttribute - unclassified CIM attribute: (2685) OTHER_CIM CIM [1..1] null BaseTypes::TruthValue.value: NullCIM::NullCIM = TruthValue +2024-09-07 21:42:27,176 [main] TRACE ValueRange - 'TruthValue' has no separator indicating range. +2024-09-07 21:42:27,176 [main] TRACE UmlAttribute - created (2685) OTHER_CIM CIM [1..1] attribute BaseTypes::TruthValue.value: NullCIM::NullCIM = TruthValue +2024-09-07 21:42:27,176 [main] ERROR UmlAttribute - unclassified CIM attribute: (2987) OTHER_CIM CIM [1..1] null Abstract Types::BooleanValue.Value: BaseTypes::TruthValue +2024-09-07 21:42:27,177 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,177 [main] TRACE UmlAttribute - created (2987) OTHER_CIM CIM [1..1] attribute Abstract Types::BooleanValue.Value: BaseTypes::TruthValue +2024-09-07 21:42:27,177 [main] ERROR UmlAttribute - unclassified CIM attribute: (2915) OTHER_CIM CIM [1..1] null Abstract Types::BooleanValueTs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 21:42:27,177 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,177 [main] TRACE UmlAttribute - created (2915) OTHER_CIM CIM [1..1] attribute Abstract Types::BooleanValueTs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 21:42:27,177 [main] ERROR UmlAttribute - unclassified CIM attribute: (2916) OTHER_CIM CIM [1..1] null Abstract Types::BooleanValueTs.Value: BaseTypes::TruthValue +2024-09-07 21:42:27,177 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,177 [main] TRACE UmlAttribute - created (2916) OTHER_CIM CIM [1..1] attribute Abstract Types::BooleanValueTs.Value: BaseTypes::TruthValue +2024-09-07 21:42:27,177 [main] ERROR UmlAttribute - unclassified CIM attribute: (2921) OTHER_CIM CIM [1..1] null Abstract Types::CounterTs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 21:42:27,177 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,178 [main] TRACE UmlAttribute - created (2921) OTHER_CIM CIM [1..1] attribute Abstract Types::CounterTs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 21:42:27,178 [main] ERROR UmlAttribute - unclassified CIM attribute: (2922) OTHER_CIM CIM [1..1] null Abstract Types::CounterTs.Value: BaseTypes::Counter32 +2024-09-07 21:42:27,178 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,178 [main] TRACE UmlAttribute - created (2922) OTHER_CIM CIM [1..1] attribute Abstract Types::CounterTs.Value: BaseTypes::Counter32 +2024-09-07 21:42:27,178 [main] ERROR UmlAttribute - unclassified CIM attribute: (3004) OTHER_CIM CIM [1..1] null Abstract Types::CntRs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 21:42:27,178 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,178 [main] TRACE UmlAttribute - created (3004) OTHER_CIM CIM [1..1] attribute Abstract Types::CntRs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 21:42:27,178 [main] ERROR UmlAttribute - unclassified CIM attribute: (3003) OTHER_CIM CIM [1..1] null Abstract Types::CntRs.Value: BaseTypes::TruthValue +2024-09-07 21:42:27,178 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,178 [main] TRACE UmlAttribute - created (3003) OTHER_CIM CIM [1..1] attribute Abstract Types::CntRs.Value: BaseTypes::TruthValue +2024-09-07 21:42:27,178 [main] ERROR UmlAttribute - unclassified CIM attribute: (2937) OTHER_CIM CIM [1..1] null Abstract Types::Floating.Value: BaseTypes::Float32TC +2024-09-07 21:42:27,178 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,178 [main] TRACE UmlAttribute - created (2937) OTHER_CIM CIM [1..1] attribute Abstract Types::Floating.Value: BaseTypes::Float32TC +2024-09-07 21:42:27,178 [main] ERROR UmlAttribute - unclassified CIM attribute: (2939) OTHER_CIM CIM [1..1] null Abstract Types::FloatingTs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 21:42:27,179 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,179 [main] TRACE UmlAttribute - created (2939) OTHER_CIM CIM [1..1] attribute Abstract Types::FloatingTs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 21:42:27,179 [main] ERROR UmlAttribute - unclassified CIM attribute: (2940) OTHER_CIM CIM [1..1] null Abstract Types::FloatingTs.Value: BaseTypes::Float32TC +2024-09-07 21:42:27,179 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,179 [main] TRACE UmlAttribute - created (2940) OTHER_CIM CIM [1..1] attribute Abstract Types::FloatingTs.Value: BaseTypes::Float32TC +2024-09-07 21:42:27,179 [main] ERROR UmlAttribute - unclassified CIM attribute: (3724) OTHER_CIM CIM [1..1] null Abstract Types::EntityIndex.Value: BaseTypes::Unsigned32 +2024-09-07 21:42:27,179 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,179 [main] TRACE UmlAttribute - created (3724) OTHER_CIM CIM [1..1] attribute Abstract Types::EntityIndex.Value: BaseTypes::Unsigned32 +2024-09-07 21:42:27,179 [main] ERROR UmlAttribute - unclassified CIM attribute: (2928) OTHER_CIM CIM [1..1] null Abstract Types::Integer.Value: BaseTypes::Integer32 +2024-09-07 21:42:27,179 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,179 [main] TRACE UmlAttribute - created (2928) OTHER_CIM CIM [1..1] attribute Abstract Types::Integer.Value: BaseTypes::Integer32 +2024-09-07 21:42:27,179 [main] ERROR UmlAttribute - unclassified CIM attribute: (2930) OTHER_CIM CIM [1..1] null Abstract Types::IntegerTs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 21:42:27,180 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,180 [main] TRACE UmlAttribute - created (2930) OTHER_CIM CIM [1..1] attribute Abstract Types::IntegerTs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 21:42:27,180 [main] ERROR UmlAttribute - unclassified CIM attribute: (2931) OTHER_CIM CIM [1..1] null Abstract Types::IntegerTs.Value: BaseTypes::Integer32 +2024-09-07 21:42:27,180 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,180 [main] TRACE UmlAttribute - created (2931) OTHER_CIM CIM [1..1] attribute Abstract Types::IntegerTs.Value: BaseTypes::Integer32 +2024-09-07 21:42:27,180 [main] ERROR UmlAttribute - unclassified CIM attribute: (3017) OTHER_CIM CIM [1..1] null Abstract Types::InetAddress.Value: BaseTypes::InetAddress +2024-09-07 21:42:27,180 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,180 [main] TRACE UmlAttribute - created (3017) OTHER_CIM CIM [1..1] attribute Abstract Types::InetAddress.Value: BaseTypes::InetAddress +2024-09-07 21:42:27,180 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,180 [main] TRACE UmlAttribute - created (3690) OTHER_CIM CIM [1..1] enumeration attribute Abstract Types::InetAddressType.Value: BaseTypes::InetAddressType +2024-09-07 21:42:27,180 [main] ERROR UmlAttribute - unclassified CIM attribute: (3019) OTHER_CIM CIM [1..1] null Abstract Types::MacAddress.Value: BaseTypes::MacAddress +2024-09-07 21:42:27,180 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,181 [main] TRACE UmlAttribute - created (3019) OTHER_CIM CIM [1..1] attribute Abstract Types::MacAddress.Value: BaseTypes::MacAddress +2024-09-07 21:42:27,181 [main] ERROR UmlAttribute - unclassified CIM attribute: (3015) OTHER_CIM CIM [1..1] null Abstract Types::Selector.Value: BaseTypes::DisplayString +2024-09-07 21:42:27,181 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,181 [main] TRACE UmlAttribute - created (3015) OTHER_CIM CIM [1..1] attribute Abstract Types::Selector.Value: BaseTypes::DisplayString +2024-09-07 21:42:27,181 [main] ERROR UmlAttribute - unclassified CIM attribute: (3083) OTHER_CIM CIM [1..1] null Abstract Types::Timestamp.TimeStamp: BaseTypes::DateAndTime +2024-09-07 21:42:27,181 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,181 [main] TRACE UmlAttribute - created (3083) OTHER_CIM CIM [1..1] attribute Abstract Types::Timestamp.TimeStamp: BaseTypes::DateAndTime +2024-09-07 21:42:27,181 [main] ERROR UmlAttribute - unclassified CIM attribute: (2989) OTHER_CIM CIM [1..1] null Abstract Types::CharString.Value: BaseTypes::DisplayString +2024-09-07 21:42:27,181 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,181 [main] TRACE UmlAttribute - created (2989) OTHER_CIM CIM [1..1] attribute Abstract Types::CharString.Value: BaseTypes::DisplayString +2024-09-07 21:42:27,181 [main] ERROR UmlAttribute - unclassified CIM attribute: (3380) OTHER_CIM CIM [1..1] null Abstract Types::CharStringTs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 21:42:27,182 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,182 [main] TRACE UmlAttribute - created (3380) OTHER_CIM CIM [1..1] attribute Abstract Types::CharStringTs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 21:42:27,182 [main] ERROR UmlAttribute - unclassified CIM attribute: (3379) OTHER_CIM CIM [1..1] null Abstract Types::CharStringTs.Value: BaseTypes::DisplayString +2024-09-07 21:42:27,182 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,182 [main] TRACE UmlAttribute - created (3379) OTHER_CIM CIM [1..1] attribute Abstract Types::CharStringTs.Value: BaseTypes::DisplayString +2024-09-07 21:42:27,182 [main] ERROR UmlAttribute - unclassified CIM attribute: (2991) OTHER_CIM CIM [1..1] null EnumeratedTypes::AppDatStType.TimeStamp: BaseTypes::DateAndTime +2024-09-07 21:42:27,182 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,182 [main] TRACE UmlAttribute - created (2991) OTHER_CIM CIM [1..1] attribute EnumeratedTypes::AppDatStType.TimeStamp: BaseTypes::DateAndTime +2024-09-07 21:42:27,182 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,182 [main] TRACE UmlAttribute - created (2992) OTHER_CIM CIM [1..1] enumeration attribute <> EnumeratedTypes::AppDatStType.Value: EnumeratedTypes::AppDatStKind +2024-09-07 21:42:27,182 [main] ERROR UmlAttribute - unclassified CIM attribute: (4116) OTHER_CIM CIM [1..1] null EnumeratedTypes::PhyHealthType.TimeStamp: BaseTypes::DateAndTime +2024-09-07 21:42:27,182 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,182 [main] TRACE UmlAttribute - created (4116) OTHER_CIM CIM [1..1] attribute EnumeratedTypes::PhyHealthType.TimeStamp: BaseTypes::DateAndTime +2024-09-07 21:42:27,182 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,183 [main] TRACE UmlAttribute - created (4117) OTHER_CIM CIM [1..1] enumeration attribute <> EnumeratedTypes::PhyHealthType.Value: EnumeratedTypes::PhyHealthKind +2024-09-07 21:42:27,183 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,183 [main] TRACE UmlAttribute - created (3367) OTHER_CIM CIM [1..1] enumeration attribute EnumeratedTypes::ExtType.Value: EnumeratedTypes::ExtKind +2024-09-07 21:42:27,183 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,183 [main] TRACE UmlAttribute - created (3395) OTHER_CIM CIM [1..1] enumeration attribute EnumeratedTypes::IntType.Value: EnumeratedTypes::IntKind +2024-09-07 21:42:27,183 [main] ERROR UmlAttribute - unclassified CIM attribute: (3705) OTHER_CIM CIM [1..1] null EnumeratedTypes::EventType.TimeStamp: BaseTypes::DateAndTime +2024-09-07 21:42:27,183 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,183 [main] TRACE UmlAttribute - created (3705) OTHER_CIM CIM [1..1] attribute EnumeratedTypes::EventType.TimeStamp: BaseTypes::DateAndTime +2024-09-07 21:42:27,183 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,183 [main] TRACE UmlAttribute - created (3704) OTHER_CIM CIM [1..1] enumeration attribute EnumeratedTypes::EventType.Value: EnumeratedTypes::EventKind +2024-09-07 21:42:27,183 [main] ERROR UmlAttribute - unclassified CIM attribute: (3378) OTHER_CIM CIM [1..1] null EnumeratedTypes::PSPAccType.Timestamp: BaseTypes::DateAndTime +2024-09-07 21:42:27,183 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,183 [main] TRACE UmlAttribute - created (3378) OTHER_CIM CIM [1..1] attribute EnumeratedTypes::PSPAccType.Timestamp: BaseTypes::DateAndTime +2024-09-07 21:42:27,184 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,184 [main] TRACE UmlAttribute - created (3377) OTHER_CIM CIM [1..1] enumeration attribute EnumeratedTypes::PSPAccType.Value: EnumeratedTypes::PSPAccKind +2024-09-07 21:42:27,184 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,184 [main] TRACE UmlAttribute - created (3011) OTHER_CIM CIM [1..1] enumeration attribute EnumeratedTypes::ProtIdType.Value: EnumeratedTypes::ProtIdKind +2024-09-07 21:42:27,184 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,184 [main] TRACE UmlAttribute - created (3006) OTHER_CIM CIM [1..1] enumeration attribute EnumeratedTypes::TimSyncIssueType.Value: EnumeratedTypes::TimSyncIssueKind +2024-09-07 21:42:27,184 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,184 [main] TRACE UmlAttribute - created (3929) OTHER_CIM CIM [1..1] enumeration attribute EnumeratedTypes::SecurityProfileType.Value: EnumeratedTypes::SecurityProfileKind +2024-09-07 21:42:27,184 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,184 [main] TRACE UmlAttribute - created (3008) OTHER_CIM CIM [1..1] enumeration attribute EnumeratedTypes::TimSyncSrcType.Value: EnumeratedTypes::TimSyncSrcKind +2024-09-07 21:42:27,184 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,184 [main] TRACE UmlAttribute - created (3010) OTHER_CIM CIM [1..1] enumeration attribute EnumeratedTypes::LnkType.Value: EnumeratedTypes::LnkKind +2024-09-07 21:42:27,184 [main] ERROR UmlAttribute - unclassified CIM attribute: (2673) OTHER_CIM CIM const [1..1] null <> Environmental Agent::Environmental.AppDatSt: EnumeratedTypes::AppDatStType +2024-09-07 21:42:27,184 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,184 [main] TRACE UmlAttribute - created (2673) OTHER_CIM CIM const [1..1] attribute <> Environmental Agent::Environmental.AppDatSt: EnumeratedTypes::AppDatStType +2024-09-07 21:42:27,184 [main] ERROR UmlAttribute - unclassified CIM attribute: (596) OTHER_CIM CIM [0..1] null <> Environmental Agent::Environmental.CntRs: Abstract Types::CntRs +2024-09-07 21:42:27,184 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,185 [main] TRACE UmlAttribute - created (596) OTHER_CIM CIM [0..1] attribute <> Environmental Agent::Environmental.CntRs: Abstract Types::CntRs +2024-09-07 21:42:27,185 [main] ERROR UmlAttribute - unclassified CIM attribute: (3707) OTHER_CIM CIM const [1..1] null <> Environmental Agent::Environmental.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:42:27,185 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,185 [main] TRACE UmlAttribute - created (3707) OTHER_CIM CIM const [1..1] attribute <> Environmental Agent::Environmental.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:42:27,185 [main] ERROR UmlAttribute - unclassified CIM attribute: (2257) OTHER_CIM CIM const [0..1] null <> Environmental Agent::Environmental.PSPBld: Abstract Types::BooleanValueTs +2024-09-07 21:42:27,185 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,185 [main] TRACE UmlAttribute - created (2257) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::Environmental.PSPBld: Abstract Types::BooleanValueTs +2024-09-07 21:42:27,185 [main] ERROR UmlAttribute - unclassified CIM attribute: (2255) OTHER_CIM CIM const [1..1] null <> Environmental Agent::Environmental.PSPIed: Abstract Types::BooleanValueTs +2024-09-07 21:42:27,185 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,185 [main] TRACE UmlAttribute - created (2255) OTHER_CIM CIM const [1..1] attribute <> Environmental Agent::Environmental.PSPIed: Abstract Types::BooleanValueTs +2024-09-07 21:42:27,185 [main] ERROR UmlAttribute - unclassified CIM attribute: (2256) OTHER_CIM CIM const [1..1] null <> Environmental Agent::Environmental.PSPPanel: Abstract Types::BooleanValueTs +2024-09-07 21:42:27,185 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,186 [main] TRACE UmlAttribute - created (2256) OTHER_CIM CIM const [1..1] attribute <> Environmental Agent::Environmental.PSPPanel: Abstract Types::BooleanValueTs +2024-09-07 21:42:27,186 [main] ERROR UmlAttribute - unclassified CIM attribute: (2258) OTHER_CIM CIM const [0..1] null <> Environmental Agent::Environmental.PSPPerimeter: Abstract Types::BooleanValueTs +2024-09-07 21:42:27,186 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,186 [main] TRACE UmlAttribute - created (2258) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::Environmental.PSPPerimeter: Abstract Types::BooleanValueTs +2024-09-07 21:42:27,186 [main] ERROR UmlAttribute - unclassified CIM attribute: (152) OTHER_CIM CIM [0..*] null <
> Environmental Agent::Environmental.PSUP: Environmental Agent::PSUPEntry +2024-09-07 21:42:27,186 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,186 [main] TRACE UmlAttribute - created (152) OTHER_CIM CIM [0..*] attribute <
> Environmental Agent::Environmental.PSUP: Environmental Agent::PSUPEntry +2024-09-07 21:42:27,186 [main] ERROR UmlAttribute - unclassified CIM attribute: (2260) OTHER_CIM CIM const [0..1] null <> Environmental Agent::Environmental.PSUPLos: Abstract Types::Integer +2024-09-07 21:42:27,186 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,186 [main] TRACE UmlAttribute - created (2260) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::Environmental.PSUPLos: Abstract Types::Integer +2024-09-07 21:42:27,186 [main] ERROR UmlAttribute - unclassified CIM attribute: (2259) OTHER_CIM CIM const [1..1] null <> Environmental Agent::Environmental.PSUPOn: Abstract Types::IntegerTs +2024-09-07 21:42:27,187 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,187 [main] TRACE UmlAttribute - created (2259) OTHER_CIM CIM const [1..1] attribute <> Environmental Agent::Environmental.PSUPOn: Abstract Types::IntegerTs +2024-09-07 21:42:27,187 [main] ERROR UmlAttribute - unclassified CIM attribute: (3622) OTHER_CIM CIM [0..1] null <> Environmental Agent::Environmental.SecurityNotification: Environmental Agent::SecurityNotification +2024-09-07 21:42:27,187 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,187 [main] TRACE UmlAttribute - created (3622) OTHER_CIM CIM [0..1] attribute <> Environmental Agent::Environmental.SecurityNotification: Environmental Agent::SecurityNotification +2024-09-07 21:42:27,187 [main] ERROR UmlAttribute - unclassified CIM attribute: (3621) OTHER_CIM CIM [0..1] null <> Environmental Agent::Environmental.StateNotification: Environmental Agent::Notification +2024-09-07 21:42:27,187 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,187 [main] TRACE UmlAttribute - created (3621) OTHER_CIM CIM [0..1] attribute <> Environmental Agent::Environmental.StateNotification: Environmental Agent::Notification +2024-09-07 21:42:27,187 [main] ERROR UmlAttribute - unclassified CIM attribute: (4501) OTHER_CIM CIM [1..1] null <> Environmental Agent::Environmental.PSPRemote: Abstract Types::BooleanValueTs +2024-09-07 21:42:27,187 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,188 [main] TRACE UmlAttribute - created (4501) OTHER_CIM CIM [1..1] attribute <> Environmental Agent::Environmental.PSPRemote: Abstract Types::BooleanValueTs +2024-09-07 21:42:27,188 [main] ERROR UmlAttribute - unclassified CIM attribute: (2663) OTHER_CIM CIM [0..1] null <> Environmental Agent::PSUPEntry.CntRs: Abstract Types::CntRs +2024-09-07 21:42:27,188 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,188 [main] TRACE UmlAttribute - created (2663) OTHER_CIM CIM [0..1] attribute <> Environmental Agent::PSUPEntry.CntRs: Abstract Types::CntRs +2024-09-07 21:42:27,188 [main] ERROR UmlAttribute - unclassified CIM attribute: (2671) OTHER_CIM CIM const [0..1] null <> Environmental Agent::PSUPEntry.Descr: Abstract Types::CharString +2024-09-07 21:42:27,188 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,188 [main] TRACE UmlAttribute - created (2671) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::PSUPEntry.Descr: Abstract Types::CharString +2024-09-07 21:42:27,188 [main] ERROR UmlAttribute - unclassified CIM attribute: (3725) OTHER_CIM CIM const [0..1] null <> Environmental Agent::PSUPEntry.ID: Abstract Types::EntityIndex +2024-09-07 21:42:27,188 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,188 [main] TRACE UmlAttribute - created (3725) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::PSUPEntry.ID: Abstract Types::EntityIndex +2024-09-07 21:42:27,189 [main] ERROR UmlAttribute - unclassified CIM attribute: (2670) OTHER_CIM CIM const [0..1] null <> Environmental Agent::PSUPEntry.Name: Abstract Types::CharString +2024-09-07 21:42:27,189 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,189 [main] TRACE UmlAttribute - created (2670) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::PSUPEntry.Name: Abstract Types::CharString +2024-09-07 21:42:27,189 [main] ERROR UmlAttribute - unclassified CIM attribute: (2669) OTHER_CIM CIM const [0..1] null <> Environmental Agent::PSUPEntry.PSUPLos: Abstract Types::BooleanValueTs +2024-09-07 21:42:27,189 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,189 [main] TRACE UmlAttribute - created (2669) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::PSUPEntry.PSUPLos: Abstract Types::BooleanValueTs +2024-09-07 21:42:27,189 [main] ERROR UmlAttribute - unclassified CIM attribute: (2661) OTHER_CIM CIM const [0..1] null <> Environmental Agent::PSUPEntry.PwrLosCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,189 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,189 [main] TRACE UmlAttribute - created (2661) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::PSUPEntry.PwrLosCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,189 [main] ERROR UmlAttribute - unclassified CIM attribute: (2728) OTHER_CIM CIM const [0..1] null <> Environmental Agent::PSUPEntry.PwrOn: Abstract Types::BooleanValueTs +2024-09-07 21:42:27,189 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,189 [main] TRACE UmlAttribute - created (2728) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::PSUPEntry.PwrOn: Abstract Types::BooleanValueTs +2024-09-07 21:42:27,189 [main] ERROR UmlAttribute - unclassified CIM attribute: (3463) OTHER_CIM CIM const [0..1] null <> Environmental Agent::Notification.PSUPLos: Abstract Types::Integer +2024-09-07 21:42:27,190 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,190 [main] TRACE UmlAttribute - created (3463) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::Notification.PSUPLos: Abstract Types::Integer +2024-09-07 21:42:27,190 [main] ERROR UmlAttribute - unclassified CIM attribute: (3462) OTHER_CIM CIM const [0..1] null <> Environmental Agent::Notification.PSUPOn: Abstract Types::IntegerTs +2024-09-07 21:42:27,190 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,190 [main] TRACE UmlAttribute - created (3462) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::Notification.PSUPOn: Abstract Types::IntegerTs +2024-09-07 21:42:27,190 [main] ERROR UmlAttribute - unclassified CIM attribute: (4039) OTHER_CIM CIM const [0..1] null <> Environmental Agent::SecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:42:27,190 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,190 [main] TRACE UmlAttribute - created (4039) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::SecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:42:27,190 [main] ERROR UmlAttribute - unclassified CIM attribute: (3432) OTHER_CIM CIM const [0..1] null <> Environmental Agent::SecurityNotification.PSPBld: Abstract Types::Timestamp +2024-09-07 21:42:27,190 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,190 [main] TRACE UmlAttribute - created (3432) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::SecurityNotification.PSPBld: Abstract Types::Timestamp +2024-09-07 21:42:27,191 [main] ERROR UmlAttribute - unclassified CIM attribute: (3430) OTHER_CIM CIM const [0..1] null <> Environmental Agent::SecurityNotification.PSPIed: Abstract Types::Timestamp +2024-09-07 21:42:27,191 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,191 [main] TRACE UmlAttribute - created (3430) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::SecurityNotification.PSPIed: Abstract Types::Timestamp +2024-09-07 21:42:27,191 [main] ERROR UmlAttribute - unclassified CIM attribute: (3431) OTHER_CIM CIM const [0..1] null <> Environmental Agent::SecurityNotification.PSPPanel: Abstract Types::Timestamp +2024-09-07 21:42:27,191 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,191 [main] TRACE UmlAttribute - created (3431) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::SecurityNotification.PSPPanel: Abstract Types::Timestamp +2024-09-07 21:42:27,191 [main] ERROR UmlAttribute - unclassified CIM attribute: (3433) OTHER_CIM CIM const [0..1] null <> Environmental Agent::SecurityNotification.PSPPerimeter: Abstract Types::Timestamp +2024-09-07 21:42:27,191 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,191 [main] TRACE UmlAttribute - created (3433) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::SecurityNotification.PSPPerimeter: Abstract Types::Timestamp +2024-09-07 21:42:27,192 [main] ERROR UmlAttribute - unclassified CIM attribute: (159) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.AtkCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,192 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,192 [main] TRACE UmlAttribute - created (159) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.AtkCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,192 [main] ERROR UmlAttribute - unclassified CIM attribute: (593) OTHER_CIM CIM [0..1] null <> IED Agent::IED.CntRs: Abstract Types::CntRs +2024-09-07 21:42:27,192 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,192 [main] TRACE UmlAttribute - created (593) OTHER_CIM CIM [0..1] attribute <> IED Agent::IED.CntRs: Abstract Types::CntRs +2024-09-07 21:42:27,192 [main] ERROR UmlAttribute - unclassified CIM attribute: (3365) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.ConfigurationCRC: Abstract Types::IntegerTs +2024-09-07 21:42:27,192 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,193 [main] TRACE UmlAttribute - created (3365) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.ConfigurationCRC: Abstract Types::IntegerTs +2024-09-07 21:42:27,193 [main] ERROR UmlAttribute - unclassified CIM attribute: (3364) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.ConfigurationVersion: Abstract Types::CharStringTs +2024-09-07 21:42:27,193 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,193 [main] TRACE UmlAttribute - created (3364) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.ConfigurationVersion: Abstract Types::CharStringTs +2024-09-07 21:42:27,193 [main] ERROR UmlAttribute - unclassified CIM attribute: (3264) OTHER_CIM CIM [0..*] null <
> IED Agent::IED.CPU: IED Agent::CPUEntry +2024-09-07 21:42:27,193 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,193 [main] TRACE UmlAttribute - created (3264) OTHER_CIM CIM [0..*] attribute <
> IED Agent::IED.CPU: IED Agent::CPUEntry +2024-09-07 21:42:27,193 [main] ERROR UmlAttribute - unclassified CIM attribute: (164) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.CpuUsage: Abstract Types::FloatingTs +2024-09-07 21:42:27,193 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,193 [main] TRACE UmlAttribute - created (164) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.CpuUsage: Abstract Types::FloatingTs +2024-09-07 21:42:27,194 [main] ERROR UmlAttribute - unclassified CIM attribute: (165) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.DataInv: Abstract Types::CounterTs +2024-09-07 21:42:27,194 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,194 [main] TRACE UmlAttribute - created (165) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.DataInv: Abstract Types::CounterTs +2024-09-07 21:42:27,194 [main] ERROR UmlAttribute - unclassified CIM attribute: (1904) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.Descr: Abstract Types::CharString +2024-09-07 21:42:27,194 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,194 [main] TRACE UmlAttribute - created (1904) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.Descr: Abstract Types::CharString +2024-09-07 21:42:27,194 [main] ERROR UmlAttribute - unclassified CIM attribute: (174) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.ExpCerts: Abstract Types::IntegerTs +2024-09-07 21:42:27,194 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,194 [main] TRACE UmlAttribute - created (174) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.ExpCerts: Abstract Types::IntegerTs +2024-09-07 21:42:27,194 [main] ERROR UmlAttribute - unclassified CIM attribute: (3332) OTHER_CIM CIM [0..*] null <
> IED Agent::IED.EXT: IED Agent::EXTEntry +2024-09-07 21:42:27,194 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,194 [main] TRACE UmlAttribute - created (3332) OTHER_CIM CIM [0..*] attribute <
> IED Agent::IED.EXT: IED Agent::EXTEntry +2024-09-07 21:42:27,195 [main] ERROR UmlAttribute - unclassified CIM attribute: (3357) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.FirmwareVersion: Abstract Types::CharStringTs +2024-09-07 21:42:27,195 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,195 [main] TRACE UmlAttribute - created (3357) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.FirmwareVersion: Abstract Types::CharStringTs +2024-09-07 21:42:27,195 [main] ERROR UmlAttribute - unclassified CIM attribute: (1908) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.InternalTemp: Abstract Types::FloatingTs +2024-09-07 21:42:27,195 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,195 [main] TRACE UmlAttribute - created (1908) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.InternalTemp: Abstract Types::FloatingTs +2024-09-07 21:42:27,195 [main] ERROR UmlAttribute - unclassified CIM attribute: (3493) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.LastCPUFail: Abstract Types::IntegerTs +2024-09-07 21:42:27,195 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,195 [main] TRACE UmlAttribute - created (3493) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.LastCPUFail: Abstract Types::IntegerTs +2024-09-07 21:42:27,195 [main] ERROR UmlAttribute - unclassified CIM attribute: (3706) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:42:27,196 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,196 [main] TRACE UmlAttribute - created (3706) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:42:27,196 [main] ERROR UmlAttribute - unclassified CIM attribute: (3494) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.LastEXTFail: Abstract Types::IntegerTs +2024-09-07 21:42:27,196 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,196 [main] TRACE UmlAttribute - created (3494) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.LastEXTFail: Abstract Types::IntegerTs +2024-09-07 21:42:27,196 [main] ERROR UmlAttribute - unclassified CIM attribute: (3492) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.LastSTOREFail: Abstract Types::IntegerTs +2024-09-07 21:42:27,196 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,196 [main] TRACE UmlAttribute - created (3492) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.LastSTOREFail: Abstract Types::IntegerTs +2024-09-07 21:42:27,196 [main] ERROR UmlAttribute - unclassified CIM attribute: (3256) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.Location: Abstract Types::CharString +2024-09-07 21:42:27,196 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,196 [main] TRACE UmlAttribute - created (3256) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.Location: Abstract Types::CharString +2024-09-07 21:42:27,196 [main] ERROR UmlAttribute - unclassified CIM attribute: (3257) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.Maintainer: Abstract Types::CharString +2024-09-07 21:42:27,197 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,197 [main] TRACE UmlAttribute - created (3257) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.Maintainer: Abstract Types::CharString +2024-09-07 21:42:27,197 [main] ERROR UmlAttribute - unclassified CIM attribute: (3388) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.MemTotal: Abstract Types::Integer +2024-09-07 21:42:27,197 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,197 [main] TRACE UmlAttribute - created (3388) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.MemTotal: Abstract Types::Integer +2024-09-07 21:42:27,197 [main] ERROR UmlAttribute - unclassified CIM attribute: (1910) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.MemUsage: Abstract Types::FloatingTs +2024-09-07 21:42:27,197 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,197 [main] TRACE UmlAttribute - created (1910) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.MemUsage: Abstract Types::FloatingTs +2024-09-07 21:42:27,197 [main] ERROR UmlAttribute - unclassified CIM attribute: (3255) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.MIBVersion: Abstract Types::CharString +2024-09-07 21:42:27,197 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,198 [main] TRACE UmlAttribute - created (3255) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.MIBVersion: Abstract Types::CharString +2024-09-07 21:42:27,198 [main] ERROR UmlAttribute - unclassified CIM attribute: (167) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.MisEvCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,198 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,198 [main] TRACE UmlAttribute - created (167) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.MisEvCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,198 [main] ERROR UmlAttribute - unclassified CIM attribute: (1913) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.Name: Abstract Types::CharString +2024-09-07 21:42:27,198 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,198 [main] TRACE UmlAttribute - created (1913) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.Name: Abstract Types::CharString +2024-09-07 21:42:27,198 [main] ERROR UmlAttribute - unclassified CIM attribute: (3718) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.NearToExpCerts: Abstract Types::IntegerTs +2024-09-07 21:42:27,198 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,198 [main] TRACE UmlAttribute - created (3718) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.NearToExpCerts: Abstract Types::IntegerTs +2024-09-07 21:42:27,199 [main] ERROR UmlAttribute - unclassified CIM attribute: (177) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.NvStore: Abstract Types::FloatingTs +2024-09-07 21:42:27,199 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,199 [main] TRACE UmlAttribute - created (177) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.NvStore: Abstract Types::FloatingTs +2024-09-07 21:42:27,199 [main] ERROR UmlAttribute - unclassified CIM attribute: (178) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.NvStoreRem: Abstract Types::FloatingTs +2024-09-07 21:42:27,199 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,199 [main] TRACE UmlAttribute - created (178) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.NvStoreRem: Abstract Types::FloatingTs +2024-09-07 21:42:27,199 [main] ERROR UmlAttribute - unclassified CIM attribute: (157) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.PhyHealth: EnumeratedTypes::PhyHealthType +2024-09-07 21:42:27,199 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,200 [main] TRACE UmlAttribute - created (157) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.PhyHealth: EnumeratedTypes::PhyHealthType +2024-09-07 21:42:27,200 [main] ERROR UmlAttribute - unclassified CIM attribute: (158) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.PhyHealthChgCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,200 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,200 [main] TRACE UmlAttribute - created (158) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.PhyHealthChgCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,200 [main] ERROR UmlAttribute - unclassified CIM attribute: (3437) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.RBACDbUpdate: Abstract Types::CharStringTs +2024-09-07 21:42:27,200 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,200 [main] TRACE UmlAttribute - created (3437) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.RBACDbUpdate: Abstract Types::CharStringTs +2024-09-07 21:42:27,200 [main] ERROR UmlAttribute - unclassified CIM attribute: (176) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.RevCerts: Abstract Types::IntegerTs +2024-09-07 21:42:27,200 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,200 [main] TRACE UmlAttribute - created (176) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.RevCerts: Abstract Types::IntegerTs +2024-09-07 21:42:27,200 [main] ERROR UmlAttribute - unclassified CIM attribute: (3479) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.RevCheckFail: Abstract Types::CounterTs +2024-09-07 21:42:27,200 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,201 [main] TRACE UmlAttribute - created (3479) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.RevCheckFail: Abstract Types::CounterTs +2024-09-07 21:42:27,201 [main] ERROR UmlAttribute - unclassified CIM attribute: (3620) OTHER_CIM CIM [0..1] null <> IED Agent::IED.SecurityNotification: IED Agent::SecurityNotification +2024-09-07 21:42:27,201 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,201 [main] TRACE UmlAttribute - created (3620) OTHER_CIM CIM [0..1] attribute <> IED Agent::IED.SecurityNotification: IED Agent::SecurityNotification +2024-09-07 21:42:27,201 [main] ERROR UmlAttribute - unclassified CIM attribute: (3619) OTHER_CIM CIM [0..1] null <> IED Agent::IED.StateNotification: IED Agent::Notification +2024-09-07 21:42:27,201 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,201 [main] TRACE UmlAttribute - created (3619) OTHER_CIM CIM [0..1] attribute <> IED Agent::IED.StateNotification: IED Agent::Notification +2024-09-07 21:42:27,201 [main] ERROR UmlAttribute - unclassified CIM attribute: (3387) OTHER_CIM CIM [0..*] null <
> IED Agent::IED.STORE: IED Agent::STOREEntry +2024-09-07 21:42:27,201 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,201 [main] TRACE UmlAttribute - created (3387) OTHER_CIM CIM [0..*] attribute <
> IED Agent::IED.STORE: IED Agent::STOREEntry +2024-09-07 21:42:27,202 [main] ERROR UmlAttribute - unclassified CIM attribute: (4118) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.SvcViol: Abstract Types::CounterTs +2024-09-07 21:42:27,202 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,202 [main] TRACE UmlAttribute - created (4118) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.SvcViol: Abstract Types::CounterTs +2024-09-07 21:42:27,202 [main] ERROR UmlAttribute - unclassified CIM attribute: (3964) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.Watchdog: Abstract Types::CounterTs +2024-09-07 21:42:27,202 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,202 [main] TRACE UmlAttribute - created (3964) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.Watchdog: Abstract Types::CounterTs +2024-09-07 21:42:27,203 [main] ERROR UmlAttribute - unclassified CIM attribute: (2217) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.WrmStrCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,203 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,203 [main] TRACE UmlAttribute - created (2217) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.WrmStrCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,203 [main] ERROR UmlAttribute - unclassified CIM attribute: (3261) OTHER_CIM CIM [0..1] null <> IED Agent::CPUEntry.CntRs: Abstract Types::CntRs +2024-09-07 21:42:27,203 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,203 [main] TRACE UmlAttribute - created (3261) OTHER_CIM CIM [0..1] attribute <> IED Agent::CPUEntry.CntRs: Abstract Types::CntRs +2024-09-07 21:42:27,203 [main] ERROR UmlAttribute - unclassified CIM attribute: (3260) OTHER_CIM CIM const [0..1] null <> IED Agent::CPUEntry.Descr: Abstract Types::CharString +2024-09-07 21:42:27,203 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,203 [main] TRACE UmlAttribute - created (3260) OTHER_CIM CIM const [0..1] attribute <> IED Agent::CPUEntry.Descr: Abstract Types::CharString +2024-09-07 21:42:27,204 [main] ERROR UmlAttribute - unclassified CIM attribute: (3262) OTHER_CIM CIM const [0..1] null <> IED Agent::CPUEntry.Faulty: Abstract Types::BooleanValueTs +2024-09-07 21:42:27,204 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,204 [main] TRACE UmlAttribute - created (3262) OTHER_CIM CIM const [0..1] attribute <> IED Agent::CPUEntry.Faulty: Abstract Types::BooleanValueTs +2024-09-07 21:42:27,204 [main] ERROR UmlAttribute - unclassified CIM attribute: (3259) OTHER_CIM CIM const [0..1] null <> IED Agent::CPUEntry.ID: Abstract Types::EntityIndex +2024-09-07 21:42:27,204 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,204 [main] TRACE UmlAttribute - created (3259) OTHER_CIM CIM const [0..1] attribute <> IED Agent::CPUEntry.ID: Abstract Types::EntityIndex +2024-09-07 21:42:27,204 [main] ERROR UmlAttribute - unclassified CIM attribute: (3258) OTHER_CIM CIM const [0..1] null <> IED Agent::CPUEntry.Online: Abstract Types::BooleanValueTs +2024-09-07 21:42:27,205 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,205 [main] TRACE UmlAttribute - created (3258) OTHER_CIM CIM const [0..1] attribute <> IED Agent::CPUEntry.Online: Abstract Types::BooleanValueTs +2024-09-07 21:42:27,205 [main] ERROR UmlAttribute - unclassified CIM attribute: (3263) OTHER_CIM CIM const [0..1] null <> IED Agent::CPUEntry.Operable: Abstract Types::BooleanValueTs +2024-09-07 21:42:27,205 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,205 [main] TRACE UmlAttribute - created (3263) OTHER_CIM CIM const [0..1] attribute <> IED Agent::CPUEntry.Operable: Abstract Types::BooleanValueTs +2024-09-07 21:42:27,205 [main] ERROR UmlAttribute - unclassified CIM attribute: (3389) OTHER_CIM CIM const [0..1] null <> IED Agent::CPUEntry.Temperature: Abstract Types::FloatingTs +2024-09-07 21:42:27,205 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,205 [main] TRACE UmlAttribute - created (3389) OTHER_CIM CIM const [0..1] attribute <> IED Agent::CPUEntry.Temperature: Abstract Types::FloatingTs +2024-09-07 21:42:27,206 [main] ERROR UmlAttribute - unclassified CIM attribute: (3965) OTHER_CIM CIM const [0..1] null <> IED Agent::CPUEntry.Watchdog: Abstract Types::CounterTs +2024-09-07 21:42:27,206 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,206 [main] TRACE UmlAttribute - created (3965) OTHER_CIM CIM const [0..1] attribute <> IED Agent::CPUEntry.Watchdog: Abstract Types::CounterTs +2024-09-07 21:42:27,206 [main] ERROR UmlAttribute - unclassified CIM attribute: (3334) OTHER_CIM CIM const [0..1] null <> IED Agent::EXTEntry.ID: Abstract Types::EntityIndex +2024-09-07 21:42:27,206 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,206 [main] TRACE UmlAttribute - created (3334) OTHER_CIM CIM const [0..1] attribute <> IED Agent::EXTEntry.ID: Abstract Types::EntityIndex +2024-09-07 21:42:27,206 [main] ERROR UmlAttribute - unclassified CIM attribute: (3335) OTHER_CIM CIM const [0..1] null <> IED Agent::EXTEntry.Descr: Abstract Types::CharString +2024-09-07 21:42:27,207 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,207 [main] TRACE UmlAttribute - created (3335) OTHER_CIM CIM const [0..1] attribute <> IED Agent::EXTEntry.Descr: Abstract Types::CharString +2024-09-07 21:42:27,207 [main] ERROR UmlAttribute - unclassified CIM attribute: (3366) OTHER_CIM CIM const [0..1] null <> IED Agent::EXTEntry.ExtensionType: EnumeratedTypes::ExtType +2024-09-07 21:42:27,207 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,207 [main] TRACE UmlAttribute - created (3366) OTHER_CIM CIM const [0..1] attribute <> IED Agent::EXTEntry.ExtensionType: EnumeratedTypes::ExtType +2024-09-07 21:42:27,207 [main] ERROR UmlAttribute - unclassified CIM attribute: (3416) OTHER_CIM CIM const [0..1] null <> IED Agent::EXTEntry.CodeVersion: Abstract Types::CharStringTs +2024-09-07 21:42:27,207 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,207 [main] TRACE UmlAttribute - created (3416) OTHER_CIM CIM const [0..1] attribute <> IED Agent::EXTEntry.CodeVersion: Abstract Types::CharStringTs +2024-09-07 21:42:27,207 [main] ERROR UmlAttribute - unclassified CIM attribute: (3338) OTHER_CIM CIM const [0..1] null <> IED Agent::EXTEntry.Running: Abstract Types::BooleanValueTs +2024-09-07 21:42:27,208 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,208 [main] TRACE UmlAttribute - created (3338) OTHER_CIM CIM const [0..1] attribute <> IED Agent::EXTEntry.Running: Abstract Types::BooleanValueTs +2024-09-07 21:42:27,208 [main] ERROR UmlAttribute - unclassified CIM attribute: (3390) OTHER_CIM CIM const [0..1] null <> IED Agent::EXTEntry.Temperature: Abstract Types::FloatingTs +2024-09-07 21:42:27,208 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,208 [main] TRACE UmlAttribute - created (3390) OTHER_CIM CIM const [0..1] attribute <> IED Agent::EXTEntry.Temperature: Abstract Types::FloatingTs +2024-09-07 21:42:27,208 [main] ERROR UmlAttribute - unclassified CIM attribute: (3333) OTHER_CIM CIM const [1..1] null <> IED Agent::EXTEntry.Watchdog: Abstract Types::CounterTs +2024-09-07 21:42:27,208 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,208 [main] TRACE UmlAttribute - created (3333) OTHER_CIM CIM const [1..1] attribute <> IED Agent::EXTEntry.Watchdog: Abstract Types::CounterTs +2024-09-07 21:42:27,208 [main] ERROR UmlAttribute - unclassified CIM attribute: (3337) OTHER_CIM CIM const [0..1] null <> IED Agent::EXTEntry.Errors: Abstract Types::CounterTs +2024-09-07 21:42:27,209 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,209 [main] TRACE UmlAttribute - created (3337) OTHER_CIM CIM const [0..1] attribute <> IED Agent::EXTEntry.Errors: Abstract Types::CounterTs +2024-09-07 21:42:27,209 [main] ERROR UmlAttribute - unclassified CIM attribute: (3336) OTHER_CIM CIM [0..1] null <> IED Agent::EXTEntry.CntRs: Abstract Types::CntRs +2024-09-07 21:42:27,209 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,210 [main] TRACE UmlAttribute - created (3336) OTHER_CIM CIM [0..1] attribute <> IED Agent::EXTEntry.CntRs: Abstract Types::CntRs +2024-09-07 21:42:27,210 [main] ERROR UmlAttribute - unclassified CIM attribute: (3382) OTHER_CIM CIM const [0..1] null <> IED Agent::STOREEntry.ID: Abstract Types::EntityIndex +2024-09-07 21:42:27,210 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,210 [main] TRACE UmlAttribute - created (3382) OTHER_CIM CIM const [0..1] attribute <> IED Agent::STOREEntry.ID: Abstract Types::EntityIndex +2024-09-07 21:42:27,210 [main] ERROR UmlAttribute - unclassified CIM attribute: (3383) OTHER_CIM CIM const [0..1] null <> IED Agent::STOREEntry.Descr: Abstract Types::CharString +2024-09-07 21:42:27,210 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,210 [main] TRACE UmlAttribute - created (3383) OTHER_CIM CIM const [0..1] attribute <> IED Agent::STOREEntry.Descr: Abstract Types::CharString +2024-09-07 21:42:27,210 [main] ERROR UmlAttribute - unclassified CIM attribute: (3386) OTHER_CIM CIM const [0..1] null <> IED Agent::STOREEntry.NvStore: Abstract Types::Floating +2024-09-07 21:42:27,210 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,211 [main] TRACE UmlAttribute - created (3386) OTHER_CIM CIM const [0..1] attribute <> IED Agent::STOREEntry.NvStore: Abstract Types::Floating +2024-09-07 21:42:27,211 [main] ERROR UmlAttribute - unclassified CIM attribute: (3381) OTHER_CIM CIM const [0..1] null <> IED Agent::STOREEntry.NvStoreRem: Abstract Types::FloatingTs +2024-09-07 21:42:27,211 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,211 [main] TRACE UmlAttribute - created (3381) OTHER_CIM CIM const [0..1] attribute <> IED Agent::STOREEntry.NvStoreRem: Abstract Types::FloatingTs +2024-09-07 21:42:27,211 [main] ERROR UmlAttribute - unclassified CIM attribute: (3385) OTHER_CIM CIM const [0..1] null <> IED Agent::STOREEntry.Faulty: Abstract Types::BooleanValueTs +2024-09-07 21:42:27,215 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,215 [main] TRACE UmlAttribute - created (3385) OTHER_CIM CIM const [0..1] attribute <> IED Agent::STOREEntry.Faulty: Abstract Types::BooleanValueTs +2024-09-07 21:42:27,215 [main] ERROR UmlAttribute - unclassified CIM attribute: (3732) OTHER_CIM CIM [0..1] null <> IED Agent::STOREEntry.CntRs: Abstract Types::CntRs +2024-09-07 21:42:27,215 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,215 [main] TRACE UmlAttribute - created (3732) OTHER_CIM CIM [0..1] attribute <> IED Agent::STOREEntry.CntRs: Abstract Types::CntRs +2024-09-07 21:42:27,215 [main] ERROR UmlAttribute - unclassified CIM attribute: (3486) OTHER_CIM CIM const [0..1] null <> IED Agent::Notification.PhyHealthChgCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,215 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,216 [main] TRACE UmlAttribute - created (3486) OTHER_CIM CIM const [0..1] attribute <> IED Agent::Notification.PhyHealthChgCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,216 [main] ERROR UmlAttribute - unclassified CIM attribute: (3497) OTHER_CIM CIM const [0..1] null <> IED Agent::Notification.InternalTemp: Abstract Types::FloatingTs +2024-09-07 21:42:27,216 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,216 [main] TRACE UmlAttribute - created (3497) OTHER_CIM CIM const [0..1] attribute <> IED Agent::Notification.InternalTemp: Abstract Types::FloatingTs +2024-09-07 21:42:27,216 [main] ERROR UmlAttribute - unclassified CIM attribute: (3495) OTHER_CIM CIM const [0..1] null <> IED Agent::Notification.NvStore: Abstract Types::FloatingTs +2024-09-07 21:42:27,216 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,216 [main] TRACE UmlAttribute - created (3495) OTHER_CIM CIM const [0..1] attribute <> IED Agent::Notification.NvStore: Abstract Types::FloatingTs +2024-09-07 21:42:27,216 [main] ERROR UmlAttribute - unclassified CIM attribute: (3496) OTHER_CIM CIM const [0..1] null <> IED Agent::Notification.NvStoreRem: Abstract Types::FloatingTs +2024-09-07 21:42:27,216 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,216 [main] TRACE UmlAttribute - created (3496) OTHER_CIM CIM const [0..1] attribute <> IED Agent::Notification.NvStoreRem: Abstract Types::FloatingTs +2024-09-07 21:42:27,217 [main] ERROR UmlAttribute - unclassified CIM attribute: (3480) OTHER_CIM CIM const [0..1] null <> IED Agent::Notification.PhyHealth: EnumeratedTypes::PhyHealthType +2024-09-07 21:42:27,217 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,217 [main] TRACE UmlAttribute - created (3480) OTHER_CIM CIM const [0..1] attribute <> IED Agent::Notification.PhyHealth: EnumeratedTypes::PhyHealthType +2024-09-07 21:42:27,217 [main] ERROR UmlAttribute - unclassified CIM attribute: (3489) OTHER_CIM CIM const [0..1] null <> IED Agent::Notification.WrmStrCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,217 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,218 [main] TRACE UmlAttribute - created (3489) OTHER_CIM CIM const [0..1] attribute <> IED Agent::Notification.WrmStrCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,218 [main] ERROR UmlAttribute - unclassified CIM attribute: (3502) OTHER_CIM CIM const [0..1] null <> IED Agent::SecurityNotification.AtkCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,218 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,218 [main] TRACE UmlAttribute - created (3502) OTHER_CIM CIM const [0..1] attribute <> IED Agent::SecurityNotification.AtkCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,218 [main] ERROR UmlAttribute - unclassified CIM attribute: (3499) OTHER_CIM CIM const [0..1] null <> IED Agent::SecurityNotification.ExpCerts: Abstract Types::IntegerTs +2024-09-07 21:42:27,218 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,218 [main] TRACE UmlAttribute - created (3499) OTHER_CIM CIM const [0..1] attribute <> IED Agent::SecurityNotification.ExpCerts: Abstract Types::IntegerTs +2024-09-07 21:42:27,218 [main] ERROR UmlAttribute - unclassified CIM attribute: (3730) OTHER_CIM CIM const [0..1] null <> IED Agent::SecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:42:27,218 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,218 [main] TRACE UmlAttribute - created (3730) OTHER_CIM CIM const [0..1] attribute <> IED Agent::SecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:42:27,218 [main] ERROR UmlAttribute - unclassified CIM attribute: (3731) OTHER_CIM CIM const [0..1] null <> IED Agent::SecurityNotification.NearToExpCerts: Abstract Types::IntegerTs +2024-09-07 21:42:27,219 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,219 [main] TRACE UmlAttribute - created (3731) OTHER_CIM CIM const [0..1] attribute <> IED Agent::SecurityNotification.NearToExpCerts: Abstract Types::IntegerTs +2024-09-07 21:42:27,219 [main] ERROR UmlAttribute - unclassified CIM attribute: (3498) OTHER_CIM CIM const [0..1] null <> IED Agent::SecurityNotification.RevCerts: Abstract Types::IntegerTs +2024-09-07 21:42:27,219 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,219 [main] TRACE UmlAttribute - created (3498) OTHER_CIM CIM const [0..1] attribute <> IED Agent::SecurityNotification.RevCerts: Abstract Types::IntegerTs +2024-09-07 21:42:27,219 [main] ERROR UmlAttribute - unclassified CIM attribute: (3500) OTHER_CIM CIM const [0..1] null <> IED Agent::SecurityNotification.RevCheckFail: Abstract Types::CounterTs +2024-09-07 21:42:27,219 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,219 [main] TRACE UmlAttribute - created (3500) OTHER_CIM CIM const [0..1] attribute <> IED Agent::SecurityNotification.RevCheckFail: Abstract Types::CounterTs +2024-09-07 21:42:27,220 [main] ERROR UmlAttribute - unclassified CIM attribute: (4079) OTHER_CIM CIM const [1..1] null <> Common objects::CommonProtocolInfo.IEC62351part3: Abstract Types::BooleanValue +2024-09-07 21:42:27,220 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,220 [main] TRACE UmlAttribute - created (4079) OTHER_CIM CIM const [1..1] attribute <> Common objects::CommonProtocolInfo.IEC62351part3: Abstract Types::BooleanValue +2024-09-07 21:42:27,220 [main] ERROR UmlAttribute - unclassified CIM attribute: (4087) OTHER_CIM CIM const [0..1] null <> Common objects::CommonProtocolInfo.Part3ConnectionId: Abstract Types::Integer +2024-09-07 21:42:27,220 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,220 [main] TRACE UmlAttribute - created (4087) OTHER_CIM CIM const [0..1] attribute <> Common objects::CommonProtocolInfo.Part3ConnectionId: Abstract Types::Integer +2024-09-07 21:42:27,220 [main] ERROR UmlAttribute - unclassified CIM attribute: (4099) OTHER_CIM CIM const [0..1] null <> Common objects::CommonProtocolInfo.TCPHndShTime: Abstract Types::Floating +2024-09-07 21:42:27,220 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,220 [main] TRACE UmlAttribute - created (4099) OTHER_CIM CIM const [0..1] attribute <> Common objects::CommonProtocolInfo.TCPHndShTime: Abstract Types::Floating +2024-09-07 21:42:27,221 [main] ERROR UmlAttribute - unclassified CIM attribute: (4107) OTHER_CIM CIM const [0..1] null <> Common objects::CommonProtocolInfo.TLSHndTime: Abstract Types::Floating +2024-09-07 21:42:27,221 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,221 [main] TRACE UmlAttribute - created (4107) OTHER_CIM CIM const [0..1] attribute <> Common objects::CommonProtocolInfo.TLSHndTime: Abstract Types::Floating +2024-09-07 21:42:27,221 [main] ERROR UmlAttribute - unclassified CIM attribute: (4109) OTHER_CIM CIM const [0..1] null <> Common objects::CommonProtocolInfo.TLSRenegotiationTime: Abstract Types::Floating +2024-09-07 21:42:27,221 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,221 [main] TRACE UmlAttribute - created (4109) OTHER_CIM CIM const [0..1] attribute <> Common objects::CommonProtocolInfo.TLSRenegotiationTime: Abstract Types::Floating +2024-09-07 21:42:27,221 [main] ERROR UmlAttribute - unclassified CIM attribute: (4108) OTHER_CIM CIM const [0..1] null <> Common objects::CommonProtocolInfo.TLSResumptionTime: Abstract Types::Floating +2024-09-07 21:42:27,221 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,221 [main] TRACE UmlAttribute - created (4108) OTHER_CIM CIM const [0..1] attribute <> Common objects::CommonProtocolInfo.TLSResumptionTime: Abstract Types::Floating +2024-09-07 21:42:27,221 [main] ERROR UmlAttribute - unclassified CIM attribute: (4106) OTHER_CIM CIM const [0..1] null <> Common objects::CommonProtocolInfo.TotalHndTime: Abstract Types::Floating +2024-09-07 21:42:27,222 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,222 [main] TRACE UmlAttribute - created (4106) OTHER_CIM CIM const [0..1] attribute <> Common objects::CommonProtocolInfo.TotalHndTime: Abstract Types::Floating +2024-09-07 21:42:27,222 [main] ERROR UmlAttribute - unclassified CIM attribute: (4105) OTHER_CIM CIM const [0..1] null <> Common objects::CommonProtocolInfo.TransportHndTime: Abstract Types::Floating +2024-09-07 21:42:27,222 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,222 [main] TRACE UmlAttribute - created (4105) OTHER_CIM CIM const [0..1] attribute <> Common objects::CommonProtocolInfo.TransportHndTime: Abstract Types::Floating +2024-09-07 21:42:27,222 [main] ERROR UmlAttribute - unclassified CIM attribute: (4460) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsEarlyDataCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,222 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,222 [main] TRACE UmlAttribute - created (4460) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsEarlyDataCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,222 [main] ERROR UmlAttribute - unclassified CIM attribute: (4454) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDisallowedCipherCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,223 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,223 [main] TRACE UmlAttribute - created (4454) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDisallowedCipherCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,223 [main] ERROR UmlAttribute - unclassified CIM attribute: (4461) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsCertSizeMismatchCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,223 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,223 [main] TRACE UmlAttribute - created (4461) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsCertSizeMismatchCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,223 [main] ERROR UmlAttribute - unclassified CIM attribute: (4463) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoCaMatchCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,223 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,223 [main] TRACE UmlAttribute - created (4463) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoCaMatchCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,223 [main] ERROR UmlAttribute - unclassified CIM attribute: (4464) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoSigAlgoExtCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,223 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,223 [main] TRACE UmlAttribute - created (4464) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoSigAlgoExtCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,224 [main] ERROR UmlAttribute - unclassified CIM attribute: (4465) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDepDigAlgCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,224 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,224 [main] TRACE UmlAttribute - created (4465) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDepDigAlgCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,224 [main] ERROR UmlAttribute - unclassified CIM attribute: (4466) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoTrustedCertMatchCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,224 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,224 [main] TRACE UmlAttribute - created (4466) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoTrustedCertMatchCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,224 [main] ERROR UmlAttribute - unclassified CIM attribute: (4467) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsCertRevokedCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,224 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,225 [main] TRACE UmlAttribute - created (4467) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsCertRevokedCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,225 [main] ERROR UmlAttribute - unclassified CIM attribute: (4468) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoCrlCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,226 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,226 [main] TRACE UmlAttribute - created (4468) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoCrlCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,226 [main] ERROR UmlAttribute - unclassified CIM attribute: (4469) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsCrlExpCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,226 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,226 [main] TRACE UmlAttribute - created (4469) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsCrlExpCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,226 [main] ERROR UmlAttribute - unclassified CIM attribute: (4470) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoEpskModeCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,227 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,227 [main] TRACE UmlAttribute - created (4470) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoEpskModeCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,227 [main] ERROR UmlAttribute - unclassified CIM attribute: (4471) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoEncryptThenMacCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,227 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,227 [main] TRACE UmlAttribute - created (4471) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoEncryptThenMacCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,227 [main] ERROR UmlAttribute - unclassified CIM attribute: (4472) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsOcspResExpCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,227 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,227 [main] TRACE UmlAttribute - created (4472) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsOcspResExpCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,227 [main] ERROR UmlAttribute - unclassified CIM attribute: (4473) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsCertExpCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,228 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,228 [main] TRACE UmlAttribute - created (4473) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsCertExpCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,228 [main] ERROR UmlAttribute - unclassified CIM attribute: (4474) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoSkUpdateCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,228 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,228 [main] TRACE UmlAttribute - created (4474) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoSkUpdateCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,228 [main] ERROR UmlAttribute - unclassified CIM attribute: (4475) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsSigAlgMismatchCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,228 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,229 [main] TRACE UmlAttribute - created (4475) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsSigAlgMismatchCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,229 [main] ERROR UmlAttribute - unclassified CIM attribute: (4476) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsSigVFailedCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,229 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,229 [main] TRACE UmlAttribute - created (4476) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsSigVFailedCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,229 [main] ERROR UmlAttribute - unclassified CIM attribute: (4477) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsShortRsaKeyCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,229 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,229 [main] TRACE UmlAttribute - created (4477) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsShortRsaKeyCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,229 [main] ERROR UmlAttribute - unclassified CIM attribute: (4478) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsMinKeyCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,229 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,230 [main] TRACE UmlAttribute - created (4478) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsMinKeyCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,230 [main] ERROR UmlAttribute - unclassified CIM attribute: (4479) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsShortKeyCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,230 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,230 [main] TRACE UmlAttribute - created (4479) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsShortKeyCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,230 [main] ERROR UmlAttribute - unclassified CIM attribute: (4480) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDepHashCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,230 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,230 [main] TRACE UmlAttribute - created (4480) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDepHashCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,230 [main] ERROR UmlAttribute - unclassified CIM attribute: (4462) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoTrCaMatchSCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,231 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,231 [main] TRACE UmlAttribute - created (4462) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoTrCaMatchSCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,231 [main] ERROR UmlAttribute - unclassified CIM attribute: (4455) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsSessionidExpiredFullHsCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,231 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,231 [main] TRACE UmlAttribute - created (4455) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsSessionidExpiredFullHsCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,231 [main] ERROR UmlAttribute - unclassified CIM attribute: (4458) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoRenegTicket: Abstract Types::CounterTs +2024-09-07 21:42:27,231 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,231 [main] TRACE UmlAttribute - created (4458) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoRenegTicket: Abstract Types::CounterTs +2024-09-07 21:42:27,231 [main] ERROR UmlAttribute - unclassified CIM attribute: (4457) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoRenegSigCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,232 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,232 [main] TRACE UmlAttribute - created (4457) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoRenegSigCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,232 [main] ERROR UmlAttribute - unclassified CIM attribute: (4453) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsSessionClosedRevCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,232 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,232 [main] TRACE UmlAttribute - created (4453) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsSessionClosedRevCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,232 [main] ERROR UmlAttribute - unclassified CIM attribute: (4459) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoTrCaMatchScCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,232 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,233 [main] TRACE UmlAttribute - created (4459) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoTrCaMatchScCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,233 [main] ERROR UmlAttribute - unclassified CIM attribute: (4450) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsHsSuccessCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,233 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,233 [main] TRACE UmlAttribute - created (4450) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsHsSuccessCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,233 [main] ERROR UmlAttribute - unclassified CIM attribute: (4456) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoReneg: Abstract Types::CounterTs +2024-09-07 21:42:27,233 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,233 [main] TRACE UmlAttribute - created (4456) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoReneg: Abstract Types::CounterTs +2024-09-07 21:42:27,233 [main] ERROR UmlAttribute - unclassified CIM attribute: (4452) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoLocalCertCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,233 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,233 [main] TRACE UmlAttribute - created (4452) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoLocalCertCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,234 [main] ERROR UmlAttribute - unclassified CIM attribute: (4447) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsWeakVersionCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,234 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,234 [main] TRACE UmlAttribute - created (4447) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsWeakVersionCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,234 [main] ERROR UmlAttribute - unclassified CIM attribute: (4449) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsVersionChangeCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,234 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,234 [main] TRACE UmlAttribute - created (4449) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsVersionChangeCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,234 [main] ERROR UmlAttribute - unclassified CIM attribute: (4446) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDeprecatedVersionCnT: Abstract Types::CounterTs +2024-09-07 21:42:27,234 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,235 [main] TRACE UmlAttribute - created (4446) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDeprecatedVersionCnT: Abstract Types::CounterTs +2024-09-07 21:42:27,235 [main] ERROR UmlAttribute - unclassified CIM attribute: (4451) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoPeerCertCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,235 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,235 [main] TRACE UmlAttribute - created (4451) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoPeerCertCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,235 [main] ERROR UmlAttribute - unclassified CIM attribute: (4448) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDisallowedVersionCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,235 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,235 [main] TRACE UmlAttribute - created (4448) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDisallowedVersionCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,235 [main] ERROR UmlAttribute - unclassified CIM attribute: (4488) OTHER_CIM CIM const [0..1] null <> IEC62351-3 ed.2 Agent::TLSSession.SessionId: Abstract Types::EntityIndex +2024-09-07 21:42:27,235 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,235 [main] TRACE UmlAttribute - created (4488) OTHER_CIM CIM const [0..1] attribute <> IEC62351-3 ed.2 Agent::TLSSession.SessionId: Abstract Types::EntityIndex +2024-09-07 21:42:27,236 [main] ERROR UmlAttribute - unclassified CIM attribute: (4489) OTHER_CIM CIM [0..1] null <> IEC62351-3 ed.2 Agent::TLSSession.CntRs: Abstract Types::CntRs +2024-09-07 21:42:27,236 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,236 [main] TRACE UmlAttribute - created (4489) OTHER_CIM CIM [0..1] attribute <> IEC62351-3 ed.2 Agent::TLSSession.CntRs: Abstract Types::CntRs +2024-09-07 21:42:27,236 [main] ERROR UmlAttribute - unclassified CIM attribute: (4490) OTHER_CIM CIM const [0..1] null <> IEC62351-3 ed.2 Agent::TLSSession.LocAddress: Abstract Types::InetAddress +2024-09-07 21:42:27,237 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,237 [main] TRACE UmlAttribute - created (4490) OTHER_CIM CIM const [0..1] attribute <> IEC62351-3 ed.2 Agent::TLSSession.LocAddress: Abstract Types::InetAddress +2024-09-07 21:42:27,237 [main] ERROR UmlAttribute - unclassified CIM attribute: (4491) OTHER_CIM CIM const [0..1] null <> IEC62351-3 ed.2 Agent::TLSSession.LocAddressType: Abstract Types::InetAddressType +2024-09-07 21:42:27,237 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,237 [main] TRACE UmlAttribute - created (4491) OTHER_CIM CIM const [0..1] attribute <> IEC62351-3 ed.2 Agent::TLSSession.LocAddressType: Abstract Types::InetAddressType +2024-09-07 21:42:27,237 [main] ERROR UmlAttribute - unclassified CIM attribute: (4492) OTHER_CIM CIM const [0..1] null <> IEC62351-3 ed.2 Agent::TLSSession.RemAddress: Abstract Types::InetAddress +2024-09-07 21:42:27,237 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,237 [main] TRACE UmlAttribute - created (4492) OTHER_CIM CIM const [0..1] attribute <> IEC62351-3 ed.2 Agent::TLSSession.RemAddress: Abstract Types::InetAddress +2024-09-07 21:42:27,237 [main] ERROR UmlAttribute - unclassified CIM attribute: (4493) OTHER_CIM CIM const [0..1] null <> IEC62351-3 ed.2 Agent::TLSSession.RemAddressType: Abstract Types::InetAddressType +2024-09-07 21:42:27,238 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,238 [main] TRACE UmlAttribute - created (4493) OTHER_CIM CIM const [0..1] attribute <> IEC62351-3 ed.2 Agent::TLSSession.RemAddressType: Abstract Types::InetAddressType +2024-09-07 21:42:27,238 [main] ERROR UmlAttribute - unclassified CIM attribute: (4481) OTHER_CIM CIM [0..1] null <> IEC62351-3 ed.2 Agent::Summary.CntRs: Abstract Types::CntRs +2024-09-07 21:42:27,238 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,238 [main] TRACE UmlAttribute - created (4481) OTHER_CIM CIM [0..1] attribute <> IEC62351-3 ed.2 Agent::Summary.CntRs: Abstract Types::CntRs +2024-09-07 21:42:27,238 [main] ERROR UmlAttribute - unclassified CIM attribute: (4482) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::Summary.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:42:27,238 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,238 [main] TRACE UmlAttribute - created (4482) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::Summary.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:42:27,238 [main] ERROR UmlAttribute - unclassified CIM attribute: (4483) OTHER_CIM CIM [0..*] null <
> IEC62351-3 ed.2 Agent::Summary.Server: IEC62351-3 ed.2 Agent::ServerTLS +2024-09-07 21:42:27,238 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,238 [main] TRACE UmlAttribute - created (4483) OTHER_CIM CIM [0..*] attribute <
> IEC62351-3 ed.2 Agent::Summary.Server: IEC62351-3 ed.2 Agent::ServerTLS +2024-09-07 21:42:27,238 [main] ERROR UmlAttribute - unclassified CIM attribute: (4484) OTHER_CIM CIM [0..*] null <
> IEC62351-3 ed.2 Agent::Summary.Client: IEC62351-3 ed.2 Agent::ClientTLS +2024-09-07 21:42:27,239 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,239 [main] TRACE UmlAttribute - created (4484) OTHER_CIM CIM [0..*] attribute <
> IEC62351-3 ed.2 Agent::Summary.Client: IEC62351-3 ed.2 Agent::ClientTLS +2024-09-07 21:42:27,239 [main] ERROR UmlAttribute - unclassified CIM attribute: (4485) OTHER_CIM CIM [0..1] null <> IEC62351-3 ed.2 Agent::Summary.SecurityNotification: IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification +2024-09-07 21:42:27,239 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,239 [main] TRACE UmlAttribute - created (4485) OTHER_CIM CIM [0..1] attribute <> IEC62351-3 ed.2 Agent::Summary.SecurityNotification: IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification +2024-09-07 21:42:27,239 [main] ERROR UmlAttribute - unclassified CIM attribute: (4486) OTHER_CIM CIM [0..1] null <> IEC62351-3 ed.2 Agent::Summary.StateNotification: NullCIM::NullCIM +2024-09-07 21:42:27,239 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,239 [main] TRACE UmlAttribute - created (4486) OTHER_CIM CIM [0..1] attribute <> IEC62351-3 ed.2 Agent::Summary.StateNotification: NullCIM::NullCIM +2024-09-07 21:42:27,239 [main] ERROR UmlAttribute - unclassified CIM attribute: (4487) OTHER_CIM CIM const [0..1] null <> IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:42:27,239 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,239 [main] TRACE UmlAttribute - created (4487) OTHER_CIM CIM const [0..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:42:27,239 [main] ERROR UmlAttribute - unclassified CIM attribute: (3991) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.AuthFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,239 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,240 [main] TRACE UmlAttribute - created (3991) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.AuthFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,240 [main] ERROR UmlAttribute - unclassified CIM attribute: (3992) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.CtrlPrivFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,240 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,240 [main] TRACE UmlAttribute - created (3992) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.CtrlPrivFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,240 [main] ERROR UmlAttribute - unclassified CIM attribute: (3993) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,240 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,240 [main] TRACE UmlAttribute - created (3993) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,240 [main] ERROR UmlAttribute - unclassified CIM attribute: (3405) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.ExT0Cnt: Abstract Types::CounterTs +2024-09-07 21:42:27,240 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,240 [main] TRACE UmlAttribute - created (3405) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.ExT0Cnt: Abstract Types::CounterTs +2024-09-07 21:42:27,240 [main] ERROR UmlAttribute - unclassified CIM attribute: (3406) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.ExT1Cnt: Abstract Types::CounterTs +2024-09-07 21:42:27,241 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,241 [main] TRACE UmlAttribute - created (3406) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.ExT1Cnt: Abstract Types::CounterTs +2024-09-07 21:42:27,241 [main] ERROR UmlAttribute - unclassified CIM attribute: (3407) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.ExT2Cnt: Abstract Types::CounterTs +2024-09-07 21:42:27,241 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,241 [main] TRACE UmlAttribute - created (3407) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.ExT2Cnt: Abstract Types::CounterTs +2024-09-07 21:42:27,241 [main] ERROR UmlAttribute - unclassified CIM attribute: (3408) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.ExT3Cnt: Abstract Types::CounterTs +2024-09-07 21:42:27,241 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,241 [main] TRACE UmlAttribute - created (3408) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.ExT3Cnt: Abstract Types::CounterTs +2024-09-07 21:42:27,241 [main] ERROR UmlAttribute - unclassified CIM attribute: (3124) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.InDisc: Abstract Types::CounterTs +2024-09-07 21:42:27,241 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,242 [main] TRACE UmlAttribute - created (3124) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.InDisc: Abstract Types::CounterTs +2024-09-07 21:42:27,242 [main] ERROR UmlAttribute - unclassified CIM attribute: (3994) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.InErrCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,242 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,242 [main] TRACE UmlAttribute - created (3994) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.InErrCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,242 [main] ERROR UmlAttribute - unclassified CIM attribute: (3995) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.InOvCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,242 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,243 [main] TRACE UmlAttribute - created (3995) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.InOvCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,243 [main] ERROR UmlAttribute - unclassified CIM attribute: (3996) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.InterPDUTime: Abstract Types::Floating +2024-09-07 21:42:27,243 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,243 [main] TRACE UmlAttribute - created (3996) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.InterPDUTime: Abstract Types::Floating +2024-09-07 21:42:27,243 [main] ERROR UmlAttribute - unclassified CIM attribute: (3997) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.MisPDUCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,243 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,243 [main] TRACE UmlAttribute - created (3997) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.MisPDUCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,243 [main] ERROR UmlAttribute - unclassified CIM attribute: (3141) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.OutErr: Abstract Types::CounterTs +2024-09-07 21:42:27,243 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,243 [main] TRACE UmlAttribute - created (3141) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.OutErr: Abstract Types::CounterTs +2024-09-07 21:42:27,243 [main] ERROR UmlAttribute - unclassified CIM attribute: (3990) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.OutUv: Abstract Types::CounterTs +2024-09-07 21:42:27,243 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,244 [main] TRACE UmlAttribute - created (3990) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.OutUv: Abstract Types::CounterTs +2024-09-07 21:42:27,244 [main] ERROR UmlAttribute - unclassified CIM attribute: (3998) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PDURTT: Abstract Types::Floating +2024-09-07 21:42:27,244 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,244 [main] TRACE UmlAttribute - created (3998) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PDURTT: Abstract Types::Floating +2024-09-07 21:42:27,244 [main] ERROR UmlAttribute - unclassified CIM attribute: (3999) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PDUSizeFail: Abstract Types::CounterTs +2024-09-07 21:42:27,244 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,244 [main] TRACE UmlAttribute - created (3999) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PDUSizeFail: Abstract Types::CounterTs +2024-09-07 21:42:27,244 [main] ERROR UmlAttribute - unclassified CIM attribute: (4000) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PduTampCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,244 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,244 [main] TRACE UmlAttribute - created (4000) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PduTampCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,244 [main] ERROR UmlAttribute - unclassified CIM attribute: (4001) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PrimaryInterface: Abstract Types::BooleanValueTs +2024-09-07 21:42:27,244 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,245 [main] TRACE UmlAttribute - created (4001) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PrimaryInterface: Abstract Types::BooleanValueTs +2024-09-07 21:42:27,245 [main] ERROR UmlAttribute - unclassified CIM attribute: (4002) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PrivFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,245 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,245 [main] TRACE UmlAttribute - created (4002) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PrivFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,245 [main] ERROR UmlAttribute - unclassified CIM attribute: (3403) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RtxCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,245 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,245 [main] TRACE UmlAttribute - created (3403) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RtxCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,245 [main] ERROR UmlAttribute - unclassified CIM attribute: (3123) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RxCritical: Abstract Types::CounterTs +2024-09-07 21:42:27,245 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,245 [main] TRACE UmlAttribute - created (3123) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RxCritical: Abstract Types::CounterTs +2024-09-07 21:42:27,245 [main] ERROR UmlAttribute - unclassified CIM attribute: (4003) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RxPdu: Abstract Types::CounterTs +2024-09-07 21:42:27,245 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,245 [main] TRACE UmlAttribute - created (4003) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RxPdu: Abstract Types::CounterTs +2024-09-07 21:42:27,245 [main] ERROR UmlAttribute - unclassified CIM attribute: (3135) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RxSolicitedReq: Abstract Types::CounterTs +2024-09-07 21:42:27,246 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,246 [main] TRACE UmlAttribute - created (3135) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RxSolicitedReq: Abstract Types::CounterTs +2024-09-07 21:42:27,246 [main] ERROR UmlAttribute - unclassified CIM attribute: (3145) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RxUnsolicitedReq: Abstract Types::CounterTs +2024-09-07 21:42:27,246 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,246 [main] TRACE UmlAttribute - created (3145) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RxUnsolicitedReq: Abstract Types::CounterTs +2024-09-07 21:42:27,246 [main] ERROR UmlAttribute - unclassified CIM attribute: (4004) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.SessKeyFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,246 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,246 [main] TRACE UmlAttribute - created (4004) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.SessKeyFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,246 [main] ERROR UmlAttribute - unclassified CIM attribute: (3122) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.TxCritical: Abstract Types::CounterTs +2024-09-07 21:42:27,246 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,247 [main] TRACE UmlAttribute - created (3122) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.TxCritical: Abstract Types::CounterTs +2024-09-07 21:42:27,247 [main] ERROR UmlAttribute - unclassified CIM attribute: (4005) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.TxPdu: Abstract Types::CounterTs +2024-09-07 21:42:27,247 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,247 [main] TRACE UmlAttribute - created (4005) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.TxPdu: Abstract Types::CounterTs +2024-09-07 21:42:27,247 [main] ERROR UmlAttribute - unclassified CIM attribute: (3120) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.TxSolicitedReq: Abstract Types::CounterTs +2024-09-07 21:42:27,247 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,247 [main] TRACE UmlAttribute - created (3120) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.TxSolicitedReq: Abstract Types::CounterTs +2024-09-07 21:42:27,247 [main] ERROR UmlAttribute - unclassified CIM attribute: (3121) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.TxUnsolicitedReq: Abstract Types::CounterTs +2024-09-07 21:42:27,247 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,247 [main] TRACE UmlAttribute - created (3121) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.TxUnsolicitedReq: Abstract Types::CounterTs +2024-09-07 21:42:27,247 [main] ERROR UmlAttribute - unclassified CIM attribute: (4006) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.UpKeyFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,248 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,248 [main] TRACE UmlAttribute - created (4006) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.UpKeyFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,248 [main] ERROR UmlAttribute - unclassified CIM attribute: (3726) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.AssociationId: Abstract Types::EntityIndex +2024-09-07 21:42:27,248 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,248 [main] TRACE UmlAttribute - created (3726) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.AssociationId: Abstract Types::EntityIndex +2024-09-07 21:42:27,248 [main] ERROR UmlAttribute - unclassified CIM attribute: (3241) OTHER_CIM CIM [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.CntRs: Abstract Types::CntRs +2024-09-07 21:42:27,248 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,248 [main] TRACE UmlAttribute - created (3241) OTHER_CIM CIM [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.CntRs: Abstract Types::CntRs +2024-09-07 21:42:27,248 [main] ERROR UmlAttribute - unclassified CIM attribute: (2417) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.LocAddress: Abstract Types::InetAddress +2024-09-07 21:42:27,248 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,248 [main] TRACE UmlAttribute - created (2417) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.LocAddress: Abstract Types::InetAddress +2024-09-07 21:42:27,248 [main] ERROR UmlAttribute - unclassified CIM attribute: (3715) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.LocAddressType: Abstract Types::InetAddressType +2024-09-07 21:42:27,249 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,249 [main] TRACE UmlAttribute - created (3715) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.LocAddressType: Abstract Types::InetAddressType +2024-09-07 21:42:27,249 [main] ERROR UmlAttribute - unclassified CIM attribute: (2413) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.ProtID: EnumeratedTypes::ProtIdType +2024-09-07 21:42:27,249 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,249 [main] TRACE UmlAttribute - created (2413) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.ProtID: EnumeratedTypes::ProtIdType +2024-09-07 21:42:27,249 [main] ERROR UmlAttribute - unclassified CIM attribute: (2412) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.ProviderDesc: Abstract Types::CharString +2024-09-07 21:42:27,249 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,249 [main] TRACE UmlAttribute - created (2412) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.ProviderDesc: Abstract Types::CharString +2024-09-07 21:42:27,249 [main] ERROR UmlAttribute - unclassified CIM attribute: (2411) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.ProviderName: Abstract Types::CharString +2024-09-07 21:42:27,249 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,249 [main] TRACE UmlAttribute - created (2411) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.ProviderName: Abstract Types::CharString +2024-09-07 21:42:27,249 [main] ERROR UmlAttribute - unclassified CIM attribute: (2416) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.RemAddress: Abstract Types::InetAddress +2024-09-07 21:42:27,249 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,250 [main] TRACE UmlAttribute - created (2416) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.RemAddress: Abstract Types::InetAddress +2024-09-07 21:42:27,250 [main] ERROR UmlAttribute - unclassified CIM attribute: (3714) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.RemAddressType: Abstract Types::InetAddressType +2024-09-07 21:42:27,250 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,250 [main] TRACE UmlAttribute - created (3714) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.RemAddressType: Abstract Types::InetAddressType +2024-09-07 21:42:27,250 [main] ERROR UmlAttribute - unclassified CIM attribute: (2410) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.TLnkErrCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,250 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,250 [main] TRACE UmlAttribute - created (2410) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.TLnkErrCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,250 [main] ERROR UmlAttribute - unclassified CIM attribute: (2415) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.TLnkTyp: EnumeratedTypes::LnkType +2024-09-07 21:42:27,250 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,250 [main] TRACE UmlAttribute - created (2415) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.TLnkTyp: EnumeratedTypes::LnkType +2024-09-07 21:42:27,250 [main] ERROR UmlAttribute - unclassified CIM attribute: (3248) OTHER_CIM CIM [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Summary.CntRs: Abstract Types::CntRs +2024-09-07 21:42:27,250 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,251 [main] TRACE UmlAttribute - created (3248) OTHER_CIM CIM [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Summary.CntRs: Abstract Types::CntRs +2024-09-07 21:42:27,251 [main] ERROR UmlAttribute - unclassified CIM attribute: (3708) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent::Summary.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:42:27,251 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,251 [main] TRACE UmlAttribute - created (3708) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Summary.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:42:27,251 [main] ERROR UmlAttribute - unclassified CIM attribute: (2278) OTHER_CIM CIM [0..*] null <
> IEEE 1815 and IEC 60870-5 Agent::Summary.Master: IEEE 1815 and IEC 60870-5 Agent::MasterAssociation +2024-09-07 21:42:27,251 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,251 [main] TRACE UmlAttribute - created (2278) OTHER_CIM CIM [0..*] attribute <
> IEEE 1815 and IEC 60870-5 Agent::Summary.Master: IEEE 1815 and IEC 60870-5 Agent::MasterAssociation +2024-09-07 21:42:27,251 [main] ERROR UmlAttribute - unclassified CIM attribute: (2287) OTHER_CIM CIM [0..*] null <
> IEEE 1815 and IEC 60870-5 Agent::Summary.Outstation: IEEE 1815 and IEC 60870-5 Agent::OutstationAssociation +2024-09-07 21:42:27,251 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,251 [main] TRACE UmlAttribute - created (2287) OTHER_CIM CIM [0..*] attribute <
> IEEE 1815 and IEC 60870-5 Agent::Summary.Outstation: IEEE 1815 and IEC 60870-5 Agent::OutstationAssociation +2024-09-07 21:42:27,251 [main] ERROR UmlAttribute - unclassified CIM attribute: (3609) OTHER_CIM CIM [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Summary.SecurityNotification: IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification +2024-09-07 21:42:27,251 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,251 [main] TRACE UmlAttribute - created (3609) OTHER_CIM CIM [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Summary.SecurityNotification: IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification +2024-09-07 21:42:27,252 [main] ERROR UmlAttribute - unclassified CIM attribute: (3608) OTHER_CIM CIM [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Summary.StateNotification: IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification +2024-09-07 21:42:27,252 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,252 [main] TRACE UmlAttribute - created (3608) OTHER_CIM CIM [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Summary.StateNotification: IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification +2024-09-07 21:42:27,252 [main] ERROR UmlAttribute - unclassified CIM attribute: (3519) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.AuthFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,252 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,253 [main] TRACE UmlAttribute - created (3519) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.AuthFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,253 [main] ERROR UmlAttribute - unclassified CIM attribute: (3518) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.CtrlPrivFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,253 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,253 [main] TRACE UmlAttribute - created (3518) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.CtrlPrivFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,253 [main] ERROR UmlAttribute - unclassified CIM attribute: (3522) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,253 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,253 [main] TRACE UmlAttribute - created (3522) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,253 [main] ERROR UmlAttribute - unclassified CIM attribute: (4043) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:42:27,253 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,253 [main] TRACE UmlAttribute - created (4043) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:42:27,253 [main] ERROR UmlAttribute - unclassified CIM attribute: (3520) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.PduTampCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,253 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,253 [main] TRACE UmlAttribute - created (3520) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.PduTampCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,254 [main] ERROR UmlAttribute - unclassified CIM attribute: (3521) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.PrivFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,254 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,254 [main] TRACE UmlAttribute - created (3521) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.PrivFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,254 [main] ERROR UmlAttribute - unclassified CIM attribute: (3523) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.SessKeyFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,254 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,254 [main] TRACE UmlAttribute - created (3523) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.SessKeyFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,254 [main] ERROR UmlAttribute - unclassified CIM attribute: (3524) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.UpKeyFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,254 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,254 [main] TRACE UmlAttribute - created (3524) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.UpKeyFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,254 [main] ERROR UmlAttribute - unclassified CIM attribute: (3526) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.InErrCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,254 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,254 [main] TRACE UmlAttribute - created (3526) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.InErrCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,254 [main] ERROR UmlAttribute - unclassified CIM attribute: (3528) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.InOvCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,254 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,255 [main] TRACE UmlAttribute - created (3528) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.InOvCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,255 [main] ERROR UmlAttribute - unclassified CIM attribute: (3529) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.OutUv: Abstract Types::CounterTs +2024-09-07 21:42:27,255 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,255 [main] TRACE UmlAttribute - created (3529) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.OutUv: Abstract Types::CounterTs +2024-09-07 21:42:27,255 [main] ERROR UmlAttribute - unclassified CIM attribute: (3527) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.RxPdu: Abstract Types::CounterTs +2024-09-07 21:42:27,255 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,255 [main] TRACE UmlAttribute - created (3527) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.RxPdu: Abstract Types::CounterTs +2024-09-07 21:42:27,255 [main] ERROR UmlAttribute - unclassified CIM attribute: (3525) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.TxPdu: Abstract Types::CounterTs +2024-09-07 21:42:27,255 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,255 [main] TRACE UmlAttribute - created (3525) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.TxPdu: Abstract Types::CounterTs +2024-09-07 21:42:27,255 [main] ERROR UmlAttribute - unclassified CIM attribute: (4257) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.ExT0Cnt: Abstract Types::CounterTs +2024-09-07 21:42:27,255 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,255 [main] TRACE UmlAttribute - created (4257) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.ExT0Cnt: Abstract Types::CounterTs +2024-09-07 21:42:27,255 [main] ERROR UmlAttribute - unclassified CIM attribute: (4258) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.ExT1Cnt: Abstract Types::CounterTs +2024-09-07 21:42:27,256 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,256 [main] TRACE UmlAttribute - created (4258) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.ExT1Cnt: Abstract Types::CounterTs +2024-09-07 21:42:27,256 [main] ERROR UmlAttribute - unclassified CIM attribute: (4259) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.ExT2Cnt: Abstract Types::CounterTs +2024-09-07 21:42:27,256 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,256 [main] TRACE UmlAttribute - created (4259) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.ExT2Cnt: Abstract Types::CounterTs +2024-09-07 21:42:27,256 [main] ERROR UmlAttribute - unclassified CIM attribute: (4260) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.ExT3Cnt: Abstract Types::CounterTs +2024-09-07 21:42:27,256 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,256 [main] TRACE UmlAttribute - created (4260) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.ExT3Cnt: Abstract Types::CounterTs +2024-09-07 21:42:27,256 [main] ERROR UmlAttribute - unclassified CIM attribute: (4261) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.DiscPduCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,256 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,256 [main] TRACE UmlAttribute - created (4261) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.DiscPduCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,256 [main] ERROR UmlAttribute - unclassified CIM attribute: (4262) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.InErrCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,256 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,256 [main] TRACE UmlAttribute - created (4262) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.InErrCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,256 [main] ERROR UmlAttribute - unclassified CIM attribute: (4263) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.InOvCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,257 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,257 [main] TRACE UmlAttribute - created (4263) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.InOvCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,257 [main] ERROR UmlAttribute - unclassified CIM attribute: (4264) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.InterPDUTime: Abstract Types::Floating +2024-09-07 21:42:27,257 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,257 [main] TRACE UmlAttribute - created (4264) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.InterPDUTime: Abstract Types::Floating +2024-09-07 21:42:27,257 [main] ERROR UmlAttribute - unclassified CIM attribute: (4265) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.MisPDUCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,257 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,257 [main] TRACE UmlAttribute - created (4265) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.MisPDUCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,257 [main] ERROR UmlAttribute - unclassified CIM attribute: (4266) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.OutErr: Abstract Types::CounterTs +2024-09-07 21:42:27,257 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,257 [main] TRACE UmlAttribute - created (4266) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.OutErr: Abstract Types::CounterTs +2024-09-07 21:42:27,257 [main] ERROR UmlAttribute - unclassified CIM attribute: (4267) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.OutUv: Abstract Types::CounterTs +2024-09-07 21:42:27,257 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,258 [main] TRACE UmlAttribute - created (4267) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.OutUv: Abstract Types::CounterTs +2024-09-07 21:42:27,258 [main] ERROR UmlAttribute - unclassified CIM attribute: (4269) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.PDUSizeFail: Abstract Types::CounterTs +2024-09-07 21:42:27,258 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,258 [main] TRACE UmlAttribute - created (4269) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.PDUSizeFail: Abstract Types::CounterTs +2024-09-07 21:42:27,258 [main] ERROR UmlAttribute - unclassified CIM attribute: (4273) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.RtxCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,258 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,258 [main] TRACE UmlAttribute - created (4273) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.RtxCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,258 [main] ERROR UmlAttribute - unclassified CIM attribute: (4275) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.RxPduCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,259 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,259 [main] TRACE UmlAttribute - created (4275) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.RxPduCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,259 [main] ERROR UmlAttribute - unclassified CIM attribute: (4276) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.RxSolicitedReq: Abstract Types::CounterTs +2024-09-07 21:42:27,259 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,259 [main] TRACE UmlAttribute - created (4276) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.RxSolicitedReq: Abstract Types::CounterTs +2024-09-07 21:42:27,259 [main] ERROR UmlAttribute - unclassified CIM attribute: (4277) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.RxUnsolicitedReq: Abstract Types::CounterTs +2024-09-07 21:42:27,259 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,259 [main] TRACE UmlAttribute - created (4277) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.RxUnsolicitedReq: Abstract Types::CounterTs +2024-09-07 21:42:27,259 [main] ERROR UmlAttribute - unclassified CIM attribute: (4280) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.TxPduCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,260 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,260 [main] TRACE UmlAttribute - created (4280) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.TxPduCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,260 [main] ERROR UmlAttribute - unclassified CIM attribute: (4281) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.TxSolicitedReq: Abstract Types::CounterTs +2024-09-07 21:42:27,260 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,260 [main] TRACE UmlAttribute - created (4281) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.TxSolicitedReq: Abstract Types::CounterTs +2024-09-07 21:42:27,260 [main] ERROR UmlAttribute - unclassified CIM attribute: (4282) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.TxUnsolicitedReq: Abstract Types::CounterTs +2024-09-07 21:42:27,260 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,260 [main] TRACE UmlAttribute - created (4282) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.TxUnsolicitedReq: Abstract Types::CounterTs +2024-09-07 21:42:27,260 [main] ERROR UmlAttribute - unclassified CIM attribute: (4306) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.StAsProcScsCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,260 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,260 [main] TRACE UmlAttribute - created (4306) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.StAsProcScsCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,260 [main] ERROR UmlAttribute - unclassified CIM attribute: (4307) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.StAsProcFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,261 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,261 [main] TRACE UmlAttribute - created (4307) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.StAsProcFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,261 [main] ERROR UmlAttribute - unclassified CIM attribute: (4308) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyProcScsCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,261 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,261 [main] TRACE UmlAttribute - created (4308) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyProcScsCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,261 [main] ERROR UmlAttribute - unclassified CIM attribute: (4336) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.KeyAutnAlgSupFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,261 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,261 [main] TRACE UmlAttribute - created (4336) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.KeyAutnAlgSupFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,261 [main] ERROR UmlAttribute - unclassified CIM attribute: (4337) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyWrapAlgSupFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,261 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,261 [main] TRACE UmlAttribute - created (4337) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyWrapAlgSupFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,261 [main] ERROR UmlAttribute - unclassified CIM attribute: (4338) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.DataProtAlgSupFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,262 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,262 [main] TRACE UmlAttribute - created (4338) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.DataProtAlgSupFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,262 [main] ERROR UmlAttribute - unclassified CIM attribute: (4339) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyAutnErrCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,262 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,262 [main] TRACE UmlAttribute - created (4339) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyAutnErrCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,262 [main] ERROR UmlAttribute - unclassified CIM attribute: (4340) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.DataAutnErrCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,262 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,262 [main] TRACE UmlAttribute - created (4340) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.DataAutnErrCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,262 [main] ERROR UmlAttribute - unclassified CIM attribute: (4341) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.UnxpMsgErrCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,262 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,262 [main] TRACE UmlAttribute - created (4341) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.UnxpMsgErrCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,262 [main] ERROR UmlAttribute - unclassified CIM attribute: (4342) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.MaxReplyToutCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,262 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,263 [main] TRACE UmlAttribute - created (4342) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.MaxReplyToutCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,263 [main] ERROR UmlAttribute - unclassified CIM attribute: (4343) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.NodeAutrFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,263 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,263 [main] TRACE UmlAttribute - created (4343) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.NodeAutrFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,263 [main] ERROR UmlAttribute - unclassified CIM attribute: (4344) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.CtrlOperAutrFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,263 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,263 [main] TRACE UmlAttribute - created (4344) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.CtrlOperAutrFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,263 [main] ERROR UmlAttribute - unclassified CIM attribute: (4345) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.RemCertCheckFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,263 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,264 [main] TRACE UmlAttribute - created (4345) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.RemCertCheckFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,264 [main] ERROR UmlAttribute - unclassified CIM attribute: (4346) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.RemCertExpiredCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,264 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,264 [main] TRACE UmlAttribute - created (4346) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.RemCertExpiredCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,264 [main] ERROR UmlAttribute - unclassified CIM attribute: (4347) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.RemCertRevokedCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,264 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,264 [main] TRACE UmlAttribute - created (4347) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.RemCertRevokedCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,264 [main] ERROR UmlAttribute - unclassified CIM attribute: (4348) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.LocCertExpiredCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,264 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,264 [main] TRACE UmlAttribute - created (4348) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.LocCertExpiredCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,264 [main] ERROR UmlAttribute - unclassified CIM attribute: (4349) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.LocCertRevokedCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,264 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,265 [main] TRACE UmlAttribute - created (4349) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.LocCertRevokedCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,265 [main] ERROR UmlAttribute - unclassified CIM attribute: (4350) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.KeysInvRemCertRevCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,265 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,265 [main] TRACE UmlAttribute - created (4350) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.KeysInvRemCertRevCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,265 [main] ERROR UmlAttribute - unclassified CIM attribute: (4351) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.KeysInvLocCertRevCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,265 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,265 [main] TRACE UmlAttribute - created (4351) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.KeysInvLocCertRevCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,265 [main] ERROR UmlAttribute - unclassified CIM attribute: (4352) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.DataAutnScsCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,265 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,265 [main] TRACE UmlAttribute - created (4352) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.DataAutnScsCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,265 [main] ERROR UmlAttribute - unclassified CIM attribute: (4353) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.ReplyToutCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,266 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,266 [main] TRACE UmlAttribute - created (4353) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.ReplyToutCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,266 [main] ERROR UmlAttribute - unclassified CIM attribute: (4354) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.RequestToutCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,266 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,266 [main] TRACE UmlAttribute - created (4354) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.RequestToutCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,266 [main] ERROR UmlAttribute - unclassified CIM attribute: (4355) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyInvUseCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,266 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,266 [main] TRACE UmlAttribute - created (4355) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyInvUseCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,266 [main] ERROR UmlAttribute - unclassified CIM attribute: (4356) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyInvToutCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,267 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,267 [main] TRACE UmlAttribute - created (4356) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyInvToutCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,267 [main] ERROR UmlAttribute - unclassified CIM attribute: (4357) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyProcFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,267 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,267 [main] TRACE UmlAttribute - created (4357) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyProcFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,267 [main] ERROR UmlAttribute - unclassified CIM attribute: (4335) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.ProtInfoErrCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,267 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,267 [main] TRACE UmlAttribute - created (4335) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.ProtInfoErrCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,267 [main] ERROR UmlAttribute - unclassified CIM attribute: (4284) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.AssociationId: Abstract Types::EntityIndex +2024-09-07 21:42:27,267 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,267 [main] TRACE UmlAttribute - created (4284) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.AssociationId: Abstract Types::EntityIndex +2024-09-07 21:42:27,267 [main] ERROR UmlAttribute - unclassified CIM attribute: (4285) OTHER_CIM CIM [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.CntRs: Abstract Types::CntRs +2024-09-07 21:42:27,267 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,267 [main] TRACE UmlAttribute - created (4285) OTHER_CIM CIM [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.CntRs: Abstract Types::CntRs +2024-09-07 21:42:27,268 [main] ERROR UmlAttribute - unclassified CIM attribute: (4286) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.LocAddress: Abstract Types::InetAddress +2024-09-07 21:42:27,268 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,268 [main] TRACE UmlAttribute - created (4286) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.LocAddress: Abstract Types::InetAddress +2024-09-07 21:42:27,268 [main] ERROR UmlAttribute - unclassified CIM attribute: (4287) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.LocAddressType: Abstract Types::InetAddressType +2024-09-07 21:42:27,268 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,269 [main] TRACE UmlAttribute - created (4287) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.LocAddressType: Abstract Types::InetAddressType +2024-09-07 21:42:27,269 [main] ERROR UmlAttribute - unclassified CIM attribute: (4288) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.ProtID: EnumeratedTypes::ProtIdType +2024-09-07 21:42:27,269 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,269 [main] TRACE UmlAttribute - created (4288) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.ProtID: EnumeratedTypes::ProtIdType +2024-09-07 21:42:27,269 [main] ERROR UmlAttribute - unclassified CIM attribute: (4289) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.ProviderDesc: Abstract Types::CharString +2024-09-07 21:42:27,270 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,270 [main] TRACE UmlAttribute - created (4289) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.ProviderDesc: Abstract Types::CharString +2024-09-07 21:42:27,270 [main] ERROR UmlAttribute - unclassified CIM attribute: (4290) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.ProviderName: Abstract Types::CharString +2024-09-07 21:42:27,270 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,270 [main] TRACE UmlAttribute - created (4290) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.ProviderName: Abstract Types::CharString +2024-09-07 21:42:27,270 [main] ERROR UmlAttribute - unclassified CIM attribute: (4291) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.RemAddress: Abstract Types::InetAddress +2024-09-07 21:42:27,270 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,270 [main] TRACE UmlAttribute - created (4291) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.RemAddress: Abstract Types::InetAddress +2024-09-07 21:42:27,271 [main] ERROR UmlAttribute - unclassified CIM attribute: (4292) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.RemAddressType: Abstract Types::InetAddressType +2024-09-07 21:42:27,271 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,271 [main] TRACE UmlAttribute - created (4292) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.RemAddressType: Abstract Types::InetAddressType +2024-09-07 21:42:27,271 [main] ERROR UmlAttribute - unclassified CIM attribute: (4293) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.TLnkErrCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,271 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,272 [main] TRACE UmlAttribute - created (4293) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.TLnkErrCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,272 [main] ERROR UmlAttribute - unclassified CIM attribute: (4294) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.TLnkTyp: EnumeratedTypes::LnkType +2024-09-07 21:42:27,272 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,272 [main] TRACE UmlAttribute - created (4294) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.TLnkTyp: EnumeratedTypes::LnkType +2024-09-07 21:42:27,272 [main] ERROR UmlAttribute - unclassified CIM attribute: (4295) OTHER_CIM CIM [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.CntRs: Abstract Types::CntRs +2024-09-07 21:42:27,273 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,273 [main] TRACE UmlAttribute - created (4295) OTHER_CIM CIM [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.CntRs: Abstract Types::CntRs +2024-09-07 21:42:27,273 [main] ERROR UmlAttribute - unclassified CIM attribute: (4296) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:42:27,273 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,273 [main] TRACE UmlAttribute - created (4296) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:42:27,273 [main] ERROR UmlAttribute - unclassified CIM attribute: (4297) OTHER_CIM CIM [0..*] null <
> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.Master: IEEE 1815 and IEC 60870-5 Agent - ed2::MasterAssociation +2024-09-07 21:42:27,273 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,273 [main] TRACE UmlAttribute - created (4297) OTHER_CIM CIM [0..*] attribute <
> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.Master: IEEE 1815 and IEC 60870-5 Agent - ed2::MasterAssociation +2024-09-07 21:42:27,273 [main] ERROR UmlAttribute - unclassified CIM attribute: (4298) OTHER_CIM CIM [0..*] null <
> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.Outstation: IEEE 1815 and IEC 60870-5 Agent - ed2::OutstationAssociation +2024-09-07 21:42:27,273 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,273 [main] TRACE UmlAttribute - created (4298) OTHER_CIM CIM [0..*] attribute <
> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.Outstation: IEEE 1815 and IEC 60870-5 Agent - ed2::OutstationAssociation +2024-09-07 21:42:27,273 [main] ERROR UmlAttribute - unclassified CIM attribute: (4299) OTHER_CIM CIM [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.SecurityNotification: IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2 +2024-09-07 21:42:27,274 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,274 [main] TRACE UmlAttribute - created (4299) OTHER_CIM CIM [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.SecurityNotification: IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2 +2024-09-07 21:42:27,274 [main] ERROR UmlAttribute - unclassified CIM attribute: (4300) OTHER_CIM CIM [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.StateNotification: IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2 +2024-09-07 21:42:27,274 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,274 [main] TRACE UmlAttribute - created (4300) OTHER_CIM CIM [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.StateNotification: IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2 +2024-09-07 21:42:27,274 [main] ERROR UmlAttribute - unclassified CIM attribute: (4358) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:42:27,274 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,274 [main] TRACE UmlAttribute - created (4358) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:42:27,274 [main] ERROR UmlAttribute - unclassified CIM attribute: (4360) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:42:27,274 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,275 [main] TRACE UmlAttribute - created (4360) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:42:27,275 [main] ERROR UmlAttribute - unclassified CIM attribute: (1254) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.assocPoolMax: Abstract Types::Integer +2024-09-07 21:42:27,275 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,276 [main] TRACE UmlAttribute - created (1254) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.assocPoolMax: Abstract Types::Integer +2024-09-07 21:42:27,276 [main] ERROR UmlAttribute - unclassified CIM attribute: (1255) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.assocPoolUsed: Abstract Types::Integer +2024-09-07 21:42:27,276 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,276 [main] TRACE UmlAttribute - created (1255) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.assocPoolUsed: Abstract Types::Integer +2024-09-07 21:42:27,276 [main] ERROR UmlAttribute - unclassified CIM attribute: (1278) OTHER_CIM CIM [0..1] null <> ACSI::ACSISummary.CntRs: Abstract Types::CntRs +2024-09-07 21:42:27,276 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,276 [main] TRACE UmlAttribute - created (1278) OTHER_CIM CIM [0..1] attribute <> ACSI::ACSISummary.CntRs: Abstract Types::CntRs +2024-09-07 21:42:27,276 [main] ERROR UmlAttribute - unclassified CIM attribute: (3931) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.CtrlPrivFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,277 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,277 [main] TRACE UmlAttribute - created (3931) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.CtrlPrivFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,277 [main] ERROR UmlAttribute - unclassified CIM attribute: (1262) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.gsePubMax: Abstract Types::Integer +2024-09-07 21:42:27,277 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,277 [main] TRACE UmlAttribute - created (1262) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.gsePubMax: Abstract Types::Integer +2024-09-07 21:42:27,277 [main] ERROR UmlAttribute - unclassified CIM attribute: (2263) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.gsePubUsed: Abstract Types::Integer +2024-09-07 21:42:27,277 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,277 [main] TRACE UmlAttribute - created (2263) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.gsePubUsed: Abstract Types::Integer +2024-09-07 21:42:27,277 [main] ERROR UmlAttribute - unclassified CIM attribute: (1264) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.gseSubMax: Abstract Types::Integer +2024-09-07 21:42:27,277 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,277 [main] TRACE UmlAttribute - created (1264) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.gseSubMax: Abstract Types::Integer +2024-09-07 21:42:27,277 [main] ERROR UmlAttribute - unclassified CIM attribute: (1263) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.gseSubUsed: Abstract Types::Integer +2024-09-07 21:42:27,278 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,278 [main] TRACE UmlAttribute - created (1263) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.gseSubUsed: Abstract Types::Integer +2024-09-07 21:42:27,278 [main] ERROR UmlAttribute - unclassified CIM attribute: (3709) OTHER_CIM CIM const [1..1] null <> ACSI::ACSISummary.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:42:27,278 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,278 [main] TRACE UmlAttribute - created (3709) OTHER_CIM CIM const [1..1] attribute <> ACSI::ACSISummary.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:42:27,278 [main] ERROR UmlAttribute - unclassified CIM attribute: (3930) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.PrivFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,278 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,278 [main] TRACE UmlAttribute - created (3930) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.PrivFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,278 [main] ERROR UmlAttribute - unclassified CIM attribute: (1271) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.RemoteEstAssocCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,278 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,278 [main] TRACE UmlAttribute - created (1271) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.RemoteEstAssocCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,278 [main] ERROR UmlAttribute - unclassified CIM attribute: (3932) OTHER_CIM CIM const [1..1] null <> ACSI::ACSISummary.AcsCtlFail: Abstract Types::CounterTs +2024-09-07 21:42:27,278 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,278 [main] TRACE UmlAttribute - created (3932) OTHER_CIM CIM const [1..1] attribute <> ACSI::ACSISummary.AcsCtlFail: Abstract Types::CounterTs +2024-09-07 21:42:27,279 [main] ERROR UmlAttribute - unclassified CIM attribute: (1282) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.svPubMax: Abstract Types::Integer +2024-09-07 21:42:27,279 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,279 [main] TRACE UmlAttribute - created (1282) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.svPubMax: Abstract Types::Integer +2024-09-07 21:42:27,279 [main] ERROR UmlAttribute - unclassified CIM attribute: (1281) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.svPubUsed: Abstract Types::Integer +2024-09-07 21:42:27,279 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,279 [main] TRACE UmlAttribute - created (1281) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.svPubUsed: Abstract Types::Integer +2024-09-07 21:42:27,279 [main] ERROR UmlAttribute - unclassified CIM attribute: (1284) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.svSubMax: Abstract Types::Integer +2024-09-07 21:42:27,279 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,279 [main] TRACE UmlAttribute - created (1284) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.svSubMax: Abstract Types::Integer +2024-09-07 21:42:27,279 [main] ERROR UmlAttribute - unclassified CIM attribute: (1283) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.svSubUsed: Abstract Types::Integer +2024-09-07 21:42:27,279 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,280 [main] TRACE UmlAttribute - created (1283) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.svSubUsed: Abstract Types::Integer +2024-09-07 21:42:27,280 [main] ERROR UmlAttribute - unclassified CIM attribute: (4122) OTHER_CIM CIM const [1..1] null <> MMS::MMSProtocolInfo.ErrorRxCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,280 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,280 [main] TRACE UmlAttribute - created (4122) OTHER_CIM CIM const [1..1] attribute <> MMS::MMSProtocolInfo.ErrorRxCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,280 [main] ERROR UmlAttribute - unclassified CIM attribute: (4123) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.ErrorTxCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,280 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,280 [main] TRACE UmlAttribute - created (4123) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.ErrorTxCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,280 [main] ERROR UmlAttribute - unclassified CIM attribute: (3214) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.InfoRptRxCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,280 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,280 [main] TRACE UmlAttribute - created (3214) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.InfoRptRxCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,280 [main] ERROR UmlAttribute - unclassified CIM attribute: (4120) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.InfoRptTxCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,280 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,280 [main] TRACE UmlAttribute - created (4120) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.InfoRptTxCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,280 [main] ERROR UmlAttribute - unclassified CIM attribute: (3969) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.MisCmdAckCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,281 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,281 [main] TRACE UmlAttribute - created (3969) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.MisCmdAckCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,281 [main] ERROR UmlAttribute - unclassified CIM attribute: (3414) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.MMSProExchTime: Abstract Types::Floating +2024-09-07 21:42:27,281 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,281 [main] TRACE UmlAttribute - created (3414) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.MMSProExchTime: Abstract Types::Floating +2024-09-07 21:42:27,281 [main] ERROR UmlAttribute - unclassified CIM attribute: (3211) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.RejectRxCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,281 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,281 [main] TRACE UmlAttribute - created (3211) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.RejectRxCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,281 [main] ERROR UmlAttribute - unclassified CIM attribute: (3212) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.RejectTxCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,282 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,282 [main] TRACE UmlAttribute - created (3212) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.RejectTxCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,282 [main] ERROR UmlAttribute - unclassified CIM attribute: (3208) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.ReqRxCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,282 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,282 [main] TRACE UmlAttribute - created (3208) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.ReqRxCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,282 [main] ERROR UmlAttribute - unclassified CIM attribute: (3206) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.ReqTxCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,282 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,282 [main] TRACE UmlAttribute - created (3206) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.ReqTxCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,282 [main] ERROR UmlAttribute - unclassified CIM attribute: (3210) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.RespRxCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,282 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,282 [main] TRACE UmlAttribute - created (3210) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.RespRxCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,282 [main] ERROR UmlAttribute - unclassified CIM attribute: (3209) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.RespTxCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,282 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,282 [main] TRACE UmlAttribute - created (3209) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.RespTxCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,282 [main] ERROR UmlAttribute - unclassified CIM attribute: (3935) OTHER_CIM CIM const [1..1] null <> MMS::MMSProtocolInfo.SessKeyFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,283 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,283 [main] TRACE UmlAttribute - created (3935) OTHER_CIM CIM const [1..1] attribute <> MMS::MMSProtocolInfo.SessKeyFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,283 [main] ERROR UmlAttribute - unclassified CIM attribute: (3918) OTHER_CIM CIM const [1..1] null <> MMS::MMSProvider.AProfileDecryptFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,283 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,283 [main] TRACE UmlAttribute - created (3918) OTHER_CIM CIM const [1..1] attribute <> MMS::MMSProvider.AProfileDecryptFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,283 [main] ERROR UmlAttribute - unclassified CIM attribute: (3938) OTHER_CIM CIM const [1..1] null <> MMS::MMSProvider.AuthFail: Abstract Types::CounterTs +2024-09-07 21:42:27,283 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,283 [main] TRACE UmlAttribute - created (3938) OTHER_CIM CIM const [1..1] attribute <> MMS::MMSProvider.AuthFail: Abstract Types::CounterTs +2024-09-07 21:42:27,283 [main] ERROR UmlAttribute - unclassified CIM attribute: (3245) OTHER_CIM CIM [0..1] null <> MMS::MMSProvider.CntRs: Abstract Types::CntRs +2024-09-07 21:42:27,283 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,283 [main] TRACE UmlAttribute - created (3245) OTHER_CIM CIM [0..1] attribute <> MMS::MMSProvider.CntRs: Abstract Types::CntRs +2024-09-07 21:42:27,283 [main] ERROR UmlAttribute - unclassified CIM attribute: (2831) OTHER_CIM CIM const [1..1] null <> MMS::MMSProvider.ConnFailInCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,283 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,283 [main] TRACE UmlAttribute - created (2831) OTHER_CIM CIM const [1..1] attribute <> MMS::MMSProvider.ConnFailInCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,284 [main] ERROR UmlAttribute - unclassified CIM attribute: (2832) OTHER_CIM CIM const [1..1] null <> MMS::MMSProvider.ConnFailOutCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,284 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,284 [main] TRACE UmlAttribute - created (2832) OTHER_CIM CIM const [1..1] attribute <> MMS::MMSProvider.ConnFailOutCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,284 [main] ERROR UmlAttribute - unclassified CIM attribute: (3936) OTHER_CIM CIM const [0..1] null <> MMS::MMSProvider.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,284 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,284 [main] TRACE UmlAttribute - created (3936) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProvider.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,284 [main] ERROR UmlAttribute - unclassified CIM attribute: (3710) OTHER_CIM CIM const [1..1] null <> MMS::MMSProvider.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:42:27,284 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,284 [main] TRACE UmlAttribute - created (3710) OTHER_CIM CIM const [1..1] attribute <> MMS::MMSProvider.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:42:27,284 [main] ERROR UmlAttribute - unclassified CIM attribute: (2803) OTHER_CIM CIM [0..*] null <
> MMS::MMSProvider.MMS: MMS::MMSAssociation +2024-09-07 21:42:27,284 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,285 [main] TRACE UmlAttribute - created (2803) OTHER_CIM CIM [0..*] attribute <
> MMS::MMSProvider.MMS: MMS::MMSAssociation +2024-09-07 21:42:27,285 [main] ERROR UmlAttribute - unclassified CIM attribute: (3915) OTHER_CIM CIM const [0..1] null <> MMS::MMSProvider.PrivFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,285 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,285 [main] TRACE UmlAttribute - created (3915) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProvider.PrivFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,285 [main] ERROR UmlAttribute - unclassified CIM attribute: (2810) OTHER_CIM CIM const [0..1] null <> MMS::MMSProvider.ProviderDesc: Abstract Types::CharString +2024-09-07 21:42:27,285 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,285 [main] TRACE UmlAttribute - created (2810) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProvider.ProviderDesc: Abstract Types::CharString +2024-09-07 21:42:27,285 [main] ERROR UmlAttribute - unclassified CIM attribute: (2811) OTHER_CIM CIM const [0..1] null <> MMS::MMSProvider.ProviderName: Abstract Types::CharString +2024-09-07 21:42:27,285 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,285 [main] TRACE UmlAttribute - created (2811) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProvider.ProviderName: Abstract Types::CharString +2024-09-07 21:42:27,285 [main] ERROR UmlAttribute - unclassified CIM attribute: (3614) OTHER_CIM CIM [0..1] null <> MMS::MMSProvider.SecurityNotification: MMS::MMSSecurityNotification +2024-09-07 21:42:27,285 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,285 [main] TRACE UmlAttribute - created (3614) OTHER_CIM CIM [0..1] attribute <> MMS::MMSProvider.SecurityNotification: MMS::MMSSecurityNotification +2024-09-07 21:42:27,285 [main] ERROR UmlAttribute - unclassified CIM attribute: (4030) OTHER_CIM CIM const [0..1] null <> MMS::MMSProvider.SessionEstablishmentRate: Abstract Types::Integer +2024-09-07 21:42:27,285 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,286 [main] TRACE UmlAttribute - created (4030) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProvider.SessionEstablishmentRate: Abstract Types::Integer +2024-09-07 21:42:27,286 [main] ERROR UmlAttribute - unclassified CIM attribute: (4031) OTHER_CIM CIM const [0..1] null <> MMS::MMSProvider.SessionRestartCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,286 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,286 [main] TRACE UmlAttribute - created (4031) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProvider.SessionRestartCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,286 [main] ERROR UmlAttribute - unclassified CIM attribute: (3613) OTHER_CIM CIM [0..1] null <> MMS::MMSProvider.StateNotification: MMS::MMSNotification +2024-09-07 21:42:27,286 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,286 [main] TRACE UmlAttribute - created (3613) OTHER_CIM CIM [0..1] attribute <> MMS::MMSProvider.StateNotification: MMS::MMSNotification +2024-09-07 21:42:27,286 [main] ERROR UmlAttribute - unclassified CIM attribute: (3919) OTHER_CIM CIM const [1..1] null <> MMS::MMSProvider.TProfileDecryptFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,286 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,286 [main] TRACE UmlAttribute - created (3919) OTHER_CIM CIM const [1..1] attribute <> MMS::MMSProvider.TProfileDecryptFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,286 [main] ERROR UmlAttribute - unclassified CIM attribute: (3921) OTHER_CIM CIM const [0..1] null <> MMS::MMSProvider.TProfileSessKeyFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,286 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,286 [main] TRACE UmlAttribute - created (3921) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProvider.TProfileSessKeyFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,286 [main] ERROR UmlAttribute - unclassified CIM attribute: (3975) OTHER_CIM CIM const [1..1] null <> MMS::MMSProvider.UpKeyFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,287 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,287 [main] TRACE UmlAttribute - created (3975) OTHER_CIM CIM const [1..1] attribute <> MMS::MMSProvider.UpKeyFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,287 [main] ERROR UmlAttribute - unclassified CIM attribute: (2820) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.Active: Abstract Types::BooleanValueTs +2024-09-07 21:42:27,287 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,287 [main] TRACE UmlAttribute - created (2820) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.Active: Abstract Types::BooleanValueTs +2024-09-07 21:42:27,287 [main] ERROR UmlAttribute - unclassified CIM attribute: (3727) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.AssociationId: Abstract Types::EntityIndex +2024-09-07 21:42:27,287 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,287 [main] TRACE UmlAttribute - created (3727) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.AssociationId: Abstract Types::EntityIndex +2024-09-07 21:42:27,287 [main] ERROR UmlAttribute - unclassified CIM attribute: (4119) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.Client: Abstract Types::BooleanValue +2024-09-07 21:42:27,287 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,287 [main] TRACE UmlAttribute - created (4119) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.Client: Abstract Types::BooleanValue +2024-09-07 21:42:27,287 [main] ERROR UmlAttribute - unclassified CIM attribute: (3246) OTHER_CIM CIM [0..1] null <> MMS::MMSAssociation.CntRs: Abstract Types::CntRs +2024-09-07 21:42:27,287 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,287 [main] TRACE UmlAttribute - created (3246) OTHER_CIM CIM [0..1] attribute <> MMS::MMSAssociation.CntRs: Abstract Types::CntRs +2024-09-07 21:42:27,287 [main] ERROR UmlAttribute - unclassified CIM attribute: (3939) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.HndShTime: Abstract Types::Floating +2024-09-07 21:42:27,288 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,288 [main] TRACE UmlAttribute - created (3939) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.HndShTime: Abstract Types::Floating +2024-09-07 21:42:27,288 [main] ERROR UmlAttribute - unclassified CIM attribute: (2844) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.RemoteEstAssos: Abstract Types::BooleanValue +2024-09-07 21:42:27,288 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,288 [main] TRACE UmlAttribute - created (2844) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.RemoteEstAssos: Abstract Types::BooleanValue +2024-09-07 21:42:27,288 [main] ERROR UmlAttribute - unclassified CIM attribute: (2876) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.RemoteIP: Abstract Types::InetAddress +2024-09-07 21:42:27,288 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,288 [main] TRACE UmlAttribute - created (2876) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.RemoteIP: Abstract Types::InetAddress +2024-09-07 21:42:27,288 [main] ERROR UmlAttribute - unclassified CIM attribute: (3692) OTHER_CIM CIM [0..1] null <> MMS::MMSAssociation.RemoteIPAddressType: Abstract Types::InetAddressType +2024-09-07 21:42:27,288 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,288 [main] TRACE UmlAttribute - created (3692) OTHER_CIM CIM [0..1] attribute <> MMS::MMSAssociation.RemoteIPAddressType: Abstract Types::InetAddressType +2024-09-07 21:42:27,288 [main] ERROR UmlAttribute - unclassified CIM attribute: (2873) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.RemotePSEL: Abstract Types::Selector +2024-09-07 21:42:27,288 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,288 [main] TRACE UmlAttribute - created (2873) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.RemotePSEL: Abstract Types::Selector +2024-09-07 21:42:27,288 [main] ERROR UmlAttribute - unclassified CIM attribute: (2874) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.RemoteSSEL: Abstract Types::Selector +2024-09-07 21:42:27,289 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,289 [main] TRACE UmlAttribute - created (2874) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.RemoteSSEL: Abstract Types::Selector +2024-09-07 21:42:27,289 [main] ERROR UmlAttribute - unclassified CIM attribute: (2875) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.RemoteTSEL: Abstract Types::Selector +2024-09-07 21:42:27,289 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,289 [main] TRACE UmlAttribute - created (2875) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.RemoteTSEL: Abstract Types::Selector +2024-09-07 21:42:27,289 [main] ERROR UmlAttribute - unclassified CIM attribute: (3972) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.ReportPer100Seconds: Abstract Types::Integer +2024-09-07 21:42:27,289 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,289 [main] TRACE UmlAttribute - created (3972) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.ReportPer100Seconds: Abstract Types::Integer +2024-09-07 21:42:27,289 [main] ERROR UmlAttribute - unclassified CIM attribute: (3968) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.RptReceptionDelay: Abstract Types::FloatingTs +2024-09-07 21:42:27,289 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,289 [main] TRACE UmlAttribute - created (3968) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.RptReceptionDelay: Abstract Types::FloatingTs +2024-09-07 21:42:27,289 [main] ERROR UmlAttribute - unclassified CIM attribute: (3913) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.SecurityProfile: EnumeratedTypes::SecurityProfileType +2024-09-07 21:42:27,290 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,290 [main] TRACE UmlAttribute - created (3913) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.SecurityProfile: EnumeratedTypes::SecurityProfileType +2024-09-07 21:42:27,290 [main] ERROR UmlAttribute - unclassified CIM attribute: (3582) OTHER_CIM CIM const [0..1] null <> MMS::MMSSecurityNotification.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,290 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,290 [main] TRACE UmlAttribute - created (3582) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSSecurityNotification.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,290 [main] ERROR UmlAttribute - unclassified CIM attribute: (4036) OTHER_CIM CIM const [0..1] null <> MMS::MMSSecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:42:27,290 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,290 [main] TRACE UmlAttribute - created (4036) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSSecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:42:27,290 [main] ERROR UmlAttribute - unclassified CIM attribute: (3581) OTHER_CIM CIM const [0..1] null <> MMS::MMSSecurityNotification.PrivFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,290 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,290 [main] TRACE UmlAttribute - created (3581) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSSecurityNotification.PrivFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,290 [main] ERROR UmlAttribute - unclassified CIM attribute: (3584) OTHER_CIM CIM const [0..1] null <> MMS::MMSSecurityNotification.UpKeyFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,290 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,290 [main] TRACE UmlAttribute - created (3584) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSSecurityNotification.UpKeyFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,290 [main] ERROR UmlAttribute - unclassified CIM attribute: (3573) OTHER_CIM CIM const [0..1] null <> MMS::MMSNotification.ConnFailInCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,291 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,291 [main] TRACE UmlAttribute - created (3573) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSNotification.ConnFailInCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,291 [main] ERROR UmlAttribute - unclassified CIM attribute: (3574) OTHER_CIM CIM const [0..1] null <> MMS::MMSNotification.ConnFailOutCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,291 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,291 [main] TRACE UmlAttribute - created (3574) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSNotification.ConnFailOutCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,291 [main] ERROR UmlAttribute - unclassified CIM attribute: (3575) OTHER_CIM CIM const [0..1] null <> MMS::MMSNotification.RejectRxCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,291 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,292 [main] TRACE UmlAttribute - created (3575) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSNotification.RejectRxCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,292 [main] ERROR UmlAttribute - unclassified CIM attribute: (3576) OTHER_CIM CIM const [0..1] null <> MMS::MMSNotification.RejectTxCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,292 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,292 [main] TRACE UmlAttribute - created (3576) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSNotification.RejectTxCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,293 [main] ERROR UmlAttribute - unclassified CIM attribute: (4054) OTHER_CIM CIM const [0..1] null <> SV and GSE common objects::GSEandSVCommon.GroupUpKeyFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,293 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,293 [main] TRACE UmlAttribute - created (4054) OTHER_CIM CIM const [0..1] attribute <> SV and GSE common objects::GSEandSVCommon.GroupUpKeyFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,293 [main] ERROR UmlAttribute - unclassified CIM attribute: (4055) OTHER_CIM CIM const [1..1] null <> SV and GSE common objects::GSEandSVCommon.KDCAuthFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,293 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,293 [main] TRACE UmlAttribute - created (4055) OTHER_CIM CIM const [1..1] attribute <> SV and GSE common objects::GSEandSVCommon.KDCAuthFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,293 [main] ERROR UmlAttribute - unclassified CIM attribute: (4056) OTHER_CIM CIM const [0..1] null <> SV and GSE common objects::GSEandSVCommon.KDCSessionKeyFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,293 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,293 [main] TRACE UmlAttribute - created (4056) OTHER_CIM CIM const [0..1] attribute <> SV and GSE common objects::GSEandSVCommon.KDCSessionKeyFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,293 [main] ERROR UmlAttribute - unclassified CIM attribute: (4057) OTHER_CIM CIM const [0..1] null <> SV and GSE common objects::GSEandSVPublisherAssociation.CBRef: Abstract Types::CharString +2024-09-07 21:42:27,293 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,293 [main] TRACE UmlAttribute - created (4057) OTHER_CIM CIM const [0..1] attribute <> SV and GSE common objects::GSEandSVPublisherAssociation.CBRef: Abstract Types::CharString +2024-09-07 21:42:27,294 [main] ERROR UmlAttribute - unclassified CIM attribute: (4058) OTHER_CIM CIM [0..1] null <> SV and GSE common objects::GSEandSVPublisherAssociation.CntRs: Abstract Types::CntRs +2024-09-07 21:42:27,294 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,294 [main] TRACE UmlAttribute - created (4058) OTHER_CIM CIM [0..1] attribute <> SV and GSE common objects::GSEandSVPublisherAssociation.CntRs: Abstract Types::CntRs +2024-09-07 21:42:27,294 [main] ERROR UmlAttribute - unclassified CIM attribute: (4059) OTHER_CIM CIM const [0..1] null <> SV and GSE common objects::GSEandSVPublisherAssociation.OutUv: Abstract Types::CounterTs +2024-09-07 21:42:27,294 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,294 [main] TRACE UmlAttribute - created (4059) OTHER_CIM CIM const [0..1] attribute <> SV and GSE common objects::GSEandSVPublisherAssociation.OutUv: Abstract Types::CounterTs +2024-09-07 21:42:27,294 [main] ERROR UmlAttribute - unclassified CIM attribute: (4366) OTHER_CIM CIM const [1..1] null <> SV and GSE common objects::GSEandSVPublisherAssociation.APPID: Abstract Types::CharString +2024-09-07 21:42:27,294 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,294 [main] TRACE UmlAttribute - created (4366) OTHER_CIM CIM const [1..1] attribute <> SV and GSE common objects::GSEandSVPublisherAssociation.APPID: Abstract Types::CharString +2024-09-07 21:42:27,294 [main] ERROR UmlAttribute - unclassified CIM attribute: (3829) OTHER_CIM CIM const [0..1] null <> SV and GSE common objects::GSEandSVPublisherAssociation.TxPduPerSecond: Abstract Types::Floating +2024-09-07 21:42:27,294 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,294 [main] TRACE UmlAttribute - created (3829) OTHER_CIM CIM const [0..1] attribute <> SV and GSE common objects::GSEandSVPublisherAssociation.TxPduPerSecond: Abstract Types::Floating +2024-09-07 21:42:27,294 [main] ERROR UmlAttribute - unclassified CIM attribute: (4061) OTHER_CIM CIM const [0..1] null <> SV and GSE common objects::GSEandSVSubscriberAssociation.CBRef: Abstract Types::CharString +2024-09-07 21:42:27,294 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,295 [main] TRACE UmlAttribute - created (4061) OTHER_CIM CIM const [0..1] attribute <> SV and GSE common objects::GSEandSVSubscriberAssociation.CBRef: Abstract Types::CharString +2024-09-07 21:42:27,295 [main] ERROR UmlAttribute - unclassified CIM attribute: (4062) OTHER_CIM CIM [0..1] null <> SV and GSE common objects::GSEandSVSubscriberAssociation.CntRs: Abstract Types::CntRs +2024-09-07 21:42:27,295 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,295 [main] TRACE UmlAttribute - created (4062) OTHER_CIM CIM [0..1] attribute <> SV and GSE common objects::GSEandSVSubscriberAssociation.CntRs: Abstract Types::CntRs +2024-09-07 21:42:27,295 [main] ERROR UmlAttribute - unclassified CIM attribute: (4063) OTHER_CIM CIM const [0..1] null <> SV and GSE common objects::GSEandSVSubscriberAssociation.InOvCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,295 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,295 [main] TRACE UmlAttribute - created (4063) OTHER_CIM CIM const [0..1] attribute <> SV and GSE common objects::GSEandSVSubscriberAssociation.InOvCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,295 [main] ERROR UmlAttribute - unclassified CIM attribute: (4064) OTHER_CIM CIM const [1..1] null <> SV and GSE common objects::GSEandSVSubscriberAssociation.MessageIntegrityFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,298 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,298 [main] TRACE UmlAttribute - created (4064) OTHER_CIM CIM const [1..1] attribute <> SV and GSE common objects::GSEandSVSubscriberAssociation.MessageIntegrityFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,298 [main] ERROR UmlAttribute - unclassified CIM attribute: (4067) OTHER_CIM CIM const [0..1] null <> SV and GSE common objects::GSEandSVSubscriberAssociation.RxPduPerSecond: Abstract Types::Floating +2024-09-07 21:42:27,298 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,298 [main] TRACE UmlAttribute - created (4067) OTHER_CIM CIM const [0..1] attribute <> SV and GSE common objects::GSEandSVSubscriberAssociation.RxPduPerSecond: Abstract Types::Floating +2024-09-07 21:42:27,298 [main] ERROR UmlAttribute - unclassified CIM attribute: (4365) OTHER_CIM CIM const [1..1] null <> SV and GSE common objects::GSEandSVSubscriberAssociation.APPID: Abstract Types::CharString +2024-09-07 21:42:27,298 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,298 [main] TRACE UmlAttribute - created (4365) OTHER_CIM CIM const [1..1] attribute <> SV and GSE common objects::GSEandSVSubscriberAssociation.APPID: Abstract Types::CharString +2024-09-07 21:42:27,298 [main] ERROR UmlAttribute - unclassified CIM attribute: (4367) OTHER_CIM CIM const [1..1] null <> SV and GSE common objects::GSEandSVSubscriberAssociation.RxAPPID: Abstract Types::CharStringTs +2024-09-07 21:42:27,298 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,299 [main] TRACE UmlAttribute - created (4367) OTHER_CIM CIM const [1..1] attribute <> SV and GSE common objects::GSEandSVSubscriberAssociation.RxAPPID: Abstract Types::CharStringTs +2024-09-07 21:42:27,299 [main] ERROR UmlAttribute - unclassified CIM attribute: (3844) OTHER_CIM CIM [0..1] null <> SV::SVProvider.CntRs: Abstract Types::CntRs +2024-09-07 21:42:27,299 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,299 [main] TRACE UmlAttribute - created (3844) OTHER_CIM CIM [0..1] attribute <> SV::SVProvider.CntRs: Abstract Types::CntRs +2024-09-07 21:42:27,299 [main] ERROR UmlAttribute - unclassified CIM attribute: (4052) OTHER_CIM CIM const [0..1] null <> SV::SVProvider.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,299 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,299 [main] TRACE UmlAttribute - created (4052) OTHER_CIM CIM const [0..1] attribute <> SV::SVProvider.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,299 [main] ERROR UmlAttribute - unclassified CIM attribute: (3845) OTHER_CIM CIM const [0..1] null <> SV::SVProvider.PDUSizeFail: Abstract Types::CounterTs +2024-09-07 21:42:27,299 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,299 [main] TRACE UmlAttribute - created (3845) OTHER_CIM CIM const [0..1] attribute <> SV::SVProvider.PDUSizeFail: Abstract Types::CounterTs +2024-09-07 21:42:27,299 [main] ERROR UmlAttribute - unclassified CIM attribute: (3846) OTHER_CIM CIM [0..*] null <
> SV::SVProvider.PIP: SV::SVPublisherAssociationIP +2024-09-07 21:42:27,300 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,300 [main] TRACE UmlAttribute - created (3846) OTHER_CIM CIM [0..*] attribute <
> SV::SVProvider.PIP: SV::SVPublisherAssociationIP +2024-09-07 21:42:27,300 [main] ERROR UmlAttribute - unclassified CIM attribute: (3847) OTHER_CIM CIM [0..*] null <
> SV::SVProvider.PL2: SV::SVPublisherAssociationL2 +2024-09-07 21:42:27,300 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,300 [main] TRACE UmlAttribute - created (3847) OTHER_CIM CIM [0..*] attribute <
> SV::SVProvider.PL2: SV::SVPublisherAssociationL2 +2024-09-07 21:42:27,301 [main] ERROR UmlAttribute - unclassified CIM attribute: (3848) OTHER_CIM CIM [0..1] null <> SV::SVProvider.SecurityNotification: SV::SVNotification +2024-09-07 21:42:27,301 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,301 [main] TRACE UmlAttribute - created (3848) OTHER_CIM CIM [0..1] attribute <> SV::SVProvider.SecurityNotification: SV::SVNotification +2024-09-07 21:42:27,301 [main] ERROR UmlAttribute - unclassified CIM attribute: (3849) OTHER_CIM CIM [0..*] null <
> SV::SVProvider.SIP: SV::SVSubcriberAssociationIP +2024-09-07 21:42:27,301 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,301 [main] TRACE UmlAttribute - created (3849) OTHER_CIM CIM [0..*] attribute <
> SV::SVProvider.SIP: SV::SVSubcriberAssociationIP +2024-09-07 21:42:27,301 [main] ERROR UmlAttribute - unclassified CIM attribute: (3850) OTHER_CIM CIM [0..*] null <
> SV::SVProvider.SL2: SV::SVSubcriberAssociationL2 +2024-09-07 21:42:27,301 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,301 [main] TRACE UmlAttribute - created (3850) OTHER_CIM CIM [0..*] attribute <
> SV::SVProvider.SL2: SV::SVSubcriberAssociationL2 +2024-09-07 21:42:27,301 [main] ERROR UmlAttribute - unclassified CIM attribute: (3817) OTHER_CIM CIM const [0..1] null <> SV::SVPublisherAssociationIP.DestIpAddr: Abstract Types::InetAddress +2024-09-07 21:42:27,302 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,302 [main] TRACE UmlAttribute - created (3817) OTHER_CIM CIM const [0..1] attribute <> SV::SVPublisherAssociationIP.DestIpAddr: Abstract Types::InetAddress +2024-09-07 21:42:27,302 [main] ERROR UmlAttribute - unclassified CIM attribute: (3818) OTHER_CIM CIM const [0..1] null <> SV::SVPublisherAssociationIP.DestIpAddrType: Abstract Types::InetAddressType +2024-09-07 21:42:27,302 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,302 [main] TRACE UmlAttribute - created (3818) OTHER_CIM CIM const [0..1] attribute <> SV::SVPublisherAssociationIP.DestIpAddrType: Abstract Types::InetAddressType +2024-09-07 21:42:27,302 [main] ERROR UmlAttribute - unclassified CIM attribute: (3819) OTHER_CIM CIM const [0..1] null <> SV::SVPublisherAssociationL2.DestMacAddr: Abstract Types::MacAddress +2024-09-07 21:42:27,302 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,302 [main] TRACE UmlAttribute - created (3819) OTHER_CIM CIM const [0..1] attribute <> SV::SVPublisherAssociationL2.DestMacAddr: Abstract Types::MacAddress +2024-09-07 21:42:27,302 [main] ERROR UmlAttribute - unclassified CIM attribute: (3823) OTHER_CIM CIM const [0..1] null <> SV::SVSubcriberAssociationIP.SrcIpAddr: Abstract Types::InetAddress +2024-09-07 21:42:27,302 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,302 [main] TRACE UmlAttribute - created (3823) OTHER_CIM CIM const [0..1] attribute <> SV::SVSubcriberAssociationIP.SrcIpAddr: Abstract Types::InetAddress +2024-09-07 21:42:27,303 [main] ERROR UmlAttribute - unclassified CIM attribute: (3824) OTHER_CIM CIM const [0..1] null <> SV::SVSubcriberAssociationIP.SrcIpAddrType: Abstract Types::InetAddressType +2024-09-07 21:42:27,303 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,303 [main] TRACE UmlAttribute - created (3824) OTHER_CIM CIM const [0..1] attribute <> SV::SVSubcriberAssociationIP.SrcIpAddrType: Abstract Types::InetAddressType +2024-09-07 21:42:27,303 [main] ERROR UmlAttribute - unclassified CIM attribute: (3825) OTHER_CIM CIM const [0..1] null <> SV::SVSubcriberAssociationL2.SrcMacAddr: Abstract Types::MacAddress +2024-09-07 21:42:27,303 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,303 [main] TRACE UmlAttribute - created (3825) OTHER_CIM CIM const [0..1] attribute <> SV::SVSubcriberAssociationL2.SrcMacAddr: Abstract Types::MacAddress +2024-09-07 21:42:27,303 [main] ERROR UmlAttribute - unclassified CIM attribute: (3750) OTHER_CIM CIM const [0..1] null <> GSE::GSESubscriberAssociation.ConfRevMis: Abstract Types::BooleanValue +2024-09-07 21:42:27,303 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,303 [main] TRACE UmlAttribute - created (3750) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubscriberAssociation.ConfRevMis: Abstract Types::BooleanValue +2024-09-07 21:42:27,303 [main] ERROR UmlAttribute - unclassified CIM attribute: (3755) OTHER_CIM CIM const [0..1] null <> GSE::GSESubscriberAssociation.NdsComm: Abstract Types::BooleanValue +2024-09-07 21:42:27,303 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,304 [main] TRACE UmlAttribute - created (3755) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubscriberAssociation.NdsComm: Abstract Types::BooleanValue +2024-09-07 21:42:27,304 [main] ERROR UmlAttribute - unclassified CIM attribute: (4368) OTHER_CIM CIM const [0..1] null <> GSE::GSESubscriberAssociation.ConfRev: Abstract Types::Integer +2024-09-07 21:42:27,304 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,304 [main] TRACE UmlAttribute - created (4368) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubscriberAssociation.ConfRev: Abstract Types::Integer +2024-09-07 21:42:27,304 [main] ERROR UmlAttribute - unclassified CIM attribute: (4369) OTHER_CIM CIM const [0..1] null <> GSE::GSESubscriberAssociation.RxConfRev: Abstract Types::IntegerTs +2024-09-07 21:42:27,304 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,304 [main] TRACE UmlAttribute - created (4369) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubscriberAssociation.RxConfRev: Abstract Types::IntegerTs +2024-09-07 21:42:27,304 [main] ERROR UmlAttribute - unclassified CIM attribute: (3758) OTHER_CIM CIM const [0..1] null <> GSE::GSESubscriberAssociation.TalExpCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,304 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,304 [main] TRACE UmlAttribute - created (3758) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubscriberAssociation.TalExpCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,304 [main] ERROR UmlAttribute - unclassified CIM attribute: (4370) OTHER_CIM CIM const [0..1] null <> GSE::GSESubscriberAssociation.OosErrCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,304 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,305 [main] TRACE UmlAttribute - created (4370) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubscriberAssociation.OosErrCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,305 [main] ERROR UmlAttribute - unclassified CIM attribute: (4371) OTHER_CIM CIM const [0..1] null <> GSE::GSESubscriberAssociation.DupMsgRx: Abstract Types::BooleanValueTs +2024-09-07 21:42:27,305 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,305 [main] TRACE UmlAttribute - created (4371) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubscriberAssociation.DupMsgRx: Abstract Types::BooleanValueTs +2024-09-07 21:42:27,305 [main] ERROR UmlAttribute - unclassified CIM attribute: (4372) OTHER_CIM CIM const [1..1] null <> GSE::GSESubscriberAssociation.DatSet: Abstract Types::CharString +2024-09-07 21:42:27,305 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,305 [main] TRACE UmlAttribute - created (4372) OTHER_CIM CIM const [1..1] attribute <> GSE::GSESubscriberAssociation.DatSet: Abstract Types::CharString +2024-09-07 21:42:27,305 [main] ERROR UmlAttribute - unclassified CIM attribute: (4373) OTHER_CIM CIM const [1..1] null <> GSE::GSESubscriberAssociation.RxDatSet: Abstract Types::CharStringTs +2024-09-07 21:42:27,305 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,305 [main] TRACE UmlAttribute - created (4373) OTHER_CIM CIM const [1..1] attribute <> GSE::GSESubscriberAssociation.RxDatSet: Abstract Types::CharStringTs +2024-09-07 21:42:27,305 [main] ERROR UmlAttribute - unclassified CIM attribute: (4374) OTHER_CIM CIM const [1..1] null <> GSE::GSESubscriberAssociation.GoID: Abstract Types::CharString +2024-09-07 21:42:27,305 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,305 [main] TRACE UmlAttribute - created (4374) OTHER_CIM CIM const [1..1] attribute <> GSE::GSESubscriberAssociation.GoID: Abstract Types::CharString +2024-09-07 21:42:27,306 [main] ERROR UmlAttribute - unclassified CIM attribute: (4375) OTHER_CIM CIM const [1..1] null <> GSE::GSESubscriberAssociation.RxGoID: Abstract Types::CharStringTs +2024-09-07 21:42:27,306 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,306 [main] TRACE UmlAttribute - created (4375) OTHER_CIM CIM const [1..1] attribute <> GSE::GSESubscriberAssociation.RxGoID: Abstract Types::CharStringTs +2024-09-07 21:42:27,306 [main] ERROR UmlAttribute - unclassified CIM attribute: (4376) OTHER_CIM CIM const [1..1] null <> GSE::GSESubscriberAssociation.StNum: Abstract Types::IntegerTs +2024-09-07 21:42:27,306 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,306 [main] TRACE UmlAttribute - created (4376) OTHER_CIM CIM const [1..1] attribute <> GSE::GSESubscriberAssociation.StNum: Abstract Types::IntegerTs +2024-09-07 21:42:27,306 [main] ERROR UmlAttribute - unclassified CIM attribute: (4377) OTHER_CIM CIM const [1..1] null <> GSE::GSESubscriberAssociation.SqNum: Abstract Types::IntegerTs +2024-09-07 21:42:27,306 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,306 [main] TRACE UmlAttribute - created (4377) OTHER_CIM CIM const [1..1] attribute <> GSE::GSESubscriberAssociation.SqNum: Abstract Types::IntegerTs +2024-09-07 21:42:27,306 [main] ERROR UmlAttribute - unclassified CIM attribute: (4378) OTHER_CIM CIM const [1..1] null <> GSE::GSESubscriberAssociation.RejectStNum: Abstract Types::IntegerTs +2024-09-07 21:42:27,306 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,306 [main] TRACE UmlAttribute - created (4378) OTHER_CIM CIM const [1..1] attribute <> GSE::GSESubscriberAssociation.RejectStNum: Abstract Types::IntegerTs +2024-09-07 21:42:27,306 [main] ERROR UmlAttribute - unclassified CIM attribute: (4379) OTHER_CIM CIM const [1..1] null <> GSE::GSESubscriberAssociation.RejectSqNum: Abstract Types::IntegerTs +2024-09-07 21:42:27,306 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,307 [main] TRACE UmlAttribute - created (4379) OTHER_CIM CIM const [1..1] attribute <> GSE::GSESubscriberAssociation.RejectSqNum: Abstract Types::IntegerTs +2024-09-07 21:42:27,307 [main] ERROR UmlAttribute - unclassified CIM attribute: (4494) OTHER_CIM CIM const [1..1] null <> GSE::GSESubscriberAssociation.RxT: Abstract Types::Timestamp +2024-09-07 21:42:27,307 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,307 [main] TRACE UmlAttribute - created (4494) OTHER_CIM CIM const [1..1] attribute <> GSE::GSESubscriberAssociation.RxT: Abstract Types::Timestamp +2024-09-07 21:42:27,307 [main] ERROR UmlAttribute - unclassified CIM attribute: (3243) OTHER_CIM CIM [0..1] null <> GSE::GSEProvider.CntRs: Abstract Types::CntRs +2024-09-07 21:42:27,307 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,307 [main] TRACE UmlAttribute - created (3243) OTHER_CIM CIM [0..1] attribute <> GSE::GSEProvider.CntRs: Abstract Types::CntRs +2024-09-07 21:42:27,307 [main] ERROR UmlAttribute - unclassified CIM attribute: (4053) OTHER_CIM CIM const [1..1] null <> GSE::GSEProvider.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,307 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,307 [main] TRACE UmlAttribute - created (4053) OTHER_CIM CIM const [1..1] attribute <> GSE::GSEProvider.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,307 [main] ERROR UmlAttribute - unclassified CIM attribute: (3773) OTHER_CIM CIM const [0..1] null <> GSE::GSEProvider.InErrCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,307 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,307 [main] TRACE UmlAttribute - created (3773) OTHER_CIM CIM const [0..1] attribute <> GSE::GSEProvider.InErrCnt: Abstract Types::CounterTs +2024-09-07 21:42:27,307 [main] ERROR UmlAttribute - unclassified CIM attribute: (4121) OTHER_CIM CIM const [0..1] null <> GSE::GSEProvider.InUnexpectedMulticast: Abstract Types::CounterTs +2024-09-07 21:42:27,307 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,308 [main] TRACE UmlAttribute - created (4121) OTHER_CIM CIM const [0..1] attribute <> GSE::GSEProvider.InUnexpectedMulticast: Abstract Types::CounterTs +2024-09-07 21:42:27,308 [main] ERROR UmlAttribute - unclassified CIM attribute: (3744) OTHER_CIM CIM [0..*] null <
> GSE::GSEProvider.PIP: GSE::GSEPublisherAssociationIP +2024-09-07 21:42:27,308 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,308 [main] TRACE UmlAttribute - created (3744) OTHER_CIM CIM [0..*] attribute <
> GSE::GSEProvider.PIP: GSE::GSEPublisherAssociationIP +2024-09-07 21:42:27,308 [main] ERROR UmlAttribute - unclassified CIM attribute: (3745) OTHER_CIM CIM [0..*] null <
> GSE::GSEProvider.PL2: GSE::GSEPublisherAssociationL2 +2024-09-07 21:42:27,308 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,308 [main] TRACE UmlAttribute - created (3745) OTHER_CIM CIM [0..*] attribute <
> GSE::GSEProvider.PL2: GSE::GSEPublisherAssociationL2 +2024-09-07 21:42:27,308 [main] ERROR UmlAttribute - unclassified CIM attribute: (3618) OTHER_CIM CIM [0..1] null <> GSE::GSEProvider.SecurityNotification: GSE::GSENotification +2024-09-07 21:42:27,309 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,309 [main] TRACE UmlAttribute - created (3618) OTHER_CIM CIM [0..1] attribute <> GSE::GSEProvider.SecurityNotification: GSE::GSENotification +2024-09-07 21:42:27,309 [main] ERROR UmlAttribute - unclassified CIM attribute: (3046) OTHER_CIM CIM [0..*] null <
> GSE::GSEProvider.SIP: GSE::GSESubcriberAssociationIP +2024-09-07 21:42:27,309 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,309 [main] TRACE UmlAttribute - created (3046) OTHER_CIM CIM [0..*] attribute <
> GSE::GSEProvider.SIP: GSE::GSESubcriberAssociationIP +2024-09-07 21:42:27,309 [main] ERROR UmlAttribute - unclassified CIM attribute: (3746) OTHER_CIM CIM [0..*] null <
> GSE::GSEProvider.SL2: GSE::GSESubcriberAssociationL2 +2024-09-07 21:42:27,309 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,310 [main] TRACE UmlAttribute - created (3746) OTHER_CIM CIM [0..*] attribute <
> GSE::GSEProvider.SL2: GSE::GSESubcriberAssociationL2 +2024-09-07 21:42:27,310 [main] ERROR UmlAttribute - unclassified CIM attribute: (3803) OTHER_CIM CIM const [0..1] null <> GSE::GSEPublisherAssociationIP.DestIpAddr: Abstract Types::InetAddress +2024-09-07 21:42:27,310 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,310 [main] TRACE UmlAttribute - created (3803) OTHER_CIM CIM const [0..1] attribute <> GSE::GSEPublisherAssociationIP.DestIpAddr: Abstract Types::InetAddress +2024-09-07 21:42:27,310 [main] ERROR UmlAttribute - unclassified CIM attribute: (3802) OTHER_CIM CIM const [0..1] null <> GSE::GSEPublisherAssociationIP.DestIpAddrType: Abstract Types::InetAddressType +2024-09-07 21:42:27,310 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,310 [main] TRACE UmlAttribute - created (3802) OTHER_CIM CIM const [0..1] attribute <> GSE::GSEPublisherAssociationIP.DestIpAddrType: Abstract Types::InetAddressType +2024-09-07 21:42:27,310 [main] ERROR UmlAttribute - unclassified CIM attribute: (3801) OTHER_CIM CIM const [0..1] null <> GSE::GSEPublisherAssociationL2.DestMacAddr: Abstract Types::MacAddress +2024-09-07 21:42:27,310 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,310 [main] TRACE UmlAttribute - created (3801) OTHER_CIM CIM const [0..1] attribute <> GSE::GSEPublisherAssociationL2.DestMacAddr: Abstract Types::MacAddress +2024-09-07 21:42:27,310 [main] ERROR UmlAttribute - unclassified CIM attribute: (4362) OTHER_CIM CIM const [0..1] null <> GSE::GSEPublisherAssociationL2.SrcMacAddr: Abstract Types::MacAddress +2024-09-07 21:42:27,310 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,310 [main] TRACE UmlAttribute - created (4362) OTHER_CIM CIM const [0..1] attribute <> GSE::GSEPublisherAssociationL2.SrcMacAddr: Abstract Types::MacAddress +2024-09-07 21:42:27,310 [main] ERROR UmlAttribute - unclassified CIM attribute: (3740) OTHER_CIM CIM const [0..1] null <> GSE::GSESubcriberAssociationIP.SrcIpAddr: Abstract Types::InetAddress +2024-09-07 21:42:27,310 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,311 [main] TRACE UmlAttribute - created (3740) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubcriberAssociationIP.SrcIpAddr: Abstract Types::InetAddress +2024-09-07 21:42:27,311 [main] ERROR UmlAttribute - unclassified CIM attribute: (3739) OTHER_CIM CIM const [0..1] null <> GSE::GSESubcriberAssociationIP.SrcIpAddrType: Abstract Types::InetAddressType +2024-09-07 21:42:27,311 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,311 [main] TRACE UmlAttribute - created (3739) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubcriberAssociationIP.SrcIpAddrType: Abstract Types::InetAddressType +2024-09-07 21:42:27,311 [main] ERROR UmlAttribute - unclassified CIM attribute: (3742) OTHER_CIM CIM const [0..1] null <> GSE::GSESubcriberAssociationL2.SrcMacAddr: Abstract Types::MacAddress +2024-09-07 21:42:27,311 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,311 [main] TRACE UmlAttribute - created (3742) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubcriberAssociationL2.SrcMacAddr: Abstract Types::MacAddress +2024-09-07 21:42:27,311 [main] ERROR UmlAttribute - unclassified CIM attribute: (4361) OTHER_CIM CIM const [0..1] null <> GSE::GSESubcriberAssociationL2.DstMacAddr: Abstract Types::MacAddress +2024-09-07 21:42:27,311 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,311 [main] TRACE UmlAttribute - created (4361) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubcriberAssociationL2.DstMacAddr: Abstract Types::MacAddress +2024-09-07 21:42:27,311 [main] ERROR UmlAttribute - unclassified CIM attribute: (2651) OTHER_CIM CIM const [1..1] null <> Clocks Agent::Clock.clockTamperDetected: Abstract Types::Timestamp +2024-09-07 21:42:27,311 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,311 [main] TRACE UmlAttribute - created (2651) OTHER_CIM CIM const [1..1] attribute <> Clocks Agent::Clock.clockTamperDetected: Abstract Types::Timestamp +2024-09-07 21:42:27,311 [main] ERROR UmlAttribute - unclassified CIM attribute: (2656) OTHER_CIM CIM const [1..1] null <> Clocks Agent::Clock.LastClockHoldover: Abstract Types::Timestamp +2024-09-07 21:42:27,312 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,312 [main] TRACE UmlAttribute - created (2656) OTHER_CIM CIM const [1..1] attribute <> Clocks Agent::Clock.LastClockHoldover: Abstract Types::Timestamp +2024-09-07 21:42:27,312 [main] ERROR UmlAttribute - unclassified CIM attribute: (2657) OTHER_CIM CIM [0..1] null <> Clocks Agent::Clock.CntRs: Abstract Types::CntRs +2024-09-07 21:42:27,312 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,312 [main] TRACE UmlAttribute - created (2657) OTHER_CIM CIM [0..1] attribute <> Clocks Agent::Clock.CntRs: Abstract Types::CntRs +2024-09-07 21:42:27,312 [main] ERROR UmlAttribute - unclassified CIM attribute: (2650) OTHER_CIM CIM [0..n] null <
> Clocks Agent::Clock.Clocks: Clocks Agent::ClockEntry +2024-09-07 21:42:27,312 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,312 [main] TRACE UmlAttribute - created (2650) OTHER_CIM CIM [0..n] attribute <
> Clocks Agent::Clock.Clocks: Clocks Agent::ClockEntry +2024-09-07 21:42:27,312 [main] ERROR UmlAttribute - unclassified CIM attribute: (3631) OTHER_CIM CIM [0..1] null <> Clocks Agent::Clock.SecurityNotification: Clocks Agent::SecurityNotification +2024-09-07 21:42:27,312 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,312 [main] TRACE UmlAttribute - created (3631) OTHER_CIM CIM [0..1] attribute <> Clocks Agent::Clock.SecurityNotification: Clocks Agent::SecurityNotification +2024-09-07 21:42:27,312 [main] ERROR UmlAttribute - unclassified CIM attribute: (2646) OTHER_CIM CIM const [0..1] null <> Clocks Agent::ClockEntry.ClockAccuracy: Abstract Types::Integer +2024-09-07 21:42:27,312 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,312 [main] TRACE UmlAttribute - created (2646) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::ClockEntry.ClockAccuracy: Abstract Types::Integer +2024-09-07 21:42:27,312 [main] ERROR UmlAttribute - unclassified CIM attribute: (3085) OTHER_CIM CIM const [0..1] null <> Clocks Agent::ClockEntry.ClockIndex: Abstract Types::EntityIndex +2024-09-07 21:42:27,313 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,313 [main] TRACE UmlAttribute - created (3085) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::ClockEntry.ClockIndex: Abstract Types::EntityIndex +2024-09-07 21:42:27,313 [main] ERROR UmlAttribute - unclassified CIM attribute: (3729) OTHER_CIM CIM const [0..1] null <> Clocks Agent::ClockEntry.ClockIssue: EnumeratedTypes::TimSyncIssueType +2024-09-07 21:42:27,313 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,313 [main] TRACE UmlAttribute - created (3729) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::ClockEntry.ClockIssue: EnumeratedTypes::TimSyncIssueType +2024-09-07 21:42:27,313 [main] ERROR UmlAttribute - unclassified CIM attribute: (2649) OTHER_CIM CIM const [0..1] null <> Clocks Agent::ClockEntry.ClockTamperDetected: Abstract Types::BooleanValue +2024-09-07 21:42:27,313 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,313 [main] TRACE UmlAttribute - created (2649) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::ClockEntry.ClockTamperDetected: Abstract Types::BooleanValue +2024-09-07 21:42:27,313 [main] ERROR UmlAttribute - unclassified CIM attribute: (2645) OTHER_CIM CIM const [0..1] null <> Clocks Agent::ClockEntry.TmSrc: EnumeratedTypes::TimSyncSrcType +2024-09-07 21:42:27,313 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,313 [main] TRACE UmlAttribute - created (2645) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::ClockEntry.TmSrc: EnumeratedTypes::TimSyncSrcType +2024-09-07 21:42:27,313 [main] ERROR UmlAttribute - unclassified CIM attribute: (2655) OTHER_CIM CIM const [0..1] null <> Clocks Agent::ClockEntry.HoldOver: Abstract Types::BooleanValue +2024-09-07 21:42:27,313 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,313 [main] TRACE UmlAttribute - created (2655) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::ClockEntry.HoldOver: Abstract Types::BooleanValue +2024-09-07 21:42:27,314 [main] ERROR UmlAttribute - unclassified CIM attribute: (2648) OTHER_CIM CIM const [0..1] null <> Clocks Agent::ClockEntry.LastSyncOffset: Abstract Types::FloatingTs +2024-09-07 21:42:27,314 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,314 [main] TRACE UmlAttribute - created (2648) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::ClockEntry.LastSyncOffset: Abstract Types::FloatingTs +2024-09-07 21:42:27,314 [main] ERROR UmlAttribute - unclassified CIM attribute: (2653) OTHER_CIM CIM const [0..1] null <> Clocks Agent::ClockEntry.TimeSourceAvailable: Abstract Types::BooleanValue +2024-09-07 21:42:27,314 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,314 [main] TRACE UmlAttribute - created (2653) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::ClockEntry.TimeSourceAvailable: Abstract Types::BooleanValue +2024-09-07 21:42:27,314 [main] ERROR UmlAttribute - unclassified CIM attribute: (2652) OTHER_CIM CIM const [0..1] null <> Clocks Agent::ClockEntry.TimeTraceable: Abstract Types::BooleanValue +2024-09-07 21:42:27,314 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,314 [main] TRACE UmlAttribute - created (2652) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::ClockEntry.TimeTraceable: Abstract Types::BooleanValue +2024-09-07 21:42:27,314 [main] ERROR UmlAttribute - unclassified CIM attribute: (3632) OTHER_CIM CIM const [0..1] null <> Clocks Agent::SecurityNotification.clockTamperDetected: Abstract Types::Timestamp +2024-09-07 21:42:27,314 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,314 [main] TRACE UmlAttribute - created (3632) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::SecurityNotification.clockTamperDetected: Abstract Types::Timestamp +2024-09-07 21:42:27,314 [main] ERROR UmlAttribute - unclassified CIM attribute: (3319) OTHER_CIM CIM const [0..1] null <> Interfaces Agent::Interface.ID: Abstract Types::EntityIndex +2024-09-07 21:42:27,314 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,314 [main] TRACE UmlAttribute - created (3319) OTHER_CIM CIM const [0..1] attribute <> Interfaces Agent::Interface.ID: Abstract Types::EntityIndex +2024-09-07 21:42:27,315 [main] ERROR UmlAttribute - unclassified CIM attribute: (3320) OTHER_CIM CIM const [0..1] null <> Interfaces Agent::Interface.Descr: Abstract Types::CharString +2024-09-07 21:42:27,315 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,315 [main] TRACE UmlAttribute - created (3320) OTHER_CIM CIM const [0..1] attribute <> Interfaces Agent::Interface.Descr: Abstract Types::CharString +2024-09-07 21:42:27,315 [main] ERROR UmlAttribute - unclassified CIM attribute: (3415) OTHER_CIM CIM const [0..1] null <> Interfaces Agent::Interface.IntType: EnumeratedTypes::IntType +2024-09-07 21:42:27,315 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,315 [main] TRACE UmlAttribute - created (3415) OTHER_CIM CIM const [0..1] attribute <> Interfaces Agent::Interface.IntType: EnumeratedTypes::IntType +2024-09-07 21:42:27,315 [main] ERROR UmlAttribute - unclassified CIM attribute: (3323) OTHER_CIM CIM const [0..1] null <> Interfaces Agent::Interface.Operable: Abstract Types::BooleanValueTs +2024-09-07 21:42:27,315 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,315 [main] TRACE UmlAttribute - created (3323) OTHER_CIM CIM const [0..1] attribute <> Interfaces Agent::Interface.Operable: Abstract Types::BooleanValueTs +2024-09-07 21:42:27,315 [main] ERROR UmlAttribute - unclassified CIM attribute: (3318) OTHER_CIM CIM const [0..1] null <> Interfaces Agent::Interface.Online: Abstract Types::BooleanValueTs +2024-09-07 21:42:27,315 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,315 [main] TRACE UmlAttribute - created (3318) OTHER_CIM CIM const [0..1] attribute <> Interfaces Agent::Interface.Online: Abstract Types::BooleanValueTs +2024-09-07 21:42:27,315 [main] ERROR UmlAttribute - unclassified CIM attribute: (3322) OTHER_CIM CIM const [0..1] null <> Interfaces Agent::Interface.Faulty: Abstract Types::BooleanValueTs +2024-09-07 21:42:27,315 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,315 [main] TRACE UmlAttribute - created (3322) OTHER_CIM CIM const [0..1] attribute <> Interfaces Agent::Interface.Faulty: Abstract Types::BooleanValueTs +2024-09-07 21:42:27,315 [main] ERROR UmlAttribute - unclassified CIM attribute: (3321) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interface.CntRs: Abstract Types::CntRs +2024-09-07 21:42:27,316 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,316 [main] TRACE UmlAttribute - created (3321) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interface.CntRs: Abstract Types::CntRs +2024-09-07 21:42:27,316 [main] ERROR UmlAttribute - unclassified CIM attribute: (3652) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.serAvail: Abstract Types::Integer +2024-09-07 21:42:27,316 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,317 [main] TRACE UmlAttribute - created (3652) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.serAvail: Abstract Types::Integer +2024-09-07 21:42:27,317 [main] ERROR UmlAttribute - unclassified CIM attribute: (3657) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.serActive: Abstract Types::IntegerTs +2024-09-07 21:42:27,317 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,317 [main] TRACE UmlAttribute - created (3657) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.serActive: Abstract Types::IntegerTs +2024-09-07 21:42:27,317 [main] ERROR UmlAttribute - unclassified CIM attribute: (3662) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.serFail: Abstract Types::IntegerTs +2024-09-07 21:42:27,317 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,317 [main] TRACE UmlAttribute - created (3662) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.serFail: Abstract Types::IntegerTs +2024-09-07 21:42:27,317 [main] ERROR UmlAttribute - unclassified CIM attribute: (3653) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.ethAvail: Abstract Types::Integer +2024-09-07 21:42:27,317 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,317 [main] TRACE UmlAttribute - created (3653) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.ethAvail: Abstract Types::Integer +2024-09-07 21:42:27,317 [main] ERROR UmlAttribute - unclassified CIM attribute: (3658) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.ethActive: Abstract Types::IntegerTs +2024-09-07 21:42:27,318 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,318 [main] TRACE UmlAttribute - created (3658) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.ethActive: Abstract Types::IntegerTs +2024-09-07 21:42:27,318 [main] ERROR UmlAttribute - unclassified CIM attribute: (3663) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.ethFail: Abstract Types::IntegerTs +2024-09-07 21:42:27,318 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,318 [main] TRACE UmlAttribute - created (3663) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.ethFail: Abstract Types::IntegerTs +2024-09-07 21:42:27,318 [main] ERROR UmlAttribute - unclassified CIM attribute: (3654) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.algAvail: Abstract Types::Integer +2024-09-07 21:42:27,318 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,318 [main] TRACE UmlAttribute - created (3654) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.algAvail: Abstract Types::Integer +2024-09-07 21:42:27,318 [main] ERROR UmlAttribute - unclassified CIM attribute: (3659) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.algActive: Abstract Types::IntegerTs +2024-09-07 21:42:27,318 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,318 [main] TRACE UmlAttribute - created (3659) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.algActive: Abstract Types::IntegerTs +2024-09-07 21:42:27,318 [main] ERROR UmlAttribute - unclassified CIM attribute: (3664) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.algFail: Abstract Types::IntegerTs +2024-09-07 21:42:27,318 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,318 [main] TRACE UmlAttribute - created (3664) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.algFail: Abstract Types::IntegerTs +2024-09-07 21:42:27,318 [main] ERROR UmlAttribute - unclassified CIM attribute: (3655) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.keyAvail: Abstract Types::Integer +2024-09-07 21:42:27,319 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,319 [main] TRACE UmlAttribute - created (3655) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.keyAvail: Abstract Types::Integer +2024-09-07 21:42:27,319 [main] ERROR UmlAttribute - unclassified CIM attribute: (3660) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.keyActive: Abstract Types::IntegerTs +2024-09-07 21:42:27,319 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,319 [main] TRACE UmlAttribute - created (3660) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.keyActive: Abstract Types::IntegerTs +2024-09-07 21:42:27,319 [main] ERROR UmlAttribute - unclassified CIM attribute: (3665) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.keyFail: Abstract Types::IntegerTs +2024-09-07 21:42:27,319 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,319 [main] TRACE UmlAttribute - created (3665) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.keyFail: Abstract Types::IntegerTs +2024-09-07 21:42:27,319 [main] ERROR UmlAttribute - unclassified CIM attribute: (3656) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.usbAvail: Abstract Types::Integer +2024-09-07 21:42:27,319 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,319 [main] TRACE UmlAttribute - created (3656) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.usbAvail: Abstract Types::Integer +2024-09-07 21:42:27,319 [main] ERROR UmlAttribute - unclassified CIM attribute: (3661) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.usbActive: Abstract Types::IntegerTs +2024-09-07 21:42:27,319 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,320 [main] TRACE UmlAttribute - created (3661) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.usbActive: Abstract Types::IntegerTs +2024-09-07 21:42:27,320 [main] ERROR UmlAttribute - unclassified CIM attribute: (3666) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.usbFail: Abstract Types::IntegerTs +2024-09-07 21:42:27,320 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,320 [main] TRACE UmlAttribute - created (3666) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.usbFail: Abstract Types::IntegerTs +2024-09-07 21:42:27,320 [main] ERROR UmlAttribute - unclassified CIM attribute: (3283) OTHER_CIM CIM [0..*] null <
> Interfaces Agent::Interfaces.SER: Interfaces Agent::SEREntry +2024-09-07 21:42:27,320 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,320 [main] TRACE UmlAttribute - created (3283) OTHER_CIM CIM [0..*] attribute <
> Interfaces Agent::Interfaces.SER: Interfaces Agent::SEREntry +2024-09-07 21:42:27,320 [main] ERROR UmlAttribute - unclassified CIM attribute: (3297) OTHER_CIM CIM [0..*] null <
> Interfaces Agent::Interfaces.ETH: Interfaces Agent::ETHEntry +2024-09-07 21:42:27,320 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,320 [main] TRACE UmlAttribute - created (3297) OTHER_CIM CIM [0..*] attribute <
> Interfaces Agent::Interfaces.ETH: Interfaces Agent::ETHEntry +2024-09-07 21:42:27,321 [main] ERROR UmlAttribute - unclassified CIM attribute: (3298) OTHER_CIM CIM [0..*] null <
> Interfaces Agent::Interfaces.USB: Interfaces Agent::USBEntry +2024-09-07 21:42:27,321 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,321 [main] TRACE UmlAttribute - created (3298) OTHER_CIM CIM [0..*] attribute <
> Interfaces Agent::Interfaces.USB: Interfaces Agent::USBEntry +2024-09-07 21:42:27,321 [main] ERROR UmlAttribute - unclassified CIM attribute: (3299) OTHER_CIM CIM [0..*] null <
> Interfaces Agent::Interfaces.KEY: Interfaces Agent::KEYEntry +2024-09-07 21:42:27,321 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,321 [main] TRACE UmlAttribute - created (3299) OTHER_CIM CIM [0..*] attribute <
> Interfaces Agent::Interfaces.KEY: Interfaces Agent::KEYEntry +2024-09-07 21:42:27,321 [main] ERROR UmlAttribute - unclassified CIM attribute: (3328) OTHER_CIM CIM [0..*] null <
> Interfaces Agent::Interfaces.ALG: Interfaces Agent::ALGEntry +2024-09-07 21:42:27,321 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,321 [main] TRACE UmlAttribute - created (3328) OTHER_CIM CIM [0..*] attribute <
> Interfaces Agent::Interfaces.ALG: Interfaces Agent::ALGEntry +2024-09-07 21:42:27,321 [main] ERROR UmlAttribute - unclassified CIM attribute: (3678) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.StateNotification: Interfaces Agent::Notification +2024-09-07 21:42:27,321 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,321 [main] TRACE UmlAttribute - created (3678) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.StateNotification: Interfaces Agent::Notification +2024-09-07 21:42:27,321 [main] ERROR UmlAttribute - unclassified CIM attribute: (3327) OTHER_CIM CIM const [0..1] null <> Interfaces Agent::KEYEntry.Locked: Abstract Types::BooleanValueTs +2024-09-07 21:42:27,321 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,322 [main] TRACE UmlAttribute - created (3327) OTHER_CIM CIM const [0..1] attribute <> Interfaces Agent::KEYEntry.Locked: Abstract Types::BooleanValueTs +2024-09-07 21:42:27,322 [main] ERROR UmlAttribute - unclassified CIM attribute: (3325) OTHER_CIM CIM const [0..1] null <> Interfaces Agent::SEREntry.ByteIn: Abstract Types::CounterTs +2024-09-07 21:42:27,322 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,322 [main] TRACE UmlAttribute - created (3325) OTHER_CIM CIM const [0..1] attribute <> Interfaces Agent::SEREntry.ByteIn: Abstract Types::CounterTs +2024-09-07 21:42:27,322 [main] ERROR UmlAttribute - unclassified CIM attribute: (3326) OTHER_CIM CIM const [0..1] null <> Interfaces Agent::SEREntry.ByteOut: Abstract Types::CounterTs +2024-09-07 21:42:27,322 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,322 [main] TRACE UmlAttribute - created (3326) OTHER_CIM CIM const [0..1] attribute <> Interfaces Agent::SEREntry.ByteOut: Abstract Types::CounterTs +2024-09-07 21:42:27,322 [main] ERROR UmlAttribute - unclassified CIM attribute: (3668) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.serActive: Abstract Types::IntegerTs +2024-09-07 21:42:27,322 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,322 [main] TRACE UmlAttribute - created (3668) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.serActive: Abstract Types::IntegerTs +2024-09-07 21:42:27,322 [main] ERROR UmlAttribute - unclassified CIM attribute: (3669) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.serFail: Abstract Types::IntegerTs +2024-09-07 21:42:27,322 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,322 [main] TRACE UmlAttribute - created (3669) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.serFail: Abstract Types::IntegerTs +2024-09-07 21:42:27,322 [main] ERROR UmlAttribute - unclassified CIM attribute: (3670) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.ethActive: Abstract Types::IntegerTs +2024-09-07 21:42:27,322 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,323 [main] TRACE UmlAttribute - created (3670) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.ethActive: Abstract Types::IntegerTs +2024-09-07 21:42:27,323 [main] ERROR UmlAttribute - unclassified CIM attribute: (3671) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.ethFail: Abstract Types::IntegerTs +2024-09-07 21:42:27,323 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,323 [main] TRACE UmlAttribute - created (3671) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.ethFail: Abstract Types::IntegerTs +2024-09-07 21:42:27,323 [main] ERROR UmlAttribute - unclassified CIM attribute: (3672) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.algActive: Abstract Types::IntegerTs +2024-09-07 21:42:27,323 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,323 [main] TRACE UmlAttribute - created (3672) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.algActive: Abstract Types::IntegerTs +2024-09-07 21:42:27,323 [main] ERROR UmlAttribute - unclassified CIM attribute: (3673) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.algFail: Abstract Types::IntegerTs +2024-09-07 21:42:27,323 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,323 [main] TRACE UmlAttribute - created (3673) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.algFail: Abstract Types::IntegerTs +2024-09-07 21:42:27,323 [main] ERROR UmlAttribute - unclassified CIM attribute: (3667) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.keyActive: Abstract Types::IntegerTs +2024-09-07 21:42:27,324 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,324 [main] TRACE UmlAttribute - created (3667) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.keyActive: Abstract Types::IntegerTs +2024-09-07 21:42:27,324 [main] ERROR UmlAttribute - unclassified CIM attribute: (3674) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.keyFail: Abstract Types::IntegerTs +2024-09-07 21:42:27,324 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,324 [main] TRACE UmlAttribute - created (3674) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.keyFail: Abstract Types::IntegerTs +2024-09-07 21:42:27,324 [main] ERROR UmlAttribute - unclassified CIM attribute: (3675) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.usbActive: Abstract Types::IntegerTs +2024-09-07 21:42:27,324 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,324 [main] TRACE UmlAttribute - created (3675) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.usbActive: Abstract Types::IntegerTs +2024-09-07 21:42:27,324 [main] ERROR UmlAttribute - unclassified CIM attribute: (3676) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.usbFail: Abstract Types::IntegerTs +2024-09-07 21:42:27,324 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:42:27,325 [main] TRACE UmlAttribute - created (3676) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.usbFail: Abstract Types::IntegerTs +2024-09-07 21:42:27,325 [main] INFO EaModelBuilder - creating in-memory associations ... +2024-09-07 21:42:27,328 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 21:42:27,328 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 21:42:27,333 [main] TRACE UmlAssociation - created (185) OTHER_CIM CIM association <>, qname='health.<> - Attribute.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable); otherEnd: OTHER_CIM [?..?] health.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] health.<> (navigable); otherEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable) +2024-09-07 21:42:27,333 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 21:42:27,333 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 21:42:27,333 [main] TRACE UmlAssociation - created (179) OTHER_CIM CIM association <>, qname='protocol.<> - Attribute.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable); otherEnd: OTHER_CIM [?..?] protocol.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] protocol.<> (navigable); otherEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable) +2024-09-07 21:42:27,333 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 21:42:27,333 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 21:42:27,333 [main] TRACE UmlAssociation - created (180) OTHER_CIM CIM association <>, qname='security.<> - Attribute.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable); otherEnd: OTHER_CIM [?..?] security.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] security.<> (navigable); otherEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable) +2024-09-07 21:42:27,333 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 21:42:27,333 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 21:42:27,333 [main] TRACE UmlAssociation - created (183) OTHER_CIM CIM association <>, qname='index.<> - Attribute.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable); otherEnd: OTHER_CIM [?..?] index.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] index.<> (navigable); otherEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable) +2024-09-07 21:42:27,333 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 21:42:27,333 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 21:42:27,333 [main] TRACE UmlAssociation - created (184) OTHER_CIM CIM association <>, qname='identity.<> - Attribute.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable); otherEnd: OTHER_CIM [?..?] identity.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] identity.<> (navigable); otherEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable) +2024-09-07 21:42:27,333 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 21:42:27,333 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 21:42:27,334 [main] TRACE UmlAssociation - created (186) OTHER_CIM CIM association <>, qname='performance.<> - Attribute.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable); otherEnd: OTHER_CIM [?..?] performance.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] performance.<> (navigable); otherEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable) +2024-09-07 21:42:27,334 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 21:42:27,334 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 21:42:27,334 [main] TRACE UmlAssociation - created (187) OTHER_CIM CIM association <>, qname='setvalue.<> - Attribute.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable); otherEnd: OTHER_CIM [?..?] setvalue.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] setvalue.<> (navigable); otherEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable) +2024-09-07 21:42:27,334 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 21:42:27,334 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 21:42:27,334 [main] TRACE UmlAssociation - created (207) OTHER_CIM CIM association <>, qname='trap.<> - Attribute.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable); otherEnd: OTHER_CIM [?..?] trap.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] trap.<> (navigable); otherEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable) +2024-09-07 21:42:27,334 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 21:42:27,334 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 21:42:27,334 [main] TRACE UmlAssociation - created (188) OTHER_CIM CIM association <>, qname='table.<> - Attribute.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable); otherEnd: OTHER_CIM [?..?] table.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] table.<> (navigable); otherEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable) +2024-09-07 21:42:27,334 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 21:42:27,334 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 21:42:27,334 [main] TRACE UmlAssociation - created (181) OTHER_CIM CIM association <>, qname='nsmEvent.<> - Class.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Class.<> (non-navigable); otherEnd: OTHER_CIM [?..?] nsmEvent.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] nsmEvent.<> (navigable); otherEnd: OTHER_CIM [?..?] Class.<> (non-navigable) +2024-09-07 21:42:27,334 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 21:42:27,335 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 21:42:27,335 [main] TRACE UmlAssociation - created (226) OTHER_CIM CIM association <>, qname='nsmEntry.<> - Class.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Class.<> (non-navigable); otherEnd: OTHER_CIM [?..?] nsmEntry.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] nsmEntry.<> (navigable); otherEnd: OTHER_CIM [?..?] Class.<> (non-navigable) +2024-09-07 21:42:27,335 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 21:42:27,335 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 21:42:27,335 [main] TRACE UmlAssociation - created (182) OTHER_CIM CIM association <>, qname='nsmAgent.<> - Class.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Class.<> (non-navigable); otherEnd: OTHER_CIM [?..?] nsmAgent.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] nsmAgent.<> (navigable); otherEnd: OTHER_CIM [?..?] Class.<> (non-navigable) +2024-09-07 21:42:27,335 [main] INFO EaModelBuilder - creating in-memory dependencies ... +2024-09-07 21:42:27,335 [main] INFO Util - time=[0:00:07.280] created in-memory model and exported normative diagrams +2024-09-07 21:42:27,335 [main] INFO Util - +2024-09-07 21:42:27,335 [main] INFO Util - +2024-09-07 21:42:27,335 [main] INFO Util - ------------------------------------------------ +2024-09-07 21:42:27,335 [main] INFO Util - closing EA file 'C:\Users\gigi\git\jCleanCim\input\IEC62351-7-Ed2-FDIS-20240901.eap'... +2024-09-07 21:42:27,992 [main] INFO Util - time=[0:00:00.656] closed EA file. +2024-09-07 21:42:27,993 [main] INFO Util - +2024-09-07 21:42:27,993 [main] INFO Util - time=[0:00:50.974] built model from 'iso (CIM)' +2024-09-07 21:42:27,993 [main] INFO Util - +2024-09-07 21:42:27,993 [main] INFO Util - +2024-09-07 21:42:27,993 [main] INFO Util - ================================================ +2024-09-07 21:42:27,993 [main] INFO Util - generating MIBs from iso (CIM) +2024-09-07 21:42:27,994 [main] INFO Util - ================================================ +2024-09-07 21:42:27,994 [main] INFO Util - +2024-09-07 21:42:27,994 [main] INFO Util - ------------------------------------------------ +2024-09-07 21:42:27,994 [main] INFO Util - full MIBs ... +2024-09-07 21:42:28,259 [main] INFO Util - +2024-09-07 21:42:28,259 [main] INFO Util - ------------------------------------------------ +2024-09-07 21:42:28,260 [main] INFO Util - light MIBs ... +2024-09-07 21:42:28,414 [main] INFO Util - time=[0:00:00.420] generated MIBs in: C:\Users\gigi\git\jCleanCim\output\mibs +2024-09-07 21:42:28,414 [main] INFO Util - +2024-09-07 21:42:28,414 [main] INFO Util - +2024-09-07 21:42:28,414 [main] INFO Util - ================================================ +2024-09-07 21:42:28,414 [main] INFO Util - generating doc from iso (CIM) +2024-09-07 21:42:28,414 [main] INFO Util - ================================================ +2024-09-07 21:42:28,415 [main] INFO Util - +2024-09-07 21:42:28,415 [main] INFO Util - ------------------------------------------------ +2024-09-07 21:42:28,415 [main] INFO Util - collecting documentation content ... +2024-09-07 21:42:28,419 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Attribute': UML1 +2024-09-07 21:42:28,419 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Attribute': UML2 +2024-09-07 21:42:28,419 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Attribute': UML3 +2024-09-07 21:42:28,419 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Attribute': UML4 +2024-09-07 21:42:28,419 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Attribute': UML5 +2024-09-07 21:42:28,419 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Attribute': UML6 +2024-09-07 21:42:28,420 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Attribute': UML7 +2024-09-07 21:42:28,420 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Attribute': UML8 +2024-09-07 21:42:28,420 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Attribute': UML9 +2024-09-07 21:42:28,420 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Class': UML10 +2024-09-07 21:42:28,420 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Class': UML11 +2024-09-07 21:42:28,420 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Class': UML12 +2024-09-07 21:42:28,420 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::health': UML13 +2024-09-07 21:42:28,420 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::identity': UML14 +2024-09-07 21:42:28,420 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::index': UML15 +2024-09-07 21:42:28,420 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::nsmAgent': UML16 +2024-09-07 21:42:28,420 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::nsmEntry': UML17 +2024-09-07 21:42:28,420 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::nsmEvent': UML18 +2024-09-07 21:42:28,420 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::performance': UML19 +2024-09-07 21:42:28,420 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::protocol': UML20 +2024-09-07 21:42:28,420 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::security': UML21 +2024-09-07 21:42:28,420 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::setvalue': UML22 +2024-09-07 21:42:28,420 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::table': UML23 +2024-09-07 21:42:28,420 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::trap': UML24 +2024-09-07 21:42:28,420 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::AbsoluteDateTime': UML25 +2024-09-07 21:42:28,420 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::Counter32 ': UML26 +2024-09-07 21:42:28,420 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::DateAndTime': UML27 +2024-09-07 21:42:28,420 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::DisplayString': UML28 +2024-09-07 21:42:28,420 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::Float32TC': UML29 +2024-09-07 21:42:28,420 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::Gauge32': UML30 +2024-09-07 21:42:28,420 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::InetAddress': UML31 +2024-09-07 21:42:28,420 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::MacAddress': UML32 +2024-09-07 21:42:28,420 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::InetAddressType': UML33 +2024-09-07 21:42:28,420 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::EntityIndex': UML34 +2024-09-07 21:42:28,420 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::Integer32': UML35 +2024-09-07 21:42:28,420 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::Unsigned32': UML36 +2024-09-07 21:42:28,421 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::TimeTicks': UML37 +2024-09-07 21:42:28,421 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::TruthValue': UML38 +2024-09-07 21:42:28,421 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::AbstractBaseType': UML39 +2024-09-07 21:42:28,421 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::AbstractAgent': UML40 +2024-09-07 21:42:28,421 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::AppDatStKind': UML41 +2024-09-07 21:42:28,421 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::PhyHealthKind': UML42 +2024-09-07 21:42:28,421 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ExtKind': UML43 +2024-09-07 21:42:28,421 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::IntKind': UML44 +2024-09-07 21:42:28,421 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::LnkKind': UML45 +2024-09-07 21:42:28,421 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::PSPAccKind': UML46 +2024-09-07 21:42:28,421 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ProtIdKind': UML47 +2024-09-07 21:42:28,421 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind': UML48 +2024-09-07 21:42:28,421 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncIssueKind': UML49 +2024-09-07 21:42:28,421 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::SecurityProfileKind': UML50 +2024-09-07 21:42:28,421 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind': UML51 +2024-09-07 21:42:28,421 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::BooleanValue': UML52 +2024-09-07 21:42:28,421 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::Integer': UML53 +2024-09-07 21:42:28,421 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::BooleanValueTs': UML54 +2024-09-07 21:42:28,421 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::CounterTs': UML55 +2024-09-07 21:42:28,421 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::Floating': UML56 +2024-09-07 21:42:28,421 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::FloatingTs': UML57 +2024-09-07 21:42:28,421 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::IntegerTs': UML58 +2024-09-07 21:42:28,421 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::CharString': UML59 +2024-09-07 21:42:28,421 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::CharStringTs': UML60 +2024-09-07 21:42:28,421 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::Timestamp': UML61 +2024-09-07 21:42:28,421 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::Selector': UML62 +2024-09-07 21:42:28,421 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::MacAddress': UML63 +2024-09-07 21:42:28,422 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::InetAddressType': UML64 +2024-09-07 21:42:28,422 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::InetAddress': UML65 +2024-09-07 21:42:28,422 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::EntityIndex': UML66 +2024-09-07 21:42:28,422 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::CntRs': UML67 +2024-09-07 21:42:28,422 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::AppDatStType': UML68 +2024-09-07 21:42:28,422 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::PhyHealthType': UML69 +2024-09-07 21:42:28,422 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ExtType': UML70 +2024-09-07 21:42:28,422 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::IntType': UML71 +2024-09-07 21:42:28,422 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventType': UML72 +2024-09-07 21:42:28,422 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::PSPAccType': UML73 +2024-09-07 21:42:28,422 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ProtIdType': UML74 +2024-09-07 21:42:28,422 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncIssueType': UML75 +2024-09-07 21:42:28,422 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::SecurityProfileType': UML76 +2024-09-07 21:42:28,422 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcType': UML77 +2024-09-07 21:42:28,422 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::LnkType': UML78 +2024-09-07 21:42:28,422 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Environmental Agent::Environmental': UML79 +2024-09-07 21:42:28,422 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Environmental Agent::PSUPEntry': UML80 +2024-09-07 21:42:28,422 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Environmental Agent::Notification': UML81 +2024-09-07 21:42:28,422 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Environmental Agent::SecurityNotification': UML82 +2024-09-07 21:42:28,422 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IED Agent::IED': UML83 +2024-09-07 21:42:28,422 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IED Agent::CPUEntry': UML84 +2024-09-07 21:42:28,422 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IED Agent::EXTEntry': UML85 +2024-09-07 21:42:28,423 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IED Agent::STOREEntry': UML86 +2024-09-07 21:42:28,423 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IED Agent::Notification': UML87 +2024-09-07 21:42:28,423 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IED Agent::SecurityNotification': UML88 +2024-09-07 21:42:28,423 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Common objects::CommonProtocolInfo': UML89 +2024-09-07 21:42:28,423 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEC62351-3 ed.2 Agent::IEC62351-3ed2security': UML90 +2024-09-07 21:42:28,423 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEC62351-3 ed.2 Agent::TLSSession': UML91 +2024-09-07 21:42:28,423 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEC62351-3 ed.2 Agent::ClientTLS': UML92 +2024-09-07 21:42:28,423 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEC62351-3 ed.2 Agent::ServerTLS': UML93 +2024-09-07 21:42:28,423 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo': UML94 +2024-09-07 21:42:28,423 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent::Association': UML95 +2024-09-07 21:42:28,423 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent::MasterAssociation': UML96 +2024-09-07 21:42:28,423 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent::OutstationAssociation': UML97 +2024-09-07 21:42:28,423 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5': UML98 +2024-09-07 21:42:28,423 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2': UML99 +2024-09-07 21:42:28,423 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent - ed2::Association': UML100 +2024-09-07 21:42:28,424 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent - ed2::MasterAssociation': UML101 +2024-09-07 21:42:28,424 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent - ed2::OutstationAssociation': UML102 +2024-09-07 21:42:28,424 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MMS::MMSProtocolInfo': UML103 +2024-09-07 21:42:28,424 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MMS::MMSAssociation': UML104 +2024-09-07 21:42:28,424 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEC62351-3 ed.2 Agent::Summary': UML105 +2024-09-07 21:42:28,424 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification': UML106 +2024-09-07 21:42:28,424 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent::Summary': UML107 +2024-09-07 21:42:28,424 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification': UML108 +2024-09-07 21:42:28,424 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification': UML109 +2024-09-07 21:42:28,424 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent - ed2::Summary': UML110 +2024-09-07 21:42:28,424 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2': UML111 +2024-09-07 21:42:28,424 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2': UML112 +2024-09-07 21:42:28,424 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ACSI::ACSISummary': UML113 +2024-09-07 21:42:28,424 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MMS::MMSProvider': UML114 +2024-09-07 21:42:28,424 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MMS::MMSSecurityNotification': UML115 +2024-09-07 21:42:28,424 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MMS::MMSNotification': UML116 +2024-09-07 21:42:28,424 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'SV and GSE common objects::GSEandSVCommon': UML117 +2024-09-07 21:42:28,424 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'SV and GSE common objects::GSEandSVPublisherAssociation': UML118 +2024-09-07 21:42:28,424 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'SV::SVPublisherAssociationIP': UML119 +2024-09-07 21:42:28,424 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'SV::SVPublisherAssociationL2': UML120 +2024-09-07 21:42:28,424 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GSE::GSEPublisherAssociationIP': UML121 +2024-09-07 21:42:28,424 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GSE::GSEPublisherAssociationL2': UML122 +2024-09-07 21:42:28,424 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'SV and GSE common objects::GSEandSVSubscriberAssociation': UML123 +2024-09-07 21:42:28,424 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'SV::SVSubcriberAssociationIP': UML124 +2024-09-07 21:42:28,424 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'SV::SVSubcriberAssociationL2': UML125 +2024-09-07 21:42:28,424 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GSE::GSESubscriberAssociation': UML126 +2024-09-07 21:42:28,424 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GSE::GSESubcriberAssociationIP': UML127 +2024-09-07 21:42:28,424 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GSE::GSESubcriberAssociationL2': UML128 +2024-09-07 21:42:28,424 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'SV::SVProvider': UML129 +2024-09-07 21:42:28,424 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'SV::SVNotification': UML130 +2024-09-07 21:42:28,424 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GSE::GSEProvider': UML131 +2024-09-07 21:42:28,424 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GSE::GSENotification': UML132 +2024-09-07 21:42:28,424 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Clocks Agent::Clock': UML133 +2024-09-07 21:42:28,424 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Clocks Agent::ClockEntry': UML134 +2024-09-07 21:42:28,424 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Clocks Agent::SecurityNotification': UML135 +2024-09-07 21:42:28,425 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Interfaces Agent::Interface': UML136 +2024-09-07 21:42:28,425 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Interfaces Agent::ETHEntry': UML137 +2024-09-07 21:42:28,425 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Interfaces Agent::KEYEntry': UML138 +2024-09-07 21:42:28,425 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Interfaces Agent::SEREntry': UML139 +2024-09-07 21:42:28,425 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Interfaces Agent::ALGEntry': UML140 +2024-09-07 21:42:28,425 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Interfaces Agent::USBEntry': UML141 +2024-09-07 21:42:28,425 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Interfaces Agent::Interfaces': UML142 +2024-09-07 21:42:28,425 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Interfaces Agent::Notification': UML143 +2024-09-07 21:42:28,425 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::InetAddressType.unknown': UML144 +2024-09-07 21:42:28,425 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::InetAddressType.ipv4': UML145 +2024-09-07 21:42:28,425 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::InetAddressType.ipv6': UML146 +2024-09-07 21:42:28,425 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::InetAddressType.ipv4z': UML147 +2024-09-07 21:42:28,425 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::InetAddressType.ipv6z': UML148 +2024-09-07 21:42:28,425 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::InetAddressType.dns': UML149 +2024-09-07 21:42:28,425 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::AppDatStKind.unknown': UML150 +2024-09-07 21:42:28,425 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::AppDatStKind.good': UML151 +2024-09-07 21:42:28,425 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::AppDatStKind.bad': UML152 +2024-09-07 21:42:28,425 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::PhyHealthKind.ok': UML153 +2024-09-07 21:42:28,425 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::PhyHealthKind.warning': UML154 +2024-09-07 21:42:28,425 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::PhyHealthKind.alarm': UML155 +2024-09-07 21:42:28,425 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ExtKind.unknown': UML156 +2024-09-07 21:42:28,425 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ExtKind.ioModule': UML157 +2024-09-07 21:42:28,425 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ExtKind.softwarePLC': UML158 +2024-09-07 21:42:28,425 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::IntKind.wired': UML159 +2024-09-07 21:42:28,425 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::IntKind.wireless': UML160 +2024-09-07 21:42:28,425 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::LnkKind.unknown': UML161 +2024-09-07 21:42:28,426 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::LnkKind.serial': UML162 +2024-09-07 21:42:28,426 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::LnkKind.tcp': UML163 +2024-09-07 21:42:28,426 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::LnkKind.udp': UML164 +2024-09-07 21:42:28,426 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::LnkKind.eth': UML165 +2024-09-07 21:42:28,426 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::PSPAccKind.notBeingAccessed': UML166 +2024-09-07 21:42:28,426 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::PSPAccKind.accessOccurring': UML167 +2024-09-07 21:42:28,426 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ProtIdKind.unknown': UML168 +2024-09-07 21:42:28,426 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ProtIdKind.iEC6185081': UML169 +2024-09-07 21:42:28,426 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ProtIdKind.iEC6185081GOOSE': UML170 +2024-09-07 21:42:28,426 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ProtIdKind.iEC6185092SV': UML171 +2024-09-07 21:42:28,426 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ProtIdKind.ieee1815DNP': UML172 +2024-09-07 21:42:28,426 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ProtIdKind.iec608705': UML173 +2024-09-07 21:42:28,426 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ProtIdKind.iEC6185082': UML174 +2024-09-07 21:42:28,426 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind.none': UML175 +2024-09-07 21:42:28,426 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind.unKnown': UML176 +2024-09-07 21:42:28,426 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind.denialOfService': UML177 +2024-09-07 21:42:28,426 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind.malware': UML178 +2024-09-07 21:42:28,426 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind.bufferOverRun': UML179 +2024-09-07 21:42:28,426 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind.bufferUnderRun': UML180 +2024-09-07 21:42:28,426 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind.badCredential': UML181 +2024-09-07 21:42:28,426 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind.badKey': UML182 +2024-09-07 21:42:28,426 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind.malformedPDU': UML183 +2024-09-07 21:42:28,426 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind.physicalDisruption': UML184 +2024-09-07 21:42:28,426 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind.invalidNetworkAccess': UML185 +2024-09-07 21:42:28,426 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncIssueKind.synced': UML186 +2024-09-07 21:42:28,426 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncIssueKind.degradated': UML187 +2024-09-07 21:42:28,426 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncIssueKind.failed': UML188 +2024-09-07 21:42:28,426 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncIssueKind.syncedGlobal': UML189 +2024-09-07 21:42:28,426 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::SecurityProfileKind.noSecurity': UML190 +2024-09-07 21:42:28,427 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::SecurityProfileKind.aProfile': UML191 +2024-09-07 21:42:28,427 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::SecurityProfileKind.e2eProfile': UML192 +2024-09-07 21:42:28,427 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::SecurityProfileKind.ae2eProfile': UML193 +2024-09-07 21:42:28,427 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.unknown': UML194 +2024-09-07 21:42:28,427 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.ntp': UML195 +2024-09-07 21:42:28,427 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.sntp': UML196 +2024-09-07 21:42:28,427 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.irig': UML197 +2024-09-07 21:42:28,427 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.gps': UML198 +2024-09-07 21:42:28,427 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.ieee1588PTP': UML199 +2024-09-07 21:42:28,427 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.ieee1588PTPC37238Profile2011': UML200 +2024-09-07 21:42:28,427 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.ieee1588PTPIEC6185093': UML201 +2024-09-07 21:42:28,427 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.ieee1588PTPC37238Profile2017': UML202 +2024-09-07 21:42:28,427 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.ieee1588PTPIEC6185093Ed20': UML203 +2024-09-07 21:42:28,427 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.ieee1588PTPIEC6185093Profile2016': UML204 +2024-09-07 21:42:28,427 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.gnss': UML205 +2024-09-07 21:42:28,427 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.applicationProtocol': UML206 +2024-09-07 21:42:28,427 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.ntpOnts': UML207 +2024-09-07 21:42:28,445 [main] INFO PackageDocImpl - collecting doc for package iso ... +2024-09-07 21:42:28,449 [main] INFO PackageDocImpl - collecting doc for package standard ... +2024-09-07 21:42:28,449 [main] INFO PackageDocImpl - collecting doc for package iec62351 ... +2024-09-07 21:42:28,450 [main] INFO PackageDocImpl - collecting doc for package part7 ... +2024-09-07 21:42:28,450 [main] INFO PackageDocImpl - collecting doc for package Profiles ... +2024-09-07 21:42:28,453 [main] INFO PackageDocImpl - collecting doc for package nsmAgent ... +2024-09-07 21:42:28,489 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Attribute, hphSpec = 'aaùAttributeùUML1ùdd' +2024-09-07 21:42:28,491 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Attribute, hphSpec = 'aaùAttributeùUML5ùdd' +2024-09-07 21:42:28,491 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Attribute, hphSpec = 'aaùAttributeùUML4ùdd' +2024-09-07 21:42:28,493 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Class, hphSpec = 'aaùClassùUML12ùdd' +2024-09-07 21:42:28,494 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Class, hphSpec = 'aaùClassùUML11ùdd' +2024-09-07 21:42:28,495 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Class, hphSpec = 'aaùClassùUML10ùdd' +2024-09-07 21:42:28,495 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Attribute, hphSpec = 'aaùAttributeùUML6ùdd' +2024-09-07 21:42:28,496 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Attribute, hphSpec = 'aaùAttributeùUML2ùdd' +2024-09-07 21:42:28,497 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Attribute, hphSpec = 'aaùAttributeùUML3ùdd' +2024-09-07 21:42:28,497 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Attribute, hphSpec = 'aaùAttributeùUML7ùdd' +2024-09-07 21:42:28,498 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Attribute, hphSpec = 'aaùAttributeùUML9ùdd' +2024-09-07 21:42:28,499 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Attribute, hphSpec = 'aaùAttributeùUML8ùdd' +2024-09-07 21:42:28,500 [main] INFO PackageDocImpl - collecting doc for package Overview ... +2024-09-07 21:42:28,500 [main] INFO PackageDocImpl - collecting doc for package BaseTypes ... +2024-09-07 21:42:28,515 [main] INFO PackageDocImpl - collecting doc for package Abstract Types ... +2024-09-07 21:42:28,515 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:42:28,515 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TruthValue, hphSpec = 'aaùTruthValueùUML38ùdd' +2024-09-07 21:42:28,516 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:42:28,516 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DateAndTime, hphSpec = 'aaùDateAndTimeùUML27ùdd' +2024-09-07 21:42:28,516 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TruthValue, hphSpec = 'aaùTruthValueùUML38ùdd' +2024-09-07 21:42:28,517 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:42:28,517 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DateAndTime, hphSpec = 'aaùDateAndTimeùUML27ùdd' +2024-09-07 21:42:28,517 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Counter32 , hphSpec = 'aaùCounter32 ùUML26ùdd' +2024-09-07 21:42:28,517 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:42:28,517 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DateAndTime, hphSpec = 'aaùDateAndTimeùUML27ùdd' +2024-09-07 21:42:28,517 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TruthValue, hphSpec = 'aaùTruthValueùUML38ùdd' +2024-09-07 21:42:28,518 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:42:28,518 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Float32TC, hphSpec = 'aaùFloat32TCùUML29ùdd' +2024-09-07 21:42:28,518 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:42:28,518 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DateAndTime, hphSpec = 'aaùDateAndTimeùUML27ùdd' +2024-09-07 21:42:28,518 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Float32TC, hphSpec = 'aaùFloat32TCùUML29ùdd' +2024-09-07 21:42:28,518 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:42:28,518 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Unsigned32, hphSpec = 'aaùUnsigned32ùUML36ùdd' +2024-09-07 21:42:28,519 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:42:28,519 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer32, hphSpec = 'aaùInteger32ùUML35ùdd' +2024-09-07 21:42:28,519 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:42:28,519 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DateAndTime, hphSpec = 'aaùDateAndTimeùUML27ùdd' +2024-09-07 21:42:28,519 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer32, hphSpec = 'aaùInteger32ùUML35ùdd' +2024-09-07 21:42:28,519 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:42:28,520 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML31ùdd' +2024-09-07 21:42:28,520 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:42:28,520 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML33ùdd' +2024-09-07 21:42:28,520 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:42:28,520 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MacAddress, hphSpec = 'aaùMacAddressùUML32ùdd' +2024-09-07 21:42:28,520 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:42:28,521 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DisplayString, hphSpec = 'aaùDisplayStringùUML28ùdd' +2024-09-07 21:42:28,521 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:42:28,521 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DateAndTime, hphSpec = 'aaùDateAndTimeùUML27ùdd' +2024-09-07 21:42:28,522 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:42:28,522 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DisplayString, hphSpec = 'aaùDisplayStringùUML28ùdd' +2024-09-07 21:42:28,523 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:42:28,523 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DateAndTime, hphSpec = 'aaùDateAndTimeùUML27ùdd' +2024-09-07 21:42:28,523 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DisplayString, hphSpec = 'aaùDisplayStringùUML28ùdd' +2024-09-07 21:42:28,525 [main] INFO PackageDocImpl - collecting doc for package EnumeratedTypes ... +2024-09-07 21:42:28,533 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:42:28,533 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DateAndTime, hphSpec = 'aaùDateAndTimeùUML27ùdd' +2024-09-07 21:42:28,533 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AppDatStKind, hphSpec = 'aaùAppDatStKindùUML41ùdd' +2024-09-07 21:42:28,533 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:42:28,533 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DateAndTime, hphSpec = 'aaùDateAndTimeùUML27ùdd' +2024-09-07 21:42:28,533 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PhyHealthKind, hphSpec = 'aaùPhyHealthKindùUML42ùdd' +2024-09-07 21:42:28,533 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:42:28,534 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ExtKind, hphSpec = 'aaùExtKindùUML43ùdd' +2024-09-07 21:42:28,534 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:42:28,534 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntKind, hphSpec = 'aaùIntKindùUML44ùdd' +2024-09-07 21:42:28,534 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:42:28,535 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DateAndTime, hphSpec = 'aaùDateAndTimeùUML27ùdd' +2024-09-07 21:42:28,535 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventKind, hphSpec = 'aaùEventKindùUML48ùdd' +2024-09-07 21:42:28,535 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:42:28,535 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DateAndTime, hphSpec = 'aaùDateAndTimeùUML27ùdd' +2024-09-07 21:42:28,535 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PSPAccKind, hphSpec = 'aaùPSPAccKindùUML46ùdd' +2024-09-07 21:42:28,535 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:42:28,535 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ProtIdKind, hphSpec = 'aaùProtIdKindùUML47ùdd' +2024-09-07 21:42:28,536 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:42:28,536 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimSyncIssueKind, hphSpec = 'aaùTimSyncIssueKindùUML49ùdd' +2024-09-07 21:42:28,536 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:42:28,536 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SecurityProfileKind, hphSpec = 'aaùSecurityProfileKindùUML50ùdd' +2024-09-07 21:42:28,537 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:42:28,537 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimSyncSrcKind, hphSpec = 'aaùTimSyncSrcKindùUML51ùdd' +2024-09-07 21:42:28,537 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:42:28,537 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LnkKind, hphSpec = 'aaùLnkKindùUML45ùdd' +2024-09-07 21:42:28,538 [main] INFO PackageDocImpl - collecting doc for package Environmental Agent ... +2024-09-07 21:42:28,538 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,538 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AppDatStType, hphSpec = 'aaùAppDatStTypeùUML68ùdd' +2024-09-07 21:42:28,538 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:42:28,538 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-07 21:42:28,539 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:42:28,539 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:42:28,540 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:42:28,540 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:42:28,540 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PSUPEntry, hphSpec = 'aaùPSUPEntryùUML80ùdd' +2024-09-07 21:42:28,540 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:42:28,541 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:42:28,541 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SecurityNotification, hphSpec = 'aaùSecurityNotificationùUML82ùdd' +2024-09-07 21:42:28,541 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Notification, hphSpec = 'aaùNotificationùUML81ùdd' +2024-09-07 21:42:28,541 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:42:28,542 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,542 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:42:28,543 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,543 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 21:42:28,543 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,543 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:42:28,543 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,543 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:42:28,544 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,544 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:42:28,544 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:42:28,545 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,545 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-07 21:42:28,545 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Timestamp, hphSpec = 'aaùTimestampùUML61ùdd' +2024-09-07 21:42:28,545 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Timestamp, hphSpec = 'aaùTimestampùUML61ùdd' +2024-09-07 21:42:28,546 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Timestamp, hphSpec = 'aaùTimestampùUML61ùdd' +2024-09-07 21:42:28,546 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Timestamp, hphSpec = 'aaùTimestampùUML61ùdd' +2024-09-07 21:42:28,546 [main] INFO PackageDocImpl - collecting doc for package IED Agent ... +2024-09-07 21:42:28,546 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,547 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,547 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:42:28,547 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:42:28,548 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 21:42:28,548 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CPUEntry, hphSpec = 'aaùCPUEntryùUML84ùdd' +2024-09-07 21:42:28,548 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-07 21:42:28,548 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,548 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,548 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:42:28,548 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EXTEntry, hphSpec = 'aaùEXTEntryùUML85ùdd' +2024-09-07 21:42:28,548 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 21:42:28,548 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-07 21:42:28,548 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:42:28,548 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-07 21:42:28,548 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:42:28,549 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:42:28,549 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,549 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,549 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:42:28,549 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-07 21:42:28,549 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,549 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,549 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,549 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:42:28,550 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-07 21:42:28,550 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-07 21:42:28,550 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PhyHealthType, hphSpec = 'aaùPhyHealthTypeùUML69ùdd' +2024-09-07 21:42:28,550 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,550 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 21:42:28,552 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:42:28,552 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,553 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SecurityNotification, hphSpec = 'aaùSecurityNotificationùUML88ùdd' +2024-09-07 21:42:28,553 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Notification, hphSpec = 'aaùNotificationùUML87ùdd' +2024-09-07 21:42:28,553 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = STOREEntry, hphSpec = 'aaùSTOREEntryùUML86ùdd' +2024-09-07 21:42:28,553 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,553 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,553 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,553 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,553 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:42:28,553 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,553 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:42:28,554 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 21:42:28,554 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:42:28,554 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:42:28,554 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-07 21:42:28,554 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,554 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,554 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 21:42:28,554 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,555 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ExtType, hphSpec = 'aaùExtTypeùUML70ùdd' +2024-09-07 21:42:28,555 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 21:42:28,555 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:42:28,555 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-07 21:42:28,555 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,555 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,555 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:42:28,555 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,555 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 21:42:28,556 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,556 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,556 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-07 21:42:28,556 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:42:28,556 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:42:28,557 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,557 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,557 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-07 21:42:28,557 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-07 21:42:28,557 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-07 21:42:28,557 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PhyHealthType, hphSpec = 'aaùPhyHealthTypeùUML69ùdd' +2024-09-07 21:42:28,557 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,558 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,558 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,558 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:42:28,558 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-07 21:42:28,558 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:42:28,558 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:42:28,558 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,559 [main] INFO PackageDocImpl - collecting doc for package Application Protocols Agents ... +2024-09-07 21:42:28,559 [main] INFO PackageDocImpl - collecting doc for package Common objects ... +2024-09-07 21:42:28,559 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,560 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 21:42:28,560 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:42:28,560 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,560 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,560 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,560 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,561 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,561 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,561 [main] INFO PackageDocImpl - collecting doc for package IEC62351-3 ed.2 Agent ... +2024-09-07 21:42:28,562 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,563 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,563 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,563 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,563 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,563 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,563 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,563 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,563 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,563 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,564 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,564 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,564 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,564 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,564 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,564 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,564 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,564 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,565 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,565 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,565 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,565 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,565 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,565 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,565 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,565 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,565 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,565 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,565 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,565 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,566 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,566 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,566 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,566 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,566 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,566 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,566 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,567 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,567 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,567 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,567 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,568 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 21:42:28,568 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:42:28,569 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 21:42:28,569 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 21:42:28,569 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 21:42:28,569 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 21:42:28,569 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 21:42:28,569 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,569 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:42:28,569 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,569 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,569 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,569 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,569 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,569 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,569 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,569 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,569 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,570 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,570 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,570 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,570 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,570 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,570 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,570 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,570 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,570 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,570 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,570 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,570 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,570 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,570 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,570 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,570 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,570 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,570 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,570 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,570 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,573 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,573 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,573 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,573 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,573 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,573 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,573 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,573 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,574 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,574 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,574 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,574 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,574 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,574 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,574 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,574 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,574 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,574 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,574 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,574 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,574 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,574 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,574 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,574 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,574 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,574 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,575 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,575 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,575 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:42:28,575 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-07 21:42:28,575 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ServerTLS, hphSpec = 'aaùServerTLSùUML93ùdd' +2024-09-07 21:42:28,575 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ClientTLS, hphSpec = 'aaùClientTLSùUML92ùdd' +2024-09-07 21:42:28,575 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part3ed2SecurityNotification, hphSpec = 'aaùIEC62351part3ed2SecurityNotificationùUML106ùdd' +2024-09-07 21:42:28,575 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,575 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,575 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,575 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,575 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,575 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,575 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,575 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,578 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,578 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,578 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,578 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,578 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,578 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,578 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-07 21:42:28,578 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-07 21:42:28,578 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,578 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,578 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,578 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,578 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,579 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 21:42:28,579 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-07 21:42:28,579 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:42:28,579 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-07 21:42:28,579 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 21:42:28,579 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-07 21:42:28,579 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 21:42:28,579 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-07 21:42:28,579 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 21:42:28,579 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-07 21:42:28,579 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 21:42:28,579 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-07 21:42:28,579 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 21:42:28,579 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,579 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:42:28,579 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,579 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,579 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,579 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,579 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,580 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,581 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,582 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,583 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,583 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,583 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,583 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,583 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,583 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,583 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,583 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,583 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,583 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,583 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,583 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,583 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,583 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,583 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,583 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,583 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,583 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,583 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,584 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-07 21:42:28,584 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,584 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,584 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,584 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,584 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,584 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 21:42:28,585 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-07 21:42:28,585 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:42:28,585 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-07 21:42:28,585 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 21:42:28,585 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-07 21:42:28,585 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 21:42:28,585 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-07 21:42:28,585 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 21:42:28,585 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-07 21:42:28,585 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 21:42:28,585 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-07 21:42:28,585 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 21:42:28,585 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,585 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:42:28,585 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,585 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,585 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,585 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,585 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,585 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,585 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,586 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,586 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,586 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,586 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,586 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,586 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,586 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,586 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,586 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,586 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,586 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,586 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,586 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,586 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,586 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,586 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,586 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,586 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,586 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,586 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,586 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,586 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,586 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,586 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,587 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,587 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,587 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,587 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,587 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,587 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,587 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,587 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,587 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,587 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,587 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,587 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,587 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,587 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,587 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,587 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,587 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,587 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,587 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,587 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,587 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,587 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,587 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,588 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,589 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,589 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,590 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:42:28,591 [main] INFO PackageDocImpl - collecting doc for package IEEE 1815 and IEC 60870-5 Agent ... +2024-09-07 21:42:28,591 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,591 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,591 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,591 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,591 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,591 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,591 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,591 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,592 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,592 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,592 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,592 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,592 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,592 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,592 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,592 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,592 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,592 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,592 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:42:28,593 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,593 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,593 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,593 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,593 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,593 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,593 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,593 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,593 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,593 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,594 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,594 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,597 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,597 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,597 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,597 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,597 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,597 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 21:42:28,597 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:42:28,597 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 21:42:28,597 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 21:42:28,597 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ProtIdType, hphSpec = 'aaùProtIdTypeùUML74ùdd' +2024-09-07 21:42:28,597 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,598 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,598 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 21:42:28,598 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 21:42:28,598 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,598 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LnkType, hphSpec = 'aaùLnkTypeùUML78ùdd' +2024-09-07 21:42:28,598 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,598 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,598 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,598 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,598 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,598 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,598 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,598 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,598 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,598 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,598 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,598 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,598 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,598 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,598 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,598 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,598 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,598 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,598 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,598 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,598 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,598 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,598 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,598 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,599 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,599 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,599 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,599 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,599 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,599 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,599 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,599 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,599 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,599 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,599 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:42:28,599 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,599 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,599 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,599 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,599 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,599 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,599 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,599 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,599 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,599 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,599 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,599 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,599 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,599 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,599 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,599 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,599 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,599 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,599 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,599 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,599 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,600 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,600 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,600 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,600 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,600 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 21:42:28,600 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,600 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:42:28,600 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,600 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,600 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,600 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,600 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,600 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,600 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,600 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,600 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,600 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,600 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,600 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,600 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,600 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,601 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,601 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:42:28,601 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-07 21:42:28,601 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MasterAssociation, hphSpec = 'aaùMasterAssociationùUML96ùdd' +2024-09-07 21:42:28,601 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OutstationAssociation, hphSpec = 'aaùOutstationAssociationùUML97ùdd' +2024-09-07 21:42:28,601 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPSecurityNotification, hphSpec = 'aaù60870andDNPSecurityNotificationùUML108ùdd' +2024-09-07 21:42:28,601 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPNotification, hphSpec = 'aaù60870andDNPNotificationùUML109ùdd' +2024-09-07 21:42:28,601 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,601 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,601 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,601 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,601 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,601 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,601 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,601 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,601 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,601 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,601 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,601 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,601 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,601 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,601 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,602 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,602 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,602 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,602 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,602 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,602 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,602 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,602 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,602 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,602 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,602 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,602 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,602 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,602 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,602 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,602 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,602 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:42:28,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,604 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,604 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,604 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,604 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,604 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-07 21:42:28,604 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,604 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,604 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,604 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,605 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,605 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,606 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,606 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,606 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,606 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,606 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:42:28,606 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,606 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,606 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,606 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,606 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,606 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 21:42:28,607 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:42:28,607 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:42:28,607 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:42:28,607 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 21:42:28,607 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:42:28,607 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 21:42:28,607 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:42:28,607 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ProtIdType, hphSpec = 'aaùProtIdTypeùUML74ùdd' +2024-09-07 21:42:28,607 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:42:28,607 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,607 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:42:28,607 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,607 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:42:28,607 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 21:42:28,607 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:42:28,607 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 21:42:28,607 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:42:28,607 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,607 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:42:28,607 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LnkType, hphSpec = 'aaùLnkTypeùUML78ùdd' +2024-09-07 21:42:28,607 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:42:28,607 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,607 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,607 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,607 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,607 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,607 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,607 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,607 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,607 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,608 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,608 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,608 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,608 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,608 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,608 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,608 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,608 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,608 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,608 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,608 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,608 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,608 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,608 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,609 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,609 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,609 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,609 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,609 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,609 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,609 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,609 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,609 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,609 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,609 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,609 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:42:28,609 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,609 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,609 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,609 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,609 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,609 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,609 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,609 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,609 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,609 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,609 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,609 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,609 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,609 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,609 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,609 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,610 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,610 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,610 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,610 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,610 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,610 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,610 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,610 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,610 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,610 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 21:42:28,610 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,610 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:42:28,610 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,610 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,610 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,610 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,610 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,610 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,610 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,610 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,610 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,610 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,610 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,610 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,610 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,611 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:42:28,611 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,611 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,611 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,611 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,611 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,611 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 21:42:28,611 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:42:28,611 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:42:28,611 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:42:28,611 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 21:42:28,611 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:42:28,611 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 21:42:28,611 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:42:28,611 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ProtIdType, hphSpec = 'aaùProtIdTypeùUML74ùdd' +2024-09-07 21:42:28,611 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:42:28,611 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,611 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:42:28,611 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,611 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:42:28,611 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 21:42:28,611 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:42:28,611 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 21:42:28,611 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:42:28,611 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,611 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:42:28,611 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LnkType, hphSpec = 'aaùLnkTypeùUML78ùdd' +2024-09-07 21:42:28,612 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:42:28,612 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,612 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,612 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,612 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,612 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,612 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,612 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,612 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,612 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,612 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,612 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,612 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,612 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,612 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,612 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,612 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,612 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,612 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,612 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,612 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,612 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,612 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,612 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,612 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,612 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,612 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,612 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,612 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,612 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,612 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,613 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,613 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,613 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,613 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,613 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:42:28,613 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,613 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,613 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,613 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,613 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,613 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,613 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,613 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,613 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,613 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,613 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,613 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,613 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,613 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,613 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,613 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,613 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,613 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,613 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,613 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,613 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,613 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,613 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,613 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,613 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:42:28,613 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 21:42:28,613 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,613 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:42:28,613 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,613 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,613 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,613 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,614 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,614 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,614 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,614 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,614 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,614 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,614 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,614 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,614 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,614 [main] INFO PackageDocImpl - collecting doc for package IEEE 1815 and IEC 60870-5 Agent - ed2 ... +2024-09-07 21:42:28,614 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,614 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,614 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,615 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,615 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,615 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,615 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,615 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,615 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,615 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,615 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,616 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,616 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,616 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,616 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,616 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,616 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,616 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,616 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,616 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,616 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,616 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,616 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,616 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,617 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,617 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,617 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,617 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,617 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,617 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,617 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,617 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,617 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,617 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,617 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,617 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,617 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,617 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,617 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,617 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,617 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,617 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,617 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,617 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,617 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,617 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,617 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,618 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,618 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,618 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,618 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,618 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,618 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,618 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,618 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,618 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,618 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,618 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,618 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,619 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,619 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,619 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,619 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,619 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,619 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,619 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,619 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,619 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,619 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,619 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,619 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,619 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,619 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,619 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,620 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,620 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,620 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,620 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,620 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,621 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,621 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,621 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,621 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,621 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,621 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,621 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,621 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,621 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,621 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,621 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,621 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,622 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,622 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,623 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,623 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,623 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,623 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,623 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,623 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,623 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,623 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,623 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,624 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,624 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,624 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,624 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,624 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,624 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,624 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 21:42:28,624 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:42:28,624 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 21:42:28,624 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 21:42:28,624 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ProtIdType, hphSpec = 'aaùProtIdTypeùUML74ùdd' +2024-09-07 21:42:28,624 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,624 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,624 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 21:42:28,624 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 21:42:28,624 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,624 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LnkType, hphSpec = 'aaùLnkTypeùUML78ùdd' +2024-09-07 21:42:28,624 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 21:42:28,624 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,624 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:42:28,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,628 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,628 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,628 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,628 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,628 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:42:28,628 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-07 21:42:28,628 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MasterAssociation, hphSpec = 'aaùMasterAssociationùUML101ùdd' +2024-09-07 21:42:28,628 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OutstationAssociation, hphSpec = 'aaùOutstationAssociationùUML102ùdd' +2024-09-07 21:42:28,628 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPSecurityNotificationEd2, hphSpec = 'aaù60870andDNPSecurityNotificationEd2ùUML111ùdd' +2024-09-07 21:42:28,628 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPNotificationEd2, hphSpec = 'aaù60870andDNPNotificationEd2ùUML112ùdd' +2024-09-07 21:42:28,628 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,628 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,628 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,628 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,628 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,628 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,629 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,629 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,630 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,632 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,632 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,632 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,632 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,632 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,632 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,632 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,632 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,632 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,632 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,632 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,632 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,632 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,632 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,632 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,632 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,632 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,632 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,632 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,632 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,632 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,632 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,632 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,632 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,634 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,634 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-07 21:42:28,634 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,634 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-07 21:42:28,634 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:42:28,634 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,634 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,634 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,634 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,634 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,634 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,634 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 21:42:28,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:42:28,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:42:28,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:42:28,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 21:42:28,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:42:28,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 21:42:28,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:42:28,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ProtIdType, hphSpec = 'aaùProtIdTypeùUML74ùdd' +2024-09-07 21:42:28,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:42:28,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:42:28,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:42:28,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 21:42:28,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:42:28,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 21:42:28,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:42:28,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:42:28,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LnkType, hphSpec = 'aaùLnkTypeùUML78ùdd' +2024-09-07 21:42:28,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:42:28,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 21:42:28,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:42:28,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,640 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,640 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,640 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,640 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,640 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,640 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,640 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,640 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,640 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,640 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,640 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,640 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,640 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,640 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,640 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,640 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,640 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,641 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,641 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,641 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,641 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,641 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,641 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,641 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,642 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:42:28,642 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,642 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,642 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,642 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,642 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,642 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,642 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,642 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 21:42:28,642 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:42:28,643 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:42:28,643 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:42:28,643 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 21:42:28,643 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:42:28,643 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 21:42:28,643 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:42:28,643 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ProtIdType, hphSpec = 'aaùProtIdTypeùUML74ùdd' +2024-09-07 21:42:28,643 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:42:28,643 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,643 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:42:28,643 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,643 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:42:28,643 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 21:42:28,643 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:42:28,643 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 21:42:28,643 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:42:28,643 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,643 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:42:28,643 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LnkType, hphSpec = 'aaùLnkTypeùUML78ùdd' +2024-09-07 21:42:28,643 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:42:28,643 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 21:42:28,643 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,643 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:42:28,643 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,643 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,643 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,643 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,643 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,643 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:42:28,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,646 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,646 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,646 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,646 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,646 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,646 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,646 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,646 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,646 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,646 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,646 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,646 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,646 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,646 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,646 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,646 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,646 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,646 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,646 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,646 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,646 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,646 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,646 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,646 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:42:28,647 [main] INFO PackageDocImpl - collecting doc for package IEC61850 Agent ... +2024-09-07 21:42:28,647 [main] INFO PackageDocImpl - collecting doc for package ACSI ... +2024-09-07 21:42:28,647 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,647 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:42:28,647 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:42:28,647 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:42:28,647 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,647 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:42:28,647 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:42:28,648 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:42:28,648 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:42:28,648 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-07 21:42:28,648 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,648 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,648 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,648 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:42:28,648 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:42:28,648 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:42:28,648 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:42:28,648 [main] INFO PackageDocImpl - collecting doc for package MMS ... +2024-09-07 21:42:28,648 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,650 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,650 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,650 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,650 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,650 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,650 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,650 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,650 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,650 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,650 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,650 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,650 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,650 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,651 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:42:28,651 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,652 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,652 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,652 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:42:28,652 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,652 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,652 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,652 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-07 21:42:28,652 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSAssociation, hphSpec = 'aaùMMSAssociationùUML104ùdd' +2024-09-07 21:42:28,652 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,652 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,653 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,653 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSSecurityNotification, hphSpec = 'aaùMMSSecurityNotificationùUML115ùdd' +2024-09-07 21:42:28,653 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:42:28,653 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,653 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSNotification, hphSpec = 'aaùMMSNotificationùUML116ùdd' +2024-09-07 21:42:28,653 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,653 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,653 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,654 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,654 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:42:28,654 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,654 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:42:28,654 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,655 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:42:28,655 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,655 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:42:28,655 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,655 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:42:28,656 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,656 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:42:28,656 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,656 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:42:28,656 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,656 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:42:28,656 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,656 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:42:28,656 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,656 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:42:28,656 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,657 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:42:28,657 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,657 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:42:28,657 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,657 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:42:28,657 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:42:28,657 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,658 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,658 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,658 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:42:28,658 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 21:42:28,658 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 21:42:28,658 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:42:28,658 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,658 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 21:42:28,659 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 21:42:28,659 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 21:42:28,659 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Selector, hphSpec = 'aaùSelectorùUML62ùdd' +2024-09-07 21:42:28,659 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Selector, hphSpec = 'aaùSelectorùUML62ùdd' +2024-09-07 21:42:28,659 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Selector, hphSpec = 'aaùSelectorùUML62ùdd' +2024-09-07 21:42:28,659 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:42:28,659 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-07 21:42:28,659 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SecurityProfileType, hphSpec = 'aaùSecurityProfileTypeùUML76ùdd' +2024-09-07 21:42:28,660 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,660 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:42:28,660 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,660 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:42:28,660 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,660 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:42:28,660 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,660 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:42:28,660 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,660 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:42:28,660 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,660 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:42:28,660 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,660 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:42:28,660 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,660 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:42:28,660 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,660 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:42:28,660 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,661 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:42:28,661 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,661 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:42:28,661 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,661 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:42:28,661 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,661 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:42:28,661 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 21:42:28,661 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,661 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:42:28,661 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,661 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,661 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,661 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,661 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,662 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,662 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,662 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,662 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,662 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,662 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,662 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,662 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:42:28,663 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,663 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,663 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-07 21:42:28,663 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,663 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,664 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,664 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,664 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,664 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,664 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,665 [main] INFO PackageDocImpl - collecting doc for package SV and GSE common objects ... +2024-09-07 21:42:28,665 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,665 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,666 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,666 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,667 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,667 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,667 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,668 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:42:28,668 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,668 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,668 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,668 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,668 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,668 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,668 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,668 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,668 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,669 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,669 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,669 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,669 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:42:28,669 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,669 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,670 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,670 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,670 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 21:42:28,670 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,670 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,670 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,670 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,670 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,670 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,671 [main] INFO PackageDocImpl - collecting doc for package SV ... +2024-09-07 21:42:28,672 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,673 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,673 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:42:28,673 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,673 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,673 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SVPublisherAssociationIP, hphSpec = 'aaùSVPublisherAssociationIPùUML119ùdd' +2024-09-07 21:42:28,673 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SVPublisherAssociationL2, hphSpec = 'aaùSVPublisherAssociationL2ùUML120ùdd' +2024-09-07 21:42:28,673 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SVNotification, hphSpec = 'aaùSVNotificationùUML130ùdd' +2024-09-07 21:42:28,673 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SVSubcriberAssociationIP, hphSpec = 'aaùSVSubcriberAssociationIPùUML124ùdd' +2024-09-07 21:42:28,673 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SVSubcriberAssociationL2, hphSpec = 'aaùSVSubcriberAssociationL2ùUML125ùdd' +2024-09-07 21:42:28,673 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,673 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,673 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,673 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,673 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,674 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,674 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:42:28,674 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,674 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,674 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 21:42:28,675 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 21:42:28,677 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,677 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:42:28,677 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:42:28,677 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:42:28,677 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,677 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:42:28,677 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,677 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:42:28,677 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,677 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:42:28,677 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,677 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,677 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,677 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,677 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,677 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,677 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:42:28,677 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,677 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,677 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MacAddress, hphSpec = 'aaùMacAddressùUML63ùdd' +2024-09-07 21:42:28,678 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,678 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:42:28,678 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:42:28,678 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:42:28,678 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,678 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:42:28,678 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,678 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:42:28,678 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,678 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:42:28,678 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,678 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,678 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,678 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,678 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,678 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,678 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:42:28,678 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,678 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,678 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 21:42:28,678 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 21:42:28,679 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,679 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:42:28,679 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:42:28,679 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:42:28,679 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,679 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:42:28,679 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,679 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:42:28,679 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,679 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:42:28,679 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,679 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:42:28,679 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 21:42:28,679 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:42:28,679 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,679 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,679 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,679 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,679 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,679 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,680 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:42:28,680 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,680 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,680 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MacAddress, hphSpec = 'aaùMacAddressùUML63ùdd' +2024-09-07 21:42:28,680 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,680 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:42:28,680 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:42:28,680 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:42:28,680 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,680 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:42:28,680 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,680 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:42:28,680 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,680 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:42:28,680 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,680 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:42:28,680 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 21:42:28,681 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:42:28,681 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,681 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,681 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,681 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,681 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,681 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,681 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,681 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,681 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,681 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,681 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,681 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,681 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,681 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,681 [main] INFO PackageDocImpl - collecting doc for package GSE ... +2024-09-07 21:42:28,682 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:42:28,682 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,682 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,682 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 21:42:28,682 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 21:42:28,682 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:42:28,682 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:42:28,682 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,682 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,682 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:42:28,682 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,682 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 21:42:28,682 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,683 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 21:42:28,683 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:42:28,683 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:42:28,683 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:42:28,683 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:42:28,683 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Timestamp, hphSpec = 'aaùTimestampùUML61ùdd' +2024-09-07 21:42:28,683 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,683 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:42:28,683 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:42:28,683 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:42:28,683 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,683 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:42:28,683 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,684 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:42:28,684 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,684 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:42:28,684 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,684 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:42:28,684 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 21:42:28,684 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:42:28,684 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,684 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,684 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,684 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,684 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,684 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,684 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,684 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,684 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:42:28,684 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,685 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,685 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,685 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEPublisherAssociationIP, hphSpec = 'aaùGSEPublisherAssociationIPùUML121ùdd' +2024-09-07 21:42:28,685 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEPublisherAssociationL2, hphSpec = 'aaùGSEPublisherAssociationL2ùUML122ùdd' +2024-09-07 21:42:28,685 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSENotification, hphSpec = 'aaùGSENotificationùUML132ùdd' +2024-09-07 21:42:28,685 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubcriberAssociationIP, hphSpec = 'aaùGSESubcriberAssociationIPùUML127ùdd' +2024-09-07 21:42:28,685 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubcriberAssociationL2, hphSpec = 'aaùGSESubcriberAssociationL2ùUML128ùdd' +2024-09-07 21:42:28,685 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,685 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,685 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,685 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,685 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,685 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,686 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:42:28,686 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,686 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,686 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 21:42:28,686 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 21:42:28,686 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,686 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:42:28,686 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:42:28,686 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:42:28,686 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,686 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:42:28,686 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,686 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:42:28,686 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,686 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:42:28,686 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,686 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,686 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,686 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,686 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,686 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:42:28,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MacAddress, hphSpec = 'aaùMacAddressùUML63ùdd' +2024-09-07 21:42:28,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MacAddress, hphSpec = 'aaùMacAddressùUML63ùdd' +2024-09-07 21:42:28,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:42:28,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:42:28,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:42:28,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:42:28,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:42:28,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:42:28,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:42:28,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:42:28,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 21:42:28,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 21:42:28,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 21:42:28,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:42:28,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 21:42:28,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:42:28,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:42:28,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:42:28,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:42:28,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:42:28,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:42:28,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:42:28,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:42:28,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:42:28,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:42:28,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 21:42:28,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:42:28,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:42:28,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 21:42:28,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:42:28,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:42:28,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:42:28,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:42:28,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:42:28,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:42:28,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:42:28,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:42:28,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:42:28,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Timestamp, hphSpec = 'aaùTimestampùUML61ùdd' +2024-09-07 21:42:28,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:42:28,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:42:28,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:42:28,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:42:28,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:42:28,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:42:28,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:42:28,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:42:28,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 21:42:28,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:42:28,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:42:28,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:42:28,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MacAddress, hphSpec = 'aaùMacAddressùUML63ùdd' +2024-09-07 21:42:28,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MacAddress, hphSpec = 'aaùMacAddressùUML63ùdd' +2024-09-07 21:42:28,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 21:42:28,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:42:28,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 21:42:28,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:42:28,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:42:28,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:42:28,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:42:28,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:42:28,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:42:28,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:42:28,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:42:28,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:42:28,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:42:28,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 21:42:28,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:42:28,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:42:28,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 21:42:28,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:42:28,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:42:28,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:42:28,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:42:28,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:42:28,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:42:28,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:42:28,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:42:28,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:42:28,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Timestamp, hphSpec = 'aaùTimestampùUML61ùdd' +2024-09-07 21:42:28,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:42:28,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:42:28,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:42:28,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:42:28,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:42:28,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:42:28,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:42:28,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:42:28,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:42:28,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 21:42:28,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:42:28,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,693 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,693 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,693 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,693 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,693 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,693 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,693 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,693 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:42:28,693 [main] INFO PackageDocImpl - collecting doc for package Clocks Agent ... +2024-09-07 21:42:28,694 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,694 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Timestamp, hphSpec = 'aaùTimestampùUML61ùdd' +2024-09-07 21:42:28,694 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Timestamp, hphSpec = 'aaùTimestampùUML61ùdd' +2024-09-07 21:42:28,694 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:42:28,694 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ClockEntry, hphSpec = 'aaùClockEntryùUML134ùdd' +2024-09-07 21:42:28,694 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SecurityNotification, hphSpec = 'aaùSecurityNotificationùUML135ùdd' +2024-09-07 21:42:28,694 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,694 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:42:28,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 21:42:28,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimSyncIssueType, hphSpec = 'aaùTimSyncIssueTypeùUML75ùdd' +2024-09-07 21:42:28,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 21:42:28,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimSyncSrcType, hphSpec = 'aaùTimSyncSrcTypeùUML77ùdd' +2024-09-07 21:42:28,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 21:42:28,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-07 21:42:28,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 21:42:28,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 21:42:28,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Timestamp, hphSpec = 'aaùTimestampùUML61ùdd' +2024-09-07 21:42:28,696 [main] INFO PackageDocImpl - collecting doc for package Interfaces Agent ... +2024-09-07 21:42:28,696 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,696 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 21:42:28,696 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,696 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntType, hphSpec = 'aaùIntTypeùUML71ùdd' +2024-09-07 21:42:28,696 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:42:28,696 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:42:28,696 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:42:28,697 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:42:28,697 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,697 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:42:28,697 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:42:28,697 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:42:28,697 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:42:28,697 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:42:28,698 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:42:28,698 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:42:28,698 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:42:28,698 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:42:28,698 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:42:28,698 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:42:28,698 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:42:28,698 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:42:28,698 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:42:28,699 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:42:28,699 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SEREntry, hphSpec = 'aaùSEREntryùUML139ùdd' +2024-09-07 21:42:28,699 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ETHEntry, hphSpec = 'aaùETHEntryùUML137ùdd' +2024-09-07 21:42:28,700 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = USBEntry, hphSpec = 'aaùUSBEntryùUML141ùdd' +2024-09-07 21:42:28,700 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = KEYEntry, hphSpec = 'aaùKEYEntryùUML138ùdd' +2024-09-07 21:42:28,700 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ALGEntry, hphSpec = 'aaùALGEntryùUML140ùdd' +2024-09-07 21:42:28,700 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Notification, hphSpec = 'aaùNotificationùUML143ùdd' +2024-09-07 21:42:28,701 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:42:28,701 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,701 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 21:42:28,701 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:42:28,701 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,701 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:42:28,701 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntType, hphSpec = 'aaùIntTypeùUML71ùdd' +2024-09-07 21:42:28,701 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:42:28,701 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:42:28,701 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:42:28,701 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:42:28,701 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:42:28,701 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:42:28,701 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:42:28,701 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:42:28,701 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:42:28,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:42:28,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:42:28,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 21:42:28,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:42:28,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:42:28,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntType, hphSpec = 'aaùIntTypeùUML71ùdd' +2024-09-07 21:42:28,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:42:28,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:42:28,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:42:28,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:42:28,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:42:28,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:42:28,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:42:28,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:42:28,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:42:28,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:42:28,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,703 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:42:28,703 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 21:42:28,703 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:42:28,703 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,703 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:42:28,703 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntType, hphSpec = 'aaùIntTypeùUML71ùdd' +2024-09-07 21:42:28,703 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:42:28,703 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:42:28,703 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:42:28,703 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:42:28,703 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:42:28,703 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:42:28,703 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:42:28,703 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:42:28,703 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:42:28,703 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:42:28,704 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,704 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 21:42:28,704 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:42:28,704 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,704 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:42:28,704 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntType, hphSpec = 'aaùIntTypeùUML71ùdd' +2024-09-07 21:42:28,704 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:42:28,704 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:42:28,704 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:42:28,704 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:42:28,704 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:42:28,704 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:42:28,704 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:42:28,704 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:42:28,704 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:42:28,705 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:42:28,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 21:42:28,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:42:28,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:42:28,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:42:28,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntType, hphSpec = 'aaùIntTypeùUML71ùdd' +2024-09-07 21:42:28,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:42:28,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:42:28,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:42:28,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:42:28,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:42:28,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:42:28,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:42:28,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:42:28,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:42:28,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:42:28,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:42:28,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:42:28,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:42:28,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:42:28,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:42:28,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:42:28,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:42:28,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:42:28,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:42:28,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:42:28,708 [main] INFO Util - time=[0:00:00.293] collected documentation content for 'model packages=[iso]; retained=[iso, standard, iec62351, part7, Profiles, nsmAgent, Overview, BaseTypes, Abstract Types, EnumeratedTypes, Environmental Agent, IED Agent, Application Protocols Agents, Common objects, IEC62351-3 ed.2 Agent, IEEE 1815 and IEC 60870-5 Agent, IEEE 1815 and IEC 60870-5 Agent - ed2, IEC61850 Agent, ACSI, MMS, SV and GSE common objects, SV, GSE, Clocks Agent, Interfaces Agent]; skipped=[]'. +2024-09-07 21:42:28,708 [main] INFO Util - +2024-09-07 21:42:28,708 [main] INFO Util - +2024-09-07 21:42:28,708 [main] INFO Util - ------------------------------------------------ +2024-09-07 21:42:28,708 [main] INFO Util - writing documentation ... +2024-09-07 21:42:28,712 [main] WARN DocCollectorImpl - Multiple classes with Qname 'startUmlClass.nsmAgent.Attribute.endUml' - retaining first one in case you use its placeholder. +2024-09-07 21:42:28,712 [main] WARN DocCollectorImpl - Multiple classes with Qname 'startUmlClass.nsmAgent.Class.endUml' - retaining first one in case you use its placeholder. +2024-09-07 21:42:28,763 [main] INFO AbstractWriter - creating DocWordWriter +2024-09-07 21:42:28,766 [main] TRACE Style - === before para.addPreferredStyles([PARAGRAPH, Normal, Standard, Normal]): +Style.para=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:42:28,767 [main] TRACE Style - === after +Style.para=null; cfg-preferred names=[PARAGRAPH, Normal, Standard]; doc-usable styles={}; all recognised names=[PARAGRAPH, Standard, Normal] + +2024-09-07 21:42:28,767 [main] TRACE Style - === before fig.addPreferredStyles([FIGURE, Picture, Normal, Standard, Normal]): +Style.fig=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:42:28,767 [main] TRACE Style - === after +Style.fig=null; cfg-preferred names=[FIGURE, Picture, Normal, Standard]; doc-usable styles={}; all recognised names=[Picture, Standard, Normal, FIGURE] + +2024-09-07 21:42:28,767 [main] TRACE Style - === before tabhead.addPreferredStyles([TABLE-col-heading, Normal, Standard, Normal]): +Style.tabhead=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:42:28,767 [main] TRACE Style - === after +Style.tabhead=null; cfg-preferred names=[TABLE-col-heading, Normal, Standard]; doc-usable styles={}; all recognised names=[TABLE-col-heading, Standard, Normal] + +2024-09-07 21:42:28,767 [main] TRACE Style - === before tabcell.addPreferredStyles([TABLE-cell, Normal, Standard, Normal]): +Style.tabcell=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:42:28,767 [main] TRACE Style - === after +Style.tabcell=null; cfg-preferred names=[TABLE-cell, Normal, Standard]; doc-usable styles={}; all recognised names=[TABLE-cell, Standard, Normal] + +2024-09-07 21:42:28,767 [main] TRACE Style - === before figcapt.addPreferredStyles([FIGURE-title, Caption, Beschriftung, Légende]): +Style.figcapt=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:42:28,767 [main] TRACE Style - === after +Style.figcapt=null; cfg-preferred names=[FIGURE-title, Caption, Beschriftung, Légende]; doc-usable styles={}; all recognised names=[FIGURE-title, Beschriftung, Légende, Caption] + +2024-09-07 21:42:28,767 [main] TRACE Style - === before tabcapt.addPreferredStyles([TABLE-title, Caption, Beschriftung, Légende]): +Style.tabcapt=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:42:28,767 [main] TRACE Style - === after +Style.tabcapt=null; cfg-preferred names=[TABLE-title, Caption, Beschriftung, Légende]; doc-usable styles={}; all recognised names=[TABLE-title, Beschriftung, Légende, Caption] + +2024-09-07 21:42:28,767 [main] TRACE Style - === before toc1.addPreferredStyles([TOC]): +Style.toc1=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:42:28,767 [main] TRACE Style - === after +Style.toc1=null; cfg-preferred names=[TOC 1]; doc-usable styles={}; all recognised names=[TOC 1] + +2024-09-07 21:42:28,767 [main] TRACE Style - === before toc2.addPreferredStyles([TOC]): +Style.toc2=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:42:28,767 [main] TRACE Style - === after +Style.toc2=null; cfg-preferred names=[TOC 2]; doc-usable styles={}; all recognised names=[TOC 2] + +2024-09-07 21:42:28,767 [main] TRACE Style - === before toc3.addPreferredStyles([TOC]): +Style.toc3=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:42:28,767 [main] TRACE Style - === after +Style.toc3=null; cfg-preferred names=[TOC 3]; doc-usable styles={}; all recognised names=[TOC 3] + +2024-09-07 21:42:28,767 [main] TRACE Style - === before toc4.addPreferredStyles([TOC]): +Style.toc4=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:42:28,767 [main] TRACE Style - === after +Style.toc4=null; cfg-preferred names=[TOC 4]; doc-usable styles={}; all recognised names=[TOC 4] + +2024-09-07 21:42:28,767 [main] TRACE Style - === before toc5.addPreferredStyles([TOC]): +Style.toc5=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:42:28,767 [main] TRACE Style - === after +Style.toc5=null; cfg-preferred names=[TOC 5]; doc-usable styles={}; all recognised names=[TOC 5] + +2024-09-07 21:42:28,767 [main] TRACE Style - === before toc6.addPreferredStyles([TOC]): +Style.toc6=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:42:28,767 [main] TRACE Style - === after +Style.toc6=null; cfg-preferred names=[TOC 6]; doc-usable styles={}; all recognised names=[TOC 6] + +2024-09-07 21:42:28,767 [main] TRACE Style - === before toc7.addPreferredStyles([TOC]): +Style.toc7=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:42:28,767 [main] TRACE Style - === after +Style.toc7=null; cfg-preferred names=[TOC 7]; doc-usable styles={}; all recognised names=[TOC 7] + +2024-09-07 21:42:28,767 [main] TRACE Style - === before toc8.addPreferredStyles([TOC]): +Style.toc8=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:42:28,767 [main] TRACE Style - === after +Style.toc8=null; cfg-preferred names=[TOC 8]; doc-usable styles={}; all recognised names=[TOC 8] + +2024-09-07 21:42:28,767 [main] TRACE Style - === before toc9.addPreferredStyles([TOC]): +Style.toc9=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:42:28,767 [main] TRACE Style - === after +Style.toc9=null; cfg-preferred names=[TOC 9]; doc-usable styles={}; all recognised names=[TOC 9] + +2024-09-07 21:42:28,767 [main] TRACE Style - === before h1.addPreferredStyles([Heading]): +Style.h1=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:42:28,768 [main] TRACE Style - === after +Style.h1=null; cfg-preferred names=[Heading 1]; doc-usable styles={}; all recognised names=[Heading 1] + +2024-09-07 21:42:28,768 [main] TRACE Style - === before h2.addPreferredStyles([Heading]): +Style.h2=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:42:28,768 [main] TRACE Style - === after +Style.h2=null; cfg-preferred names=[Heading 2]; doc-usable styles={}; all recognised names=[Heading 2] + +2024-09-07 21:42:28,768 [main] TRACE Style - === before h3.addPreferredStyles([Heading]): +Style.h3=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:42:28,768 [main] TRACE Style - === after +Style.h3=null; cfg-preferred names=[Heading 3]; doc-usable styles={}; all recognised names=[Heading 3] + +2024-09-07 21:42:28,768 [main] TRACE Style - === before h4.addPreferredStyles([Heading]): +Style.h4=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:42:28,768 [main] TRACE Style - === after +Style.h4=null; cfg-preferred names=[Heading 4]; doc-usable styles={}; all recognised names=[Heading 4] + +2024-09-07 21:42:28,768 [main] TRACE Style - === before h5.addPreferredStyles([Heading]): +Style.h5=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:42:28,768 [main] TRACE Style - === after +Style.h5=null; cfg-preferred names=[Heading 5]; doc-usable styles={}; all recognised names=[Heading 5] + +2024-09-07 21:42:28,768 [main] TRACE Style - === before h6.addPreferredStyles([Heading]): +Style.h6=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:42:28,768 [main] TRACE Style - === after +Style.h6=null; cfg-preferred names=[Heading 6]; doc-usable styles={}; all recognised names=[Heading 6] + +2024-09-07 21:42:28,768 [main] TRACE Style - === before h7.addPreferredStyles([Heading]): +Style.h7=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:42:28,768 [main] TRACE Style - === after +Style.h7=null; cfg-preferred names=[Heading 7]; doc-usable styles={}; all recognised names=[Heading 7] + +2024-09-07 21:42:28,768 [main] TRACE Style - === before h8.addPreferredStyles([Heading]): +Style.h8=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:42:28,768 [main] TRACE Style - === after +Style.h8=null; cfg-preferred names=[Heading 8]; doc-usable styles={}; all recognised names=[Heading 8] + +2024-09-07 21:42:28,768 [main] TRACE Style - === before h9.addPreferredStyles([Heading]): +Style.h9=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:42:28,768 [main] TRACE Style - === after +Style.h9=null; cfg-preferred names=[Heading 9]; doc-usable styles={}; all recognised names=[Heading 9] + +2024-09-07 21:42:29,060 [main] INFO AbstractWordWriter - Created DocWordWriter. +2024-09-07 21:42:29,060 [main] INFO JCleanCim - from C:\Users\gigi\git\jCleanCim\input\57-62351-7-Ed2-FDIS-template_20240901.docx +2024-09-07 21:42:29,060 [main] INFO JCleanCim - into C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx +2024-09-07 21:42:29,060 [main] INFO DocWordWriter - creating MSWord application +2024-09-07 21:42:32,950 [main] INFO DocWordWriter - opening MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 21:42:33,981 [main] INFO AbstractWordWriter - Microsoft Word version: 15.0 + +2024-09-07 21:42:34,071 [main] DEBUG DocWordWriter - original(_initialOptions): OptimOptions [viewId=3, normView=false, paginate=true, updFld=true, updScr=true, fastSave=false, spelling=false, grammar=false] +2024-09-07 21:42:34,080 [main] DEBUG DocWordWriter - setting existing custom property: uml = IEC62351-7-Ed2-FDIS-20240901.eap +2024-09-07 21:42:34,090 [main] DEBUG DocWordWriter - setting existing custom property: jCleanCim = 02v03 +2024-09-07 21:42:34,099 [main] INFO OptimOptions - setting view to normal +2024-09-07 21:42:34,135 [main] INFO OptimOptions - disabling pagination +2024-09-07 21:42:34,302 [main] INFO OptimOptions - disabling field update +2024-09-07 21:42:34,350 [main] INFO OptimOptions - disabling screen updating +2024-09-07 21:42:34,356 [main] DEBUG DocWordWriter - current(_optimisedOptions): OptimOptions [viewId=1, normView=true, paginate=false, updFld=false, updScr=false, fastSave=false, spelling=false, grammar=false] +2024-09-07 21:42:34,356 [main] INFO Util - +2024-09-07 21:42:34,356 [main] INFO Util - ------------------------------------------------ +2024-09-07 21:42:34,356 [main] INFO Util - collecting existing and retaining usable styles from open MS Word document.... +2024-09-07 21:42:34,371 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Normal, id=-1, outline = 0, kind=normal +2024-09-07 21:42:34,379 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 1, id=-2, outline = 1, kind=heading +2024-09-07 21:42:34,385 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 2, id=-3, outline = 2, kind=heading +2024-09-07 21:42:34,391 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 3, id=-4, outline = 3, kind=heading +2024-09-07 21:42:34,395 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 4, id=-5, outline = 4, kind=heading +2024-09-07 21:42:34,400 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 5, id=-6, outline = 5, kind=heading +2024-09-07 21:42:34,403 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 6, id=-7, outline = 6, kind=heading +2024-09-07 21:42:34,406 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 7, id=-8, outline = 7, kind=heading +2024-09-07 21:42:34,411 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 8, id=-9, outline = 8, kind=heading +2024-09-07 21:42:34,415 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 9, id=-10, outline = 9, kind=heading +2024-09-07 21:42:34,418 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 1;?????????1?, id=-20, outline = 1, kind=toc +2024-09-07 21:42:34,421 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 2, id=-21, outline = 2, kind=toc +2024-09-07 21:42:34,425 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 3, id=-22, outline = 3, kind=toc +2024-09-07 21:42:34,428 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 4, id=-23, outline = 4, kind=toc +2024-09-07 21:42:34,432 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 5, id=-24, outline = 5, kind=toc +2024-09-07 21:42:34,435 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 6, id=-25, outline = 6, kind=toc +2024-09-07 21:42:34,438 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 7, id=-26, outline = 7, kind=toc +2024-09-07 21:42:34,442 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 8, id=-27, outline = 8, kind=toc +2024-09-07 21:42:34,445 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 9, id=-28, outline = 9, kind=toc +2024-09-07 21:42:34,448 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Caption, id=-35, outline = 0, kind=caption +2024-09-07 21:42:39,580 [main] INFO DocWordWriter - AMD-Heading1 (custom, id=0: OTHER) +2024-09-07 21:42:39,580 [main] INFO DocWordWriter - AMD-Heading2... (custom, id=0: OTHER) +2024-09-07 21:42:39,580 [main] INFO DocWordWriter - ANNEX_title (custom, id=0: OTHER) +2024-09-07 21:42:39,580 [main] INFO DocWordWriter - Annexes (custom, id=0: OTHER) +2024-09-07 21:42:39,580 [main] INFO DocWordWriter - ANNEX-heading1 (custom, id=0: OTHER) +2024-09-07 21:42:39,580 [main] INFO DocWordWriter - ANNEX-heading2 (custom, id=0: OTHER) +2024-09-07 21:42:39,580 [main] INFO DocWordWriter - ANNEX-heading2... (custom, id=0: OTHER) +2024-09-07 21:42:39,580 [main] INFO DocWordWriter - ANNEX-heading3 (custom, id=0: OTHER) +2024-09-07 21:42:39,581 [main] INFO DocWordWriter - ANNEX-heading4 (custom, id=0: OTHER) +2024-09-07 21:42:39,581 [main] INFO DocWordWriter - ANNEX-heading5 (custom, id=0: OTHER) +2024-09-07 21:42:39,581 [main] INFO DocWordWriter - ANNEX-title (custom, id=0: OTHER) +2024-09-07 21:42:39,581 [main] INFO DocWordWriter - BIBLIOGRAPHY-numbered (custom, id=0: OTHER) +2024-09-07 21:42:39,581 [main] INFO DocWordWriter - Body Drawing (custom, id=0: OTHER) +2024-09-07 21:42:39,581 [main] INFO DocWordWriter - Body Small (custom, id=0: OTHER) +2024-09-07 21:42:39,581 [main] INFO DocWordWriter - Body Text Bold (custom, id=0: OTHER) +2024-09-07 21:42:39,581 [main] INFO DocWordWriter - Body Text Hanging (custom, id=0: OTHER) +2024-09-07 21:42:39,581 [main] INFO DocWordWriter - Body Text Single (custom, id=0: OTHER) +2024-09-07 21:42:39,581 [main] INFO DocWordWriter - Caption (builtIn, id=-35: CAPT) +2024-09-07 21:42:39,581 [main] INFO DocWordWriter - CODE (custom, id=0: OTHER) +2024-09-07 21:42:39,581 [main] INFO DocWordWriter - CODE-TableCell (custom, id=0: OTHER) +2024-09-07 21:42:39,582 [main] INFO DocWordWriter - Colorful Grid - Accent 11 (custom, id=0: OTHER) +2024-09-07 21:42:39,582 [main] INFO DocWordWriter - Colorful List - Accent 11 (custom, id=0: OTHER) +2024-09-07 21:42:39,582 [main] INFO DocWordWriter - Confidential Page # Date (custom, id=0: OTHER) +2024-09-07 21:42:39,582 [main] INFO DocWordWriter - Cover Subtitle (custom, id=0: OTHER) +2024-09-07 21:42:39,582 [main] INFO DocWordWriter - Cover Title (custom, id=0: OTHER) +2024-09-07 21:42:39,582 [main] INFO DocWordWriter - Disclaimer (custom, id=0: OTHER) +2024-09-07 21:42:39,582 [main] INFO DocWordWriter - DisclaimerInsert (custom, id=0: OTHER) +2024-09-07 21:42:39,582 [main] INFO DocWordWriter - EPRI Address (custom, id=0: OTHER) +2024-09-07 21:42:39,582 [main] INFO DocWordWriter - EPRI Block Quote (custom, id=0: OTHER) +2024-09-07 21:42:39,582 [main] INFO DocWordWriter - EPRI Bulleted List (custom, id=0: OTHER) +2024-09-07 21:42:39,582 [main] INFO DocWordWriter - EPRI Citations (custom, id=0: OTHER) +2024-09-07 21:42:39,582 [main] INFO DocWordWriter - EPRI Citations NEPO FY01-02 (custom, id=0: OTHER) +2024-09-07 21:42:39,582 [main] INFO DocWordWriter - EPRI Citations NEPO FY03 (custom, id=0: OTHER) +2024-09-07 21:42:39,582 [main] INFO DocWordWriter - EPRI Copyright Text (custom, id=0: OTHER) +2024-09-07 21:42:39,582 [main] INFO DocWordWriter - EPRI Copyright Title (custom, id=0: OTHER) +2024-09-07 21:42:39,583 [main] INFO DocWordWriter - EPRI Cosponsor Text (custom, id=0: OTHER) +2024-09-07 21:42:39,583 [main] INFO DocWordWriter - EPRI Disclaimer (custom, id=0: OTHER) +2024-09-07 21:42:39,583 [main] INFO DocWordWriter - EPRI Disclaimer Insert (custom, id=0: OTHER) +2024-09-07 21:42:39,583 [main] INFO DocWordWriter - EPRI Disclaimer Title (custom, id=0: OTHER) +2024-09-07 21:42:39,583 [main] INFO DocWordWriter - EPRI Executable Box (custom, id=0: OTHER) +2024-09-07 21:42:39,583 [main] INFO DocWordWriter - EPRI Figure (custom, id=0: OTHER) +2024-09-07 21:42:39,583 [main] INFO DocWordWriter - EPRI Footnote Text (custom, id=0: OTHER) +2024-09-07 21:42:39,583 [main] INFO DocWordWriter - EPRI Front Matter Bullet (custom, id=0: OTHER) +2024-09-07 21:42:39,583 [main] INFO DocWordWriter - EPRI Front Matter Text First Paragraph (custom, id=0: OTHER) +2024-09-07 21:42:39,583 [main] INFO DocWordWriter - EPRI Heading 2;First Level Head (custom, id=0: OTHER) +2024-09-07 21:42:39,583 [main] INFO DocWordWriter - EPRI Heading 3;Second Level Head (custom, id=0: OTHER) +2024-09-07 21:42:39,583 [main] INFO DocWordWriter - EPRI Heading 8;Appendix 2nd Level Head (custom, id=0: OTHER) +2024-09-07 21:42:39,583 [main] INFO DocWordWriter - EPRI Heading 9;Appendix 3rd Level Head (custom, id=0: OTHER) +2024-09-07 21:42:39,583 [main] INFO DocWordWriter - EPRI Key Point (custom, id=0: OTHER) +2024-09-07 21:42:39,583 [main] INFO DocWordWriter - EPRI Licensed (custom, id=0: OTHER) +2024-09-07 21:42:39,583 [main] INFO DocWordWriter - EPRI Licensed 1st pg (custom, id=0: OTHER) +2024-09-07 21:42:39,584 [main] INFO DocWordWriter - EPRI Licensed Header (custom, id=0: OTHER) +2024-09-07 21:42:39,584 [main] INFO DocWordWriter - EPRI Normal (custom, id=0: OTHER) +2024-09-07 21:42:39,584 [main] INFO DocWordWriter - EPRI Numbered List (custom, id=0: OTHER) +2024-09-07 21:42:39,584 [main] INFO DocWordWriter - EPRI Ordering (custom, id=0: OTHER) +2024-09-07 21:42:39,584 [main] INFO DocWordWriter - EPRI Popout (custom, id=0: OTHER) +2024-09-07 21:42:39,584 [main] INFO DocWordWriter - EPRI Product ID# (custom, id=0: OTHER) +2024-09-07 21:42:39,584 [main] INFO DocWordWriter - EPRI Project Manager (custom, id=0: OTHER) +2024-09-07 21:42:39,584 [main] INFO DocWordWriter - EPRI RS Bulleted List (custom, id=0: OTHER) +2024-09-07 21:42:39,584 [main] INFO DocWordWriter - EPRI RS Subtitle (custom, id=0: OTHER) +2024-09-07 21:42:39,584 [main] INFO DocWordWriter - EPRI RS Text (custom, id=0: OTHER) +2024-09-07 21:42:39,584 [main] INFO DocWordWriter - EPRI Section Number (custom, id=0: OTHER) +2024-09-07 21:42:39,584 [main] INFO DocWordWriter - EPRI Section Style (custom, id=0: OTHER) +2024-09-07 21:42:39,585 [main] INFO DocWordWriter - EPRI Section Title (custom, id=0: OTHER) +2024-09-07 21:42:39,585 [main] INFO DocWordWriter - EPRI Sub Bulleted List (custom, id=0: OTHER) +2024-09-07 21:42:39,585 [main] INFO DocWordWriter - EPRI Sub Bulleted List 2 (custom, id=0: OTHER) +2024-09-07 21:42:39,585 [main] INFO DocWordWriter - EPRI Subheadings (custom, id=0: OTHER) +2024-09-07 21:42:39,585 [main] INFO DocWordWriter - EPRI Subtitle (custom, id=0: OTHER) +2024-09-07 21:42:39,585 [main] INFO DocWordWriter - EPRI Table Header (custom, id=0: OTHER) +2024-09-07 21:42:39,585 [main] INFO DocWordWriter - EPRI Table Text (custom, id=0: OTHER) +2024-09-07 21:42:39,585 [main] INFO DocWordWriter - EPRI Table Text Left (custom, id=0: OTHER) +2024-09-07 21:42:39,585 [main] INFO DocWordWriter - EPRI Title (custom, id=0: OTHER) +2024-09-07 21:42:39,585 [main] INFO DocWordWriter - EPRI Title Text (custom, id=0: OTHER) +2024-09-07 21:42:39,585 [main] INFO DocWordWriter - EPRI TOC 1 (custom, id=0: OTHER) +2024-09-07 21:42:39,585 [main] INFO DocWordWriter - EPRI TOC 2 (custom, id=0: OTHER) +2024-09-07 21:42:39,585 [main] INFO DocWordWriter - EPRI TOC 3 (custom, id=0: OTHER) +2024-09-07 21:42:39,586 [main] INFO DocWordWriter - EPRI TOC 4 (custom, id=0: OTHER) +2024-09-07 21:42:39,586 [main] INFO DocWordWriter - EPRI TOC 5 (custom, id=0: OTHER) +2024-09-07 21:42:39,586 [main] INFO DocWordWriter - eprinormal (custom, id=0: OTHER) +2024-09-07 21:42:39,586 [main] INFO DocWordWriter - EXAMPLE (custom, id=0: OTHER) +2024-09-07 21:42:39,586 [main] INFO DocWordWriter - FIGURE (custom, id=0: OTHER) +2024-09-07 21:42:39,586 [main] INFO DocWordWriter - FIGURE-title (custom, id=0: OTHER) +2024-09-07 21:42:39,586 [main] INFO DocWordWriter - FOREWORD (custom, id=0: OTHER) +2024-09-07 21:42:39,586 [main] INFO DocWordWriter - FORM-admin (custom, id=0: OTHER) +2024-09-07 21:42:39,586 [main] INFO DocWordWriter - Front Matter Footnote Text (custom, id=0: OTHER) +2024-09-07 21:42:39,586 [main] INFO DocWordWriter - head1 (custom, id=0: OTHER) +2024-09-07 21:42:39,586 [main] INFO DocWordWriter - Heading 1 (builtIn, id=-2: HEAD) +2024-09-07 21:42:39,586 [main] INFO DocWordWriter - Heading 2 (builtIn, id=-3: HEAD) +2024-09-07 21:42:39,587 [main] INFO DocWordWriter - Heading 3 (builtIn, id=-4: HEAD) +2024-09-07 21:42:39,587 [main] INFO DocWordWriter - Heading 4 (builtIn, id=-5: HEAD) +2024-09-07 21:42:39,587 [main] INFO DocWordWriter - Heading 5 (builtIn, id=-6: HEAD) +2024-09-07 21:42:39,587 [main] INFO DocWordWriter - Heading 6 (builtIn, id=-7: HEAD) +2024-09-07 21:42:39,587 [main] INFO DocWordWriter - Heading 7 (builtIn, id=-8: HEAD) +2024-09-07 21:42:39,587 [main] INFO DocWordWriter - Heading 8 (builtIn, id=-9: HEAD) +2024-09-07 21:42:39,587 [main] INFO DocWordWriter - Heading 9 (builtIn, id=-10: HEAD) +2024-09-07 21:42:39,587 [main] INFO DocWordWriter - HEADING(Nonumber) (custom, id=0: OTHER) +2024-09-07 21:42:39,587 [main] INFO DocWordWriter - Headings (custom, id=0: OTHER) +2024-09-07 21:42:39,587 [main] INFO DocWordWriter - IEC_INSTRUCTIONS (custom, id=0: OTHER) +2024-09-07 21:42:39,587 [main] INFO DocWordWriter - ISO_Change (custom, id=0: OTHER) +2024-09-07 21:42:39,587 [main] INFO DocWordWriter - ISO_Secret_Observations (custom, id=0: OTHER) +2024-09-07 21:42:39,587 [main] INFO DocWordWriter - List Bullet 6 (custom, id=0: OTHER) +2024-09-07 21:42:39,587 [main] INFO DocWordWriter - List Dash (custom, id=0: OTHER) +2024-09-07 21:42:39,588 [main] INFO DocWordWriter - List Dash 2 (custom, id=0: OTHER) +2024-09-07 21:42:39,588 [main] INFO DocWordWriter - List Dash 3 (custom, id=0: OTHER) +2024-09-07 21:42:39,588 [main] INFO DocWordWriter - List Dash 4 (custom, id=0: OTHER) +2024-09-07 21:42:39,588 [main] INFO DocWordWriter - List Number alt (custom, id=0: OTHER) +2024-09-07 21:42:39,588 [main] INFO DocWordWriter - List Number alt 2 (custom, id=0: OTHER) +2024-09-07 21:42:39,588 [main] INFO DocWordWriter - List Number alt 3 (custom, id=0: OTHER) +2024-09-07 21:42:39,588 [main] INFO DocWordWriter - MAIN-TITLE (custom, id=0: OTHER) +2024-09-07 21:42:39,588 [main] INFO DocWordWriter - MAIN-TITLE12 (custom, id=0: OTHER) +2024-09-07 21:42:39,588 [main] INFO DocWordWriter - Normal (builtIn, id=-1: NORM) +2024-09-07 21:42:39,588 [main] INFO DocWordWriter - Normal Hang (custom, id=0: OTHER) +2024-09-07 21:42:39,588 [main] INFO DocWordWriter - NOTE (custom, id=0: OTHER) +2024-09-07 21:42:39,589 [main] INFO DocWordWriter - Numbered PARA (level 2) (custom, id=0: OTHER) +2024-09-07 21:42:39,589 [main] INFO DocWordWriter - Numbered PARA (level 3) (custom, id=0: OTHER) +2024-09-07 21:42:39,589 [main] INFO DocWordWriter - Numbered PARA (level 4) (custom, id=0: OTHER) +2024-09-07 21:42:39,589 [main] INFO DocWordWriter - Outline (custom, id=0: OTHER) +2024-09-07 21:42:39,589 [main] INFO DocWordWriter - PARAEQUATION (custom, id=0: OTHER) +2024-09-07 21:42:39,589 [main] INFO DocWordWriter - PARAGRAPH (custom, id=0: OTHER) +2024-09-07 21:42:39,589 [main] INFO DocWordWriter - Picture (custom, id=0: OTHER) +2024-09-07 21:42:39,589 [main] INFO DocWordWriter - Product ID# (custom, id=0: OTHER) +2024-09-07 21:42:39,589 [main] INFO DocWordWriter - Section Title Only (custom, id=0: OTHER) +2024-09-07 21:42:39,589 [main] INFO DocWordWriter - SMALL-BLOCKS12 (custom, id=0: OTHER) +2024-09-07 21:42:39,589 [main] INFO DocWordWriter - Style Outline numbered (custom, id=0: OTHER) +2024-09-07 21:42:39,589 [main] INFO DocWordWriter - TAB_FIG_footnote (custom, id=0: OTHER) +2024-09-07 21:42:39,590 [main] INFO DocWordWriter - Table Bullet (custom, id=0: OTHER) +2024-09-07 21:42:39,590 [main] INFO DocWordWriter - Table Dash (custom, id=0: OTHER) +2024-09-07 21:42:39,590 [main] INFO DocWordWriter - Table Style (custom, id=0: OTHER) +2024-09-07 21:42:39,590 [main] INFO DocWordWriter - TABLE-cell (custom, id=0: OTHER) +2024-09-07 21:42:39,590 [main] INFO DocWordWriter - TABLE-centered (custom, id=0: OTHER) +2024-09-07 21:42:39,590 [main] INFO DocWordWriter - TABLE-col-heading (custom, id=0: OTHER) +2024-09-07 21:42:39,590 [main] INFO DocWordWriter - TABLE-title (custom, id=0: OTHER) +2024-09-07 21:42:39,590 [main] INFO DocWordWriter - TERM (custom, id=0: OTHER) +2024-09-07 21:42:39,590 [main] INFO DocWordWriter - TERM-admitted (custom, id=0: OTHER) +2024-09-07 21:42:39,590 [main] INFO DocWordWriter - TERM-definition (custom, id=0: OTHER) +2024-09-07 21:42:39,590 [main] INFO DocWordWriter - TERM-deprecated (custom, id=0: OTHER) +2024-09-07 21:42:39,590 [main] INFO DocWordWriter - TERM-example (custom, id=0: OTHER) +2024-09-07 21:42:39,590 [main] INFO DocWordWriter - TERM-note (custom, id=0: OTHER) +2024-09-07 21:42:39,591 [main] INFO DocWordWriter - TERM-number (custom, id=0: OTHER) +2024-09-07 21:42:39,591 [main] INFO DocWordWriter - TERM-number 3 (custom, id=0: OTHER) +2024-09-07 21:42:39,591 [main] INFO DocWordWriter - TERM-number 4 (custom, id=0: OTHER) +2024-09-07 21:42:39,591 [main] INFO DocWordWriter - TERM-source (custom, id=0: OTHER) +2024-09-07 21:42:39,591 [main] INFO DocWordWriter - Title Page Text (custom, id=0: OTHER) +2024-09-07 21:42:39,591 [main] INFO DocWordWriter - Title1 (custom, id=0: OTHER) +2024-09-07 21:42:39,591 [main] INFO DocWordWriter - TOC 1;?????????1? (builtIn, id=-20: TOC) +2024-09-07 21:42:39,591 [main] INFO DocWordWriter - TOC 2 (builtIn, id=-21: TOC) +2024-09-07 21:42:39,591 [main] INFO DocWordWriter - TOC 3 (builtIn, id=-22: TOC) +2024-09-07 21:42:39,591 [main] INFO DocWordWriter - TOC 4 (builtIn, id=-23: TOC) +2024-09-07 21:42:39,591 [main] INFO DocWordWriter - TOC 5 (builtIn, id=-24: TOC) +2024-09-07 21:42:39,591 [main] INFO DocWordWriter - TOC 6 (builtIn, id=-25: TOC) +2024-09-07 21:42:39,592 [main] INFO DocWordWriter - TOC 7 (builtIn, id=-26: TOC) +2024-09-07 21:42:39,592 [main] INFO DocWordWriter - TOC 8 (builtIn, id=-27: TOC) +2024-09-07 21:42:39,592 [main] INFO DocWordWriter - TOC 9 (builtIn, id=-28: TOC) +2024-09-07 21:42:39,592 [main] INFO DocWordWriter - UCI List (custom, id=0: OTHER) +2024-09-07 21:42:39,592 [main] INFO Util - time=[0:00:05.236] collected existing and retained usable styles +2024-09-07 21:42:39,592 [main] INFO Util - +2024-09-07 21:42:39,592 [main] TRACE Style - === before para.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.para=null; cfg-preferred names=[PARAGRAPH, Normal, Standard]; doc-usable styles={}; all recognised names=[PARAGRAPH, Standard, Normal] +2024-09-07 21:42:39,592 [main] INFO Style - Assigned from preferred names [full match]: Style.para=PARAGRAPH; cfg-preferred names=[PARAGRAPH, Normal, Standard] +2024-09-07 21:42:39,593 [main] TRACE Style - === after +Style.para=PARAGRAPH; cfg-preferred names=[PARAGRAPH, Normal, Standard]; doc-usable styles={PARAGRAPH=PARAGRAPH (custom, id=0: PARA), Normal=Normal (builtIn, id=-1: NORM)}; all recognised names=[PARAGRAPH, Standard, Normal] + +2024-09-07 21:42:39,593 [main] TRACE Style - === before fig.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.fig=null; cfg-preferred names=[FIGURE, Picture, Normal, Standard]; doc-usable styles={}; all recognised names=[Picture, Standard, Normal, FIGURE] +2024-09-07 21:42:39,593 [main] INFO Style - Assigned from preferred names [full match]: Style.fig=FIGURE; cfg-preferred names=[FIGURE, Picture, Normal, Standard] +2024-09-07 21:42:39,593 [main] TRACE Style - === after +Style.fig=FIGURE; cfg-preferred names=[FIGURE, Picture, Normal, Standard]; doc-usable styles={FIGURE=FIGURE (custom, id=0: FIG), Picture=Picture (custom, id=0: OTHER), Normal=Normal (builtIn, id=-1: NORM)}; all recognised names=[Picture, Standard, Normal, FIGURE] + +2024-09-07 21:42:39,593 [main] TRACE Style - === before tabhead.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.tabhead=null; cfg-preferred names=[TABLE-col-heading, Normal, Standard]; doc-usable styles={}; all recognised names=[TABLE-col-heading, Standard, Normal] +2024-09-07 21:42:39,593 [main] INFO Style - Assigned from preferred names [full match]: Style.tabhead=TABLE-col-heading; cfg-preferred names=[TABLE-col-heading, Normal, Standard] +2024-09-07 21:42:39,593 [main] TRACE Style - === after +Style.tabhead=TABLE-col-heading; cfg-preferred names=[TABLE-col-heading, Normal, Standard]; doc-usable styles={TABLE-col-heading=TABLE-col-heading (custom, id=0: TABHEAD), Normal=Normal (builtIn, id=-1: NORM)}; all recognised names=[TABLE-col-heading, Standard, Normal] + +2024-09-07 21:42:39,593 [main] TRACE Style - === before tabcell.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.tabcell=null; cfg-preferred names=[TABLE-cell, Normal, Standard]; doc-usable styles={}; all recognised names=[TABLE-cell, Standard, Normal] +2024-09-07 21:42:39,593 [main] INFO Style - Assigned from preferred names [full match]: Style.tabcell=TABLE-cell; cfg-preferred names=[TABLE-cell, Normal, Standard] +2024-09-07 21:42:39,594 [main] TRACE Style - === after +Style.tabcell=TABLE-cell; cfg-preferred names=[TABLE-cell, Normal, Standard]; doc-usable styles={TABLE-cell=TABLE-cell (custom, id=0: TABCELL), Normal=Normal (builtIn, id=-1: NORM)}; all recognised names=[TABLE-cell, Standard, Normal] + +2024-09-07 21:42:39,594 [main] TRACE Style - === before figcapt.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.figcapt=null; cfg-preferred names=[FIGURE-title, Caption, Beschriftung, Légende]; doc-usable styles={}; all recognised names=[FIGURE-title, Beschriftung, Légende, Caption] +2024-09-07 21:42:39,594 [main] INFO Style - Assigned from preferred names [full match]: Style.figcapt=FIGURE-title; cfg-preferred names=[FIGURE-title, Caption, Beschriftung, Légende] +2024-09-07 21:42:39,594 [main] TRACE Style - === after +Style.figcapt=FIGURE-title; cfg-preferred names=[FIGURE-title, Caption, Beschriftung, Légende]; doc-usable styles={FIGURE-title=FIGURE-title (custom, id=0: FIGCAPT), Caption=Caption (builtIn, id=-35: CAPT)}; all recognised names=[FIGURE-title, Beschriftung, Légende, Caption] + +2024-09-07 21:42:39,594 [main] TRACE Style - === before tabcapt.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.tabcapt=null; cfg-preferred names=[TABLE-title, Caption, Beschriftung, Légende]; doc-usable styles={}; all recognised names=[TABLE-title, Beschriftung, Légende, Caption] +2024-09-07 21:42:39,594 [main] INFO Style - Assigned from preferred names [full match]: Style.tabcapt=TABLE-title; cfg-preferred names=[TABLE-title, Caption, Beschriftung, Légende] +2024-09-07 21:42:39,594 [main] TRACE Style - === after +Style.tabcapt=TABLE-title; cfg-preferred names=[TABLE-title, Caption, Beschriftung, Légende]; doc-usable styles={TABLE-title=TABLE-title (custom, id=0: TABCAPT), Caption=Caption (builtIn, id=-35: CAPT)}; all recognised names=[TABLE-title, Beschriftung, Légende, Caption] + +2024-09-07 21:42:39,594 [main] TRACE Style - === before toc1.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.toc1=null; cfg-preferred names=[TOC 1]; doc-usable styles={}; all recognised names=[TOC 1] +2024-09-07 21:42:39,595 [main] INFO Style - Assigned from preferred names [matching start with preferred] :Style.toc1=TOC 1;?????????1?; cfg-preferred names=[TOC 1]; doc-usable styles={TOC 1=TOC 1;?????????1? (builtIn, id=-20: TOC)}; all recognised names=[TOC 1] +2024-09-07 21:42:39,595 [main] INFO Style - NOTE: If not happy with this assignment, add custom style(s) to your document manually. +2024-09-07 21:42:39,596 [main] TRACE Style - === after +Style.toc1=TOC 1;?????????1?; cfg-preferred names=[TOC 1]; doc-usable styles={TOC 1=TOC 1;?????????1? (builtIn, id=-20: TOC)}; all recognised names=[TOC 1] + +2024-09-07 21:42:39,596 [main] TRACE Style - === before toc2.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.toc2=null; cfg-preferred names=[TOC 2]; doc-usable styles={}; all recognised names=[TOC 2] +2024-09-07 21:42:39,596 [main] INFO Style - Assigned from preferred names [full match]: Style.toc2=TOC 2; cfg-preferred names=[TOC 2] +2024-09-07 21:42:39,596 [main] TRACE Style - === after +Style.toc2=TOC 2; cfg-preferred names=[TOC 2]; doc-usable styles={TOC 2=TOC 2 (builtIn, id=-21: TOC)}; all recognised names=[TOC 2] + +2024-09-07 21:42:39,597 [main] TRACE Style - === before toc3.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.toc3=null; cfg-preferred names=[TOC 3]; doc-usable styles={}; all recognised names=[TOC 3] +2024-09-07 21:42:39,597 [main] INFO Style - Assigned from preferred names [full match]: Style.toc3=TOC 3; cfg-preferred names=[TOC 3] +2024-09-07 21:42:39,597 [main] TRACE Style - === after +Style.toc3=TOC 3; cfg-preferred names=[TOC 3]; doc-usable styles={TOC 3=TOC 3 (builtIn, id=-22: TOC)}; all recognised names=[TOC 3] + +2024-09-07 21:42:39,597 [main] TRACE Style - === before toc4.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.toc4=null; cfg-preferred names=[TOC 4]; doc-usable styles={}; all recognised names=[TOC 4] +2024-09-07 21:42:39,597 [main] INFO Style - Assigned from preferred names [full match]: Style.toc4=TOC 4; cfg-preferred names=[TOC 4] +2024-09-07 21:42:39,597 [main] TRACE Style - === after +Style.toc4=TOC 4; cfg-preferred names=[TOC 4]; doc-usable styles={TOC 4=TOC 4 (builtIn, id=-23: TOC)}; all recognised names=[TOC 4] + +2024-09-07 21:42:39,597 [main] TRACE Style - === before toc5.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.toc5=null; cfg-preferred names=[TOC 5]; doc-usable styles={}; all recognised names=[TOC 5] +2024-09-07 21:42:39,597 [main] INFO Style - Assigned from preferred names [full match]: Style.toc5=TOC 5; cfg-preferred names=[TOC 5] +2024-09-07 21:42:39,597 [main] TRACE Style - === after +Style.toc5=TOC 5; cfg-preferred names=[TOC 5]; doc-usable styles={TOC 5=TOC 5 (builtIn, id=-24: TOC)}; all recognised names=[TOC 5] + +2024-09-07 21:42:39,597 [main] TRACE Style - === before toc6.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.toc6=null; cfg-preferred names=[TOC 6]; doc-usable styles={}; all recognised names=[TOC 6] +2024-09-07 21:42:39,597 [main] INFO Style - Assigned from preferred names [full match]: Style.toc6=TOC 6; cfg-preferred names=[TOC 6] +2024-09-07 21:42:39,598 [main] TRACE Style - === after +Style.toc6=TOC 6; cfg-preferred names=[TOC 6]; doc-usable styles={TOC 6=TOC 6 (builtIn, id=-25: TOC)}; all recognised names=[TOC 6] + +2024-09-07 21:42:39,598 [main] TRACE Style - === before toc7.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.toc7=null; cfg-preferred names=[TOC 7]; doc-usable styles={}; all recognised names=[TOC 7] +2024-09-07 21:42:39,598 [main] INFO Style - Assigned from preferred names [full match]: Style.toc7=TOC 7; cfg-preferred names=[TOC 7] +2024-09-07 21:42:39,598 [main] TRACE Style - === after +Style.toc7=TOC 7; cfg-preferred names=[TOC 7]; doc-usable styles={TOC 7=TOC 7 (builtIn, id=-26: TOC)}; all recognised names=[TOC 7] + +2024-09-07 21:42:39,598 [main] TRACE Style - === before toc8.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.toc8=null; cfg-preferred names=[TOC 8]; doc-usable styles={}; all recognised names=[TOC 8] +2024-09-07 21:42:39,598 [main] INFO Style - Assigned from preferred names [full match]: Style.toc8=TOC 8; cfg-preferred names=[TOC 8] +2024-09-07 21:42:39,598 [main] TRACE Style - === after +Style.toc8=TOC 8; cfg-preferred names=[TOC 8]; doc-usable styles={TOC 8=TOC 8 (builtIn, id=-27: TOC)}; all recognised names=[TOC 8] + +2024-09-07 21:42:39,598 [main] TRACE Style - === before toc9.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.toc9=null; cfg-preferred names=[TOC 9]; doc-usable styles={}; all recognised names=[TOC 9] +2024-09-07 21:42:39,598 [main] INFO Style - Assigned from preferred names [full match]: Style.toc9=TOC 9; cfg-preferred names=[TOC 9] +2024-09-07 21:42:39,598 [main] TRACE Style - === after +Style.toc9=TOC 9; cfg-preferred names=[TOC 9]; doc-usable styles={TOC 9=TOC 9 (builtIn, id=-28: TOC)}; all recognised names=[TOC 9] + +2024-09-07 21:42:39,598 [main] TRACE Style - === before h1.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.h1=null; cfg-preferred names=[Heading 1]; doc-usable styles={}; all recognised names=[Heading 1] +2024-09-07 21:42:39,598 [main] INFO Style - Assigned from preferred names [full match]: Style.h1=Heading 1; cfg-preferred names=[Heading 1] +2024-09-07 21:42:39,599 [main] TRACE Style - === after +Style.h1=Heading 1; cfg-preferred names=[Heading 1]; doc-usable styles={Heading 1=Heading 1 (builtIn, id=-2: HEAD)}; all recognised names=[Heading 1] + +2024-09-07 21:42:39,599 [main] TRACE Style - === before h2.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.h2=null; cfg-preferred names=[Heading 2]; doc-usable styles={}; all recognised names=[Heading 2] +2024-09-07 21:42:39,599 [main] INFO Style - Assigned from preferred names [full match]: Style.h2=Heading 2; cfg-preferred names=[Heading 2] +2024-09-07 21:42:39,599 [main] TRACE Style - === after +Style.h2=Heading 2; cfg-preferred names=[Heading 2]; doc-usable styles={Heading 2=Heading 2 (builtIn, id=-3: HEAD)}; all recognised names=[Heading 2] + +2024-09-07 21:42:39,599 [main] TRACE Style - === before h3.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.h3=null; cfg-preferred names=[Heading 3]; doc-usable styles={}; all recognised names=[Heading 3] +2024-09-07 21:42:39,599 [main] INFO Style - Assigned from preferred names [full match]: Style.h3=Heading 3; cfg-preferred names=[Heading 3] +2024-09-07 21:42:39,599 [main] TRACE Style - === after +Style.h3=Heading 3; cfg-preferred names=[Heading 3]; doc-usable styles={Heading 3=Heading 3 (builtIn, id=-4: HEAD)}; all recognised names=[Heading 3] + +2024-09-07 21:42:39,599 [main] TRACE Style - === before h4.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.h4=null; cfg-preferred names=[Heading 4]; doc-usable styles={}; all recognised names=[Heading 4] +2024-09-07 21:42:39,599 [main] INFO Style - Assigned from preferred names [full match]: Style.h4=Heading 4; cfg-preferred names=[Heading 4] +2024-09-07 21:42:39,599 [main] TRACE Style - === after +Style.h4=Heading 4; cfg-preferred names=[Heading 4]; doc-usable styles={Heading 4=Heading 4 (builtIn, id=-5: HEAD)}; all recognised names=[Heading 4] + +2024-09-07 21:42:39,599 [main] TRACE Style - === before h5.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.h5=null; cfg-preferred names=[Heading 5]; doc-usable styles={}; all recognised names=[Heading 5] +2024-09-07 21:42:39,600 [main] INFO Style - Assigned from preferred names [full match]: Style.h5=Heading 5; cfg-preferred names=[Heading 5] +2024-09-07 21:42:39,600 [main] TRACE Style - === after +Style.h5=Heading 5; cfg-preferred names=[Heading 5]; doc-usable styles={Heading 5=Heading 5 (builtIn, id=-6: HEAD)}; all recognised names=[Heading 5] + +2024-09-07 21:42:39,600 [main] TRACE Style - === before h6.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.h6=null; cfg-preferred names=[Heading 6]; doc-usable styles={}; all recognised names=[Heading 6] +2024-09-07 21:42:39,600 [main] INFO Style - Assigned from preferred names [full match]: Style.h6=Heading 6; cfg-preferred names=[Heading 6] +2024-09-07 21:42:39,600 [main] TRACE Style - === after +Style.h6=Heading 6; cfg-preferred names=[Heading 6]; doc-usable styles={Heading 6=Heading 6 (builtIn, id=-7: HEAD)}; all recognised names=[Heading 6] + +2024-09-07 21:42:39,600 [main] TRACE Style - === before h7.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.h7=null; cfg-preferred names=[Heading 7]; doc-usable styles={}; all recognised names=[Heading 7] +2024-09-07 21:42:39,600 [main] INFO Style - Assigned from preferred names [full match]: Style.h7=Heading 7; cfg-preferred names=[Heading 7] +2024-09-07 21:42:39,600 [main] TRACE Style - === after +Style.h7=Heading 7; cfg-preferred names=[Heading 7]; doc-usable styles={Heading 7=Heading 7 (builtIn, id=-8: HEAD)}; all recognised names=[Heading 7] + +2024-09-07 21:42:39,600 [main] TRACE Style - === before h8.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.h8=null; cfg-preferred names=[Heading 8]; doc-usable styles={}; all recognised names=[Heading 8] +2024-09-07 21:42:39,600 [main] INFO Style - Assigned from preferred names [full match]: Style.h8=Heading 8; cfg-preferred names=[Heading 8] +2024-09-07 21:42:39,600 [main] TRACE Style - === after +Style.h8=Heading 8; cfg-preferred names=[Heading 8]; doc-usable styles={Heading 8=Heading 8 (builtIn, id=-9: HEAD)}; all recognised names=[Heading 8] + +2024-09-07 21:42:39,600 [main] TRACE Style - === before h9.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.h9=null; cfg-preferred names=[Heading 9]; doc-usable styles={}; all recognised names=[Heading 9] +2024-09-07 21:42:39,601 [main] INFO Style - Assigned from preferred names [full match]: Style.h9=Heading 9; cfg-preferred names=[Heading 9] +2024-09-07 21:42:39,601 [main] TRACE Style - === after +Style.h9=Heading 9; cfg-preferred names=[Heading 9]; doc-usable styles={Heading 9=Heading 9 (builtIn, id=-10: HEAD)}; all recognised names=[Heading 9] + +2024-09-07 21:42:39,601 [main] INFO Util - +2024-09-07 21:42:39,601 [main] INFO Util - ------------------------------------------------ +2024-09-07 21:42:39,601 [main] INFO Util - collecting used existing figure/table caption ranges from template... +2024-09-07 21:42:44,673 [main] INFO DocWordWriter - found paragraph [Figure 1 – Example of a power system SCADA architecture extended with NSM Data Objects ] with caption style [FIGURE-title] +2024-09-07 21:42:45,775 [main] INFO DocWordWriter - found paragraph [Figure 2 – IDS Information exchange between applications: generic communication topology ] with caption style [FIGURE-title] +2024-09-07 21:42:46,093 [main] INFO DocWordWriter - found paragraph [Figure 3 – Active security monitoring architecture with NSM data objects ] with caption style [FIGURE-title] +2024-09-07 21:42:46,422 [main] INFO DocWordWriter - found paragraph [Figure 4 – Comparison of NSM data objects with IEC 61850 objects ] with caption style [FIGURE-title] +2024-09-07 21:42:46,444 [main] INFO DocWordWriter - found paragraph [Figure 5 – Management of both the power system infrastructure and the information infrastructure ] with caption style [FIGURE-title] +2024-09-07 21:42:47,238 [main] INFO DocWordWriter - found paragraph [Figure 6 – Abstract types ] with caption style [FIGURE-title] +2024-09-07 21:42:47,329 [main] INFO DocWordWriter - found paragraph [Figure 7 – Enumerated types ] with caption style [FIGURE-title] +2024-09-07 21:42:47,499 [main] INFO DocWordWriter - found paragraph [Figure 8 – Subagents ] with caption style [FIGURE-title] +2024-09-07 21:42:47,597 [main] INFO DocWordWriter - found paragraph [Figure 9 – Environmental agent ] with caption style [FIGURE-title] +2024-09-07 21:42:47,646 [main] INFO DocWordWriter - found paragraph [Figure 10 – Model stereotypes ] with caption style [FIGURE-title] +2024-09-07 21:42:47,923 [main] INFO DocWordWriter - found paragraph [Figure 11 – Object identifier structure ] with caption style [FIGURE-title] +2024-09-07 21:42:48,203 [main] INFO DocWordWriter - found paragraph [Figure 12 – SNMP table ] with caption style [FIGURE-title] +2024-09-07 21:42:48,327 [main] INFO DocWordWriter - found paragraph [Figure 13 – SNMP RFCs map and security ] with caption style [FIGURE-title] +2024-09-07 21:42:48,452 [main] INFO DocWordWriter - found paragraph [Figure 14 – SNMP Entity ] with caption style [FIGURE-title] +2024-09-07 21:42:49,120 [main] INFO DocWordWriter - found paragraph [Table B.1 – IEC 61850-7-4 objects mapping ] with caption style [TABLE-title] +2024-09-07 21:42:50,032 [main] INFO Util - time=[0:00:10.431] collected used figure/table caption ranges from template. +2024-09-07 21:42:50,032 [main] INFO Util - +2024-09-07 21:42:50,032 [main] INFO Util - +2024-09-07 21:42:50,032 [main] INFO Util - ------------------------------------------------ +2024-09-07 21:42:50,032 [main] INFO Util - scanning placeholders... +2024-09-07 21:42:50,621 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.Abstract Types.endUml' PACKAGE Abstract Types, figures (14 before ) +2024-09-07 21:42:50,700 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.EnumeratedTypes.endUml' PACKAGE EnumeratedTypes, figures (14 before ) +2024-09-07 21:42:50,775 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.Overview.endUml' PACKAGE Overview, figures (14 before ) +2024-09-07 21:42:50,849 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.Environmental Agent.endUml' PACKAGE Environmental Agent, figures (14 before ) +2024-09-07 21:42:50,926 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.IED Agent.endUml' PACKAGE IED Agent, figures (14 before ) +2024-09-07 21:42:51,002 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.Application Protocols Agents.endUml' PACKAGE Application Protocols Agents, figures (14 before ) +2024-09-07 21:42:51,078 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.Interfaces Agent.endUml' PACKAGE Interfaces Agent, figures (14 before ) +2024-09-07 21:42:51,164 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.Clocks Agent.endUml' PACKAGE Clocks Agent, figures (14 before ) +2024-09-07 21:42:51,174 [main] INFO AbstractWordWriter - 8 placeholders found. +2024-09-07 21:42:51,174 [main] INFO Util - time=[0:00:01.142] scanned placeholders. +2024-09-07 21:42:51,174 [main] INFO Util - +2024-09-07 21:42:51,176 [main] INFO Util - +2024-09-07 21:42:51,176 [main] INFO Util - ------------------------------------------------ +2024-09-07 21:42:51,176 [main] INFO Util - inserting documentation into placeholders +2024-09-07 21:42:51,184 [main] INFO AbstractWordWriter - replacing [99221 - 99258] PACKAGE Abstract Types, figures (14 before )... +2024-09-07 21:42:51,210 [main] INFO AbstractWordWriter - writing doc for package Abstract Types ... +2024-09-07 21:42:51,284 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML52' to Word document and to used list. +2024-09-07 21:42:51,330 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of Abstract Types::BooleanValue +2024-09-07 21:42:51,356 [main] DEBUG DocWordWriter - ... 26 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:42:51,365 [main] DEBUG DocWordWriter - ... 9 ms for createTable() +2024-09-07 21:42:51,423 [main] DEBUG DocWordWriter - ... 58 ms for fillValues() +2024-09-07 21:42:51,437 [main] DEBUG DocWordWriter - ... 14 ms for widths (table) +2024-09-07 21:42:51,522 [main] DEBUG DocWordWriter - ... 85 ms for widths (columns) +2024-09-07 21:42:51,542 [main] DEBUG DocWordWriter - ... 20 ms for shadding/merging/styling (rows) +2024-09-07 21:42:51,566 [main] DEBUG DocWordWriter - ... 24 ms for borders +2024-09-07 21:42:51,566 [main] DEBUG DocWordWriter - ... 143 ms for formatTable() +2024-09-07 21:42:51,574 [main] INFO DocWordWriter - ... 236 ms total for insertTable() +2024-09-07 21:42:51,605 [main] INFO DocWordWriter - ... 23 ms for insertCaption(): Table 1 – Attributes of Abstract Types::BooleanValue +2024-09-07 21:42:51,643 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of BooleanValue.', [99813 - 99850] +2024-09-07 21:42:51,652 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of BooleanValue.', [99813 - 99851] +2024-09-07 21:42:51,659 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [99813 - 99813] +2024-09-07 21:42:51,674 [main] INFO DocWordWriter - ... 38 ms for insertCaptionRef() +2024-09-07 21:42:51,674 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:42:51,703 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML54' to Word document and to used list. +2024-09-07 21:42:51,752 [main] INFO DocWordWriter - --- insertTable() 3 rows: Attributes of Abstract Types::BooleanValueTs +2024-09-07 21:42:51,773 [main] DEBUG DocWordWriter - ... 21 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:42:51,785 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-07 21:42:51,866 [main] DEBUG DocWordWriter - ... 81 ms for fillValues() +2024-09-07 21:42:51,881 [main] DEBUG DocWordWriter - ... 15 ms for widths (table) +2024-09-07 21:42:51,949 [main] DEBUG DocWordWriter - ... 68 ms for widths (columns) +2024-09-07 21:42:51,968 [main] DEBUG DocWordWriter - ... 19 ms for shadding/merging/styling (rows) +2024-09-07 21:42:51,993 [main] DEBUG DocWordWriter - ... 25 ms for borders +2024-09-07 21:42:51,993 [main] DEBUG DocWordWriter - ... 127 ms for formatTable() +2024-09-07 21:42:52,000 [main] INFO DocWordWriter - ... 241 ms total for insertTable() +2024-09-07 21:42:52,034 [main] INFO DocWordWriter - ... 27 ms for insertCaption(): Table 2 – Attributes of Abstract Types::BooleanValueTs +2024-09-07 21:42:52,070 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of BooleanValueTs.', [100232 - 100271] +2024-09-07 21:42:52,078 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of BooleanValueTs.', [100232 - 100272] +2024-09-07 21:42:52,084 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [100232 - 100232] +2024-09-07 21:42:52,095 [main] INFO DocWordWriter - ... 33 ms for insertCaptionRef() +2024-09-07 21:42:52,095 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:42:52,123 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML55' to Word document and to used list. +2024-09-07 21:42:52,175 [main] INFO DocWordWriter - --- insertTable() 3 rows: Attributes of Abstract Types::CounterTs +2024-09-07 21:42:52,196 [main] DEBUG DocWordWriter - ... 21 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:42:52,206 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-07 21:42:52,290 [main] DEBUG DocWordWriter - ... 84 ms for fillValues() +2024-09-07 21:42:52,306 [main] DEBUG DocWordWriter - ... 16 ms for widths (table) +2024-09-07 21:42:52,388 [main] DEBUG DocWordWriter - ... 82 ms for widths (columns) +2024-09-07 21:42:52,407 [main] DEBUG DocWordWriter - ... 19 ms for shadding/merging/styling (rows) +2024-09-07 21:42:52,433 [main] DEBUG DocWordWriter - ... 26 ms for borders +2024-09-07 21:42:52,433 [main] DEBUG DocWordWriter - ... 143 ms for formatTable() +2024-09-07 21:42:52,441 [main] INFO DocWordWriter - ... 258 ms total for insertTable() +2024-09-07 21:42:52,479 [main] INFO DocWordWriter - ... 31 ms for insertCaption(): Table 3 – Attributes of Abstract Types::CounterTs +2024-09-07 21:42:52,515 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of CounterTs.', [100812 - 100846] +2024-09-07 21:42:52,522 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of CounterTs.', [100812 - 100847] +2024-09-07 21:42:52,528 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [100812 - 100812] +2024-09-07 21:42:52,540 [main] INFO DocWordWriter - ... 33 ms for insertCaptionRef() +2024-09-07 21:42:52,540 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:42:52,573 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML67' to Word document and to used list. +2024-09-07 21:42:52,626 [main] INFO DocWordWriter - --- insertTable() 3 rows: Attributes of Abstract Types::CntRs +2024-09-07 21:42:52,649 [main] DEBUG DocWordWriter - ... 23 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:42:52,659 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-07 21:42:52,745 [main] DEBUG DocWordWriter - ... 86 ms for fillValues() +2024-09-07 21:42:52,759 [main] DEBUG DocWordWriter - ... 14 ms for widths (table) +2024-09-07 21:42:52,831 [main] DEBUG DocWordWriter - ... 72 ms for widths (columns) +2024-09-07 21:42:52,850 [main] DEBUG DocWordWriter - ... 19 ms for shadding/merging/styling (rows) +2024-09-07 21:42:52,872 [main] DEBUG DocWordWriter - ... 22 ms for borders +2024-09-07 21:42:52,872 [main] DEBUG DocWordWriter - ... 127 ms for formatTable() +2024-09-07 21:42:52,887 [main] INFO DocWordWriter - ... 246 ms total for insertTable() +2024-09-07 21:42:52,930 [main] INFO DocWordWriter - ... 36 ms for insertCaption(): Table 4 – Attributes of Abstract Types::CntRs +2024-09-07 21:42:52,968 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of CntRs.', [101378 - 101408] +2024-09-07 21:42:52,979 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of CntRs.', [101378 - 101409] +2024-09-07 21:42:52,985 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [101378 - 101378] +2024-09-07 21:42:53,000 [main] INFO DocWordWriter - ... 39 ms for insertCaptionRef() +2024-09-07 21:42:53,000 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:42:53,028 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML56' to Word document and to used list. +2024-09-07 21:42:53,083 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of Abstract Types::Floating +2024-09-07 21:42:53,105 [main] DEBUG DocWordWriter - ... 22 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:42:53,117 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-07 21:42:53,178 [main] DEBUG DocWordWriter - ... 61 ms for fillValues() +2024-09-07 21:42:53,193 [main] DEBUG DocWordWriter - ... 15 ms for widths (table) +2024-09-07 21:42:53,268 [main] DEBUG DocWordWriter - ... 75 ms for widths (columns) +2024-09-07 21:42:53,289 [main] DEBUG DocWordWriter - ... 21 ms for shadding/merging/styling (rows) +2024-09-07 21:42:53,311 [main] DEBUG DocWordWriter - ... 22 ms for borders +2024-09-07 21:42:53,311 [main] DEBUG DocWordWriter - ... 133 ms for formatTable() +2024-09-07 21:42:53,319 [main] INFO DocWordWriter - ... 228 ms total for insertTable() +2024-09-07 21:42:53,366 [main] INFO DocWordWriter - ... 40 ms for insertCaption(): Table 5 – Attributes of Abstract Types::Floating +2024-09-07 21:42:53,402 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Floating.', [101910 - 101943] +2024-09-07 21:42:53,410 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Floating.', [101910 - 101944] +2024-09-07 21:42:53,416 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [101910 - 101910] +2024-09-07 21:42:53,428 [main] INFO DocWordWriter - ... 33 ms for insertCaptionRef() +2024-09-07 21:42:53,429 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:42:53,457 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML57' to Word document and to used list. +2024-09-07 21:42:53,508 [main] INFO DocWordWriter - --- insertTable() 3 rows: Attributes of Abstract Types::FloatingTs +2024-09-07 21:42:53,530 [main] DEBUG DocWordWriter - ... 22 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:42:53,540 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-07 21:42:53,626 [main] DEBUG DocWordWriter - ... 86 ms for fillValues() +2024-09-07 21:42:53,644 [main] DEBUG DocWordWriter - ... 18 ms for widths (table) +2024-09-07 21:42:53,728 [main] DEBUG DocWordWriter - ... 84 ms for widths (columns) +2024-09-07 21:42:53,749 [main] DEBUG DocWordWriter - ... 21 ms for shadding/merging/styling (rows) +2024-09-07 21:42:53,776 [main] DEBUG DocWordWriter - ... 27 ms for borders +2024-09-07 21:42:53,776 [main] DEBUG DocWordWriter - ... 150 ms for formatTable() +2024-09-07 21:42:53,786 [main] INFO DocWordWriter - ... 268 ms total for insertTable() +2024-09-07 21:42:53,843 [main] INFO DocWordWriter - ... 48 ms for insertCaption(): Table 6 – Attributes of Abstract Types::FloatingTs +2024-09-07 21:42:53,881 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of FloatingTs.', [102337 - 102372] +2024-09-07 21:42:53,889 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of FloatingTs.', [102337 - 102373] +2024-09-07 21:42:53,896 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [102337 - 102337] +2024-09-07 21:42:53,908 [main] INFO DocWordWriter - ... 36 ms for insertCaptionRef() +2024-09-07 21:42:53,908 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:42:53,937 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML66' to Word document and to used list. +2024-09-07 21:42:53,997 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of Abstract Types::EntityIndex +2024-09-07 21:42:54,019 [main] DEBUG DocWordWriter - ... 22 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:42:54,031 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-07 21:42:54,092 [main] DEBUG DocWordWriter - ... 61 ms for fillValues() +2024-09-07 21:42:54,108 [main] DEBUG DocWordWriter - ... 16 ms for widths (table) +2024-09-07 21:42:54,187 [main] DEBUG DocWordWriter - ... 79 ms for widths (columns) +2024-09-07 21:42:54,210 [main] DEBUG DocWordWriter - ... 23 ms for shadding/merging/styling (rows) +2024-09-07 21:42:54,236 [main] DEBUG DocWordWriter - ... 26 ms for borders +2024-09-07 21:42:54,236 [main] DEBUG DocWordWriter - ... 144 ms for formatTable() +2024-09-07 21:42:54,245 [main] INFO DocWordWriter - ... 239 ms total for insertTable() +2024-09-07 21:42:54,312 [main] INFO DocWordWriter - ... 59 ms for insertCaption(): Table 7 – Attributes of Abstract Types::EntityIndex +2024-09-07 21:42:54,353 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of EntityIndex.', [102939 - 102975] +2024-09-07 21:42:54,363 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of EntityIndex.', [102939 - 102976] +2024-09-07 21:42:54,370 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [102939 - 102939] +2024-09-07 21:42:54,383 [main] INFO DocWordWriter - ... 39 ms for insertCaptionRef() +2024-09-07 21:42:54,383 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:42:54,416 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML53' to Word document and to used list. +2024-09-07 21:42:54,476 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of Abstract Types::Integer +2024-09-07 21:42:54,500 [main] DEBUG DocWordWriter - ... 24 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:42:54,511 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 21:42:54,578 [main] DEBUG DocWordWriter - ... 67 ms for fillValues() +2024-09-07 21:42:54,595 [main] DEBUG DocWordWriter - ... 17 ms for widths (table) +2024-09-07 21:42:54,677 [main] DEBUG DocWordWriter - ... 82 ms for widths (columns) +2024-09-07 21:42:54,699 [main] DEBUG DocWordWriter - ... 22 ms for shadding/merging/styling (rows) +2024-09-07 21:42:54,723 [main] DEBUG DocWordWriter - ... 24 ms for borders +2024-09-07 21:42:54,723 [main] DEBUG DocWordWriter - ... 145 ms for formatTable() +2024-09-07 21:42:54,732 [main] INFO DocWordWriter - ... 247 ms total for insertTable() +2024-09-07 21:42:54,796 [main] INFO DocWordWriter - ... 56 ms for insertCaption(): Table 8 – Attributes of Abstract Types::Integer +2024-09-07 21:42:54,838 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Integer.', [103261 - 103293] +2024-09-07 21:42:54,848 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Integer.', [103261 - 103294] +2024-09-07 21:42:54,857 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [103261 - 103261] +2024-09-07 21:42:54,871 [main] INFO DocWordWriter - ... 43 ms for insertCaptionRef() +2024-09-07 21:42:54,871 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:42:54,912 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML58' to Word document and to used list. +2024-09-07 21:42:54,974 [main] INFO DocWordWriter - --- insertTable() 3 rows: Attributes of Abstract Types::IntegerTs +2024-09-07 21:42:54,998 [main] DEBUG DocWordWriter - ... 24 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:42:55,012 [main] DEBUG DocWordWriter - ... 14 ms for createTable() +2024-09-07 21:42:55,105 [main] DEBUG DocWordWriter - ... 93 ms for fillValues() +2024-09-07 21:42:55,122 [main] DEBUG DocWordWriter - ... 17 ms for widths (table) +2024-09-07 21:42:55,200 [main] DEBUG DocWordWriter - ... 78 ms for widths (columns) +2024-09-07 21:42:55,222 [main] DEBUG DocWordWriter - ... 22 ms for shadding/merging/styling (rows) +2024-09-07 21:42:55,249 [main] DEBUG DocWordWriter - ... 27 ms for borders +2024-09-07 21:42:55,249 [main] DEBUG DocWordWriter - ... 144 ms for formatTable() +2024-09-07 21:42:55,258 [main] INFO DocWordWriter - ... 275 ms total for insertTable() +2024-09-07 21:42:55,327 [main] INFO DocWordWriter - ... 61 ms for insertCaption(): Table 9 – Attributes of Abstract Types::IntegerTs +2024-09-07 21:42:55,366 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of IntegerTs.', [103694 - 103728] +2024-09-07 21:42:55,376 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of IntegerTs.', [103694 - 103729] +2024-09-07 21:42:55,382 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [103694 - 103694] +2024-09-07 21:42:55,395 [main] INFO DocWordWriter - ... 38 ms for insertCaptionRef() +2024-09-07 21:42:55,395 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:42:55,429 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML65' to Word document and to used list. +2024-09-07 21:42:55,492 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of Abstract Types::InetAddress +2024-09-07 21:42:55,516 [main] DEBUG DocWordWriter - ... 24 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:42:55,527 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 21:42:55,592 [main] DEBUG DocWordWriter - ... 65 ms for fillValues() +2024-09-07 21:42:55,609 [main] DEBUG DocWordWriter - ... 17 ms for widths (table) +2024-09-07 21:42:55,690 [main] DEBUG DocWordWriter - ... 81 ms for widths (columns) +2024-09-07 21:42:55,712 [main] DEBUG DocWordWriter - ... 22 ms for shadding/merging/styling (rows) +2024-09-07 21:42:55,737 [main] DEBUG DocWordWriter - ... 25 ms for borders +2024-09-07 21:42:55,737 [main] DEBUG DocWordWriter - ... 145 ms for formatTable() +2024-09-07 21:42:55,746 [main] INFO DocWordWriter - ... 245 ms total for insertTable() +2024-09-07 21:42:55,817 [main] INFO DocWordWriter - ... 64 ms for insertCaption(): Table 10 – Attributes of Abstract Types::InetAddress +2024-09-07 21:42:55,859 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of InetAddress.', [104877 - 104913] +2024-09-07 21:42:55,869 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of InetAddress.', [104877 - 104914] +2024-09-07 21:42:55,876 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [104877 - 104877] +2024-09-07 21:42:55,893 [main] INFO DocWordWriter - ... 43 ms for insertCaptionRef() +2024-09-07 21:42:55,894 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:42:55,929 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML64' to Word document and to used list. +2024-09-07 21:42:55,993 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of Abstract Types::InetAddressType +2024-09-07 21:42:56,020 [main] DEBUG DocWordWriter - ... 27 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:42:56,032 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-07 21:42:56,109 [main] DEBUG DocWordWriter - ... 76 ms for fillValues() +2024-09-07 21:42:56,129 [main] DEBUG DocWordWriter - ... 20 ms for widths (table) +2024-09-07 21:42:56,221 [main] DEBUG DocWordWriter - ... 92 ms for widths (columns) +2024-09-07 21:42:56,245 [main] DEBUG DocWordWriter - ... 24 ms for shadding/merging/styling (rows) +2024-09-07 21:42:56,271 [main] DEBUG DocWordWriter - ... 26 ms for borders +2024-09-07 21:42:56,271 [main] DEBUG DocWordWriter - ... 163 ms for formatTable() +2024-09-07 21:42:56,281 [main] INFO DocWordWriter - ... 278 ms total for insertTable() +2024-09-07 21:42:56,395 [main] INFO DocWordWriter - ... 104 ms for insertCaption(): Table 11 – Attributes of Abstract Types::InetAddressType +2024-09-07 21:42:56,440 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of InetAddressType.', [105288 - 105328] +2024-09-07 21:42:56,451 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of InetAddressType.', [105288 - 105329] +2024-09-07 21:42:56,458 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [105288 - 105288] +2024-09-07 21:42:56,473 [main] INFO DocWordWriter - ... 43 ms for insertCaptionRef() +2024-09-07 21:42:56,474 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:42:56,510 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML63' to Word document and to used list. +2024-09-07 21:42:56,572 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of Abstract Types::MacAddress +2024-09-07 21:42:56,596 [main] DEBUG DocWordWriter - ... 24 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:42:56,607 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 21:42:56,673 [main] DEBUG DocWordWriter - ... 66 ms for fillValues() +2024-09-07 21:42:56,690 [main] DEBUG DocWordWriter - ... 17 ms for widths (table) +2024-09-07 21:42:56,767 [main] DEBUG DocWordWriter - ... 77 ms for widths (columns) +2024-09-07 21:42:56,789 [main] DEBUG DocWordWriter - ... 22 ms for shadding/merging/styling (rows) +2024-09-07 21:42:56,812 [main] DEBUG DocWordWriter - ... 23 ms for borders +2024-09-07 21:42:56,812 [main] DEBUG DocWordWriter - ... 139 ms for formatTable() +2024-09-07 21:42:56,827 [main] INFO DocWordWriter - ... 240 ms total for insertTable() +2024-09-07 21:42:56,912 [main] INFO DocWordWriter - ... 77 ms for insertCaption(): Table 12 – Attributes of Abstract Types::MacAddress +2024-09-07 21:42:56,955 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of MacAddress.', [105854 - 105889] +2024-09-07 21:42:56,966 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of MacAddress.', [105854 - 105890] +2024-09-07 21:42:56,974 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [105854 - 105854] +2024-09-07 21:42:56,990 [main] INFO DocWordWriter - ... 46 ms for insertCaptionRef() +2024-09-07 21:42:56,990 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:42:57,026 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML62' to Word document and to used list. +2024-09-07 21:42:57,086 [main] INFO DocWordWriter - closing MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 21:42:58,578 [main] INFO DocWordWriter - opening MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 21:42:59,400 [main] INFO OptimOptions - setting view to normal +2024-09-07 21:42:59,454 [main] INFO OptimOptions - disabling pagination +2024-09-07 21:42:59,494 [main] INFO OptimOptions - disabling field update +2024-09-07 21:42:59,574 [main] INFO OptimOptions - disabling screen updating +2024-09-07 21:42:59,590 [main] DEBUG DocWordWriter - current(_optimisedOptions): OptimOptions [viewId=1, normView=true, paginate=false, updFld=false, updScr=false, fastSave=false, spelling=false, grammar=false] +2024-09-07 21:42:59,693 [main] INFO Util - time=[0:00:02.633] closed and reopened document. +2024-09-07 21:42:59,693 [main] INFO Util - +2024-09-07 21:42:59,752 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of Abstract Types::Selector +2024-09-07 21:42:59,777 [main] DEBUG DocWordWriter - ... 26 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:42:59,798 [main] DEBUG DocWordWriter - ... 21 ms for createTable() +2024-09-07 21:42:59,852 [main] DEBUG DocWordWriter - ... 54 ms for fillValues() +2024-09-07 21:42:59,868 [main] DEBUG DocWordWriter - ... 16 ms for widths (table) +2024-09-07 21:42:59,935 [main] DEBUG DocWordWriter - ... 67 ms for widths (columns) +2024-09-07 21:42:59,956 [main] DEBUG DocWordWriter - ... 21 ms for shadding/merging/styling (rows) +2024-09-07 21:42:59,980 [main] DEBUG DocWordWriter - ... 24 ms for borders +2024-09-07 21:42:59,980 [main] DEBUG DocWordWriter - ... 128 ms for formatTable() +2024-09-07 21:42:59,988 [main] INFO DocWordWriter - ... 229 ms total for insertTable() +2024-09-07 21:43:00,008 [main] INFO DocWordWriter - ... 12 ms for insertCaption(): Table 13 – Attributes of Abstract Types::Selector +2024-09-07 21:43:00,059 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Selector.', [106372 - 106405] +2024-09-07 21:43:00,068 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Selector.', [106372 - 106406] +2024-09-07 21:43:00,073 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [106372 - 106372] +2024-09-07 21:43:00,082 [main] INFO DocWordWriter - ... 30 ms for insertCaptionRef() +2024-09-07 21:43:00,082 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:00,112 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML61' to Word document and to used list. +2024-09-07 21:43:00,167 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of Abstract Types::Timestamp +2024-09-07 21:43:00,191 [main] DEBUG DocWordWriter - ... 24 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:00,201 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-07 21:43:00,267 [main] DEBUG DocWordWriter - ... 66 ms for fillValues() +2024-09-07 21:43:00,284 [main] DEBUG DocWordWriter - ... 17 ms for widths (table) +2024-09-07 21:43:00,361 [main] DEBUG DocWordWriter - ... 77 ms for widths (columns) +2024-09-07 21:43:00,385 [main] DEBUG DocWordWriter - ... 24 ms for shadding/merging/styling (rows) +2024-09-07 21:43:00,408 [main] DEBUG DocWordWriter - ... 23 ms for borders +2024-09-07 21:43:00,408 [main] DEBUG DocWordWriter - ... 141 ms for formatTable() +2024-09-07 21:43:00,417 [main] INFO DocWordWriter - ... 241 ms total for insertTable() +2024-09-07 21:43:00,437 [main] INFO DocWordWriter - ... 14 ms for insertCaption(): Table 14 – Attributes of Abstract Types::Timestamp +2024-09-07 21:43:00,474 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Timestamp.', [106730 - 106764] +2024-09-07 21:43:00,483 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Timestamp.', [106730 - 106765] +2024-09-07 21:43:00,488 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [106730 - 106730] +2024-09-07 21:43:00,496 [main] INFO DocWordWriter - ... 31 ms for insertCaptionRef() +2024-09-07 21:43:00,496 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:00,525 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML59' to Word document and to used list. +2024-09-07 21:43:00,578 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of Abstract Types::CharString +2024-09-07 21:43:00,600 [main] DEBUG DocWordWriter - ... 22 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:00,607 [main] DEBUG DocWordWriter - ... 7 ms for createTable() +2024-09-07 21:43:00,663 [main] DEBUG DocWordWriter - ... 56 ms for fillValues() +2024-09-07 21:43:00,680 [main] DEBUG DocWordWriter - ... 17 ms for widths (table) +2024-09-07 21:43:00,751 [main] DEBUG DocWordWriter - ... 71 ms for widths (columns) +2024-09-07 21:43:00,772 [main] DEBUG DocWordWriter - ... 21 ms for shadding/merging/styling (rows) +2024-09-07 21:43:00,795 [main] DEBUG DocWordWriter - ... 23 ms for borders +2024-09-07 21:43:00,795 [main] DEBUG DocWordWriter - ... 132 ms for formatTable() +2024-09-07 21:43:00,804 [main] INFO DocWordWriter - ... 217 ms total for insertTable() +2024-09-07 21:43:00,828 [main] INFO DocWordWriter - ... 16 ms for insertCaption(): Table 15 – Attributes of Abstract Types::CharString +2024-09-07 21:43:00,866 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of CharString.', [107155 - 107190] +2024-09-07 21:43:00,874 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of CharString.', [107155 - 107191] +2024-09-07 21:43:00,881 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [107155 - 107155] +2024-09-07 21:43:00,888 [main] INFO DocWordWriter - ... 31 ms for insertCaptionRef() +2024-09-07 21:43:00,888 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:00,918 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML60' to Word document and to used list. +2024-09-07 21:43:00,973 [main] INFO DocWordWriter - --- insertTable() 3 rows: Attributes of Abstract Types::CharStringTs +2024-09-07 21:43:00,997 [main] DEBUG DocWordWriter - ... 24 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:01,005 [main] DEBUG DocWordWriter - ... 8 ms for createTable() +2024-09-07 21:43:01,088 [main] DEBUG DocWordWriter - ... 83 ms for fillValues() +2024-09-07 21:43:01,105 [main] DEBUG DocWordWriter - ... 17 ms for widths (table) +2024-09-07 21:43:01,179 [main] DEBUG DocWordWriter - ... 74 ms for widths (columns) +2024-09-07 21:43:01,201 [main] DEBUG DocWordWriter - ... 22 ms for shadding/merging/styling (rows) +2024-09-07 21:43:01,227 [main] DEBUG DocWordWriter - ... 26 ms for borders +2024-09-07 21:43:01,227 [main] DEBUG DocWordWriter - ... 139 ms for formatTable() +2024-09-07 21:43:01,235 [main] INFO DocWordWriter - ... 254 ms total for insertTable() +2024-09-07 21:43:01,265 [main] INFO DocWordWriter - ... 22 ms for insertCaption(): Table 16 – Attributes of Abstract Types::CharStringTs +2024-09-07 21:43:01,318 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of CharStringTs.', [107550 - 107587] +2024-09-07 21:43:01,328 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of CharStringTs.', [107550 - 107588] +2024-09-07 21:43:01,336 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [107550 - 107550] +2024-09-07 21:43:01,345 [main] INFO DocWordWriter - ... 43 ms for insertCaptionRef() +2024-09-07 21:43:01,346 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:01,381 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML39' to Word document and to used list. +2024-09-07 21:43:01,439 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML40' to Word document and to used list. +2024-09-07 21:43:01,477 [main] INFO Util - time=[0:00:10.301] replaced [108106 - 108166] PACKAGE Abstract Types, figures (14 before ), tables (16 mine)... +2024-09-07 21:43:01,478 [main] INFO Util - +2024-09-07 21:43:01,482 [main] INFO AbstractWordWriter - replacing [108204 - 108242] PACKAGE EnumeratedTypes, figures (14 before ), tables (16 before )... +2024-09-07 21:43:01,510 [main] INFO AbstractWordWriter - writing doc for package EnumeratedTypes ... +2024-09-07 21:43:01,587 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML41' to Word document and to used list. +2024-09-07 21:43:01,640 [main] INFO DocWordWriter - --- insertTable() 4 rows: Literals of EnumeratedTypes::AppDatStKind +2024-09-07 21:43:01,663 [main] DEBUG DocWordWriter - ... 23 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:01,671 [main] DEBUG DocWordWriter - ... 8 ms for createTable() +2024-09-07 21:43:01,711 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML150' to Word document and to used list. +2024-09-07 21:43:01,745 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML151' to Word document and to used list. +2024-09-07 21:43:01,767 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML152' to Word document and to used list. +2024-09-07 21:43:01,779 [main] DEBUG DocWordWriter - ... 108 ms for fillValues() +2024-09-07 21:43:01,796 [main] DEBUG DocWordWriter - ... 17 ms for widths (table) +2024-09-07 21:43:01,858 [main] DEBUG DocWordWriter - ... 62 ms for widths (columns) +2024-09-07 21:43:01,880 [main] DEBUG DocWordWriter - ... 22 ms for shadding/merging/styling (rows) +2024-09-07 21:43:01,907 [main] DEBUG DocWordWriter - ... 27 ms for borders +2024-09-07 21:43:01,907 [main] DEBUG DocWordWriter - ... 128 ms for formatTable() +2024-09-07 21:43:01,915 [main] INFO DocWordWriter - ... 267 ms total for insertTable() +2024-09-07 21:43:01,946 [main] INFO DocWordWriter - ... 22 ms for insertCaption(): Table 17 – Literals of EnumeratedTypes::AppDatStKind +2024-09-07 21:43:01,987 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all literals of AppDatStKind.', [108822 - 108857] +2024-09-07 21:43:01,997 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all literals of AppDatStKind.', [108822 - 108858] +2024-09-07 21:43:02,004 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [108822 - 108822] +2024-09-07 21:43:02,012 [main] INFO DocWordWriter - ... 33 ms for insertCaptionRef() +2024-09-07 21:43:02,012 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:02,045 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML42' to Word document and to used list. +2024-09-07 21:43:02,103 [main] INFO DocWordWriter - --- insertTable() 4 rows: Literals of EnumeratedTypes::PhyHealthKind +2024-09-07 21:43:02,127 [main] DEBUG DocWordWriter - ... 24 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:02,135 [main] DEBUG DocWordWriter - ... 8 ms for createTable() +2024-09-07 21:43:02,175 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML153' to Word document and to used list. +2024-09-07 21:43:02,198 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML154' to Word document and to used list. +2024-09-07 21:43:02,220 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML155' to Word document and to used list. +2024-09-07 21:43:02,233 [main] DEBUG DocWordWriter - ... 98 ms for fillValues() +2024-09-07 21:43:02,250 [main] DEBUG DocWordWriter - ... 17 ms for widths (table) +2024-09-07 21:43:02,317 [main] DEBUG DocWordWriter - ... 67 ms for widths (columns) +2024-09-07 21:43:02,344 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-07 21:43:02,385 [main] DEBUG DocWordWriter - ... 41 ms for borders +2024-09-07 21:43:02,385 [main] DEBUG DocWordWriter - ... 152 ms for formatTable() +2024-09-07 21:43:02,409 [main] INFO DocWordWriter - ... 282 ms total for insertTable() +2024-09-07 21:43:02,446 [main] INFO DocWordWriter - ... 28 ms for insertCaption(): Table 18 – Literals of EnumeratedTypes::PhyHealthKind +2024-09-07 21:43:02,484 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all literals of PhyHealthKind.', [109221 - 109257] +2024-09-07 21:43:02,492 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all literals of PhyHealthKind.', [109221 - 109258] +2024-09-07 21:43:02,497 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [109221 - 109221] +2024-09-07 21:43:02,505 [main] INFO DocWordWriter - ... 30 ms for insertCaptionRef() +2024-09-07 21:43:02,505 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:02,535 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML43' to Word document and to used list. +2024-09-07 21:43:02,593 [main] INFO DocWordWriter - --- insertTable() 4 rows: Literals of EnumeratedTypes::ExtKind +2024-09-07 21:43:02,615 [main] DEBUG DocWordWriter - ... 22 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:02,624 [main] DEBUG DocWordWriter - ... 9 ms for createTable() +2024-09-07 21:43:02,662 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML156' to Word document and to used list. +2024-09-07 21:43:02,685 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML157' to Word document and to used list. +2024-09-07 21:43:02,708 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML158' to Word document and to used list. +2024-09-07 21:43:02,720 [main] DEBUG DocWordWriter - ... 96 ms for fillValues() +2024-09-07 21:43:02,737 [main] DEBUG DocWordWriter - ... 17 ms for widths (table) +2024-09-07 21:43:02,794 [main] DEBUG DocWordWriter - ... 57 ms for widths (columns) +2024-09-07 21:43:02,815 [main] DEBUG DocWordWriter - ... 21 ms for shadding/merging/styling (rows) +2024-09-07 21:43:02,844 [main] DEBUG DocWordWriter - ... 29 ms for borders +2024-09-07 21:43:02,844 [main] DEBUG DocWordWriter - ... 124 ms for formatTable() +2024-09-07 21:43:02,853 [main] INFO DocWordWriter - ... 251 ms total for insertTable() +2024-09-07 21:43:02,888 [main] INFO DocWordWriter - ... 27 ms for insertCaption(): Table 19 – Literals of EnumeratedTypes::ExtKind +2024-09-07 21:43:02,928 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all literals of ExtKind.', [109618 - 109648] +2024-09-07 21:43:02,937 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all literals of ExtKind.', [109618 - 109649] +2024-09-07 21:43:02,944 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [109618 - 109618] +2024-09-07 21:43:02,952 [main] INFO DocWordWriter - ... 33 ms for insertCaptionRef() +2024-09-07 21:43:02,952 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:02,985 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML44' to Word document and to used list. +2024-09-07 21:43:03,045 [main] INFO DocWordWriter - --- insertTable() 3 rows: Literals of EnumeratedTypes::IntKind +2024-09-07 21:43:03,069 [main] DEBUG DocWordWriter - ... 24 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:03,078 [main] DEBUG DocWordWriter - ... 9 ms for createTable() +2024-09-07 21:43:03,119 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML159' to Word document and to used list. +2024-09-07 21:43:03,142 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML160' to Word document and to used list. +2024-09-07 21:43:03,154 [main] DEBUG DocWordWriter - ... 76 ms for fillValues() +2024-09-07 21:43:03,172 [main] DEBUG DocWordWriter - ... 18 ms for widths (table) +2024-09-07 21:43:03,228 [main] DEBUG DocWordWriter - ... 56 ms for widths (columns) +2024-09-07 21:43:03,249 [main] DEBUG DocWordWriter - ... 21 ms for shadding/merging/styling (rows) +2024-09-07 21:43:03,274 [main] DEBUG DocWordWriter - ... 24 ms for borders +2024-09-07 21:43:03,274 [main] DEBUG DocWordWriter - ... 120 ms for formatTable() +2024-09-07 21:43:03,283 [main] INFO DocWordWriter - ... 229 ms total for insertTable() +2024-09-07 21:43:03,320 [main] INFO DocWordWriter - ... 30 ms for insertCaption(): Table 20 – Literals of EnumeratedTypes::IntKind +2024-09-07 21:43:03,363 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all literals of IntKind.', [109951 - 109981] +2024-09-07 21:43:03,372 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all literals of IntKind.', [109951 - 109982] +2024-09-07 21:43:03,379 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [109951 - 109951] +2024-09-07 21:43:03,387 [main] INFO DocWordWriter - ... 33 ms for insertCaptionRef() +2024-09-07 21:43:03,388 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:03,420 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML45' to Word document and to used list. +2024-09-07 21:43:03,486 [main] INFO DocWordWriter - --- insertTable() 6 rows: Literals of EnumeratedTypes::LnkKind +2024-09-07 21:43:03,513 [main] DEBUG DocWordWriter - ... 27 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:03,522 [main] DEBUG DocWordWriter - ... 9 ms for createTable() +2024-09-07 21:43:03,562 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML161' to Word document and to used list. +2024-09-07 21:43:03,585 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML162' to Word document and to used list. +2024-09-07 21:43:03,607 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML163' to Word document and to used list. +2024-09-07 21:43:03,630 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML164' to Word document and to used list. +2024-09-07 21:43:03,651 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML165' to Word document and to used list. +2024-09-07 21:43:03,664 [main] DEBUG DocWordWriter - ... 141 ms for fillValues() +2024-09-07 21:43:03,682 [main] DEBUG DocWordWriter - ... 18 ms for widths (table) +2024-09-07 21:43:03,744 [main] DEBUG DocWordWriter - ... 62 ms for widths (columns) +2024-09-07 21:43:03,768 [main] DEBUG DocWordWriter - ... 24 ms for shadding/merging/styling (rows) +2024-09-07 21:43:03,799 [main] DEBUG DocWordWriter - ... 31 ms for borders +2024-09-07 21:43:03,799 [main] DEBUG DocWordWriter - ... 136 ms for formatTable() +2024-09-07 21:43:03,808 [main] INFO DocWordWriter - ... 313 ms total for insertTable() +2024-09-07 21:43:03,849 [main] INFO DocWordWriter - ... 33 ms for insertCaption(): Table 21 – Literals of EnumeratedTypes::LnkKind +2024-09-07 21:43:03,892 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all literals of LnkKind.', [110231 - 110261] +2024-09-07 21:43:03,901 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all literals of LnkKind.', [110231 - 110262] +2024-09-07 21:43:03,908 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [110231 - 110231] +2024-09-07 21:43:03,917 [main] INFO DocWordWriter - ... 35 ms for insertCaptionRef() +2024-09-07 21:43:03,917 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:03,949 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML46' to Word document and to used list. +2024-09-07 21:43:04,015 [main] INFO DocWordWriter - --- insertTable() 3 rows: Literals of EnumeratedTypes::PSPAccKind +2024-09-07 21:43:04,041 [main] DEBUG DocWordWriter - ... 26 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:04,050 [main] DEBUG DocWordWriter - ... 9 ms for createTable() +2024-09-07 21:43:04,101 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML166' to Word document and to used list. +2024-09-07 21:43:04,127 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML167' to Word document and to used list. +2024-09-07 21:43:04,141 [main] DEBUG DocWordWriter - ... 91 ms for fillValues() +2024-09-07 21:43:04,163 [main] DEBUG DocWordWriter - ... 22 ms for widths (table) +2024-09-07 21:43:04,231 [main] DEBUG DocWordWriter - ... 68 ms for widths (columns) +2024-09-07 21:43:04,256 [main] DEBUG DocWordWriter - ... 25 ms for shadding/merging/styling (rows) +2024-09-07 21:43:04,286 [main] DEBUG DocWordWriter - ... 30 ms for borders +2024-09-07 21:43:04,286 [main] DEBUG DocWordWriter - ... 145 ms for formatTable() +2024-09-07 21:43:04,295 [main] INFO DocWordWriter - ... 271 ms total for insertTable() +2024-09-07 21:43:04,344 [main] INFO DocWordWriter - ... 41 ms for insertCaption(): Table 22 – Literals of EnumeratedTypes::PSPAccKind +2024-09-07 21:43:04,386 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all literals of PSPAccKind.', [110617 - 110650] +2024-09-07 21:43:04,395 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all literals of PSPAccKind.', [110617 - 110651] +2024-09-07 21:43:04,401 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [110617 - 110617] +2024-09-07 21:43:04,409 [main] INFO DocWordWriter - ... 31 ms for insertCaptionRef() +2024-09-07 21:43:04,409 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:04,440 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML47' to Word document and to used list. +2024-09-07 21:43:04,496 [main] INFO DocWordWriter - --- insertTable() 8 rows: Literals of EnumeratedTypes::ProtIdKind +2024-09-07 21:43:04,523 [main] DEBUG DocWordWriter - ... 27 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:04,534 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 21:43:04,578 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML168' to Word document and to used list. +2024-09-07 21:43:04,600 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML169' to Word document and to used list. +2024-09-07 21:43:04,622 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML170' to Word document and to used list. +2024-09-07 21:43:04,645 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML171' to Word document and to used list. +2024-09-07 21:43:04,667 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML172' to Word document and to used list. +2024-09-07 21:43:04,691 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML173' to Word document and to used list. +2024-09-07 21:43:04,720 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML174' to Word document and to used list. +2024-09-07 21:43:04,734 [main] DEBUG DocWordWriter - ... 200 ms for fillValues() +2024-09-07 21:43:04,754 [main] DEBUG DocWordWriter - ... 20 ms for widths (table) +2024-09-07 21:43:04,828 [main] DEBUG DocWordWriter - ... 74 ms for widths (columns) +2024-09-07 21:43:04,856 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-07 21:43:04,891 [main] DEBUG DocWordWriter - ... 35 ms for borders +2024-09-07 21:43:04,891 [main] DEBUG DocWordWriter - ... 157 ms for formatTable() +2024-09-07 21:43:04,901 [main] INFO DocWordWriter - ... 395 ms total for insertTable() +2024-09-07 21:43:04,948 [main] INFO DocWordWriter - ... 40 ms for insertCaption(): Table 23 – Literals of EnumeratedTypes::ProtIdKind +2024-09-07 21:43:04,993 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all literals of ProtIdKind.', [111014 - 111047] +2024-09-07 21:43:05,001 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all literals of ProtIdKind.', [111014 - 111048] +2024-09-07 21:43:05,008 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [111014 - 111014] +2024-09-07 21:43:05,017 [main] INFO DocWordWriter - ... 34 ms for insertCaptionRef() +2024-09-07 21:43:05,017 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:05,050 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML48' to Word document and to used list. +2024-09-07 21:43:05,108 [main] INFO DocWordWriter - --- insertTable() 12 rows: Literals of EnumeratedTypes::EventKind +2024-09-07 21:43:05,132 [main] DEBUG DocWordWriter - ... 24 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:05,143 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 21:43:05,183 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML175' to Word document and to used list. +2024-09-07 21:43:05,206 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML176' to Word document and to used list. +2024-09-07 21:43:05,229 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML177' to Word document and to used list. +2024-09-07 21:43:05,252 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML178' to Word document and to used list. +2024-09-07 21:43:05,276 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML179' to Word document and to used list. +2024-09-07 21:43:05,299 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML180' to Word document and to used list. +2024-09-07 21:43:05,322 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML181' to Word document and to used list. +2024-09-07 21:43:05,347 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML182' to Word document and to used list. +2024-09-07 21:43:05,371 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML183' to Word document and to used list. +2024-09-07 21:43:05,395 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML184' to Word document and to used list. +2024-09-07 21:43:05,418 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML185' to Word document and to used list. +2024-09-07 21:43:05,431 [main] DEBUG DocWordWriter - ... 288 ms for fillValues() +2024-09-07 21:43:05,454 [main] DEBUG DocWordWriter - ... 23 ms for widths (table) +2024-09-07 21:43:05,540 [main] DEBUG DocWordWriter - ... 86 ms for widths (columns) +2024-09-07 21:43:05,562 [main] DEBUG DocWordWriter - ... 22 ms for shadding/merging/styling (rows) +2024-09-07 21:43:05,612 [main] DEBUG DocWordWriter - ... 50 ms for borders +2024-09-07 21:43:05,612 [main] DEBUG DocWordWriter - ... 181 ms for formatTable() +2024-09-07 21:43:05,623 [main] INFO DocWordWriter - ... 504 ms total for insertTable() +2024-09-07 21:43:05,675 [main] INFO DocWordWriter - ... 45 ms for insertCaption(): Table 24 – Literals of EnumeratedTypes::EventKind +2024-09-07 21:43:05,717 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all literals of EventKind.', [111742 - 111774] +2024-09-07 21:43:05,726 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all literals of EventKind.', [111742 - 111775] +2024-09-07 21:43:05,732 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [111742 - 111742] +2024-09-07 21:43:05,742 [main] INFO DocWordWriter - ... 35 ms for insertCaptionRef() +2024-09-07 21:43:05,742 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:05,774 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML49' to Word document and to used list. +2024-09-07 21:43:05,827 [main] INFO DocWordWriter - closing MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 21:43:07,128 [main] INFO DocWordWriter - opening MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 21:43:08,055 [main] INFO OptimOptions - setting view to normal +2024-09-07 21:43:08,098 [main] INFO OptimOptions - disabling pagination +2024-09-07 21:43:08,132 [main] INFO OptimOptions - disabling field update +2024-09-07 21:43:08,214 [main] INFO OptimOptions - disabling screen updating +2024-09-07 21:43:08,221 [main] DEBUG DocWordWriter - current(_optimisedOptions): OptimOptions [viewId=1, normView=true, paginate=false, updFld=false, updScr=false, fastSave=false, spelling=false, grammar=false] +2024-09-07 21:43:08,377 [main] INFO Util - time=[0:00:02.573] closed and reopened document. +2024-09-07 21:43:08,377 [main] INFO Util - +2024-09-07 21:43:08,452 [main] INFO DocWordWriter - --- insertTable() 5 rows: Literals of EnumeratedTypes::TimSyncIssueKind +2024-09-07 21:43:08,477 [main] DEBUG DocWordWriter - ... 25 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:08,484 [main] DEBUG DocWordWriter - ... 7 ms for createTable() +2024-09-07 21:43:08,523 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML186' to Word document and to used list. +2024-09-07 21:43:08,561 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML187' to Word document and to used list. +2024-09-07 21:43:08,583 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML188' to Word document and to used list. +2024-09-07 21:43:08,607 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML189' to Word document and to used list. +2024-09-07 21:43:08,620 [main] DEBUG DocWordWriter - ... 136 ms for fillValues() +2024-09-07 21:43:08,639 [main] DEBUG DocWordWriter - ... 19 ms for widths (table) +2024-09-07 21:43:08,699 [main] DEBUG DocWordWriter - ... 60 ms for widths (columns) +2024-09-07 21:43:08,721 [main] DEBUG DocWordWriter - ... 22 ms for shadding/merging/styling (rows) +2024-09-07 21:43:08,751 [main] DEBUG DocWordWriter - ... 30 ms for borders +2024-09-07 21:43:08,751 [main] DEBUG DocWordWriter - ... 131 ms for formatTable() +2024-09-07 21:43:08,761 [main] INFO DocWordWriter - ... 299 ms total for insertTable() +2024-09-07 21:43:08,784 [main] INFO DocWordWriter - ... 16 ms for insertCaption(): Table 25 – Literals of EnumeratedTypes::TimSyncIssueKind +2024-09-07 21:43:08,827 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all literals of TimSyncIssueKind.', [112505 - 112544] +2024-09-07 21:43:08,835 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all literals of TimSyncIssueKind.', [112505 - 112545] +2024-09-07 21:43:08,842 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [112505 - 112505] +2024-09-07 21:43:08,850 [main] INFO DocWordWriter - ... 32 ms for insertCaptionRef() +2024-09-07 21:43:08,850 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:08,880 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML50' to Word document and to used list. +2024-09-07 21:43:08,938 [main] INFO DocWordWriter - --- insertTable() 5 rows: Literals of EnumeratedTypes::SecurityProfileKind +2024-09-07 21:43:08,961 [main] DEBUG DocWordWriter - ... 23 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:08,973 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-07 21:43:09,011 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML190' to Word document and to used list. +2024-09-07 21:43:09,035 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML191' to Word document and to used list. +2024-09-07 21:43:09,059 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML192' to Word document and to used list. +2024-09-07 21:43:09,082 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML193' to Word document and to used list. +2024-09-07 21:43:09,095 [main] DEBUG DocWordWriter - ... 122 ms for fillValues() +2024-09-07 21:43:09,113 [main] DEBUG DocWordWriter - ... 18 ms for widths (table) +2024-09-07 21:43:09,171 [main] DEBUG DocWordWriter - ... 58 ms for widths (columns) +2024-09-07 21:43:09,194 [main] DEBUG DocWordWriter - ... 23 ms for shadding/merging/styling (rows) +2024-09-07 21:43:09,222 [main] DEBUG DocWordWriter - ... 28 ms for borders +2024-09-07 21:43:09,222 [main] DEBUG DocWordWriter - ... 127 ms for formatTable() +2024-09-07 21:43:09,232 [main] INFO DocWordWriter - ... 284 ms total for insertTable() +2024-09-07 21:43:09,255 [main] INFO DocWordWriter - ... 16 ms for insertCaption(): Table 26 – Literals of EnumeratedTypes::SecurityProfileKind +2024-09-07 21:43:09,297 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all literals of SecurityProfileKind.', [113376 - 113418] +2024-09-07 21:43:09,306 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all literals of SecurityProfileKind.', [113376 - 113419] +2024-09-07 21:43:09,313 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [113376 - 113376] +2024-09-07 21:43:09,321 [main] INFO DocWordWriter - ... 34 ms for insertCaptionRef() +2024-09-07 21:43:09,321 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:09,357 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML51' to Word document and to used list. +2024-09-07 21:43:09,417 [main] INFO DocWordWriter - --- insertTable() 15 rows: Literals of EnumeratedTypes::TimSyncSrcKind +2024-09-07 21:43:09,441 [main] DEBUG DocWordWriter - ... 24 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:09,451 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-07 21:43:09,496 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML194' to Word document and to used list. +2024-09-07 21:43:09,519 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML195' to Word document and to used list. +2024-09-07 21:43:09,545 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML196' to Word document and to used list. +2024-09-07 21:43:09,569 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML197' to Word document and to used list. +2024-09-07 21:43:09,592 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML198' to Word document and to used list. +2024-09-07 21:43:09,615 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML199' to Word document and to used list. +2024-09-07 21:43:09,640 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML200' to Word document and to used list. +2024-09-07 21:43:09,663 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML201' to Word document and to used list. +2024-09-07 21:43:09,687 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML202' to Word document and to used list. +2024-09-07 21:43:09,711 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML203' to Word document and to used list. +2024-09-07 21:43:09,735 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML204' to Word document and to used list. +2024-09-07 21:43:09,758 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML205' to Word document and to used list. +2024-09-07 21:43:09,781 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML206' to Word document and to used list. +2024-09-07 21:43:09,804 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML207' to Word document and to used list. +2024-09-07 21:43:09,817 [main] DEBUG DocWordWriter - ... 366 ms for fillValues() +2024-09-07 21:43:09,843 [main] DEBUG DocWordWriter - ... 26 ms for widths (table) +2024-09-07 21:43:09,940 [main] DEBUG DocWordWriter - ... 97 ms for widths (columns) +2024-09-07 21:43:09,964 [main] DEBUG DocWordWriter - ... 24 ms for shadding/merging/styling (rows) +2024-09-07 21:43:10,011 [main] DEBUG DocWordWriter - ... 47 ms for borders +2024-09-07 21:43:10,011 [main] DEBUG DocWordWriter - ... 194 ms for formatTable() +2024-09-07 21:43:10,021 [main] INFO DocWordWriter - ... 594 ms total for insertTable() +2024-09-07 21:43:10,052 [main] INFO DocWordWriter - ... 23 ms for insertCaption(): Table 27 – Literals of EnumeratedTypes::TimSyncSrcKind +2024-09-07 21:43:10,095 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all literals of TimSyncSrcKind.', [114135 - 114172] +2024-09-07 21:43:10,105 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all literals of TimSyncSrcKind.', [114135 - 114173] +2024-09-07 21:43:10,111 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [114135 - 114135] +2024-09-07 21:43:10,120 [main] INFO DocWordWriter - ... 35 ms for insertCaptionRef() +2024-09-07 21:43:10,120 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:10,152 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML68' to Word document and to used list. +2024-09-07 21:43:10,210 [main] INFO DocWordWriter - --- insertTable() 3 rows: Attributes of EnumeratedTypes::AppDatStType +2024-09-07 21:43:10,234 [main] DEBUG DocWordWriter - ... 24 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:10,242 [main] DEBUG DocWordWriter - ... 8 ms for createTable() +2024-09-07 21:43:10,328 [main] DEBUG DocWordWriter - ... 86 ms for fillValues() +2024-09-07 21:43:10,346 [main] DEBUG DocWordWriter - ... 18 ms for widths (table) +2024-09-07 21:43:10,423 [main] DEBUG DocWordWriter - ... 77 ms for widths (columns) +2024-09-07 21:43:10,443 [main] DEBUG DocWordWriter - ... 20 ms for shadding/merging/styling (rows) +2024-09-07 21:43:10,469 [main] DEBUG DocWordWriter - ... 26 ms for borders +2024-09-07 21:43:10,469 [main] DEBUG DocWordWriter - ... 141 ms for formatTable() +2024-09-07 21:43:10,478 [main] INFO DocWordWriter - ... 259 ms total for insertTable() +2024-09-07 21:43:10,508 [main] INFO DocWordWriter - ... 22 ms for insertCaption(): Table 28 – Attributes of EnumeratedTypes::AppDatStType +2024-09-07 21:43:10,550 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of AppDatStType.', [115936 - 115973] +2024-09-07 21:43:10,559 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of AppDatStType.', [115936 - 115974] +2024-09-07 21:43:10,566 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [115936 - 115936] +2024-09-07 21:43:10,575 [main] INFO DocWordWriter - ... 34 ms for insertCaptionRef() +2024-09-07 21:43:10,575 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:10,607 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML69' to Word document and to used list. +2024-09-07 21:43:10,664 [main] INFO DocWordWriter - --- insertTable() 3 rows: Attributes of EnumeratedTypes::PhyHealthType +2024-09-07 21:43:10,688 [main] DEBUG DocWordWriter - ... 24 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:10,696 [main] DEBUG DocWordWriter - ... 8 ms for createTable() +2024-09-07 21:43:10,784 [main] DEBUG DocWordWriter - ... 88 ms for fillValues() +2024-09-07 21:43:10,803 [main] DEBUG DocWordWriter - ... 19 ms for widths (table) +2024-09-07 21:43:10,876 [main] DEBUG DocWordWriter - ... 73 ms for widths (columns) +2024-09-07 21:43:10,898 [main] DEBUG DocWordWriter - ... 22 ms for shadding/merging/styling (rows) +2024-09-07 21:43:10,928 [main] DEBUG DocWordWriter - ... 30 ms for borders +2024-09-07 21:43:10,928 [main] DEBUG DocWordWriter - ... 144 ms for formatTable() +2024-09-07 21:43:10,939 [main] INFO DocWordWriter - ... 264 ms total for insertTable() +2024-09-07 21:43:10,971 [main] INFO DocWordWriter - ... 25 ms for insertCaption(): Table 29 – Attributes of EnumeratedTypes::PhyHealthType +2024-09-07 21:43:11,010 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of PhyHealthType.', [116320 - 116358] +2024-09-07 21:43:11,020 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of PhyHealthType.', [116320 - 116359] +2024-09-07 21:43:11,026 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [116320 - 116320] +2024-09-07 21:43:11,037 [main] INFO DocWordWriter - ... 35 ms for insertCaptionRef() +2024-09-07 21:43:11,038 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:11,072 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML70' to Word document and to used list. +2024-09-07 21:43:11,132 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of EnumeratedTypes::ExtType +2024-09-07 21:43:11,156 [main] DEBUG DocWordWriter - ... 24 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:11,164 [main] DEBUG DocWordWriter - ... 8 ms for createTable() +2024-09-07 21:43:11,225 [main] DEBUG DocWordWriter - ... 61 ms for fillValues() +2024-09-07 21:43:11,243 [main] DEBUG DocWordWriter - ... 18 ms for widths (table) +2024-09-07 21:43:11,315 [main] DEBUG DocWordWriter - ... 72 ms for widths (columns) +2024-09-07 21:43:11,337 [main] DEBUG DocWordWriter - ... 22 ms for shadding/merging/styling (rows) +2024-09-07 21:43:11,361 [main] DEBUG DocWordWriter - ... 24 ms for borders +2024-09-07 21:43:11,361 [main] DEBUG DocWordWriter - ... 136 ms for formatTable() +2024-09-07 21:43:11,371 [main] INFO DocWordWriter - ... 229 ms total for insertTable() +2024-09-07 21:43:11,404 [main] INFO DocWordWriter - ... 25 ms for insertCaption(): Table 30 – Attributes of EnumeratedTypes::ExtType +2024-09-07 21:43:11,446 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of ExtType.', [116710 - 116742] +2024-09-07 21:43:11,456 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of ExtType.', [116710 - 116743] +2024-09-07 21:43:11,463 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [116710 - 116710] +2024-09-07 21:43:11,472 [main] INFO DocWordWriter - ... 35 ms for insertCaptionRef() +2024-09-07 21:43:11,472 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:11,507 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML71' to Word document and to used list. +2024-09-07 21:43:11,577 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of EnumeratedTypes::IntType +2024-09-07 21:43:11,602 [main] DEBUG DocWordWriter - ... 25 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:11,611 [main] DEBUG DocWordWriter - ... 9 ms for createTable() +2024-09-07 21:43:11,679 [main] DEBUG DocWordWriter - ... 68 ms for fillValues() +2024-09-07 21:43:11,698 [main] DEBUG DocWordWriter - ... 19 ms for widths (table) +2024-09-07 21:43:11,772 [main] DEBUG DocWordWriter - ... 74 ms for widths (columns) +2024-09-07 21:43:11,794 [main] DEBUG DocWordWriter - ... 22 ms for shadding/merging/styling (rows) +2024-09-07 21:43:11,818 [main] DEBUG DocWordWriter - ... 24 ms for borders +2024-09-07 21:43:11,818 [main] DEBUG DocWordWriter - ... 139 ms for formatTable() +2024-09-07 21:43:11,828 [main] INFO DocWordWriter - ... 241 ms total for insertTable() +2024-09-07 21:43:11,865 [main] INFO DocWordWriter - ... 29 ms for insertCaption(): Table 31 – Attributes of EnumeratedTypes::IntType +2024-09-07 21:43:11,907 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of IntType.', [117048 - 117080] +2024-09-07 21:43:11,916 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of IntType.', [117048 - 117081] +2024-09-07 21:43:11,923 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [117048 - 117048] +2024-09-07 21:43:11,932 [main] INFO DocWordWriter - ... 34 ms for insertCaptionRef() +2024-09-07 21:43:11,932 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:11,968 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML72' to Word document and to used list. +2024-09-07 21:43:12,040 [main] INFO DocWordWriter - --- insertTable() 3 rows: Attributes of EnumeratedTypes::EventType +2024-09-07 21:43:12,063 [main] DEBUG DocWordWriter - ... 23 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:12,072 [main] DEBUG DocWordWriter - ... 9 ms for createTable() +2024-09-07 21:43:12,162 [main] DEBUG DocWordWriter - ... 90 ms for fillValues() +2024-09-07 21:43:12,180 [main] DEBUG DocWordWriter - ... 18 ms for widths (table) +2024-09-07 21:43:12,259 [main] DEBUG DocWordWriter - ... 79 ms for widths (columns) +2024-09-07 21:43:12,282 [main] DEBUG DocWordWriter - ... 23 ms for shadding/merging/styling (rows) +2024-09-07 21:43:12,309 [main] DEBUG DocWordWriter - ... 27 ms for borders +2024-09-07 21:43:12,309 [main] DEBUG DocWordWriter - ... 147 ms for formatTable() +2024-09-07 21:43:12,319 [main] INFO DocWordWriter - ... 269 ms total for insertTable() +2024-09-07 21:43:12,360 [main] INFO DocWordWriter - ... 35 ms for insertCaption(): Table 32 – Attributes of EnumeratedTypes::EventType +2024-09-07 21:43:12,410 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of EventType.', [117379 - 117413] +2024-09-07 21:43:12,420 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of EventType.', [117379 - 117414] +2024-09-07 21:43:12,426 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [117379 - 117379] +2024-09-07 21:43:12,435 [main] INFO DocWordWriter - ... 37 ms for insertCaptionRef() +2024-09-07 21:43:12,435 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:12,467 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML73' to Word document and to used list. +2024-09-07 21:43:12,527 [main] INFO DocWordWriter - --- insertTable() 3 rows: Attributes of EnumeratedTypes::PSPAccType +2024-09-07 21:43:12,554 [main] DEBUG DocWordWriter - ... 27 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:12,562 [main] DEBUG DocWordWriter - ... 8 ms for createTable() +2024-09-07 21:43:12,651 [main] DEBUG DocWordWriter - ... 89 ms for fillValues() +2024-09-07 21:43:12,669 [main] DEBUG DocWordWriter - ... 18 ms for widths (table) +2024-09-07 21:43:12,748 [main] DEBUG DocWordWriter - ... 79 ms for widths (columns) +2024-09-07 21:43:12,771 [main] DEBUG DocWordWriter - ... 23 ms for shadding/merging/styling (rows) +2024-09-07 21:43:12,800 [main] DEBUG DocWordWriter - ... 28 ms for borders +2024-09-07 21:43:12,800 [main] DEBUG DocWordWriter - ... 149 ms for formatTable() +2024-09-07 21:43:12,809 [main] INFO DocWordWriter - ... 273 ms total for insertTable() +2024-09-07 21:43:12,855 [main] INFO DocWordWriter - ... 39 ms for insertCaption(): Table 33 – Attributes of EnumeratedTypes::PSPAccType +2024-09-07 21:43:12,896 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of PSPAccType.', [117763 - 117798] +2024-09-07 21:43:12,905 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of PSPAccType.', [117763 - 117799] +2024-09-07 21:43:12,911 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [117763 - 117763] +2024-09-07 21:43:12,921 [main] INFO DocWordWriter - ... 34 ms for insertCaptionRef() +2024-09-07 21:43:12,921 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:12,953 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML74' to Word document and to used list. +2024-09-07 21:43:13,016 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of EnumeratedTypes::ProtIdType +2024-09-07 21:43:13,047 [main] DEBUG DocWordWriter - ... 31 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:13,058 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 21:43:13,124 [main] DEBUG DocWordWriter - ... 66 ms for fillValues() +2024-09-07 21:43:13,142 [main] DEBUG DocWordWriter - ... 18 ms for widths (table) +2024-09-07 21:43:13,221 [main] DEBUG DocWordWriter - ... 79 ms for widths (columns) +2024-09-07 21:43:13,243 [main] DEBUG DocWordWriter - ... 22 ms for shadding/merging/styling (rows) +2024-09-07 21:43:13,269 [main] DEBUG DocWordWriter - ... 26 ms for borders +2024-09-07 21:43:13,269 [main] DEBUG DocWordWriter - ... 145 ms for formatTable() +2024-09-07 21:43:13,278 [main] INFO DocWordWriter - ... 253 ms total for insertTable() +2024-09-07 21:43:13,328 [main] INFO DocWordWriter - ... 42 ms for insertCaption(): Table 34 – Attributes of EnumeratedTypes::ProtIdType +2024-09-07 21:43:13,371 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of ProtIdType.', [118228 - 118263] +2024-09-07 21:43:13,381 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of ProtIdType.', [118228 - 118264] +2024-09-07 21:43:13,387 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [118228 - 118228] +2024-09-07 21:43:13,397 [main] INFO DocWordWriter - ... 36 ms for insertCaptionRef() +2024-09-07 21:43:13,397 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:13,437 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML75' to Word document and to used list. +2024-09-07 21:43:13,501 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of EnumeratedTypes::TimSyncIssueType +2024-09-07 21:43:13,559 [main] DEBUG DocWordWriter - ... 58 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:13,576 [main] DEBUG DocWordWriter - ... 17 ms for createTable() +2024-09-07 21:43:13,641 [main] DEBUG DocWordWriter - ... 65 ms for fillValues() +2024-09-07 21:43:13,658 [main] DEBUG DocWordWriter - ... 17 ms for widths (table) +2024-09-07 21:43:13,731 [main] DEBUG DocWordWriter - ... 72 ms for widths (columns) +2024-09-07 21:43:13,752 [main] DEBUG DocWordWriter - ... 22 ms for shadding/merging/styling (rows) +2024-09-07 21:43:13,783 [main] DEBUG DocWordWriter - ... 31 ms for borders +2024-09-07 21:43:13,784 [main] DEBUG DocWordWriter - ... 143 ms for formatTable() +2024-09-07 21:43:13,793 [main] INFO DocWordWriter - ... 283 ms total for insertTable() +2024-09-07 21:43:13,851 [main] INFO DocWordWriter - ... 50 ms for insertCaption(): Table 35 – Attributes of EnumeratedTypes::TimSyncIssueType +2024-09-07 21:43:13,896 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of TimSyncIssueType.', [118598 - 118639] +2024-09-07 21:43:13,906 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of TimSyncIssueType.', [118598 - 118640] +2024-09-07 21:43:13,913 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [118598 - 118598] +2024-09-07 21:43:13,923 [main] INFO DocWordWriter - ... 37 ms for insertCaptionRef() +2024-09-07 21:43:13,924 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:13,957 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML76' to Word document and to used list. +2024-09-07 21:43:14,024 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of EnumeratedTypes::SecurityProfileType +2024-09-07 21:43:14,051 [main] DEBUG DocWordWriter - ... 27 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:14,061 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-07 21:43:14,130 [main] DEBUG DocWordWriter - ... 69 ms for fillValues() +2024-09-07 21:43:14,152 [main] DEBUG DocWordWriter - ... 22 ms for widths (table) +2024-09-07 21:43:14,235 [main] DEBUG DocWordWriter - ... 83 ms for widths (columns) +2024-09-07 21:43:14,258 [main] DEBUG DocWordWriter - ... 23 ms for shadding/merging/styling (rows) +2024-09-07 21:43:14,286 [main] DEBUG DocWordWriter - ... 28 ms for borders +2024-09-07 21:43:14,286 [main] DEBUG DocWordWriter - ... 156 ms for formatTable() +2024-09-07 21:43:14,296 [main] INFO DocWordWriter - ... 262 ms total for insertTable() +2024-09-07 21:43:14,360 [main] INFO DocWordWriter - ... 56 ms for insertCaption(): Table 36 – Attributes of EnumeratedTypes::SecurityProfileType +2024-09-07 21:43:14,402 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of SecurityProfileType.', [119192 - 119236] +2024-09-07 21:43:14,412 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of SecurityProfileType.', [119192 - 119237] +2024-09-07 21:43:14,419 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [119192 - 119192] +2024-09-07 21:43:14,429 [main] INFO DocWordWriter - ... 38 ms for insertCaptionRef() +2024-09-07 21:43:14,429 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:14,470 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML77' to Word document and to used list. +2024-09-07 21:43:14,528 [main] INFO DocWordWriter - closing MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 21:43:15,846 [main] INFO DocWordWriter - opening MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 21:43:16,818 [main] INFO OptimOptions - setting view to normal +2024-09-07 21:43:16,852 [main] INFO OptimOptions - disabling pagination +2024-09-07 21:43:16,887 [main] INFO OptimOptions - disabling field update +2024-09-07 21:43:16,994 [main] INFO OptimOptions - disabling screen updating +2024-09-07 21:43:17,003 [main] DEBUG DocWordWriter - current(_optimisedOptions): OptimOptions [viewId=1, normView=true, paginate=false, updFld=false, updScr=false, fastSave=false, spelling=false, grammar=false] +2024-09-07 21:43:17,113 [main] INFO Util - time=[0:00:02.611] closed and reopened document. +2024-09-07 21:43:17,114 [main] INFO Util - +2024-09-07 21:43:17,188 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of EnumeratedTypes::TimSyncSrcType +2024-09-07 21:43:17,213 [main] DEBUG DocWordWriter - ... 25 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:17,221 [main] DEBUG DocWordWriter - ... 8 ms for createTable() +2024-09-07 21:43:17,280 [main] DEBUG DocWordWriter - ... 59 ms for fillValues() +2024-09-07 21:43:17,296 [main] DEBUG DocWordWriter - ... 16 ms for widths (table) +2024-09-07 21:43:17,373 [main] DEBUG DocWordWriter - ... 77 ms for widths (columns) +2024-09-07 21:43:17,394 [main] DEBUG DocWordWriter - ... 20 ms for shadding/merging/styling (rows) +2024-09-07 21:43:17,416 [main] DEBUG DocWordWriter - ... 23 ms for borders +2024-09-07 21:43:17,416 [main] DEBUG DocWordWriter - ... 136 ms for formatTable() +2024-09-07 21:43:17,426 [main] INFO DocWordWriter - ... 228 ms total for insertTable() +2024-09-07 21:43:17,449 [main] INFO DocWordWriter - ... 17 ms for insertCaption(): Table 37 – Attributes of EnumeratedTypes::TimSyncSrcType +2024-09-07 21:43:17,489 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of TimSyncSrcType.', [119605 - 119644] +2024-09-07 21:43:17,497 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of TimSyncSrcType.', [119605 - 119645] +2024-09-07 21:43:17,503 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [119605 - 119605] +2024-09-07 21:43:17,512 [main] INFO DocWordWriter - ... 33 ms for insertCaptionRef() +2024-09-07 21:43:17,512 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:17,544 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML78' to Word document and to used list. +2024-09-07 21:43:17,605 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of EnumeratedTypes::LnkType +2024-09-07 21:43:17,627 [main] DEBUG DocWordWriter - ... 22 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:17,636 [main] DEBUG DocWordWriter - ... 9 ms for createTable() +2024-09-07 21:43:17,698 [main] DEBUG DocWordWriter - ... 62 ms for fillValues() +2024-09-07 21:43:17,718 [main] DEBUG DocWordWriter - ... 20 ms for widths (table) +2024-09-07 21:43:17,788 [main] DEBUG DocWordWriter - ... 70 ms for widths (columns) +2024-09-07 21:43:17,810 [main] DEBUG DocWordWriter - ... 22 ms for shadding/merging/styling (rows) +2024-09-07 21:43:17,833 [main] DEBUG DocWordWriter - ... 23 ms for borders +2024-09-07 21:43:17,833 [main] DEBUG DocWordWriter - ... 135 ms for formatTable() +2024-09-07 21:43:17,842 [main] INFO DocWordWriter - ... 228 ms total for insertTable() +2024-09-07 21:43:17,869 [main] INFO DocWordWriter - ... 20 ms for insertCaption(): Table 38 – Attributes of EnumeratedTypes::LnkType +2024-09-07 21:43:17,910 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of LnkType.', [120017 - 120049] +2024-09-07 21:43:17,920 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of LnkType.', [120017 - 120050] +2024-09-07 21:43:17,926 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [120017 - 120017] +2024-09-07 21:43:17,935 [main] INFO DocWordWriter - ... 35 ms for insertCaptionRef() +2024-09-07 21:43:17,935 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:17,944 [main] INFO Util - time=[0:00:16.466] replaced [120240 - 120240] PACKAGE EnumeratedTypes, figures (14 before ), tables (16 before 22 mine)... +2024-09-07 21:43:17,944 [main] INFO Util - +2024-09-07 21:43:17,948 [main] INFO AbstractWordWriter - replacing [120286 - 120317] PACKAGE Overview, figures (14 before ), tables (38 before )... +2024-09-07 21:43:17,975 [main] INFO AbstractWordWriter - writing doc for package Overview ... +2024-09-07 21:43:18,115 [main] INFO DocWordWriter - ... 16 ms for insertCaption(): Figure 15 – Class diagram Overview::Part7 Classes Overview +2024-09-07 21:43:18,178 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': IEC 62351-7 Objects overview', [120905 - 120935] +2024-09-07 21:43:18,184 [main] TRACE DocWordWriter - prepend : range.txt = ': IEC 62351-7 Objects overview', [120905 - 120935] +2024-09-07 21:43:18,190 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [120905 - 120905] +2024-09-07 21:43:18,199 [main] INFO DocWordWriter - ... 26 ms for insertCaptionRef() +2024-09-07 21:43:18,199 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:18,211 [main] INFO Util - time=[0:00:00.267] replaced [120819 - 120970] PACKAGE Overview, figures (14 before 1 mine), tables (38 before )... +2024-09-07 21:43:18,211 [main] INFO Util - +2024-09-07 21:43:18,215 [main] INFO AbstractWordWriter - replacing [121003 - 121045] PACKAGE Environmental Agent, figures (15 before ), tables (38 before )... +2024-09-07 21:43:18,241 [main] INFO AbstractWordWriter - writing doc for package Environmental Agent ... +2024-09-07 21:43:18,381 [main] INFO DocWordWriter - ... 18 ms for insertCaption(): Figure 16 – Class diagram Environmental Agent::Environmental +2024-09-07 21:43:18,446 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': The Environmental agent class.', [121341 - 121373] +2024-09-07 21:43:18,453 [main] TRACE DocWordWriter - prepend : range.txt = ': The Environmental agent class.', [121341 - 121373] +2024-09-07 21:43:18,459 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [121341 - 121341] +2024-09-07 21:43:18,467 [main] INFO DocWordWriter - ... 25 ms for insertCaptionRef() +2024-09-07 21:43:18,467 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:18,502 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML79' to Word document and to used list. +2024-09-07 21:43:18,560 [main] INFO DocWordWriter - --- insertTable() 14 rows: Attributes of Environmental Agent::Environmental +2024-09-07 21:43:18,583 [main] DEBUG DocWordWriter - ... 23 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:18,591 [main] DEBUG DocWordWriter - ... 8 ms for createTable() +2024-09-07 21:43:18,986 [main] DEBUG DocWordWriter - ... 395 ms for fillValues() +2024-09-07 21:43:19,012 [main] DEBUG DocWordWriter - ... 26 ms for widths (table) +2024-09-07 21:43:19,140 [main] DEBUG DocWordWriter - ... 128 ms for widths (columns) +2024-09-07 21:43:19,163 [main] DEBUG DocWordWriter - ... 23 ms for shadding/merging/styling (rows) +2024-09-07 21:43:19,212 [main] DEBUG DocWordWriter - ... 49 ms for borders +2024-09-07 21:43:19,212 [main] DEBUG DocWordWriter - ... 226 ms for formatTable() +2024-09-07 21:43:19,222 [main] INFO DocWordWriter - ... 652 ms total for insertTable() +2024-09-07 21:43:19,257 [main] INFO DocWordWriter - ... 28 ms for insertCaption(): Table 39 – Attributes of Environmental Agent::Environmental +2024-09-07 21:43:19,299 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Environmental.', [121724 - 121762] +2024-09-07 21:43:19,309 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Environmental.', [121724 - 121763] +2024-09-07 21:43:19,317 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [121724 - 121724] +2024-09-07 21:43:19,324 [main] INFO DocWordWriter - ... 35 ms for insertCaptionRef() +2024-09-07 21:43:19,325 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:19,360 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML80' to Word document and to used list. +2024-09-07 21:43:19,422 [main] INFO DocWordWriter - --- insertTable() 8 rows: Attributes of Environmental Agent::PSUPEntry +2024-09-07 21:43:19,446 [main] DEBUG DocWordWriter - ... 24 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:19,457 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 21:43:19,695 [main] DEBUG DocWordWriter - ... 238 ms for fillValues() +2024-09-07 21:43:19,717 [main] DEBUG DocWordWriter - ... 22 ms for widths (table) +2024-09-07 21:43:19,819 [main] DEBUG DocWordWriter - ... 102 ms for widths (columns) +2024-09-07 21:43:19,841 [main] DEBUG DocWordWriter - ... 22 ms for shadding/merging/styling (rows) +2024-09-07 21:43:19,877 [main] DEBUG DocWordWriter - ... 36 ms for borders +2024-09-07 21:43:19,877 [main] DEBUG DocWordWriter - ... 182 ms for formatTable() +2024-09-07 21:43:19,886 [main] INFO DocWordWriter - ... 455 ms total for insertTable() +2024-09-07 21:43:19,924 [main] INFO DocWordWriter - ... 30 ms for insertCaption(): Table 40 – Attributes of Environmental Agent::PSUPEntry +2024-09-07 21:43:19,965 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of PSUPEntry.', [123390 - 123424] +2024-09-07 21:43:19,974 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of PSUPEntry.', [123390 - 123425] +2024-09-07 21:43:19,981 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [123390 - 123390] +2024-09-07 21:43:19,990 [main] INFO DocWordWriter - ... 35 ms for insertCaptionRef() +2024-09-07 21:43:19,990 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:20,023 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML81' to Word document and to used list. +2024-09-07 21:43:20,089 [main] INFO DocWordWriter - --- insertTable() 3 rows: Attributes of Environmental Agent::Notification +2024-09-07 21:43:20,114 [main] DEBUG DocWordWriter - ... 25 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:20,122 [main] DEBUG DocWordWriter - ... 8 ms for createTable() +2024-09-07 21:43:20,220 [main] DEBUG DocWordWriter - ... 98 ms for fillValues() +2024-09-07 21:43:20,239 [main] DEBUG DocWordWriter - ... 19 ms for widths (table) +2024-09-07 21:43:20,314 [main] DEBUG DocWordWriter - ... 75 ms for widths (columns) +2024-09-07 21:43:20,335 [main] DEBUG DocWordWriter - ... 21 ms for shadding/merging/styling (rows) +2024-09-07 21:43:20,362 [main] DEBUG DocWordWriter - ... 27 ms for borders +2024-09-07 21:43:20,362 [main] DEBUG DocWordWriter - ... 142 ms for formatTable() +2024-09-07 21:43:20,372 [main] INFO DocWordWriter - ... 273 ms total for insertTable() +2024-09-07 21:43:20,413 [main] INFO DocWordWriter - ... 32 ms for insertCaption(): Table 41 – Attributes of Environmental Agent::Notification +2024-09-07 21:43:20,455 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Notification.', [124394 - 124431] +2024-09-07 21:43:20,465 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Notification.', [124394 - 124432] +2024-09-07 21:43:20,472 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [124394 - 124394] +2024-09-07 21:43:20,481 [main] INFO DocWordWriter - ... 36 ms for insertCaptionRef() +2024-09-07 21:43:20,481 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:20,516 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML82' to Word document and to used list. +2024-09-07 21:43:20,586 [main] INFO DocWordWriter - --- insertTable() 6 rows: Attributes of Environmental Agent::SecurityNotification +2024-09-07 21:43:20,618 [main] DEBUG DocWordWriter - ... 32 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:20,628 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-07 21:43:20,810 [main] DEBUG DocWordWriter - ... 182 ms for fillValues() +2024-09-07 21:43:20,832 [main] DEBUG DocWordWriter - ... 22 ms for widths (table) +2024-09-07 21:43:20,919 [main] DEBUG DocWordWriter - ... 87 ms for widths (columns) +2024-09-07 21:43:20,942 [main] DEBUG DocWordWriter - ... 23 ms for shadding/merging/styling (rows) +2024-09-07 21:43:20,974 [main] DEBUG DocWordWriter - ... 32 ms for borders +2024-09-07 21:43:20,974 [main] DEBUG DocWordWriter - ... 164 ms for formatTable() +2024-09-07 21:43:20,985 [main] INFO DocWordWriter - ... 388 ms total for insertTable() +2024-09-07 21:43:21,030 [main] INFO DocWordWriter - ... 38 ms for insertCaption(): Table 42 – Attributes of Environmental Agent::SecurityNotification +2024-09-07 21:43:21,074 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of SecurityNotification.', [124974 - 125019] +2024-09-07 21:43:21,084 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of SecurityNotification.', [124974 - 125020] +2024-09-07 21:43:21,091 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [124974 - 124974] +2024-09-07 21:43:21,101 [main] INFO DocWordWriter - ... 37 ms for insertCaptionRef() +2024-09-07 21:43:21,101 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:21,110 [main] INFO Util - time=[0:00:02.899] replaced [125619 - 125619] PACKAGE Environmental Agent, figures (15 before 1 mine), tables (38 before 4 mine)... +2024-09-07 21:43:21,110 [main] INFO Util - +2024-09-07 21:43:21,114 [main] INFO AbstractWordWriter - replacing [125663 - 125695] PACKAGE IED Agent, figures (16 before ), tables (42 before )... +2024-09-07 21:43:21,141 [main] INFO AbstractWordWriter - writing doc for package IED Agent ... +2024-09-07 21:43:21,312 [main] INFO DocWordWriter - ... 24 ms for insertCaption(): Figure 17 – Class diagram IED Agent::IED +2024-09-07 21:43:21,376 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': The Intelligent Electronic Device class attributes', [125981 - 126033] +2024-09-07 21:43:21,382 [main] TRACE DocWordWriter - prepend : range.txt = ': The Intelligent Electronic Device class attributes', [125981 - 126033] +2024-09-07 21:43:21,388 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [125981 - 125981] +2024-09-07 21:43:21,398 [main] INFO DocWordWriter - ... 28 ms for insertCaptionRef() +2024-09-07 21:43:21,398 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:21,432 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML83' to Word document and to used list. +2024-09-07 21:43:21,494 [main] INFO DocWordWriter - --- insertTable() 38 rows: Attributes of IED Agent::IED +2024-09-07 21:43:21,519 [main] DEBUG DocWordWriter - ... 25 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:21,534 [main] DEBUG DocWordWriter - ... 15 ms for createTable() +2024-09-07 21:43:22,724 [main] DEBUG DocWordWriter - ... 1190 ms for fillValues() +2024-09-07 21:43:22,768 [main] DEBUG DocWordWriter - ... 44 ms for widths (table) +2024-09-07 21:43:22,986 [main] DEBUG DocWordWriter - ... 218 ms for widths (columns) +2024-09-07 21:43:23,012 [main] DEBUG DocWordWriter - ... 26 ms for shadding/merging/styling (rows) +2024-09-07 21:43:23,107 [main] DEBUG DocWordWriter - ... 95 ms for borders +2024-09-07 21:43:23,107 [main] DEBUG DocWordWriter - ... 383 ms for formatTable() +2024-09-07 21:43:23,117 [main] INFO DocWordWriter - ... 1613 ms total for insertTable() +2024-09-07 21:43:23,183 [main] INFO DocWordWriter - ... 58 ms for insertCaption(): Table 43 – Attributes of IED Agent::IED +2024-09-07 21:43:23,230 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of IED.', [126373 - 126401] +2024-09-07 21:43:23,242 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of IED.', [126373 - 126402] +2024-09-07 21:43:23,248 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [126373 - 126373] +2024-09-07 21:43:23,259 [main] INFO DocWordWriter - ... 38 ms for insertCaptionRef() +2024-09-07 21:43:23,259 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:23,293 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML84' to Word document and to used list. +2024-09-07 21:43:23,358 [main] INFO DocWordWriter - --- insertTable() 9 rows: Attributes of IED Agent::CPUEntry +2024-09-07 21:43:23,384 [main] DEBUG DocWordWriter - ... 26 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:23,395 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 21:43:23,672 [main] DEBUG DocWordWriter - ... 277 ms for fillValues() +2024-09-07 21:43:23,695 [main] DEBUG DocWordWriter - ... 23 ms for widths (table) +2024-09-07 21:43:23,813 [main] DEBUG DocWordWriter - ... 118 ms for widths (columns) +2024-09-07 21:43:23,836 [main] DEBUG DocWordWriter - ... 23 ms for shadding/merging/styling (rows) +2024-09-07 21:43:23,874 [main] DEBUG DocWordWriter - ... 38 ms for borders +2024-09-07 21:43:23,874 [main] DEBUG DocWordWriter - ... 202 ms for formatTable() +2024-09-07 21:43:23,883 [main] INFO DocWordWriter - ... 516 ms total for insertTable() +2024-09-07 21:43:23,943 [main] INFO DocWordWriter - ... 53 ms for insertCaption(): Table 44 – Attributes of IED Agent::CPUEntry +2024-09-07 21:43:23,986 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of CPUEntry.', [130924 - 130957] +2024-09-07 21:43:23,997 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of CPUEntry.', [130924 - 130958] +2024-09-07 21:43:24,004 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [130924 - 130924] +2024-09-07 21:43:24,014 [main] INFO DocWordWriter - ... 38 ms for insertCaptionRef() +2024-09-07 21:43:24,015 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:24,053 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML85' to Word document and to used list. +2024-09-07 21:43:24,121 [main] INFO DocWordWriter - --- insertTable() 10 rows: Attributes of IED Agent::EXTEntry +2024-09-07 21:43:24,145 [main] DEBUG DocWordWriter - ... 24 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:24,156 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 21:43:24,459 [main] DEBUG DocWordWriter - ... 303 ms for fillValues() +2024-09-07 21:43:24,482 [main] DEBUG DocWordWriter - ... 23 ms for widths (table) +2024-09-07 21:43:24,594 [main] DEBUG DocWordWriter - ... 112 ms for widths (columns) +2024-09-07 21:43:24,619 [main] DEBUG DocWordWriter - ... 25 ms for shadding/merging/styling (rows) +2024-09-07 21:43:24,660 [main] DEBUG DocWordWriter - ... 41 ms for borders +2024-09-07 21:43:24,660 [main] DEBUG DocWordWriter - ... 201 ms for formatTable() +2024-09-07 21:43:24,670 [main] INFO DocWordWriter - ... 539 ms total for insertTable() +2024-09-07 21:43:24,734 [main] INFO DocWordWriter - ... 58 ms for insertCaption(): Table 45 – Attributes of IED Agent::EXTEntry +2024-09-07 21:43:24,778 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of EXTEntry.', [131899 - 131932] +2024-09-07 21:43:24,789 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of EXTEntry.', [131899 - 131933] +2024-09-07 21:43:24,797 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [131899 - 131899] +2024-09-07 21:43:24,808 [main] INFO DocWordWriter - ... 39 ms for insertCaptionRef() +2024-09-07 21:43:24,808 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:24,846 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML86' to Word document and to used list. +2024-09-07 21:43:24,909 [main] INFO DocWordWriter - --- insertTable() 7 rows: Attributes of IED Agent::STOREEntry +2024-09-07 21:43:24,934 [main] DEBUG DocWordWriter - ... 25 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:24,944 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-07 21:43:25,166 [main] DEBUG DocWordWriter - ... 222 ms for fillValues() +2024-09-07 21:43:25,189 [main] DEBUG DocWordWriter - ... 23 ms for widths (table) +2024-09-07 21:43:25,281 [main] DEBUG DocWordWriter - ... 92 ms for widths (columns) +2024-09-07 21:43:25,305 [main] DEBUG DocWordWriter - ... 24 ms for shadding/merging/styling (rows) +2024-09-07 21:43:25,340 [main] DEBUG DocWordWriter - ... 35 ms for borders +2024-09-07 21:43:25,340 [main] DEBUG DocWordWriter - ... 174 ms for formatTable() +2024-09-07 21:43:25,350 [main] INFO DocWordWriter - ... 431 ms total for insertTable() +2024-09-07 21:43:25,419 [main] INFO DocWordWriter - ... 62 ms for insertCaption(): Table 46 – Attributes of IED Agent::STOREEntry +2024-09-07 21:43:25,461 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of STOREEntry.', [133028 - 133063] +2024-09-07 21:43:25,470 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of STOREEntry.', [133028 - 133064] +2024-09-07 21:43:25,477 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [133028 - 133028] +2024-09-07 21:43:25,487 [main] INFO DocWordWriter - ... 36 ms for insertCaptionRef() +2024-09-07 21:43:25,487 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:25,521 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML87' to Word document and to used list. +2024-09-07 21:43:25,584 [main] INFO DocWordWriter - --- insertTable() 7 rows: Attributes of IED Agent::Notification +2024-09-07 21:43:25,611 [main] DEBUG DocWordWriter - ... 27 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:25,623 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-07 21:43:25,846 [main] DEBUG DocWordWriter - ... 223 ms for fillValues() +2024-09-07 21:43:25,869 [main] DEBUG DocWordWriter - ... 23 ms for widths (table) +2024-09-07 21:43:25,963 [main] DEBUG DocWordWriter - ... 94 ms for widths (columns) +2024-09-07 21:43:25,991 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-07 21:43:26,030 [main] DEBUG DocWordWriter - ... 39 ms for borders +2024-09-07 21:43:26,031 [main] DEBUG DocWordWriter - ... 185 ms for formatTable() +2024-09-07 21:43:26,040 [main] INFO DocWordWriter - ... 447 ms total for insertTable() +2024-09-07 21:43:26,116 [main] INFO DocWordWriter - ... 70 ms for insertCaption(): Table 47 – Attributes of IED Agent::Notification +2024-09-07 21:43:26,160 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Notification.', [133820 - 133857] +2024-09-07 21:43:26,170 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Notification.', [133820 - 133858] +2024-09-07 21:43:26,176 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [133820 - 133820] +2024-09-07 21:43:26,187 [main] INFO DocWordWriter - ... 38 ms for insertCaptionRef() +2024-09-07 21:43:26,187 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:26,222 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML88' to Word document and to used list. +2024-09-07 21:43:26,287 [main] INFO DocWordWriter - --- insertTable() 7 rows: Attributes of IED Agent::SecurityNotification +2024-09-07 21:43:26,312 [main] DEBUG DocWordWriter - ... 25 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:26,324 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-07 21:43:26,546 [main] DEBUG DocWordWriter - ... 222 ms for fillValues() +2024-09-07 21:43:26,569 [main] DEBUG DocWordWriter - ... 23 ms for widths (table) +2024-09-07 21:43:26,660 [main] DEBUG DocWordWriter - ... 91 ms for widths (columns) +2024-09-07 21:43:26,683 [main] DEBUG DocWordWriter - ... 23 ms for shadding/merging/styling (rows) +2024-09-07 21:43:26,719 [main] DEBUG DocWordWriter - ... 36 ms for borders +2024-09-07 21:43:26,719 [main] DEBUG DocWordWriter - ... 173 ms for formatTable() +2024-09-07 21:43:26,728 [main] INFO DocWordWriter - ... 432 ms total for insertTable() +2024-09-07 21:43:26,812 [main] INFO DocWordWriter - ... 76 ms for insertCaption(): Table 48 – Attributes of IED Agent::SecurityNotification +2024-09-07 21:43:26,854 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of SecurityNotification.', [134839 - 134884] +2024-09-07 21:43:26,865 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of SecurityNotification.', [134839 - 134885] +2024-09-07 21:43:26,873 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [134839 - 134839] +2024-09-07 21:43:26,884 [main] INFO DocWordWriter - ... 39 ms for insertCaptionRef() +2024-09-07 21:43:26,884 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:26,894 [main] INFO Util - time=[0:00:05.784] replaced [135824 - 135824] PACKAGE IED Agent, figures (16 before 1 mine), tables (42 before 6 mine)... +2024-09-07 21:43:26,894 [main] INFO Util - +2024-09-07 21:43:26,898 [main] INFO AbstractWordWriter - replacing [135858 - 135909] PACKAGE Application Protocols Agents, figures (17 before ), tables (48 before )... +2024-09-07 21:43:26,926 [main] INFO AbstractWordWriter - writing doc for package Application Protocols Agents ... +2024-09-07 21:43:27,026 [main] INFO AbstractWordWriter - writing doc for package Common objects ... +2024-09-07 21:43:27,170 [main] INFO DocWordWriter - ... 35 ms for insertCaption(): Figure 18 – Class diagram Common objects::Application Protocol common objects +2024-09-07 21:43:27,234 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': Application Protocol common objects', [136806 - 136843] +2024-09-07 21:43:27,240 [main] TRACE DocWordWriter - prepend : range.txt = ': Application Protocol common objects', [136806 - 136843] +2024-09-07 21:43:27,247 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [136806 - 136806] +2024-09-07 21:43:27,258 [main] INFO DocWordWriter - ... 28 ms for insertCaptionRef() +2024-09-07 21:43:27,258 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:27,293 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML89' to Word document and to used list. +2024-09-07 21:43:27,353 [main] INFO DocWordWriter - closing MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 21:43:28,754 [main] INFO DocWordWriter - opening MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 21:43:29,755 [main] INFO OptimOptions - setting view to normal +2024-09-07 21:43:29,811 [main] INFO OptimOptions - disabling pagination +2024-09-07 21:43:29,855 [main] INFO OptimOptions - disabling field update +2024-09-07 21:43:29,941 [main] INFO OptimOptions - disabling screen updating +2024-09-07 21:43:29,963 [main] DEBUG DocWordWriter - current(_optimisedOptions): OptimOptions [viewId=1, normView=true, paginate=false, updFld=false, updScr=false, fastSave=false, spelling=false, grammar=false] +2024-09-07 21:43:30,047 [main] INFO Util - time=[0:00:02.718] closed and reopened document. +2024-09-07 21:43:30,047 [main] INFO Util - +2024-09-07 21:43:30,108 [main] INFO DocWordWriter - --- insertTable() 9 rows: Attributes of Common objects::CommonProtocolInfo +2024-09-07 21:43:30,137 [main] DEBUG DocWordWriter - ... 29 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:30,148 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 21:43:30,434 [main] DEBUG DocWordWriter - ... 286 ms for fillValues() +2024-09-07 21:43:30,457 [main] DEBUG DocWordWriter - ... 22 ms for widths (table) +2024-09-07 21:43:30,560 [main] DEBUG DocWordWriter - ... 103 ms for widths (columns) +2024-09-07 21:43:30,584 [main] DEBUG DocWordWriter - ... 24 ms for shadding/merging/styling (rows) +2024-09-07 21:43:30,624 [main] DEBUG DocWordWriter - ... 40 ms for borders +2024-09-07 21:43:30,624 [main] DEBUG DocWordWriter - ... 190 ms for formatTable() +2024-09-07 21:43:30,634 [main] INFO DocWordWriter - ... 516 ms total for insertTable() +2024-09-07 21:43:30,663 [main] INFO DocWordWriter - ... 20 ms for insertCaption(): Table 49 – Attributes of Common objects::CommonProtocolInfo +2024-09-07 21:43:30,707 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of CommonProtocolInfo.', [137318 - 137361] +2024-09-07 21:43:30,716 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of CommonProtocolInfo.', [137318 - 137362] +2024-09-07 21:43:30,723 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [137318 - 137318] +2024-09-07 21:43:30,732 [main] INFO DocWordWriter - ... 35 ms for insertCaptionRef() +2024-09-07 21:43:30,732 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:30,800 [main] INFO AbstractWordWriter - writing doc for package IEC62351-3 ed.2 Agent ... +2024-09-07 21:43:30,971 [main] INFO DocWordWriter - ... 19 ms for insertCaption(): Figure 19 – Class diagram IEC62351-3 ed.2 Agent::IEC 62351-3 ed.2 Agent Relationships +2024-09-07 21:43:31,038 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': This picture depicts the relationship between IEC 62351-3 ed.2 objects', [139022 - 139094] +2024-09-07 21:43:31,045 [main] TRACE DocWordWriter - prepend : range.txt = ': This picture depicts the relationship between IEC 62351-3 ed.2 objects', [139022 - 139094] +2024-09-07 21:43:31,052 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [139022 - 139022] +2024-09-07 21:43:31,062 [main] INFO DocWordWriter - ... 30 ms for insertCaptionRef() +2024-09-07 21:43:31,062 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:31,102 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML90' to Word document and to used list. +2024-09-07 21:43:31,167 [main] INFO DocWordWriter - --- insertTable() 36 rows: Attributes of IEC62351-3 ed.2 Agent::IEC62351-3ed2security +2024-09-07 21:43:31,193 [main] DEBUG DocWordWriter - ... 26 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:31,206 [main] DEBUG DocWordWriter - ... 13 ms for createTable() +2024-09-07 21:43:32,243 [main] DEBUG DocWordWriter - ... 1037 ms for fillValues() +2024-09-07 21:43:32,290 [main] DEBUG DocWordWriter - ... 47 ms for widths (table) +2024-09-07 21:43:32,512 [main] DEBUG DocWordWriter - ... 222 ms for widths (columns) +2024-09-07 21:43:32,539 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-07 21:43:32,627 [main] DEBUG DocWordWriter - ... 88 ms for borders +2024-09-07 21:43:32,627 [main] DEBUG DocWordWriter - ... 384 ms for formatTable() +2024-09-07 21:43:32,638 [main] INFO DocWordWriter - ... 1460 ms total for insertTable() +2024-09-07 21:43:32,680 [main] INFO DocWordWriter - ... 35 ms for insertCaption(): Table 50 – Attributes of IEC62351-3 ed.2 Agent::IEC62351-3ed2security +2024-09-07 21:43:32,726 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of IEC62351-3ed2security.', [139231 - 139277] +2024-09-07 21:43:32,737 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of IEC62351-3ed2security.', [139231 - 139278] +2024-09-07 21:43:32,744 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [139231 - 139231] +2024-09-07 21:43:32,753 [main] INFO DocWordWriter - ... 37 ms for insertCaptionRef() +2024-09-07 21:43:32,753 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:32,788 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML91' to Word document and to used list. +2024-09-07 21:43:32,856 [main] INFO DocWordWriter - --- insertTable() 50 rows: Attributes of IEC62351-3 ed.2 Agent::TLSSession +2024-09-07 21:43:32,886 [main] DEBUG DocWordWriter - ... 30 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:32,904 [main] DEBUG DocWordWriter - ... 18 ms for createTable() +2024-09-07 21:43:34,395 [main] DEBUG DocWordWriter - ... 1491 ms for fillValues() +2024-09-07 21:43:34,454 [main] DEBUG DocWordWriter - ... 59 ms for widths (table) +2024-09-07 21:43:34,724 [main] DEBUG DocWordWriter - ... 270 ms for widths (columns) +2024-09-07 21:43:34,751 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-07 21:43:34,866 [main] DEBUG DocWordWriter - ... 115 ms for borders +2024-09-07 21:43:34,866 [main] DEBUG DocWordWriter - ... 471 ms for formatTable() +2024-09-07 21:43:34,876 [main] INFO DocWordWriter - ... 2010 ms total for insertTable() +2024-09-07 21:43:34,932 [main] INFO DocWordWriter - ... 49 ms for insertCaption(): Table 51 – Attributes of IEC62351-3 ed.2 Agent::TLSSession +2024-09-07 21:43:34,981 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of TLSSession.', [144154 - 144189] +2024-09-07 21:43:34,992 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of TLSSession.', [144154 - 144190] +2024-09-07 21:43:34,998 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [144154 - 144154] +2024-09-07 21:43:35,009 [main] INFO DocWordWriter - ... 39 ms for insertCaptionRef() +2024-09-07 21:43:35,009 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:35,045 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML105' to Word document and to used list. +2024-09-07 21:43:35,122 [main] INFO DocWordWriter - --- insertTable() 42 rows: Attributes of IEC62351-3 ed.2 Agent::Summary +2024-09-07 21:43:35,149 [main] DEBUG DocWordWriter - ... 27 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:35,170 [main] DEBUG DocWordWriter - ... 21 ms for createTable() +2024-09-07 21:43:36,475 [main] DEBUG DocWordWriter - ... 1305 ms for fillValues() +2024-09-07 21:43:36,523 [main] DEBUG DocWordWriter - ... 48 ms for widths (table) +2024-09-07 21:43:36,773 [main] DEBUG DocWordWriter - ... 250 ms for widths (columns) +2024-09-07 21:43:36,800 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-07 21:43:36,903 [main] DEBUG DocWordWriter - ... 103 ms for borders +2024-09-07 21:43:36,903 [main] DEBUG DocWordWriter - ... 428 ms for formatTable() +2024-09-07 21:43:36,913 [main] INFO DocWordWriter - ... 1781 ms total for insertTable() +2024-09-07 21:43:36,975 [main] INFO DocWordWriter - ... 53 ms for insertCaption(): Table 52 – Attributes of IEC62351-3 ed.2 Agent::Summary +2024-09-07 21:43:37,023 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Summary.', [149491 - 149523] +2024-09-07 21:43:37,034 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Summary.', [149491 - 149524] +2024-09-07 21:43:37,041 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [149491 - 149491] +2024-09-07 21:43:37,052 [main] INFO DocWordWriter - ... 40 ms for insertCaptionRef() +2024-09-07 21:43:37,052 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:37,090 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML106' to Word document and to used list. +2024-09-07 21:43:37,161 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification +2024-09-07 21:43:37,187 [main] DEBUG DocWordWriter - ... 26 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:37,197 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-07 21:43:37,271 [main] DEBUG DocWordWriter - ... 74 ms for fillValues() +2024-09-07 21:43:37,293 [main] DEBUG DocWordWriter - ... 22 ms for widths (table) +2024-09-07 21:43:37,375 [main] DEBUG DocWordWriter - ... 82 ms for widths (columns) +2024-09-07 21:43:37,404 [main] DEBUG DocWordWriter - ... 29 ms for shadding/merging/styling (rows) +2024-09-07 21:43:37,430 [main] DEBUG DocWordWriter - ... 26 ms for borders +2024-09-07 21:43:37,430 [main] DEBUG DocWordWriter - ... 159 ms for formatTable() +2024-09-07 21:43:37,440 [main] INFO DocWordWriter - ... 269 ms total for insertTable() +2024-09-07 21:43:37,490 [main] INFO DocWordWriter - ... 44 ms for insertCaption(): Table 53 – Attributes of IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification +2024-09-07 21:43:37,537 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of IEC62351part3ed2SecurityNotification.', [154153 - 154214] +2024-09-07 21:43:37,548 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of IEC62351part3ed2SecurityNotification.', [154153 - 154215] +2024-09-07 21:43:37,555 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [154153 - 154153] +2024-09-07 21:43:37,566 [main] INFO DocWordWriter - ... 40 ms for insertCaptionRef() +2024-09-07 21:43:37,566 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:37,603 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML92' to Word document and to used list. +2024-09-07 21:43:37,681 [main] INFO DocWordWriter - --- insertTable() 50 rows: Attributes of IEC62351-3 ed.2 Agent::ClientTLS +2024-09-07 21:43:37,706 [main] DEBUG DocWordWriter - ... 25 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:37,734 [main] DEBUG DocWordWriter - ... 28 ms for createTable() +2024-09-07 21:43:39,375 [main] DEBUG DocWordWriter - ... 1641 ms for fillValues() +2024-09-07 21:43:39,427 [main] DEBUG DocWordWriter - ... 52 ms for widths (table) +2024-09-07 21:43:39,701 [main] DEBUG DocWordWriter - ... 274 ms for widths (columns) +2024-09-07 21:43:39,729 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-07 21:43:39,856 [main] DEBUG DocWordWriter - ... 127 ms for borders +2024-09-07 21:43:39,856 [main] DEBUG DocWordWriter - ... 481 ms for formatTable() +2024-09-07 21:43:39,866 [main] INFO DocWordWriter - ... 2175 ms total for insertTable() +2024-09-07 21:43:39,942 [main] INFO DocWordWriter - ... 69 ms for insertCaption(): Table 54 – Attributes of IEC62351-3 ed.2 Agent::ClientTLS +2024-09-07 21:43:39,992 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of ClientTLS.', [154569 - 154603] +2024-09-07 21:43:40,004 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of ClientTLS.', [154569 - 154604] +2024-09-07 21:43:40,011 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [154569 - 154569] +2024-09-07 21:43:40,023 [main] INFO DocWordWriter - ... 41 ms for insertCaptionRef() +2024-09-07 21:43:40,023 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:40,059 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML93' to Word document and to used list. +2024-09-07 21:43:40,132 [main] INFO DocWordWriter - --- insertTable() 50 rows: Attributes of IEC62351-3 ed.2 Agent::ServerTLS +2024-09-07 21:43:40,158 [main] DEBUG DocWordWriter - ... 26 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:40,193 [main] DEBUG DocWordWriter - ... 35 ms for createTable() +2024-09-07 21:43:41,947 [main] DEBUG DocWordWriter - ... 1754 ms for fillValues() +2024-09-07 21:43:41,998 [main] DEBUG DocWordWriter - ... 51 ms for widths (table) +2024-09-07 21:43:42,277 [main] DEBUG DocWordWriter - ... 279 ms for widths (columns) +2024-09-07 21:43:42,305 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-07 21:43:42,424 [main] DEBUG DocWordWriter - ... 119 ms for borders +2024-09-07 21:43:42,424 [main] DEBUG DocWordWriter - ... 477 ms for formatTable() +2024-09-07 21:43:42,435 [main] INFO DocWordWriter - ... 2292 ms total for insertTable() +2024-09-07 21:43:42,534 [main] INFO DocWordWriter - ... 92 ms for insertCaption(): Table 55 – Attributes of IEC62351-3 ed.2 Agent::ServerTLS +2024-09-07 21:43:42,582 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of ServerTLS.', [159974 - 160008] +2024-09-07 21:43:42,594 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of ServerTLS.', [159974 - 160009] +2024-09-07 21:43:42,601 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [159974 - 159974] +2024-09-07 21:43:42,615 [main] INFO DocWordWriter - ... 43 ms for insertCaptionRef() +2024-09-07 21:43:42,615 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:42,662 [main] INFO AbstractWordWriter - writing doc for package IEEE 1815 and IEC 60870-5 Agent ... +2024-09-07 21:43:42,874 [main] INFO DocWordWriter - ... 37 ms for insertCaption(): Figure 20 – Class diagram IEEE 1815 and IEC 60870-5 Agent::IEEE 1815 and IEC 60870 Agent Relationships +2024-09-07 21:43:42,949 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes. Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.', [166569 - 166850] +2024-09-07 21:43:42,957 [main] TRACE DocWordWriter - prepend : range.txt = ': This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes. Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.', [166569 - 166850] +2024-09-07 21:43:42,963 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [166569 - 166569] +2024-09-07 21:43:42,980 [main] INFO DocWordWriter - ... 36 ms for insertCaptionRef() +2024-09-07 21:43:42,980 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:43,030 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML94' to Word document and to used list. +2024-09-07 21:43:43,207 [main] INFO DocWordWriter - --- insertTable() 31 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo +2024-09-07 21:43:43,245 [main] DEBUG DocWordWriter - ... 38 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:43,303 [main] DEBUG DocWordWriter - ... 58 ms for createTable() +2024-09-07 21:43:44,410 [main] DEBUG DocWordWriter - ... 1107 ms for fillValues() +2024-09-07 21:43:44,448 [main] DEBUG DocWordWriter - ... 38 ms for widths (table) +2024-09-07 21:43:44,649 [main] DEBUG DocWordWriter - ... 201 ms for widths (columns) +2024-09-07 21:43:44,677 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-07 21:43:44,761 [main] DEBUG DocWordWriter - ... 84 ms for borders +2024-09-07 21:43:44,761 [main] DEBUG DocWordWriter - ... 351 ms for formatTable() +2024-09-07 21:43:44,772 [main] INFO DocWordWriter - ... 1554 ms total for insertTable() +2024-09-07 21:43:44,871 [main] INFO DocWordWriter - ... 92 ms for insertCaption(): Table 56 – Attributes of IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo +2024-09-07 21:43:44,919 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of 60870andDNPProtocolInfo.', [167124 - 167172] +2024-09-07 21:43:44,931 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of 60870andDNPProtocolInfo.', [167124 - 167173] +2024-09-07 21:43:44,937 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [167124 - 167124] +2024-09-07 21:43:44,952 [main] INFO DocWordWriter - ... 43 ms for insertCaptionRef() +2024-09-07 21:43:44,952 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:44,995 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML95' to Word document and to used list. +2024-09-07 21:43:45,070 [main] INFO DocWordWriter - --- insertTable() 50 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent::Association +2024-09-07 21:43:45,101 [main] DEBUG DocWordWriter - ... 31 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:45,160 [main] DEBUG DocWordWriter - ... 59 ms for createTable() +2024-09-07 21:43:46,872 [main] DEBUG DocWordWriter - ... 1712 ms for fillValues() +2024-09-07 21:43:46,924 [main] DEBUG DocWordWriter - ... 52 ms for widths (table) +2024-09-07 21:43:47,207 [main] DEBUG DocWordWriter - ... 283 ms for widths (columns) +2024-09-07 21:43:47,237 [main] DEBUG DocWordWriter - ... 30 ms for shadding/merging/styling (rows) +2024-09-07 21:43:47,363 [main] DEBUG DocWordWriter - ... 126 ms for borders +2024-09-07 21:43:47,363 [main] DEBUG DocWordWriter - ... 491 ms for formatTable() +2024-09-07 21:43:47,374 [main] INFO DocWordWriter - ... 2293 ms total for insertTable() +2024-09-07 21:43:47,501 [main] INFO DocWordWriter - ... 118 ms for insertCaption(): Table 57 – Attributes of IEEE 1815 and IEC 60870-5 Agent::Association +2024-09-07 21:43:47,550 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Association.', [170880 - 170916] +2024-09-07 21:43:47,562 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Association.', [170880 - 170917] +2024-09-07 21:43:47,569 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [170880 - 170880] +2024-09-07 21:43:47,584 [main] INFO DocWordWriter - ... 43 ms for insertCaptionRef() +2024-09-07 21:43:47,585 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:47,625 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML107' to Word document and to used list. +2024-09-07 21:43:47,700 [main] INFO DocWordWriter - --- insertTable() 37 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent::Summary +2024-09-07 21:43:47,728 [main] DEBUG DocWordWriter - ... 28 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:47,779 [main] DEBUG DocWordWriter - ... 51 ms for createTable() +2024-09-07 21:43:49,080 [main] DEBUG DocWordWriter - ... 1301 ms for fillValues() +2024-09-07 21:43:49,130 [main] DEBUG DocWordWriter - ... 50 ms for widths (table) +2024-09-07 21:43:49,440 [main] DEBUG DocWordWriter - ... 310 ms for widths (columns) +2024-09-07 21:43:49,469 [main] DEBUG DocWordWriter - ... 29 ms for shadding/merging/styling (rows) +2024-09-07 21:43:49,569 [main] DEBUG DocWordWriter - ... 100 ms for borders +2024-09-07 21:43:49,569 [main] DEBUG DocWordWriter - ... 489 ms for formatTable() +2024-09-07 21:43:49,579 [main] INFO DocWordWriter - ... 1869 ms total for insertTable() +2024-09-07 21:43:49,707 [main] INFO DocWordWriter - ... 121 ms for insertCaption(): Table 58 – Attributes of IEEE 1815 and IEC 60870-5 Agent::Summary +2024-09-07 21:43:49,753 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Summary.', [176061 - 176093] +2024-09-07 21:43:49,764 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Summary.', [176061 - 176094] +2024-09-07 21:43:49,772 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [176061 - 176061] +2024-09-07 21:43:49,789 [main] INFO DocWordWriter - ... 46 ms for insertCaptionRef() +2024-09-07 21:43:49,789 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:49,831 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML108' to Word document and to used list. +2024-09-07 21:43:49,906 [main] INFO DocWordWriter - --- insertTable() 9 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification +2024-09-07 21:43:49,935 [main] DEBUG DocWordWriter - ... 29 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:49,955 [main] DEBUG DocWordWriter - ... 20 ms for createTable() +2024-09-07 21:43:50,285 [main] DEBUG DocWordWriter - ... 330 ms for fillValues() +2024-09-07 21:43:50,310 [main] DEBUG DocWordWriter - ... 25 ms for widths (table) +2024-09-07 21:43:50,425 [main] DEBUG DocWordWriter - ... 115 ms for widths (columns) +2024-09-07 21:43:50,452 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-07 21:43:50,496 [main] DEBUG DocWordWriter - ... 44 ms for borders +2024-09-07 21:43:50,496 [main] DEBUG DocWordWriter - ... 211 ms for formatTable() +2024-09-07 21:43:50,507 [main] INFO DocWordWriter - ... 590 ms total for insertTable() +2024-09-07 21:43:50,635 [main] INFO DocWordWriter - ... 122 ms for insertCaption(): Table 59 – Attributes of IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification +2024-09-07 21:43:50,683 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of 60870andDNPSecurityNotification.', [180084 - 180140] +2024-09-07 21:43:50,696 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of 60870andDNPSecurityNotification.', [180084 - 180141] +2024-09-07 21:43:50,703 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [180084 - 180084] +2024-09-07 21:43:50,721 [main] INFO DocWordWriter - ... 47 ms for insertCaptionRef() +2024-09-07 21:43:50,721 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:50,762 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML109' to Word document and to used list. +2024-09-07 21:43:50,838 [main] INFO DocWordWriter - --- insertTable() 6 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification +2024-09-07 21:43:50,867 [main] DEBUG DocWordWriter - ... 29 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:50,885 [main] DEBUG DocWordWriter - ... 18 ms for createTable() +2024-09-07 21:43:51,110 [main] DEBUG DocWordWriter - ... 225 ms for fillValues() +2024-09-07 21:43:51,132 [main] DEBUG DocWordWriter - ... 22 ms for widths (table) +2024-09-07 21:43:51,223 [main] DEBUG DocWordWriter - ... 91 ms for widths (columns) +2024-09-07 21:43:51,248 [main] DEBUG DocWordWriter - ... 25 ms for shadding/merging/styling (rows) +2024-09-07 21:43:51,283 [main] DEBUG DocWordWriter - ... 35 ms for borders +2024-09-07 21:43:51,283 [main] DEBUG DocWordWriter - ... 173 ms for formatTable() +2024-09-07 21:43:51,294 [main] INFO DocWordWriter - ... 445 ms total for insertTable() +2024-09-07 21:43:51,439 [main] INFO DocWordWriter - ... 136 ms for insertCaption(): Table 60 – Attributes of IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification +2024-09-07 21:43:51,488 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of 60870andDNPNotification.', [181441 - 181489] +2024-09-07 21:43:51,499 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of 60870andDNPNotification.', [181441 - 181490] +2024-09-07 21:43:51,506 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [181441 - 181441] +2024-09-07 21:43:51,528 [main] INFO DocWordWriter - ... 52 ms for insertCaptionRef() +2024-09-07 21:43:51,529 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:51,572 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML96' to Word document and to used list. +2024-09-07 21:43:51,638 [main] INFO DocWordWriter - closing MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 21:43:53,791 [main] INFO DocWordWriter - opening MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 21:43:55,376 [main] INFO OptimOptions - setting view to normal +2024-09-07 21:43:55,435 [main] INFO OptimOptions - disabling pagination +2024-09-07 21:43:55,469 [main] INFO OptimOptions - disabling field update +2024-09-07 21:43:55,579 [main] INFO OptimOptions - disabling screen updating +2024-09-07 21:43:55,585 [main] DEBUG DocWordWriter - current(_optimisedOptions): OptimOptions [viewId=1, normView=true, paginate=false, updFld=false, updScr=false, fastSave=false, spelling=false, grammar=false] +2024-09-07 21:43:55,673 [main] INFO Util - time=[0:00:04.063] closed and reopened document. +2024-09-07 21:43:55,673 [main] INFO Util - +2024-09-07 21:43:55,730 [main] INFO DocWordWriter - --- insertTable() 50 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent::MasterAssociation +2024-09-07 21:43:55,761 [main] DEBUG DocWordWriter - ... 31 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:55,776 [main] DEBUG DocWordWriter - ... 15 ms for createTable() +2024-09-07 21:43:57,609 [main] DEBUG DocWordWriter - ... 1832 ms for fillValues() +2024-09-07 21:43:57,662 [main] DEBUG DocWordWriter - ... 53 ms for widths (table) +2024-09-07 21:43:57,928 [main] DEBUG DocWordWriter - ... 266 ms for widths (columns) +2024-09-07 21:43:57,959 [main] DEBUG DocWordWriter - ... 31 ms for shadding/merging/styling (rows) +2024-09-07 21:43:58,101 [main] DEBUG DocWordWriter - ... 141 ms for borders +2024-09-07 21:43:58,101 [main] DEBUG DocWordWriter - ... 493 ms for formatTable() +2024-09-07 21:43:58,114 [main] INFO DocWordWriter - ... 2371 ms total for insertTable() +2024-09-07 21:43:58,167 [main] INFO DocWordWriter - ... 44 ms for insertCaption(): Table 61 – Attributes of IEEE 1815 and IEC 60870-5 Agent::MasterAssociation +2024-09-07 21:43:58,225 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of MasterAssociation.', [182234 - 182276] +2024-09-07 21:43:58,236 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of MasterAssociation.', [182234 - 182277] +2024-09-07 21:43:58,244 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [182234 - 182234] +2024-09-07 21:43:58,255 [main] INFO DocWordWriter - ... 42 ms for insertCaptionRef() +2024-09-07 21:43:58,255 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:43:58,370 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML97' to Word document and to used list. +2024-09-07 21:43:58,452 [main] INFO DocWordWriter - --- insertTable() 50 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent::OutstationAssociation +2024-09-07 21:43:58,482 [main] DEBUG DocWordWriter - ... 30 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:43:58,503 [main] DEBUG DocWordWriter - ... 21 ms for createTable() +2024-09-07 21:44:00,480 [main] DEBUG DocWordWriter - ... 1977 ms for fillValues() +2024-09-07 21:44:00,541 [main] DEBUG DocWordWriter - ... 61 ms for widths (table) +2024-09-07 21:44:00,817 [main] DEBUG DocWordWriter - ... 276 ms for widths (columns) +2024-09-07 21:44:00,846 [main] DEBUG DocWordWriter - ... 29 ms for shadding/merging/styling (rows) +2024-09-07 21:44:00,962 [main] DEBUG DocWordWriter - ... 116 ms for borders +2024-09-07 21:44:00,962 [main] DEBUG DocWordWriter - ... 482 ms for formatTable() +2024-09-07 21:44:00,974 [main] INFO DocWordWriter - ... 2510 ms total for insertTable() +2024-09-07 21:44:01,027 [main] INFO DocWordWriter - ... 45 ms for insertCaption(): Table 62 – Attributes of IEEE 1815 and IEC 60870-5 Agent::OutstationAssociation +2024-09-07 21:44:01,078 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of OutstationAssociation.', [187447 - 187493] +2024-09-07 21:44:01,089 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of OutstationAssociation.', [187447 - 187494] +2024-09-07 21:44:01,095 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [187447 - 187447] +2024-09-07 21:44:01,109 [main] INFO DocWordWriter - ... 42 ms for insertCaptionRef() +2024-09-07 21:44:01,109 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:44:01,160 [main] INFO AbstractWordWriter - writing doc for package IEEE 1815 and IEC 60870-5 Agent - ed2 ... +2024-09-07 21:44:01,457 [main] INFO DocWordWriter - ... 62 ms for insertCaption(): Figure 21 – Class diagram IEEE 1815 and IEC 60870-5 Agent - ed2::IEEE 1815 and IEC 60870 Agent Relationships +2024-09-07 21:44:01,568 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes. Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.', [193886 - 194167] +2024-09-07 21:44:01,577 [main] TRACE DocWordWriter - prepend : range.txt = ': This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes. Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.', [193886 - 194167] +2024-09-07 21:44:01,584 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [193886 - 193886] +2024-09-07 21:44:01,602 [main] INFO DocWordWriter - ... 40 ms for insertCaptionRef() +2024-09-07 21:44:01,602 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:44:01,654 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML99' to Word document and to used list. +2024-09-07 21:44:01,737 [main] INFO DocWordWriter - --- insertTable() 46 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2 +2024-09-07 21:44:01,773 [main] DEBUG DocWordWriter - ... 36 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:44:01,804 [main] DEBUG DocWordWriter - ... 31 ms for createTable() +2024-09-07 21:44:03,516 [main] DEBUG DocWordWriter - ... 1712 ms for fillValues() +2024-09-07 21:44:03,568 [main] DEBUG DocWordWriter - ... 51 ms for widths (table) +2024-09-07 21:44:03,826 [main] DEBUG DocWordWriter - ... 258 ms for widths (columns) +2024-09-07 21:44:03,856 [main] DEBUG DocWordWriter - ... 30 ms for shadding/merging/styling (rows) +2024-09-07 21:44:03,965 [main] DEBUG DocWordWriter - ... 109 ms for borders +2024-09-07 21:44:03,965 [main] DEBUG DocWordWriter - ... 449 ms for formatTable() +2024-09-07 21:44:03,976 [main] INFO DocWordWriter - ... 2228 ms total for insertTable() +2024-09-07 21:44:04,037 [main] INFO DocWordWriter - ... 54 ms for insertCaption(): Table 63 – Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2 +2024-09-07 21:44:04,093 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of 60870andDNPProtocolInfoEd2.', [194444 - 194495] +2024-09-07 21:44:04,105 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of 60870andDNPProtocolInfoEd2.', [194444 - 194496] +2024-09-07 21:44:04,114 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [194444 - 194444] +2024-09-07 21:44:04,133 [main] INFO DocWordWriter - ... 53 ms for insertCaptionRef() +2024-09-07 21:44:04,133 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:44:04,177 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML98' to Word document and to used list. +2024-09-07 21:44:04,267 [main] INFO DocWordWriter - --- insertTable() 27 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5 +2024-09-07 21:44:04,297 [main] DEBUG DocWordWriter - ... 30 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:44:04,322 [main] DEBUG DocWordWriter - ... 25 ms for createTable() +2024-09-07 21:44:05,305 [main] DEBUG DocWordWriter - ... 983 ms for fillValues() +2024-09-07 21:44:05,352 [main] DEBUG DocWordWriter - ... 47 ms for widths (table) +2024-09-07 21:44:05,601 [main] DEBUG DocWordWriter - ... 249 ms for widths (columns) +2024-09-07 21:44:05,631 [main] DEBUG DocWordWriter - ... 30 ms for shadding/merging/styling (rows) +2024-09-07 21:44:05,726 [main] DEBUG DocWordWriter - ... 95 ms for borders +2024-09-07 21:44:05,726 [main] DEBUG DocWordWriter - ... 421 ms for formatTable() +2024-09-07 21:44:05,739 [main] INFO DocWordWriter - ... 1459 ms total for insertTable() +2024-09-07 21:44:05,852 [main] INFO DocWordWriter - ... 85 ms for insertCaption(): Table 64 – Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5 +2024-09-07 21:44:05,908 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of IEC62351part5.', [199359 - 199397] +2024-09-07 21:44:05,921 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of IEC62351part5.', [199359 - 199398] +2024-09-07 21:44:05,929 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [199359 - 199359] +2024-09-07 21:44:05,944 [main] INFO DocWordWriter - ... 48 ms for insertCaptionRef() +2024-09-07 21:44:05,944 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:44:05,992 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML100' to Word document and to used list. +2024-09-07 21:44:06,082 [main] INFO DocWordWriter - --- insertTable() 65 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::Association +2024-09-07 21:44:06,116 [main] DEBUG DocWordWriter - ... 34 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:44:06,167 [main] DEBUG DocWordWriter - ... 51 ms for createTable() +2024-09-07 21:44:08,966 [main] DEBUG DocWordWriter - ... 2799 ms for fillValues() +2024-09-07 21:44:09,057 [main] DEBUG DocWordWriter - ... 91 ms for widths (table) +2024-09-07 21:44:09,549 [main] DEBUG DocWordWriter - ... 492 ms for widths (columns) +2024-09-07 21:44:09,584 [main] DEBUG DocWordWriter - ... 35 ms for shadding/merging/styling (rows) +2024-09-07 21:44:09,781 [main] DEBUG DocWordWriter - ... 197 ms for borders +2024-09-07 21:44:09,781 [main] DEBUG DocWordWriter - ... 815 ms for formatTable() +2024-09-07 21:44:09,796 [main] INFO DocWordWriter - ... 3699 ms total for insertTable() +2024-09-07 21:44:09,907 [main] INFO DocWordWriter - ... 101 ms for insertCaption(): Table 65 – Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::Association +2024-09-07 21:44:09,966 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Association.', [203028 - 203064] +2024-09-07 21:44:09,980 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Association.', [203028 - 203065] +2024-09-07 21:44:09,988 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [203028 - 203028] +2024-09-07 21:44:10,004 [main] INFO DocWordWriter - ... 50 ms for insertCaptionRef() +2024-09-07 21:44:10,004 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:44:10,053 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML110' to Word document and to used list. +2024-09-07 21:44:10,140 [main] INFO DocWordWriter - --- insertTable() 52 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::Summary +2024-09-07 21:44:10,173 [main] DEBUG DocWordWriter - ... 33 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:44:10,229 [main] DEBUG DocWordWriter - ... 56 ms for createTable() +2024-09-07 21:44:12,514 [main] DEBUG DocWordWriter - ... 2285 ms for fillValues() +2024-09-07 21:44:12,591 [main] DEBUG DocWordWriter - ... 76 ms for widths (table) +2024-09-07 21:44:12,969 [main] DEBUG DocWordWriter - ... 378 ms for widths (columns) +2024-09-07 21:44:13,008 [main] DEBUG DocWordWriter - ... 39 ms for shadding/merging/styling (rows) +2024-09-07 21:44:13,180 [main] DEBUG DocWordWriter - ... 172 ms for borders +2024-09-07 21:44:13,180 [main] DEBUG DocWordWriter - ... 666 ms for formatTable() +2024-09-07 21:44:13,194 [main] INFO DocWordWriter - ... 3040 ms total for insertTable() +2024-09-07 21:44:13,332 [main] INFO DocWordWriter - ... 128 ms for insertCaption(): Table 66 – Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::Summary +2024-09-07 21:44:13,392 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Summary.', [209687 - 209719] +2024-09-07 21:44:13,406 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Summary.', [209687 - 209720] +2024-09-07 21:44:13,413 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [209687 - 209687] +2024-09-07 21:44:13,434 [main] INFO DocWordWriter - ... 55 ms for insertCaptionRef() +2024-09-07 21:44:13,434 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:44:13,481 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML111' to Word document and to used list. +2024-09-07 21:44:13,573 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2 +2024-09-07 21:44:13,609 [main] DEBUG DocWordWriter - ... 36 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:44:13,627 [main] DEBUG DocWordWriter - ... 18 ms for createTable() +2024-09-07 21:44:13,723 [main] DEBUG DocWordWriter - ... 96 ms for fillValues() +2024-09-07 21:44:13,752 [main] DEBUG DocWordWriter - ... 29 ms for widths (table) +2024-09-07 21:44:13,855 [main] DEBUG DocWordWriter - ... 103 ms for widths (columns) +2024-09-07 21:44:13,887 [main] DEBUG DocWordWriter - ... 32 ms for shadding/merging/styling (rows) +2024-09-07 21:44:13,922 [main] DEBUG DocWordWriter - ... 35 ms for borders +2024-09-07 21:44:13,922 [main] DEBUG DocWordWriter - ... 199 ms for formatTable() +2024-09-07 21:44:13,936 [main] INFO DocWordWriter - ... 349 ms total for insertTable() +2024-09-07 21:44:14,058 [main] INFO DocWordWriter - ... 113 ms for insertCaption(): Table 67 – Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2 +2024-09-07 21:44:14,145 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of 60870andDNPSecurityNotificationEd2.', [215199 - 215258] +2024-09-07 21:44:14,161 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of 60870andDNPSecurityNotificationEd2.', [215199 - 215259] +2024-09-07 21:44:14,170 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [215199 - 215199] +2024-09-07 21:44:14,190 [main] INFO DocWordWriter - ... 60 ms for insertCaptionRef() +2024-09-07 21:44:14,190 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:44:14,243 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML112' to Word document and to used list. +2024-09-07 21:44:14,343 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2 +2024-09-07 21:44:14,381 [main] DEBUG DocWordWriter - ... 38 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:44:14,397 [main] DEBUG DocWordWriter - ... 16 ms for createTable() +2024-09-07 21:44:14,500 [main] DEBUG DocWordWriter - ... 103 ms for fillValues() +2024-09-07 21:44:14,528 [main] DEBUG DocWordWriter - ... 28 ms for widths (table) +2024-09-07 21:44:14,629 [main] DEBUG DocWordWriter - ... 101 ms for widths (columns) +2024-09-07 21:44:14,664 [main] DEBUG DocWordWriter - ... 35 ms for shadding/merging/styling (rows) +2024-09-07 21:44:14,695 [main] DEBUG DocWordWriter - ... 31 ms for borders +2024-09-07 21:44:14,695 [main] DEBUG DocWordWriter - ... 195 ms for formatTable() +2024-09-07 21:44:14,707 [main] INFO DocWordWriter - ... 352 ms total for insertTable() +2024-09-07 21:44:14,832 [main] INFO DocWordWriter - ... 116 ms for insertCaption(): Table 68 – Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2 +2024-09-07 21:44:14,889 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of 60870andDNPNotificationEd2.', [215671 - 215722] +2024-09-07 21:44:14,902 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of 60870andDNPNotificationEd2.', [215671 - 215723] +2024-09-07 21:44:14,910 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [215671 - 215671] +2024-09-07 21:44:14,931 [main] INFO DocWordWriter - ... 56 ms for insertCaptionRef() +2024-09-07 21:44:14,931 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:44:14,978 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML101' to Word document and to used list. +2024-09-07 21:44:15,072 [main] INFO DocWordWriter - --- insertTable() 65 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::MasterAssociation +2024-09-07 21:44:15,108 [main] DEBUG DocWordWriter - ... 36 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:44:15,210 [main] DEBUG DocWordWriter - ... 102 ms for createTable() +2024-09-07 21:44:18,242 [main] DEBUG DocWordWriter - ... 3032 ms for fillValues() +2024-09-07 21:44:18,331 [main] DEBUG DocWordWriter - ... 89 ms for widths (table) +2024-09-07 21:44:18,803 [main] DEBUG DocWordWriter - ... 472 ms for widths (columns) +2024-09-07 21:44:18,843 [main] DEBUG DocWordWriter - ... 40 ms for shadding/merging/styling (rows) +2024-09-07 21:44:19,051 [main] DEBUG DocWordWriter - ... 208 ms for borders +2024-09-07 21:44:19,052 [main] DEBUG DocWordWriter - ... 809 ms for formatTable() +2024-09-07 21:44:19,064 [main] INFO DocWordWriter - ... 3979 ms total for insertTable() +2024-09-07 21:44:19,238 [main] INFO DocWordWriter - ... 165 ms for insertCaption(): Table 69 – Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::MasterAssociation +2024-09-07 21:44:19,297 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of MasterAssociation.', [216056 - 216098] +2024-09-07 21:44:19,310 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of MasterAssociation.', [216056 - 216099] +2024-09-07 21:44:19,318 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [216056 - 216056] +2024-09-07 21:44:19,341 [main] INFO DocWordWriter - ... 55 ms for insertCaptionRef() +2024-09-07 21:44:19,341 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:44:19,391 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML102' to Word document and to used list. +2024-09-07 21:44:19,491 [main] INFO DocWordWriter - --- insertTable() 65 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::OutstationAssociation +2024-09-07 21:44:19,531 [main] DEBUG DocWordWriter - ... 40 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:44:19,657 [main] DEBUG DocWordWriter - ... 126 ms for createTable() +2024-09-07 21:44:22,582 [main] DEBUG DocWordWriter - ... 2925 ms for fillValues() +2024-09-07 21:44:22,645 [main] DEBUG DocWordWriter - ... 63 ms for widths (table) +2024-09-07 21:44:23,009 [main] DEBUG DocWordWriter - ... 364 ms for widths (columns) +2024-09-07 21:44:23,040 [main] DEBUG DocWordWriter - ... 31 ms for shadding/merging/styling (rows) +2024-09-07 21:44:23,192 [main] DEBUG DocWordWriter - ... 152 ms for borders +2024-09-07 21:44:23,192 [main] DEBUG DocWordWriter - ... 610 ms for formatTable() +2024-09-07 21:44:23,203 [main] INFO DocWordWriter - ... 3701 ms total for insertTable() +2024-09-07 21:44:23,358 [main] INFO DocWordWriter - ... 146 ms for insertCaption(): Table 70 – Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::OutstationAssociation +2024-09-07 21:44:23,410 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of OutstationAssociation.', [222758 - 222804] +2024-09-07 21:44:23,422 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of OutstationAssociation.', [222758 - 222805] +2024-09-07 21:44:23,429 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [222758 - 222758] +2024-09-07 21:44:23,448 [main] INFO DocWordWriter - ... 48 ms for insertCaptionRef() +2024-09-07 21:44:23,448 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:44:23,500 [main] INFO AbstractWordWriter - writing doc for package IEC61850 Agent ... +2024-09-07 21:44:23,622 [main] INFO AbstractWordWriter - writing doc for package ACSI ... +2024-09-07 21:44:23,820 [main] INFO DocWordWriter - ... 59 ms for insertCaption(): Figure 22 – Class diagram ACSI::ACSI +2024-09-07 21:44:23,899 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': ACSI classes relationship. ACSI Summary inherit Security attributes from the more general classes.', [229887 - 229987] +2024-09-07 21:44:23,906 [main] TRACE DocWordWriter - prepend : range.txt = ': ACSI classes relationship. ACSI Summary inherit Security attributes from the more general classes.', [229887 - 229987] +2024-09-07 21:44:23,912 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [229887 - 229887] +2024-09-07 21:44:23,934 [main] INFO DocWordWriter - ... 40 ms for insertCaptionRef() +2024-09-07 21:44:23,934 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:44:23,979 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML113' to Word document and to used list. +2024-09-07 21:44:24,060 [main] INFO DocWordWriter - --- insertTable() 17 rows: Attributes of ACSI::ACSISummary +2024-09-07 21:44:24,089 [main] DEBUG DocWordWriter - ... 29 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:44:24,124 [main] DEBUG DocWordWriter - ... 35 ms for createTable() +2024-09-07 21:44:24,786 [main] DEBUG DocWordWriter - ... 662 ms for fillValues() +2024-09-07 21:44:24,817 [main] DEBUG DocWordWriter - ... 31 ms for widths (table) +2024-09-07 21:44:24,977 [main] DEBUG DocWordWriter - ... 160 ms for widths (columns) +2024-09-07 21:44:25,004 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-07 21:44:25,064 [main] DEBUG DocWordWriter - ... 60 ms for borders +2024-09-07 21:44:25,064 [main] DEBUG DocWordWriter - ... 278 ms for formatTable() +2024-09-07 21:44:25,074 [main] INFO DocWordWriter - ... 1004 ms total for insertTable() +2024-09-07 21:44:25,223 [main] INFO DocWordWriter - ... 142 ms for insertCaption(): Table 71 – Attributes of ACSI::ACSISummary +2024-09-07 21:44:25,272 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of ACSISummary.', [230183 - 230219] +2024-09-07 21:44:25,285 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of ACSISummary.', [230183 - 230220] +2024-09-07 21:44:25,292 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [230183 - 230183] +2024-09-07 21:44:25,311 [main] INFO DocWordWriter - ... 50 ms for insertCaptionRef() +2024-09-07 21:44:25,311 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:44:25,365 [main] INFO AbstractWordWriter - writing doc for package MMS ... +2024-09-07 21:44:25,607 [main] INFO DocWordWriter - ... 64 ms for insertCaption(): Figure 23 – Class diagram MMS::MMS +2024-09-07 21:44:25,685 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': MMS classes relationship. MMS Provider and MMS Association inherit both Security and Procotol Info attributes from the more general classes.', [232420 - 232562] +2024-09-07 21:44:25,692 [main] TRACE DocWordWriter - prepend : range.txt = ': MMS classes relationship. MMS Provider and MMS Association inherit both Security and Procotol Info attributes from the more general classes.', [232420 - 232562] +2024-09-07 21:44:25,700 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [232420 - 232420] +2024-09-07 21:44:25,724 [main] INFO DocWordWriter - ... 45 ms for insertCaptionRef() +2024-09-07 21:44:25,724 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:44:25,770 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML103' to Word document and to used list. +2024-09-07 21:44:25,851 [main] INFO DocWordWriter - --- insertTable() 14 rows: Attributes of MMS::MMSProtocolInfo +2024-09-07 21:44:25,884 [main] DEBUG DocWordWriter - ... 33 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:44:25,918 [main] DEBUG DocWordWriter - ... 34 ms for createTable() +2024-09-07 21:44:26,510 [main] DEBUG DocWordWriter - ... 592 ms for fillValues() +2024-09-07 21:44:26,542 [main] DEBUG DocWordWriter - ... 32 ms for widths (table) +2024-09-07 21:44:26,682 [main] DEBUG DocWordWriter - ... 140 ms for widths (columns) +2024-09-07 21:44:26,710 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-07 21:44:26,765 [main] DEBUG DocWordWriter - ... 55 ms for borders +2024-09-07 21:44:26,765 [main] DEBUG DocWordWriter - ... 255 ms for formatTable() +2024-09-07 21:44:26,776 [main] INFO DocWordWriter - ... 914 ms total for insertTable() +2024-09-07 21:44:26,941 [main] INFO DocWordWriter - ... 155 ms for insertCaption(): Table 72 – Attributes of MMS::MMSProtocolInfo +2024-09-07 21:44:26,992 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of MMSProtocolInfo.', [232752 - 232792] +2024-09-07 21:44:27,007 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of MMSProtocolInfo.', [232752 - 232793] +2024-09-07 21:44:27,014 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [232752 - 232752] +2024-09-07 21:44:27,040 [main] INFO DocWordWriter - ... 59 ms for insertCaptionRef() +2024-09-07 21:44:27,040 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:44:27,086 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML114' to Word document and to used list. +2024-09-07 21:44:27,158 [main] INFO DocWordWriter - closing MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 21:44:29,389 [main] INFO DocWordWriter - opening MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 21:44:30,918 [main] INFO OptimOptions - setting view to normal +2024-09-07 21:44:30,961 [main] INFO OptimOptions - disabling pagination +2024-09-07 21:44:30,996 [main] INFO OptimOptions - disabling field update +2024-09-07 21:44:31,091 [main] INFO OptimOptions - disabling screen updating +2024-09-07 21:44:31,098 [main] DEBUG DocWordWriter - current(_optimisedOptions): OptimOptions [viewId=1, normView=true, paginate=false, updFld=false, updScr=false, fastSave=false, spelling=false, grammar=false] +2024-09-07 21:44:31,266 [main] INFO Util - time=[0:00:04.136] closed and reopened document. +2024-09-07 21:44:31,266 [main] INFO Util - +2024-09-07 21:44:31,318 [main] INFO DocWordWriter - --- insertTable() 32 rows: Attributes of MMS::MMSProvider +2024-09-07 21:44:31,353 [main] DEBUG DocWordWriter - ... 35 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:44:31,367 [main] DEBUG DocWordWriter - ... 14 ms for createTable() +2024-09-07 21:44:32,414 [main] DEBUG DocWordWriter - ... 1047 ms for fillValues() +2024-09-07 21:44:32,455 [main] DEBUG DocWordWriter - ... 41 ms for widths (table) +2024-09-07 21:44:32,699 [main] DEBUG DocWordWriter - ... 244 ms for widths (columns) +2024-09-07 21:44:32,730 [main] DEBUG DocWordWriter - ... 31 ms for shadding/merging/styling (rows) +2024-09-07 21:44:32,813 [main] DEBUG DocWordWriter - ... 83 ms for borders +2024-09-07 21:44:32,813 [main] DEBUG DocWordWriter - ... 399 ms for formatTable() +2024-09-07 21:44:32,824 [main] INFO DocWordWriter - ... 1495 ms total for insertTable() +2024-09-07 21:44:32,866 [main] INFO DocWordWriter - ... 34 ms for insertCaption(): Table 73 – Attributes of MMS::MMSProvider +2024-09-07 21:44:32,913 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of MMSProvider.', [235286 - 235322] +2024-09-07 21:44:32,923 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of MMSProvider.', [235286 - 235323] +2024-09-07 21:44:32,930 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [235286 - 235286] +2024-09-07 21:44:32,940 [main] INFO DocWordWriter - ... 37 ms for insertCaptionRef() +2024-09-07 21:44:32,940 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:44:33,068 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML104' to Word document and to used list. +2024-09-07 21:44:33,142 [main] INFO DocWordWriter - --- insertTable() 36 rows: Attributes of MMS::MMSAssociation +2024-09-07 21:44:33,171 [main] DEBUG DocWordWriter - ... 29 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:44:33,186 [main] DEBUG DocWordWriter - ... 15 ms for createTable() +2024-09-07 21:44:34,377 [main] DEBUG DocWordWriter - ... 1191 ms for fillValues() +2024-09-07 21:44:34,419 [main] DEBUG DocWordWriter - ... 42 ms for widths (table) +2024-09-07 21:44:34,646 [main] DEBUG DocWordWriter - ... 227 ms for widths (columns) +2024-09-07 21:44:34,674 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-07 21:44:34,766 [main] DEBUG DocWordWriter - ... 91 ms for borders +2024-09-07 21:44:34,766 [main] DEBUG DocWordWriter - ... 389 ms for formatTable() +2024-09-07 21:44:34,776 [main] INFO DocWordWriter - ... 1624 ms total for insertTable() +2024-09-07 21:44:34,824 [main] INFO DocWordWriter - ... 39 ms for insertCaption(): Table 74 – Attributes of MMS::MMSAssociation +2024-09-07 21:44:34,873 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of MMSAssociation.', [238982 - 239021] +2024-09-07 21:44:34,885 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of MMSAssociation.', [238982 - 239022] +2024-09-07 21:44:34,891 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [238982 - 238982] +2024-09-07 21:44:34,902 [main] INFO DocWordWriter - ... 40 ms for insertCaptionRef() +2024-09-07 21:44:34,902 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:44:34,940 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML115' to Word document and to used list. +2024-09-07 21:44:35,009 [main] INFO DocWordWriter - --- insertTable() 5 rows: Attributes of MMS::MMSSecurityNotification +2024-09-07 21:44:35,037 [main] DEBUG DocWordWriter - ... 28 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:44:35,048 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 21:44:35,226 [main] DEBUG DocWordWriter - ... 178 ms for fillValues() +2024-09-07 21:44:35,248 [main] DEBUG DocWordWriter - ... 22 ms for widths (table) +2024-09-07 21:44:35,335 [main] DEBUG DocWordWriter - ... 87 ms for widths (columns) +2024-09-07 21:44:35,361 [main] DEBUG DocWordWriter - ... 26 ms for shadding/merging/styling (rows) +2024-09-07 21:44:35,393 [main] DEBUG DocWordWriter - ... 32 ms for borders +2024-09-07 21:44:35,393 [main] DEBUG DocWordWriter - ... 167 ms for formatTable() +2024-09-07 21:44:35,404 [main] INFO DocWordWriter - ... 384 ms total for insertTable() +2024-09-07 21:44:35,446 [main] INFO DocWordWriter - ... 34 ms for insertCaption(): Table 75 – Attributes of MMS::MMSSecurityNotification +2024-09-07 21:44:35,490 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of MMSSecurityNotification.', [242970 - 243018] +2024-09-07 21:44:35,501 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of MMSSecurityNotification.', [242970 - 243019] +2024-09-07 21:44:35,507 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [242970 - 242970] +2024-09-07 21:44:35,522 [main] INFO DocWordWriter - ... 42 ms for insertCaptionRef() +2024-09-07 21:44:35,522 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:44:35,566 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML116' to Word document and to used list. +2024-09-07 21:44:35,637 [main] INFO DocWordWriter - --- insertTable() 5 rows: Attributes of MMS::MMSNotification +2024-09-07 21:44:35,663 [main] DEBUG DocWordWriter - ... 26 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:44:35,674 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 21:44:35,850 [main] DEBUG DocWordWriter - ... 176 ms for fillValues() +2024-09-07 21:44:35,872 [main] DEBUG DocWordWriter - ... 22 ms for widths (table) +2024-09-07 21:44:35,958 [main] DEBUG DocWordWriter - ... 86 ms for widths (columns) +2024-09-07 21:44:35,983 [main] DEBUG DocWordWriter - ... 25 ms for shadding/merging/styling (rows) +2024-09-07 21:44:36,015 [main] DEBUG DocWordWriter - ... 32 ms for borders +2024-09-07 21:44:36,015 [main] DEBUG DocWordWriter - ... 165 ms for formatTable() +2024-09-07 21:44:36,025 [main] INFO DocWordWriter - ... 378 ms total for insertTable() +2024-09-07 21:44:36,073 [main] INFO DocWordWriter - ... 40 ms for insertCaption(): Table 76 – Attributes of MMS::MMSNotification +2024-09-07 21:44:36,117 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of MMSNotification.', [243753 - 243793] +2024-09-07 21:44:36,129 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of MMSNotification.', [243753 - 243794] +2024-09-07 21:44:36,136 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [243753 - 243753] +2024-09-07 21:44:36,148 [main] INFO DocWordWriter - ... 41 ms for insertCaptionRef() +2024-09-07 21:44:36,148 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:44:36,199 [main] INFO AbstractWordWriter - writing doc for package SV and GSE common objects ... +2024-09-07 21:44:36,370 [main] INFO DocWordWriter - ... 25 ms for insertCaption(): Figure 24 – Class diagram SV and GSE common objects::SV and GSE common objects +2024-09-07 21:44:36,443 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': GSE/SV common classes relationship.', [244644 - 244681] +2024-09-07 21:44:36,451 [main] TRACE DocWordWriter - prepend : range.txt = ': GSE/SV common classes relationship.', [244644 - 244681] +2024-09-07 21:44:36,458 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [244644 - 244644] +2024-09-07 21:44:36,472 [main] INFO DocWordWriter - ... 34 ms for insertCaptionRef() +2024-09-07 21:44:36,473 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:44:36,523 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML117' to Word document and to used list. +2024-09-07 21:44:36,602 [main] INFO DocWordWriter - --- insertTable() 4 rows: Attributes of SV and GSE common objects::GSEandSVCommon +2024-09-07 21:44:36,632 [main] DEBUG DocWordWriter - ... 30 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:44:36,643 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 21:44:36,789 [main] DEBUG DocWordWriter - ... 146 ms for fillValues() +2024-09-07 21:44:36,811 [main] DEBUG DocWordWriter - ... 22 ms for widths (table) +2024-09-07 21:44:36,898 [main] DEBUG DocWordWriter - ... 87 ms for widths (columns) +2024-09-07 21:44:36,923 [main] DEBUG DocWordWriter - ... 25 ms for shadding/merging/styling (rows) +2024-09-07 21:44:36,954 [main] DEBUG DocWordWriter - ... 30 ms for borders +2024-09-07 21:44:36,954 [main] DEBUG DocWordWriter - ... 165 ms for formatTable() +2024-09-07 21:44:36,965 [main] INFO DocWordWriter - ... 352 ms total for insertTable() +2024-09-07 21:44:37,018 [main] INFO DocWordWriter - ... 45 ms for insertCaption(): Table 77 – Attributes of SV and GSE common objects::GSEandSVCommon +2024-09-07 21:44:37,068 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of GSEandSVCommon.', [244851 - 244890] +2024-09-07 21:44:37,080 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of GSEandSVCommon.', [244851 - 244891] +2024-09-07 21:44:37,088 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [244851 - 244851] +2024-09-07 21:44:37,100 [main] INFO DocWordWriter - ... 43 ms for insertCaptionRef() +2024-09-07 21:44:37,100 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:44:37,143 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML118' to Word document and to used list. +2024-09-07 21:44:37,219 [main] INFO DocWordWriter - --- insertTable() 9 rows: Attributes of SV and GSE common objects::GSEandSVPublisherAssociation +2024-09-07 21:44:37,247 [main] DEBUG DocWordWriter - ... 28 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:44:37,260 [main] DEBUG DocWordWriter - ... 13 ms for createTable() +2024-09-07 21:44:37,580 [main] DEBUG DocWordWriter - ... 320 ms for fillValues() +2024-09-07 21:44:37,606 [main] DEBUG DocWordWriter - ... 26 ms for widths (table) +2024-09-07 21:44:37,722 [main] DEBUG DocWordWriter - ... 116 ms for widths (columns) +2024-09-07 21:44:37,748 [main] DEBUG DocWordWriter - ... 26 ms for shadding/merging/styling (rows) +2024-09-07 21:44:37,790 [main] DEBUG DocWordWriter - ... 42 ms for borders +2024-09-07 21:44:37,790 [main] DEBUG DocWordWriter - ... 210 ms for formatTable() +2024-09-07 21:44:37,800 [main] INFO DocWordWriter - ... 571 ms total for insertTable() +2024-09-07 21:44:37,861 [main] INFO DocWordWriter - ... 54 ms for insertCaption(): Table 78 – Attributes of SV and GSE common objects::GSEandSVPublisherAssociation +2024-09-07 21:44:37,909 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of GSEandSVPublisherAssociation.', [245565 - 245618] +2024-09-07 21:44:37,921 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of GSEandSVPublisherAssociation.', [245565 - 245619] +2024-09-07 21:44:37,928 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [245565 - 245565] +2024-09-07 21:44:37,939 [main] INFO DocWordWriter - ... 41 ms for insertCaptionRef() +2024-09-07 21:44:37,940 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:44:37,981 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML123' to Word document and to used list. +2024-09-07 21:44:38,058 [main] INFO DocWordWriter - --- insertTable() 11 rows: Attributes of SV and GSE common objects::GSEandSVSubscriberAssociation +2024-09-07 21:44:38,087 [main] DEBUG DocWordWriter - ... 29 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:44:38,099 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-07 21:44:38,490 [main] DEBUG DocWordWriter - ... 391 ms for fillValues() +2024-09-07 21:44:38,516 [main] DEBUG DocWordWriter - ... 26 ms for widths (table) +2024-09-07 21:44:38,635 [main] DEBUG DocWordWriter - ... 119 ms for widths (columns) +2024-09-07 21:44:38,663 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-07 21:44:38,713 [main] DEBUG DocWordWriter - ... 50 ms for borders +2024-09-07 21:44:38,713 [main] DEBUG DocWordWriter - ... 223 ms for formatTable() +2024-09-07 21:44:38,725 [main] INFO DocWordWriter - ... 655 ms total for insertTable() +2024-09-07 21:44:38,799 [main] INFO DocWordWriter - ... 65 ms for insertCaption(): Table 79 – Attributes of SV and GSE common objects::GSEandSVSubscriberAssociation +2024-09-07 21:44:38,847 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of GSEandSVSubscriberAssociation.', [246775 - 246829] +2024-09-07 21:44:38,858 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of GSEandSVSubscriberAssociation.', [246775 - 246830] +2024-09-07 21:44:38,866 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [246775 - 246775] +2024-09-07 21:44:38,878 [main] INFO DocWordWriter - ... 42 ms for insertCaptionRef() +2024-09-07 21:44:38,878 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:44:38,926 [main] INFO AbstractWordWriter - writing doc for package SV ... +2024-09-07 21:44:39,115 [main] INFO DocWordWriter - ... 32 ms for insertCaption(): Figure 25 – Class diagram SV::SV +2024-09-07 21:44:39,192 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': SV classes relationship. SVProvider and SVAssociation inherit both Security and Procotol Info attributes from the more general classes.', [248406 - 248543] +2024-09-07 21:44:39,199 [main] TRACE DocWordWriter - prepend : range.txt = ': SV classes relationship. SVProvider and SVAssociation inherit both Security and Procotol Info attributes from the more general classes.', [248406 - 248543] +2024-09-07 21:44:39,205 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [248406 - 248406] +2024-09-07 21:44:39,219 [main] INFO DocWordWriter - ... 32 ms for insertCaptionRef() +2024-09-07 21:44:39,219 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:44:39,263 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML129' to Word document and to used list. +2024-09-07 21:44:39,338 [main] INFO DocWordWriter - --- insertTable() 12 rows: Attributes of SV::SVProvider +2024-09-07 21:44:39,366 [main] DEBUG DocWordWriter - ... 28 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:44:39,380 [main] DEBUG DocWordWriter - ... 14 ms for createTable() +2024-09-07 21:44:39,816 [main] DEBUG DocWordWriter - ... 436 ms for fillValues() +2024-09-07 21:44:39,844 [main] DEBUG DocWordWriter - ... 28 ms for widths (table) +2024-09-07 21:44:39,970 [main] DEBUG DocWordWriter - ... 126 ms for widths (columns) +2024-09-07 21:44:39,997 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-07 21:44:40,045 [main] DEBUG DocWordWriter - ... 48 ms for borders +2024-09-07 21:44:40,045 [main] DEBUG DocWordWriter - ... 229 ms for formatTable() +2024-09-07 21:44:40,056 [main] INFO DocWordWriter - ... 707 ms total for insertTable() +2024-09-07 21:44:40,131 [main] INFO DocWordWriter - ... 69 ms for insertCaption(): Table 80 – Attributes of SV::SVProvider +2024-09-07 21:44:40,181 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of SVProvider.', [248744 - 248779] +2024-09-07 21:44:40,193 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of SVProvider.', [248744 - 248780] +2024-09-07 21:44:40,200 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [248744 - 248744] +2024-09-07 21:44:40,212 [main] INFO DocWordWriter - ... 42 ms for insertCaptionRef() +2024-09-07 21:44:40,212 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:44:40,253 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML119' to Word document and to used list. +2024-09-07 21:44:40,330 [main] INFO DocWordWriter - --- insertTable() 11 rows: Attributes of SV::SVPublisherAssociationIP +2024-09-07 21:44:40,359 [main] DEBUG DocWordWriter - ... 29 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:44:40,374 [main] DEBUG DocWordWriter - ... 15 ms for createTable() +2024-09-07 21:44:40,768 [main] DEBUG DocWordWriter - ... 394 ms for fillValues() +2024-09-07 21:44:40,796 [main] DEBUG DocWordWriter - ... 28 ms for widths (table) +2024-09-07 21:44:40,928 [main] DEBUG DocWordWriter - ... 132 ms for widths (columns) +2024-09-07 21:44:40,954 [main] DEBUG DocWordWriter - ... 26 ms for shadding/merging/styling (rows) +2024-09-07 21:44:41,000 [main] DEBUG DocWordWriter - ... 46 ms for borders +2024-09-07 21:44:41,000 [main] DEBUG DocWordWriter - ... 232 ms for formatTable() +2024-09-07 21:44:41,011 [main] INFO DocWordWriter - ... 670 ms total for insertTable() +2024-09-07 21:44:41,096 [main] INFO DocWordWriter - ... 77 ms for insertCaption(): Table 81 – Attributes of SV::SVPublisherAssociationIP +2024-09-07 21:44:41,147 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of SVPublisherAssociationIP.', [250603 - 250652] +2024-09-07 21:44:41,158 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of SVPublisherAssociationIP.', [250603 - 250653] +2024-09-07 21:44:41,164 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [250603 - 250603] +2024-09-07 21:44:41,177 [main] INFO DocWordWriter - ... 41 ms for insertCaptionRef() +2024-09-07 21:44:41,177 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:44:41,218 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML120' to Word document and to used list. +2024-09-07 21:44:41,294 [main] INFO DocWordWriter - --- insertTable() 10 rows: Attributes of SV::SVPublisherAssociationL2 +2024-09-07 21:44:41,327 [main] DEBUG DocWordWriter - ... 33 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:44:41,343 [main] DEBUG DocWordWriter - ... 16 ms for createTable() +2024-09-07 21:44:41,715 [main] DEBUG DocWordWriter - ... 372 ms for fillValues() +2024-09-07 21:44:41,741 [main] DEBUG DocWordWriter - ... 26 ms for widths (table) +2024-09-07 21:44:41,863 [main] DEBUG DocWordWriter - ... 122 ms for widths (columns) +2024-09-07 21:44:41,889 [main] DEBUG DocWordWriter - ... 26 ms for shadding/merging/styling (rows) +2024-09-07 21:44:41,940 [main] DEBUG DocWordWriter - ... 51 ms for borders +2024-09-07 21:44:41,940 [main] DEBUG DocWordWriter - ... 225 ms for formatTable() +2024-09-07 21:44:41,952 [main] INFO DocWordWriter - ... 646 ms total for insertTable() +2024-09-07 21:44:42,046 [main] INFO DocWordWriter - ... 85 ms for insertCaption(): Table 82 – Attributes of SV::SVPublisherAssociationL2 +2024-09-07 21:44:42,097 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of SVPublisherAssociationL2.', [252079 - 252128] +2024-09-07 21:44:42,109 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of SVPublisherAssociationL2.', [252079 - 252129] +2024-09-07 21:44:42,116 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [252079 - 252079] +2024-09-07 21:44:42,128 [main] INFO DocWordWriter - ... 42 ms for insertCaptionRef() +2024-09-07 21:44:42,128 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:44:42,175 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML124' to Word document and to used list. +2024-09-07 21:44:42,254 [main] INFO DocWordWriter - --- insertTable() 13 rows: Attributes of SV::SVSubcriberAssociationIP +2024-09-07 21:44:42,284 [main] DEBUG DocWordWriter - ... 30 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:44:42,301 [main] DEBUG DocWordWriter - ... 17 ms for createTable() +2024-09-07 21:44:42,770 [main] DEBUG DocWordWriter - ... 469 ms for fillValues() +2024-09-07 21:44:42,800 [main] DEBUG DocWordWriter - ... 30 ms for widths (table) +2024-09-07 21:44:42,932 [main] DEBUG DocWordWriter - ... 132 ms for widths (columns) +2024-09-07 21:44:42,959 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-07 21:44:43,021 [main] DEBUG DocWordWriter - ... 62 ms for borders +2024-09-07 21:44:43,021 [main] DEBUG DocWordWriter - ... 251 ms for formatTable() +2024-09-07 21:44:43,033 [main] INFO DocWordWriter - ... 767 ms total for insertTable() +2024-09-07 21:44:43,138 [main] INFO DocWordWriter - ... 97 ms for insertCaption(): Table 83 – Attributes of SV::SVSubcriberAssociationIP +2024-09-07 21:44:43,187 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of SVSubcriberAssociationIP.', [253516 - 253565] +2024-09-07 21:44:43,199 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of SVSubcriberAssociationIP.', [253516 - 253566] +2024-09-07 21:44:43,206 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [253516 - 253516] +2024-09-07 21:44:43,219 [main] INFO DocWordWriter - ... 43 ms for insertCaptionRef() +2024-09-07 21:44:43,219 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:44:43,263 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML125' to Word document and to used list. +2024-09-07 21:44:43,342 [main] INFO DocWordWriter - --- insertTable() 12 rows: Attributes of SV::SVSubcriberAssociationL2 +2024-09-07 21:44:43,373 [main] DEBUG DocWordWriter - ... 31 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:44:43,391 [main] DEBUG DocWordWriter - ... 18 ms for createTable() +2024-09-07 21:44:43,910 [main] DEBUG DocWordWriter - ... 519 ms for fillValues() +2024-09-07 21:44:43,938 [main] DEBUG DocWordWriter - ... 28 ms for widths (table) +2024-09-07 21:44:44,068 [main] DEBUG DocWordWriter - ... 130 ms for widths (columns) +2024-09-07 21:44:44,098 [main] DEBUG DocWordWriter - ... 30 ms for shadding/merging/styling (rows) +2024-09-07 21:44:44,148 [main] DEBUG DocWordWriter - ... 50 ms for borders +2024-09-07 21:44:44,149 [main] DEBUG DocWordWriter - ... 239 ms for formatTable() +2024-09-07 21:44:44,159 [main] INFO DocWordWriter - ... 807 ms total for insertTable() +2024-09-07 21:44:44,277 [main] INFO DocWordWriter - ... 111 ms for insertCaption(): Table 84 – Attributes of SV::SVSubcriberAssociationL2 +2024-09-07 21:44:44,328 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of SVSubcriberAssociationL2.', [255223 - 255272] +2024-09-07 21:44:44,340 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of SVSubcriberAssociationL2.', [255223 - 255273] +2024-09-07 21:44:44,347 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [255223 - 255223] +2024-09-07 21:44:44,363 [main] INFO DocWordWriter - ... 47 ms for insertCaptionRef() +2024-09-07 21:44:44,363 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:44:44,405 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML130' to Word document and to used list. +2024-09-07 21:44:44,475 [main] INFO DocWordWriter - closing MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 21:44:47,123 [main] INFO DocWordWriter - opening MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 21:44:48,625 [main] INFO OptimOptions - setting view to normal +2024-09-07 21:44:48,666 [main] INFO OptimOptions - disabling pagination +2024-09-07 21:44:48,701 [main] INFO OptimOptions - disabling field update +2024-09-07 21:44:48,795 [main] INFO OptimOptions - disabling screen updating +2024-09-07 21:44:48,813 [main] DEBUG DocWordWriter - current(_optimisedOptions): OptimOptions [viewId=1, normView=true, paginate=false, updFld=false, updScr=false, fastSave=false, spelling=false, grammar=false] +2024-09-07 21:44:48,921 [main] INFO Util - time=[0:00:04.474] closed and reopened document. +2024-09-07 21:44:48,922 [main] INFO Util - +2024-09-07 21:44:48,985 [main] INFO DocWordWriter - --- insertTable() 4 rows: Attributes of SV::SVNotification +2024-09-07 21:44:49,018 [main] DEBUG DocWordWriter - ... 33 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:44:49,030 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-07 21:44:49,177 [main] DEBUG DocWordWriter - ... 147 ms for fillValues() +2024-09-07 21:44:49,201 [main] DEBUG DocWordWriter - ... 24 ms for widths (table) +2024-09-07 21:44:49,283 [main] DEBUG DocWordWriter - ... 82 ms for widths (columns) +2024-09-07 21:44:49,307 [main] DEBUG DocWordWriter - ... 24 ms for shadding/merging/styling (rows) +2024-09-07 21:44:49,338 [main] DEBUG DocWordWriter - ... 31 ms for borders +2024-09-07 21:44:49,338 [main] DEBUG DocWordWriter - ... 161 ms for formatTable() +2024-09-07 21:44:49,349 [main] INFO DocWordWriter - ... 353 ms total for insertTable() +2024-09-07 21:44:49,380 [main] INFO DocWordWriter - ... 23 ms for insertCaption(): Table 85 – Attributes of SV::SVNotification +2024-09-07 21:44:49,428 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of SVNotification.', [256760 - 256799] +2024-09-07 21:44:49,439 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of SVNotification.', [256760 - 256800] +2024-09-07 21:44:49,446 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [256760 - 256760] +2024-09-07 21:44:49,457 [main] INFO DocWordWriter - ... 40 ms for insertCaptionRef() +2024-09-07 21:44:49,457 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:44:49,607 [main] INFO AbstractWordWriter - writing doc for package GSE ... +2024-09-07 21:44:49,784 [main] INFO DocWordWriter - ... 22 ms for insertCaption(): Figure 26 – Class diagram GSE::GSE +2024-09-07 21:44:49,855 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': GSE classes relationship. GSEProvider and GSEAssociation inherit both Security and Procotol Info attributes from the more general classes.', [257533 - 257673] +2024-09-07 21:44:49,863 [main] TRACE DocWordWriter - prepend : range.txt = ': GSE classes relationship. GSEProvider and GSEAssociation inherit both Security and Procotol Info attributes from the more general classes.', [257533 - 257673] +2024-09-07 21:44:49,869 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [257533 - 257533] +2024-09-07 21:44:49,880 [main] INFO DocWordWriter - ... 30 ms for insertCaptionRef() +2024-09-07 21:44:49,880 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:44:49,921 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML126' to Word document and to used list. +2024-09-07 21:44:49,997 [main] INFO DocWordWriter - --- insertTable() 27 rows: Attributes of GSE::GSESubscriberAssociation +2024-09-07 21:44:50,025 [main] DEBUG DocWordWriter - ... 28 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:44:50,037 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-07 21:44:50,974 [main] DEBUG DocWordWriter - ... 937 ms for fillValues() +2024-09-07 21:44:51,012 [main] DEBUG DocWordWriter - ... 38 ms for widths (table) +2024-09-07 21:44:51,199 [main] DEBUG DocWordWriter - ... 187 ms for widths (columns) +2024-09-07 21:44:51,229 [main] DEBUG DocWordWriter - ... 30 ms for shadding/merging/styling (rows) +2024-09-07 21:44:51,302 [main] DEBUG DocWordWriter - ... 73 ms for borders +2024-09-07 21:44:51,302 [main] DEBUG DocWordWriter - ... 328 ms for formatTable() +2024-09-07 21:44:51,313 [main] INFO DocWordWriter - ... 1305 ms total for insertTable() +2024-09-07 21:44:51,360 [main] INFO DocWordWriter - ... 39 ms for insertCaption(): Table 86 – Attributes of GSE::GSESubscriberAssociation +2024-09-07 21:44:51,410 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of GSESubscriberAssociation.', [257860 - 257909] +2024-09-07 21:44:51,421 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of GSESubscriberAssociation.', [257860 - 257910] +2024-09-07 21:44:51,428 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [257860 - 257860] +2024-09-07 21:44:51,439 [main] INFO DocWordWriter - ... 40 ms for insertCaptionRef() +2024-09-07 21:44:51,439 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:44:51,479 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML131' to Word document and to used list. +2024-09-07 21:44:51,557 [main] INFO DocWordWriter - --- insertTable() 13 rows: Attributes of GSE::GSEProvider +2024-09-07 21:44:51,590 [main] DEBUG DocWordWriter - ... 33 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:44:51,602 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-07 21:44:52,071 [main] DEBUG DocWordWriter - ... 469 ms for fillValues() +2024-09-07 21:44:52,100 [main] DEBUG DocWordWriter - ... 29 ms for widths (table) +2024-09-07 21:44:52,229 [main] DEBUG DocWordWriter - ... 129 ms for widths (columns) +2024-09-07 21:44:52,256 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-07 21:44:52,307 [main] DEBUG DocWordWriter - ... 51 ms for borders +2024-09-07 21:44:52,307 [main] DEBUG DocWordWriter - ... 236 ms for formatTable() +2024-09-07 21:44:52,319 [main] INFO DocWordWriter - ... 750 ms total for insertTable() +2024-09-07 21:44:52,366 [main] INFO DocWordWriter - ... 40 ms for insertCaption(): Table 87 – Attributes of GSE::GSEProvider +2024-09-07 21:44:52,414 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of GSEProvider.', [260934 - 260970] +2024-09-07 21:44:52,427 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of GSEProvider.', [260934 - 260971] +2024-09-07 21:44:52,434 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [260934 - 260934] +2024-09-07 21:44:52,445 [main] INFO DocWordWriter - ... 42 ms for insertCaptionRef() +2024-09-07 21:44:52,445 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:44:52,486 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML121' to Word document and to used list. +2024-09-07 21:44:52,563 [main] INFO DocWordWriter - --- insertTable() 11 rows: Attributes of GSE::GSEPublisherAssociationIP +2024-09-07 21:44:52,592 [main] DEBUG DocWordWriter - ... 29 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:44:52,604 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-07 21:44:53,017 [main] DEBUG DocWordWriter - ... 413 ms for fillValues() +2024-09-07 21:44:53,041 [main] DEBUG DocWordWriter - ... 24 ms for widths (table) +2024-09-07 21:44:53,166 [main] DEBUG DocWordWriter - ... 125 ms for widths (columns) +2024-09-07 21:44:53,196 [main] DEBUG DocWordWriter - ... 30 ms for shadding/merging/styling (rows) +2024-09-07 21:44:53,242 [main] DEBUG DocWordWriter - ... 46 ms for borders +2024-09-07 21:44:53,242 [main] DEBUG DocWordWriter - ... 225 ms for formatTable() +2024-09-07 21:44:53,253 [main] INFO DocWordWriter - ... 679 ms total for insertTable() +2024-09-07 21:44:53,306 [main] INFO DocWordWriter - ... 45 ms for insertCaption(): Table 88 – Attributes of GSE::GSEPublisherAssociationIP +2024-09-07 21:44:53,354 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of GSEPublisherAssociationIP.', [262965 - 263015] +2024-09-07 21:44:53,367 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of GSEPublisherAssociationIP.', [262965 - 263016] +2024-09-07 21:44:53,373 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [262965 - 262965] +2024-09-07 21:44:53,384 [main] INFO DocWordWriter - ... 41 ms for insertCaptionRef() +2024-09-07 21:44:53,385 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:44:53,431 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML122' to Word document and to used list. +2024-09-07 21:44:53,508 [main] INFO DocWordWriter - --- insertTable() 11 rows: Attributes of GSE::GSEPublisherAssociationL2 +2024-09-07 21:44:53,537 [main] DEBUG DocWordWriter - ... 29 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:44:53,550 [main] DEBUG DocWordWriter - ... 13 ms for createTable() +2024-09-07 21:44:53,967 [main] DEBUG DocWordWriter - ... 417 ms for fillValues() +2024-09-07 21:44:53,995 [main] DEBUG DocWordWriter - ... 28 ms for widths (table) +2024-09-07 21:44:54,117 [main] DEBUG DocWordWriter - ... 122 ms for widths (columns) +2024-09-07 21:44:54,144 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-07 21:44:54,193 [main] DEBUG DocWordWriter - ... 49 ms for borders +2024-09-07 21:44:54,194 [main] DEBUG DocWordWriter - ... 226 ms for formatTable() +2024-09-07 21:44:54,206 [main] INFO DocWordWriter - ... 685 ms total for insertTable() +2024-09-07 21:44:54,266 [main] INFO DocWordWriter - ... 52 ms for insertCaption(): Table 89 – Attributes of GSE::GSEPublisherAssociationL2 +2024-09-07 21:44:54,314 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of GSEPublisherAssociationL2.', [264446 - 264496] +2024-09-07 21:44:54,326 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of GSEPublisherAssociationL2.', [264446 - 264497] +2024-09-07 21:44:54,334 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [264446 - 264446] +2024-09-07 21:44:54,345 [main] INFO DocWordWriter - ... 42 ms for insertCaptionRef() +2024-09-07 21:44:54,345 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:44:54,387 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML127' to Word document and to used list. +2024-09-07 21:44:54,464 [main] INFO DocWordWriter - --- insertTable() 29 rows: Attributes of GSE::GSESubcriberAssociationIP +2024-09-07 21:44:54,492 [main] DEBUG DocWordWriter - ... 28 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:44:54,510 [main] DEBUG DocWordWriter - ... 18 ms for createTable() +2024-09-07 21:44:55,595 [main] DEBUG DocWordWriter - ... 1085 ms for fillValues() +2024-09-07 21:44:55,634 [main] DEBUG DocWordWriter - ... 39 ms for widths (table) +2024-09-07 21:44:55,825 [main] DEBUG DocWordWriter - ... 191 ms for widths (columns) +2024-09-07 21:44:55,857 [main] DEBUG DocWordWriter - ... 32 ms for shadding/merging/styling (rows) +2024-09-07 21:44:55,941 [main] DEBUG DocWordWriter - ... 84 ms for borders +2024-09-07 21:44:55,941 [main] DEBUG DocWordWriter - ... 346 ms for formatTable() +2024-09-07 21:44:55,952 [main] INFO DocWordWriter - ... 1477 ms total for insertTable() +2024-09-07 21:44:56,033 [main] INFO DocWordWriter - ... 73 ms for insertCaption(): Table 90 – Attributes of GSE::GSESubcriberAssociationIP +2024-09-07 21:44:56,083 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of GSESubcriberAssociationIP.', [266018 - 266068] +2024-09-07 21:44:56,096 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of GSESubcriberAssociationIP.', [266018 - 266069] +2024-09-07 21:44:56,103 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [266018 - 266018] +2024-09-07 21:44:56,115 [main] INFO DocWordWriter - ... 43 ms for insertCaptionRef() +2024-09-07 21:44:56,115 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:44:56,157 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML128' to Word document and to used list. +2024-09-07 21:44:56,242 [main] INFO DocWordWriter - --- insertTable() 29 rows: Attributes of GSE::GSESubcriberAssociationL2 +2024-09-07 21:44:56,270 [main] DEBUG DocWordWriter - ... 28 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:44:56,291 [main] DEBUG DocWordWriter - ... 21 ms for createTable() +2024-09-07 21:44:57,395 [main] DEBUG DocWordWriter - ... 1104 ms for fillValues() +2024-09-07 21:44:57,435 [main] DEBUG DocWordWriter - ... 40 ms for widths (table) +2024-09-07 21:44:57,627 [main] DEBUG DocWordWriter - ... 192 ms for widths (columns) +2024-09-07 21:44:57,656 [main] DEBUG DocWordWriter - ... 29 ms for shadding/merging/styling (rows) +2024-09-07 21:44:57,735 [main] DEBUG DocWordWriter - ... 79 ms for borders +2024-09-07 21:44:57,735 [main] DEBUG DocWordWriter - ... 340 ms for formatTable() +2024-09-07 21:44:57,746 [main] INFO DocWordWriter - ... 1493 ms total for insertTable() +2024-09-07 21:44:57,835 [main] INFO DocWordWriter - ... 81 ms for insertCaption(): Table 91 – Attributes of GSE::GSESubcriberAssociationL2 +2024-09-07 21:44:57,887 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of GSESubcriberAssociationL2.', [269371 - 269421] +2024-09-07 21:44:57,899 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of GSESubcriberAssociationL2.', [269371 - 269422] +2024-09-07 21:44:57,906 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [269371 - 269371] +2024-09-07 21:44:57,919 [main] INFO DocWordWriter - ... 43 ms for insertCaptionRef() +2024-09-07 21:44:57,919 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:44:57,962 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML132' to Word document and to used list. +2024-09-07 21:44:58,048 [main] INFO DocWordWriter - --- insertTable() 4 rows: Attributes of GSE::GSENotification +2024-09-07 21:44:58,077 [main] DEBUG DocWordWriter - ... 29 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:44:58,090 [main] DEBUG DocWordWriter - ... 13 ms for createTable() +2024-09-07 21:44:58,247 [main] DEBUG DocWordWriter - ... 157 ms for fillValues() +2024-09-07 21:44:58,270 [main] DEBUG DocWordWriter - ... 23 ms for widths (table) +2024-09-07 21:44:58,362 [main] DEBUG DocWordWriter - ... 92 ms for widths (columns) +2024-09-07 21:44:58,390 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-07 21:44:58,422 [main] DEBUG DocWordWriter - ... 32 ms for borders +2024-09-07 21:44:58,422 [main] DEBUG DocWordWriter - ... 175 ms for formatTable() +2024-09-07 21:44:58,433 [main] INFO DocWordWriter - ... 374 ms total for insertTable() +2024-09-07 21:44:58,524 [main] INFO DocWordWriter - ... 82 ms for insertCaption(): Table 92 – Attributes of GSE::GSENotification +2024-09-07 21:44:58,573 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of GSENotification.', [272681 - 272721] +2024-09-07 21:44:58,586 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of GSENotification.', [272681 - 272722] +2024-09-07 21:44:58,593 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [272681 - 272681] +2024-09-07 21:44:58,606 [main] INFO DocWordWriter - ... 44 ms for insertCaptionRef() +2024-09-07 21:44:58,606 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:44:58,617 [main] INFO Util - time=[0:01:31.723] replaced [273158 - 273158] PACKAGE Application Protocols Agents, figures (17 before 9 mine), tables (48 before 44 mine)... +2024-09-07 21:44:58,617 [main] INFO Util - +2024-09-07 21:44:58,621 [main] INFO AbstractWordWriter - replacing [273211 - 273250] PACKAGE Interfaces Agent, figures (26 before ), tables (92 before )... +2024-09-07 21:44:58,653 [main] INFO AbstractWordWriter - writing doc for package Interfaces Agent ... +2024-09-07 21:44:58,845 [main] INFO DocWordWriter - ... 34 ms for insertCaption(): Figure 27 – Class diagram Interfaces Agent::Interfaces +2024-09-07 21:44:58,918 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': The IED interfaces are depicted.', [273486 - 273520] +2024-09-07 21:44:58,926 [main] TRACE DocWordWriter - prepend : range.txt = ': The IED interfaces are depicted.', [273486 - 273520] +2024-09-07 21:44:58,933 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [273486 - 273486] +2024-09-07 21:44:58,946 [main] INFO DocWordWriter - ... 33 ms for insertCaptionRef() +2024-09-07 21:44:58,946 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:44:58,989 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML136' to Word document and to used list. +2024-09-07 21:44:59,074 [main] INFO DocWordWriter - --- insertTable() 8 rows: Attributes of Interfaces Agent::Interface +2024-09-07 21:44:59,105 [main] DEBUG DocWordWriter - ... 31 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:44:59,118 [main] DEBUG DocWordWriter - ... 13 ms for createTable() +2024-09-07 21:44:59,438 [main] DEBUG DocWordWriter - ... 320 ms for fillValues() +2024-09-07 21:44:59,463 [main] DEBUG DocWordWriter - ... 25 ms for widths (table) +2024-09-07 21:44:59,572 [main] DEBUG DocWordWriter - ... 109 ms for widths (columns) +2024-09-07 21:44:59,600 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-07 21:44:59,641 [main] DEBUG DocWordWriter - ... 41 ms for borders +2024-09-07 21:44:59,641 [main] DEBUG DocWordWriter - ... 203 ms for formatTable() +2024-09-07 21:44:59,653 [main] INFO DocWordWriter - ... 567 ms total for insertTable() +2024-09-07 21:44:59,765 [main] INFO DocWordWriter - ... 103 ms for insertCaption(): Table 93 – Attributes of Interfaces Agent::Interface +2024-09-07 21:44:59,815 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Interface.', [273670 - 273704] +2024-09-07 21:44:59,828 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Interface.', [273670 - 273705] +2024-09-07 21:44:59,835 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [273670 - 273670] +2024-09-07 21:44:59,848 [main] INFO DocWordWriter - ... 45 ms for insertCaptionRef() +2024-09-07 21:44:59,848 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:44:59,892 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML142' to Word document and to used list. +2024-09-07 21:44:59,971 [main] INFO DocWordWriter - --- insertTable() 22 rows: Attributes of Interfaces Agent::Interfaces +2024-09-07 21:45:00,000 [main] DEBUG DocWordWriter - ... 29 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:45:00,027 [main] DEBUG DocWordWriter - ... 27 ms for createTable() +2024-09-07 21:45:00,914 [main] DEBUG DocWordWriter - ... 887 ms for fillValues() +2024-09-07 21:45:00,950 [main] DEBUG DocWordWriter - ... 35 ms for widths (table) +2024-09-07 21:45:01,115 [main] DEBUG DocWordWriter - ... 165 ms for widths (columns) +2024-09-07 21:45:01,142 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-07 21:45:01,221 [main] DEBUG DocWordWriter - ... 79 ms for borders +2024-09-07 21:45:01,221 [main] DEBUG DocWordWriter - ... 307 ms for formatTable() +2024-09-07 21:45:01,233 [main] INFO DocWordWriter - ... 1250 ms total for insertTable() +2024-09-07 21:45:01,366 [main] INFO DocWordWriter - ... 124 ms for insertCaption(): Table 94 – Attributes of Interfaces Agent::Interfaces +2024-09-07 21:45:01,417 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Interfaces.', [274520 - 274555] +2024-09-07 21:45:01,428 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Interfaces.', [274520 - 274556] +2024-09-07 21:45:01,435 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [274520 - 274520] +2024-09-07 21:45:01,449 [main] INFO DocWordWriter - ... 44 ms for insertCaptionRef() +2024-09-07 21:45:01,449 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:45:01,493 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML137' to Word document and to used list. +2024-09-07 21:45:01,574 [main] INFO DocWordWriter - --- insertTable() 8 rows: Attributes of Interfaces Agent::ETHEntry +2024-09-07 21:45:01,604 [main] DEBUG DocWordWriter - ... 30 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:45:01,618 [main] DEBUG DocWordWriter - ... 14 ms for createTable() +2024-09-07 21:45:01,940 [main] DEBUG DocWordWriter - ... 322 ms for fillValues() +2024-09-07 21:45:01,967 [main] DEBUG DocWordWriter - ... 27 ms for widths (table) +2024-09-07 21:45:02,075 [main] DEBUG DocWordWriter - ... 108 ms for widths (columns) +2024-09-07 21:45:02,105 [main] DEBUG DocWordWriter - ... 30 ms for shadding/merging/styling (rows) +2024-09-07 21:45:02,146 [main] DEBUG DocWordWriter - ... 41 ms for borders +2024-09-07 21:45:02,146 [main] DEBUG DocWordWriter - ... 206 ms for formatTable() +2024-09-07 21:45:02,159 [main] INFO DocWordWriter - ... 572 ms total for insertTable() +2024-09-07 21:45:02,302 [main] INFO DocWordWriter - ... 135 ms for insertCaption(): Table 95 – Attributes of Interfaces Agent::ETHEntry +2024-09-07 21:45:02,349 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of ETHEntry.', [277042 - 277075] +2024-09-07 21:45:02,362 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of ETHEntry.', [277042 - 277076] +2024-09-07 21:45:02,369 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [277042 - 277042] +2024-09-07 21:45:02,395 [main] INFO DocWordWriter - ... 57 ms for insertCaptionRef() +2024-09-07 21:45:02,395 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:45:02,454 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML138' to Word document and to used list. +2024-09-07 21:45:02,532 [main] INFO DocWordWriter - --- insertTable() 9 rows: Attributes of Interfaces Agent::KEYEntry +2024-09-07 21:45:02,562 [main] DEBUG DocWordWriter - ... 30 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:45:02,577 [main] DEBUG DocWordWriter - ... 15 ms for createTable() +2024-09-07 21:45:02,934 [main] DEBUG DocWordWriter - ... 357 ms for fillValues() +2024-09-07 21:45:02,961 [main] DEBUG DocWordWriter - ... 26 ms for widths (table) +2024-09-07 21:45:03,075 [main] DEBUG DocWordWriter - ... 114 ms for widths (columns) +2024-09-07 21:45:03,103 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-07 21:45:03,151 [main] DEBUG DocWordWriter - ... 48 ms for borders +2024-09-07 21:45:03,151 [main] DEBUG DocWordWriter - ... 217 ms for formatTable() +2024-09-07 21:45:03,163 [main] INFO DocWordWriter - ... 619 ms total for insertTable() +2024-09-07 21:45:03,308 [main] INFO DocWordWriter - ... 138 ms for insertCaption(): Table 96 – Attributes of Interfaces Agent::KEYEntry +2024-09-07 21:45:03,357 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of KEYEntry.', [277921 - 277954] +2024-09-07 21:45:03,370 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of KEYEntry.', [277921 - 277955] +2024-09-07 21:45:03,377 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [277921 - 277921] +2024-09-07 21:45:03,392 [main] INFO DocWordWriter - ... 46 ms for insertCaptionRef() +2024-09-07 21:45:03,392 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:45:03,434 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML139' to Word document and to used list. +2024-09-07 21:45:03,506 [main] INFO DocWordWriter - closing MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 21:45:06,097 [main] INFO DocWordWriter - opening MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 21:45:07,691 [main] INFO OptimOptions - setting view to normal +2024-09-07 21:45:07,737 [main] INFO OptimOptions - disabling pagination +2024-09-07 21:45:07,779 [main] INFO OptimOptions - disabling field update +2024-09-07 21:45:07,890 [main] INFO OptimOptions - disabling screen updating +2024-09-07 21:45:07,909 [main] DEBUG DocWordWriter - current(_optimisedOptions): OptimOptions [viewId=1, normView=true, paginate=false, updFld=false, updScr=false, fastSave=false, spelling=false, grammar=false] +2024-09-07 21:45:07,996 [main] INFO Util - time=[0:00:04.519] closed and reopened document. +2024-09-07 21:45:07,996 [main] INFO Util - +2024-09-07 21:45:08,046 [main] INFO DocWordWriter - --- insertTable() 10 rows: Attributes of Interfaces Agent::SEREntry +2024-09-07 21:45:08,077 [main] DEBUG DocWordWriter - ... 31 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:45:08,089 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-07 21:45:08,452 [main] DEBUG DocWordWriter - ... 363 ms for fillValues() +2024-09-07 21:45:08,479 [main] DEBUG DocWordWriter - ... 27 ms for widths (table) +2024-09-07 21:45:08,593 [main] DEBUG DocWordWriter - ... 114 ms for widths (columns) +2024-09-07 21:45:08,622 [main] DEBUG DocWordWriter - ... 29 ms for shadding/merging/styling (rows) +2024-09-07 21:45:08,669 [main] DEBUG DocWordWriter - ... 47 ms for borders +2024-09-07 21:45:08,669 [main] DEBUG DocWordWriter - ... 217 ms for formatTable() +2024-09-07 21:45:08,681 [main] INFO DocWordWriter - ... 623 ms total for insertTable() +2024-09-07 21:45:08,715 [main] INFO DocWordWriter - ... 27 ms for insertCaption(): Table 97 – Attributes of Interfaces Agent::SEREntry +2024-09-07 21:45:08,763 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of SEREntry.', [278890 - 278923] +2024-09-07 21:45:08,774 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of SEREntry.', [278890 - 278924] +2024-09-07 21:45:08,780 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [278890 - 278890] +2024-09-07 21:45:08,792 [main] INFO DocWordWriter - ... 41 ms for insertCaptionRef() +2024-09-07 21:45:08,792 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:45:08,942 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML140' to Word document and to used list. +2024-09-07 21:45:09,018 [main] INFO DocWordWriter - --- insertTable() 8 rows: Attributes of Interfaces Agent::ALGEntry +2024-09-07 21:45:09,047 [main] DEBUG DocWordWriter - ... 29 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:45:09,058 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 21:45:09,352 [main] DEBUG DocWordWriter - ... 294 ms for fillValues() +2024-09-07 21:45:09,378 [main] DEBUG DocWordWriter - ... 26 ms for widths (table) +2024-09-07 21:45:09,485 [main] DEBUG DocWordWriter - ... 107 ms for widths (columns) +2024-09-07 21:45:09,513 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-07 21:45:09,552 [main] DEBUG DocWordWriter - ... 39 ms for borders +2024-09-07 21:45:09,552 [main] DEBUG DocWordWriter - ... 200 ms for formatTable() +2024-09-07 21:45:09,565 [main] INFO DocWordWriter - ... 534 ms total for insertTable() +2024-09-07 21:45:09,604 [main] INFO DocWordWriter - ... 32 ms for insertCaption(): Table 98 – Attributes of Interfaces Agent::ALGEntry +2024-09-07 21:45:09,653 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of ALGEntry.', [279901 - 279934] +2024-09-07 21:45:09,665 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of ALGEntry.', [279901 - 279935] +2024-09-07 21:45:09,672 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [279901 - 279901] +2024-09-07 21:45:09,687 [main] INFO DocWordWriter - ... 46 ms for insertCaptionRef() +2024-09-07 21:45:09,687 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:45:09,731 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML141' to Word document and to used list. +2024-09-07 21:45:09,807 [main] INFO DocWordWriter - --- insertTable() 8 rows: Attributes of Interfaces Agent::USBEntry +2024-09-07 21:45:09,837 [main] DEBUG DocWordWriter - ... 30 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:45:09,848 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 21:45:10,147 [main] DEBUG DocWordWriter - ... 299 ms for fillValues() +2024-09-07 21:45:10,173 [main] DEBUG DocWordWriter - ... 26 ms for widths (table) +2024-09-07 21:45:10,282 [main] DEBUG DocWordWriter - ... 109 ms for widths (columns) +2024-09-07 21:45:10,309 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-07 21:45:10,349 [main] DEBUG DocWordWriter - ... 40 ms for borders +2024-09-07 21:45:10,349 [main] DEBUG DocWordWriter - ... 202 ms for formatTable() +2024-09-07 21:45:10,363 [main] INFO DocWordWriter - ... 542 ms total for insertTable() +2024-09-07 21:45:10,408 [main] INFO DocWordWriter - ... 37 ms for insertCaption(): Table 99 – Attributes of Interfaces Agent::USBEntry +2024-09-07 21:45:10,460 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of USBEntry.', [280772 - 280805] +2024-09-07 21:45:10,471 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of USBEntry.', [280772 - 280806] +2024-09-07 21:45:10,478 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [280772 - 280772] +2024-09-07 21:45:10,489 [main] INFO DocWordWriter - ... 42 ms for insertCaptionRef() +2024-09-07 21:45:10,489 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:45:10,529 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML143' to Word document and to used list. +2024-09-07 21:45:10,606 [main] INFO DocWordWriter - --- insertTable() 11 rows: Attributes of Interfaces Agent::Notification +2024-09-07 21:45:10,635 [main] DEBUG DocWordWriter - ... 29 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:45:10,647 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-07 21:45:11,057 [main] DEBUG DocWordWriter - ... 410 ms for fillValues() +2024-09-07 21:45:11,085 [main] DEBUG DocWordWriter - ... 28 ms for widths (table) +2024-09-07 21:45:11,210 [main] DEBUG DocWordWriter - ... 125 ms for widths (columns) +2024-09-07 21:45:11,238 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-07 21:45:11,284 [main] DEBUG DocWordWriter - ... 46 ms for borders +2024-09-07 21:45:11,284 [main] DEBUG DocWordWriter - ... 227 ms for formatTable() +2024-09-07 21:45:11,297 [main] INFO DocWordWriter - ... 678 ms total for insertTable() +2024-09-07 21:45:11,350 [main] INFO DocWordWriter - ... 47 ms for insertCaption(): Table 100 – Attributes of Interfaces Agent::Notification +2024-09-07 21:45:11,400 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Notification.', [281693 - 281730] +2024-09-07 21:45:11,412 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Notification.', [281693 - 281731] +2024-09-07 21:45:11,420 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [281693 - 281693] +2024-09-07 21:45:11,431 [main] INFO DocWordWriter - ... 42 ms for insertCaptionRef() +2024-09-07 21:45:11,431 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:45:11,442 [main] INFO Util - time=[0:00:12.825] replaced [282873 - 282873] PACKAGE Interfaces Agent, figures (26 before 1 mine), tables (92 before 8 mine)... +2024-09-07 21:45:11,442 [main] INFO Util - +2024-09-07 21:45:11,446 [main] INFO AbstractWordWriter - replacing [282914 - 282949] PACKAGE Clocks Agent, figures (27 before ), tables (100 before )... +2024-09-07 21:45:11,476 [main] INFO AbstractWordWriter - writing doc for package Clocks Agent ... +2024-09-07 21:45:11,645 [main] INFO DocWordWriter - ... 26 ms for insertCaption(): Figure 28 – Class diagram Clocks Agent::Clocks Agent +2024-09-07 21:45:11,721 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': Clocks Agent classes', [283111 - 283133] +2024-09-07 21:45:11,729 [main] TRACE DocWordWriter - prepend : range.txt = ': Clocks Agent classes', [283111 - 283133] +2024-09-07 21:45:11,736 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [283111 - 283111] +2024-09-07 21:45:11,747 [main] INFO DocWordWriter - ... 32 ms for insertCaptionRef() +2024-09-07 21:45:11,747 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:45:11,802 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML133' to Word document and to used list. +2024-09-07 21:45:11,881 [main] INFO DocWordWriter - --- insertTable() 6 rows: Attributes of Clocks Agent::Clock +2024-09-07 21:45:11,911 [main] DEBUG DocWordWriter - ... 30 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:45:11,922 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 21:45:12,152 [main] DEBUG DocWordWriter - ... 230 ms for fillValues() +2024-09-07 21:45:12,177 [main] DEBUG DocWordWriter - ... 25 ms for widths (table) +2024-09-07 21:45:12,269 [main] DEBUG DocWordWriter - ... 91 ms for widths (columns) +2024-09-07 21:45:12,296 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-07 21:45:12,333 [main] DEBUG DocWordWriter - ... 37 ms for borders +2024-09-07 21:45:12,333 [main] DEBUG DocWordWriter - ... 181 ms for formatTable() +2024-09-07 21:45:12,345 [main] INFO DocWordWriter - ... 452 ms total for insertTable() +2024-09-07 21:45:12,414 [main] INFO DocWordWriter - ... 61 ms for insertCaption(): Table 101 – Attributes of Clocks Agent::Clock +2024-09-07 21:45:12,472 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Clock.', [283245 - 283275] +2024-09-07 21:45:12,484 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Clock.', [283245 - 283276] +2024-09-07 21:45:12,491 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [283245 - 283245] +2024-09-07 21:45:12,503 [main] INFO DocWordWriter - ... 43 ms for insertCaptionRef() +2024-09-07 21:45:12,503 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:45:12,545 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML134' to Word document and to used list. +2024-09-07 21:45:12,622 [main] INFO DocWordWriter - --- insertTable() 10 rows: Attributes of Clocks Agent::ClockEntry +2024-09-07 21:45:12,651 [main] DEBUG DocWordWriter - ... 29 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:45:12,662 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 21:45:13,047 [main] DEBUG DocWordWriter - ... 385 ms for fillValues() +2024-09-07 21:45:13,075 [main] DEBUG DocWordWriter - ... 28 ms for widths (table) +2024-09-07 21:45:13,190 [main] DEBUG DocWordWriter - ... 115 ms for widths (columns) +2024-09-07 21:45:13,219 [main] DEBUG DocWordWriter - ... 29 ms for shadding/merging/styling (rows) +2024-09-07 21:45:13,265 [main] DEBUG DocWordWriter - ... 46 ms for borders +2024-09-07 21:45:13,265 [main] DEBUG DocWordWriter - ... 218 ms for formatTable() +2024-09-07 21:45:13,278 [main] INFO DocWordWriter - ... 643 ms total for insertTable() +2024-09-07 21:45:13,349 [main] INFO DocWordWriter - ... 61 ms for insertCaption(): Table 102 – Attributes of Clocks Agent::ClockEntry +2024-09-07 21:45:13,401 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of ClockEntry.', [284172 - 284207] +2024-09-07 21:45:13,412 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of ClockEntry.', [284172 - 284208] +2024-09-07 21:45:13,420 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [284172 - 284172] +2024-09-07 21:45:13,431 [main] INFO DocWordWriter - ... 42 ms for insertCaptionRef() +2024-09-07 21:45:13,431 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:45:13,476 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML135' to Word document and to used list. +2024-09-07 21:45:13,556 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of Clocks Agent::SecurityNotification +2024-09-07 21:45:13,585 [main] DEBUG DocWordWriter - ... 29 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:45:13,595 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-07 21:45:13,681 [main] DEBUG DocWordWriter - ... 85 ms for fillValues() +2024-09-07 21:45:13,703 [main] DEBUG DocWordWriter - ... 22 ms for widths (table) +2024-09-07 21:45:13,784 [main] DEBUG DocWordWriter - ... 81 ms for widths (columns) +2024-09-07 21:45:13,811 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-07 21:45:13,844 [main] DEBUG DocWordWriter - ... 33 ms for borders +2024-09-07 21:45:13,844 [main] DEBUG DocWordWriter - ... 164 ms for formatTable() +2024-09-07 21:45:13,856 [main] INFO DocWordWriter - ... 288 ms total for insertTable() +2024-09-07 21:45:13,938 [main] INFO DocWordWriter - ... 73 ms for insertCaption(): Table 103 – Attributes of Clocks Agent::SecurityNotification +2024-09-07 21:45:13,992 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of SecurityNotification.', [287067 - 287112] +2024-09-07 21:45:14,004 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of SecurityNotification.', [287067 - 287113] +2024-09-07 21:45:14,011 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [287067 - 287067] +2024-09-07 21:45:14,023 [main] INFO DocWordWriter - ... 43 ms for insertCaptionRef() +2024-09-07 21:45:14,023 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:45:14,033 [main] INFO Util - time=[0:00:02.591] replaced [287377 - 287377] PACKAGE Clocks Agent, figures (27 before 1 mine), tables (100 before 3 mine)... +2024-09-07 21:45:14,033 [main] INFO Util - +2024-09-07 21:45:14,034 [main] INFO Util - +2024-09-07 21:45:14,034 [main] INFO Util - ------------------------------------------------ +2024-09-07 21:45:14,034 [main] INFO Util - scanning placeholders... +2024-09-07 21:45:14,544 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTruthValueùUML38ùdd' HYPERLINK TruthValue, UML38 +2024-09-07 21:45:14,558 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDateAndTimeùUML27ùdd' HYPERLINK DateAndTime, UML27 +2024-09-07 21:45:14,571 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTruthValueùUML38ùdd' HYPERLINK TruthValue, UML38 +2024-09-07 21:45:14,586 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDateAndTimeùUML27ùdd' HYPERLINK DateAndTime, UML27 +2024-09-07 21:45:14,601 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounter32 ùUML26ùdd' HYPERLINK Counter32 , UML26 +2024-09-07 21:45:14,615 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDateAndTimeùUML27ùdd' HYPERLINK DateAndTime, UML27 +2024-09-07 21:45:14,628 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTruthValueùUML38ùdd' HYPERLINK TruthValue, UML38 +2024-09-07 21:45:14,644 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloat32TCùUML29ùdd' HYPERLINK Float32TC, UML29 +2024-09-07 21:45:14,658 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDateAndTimeùUML27ùdd' HYPERLINK DateAndTime, UML27 +2024-09-07 21:45:14,671 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloat32TCùUML29ùdd' HYPERLINK Float32TC, UML29 +2024-09-07 21:45:14,689 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùUnsigned32ùUML36ùdd' HYPERLINK Unsigned32, UML36 +2024-09-07 21:45:14,704 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInteger32ùUML35ùdd' HYPERLINK Integer32, UML35 +2024-09-07 21:45:14,718 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDateAndTimeùUML27ùdd' HYPERLINK DateAndTime, UML27 +2024-09-07 21:45:14,733 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInteger32ùUML35ùdd' HYPERLINK Integer32, UML35 +2024-09-07 21:45:14,748 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML31ùdd' HYPERLINK InetAddress, UML31 +2024-09-07 21:45:14,763 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML33ùdd' HYPERLINK InetAddressType, UML33 +2024-09-07 21:45:14,778 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMacAddressùUML32ùdd' HYPERLINK MacAddress, UML32 +2024-09-07 21:45:14,793 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDisplayStringùUML28ùdd' HYPERLINK DisplayString, UML28 +2024-09-07 21:45:14,806 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDateAndTimeùUML27ùdd' HYPERLINK DateAndTime, UML27 +2024-09-07 21:45:14,820 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDisplayStringùUML28ùdd' HYPERLINK DisplayString, UML28 +2024-09-07 21:45:14,835 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDateAndTimeùUML27ùdd' HYPERLINK DateAndTime, UML27 +2024-09-07 21:45:14,848 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDisplayStringùUML28ùdd' HYPERLINK DisplayString, UML28 +2024-09-07 21:45:14,865 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDateAndTimeùUML27ùdd' HYPERLINK DateAndTime, UML27 +2024-09-07 21:45:14,878 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAppDatStKindùUML41ùdd' HYPERLINK AppDatStKind, UML41 +2024-09-07 21:45:14,891 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDateAndTimeùUML27ùdd' HYPERLINK DateAndTime, UML27 +2024-09-07 21:45:14,904 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùPhyHealthKindùUML42ùdd' HYPERLINK PhyHealthKind, UML42 +2024-09-07 21:45:14,918 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùExtKindùUML43ùdd' HYPERLINK ExtKind, UML43 +2024-09-07 21:45:14,931 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntKindùUML44ùdd' HYPERLINK IntKind, UML44 +2024-09-07 21:45:14,944 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDateAndTimeùUML27ùdd' HYPERLINK DateAndTime, UML27 +2024-09-07 21:45:14,956 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventKindùUML48ùdd' HYPERLINK EventKind, UML48 +2024-09-07 21:45:14,969 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDateAndTimeùUML27ùdd' HYPERLINK DateAndTime, UML27 +2024-09-07 21:45:14,984 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùPSPAccKindùUML46ùdd' HYPERLINK PSPAccKind, UML46 +2024-09-07 21:45:14,999 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùProtIdKindùUML47ùdd' HYPERLINK ProtIdKind, UML47 +2024-09-07 21:45:15,014 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimSyncIssueKindùUML49ùdd' HYPERLINK TimSyncIssueKind, UML49 +2024-09-07 21:45:15,029 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSecurityProfileKindùUML50ùdd' HYPERLINK SecurityProfileKind, UML50 +2024-09-07 21:45:15,045 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimSyncSrcKindùUML51ùdd' HYPERLINK TimSyncSrcKind, UML51 +2024-09-07 21:45:15,059 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùLnkKindùUML45ùdd' HYPERLINK LnkKind, UML45 +2024-09-07 21:45:15,072 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAppDatStTypeùUML68ùdd' HYPERLINK AppDatStType, UML68 +2024-09-07 21:45:15,085 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:45:15,099 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-07 21:45:15,111 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:45:15,124 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:45:15,137 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:45:15,150 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:45:15,163 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùPSUPEntryùUML80ùdd' HYPERLINK PSUPEntry, UML80 +2024-09-07 21:45:15,176 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:45:15,188 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:45:15,202 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSecurityNotificationùUML82ùdd' HYPERLINK SecurityNotification, UML82 +2024-09-07 21:45:15,215 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùNotificationùUML81ùdd' HYPERLINK Notification, UML81 +2024-09-07 21:45:15,228 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:45:15,241 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:45:15,253 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:15,266 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 21:45:15,279 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:15,291 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:45:15,305 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:15,318 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:45:15,336 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:45:15,349 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:45:15,362 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-07 21:45:15,374 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimestampùUML61ùdd' HYPERLINK Timestamp, UML61 +2024-09-07 21:45:15,387 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimestampùUML61ùdd' HYPERLINK Timestamp, UML61 +2024-09-07 21:45:15,400 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimestampùUML61ùdd' HYPERLINK Timestamp, UML61 +2024-09-07 21:45:15,412 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimestampùUML61ùdd' HYPERLINK Timestamp, UML61 +2024-09-07 21:45:15,426 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:15,438 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:45:15,451 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:45:15,464 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 21:45:15,477 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCPUEntryùUML84ùdd' HYPERLINK CPUEntry, UML84 +2024-09-07 21:45:15,500 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-07 21:45:15,513 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:15,526 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:15,539 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:45:15,552 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEXTEntryùUML85ùdd' HYPERLINK EXTEntry, UML85 +2024-09-07 21:45:15,565 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 21:45:15,578 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-07 21:45:15,591 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:45:15,603 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-07 21:45:15,616 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:45:15,629 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:45:15,642 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:15,655 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:15,667 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:45:15,680 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-07 21:45:15,692 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:15,705 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:15,718 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:15,731 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:45:15,743 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-07 21:45:15,756 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-07 21:45:15,769 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùPhyHealthTypeùUML69ùdd' HYPERLINK PhyHealthType, UML69 +2024-09-07 21:45:15,783 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:15,796 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 21:45:15,809 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:45:15,821 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:15,834 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSecurityNotificationùUML88ùdd' HYPERLINK SecurityNotification, UML88 +2024-09-07 21:45:15,847 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùNotificationùUML87ùdd' HYPERLINK Notification, UML87 +2024-09-07 21:45:15,859 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSTOREEntryùUML86ùdd' HYPERLINK STOREEntry, UML86 +2024-09-07 21:45:15,872 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:15,885 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:15,898 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:15,912 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:45:15,925 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:15,938 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:45:15,950 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 21:45:15,967 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:45:15,980 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:45:15,993 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-07 21:45:16,007 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:16,020 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 21:45:16,032 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:16,047 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùExtTypeùUML70ùdd' HYPERLINK ExtType, UML70 +2024-09-07 21:45:16,059 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 21:45:16,075 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:45:16,090 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-07 21:45:16,107 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:16,122 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:16,134 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:45:16,148 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 21:45:16,162 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:16,174 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:16,189 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-07 21:45:16,201 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:45:16,216 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:45:16,230 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:16,242 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-07 21:45:16,257 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-07 21:45:16,271 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-07 21:45:16,284 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùPhyHealthTypeùUML69ùdd' HYPERLINK PhyHealthType, UML69 +2024-09-07 21:45:16,297 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:16,311 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:16,324 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:45:16,338 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-07 21:45:16,354 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:45:16,370 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:45:16,386 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:16,399 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 21:45:16,415 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:45:16,432 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:16,445 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:16,457 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:16,470 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:16,483 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:16,496 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:16,511 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:16,524 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:16,536 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:16,549 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:16,563 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:16,576 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:16,588 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:16,601 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:16,614 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:16,628 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:16,640 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:16,654 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:16,666 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:16,679 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:16,692 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:16,705 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:16,720 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:16,733 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:16,748 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:16,761 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:16,773 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:16,786 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:16,799 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:16,812 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:16,825 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:16,837 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:16,850 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:16,863 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:16,876 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:16,888 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:16,901 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:16,914 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:16,928 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:16,941 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:16,954 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:16,966 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 21:45:16,979 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:45:16,992 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 21:45:17,004 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 21:45:17,018 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 21:45:17,031 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 21:45:17,044 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 21:45:17,058 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:17,071 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:45:17,084 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:17,096 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:17,114 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:17,127 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:17,139 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:17,153 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:17,167 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:17,182 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:17,196 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:17,212 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:17,224 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:17,236 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:17,249 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:17,262 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:17,280 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:17,293 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:17,306 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:17,318 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:17,334 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:17,346 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:17,360 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:17,373 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:17,385 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:17,399 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:17,411 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:17,426 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:17,438 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:17,451 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:17,464 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:17,477 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:17,490 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:17,503 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:17,515 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:17,529 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:17,546 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:17,559 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:17,571 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:17,584 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:17,597 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:17,610 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:17,623 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:17,635 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:17,647 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:17,662 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:17,674 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:17,687 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:17,699 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:17,712 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:17,725 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:17,738 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:17,751 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:17,764 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:17,777 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:17,790 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:17,803 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:17,816 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:17,829 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:17,842 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:17,854 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:17,867 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:17,880 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:17,893 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:17,906 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:17,918 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:17,931 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:17,944 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:17,958 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:17,972 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:17,984 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:17,996 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:18,009 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:18,023 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:18,038 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:18,052 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:18,064 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:18,078 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:18,092 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:18,104 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:18,116 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:18,129 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:18,142 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:18,155 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:18,167 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:18,180 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:45:18,193 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-07 21:45:18,206 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùServerTLSùUML93ùdd' HYPERLINK ServerTLS, UML93 +2024-09-07 21:45:18,218 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùClientTLSùUML92ùdd' HYPERLINK ClientTLS, UML92 +2024-09-07 21:45:18,232 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part3ed2SecurityNotificationùUML106ùdd' HYPERLINK IEC62351part3ed2SecurityNotification, UML106 +2024-09-07 21:45:18,246 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:18,260 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:18,275 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:18,289 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:18,302 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:18,314 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:18,327 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:18,344 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:18,357 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:18,369 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:18,382 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:18,394 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:18,408 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:18,421 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:18,433 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:18,447 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:18,459 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:18,472 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:18,484 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:18,497 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:18,510 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:18,522 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:18,535 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:18,549 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:18,561 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:18,574 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:18,587 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:18,600 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:18,614 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:18,627 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:18,641 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:18,654 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:18,667 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:18,680 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:18,694 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:18,710 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:18,724 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:18,738 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:18,751 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:18,764 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:18,778 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:18,790 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:18,804 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:18,818 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:18,832 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:18,845 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:18,858 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:18,877 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:18,890 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:18,903 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:18,916 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:18,930 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:18,943 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:18,957 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:18,970 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:18,983 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:18,997 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:19,009 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:19,023 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:19,037 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:19,051 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:19,065 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:19,078 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:19,093 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:19,107 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:19,121 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:19,134 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:19,148 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:19,161 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:19,175 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:19,189 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-07 21:45:19,203 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 21:45:19,216 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-07 21:45:19,229 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:45:19,242 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-07 21:45:19,259 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 21:45:19,273 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-07 21:45:19,286 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 21:45:19,300 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-07 21:45:19,315 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 21:45:19,330 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-07 21:45:19,346 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 21:45:19,360 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-07 21:45:19,375 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 21:45:19,389 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:19,402 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:45:19,414 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:19,426 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:19,439 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:19,452 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:19,464 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:19,476 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:19,489 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:19,502 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:19,515 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:19,527 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:19,539 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:19,552 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:19,566 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:19,579 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:19,592 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:19,605 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:19,618 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:19,631 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:19,643 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:19,656 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:19,669 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:19,682 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:19,694 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:19,707 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:19,720 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:19,733 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:19,746 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:19,758 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:19,771 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:19,783 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:19,796 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:19,822 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:19,835 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:19,848 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:19,861 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:19,874 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:19,887 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:19,901 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:19,913 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:19,927 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:19,940 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:19,954 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:19,968 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:19,981 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:19,994 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:20,008 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:20,024 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:20,037 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:20,050 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:20,064 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:20,078 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:20,092 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:20,105 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:20,119 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:20,132 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:20,146 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:20,159 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:20,172 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:20,190 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:20,204 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:20,218 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:20,232 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:20,246 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:20,260 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:20,274 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:20,287 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:20,301 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:20,314 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:20,328 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:20,342 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:20,356 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:20,370 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:20,384 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:20,399 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:20,413 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:20,428 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:20,441 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:20,454 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:20,472 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:20,485 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:20,497 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:20,511 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:20,524 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:20,538 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 21:45:20,551 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-07 21:45:20,564 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:45:20,578 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-07 21:45:20,593 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 21:45:20,606 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-07 21:45:20,620 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 21:45:20,633 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-07 21:45:20,647 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 21:45:20,661 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-07 21:45:20,674 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 21:45:20,689 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-07 21:45:20,702 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 21:45:20,716 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:20,729 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:45:20,742 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:20,755 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:20,769 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:20,782 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:20,795 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:20,809 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:20,822 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:20,836 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:20,849 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:20,862 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:20,876 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:20,890 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:20,905 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:20,918 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:20,930 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:20,944 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:20,958 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:20,972 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:20,985 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:20,999 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:21,013 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:21,027 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:21,040 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:21,054 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:21,072 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:21,086 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:21,100 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:21,113 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:21,128 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:21,142 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:21,154 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:21,168 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:21,180 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:21,193 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:21,205 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:21,219 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:21,233 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:21,245 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:21,258 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:21,270 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:21,283 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:21,295 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:21,308 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:21,321 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:21,335 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:21,349 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:21,363 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:21,377 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:21,389 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:21,403 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:21,417 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:21,428 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:21,441 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:21,457 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:21,471 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:21,486 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:21,500 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:21,512 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:21,524 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:21,537 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:21,549 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:21,562 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:21,575 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:21,588 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:21,602 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:21,615 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:21,628 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:21,640 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:21,654 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:21,669 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:21,682 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:21,696 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:21,711 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:21,723 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:21,736 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:21,749 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:21,761 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:21,774 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:21,788 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:21,800 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:21,812 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:21,825 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:21,837 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:45:21,851 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:21,863 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:21,875 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:21,887 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:21,901 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:21,913 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:21,926 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:21,938 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:21,951 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:21,965 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:21,977 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:21,990 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:22,017 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:22,030 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:22,044 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:22,057 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:22,070 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:22,083 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:45:22,096 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:22,111 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:22,124 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:22,136 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:22,151 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:22,165 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:22,177 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:22,190 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:22,202 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:22,215 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:22,228 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:22,241 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:22,255 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 21:45:22,269 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:45:22,282 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 21:45:22,294 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 21:45:22,307 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùProtIdTypeùUML74ùdd' HYPERLINK ProtIdType, UML74 +2024-09-07 21:45:22,320 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:22,336 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:22,350 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 21:45:22,363 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 21:45:22,376 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:22,389 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùLnkTypeùUML78ùdd' HYPERLINK LnkType, UML78 +2024-09-07 21:45:22,402 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:22,417 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:22,430 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:22,443 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:22,457 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:22,470 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:22,483 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:22,496 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:22,509 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:22,524 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:22,538 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:22,553 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:22,568 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:22,584 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:22,597 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:22,609 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:22,623 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:22,636 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:22,649 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:22,661 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:22,674 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:22,687 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:22,700 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:22,713 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:22,725 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:22,737 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:22,749 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:22,762 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:22,775 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:22,787 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:22,800 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:22,813 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:22,825 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:22,838 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:22,851 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:45:22,865 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:22,878 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:22,891 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:22,904 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:22,916 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:22,930 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:22,944 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:22,957 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:22,970 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:22,983 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:22,997 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:23,010 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:23,023 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:23,036 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:23,050 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:23,063 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:23,077 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:23,089 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:23,102 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:23,116 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:23,131 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:23,144 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:23,156 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:23,169 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:23,182 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:23,195 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 21:45:23,208 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:23,220 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:45:23,233 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:23,246 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:23,258 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:23,271 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:23,284 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:23,297 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:23,309 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:23,322 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:23,336 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:23,349 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:23,362 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:23,374 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:23,387 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:23,400 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:45:23,413 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-07 21:45:23,426 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMasterAssociationùUML96ùdd' HYPERLINK MasterAssociation, UML96 +2024-09-07 21:45:23,439 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùOutstationAssociationùUML97ùdd' HYPERLINK OutstationAssociation, UML97 +2024-09-07 21:45:23,451 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPSecurityNotificationùUML108ùdd' HYPERLINK 60870andDNPSecurityNotification, UML108 +2024-09-07 21:45:23,465 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPNotificationùUML109ùdd' HYPERLINK 60870andDNPNotification, UML109 +2024-09-07 21:45:23,482 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:23,495 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:23,507 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:23,520 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:23,533 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:23,546 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:23,559 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:23,571 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:23,585 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:23,599 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:23,614 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:23,628 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:23,645 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:23,657 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:23,670 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:23,682 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:23,697 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:23,710 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:23,722 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:23,735 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:23,748 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:23,761 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:23,774 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:23,786 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:23,799 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:23,813 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:23,825 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:23,837 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:23,850 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:23,864 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:23,879 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:23,894 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:23,906 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:23,921 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:23,936 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:45:23,950 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:23,965 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:23,980 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:23,994 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:24,009 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:24,022 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:24,035 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:24,048 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:24,062 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:24,075 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:24,089 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:24,101 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:24,114 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:24,130 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:24,143 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:24,157 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:24,179 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:24,193 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:24,205 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:24,219 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:24,232 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:24,246 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:24,259 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:24,273 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:24,285 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:24,298 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:24,312 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:24,327 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:24,342 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-07 21:45:24,355 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:24,369 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:24,381 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:24,395 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:24,413 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:24,426 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:24,439 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:24,452 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:24,465 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:24,479 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 21:45:24,492 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 21:45:24,504 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:45:24,517 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 21:45:24,530 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 21:45:24,543 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 21:45:24,556 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 21:45:24,569 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 21:45:24,582 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùProtIdTypeùUML74ùdd' HYPERLINK ProtIdType, UML74 +2024-09-07 21:45:24,597 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 21:45:24,609 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:24,623 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 21:45:24,635 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:24,649 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 21:45:24,665 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 21:45:24,680 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 21:45:24,694 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 21:45:24,709 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 21:45:24,721 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:24,735 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 21:45:24,748 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùLnkTypeùUML78ùdd' HYPERLINK LnkType, UML78 +2024-09-07 21:45:24,761 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 21:45:24,775 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:24,787 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:24,801 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:24,813 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:24,826 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:24,839 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:24,852 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:24,865 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:24,879 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:24,892 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:24,905 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:24,917 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:24,930 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:24,943 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:24,957 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:24,970 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:24,983 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:24,995 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:25,011 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:25,024 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:25,036 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:25,049 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:25,063 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:25,076 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:25,089 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:25,102 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:25,114 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:25,127 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:25,140 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:25,153 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:25,167 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:25,180 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:25,194 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:25,207 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:25,219 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:45:25,233 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:25,245 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:25,258 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:25,271 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:25,284 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:25,296 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:25,309 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:25,328 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:25,343 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:25,356 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:25,369 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:25,382 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:25,395 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:25,408 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:25,421 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:25,433 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:25,446 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:25,459 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:25,472 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:25,485 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:25,498 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:25,511 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:25,524 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:25,538 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:25,552 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:25,566 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 21:45:25,580 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:25,595 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:45:25,609 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:25,623 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:25,637 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:25,652 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:25,665 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:25,681 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:25,695 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:25,710 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:25,726 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:25,741 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:25,756 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:25,772 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:25,784 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:25,798 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 21:45:25,811 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 21:45:25,826 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:45:25,840 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 21:45:25,852 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 21:45:25,865 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 21:45:25,878 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 21:45:25,891 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 21:45:25,904 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùProtIdTypeùUML74ùdd' HYPERLINK ProtIdType, UML74 +2024-09-07 21:45:25,917 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 21:45:25,930 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:25,943 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 21:45:25,957 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:25,970 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 21:45:25,982 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 21:45:25,995 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 21:45:26,008 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 21:45:26,021 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 21:45:26,035 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:26,049 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 21:45:26,062 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùLnkTypeùUML78ùdd' HYPERLINK LnkType, UML78 +2024-09-07 21:45:26,075 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 21:45:26,092 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:26,105 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:26,117 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:26,130 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:26,145 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:26,159 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:26,174 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:26,189 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:26,204 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:26,217 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:26,231 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:26,245 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:26,261 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:26,276 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:26,290 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:26,304 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:26,318 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:26,333 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:26,347 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:26,360 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:26,373 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:26,387 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:26,399 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:26,412 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:26,425 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:26,437 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:26,450 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:26,463 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:26,476 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:26,490 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:26,502 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:26,514 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:26,528 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:26,541 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:26,554 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:45:26,565 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:26,578 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:26,591 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:26,604 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:26,616 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:26,629 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:26,641 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:26,655 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:26,668 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:26,680 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:26,693 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:26,708 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:26,721 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:26,734 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:26,747 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:26,759 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:26,772 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:26,785 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:26,800 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:26,815 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:26,830 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:26,844 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:26,857 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:26,871 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:26,884 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:45:26,896 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 21:45:26,909 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:26,922 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:45:26,935 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:26,947 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:26,960 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:26,973 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:26,986 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:26,998 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:27,011 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:27,024 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:27,037 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:27,050 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:27,063 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:27,075 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:27,088 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:27,102 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:27,114 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:27,128 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:27,140 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:27,153 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:27,167 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:27,180 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:27,192 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:27,206 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:27,222 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:27,235 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:27,247 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:27,261 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:27,274 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:27,287 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:27,300 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:27,312 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:27,326 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:27,340 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:27,354 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:27,367 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:27,379 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:27,392 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:27,406 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:27,421 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:27,435 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:27,448 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:27,461 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:27,474 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:27,488 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:27,501 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:27,514 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:27,527 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:27,540 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:27,553 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:27,566 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:27,579 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:27,592 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:27,604 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:27,617 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:27,630 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:27,643 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:27,656 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:27,669 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:27,682 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:27,695 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:27,707 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:27,721 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:27,734 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:27,746 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:27,758 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:27,771 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:27,784 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:27,797 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:27,810 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:27,823 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:27,836 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:27,849 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:27,864 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:27,878 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:27,893 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:27,908 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:27,921 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:27,934 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:27,946 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:27,959 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:27,972 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:27,984 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:27,997 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:28,009 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:28,022 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:28,035 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:28,049 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:28,062 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:28,076 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:28,088 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:28,102 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:28,115 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:28,128 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:28,140 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:28,153 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:28,167 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:28,179 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:28,192 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:28,204 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:28,217 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:28,231 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:28,244 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:28,257 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:28,270 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:28,286 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:28,299 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:28,312 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:28,325 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:28,339 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:28,353 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:28,366 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:28,379 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 21:45:28,392 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:45:28,405 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 21:45:28,418 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 21:45:28,431 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùProtIdTypeùUML74ùdd' HYPERLINK ProtIdType, UML74 +2024-09-07 21:45:28,443 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:28,457 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:28,470 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 21:45:28,483 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 21:45:28,502 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:28,515 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùLnkTypeùUML78ùdd' HYPERLINK LnkType, UML78 +2024-09-07 21:45:28,529 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 21:45:28,541 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:28,555 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:45:28,569 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:28,583 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:28,597 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:28,610 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:28,623 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:28,637 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:28,650 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:28,664 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:28,677 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:28,691 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:28,704 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:28,719 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:28,732 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:28,747 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:28,759 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:28,772 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:28,786 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:28,799 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:28,812 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:28,825 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:28,838 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:28,851 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:28,864 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:28,876 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:28,889 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:28,902 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:28,915 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:28,929 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:28,943 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:28,959 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:28,973 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:28,987 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:29,000 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:29,013 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:29,025 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:29,038 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:29,051 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:29,064 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:29,076 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:29,089 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:29,102 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:29,116 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:29,129 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:29,141 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:29,154 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:29,167 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:29,180 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:29,193 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:29,206 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:29,218 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:29,232 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:29,251 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:29,266 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:29,278 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:29,290 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:29,303 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:29,317 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:29,331 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:29,344 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:29,357 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:29,371 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:29,385 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:29,398 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:29,410 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:29,422 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:29,435 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:29,448 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:29,466 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:29,479 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:29,492 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:29,505 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:29,518 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:29,531 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:29,545 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:29,557 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:29,570 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:29,583 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:29,596 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:29,609 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:29,623 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:29,635 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:29,649 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:29,662 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:29,677 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:29,689 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:29,703 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:29,716 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:29,729 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:29,743 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:29,756 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:29,770 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:29,782 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:29,796 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:29,809 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:29,822 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:29,834 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:29,847 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:29,860 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:29,873 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:29,886 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:29,899 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:29,913 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:29,927 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:29,939 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:45:29,952 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-07 21:45:29,965 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMasterAssociationùUML101ùdd' HYPERLINK MasterAssociation, UML101 +2024-09-07 21:45:29,979 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùOutstationAssociationùUML102ùdd' HYPERLINK OutstationAssociation, UML102 +2024-09-07 21:45:29,993 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPSecurityNotificationEd2ùUML111ùdd' HYPERLINK 60870andDNPSecurityNotificationEd2, UML111 +2024-09-07 21:45:30,008 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPNotificationEd2ùUML112ùdd' HYPERLINK 60870andDNPNotificationEd2, UML112 +2024-09-07 21:45:30,023 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:30,038 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:30,093 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:30,107 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:30,122 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:30,136 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:30,150 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:30,166 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:30,181 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:30,195 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:30,209 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:30,223 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:30,239 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:30,253 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:30,268 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:30,283 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:30,297 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:30,312 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:30,326 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:30,342 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:30,356 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:30,370 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:30,385 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:30,399 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:30,413 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:30,428 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:30,442 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:30,454 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:30,467 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:30,480 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:30,492 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:30,505 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:30,517 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:30,530 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:30,544 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:30,556 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:30,569 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:30,582 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:30,595 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:30,608 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:30,620 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:30,632 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:30,645 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:30,658 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:30,670 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:30,683 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:30,696 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:30,714 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:30,730 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:30,743 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:30,755 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:30,769 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:30,783 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:30,796 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:30,809 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:30,821 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:30,834 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:30,847 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:30,860 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:30,873 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:30,885 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:30,898 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:30,911 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:30,924 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:30,937 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:30,950 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:30,962 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:30,980 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:30,992 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:31,005 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:31,018 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:31,031 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:31,046 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:31,059 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:31,074 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:31,090 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:31,104 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:31,119 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:31,132 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:31,147 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:31,160 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:31,172 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:31,184 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:31,197 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:31,211 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:31,223 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:31,236 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:31,248 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:31,261 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:31,273 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:31,287 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-07 21:45:31,301 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-07 21:45:31,315 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 21:45:31,329 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 21:45:31,343 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:45:31,355 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 21:45:31,368 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 21:45:31,381 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 21:45:31,394 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 21:45:31,406 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 21:45:31,419 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùProtIdTypeùUML74ùdd' HYPERLINK ProtIdType, UML74 +2024-09-07 21:45:31,431 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 21:45:31,444 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:31,458 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 21:45:31,470 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:31,482 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 21:45:31,495 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 21:45:31,507 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 21:45:31,520 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 21:45:31,533 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 21:45:31,546 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:31,558 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 21:45:31,571 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùLnkTypeùUML78ùdd' HYPERLINK LnkType, UML78 +2024-09-07 21:45:31,584 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 21:45:31,597 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 21:45:31,610 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:31,623 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:45:31,635 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:31,650 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:31,662 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:31,676 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:31,688 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:31,700 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:31,713 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:31,726 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:31,738 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:31,751 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:31,763 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:31,778 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:31,791 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:31,804 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:31,817 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:31,830 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:31,844 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:31,857 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:31,870 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:31,882 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:31,895 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:31,908 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:31,920 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:31,933 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:31,946 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:31,959 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:31,972 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:31,984 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:31,997 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:32,009 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:32,023 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:32,035 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:32,049 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:32,063 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:32,076 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:32,090 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:32,103 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:32,116 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:32,129 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:32,145 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:32,160 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:32,176 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:32,191 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:32,206 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:32,218 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:32,231 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:32,243 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:32,260 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:32,273 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:32,287 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:32,300 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:32,313 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:32,327 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:32,342 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:32,356 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:32,368 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:32,380 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:32,392 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:32,406 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:32,419 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:32,432 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:32,445 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:32,457 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:32,471 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:32,483 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:32,496 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:32,509 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:32,526 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:32,539 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:32,552 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:32,565 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:32,579 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:32,593 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:32,607 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:32,621 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:32,634 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:32,647 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:32,661 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:32,674 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:32,687 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:32,700 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:32,715 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:32,728 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:32,742 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:32,755 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:32,767 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:32,780 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:32,793 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:32,806 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:32,820 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:32,832 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:32,845 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:32,858 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:32,874 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:32,888 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:32,900 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:32,912 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:32,925 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:32,938 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:32,951 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:32,964 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:32,976 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:32,989 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:33,003 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 21:45:33,015 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 21:45:33,028 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:45:33,041 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 21:45:33,056 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 21:45:33,069 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 21:45:33,082 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 21:45:33,095 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 21:45:33,108 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùProtIdTypeùUML74ùdd' HYPERLINK ProtIdType, UML74 +2024-09-07 21:45:33,122 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 21:45:33,135 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:33,148 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 21:45:33,162 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:33,174 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 21:45:33,188 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 21:45:33,200 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 21:45:33,214 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 21:45:33,229 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 21:45:33,244 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:33,258 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 21:45:33,274 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùLnkTypeùUML78ùdd' HYPERLINK LnkType, UML78 +2024-09-07 21:45:33,287 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 21:45:33,300 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 21:45:33,313 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:33,328 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:45:33,342 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:33,356 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:33,369 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:33,382 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:33,395 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:33,408 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:33,420 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:33,433 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:33,445 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:33,458 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:33,471 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:33,484 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:33,496 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:33,509 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:33,522 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:33,535 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:33,548 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:33,561 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:33,573 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:33,586 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:33,599 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:33,611 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:33,624 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:33,638 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:33,650 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:33,662 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:33,675 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:33,689 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:33,703 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:33,715 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:33,728 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:33,741 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:33,756 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:33,769 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:33,781 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:33,794 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:33,807 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:33,820 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:33,834 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:33,847 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:33,859 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:33,872 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:33,885 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:33,898 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:33,911 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:33,923 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:33,936 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:33,949 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:33,961 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:33,974 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:33,987 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:45:34,000 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:34,013 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:34,026 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:34,038 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:34,052 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:34,064 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:34,077 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:34,090 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:34,103 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:34,115 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:34,128 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:34,141 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:34,154 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:34,172 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:34,186 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:34,198 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:34,211 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:34,224 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:34,237 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:34,250 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:34,263 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:34,276 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:34,291 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:34,306 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:34,321 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:34,338 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:34,352 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:34,363 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:34,377 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:34,390 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:34,403 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:34,416 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:34,429 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:34,442 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:34,455 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:34,468 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:34,481 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:34,493 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:34,507 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:34,520 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:34,567 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:34,586 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:34,601 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:34,613 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:34,626 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:34,639 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:34,652 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:34,664 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:34,677 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:34,689 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:34,703 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:34,716 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:45:34,728 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:45:34,741 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:45:34,754 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:45:34,767 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:34,780 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:45:34,793 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:45:34,806 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:45:34,819 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:45:34,833 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-07 21:45:34,847 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:34,860 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:34,872 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:34,885 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:45:34,898 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:45:34,911 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:45:34,923 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:45:34,936 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:34,950 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:34,962 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:34,974 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:34,988 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:35,001 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:35,014 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:35,026 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:35,053 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:35,066 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:35,079 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:35,092 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:35,106 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:35,119 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:35,133 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:35,148 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:45:35,161 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:35,174 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:35,188 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:35,201 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-07 21:45:35,215 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSAssociationùUML104ùdd' HYPERLINK MMSAssociation, UML104 +2024-09-07 21:45:35,228 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:35,242 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:35,255 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:35,268 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSSecurityNotificationùUML115ùdd' HYPERLINK MMSSecurityNotification, UML115 +2024-09-07 21:45:35,282 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:45:35,295 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:35,308 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSNotificationùUML116ùdd' HYPERLINK MMSNotification, UML116 +2024-09-07 21:45:35,322 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:35,337 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:35,355 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:35,370 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:35,385 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:45:35,401 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:35,416 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:45:35,428 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:35,440 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:45:35,453 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:35,469 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:45:35,482 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:35,494 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:45:35,507 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:35,519 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:45:35,532 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:35,546 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:45:35,559 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:35,576 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:45:35,589 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:35,602 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:45:35,616 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:35,628 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:45:35,641 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:35,654 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:45:35,668 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:35,686 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:45:35,699 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:35,713 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:45:35,726 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:45:35,738 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 21:45:35,752 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 21:45:35,766 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:45:35,779 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:35,792 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 21:45:35,805 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 21:45:35,818 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 21:45:35,832 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSelectorùUML62ùdd' HYPERLINK Selector, UML62 +2024-09-07 21:45:35,844 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSelectorùUML62ùdd' HYPERLINK Selector, UML62 +2024-09-07 21:45:35,857 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSelectorùUML62ùdd' HYPERLINK Selector, UML62 +2024-09-07 21:45:35,871 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:45:35,884 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-07 21:45:35,901 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSecurityProfileTypeùUML76ùdd' HYPERLINK SecurityProfileType, UML76 +2024-09-07 21:45:35,915 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:35,928 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:45:35,941 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:35,954 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:45:35,967 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:35,980 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:45:35,994 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:36,007 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:45:36,021 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:36,035 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:45:36,049 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:36,062 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:45:36,075 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:36,088 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:45:36,101 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:36,118 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:45:36,131 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:36,144 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:45:36,156 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:36,169 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:45:36,182 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:36,196 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:45:36,208 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:36,221 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:45:36,234 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:36,246 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:45:36,260 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 21:45:36,273 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:36,287 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:45:36,300 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:36,313 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:36,327 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:36,341 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:36,354 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:36,367 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:36,381 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:36,394 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:36,406 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:36,419 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:36,435 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:36,451 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:36,466 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:45:36,482 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:36,496 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-07 21:45:36,508 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:36,522 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:36,536 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:36,549 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:36,563 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:36,575 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:36,589 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:36,602 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:36,615 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:36,629 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:36,643 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:45:36,657 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:36,670 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:36,683 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:36,696 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:36,710 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:45:36,723 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:36,735 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:45:36,748 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:36,761 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:45:36,774 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:36,787 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:45:36,800 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:36,814 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:36,827 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:36,840 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:36,853 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 21:45:36,867 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:36,882 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:45:36,897 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:36,910 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:45:36,922 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:36,935 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:45:36,949 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:45:36,963 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:36,975 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:36,988 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSVPublisherAssociationIPùUML119ùdd' HYPERLINK SVPublisherAssociationIP, UML119 +2024-09-07 21:45:37,001 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSVPublisherAssociationL2ùUML120ùdd' HYPERLINK SVPublisherAssociationL2, UML120 +2024-09-07 21:45:37,014 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSVNotificationùUML130ùdd' HYPERLINK SVNotification, UML130 +2024-09-07 21:45:37,027 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSVSubcriberAssociationIPùUML124ùdd' HYPERLINK SVSubcriberAssociationIP, UML124 +2024-09-07 21:45:37,040 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSVSubcriberAssociationL2ùUML125ùdd' HYPERLINK SVSubcriberAssociationL2, UML125 +2024-09-07 21:45:37,054 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:37,066 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:45:37,079 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:37,093 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:45:37,105 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:37,119 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:45:37,133 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 21:45:37,149 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 21:45:37,162 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:37,176 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 21:45:37,188 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:45:37,201 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 21:45:37,215 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:37,229 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 21:45:37,247 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:37,261 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 21:45:37,274 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:37,289 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 21:45:37,303 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:37,316 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:45:37,331 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:37,345 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:45:37,358 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:37,371 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:45:37,384 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMacAddressùUML63ùdd' HYPERLINK MacAddress, UML63 +2024-09-07 21:45:37,400 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:37,414 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 21:45:37,430 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:45:37,443 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 21:45:37,456 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:37,469 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 21:45:37,482 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:37,495 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 21:45:37,510 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:37,525 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 21:45:37,541 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:37,555 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:45:37,568 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:37,581 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:45:37,597 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:37,610 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:45:37,622 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 21:45:37,635 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 21:45:37,648 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:37,661 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:45:37,675 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:45:37,687 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:45:37,701 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:37,716 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:45:37,729 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:37,742 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:45:37,755 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:37,768 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:45:37,780 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:37,792 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:45:37,804 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 21:45:37,817 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:45:37,829 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:37,843 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:45:37,855 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:37,869 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:45:37,882 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:37,895 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:45:37,909 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMacAddressùUML63ùdd' HYPERLINK MacAddress, UML63 +2024-09-07 21:45:37,921 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:37,934 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:45:37,947 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:45:37,960 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:45:37,974 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:37,986 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:45:37,999 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:38,011 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:45:38,025 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:38,038 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:45:38,052 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:38,065 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:45:38,078 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 21:45:38,092 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:45:38,105 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:38,118 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:45:38,131 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:38,145 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:45:38,158 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:38,170 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:45:38,184 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:38,196 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:45:38,210 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:38,222 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:45:38,235 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:38,247 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:45:38,261 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 21:45:38,274 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 21:45:38,287 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:45:38,301 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:45:38,314 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:38,328 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:38,343 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:45:38,356 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:38,368 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 21:45:38,381 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:38,394 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 21:45:38,409 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:45:38,421 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:45:38,434 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:45:38,447 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:45:38,460 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimestampùUML61ùdd' HYPERLINK Timestamp, UML61 +2024-09-07 21:45:38,474 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:38,486 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:45:38,499 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:45:38,512 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:45:38,527 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:38,540 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:45:38,552 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:38,566 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:45:38,581 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:38,595 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:45:38,611 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:38,626 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:45:38,639 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 21:45:38,653 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:45:38,666 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:38,679 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:45:38,692 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:38,706 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:45:38,718 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:38,730 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:45:38,744 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:45:38,758 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:38,771 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:38,784 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:38,797 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEPublisherAssociationIPùUML121ùdd' HYPERLINK GSEPublisherAssociationIP, UML121 +2024-09-07 21:45:38,810 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEPublisherAssociationL2ùUML122ùdd' HYPERLINK GSEPublisherAssociationL2, UML122 +2024-09-07 21:45:38,828 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSENotificationùUML132ùdd' HYPERLINK GSENotification, UML132 +2024-09-07 21:45:38,841 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubcriberAssociationIPùUML127ùdd' HYPERLINK GSESubcriberAssociationIP, UML127 +2024-09-07 21:45:38,855 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubcriberAssociationL2ùUML128ùdd' HYPERLINK GSESubcriberAssociationL2, UML128 +2024-09-07 21:45:38,867 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:38,880 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:45:38,893 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:38,907 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:45:38,921 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:38,933 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:45:38,947 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 21:45:38,960 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 21:45:38,973 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:38,985 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 21:45:38,998 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:45:39,011 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 21:45:39,025 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:39,038 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 21:45:39,051 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:39,065 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 21:45:39,079 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:39,093 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 21:45:39,107 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:39,120 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:45:39,133 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:39,146 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:45:39,159 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:39,173 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:45:39,187 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMacAddressùUML63ùdd' HYPERLINK MacAddress, UML63 +2024-09-07 21:45:39,200 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMacAddressùUML63ùdd' HYPERLINK MacAddress, UML63 +2024-09-07 21:45:39,214 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:39,227 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 21:45:39,241 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:45:39,255 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 21:45:39,268 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:39,281 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 21:45:39,295 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:39,310 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 21:45:39,324 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:39,340 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 21:45:39,352 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:39,366 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:45:39,379 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:39,392 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:45:39,405 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:39,425 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:45:39,439 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 21:45:39,451 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 21:45:39,464 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 21:45:39,477 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:45:39,491 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 21:45:39,504 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:45:39,516 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:45:39,529 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:45:39,541 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:45:39,554 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:45:39,567 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:39,579 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:45:39,592 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:39,605 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:45:39,617 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:45:39,631 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:45:39,646 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:39,661 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:45:39,676 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 21:45:39,691 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:45:39,703 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:39,716 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:45:39,729 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 21:45:39,741 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:45:39,782 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:45:39,804 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:45:39,817 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:45:39,829 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:45:39,842 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:45:39,855 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:45:39,868 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:45:39,880 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:45:39,893 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimestampùUML61ùdd' HYPERLINK Timestamp, UML61 +2024-09-07 21:45:39,906 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:45:39,919 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:39,933 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:45:39,946 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:45:39,958 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:45:39,971 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:39,983 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:45:39,995 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:40,008 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:45:40,021 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:40,033 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:45:40,046 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:40,060 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:45:40,073 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 21:45:40,086 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:45:40,099 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:40,111 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:45:40,124 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:40,138 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:45:40,149 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:40,163 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:45:40,176 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMacAddressùUML63ùdd' HYPERLINK MacAddress, UML63 +2024-09-07 21:45:40,189 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMacAddressùUML63ùdd' HYPERLINK MacAddress, UML63 +2024-09-07 21:45:40,202 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 21:45:40,214 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:45:40,227 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 21:45:40,240 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:45:40,253 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:45:40,266 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:45:40,279 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:45:40,291 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:45:40,304 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:40,317 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:45:40,331 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:40,345 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:45:40,358 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:45:40,372 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:45:40,385 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:40,397 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:45:40,410 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 21:45:40,423 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:45:40,437 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:40,451 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:45:40,463 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 21:45:40,476 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:45:40,489 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:45:40,502 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:45:40,519 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:45:40,535 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:45:40,552 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:45:40,569 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:45:40,584 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:45:40,601 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:45:40,615 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimestampùUML61ùdd' HYPERLINK Timestamp, UML61 +2024-09-07 21:45:40,631 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:45:40,647 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:40,662 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:45:40,677 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:45:40,693 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:45:40,705 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:40,721 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:45:40,735 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:40,750 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:45:40,764 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:45:40,779 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:45:40,793 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:40,806 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:45:40,823 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 21:45:40,838 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:45:40,854 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:40,870 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:45:40,887 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:40,900 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:45:40,912 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:40,925 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:45:40,938 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:40,953 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:45:40,965 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:40,977 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:45:40,990 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:41,003 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:45:41,016 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 21:45:41,029 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:41,043 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntTypeùUML71ùdd' HYPERLINK IntType, UML71 +2024-09-07 21:45:41,056 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:45:41,069 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:45:41,083 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:45:41,095 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:45:41,108 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:45:41,121 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:45:41,135 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:45:41,148 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:45:41,162 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:45:41,174 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:45:41,189 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:45:41,206 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:45:41,223 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:45:41,236 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:45:41,251 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:45:41,264 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:45:41,277 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:45:41,290 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:45:41,303 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:45:41,316 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSEREntryùUML139ùdd' HYPERLINK SEREntry, UML139 +2024-09-07 21:45:41,330 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùETHEntryùUML137ùdd' HYPERLINK ETHEntry, UML137 +2024-09-07 21:45:41,344 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùUSBEntryùUML141ùdd' HYPERLINK USBEntry, UML141 +2024-09-07 21:45:41,358 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùKEYEntryùUML138ùdd' HYPERLINK KEYEntry, UML138 +2024-09-07 21:45:41,374 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùALGEntryùUML140ùdd' HYPERLINK ALGEntry, UML140 +2024-09-07 21:45:41,387 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùNotificationùUML143ùdd' HYPERLINK Notification, UML143 +2024-09-07 21:45:41,400 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 21:45:41,413 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:45:41,426 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:41,439 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:45:41,452 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntTypeùUML71ùdd' HYPERLINK IntType, UML71 +2024-09-07 21:45:41,466 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:45:41,481 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:45:41,493 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:45:41,510 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:45:41,525 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:45:41,538 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:45:41,553 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:45:41,567 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:45:41,579 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:45:41,592 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:45:41,605 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 21:45:41,618 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:45:41,631 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:41,644 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:45:41,669 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntTypeùUML71ùdd' HYPERLINK IntType, UML71 +2024-09-07 21:45:41,682 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:45:41,695 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:45:41,708 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:45:41,721 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:45:41,734 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:45:41,747 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:45:41,760 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:45:41,773 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:45:41,786 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:45:41,802 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:41,817 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:45:41,832 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 21:45:41,845 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:45:41,859 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:41,871 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:45:41,884 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntTypeùUML71ùdd' HYPERLINK IntType, UML71 +2024-09-07 21:45:41,897 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:45:41,910 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:45:41,922 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:45:41,934 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:45:41,947 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:45:41,961 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:45:41,973 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:45:41,985 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:45:41,998 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:45:42,011 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 21:45:42,024 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:45:42,037 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:42,050 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:45:42,063 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntTypeùUML71ùdd' HYPERLINK IntType, UML71 +2024-09-07 21:45:42,075 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:45:42,088 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:45:42,101 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:45:42,114 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:45:42,127 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:45:42,140 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:45:42,152 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:45:42,165 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:45:42,177 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:45:42,190 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 21:45:42,202 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:45:42,215 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:45:42,228 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:45:42,240 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntTypeùUML71ùdd' HYPERLINK IntType, UML71 +2024-09-07 21:45:42,252 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:45:42,265 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:45:42,277 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:45:42,290 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:45:42,302 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:45:42,315 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:45:42,329 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:45:42,342 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:45:42,354 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:45:42,368 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:45:42,381 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:45:42,393 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:45:42,406 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:45:42,419 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:45:42,433 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:45:42,445 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:45:42,459 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:45:42,472 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:45:42,485 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:45:42,498 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimestampùUML61ùdd' HYPERLINK Timestamp, UML61 +2024-09-07 21:45:42,510 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimestampùUML61ùdd' HYPERLINK Timestamp, UML61 +2024-09-07 21:45:42,524 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:45:42,537 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùClockEntryùUML134ùdd' HYPERLINK ClockEntry, UML134 +2024-09-07 21:45:42,549 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSecurityNotificationùUML135ùdd' HYPERLINK SecurityNotification, UML135 +2024-09-07 21:45:42,562 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:45:42,574 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 21:45:42,588 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimSyncIssueTypeùUML75ùdd' HYPERLINK TimSyncIssueType, UML75 +2024-09-07 21:45:42,601 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 21:45:42,614 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimSyncSrcTypeùUML77ùdd' HYPERLINK TimSyncSrcType, UML77 +2024-09-07 21:45:42,626 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 21:45:42,638 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-07 21:45:42,652 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 21:45:42,665 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 21:45:42,679 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimestampùUML61ùdd' HYPERLINK Timestamp, UML61 +2024-09-07 21:45:42,687 [main] INFO AbstractWordWriter - 2092 hyperlink placeholders found. +2024-09-07 21:45:42,689 [main] INFO Util - time=[0:00:28.654] scanned hyperlink placeholders. +2024-09-07 21:45:42,689 [main] INFO Util - +2024-09-07 21:45:42,689 [main] INFO Util - +2024-09-07 21:45:42,689 [main] INFO Util - ------------------------------------------------ +2024-09-07 21:45:42,689 [main] INFO Util - inserting 2092 hyperlinks (or text only) into hyperlink placeholders +2024-09-07 21:45:42,696 [main] TRACE AbstractWordWriter - replacing hyperlink [100001 - 100023] HYPERLINK TruthValue, UML38... +2024-09-07 21:45:42,709 [main] TRACE AbstractWordWriter - No hyperlink added: 'TruthValue' for bookmark 'UML38' not in this document. +2024-09-07 21:45:42,715 [main] TRACE AbstractWordWriter - replacing hyperlink [100416 - 100439] HYPERLINK DateAndTime, UML27... +2024-09-07 21:45:42,728 [main] TRACE AbstractWordWriter - No hyperlink added: 'DateAndTime' for bookmark 'UML27' not in this document. +2024-09-07 21:45:42,732 [main] TRACE AbstractWordWriter - replacing hyperlink [100586 - 100608] HYPERLINK TruthValue, UML38... +2024-09-07 21:45:42,746 [main] TRACE AbstractWordWriter - No hyperlink added: 'TruthValue' for bookmark 'UML38' not in this document. +2024-09-07 21:45:42,749 [main] TRACE AbstractWordWriter - replacing hyperlink [100962 - 100985] HYPERLINK DateAndTime, UML27... +2024-09-07 21:45:42,763 [main] TRACE AbstractWordWriter - No hyperlink added: 'DateAndTime' for bookmark 'UML27' not in this document. +2024-09-07 21:45:42,766 [main] TRACE AbstractWordWriter - replacing hyperlink [101132 - 101154] HYPERLINK Counter32 , UML26... +2024-09-07 21:45:42,781 [main] TRACE AbstractWordWriter - No hyperlink added: 'Counter32 ' for bookmark 'UML26' not in this document. +2024-09-07 21:45:42,785 [main] TRACE AbstractWordWriter - replacing hyperlink [101496 - 101519] HYPERLINK DateAndTime, UML27... +2024-09-07 21:45:42,798 [main] TRACE AbstractWordWriter - No hyperlink added: 'DateAndTime' for bookmark 'UML27' not in this document. +2024-09-07 21:45:42,802 [main] TRACE AbstractWordWriter - replacing hyperlink [101666 - 101688] HYPERLINK TruthValue, UML38... +2024-09-07 21:45:42,815 [main] TRACE AbstractWordWriter - No hyperlink added: 'TruthValue' for bookmark 'UML38' not in this document. +2024-09-07 21:45:42,818 [main] TRACE AbstractWordWriter - replacing hyperlink [102006 - 102027] HYPERLINK Float32TC, UML29... +2024-09-07 21:45:42,832 [main] TRACE AbstractWordWriter - No hyperlink added: 'Float32TC' for bookmark 'UML29' not in this document. +2024-09-07 21:45:42,835 [main] TRACE AbstractWordWriter - replacing hyperlink [102429 - 102452] HYPERLINK DateAndTime, UML27... +2024-09-07 21:45:42,849 [main] TRACE AbstractWordWriter - No hyperlink added: 'DateAndTime' for bookmark 'UML27' not in this document. +2024-09-07 21:45:42,852 [main] TRACE AbstractWordWriter - replacing hyperlink [102599 - 102620] HYPERLINK Float32TC, UML29... +2024-09-07 21:45:42,867 [main] TRACE AbstractWordWriter - No hyperlink added: 'Float32TC' for bookmark 'UML29' not in this document. +2024-09-07 21:45:42,870 [main] TRACE AbstractWordWriter - replacing hyperlink [103005 - 103027] HYPERLINK Unsigned32, UML36... +2024-09-07 21:45:42,884 [main] TRACE AbstractWordWriter - No hyperlink added: 'Unsigned32' for bookmark 'UML36' not in this document. +2024-09-07 21:45:42,888 [main] TRACE AbstractWordWriter - replacing hyperlink [103307 - 103328] HYPERLINK Integer32, UML35... +2024-09-07 21:45:42,905 [main] TRACE AbstractWordWriter - No hyperlink added: 'Integer32' for bookmark 'UML35' not in this document. +2024-09-07 21:45:42,909 [main] TRACE AbstractWordWriter - replacing hyperlink [103736 - 103759] HYPERLINK DateAndTime, UML27... +2024-09-07 21:45:42,924 [main] TRACE AbstractWordWriter - No hyperlink added: 'DateAndTime' for bookmark 'UML27' not in this document. +2024-09-07 21:45:42,928 [main] TRACE AbstractWordWriter - replacing hyperlink [103906 - 103927] HYPERLINK Integer32, UML35... +2024-09-07 21:45:42,941 [main] TRACE AbstractWordWriter - No hyperlink added: 'Integer32' for bookmark 'UML35' not in this document. +2024-09-07 21:45:42,944 [main] TRACE AbstractWordWriter - replacing hyperlink [104897 - 104920] HYPERLINK InetAddress, UML31... +2024-09-07 21:45:42,957 [main] TRACE AbstractWordWriter - No hyperlink added: 'InetAddress' for bookmark 'UML31' not in this document. +2024-09-07 21:45:42,961 [main] TRACE AbstractWordWriter - replacing hyperlink [105304 - 105331] HYPERLINK InetAddressType, UML33... +2024-09-07 21:45:42,974 [main] TRACE AbstractWordWriter - No hyperlink added: 'InetAddressType' for bookmark 'UML33' not in this document. +2024-09-07 21:45:42,979 [main] TRACE AbstractWordWriter - replacing hyperlink [105848 - 105870] HYPERLINK MacAddress, UML32... +2024-09-07 21:45:42,992 [main] TRACE AbstractWordWriter - No hyperlink added: 'MacAddress' for bookmark 'UML32' not in this document. +2024-09-07 21:45:42,995 [main] TRACE AbstractWordWriter - replacing hyperlink [106350 - 106375] HYPERLINK DisplayString, UML28... +2024-09-07 21:45:43,009 [main] TRACE AbstractWordWriter - No hyperlink added: 'DisplayString' for bookmark 'UML28' not in this document. +2024-09-07 21:45:43,013 [main] TRACE AbstractWordWriter - replacing hyperlink [106702 - 106725] HYPERLINK DateAndTime, UML27... +2024-09-07 21:45:43,026 [main] TRACE AbstractWordWriter - No hyperlink added: 'DateAndTime' for bookmark 'UML27' not in this document. +2024-09-07 21:45:43,030 [main] TRACE AbstractWordWriter - replacing hyperlink [107113 - 107138] HYPERLINK DisplayString, UML28... +2024-09-07 21:45:43,044 [main] TRACE AbstractWordWriter - No hyperlink added: 'DisplayString' for bookmark 'UML28' not in this document. +2024-09-07 21:45:43,047 [main] TRACE AbstractWordWriter - replacing hyperlink [107504 - 107527] HYPERLINK DateAndTime, UML27... +2024-09-07 21:45:43,062 [main] TRACE AbstractWordWriter - No hyperlink added: 'DateAndTime' for bookmark 'UML27' not in this document. +2024-09-07 21:45:43,065 [main] TRACE AbstractWordWriter - replacing hyperlink [107674 - 107699] HYPERLINK DisplayString, UML28... +2024-09-07 21:45:43,079 [main] TRACE AbstractWordWriter - No hyperlink added: 'DisplayString' for bookmark 'UML28' not in this document. +2024-09-07 21:45:43,082 [main] TRACE AbstractWordWriter - replacing hyperlink [115867 - 115890] HYPERLINK DateAndTime, UML27... +2024-09-07 21:45:43,096 [main] TRACE AbstractWordWriter - No hyperlink added: 'DateAndTime' for bookmark 'UML27' not in this document. +2024-09-07 21:45:43,100 [main] TRACE AbstractWordWriter - replacing hyperlink [115902 - 115926] HYPERLINK AppDatStKind, UML41... +2024-09-07 21:45:43,148 [main] TRACE AbstractWordWriter - replacing hyperlink [116271 - 116294] HYPERLINK DateAndTime, UML27... +2024-09-07 21:45:43,162 [main] TRACE AbstractWordWriter - No hyperlink added: 'DateAndTime' for bookmark 'UML27' not in this document. +2024-09-07 21:45:43,165 [main] TRACE AbstractWordWriter - replacing hyperlink [116306 - 116331] HYPERLINK PhyHealthKind, UML42... +2024-09-07 21:45:43,210 [main] TRACE AbstractWordWriter - replacing hyperlink [116664 - 116683] HYPERLINK ExtKind, UML43... +2024-09-07 21:45:43,255 [main] TRACE AbstractWordWriter - replacing hyperlink [117027 - 117046] HYPERLINK IntKind, UML44... +2024-09-07 21:45:43,301 [main] TRACE AbstractWordWriter - replacing hyperlink [117391 - 117414] HYPERLINK DateAndTime, UML27... +2024-09-07 21:45:43,315 [main] TRACE AbstractWordWriter - No hyperlink added: 'DateAndTime' for bookmark 'UML27' not in this document. +2024-09-07 21:45:43,319 [main] TRACE AbstractWordWriter - replacing hyperlink [117426 - 117447] HYPERLINK EventKind, UML48... +2024-09-07 21:45:43,369 [main] TRACE AbstractWordWriter - replacing hyperlink [117792 - 117815] HYPERLINK DateAndTime, UML27... +2024-09-07 21:45:43,382 [main] TRACE AbstractWordWriter - No hyperlink added: 'DateAndTime' for bookmark 'UML27' not in this document. +2024-09-07 21:45:43,386 [main] TRACE AbstractWordWriter - replacing hyperlink [117827 - 117849] HYPERLINK PSPAccKind, UML46... +2024-09-07 21:45:43,431 [main] TRACE AbstractWordWriter - replacing hyperlink [118269 - 118291] HYPERLINK ProtIdKind, UML47... +2024-09-07 21:45:43,477 [main] TRACE AbstractWordWriter - replacing hyperlink [118679 - 118707] HYPERLINK TimSyncIssueKind, UML49... +2024-09-07 21:45:43,522 [main] TRACE AbstractWordWriter - replacing hyperlink [119313 - 119344] HYPERLINK SecurityProfileKind, UML50... +2024-09-07 21:45:43,569 [main] TRACE AbstractWordWriter - replacing hyperlink [119753 - 119779] HYPERLINK TimSyncSrcKind, UML51... +2024-09-07 21:45:43,614 [main] TRACE AbstractWordWriter - replacing hyperlink [120183 - 120202] HYPERLINK LnkKind, UML45... +2024-09-07 21:45:43,660 [main] TRACE AbstractWordWriter - replacing hyperlink [121934 - 121958] HYPERLINK AppDatStType, UML68... +2024-09-07 21:45:43,705 [main] TRACE AbstractWordWriter - replacing hyperlink [122102 - 122119] HYPERLINK CntRs, UML67... +2024-09-07 21:45:43,752 [main] TRACE AbstractWordWriter - replacing hyperlink [122232 - 122253] HYPERLINK EventType, UML72... +2024-09-07 21:45:43,797 [main] TRACE AbstractWordWriter - replacing hyperlink [122348 - 122374] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:45:43,843 [main] TRACE AbstractWordWriter - replacing hyperlink [122457 - 122483] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:45:43,889 [main] TRACE AbstractWordWriter - replacing hyperlink [122597 - 122623] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:45:43,934 [main] TRACE AbstractWordWriter - replacing hyperlink [122739 - 122765] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:45:43,993 [main] TRACE AbstractWordWriter - replacing hyperlink [122890 - 122911] HYPERLINK PSUPEntry, UML80... +2024-09-07 21:45:44,038 [main] TRACE AbstractWordWriter - replacing hyperlink [122993 - 123012] HYPERLINK Integer, UML53... +2024-09-07 21:45:44,083 [main] TRACE AbstractWordWriter - replacing hyperlink [123143 - 123164] HYPERLINK IntegerTs, UML58... +2024-09-07 21:45:44,129 [main] TRACE AbstractWordWriter - replacing hyperlink [123284 - 123316] HYPERLINK SecurityNotification, UML82... +2024-09-07 21:45:44,175 [main] TRACE AbstractWordWriter - replacing hyperlink [123423 - 123447] HYPERLINK Notification, UML81... +2024-09-07 21:45:44,222 [main] TRACE AbstractWordWriter - replacing hyperlink [123535 - 123561] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:45:44,268 [main] TRACE AbstractWordWriter - replacing hyperlink [123976 - 123993] HYPERLINK CntRs, UML67... +2024-09-07 21:45:44,317 [main] TRACE AbstractWordWriter - replacing hyperlink [124072 - 124094] HYPERLINK CharString, UML59... +2024-09-07 21:45:44,365 [main] TRACE AbstractWordWriter - replacing hyperlink [124176 - 124199] HYPERLINK EntityIndex, UML66... +2024-09-07 21:45:44,413 [main] TRACE AbstractWordWriter - replacing hyperlink [124272 - 124294] HYPERLINK CharString, UML59... +2024-09-07 21:45:44,458 [main] TRACE AbstractWordWriter - replacing hyperlink [124374 - 124400] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:45:44,504 [main] TRACE AbstractWordWriter - replacing hyperlink [124501 - 124522] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:44,550 [main] TRACE AbstractWordWriter - replacing hyperlink [124688 - 124714] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:45:44,597 [main] TRACE AbstractWordWriter - replacing hyperlink [125187 - 125206] HYPERLINK Integer, UML53... +2024-09-07 21:45:44,645 [main] TRACE AbstractWordWriter - replacing hyperlink [125337 - 125358] HYPERLINK IntegerTs, UML58... +2024-09-07 21:45:44,690 [main] TRACE AbstractWordWriter - replacing hyperlink [125837 - 125858] HYPERLINK EventType, UML72... +2024-09-07 21:45:44,734 [main] TRACE AbstractWordWriter - replacing hyperlink [125953 - 125974] HYPERLINK Timestamp, UML61... +2024-09-07 21:45:44,779 [main] TRACE AbstractWordWriter - replacing hyperlink [126052 - 126073] HYPERLINK Timestamp, UML61... +2024-09-07 21:45:44,824 [main] TRACE AbstractWordWriter - replacing hyperlink [126182 - 126203] HYPERLINK Timestamp, UML61... +2024-09-07 21:45:44,872 [main] TRACE AbstractWordWriter - replacing hyperlink [126314 - 126335] HYPERLINK Timestamp, UML61... +2024-09-07 21:45:44,921 [main] TRACE AbstractWordWriter - replacing hyperlink [127324 - 127345] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:44,969 [main] TRACE AbstractWordWriter - replacing hyperlink [127474 - 127491] HYPERLINK CntRs, UML67... +2024-09-07 21:45:45,019 [main] TRACE AbstractWordWriter - replacing hyperlink [127581 - 127602] HYPERLINK IntegerTs, UML58... +2024-09-07 21:45:45,066 [main] TRACE AbstractWordWriter - replacing hyperlink [127692 - 127716] HYPERLINK CharStringTs, UML60... +2024-09-07 21:45:45,111 [main] TRACE AbstractWordWriter - replacing hyperlink [127812 - 127832] HYPERLINK CPUEntry, UML84... +2024-09-07 21:45:45,158 [main] TRACE AbstractWordWriter - replacing hyperlink [127953 - 127975] HYPERLINK FloatingTs, UML57... +2024-09-07 21:45:45,204 [main] TRACE AbstractWordWriter - replacing hyperlink [128137 - 128158] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:45,248 [main] TRACE AbstractWordWriter - replacing hyperlink [128307 - 128329] HYPERLINK CharString, UML59... +2024-09-07 21:45:45,295 [main] TRACE AbstractWordWriter - replacing hyperlink [128438 - 128459] HYPERLINK IntegerTs, UML58... +2024-09-07 21:45:45,345 [main] TRACE AbstractWordWriter - replacing hyperlink [128615 - 128635] HYPERLINK EXTEntry, UML85... +2024-09-07 21:45:45,392 [main] TRACE AbstractWordWriter - replacing hyperlink [128777 - 128801] HYPERLINK CharStringTs, UML60... +2024-09-07 21:45:45,437 [main] TRACE AbstractWordWriter - replacing hyperlink [128934 - 128956] HYPERLINK FloatingTs, UML57... +2024-09-07 21:45:45,484 [main] TRACE AbstractWordWriter - replacing hyperlink [129075 - 129096] HYPERLINK IntegerTs, UML58... +2024-09-07 21:45:45,533 [main] TRACE AbstractWordWriter - replacing hyperlink [129176 - 129197] HYPERLINK EventType, UML72... +2024-09-07 21:45:45,581 [main] TRACE AbstractWordWriter - replacing hyperlink [129297 - 129318] HYPERLINK IntegerTs, UML58... +2024-09-07 21:45:45,628 [main] TRACE AbstractWordWriter - replacing hyperlink [129408 - 129429] HYPERLINK IntegerTs, UML58... +2024-09-07 21:45:45,674 [main] TRACE AbstractWordWriter - replacing hyperlink [129512 - 129534] HYPERLINK CharString, UML59... +2024-09-07 21:45:45,717 [main] TRACE AbstractWordWriter - replacing hyperlink [129660 - 129682] HYPERLINK CharString, UML59... +2024-09-07 21:45:45,766 [main] TRACE AbstractWordWriter - replacing hyperlink [129786 - 129805] HYPERLINK Integer, UML53... +2024-09-07 21:45:45,815 [main] TRACE AbstractWordWriter - replacing hyperlink [129924 - 129946] HYPERLINK FloatingTs, UML57... +2024-09-07 21:45:45,862 [main] TRACE AbstractWordWriter - replacing hyperlink [130097 - 130119] HYPERLINK CharString, UML59... +2024-09-07 21:45:45,908 [main] TRACE AbstractWordWriter - replacing hyperlink [130218 - 130239] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:45,953 [main] TRACE AbstractWordWriter - replacing hyperlink [130361 - 130383] HYPERLINK CharString, UML59... +2024-09-07 21:45:46,000 [main] TRACE AbstractWordWriter - replacing hyperlink [130457 - 130478] HYPERLINK IntegerTs, UML58... +2024-09-07 21:45:46,047 [main] TRACE AbstractWordWriter - replacing hyperlink [130667 - 130689] HYPERLINK FloatingTs, UML57... +2024-09-07 21:45:46,097 [main] TRACE AbstractWordWriter - replacing hyperlink [130842 - 130864] HYPERLINK FloatingTs, UML57... +2024-09-07 21:45:46,144 [main] TRACE AbstractWordWriter - replacing hyperlink [130977 - 131002] HYPERLINK PhyHealthType, UML69... +2024-09-07 21:45:46,193 [main] TRACE AbstractWordWriter - replacing hyperlink [131117 - 131138] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:46,249 [main] TRACE AbstractWordWriter - replacing hyperlink [131270 - 131294] HYPERLINK CharStringTs, UML60... +2024-09-07 21:45:46,297 [main] TRACE AbstractWordWriter - replacing hyperlink [131395 - 131416] HYPERLINK IntegerTs, UML58... +2024-09-07 21:45:46,354 [main] TRACE AbstractWordWriter - replacing hyperlink [131560 - 131581] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:46,398 [main] TRACE AbstractWordWriter - replacing hyperlink [131695 - 131727] HYPERLINK SecurityNotification, UML88... +2024-09-07 21:45:46,444 [main] TRACE AbstractWordWriter - replacing hyperlink [131834 - 131858] HYPERLINK Notification, UML87... +2024-09-07 21:45:46,491 [main] TRACE AbstractWordWriter - replacing hyperlink [131942 - 131964] HYPERLINK STOREEntry, UML86... +2024-09-07 21:45:46,537 [main] TRACE AbstractWordWriter - replacing hyperlink [132098 - 132119] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:46,584 [main] TRACE AbstractWordWriter - replacing hyperlink [132380 - 132401] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:46,631 [main] TRACE AbstractWordWriter - replacing hyperlink [132540 - 132561] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:46,678 [main] TRACE AbstractWordWriter - replacing hyperlink [132913 - 132930] HYPERLINK CntRs, UML67... +2024-09-07 21:45:46,724 [main] TRACE AbstractWordWriter - replacing hyperlink [133009 - 133031] HYPERLINK CharString, UML59... +2024-09-07 21:45:46,771 [main] TRACE AbstractWordWriter - replacing hyperlink [133108 - 133134] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:45:46,817 [main] TRACE AbstractWordWriter - replacing hyperlink [133207 - 133230] HYPERLINK EntityIndex, UML66... +2024-09-07 21:45:46,862 [main] TRACE AbstractWordWriter - replacing hyperlink [133293 - 133319] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:45:46,910 [main] TRACE AbstractWordWriter - replacing hyperlink [133416 - 133442] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:45:46,955 [main] TRACE AbstractWordWriter - replacing hyperlink [133571 - 133593] HYPERLINK FloatingTs, UML57... +2024-09-07 21:45:47,002 [main] TRACE AbstractWordWriter - replacing hyperlink [133671 - 133692] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:47,048 [main] TRACE AbstractWordWriter - replacing hyperlink [134116 - 134139] HYPERLINK EntityIndex, UML66... +2024-09-07 21:45:47,094 [main] TRACE AbstractWordWriter - replacing hyperlink [134206 - 134228] HYPERLINK CharString, UML59... +2024-09-07 21:45:47,143 [main] TRACE AbstractWordWriter - replacing hyperlink [134321 - 134340] HYPERLINK ExtType, UML70... +2024-09-07 21:45:47,191 [main] TRACE AbstractWordWriter - replacing hyperlink [134452 - 134476] HYPERLINK CharStringTs, UML60... +2024-09-07 21:45:47,238 [main] TRACE AbstractWordWriter - replacing hyperlink [134567 - 134593] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:45:47,282 [main] TRACE AbstractWordWriter - replacing hyperlink [134722 - 134744] HYPERLINK FloatingTs, UML57... +2024-09-07 21:45:47,330 [main] TRACE AbstractWordWriter - replacing hyperlink [134828 - 134849] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:47,378 [main] TRACE AbstractWordWriter - replacing hyperlink [134999 - 135020] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:47,426 [main] TRACE AbstractWordWriter - replacing hyperlink [135126 - 135143] HYPERLINK CntRs, UML67... +2024-09-07 21:45:47,472 [main] TRACE AbstractWordWriter - replacing hyperlink [135498 - 135521] HYPERLINK EntityIndex, UML66... +2024-09-07 21:45:47,520 [main] TRACE AbstractWordWriter - replacing hyperlink [135595 - 135617] HYPERLINK CharString, UML59... +2024-09-07 21:45:47,567 [main] TRACE AbstractWordWriter - replacing hyperlink [135704 - 135724] HYPERLINK Floating, UML56... +2024-09-07 21:45:47,612 [main] TRACE AbstractWordWriter - replacing hyperlink [135810 - 135832] HYPERLINK FloatingTs, UML57... +2024-09-07 21:45:47,660 [main] TRACE AbstractWordWriter - replacing hyperlink [135924 - 135950] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:45:47,709 [main] TRACE AbstractWordWriter - replacing hyperlink [136041 - 136058] HYPERLINK CntRs, UML67... +2024-09-07 21:45:47,755 [main] TRACE AbstractWordWriter - replacing hyperlink [136473 - 136494] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:47,803 [main] TRACE AbstractWordWriter - replacing hyperlink [136626 - 136648] HYPERLINK FloatingTs, UML57... +2024-09-07 21:45:47,850 [main] TRACE AbstractWordWriter - replacing hyperlink [136763 - 136785] HYPERLINK FloatingTs, UML57... +2024-09-07 21:45:47,897 [main] TRACE AbstractWordWriter - replacing hyperlink [136938 - 136960] HYPERLINK FloatingTs, UML57... +2024-09-07 21:45:47,941 [main] TRACE AbstractWordWriter - replacing hyperlink [137073 - 137098] HYPERLINK PhyHealthType, UML69... +2024-09-07 21:45:47,988 [main] TRACE AbstractWordWriter - replacing hyperlink [137207 - 137228] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:48,032 [main] TRACE AbstractWordWriter - replacing hyperlink [137668 - 137689] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:48,083 [main] TRACE AbstractWordWriter - replacing hyperlink [137821 - 137842] HYPERLINK IntegerTs, UML58... +2024-09-07 21:45:48,129 [main] TRACE AbstractWordWriter - replacing hyperlink [138004 - 138025] HYPERLINK EventType, UML72... +2024-09-07 21:45:48,175 [main] TRACE AbstractWordWriter - replacing hyperlink [138128 - 138149] HYPERLINK IntegerTs, UML58... +2024-09-07 21:45:48,228 [main] TRACE AbstractWordWriter - replacing hyperlink [138339 - 138360] HYPERLINK IntegerTs, UML58... +2024-09-07 21:45:48,274 [main] TRACE AbstractWordWriter - replacing hyperlink [138504 - 138525] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:48,324 [main] TRACE AbstractWordWriter - replacing hyperlink [140317 - 140341] HYPERLINK BooleanValue, UML52... +2024-09-07 21:45:48,374 [main] TRACE AbstractWordWriter - replacing hyperlink [140475 - 140494] HYPERLINK Integer, UML53... +2024-09-07 21:45:48,423 [main] TRACE AbstractWordWriter - replacing hyperlink [140663 - 140683] HYPERLINK Floating, UML56... +2024-09-07 21:45:48,472 [main] TRACE AbstractWordWriter - replacing hyperlink [140853 - 140873] HYPERLINK Floating, UML56... +2024-09-07 21:45:48,519 [main] TRACE AbstractWordWriter - replacing hyperlink [141042 - 141062] HYPERLINK Floating, UML56... +2024-09-07 21:45:48,567 [main] TRACE AbstractWordWriter - replacing hyperlink [141232 - 141252] HYPERLINK Floating, UML56... +2024-09-07 21:45:48,614 [main] TRACE AbstractWordWriter - replacing hyperlink [141414 - 141434] HYPERLINK Floating, UML56... +2024-09-07 21:45:48,660 [main] TRACE AbstractWordWriter - replacing hyperlink [141538 - 141558] HYPERLINK Floating, UML56... +2024-09-07 21:45:48,706 [main] TRACE AbstractWordWriter - replacing hyperlink [142456 - 142477] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:48,752 [main] TRACE AbstractWordWriter - replacing hyperlink [142609 - 142630] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:48,798 [main] TRACE AbstractWordWriter - replacing hyperlink [142739 - 142760] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:48,844 [main] TRACE AbstractWordWriter - replacing hyperlink [142884 - 142905] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:48,889 [main] TRACE AbstractWordWriter - replacing hyperlink [143065 - 143086] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:48,937 [main] TRACE AbstractWordWriter - replacing hyperlink [143259 - 143280] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:48,983 [main] TRACE AbstractWordWriter - replacing hyperlink [143420 - 143441] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:49,032 [main] TRACE AbstractWordWriter - replacing hyperlink [143572 - 143593] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:49,082 [main] TRACE AbstractWordWriter - replacing hyperlink [143723 - 143744] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:49,130 [main] TRACE AbstractWordWriter - replacing hyperlink [143836 - 143857] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:49,175 [main] TRACE AbstractWordWriter - replacing hyperlink [143940 - 143961] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:49,222 [main] TRACE AbstractWordWriter - replacing hyperlink [144078 - 144099] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:49,272 [main] TRACE AbstractWordWriter - replacing hyperlink [144218 - 144239] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:49,321 [main] TRACE AbstractWordWriter - replacing hyperlink [144329 - 144350] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:49,371 [main] TRACE AbstractWordWriter - replacing hyperlink [144450 - 144471] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:49,421 [main] TRACE AbstractWordWriter - replacing hyperlink [144596 - 144617] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:49,471 [main] TRACE AbstractWordWriter - replacing hyperlink [144756 - 144777] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:49,518 [main] TRACE AbstractWordWriter - replacing hyperlink [144902 - 144923] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:49,564 [main] TRACE AbstractWordWriter - replacing hyperlink [145046 - 145067] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:49,609 [main] TRACE AbstractWordWriter - replacing hyperlink [145226 - 145247] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:49,655 [main] TRACE AbstractWordWriter - replacing hyperlink [145392 - 145413] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:49,705 [main] TRACE AbstractWordWriter - replacing hyperlink [145527 - 145548] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:49,753 [main] TRACE AbstractWordWriter - replacing hyperlink [145680 - 145701] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:49,801 [main] TRACE AbstractWordWriter - replacing hyperlink [145843 - 145864] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:49,847 [main] TRACE AbstractWordWriter - replacing hyperlink [146046 - 146067] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:49,893 [main] TRACE AbstractWordWriter - replacing hyperlink [146251 - 146272] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:49,939 [main] TRACE AbstractWordWriter - replacing hyperlink [146414 - 146435] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:49,985 [main] TRACE AbstractWordWriter - replacing hyperlink [146554 - 146575] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:50,033 [main] TRACE AbstractWordWriter - replacing hyperlink [146680 - 146701] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:50,087 [main] TRACE AbstractWordWriter - replacing hyperlink [146851 - 146872] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:50,134 [main] TRACE AbstractWordWriter - replacing hyperlink [146996 - 147017] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:50,179 [main] TRACE AbstractWordWriter - replacing hyperlink [147189 - 147210] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:50,224 [main] TRACE AbstractWordWriter - replacing hyperlink [147359 - 147380] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:50,269 [main] TRACE AbstractWordWriter - replacing hyperlink [147559 - 147580] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:50,318 [main] TRACE AbstractWordWriter - replacing hyperlink [147733 - 147754] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:50,374 [main] TRACE AbstractWordWriter - replacing hyperlink [148296 - 148319] HYPERLINK EntityIndex, UML66... +2024-09-07 21:45:50,419 [main] TRACE AbstractWordWriter - replacing hyperlink [148392 - 148409] HYPERLINK CntRs, UML67... +2024-09-07 21:45:50,466 [main] TRACE AbstractWordWriter - replacing hyperlink [148493 - 148516] HYPERLINK InetAddress, UML65... +2024-09-07 21:45:50,512 [main] TRACE AbstractWordWriter - replacing hyperlink [148593 - 148620] HYPERLINK InetAddressType, UML64... +2024-09-07 21:45:50,558 [main] TRACE AbstractWordWriter - replacing hyperlink [148702 - 148725] HYPERLINK InetAddress, UML65... +2024-09-07 21:45:50,605 [main] TRACE AbstractWordWriter - replacing hyperlink [148803 - 148830] HYPERLINK InetAddressType, UML64... +2024-09-07 21:45:50,650 [main] TRACE AbstractWordWriter - replacing hyperlink [148916 - 148940] HYPERLINK BooleanValue, UML52... +2024-09-07 21:45:50,699 [main] TRACE AbstractWordWriter - replacing hyperlink [148998 - 149028] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:45:50,745 [main] TRACE AbstractWordWriter - replacing hyperlink [149089 - 149108] HYPERLINK Integer, UML53... +2024-09-07 21:45:50,790 [main] TRACE AbstractWordWriter - replacing hyperlink [149161 - 149191] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:45:50,835 [main] TRACE AbstractWordWriter - replacing hyperlink [149247 - 149267] HYPERLINK Floating, UML56... +2024-09-07 21:45:50,880 [main] TRACE AbstractWordWriter - replacing hyperlink [149324 - 149354] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:45:50,930 [main] TRACE AbstractWordWriter - replacing hyperlink [149408 - 149428] HYPERLINK Floating, UML56... +2024-09-07 21:45:50,979 [main] TRACE AbstractWordWriter - replacing hyperlink [149485 - 149515] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:45:51,027 [main] TRACE AbstractWordWriter - replacing hyperlink [149579 - 149599] HYPERLINK Floating, UML56... +2024-09-07 21:45:51,073 [main] TRACE AbstractWordWriter - replacing hyperlink [149656 - 149686] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:45:51,121 [main] TRACE AbstractWordWriter - replacing hyperlink [149747 - 149767] HYPERLINK Floating, UML56... +2024-09-07 21:45:51,167 [main] TRACE AbstractWordWriter - replacing hyperlink [149824 - 149854] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:45:51,215 [main] TRACE AbstractWordWriter - replacing hyperlink [149910 - 149930] HYPERLINK Floating, UML56... +2024-09-07 21:45:51,263 [main] TRACE AbstractWordWriter - replacing hyperlink [149987 - 150017] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:45:51,313 [main] TRACE AbstractWordWriter - replacing hyperlink [150077 - 150097] HYPERLINK Floating, UML56... +2024-09-07 21:45:51,361 [main] TRACE AbstractWordWriter - replacing hyperlink [150154 - 150184] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:45:51,416 [main] TRACE AbstractWordWriter - replacing hyperlink [150243 - 150264] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:51,464 [main] TRACE AbstractWordWriter - replacing hyperlink [150319 - 150352] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:51,515 [main] TRACE AbstractWordWriter - replacing hyperlink [150421 - 150442] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:51,564 [main] TRACE AbstractWordWriter - replacing hyperlink [150497 - 150530] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:51,611 [main] TRACE AbstractWordWriter - replacing hyperlink [150599 - 150620] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:51,658 [main] TRACE AbstractWordWriter - replacing hyperlink [150675 - 150708] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:51,706 [main] TRACE AbstractWordWriter - replacing hyperlink [150770 - 150791] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:51,751 [main] TRACE AbstractWordWriter - replacing hyperlink [150846 - 150879] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:51,798 [main] TRACE AbstractWordWriter - replacing hyperlink [150944 - 150965] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:51,847 [main] TRACE AbstractWordWriter - replacing hyperlink [151020 - 151053] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:51,895 [main] TRACE AbstractWordWriter - replacing hyperlink [151115 - 151136] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:51,944 [main] TRACE AbstractWordWriter - replacing hyperlink [151191 - 151224] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:51,992 [main] TRACE AbstractWordWriter - replacing hyperlink [151295 - 151316] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:52,038 [main] TRACE AbstractWordWriter - replacing hyperlink [151371 - 151404] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:52,086 [main] TRACE AbstractWordWriter - replacing hyperlink [151468 - 151489] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:52,133 [main] TRACE AbstractWordWriter - replacing hyperlink [151544 - 151577] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:52,182 [main] TRACE AbstractWordWriter - replacing hyperlink [151635 - 151656] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:52,231 [main] TRACE AbstractWordWriter - replacing hyperlink [151711 - 151744] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:52,278 [main] TRACE AbstractWordWriter - replacing hyperlink [151803 - 151824] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:52,327 [main] TRACE AbstractWordWriter - replacing hyperlink [151879 - 151912] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:52,381 [main] TRACE AbstractWordWriter - replacing hyperlink [151975 - 151996] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:52,427 [main] TRACE AbstractWordWriter - replacing hyperlink [152051 - 152084] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:52,481 [main] TRACE AbstractWordWriter - replacing hyperlink [152153 - 152174] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:52,529 [main] TRACE AbstractWordWriter - replacing hyperlink [152229 - 152262] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:52,577 [main] TRACE AbstractWordWriter - replacing hyperlink [152325 - 152346] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:52,627 [main] TRACE AbstractWordWriter - replacing hyperlink [152401 - 152434] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:52,676 [main] TRACE AbstractWordWriter - replacing hyperlink [152494 - 152515] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:52,725 [main] TRACE AbstractWordWriter - replacing hyperlink [152570 - 152603] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:52,771 [main] TRACE AbstractWordWriter - replacing hyperlink [152666 - 152687] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:52,818 [main] TRACE AbstractWordWriter - replacing hyperlink [152742 - 152775] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:52,866 [main] TRACE AbstractWordWriter - replacing hyperlink [152842 - 152863] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:52,912 [main] TRACE AbstractWordWriter - replacing hyperlink [152918 - 152951] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:52,960 [main] TRACE AbstractWordWriter - replacing hyperlink [153014 - 153035] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:53,007 [main] TRACE AbstractWordWriter - replacing hyperlink [153090 - 153123] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:53,054 [main] TRACE AbstractWordWriter - replacing hyperlink [153187 - 153208] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:53,100 [main] TRACE AbstractWordWriter - replacing hyperlink [153263 - 153296] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:53,147 [main] TRACE AbstractWordWriter - replacing hyperlink [153355 - 153376] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:53,193 [main] TRACE AbstractWordWriter - replacing hyperlink [153431 - 153464] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:53,239 [main] TRACE AbstractWordWriter - replacing hyperlink [153525 - 153546] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:53,285 [main] TRACE AbstractWordWriter - replacing hyperlink [153601 - 153634] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:53,332 [main] TRACE AbstractWordWriter - replacing hyperlink [153694 - 153715] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:53,380 [main] TRACE AbstractWordWriter - replacing hyperlink [153770 - 153803] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:53,427 [main] TRACE AbstractWordWriter - replacing hyperlink [153868 - 153889] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:53,474 [main] TRACE AbstractWordWriter - replacing hyperlink [153944 - 153977] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:53,527 [main] TRACE AbstractWordWriter - replacing hyperlink [154052 - 154073] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:53,576 [main] TRACE AbstractWordWriter - replacing hyperlink [154128 - 154161] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:53,623 [main] TRACE AbstractWordWriter - replacing hyperlink [154224 - 154245] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:53,670 [main] TRACE AbstractWordWriter - replacing hyperlink [154300 - 154333] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:53,715 [main] TRACE AbstractWordWriter - replacing hyperlink [154396 - 154417] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:53,762 [main] TRACE AbstractWordWriter - replacing hyperlink [154472 - 154505] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:53,812 [main] TRACE AbstractWordWriter - replacing hyperlink [154574 - 154595] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:53,863 [main] TRACE AbstractWordWriter - replacing hyperlink [154650 - 154683] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:53,910 [main] TRACE AbstractWordWriter - replacing hyperlink [154749 - 154770] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:53,960 [main] TRACE AbstractWordWriter - replacing hyperlink [154825 - 154858] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:54,007 [main] TRACE AbstractWordWriter - replacing hyperlink [154920 - 154941] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:54,056 [main] TRACE AbstractWordWriter - replacing hyperlink [154996 - 155029] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:54,104 [main] TRACE AbstractWordWriter - replacing hyperlink [155086 - 155107] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:54,149 [main] TRACE AbstractWordWriter - replacing hyperlink [155162 - 155195] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:54,195 [main] TRACE AbstractWordWriter - replacing hyperlink [155259 - 155280] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:54,242 [main] TRACE AbstractWordWriter - replacing hyperlink [155335 - 155368] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:54,289 [main] TRACE AbstractWordWriter - replacing hyperlink [155432 - 155453] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:54,337 [main] TRACE AbstractWordWriter - replacing hyperlink [155508 - 155541] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:54,383 [main] TRACE AbstractWordWriter - replacing hyperlink [155607 - 155628] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:54,435 [main] TRACE AbstractWordWriter - replacing hyperlink [155683 - 155716] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:54,483 [main] TRACE AbstractWordWriter - replacing hyperlink [155786 - 155807] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:54,529 [main] TRACE AbstractWordWriter - replacing hyperlink [155862 - 155895] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:54,581 [main] TRACE AbstractWordWriter - replacing hyperlink [155958 - 155979] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:54,632 [main] TRACE AbstractWordWriter - replacing hyperlink [156034 - 156067] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:54,682 [main] TRACE AbstractWordWriter - replacing hyperlink [156137 - 156158] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:54,728 [main] TRACE AbstractWordWriter - replacing hyperlink [156213 - 156246] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:54,775 [main] TRACE AbstractWordWriter - replacing hyperlink [156608 - 156625] HYPERLINK CntRs, UML67... +2024-09-07 21:45:54,823 [main] TRACE AbstractWordWriter - replacing hyperlink [156708 - 156729] HYPERLINK EventType, UML72... +2024-09-07 21:45:54,870 [main] TRACE AbstractWordWriter - replacing hyperlink [156845 - 156866] HYPERLINK ServerTLS, UML93... +2024-09-07 21:45:54,915 [main] TRACE AbstractWordWriter - replacing hyperlink [156948 - 156969] HYPERLINK ClientTLS, UML92... +2024-09-07 21:45:54,960 [main] TRACE AbstractWordWriter - replacing hyperlink [157065 - 157114] HYPERLINK IEC62351part3ed2SecurityNotification, UML106... +2024-09-07 21:45:55,007 [main] TRACE AbstractWordWriter - replacing hyperlink [157306 - 157327] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:55,054 [main] TRACE AbstractWordWriter - replacing hyperlink [157382 - 157415] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:55,102 [main] TRACE AbstractWordWriter - replacing hyperlink [157484 - 157505] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:55,149 [main] TRACE AbstractWordWriter - replacing hyperlink [157560 - 157593] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:55,196 [main] TRACE AbstractWordWriter - replacing hyperlink [157662 - 157683] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:55,241 [main] TRACE AbstractWordWriter - replacing hyperlink [157738 - 157771] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:55,288 [main] TRACE AbstractWordWriter - replacing hyperlink [157833 - 157854] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:55,335 [main] TRACE AbstractWordWriter - replacing hyperlink [157909 - 157942] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:55,380 [main] TRACE AbstractWordWriter - replacing hyperlink [158007 - 158028] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:55,432 [main] TRACE AbstractWordWriter - replacing hyperlink [158083 - 158116] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:55,478 [main] TRACE AbstractWordWriter - replacing hyperlink [158178 - 158199] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:55,525 [main] TRACE AbstractWordWriter - replacing hyperlink [158254 - 158287] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:55,572 [main] TRACE AbstractWordWriter - replacing hyperlink [158358 - 158379] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:55,621 [main] TRACE AbstractWordWriter - replacing hyperlink [158434 - 158467] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:55,682 [main] TRACE AbstractWordWriter - replacing hyperlink [158531 - 158552] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:55,727 [main] TRACE AbstractWordWriter - replacing hyperlink [158607 - 158640] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:55,774 [main] TRACE AbstractWordWriter - replacing hyperlink [158698 - 158719] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:55,822 [main] TRACE AbstractWordWriter - replacing hyperlink [158774 - 158807] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:55,869 [main] TRACE AbstractWordWriter - replacing hyperlink [158866 - 158887] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:55,916 [main] TRACE AbstractWordWriter - replacing hyperlink [158942 - 158975] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:55,962 [main] TRACE AbstractWordWriter - replacing hyperlink [159038 - 159059] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:56,008 [main] TRACE AbstractWordWriter - replacing hyperlink [159114 - 159147] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:56,055 [main] TRACE AbstractWordWriter - replacing hyperlink [159216 - 159237] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:56,105 [main] TRACE AbstractWordWriter - replacing hyperlink [159292 - 159325] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:56,155 [main] TRACE AbstractWordWriter - replacing hyperlink [159388 - 159409] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:56,204 [main] TRACE AbstractWordWriter - replacing hyperlink [159464 - 159497] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:56,253 [main] TRACE AbstractWordWriter - replacing hyperlink [159557 - 159578] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:56,301 [main] TRACE AbstractWordWriter - replacing hyperlink [159633 - 159666] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:56,350 [main] TRACE AbstractWordWriter - replacing hyperlink [159729 - 159750] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:56,399 [main] TRACE AbstractWordWriter - replacing hyperlink [159805 - 159838] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:56,447 [main] TRACE AbstractWordWriter - replacing hyperlink [159905 - 159926] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:56,494 [main] TRACE AbstractWordWriter - replacing hyperlink [159981 - 160014] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:56,542 [main] TRACE AbstractWordWriter - replacing hyperlink [160077 - 160098] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:56,590 [main] TRACE AbstractWordWriter - replacing hyperlink [160153 - 160186] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:56,637 [main] TRACE AbstractWordWriter - replacing hyperlink [160250 - 160271] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:56,686 [main] TRACE AbstractWordWriter - replacing hyperlink [160326 - 160359] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:56,738 [main] TRACE AbstractWordWriter - replacing hyperlink [160418 - 160439] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:56,784 [main] TRACE AbstractWordWriter - replacing hyperlink [160494 - 160527] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:56,830 [main] TRACE AbstractWordWriter - replacing hyperlink [160588 - 160609] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:56,877 [main] TRACE AbstractWordWriter - replacing hyperlink [160664 - 160697] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:56,925 [main] TRACE AbstractWordWriter - replacing hyperlink [160757 - 160778] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:56,971 [main] TRACE AbstractWordWriter - replacing hyperlink [160833 - 160866] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:57,018 [main] TRACE AbstractWordWriter - replacing hyperlink [160931 - 160952] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:57,068 [main] TRACE AbstractWordWriter - replacing hyperlink [161007 - 161040] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:57,115 [main] TRACE AbstractWordWriter - replacing hyperlink [161115 - 161136] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:57,162 [main] TRACE AbstractWordWriter - replacing hyperlink [161191 - 161224] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:57,210 [main] TRACE AbstractWordWriter - replacing hyperlink [161287 - 161308] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:57,259 [main] TRACE AbstractWordWriter - replacing hyperlink [161363 - 161396] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:57,305 [main] TRACE AbstractWordWriter - replacing hyperlink [161459 - 161480] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:57,352 [main] TRACE AbstractWordWriter - replacing hyperlink [161535 - 161568] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:57,399 [main] TRACE AbstractWordWriter - replacing hyperlink [161637 - 161658] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:57,450 [main] TRACE AbstractWordWriter - replacing hyperlink [161713 - 161746] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:57,498 [main] TRACE AbstractWordWriter - replacing hyperlink [161812 - 161833] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:57,547 [main] TRACE AbstractWordWriter - replacing hyperlink [161888 - 161921] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:57,593 [main] TRACE AbstractWordWriter - replacing hyperlink [161983 - 162004] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:57,639 [main] TRACE AbstractWordWriter - replacing hyperlink [162059 - 162092] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:57,686 [main] TRACE AbstractWordWriter - replacing hyperlink [162149 - 162170] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:57,736 [main] TRACE AbstractWordWriter - replacing hyperlink [162225 - 162258] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:57,790 [main] TRACE AbstractWordWriter - replacing hyperlink [162322 - 162343] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:57,841 [main] TRACE AbstractWordWriter - replacing hyperlink [162398 - 162431] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:57,888 [main] TRACE AbstractWordWriter - replacing hyperlink [162495 - 162516] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:57,934 [main] TRACE AbstractWordWriter - replacing hyperlink [162571 - 162604] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:57,981 [main] TRACE AbstractWordWriter - replacing hyperlink [162670 - 162691] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:58,029 [main] TRACE AbstractWordWriter - replacing hyperlink [162746 - 162779] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:58,077 [main] TRACE AbstractWordWriter - replacing hyperlink [162849 - 162870] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:58,123 [main] TRACE AbstractWordWriter - replacing hyperlink [162925 - 162958] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:58,171 [main] TRACE AbstractWordWriter - replacing hyperlink [163021 - 163042] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:58,218 [main] TRACE AbstractWordWriter - replacing hyperlink [163097 - 163130] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:58,266 [main] TRACE AbstractWordWriter - replacing hyperlink [163200 - 163221] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:58,314 [main] TRACE AbstractWordWriter - replacing hyperlink [163276 - 163309] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:58,363 [main] TRACE AbstractWordWriter - replacing hyperlink [163800 - 163821] HYPERLINK EventType, UML72... +2024-09-07 21:45:58,409 [main] TRACE AbstractWordWriter - replacing hyperlink [164189 - 164212] HYPERLINK EntityIndex, UML66... +2024-09-07 21:45:58,457 [main] TRACE AbstractWordWriter - replacing hyperlink [164266 - 164288] HYPERLINK TLSSession, UML91... +2024-09-07 21:45:58,504 [main] TRACE AbstractWordWriter - replacing hyperlink [164329 - 164346] HYPERLINK CntRs, UML67... +2024-09-07 21:45:58,550 [main] TRACE AbstractWordWriter - replacing hyperlink [164397 - 164419] HYPERLINK TLSSession, UML91... +2024-09-07 21:45:58,597 [main] TRACE AbstractWordWriter - replacing hyperlink [164465 - 164488] HYPERLINK InetAddress, UML65... +2024-09-07 21:45:58,645 [main] TRACE AbstractWordWriter - replacing hyperlink [164545 - 164567] HYPERLINK TLSSession, UML91... +2024-09-07 21:45:58,693 [main] TRACE AbstractWordWriter - replacing hyperlink [164617 - 164644] HYPERLINK InetAddressType, UML64... +2024-09-07 21:45:58,740 [main] TRACE AbstractWordWriter - replacing hyperlink [164705 - 164727] HYPERLINK TLSSession, UML91... +2024-09-07 21:45:58,787 [main] TRACE AbstractWordWriter - replacing hyperlink [164773 - 164796] HYPERLINK InetAddress, UML65... +2024-09-07 21:45:58,839 [main] TRACE AbstractWordWriter - replacing hyperlink [164853 - 164875] HYPERLINK TLSSession, UML91... +2024-09-07 21:45:58,891 [main] TRACE AbstractWordWriter - replacing hyperlink [164925 - 164952] HYPERLINK InetAddressType, UML64... +2024-09-07 21:45:58,937 [main] TRACE AbstractWordWriter - replacing hyperlink [165013 - 165035] HYPERLINK TLSSession, UML91... +2024-09-07 21:45:58,984 [main] TRACE AbstractWordWriter - replacing hyperlink [165084 - 165108] HYPERLINK BooleanValue, UML52... +2024-09-07 21:45:59,031 [main] TRACE AbstractWordWriter - replacing hyperlink [165166 - 165196] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:45:59,077 [main] TRACE AbstractWordWriter - replacing hyperlink [165257 - 165276] HYPERLINK Integer, UML53... +2024-09-07 21:45:59,126 [main] TRACE AbstractWordWriter - replacing hyperlink [165329 - 165359] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:45:59,173 [main] TRACE AbstractWordWriter - replacing hyperlink [165415 - 165435] HYPERLINK Floating, UML56... +2024-09-07 21:45:59,223 [main] TRACE AbstractWordWriter - replacing hyperlink [165492 - 165522] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:45:59,271 [main] TRACE AbstractWordWriter - replacing hyperlink [165576 - 165596] HYPERLINK Floating, UML56... +2024-09-07 21:45:59,316 [main] TRACE AbstractWordWriter - replacing hyperlink [165653 - 165683] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:45:59,364 [main] TRACE AbstractWordWriter - replacing hyperlink [165747 - 165767] HYPERLINK Floating, UML56... +2024-09-07 21:45:59,413 [main] TRACE AbstractWordWriter - replacing hyperlink [165824 - 165854] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:45:59,464 [main] TRACE AbstractWordWriter - replacing hyperlink [165915 - 165935] HYPERLINK Floating, UML56... +2024-09-07 21:45:59,512 [main] TRACE AbstractWordWriter - replacing hyperlink [165992 - 166022] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:45:59,559 [main] TRACE AbstractWordWriter - replacing hyperlink [166078 - 166098] HYPERLINK Floating, UML56... +2024-09-07 21:45:59,607 [main] TRACE AbstractWordWriter - replacing hyperlink [166155 - 166185] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:45:59,653 [main] TRACE AbstractWordWriter - replacing hyperlink [166245 - 166265] HYPERLINK Floating, UML56... +2024-09-07 21:45:59,699 [main] TRACE AbstractWordWriter - replacing hyperlink [166322 - 166352] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:45:59,747 [main] TRACE AbstractWordWriter - replacing hyperlink [166411 - 166432] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:59,794 [main] TRACE AbstractWordWriter - replacing hyperlink [166487 - 166520] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:59,843 [main] TRACE AbstractWordWriter - replacing hyperlink [166589 - 166610] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:59,893 [main] TRACE AbstractWordWriter - replacing hyperlink [166665 - 166698] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:45:59,949 [main] TRACE AbstractWordWriter - replacing hyperlink [166767 - 166788] HYPERLINK CounterTs, UML55... +2024-09-07 21:45:59,996 [main] TRACE AbstractWordWriter - replacing hyperlink [166843 - 166876] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:00,053 [main] TRACE AbstractWordWriter - replacing hyperlink [166938 - 166959] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:00,102 [main] TRACE AbstractWordWriter - replacing hyperlink [167014 - 167047] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:00,148 [main] TRACE AbstractWordWriter - replacing hyperlink [167112 - 167133] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:00,195 [main] TRACE AbstractWordWriter - replacing hyperlink [167188 - 167221] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:00,246 [main] TRACE AbstractWordWriter - replacing hyperlink [167283 - 167304] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:00,297 [main] TRACE AbstractWordWriter - replacing hyperlink [167359 - 167392] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:00,352 [main] TRACE AbstractWordWriter - replacing hyperlink [167463 - 167484] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:00,405 [main] TRACE AbstractWordWriter - replacing hyperlink [167539 - 167572] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:00,457 [main] TRACE AbstractWordWriter - replacing hyperlink [167636 - 167657] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:00,504 [main] TRACE AbstractWordWriter - replacing hyperlink [167712 - 167745] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:00,552 [main] TRACE AbstractWordWriter - replacing hyperlink [167803 - 167824] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:00,599 [main] TRACE AbstractWordWriter - replacing hyperlink [167879 - 167912] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:00,646 [main] TRACE AbstractWordWriter - replacing hyperlink [167971 - 167992] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:00,693 [main] TRACE AbstractWordWriter - replacing hyperlink [168047 - 168080] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:00,742 [main] TRACE AbstractWordWriter - replacing hyperlink [168143 - 168164] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:00,790 [main] TRACE AbstractWordWriter - replacing hyperlink [168219 - 168252] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:00,837 [main] TRACE AbstractWordWriter - replacing hyperlink [168321 - 168342] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:00,884 [main] TRACE AbstractWordWriter - replacing hyperlink [168397 - 168430] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:00,929 [main] TRACE AbstractWordWriter - replacing hyperlink [168493 - 168514] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:00,984 [main] TRACE AbstractWordWriter - replacing hyperlink [168569 - 168602] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:01,034 [main] TRACE AbstractWordWriter - replacing hyperlink [168662 - 168683] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:01,081 [main] TRACE AbstractWordWriter - replacing hyperlink [168738 - 168771] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:01,126 [main] TRACE AbstractWordWriter - replacing hyperlink [168834 - 168855] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:01,173 [main] TRACE AbstractWordWriter - replacing hyperlink [168910 - 168943] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:01,221 [main] TRACE AbstractWordWriter - replacing hyperlink [169010 - 169031] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:01,269 [main] TRACE AbstractWordWriter - replacing hyperlink [169086 - 169119] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:01,317 [main] TRACE AbstractWordWriter - replacing hyperlink [169182 - 169203] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:01,367 [main] TRACE AbstractWordWriter - replacing hyperlink [169258 - 169291] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:01,414 [main] TRACE AbstractWordWriter - replacing hyperlink [169355 - 169376] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:01,460 [main] TRACE AbstractWordWriter - replacing hyperlink [169431 - 169464] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:01,509 [main] TRACE AbstractWordWriter - replacing hyperlink [169523 - 169544] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:01,557 [main] TRACE AbstractWordWriter - replacing hyperlink [169599 - 169632] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:01,610 [main] TRACE AbstractWordWriter - replacing hyperlink [169693 - 169714] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:01,660 [main] TRACE AbstractWordWriter - replacing hyperlink [169769 - 169802] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:01,708 [main] TRACE AbstractWordWriter - replacing hyperlink [169862 - 169883] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:01,757 [main] TRACE AbstractWordWriter - replacing hyperlink [169938 - 169971] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:01,805 [main] TRACE AbstractWordWriter - replacing hyperlink [170036 - 170057] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:01,853 [main] TRACE AbstractWordWriter - replacing hyperlink [170112 - 170145] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:01,902 [main] TRACE AbstractWordWriter - replacing hyperlink [170220 - 170241] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:01,950 [main] TRACE AbstractWordWriter - replacing hyperlink [170296 - 170329] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:01,997 [main] TRACE AbstractWordWriter - replacing hyperlink [170392 - 170413] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:02,053 [main] TRACE AbstractWordWriter - replacing hyperlink [170468 - 170501] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:02,102 [main] TRACE AbstractWordWriter - replacing hyperlink [170564 - 170585] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:02,153 [main] TRACE AbstractWordWriter - replacing hyperlink [170640 - 170673] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:02,202 [main] TRACE AbstractWordWriter - replacing hyperlink [170742 - 170763] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:02,247 [main] TRACE AbstractWordWriter - replacing hyperlink [170818 - 170851] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:02,294 [main] TRACE AbstractWordWriter - replacing hyperlink [170917 - 170938] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:02,339 [main] TRACE AbstractWordWriter - replacing hyperlink [170993 - 171026] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:02,388 [main] TRACE AbstractWordWriter - replacing hyperlink [171088 - 171109] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:02,460 [main] TRACE AbstractWordWriter - replacing hyperlink [171164 - 171197] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:02,509 [main] TRACE AbstractWordWriter - replacing hyperlink [171254 - 171275] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:02,556 [main] TRACE AbstractWordWriter - replacing hyperlink [171330 - 171363] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:02,602 [main] TRACE AbstractWordWriter - replacing hyperlink [171427 - 171448] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:02,649 [main] TRACE AbstractWordWriter - replacing hyperlink [171503 - 171536] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:02,697 [main] TRACE AbstractWordWriter - replacing hyperlink [171600 - 171621] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:02,743 [main] TRACE AbstractWordWriter - replacing hyperlink [171676 - 171709] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:02,790 [main] TRACE AbstractWordWriter - replacing hyperlink [171775 - 171796] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:02,840 [main] TRACE AbstractWordWriter - replacing hyperlink [171851 - 171884] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:02,889 [main] TRACE AbstractWordWriter - replacing hyperlink [171954 - 171975] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:02,936 [main] TRACE AbstractWordWriter - replacing hyperlink [172030 - 172063] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:02,984 [main] TRACE AbstractWordWriter - replacing hyperlink [172126 - 172147] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:03,033 [main] TRACE AbstractWordWriter - replacing hyperlink [172202 - 172235] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:03,081 [main] TRACE AbstractWordWriter - replacing hyperlink [172305 - 172326] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:03,138 [main] TRACE AbstractWordWriter - replacing hyperlink [172381 - 172414] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:03,188 [main] TRACE AbstractWordWriter - replacing hyperlink [172747 - 172770] HYPERLINK EntityIndex, UML66... +2024-09-07 21:46:03,236 [main] TRACE AbstractWordWriter - replacing hyperlink [172824 - 172846] HYPERLINK TLSSession, UML91... +2024-09-07 21:46:03,284 [main] TRACE AbstractWordWriter - replacing hyperlink [172887 - 172904] HYPERLINK CntRs, UML67... +2024-09-07 21:46:03,334 [main] TRACE AbstractWordWriter - replacing hyperlink [172955 - 172977] HYPERLINK TLSSession, UML91... +2024-09-07 21:46:03,382 [main] TRACE AbstractWordWriter - replacing hyperlink [173023 - 173046] HYPERLINK InetAddress, UML65... +2024-09-07 21:46:03,429 [main] TRACE AbstractWordWriter - replacing hyperlink [173103 - 173125] HYPERLINK TLSSession, UML91... +2024-09-07 21:46:03,478 [main] TRACE AbstractWordWriter - replacing hyperlink [173175 - 173202] HYPERLINK InetAddressType, UML64... +2024-09-07 21:46:03,528 [main] TRACE AbstractWordWriter - replacing hyperlink [173263 - 173285] HYPERLINK TLSSession, UML91... +2024-09-07 21:46:03,575 [main] TRACE AbstractWordWriter - replacing hyperlink [173331 - 173354] HYPERLINK InetAddress, UML65... +2024-09-07 21:46:03,622 [main] TRACE AbstractWordWriter - replacing hyperlink [173411 - 173433] HYPERLINK TLSSession, UML91... +2024-09-07 21:46:03,669 [main] TRACE AbstractWordWriter - replacing hyperlink [173483 - 173510] HYPERLINK InetAddressType, UML64... +2024-09-07 21:46:03,717 [main] TRACE AbstractWordWriter - replacing hyperlink [173571 - 173593] HYPERLINK TLSSession, UML91... +2024-09-07 21:46:03,766 [main] TRACE AbstractWordWriter - replacing hyperlink [173642 - 173666] HYPERLINK BooleanValue, UML52... +2024-09-07 21:46:03,815 [main] TRACE AbstractWordWriter - replacing hyperlink [173724 - 173754] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:03,863 [main] TRACE AbstractWordWriter - replacing hyperlink [173815 - 173834] HYPERLINK Integer, UML53... +2024-09-07 21:46:03,912 [main] TRACE AbstractWordWriter - replacing hyperlink [173887 - 173917] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:03,959 [main] TRACE AbstractWordWriter - replacing hyperlink [173973 - 173993] HYPERLINK Floating, UML56... +2024-09-07 21:46:04,005 [main] TRACE AbstractWordWriter - replacing hyperlink [174050 - 174080] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:04,054 [main] TRACE AbstractWordWriter - replacing hyperlink [174134 - 174154] HYPERLINK Floating, UML56... +2024-09-07 21:46:04,103 [main] TRACE AbstractWordWriter - replacing hyperlink [174211 - 174241] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:04,156 [main] TRACE AbstractWordWriter - replacing hyperlink [174305 - 174325] HYPERLINK Floating, UML56... +2024-09-07 21:46:04,212 [main] TRACE AbstractWordWriter - replacing hyperlink [174382 - 174412] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:04,262 [main] TRACE AbstractWordWriter - replacing hyperlink [174473 - 174493] HYPERLINK Floating, UML56... +2024-09-07 21:46:04,311 [main] TRACE AbstractWordWriter - replacing hyperlink [174550 - 174580] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:04,360 [main] TRACE AbstractWordWriter - replacing hyperlink [174636 - 174656] HYPERLINK Floating, UML56... +2024-09-07 21:46:04,408 [main] TRACE AbstractWordWriter - replacing hyperlink [174713 - 174743] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:04,456 [main] TRACE AbstractWordWriter - replacing hyperlink [174803 - 174823] HYPERLINK Floating, UML56... +2024-09-07 21:46:04,503 [main] TRACE AbstractWordWriter - replacing hyperlink [174880 - 174910] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:04,552 [main] TRACE AbstractWordWriter - replacing hyperlink [174969 - 174990] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:04,601 [main] TRACE AbstractWordWriter - replacing hyperlink [175045 - 175078] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:04,650 [main] TRACE AbstractWordWriter - replacing hyperlink [175147 - 175168] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:04,698 [main] TRACE AbstractWordWriter - replacing hyperlink [175223 - 175256] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:04,746 [main] TRACE AbstractWordWriter - replacing hyperlink [175325 - 175346] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:04,794 [main] TRACE AbstractWordWriter - replacing hyperlink [175401 - 175434] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:04,843 [main] TRACE AbstractWordWriter - replacing hyperlink [175496 - 175517] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:04,891 [main] TRACE AbstractWordWriter - replacing hyperlink [175572 - 175605] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:04,938 [main] TRACE AbstractWordWriter - replacing hyperlink [175670 - 175691] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:04,986 [main] TRACE AbstractWordWriter - replacing hyperlink [175746 - 175779] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:05,033 [main] TRACE AbstractWordWriter - replacing hyperlink [175841 - 175862] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:05,080 [main] TRACE AbstractWordWriter - replacing hyperlink [175917 - 175950] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:05,128 [main] TRACE AbstractWordWriter - replacing hyperlink [176021 - 176042] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:05,175 [main] TRACE AbstractWordWriter - replacing hyperlink [176097 - 176130] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:05,226 [main] TRACE AbstractWordWriter - replacing hyperlink [176194 - 176215] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:05,273 [main] TRACE AbstractWordWriter - replacing hyperlink [176270 - 176303] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:05,319 [main] TRACE AbstractWordWriter - replacing hyperlink [176361 - 176382] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:05,366 [main] TRACE AbstractWordWriter - replacing hyperlink [176437 - 176470] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:05,414 [main] TRACE AbstractWordWriter - replacing hyperlink [176529 - 176550] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:05,461 [main] TRACE AbstractWordWriter - replacing hyperlink [176605 - 176638] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:05,508 [main] TRACE AbstractWordWriter - replacing hyperlink [176701 - 176722] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:05,559 [main] TRACE AbstractWordWriter - replacing hyperlink [176777 - 176810] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:05,607 [main] TRACE AbstractWordWriter - replacing hyperlink [176879 - 176900] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:05,655 [main] TRACE AbstractWordWriter - replacing hyperlink [176955 - 176988] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:05,704 [main] TRACE AbstractWordWriter - replacing hyperlink [177051 - 177072] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:05,750 [main] TRACE AbstractWordWriter - replacing hyperlink [177127 - 177160] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:05,798 [main] TRACE AbstractWordWriter - replacing hyperlink [177220 - 177241] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:05,848 [main] TRACE AbstractWordWriter - replacing hyperlink [177296 - 177329] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:05,895 [main] TRACE AbstractWordWriter - replacing hyperlink [177392 - 177413] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:05,943 [main] TRACE AbstractWordWriter - replacing hyperlink [177468 - 177501] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:05,991 [main] TRACE AbstractWordWriter - replacing hyperlink [177568 - 177589] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:06,038 [main] TRACE AbstractWordWriter - replacing hyperlink [177644 - 177677] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:06,087 [main] TRACE AbstractWordWriter - replacing hyperlink [177740 - 177761] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:06,135 [main] TRACE AbstractWordWriter - replacing hyperlink [177816 - 177849] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:06,183 [main] TRACE AbstractWordWriter - replacing hyperlink [177913 - 177934] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:06,232 [main] TRACE AbstractWordWriter - replacing hyperlink [177989 - 178022] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:06,290 [main] TRACE AbstractWordWriter - replacing hyperlink [178081 - 178102] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:06,341 [main] TRACE AbstractWordWriter - replacing hyperlink [178157 - 178190] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:06,388 [main] TRACE AbstractWordWriter - replacing hyperlink [178251 - 178272] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:06,435 [main] TRACE AbstractWordWriter - replacing hyperlink [178327 - 178360] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:06,483 [main] TRACE AbstractWordWriter - replacing hyperlink [178420 - 178441] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:06,532 [main] TRACE AbstractWordWriter - replacing hyperlink [178496 - 178529] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:06,581 [main] TRACE AbstractWordWriter - replacing hyperlink [178594 - 178615] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:06,630 [main] TRACE AbstractWordWriter - replacing hyperlink [178670 - 178703] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:06,680 [main] TRACE AbstractWordWriter - replacing hyperlink [178778 - 178799] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:06,728 [main] TRACE AbstractWordWriter - replacing hyperlink [178854 - 178887] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:06,776 [main] TRACE AbstractWordWriter - replacing hyperlink [178950 - 178971] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:06,827 [main] TRACE AbstractWordWriter - replacing hyperlink [179026 - 179059] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:06,875 [main] TRACE AbstractWordWriter - replacing hyperlink [179122 - 179143] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:06,924 [main] TRACE AbstractWordWriter - replacing hyperlink [179198 - 179231] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:06,975 [main] TRACE AbstractWordWriter - replacing hyperlink [179300 - 179321] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:07,023 [main] TRACE AbstractWordWriter - replacing hyperlink [179376 - 179409] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:07,071 [main] TRACE AbstractWordWriter - replacing hyperlink [179475 - 179496] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:07,121 [main] TRACE AbstractWordWriter - replacing hyperlink [179551 - 179584] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:07,168 [main] TRACE AbstractWordWriter - replacing hyperlink [179646 - 179667] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:07,218 [main] TRACE AbstractWordWriter - replacing hyperlink [179722 - 179755] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:07,264 [main] TRACE AbstractWordWriter - replacing hyperlink [179812 - 179833] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:07,312 [main] TRACE AbstractWordWriter - replacing hyperlink [179888 - 179921] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:07,368 [main] TRACE AbstractWordWriter - replacing hyperlink [179985 - 180006] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:07,418 [main] TRACE AbstractWordWriter - replacing hyperlink [180061 - 180094] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:07,466 [main] TRACE AbstractWordWriter - replacing hyperlink [180158 - 180179] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:07,514 [main] TRACE AbstractWordWriter - replacing hyperlink [180234 - 180267] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:07,562 [main] TRACE AbstractWordWriter - replacing hyperlink [180333 - 180354] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:07,611 [main] TRACE AbstractWordWriter - replacing hyperlink [180409 - 180442] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:07,662 [main] TRACE AbstractWordWriter - replacing hyperlink [180512 - 180533] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:07,712 [main] TRACE AbstractWordWriter - replacing hyperlink [180588 - 180621] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:07,761 [main] TRACE AbstractWordWriter - replacing hyperlink [180684 - 180705] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:07,810 [main] TRACE AbstractWordWriter - replacing hyperlink [180760 - 180793] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:07,859 [main] TRACE AbstractWordWriter - replacing hyperlink [180863 - 180884] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:07,908 [main] TRACE AbstractWordWriter - replacing hyperlink [180939 - 180972] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:46:07,964 [main] TRACE AbstractWordWriter - replacing hyperlink [183090 - 183111] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:08,013 [main] TRACE AbstractWordWriter - replacing hyperlink [183219 - 183240] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:08,061 [main] TRACE AbstractWordWriter - replacing hyperlink [183377 - 183398] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:08,109 [main] TRACE AbstractWordWriter - replacing hyperlink [183501 - 183522] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:08,160 [main] TRACE AbstractWordWriter - replacing hyperlink [183648 - 183669] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:08,209 [main] TRACE AbstractWordWriter - replacing hyperlink [183774 - 183795] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:08,257 [main] TRACE AbstractWordWriter - replacing hyperlink [183900 - 183921] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:08,307 [main] TRACE AbstractWordWriter - replacing hyperlink [184026 - 184047] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:08,357 [main] TRACE AbstractWordWriter - replacing hyperlink [184146 - 184167] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:08,411 [main] TRACE AbstractWordWriter - replacing hyperlink [184264 - 184285] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:08,467 [main] TRACE AbstractWordWriter - replacing hyperlink [184410 - 184430] HYPERLINK Floating, UML56... +2024-09-07 21:46:08,515 [main] TRACE AbstractWordWriter - replacing hyperlink [184520 - 184541] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:08,566 [main] TRACE AbstractWordWriter - replacing hyperlink [184656 - 184677] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:08,614 [main] TRACE AbstractWordWriter - replacing hyperlink [184759 - 184780] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:08,660 [main] TRACE AbstractWordWriter - replacing hyperlink [184907 - 184927] HYPERLINK Floating, UML56... +2024-09-07 21:46:08,709 [main] TRACE AbstractWordWriter - replacing hyperlink [185004 - 185025] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:08,758 [main] TRACE AbstractWordWriter - replacing hyperlink [185121 - 185142] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:08,806 [main] TRACE AbstractWordWriter - replacing hyperlink [185318 - 185344] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:46:08,855 [main] TRACE AbstractWordWriter - replacing hyperlink [185500 - 185521] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:08,906 [main] TRACE AbstractWordWriter - replacing hyperlink [185659 - 185680] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:08,955 [main] TRACE AbstractWordWriter - replacing hyperlink [185774 - 185795] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:09,001 [main] TRACE AbstractWordWriter - replacing hyperlink [185911 - 185932] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:09,050 [main] TRACE AbstractWordWriter - replacing hyperlink [186043 - 186064] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:09,099 [main] TRACE AbstractWordWriter - replacing hyperlink [186179 - 186200] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:09,147 [main] TRACE AbstractWordWriter - replacing hyperlink [186362 - 186383] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:09,195 [main] TRACE AbstractWordWriter - replacing hyperlink [186487 - 186508] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:09,243 [main] TRACE AbstractWordWriter - replacing hyperlink [186626 - 186647] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:09,291 [main] TRACE AbstractWordWriter - replacing hyperlink [186735 - 186756] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:09,338 [main] TRACE AbstractWordWriter - replacing hyperlink [186874 - 186895] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:09,388 [main] TRACE AbstractWordWriter - replacing hyperlink [187055 - 187076] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:09,435 [main] TRACE AbstractWordWriter - replacing hyperlink [187637 - 187660] HYPERLINK EntityIndex, UML66... +2024-09-07 21:46:09,493 [main] TRACE AbstractWordWriter - replacing hyperlink [187733 - 187750] HYPERLINK CntRs, UML67... +2024-09-07 21:46:09,548 [main] TRACE AbstractWordWriter - replacing hyperlink [187834 - 187857] HYPERLINK InetAddress, UML65... +2024-09-07 21:46:09,596 [main] TRACE AbstractWordWriter - replacing hyperlink [187934 - 187961] HYPERLINK InetAddressType, UML64... +2024-09-07 21:46:09,644 [main] TRACE AbstractWordWriter - replacing hyperlink [188039 - 188061] HYPERLINK ProtIdType, UML74... +2024-09-07 21:46:09,692 [main] TRACE AbstractWordWriter - replacing hyperlink [188140 - 188162] HYPERLINK CharString, UML59... +2024-09-07 21:46:09,740 [main] TRACE AbstractWordWriter - replacing hyperlink [188273 - 188295] HYPERLINK CharString, UML59... +2024-09-07 21:46:09,791 [main] TRACE AbstractWordWriter - replacing hyperlink [188428 - 188451] HYPERLINK InetAddress, UML65... +2024-09-07 21:46:09,840 [main] TRACE AbstractWordWriter - replacing hyperlink [188529 - 188556] HYPERLINK InetAddressType, UML64... +2024-09-07 21:46:09,888 [main] TRACE AbstractWordWriter - replacing hyperlink [188639 - 188660] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:09,938 [main] TRACE AbstractWordWriter - replacing hyperlink [188756 - 188775] HYPERLINK LnkType, UML78... +2024-09-07 21:46:09,986 [main] TRACE AbstractWordWriter - replacing hyperlink [188864 - 188885] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:10,034 [main] TRACE AbstractWordWriter - replacing hyperlink [188940 - 188975] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:10,083 [main] TRACE AbstractWordWriter - replacing hyperlink [189039 - 189060] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:10,133 [main] TRACE AbstractWordWriter - replacing hyperlink [189115 - 189150] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:10,183 [main] TRACE AbstractWordWriter - replacing hyperlink [189213 - 189234] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:10,232 [main] TRACE AbstractWordWriter - replacing hyperlink [189289 - 189324] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:10,279 [main] TRACE AbstractWordWriter - replacing hyperlink [189380 - 189401] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:10,328 [main] TRACE AbstractWordWriter - replacing hyperlink [189456 - 189491] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:10,376 [main] TRACE AbstractWordWriter - replacing hyperlink [189547 - 189568] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:10,425 [main] TRACE AbstractWordWriter - replacing hyperlink [189623 - 189658] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:10,474 [main] TRACE AbstractWordWriter - replacing hyperlink [189714 - 189735] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:10,527 [main] TRACE AbstractWordWriter - replacing hyperlink [189790 - 189825] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:10,583 [main] TRACE AbstractWordWriter - replacing hyperlink [189881 - 189902] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:10,633 [main] TRACE AbstractWordWriter - replacing hyperlink [189957 - 189992] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:10,681 [main] TRACE AbstractWordWriter - replacing hyperlink [190047 - 190068] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:10,731 [main] TRACE AbstractWordWriter - replacing hyperlink [190123 - 190158] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:10,779 [main] TRACE AbstractWordWriter - replacing hyperlink [190215 - 190236] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:10,829 [main] TRACE AbstractWordWriter - replacing hyperlink [190291 - 190326] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:10,878 [main] TRACE AbstractWordWriter - replacing hyperlink [190382 - 190403] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:10,926 [main] TRACE AbstractWordWriter - replacing hyperlink [190458 - 190493] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:10,974 [main] TRACE AbstractWordWriter - replacing hyperlink [190554 - 190574] HYPERLINK Floating, UML56... +2024-09-07 21:46:11,021 [main] TRACE AbstractWordWriter - replacing hyperlink [190628 - 190663] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:11,070 [main] TRACE AbstractWordWriter - replacing hyperlink [190721 - 190742] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:11,159 [main] TRACE AbstractWordWriter - replacing hyperlink [190797 - 190832] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:11,207 [main] TRACE AbstractWordWriter - replacing hyperlink [190887 - 190908] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:11,269 [main] TRACE AbstractWordWriter - replacing hyperlink [190963 - 190998] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:11,317 [main] TRACE AbstractWordWriter - replacing hyperlink [191052 - 191073] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:11,367 [main] TRACE AbstractWordWriter - replacing hyperlink [191128 - 191163] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:11,418 [main] TRACE AbstractWordWriter - replacing hyperlink [191218 - 191238] HYPERLINK Floating, UML56... +2024-09-07 21:46:11,467 [main] TRACE AbstractWordWriter - replacing hyperlink [191292 - 191327] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:11,521 [main] TRACE AbstractWordWriter - replacing hyperlink [191387 - 191408] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:11,574 [main] TRACE AbstractWordWriter - replacing hyperlink [191463 - 191498] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:11,630 [main] TRACE AbstractWordWriter - replacing hyperlink [191557 - 191578] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:11,684 [main] TRACE AbstractWordWriter - replacing hyperlink [191633 - 191668] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:11,733 [main] TRACE AbstractWordWriter - replacing hyperlink [191733 - 191759] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:46:11,782 [main] TRACE AbstractWordWriter - replacing hyperlink [191819 - 191854] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:11,831 [main] TRACE AbstractWordWriter - replacing hyperlink [191914 - 191935] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:11,881 [main] TRACE AbstractWordWriter - replacing hyperlink [191990 - 192025] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:11,930 [main] TRACE AbstractWordWriter - replacing hyperlink [192080 - 192101] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:11,980 [main] TRACE AbstractWordWriter - replacing hyperlink [192156 - 192191] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:12,028 [main] TRACE AbstractWordWriter - replacing hyperlink [192250 - 192271] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:12,080 [main] TRACE AbstractWordWriter - replacing hyperlink [192326 - 192361] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:12,134 [main] TRACE AbstractWordWriter - replacing hyperlink [192415 - 192436] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:12,184 [main] TRACE AbstractWordWriter - replacing hyperlink [192491 - 192526] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:12,236 [main] TRACE AbstractWordWriter - replacing hyperlink [192589 - 192610] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:12,285 [main] TRACE AbstractWordWriter - replacing hyperlink [192665 - 192700] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:12,334 [main] TRACE AbstractWordWriter - replacing hyperlink [192765 - 192786] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:12,384 [main] TRACE AbstractWordWriter - replacing hyperlink [192841 - 192876] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:12,442 [main] TRACE AbstractWordWriter - replacing hyperlink [192939 - 192960] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:12,492 [main] TRACE AbstractWordWriter - replacing hyperlink [193015 - 193050] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:12,545 [main] TRACE AbstractWordWriter - replacing hyperlink [193109 - 193130] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:12,597 [main] TRACE AbstractWordWriter - replacing hyperlink [193185 - 193220] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:12,648 [main] TRACE AbstractWordWriter - replacing hyperlink [193274 - 193295] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:12,705 [main] TRACE AbstractWordWriter - replacing hyperlink [193350 - 193385] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:12,755 [main] TRACE AbstractWordWriter - replacing hyperlink [193448 - 193469] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:12,805 [main] TRACE AbstractWordWriter - replacing hyperlink [193524 - 193559] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:12,855 [main] TRACE AbstractWordWriter - replacing hyperlink [193624 - 193645] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:12,906 [main] TRACE AbstractWordWriter - replacing hyperlink [193700 - 193735] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:12,957 [main] TRACE AbstractWordWriter - replacing hyperlink [193796 - 193817] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:13,006 [main] TRACE AbstractWordWriter - replacing hyperlink [193872 - 193907] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:13,054 [main] TRACE AbstractWordWriter - replacing hyperlink [193969 - 193993] HYPERLINK BooleanValue, UML52... +2024-09-07 21:46:13,104 [main] TRACE AbstractWordWriter - replacing hyperlink [194051 - 194081] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:13,154 [main] TRACE AbstractWordWriter - replacing hyperlink [194142 - 194161] HYPERLINK Integer, UML53... +2024-09-07 21:46:13,202 [main] TRACE AbstractWordWriter - replacing hyperlink [194214 - 194244] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:13,251 [main] TRACE AbstractWordWriter - replacing hyperlink [194300 - 194320] HYPERLINK Floating, UML56... +2024-09-07 21:46:13,302 [main] TRACE AbstractWordWriter - replacing hyperlink [194377 - 194407] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:13,352 [main] TRACE AbstractWordWriter - replacing hyperlink [194461 - 194481] HYPERLINK Floating, UML56... +2024-09-07 21:46:13,401 [main] TRACE AbstractWordWriter - replacing hyperlink [194538 - 194568] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:13,452 [main] TRACE AbstractWordWriter - replacing hyperlink [194632 - 194652] HYPERLINK Floating, UML56... +2024-09-07 21:46:13,499 [main] TRACE AbstractWordWriter - replacing hyperlink [194709 - 194739] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:13,549 [main] TRACE AbstractWordWriter - replacing hyperlink [194800 - 194820] HYPERLINK Floating, UML56... +2024-09-07 21:46:13,598 [main] TRACE AbstractWordWriter - replacing hyperlink [194877 - 194907] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:13,648 [main] TRACE AbstractWordWriter - replacing hyperlink [194963 - 194983] HYPERLINK Floating, UML56... +2024-09-07 21:46:13,697 [main] TRACE AbstractWordWriter - replacing hyperlink [195040 - 195070] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:13,753 [main] TRACE AbstractWordWriter - replacing hyperlink [195130 - 195150] HYPERLINK Floating, UML56... +2024-09-07 21:46:13,802 [main] TRACE AbstractWordWriter - replacing hyperlink [195207 - 195237] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:13,851 [main] TRACE AbstractWordWriter - replacing hyperlink [195656 - 195673] HYPERLINK CntRs, UML67... +2024-09-07 21:46:13,900 [main] TRACE AbstractWordWriter - replacing hyperlink [195756 - 195777] HYPERLINK EventType, UML72... +2024-09-07 21:46:13,948 [main] TRACE AbstractWordWriter - replacing hyperlink [195893 - 195922] HYPERLINK MasterAssociation, UML96... +2024-09-07 21:46:13,996 [main] TRACE AbstractWordWriter - replacing hyperlink [196020 - 196053] HYPERLINK OutstationAssociation, UML97... +2024-09-07 21:46:14,046 [main] TRACE AbstractWordWriter - replacing hyperlink [196165 - 196209] HYPERLINK 60870andDNPSecurityNotification, UML108... +2024-09-07 21:46:14,094 [main] TRACE AbstractWordWriter - replacing hyperlink [196326 - 196362] HYPERLINK 60870andDNPNotification, UML109... +2024-09-07 21:46:14,143 [main] TRACE AbstractWordWriter - replacing hyperlink [196462 - 196483] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:14,192 [main] TRACE AbstractWordWriter - replacing hyperlink [196538 - 196573] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:14,241 [main] TRACE AbstractWordWriter - replacing hyperlink [196637 - 196658] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:14,291 [main] TRACE AbstractWordWriter - replacing hyperlink [196713 - 196748] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:14,339 [main] TRACE AbstractWordWriter - replacing hyperlink [196811 - 196832] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:14,388 [main] TRACE AbstractWordWriter - replacing hyperlink [196887 - 196922] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:14,437 [main] TRACE AbstractWordWriter - replacing hyperlink [196978 - 196999] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:14,488 [main] TRACE AbstractWordWriter - replacing hyperlink [197054 - 197089] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:14,537 [main] TRACE AbstractWordWriter - replacing hyperlink [197145 - 197166] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:14,587 [main] TRACE AbstractWordWriter - replacing hyperlink [197221 - 197256] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:14,635 [main] TRACE AbstractWordWriter - replacing hyperlink [197312 - 197333] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:14,683 [main] TRACE AbstractWordWriter - replacing hyperlink [197388 - 197423] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:14,735 [main] TRACE AbstractWordWriter - replacing hyperlink [197479 - 197500] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:14,789 [main] TRACE AbstractWordWriter - replacing hyperlink [197555 - 197590] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:14,843 [main] TRACE AbstractWordWriter - replacing hyperlink [197645 - 197666] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:14,893 [main] TRACE AbstractWordWriter - replacing hyperlink [197721 - 197756] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:14,943 [main] TRACE AbstractWordWriter - replacing hyperlink [197813 - 197834] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:14,992 [main] TRACE AbstractWordWriter - replacing hyperlink [197889 - 197924] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:15,042 [main] TRACE AbstractWordWriter - replacing hyperlink [197980 - 198001] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:15,092 [main] TRACE AbstractWordWriter - replacing hyperlink [198056 - 198091] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:15,140 [main] TRACE AbstractWordWriter - replacing hyperlink [198152 - 198172] HYPERLINK Floating, UML56... +2024-09-07 21:46:15,189 [main] TRACE AbstractWordWriter - replacing hyperlink [198226 - 198261] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:15,237 [main] TRACE AbstractWordWriter - replacing hyperlink [198319 - 198340] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:15,287 [main] TRACE AbstractWordWriter - replacing hyperlink [198395 - 198430] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:15,336 [main] TRACE AbstractWordWriter - replacing hyperlink [198485 - 198506] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:15,386 [main] TRACE AbstractWordWriter - replacing hyperlink [198561 - 198596] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:15,435 [main] TRACE AbstractWordWriter - replacing hyperlink [198650 - 198671] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:15,484 [main] TRACE AbstractWordWriter - replacing hyperlink [198726 - 198761] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:15,533 [main] TRACE AbstractWordWriter - replacing hyperlink [198816 - 198836] HYPERLINK Floating, UML56... +2024-09-07 21:46:15,585 [main] TRACE AbstractWordWriter - replacing hyperlink [198890 - 198925] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:15,636 [main] TRACE AbstractWordWriter - replacing hyperlink [198985 - 199006] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:15,686 [main] TRACE AbstractWordWriter - replacing hyperlink [199061 - 199096] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:15,741 [main] TRACE AbstractWordWriter - replacing hyperlink [199155 - 199176] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:15,791 [main] TRACE AbstractWordWriter - replacing hyperlink [199231 - 199266] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:15,844 [main] TRACE AbstractWordWriter - replacing hyperlink [199331 - 199357] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:46:15,901 [main] TRACE AbstractWordWriter - replacing hyperlink [199417 - 199452] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:15,949 [main] TRACE AbstractWordWriter - replacing hyperlink [199512 - 199533] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:15,998 [main] TRACE AbstractWordWriter - replacing hyperlink [199588 - 199623] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:16,047 [main] TRACE AbstractWordWriter - replacing hyperlink [199678 - 199699] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:16,097 [main] TRACE AbstractWordWriter - replacing hyperlink [199754 - 199789] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:16,147 [main] TRACE AbstractWordWriter - replacing hyperlink [199848 - 199869] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:16,196 [main] TRACE AbstractWordWriter - replacing hyperlink [199924 - 199959] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:16,245 [main] TRACE AbstractWordWriter - replacing hyperlink [200013 - 200034] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:16,295 [main] TRACE AbstractWordWriter - replacing hyperlink [200089 - 200124] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:16,380 [main] TRACE AbstractWordWriter - replacing hyperlink [200187 - 200208] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:16,430 [main] TRACE AbstractWordWriter - replacing hyperlink [200263 - 200298] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:16,479 [main] TRACE AbstractWordWriter - replacing hyperlink [200363 - 200384] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:16,529 [main] TRACE AbstractWordWriter - replacing hyperlink [200439 - 200474] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:16,576 [main] TRACE AbstractWordWriter - replacing hyperlink [200537 - 200558] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:16,628 [main] TRACE AbstractWordWriter - replacing hyperlink [200613 - 200648] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:16,683 [main] TRACE AbstractWordWriter - replacing hyperlink [200707 - 200728] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:16,733 [main] TRACE AbstractWordWriter - replacing hyperlink [200783 - 200818] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:16,783 [main] TRACE AbstractWordWriter - replacing hyperlink [200872 - 200893] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:16,832 [main] TRACE AbstractWordWriter - replacing hyperlink [200948 - 200983] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:16,881 [main] TRACE AbstractWordWriter - replacing hyperlink [201046 - 201067] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:16,943 [main] TRACE AbstractWordWriter - replacing hyperlink [201122 - 201157] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:16,991 [main] TRACE AbstractWordWriter - replacing hyperlink [201222 - 201243] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:17,041 [main] TRACE AbstractWordWriter - replacing hyperlink [201298 - 201333] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:17,090 [main] TRACE AbstractWordWriter - replacing hyperlink [201394 - 201415] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:17,138 [main] TRACE AbstractWordWriter - replacing hyperlink [201470 - 201505] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:17,188 [main] TRACE AbstractWordWriter - replacing hyperlink [201990 - 202011] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:17,239 [main] TRACE AbstractWordWriter - replacing hyperlink [202119 - 202140] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:17,288 [main] TRACE AbstractWordWriter - replacing hyperlink [202277 - 202298] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:17,338 [main] TRACE AbstractWordWriter - replacing hyperlink [202403 - 202424] HYPERLINK EventType, UML72... +2024-09-07 21:46:17,387 [main] TRACE AbstractWordWriter - replacing hyperlink [202544 - 202565] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:17,438 [main] TRACE AbstractWordWriter - replacing hyperlink [202736 - 202757] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:17,487 [main] TRACE AbstractWordWriter - replacing hyperlink [202903 - 202924] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:17,538 [main] TRACE AbstractWordWriter - replacing hyperlink [203030 - 203051] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:17,589 [main] TRACE AbstractWordWriter - replacing hyperlink [203544 - 203565] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:17,638 [main] TRACE AbstractWordWriter - replacing hyperlink [203662 - 203683] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:17,686 [main] TRACE AbstractWordWriter - replacing hyperlink [203801 - 203822] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:17,735 [main] TRACE AbstractWordWriter - replacing hyperlink [203948 - 203969] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:17,784 [main] TRACE AbstractWordWriter - replacing hyperlink [204045 - 204066] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:17,833 [main] TRACE AbstractWordWriter - replacing hyperlink [204465 - 204488] HYPERLINK EntityIndex, UML66... +2024-09-07 21:46:17,881 [main] TRACE AbstractWordWriter - replacing hyperlink [204542 - 204565] HYPERLINK Association, UML95... +2024-09-07 21:46:17,931 [main] TRACE AbstractWordWriter - replacing hyperlink [204607 - 204624] HYPERLINK CntRs, UML67... +2024-09-07 21:46:17,984 [main] TRACE AbstractWordWriter - replacing hyperlink [204675 - 204698] HYPERLINK Association, UML95... +2024-09-07 21:46:18,035 [main] TRACE AbstractWordWriter - replacing hyperlink [204745 - 204768] HYPERLINK InetAddress, UML65... +2024-09-07 21:46:18,084 [main] TRACE AbstractWordWriter - replacing hyperlink [204825 - 204848] HYPERLINK Association, UML95... +2024-09-07 21:46:18,132 [main] TRACE AbstractWordWriter - replacing hyperlink [204899 - 204926] HYPERLINK InetAddressType, UML64... +2024-09-07 21:46:18,180 [main] TRACE AbstractWordWriter - replacing hyperlink [204987 - 205010] HYPERLINK Association, UML95... +2024-09-07 21:46:18,229 [main] TRACE AbstractWordWriter - replacing hyperlink [205053 - 205075] HYPERLINK ProtIdType, UML74... +2024-09-07 21:46:18,278 [main] TRACE AbstractWordWriter - replacing hyperlink [205131 - 205154] HYPERLINK Association, UML95... +2024-09-07 21:46:18,326 [main] TRACE AbstractWordWriter - replacing hyperlink [205203 - 205225] HYPERLINK CharString, UML59... +2024-09-07 21:46:18,378 [main] TRACE AbstractWordWriter - replacing hyperlink [205281 - 205304] HYPERLINK Association, UML95... +2024-09-07 21:46:18,427 [main] TRACE AbstractWordWriter - replacing hyperlink [205353 - 205375] HYPERLINK CharString, UML59... +2024-09-07 21:46:18,477 [main] TRACE AbstractWordWriter - replacing hyperlink [205431 - 205454] HYPERLINK Association, UML95... +2024-09-07 21:46:18,526 [main] TRACE AbstractWordWriter - replacing hyperlink [205501 - 205524] HYPERLINK InetAddress, UML65... +2024-09-07 21:46:18,575 [main] TRACE AbstractWordWriter - replacing hyperlink [205581 - 205604] HYPERLINK Association, UML95... +2024-09-07 21:46:18,625 [main] TRACE AbstractWordWriter - replacing hyperlink [205655 - 205682] HYPERLINK InetAddressType, UML64... +2024-09-07 21:46:18,677 [main] TRACE AbstractWordWriter - replacing hyperlink [205743 - 205766] HYPERLINK Association, UML95... +2024-09-07 21:46:18,727 [main] TRACE AbstractWordWriter - replacing hyperlink [205813 - 205834] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:18,777 [main] TRACE AbstractWordWriter - replacing hyperlink [205887 - 205910] HYPERLINK Association, UML95... +2024-09-07 21:46:18,827 [main] TRACE AbstractWordWriter - replacing hyperlink [205954 - 205973] HYPERLINK LnkType, UML78... +2024-09-07 21:46:18,878 [main] TRACE AbstractWordWriter - replacing hyperlink [206026 - 206049] HYPERLINK Association, UML95... +2024-09-07 21:46:18,926 [main] TRACE AbstractWordWriter - replacing hyperlink [206097 - 206118] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:18,976 [main] TRACE AbstractWordWriter - replacing hyperlink [206173 - 206208] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:19,028 [main] TRACE AbstractWordWriter - replacing hyperlink [206272 - 206293] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:19,083 [main] TRACE AbstractWordWriter - replacing hyperlink [206348 - 206383] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:19,133 [main] TRACE AbstractWordWriter - replacing hyperlink [206446 - 206467] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:19,184 [main] TRACE AbstractWordWriter - replacing hyperlink [206522 - 206557] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:19,235 [main] TRACE AbstractWordWriter - replacing hyperlink [206613 - 206634] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:19,284 [main] TRACE AbstractWordWriter - replacing hyperlink [206689 - 206724] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:19,333 [main] TRACE AbstractWordWriter - replacing hyperlink [206780 - 206801] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:19,383 [main] TRACE AbstractWordWriter - replacing hyperlink [206856 - 206891] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:19,434 [main] TRACE AbstractWordWriter - replacing hyperlink [206947 - 206968] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:19,483 [main] TRACE AbstractWordWriter - replacing hyperlink [207023 - 207058] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:19,532 [main] TRACE AbstractWordWriter - replacing hyperlink [207114 - 207135] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:19,585 [main] TRACE AbstractWordWriter - replacing hyperlink [207190 - 207225] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:19,633 [main] TRACE AbstractWordWriter - replacing hyperlink [207280 - 207301] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:19,682 [main] TRACE AbstractWordWriter - replacing hyperlink [207356 - 207391] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:19,730 [main] TRACE AbstractWordWriter - replacing hyperlink [207448 - 207469] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:19,779 [main] TRACE AbstractWordWriter - replacing hyperlink [207524 - 207559] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:19,828 [main] TRACE AbstractWordWriter - replacing hyperlink [207615 - 207636] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:19,877 [main] TRACE AbstractWordWriter - replacing hyperlink [207691 - 207726] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:19,925 [main] TRACE AbstractWordWriter - replacing hyperlink [207787 - 207807] HYPERLINK Floating, UML56... +2024-09-07 21:46:19,974 [main] TRACE AbstractWordWriter - replacing hyperlink [207861 - 207896] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:20,024 [main] TRACE AbstractWordWriter - replacing hyperlink [207954 - 207975] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:20,076 [main] TRACE AbstractWordWriter - replacing hyperlink [208030 - 208065] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:20,131 [main] TRACE AbstractWordWriter - replacing hyperlink [208120 - 208141] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:20,181 [main] TRACE AbstractWordWriter - replacing hyperlink [208196 - 208231] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:20,230 [main] TRACE AbstractWordWriter - replacing hyperlink [208285 - 208306] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:20,284 [main] TRACE AbstractWordWriter - replacing hyperlink [208361 - 208396] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:20,334 [main] TRACE AbstractWordWriter - replacing hyperlink [208451 - 208471] HYPERLINK Floating, UML56... +2024-09-07 21:46:20,383 [main] TRACE AbstractWordWriter - replacing hyperlink [208525 - 208560] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:20,432 [main] TRACE AbstractWordWriter - replacing hyperlink [208620 - 208641] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:20,483 [main] TRACE AbstractWordWriter - replacing hyperlink [208696 - 208731] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:20,532 [main] TRACE AbstractWordWriter - replacing hyperlink [208790 - 208811] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:20,584 [main] TRACE AbstractWordWriter - replacing hyperlink [208866 - 208901] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:20,634 [main] TRACE AbstractWordWriter - replacing hyperlink [208966 - 208992] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:46:20,684 [main] TRACE AbstractWordWriter - replacing hyperlink [209052 - 209087] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:20,733 [main] TRACE AbstractWordWriter - replacing hyperlink [209147 - 209168] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:20,781 [main] TRACE AbstractWordWriter - replacing hyperlink [209223 - 209258] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:20,830 [main] TRACE AbstractWordWriter - replacing hyperlink [209313 - 209334] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:20,879 [main] TRACE AbstractWordWriter - replacing hyperlink [209389 - 209424] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:20,929 [main] TRACE AbstractWordWriter - replacing hyperlink [209483 - 209504] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:20,979 [main] TRACE AbstractWordWriter - replacing hyperlink [209559 - 209594] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:21,030 [main] TRACE AbstractWordWriter - replacing hyperlink [209648 - 209669] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:21,081 [main] TRACE AbstractWordWriter - replacing hyperlink [209724 - 209759] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:21,131 [main] TRACE AbstractWordWriter - replacing hyperlink [209822 - 209843] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:21,190 [main] TRACE AbstractWordWriter - replacing hyperlink [209898 - 209933] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:21,240 [main] TRACE AbstractWordWriter - replacing hyperlink [209998 - 210019] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:21,289 [main] TRACE AbstractWordWriter - replacing hyperlink [210074 - 210109] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:21,339 [main] TRACE AbstractWordWriter - replacing hyperlink [210172 - 210193] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:21,391 [main] TRACE AbstractWordWriter - replacing hyperlink [210248 - 210283] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:21,443 [main] TRACE AbstractWordWriter - replacing hyperlink [210342 - 210363] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:21,494 [main] TRACE AbstractWordWriter - replacing hyperlink [210418 - 210453] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:21,546 [main] TRACE AbstractWordWriter - replacing hyperlink [210507 - 210528] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:21,599 [main] TRACE AbstractWordWriter - replacing hyperlink [210583 - 210618] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:21,652 [main] TRACE AbstractWordWriter - replacing hyperlink [210681 - 210702] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:21,701 [main] TRACE AbstractWordWriter - replacing hyperlink [210757 - 210792] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:21,750 [main] TRACE AbstractWordWriter - replacing hyperlink [210857 - 210878] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:21,801 [main] TRACE AbstractWordWriter - replacing hyperlink [210933 - 210968] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:21,852 [main] TRACE AbstractWordWriter - replacing hyperlink [211029 - 211050] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:21,901 [main] TRACE AbstractWordWriter - replacing hyperlink [211105 - 211140] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:21,952 [main] TRACE AbstractWordWriter - replacing hyperlink [211202 - 211226] HYPERLINK BooleanValue, UML52... +2024-09-07 21:46:22,001 [main] TRACE AbstractWordWriter - replacing hyperlink [211284 - 211314] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:22,051 [main] TRACE AbstractWordWriter - replacing hyperlink [211375 - 211394] HYPERLINK Integer, UML53... +2024-09-07 21:46:22,102 [main] TRACE AbstractWordWriter - replacing hyperlink [211447 - 211477] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:22,152 [main] TRACE AbstractWordWriter - replacing hyperlink [211533 - 211553] HYPERLINK Floating, UML56... +2024-09-07 21:46:22,201 [main] TRACE AbstractWordWriter - replacing hyperlink [211610 - 211640] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:22,258 [main] TRACE AbstractWordWriter - replacing hyperlink [211694 - 211714] HYPERLINK Floating, UML56... +2024-09-07 21:46:22,308 [main] TRACE AbstractWordWriter - replacing hyperlink [211771 - 211801] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:22,358 [main] TRACE AbstractWordWriter - replacing hyperlink [211865 - 211885] HYPERLINK Floating, UML56... +2024-09-07 21:46:22,408 [main] TRACE AbstractWordWriter - replacing hyperlink [211942 - 211972] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:22,458 [main] TRACE AbstractWordWriter - replacing hyperlink [212033 - 212053] HYPERLINK Floating, UML56... +2024-09-07 21:46:22,508 [main] TRACE AbstractWordWriter - replacing hyperlink [212110 - 212140] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:22,561 [main] TRACE AbstractWordWriter - replacing hyperlink [212196 - 212216] HYPERLINK Floating, UML56... +2024-09-07 21:46:22,613 [main] TRACE AbstractWordWriter - replacing hyperlink [212273 - 212303] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:22,662 [main] TRACE AbstractWordWriter - replacing hyperlink [212363 - 212383] HYPERLINK Floating, UML56... +2024-09-07 21:46:22,712 [main] TRACE AbstractWordWriter - replacing hyperlink [212440 - 212470] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:22,761 [main] TRACE AbstractWordWriter - replacing hyperlink [212859 - 212882] HYPERLINK EntityIndex, UML66... +2024-09-07 21:46:22,814 [main] TRACE AbstractWordWriter - replacing hyperlink [212936 - 212959] HYPERLINK Association, UML95... +2024-09-07 21:46:22,864 [main] TRACE AbstractWordWriter - replacing hyperlink [213001 - 213018] HYPERLINK CntRs, UML67... +2024-09-07 21:46:22,914 [main] TRACE AbstractWordWriter - replacing hyperlink [213069 - 213092] HYPERLINK Association, UML95... +2024-09-07 21:46:22,963 [main] TRACE AbstractWordWriter - replacing hyperlink [213139 - 213162] HYPERLINK InetAddress, UML65... +2024-09-07 21:46:23,011 [main] TRACE AbstractWordWriter - replacing hyperlink [213219 - 213242] HYPERLINK Association, UML95... +2024-09-07 21:46:23,060 [main] TRACE AbstractWordWriter - replacing hyperlink [213293 - 213320] HYPERLINK InetAddressType, UML64... +2024-09-07 21:46:23,113 [main] TRACE AbstractWordWriter - replacing hyperlink [213381 - 213404] HYPERLINK Association, UML95... +2024-09-07 21:46:23,163 [main] TRACE AbstractWordWriter - replacing hyperlink [213447 - 213469] HYPERLINK ProtIdType, UML74... +2024-09-07 21:46:23,212 [main] TRACE AbstractWordWriter - replacing hyperlink [213525 - 213548] HYPERLINK Association, UML95... +2024-09-07 21:46:23,260 [main] TRACE AbstractWordWriter - replacing hyperlink [213597 - 213619] HYPERLINK CharString, UML59... +2024-09-07 21:46:23,318 [main] TRACE AbstractWordWriter - replacing hyperlink [213675 - 213698] HYPERLINK Association, UML95... +2024-09-07 21:46:23,370 [main] TRACE AbstractWordWriter - replacing hyperlink [213747 - 213769] HYPERLINK CharString, UML59... +2024-09-07 21:46:23,420 [main] TRACE AbstractWordWriter - replacing hyperlink [213825 - 213848] HYPERLINK Association, UML95... +2024-09-07 21:46:23,472 [main] TRACE AbstractWordWriter - replacing hyperlink [213895 - 213918] HYPERLINK InetAddress, UML65... +2024-09-07 21:46:23,524 [main] TRACE AbstractWordWriter - replacing hyperlink [213975 - 213998] HYPERLINK Association, UML95... +2024-09-07 21:46:23,574 [main] TRACE AbstractWordWriter - replacing hyperlink [214049 - 214076] HYPERLINK InetAddressType, UML64... +2024-09-07 21:46:23,629 [main] TRACE AbstractWordWriter - replacing hyperlink [214137 - 214160] HYPERLINK Association, UML95... +2024-09-07 21:46:23,679 [main] TRACE AbstractWordWriter - replacing hyperlink [214207 - 214228] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:23,728 [main] TRACE AbstractWordWriter - replacing hyperlink [214281 - 214304] HYPERLINK Association, UML95... +2024-09-07 21:46:23,778 [main] TRACE AbstractWordWriter - replacing hyperlink [214348 - 214367] HYPERLINK LnkType, UML78... +2024-09-07 21:46:23,829 [main] TRACE AbstractWordWriter - replacing hyperlink [214420 - 214443] HYPERLINK Association, UML95... +2024-09-07 21:46:23,878 [main] TRACE AbstractWordWriter - replacing hyperlink [214491 - 214512] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:23,927 [main] TRACE AbstractWordWriter - replacing hyperlink [214567 - 214602] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:23,976 [main] TRACE AbstractWordWriter - replacing hyperlink [214666 - 214687] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:24,027 [main] TRACE AbstractWordWriter - replacing hyperlink [214742 - 214777] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:24,077 [main] TRACE AbstractWordWriter - replacing hyperlink [214840 - 214861] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:24,130 [main] TRACE AbstractWordWriter - replacing hyperlink [214916 - 214951] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:24,186 [main] TRACE AbstractWordWriter - replacing hyperlink [215007 - 215028] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:24,237 [main] TRACE AbstractWordWriter - replacing hyperlink [215083 - 215118] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:24,288 [main] TRACE AbstractWordWriter - replacing hyperlink [215174 - 215195] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:24,341 [main] TRACE AbstractWordWriter - replacing hyperlink [215250 - 215285] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:24,397 [main] TRACE AbstractWordWriter - replacing hyperlink [215341 - 215362] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:24,448 [main] TRACE AbstractWordWriter - replacing hyperlink [215417 - 215452] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:24,496 [main] TRACE AbstractWordWriter - replacing hyperlink [215508 - 215529] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:24,546 [main] TRACE AbstractWordWriter - replacing hyperlink [215584 - 215619] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:24,595 [main] TRACE AbstractWordWriter - replacing hyperlink [215674 - 215695] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:24,647 [main] TRACE AbstractWordWriter - replacing hyperlink [215750 - 215785] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:24,699 [main] TRACE AbstractWordWriter - replacing hyperlink [215842 - 215863] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:24,751 [main] TRACE AbstractWordWriter - replacing hyperlink [215918 - 215953] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:24,802 [main] TRACE AbstractWordWriter - replacing hyperlink [216009 - 216030] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:24,854 [main] TRACE AbstractWordWriter - replacing hyperlink [216085 - 216120] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:24,904 [main] TRACE AbstractWordWriter - replacing hyperlink [216181 - 216201] HYPERLINK Floating, UML56... +2024-09-07 21:46:24,953 [main] TRACE AbstractWordWriter - replacing hyperlink [216255 - 216290] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:25,004 [main] TRACE AbstractWordWriter - replacing hyperlink [216348 - 216369] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:25,054 [main] TRACE AbstractWordWriter - replacing hyperlink [216424 - 216459] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:25,105 [main] TRACE AbstractWordWriter - replacing hyperlink [216514 - 216535] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:25,154 [main] TRACE AbstractWordWriter - replacing hyperlink [216590 - 216625] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:25,206 [main] TRACE AbstractWordWriter - replacing hyperlink [216679 - 216700] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:25,256 [main] TRACE AbstractWordWriter - replacing hyperlink [216755 - 216790] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:25,304 [main] TRACE AbstractWordWriter - replacing hyperlink [216845 - 216865] HYPERLINK Floating, UML56... +2024-09-07 21:46:25,353 [main] TRACE AbstractWordWriter - replacing hyperlink [216919 - 216954] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:25,406 [main] TRACE AbstractWordWriter - replacing hyperlink [217014 - 217035] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:25,461 [main] TRACE AbstractWordWriter - replacing hyperlink [217090 - 217125] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:25,512 [main] TRACE AbstractWordWriter - replacing hyperlink [217184 - 217205] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:25,564 [main] TRACE AbstractWordWriter - replacing hyperlink [217260 - 217295] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:25,615 [main] TRACE AbstractWordWriter - replacing hyperlink [217360 - 217386] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:46:25,666 [main] TRACE AbstractWordWriter - replacing hyperlink [217446 - 217481] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:25,717 [main] TRACE AbstractWordWriter - replacing hyperlink [217541 - 217562] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:25,770 [main] TRACE AbstractWordWriter - replacing hyperlink [217617 - 217652] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:25,821 [main] TRACE AbstractWordWriter - replacing hyperlink [217707 - 217728] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:25,872 [main] TRACE AbstractWordWriter - replacing hyperlink [217783 - 217818] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:25,925 [main] TRACE AbstractWordWriter - replacing hyperlink [217877 - 217898] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:25,975 [main] TRACE AbstractWordWriter - replacing hyperlink [217953 - 217988] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:26,025 [main] TRACE AbstractWordWriter - replacing hyperlink [218042 - 218063] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:26,075 [main] TRACE AbstractWordWriter - replacing hyperlink [218118 - 218153] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:26,125 [main] TRACE AbstractWordWriter - replacing hyperlink [218216 - 218237] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:26,176 [main] TRACE AbstractWordWriter - replacing hyperlink [218292 - 218327] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:26,226 [main] TRACE AbstractWordWriter - replacing hyperlink [218392 - 218413] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:26,277 [main] TRACE AbstractWordWriter - replacing hyperlink [218468 - 218503] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:26,329 [main] TRACE AbstractWordWriter - replacing hyperlink [218566 - 218587] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:26,380 [main] TRACE AbstractWordWriter - replacing hyperlink [218642 - 218677] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:26,434 [main] TRACE AbstractWordWriter - replacing hyperlink [218736 - 218757] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:26,490 [main] TRACE AbstractWordWriter - replacing hyperlink [218812 - 218847] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:26,544 [main] TRACE AbstractWordWriter - replacing hyperlink [218901 - 218922] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:26,595 [main] TRACE AbstractWordWriter - replacing hyperlink [218977 - 219012] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:26,650 [main] TRACE AbstractWordWriter - replacing hyperlink [219075 - 219096] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:26,704 [main] TRACE AbstractWordWriter - replacing hyperlink [219151 - 219186] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:26,758 [main] TRACE AbstractWordWriter - replacing hyperlink [219251 - 219272] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:26,807 [main] TRACE AbstractWordWriter - replacing hyperlink [219327 - 219362] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:26,858 [main] TRACE AbstractWordWriter - replacing hyperlink [219423 - 219444] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:26,910 [main] TRACE AbstractWordWriter - replacing hyperlink [219499 - 219534] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:46:26,963 [main] TRACE AbstractWordWriter - replacing hyperlink [219596 - 219620] HYPERLINK BooleanValue, UML52... +2024-09-07 21:46:27,013 [main] TRACE AbstractWordWriter - replacing hyperlink [219678 - 219708] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:27,063 [main] TRACE AbstractWordWriter - replacing hyperlink [219769 - 219788] HYPERLINK Integer, UML53... +2024-09-07 21:46:27,119 [main] TRACE AbstractWordWriter - replacing hyperlink [219841 - 219871] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:27,170 [main] TRACE AbstractWordWriter - replacing hyperlink [219927 - 219947] HYPERLINK Floating, UML56... +2024-09-07 21:46:27,220 [main] TRACE AbstractWordWriter - replacing hyperlink [220004 - 220034] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:27,270 [main] TRACE AbstractWordWriter - replacing hyperlink [220088 - 220108] HYPERLINK Floating, UML56... +2024-09-07 21:46:27,321 [main] TRACE AbstractWordWriter - replacing hyperlink [220165 - 220195] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:27,372 [main] TRACE AbstractWordWriter - replacing hyperlink [220259 - 220279] HYPERLINK Floating, UML56... +2024-09-07 21:46:27,423 [main] TRACE AbstractWordWriter - replacing hyperlink [220336 - 220366] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:27,473 [main] TRACE AbstractWordWriter - replacing hyperlink [220427 - 220447] HYPERLINK Floating, UML56... +2024-09-07 21:46:27,524 [main] TRACE AbstractWordWriter - replacing hyperlink [220504 - 220534] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:27,581 [main] TRACE AbstractWordWriter - replacing hyperlink [220590 - 220610] HYPERLINK Floating, UML56... +2024-09-07 21:46:27,632 [main] TRACE AbstractWordWriter - replacing hyperlink [220667 - 220697] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:27,685 [main] TRACE AbstractWordWriter - replacing hyperlink [220757 - 220777] HYPERLINK Floating, UML56... +2024-09-07 21:46:27,735 [main] TRACE AbstractWordWriter - replacing hyperlink [220834 - 220864] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:27,786 [main] TRACE AbstractWordWriter - replacing hyperlink [223039 - 223060] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:27,836 [main] TRACE AbstractWordWriter - replacing hyperlink [223186 - 223207] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:27,886 [main] TRACE AbstractWordWriter - replacing hyperlink [223312 - 223333] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:27,937 [main] TRACE AbstractWordWriter - replacing hyperlink [223438 - 223459] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:27,989 [main] TRACE AbstractWordWriter - replacing hyperlink [223568 - 223589] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:28,039 [main] TRACE AbstractWordWriter - replacing hyperlink [223673 - 223694] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:28,091 [main] TRACE AbstractWordWriter - replacing hyperlink [223791 - 223812] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:28,141 [main] TRACE AbstractWordWriter - replacing hyperlink [223937 - 223957] HYPERLINK Floating, UML56... +2024-09-07 21:46:28,193 [main] TRACE AbstractWordWriter - replacing hyperlink [224047 - 224068] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:28,244 [main] TRACE AbstractWordWriter - replacing hyperlink [224183 - 224204] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:28,294 [main] TRACE AbstractWordWriter - replacing hyperlink [224286 - 224307] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:28,346 [main] TRACE AbstractWordWriter - replacing hyperlink [224439 - 224460] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:28,397 [main] TRACE AbstractWordWriter - replacing hyperlink [224552 - 224573] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:28,449 [main] TRACE AbstractWordWriter - replacing hyperlink [224665 - 224686] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:28,498 [main] TRACE AbstractWordWriter - replacing hyperlink [224800 - 224821] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:28,571 [main] TRACE AbstractWordWriter - replacing hyperlink [224936 - 224957] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:28,662 [main] TRACE AbstractWordWriter - replacing hyperlink [225113 - 225134] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:28,745 [main] TRACE AbstractWordWriter - replacing hyperlink [225222 - 225243] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:28,813 [main] TRACE AbstractWordWriter - replacing hyperlink [225361 - 225382] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:28,875 [main] TRACE AbstractWordWriter - replacing hyperlink [225544 - 225565] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:28,934 [main] TRACE AbstractWordWriter - replacing hyperlink [225620 - 225645] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:28,992 [main] TRACE AbstractWordWriter - replacing hyperlink [225699 - 225720] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:29,057 [main] TRACE AbstractWordWriter - replacing hyperlink [225775 - 225800] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:29,123 [main] TRACE AbstractWordWriter - replacing hyperlink [225853 - 225874] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:29,187 [main] TRACE AbstractWordWriter - replacing hyperlink [225929 - 225954] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:29,255 [main] TRACE AbstractWordWriter - replacing hyperlink [226013 - 226034] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:29,323 [main] TRACE AbstractWordWriter - replacing hyperlink [226089 - 226114] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:29,389 [main] TRACE AbstractWordWriter - replacing hyperlink [226174 - 226195] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:29,447 [main] TRACE AbstractWordWriter - replacing hyperlink [226250 - 226275] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:29,502 [main] TRACE AbstractWordWriter - replacing hyperlink [226335 - 226356] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:29,559 [main] TRACE AbstractWordWriter - replacing hyperlink [226411 - 226436] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:29,616 [main] TRACE AbstractWordWriter - replacing hyperlink [226489 - 226510] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:29,682 [main] TRACE AbstractWordWriter - replacing hyperlink [226565 - 226590] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:29,754 [main] TRACE AbstractWordWriter - replacing hyperlink [226643 - 226664] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:29,814 [main] TRACE AbstractWordWriter - replacing hyperlink [226719 - 226744] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:29,871 [main] TRACE AbstractWordWriter - replacing hyperlink [226796 - 226817] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:29,933 [main] TRACE AbstractWordWriter - replacing hyperlink [226872 - 226897] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:29,992 [main] TRACE AbstractWordWriter - replacing hyperlink [226951 - 226972] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:30,055 [main] TRACE AbstractWordWriter - replacing hyperlink [227027 - 227052] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:30,126 [main] TRACE AbstractWordWriter - replacing hyperlink [227106 - 227127] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:30,194 [main] TRACE AbstractWordWriter - replacing hyperlink [227182 - 227207] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:30,270 [main] TRACE AbstractWordWriter - replacing hyperlink [227265 - 227286] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:30,344 [main] TRACE AbstractWordWriter - replacing hyperlink [227341 - 227366] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:30,416 [main] TRACE AbstractWordWriter - replacing hyperlink [227424 - 227445] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:30,485 [main] TRACE AbstractWordWriter - replacing hyperlink [227500 - 227525] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:30,544 [main] TRACE AbstractWordWriter - replacing hyperlink [227581 - 227602] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:30,602 [main] TRACE AbstractWordWriter - replacing hyperlink [227657 - 227682] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:30,662 [main] TRACE AbstractWordWriter - replacing hyperlink [227738 - 227759] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:30,719 [main] TRACE AbstractWordWriter - replacing hyperlink [227814 - 227839] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:30,781 [main] TRACE AbstractWordWriter - replacing hyperlink [227895 - 227916] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:30,852 [main] TRACE AbstractWordWriter - replacing hyperlink [227971 - 227996] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:30,923 [main] TRACE AbstractWordWriter - replacing hyperlink [228052 - 228073] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:30,993 [main] TRACE AbstractWordWriter - replacing hyperlink [228128 - 228153] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:31,069 [main] TRACE AbstractWordWriter - replacing hyperlink [228212 - 228233] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:31,136 [main] TRACE AbstractWordWriter - replacing hyperlink [228288 - 228313] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:31,198 [main] TRACE AbstractWordWriter - replacing hyperlink [228372 - 228393] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:31,271 [main] TRACE AbstractWordWriter - replacing hyperlink [228448 - 228473] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:31,339 [main] TRACE AbstractWordWriter - replacing hyperlink [228526 - 228547] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:31,402 [main] TRACE AbstractWordWriter - replacing hyperlink [228602 - 228627] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:31,459 [main] TRACE AbstractWordWriter - replacing hyperlink [228678 - 228699] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:31,523 [main] TRACE AbstractWordWriter - replacing hyperlink [228754 - 228779] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:31,588 [main] TRACE AbstractWordWriter - replacing hyperlink [228832 - 228853] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:31,642 [main] TRACE AbstractWordWriter - replacing hyperlink [228908 - 228933] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:31,701 [main] TRACE AbstractWordWriter - replacing hyperlink [228985 - 229006] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:31,776 [main] TRACE AbstractWordWriter - replacing hyperlink [229061 - 229086] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:31,852 [main] TRACE AbstractWordWriter - replacing hyperlink [229139 - 229160] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:31,930 [main] TRACE AbstractWordWriter - replacing hyperlink [229215 - 229240] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:31,998 [main] TRACE AbstractWordWriter - replacing hyperlink [229294 - 229315] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:32,073 [main] TRACE AbstractWordWriter - replacing hyperlink [229370 - 229395] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:32,145 [main] TRACE AbstractWordWriter - replacing hyperlink [229448 - 229469] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:32,215 [main] TRACE AbstractWordWriter - replacing hyperlink [229524 - 229549] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:32,283 [main] TRACE AbstractWordWriter - replacing hyperlink [229955 - 229976] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:32,355 [main] TRACE AbstractWordWriter - replacing hyperlink [230120 - 230141] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:32,427 [main] TRACE AbstractWordWriter - replacing hyperlink [230263 - 230284] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:32,496 [main] TRACE AbstractWordWriter - replacing hyperlink [230408 - 230429] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:32,573 [main] TRACE AbstractWordWriter - replacing hyperlink [230579 - 230600] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:32,642 [main] TRACE AbstractWordWriter - replacing hyperlink [230739 - 230760] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:32,714 [main] TRACE AbstractWordWriter - replacing hyperlink [230903 - 230924] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:32,784 [main] TRACE AbstractWordWriter - replacing hyperlink [231021 - 231042] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:32,853 [main] TRACE AbstractWordWriter - replacing hyperlink [231156 - 231177] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:32,925 [main] TRACE AbstractWordWriter - replacing hyperlink [231278 - 231299] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:32,986 [main] TRACE AbstractWordWriter - replacing hyperlink [231448 - 231469] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:33,047 [main] TRACE AbstractWordWriter - replacing hyperlink [231581 - 231602] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:33,107 [main] TRACE AbstractWordWriter - replacing hyperlink [231727 - 231748] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:33,166 [main] TRACE AbstractWordWriter - replacing hyperlink [231852 - 231873] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:33,225 [main] TRACE AbstractWordWriter - replacing hyperlink [231994 - 232015] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:33,288 [main] TRACE AbstractWordWriter - replacing hyperlink [232145 - 232166] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:33,354 [main] TRACE AbstractWordWriter - replacing hyperlink [232286 - 232307] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:33,419 [main] TRACE AbstractWordWriter - replacing hyperlink [232439 - 232460] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:33,479 [main] TRACE AbstractWordWriter - replacing hyperlink [232630 - 232651] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:33,544 [main] TRACE AbstractWordWriter - replacing hyperlink [232814 - 232835] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:33,605 [main] TRACE AbstractWordWriter - replacing hyperlink [232944 - 232965] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:33,665 [main] TRACE AbstractWordWriter - replacing hyperlink [233077 - 233098] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:33,725 [main] TRACE AbstractWordWriter - replacing hyperlink [233210 - 233231] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:33,784 [main] TRACE AbstractWordWriter - replacing hyperlink [233400 - 233421] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:33,845 [main] TRACE AbstractWordWriter - replacing hyperlink [233595 - 233616] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:33,904 [main] TRACE AbstractWordWriter - replacing hyperlink [233715 - 233736] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:33,966 [main] TRACE AbstractWordWriter - replacing hyperlink [234321 - 234344] HYPERLINK EntityIndex, UML66... +2024-09-07 21:46:34,029 [main] TRACE AbstractWordWriter - replacing hyperlink [234417 - 234434] HYPERLINK CntRs, UML67... +2024-09-07 21:46:34,087 [main] TRACE AbstractWordWriter - replacing hyperlink [234518 - 234541] HYPERLINK InetAddress, UML65... +2024-09-07 21:46:34,146 [main] TRACE AbstractWordWriter - replacing hyperlink [234618 - 234645] HYPERLINK InetAddressType, UML64... +2024-09-07 21:46:34,211 [main] TRACE AbstractWordWriter - replacing hyperlink [234723 - 234745] HYPERLINK ProtIdType, UML74... +2024-09-07 21:46:34,291 [main] TRACE AbstractWordWriter - replacing hyperlink [234824 - 234846] HYPERLINK CharString, UML59... +2024-09-07 21:46:34,365 [main] TRACE AbstractWordWriter - replacing hyperlink [234957 - 234979] HYPERLINK CharString, UML59... +2024-09-07 21:46:34,428 [main] TRACE AbstractWordWriter - replacing hyperlink [235112 - 235135] HYPERLINK InetAddress, UML65... +2024-09-07 21:46:34,498 [main] TRACE AbstractWordWriter - replacing hyperlink [235213 - 235240] HYPERLINK InetAddressType, UML64... +2024-09-07 21:46:34,567 [main] TRACE AbstractWordWriter - replacing hyperlink [235323 - 235344] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:34,624 [main] TRACE AbstractWordWriter - replacing hyperlink [235440 - 235459] HYPERLINK LnkType, UML78... +2024-09-07 21:46:34,697 [main] TRACE AbstractWordWriter - replacing hyperlink [235550 - 235574] HYPERLINK BooleanValue, UML52... +2024-09-07 21:46:34,753 [main] TRACE AbstractWordWriter - replacing hyperlink [235632 - 235662] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:34,810 [main] TRACE AbstractWordWriter - replacing hyperlink [235723 - 235742] HYPERLINK Integer, UML53... +2024-09-07 21:46:34,875 [main] TRACE AbstractWordWriter - replacing hyperlink [235795 - 235825] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:34,942 [main] TRACE AbstractWordWriter - replacing hyperlink [235881 - 235901] HYPERLINK Floating, UML56... +2024-09-07 21:46:35,001 [main] TRACE AbstractWordWriter - replacing hyperlink [235958 - 235988] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:35,056 [main] TRACE AbstractWordWriter - replacing hyperlink [236042 - 236062] HYPERLINK Floating, UML56... +2024-09-07 21:46:35,115 [main] TRACE AbstractWordWriter - replacing hyperlink [236119 - 236149] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:35,166 [main] TRACE AbstractWordWriter - replacing hyperlink [236213 - 236233] HYPERLINK Floating, UML56... +2024-09-07 21:46:35,217 [main] TRACE AbstractWordWriter - replacing hyperlink [236290 - 236320] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:35,267 [main] TRACE AbstractWordWriter - replacing hyperlink [236381 - 236401] HYPERLINK Floating, UML56... +2024-09-07 21:46:35,321 [main] TRACE AbstractWordWriter - replacing hyperlink [236458 - 236488] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:35,373 [main] TRACE AbstractWordWriter - replacing hyperlink [236544 - 236564] HYPERLINK Floating, UML56... +2024-09-07 21:46:35,424 [main] TRACE AbstractWordWriter - replacing hyperlink [236621 - 236651] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:35,474 [main] TRACE AbstractWordWriter - replacing hyperlink [236711 - 236731] HYPERLINK Floating, UML56... +2024-09-07 21:46:35,527 [main] TRACE AbstractWordWriter - replacing hyperlink [236788 - 236818] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:35,578 [main] TRACE AbstractWordWriter - replacing hyperlink [236869 - 236890] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:35,630 [main] TRACE AbstractWordWriter - replacing hyperlink [236945 - 236983] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:35,691 [main] TRACE AbstractWordWriter - replacing hyperlink [237042 - 237063] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:35,745 [main] TRACE AbstractWordWriter - replacing hyperlink [237118 - 237156] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:35,800 [main] TRACE AbstractWordWriter - replacing hyperlink [237215 - 237236] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:35,853 [main] TRACE AbstractWordWriter - replacing hyperlink [237291 - 237329] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:35,905 [main] TRACE AbstractWordWriter - replacing hyperlink [237388 - 237409] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:35,956 [main] TRACE AbstractWordWriter - replacing hyperlink [237464 - 237502] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:36,012 [main] TRACE AbstractWordWriter - replacing hyperlink [237564 - 237585] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:36,068 [main] TRACE AbstractWordWriter - replacing hyperlink [237640 - 237678] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:36,124 [main] TRACE AbstractWordWriter - replacing hyperlink [237738 - 237759] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:36,181 [main] TRACE AbstractWordWriter - replacing hyperlink [237814 - 237852] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:36,233 [main] TRACE AbstractWordWriter - replacing hyperlink [237911 - 237932] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:36,286 [main] TRACE AbstractWordWriter - replacing hyperlink [237987 - 238025] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:36,340 [main] TRACE AbstractWordWriter - replacing hyperlink [238089 - 238109] HYPERLINK Floating, UML56... +2024-09-07 21:46:36,392 [main] TRACE AbstractWordWriter - replacing hyperlink [238163 - 238201] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:36,446 [main] TRACE AbstractWordWriter - replacing hyperlink [238262 - 238283] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:36,497 [main] TRACE AbstractWordWriter - replacing hyperlink [238338 - 238376] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:36,548 [main] TRACE AbstractWordWriter - replacing hyperlink [238434 - 238455] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:36,601 [main] TRACE AbstractWordWriter - replacing hyperlink [238510 - 238548] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:36,657 [main] TRACE AbstractWordWriter - replacing hyperlink [238605 - 238626] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:36,713 [main] TRACE AbstractWordWriter - replacing hyperlink [238681 - 238719] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:36,765 [main] TRACE AbstractWordWriter - replacing hyperlink [238782 - 238803] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:36,818 [main] TRACE AbstractWordWriter - replacing hyperlink [238858 - 238896] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:36,872 [main] TRACE AbstractWordWriter - replacing hyperlink [238954 - 238975] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:36,926 [main] TRACE AbstractWordWriter - replacing hyperlink [239030 - 239068] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:36,982 [main] TRACE AbstractWordWriter - replacing hyperlink [239128 - 239149] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:37,036 [main] TRACE AbstractWordWriter - replacing hyperlink [239204 - 239242] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:37,087 [main] TRACE AbstractWordWriter - replacing hyperlink [239308 - 239329] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:37,142 [main] TRACE AbstractWordWriter - replacing hyperlink [239384 - 239422] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:37,203 [main] TRACE AbstractWordWriter - replacing hyperlink [239490 - 239511] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:37,257 [main] TRACE AbstractWordWriter - replacing hyperlink [239566 - 239604] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:37,309 [main] TRACE AbstractWordWriter - replacing hyperlink [239664 - 239685] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:37,366 [main] TRACE AbstractWordWriter - replacing hyperlink [239740 - 239778] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:37,428 [main] TRACE AbstractWordWriter - replacing hyperlink [239844 - 239865] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:37,480 [main] TRACE AbstractWordWriter - replacing hyperlink [239920 - 239958] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:37,534 [main] TRACE AbstractWordWriter - replacing hyperlink [240026 - 240047] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:37,591 [main] TRACE AbstractWordWriter - replacing hyperlink [240102 - 240140] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:37,645 [main] TRACE AbstractWordWriter - replacing hyperlink [240206 - 240227] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:37,696 [main] TRACE AbstractWordWriter - replacing hyperlink [240282 - 240307] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:37,753 [main] TRACE AbstractWordWriter - replacing hyperlink [240361 - 240382] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:37,809 [main] TRACE AbstractWordWriter - replacing hyperlink [240437 - 240462] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:37,859 [main] TRACE AbstractWordWriter - replacing hyperlink [240515 - 240536] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:37,910 [main] TRACE AbstractWordWriter - replacing hyperlink [240591 - 240616] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:37,961 [main] TRACE AbstractWordWriter - replacing hyperlink [240675 - 240696] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:38,015 [main] TRACE AbstractWordWriter - replacing hyperlink [240751 - 240776] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:38,072 [main] TRACE AbstractWordWriter - replacing hyperlink [240836 - 240857] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:38,126 [main] TRACE AbstractWordWriter - replacing hyperlink [240912 - 240937] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:38,178 [main] TRACE AbstractWordWriter - replacing hyperlink [240997 - 241018] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:38,232 [main] TRACE AbstractWordWriter - replacing hyperlink [241073 - 241098] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:38,290 [main] TRACE AbstractWordWriter - replacing hyperlink [241151 - 241172] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:38,342 [main] TRACE AbstractWordWriter - replacing hyperlink [241227 - 241252] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:38,397 [main] TRACE AbstractWordWriter - replacing hyperlink [241305 - 241326] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:38,450 [main] TRACE AbstractWordWriter - replacing hyperlink [241381 - 241406] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:38,504 [main] TRACE AbstractWordWriter - replacing hyperlink [241458 - 241479] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:38,558 [main] TRACE AbstractWordWriter - replacing hyperlink [241534 - 241559] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:38,610 [main] TRACE AbstractWordWriter - replacing hyperlink [241613 - 241634] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:38,664 [main] TRACE AbstractWordWriter - replacing hyperlink [241689 - 241714] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:38,719 [main] TRACE AbstractWordWriter - replacing hyperlink [241768 - 241789] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:38,772 [main] TRACE AbstractWordWriter - replacing hyperlink [241844 - 241869] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:38,823 [main] TRACE AbstractWordWriter - replacing hyperlink [241927 - 241948] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:38,879 [main] TRACE AbstractWordWriter - replacing hyperlink [242003 - 242028] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:38,934 [main] TRACE AbstractWordWriter - replacing hyperlink [242086 - 242107] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:38,991 [main] TRACE AbstractWordWriter - replacing hyperlink [242162 - 242187] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:39,044 [main] TRACE AbstractWordWriter - replacing hyperlink [242243 - 242264] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:39,098 [main] TRACE AbstractWordWriter - replacing hyperlink [242319 - 242344] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:39,149 [main] TRACE AbstractWordWriter - replacing hyperlink [242400 - 242421] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:39,202 [main] TRACE AbstractWordWriter - replacing hyperlink [242476 - 242501] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:39,253 [main] TRACE AbstractWordWriter - replacing hyperlink [242557 - 242578] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:39,307 [main] TRACE AbstractWordWriter - replacing hyperlink [242633 - 242658] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:39,367 [main] TRACE AbstractWordWriter - replacing hyperlink [242714 - 242735] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:39,421 [main] TRACE AbstractWordWriter - replacing hyperlink [242790 - 242815] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:39,472 [main] TRACE AbstractWordWriter - replacing hyperlink [242874 - 242895] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:39,524 [main] TRACE AbstractWordWriter - replacing hyperlink [242950 - 242975] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:39,575 [main] TRACE AbstractWordWriter - replacing hyperlink [243034 - 243055] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:39,628 [main] TRACE AbstractWordWriter - replacing hyperlink [243110 - 243135] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:39,678 [main] TRACE AbstractWordWriter - replacing hyperlink [243188 - 243209] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:39,731 [main] TRACE AbstractWordWriter - replacing hyperlink [243264 - 243289] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:39,785 [main] TRACE AbstractWordWriter - replacing hyperlink [243340 - 243361] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:39,837 [main] TRACE AbstractWordWriter - replacing hyperlink [243416 - 243441] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:39,891 [main] TRACE AbstractWordWriter - replacing hyperlink [243494 - 243515] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:39,946 [main] TRACE AbstractWordWriter - replacing hyperlink [243570 - 243595] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:40,001 [main] TRACE AbstractWordWriter - replacing hyperlink [243647 - 243668] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:40,053 [main] TRACE AbstractWordWriter - replacing hyperlink [243723 - 243748] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:40,107 [main] TRACE AbstractWordWriter - replacing hyperlink [243801 - 243822] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:40,158 [main] TRACE AbstractWordWriter - replacing hyperlink [243877 - 243902] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:40,211 [main] TRACE AbstractWordWriter - replacing hyperlink [243956 - 243977] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:40,266 [main] TRACE AbstractWordWriter - replacing hyperlink [244032 - 244057] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:40,319 [main] TRACE AbstractWordWriter - replacing hyperlink [244110 - 244131] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:40,374 [main] TRACE AbstractWordWriter - replacing hyperlink [244186 - 244211] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:40,432 [main] TRACE AbstractWordWriter - replacing hyperlink [244631 - 244648] HYPERLINK CntRs, UML67... +2024-09-07 21:46:40,487 [main] TRACE AbstractWordWriter - replacing hyperlink [244731 - 244752] HYPERLINK EventType, UML72... +2024-09-07 21:46:40,538 [main] TRACE AbstractWordWriter - replacing hyperlink [244868 - 244898] HYPERLINK MasterAssociation, UML101... +2024-09-07 21:46:40,593 [main] TRACE AbstractWordWriter - replacing hyperlink [244996 - 245030] HYPERLINK OutstationAssociation, UML102... +2024-09-07 21:46:40,648 [main] TRACE AbstractWordWriter - replacing hyperlink [245142 - 245189] HYPERLINK 60870andDNPSecurityNotificationEd2, UML111... +2024-09-07 21:46:40,703 [main] TRACE AbstractWordWriter - replacing hyperlink [245309 - 245348] HYPERLINK 60870andDNPNotificationEd2, UML112... +2024-09-07 21:46:40,763 [main] TRACE AbstractWordWriter - replacing hyperlink [245447 - 245468] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:40,816 [main] TRACE AbstractWordWriter - replacing hyperlink [245523 - 245561] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:40,869 [main] TRACE AbstractWordWriter - replacing hyperlink [245620 - 245641] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:40,924 [main] TRACE AbstractWordWriter - replacing hyperlink [245696 - 245734] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:40,974 [main] TRACE AbstractWordWriter - replacing hyperlink [245793 - 245814] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:41,029 [main] TRACE AbstractWordWriter - replacing hyperlink [245869 - 245907] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:41,086 [main] TRACE AbstractWordWriter - replacing hyperlink [245966 - 245987] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:41,141 [main] TRACE AbstractWordWriter - replacing hyperlink [246042 - 246080] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:41,197 [main] TRACE AbstractWordWriter - replacing hyperlink [246142 - 246163] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:41,252 [main] TRACE AbstractWordWriter - replacing hyperlink [246218 - 246256] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:41,304 [main] TRACE AbstractWordWriter - replacing hyperlink [246316 - 246337] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:41,356 [main] TRACE AbstractWordWriter - replacing hyperlink [246392 - 246430] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:41,417 [main] TRACE AbstractWordWriter - replacing hyperlink [246489 - 246510] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:41,479 [main] TRACE AbstractWordWriter - replacing hyperlink [246565 - 246603] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:41,540 [main] TRACE AbstractWordWriter - replacing hyperlink [246667 - 246687] HYPERLINK Floating, UML56... +2024-09-07 21:46:41,602 [main] TRACE AbstractWordWriter - replacing hyperlink [246741 - 246779] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:41,655 [main] TRACE AbstractWordWriter - replacing hyperlink [246840 - 246861] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:41,708 [main] TRACE AbstractWordWriter - replacing hyperlink [246916 - 246954] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:41,766 [main] TRACE AbstractWordWriter - replacing hyperlink [247012 - 247033] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:41,820 [main] TRACE AbstractWordWriter - replacing hyperlink [247088 - 247126] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:41,872 [main] TRACE AbstractWordWriter - replacing hyperlink [247183 - 247204] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:41,927 [main] TRACE AbstractWordWriter - replacing hyperlink [247259 - 247297] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:41,978 [main] TRACE AbstractWordWriter - replacing hyperlink [247360 - 247381] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:42,032 [main] TRACE AbstractWordWriter - replacing hyperlink [247436 - 247474] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:42,084 [main] TRACE AbstractWordWriter - replacing hyperlink [247532 - 247553] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:42,137 [main] TRACE AbstractWordWriter - replacing hyperlink [247608 - 247646] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:42,194 [main] TRACE AbstractWordWriter - replacing hyperlink [247706 - 247727] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:42,248 [main] TRACE AbstractWordWriter - replacing hyperlink [247782 - 247820] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:42,300 [main] TRACE AbstractWordWriter - replacing hyperlink [247886 - 247907] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:42,355 [main] TRACE AbstractWordWriter - replacing hyperlink [247962 - 248000] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:42,410 [main] TRACE AbstractWordWriter - replacing hyperlink [248068 - 248089] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:42,465 [main] TRACE AbstractWordWriter - replacing hyperlink [248144 - 248182] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:42,527 [main] TRACE AbstractWordWriter - replacing hyperlink [248242 - 248263] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:42,580 [main] TRACE AbstractWordWriter - replacing hyperlink [248318 - 248356] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:42,632 [main] TRACE AbstractWordWriter - replacing hyperlink [248422 - 248443] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:42,684 [main] TRACE AbstractWordWriter - replacing hyperlink [248498 - 248536] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:42,738 [main] TRACE AbstractWordWriter - replacing hyperlink [248604 - 248625] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:42,789 [main] TRACE AbstractWordWriter - replacing hyperlink [248680 - 248718] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:42,843 [main] TRACE AbstractWordWriter - replacing hyperlink [248784 - 248805] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:42,897 [main] TRACE AbstractWordWriter - replacing hyperlink [248860 - 248885] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:42,950 [main] TRACE AbstractWordWriter - replacing hyperlink [248939 - 248960] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:43,003 [main] TRACE AbstractWordWriter - replacing hyperlink [249015 - 249040] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:43,059 [main] TRACE AbstractWordWriter - replacing hyperlink [249093 - 249114] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:43,112 [main] TRACE AbstractWordWriter - replacing hyperlink [249169 - 249194] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:43,162 [main] TRACE AbstractWordWriter - replacing hyperlink [249253 - 249274] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:43,215 [main] TRACE AbstractWordWriter - replacing hyperlink [249329 - 249354] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:43,266 [main] TRACE AbstractWordWriter - replacing hyperlink [249414 - 249435] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:43,318 [main] TRACE AbstractWordWriter - replacing hyperlink [249490 - 249515] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:43,372 [main] TRACE AbstractWordWriter - replacing hyperlink [249575 - 249596] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:43,428 [main] TRACE AbstractWordWriter - replacing hyperlink [249651 - 249676] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:43,481 [main] TRACE AbstractWordWriter - replacing hyperlink [249729 - 249750] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:43,534 [main] TRACE AbstractWordWriter - replacing hyperlink [249805 - 249830] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:43,599 [main] TRACE AbstractWordWriter - replacing hyperlink [249883 - 249904] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:43,650 [main] TRACE AbstractWordWriter - replacing hyperlink [249959 - 249984] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:43,702 [main] TRACE AbstractWordWriter - replacing hyperlink [250036 - 250057] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:43,758 [main] TRACE AbstractWordWriter - replacing hyperlink [250112 - 250137] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:43,811 [main] TRACE AbstractWordWriter - replacing hyperlink [250191 - 250212] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:43,863 [main] TRACE AbstractWordWriter - replacing hyperlink [250267 - 250292] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:43,916 [main] TRACE AbstractWordWriter - replacing hyperlink [250346 - 250367] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:43,971 [main] TRACE AbstractWordWriter - replacing hyperlink [250422 - 250447] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:44,027 [main] TRACE AbstractWordWriter - replacing hyperlink [250505 - 250526] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:44,081 [main] TRACE AbstractWordWriter - replacing hyperlink [250581 - 250606] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:44,134 [main] TRACE AbstractWordWriter - replacing hyperlink [250664 - 250685] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:44,187 [main] TRACE AbstractWordWriter - replacing hyperlink [250740 - 250765] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:44,240 [main] TRACE AbstractWordWriter - replacing hyperlink [250821 - 250842] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:44,291 [main] TRACE AbstractWordWriter - replacing hyperlink [250897 - 250922] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:44,345 [main] TRACE AbstractWordWriter - replacing hyperlink [250978 - 250999] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:44,398 [main] TRACE AbstractWordWriter - replacing hyperlink [251054 - 251079] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:44,454 [main] TRACE AbstractWordWriter - replacing hyperlink [251135 - 251156] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:44,510 [main] TRACE AbstractWordWriter - replacing hyperlink [251211 - 251236] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:44,565 [main] TRACE AbstractWordWriter - replacing hyperlink [251292 - 251313] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:44,620 [main] TRACE AbstractWordWriter - replacing hyperlink [251368 - 251393] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:44,680 [main] TRACE AbstractWordWriter - replacing hyperlink [251452 - 251473] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:44,733 [main] TRACE AbstractWordWriter - replacing hyperlink [251528 - 251553] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:44,787 [main] TRACE AbstractWordWriter - replacing hyperlink [251612 - 251633] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:44,840 [main] TRACE AbstractWordWriter - replacing hyperlink [251688 - 251713] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:44,889 [main] TRACE AbstractWordWriter - replacing hyperlink [251766 - 251787] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:44,941 [main] TRACE AbstractWordWriter - replacing hyperlink [251842 - 251867] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:44,996 [main] TRACE AbstractWordWriter - replacing hyperlink [251918 - 251939] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:45,049 [main] TRACE AbstractWordWriter - replacing hyperlink [251994 - 252019] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:45,108 [main] TRACE AbstractWordWriter - replacing hyperlink [252072 - 252093] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:45,159 [main] TRACE AbstractWordWriter - replacing hyperlink [252148 - 252173] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:45,211 [main] TRACE AbstractWordWriter - replacing hyperlink [252225 - 252246] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:45,266 [main] TRACE AbstractWordWriter - replacing hyperlink [252301 - 252326] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:45,318 [main] TRACE AbstractWordWriter - replacing hyperlink [252379 - 252400] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:45,373 [main] TRACE AbstractWordWriter - replacing hyperlink [252455 - 252480] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:45,426 [main] TRACE AbstractWordWriter - replacing hyperlink [252534 - 252555] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:45,479 [main] TRACE AbstractWordWriter - replacing hyperlink [252610 - 252635] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:45,537 [main] TRACE AbstractWordWriter - replacing hyperlink [252688 - 252709] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:45,590 [main] TRACE AbstractWordWriter - replacing hyperlink [252764 - 252789] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:45,644 [main] TRACE AbstractWordWriter - replacing hyperlink [253277 - 253298] HYPERLINK EventType, UML72... +2024-09-07 21:46:45,705 [main] TRACE AbstractWordWriter - replacing hyperlink [253760 - 253781] HYPERLINK EventType, UML72... +2024-09-07 21:46:45,765 [main] TRACE AbstractWordWriter - replacing hyperlink [254158 - 254181] HYPERLINK EntityIndex, UML66... +2024-09-07 21:46:45,821 [main] TRACE AbstractWordWriter - replacing hyperlink [254235 - 254259] HYPERLINK Association, UML100... +2024-09-07 21:46:45,875 [main] TRACE AbstractWordWriter - replacing hyperlink [254301 - 254318] HYPERLINK CntRs, UML67... +2024-09-07 21:46:45,931 [main] TRACE AbstractWordWriter - replacing hyperlink [254369 - 254393] HYPERLINK Association, UML100... +2024-09-07 21:46:45,984 [main] TRACE AbstractWordWriter - replacing hyperlink [254440 - 254463] HYPERLINK InetAddress, UML65... +2024-09-07 21:46:46,041 [main] TRACE AbstractWordWriter - replacing hyperlink [254520 - 254544] HYPERLINK Association, UML100... +2024-09-07 21:46:46,094 [main] TRACE AbstractWordWriter - replacing hyperlink [254595 - 254622] HYPERLINK InetAddressType, UML64... +2024-09-07 21:46:46,148 [main] TRACE AbstractWordWriter - replacing hyperlink [254683 - 254707] HYPERLINK Association, UML100... +2024-09-07 21:46:46,204 [main] TRACE AbstractWordWriter - replacing hyperlink [254750 - 254772] HYPERLINK ProtIdType, UML74... +2024-09-07 21:46:46,260 [main] TRACE AbstractWordWriter - replacing hyperlink [254828 - 254852] HYPERLINK Association, UML100... +2024-09-07 21:46:46,318 [main] TRACE AbstractWordWriter - replacing hyperlink [254901 - 254923] HYPERLINK CharString, UML59... +2024-09-07 21:46:46,375 [main] TRACE AbstractWordWriter - replacing hyperlink [254979 - 255003] HYPERLINK Association, UML100... +2024-09-07 21:46:46,427 [main] TRACE AbstractWordWriter - replacing hyperlink [255052 - 255074] HYPERLINK CharString, UML59... +2024-09-07 21:46:46,484 [main] TRACE AbstractWordWriter - replacing hyperlink [255130 - 255154] HYPERLINK Association, UML100... +2024-09-07 21:46:46,539 [main] TRACE AbstractWordWriter - replacing hyperlink [255201 - 255224] HYPERLINK InetAddress, UML65... +2024-09-07 21:46:46,595 [main] TRACE AbstractWordWriter - replacing hyperlink [255281 - 255305] HYPERLINK Association, UML100... +2024-09-07 21:46:46,651 [main] TRACE AbstractWordWriter - replacing hyperlink [255356 - 255383] HYPERLINK InetAddressType, UML64... +2024-09-07 21:46:46,710 [main] TRACE AbstractWordWriter - replacing hyperlink [255444 - 255468] HYPERLINK Association, UML100... +2024-09-07 21:46:46,767 [main] TRACE AbstractWordWriter - replacing hyperlink [255515 - 255536] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:46,829 [main] TRACE AbstractWordWriter - replacing hyperlink [255589 - 255613] HYPERLINK Association, UML100... +2024-09-07 21:46:46,883 [main] TRACE AbstractWordWriter - replacing hyperlink [255657 - 255676] HYPERLINK LnkType, UML78... +2024-09-07 21:46:46,938 [main] TRACE AbstractWordWriter - replacing hyperlink [255729 - 255753] HYPERLINK Association, UML100... +2024-09-07 21:46:46,990 [main] TRACE AbstractWordWriter - replacing hyperlink [255803 - 255827] HYPERLINK BooleanValue, UML52... +2024-09-07 21:46:47,043 [main] TRACE AbstractWordWriter - replacing hyperlink [255885 - 255915] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:47,098 [main] TRACE AbstractWordWriter - replacing hyperlink [255976 - 255995] HYPERLINK Integer, UML53... +2024-09-07 21:46:47,155 [main] TRACE AbstractWordWriter - replacing hyperlink [256048 - 256078] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:47,210 [main] TRACE AbstractWordWriter - replacing hyperlink [256134 - 256154] HYPERLINK Floating, UML56... +2024-09-07 21:46:47,265 [main] TRACE AbstractWordWriter - replacing hyperlink [256211 - 256241] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:47,321 [main] TRACE AbstractWordWriter - replacing hyperlink [256295 - 256315] HYPERLINK Floating, UML56... +2024-09-07 21:46:47,377 [main] TRACE AbstractWordWriter - replacing hyperlink [256372 - 256402] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:47,433 [main] TRACE AbstractWordWriter - replacing hyperlink [256466 - 256486] HYPERLINK Floating, UML56... +2024-09-07 21:46:47,485 [main] TRACE AbstractWordWriter - replacing hyperlink [256543 - 256573] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:47,539 [main] TRACE AbstractWordWriter - replacing hyperlink [256634 - 256654] HYPERLINK Floating, UML56... +2024-09-07 21:46:47,591 [main] TRACE AbstractWordWriter - replacing hyperlink [256711 - 256741] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:47,659 [main] TRACE AbstractWordWriter - replacing hyperlink [256797 - 256817] HYPERLINK Floating, UML56... +2024-09-07 21:46:47,723 [main] TRACE AbstractWordWriter - replacing hyperlink [256874 - 256904] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:47,778 [main] TRACE AbstractWordWriter - replacing hyperlink [256964 - 256984] HYPERLINK Floating, UML56... +2024-09-07 21:46:47,836 [main] TRACE AbstractWordWriter - replacing hyperlink [257041 - 257071] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:47,895 [main] TRACE AbstractWordWriter - replacing hyperlink [257122 - 257143] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:47,949 [main] TRACE AbstractWordWriter - replacing hyperlink [257198 - 257236] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:48,000 [main] TRACE AbstractWordWriter - replacing hyperlink [257295 - 257316] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:48,052 [main] TRACE AbstractWordWriter - replacing hyperlink [257371 - 257409] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:48,107 [main] TRACE AbstractWordWriter - replacing hyperlink [257468 - 257489] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:48,165 [main] TRACE AbstractWordWriter - replacing hyperlink [257544 - 257582] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:48,218 [main] TRACE AbstractWordWriter - replacing hyperlink [257641 - 257662] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:48,272 [main] TRACE AbstractWordWriter - replacing hyperlink [257717 - 257755] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:48,327 [main] TRACE AbstractWordWriter - replacing hyperlink [257817 - 257838] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:48,381 [main] TRACE AbstractWordWriter - replacing hyperlink [257893 - 257931] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:48,434 [main] TRACE AbstractWordWriter - replacing hyperlink [257991 - 258012] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:48,488 [main] TRACE AbstractWordWriter - replacing hyperlink [258067 - 258105] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:48,542 [main] TRACE AbstractWordWriter - replacing hyperlink [258164 - 258185] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:48,598 [main] TRACE AbstractWordWriter - replacing hyperlink [258240 - 258278] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:48,652 [main] TRACE AbstractWordWriter - replacing hyperlink [258342 - 258362] HYPERLINK Floating, UML56... +2024-09-07 21:46:48,706 [main] TRACE AbstractWordWriter - replacing hyperlink [258416 - 258454] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:48,761 [main] TRACE AbstractWordWriter - replacing hyperlink [258515 - 258536] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:48,818 [main] TRACE AbstractWordWriter - replacing hyperlink [258591 - 258629] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:48,870 [main] TRACE AbstractWordWriter - replacing hyperlink [258687 - 258708] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:48,927 [main] TRACE AbstractWordWriter - replacing hyperlink [258763 - 258801] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:48,982 [main] TRACE AbstractWordWriter - replacing hyperlink [258858 - 258879] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:49,038 [main] TRACE AbstractWordWriter - replacing hyperlink [258934 - 258972] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:49,091 [main] TRACE AbstractWordWriter - replacing hyperlink [259035 - 259056] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:49,149 [main] TRACE AbstractWordWriter - replacing hyperlink [259111 - 259149] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:49,205 [main] TRACE AbstractWordWriter - replacing hyperlink [259207 - 259228] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:49,258 [main] TRACE AbstractWordWriter - replacing hyperlink [259283 - 259321] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:49,314 [main] TRACE AbstractWordWriter - replacing hyperlink [259381 - 259402] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:49,368 [main] TRACE AbstractWordWriter - replacing hyperlink [259457 - 259495] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:49,424 [main] TRACE AbstractWordWriter - replacing hyperlink [259561 - 259582] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:49,481 [main] TRACE AbstractWordWriter - replacing hyperlink [259637 - 259675] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:49,536 [main] TRACE AbstractWordWriter - replacing hyperlink [259743 - 259764] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:49,595 [main] TRACE AbstractWordWriter - replacing hyperlink [259819 - 259857] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:49,649 [main] TRACE AbstractWordWriter - replacing hyperlink [259917 - 259938] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:49,703 [main] TRACE AbstractWordWriter - replacing hyperlink [259993 - 260031] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:49,755 [main] TRACE AbstractWordWriter - replacing hyperlink [260097 - 260118] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:49,811 [main] TRACE AbstractWordWriter - replacing hyperlink [260173 - 260211] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:49,863 [main] TRACE AbstractWordWriter - replacing hyperlink [260279 - 260300] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:49,918 [main] TRACE AbstractWordWriter - replacing hyperlink [260355 - 260393] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:49,978 [main] TRACE AbstractWordWriter - replacing hyperlink [260459 - 260480] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:50,032 [main] TRACE AbstractWordWriter - replacing hyperlink [260535 - 260560] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:50,089 [main] TRACE AbstractWordWriter - replacing hyperlink [260614 - 260635] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:50,147 [main] TRACE AbstractWordWriter - replacing hyperlink [260690 - 260715] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:50,201 [main] TRACE AbstractWordWriter - replacing hyperlink [260768 - 260789] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:50,257 [main] TRACE AbstractWordWriter - replacing hyperlink [260844 - 260869] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:50,310 [main] TRACE AbstractWordWriter - replacing hyperlink [260928 - 260949] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:50,363 [main] TRACE AbstractWordWriter - replacing hyperlink [261004 - 261029] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:50,416 [main] TRACE AbstractWordWriter - replacing hyperlink [261089 - 261110] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:50,469 [main] TRACE AbstractWordWriter - replacing hyperlink [261165 - 261190] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:50,525 [main] TRACE AbstractWordWriter - replacing hyperlink [261250 - 261271] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:50,577 [main] TRACE AbstractWordWriter - replacing hyperlink [261326 - 261351] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:50,628 [main] TRACE AbstractWordWriter - replacing hyperlink [261404 - 261425] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:50,682 [main] TRACE AbstractWordWriter - replacing hyperlink [261480 - 261505] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:50,734 [main] TRACE AbstractWordWriter - replacing hyperlink [261558 - 261579] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:50,790 [main] TRACE AbstractWordWriter - replacing hyperlink [261634 - 261659] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:50,844 [main] TRACE AbstractWordWriter - replacing hyperlink [261711 - 261732] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:50,899 [main] TRACE AbstractWordWriter - replacing hyperlink [261787 - 261812] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:50,955 [main] TRACE AbstractWordWriter - replacing hyperlink [261866 - 261887] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:51,013 [main] TRACE AbstractWordWriter - replacing hyperlink [261942 - 261967] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:51,073 [main] TRACE AbstractWordWriter - replacing hyperlink [262021 - 262042] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:51,130 [main] TRACE AbstractWordWriter - replacing hyperlink [262097 - 262122] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:51,186 [main] TRACE AbstractWordWriter - replacing hyperlink [262180 - 262201] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:51,243 [main] TRACE AbstractWordWriter - replacing hyperlink [262256 - 262281] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:51,299 [main] TRACE AbstractWordWriter - replacing hyperlink [262339 - 262360] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:51,354 [main] TRACE AbstractWordWriter - replacing hyperlink [262415 - 262440] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:51,409 [main] TRACE AbstractWordWriter - replacing hyperlink [262496 - 262517] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:51,465 [main] TRACE AbstractWordWriter - replacing hyperlink [262572 - 262597] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:51,519 [main] TRACE AbstractWordWriter - replacing hyperlink [262653 - 262674] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:51,574 [main] TRACE AbstractWordWriter - replacing hyperlink [262729 - 262754] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:51,631 [main] TRACE AbstractWordWriter - replacing hyperlink [262810 - 262831] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:51,689 [main] TRACE AbstractWordWriter - replacing hyperlink [262886 - 262911] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:51,743 [main] TRACE AbstractWordWriter - replacing hyperlink [262967 - 262988] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:51,799 [main] TRACE AbstractWordWriter - replacing hyperlink [263043 - 263068] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:51,855 [main] TRACE AbstractWordWriter - replacing hyperlink [263127 - 263148] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:51,909 [main] TRACE AbstractWordWriter - replacing hyperlink [263203 - 263228] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:51,964 [main] TRACE AbstractWordWriter - replacing hyperlink [263287 - 263308] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:52,019 [main] TRACE AbstractWordWriter - replacing hyperlink [263363 - 263388] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:52,079 [main] TRACE AbstractWordWriter - replacing hyperlink [263441 - 263462] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:52,139 [main] TRACE AbstractWordWriter - replacing hyperlink [263517 - 263542] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:52,195 [main] TRACE AbstractWordWriter - replacing hyperlink [263593 - 263614] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:52,250 [main] TRACE AbstractWordWriter - replacing hyperlink [263669 - 263694] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:52,307 [main] TRACE AbstractWordWriter - replacing hyperlink [263747 - 263768] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:52,362 [main] TRACE AbstractWordWriter - replacing hyperlink [263823 - 263848] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:52,415 [main] TRACE AbstractWordWriter - replacing hyperlink [263900 - 263921] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:52,472 [main] TRACE AbstractWordWriter - replacing hyperlink [263976 - 264001] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:52,529 [main] TRACE AbstractWordWriter - replacing hyperlink [264054 - 264075] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:52,584 [main] TRACE AbstractWordWriter - replacing hyperlink [264130 - 264155] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:52,643 [main] TRACE AbstractWordWriter - replacing hyperlink [264209 - 264230] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:52,699 [main] TRACE AbstractWordWriter - replacing hyperlink [264285 - 264310] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:52,754 [main] TRACE AbstractWordWriter - replacing hyperlink [264363 - 264384] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:52,813 [main] TRACE AbstractWordWriter - replacing hyperlink [264439 - 264464] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:52,868 [main] TRACE AbstractWordWriter - replacing hyperlink [264854 - 264877] HYPERLINK EntityIndex, UML66... +2024-09-07 21:46:52,923 [main] TRACE AbstractWordWriter - replacing hyperlink [264931 - 264955] HYPERLINK Association, UML100... +2024-09-07 21:46:52,977 [main] TRACE AbstractWordWriter - replacing hyperlink [264997 - 265014] HYPERLINK CntRs, UML67... +2024-09-07 21:46:53,034 [main] TRACE AbstractWordWriter - replacing hyperlink [265065 - 265089] HYPERLINK Association, UML100... +2024-09-07 21:46:53,090 [main] TRACE AbstractWordWriter - replacing hyperlink [265136 - 265159] HYPERLINK InetAddress, UML65... +2024-09-07 21:46:53,150 [main] TRACE AbstractWordWriter - replacing hyperlink [265216 - 265240] HYPERLINK Association, UML100... +2024-09-07 21:46:53,210 [main] TRACE AbstractWordWriter - replacing hyperlink [265291 - 265318] HYPERLINK InetAddressType, UML64... +2024-09-07 21:46:53,264 [main] TRACE AbstractWordWriter - replacing hyperlink [265379 - 265403] HYPERLINK Association, UML100... +2024-09-07 21:46:53,318 [main] TRACE AbstractWordWriter - replacing hyperlink [265446 - 265468] HYPERLINK ProtIdType, UML74... +2024-09-07 21:46:53,373 [main] TRACE AbstractWordWriter - replacing hyperlink [265524 - 265548] HYPERLINK Association, UML100... +2024-09-07 21:46:53,427 [main] TRACE AbstractWordWriter - replacing hyperlink [265597 - 265619] HYPERLINK CharString, UML59... +2024-09-07 21:46:53,481 [main] TRACE AbstractWordWriter - replacing hyperlink [265675 - 265699] HYPERLINK Association, UML100... +2024-09-07 21:46:53,538 [main] TRACE AbstractWordWriter - replacing hyperlink [265748 - 265770] HYPERLINK CharString, UML59... +2024-09-07 21:46:53,592 [main] TRACE AbstractWordWriter - replacing hyperlink [265826 - 265850] HYPERLINK Association, UML100... +2024-09-07 21:46:53,647 [main] TRACE AbstractWordWriter - replacing hyperlink [265897 - 265920] HYPERLINK InetAddress, UML65... +2024-09-07 21:46:53,703 [main] TRACE AbstractWordWriter - replacing hyperlink [265977 - 266001] HYPERLINK Association, UML100... +2024-09-07 21:46:53,756 [main] TRACE AbstractWordWriter - replacing hyperlink [266052 - 266079] HYPERLINK InetAddressType, UML64... +2024-09-07 21:46:53,811 [main] TRACE AbstractWordWriter - replacing hyperlink [266140 - 266164] HYPERLINK Association, UML100... +2024-09-07 21:46:53,867 [main] TRACE AbstractWordWriter - replacing hyperlink [266211 - 266232] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:53,921 [main] TRACE AbstractWordWriter - replacing hyperlink [266285 - 266309] HYPERLINK Association, UML100... +2024-09-07 21:46:53,977 [main] TRACE AbstractWordWriter - replacing hyperlink [266353 - 266372] HYPERLINK LnkType, UML78... +2024-09-07 21:46:54,032 [main] TRACE AbstractWordWriter - replacing hyperlink [266425 - 266449] HYPERLINK Association, UML100... +2024-09-07 21:46:54,090 [main] TRACE AbstractWordWriter - replacing hyperlink [266499 - 266523] HYPERLINK BooleanValue, UML52... +2024-09-07 21:46:54,145 [main] TRACE AbstractWordWriter - replacing hyperlink [266581 - 266611] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:54,204 [main] TRACE AbstractWordWriter - replacing hyperlink [266672 - 266691] HYPERLINK Integer, UML53... +2024-09-07 21:46:54,267 [main] TRACE AbstractWordWriter - replacing hyperlink [266744 - 266774] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:54,324 [main] TRACE AbstractWordWriter - replacing hyperlink [266830 - 266850] HYPERLINK Floating, UML56... +2024-09-07 21:46:54,378 [main] TRACE AbstractWordWriter - replacing hyperlink [266907 - 266937] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:54,434 [main] TRACE AbstractWordWriter - replacing hyperlink [266991 - 267011] HYPERLINK Floating, UML56... +2024-09-07 21:46:54,490 [main] TRACE AbstractWordWriter - replacing hyperlink [267068 - 267098] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:54,545 [main] TRACE AbstractWordWriter - replacing hyperlink [267162 - 267182] HYPERLINK Floating, UML56... +2024-09-07 21:46:54,600 [main] TRACE AbstractWordWriter - replacing hyperlink [267239 - 267269] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:54,654 [main] TRACE AbstractWordWriter - replacing hyperlink [267330 - 267350] HYPERLINK Floating, UML56... +2024-09-07 21:46:54,711 [main] TRACE AbstractWordWriter - replacing hyperlink [267407 - 267437] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:54,770 [main] TRACE AbstractWordWriter - replacing hyperlink [267493 - 267513] HYPERLINK Floating, UML56... +2024-09-07 21:46:54,827 [main] TRACE AbstractWordWriter - replacing hyperlink [267570 - 267600] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:54,881 [main] TRACE AbstractWordWriter - replacing hyperlink [267660 - 267680] HYPERLINK Floating, UML56... +2024-09-07 21:46:54,936 [main] TRACE AbstractWordWriter - replacing hyperlink [267737 - 267767] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:46:54,991 [main] TRACE AbstractWordWriter - replacing hyperlink [267818 - 267839] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:55,045 [main] TRACE AbstractWordWriter - replacing hyperlink [267894 - 267932] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:55,102 [main] TRACE AbstractWordWriter - replacing hyperlink [267991 - 268012] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:55,158 [main] TRACE AbstractWordWriter - replacing hyperlink [268067 - 268105] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:55,214 [main] TRACE AbstractWordWriter - replacing hyperlink [268164 - 268185] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:55,275 [main] TRACE AbstractWordWriter - replacing hyperlink [268240 - 268278] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:55,334 [main] TRACE AbstractWordWriter - replacing hyperlink [268337 - 268358] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:55,387 [main] TRACE AbstractWordWriter - replacing hyperlink [268413 - 268451] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:55,442 [main] TRACE AbstractWordWriter - replacing hyperlink [268513 - 268534] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:55,500 [main] TRACE AbstractWordWriter - replacing hyperlink [268589 - 268627] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:55,555 [main] TRACE AbstractWordWriter - replacing hyperlink [268687 - 268708] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:55,611 [main] TRACE AbstractWordWriter - replacing hyperlink [268763 - 268801] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:55,664 [main] TRACE AbstractWordWriter - replacing hyperlink [268860 - 268881] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:55,721 [main] TRACE AbstractWordWriter - replacing hyperlink [268936 - 268974] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:55,778 [main] TRACE AbstractWordWriter - replacing hyperlink [269038 - 269058] HYPERLINK Floating, UML56... +2024-09-07 21:46:55,836 [main] TRACE AbstractWordWriter - replacing hyperlink [269112 - 269150] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:55,891 [main] TRACE AbstractWordWriter - replacing hyperlink [269211 - 269232] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:55,945 [main] TRACE AbstractWordWriter - replacing hyperlink [269287 - 269325] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:56,001 [main] TRACE AbstractWordWriter - replacing hyperlink [269383 - 269404] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:56,058 [main] TRACE AbstractWordWriter - replacing hyperlink [269459 - 269497] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:56,124 [main] TRACE AbstractWordWriter - replacing hyperlink [269554 - 269575] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:56,182 [main] TRACE AbstractWordWriter - replacing hyperlink [269630 - 269668] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:56,238 [main] TRACE AbstractWordWriter - replacing hyperlink [269731 - 269752] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:56,293 [main] TRACE AbstractWordWriter - replacing hyperlink [269807 - 269845] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:56,355 [main] TRACE AbstractWordWriter - replacing hyperlink [269903 - 269924] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:56,410 [main] TRACE AbstractWordWriter - replacing hyperlink [269979 - 270017] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:56,466 [main] TRACE AbstractWordWriter - replacing hyperlink [270077 - 270098] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:56,521 [main] TRACE AbstractWordWriter - replacing hyperlink [270153 - 270191] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:56,577 [main] TRACE AbstractWordWriter - replacing hyperlink [270257 - 270278] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:56,633 [main] TRACE AbstractWordWriter - replacing hyperlink [270333 - 270371] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:56,687 [main] TRACE AbstractWordWriter - replacing hyperlink [270439 - 270460] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:56,744 [main] TRACE AbstractWordWriter - replacing hyperlink [270515 - 270553] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:56,796 [main] TRACE AbstractWordWriter - replacing hyperlink [270613 - 270634] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:56,852 [main] TRACE AbstractWordWriter - replacing hyperlink [270689 - 270727] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:56,910 [main] TRACE AbstractWordWriter - replacing hyperlink [270793 - 270814] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:56,966 [main] TRACE AbstractWordWriter - replacing hyperlink [270869 - 270907] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:57,017 [main] TRACE AbstractWordWriter - replacing hyperlink [270975 - 270996] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:57,071 [main] TRACE AbstractWordWriter - replacing hyperlink [271051 - 271089] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:46:57,128 [main] TRACE AbstractWordWriter - replacing hyperlink [271155 - 271176] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:57,185 [main] TRACE AbstractWordWriter - replacing hyperlink [271231 - 271256] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:57,242 [main] TRACE AbstractWordWriter - replacing hyperlink [271310 - 271331] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:57,298 [main] TRACE AbstractWordWriter - replacing hyperlink [271386 - 271411] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:57,353 [main] TRACE AbstractWordWriter - replacing hyperlink [271464 - 271485] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:57,420 [main] TRACE AbstractWordWriter - replacing hyperlink [271540 - 271565] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:57,474 [main] TRACE AbstractWordWriter - replacing hyperlink [271624 - 271645] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:57,528 [main] TRACE AbstractWordWriter - replacing hyperlink [271700 - 271725] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:57,588 [main] TRACE AbstractWordWriter - replacing hyperlink [271785 - 271806] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:57,643 [main] TRACE AbstractWordWriter - replacing hyperlink [271861 - 271886] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:57,701 [main] TRACE AbstractWordWriter - replacing hyperlink [271946 - 271967] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:57,756 [main] TRACE AbstractWordWriter - replacing hyperlink [272022 - 272047] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:57,812 [main] TRACE AbstractWordWriter - replacing hyperlink [272100 - 272121] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:57,868 [main] TRACE AbstractWordWriter - replacing hyperlink [272176 - 272201] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:57,924 [main] TRACE AbstractWordWriter - replacing hyperlink [272254 - 272275] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:57,982 [main] TRACE AbstractWordWriter - replacing hyperlink [272330 - 272355] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:58,038 [main] TRACE AbstractWordWriter - replacing hyperlink [272407 - 272428] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:58,094 [main] TRACE AbstractWordWriter - replacing hyperlink [272483 - 272508] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:58,149 [main] TRACE AbstractWordWriter - replacing hyperlink [272562 - 272583] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:58,207 [main] TRACE AbstractWordWriter - replacing hyperlink [272638 - 272663] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:58,265 [main] TRACE AbstractWordWriter - replacing hyperlink [272717 - 272738] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:58,323 [main] TRACE AbstractWordWriter - replacing hyperlink [272793 - 272818] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:58,381 [main] TRACE AbstractWordWriter - replacing hyperlink [272876 - 272897] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:58,436 [main] TRACE AbstractWordWriter - replacing hyperlink [272952 - 272977] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:58,504 [main] TRACE AbstractWordWriter - replacing hyperlink [273035 - 273056] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:58,560 [main] TRACE AbstractWordWriter - replacing hyperlink [273111 - 273136] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:58,615 [main] TRACE AbstractWordWriter - replacing hyperlink [273192 - 273213] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:58,670 [main] TRACE AbstractWordWriter - replacing hyperlink [273268 - 273293] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:58,727 [main] TRACE AbstractWordWriter - replacing hyperlink [273349 - 273370] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:58,782 [main] TRACE AbstractWordWriter - replacing hyperlink [273425 - 273450] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:58,842 [main] TRACE AbstractWordWriter - replacing hyperlink [273506 - 273527] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:58,897 [main] TRACE AbstractWordWriter - replacing hyperlink [273582 - 273607] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:58,951 [main] TRACE AbstractWordWriter - replacing hyperlink [273663 - 273684] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:59,007 [main] TRACE AbstractWordWriter - replacing hyperlink [273739 - 273764] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:59,058 [main] TRACE AbstractWordWriter - replacing hyperlink [273823 - 273844] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:59,114 [main] TRACE AbstractWordWriter - replacing hyperlink [273899 - 273924] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:59,172 [main] TRACE AbstractWordWriter - replacing hyperlink [273983 - 274004] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:59,228 [main] TRACE AbstractWordWriter - replacing hyperlink [274059 - 274084] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:59,284 [main] TRACE AbstractWordWriter - replacing hyperlink [274137 - 274158] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:59,342 [main] TRACE AbstractWordWriter - replacing hyperlink [274213 - 274238] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:59,398 [main] TRACE AbstractWordWriter - replacing hyperlink [274289 - 274310] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:59,455 [main] TRACE AbstractWordWriter - replacing hyperlink [274365 - 274390] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:59,513 [main] TRACE AbstractWordWriter - replacing hyperlink [274443 - 274464] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:59,574 [main] TRACE AbstractWordWriter - replacing hyperlink [274519 - 274544] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:59,630 [main] TRACE AbstractWordWriter - replacing hyperlink [274596 - 274617] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:59,687 [main] TRACE AbstractWordWriter - replacing hyperlink [274672 - 274697] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:59,744 [main] TRACE AbstractWordWriter - replacing hyperlink [274750 - 274771] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:59,800 [main] TRACE AbstractWordWriter - replacing hyperlink [274826 - 274851] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:59,856 [main] TRACE AbstractWordWriter - replacing hyperlink [274905 - 274926] HYPERLINK CounterTs, UML55... +2024-09-07 21:46:59,911 [main] TRACE AbstractWordWriter - replacing hyperlink [274981 - 275006] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:46:59,967 [main] TRACE AbstractWordWriter - replacing hyperlink [275059 - 275080] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:00,030 [main] TRACE AbstractWordWriter - replacing hyperlink [275135 - 275160] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:47:00,087 [main] TRACE AbstractWordWriter - replacing hyperlink [276211 - 276230] HYPERLINK Integer, UML53... +2024-09-07 21:47:00,144 [main] TRACE AbstractWordWriter - replacing hyperlink [276333 - 276352] HYPERLINK Integer, UML53... +2024-09-07 21:47:00,203 [main] TRACE AbstractWordWriter - replacing hyperlink [276446 - 276463] HYPERLINK CntRs, UML67... +2024-09-07 21:47:00,262 [main] TRACE AbstractWordWriter - replacing hyperlink [276552 - 276573] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:00,323 [main] TRACE AbstractWordWriter - replacing hyperlink [276705 - 276724] HYPERLINK Integer, UML53... +2024-09-07 21:47:00,387 [main] TRACE AbstractWordWriter - replacing hyperlink [276821 - 276840] HYPERLINK Integer, UML53... +2024-09-07 21:47:00,444 [main] TRACE AbstractWordWriter - replacing hyperlink [276928 - 276947] HYPERLINK Integer, UML53... +2024-09-07 21:47:00,500 [main] TRACE AbstractWordWriter - replacing hyperlink [277038 - 277057] HYPERLINK Integer, UML53... +2024-09-07 21:47:00,556 [main] TRACE AbstractWordWriter - replacing hyperlink [277146 - 277167] HYPERLINK EventType, UML72... +2024-09-07 21:47:00,618 [main] TRACE AbstractWordWriter - replacing hyperlink [277267 - 277288] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:00,675 [main] TRACE AbstractWordWriter - replacing hyperlink [277437 - 277458] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:00,734 [main] TRACE AbstractWordWriter - replacing hyperlink [277626 - 277647] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:00,793 [main] TRACE AbstractWordWriter - replacing hyperlink [277934 - 277953] HYPERLINK Integer, UML53... +2024-09-07 21:47:00,863 [main] TRACE AbstractWordWriter - replacing hyperlink [278048 - 278067] HYPERLINK Integer, UML53... +2024-09-07 21:47:00,931 [main] TRACE AbstractWordWriter - replacing hyperlink [278153 - 278172] HYPERLINK Integer, UML53... +2024-09-07 21:47:00,986 [main] TRACE AbstractWordWriter - replacing hyperlink [278268 - 278287] HYPERLINK Integer, UML53... +2024-09-07 21:47:01,042 [main] TRACE AbstractWordWriter - replacing hyperlink [279193 - 279214] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:01,100 [main] TRACE AbstractWordWriter - replacing hyperlink [279441 - 279462] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:01,156 [main] TRACE AbstractWordWriter - replacing hyperlink [279687 - 279708] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:01,211 [main] TRACE AbstractWordWriter - replacing hyperlink [279825 - 279846] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:01,269 [main] TRACE AbstractWordWriter - replacing hyperlink [279959 - 279980] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:01,325 [main] TRACE AbstractWordWriter - replacing hyperlink [280149 - 280169] HYPERLINK Floating, UML56... +2024-09-07 21:47:01,381 [main] TRACE AbstractWordWriter - replacing hyperlink [280362 - 280383] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:01,436 [main] TRACE AbstractWordWriter - replacing hyperlink [280471 - 280492] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:01,491 [main] TRACE AbstractWordWriter - replacing hyperlink [280572 - 280593] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:01,546 [main] TRACE AbstractWordWriter - replacing hyperlink [280828 - 280849] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:01,603 [main] TRACE AbstractWordWriter - replacing hyperlink [281082 - 281103] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:01,665 [main] TRACE AbstractWordWriter - replacing hyperlink [281345 - 281366] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:01,726 [main] TRACE AbstractWordWriter - replacing hyperlink [281609 - 281630] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:01,783 [main] TRACE AbstractWordWriter - replacing hyperlink [282081 - 282102] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:01,841 [main] TRACE AbstractWordWriter - replacing hyperlink [282231 - 282252] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:01,898 [main] TRACE AbstractWordWriter - replacing hyperlink [282350 - 282367] HYPERLINK CntRs, UML67... +2024-09-07 21:47:01,952 [main] TRACE AbstractWordWriter - replacing hyperlink [282454 - 282475] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:02,008 [main] TRACE AbstractWordWriter - replacing hyperlink [282596 - 282617] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:02,063 [main] TRACE AbstractWordWriter - replacing hyperlink [282738 - 282759] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:02,117 [main] TRACE AbstractWordWriter - replacing hyperlink [282864 - 282885] HYPERLINK EventType, UML72... +2024-09-07 21:47:02,175 [main] TRACE AbstractWordWriter - replacing hyperlink [282977 - 283004] HYPERLINK MMSAssociation, UML104... +2024-09-07 21:47:02,232 [main] TRACE AbstractWordWriter - replacing hyperlink [283161 - 283182] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:02,288 [main] TRACE AbstractWordWriter - replacing hyperlink [283326 - 283348] HYPERLINK CharString, UML59... +2024-09-07 21:47:02,344 [main] TRACE AbstractWordWriter - replacing hyperlink [283432 - 283454] HYPERLINK CharString, UML59... +2024-09-07 21:47:02,425 [main] TRACE AbstractWordWriter - replacing hyperlink [283543 - 283579] HYPERLINK MMSSecurityNotification, UML115... +2024-09-07 21:47:02,484 [main] TRACE AbstractWordWriter - replacing hyperlink [283696 - 283715] HYPERLINK Integer, UML53... +2024-09-07 21:47:02,542 [main] TRACE AbstractWordWriter - replacing hyperlink [283878 - 283899] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:02,599 [main] TRACE AbstractWordWriter - replacing hyperlink [284067 - 284095] HYPERLINK MMSNotification, UML116... +2024-09-07 21:47:02,656 [main] TRACE AbstractWordWriter - replacing hyperlink [284199 - 284220] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:02,712 [main] TRACE AbstractWordWriter - replacing hyperlink [284363 - 284384] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:02,773 [main] TRACE AbstractWordWriter - replacing hyperlink [284522 - 284543] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:02,833 [main] TRACE AbstractWordWriter - replacing hyperlink [284646 - 284667] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:02,891 [main] TRACE AbstractWordWriter - replacing hyperlink [284722 - 284750] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:47:02,949 [main] TRACE AbstractWordWriter - replacing hyperlink [284801 - 284822] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:03,005 [main] TRACE AbstractWordWriter - replacing hyperlink [284877 - 284905] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:47:03,062 [main] TRACE AbstractWordWriter - replacing hyperlink [284958 - 284979] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:03,117 [main] TRACE AbstractWordWriter - replacing hyperlink [285034 - 285062] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:47:03,171 [main] TRACE AbstractWordWriter - replacing hyperlink [285115 - 285136] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:03,228 [main] TRACE AbstractWordWriter - replacing hyperlink [285191 - 285219] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:47:03,282 [main] TRACE AbstractWordWriter - replacing hyperlink [285272 - 285293] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:03,339 [main] TRACE AbstractWordWriter - replacing hyperlink [285348 - 285376] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:47:03,398 [main] TRACE AbstractWordWriter - replacing hyperlink [285431 - 285451] HYPERLINK Floating, UML56... +2024-09-07 21:47:03,453 [main] TRACE AbstractWordWriter - replacing hyperlink [285508 - 285536] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:47:03,506 [main] TRACE AbstractWordWriter - replacing hyperlink [285588 - 285609] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:03,560 [main] TRACE AbstractWordWriter - replacing hyperlink [285664 - 285692] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:47:03,616 [main] TRACE AbstractWordWriter - replacing hyperlink [285744 - 285765] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:03,671 [main] TRACE AbstractWordWriter - replacing hyperlink [285820 - 285848] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:47:03,724 [main] TRACE AbstractWordWriter - replacing hyperlink [285897 - 285918] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:03,783 [main] TRACE AbstractWordWriter - replacing hyperlink [285973 - 286001] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:47:03,843 [main] TRACE AbstractWordWriter - replacing hyperlink [286050 - 286071] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:03,898 [main] TRACE AbstractWordWriter - replacing hyperlink [286126 - 286154] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:47:03,953 [main] TRACE AbstractWordWriter - replacing hyperlink [286204 - 286225] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:04,008 [main] TRACE AbstractWordWriter - replacing hyperlink [286280 - 286308] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:47:04,065 [main] TRACE AbstractWordWriter - replacing hyperlink [286358 - 286379] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:04,120 [main] TRACE AbstractWordWriter - replacing hyperlink [286434 - 286462] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:47:04,180 [main] TRACE AbstractWordWriter - replacing hyperlink [286517 - 286538] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:04,237 [main] TRACE AbstractWordWriter - replacing hyperlink [286593 - 286621] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:47:04,295 [main] TRACE AbstractWordWriter - replacing hyperlink [287053 - 287079] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:47:04,352 [main] TRACE AbstractWordWriter - replacing hyperlink [287174 - 287197] HYPERLINK EntityIndex, UML66... +2024-09-07 21:47:04,407 [main] TRACE AbstractWordWriter - replacing hyperlink [287271 - 287295] HYPERLINK BooleanValue, UML52... +2024-09-07 21:47:04,461 [main] TRACE AbstractWordWriter - replacing hyperlink [287397 - 287414] HYPERLINK CntRs, UML67... +2024-09-07 21:47:04,516 [main] TRACE AbstractWordWriter - replacing hyperlink [287497 - 287517] HYPERLINK Floating, UML56... +2024-09-07 21:47:04,570 [main] TRACE AbstractWordWriter - replacing hyperlink [287649 - 287673] HYPERLINK BooleanValue, UML52... +2024-09-07 21:47:04,626 [main] TRACE AbstractWordWriter - replacing hyperlink [287807 - 287830] HYPERLINK InetAddress, UML65... +2024-09-07 21:47:04,681 [main] TRACE AbstractWordWriter - replacing hyperlink [287931 - 287958] HYPERLINK InetAddressType, UML64... +2024-09-07 21:47:04,735 [main] TRACE AbstractWordWriter - replacing hyperlink [288047 - 288067] HYPERLINK Selector, UML62... +2024-09-07 21:47:04,793 [main] TRACE AbstractWordWriter - replacing hyperlink [288159 - 288179] HYPERLINK Selector, UML62... +2024-09-07 21:47:04,856 [main] TRACE AbstractWordWriter - replacing hyperlink [288266 - 288286] HYPERLINK Selector, UML62... +2024-09-07 21:47:04,912 [main] TRACE AbstractWordWriter - replacing hyperlink [288384 - 288403] HYPERLINK Integer, UML53... +2024-09-07 21:47:04,966 [main] TRACE AbstractWordWriter - replacing hyperlink [288535 - 288557] HYPERLINK FloatingTs, UML57... +2024-09-07 21:47:05,021 [main] TRACE AbstractWordWriter - replacing hyperlink [288827 - 288858] HYPERLINK SecurityProfileType, UML76... +2024-09-07 21:47:05,078 [main] TRACE AbstractWordWriter - replacing hyperlink [289026 - 289047] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:05,135 [main] TRACE AbstractWordWriter - replacing hyperlink [289102 - 289130] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:47:05,193 [main] TRACE AbstractWordWriter - replacing hyperlink [289181 - 289202] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:05,249 [main] TRACE AbstractWordWriter - replacing hyperlink [289257 - 289285] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:47:05,307 [main] TRACE AbstractWordWriter - replacing hyperlink [289338 - 289359] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:05,367 [main] TRACE AbstractWordWriter - replacing hyperlink [289414 - 289442] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:47:05,425 [main] TRACE AbstractWordWriter - replacing hyperlink [289495 - 289516] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:05,482 [main] TRACE AbstractWordWriter - replacing hyperlink [289571 - 289599] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:47:05,539 [main] TRACE AbstractWordWriter - replacing hyperlink [289652 - 289673] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:05,596 [main] TRACE AbstractWordWriter - replacing hyperlink [289728 - 289756] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:47:05,652 [main] TRACE AbstractWordWriter - replacing hyperlink [289811 - 289831] HYPERLINK Floating, UML56... +2024-09-07 21:47:05,708 [main] TRACE AbstractWordWriter - replacing hyperlink [289888 - 289916] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:47:05,763 [main] TRACE AbstractWordWriter - replacing hyperlink [289968 - 289989] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:05,820 [main] TRACE AbstractWordWriter - replacing hyperlink [290044 - 290072] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:47:05,879 [main] TRACE AbstractWordWriter - replacing hyperlink [290124 - 290145] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:05,940 [main] TRACE AbstractWordWriter - replacing hyperlink [290200 - 290228] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:47:05,996 [main] TRACE AbstractWordWriter - replacing hyperlink [290277 - 290298] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:06,053 [main] TRACE AbstractWordWriter - replacing hyperlink [290353 - 290381] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:47:06,111 [main] TRACE AbstractWordWriter - replacing hyperlink [290430 - 290451] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:06,168 [main] TRACE AbstractWordWriter - replacing hyperlink [290506 - 290534] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:47:06,225 [main] TRACE AbstractWordWriter - replacing hyperlink [290584 - 290605] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:06,282 [main] TRACE AbstractWordWriter - replacing hyperlink [290660 - 290688] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:47:06,342 [main] TRACE AbstractWordWriter - replacing hyperlink [290738 - 290759] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:06,399 [main] TRACE AbstractWordWriter - replacing hyperlink [290814 - 290842] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:47:06,454 [main] TRACE AbstractWordWriter - replacing hyperlink [290897 - 290918] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:06,511 [main] TRACE AbstractWordWriter - replacing hyperlink [290973 - 291001] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:47:06,567 [main] TRACE AbstractWordWriter - replacing hyperlink [291055 - 291079] HYPERLINK BooleanValue, UML52... +2024-09-07 21:47:06,623 [main] TRACE AbstractWordWriter - replacing hyperlink [291137 - 291167] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:47:06,675 [main] TRACE AbstractWordWriter - replacing hyperlink [291228 - 291247] HYPERLINK Integer, UML53... +2024-09-07 21:47:06,731 [main] TRACE AbstractWordWriter - replacing hyperlink [291300 - 291330] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:47:06,788 [main] TRACE AbstractWordWriter - replacing hyperlink [291386 - 291406] HYPERLINK Floating, UML56... +2024-09-07 21:47:06,847 [main] TRACE AbstractWordWriter - replacing hyperlink [291463 - 291493] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:47:06,904 [main] TRACE AbstractWordWriter - replacing hyperlink [291547 - 291567] HYPERLINK Floating, UML56... +2024-09-07 21:47:06,959 [main] TRACE AbstractWordWriter - replacing hyperlink [291624 - 291654] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:47:07,021 [main] TRACE AbstractWordWriter - replacing hyperlink [291718 - 291738] HYPERLINK Floating, UML56... +2024-09-07 21:47:07,076 [main] TRACE AbstractWordWriter - replacing hyperlink [291795 - 291825] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:47:07,134 [main] TRACE AbstractWordWriter - replacing hyperlink [291886 - 291906] HYPERLINK Floating, UML56... +2024-09-07 21:47:07,190 [main] TRACE AbstractWordWriter - replacing hyperlink [291963 - 291993] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:47:07,246 [main] TRACE AbstractWordWriter - replacing hyperlink [292049 - 292069] HYPERLINK Floating, UML56... +2024-09-07 21:47:07,305 [main] TRACE AbstractWordWriter - replacing hyperlink [292126 - 292156] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:47:07,362 [main] TRACE AbstractWordWriter - replacing hyperlink [292216 - 292236] HYPERLINK Floating, UML56... +2024-09-07 21:47:07,420 [main] TRACE AbstractWordWriter - replacing hyperlink [292293 - 292323] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:47:07,477 [main] TRACE AbstractWordWriter - replacing hyperlink [292745 - 292766] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:07,539 [main] TRACE AbstractWordWriter - replacing hyperlink [292874 - 292895] HYPERLINK EventType, UML72... +2024-09-07 21:47:07,595 [main] TRACE AbstractWordWriter - replacing hyperlink [292995 - 293016] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:07,652 [main] TRACE AbstractWordWriter - replacing hyperlink [293160 - 293181] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:07,708 [main] TRACE AbstractWordWriter - replacing hyperlink [293619 - 293640] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:07,765 [main] TRACE AbstractWordWriter - replacing hyperlink [293761 - 293782] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:07,823 [main] TRACE AbstractWordWriter - replacing hyperlink [293900 - 293921] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:07,884 [main] TRACE AbstractWordWriter - replacing hyperlink [294016 - 294037] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:07,941 [main] TRACE AbstractWordWriter - replacing hyperlink [294849 - 294870] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:07,997 [main] TRACE AbstractWordWriter - replacing hyperlink [294984 - 295005] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:08,059 [main] TRACE AbstractWordWriter - replacing hyperlink [295130 - 295151] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:08,116 [main] TRACE AbstractWordWriter - replacing hyperlink [295660 - 295682] HYPERLINK CharString, UML59... +2024-09-07 21:47:08,174 [main] TRACE AbstractWordWriter - replacing hyperlink [295787 - 295804] HYPERLINK CntRs, UML67... +2024-09-07 21:47:08,230 [main] TRACE AbstractWordWriter - replacing hyperlink [295883 - 295904] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:08,285 [main] TRACE AbstractWordWriter - replacing hyperlink [296030 - 296052] HYPERLINK CharString, UML59... +2024-09-07 21:47:08,341 [main] TRACE AbstractWordWriter - replacing hyperlink [296152 - 296172] HYPERLINK Floating, UML56... +2024-09-07 21:47:08,399 [main] TRACE AbstractWordWriter - replacing hyperlink [296312 - 296333] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:08,455 [main] TRACE AbstractWordWriter - replacing hyperlink [296388 - 296415] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:47:08,510 [main] TRACE AbstractWordWriter - replacing hyperlink [296469 - 296490] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:08,567 [main] TRACE AbstractWordWriter - replacing hyperlink [296545 - 296572] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:47:08,622 [main] TRACE AbstractWordWriter - replacing hyperlink [296632 - 296653] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:08,678 [main] TRACE AbstractWordWriter - replacing hyperlink [296708 - 296735] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:47:08,734 [main] TRACE AbstractWordWriter - replacing hyperlink [297181 - 297203] HYPERLINK CharString, UML59... +2024-09-07 21:47:08,789 [main] TRACE AbstractWordWriter - replacing hyperlink [297308 - 297325] HYPERLINK CntRs, UML67... +2024-09-07 21:47:08,847 [main] TRACE AbstractWordWriter - replacing hyperlink [297406 - 297427] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:08,905 [main] TRACE AbstractWordWriter - replacing hyperlink [297666 - 297687] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:08,960 [main] TRACE AbstractWordWriter - replacing hyperlink [297805 - 297825] HYPERLINK Floating, UML56... +2024-09-07 21:47:09,016 [main] TRACE AbstractWordWriter - replacing hyperlink [297957 - 297979] HYPERLINK CharString, UML59... +2024-09-07 21:47:09,074 [main] TRACE AbstractWordWriter - replacing hyperlink [298072 - 298096] HYPERLINK CharStringTs, UML60... +2024-09-07 21:47:09,140 [main] TRACE AbstractWordWriter - replacing hyperlink [298206 - 298227] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:09,197 [main] TRACE AbstractWordWriter - replacing hyperlink [298282 - 298309] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:47:09,252 [main] TRACE AbstractWordWriter - replacing hyperlink [298363 - 298384] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:09,310 [main] TRACE AbstractWordWriter - replacing hyperlink [298439 - 298466] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:47:09,371 [main] TRACE AbstractWordWriter - replacing hyperlink [298526 - 298547] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:09,435 [main] TRACE AbstractWordWriter - replacing hyperlink [298602 - 298629] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:47:09,491 [main] TRACE AbstractWordWriter - replacing hyperlink [299455 - 299472] HYPERLINK CntRs, UML67... +2024-09-07 21:47:09,549 [main] TRACE AbstractWordWriter - replacing hyperlink [299560 - 299581] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:09,606 [main] TRACE AbstractWordWriter - replacing hyperlink [299690 - 299711] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:09,662 [main] TRACE AbstractWordWriter - replacing hyperlink [299842 - 299879] HYPERLINK SVPublisherAssociationIP, UML119... +2024-09-07 21:47:09,717 [main] TRACE AbstractWordWriter - replacing hyperlink [300050 - 300087] HYPERLINK SVPublisherAssociationL2, UML120... +2024-09-07 21:47:09,773 [main] TRACE AbstractWordWriter - replacing hyperlink [300286 - 300313] HYPERLINK SVNotification, UML130... +2024-09-07 21:47:09,831 [main] TRACE AbstractWordWriter - replacing hyperlink [300400 - 300437] HYPERLINK SVSubcriberAssociationIP, UML124... +2024-09-07 21:47:09,888 [main] TRACE AbstractWordWriter - replacing hyperlink [300609 - 300646] HYPERLINK SVSubcriberAssociationL2, UML125... +2024-09-07 21:47:09,952 [main] TRACE AbstractWordWriter - replacing hyperlink [300843 - 300864] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:10,008 [main] TRACE AbstractWordWriter - replacing hyperlink [300919 - 300946] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:47:10,063 [main] TRACE AbstractWordWriter - replacing hyperlink [301000 - 301021] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:10,121 [main] TRACE AbstractWordWriter - replacing hyperlink [301076 - 301103] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:47:10,186 [main] TRACE AbstractWordWriter - replacing hyperlink [301163 - 301184] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:10,243 [main] TRACE AbstractWordWriter - replacing hyperlink [301239 - 301266] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:47:10,300 [main] TRACE AbstractWordWriter - replacing hyperlink [301801 - 301824] HYPERLINK InetAddress, UML65... +2024-09-07 21:47:10,358 [main] TRACE AbstractWordWriter - replacing hyperlink [301910 - 301937] HYPERLINK InetAddressType, UML64... +2024-09-07 21:47:10,433 [main] TRACE AbstractWordWriter - replacing hyperlink [302021 - 302043] HYPERLINK CharString, UML59... +2024-09-07 21:47:10,490 [main] TRACE AbstractWordWriter - replacing hyperlink [302096 - 302137] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 21:47:10,551 [main] TRACE AbstractWordWriter - replacing hyperlink [302196 - 302213] HYPERLINK CntRs, UML67... +2024-09-07 21:47:10,607 [main] TRACE AbstractWordWriter - replacing hyperlink [302264 - 302305] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 21:47:10,664 [main] TRACE AbstractWordWriter - replacing hyperlink [302364 - 302385] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:10,719 [main] TRACE AbstractWordWriter - replacing hyperlink [302440 - 302481] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 21:47:10,785 [main] TRACE AbstractWordWriter - replacing hyperlink [302540 - 302562] HYPERLINK CharString, UML59... +2024-09-07 21:47:10,840 [main] TRACE AbstractWordWriter - replacing hyperlink [302618 - 302659] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 21:47:10,895 [main] TRACE AbstractWordWriter - replacing hyperlink [302727 - 302747] HYPERLINK Floating, UML56... +2024-09-07 21:47:10,952 [main] TRACE AbstractWordWriter - replacing hyperlink [302801 - 302842] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 21:47:11,010 [main] TRACE AbstractWordWriter - replacing hyperlink [302913 - 302934] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:11,066 [main] TRACE AbstractWordWriter - replacing hyperlink [302989 - 303016] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:47:11,124 [main] TRACE AbstractWordWriter - replacing hyperlink [303070 - 303091] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:11,180 [main] TRACE AbstractWordWriter - replacing hyperlink [303146 - 303173] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:47:11,240 [main] TRACE AbstractWordWriter - replacing hyperlink [303233 - 303254] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:11,298 [main] TRACE AbstractWordWriter - replacing hyperlink [303309 - 303336] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:47:11,352 [main] TRACE AbstractWordWriter - replacing hyperlink [303879 - 303901] HYPERLINK MacAddress, UML63... +2024-09-07 21:47:11,409 [main] TRACE AbstractWordWriter - replacing hyperlink [304032 - 304054] HYPERLINK CharString, UML59... +2024-09-07 21:47:11,468 [main] TRACE AbstractWordWriter - replacing hyperlink [304107 - 304148] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 21:47:11,527 [main] TRACE AbstractWordWriter - replacing hyperlink [304207 - 304224] HYPERLINK CntRs, UML67... +2024-09-07 21:47:11,584 [main] TRACE AbstractWordWriter - replacing hyperlink [304275 - 304316] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 21:47:11,641 [main] TRACE AbstractWordWriter - replacing hyperlink [304375 - 304396] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:11,700 [main] TRACE AbstractWordWriter - replacing hyperlink [304451 - 304492] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 21:47:11,756 [main] TRACE AbstractWordWriter - replacing hyperlink [304551 - 304573] HYPERLINK CharString, UML59... +2024-09-07 21:47:11,813 [main] TRACE AbstractWordWriter - replacing hyperlink [304629 - 304670] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 21:47:11,871 [main] TRACE AbstractWordWriter - replacing hyperlink [304738 - 304758] HYPERLINK Floating, UML56... +2024-09-07 21:47:11,926 [main] TRACE AbstractWordWriter - replacing hyperlink [304812 - 304853] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 21:47:11,981 [main] TRACE AbstractWordWriter - replacing hyperlink [304924 - 304945] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:12,037 [main] TRACE AbstractWordWriter - replacing hyperlink [305000 - 305027] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:47:12,094 [main] TRACE AbstractWordWriter - replacing hyperlink [305081 - 305102] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:12,151 [main] TRACE AbstractWordWriter - replacing hyperlink [305157 - 305184] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:47:12,209 [main] TRACE AbstractWordWriter - replacing hyperlink [305244 - 305265] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:12,266 [main] TRACE AbstractWordWriter - replacing hyperlink [305320 - 305347] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:47:12,329 [main] TRACE AbstractWordWriter - replacing hyperlink [305881 - 305904] HYPERLINK InetAddress, UML65... +2024-09-07 21:47:12,387 [main] TRACE AbstractWordWriter - replacing hyperlink [305984 - 306011] HYPERLINK InetAddressType, UML64... +2024-09-07 21:47:12,448 [main] TRACE AbstractWordWriter - replacing hyperlink [306095 - 306117] HYPERLINK CharString, UML59... +2024-09-07 21:47:12,505 [main] TRACE AbstractWordWriter - replacing hyperlink [306170 - 306212] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:47:12,562 [main] TRACE AbstractWordWriter - replacing hyperlink [306272 - 306289] HYPERLINK CntRs, UML67... +2024-09-07 21:47:12,618 [main] TRACE AbstractWordWriter - replacing hyperlink [306340 - 306382] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:47:12,676 [main] TRACE AbstractWordWriter - replacing hyperlink [306444 - 306465] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:12,730 [main] TRACE AbstractWordWriter - replacing hyperlink [306520 - 306562] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:47:12,788 [main] TRACE AbstractWordWriter - replacing hyperlink [306640 - 306661] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:12,846 [main] TRACE AbstractWordWriter - replacing hyperlink [306716 - 306758] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:47:12,906 [main] TRACE AbstractWordWriter - replacing hyperlink [306827 - 306847] HYPERLINK Floating, UML56... +2024-09-07 21:47:12,961 [main] TRACE AbstractWordWriter - replacing hyperlink [306901 - 306943] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:47:13,018 [main] TRACE AbstractWordWriter - replacing hyperlink [307003 - 307025] HYPERLINK CharString, UML59... +2024-09-07 21:47:13,075 [main] TRACE AbstractWordWriter - replacing hyperlink [307081 - 307123] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:47:13,131 [main] TRACE AbstractWordWriter - replacing hyperlink [307185 - 307209] HYPERLINK CharStringTs, UML60... +2024-09-07 21:47:13,190 [main] TRACE AbstractWordWriter - replacing hyperlink [307267 - 307309] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:47:13,246 [main] TRACE AbstractWordWriter - replacing hyperlink [307381 - 307402] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:13,302 [main] TRACE AbstractWordWriter - replacing hyperlink [307457 - 307484] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:47:13,363 [main] TRACE AbstractWordWriter - replacing hyperlink [307538 - 307559] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:13,427 [main] TRACE AbstractWordWriter - replacing hyperlink [307614 - 307641] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:47:13,489 [main] TRACE AbstractWordWriter - replacing hyperlink [307701 - 307722] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:13,562 [main] TRACE AbstractWordWriter - replacing hyperlink [307777 - 307804] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:47:13,631 [main] TRACE AbstractWordWriter - replacing hyperlink [308346 - 308368] HYPERLINK MacAddress, UML63... +2024-09-07 21:47:13,692 [main] TRACE AbstractWordWriter - replacing hyperlink [308499 - 308521] HYPERLINK CharString, UML59... +2024-09-07 21:47:13,751 [main] TRACE AbstractWordWriter - replacing hyperlink [308574 - 308616] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:47:13,809 [main] TRACE AbstractWordWriter - replacing hyperlink [308676 - 308693] HYPERLINK CntRs, UML67... +2024-09-07 21:47:13,869 [main] TRACE AbstractWordWriter - replacing hyperlink [308744 - 308786] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:47:13,925 [main] TRACE AbstractWordWriter - replacing hyperlink [308848 - 308869] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:13,983 [main] TRACE AbstractWordWriter - replacing hyperlink [308924 - 308966] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:47:14,041 [main] TRACE AbstractWordWriter - replacing hyperlink [309044 - 309065] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:14,098 [main] TRACE AbstractWordWriter - replacing hyperlink [309120 - 309162] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:47:14,154 [main] TRACE AbstractWordWriter - replacing hyperlink [309231 - 309251] HYPERLINK Floating, UML56... +2024-09-07 21:47:14,212 [main] TRACE AbstractWordWriter - replacing hyperlink [309305 - 309347] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:47:14,267 [main] TRACE AbstractWordWriter - replacing hyperlink [309407 - 309429] HYPERLINK CharString, UML59... +2024-09-07 21:47:14,327 [main] TRACE AbstractWordWriter - replacing hyperlink [309485 - 309527] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:47:14,385 [main] TRACE AbstractWordWriter - replacing hyperlink [309589 - 309613] HYPERLINK CharStringTs, UML60... +2024-09-07 21:47:14,454 [main] TRACE AbstractWordWriter - replacing hyperlink [309671 - 309713] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:47:14,511 [main] TRACE AbstractWordWriter - replacing hyperlink [309785 - 309806] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:14,568 [main] TRACE AbstractWordWriter - replacing hyperlink [309861 - 309888] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:47:14,623 [main] TRACE AbstractWordWriter - replacing hyperlink [309942 - 309963] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:14,680 [main] TRACE AbstractWordWriter - replacing hyperlink [310018 - 310045] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:47:14,739 [main] TRACE AbstractWordWriter - replacing hyperlink [310105 - 310126] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:14,793 [main] TRACE AbstractWordWriter - replacing hyperlink [310181 - 310208] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:47:14,852 [main] TRACE AbstractWordWriter - replacing hyperlink [310593 - 310614] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:14,910 [main] TRACE AbstractWordWriter - replacing hyperlink [310669 - 310696] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:47:14,966 [main] TRACE AbstractWordWriter - replacing hyperlink [310750 - 310771] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:15,024 [main] TRACE AbstractWordWriter - replacing hyperlink [310826 - 310853] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:47:15,081 [main] TRACE AbstractWordWriter - replacing hyperlink [310913 - 310934] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:15,137 [main] TRACE AbstractWordWriter - replacing hyperlink [310989 - 311016] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:47:15,195 [main] TRACE AbstractWordWriter - replacing hyperlink [311884 - 311908] HYPERLINK BooleanValue, UML52... +2024-09-07 21:47:15,252 [main] TRACE AbstractWordWriter - replacing hyperlink [312055 - 312079] HYPERLINK BooleanValue, UML52... +2024-09-07 21:47:15,307 [main] TRACE AbstractWordWriter - replacing hyperlink [312163 - 312182] HYPERLINK Integer, UML53... +2024-09-07 21:47:15,365 [main] TRACE AbstractWordWriter - replacing hyperlink [312279 - 312300] HYPERLINK IntegerTs, UML58... +2024-09-07 21:47:15,423 [main] TRACE AbstractWordWriter - replacing hyperlink [312446 - 312467] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:15,487 [main] TRACE AbstractWordWriter - replacing hyperlink [312585 - 312606] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:15,549 [main] TRACE AbstractWordWriter - replacing hyperlink [312720 - 312746] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:47:15,606 [main] TRACE AbstractWordWriter - replacing hyperlink [313070 - 313092] HYPERLINK CharString, UML59... +2024-09-07 21:47:15,662 [main] TRACE AbstractWordWriter - replacing hyperlink [313147 - 313171] HYPERLINK CharStringTs, UML60... +2024-09-07 21:47:15,718 [main] TRACE AbstractWordWriter - replacing hyperlink [313224 - 313246] HYPERLINK CharString, UML59... +2024-09-07 21:47:15,772 [main] TRACE AbstractWordWriter - replacing hyperlink [313332 - 313356] HYPERLINK CharStringTs, UML60... +2024-09-07 21:47:15,828 [main] TRACE AbstractWordWriter - replacing hyperlink [313448 - 313469] HYPERLINK IntegerTs, UML58... +2024-09-07 21:47:15,883 [main] TRACE AbstractWordWriter - replacing hyperlink [313575 - 313596] HYPERLINK IntegerTs, UML58... +2024-09-07 21:47:15,942 [main] TRACE AbstractWordWriter - replacing hyperlink [313708 - 313729] HYPERLINK IntegerTs, UML58... +2024-09-07 21:47:16,002 [main] TRACE AbstractWordWriter - replacing hyperlink [313813 - 313834] HYPERLINK IntegerTs, UML58... +2024-09-07 21:47:16,058 [main] TRACE AbstractWordWriter - replacing hyperlink [313910 - 313931] HYPERLINK Timestamp, UML61... +2024-09-07 21:47:16,118 [main] TRACE AbstractWordWriter - replacing hyperlink [313982 - 314004] HYPERLINK CharString, UML59... +2024-09-07 21:47:16,175 [main] TRACE AbstractWordWriter - replacing hyperlink [314057 - 314099] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:47:16,234 [main] TRACE AbstractWordWriter - replacing hyperlink [314159 - 314176] HYPERLINK CntRs, UML67... +2024-09-07 21:47:16,292 [main] TRACE AbstractWordWriter - replacing hyperlink [314227 - 314269] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:47:16,352 [main] TRACE AbstractWordWriter - replacing hyperlink [314331 - 314352] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:16,408 [main] TRACE AbstractWordWriter - replacing hyperlink [314407 - 314449] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:47:16,468 [main] TRACE AbstractWordWriter - replacing hyperlink [314527 - 314548] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:16,526 [main] TRACE AbstractWordWriter - replacing hyperlink [314603 - 314645] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:47:16,592 [main] TRACE AbstractWordWriter - replacing hyperlink [314714 - 314734] HYPERLINK Floating, UML56... +2024-09-07 21:47:16,649 [main] TRACE AbstractWordWriter - replacing hyperlink [314788 - 314830] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:47:16,708 [main] TRACE AbstractWordWriter - replacing hyperlink [314890 - 314912] HYPERLINK CharString, UML59... +2024-09-07 21:47:16,766 [main] TRACE AbstractWordWriter - replacing hyperlink [314968 - 315010] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:47:16,822 [main] TRACE AbstractWordWriter - replacing hyperlink [315072 - 315096] HYPERLINK CharStringTs, UML60... +2024-09-07 21:47:16,881 [main] TRACE AbstractWordWriter - replacing hyperlink [315154 - 315196] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:47:16,939 [main] TRACE AbstractWordWriter - replacing hyperlink [315268 - 315289] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:16,996 [main] TRACE AbstractWordWriter - replacing hyperlink [315344 - 315371] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:47:17,053 [main] TRACE AbstractWordWriter - replacing hyperlink [315425 - 315446] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:17,107 [main] TRACE AbstractWordWriter - replacing hyperlink [315501 - 315528] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:47:17,165 [main] TRACE AbstractWordWriter - replacing hyperlink [315588 - 315609] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:17,221 [main] TRACE AbstractWordWriter - replacing hyperlink [315664 - 315691] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:47:17,279 [main] TRACE AbstractWordWriter - replacing hyperlink [316071 - 316088] HYPERLINK CntRs, UML67... +2024-09-07 21:47:17,335 [main] TRACE AbstractWordWriter - replacing hyperlink [316176 - 316197] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:17,419 [main] TRACE AbstractWordWriter - replacing hyperlink [316303 - 316324] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:17,503 [main] TRACE AbstractWordWriter - replacing hyperlink [316502 - 316523] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:17,560 [main] TRACE AbstractWordWriter - replacing hyperlink [316643 - 316681] HYPERLINK GSEPublisherAssociationIP, UML121... +2024-09-07 21:47:17,628 [main] TRACE AbstractWordWriter - replacing hyperlink [316854 - 316892] HYPERLINK GSEPublisherAssociationL2, UML122... +2024-09-07 21:47:17,687 [main] TRACE AbstractWordWriter - replacing hyperlink [317093 - 317121] HYPERLINK GSENotification, UML132... +2024-09-07 21:47:17,744 [main] TRACE AbstractWordWriter - replacing hyperlink [317209 - 317247] HYPERLINK GSESubcriberAssociationIP, UML127... +2024-09-07 21:47:17,799 [main] TRACE AbstractWordWriter - replacing hyperlink [317421 - 317459] HYPERLINK GSESubcriberAssociationL2, UML128... +2024-09-07 21:47:17,855 [main] TRACE AbstractWordWriter - replacing hyperlink [317658 - 317679] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:17,914 [main] TRACE AbstractWordWriter - replacing hyperlink [317734 - 317761] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:47:17,972 [main] TRACE AbstractWordWriter - replacing hyperlink [317815 - 317836] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:18,028 [main] TRACE AbstractWordWriter - replacing hyperlink [317891 - 317918] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:47:18,084 [main] TRACE AbstractWordWriter - replacing hyperlink [317978 - 317999] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:18,142 [main] TRACE AbstractWordWriter - replacing hyperlink [318054 - 318081] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:47:18,200 [main] TRACE AbstractWordWriter - replacing hyperlink [318621 - 318644] HYPERLINK InetAddress, UML65... +2024-09-07 21:47:18,258 [main] TRACE AbstractWordWriter - replacing hyperlink [318730 - 318757] HYPERLINK InetAddressType, UML64... +2024-09-07 21:47:18,315 [main] TRACE AbstractWordWriter - replacing hyperlink [318841 - 318863] HYPERLINK CharString, UML59... +2024-09-07 21:47:18,374 [main] TRACE AbstractWordWriter - replacing hyperlink [318916 - 318957] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 21:47:18,432 [main] TRACE AbstractWordWriter - replacing hyperlink [319016 - 319033] HYPERLINK CntRs, UML67... +2024-09-07 21:47:18,488 [main] TRACE AbstractWordWriter - replacing hyperlink [319084 - 319125] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 21:47:18,546 [main] TRACE AbstractWordWriter - replacing hyperlink [319184 - 319205] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:18,604 [main] TRACE AbstractWordWriter - replacing hyperlink [319260 - 319301] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 21:47:18,663 [main] TRACE AbstractWordWriter - replacing hyperlink [319360 - 319382] HYPERLINK CharString, UML59... +2024-09-07 21:47:18,726 [main] TRACE AbstractWordWriter - replacing hyperlink [319438 - 319479] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 21:47:18,781 [main] TRACE AbstractWordWriter - replacing hyperlink [319547 - 319567] HYPERLINK Floating, UML56... +2024-09-07 21:47:18,839 [main] TRACE AbstractWordWriter - replacing hyperlink [319621 - 319662] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 21:47:18,896 [main] TRACE AbstractWordWriter - replacing hyperlink [319733 - 319754] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:18,954 [main] TRACE AbstractWordWriter - replacing hyperlink [319809 - 319836] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:47:19,012 [main] TRACE AbstractWordWriter - replacing hyperlink [319890 - 319911] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:19,069 [main] TRACE AbstractWordWriter - replacing hyperlink [319966 - 319993] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:47:19,130 [main] TRACE AbstractWordWriter - replacing hyperlink [320053 - 320074] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:19,187 [main] TRACE AbstractWordWriter - replacing hyperlink [320129 - 320156] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:47:19,244 [main] TRACE AbstractWordWriter - replacing hyperlink [320704 - 320726] HYPERLINK MacAddress, UML63... +2024-09-07 21:47:19,302 [main] TRACE AbstractWordWriter - replacing hyperlink [320862 - 320884] HYPERLINK MacAddress, UML63... +2024-09-07 21:47:19,359 [main] TRACE AbstractWordWriter - replacing hyperlink [321015 - 321037] HYPERLINK CharString, UML59... +2024-09-07 21:47:19,417 [main] TRACE AbstractWordWriter - replacing hyperlink [321090 - 321131] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 21:47:19,474 [main] TRACE AbstractWordWriter - replacing hyperlink [321190 - 321207] HYPERLINK CntRs, UML67... +2024-09-07 21:47:19,533 [main] TRACE AbstractWordWriter - replacing hyperlink [321258 - 321299] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 21:47:19,592 [main] TRACE AbstractWordWriter - replacing hyperlink [321358 - 321379] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:19,649 [main] TRACE AbstractWordWriter - replacing hyperlink [321434 - 321475] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 21:47:19,710 [main] TRACE AbstractWordWriter - replacing hyperlink [321534 - 321556] HYPERLINK CharString, UML59... +2024-09-07 21:47:19,770 [main] TRACE AbstractWordWriter - replacing hyperlink [321612 - 321653] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 21:47:19,827 [main] TRACE AbstractWordWriter - replacing hyperlink [321721 - 321741] HYPERLINK Floating, UML56... +2024-09-07 21:47:19,883 [main] TRACE AbstractWordWriter - replacing hyperlink [321795 - 321836] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 21:47:19,942 [main] TRACE AbstractWordWriter - replacing hyperlink [321907 - 321928] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:19,999 [main] TRACE AbstractWordWriter - replacing hyperlink [321983 - 322010] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:47:20,056 [main] TRACE AbstractWordWriter - replacing hyperlink [322064 - 322085] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:20,114 [main] TRACE AbstractWordWriter - replacing hyperlink [322140 - 322167] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:47:20,173 [main] TRACE AbstractWordWriter - replacing hyperlink [322227 - 322248] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:20,232 [main] TRACE AbstractWordWriter - replacing hyperlink [322303 - 322330] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:47:20,292 [main] TRACE AbstractWordWriter - replacing hyperlink [322869 - 322892] HYPERLINK InetAddress, UML65... +2024-09-07 21:47:20,349 [main] TRACE AbstractWordWriter - replacing hyperlink [322974 - 323001] HYPERLINK InetAddressType, UML64... +2024-09-07 21:47:20,406 [main] TRACE AbstractWordWriter - replacing hyperlink [323090 - 323114] HYPERLINK BooleanValue, UML52... +2024-09-07 21:47:20,463 [main] TRACE AbstractWordWriter - replacing hyperlink [323172 - 323209] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 21:47:20,520 [main] TRACE AbstractWordWriter - replacing hyperlink [323266 - 323290] HYPERLINK BooleanValue, UML52... +2024-09-07 21:47:20,579 [main] TRACE AbstractWordWriter - replacing hyperlink [323348 - 323385] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 21:47:20,639 [main] TRACE AbstractWordWriter - replacing hyperlink [323442 - 323461] HYPERLINK Integer, UML53... +2024-09-07 21:47:20,699 [main] TRACE AbstractWordWriter - replacing hyperlink [323514 - 323551] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 21:47:20,757 [main] TRACE AbstractWordWriter - replacing hyperlink [323610 - 323631] HYPERLINK IntegerTs, UML58... +2024-09-07 21:47:20,819 [main] TRACE AbstractWordWriter - replacing hyperlink [323686 - 323723] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 21:47:20,877 [main] TRACE AbstractWordWriter - replacing hyperlink [323782 - 323803] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:20,937 [main] TRACE AbstractWordWriter - replacing hyperlink [323858 - 323895] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 21:47:20,995 [main] TRACE AbstractWordWriter - replacing hyperlink [323954 - 323975] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:21,056 [main] TRACE AbstractWordWriter - replacing hyperlink [324030 - 324067] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 21:47:21,113 [main] TRACE AbstractWordWriter - replacing hyperlink [324125 - 324151] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:47:21,171 [main] TRACE AbstractWordWriter - replacing hyperlink [324211 - 324248] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 21:47:21,228 [main] TRACE AbstractWordWriter - replacing hyperlink [324304 - 324326] HYPERLINK CharString, UML59... +2024-09-07 21:47:21,285 [main] TRACE AbstractWordWriter - replacing hyperlink [324382 - 324419] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 21:47:21,342 [main] TRACE AbstractWordWriter - replacing hyperlink [324477 - 324501] HYPERLINK CharStringTs, UML60... +2024-09-07 21:47:21,402 [main] TRACE AbstractWordWriter - replacing hyperlink [324559 - 324596] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 21:47:21,468 [main] TRACE AbstractWordWriter - replacing hyperlink [324650 - 324672] HYPERLINK CharString, UML59... +2024-09-07 21:47:21,525 [main] TRACE AbstractWordWriter - replacing hyperlink [324728 - 324765] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 21:47:21,585 [main] TRACE AbstractWordWriter - replacing hyperlink [324821 - 324845] HYPERLINK CharStringTs, UML60... +2024-09-07 21:47:21,645 [main] TRACE AbstractWordWriter - replacing hyperlink [324903 - 324940] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 21:47:21,704 [main] TRACE AbstractWordWriter - replacing hyperlink [324995 - 325016] HYPERLINK IntegerTs, UML58... +2024-09-07 21:47:21,760 [main] TRACE AbstractWordWriter - replacing hyperlink [325071 - 325108] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 21:47:21,819 [main] TRACE AbstractWordWriter - replacing hyperlink [325163 - 325184] HYPERLINK IntegerTs, UML58... +2024-09-07 21:47:21,882 [main] TRACE AbstractWordWriter - replacing hyperlink [325239 - 325276] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 21:47:21,943 [main] TRACE AbstractWordWriter - replacing hyperlink [325337 - 325358] HYPERLINK IntegerTs, UML58... +2024-09-07 21:47:21,999 [main] TRACE AbstractWordWriter - replacing hyperlink [325413 - 325450] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 21:47:22,060 [main] TRACE AbstractWordWriter - replacing hyperlink [325511 - 325532] HYPERLINK IntegerTs, UML58... +2024-09-07 21:47:22,119 [main] TRACE AbstractWordWriter - replacing hyperlink [325587 - 325624] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 21:47:22,178 [main] TRACE AbstractWordWriter - replacing hyperlink [325677 - 325698] HYPERLINK Timestamp, UML61... +2024-09-07 21:47:22,235 [main] TRACE AbstractWordWriter - replacing hyperlink [325753 - 325790] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 21:47:22,292 [main] TRACE AbstractWordWriter - replacing hyperlink [325845 - 325867] HYPERLINK CharString, UML59... +2024-09-07 21:47:22,352 [main] TRACE AbstractWordWriter - replacing hyperlink [325920 - 325962] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:47:22,408 [main] TRACE AbstractWordWriter - replacing hyperlink [326022 - 326039] HYPERLINK CntRs, UML67... +2024-09-07 21:47:22,465 [main] TRACE AbstractWordWriter - replacing hyperlink [326090 - 326132] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:47:22,522 [main] TRACE AbstractWordWriter - replacing hyperlink [326194 - 326215] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:22,583 [main] TRACE AbstractWordWriter - replacing hyperlink [326270 - 326312] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:47:22,642 [main] TRACE AbstractWordWriter - replacing hyperlink [326390 - 326411] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:22,699 [main] TRACE AbstractWordWriter - replacing hyperlink [326466 - 326508] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:47:22,757 [main] TRACE AbstractWordWriter - replacing hyperlink [326577 - 326597] HYPERLINK Floating, UML56... +2024-09-07 21:47:22,816 [main] TRACE AbstractWordWriter - replacing hyperlink [326651 - 326693] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:47:22,872 [main] TRACE AbstractWordWriter - replacing hyperlink [326753 - 326775] HYPERLINK CharString, UML59... +2024-09-07 21:47:22,939 [main] TRACE AbstractWordWriter - replacing hyperlink [326831 - 326873] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:47:22,998 [main] TRACE AbstractWordWriter - replacing hyperlink [326935 - 326959] HYPERLINK CharStringTs, UML60... +2024-09-07 21:47:23,057 [main] TRACE AbstractWordWriter - replacing hyperlink [327017 - 327059] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:47:23,115 [main] TRACE AbstractWordWriter - replacing hyperlink [327131 - 327152] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:23,171 [main] TRACE AbstractWordWriter - replacing hyperlink [327207 - 327234] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:47:23,230 [main] TRACE AbstractWordWriter - replacing hyperlink [327288 - 327309] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:23,285 [main] TRACE AbstractWordWriter - replacing hyperlink [327364 - 327391] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:47:23,341 [main] TRACE AbstractWordWriter - replacing hyperlink [327451 - 327472] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:23,400 [main] TRACE AbstractWordWriter - replacing hyperlink [327527 - 327554] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:47:23,456 [main] TRACE AbstractWordWriter - replacing hyperlink [328101 - 328123] HYPERLINK MacAddress, UML63... +2024-09-07 21:47:23,519 [main] TRACE AbstractWordWriter - replacing hyperlink [328259 - 328281] HYPERLINK MacAddress, UML63... +2024-09-07 21:47:23,577 [main] TRACE AbstractWordWriter - replacing hyperlink [328417 - 328441] HYPERLINK BooleanValue, UML52... +2024-09-07 21:47:23,634 [main] TRACE AbstractWordWriter - replacing hyperlink [328499 - 328536] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 21:47:23,694 [main] TRACE AbstractWordWriter - replacing hyperlink [328593 - 328617] HYPERLINK BooleanValue, UML52... +2024-09-07 21:47:23,751 [main] TRACE AbstractWordWriter - replacing hyperlink [328675 - 328712] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 21:47:23,807 [main] TRACE AbstractWordWriter - replacing hyperlink [328769 - 328788] HYPERLINK Integer, UML53... +2024-09-07 21:47:23,864 [main] TRACE AbstractWordWriter - replacing hyperlink [328841 - 328878] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 21:47:23,921 [main] TRACE AbstractWordWriter - replacing hyperlink [328937 - 328958] HYPERLINK IntegerTs, UML58... +2024-09-07 21:47:23,984 [main] TRACE AbstractWordWriter - replacing hyperlink [329013 - 329050] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 21:47:24,044 [main] TRACE AbstractWordWriter - replacing hyperlink [329109 - 329130] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:24,101 [main] TRACE AbstractWordWriter - replacing hyperlink [329185 - 329222] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 21:47:24,163 [main] TRACE AbstractWordWriter - replacing hyperlink [329281 - 329302] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:24,221 [main] TRACE AbstractWordWriter - replacing hyperlink [329357 - 329394] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 21:47:24,279 [main] TRACE AbstractWordWriter - replacing hyperlink [329452 - 329478] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:47:24,335 [main] TRACE AbstractWordWriter - replacing hyperlink [329538 - 329575] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 21:47:24,403 [main] TRACE AbstractWordWriter - replacing hyperlink [329631 - 329653] HYPERLINK CharString, UML59... +2024-09-07 21:47:24,461 [main] TRACE AbstractWordWriter - replacing hyperlink [329709 - 329746] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 21:47:24,517 [main] TRACE AbstractWordWriter - replacing hyperlink [329804 - 329828] HYPERLINK CharStringTs, UML60... +2024-09-07 21:47:24,574 [main] TRACE AbstractWordWriter - replacing hyperlink [329886 - 329923] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 21:47:24,632 [main] TRACE AbstractWordWriter - replacing hyperlink [329977 - 329999] HYPERLINK CharString, UML59... +2024-09-07 21:47:24,691 [main] TRACE AbstractWordWriter - replacing hyperlink [330055 - 330092] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 21:47:24,751 [main] TRACE AbstractWordWriter - replacing hyperlink [330148 - 330172] HYPERLINK CharStringTs, UML60... +2024-09-07 21:47:24,808 [main] TRACE AbstractWordWriter - replacing hyperlink [330230 - 330267] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 21:47:24,865 [main] TRACE AbstractWordWriter - replacing hyperlink [330322 - 330343] HYPERLINK IntegerTs, UML58... +2024-09-07 21:47:24,925 [main] TRACE AbstractWordWriter - replacing hyperlink [330398 - 330435] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 21:47:24,982 [main] TRACE AbstractWordWriter - replacing hyperlink [330490 - 330511] HYPERLINK IntegerTs, UML58... +2024-09-07 21:47:25,039 [main] TRACE AbstractWordWriter - replacing hyperlink [330566 - 330603] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 21:47:25,105 [main] TRACE AbstractWordWriter - replacing hyperlink [330664 - 330685] HYPERLINK IntegerTs, UML58... +2024-09-07 21:47:25,164 [main] TRACE AbstractWordWriter - replacing hyperlink [330740 - 330777] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 21:47:25,223 [main] TRACE AbstractWordWriter - replacing hyperlink [330838 - 330859] HYPERLINK IntegerTs, UML58... +2024-09-07 21:47:25,280 [main] TRACE AbstractWordWriter - replacing hyperlink [330914 - 330951] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 21:47:25,337 [main] TRACE AbstractWordWriter - replacing hyperlink [331004 - 331025] HYPERLINK Timestamp, UML61... +2024-09-07 21:47:25,395 [main] TRACE AbstractWordWriter - replacing hyperlink [331080 - 331117] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 21:47:25,452 [main] TRACE AbstractWordWriter - replacing hyperlink [331172 - 331194] HYPERLINK CharString, UML59... +2024-09-07 21:47:25,509 [main] TRACE AbstractWordWriter - replacing hyperlink [331247 - 331289] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:47:25,569 [main] TRACE AbstractWordWriter - replacing hyperlink [331349 - 331366] HYPERLINK CntRs, UML67... +2024-09-07 21:47:25,630 [main] TRACE AbstractWordWriter - replacing hyperlink [331417 - 331459] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:47:25,693 [main] TRACE AbstractWordWriter - replacing hyperlink [331521 - 331542] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:25,753 [main] TRACE AbstractWordWriter - replacing hyperlink [331597 - 331639] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:47:25,811 [main] TRACE AbstractWordWriter - replacing hyperlink [331717 - 331738] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:25,870 [main] TRACE AbstractWordWriter - replacing hyperlink [331793 - 331835] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:47:25,933 [main] TRACE AbstractWordWriter - replacing hyperlink [331904 - 331924] HYPERLINK Floating, UML56... +2024-09-07 21:47:25,991 [main] TRACE AbstractWordWriter - replacing hyperlink [331978 - 332020] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:47:26,048 [main] TRACE AbstractWordWriter - replacing hyperlink [332080 - 332102] HYPERLINK CharString, UML59... +2024-09-07 21:47:26,112 [main] TRACE AbstractWordWriter - replacing hyperlink [332158 - 332200] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:47:26,168 [main] TRACE AbstractWordWriter - replacing hyperlink [332262 - 332286] HYPERLINK CharStringTs, UML60... +2024-09-07 21:47:26,226 [main] TRACE AbstractWordWriter - replacing hyperlink [332344 - 332386] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:47:26,284 [main] TRACE AbstractWordWriter - replacing hyperlink [332458 - 332479] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:26,340 [main] TRACE AbstractWordWriter - replacing hyperlink [332534 - 332561] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:47:26,399 [main] TRACE AbstractWordWriter - replacing hyperlink [332615 - 332636] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:26,454 [main] TRACE AbstractWordWriter - replacing hyperlink [332691 - 332718] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:47:26,511 [main] TRACE AbstractWordWriter - replacing hyperlink [332778 - 332799] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:26,569 [main] TRACE AbstractWordWriter - replacing hyperlink [332854 - 332881] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:47:26,627 [main] TRACE AbstractWordWriter - replacing hyperlink [333270 - 333291] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:26,687 [main] TRACE AbstractWordWriter - replacing hyperlink [333346 - 333373] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:47:26,745 [main] TRACE AbstractWordWriter - replacing hyperlink [333427 - 333448] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:26,801 [main] TRACE AbstractWordWriter - replacing hyperlink [333503 - 333530] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:47:26,860 [main] TRACE AbstractWordWriter - replacing hyperlink [333590 - 333611] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:26,917 [main] TRACE AbstractWordWriter - replacing hyperlink [333666 - 333693] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:47:26,975 [main] TRACE AbstractWordWriter - replacing hyperlink [334422 - 334445] HYPERLINK EntityIndex, UML66... +2024-09-07 21:47:27,033 [main] TRACE AbstractWordWriter - replacing hyperlink [334512 - 334534] HYPERLINK CharString, UML59... +2024-09-07 21:47:27,091 [main] TRACE AbstractWordWriter - replacing hyperlink [334612 - 334631] HYPERLINK IntType, UML71... +2024-09-07 21:47:27,148 [main] TRACE AbstractWordWriter - replacing hyperlink [334718 - 334744] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:47:27,215 [main] TRACE AbstractWordWriter - replacing hyperlink [334867 - 334893] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:47:27,273 [main] TRACE AbstractWordWriter - replacing hyperlink [334987 - 335013] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:47:27,332 [main] TRACE AbstractWordWriter - replacing hyperlink [335088 - 335105] HYPERLINK CntRs, UML67... +2024-09-07 21:47:27,392 [main] TRACE AbstractWordWriter - replacing hyperlink [335481 - 335500] HYPERLINK Integer, UML53... +2024-09-07 21:47:27,453 [main] TRACE AbstractWordWriter - replacing hyperlink [335608 - 335629] HYPERLINK IntegerTs, UML58... +2024-09-07 21:47:27,511 [main] TRACE AbstractWordWriter - replacing hyperlink [335731 - 335752] HYPERLINK IntegerTs, UML58... +2024-09-07 21:47:27,568 [main] TRACE AbstractWordWriter - replacing hyperlink [335856 - 335875] HYPERLINK Integer, UML53... +2024-09-07 21:47:27,623 [main] TRACE AbstractWordWriter - replacing hyperlink [335982 - 336003] HYPERLINK IntegerTs, UML58... +2024-09-07 21:47:27,681 [main] TRACE AbstractWordWriter - replacing hyperlink [336107 - 336128] HYPERLINK IntegerTs, UML58... +2024-09-07 21:47:27,738 [main] TRACE AbstractWordWriter - replacing hyperlink [336235 - 336254] HYPERLINK Integer, UML53... +2024-09-07 21:47:27,794 [main] TRACE AbstractWordWriter - replacing hyperlink [336361 - 336382] HYPERLINK IntegerTs, UML58... +2024-09-07 21:47:27,853 [main] TRACE AbstractWordWriter - replacing hyperlink [336486 - 336507] HYPERLINK IntegerTs, UML58... +2024-09-07 21:47:27,911 [main] TRACE AbstractWordWriter - replacing hyperlink [336614 - 336633] HYPERLINK Integer, UML53... +2024-09-07 21:47:27,969 [main] TRACE AbstractWordWriter - replacing hyperlink [336739 - 336760] HYPERLINK IntegerTs, UML58... +2024-09-07 21:47:28,027 [main] TRACE AbstractWordWriter - replacing hyperlink [336863 - 336884] HYPERLINK IntegerTs, UML58... +2024-09-07 21:47:28,086 [main] TRACE AbstractWordWriter - replacing hyperlink [336989 - 337008] HYPERLINK Integer, UML53... +2024-09-07 21:47:28,143 [main] TRACE AbstractWordWriter - replacing hyperlink [337126 - 337147] HYPERLINK IntegerTs, UML58... +2024-09-07 21:47:28,203 [main] TRACE AbstractWordWriter - replacing hyperlink [337262 - 337283] HYPERLINK IntegerTs, UML58... +2024-09-07 21:47:28,270 [main] TRACE AbstractWordWriter - replacing hyperlink [337395 - 337416] HYPERLINK SEREntry, UML139... +2024-09-07 21:47:28,324 [main] TRACE AbstractWordWriter - replacing hyperlink [337545 - 337566] HYPERLINK ETHEntry, UML137... +2024-09-07 21:47:28,381 [main] TRACE AbstractWordWriter - replacing hyperlink [337697 - 337718] HYPERLINK USBEntry, UML141... +2024-09-07 21:47:28,438 [main] TRACE AbstractWordWriter - replacing hyperlink [337844 - 337865] HYPERLINK KEYEntry, UML138... +2024-09-07 21:47:28,495 [main] TRACE AbstractWordWriter - replacing hyperlink [337996 - 338017] HYPERLINK ALGEntry, UML140... +2024-09-07 21:47:28,554 [main] TRACE AbstractWordWriter - replacing hyperlink [338162 - 338187] HYPERLINK Notification, UML143... +2024-09-07 21:47:28,615 [main] TRACE AbstractWordWriter - replacing hyperlink [338548 - 338571] HYPERLINK EntityIndex, UML66... +2024-09-07 21:47:28,674 [main] TRACE AbstractWordWriter - replacing hyperlink [338625 - 338647] HYPERLINK Interface, UML136... +2024-09-07 21:47:28,734 [main] TRACE AbstractWordWriter - replacing hyperlink [338687 - 338709] HYPERLINK CharString, UML59... +2024-09-07 21:47:28,789 [main] TRACE AbstractWordWriter - replacing hyperlink [338765 - 338787] HYPERLINK Interface, UML136... +2024-09-07 21:47:28,846 [main] TRACE AbstractWordWriter - replacing hyperlink [338829 - 338848] HYPERLINK IntType, UML71... +2024-09-07 21:47:28,905 [main] TRACE AbstractWordWriter - replacing hyperlink [338901 - 338923] HYPERLINK Interface, UML136... +2024-09-07 21:47:28,965 [main] TRACE AbstractWordWriter - replacing hyperlink [338966 - 338992] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:47:29,022 [main] TRACE AbstractWordWriter - replacing hyperlink [339050 - 339072] HYPERLINK Interface, UML136... +2024-09-07 21:47:29,083 [main] TRACE AbstractWordWriter - replacing hyperlink [339113 - 339139] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:47:29,140 [main] TRACE AbstractWordWriter - replacing hyperlink [339197 - 339219] HYPERLINK Interface, UML136... +2024-09-07 21:47:29,203 [main] TRACE AbstractWordWriter - replacing hyperlink [339260 - 339286] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:47:29,260 [main] TRACE AbstractWordWriter - replacing hyperlink [339344 - 339366] HYPERLINK Interface, UML136... +2024-09-07 21:47:29,326 [main] TRACE AbstractWordWriter - replacing hyperlink [339406 - 339423] HYPERLINK CntRs, UML67... +2024-09-07 21:47:29,386 [main] TRACE AbstractWordWriter - replacing hyperlink [339474 - 339496] HYPERLINK Interface, UML136... +2024-09-07 21:47:29,447 [main] TRACE AbstractWordWriter - replacing hyperlink [339821 - 339847] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:47:29,506 [main] TRACE AbstractWordWriter - replacing hyperlink [339947 - 339970] HYPERLINK EntityIndex, UML66... +2024-09-07 21:47:29,564 [main] TRACE AbstractWordWriter - replacing hyperlink [340024 - 340046] HYPERLINK Interface, UML136... +2024-09-07 21:47:29,620 [main] TRACE AbstractWordWriter - replacing hyperlink [340086 - 340108] HYPERLINK CharString, UML59... +2024-09-07 21:47:29,682 [main] TRACE AbstractWordWriter - replacing hyperlink [340164 - 340186] HYPERLINK Interface, UML136... +2024-09-07 21:47:29,739 [main] TRACE AbstractWordWriter - replacing hyperlink [340228 - 340247] HYPERLINK IntType, UML71... +2024-09-07 21:47:29,796 [main] TRACE AbstractWordWriter - replacing hyperlink [340300 - 340322] HYPERLINK Interface, UML136... +2024-09-07 21:47:29,853 [main] TRACE AbstractWordWriter - replacing hyperlink [340365 - 340391] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:47:29,913 [main] TRACE AbstractWordWriter - replacing hyperlink [340449 - 340471] HYPERLINK Interface, UML136... +2024-09-07 21:47:29,972 [main] TRACE AbstractWordWriter - replacing hyperlink [340512 - 340538] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:47:30,028 [main] TRACE AbstractWordWriter - replacing hyperlink [340596 - 340618] HYPERLINK Interface, UML136... +2024-09-07 21:47:30,086 [main] TRACE AbstractWordWriter - replacing hyperlink [340659 - 340685] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:47:30,143 [main] TRACE AbstractWordWriter - replacing hyperlink [340743 - 340765] HYPERLINK Interface, UML136... +2024-09-07 21:47:30,201 [main] TRACE AbstractWordWriter - replacing hyperlink [340805 - 340822] HYPERLINK CntRs, UML67... +2024-09-07 21:47:30,261 [main] TRACE AbstractWordWriter - replacing hyperlink [340873 - 340895] HYPERLINK Interface, UML136... +2024-09-07 21:47:30,324 [main] TRACE AbstractWordWriter - replacing hyperlink [341212 - 341233] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:30,401 [main] TRACE AbstractWordWriter - replacing hyperlink [341307 - 341328] HYPERLINK CounterTs, UML55... +2024-09-07 21:47:30,459 [main] TRACE AbstractWordWriter - replacing hyperlink [341398 - 341421] HYPERLINK EntityIndex, UML66... +2024-09-07 21:47:30,517 [main] TRACE AbstractWordWriter - replacing hyperlink [341475 - 341497] HYPERLINK Interface, UML136... +2024-09-07 21:47:30,572 [main] TRACE AbstractWordWriter - replacing hyperlink [341537 - 341559] HYPERLINK CharString, UML59... +2024-09-07 21:47:30,630 [main] TRACE AbstractWordWriter - replacing hyperlink [341615 - 341637] HYPERLINK Interface, UML136... +2024-09-07 21:47:30,689 [main] TRACE AbstractWordWriter - replacing hyperlink [341679 - 341698] HYPERLINK IntType, UML71... +2024-09-07 21:47:30,749 [main] TRACE AbstractWordWriter - replacing hyperlink [341751 - 341773] HYPERLINK Interface, UML136... +2024-09-07 21:47:30,808 [main] TRACE AbstractWordWriter - replacing hyperlink [341816 - 341842] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:47:30,868 [main] TRACE AbstractWordWriter - replacing hyperlink [341900 - 341922] HYPERLINK Interface, UML136... +2024-09-07 21:47:30,927 [main] TRACE AbstractWordWriter - replacing hyperlink [341963 - 341989] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:47:30,987 [main] TRACE AbstractWordWriter - replacing hyperlink [342047 - 342069] HYPERLINK Interface, UML136... +2024-09-07 21:47:31,046 [main] TRACE AbstractWordWriter - replacing hyperlink [342110 - 342136] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:47:31,111 [main] TRACE AbstractWordWriter - replacing hyperlink [342194 - 342216] HYPERLINK Interface, UML136... +2024-09-07 21:47:31,170 [main] TRACE AbstractWordWriter - replacing hyperlink [342256 - 342273] HYPERLINK CntRs, UML67... +2024-09-07 21:47:31,230 [main] TRACE AbstractWordWriter - replacing hyperlink [342324 - 342346] HYPERLINK Interface, UML136... +2024-09-07 21:47:31,290 [main] TRACE AbstractWordWriter - replacing hyperlink [342663 - 342686] HYPERLINK EntityIndex, UML66... +2024-09-07 21:47:31,349 [main] TRACE AbstractWordWriter - replacing hyperlink [342740 - 342762] HYPERLINK Interface, UML136... +2024-09-07 21:47:31,413 [main] TRACE AbstractWordWriter - replacing hyperlink [342802 - 342824] HYPERLINK CharString, UML59... +2024-09-07 21:47:31,480 [main] TRACE AbstractWordWriter - replacing hyperlink [342880 - 342902] HYPERLINK Interface, UML136... +2024-09-07 21:47:31,538 [main] TRACE AbstractWordWriter - replacing hyperlink [342944 - 342963] HYPERLINK IntType, UML71... +2024-09-07 21:47:31,594 [main] TRACE AbstractWordWriter - replacing hyperlink [343016 - 343038] HYPERLINK Interface, UML136... +2024-09-07 21:47:31,653 [main] TRACE AbstractWordWriter - replacing hyperlink [343081 - 343107] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:47:31,713 [main] TRACE AbstractWordWriter - replacing hyperlink [343165 - 343187] HYPERLINK Interface, UML136... +2024-09-07 21:47:31,771 [main] TRACE AbstractWordWriter - replacing hyperlink [343228 - 343254] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:47:31,832 [main] TRACE AbstractWordWriter - replacing hyperlink [343312 - 343334] HYPERLINK Interface, UML136... +2024-09-07 21:47:31,889 [main] TRACE AbstractWordWriter - replacing hyperlink [343375 - 343401] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:47:31,946 [main] TRACE AbstractWordWriter - replacing hyperlink [343459 - 343481] HYPERLINK Interface, UML136... +2024-09-07 21:47:32,006 [main] TRACE AbstractWordWriter - replacing hyperlink [343521 - 343538] HYPERLINK CntRs, UML67... +2024-09-07 21:47:32,062 [main] TRACE AbstractWordWriter - replacing hyperlink [343589 - 343611] HYPERLINK Interface, UML136... +2024-09-07 21:47:32,121 [main] TRACE AbstractWordWriter - replacing hyperlink [343924 - 343947] HYPERLINK EntityIndex, UML66... +2024-09-07 21:47:32,182 [main] TRACE AbstractWordWriter - replacing hyperlink [344001 - 344023] HYPERLINK Interface, UML136... +2024-09-07 21:47:32,239 [main] TRACE AbstractWordWriter - replacing hyperlink [344063 - 344085] HYPERLINK CharString, UML59... +2024-09-07 21:47:32,298 [main] TRACE AbstractWordWriter - replacing hyperlink [344141 - 344163] HYPERLINK Interface, UML136... +2024-09-07 21:47:32,359 [main] TRACE AbstractWordWriter - replacing hyperlink [344205 - 344224] HYPERLINK IntType, UML71... +2024-09-07 21:47:32,418 [main] TRACE AbstractWordWriter - replacing hyperlink [344277 - 344299] HYPERLINK Interface, UML136... +2024-09-07 21:47:32,476 [main] TRACE AbstractWordWriter - replacing hyperlink [344342 - 344368] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:47:32,541 [main] TRACE AbstractWordWriter - replacing hyperlink [344426 - 344448] HYPERLINK Interface, UML136... +2024-09-07 21:47:32,596 [main] TRACE AbstractWordWriter - replacing hyperlink [344489 - 344515] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:47:32,656 [main] TRACE AbstractWordWriter - replacing hyperlink [344573 - 344595] HYPERLINK Interface, UML136... +2024-09-07 21:47:32,714 [main] TRACE AbstractWordWriter - replacing hyperlink [344636 - 344662] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:47:32,769 [main] TRACE AbstractWordWriter - replacing hyperlink [344720 - 344742] HYPERLINK Interface, UML136... +2024-09-07 21:47:32,830 [main] TRACE AbstractWordWriter - replacing hyperlink [344782 - 344799] HYPERLINK CntRs, UML67... +2024-09-07 21:47:32,888 [main] TRACE AbstractWordWriter - replacing hyperlink [344850 - 344872] HYPERLINK Interface, UML136... +2024-09-07 21:47:32,984 [main] TRACE AbstractWordWriter - replacing hyperlink [345252 - 345273] HYPERLINK IntegerTs, UML58... +2024-09-07 21:47:33,040 [main] TRACE AbstractWordWriter - replacing hyperlink [345373 - 345394] HYPERLINK IntegerTs, UML58... +2024-09-07 21:47:33,102 [main] TRACE AbstractWordWriter - replacing hyperlink [345497 - 345518] HYPERLINK IntegerTs, UML58... +2024-09-07 21:47:33,161 [main] TRACE AbstractWordWriter - replacing hyperlink [345620 - 345641] HYPERLINK IntegerTs, UML58... +2024-09-07 21:47:33,224 [main] TRACE AbstractWordWriter - replacing hyperlink [345747 - 345768] HYPERLINK IntegerTs, UML58... +2024-09-07 21:47:33,283 [main] TRACE AbstractWordWriter - replacing hyperlink [345870 - 345891] HYPERLINK IntegerTs, UML58... +2024-09-07 21:47:33,344 [main] TRACE AbstractWordWriter - replacing hyperlink [345997 - 346018] HYPERLINK IntegerTs, UML58... +2024-09-07 21:47:33,403 [main] TRACE AbstractWordWriter - replacing hyperlink [346120 - 346141] HYPERLINK IntegerTs, UML58... +2024-09-07 21:47:33,461 [main] TRACE AbstractWordWriter - replacing hyperlink [346246 - 346267] HYPERLINK IntegerTs, UML58... +2024-09-07 21:47:33,519 [main] TRACE AbstractWordWriter - replacing hyperlink [346381 - 346402] HYPERLINK IntegerTs, UML58... +2024-09-07 21:47:33,582 [main] TRACE AbstractWordWriter - replacing hyperlink [347066 - 347087] HYPERLINK Timestamp, UML61... +2024-09-07 21:47:33,640 [main] TRACE AbstractWordWriter - replacing hyperlink [347206 - 347227] HYPERLINK Timestamp, UML61... +2024-09-07 21:47:33,699 [main] TRACE AbstractWordWriter - replacing hyperlink [347341 - 347358] HYPERLINK CntRs, UML67... +2024-09-07 21:47:33,759 [main] TRACE AbstractWordWriter - replacing hyperlink [347582 - 347605] HYPERLINK ClockEntry, UML134... +2024-09-07 21:47:33,819 [main] TRACE AbstractWordWriter - replacing hyperlink [347735 - 347768] HYPERLINK SecurityNotification, UML135... +2024-09-07 21:47:33,880 [main] TRACE AbstractWordWriter - replacing hyperlink [348140 - 348159] HYPERLINK Integer, UML53... +2024-09-07 21:47:33,941 [main] TRACE AbstractWordWriter - replacing hyperlink [348379 - 348402] HYPERLINK EntityIndex, UML66... +2024-09-07 21:47:34,002 [main] TRACE AbstractWordWriter - replacing hyperlink [348469 - 348497] HYPERLINK TimSyncIssueType, UML75... +2024-09-07 21:47:34,061 [main] TRACE AbstractWordWriter - replacing hyperlink [348613 - 348637] HYPERLINK BooleanValue, UML52... +2024-09-07 21:47:34,121 [main] TRACE AbstractWordWriter - replacing hyperlink [348724 - 348750] HYPERLINK TimSyncSrcType, UML77... +2024-09-07 21:47:34,177 [main] TRACE AbstractWordWriter - replacing hyperlink [348843 - 348867] HYPERLINK BooleanValue, UML52... +2024-09-07 21:47:34,240 [main] TRACE AbstractWordWriter - replacing hyperlink [349215 - 349237] HYPERLINK FloatingTs, UML57... +2024-09-07 21:47:34,296 [main] TRACE AbstractWordWriter - replacing hyperlink [349488 - 349512] HYPERLINK BooleanValue, UML52... +2024-09-07 21:47:34,360 [main] TRACE AbstractWordWriter - replacing hyperlink [350343 - 350367] HYPERLINK BooleanValue, UML52... +2024-09-07 21:47:34,416 [main] TRACE AbstractWordWriter - replacing hyperlink [351329 - 351350] HYPERLINK Timestamp, UML61... +2024-09-07 21:47:34,465 [main] INFO Util - time=[0:01:51.776] replaced 2092 hyperlink placeholders +2024-09-07 21:47:34,465 [main] INFO Util - +2024-09-07 21:47:34,465 [main] DEBUG DocWordWriter - restoring original options +2024-09-07 21:47:34,465 [main] INFO OptimOptions - bringing back original view +2024-09-07 21:47:34,532 [main] INFO OptimOptions - enabling pagination +2024-09-07 21:47:34,579 [main] INFO OptimOptions - enabling field updates +2024-09-07 21:47:34,696 [main] INFO OptimOptions - enabling screen updating +2024-09-07 21:47:34,698 [main] DEBUG DocWordWriter - >> current/restored : OptimOptions [viewId=3, normView=false, paginate=true, updFld=true, updScr=true, fastSave=false, spelling=false, grammar=false] +2024-09-07 21:47:34,698 [main] INFO AbstractWordWriter - updating document fields (takes a while)... +2024-09-07 21:47:50,422 [main] INFO DocWordWriter - updateFields: 15724 ms +2024-09-07 21:47:57,792 [main] INFO DocWordWriter - updateTablesOfContents: 7370 ms +2024-09-07 21:48:05,703 [main] INFO DocWordWriter - updateTablesOfFigures: 7911 ms +2024-09-07 21:48:05,703 [main] INFO Util - time=[0:00:31.005] updated document fields +2024-09-07 21:48:05,704 [main] INFO Util - +2024-09-07 21:48:05,704 [main] INFO DocWordWriter - closing MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 21:48:09,718 [main] INFO DocWordWriter - exiting MSWord application +2024-09-07 21:48:09,722 [main] INFO Util - time=[0:05:41.014] written documentation to C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx +2024-09-07 21:48:09,722 [main] INFO Util - +2024-09-07 21:48:09,722 [main] INFO Util - time=[0:06:32.782] completed all configured steps - exiting +2024-09-07 21:48:09,723 [main] INFO Util - +2024-09-07 21:48:09,724 [main] INFO JCleanCim - completed at: Sat Sep 07 21:48:09 CEST 2024 +2024-09-07 21:48:09,724 [main] INFO JCleanCim - exiting +2024-09-07 21:54:16,753 [main] INFO JCleanCim - started at: Sat Sep 07 21:54:16 CEST 2024 +2024-09-07 21:54:16,753 [main] INFO JCleanCim - execution environment: +2024-09-07 21:54:16,754 [main] INFO JCleanCim - os.name = Windows 10 +2024-09-07 21:54:16,754 [main] INFO JCleanCim - java.version = 1.8.0_351 +2024-09-07 21:54:16,754 [main] INFO JCleanCim - java.home = C:\Program Files (x86)\Java\jre1.8.0_351 +2024-09-07 21:54:16,754 [main] INFO JCleanCim - java.class.path = C:\Users\gigi\git\jCleanCim\build\prod\classes;C:\Users\gigi\git\jCleanCim\lib\eaapi.jar;C:\Users\gigi\git\jCleanCim\dlls;C:\Users\gigi\git\jCleanCim\lib\commons-cli-1.2.jar;C:\Users\gigi\git\jCleanCim\config;C:\Users\gigi\git\jCleanCim\input;C:\Users\gigi\git\jCleanCim\lib\jacob.jar;C:\Users\gigi\git\jCleanCim\test\config;C:\Users\gigi\git\jCleanCim\test\input;C:\Users\gigi\git\jCleanCim\lib\commons-logging-1.1.1.jar;C:\Users\gigi\git\jCleanCim\lib\log4j-1.2.17.jar;C:\Users\gigi\git\jCleanCim\lib\commons-lang-2.6.jar;C:\Users\gigi\git\jCleanCim\lib\junit-4.8.2.jar;C:\Users\gigi\git\jCleanCim\lib\jackcess-2.1.0.jar;C:\Users\gigi\git\jCleanCim\lib\poi-ooxml-3.15-beta2.jar +2024-09-07 21:54:16,771 [main] INFO Util - loaded properties from resource build.properties +2024-09-07 21:54:16,771 [main] INFO JCleanCim - jCleanCim version: 02v03 +2024-09-07 21:54:16,771 [main] INFO JCleanCim - +2024-09-07 21:54:16,783 [main] INFO Util - loaded properties from resource config.properties +2024-09-07 21:54:16,784 [main] INFO Util - loaded properties from resource config61850.properties +2024-09-07 21:54:16,786 [main] INFO Util - loaded properties from resource build.properties +2024-09-07 21:54:16,792 [main] INFO Config - EA model specified in config.properties: 'C:\Users\gigi\git\jCleanCim\input\IEC62351-7-Ed2-FDIS-20240901.eap' +2024-09-07 21:54:16,793 [main] INFO Config - blank image file: 'C:\Users\gigi\git\jCleanCim\input\blank.png' +2024-09-07 21:54:16,800 [main] DEBUG Config - Property validation.rules.off not found in config.properties. +2024-09-07 21:54:16,800 [main] INFO Util - Creating backup of existing file: C:\Users\gigi\git\jCleanCim\output\pics.37932459389000 +2024-09-07 21:54:16,802 [main] INFO Config - pics output directory: 'C:\Users\gigi\git\jCleanCim\output\pics' +2024-09-07 21:54:16,803 [main] INFO Config - input MS Word template: 'C:\Users\gigi\git\jCleanCim\input\57-62351-7-Ed2-FDIS-template_20240901.docx' +2024-09-07 21:54:16,804 [main] INFO Util - Creating backup of existing file: C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx.37932463052100 +2024-09-07 21:54:16,805 [main] INFO Config - output MS Word file: 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 21:54:16,806 [main] INFO Util - Creating backup of existing file: C:\Users\gigi\git\jCleanCim\output\mibs.37932465126800 +2024-09-07 21:54:16,808 [main] INFO Config - full MIBs output directory: 'C:\Users\gigi\git\jCleanCim\output\mibs' +2024-09-07 21:54:16,809 [main] INFO Util - Creating backup of existing file: C:\Users\gigi\git\jCleanCim\output\mibslight.37932467929500 +2024-09-07 21:54:16,814 [main] INFO Config - light MIBs output directory: 'C:\Users\gigi\git\jCleanCim\output\mibslight' +2024-09-07 21:54:16,814 [main] DEBUG Config - Property docgen.word.styles.prefix.toc not found in config.properties. +2024-09-07 21:54:16,814 [main] DEBUG Config - Property docgen.word.styles.prefix.head not found in config.properties. +2024-09-07 21:54:16,814 [main] DEBUG Config - Property docgen.skipForCustomStereotypes not found in config.properties. +2024-09-07 21:54:16,814 [main] INFO JCleanCim - Config: +app.skipTiming = +docgen.iec61850.includeMetamodelInheritance = +docgen.iec61850.writeUmlTypes = +docgen.includeInformative = +docgen.includeNonPublic = +docgen.on = true +docgen.printHtml = +docgen.showCustomStereotypes = true +docgen.showNamespacePackages = Base, Dynamics, ExtEuBase, Ext1 +docgen.word.analysePlaceholders = +docgen.word.inTemplate = 57-62351-7-Ed2-FDIS-template_20240901.docx +docgen.word.includeInheritancePath = false +docgen.word.introToFigureBefore = +docgen.word.outDocument = 57-62351-7-Ed2-FDIS_20240901.docx +docgen.word.saveReopenEvery = 12 +docgen.word.styles.fig = FIGURE, Picture, Normal, Standard, Normal +docgen.word.styles.figcapt = FIGURE-title, Caption, Beschriftung, Légende +docgen.word.styles.para = PARAGRAPH, Normal, Standard, Normal +docgen.word.styles.tabcapt = TABLE-title, Caption, Beschriftung, Légende +docgen.word.styles.tabcell = TABLE-cell, Normal, Standard, Normal +docgen.word.styles.tabhead = TABLE-col-heading, Normal, Standard, Normal +docgen.word.useDocFormat = true +docgen.word.useHyperlinks = true +docgen.xml.scope = +mibgen.on = true +mibgen.outDirFull = mibs +mibgen.outDirLight = mibslight +model.builder = japi +model.filename = IEC62351-7-Ed2-FDIS-20240901.eap +model.nature.iec61850 = IEC61850Domain, My61850Extensions, NonCIM, IEC61850_SCL_mappings, MyNonCimExtensions +model.nature.iec62351 = IEC62351 +model.picsRelpath = +profiles.crosscheck.on = +profiles.dirnames = +profiles.docgen.on = +profiles.relpath = +project.version = 02v03 +statistics.cim.ignoreDomainClassAttributes = true +statistics.cim.ignoreIdObjectInheritance = true +statistics.on = false +statistics.tagsToIgnore = GUIDBasedOn +validation.associations.off = +validation.attributes.off = +validation.classes.off = +validation.dependencies.off = +validation.diagrams.off = +validation.iec61850.package72Top = IEC61850_7_2 +validation.iec61850.packageFC = FunctionalConstraints +validation.iec61850.packageLnMaps = Functions +validation.iec61850.packageMetaModel = MetaModel +validation.iec61850.packagePresCond = PresenceConditions +validation.iec61850.packageTrgOp = TriggerOptions +validation.iec61850.packages72 = FunctionalConstraints, TriggerOptions, ACSIEnums, CoreTypes, MetaModel +validation.iec61850.packages73 = PresenceConditions, ConstructedDAs, CommonDataClasses, DAEnums,CommonDataClasses_90_3, DAEnums_90_3,CommonDataClasses_90_4, DAEnums_90_4,CommonDataClasses_90_6, DAEnums_90_6,CommonDataClasses_90_8, DAEnums_90_8,CommonDataClasses_90_10, DAEnums_90_10,CommonDataClasses_90_17, DAEnums_90_17,CommonDataClasses_7_410, DAEnums_7_410,CommonDataClasses_7_420, DAEnums_7_420,CommonDataClasses_25_2, DAEnums_25_2 +validation.iec61850.packages74 = Functions, Abbreviations, LogicalNodes, DOEnums,Abbreviations_90_3, LogicalNodes_90_3, DOEnums_90_3,Abbreviations_90_4, LogicalNodes_90_4, DOEnums_90_4,Abbreviations_90_6, LogicalNodes_90_6, DOEnums_90_6,Abbreviations_90_8, LogicalNodes_90_8, DOEnums_90_8,Abbreviations_90_9, LogicalNodes_90_9, DOEnums_90_9,Abbreviations_90_10, LogicalNodes_90_10, DOEnums_90_10,Abbreviations_90_11, LogicalNodes_90_11, DOEnums_90_11,Abbreviations_90_17, LogicalNodes_90_17, DOEnums_90_17,Abbreviations_7_410, LogicalNodes_7_410, DOEnums_7_410,Abbreviations_7_420, LogicalNodes_7_420, DOEnums_7_420,Abbreviations_7_499, LogicalNodes_7_499, DOEnums_7_499,Abbreviations_61869-9, LogicalNodes_61869-9, Abbreviations_62271-3, LogicalNodes_62271-3, Abbreviations_25_2, LogicalNodes_25_2, DOEnums_25_2 +validation.iec61850.packagesBasic = CoreTypes +validation.iec61850.packagesCdc = CommonDataClasses, CommonDataClasses_90_3, CommonDataClasses_90_4, CommonDataClasses_90_6, CommonDataClasses_90_8, CommonDataClasses_90_9, CommonDataClasses_90_10, CommonDataClasses_90_17, CommonDataClasses_7_410, CommonDataClasses_7_420, CommonDataClasses_25_2 +validation.iec61850.packagesDa = ConstructedDAs +validation.iec61850.packagesDoAbbr = Abbreviations, Abbreviations_90_3, Abbreviations_90_4, Abbreviations_90_6, Abbreviations_90_8, Abbreviations_90_9, Abbreviations_90_10, Abbreviations_90_11, Abbreviations_90_17, Abbreviations_7_410, Abbreviations_7_420, Abbreviations_7_499, Abbreviations_61869-9, Abbreviations_62271-3, Abbreviations_25_2 +validation.iec61850.packagesEnumsXml = DomainTypesEnums, DOEnums, DAEnums, DOEnums_90_3, DAEnums_90_3, DOEnums_90_4, DAEnums_90_4, DOEnums_90_6, DAEnums_90_6, DOEnums_90_8, DAEnums_90_8, DOEnums_90_9, DAEnums_90_9, DOEnums_90_10, DAEnums_90_10, DOEnums_90_11, DAEnums_90_11, DOEnums_90_17, DAEnums_90_17, DOEnums_7_410, DAEnums_7_410, DOEnums_7_420, DAEnums_7_420, DOEnums_7_499, DAEnums_7_499, DOEnums_25_2, DAEnums_25_2 +validation.iec61850.packagesLn = LogicalNodes, LogicalNodes_90_3, LogicalNodes_90_4, LogicalNodes_90_6, LogicalNodes_90_8, LogicalNodes_90_9, LogicalNodes_90_10, LogicalNodes_90_11, LogicalNodes_90_17, LogicalNodes_7_410, LogicalNodes_7_420, LogicalNodes_7_499, LogicalNodes_61869-9, LogicalNodes_62271-3, LogicalNodes_7_420, LogicalNodes_25_2 +validation.logging.verbose = +validation.on = false +validation.operations.off = +validation.packages.off = +validation.packagesDataIndex = Core, LogicalNodes, CommonDataClasses, LogicalNodes_90_3, CommonDataClasses_90_3, LogicalNodes_90_4, CommonDataClasses_90_4, LogicalNodes_90_6, CommonDataClasses_90_6, LogicalNodes_90_8, CommonDataClasses_90_8, LogicalNodes_90_9, CommonDataClasses_90_9, LogicalNodes_90_10, CommonDataClasses_90_10, LogicalNodes_90_11, CommonDataClasses_90_11, LogicalNodes_90_17, CommonDataClasses_90_17, LogicalNodes_7_410, CommonDataClasses_7_410, LogicalNodes_7_420, LogicalNodes_7_499, CommonDataClasses_7_420, LogicalNodes_61869-9, LogicalNodes_62271-3, LogicalNodes_25_2, CommonDataClasses_25_2 +validation.scope = +xmiexport.dialects = +xmiexport.on = + +2024-09-07 21:54:16,827 [main] INFO Util - +2024-09-07 21:54:16,828 [main] INFO Util - ================================================ +2024-09-07 21:54:16,828 [main] INFO Util - building model from EA EA Java API + ea.dll... +2024-09-07 21:54:16,829 [main] INFO Util - ================================================ +2024-09-07 21:54:16,845 [main] INFO Util - +2024-09-07 21:54:16,846 [main] INFO Util - ------------------------------------------------ +2024-09-07 21:54:16,846 [main] INFO Util - initialising EA builder... +2024-09-07 21:54:17,667 [main] INFO EaModelBuilder - EA version: build 1623 +2024-09-07 21:54:17,697 [main] INFO Util - time=[0:00:00.822] initialised EA builder. +2024-09-07 21:54:17,697 [main] INFO Util - +2024-09-07 21:54:17,698 [main] INFO Util - +2024-09-07 21:54:17,698 [main] INFO Util - ------------------------------------------------ +2024-09-07 21:54:17,699 [main] INFO Util - opening EA file 'C:\Users\gigi\git\jCleanCim\input\IEC62351-7-Ed2-FDIS-20240901.eap'... +2024-09-07 21:54:34,869 [main] INFO Util - time=[0:00:17.170] opened EA file. +2024-09-07 21:54:34,869 [main] INFO Util - +2024-09-07 21:54:34,869 [main] INFO Util - +2024-09-07 21:54:34,869 [main] INFO Util - ------------------------------------------------ +2024-09-07 21:54:34,869 [main] INFO Util - reading model from EA with iteration API (this will take a while)... +2024-09-07 21:54:34,973 [main] INFO PackageBuilder - processing model package iso (0) ... +2024-09-07 21:54:35,019 [main] INFO PackageBuilder - processing top package standard (0) ... +2024-09-07 21:54:35,060 [main] INFO PackageBuilder - processing package iec62351 (0) ... +2024-09-07 21:54:35,139 [main] INFO PackageBuilder - processing package part7 (0) ... +2024-09-07 21:54:35,330 [main] INFO PackageBuilder - processing package Profiles (0) ... +2024-09-07 21:54:35,355 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Profiles, _objData=UmlObjectData [id=51, uuid={4642A2B9-A297-45be-A2B5-28C4F1A2B373}, since=null, name=Part7Profiles, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-07 21:54:35,387 [main] INFO PackageBuilder - processing package nsmAgent (0) ... +2024-09-07 21:54:35,401 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=nsmAgent, _objData=UmlObjectData [id=52, uuid={8F3F8B93-6E15-4fcf-9C40-83EB793F28A5}, since=null, name=nsmAgent, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-07 21:54:35,797 [main] TRACE ClassBuilder - Class Attribute (0 in package nsmAgent) +2024-09-07 21:54:35,903 [main] DEBUG AssociationEndBuilder - Updated target type to Attribute +2024-09-07 21:54:35,912 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=11, uuid=6512bd43-d9ca-36e0-ac99-0b0a82652dca, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=12, uuid=c20ad4d7-6fe9-3759-aa27-a0c99bff6710, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=185, uuid={037D3A56-F1D8-42bb-9EFD-F6E2309B7770}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 21:54:35,912 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=11, uuid=6512bd43-d9ca-36e0-ac99-0b0a82652dca, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=12, uuid=c20ad4d7-6fe9-3759-aa27-a0c99bff6710, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=185, uuid={037D3A56-F1D8-42bb-9EFD-F6E2309B7770}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Attribute +2024-09-07 21:54:35,912 [main] TRACE ClassBuilder - read from EA: nsmAgent::Attribute +2024-09-07 21:54:35,917 [main] TRACE ClassBuilder - Class Attribute (0 in package nsmAgent) +2024-09-07 21:54:35,983 [main] DEBUG AssociationEndBuilder - Updated target type to Attribute +2024-09-07 21:54:35,991 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=15, uuid=9bf31c7f-f062-336a-96d3-c8bd1f8f2ff3, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=16, uuid=c74d97b0-1eae-357e-84aa-9d5bade97baf, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=179, uuid={AB14A505-E58D-4c64-BE95-5835E1FE0435}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 21:54:35,991 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=15, uuid=9bf31c7f-f062-336a-96d3-c8bd1f8f2ff3, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=16, uuid=c74d97b0-1eae-357e-84aa-9d5bade97baf, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=179, uuid={AB14A505-E58D-4c64-BE95-5835E1FE0435}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Attribute +2024-09-07 21:54:35,991 [main] TRACE ClassBuilder - read from EA: nsmAgent::Attribute +2024-09-07 21:54:35,996 [main] TRACE ClassBuilder - Class Attribute (0 in package nsmAgent) +2024-09-07 21:54:36,065 [main] DEBUG AssociationEndBuilder - Updated target type to Attribute +2024-09-07 21:54:36,072 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=19, uuid=1f0e3dad-9990-3345-b743-9f8ffabdffc4, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=20, uuid=98f13708-2101-34c4-b568-7be6106a3b84, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=180, uuid={81333E16-399C-4a6d-83B9-BAC271270F32}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 21:54:36,072 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=19, uuid=1f0e3dad-9990-3345-b743-9f8ffabdffc4, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=20, uuid=98f13708-2101-34c4-b568-7be6106a3b84, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=180, uuid={81333E16-399C-4a6d-83B9-BAC271270F32}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Attribute +2024-09-07 21:54:36,073 [main] TRACE ClassBuilder - read from EA: nsmAgent::Attribute +2024-09-07 21:54:36,078 [main] TRACE ClassBuilder - Class Attribute (0 in package nsmAgent) +2024-09-07 21:54:36,146 [main] DEBUG AssociationEndBuilder - Updated target type to Attribute +2024-09-07 21:54:36,154 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=23, uuid=37693cfc-7480-39e4-9d87-b8c7d8b9aacd, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=24, uuid=1ff1de77-4005-38da-93f4-2943881c655f, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=183, uuid={A10A942F-369A-4aa5-88B5-9F7AD36E5852}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 21:54:36,154 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=23, uuid=37693cfc-7480-39e4-9d87-b8c7d8b9aacd, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=24, uuid=1ff1de77-4005-38da-93f4-2943881c655f, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=183, uuid={A10A942F-369A-4aa5-88B5-9F7AD36E5852}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Attribute +2024-09-07 21:54:36,155 [main] TRACE ClassBuilder - read from EA: nsmAgent::Attribute +2024-09-07 21:54:36,160 [main] TRACE ClassBuilder - Class Attribute (0 in package nsmAgent) +2024-09-07 21:54:36,227 [main] DEBUG AssociationEndBuilder - Updated target type to Attribute +2024-09-07 21:54:36,235 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=27, uuid=02e74f10-e032-3ad8-a8d1-38f2b4fdd6f0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=28, uuid=33e75ff0-9dd6-31bb-a69f-351039152189, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=184, uuid={0A546037-FD29-4ca6-8123-D9FEDAA5A7C4}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 21:54:36,235 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=27, uuid=02e74f10-e032-3ad8-a8d1-38f2b4fdd6f0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=28, uuid=33e75ff0-9dd6-31bb-a69f-351039152189, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=184, uuid={0A546037-FD29-4ca6-8123-D9FEDAA5A7C4}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Attribute +2024-09-07 21:54:36,236 [main] TRACE ClassBuilder - read from EA: nsmAgent::Attribute +2024-09-07 21:54:36,241 [main] TRACE ClassBuilder - Class Attribute (0 in package nsmAgent) +2024-09-07 21:54:36,306 [main] DEBUG AssociationEndBuilder - Updated target type to Attribute +2024-09-07 21:54:36,314 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=31, uuid=c16a5320-fa47-3530-9958-3c34fd356ef5, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=32, uuid=6364d3f0-f495-36ab-9dcf-8d3b5c6e0b01, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=186, uuid={5A0BDE1C-4479-472a-95D9-5E2FF2FB1D48}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 21:54:36,314 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=31, uuid=c16a5320-fa47-3530-9958-3c34fd356ef5, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=32, uuid=6364d3f0-f495-36ab-9dcf-8d3b5c6e0b01, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=186, uuid={5A0BDE1C-4479-472a-95D9-5E2FF2FB1D48}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Attribute +2024-09-07 21:54:36,314 [main] TRACE ClassBuilder - read from EA: nsmAgent::Attribute +2024-09-07 21:54:36,319 [main] TRACE ClassBuilder - Class Attribute (0 in package nsmAgent) +2024-09-07 21:54:36,390 [main] DEBUG AssociationEndBuilder - Updated target type to Attribute +2024-09-07 21:54:36,396 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=35, uuid=1c383cd3-0b7c-398a-b502-93adfecb7b18, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=36, uuid=19ca14e7-ea63-38a4-ae0e-b13d585e4c22, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=187, uuid={D024B2AD-A446-46a8-9026-6CAB3B506EAD}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 21:54:36,397 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=35, uuid=1c383cd3-0b7c-398a-b502-93adfecb7b18, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=36, uuid=19ca14e7-ea63-38a4-ae0e-b13d585e4c22, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=187, uuid={D024B2AD-A446-46a8-9026-6CAB3B506EAD}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Attribute +2024-09-07 21:54:36,397 [main] TRACE ClassBuilder - read from EA: nsmAgent::Attribute +2024-09-07 21:54:36,402 [main] TRACE ClassBuilder - Class Attribute (0 in package nsmAgent) +2024-09-07 21:54:36,469 [main] DEBUG AssociationEndBuilder - Updated target type to Attribute +2024-09-07 21:54:36,478 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=39, uuid=d67d8ab4-f4c1-3bf2-aaa3-53e27879133c, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=40, uuid=d645920e-395f-3dad-bbbb-ed0eca3fe2e0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=207, uuid={EF3A2C3D-0E4D-4d2e-98CA-E29A17F69D6F}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 21:54:36,478 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=39, uuid=d67d8ab4-f4c1-3bf2-aaa3-53e27879133c, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=40, uuid=d645920e-395f-3dad-bbbb-ed0eca3fe2e0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=207, uuid={EF3A2C3D-0E4D-4d2e-98CA-E29A17F69D6F}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Attribute +2024-09-07 21:54:36,479 [main] TRACE ClassBuilder - read from EA: nsmAgent::Attribute +2024-09-07 21:54:36,484 [main] TRACE ClassBuilder - Class Attribute (0 in package nsmAgent) +2024-09-07 21:54:36,551 [main] DEBUG AssociationEndBuilder - Updated target type to Attribute +2024-09-07 21:54:36,558 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=43, uuid=17e62166-fc85-36df-a4d1-bc0e1742c08b, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=44, uuid=f7177163-c833-3ff4-b38f-c8d2872f1ec6, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=188, uuid={779BD3EC-A6F0-4fa2-AF25-CF73DEB80D9D}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 21:54:36,559 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=43, uuid=17e62166-fc85-36df-a4d1-bc0e1742c08b, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=44, uuid=f7177163-c833-3ff4-b38f-c8d2872f1ec6, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=188, uuid={779BD3EC-A6F0-4fa2-AF25-CF73DEB80D9D}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Attribute +2024-09-07 21:54:36,559 [main] TRACE ClassBuilder - read from EA: nsmAgent::Attribute +2024-09-07 21:54:36,565 [main] TRACE ClassBuilder - Class Class (0 in package nsmAgent) +2024-09-07 21:54:36,589 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::Class, _objData=UmlObjectData [id=3451, uuid={6E8148A7-7F05-41a0-9B96-4DE1404873EE}, since=null, name=isActive, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:36,648 [main] DEBUG AssociationEndBuilder - Updated target type to Class +2024-09-07 21:54:36,656 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=48, uuid=642e92ef-b794-3173-8881-b53e1e1b18b6, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=49, uuid=f457c545-a9de-388f-98ec-ee47145a72c0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=181, uuid={B87BF513-6F00-4a87-8745-0EFE6669608B}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 21:54:36,656 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=48, uuid=642e92ef-b794-3173-8881-b53e1e1b18b6, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=49, uuid=f457c545-a9de-388f-98ec-ee47145a72c0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=181, uuid={B87BF513-6F00-4a87-8745-0EFE6669608B}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Class +2024-09-07 21:54:36,656 [main] TRACE ClassBuilder - read from EA: nsmAgent::Class +2024-09-07 21:54:36,662 [main] TRACE ClassBuilder - Class Class (0 in package nsmAgent) +2024-09-07 21:54:36,683 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::Class, _objData=UmlObjectData [id=3982, uuid={0ADC0F06-862E-4bf0-91E6-77D5A0ACAC93}, since=null, name=isActive, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:36,740 [main] DEBUG AssociationEndBuilder - Updated target type to Class +2024-09-07 21:54:36,747 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=53, uuid=d82c8d16-19ad-3176-9665-453cfb2e55f0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=54, uuid=a684ecee-e76f-3522-b732-86a895bc8436, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=226, uuid={18809321-3AB3-4ee2-8EFB-837D3C11C6DB}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 21:54:36,747 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=53, uuid=d82c8d16-19ad-3176-9665-453cfb2e55f0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=54, uuid=a684ecee-e76f-3522-b732-86a895bc8436, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=226, uuid={18809321-3AB3-4ee2-8EFB-837D3C11C6DB}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Class +2024-09-07 21:54:36,748 [main] TRACE ClassBuilder - read from EA: nsmAgent::Class +2024-09-07 21:54:36,753 [main] TRACE ClassBuilder - Class Class (0 in package nsmAgent) +2024-09-07 21:54:36,774 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::Class, _objData=UmlObjectData [id=3442, uuid={59E9AD9F-FC10-4f48-B814-DA381B64951D}, since=null, name=isActive, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:36,832 [main] DEBUG AssociationEndBuilder - Updated target type to Class +2024-09-07 21:54:36,839 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=58, uuid=66f041e1-6a60-328b-85a7-e228a89c3799, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=59, uuid=093f65e0-80a2-35f8-876b-1c5722a46aa2, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=182, uuid={3E772D79-C1EA-4a57-A5C1-11E871B0C5C7}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-07 21:54:36,840 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=58, uuid=66f041e1-6a60-328b-85a7-e228a89c3799, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=59, uuid=093f65e0-80a2-35f8-876b-1c5722a46aa2, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=182, uuid={3E772D79-C1EA-4a57-A5C1-11E871B0C5C7}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Class +2024-09-07 21:54:36,840 [main] TRACE ClassBuilder - read from EA: nsmAgent::Class +2024-09-07 21:54:36,845 [main] TRACE ClassBuilder - Class health (0 in package nsmAgent) +2024-09-07 21:54:36,866 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::health, _objData=UmlObjectData [id=3454, uuid={CC8861DB-2567-4147-A044-BA3F2890EF3C}, since=null, name=Version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:36,913 [main] DEBUG AssociationEndBuilder - Updated source type to health +2024-09-07 21:54:36,913 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=11, uuid=6512bd43-d9ca-36e0-ac99-0b0a82652dca, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=health, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=12, uuid=c20ad4d7-6fe9-3759-aa27-a0c99bff6710, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=185, uuid={037D3A56-F1D8-42bb-9EFD-F6E2309B7770}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::health +2024-09-07 21:54:36,913 [main] TRACE ClassBuilder - read from EA: nsmAgent::health +2024-09-07 21:54:36,919 [main] TRACE ClassBuilder - Class identity (0 in package nsmAgent) +2024-09-07 21:54:36,939 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::identity, _objData=UmlObjectData [id=3453, uuid={FCEB4C51-4294-4255-B547-06FC8EAD1631}, since=null, name=Version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:36,984 [main] DEBUG AssociationEndBuilder - Updated source type to identity +2024-09-07 21:54:36,984 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=27, uuid=02e74f10-e032-3ad8-a8d1-38f2b4fdd6f0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=identity, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=28, uuid=33e75ff0-9dd6-31bb-a69f-351039152189, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=184, uuid={0A546037-FD29-4ca6-8123-D9FEDAA5A7C4}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::identity +2024-09-07 21:54:36,984 [main] TRACE ClassBuilder - read from EA: nsmAgent::identity +2024-09-07 21:54:36,990 [main] TRACE ClassBuilder - Class index (0 in package nsmAgent) +2024-09-07 21:54:37,012 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::index, _objData=UmlObjectData [id=3452, uuid={94DC5272-A241-486c-B0B9-E954FC9CEEB9}, since=null, name=Version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:37,058 [main] DEBUG AssociationEndBuilder - Updated source type to index +2024-09-07 21:54:37,058 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=23, uuid=37693cfc-7480-39e4-9d87-b8c7d8b9aacd, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=index, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=24, uuid=1ff1de77-4005-38da-93f4-2943881c655f, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=183, uuid={A10A942F-369A-4aa5-88B5-9F7AD36E5852}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::index +2024-09-07 21:54:37,058 [main] TRACE ClassBuilder - read from EA: nsmAgent::index +2024-09-07 21:54:37,064 [main] TRACE ClassBuilder - Class nsmAgent (0 in package nsmAgent) +2024-09-07 21:54:37,087 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::nsmAgent, _objData=UmlObjectData [id=3448, uuid={5FAAD04C-5CF2-4de7-9E7A-87ED0BF31C92}, since=null, name=mibPrefix, alias=, stereotype=, visibility=public, txtDescription='The prefix to be added to the each Attributes when used within this Agent branch', htmlDescription='

The prefix to be added to the each Attributes when used within this Agent branch

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=string, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:37,096 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::nsmAgent, _objData=UmlObjectData [id=3449, uuid={91C49511-AC32-48bc-B58E-2B08325AECF0}, since=null, name=objectIdentity, alias=, stereotype=, visibility=public, txtDescription='The branch identifier', htmlDescription='

The branch identifier

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=string, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:37,106 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::nsmAgent, _objData=UmlObjectData [id=3450, uuid={ED9B83E7-AE09-4070-96DD-DC944F967E05}, since=null, name=objectBranchId, alias=, stereotype=, visibility=public, txtDescription='The branch identifier', htmlDescription='

The branch identifier

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=string, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:37,152 [main] DEBUG AssociationEndBuilder - Updated source type to nsmAgent +2024-09-07 21:54:37,152 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=58, uuid=66f041e1-6a60-328b-85a7-e228a89c3799, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=nsmAgent, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=59, uuid=093f65e0-80a2-35f8-876b-1c5722a46aa2, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=182, uuid={3E772D79-C1EA-4a57-A5C1-11E871B0C5C7}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::nsmAgent +2024-09-07 21:54:37,152 [main] TRACE ClassBuilder - read from EA: nsmAgent::nsmAgent +2024-09-07 21:54:37,158 [main] TRACE ClassBuilder - Class nsmEntry (0 in package nsmAgent) +2024-09-07 21:54:37,180 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::nsmEntry, _objData=UmlObjectData [id=3979, uuid={21B90413-2706-49d1-A52C-E5C36E7666D4}, since=null, name=mibPrefix, alias=, stereotype=, visibility=public, txtDescription='The prefix to be added to the each Attributes when used within this Agent branch', htmlDescription='

The prefix to be added to the each Attributes when used within this Agent branch

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=string, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:37,190 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::nsmEntry, _objData=UmlObjectData [id=3980, uuid={1140893C-EF40-4d4c-908C-CB302BACA4CB}, since=null, name=objectIdentity, alias=, stereotype=, visibility=public, txtDescription='The branch identifier', htmlDescription='

The branch identifier

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=string, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:37,199 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::nsmEntry, _objData=UmlObjectData [id=3981, uuid={D16EB47B-7D14-4b5a-87B0-9E3757C72F57}, since=null, name=objectBranchId, alias=, stereotype=, visibility=public, txtDescription='The branch identifier', htmlDescription='

The branch identifier

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=string, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:37,245 [main] DEBUG AssociationEndBuilder - Updated source type to nsmEntry +2024-09-07 21:54:37,245 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=53, uuid=d82c8d16-19ad-3176-9665-453cfb2e55f0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=nsmEntry, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=54, uuid=a684ecee-e76f-3522-b732-86a895bc8436, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=226, uuid={18809321-3AB3-4ee2-8EFB-837D3C11C6DB}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::nsmEntry +2024-09-07 21:54:37,245 [main] TRACE ClassBuilder - read from EA: nsmAgent::nsmEntry +2024-09-07 21:54:37,250 [main] TRACE ClassBuilder - Class nsmEvent (0 in package nsmAgent) +2024-09-07 21:54:37,273 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::nsmEvent, _objData=UmlObjectData [id=3443, uuid={897C9792-FFA0-4111-80BB-4973BBF14FBE}, since=null, name=mibPrefix, alias=, stereotype=, visibility=public, txtDescription='The prefix to be added to the each Attributes when used within this Agent branch', htmlDescription='

The prefix to be added to the each Attributes when used within this Agent branch

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=string, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:37,282 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::nsmEvent, _objData=UmlObjectData [id=3444, uuid={46527C35-A279-40fb-90C3-546B6430D724}, since=null, name=objectIdentity, alias=, stereotype=, visibility=public, txtDescription='The branch identifier', htmlDescription='

The branch identifier

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=string, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:37,291 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::nsmEvent, _objData=UmlObjectData [id=3445, uuid={07EF49E6-1576-43ed-9364-792638FA9A7F}, since=null, name=objectBranchId, alias=, stereotype=, visibility=public, txtDescription='The branch identifier', htmlDescription='

The branch identifier

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=string, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:37,337 [main] DEBUG AssociationEndBuilder - Updated source type to nsmEvent +2024-09-07 21:54:37,337 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=48, uuid=642e92ef-b794-3173-8881-b53e1e1b18b6, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=nsmEvent, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=49, uuid=f457c545-a9de-388f-98ec-ee47145a72c0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=181, uuid={B87BF513-6F00-4a87-8745-0EFE6669608B}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::nsmEvent +2024-09-07 21:54:37,337 [main] TRACE ClassBuilder - read from EA: nsmAgent::nsmEvent +2024-09-07 21:54:37,343 [main] TRACE ClassBuilder - Class performance (0 in package nsmAgent) +2024-09-07 21:54:37,363 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::performance, _objData=UmlObjectData [id=3455, uuid={F52F6387-CDFF-4a2a-B4C3-3E25870BE05A}, since=null, name=Version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:37,425 [main] DEBUG AssociationEndBuilder - Updated source type to performance +2024-09-07 21:54:37,425 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=31, uuid=c16a5320-fa47-3530-9958-3c34fd356ef5, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=performance, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=32, uuid=6364d3f0-f495-36ab-9dcf-8d3b5c6e0b01, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=186, uuid={5A0BDE1C-4479-472a-95D9-5E2FF2FB1D48}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::performance +2024-09-07 21:54:37,425 [main] TRACE ClassBuilder - read from EA: nsmAgent::performance +2024-09-07 21:54:37,430 [main] TRACE ClassBuilder - Class protocol (0 in package nsmAgent) +2024-09-07 21:54:37,452 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::protocol, _objData=UmlObjectData [id=3447, uuid={F2329AA5-0361-4f8c-92BD-CE45DB120CE3}, since=null, name=Version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:37,497 [main] DEBUG AssociationEndBuilder - Updated source type to protocol +2024-09-07 21:54:37,497 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=15, uuid=9bf31c7f-f062-336a-96d3-c8bd1f8f2ff3, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=protocol, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=16, uuid=c74d97b0-1eae-357e-84aa-9d5bade97baf, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=179, uuid={AB14A505-E58D-4c64-BE95-5835E1FE0435}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::protocol +2024-09-07 21:54:37,497 [main] TRACE ClassBuilder - read from EA: nsmAgent::protocol +2024-09-07 21:54:37,504 [main] TRACE ClassBuilder - Class security (0 in package nsmAgent) +2024-09-07 21:54:37,525 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::security, _objData=UmlObjectData [id=3446, uuid={7B1451A9-BA4A-4172-938F-AE95484B650C}, since=null, name=Version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:37,571 [main] DEBUG AssociationEndBuilder - Updated source type to security +2024-09-07 21:54:37,571 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=19, uuid=1f0e3dad-9990-3345-b743-9f8ffabdffc4, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=security, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=20, uuid=98f13708-2101-34c4-b568-7be6106a3b84, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=180, uuid={81333E16-399C-4a6d-83B9-BAC271270F32}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::security +2024-09-07 21:54:37,571 [main] TRACE ClassBuilder - read from EA: nsmAgent::security +2024-09-07 21:54:37,577 [main] TRACE ClassBuilder - Class setvalue (0 in package nsmAgent) +2024-09-07 21:54:37,597 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::setvalue, _objData=UmlObjectData [id=3456, uuid={5980FD0B-7618-42e2-8A8F-B4A3BA69C461}, since=null, name=Version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:37,643 [main] DEBUG AssociationEndBuilder - Updated source type to setvalue +2024-09-07 21:54:37,643 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=35, uuid=1c383cd3-0b7c-398a-b502-93adfecb7b18, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=setvalue, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=36, uuid=19ca14e7-ea63-38a4-ae0e-b13d585e4c22, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=187, uuid={D024B2AD-A446-46a8-9026-6CAB3B506EAD}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::setvalue +2024-09-07 21:54:37,644 [main] TRACE ClassBuilder - read from EA: nsmAgent::setvalue +2024-09-07 21:54:37,650 [main] TRACE ClassBuilder - Class table (0 in package nsmAgent) +2024-09-07 21:54:37,671 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::table, _objData=UmlObjectData [id=3457, uuid={50B5AB79-81F7-412a-AF6C-15E7D27E4EC6}, since=null, name=Version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:37,718 [main] DEBUG AssociationEndBuilder - Updated source type to table +2024-09-07 21:54:37,718 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=43, uuid=17e62166-fc85-36df-a4d1-bc0e1742c08b, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=table, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=44, uuid=f7177163-c833-3ff4-b38f-c8d2872f1ec6, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=188, uuid={779BD3EC-A6F0-4fa2-AF25-CF73DEB80D9D}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::table +2024-09-07 21:54:37,718 [main] TRACE ClassBuilder - read from EA: nsmAgent::table +2024-09-07 21:54:37,724 [main] TRACE ClassBuilder - Class trap (0 in package nsmAgent) +2024-09-07 21:54:37,744 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::trap, _objData=UmlObjectData [id=3610, uuid={321E6795-47CE-4d0f-A903-28BFD422C88F}, since=null, name=Version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:37,789 [main] DEBUG AssociationEndBuilder - Updated source type to trap +2024-09-07 21:54:37,790 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=39, uuid=d67d8ab4-f4c1-3bf2-aaa3-53e27879133c, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=trap, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=40, uuid=d645920e-395f-3dad-bbbb-ed0eca3fe2e0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=207, uuid={EF3A2C3D-0E4D-4d2e-98CA-E29A17F69D6F}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::trap +2024-09-07 21:54:37,790 [main] TRACE ClassBuilder - read from EA: nsmAgent::trap +2024-09-07 21:54:37,792 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Profiles, _depth=4, _eaElementID=881, _objData=UmlObjectData [id=330, uuid={5A3BC3BE-A490-436c-A0C4-BF2365F8CDD4}, since=null, name=nsmAgent, alias=, stereotype=profile, visibility=public, txtDescription='', htmlDescription=''], _modelId=362, _selfDependent=false, 1_taggedValues{_profile_data=}, 1_diagrams=[DiagramBuilder [_containingPackage=nsmAgent, _objData=UmlObjectData [id=52, uuid={8F3F8B93-6E15-4fcf-9C40-83EB793F28A5}, since=null, name=nsmAgent, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _classes=24 +2024-09-07 21:54:37,792 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=880, _objData=UmlObjectData [id=329, uuid={9FD92520-A629-4fe0-9C99-D01EACC33DFB}, since=null, name=Profiles, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=362, _selfDependent=false, 1_taggedValues{_profile_data=}, 1_diagrams=[DiagramBuilder [_containingPackage=Profiles, _objData=UmlObjectData [id=51, uuid={4642A2B9-A297-45be-A2B5-28C4F1A2B373}, since=null, name=Part7Profiles, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _childPackages=1] +2024-09-07 21:54:37,799 [main] INFO PackageBuilder - processing package Overview (2) ... +2024-09-07 21:54:37,810 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Overview, _objData=UmlObjectData [id=23, uuid={1EC9B9AC-962E-4b2c-A2A8-EFB524CF896E}, since=null, name=Part7 Classes Overview, alias=, stereotype=, visibility=public, txtDescription='IEC 62351-7 Objects overview', htmlDescription='

IEC 62351-7 Objects overview

'], _portrait=true, _kind=LOGICAL] +2024-09-07 21:54:37,854 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=941, uuid={F4ED4B79-564B-4c10-81A0-56580DAC755C}, since=null, name=IEC 60870, DNP and IEC 62351, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Overview, _otherEndName=] +2024-09-07 21:54:37,861 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=939, uuid={A16E0E74-46E5-4db2-9B18-5CAA5D5C1EE4}, since=null, name=IEC 61850, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Overview, _otherEndName=] +2024-09-07 21:54:37,863 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=872, _objData=UmlObjectData [id=324, uuid={E9E467F0-A1DE-4274-9A43-A31884D06B9B}, since=null, name=Overview, alias=, stereotype=, visibility=public, txtDescription='The NSM agent objects are organized in a UML package hierarchy that is shown in Figure 15. The application protocol branch is organized into further substructures that include the specific protocols agents. +The tree of packages is reflected in the translation to the SNMP MIB structure. This MIB structure shall respect additional constraints. For instance the reuse of attribute names in different MIB branches is not allowed. Additional MIB constraints are related to naming conventions and the OID specification.', htmlDescription='

The NSM agent objects are organized in a UML package hierarchy that is shown in Figure 15. The application protocol branch is organized into further substructures that include the specific protocols agents.

The tree of packages is reflected in the translation to the SNMP MIB structure. This MIB structure shall respect additional constraints. For instance the reuse of attribute names in different MIB branches is not allowed. Additional MIB constraints are related to naming conventions and the OID specification.

'], _modelId=362, _selfDependent=false, 2_skippedEaItems=[SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=941, uuid={F4ED4B79-564B-4c10-81A0-56580DAC755C}, since=null, name=IEC 60870, DNP and IEC 62351, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Overview, _otherEndName=], SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=939, uuid={A16E0E74-46E5-4db2-9B18-5CAA5D5C1EE4}, since=null, name=IEC 61850, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Overview, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=Overview, _objData=UmlObjectData [id=23, uuid={1EC9B9AC-962E-4b2c-A2A8-EFB524CF896E}, since=null, name=Part7 Classes Overview, alias=, stereotype=, visibility=public, txtDescription='IEC 62351-7 Objects overview', htmlDescription='

IEC 62351-7 Objects overview

'], _portrait=true, _kind=LOGICAL]] +2024-09-07 21:54:37,868 [main] INFO PackageBuilder - processing package BaseTypes (3) ... +2024-09-07 21:54:38,097 [main] TRACE ClassBuilder - Class AbsoluteDateTime (1 in package BaseTypes) +2024-09-07 21:54:38,118 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::AbsoluteDateTime, _objData=UmlObjectData [id=2741, uuid={F3AF56F9-1853-4d50-BE66-55698A10D728}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='String representation of date and time.', htmlDescription='

String representation of date and time.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=OCTET STRING (SIZE(8..11)), _eaTypeId=0, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:38,123 [main] TRACE ClassBuilder - read from EA: BaseTypes::AbsoluteDateTime +2024-09-07 21:54:38,128 [main] TRACE ClassBuilder - Class Counter32 (2 in package BaseTypes) +2024-09-07 21:54:38,148 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::Counter32 , _objData=UmlObjectData [id=2679, uuid={FA17507F-4E8A-4a30-A8AB-34397CB7B197}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='The range of allowed values must be specified.', htmlDescription='

The range of allowed values must be specified.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=Counter32, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:38,153 [main] TRACE ClassBuilder - read from EA: BaseTypes::Counter32 +2024-09-07 21:54:38,158 [main] TRACE ClassBuilder - Class DateAndTime (3 in package BaseTypes) +2024-09-07 21:54:38,179 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::DateAndTime, _objData=UmlObjectData [id=2681, uuid={E60E2615-6D31-4e8f-AF20-74D562BF4897}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='String representation of date and time according with SMIv2.', htmlDescription='

String representation of date and time according with SMIv2.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=OCTET STRING (SIZE(8..11)), _eaTypeId=0, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:38,183 [main] TRACE ClassBuilder - read from EA: BaseTypes::DateAndTime +2024-09-07 21:54:38,188 [main] TRACE ClassBuilder - Class DisplayString (4 in package BaseTypes) +2024-09-07 21:54:38,224 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::DisplayString, _objData=UmlObjectData [id=2683, uuid={5A7A658D-D236-49b6-BA65-B91C55B54DE8}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='The range of allowed values must be specified.', htmlDescription='

The range of allowed values must be specified.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=DisplayString, _eaTypeId=662, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:38,228 [main] TRACE ClassBuilder - read from EA: BaseTypes::DisplayString +2024-09-07 21:54:38,234 [main] TRACE ClassBuilder - Class Float32TC (6 in package BaseTypes) +2024-09-07 21:54:38,254 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::Float32TC, _objData=UmlObjectData [id=2682, uuid={82BCCE12-A0B4-4061-803E-FD3AE22BF6DC}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='This type represents a 32-bit (4-octet) IEEE floating-point number in binary interchange format', htmlDescription='

This type represents a 32-bit (4-octet) IEEE floating-point number in binary interchange format

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=OCTET STRING (SIZE(4)), _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:38,258 [main] TRACE ClassBuilder - read from EA: BaseTypes::Float32TC +2024-09-07 21:54:38,263 [main] TRACE ClassBuilder - Class Gauge32 (7 in package BaseTypes) +2024-09-07 21:54:38,283 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::Gauge32, _objData=UmlObjectData [id=2678, uuid={FFFF9E05-F8E0-4bc6-B3AB-1A2B5D086BB8}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='The range of allowed values must be specified.', htmlDescription='

The range of allowed values must be specified.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=Gauge32, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:38,288 [main] TRACE ClassBuilder - read from EA: BaseTypes::Gauge32 +2024-09-07 21:54:38,293 [main] TRACE ClassBuilder - Class InetAddress (9 in package BaseTypes) +2024-09-07 21:54:38,314 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::InetAddress, _objData=UmlObjectData [id=3682, uuid={B67A78A1-439B-400a-A30B-D4240DC32266}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='The range of allowed values must be specified.', htmlDescription='

The range of allowed values must be specified.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=DisplayString (SIZE(0..255)), _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:38,318 [main] TRACE ClassBuilder - read from EA: BaseTypes::InetAddress +2024-09-07 21:54:38,323 [main] TRACE ClassBuilder - Class MacAddress (9 in package BaseTypes) +2024-09-07 21:54:38,344 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::MacAddress, _objData=UmlObjectData [id=3719, uuid={96C8CC34-E7C1-46d8-B06F-8DF3BCF5E1C8}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='The range of allowed values must be specified.', htmlDescription='

The range of allowed values must be specified.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=DisplayString (SIZE(0..255)), _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:38,349 [main] TRACE ClassBuilder - read from EA: BaseTypes::MacAddress +2024-09-07 21:54:38,354 [main] TRACE ClassBuilder - Class InetAddressType (10 in package BaseTypes) +2024-09-07 21:54:38,379 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::InetAddressType, _objData=UmlObjectData [id=3685, uuid={7907F04A-B00E-486d-A58A-BB3F1695DE2B}, since=null, name=unknown, alias=, stereotype=enum, visibility=public, txtDescription='Indicates unknown type', htmlDescription='

Indicates unknown type

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:38,389 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::InetAddressType, _objData=UmlObjectData [id=3686, uuid={1E6CB781-CF7B-41f1-A0A8-9724E82FF6E9}, since=null, name=ipv4, alias=, stereotype=enum, visibility=public, txtDescription='An IPv4 address as defined by the InetAddressIPv4 textual convention.', htmlDescription='

An IPv4 address as defined by the InetAddressIPv4 textual convention.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:38,399 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::InetAddressType, _objData=UmlObjectData [id=3687, uuid={A7C3B60B-E33D-4d5c-8338-53FABA39CA4F}, since=null, name=ipv6, alias=, stereotype=enum, visibility=public, txtDescription='An IPv6 address as defined by the InetAddressIPv6 textual convention.', htmlDescription='

An IPv6 address as defined by the InetAddressIPv6 textual convention.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:38,408 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::InetAddressType, _objData=UmlObjectData [id=3688, uuid={F3691BC4-D8C1-4abc-B19E-53E33A9BF458}, since=null, name=ipv4z, alias=, stereotype=enum, visibility=public, txtDescription='A non-global IPv4 address including a zone index as defined by the InetAddressIPv4z textual convention.', htmlDescription='

A non-global IPv4 address including a zone index as defined by the InetAddressIPv4z textual convention.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:38,417 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::InetAddressType, _objData=UmlObjectData [id=3689, uuid={1E81FD33-C128-45bc-920A-8C4BD7E2DEBD}, since=null, name=ipv6z, alias=, stereotype=enum, visibility=public, txtDescription='A non-global IPv6 address including a zone index as defined by the InetAddressIPv6z textual convention.', htmlDescription='

A non-global IPv6 address including a zone index as defined by the InetAddressIPv6z textual convention.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:38,426 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::InetAddressType, _objData=UmlObjectData [id=3683, uuid={CA22E66E-263F-4cc6-A4E8-C19D9E3C14C2}, since=null, name=dns, alias=, stereotype=enum, visibility=public, txtDescription='A non-global IPv6 address including a zone index as defined by the InetAddressIPv6z textual convention.', htmlDescription='

A non-global IPv6 address including a zone index as defined by the InetAddressIPv6z textual convention.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=16, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:38,430 [main] TRACE ClassBuilder - read from EA: BaseTypes::InetAddressType +2024-09-07 21:54:38,435 [main] TRACE ClassBuilder - Class EntityIndex (11 in package BaseTypes) +2024-09-07 21:54:38,455 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::EntityIndex, _objData=UmlObjectData [id=3723, uuid={79B557BD-8843-4e68-94FA-BA4CD410B0E4}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='Integer value 1..2147483647', htmlDescription='

Integer value 1..2147483647

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=Integer32, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:38,460 [main] TRACE ClassBuilder - read from EA: BaseTypes::EntityIndex +2024-09-07 21:54:38,465 [main] TRACE ClassBuilder - Class Integer32 (11 in package BaseTypes) +2024-09-07 21:54:38,485 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::Integer32, _objData=UmlObjectData [id=1397, uuid={16A49FC2-9DFE-4d0a-AF1A-139BBD3A6396}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='Integer value -2147483648..2147483647 (inclusive) according to SMI v2', htmlDescription='

Integer value -2147483648..2147483647 (inclusive) according to SMI v2

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=Integer32, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:38,490 [main] TRACE ClassBuilder - read from EA: BaseTypes::Integer32 +2024-09-07 21:54:38,494 [main] TRACE ClassBuilder - Class Unsigned32 (11 in package BaseTypes) +2024-09-07 21:54:38,515 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::Unsigned32, _objData=UmlObjectData [id=3721, uuid={0EB7C369-E8EA-4733-8E05-C3D43A4FC483}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='The range of allowed values must be specified.', htmlDescription='

The range of allowed values must be specified.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=Integer32, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:38,520 [main] TRACE ClassBuilder - read from EA: BaseTypes::Unsigned32 +2024-09-07 21:54:38,527 [main] TRACE ClassBuilder - Class TimeTicks (15 in package BaseTypes) +2024-09-07 21:54:38,548 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::TimeTicks, _objData=UmlObjectData [id=2680, uuid={6097D103-479F-41f4-9A97-1F94284761AB}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='The range of allowed values must be specified.', htmlDescription='

The range of allowed values must be specified.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=TimeTicks, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:38,552 [main] TRACE ClassBuilder - read from EA: BaseTypes::TimeTicks +2024-09-07 21:54:38,558 [main] TRACE ClassBuilder - Class TruthValue (16 in package BaseTypes) +2024-09-07 21:54:38,579 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::TruthValue, _objData=UmlObjectData [id=2685, uuid={8672694D-2B24-4f77-957A-398B85E13893}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='Represents a boolean value. INTEGER { true(1), false(2) } according with RFC 2579', htmlDescription='

Represents a boolean value. INTEGER { true(1), false(2) } according with RFC 2579

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=TruthValue, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:38,584 [main] TRACE ClassBuilder - read from EA: BaseTypes::TruthValue +2024-09-07 21:54:38,586 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=163, _objData=UmlObjectData [id=45, uuid={66B1AE60-7FA0-4e1d-80D0-B1602C003F67}, since=null, name=BaseTypes, alias=, stereotype=, visibility=public, txtDescription='This package include the base data type. The type is inherited from the SNMP naming convention and is needed for the mapping from the a abstract types.', htmlDescription='

This package include the base data type. The type is inherited from the SNMP naming convention and is needed for the mapping from the a abstract types.

'], _modelId=362, _selfDependent=false, _classes=14 +2024-09-07 21:54:38,591 [main] INFO PackageBuilder - processing package Abstract Types (4) ... +2024-09-07 21:54:38,877 [main] TRACE ClassBuilder - Class BooleanValue (1 in package Abstract Types) +2024-09-07 21:54:38,915 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::BooleanValue, _objData=UmlObjectData [id=2987, uuid={AD4E7F12-52BE-4498-9D56-489F0D36E706}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Represents a boolean value.', htmlDescription='

Represents a boolean value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=636, _eaTypeName=TruthValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:38,931 [main] TRACE ClassBuilder - read from EA: Abstract Types::BooleanValue +2024-09-07 21:54:38,936 [main] TRACE ClassBuilder - Class BooleanValueTs (2 in package Abstract Types) +2024-09-07 21:54:38,988 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::BooleanValueTs, _objData=UmlObjectData [id=2915, uuid={3DFAA603-DD4F-4fb0-B38D-E41B9F5976AD}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:38,997 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::BooleanValueTs, _objData=UmlObjectData [id=2916, uuid={3EDE9EA6-FA52-457e-9F52-95B08337CC6C}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Represents a boolean value.', htmlDescription='

Represents a boolean value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=636, _eaTypeName=TruthValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:39,012 [main] TRACE ClassBuilder - read from EA: Abstract Types::BooleanValueTs +2024-09-07 21:54:39,018 [main] TRACE ClassBuilder - Class CounterTs (5 in package Abstract Types) +2024-09-07 21:54:39,068 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::CounterTs, _objData=UmlObjectData [id=2921, uuid={41F902F6-723F-4b04-A87D-8CFABFCB21DE}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:39,078 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::CounterTs, _objData=UmlObjectData [id=2922, uuid={CD1BCCAD-7FF8-4fd1-A24D-07EEC8C393A6}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='According to SMI v2, used to specify a value which represents a count. The range is 0 to 4294967295.', htmlDescription='

According to SMI v2, used to specify a value which represents a count. The range is 0 to 4294967295.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=624, _eaTypeName=Counter32 , _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:39,093 [main] TRACE ClassBuilder - read from EA: Abstract Types::CounterTs +2024-09-07 21:54:39,098 [main] TRACE ClassBuilder - Class CntRs (7 in package Abstract Types) +2024-09-07 21:54:39,149 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::CntRs, _objData=UmlObjectData [id=3004, uuid={CBFD6F89-8B72-4d52-BB3D-1F897706A12D}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:39,158 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::CntRs, _objData=UmlObjectData [id=3003, uuid={8CAFD2C5-0DE7-4308-93B7-D49D6E8065AD}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Boolean', htmlDescription='

Boolean

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=636, _eaTypeName=TruthValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:39,173 [main] TRACE ClassBuilder - read from EA: Abstract Types::CntRs +2024-09-07 21:54:39,178 [main] TRACE ClassBuilder - Class Floating (8 in package Abstract Types) +2024-09-07 21:54:39,216 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::Floating, _objData=UmlObjectData [id=2937, uuid={C1ACEE33-E3BF-408c-AA52-21345E91BD5B}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='IEEE Standard for Floating-Point Arithmetic, Standard 754-2008', htmlDescription='

IEEE Standard for Floating-Point Arithmetic, Standard 754-2008

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=630, _eaTypeName=Float32TC, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:39,232 [main] TRACE ClassBuilder - read from EA: Abstract Types::Floating +2024-09-07 21:54:39,238 [main] TRACE ClassBuilder - Class FloatingTs (9 in package Abstract Types) +2024-09-07 21:54:39,290 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::FloatingTs, _objData=UmlObjectData [id=2939, uuid={DFBCD799-E7D8-4865-988A-FB02011B6B88}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:39,300 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::FloatingTs, _objData=UmlObjectData [id=2940, uuid={111399D4-DEC9-4f43-A8B9-0E3848228A09}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='IEEE Standard for Floating-Point Arithmetic, Standard 754-2008', htmlDescription='

IEEE Standard for Floating-Point Arithmetic, Standard 754-2008

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=630, _eaTypeName=Float32TC, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:39,316 [main] TRACE ClassBuilder - read from EA: Abstract Types::FloatingTs +2024-09-07 21:54:39,322 [main] TRACE ClassBuilder - Class EntityIndex (11 in package Abstract Types) +2024-09-07 21:54:39,360 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::EntityIndex, _objData=UmlObjectData [id=3724, uuid={5A44C892-8691-42d1-B0D8-D8DE77225CA8}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Integer value 1..2147483647 index', htmlDescription='

Integer value 1..2147483647 index

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=968, _eaTypeName=Unsigned32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:39,375 [main] TRACE ClassBuilder - read from EA: Abstract Types::EntityIndex +2024-09-07 21:54:39,381 [main] TRACE ClassBuilder - Class Integer (11 in package Abstract Types) +2024-09-07 21:54:39,420 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::Integer, _objData=UmlObjectData [id=2928, uuid={A4296952-0928-44e2-8560-C6B0DC4466A7}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Integer value -2147483648..2147483647 (inclusive) according to SMI v2', htmlDescription='

Integer value -2147483648..2147483647 (inclusive) according to SMI v2

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=173, _eaTypeName=Integer32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:39,435 [main] TRACE ClassBuilder - read from EA: Abstract Types::Integer +2024-09-07 21:54:39,441 [main] TRACE ClassBuilder - Class IntegerTs (12 in package Abstract Types) +2024-09-07 21:54:39,493 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::IntegerTs, _objData=UmlObjectData [id=2930, uuid={B1DF3BAC-B146-48d1-B242-E0EE779A9B56}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:39,503 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::IntegerTs, _objData=UmlObjectData [id=2931, uuid={D8B8C3AD-4B33-445e-9393-31D5B1982D4A}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Integer value -2147483648..2147483647 (inclusive) according to SMI v2', htmlDescription='

Integer value -2147483648..2147483647 (inclusive) according to SMI v2

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=173, _eaTypeName=Integer32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:39,521 [main] TRACE ClassBuilder - read from EA: Abstract Types::IntegerTs +2024-09-07 21:54:39,526 [main] TRACE ClassBuilder - Class InetAddress (14 in package Abstract Types) +2024-09-07 21:54:39,566 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::InetAddress, _objData=UmlObjectData [id=3017, uuid={8A787CF9-BA07-4486-A4DF-1CF9BA7A3A41}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='A value that represents an Internet address according to IETF RFC 4001.', htmlDescription='

A value that represents an Internet address according to IETF RFC 4001.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=952, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:39,581 [main] TRACE ClassBuilder - read from EA: Abstract Types::InetAddress +2024-09-07 21:54:39,587 [main] TRACE ClassBuilder - Class InetAddressType (15 in package Abstract Types) +2024-09-07 21:54:39,622 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::InetAddressType, _objData=UmlObjectData [id=3690, uuid={117C0501-377C-4bf4-90D9-77F084F0628D}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Address Type', htmlDescription='

Address Type

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=954, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:39,636 [main] TRACE ClassBuilder - read from EA: Abstract Types::InetAddressType +2024-09-07 21:54:39,642 [main] TRACE ClassBuilder - Class MacAddress (16 in package Abstract Types) +2024-09-07 21:54:39,680 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::MacAddress, _objData=UmlObjectData [id=3019, uuid={212F7F94-30C7-4296-9560-DDE128B43ABE}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='OCTET STRING (SIZE (6)), DISPLAY-HINT "1x:"', htmlDescription='

OCTET STRING (SIZE (6)), DISPLAY-HINT "1x:"

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=966, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:39,695 [main] TRACE ClassBuilder - read from EA: Abstract Types::MacAddress +2024-09-07 21:54:39,701 [main] TRACE ClassBuilder - Class Selector (17 in package Abstract Types) +2024-09-07 21:54:39,739 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::Selector, _objData=UmlObjectData [id=3015, uuid={2B45785E-70C4-45d5-B68C-37E64794195C}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='For Transport Selector, max length is 8. For Session and Presentation Selector max length is 16.', htmlDescription='

For Transport Selector, max length is 8. For Session and Presentation Selector max length is 16.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=632, _eaTypeName=DisplayString, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:39,753 [main] TRACE ClassBuilder - read from EA: Abstract Types::Selector +2024-09-07 21:54:39,759 [main] TRACE ClassBuilder - Class Timestamp (18 in package Abstract Types) +2024-09-07 21:54:39,796 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::Timestamp, _objData=UmlObjectData [id=3083, uuid={1090CB92-2A2F-4fef-8659-3BD00578C467}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='The value of year is in network-byte order, fractions of second is as defined in RFC 5905, epoch is defined as Midnight January 1, 1970.', htmlDescription='

The value of year is in network-byte order, fractions of second is as defined in RFC 5905, epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:39,811 [main] TRACE ClassBuilder - read from EA: Abstract Types::Timestamp +2024-09-07 21:54:39,817 [main] TRACE ClassBuilder - Class CharString (19 in package Abstract Types) +2024-09-07 21:54:39,855 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::CharString, _objData=UmlObjectData [id=2989, uuid={E34DC27C-7282-4663-B1EF-D2B160F31A39}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Represents a String.', htmlDescription='

Represents a String.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=632, _eaTypeName=DisplayString, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:39,870 [main] TRACE ClassBuilder - read from EA: Abstract Types::CharString +2024-09-07 21:54:39,876 [main] TRACE ClassBuilder - Class CharStringTs (20 in package Abstract Types) +2024-09-07 21:54:39,929 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::CharStringTs, _objData=UmlObjectData [id=3380, uuid={AF16BFAF-FF80-4499-9DAD-A58391568338}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:39,940 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::CharStringTs, _objData=UmlObjectData [id=3379, uuid={2E8EFCAA-307D-4001-97ED-98DC7A6FCC62}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Represents a String.', htmlDescription='

Represents a String.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=632, _eaTypeName=DisplayString, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:39,955 [main] TRACE ClassBuilder - read from EA: Abstract Types::CharStringTs +2024-09-07 21:54:39,961 [main] TRACE ClassBuilder - Class AbstractBaseType (21 in package Abstract Types) +2024-09-07 21:54:40,208 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of BooleanValue +2024-09-07 21:54:40,210 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of Integer +2024-09-07 21:54:40,212 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of BooleanValueTs +2024-09-07 21:54:40,214 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of CounterTs +2024-09-07 21:54:40,215 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of Floating +2024-09-07 21:54:40,217 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of FloatingTs +2024-09-07 21:54:40,219 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of IntegerTs +2024-09-07 21:54:40,220 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of CharString +2024-09-07 21:54:40,221 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of CharStringTs +2024-09-07 21:54:40,223 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of Timestamp +2024-09-07 21:54:40,224 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of Selector +2024-09-07 21:54:40,226 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of MacAddress +2024-09-07 21:54:40,227 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of InetAddressType +2024-09-07 21:54:40,228 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of InetAddress +2024-09-07 21:54:40,230 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of EntityIndex +2024-09-07 21:54:40,232 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of CntRs +2024-09-07 21:54:40,248 [main] TRACE ClassBuilder - read from EA: Abstract Types::AbstractBaseType +2024-09-07 21:54:40,253 [main] TRACE ClassBuilder - Class AbstractAgent (22 in package Abstract Types) +2024-09-07 21:54:40,602 [main] TRACE ClassBuilder - read from EA: Abstract Types::AbstractAgent +2024-09-07 21:54:40,604 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=710, _objData=UmlObjectData [id=259, uuid={5004F08F-A898-4404-9AC0-FF579C27E37E}, since=null, name=Abstract Types, alias=, stereotype=, visibility=public, txtDescription='The abstract objects used within each agent are mapped to the following object types, except for the objects that refer to special enumerated data types which are defined by their own dedicated types. +Abstract objects are classified by the following attributes: +- Type of data (Boolean, Counter, Integer, Float) +- Timestamp required for each status value change +The type object naming actually reflects this classification, as provided in the description of each abstract type.', htmlDescription='

The abstract objects used within each agent are mapped to the following object types, except for the objects that refer to special enumerated data types which are defined by their own dedicated types.

Abstract objects are classified by the following attributes:

  • Type of data (Boolean, Counter, Integer, Float)
  • Timestamp required for each status value change

The type object naming actually reflects this classification, as provided in the description of each abstract type.

'], _modelId=362, _selfDependent=false, _classes=18 +2024-09-07 21:54:40,608 [main] INFO PackageBuilder - processing package EnumeratedTypes (5) ... +2024-09-07 21:54:40,975 [main] TRACE ClassBuilder - Class AppDatStKind (1 in package EnumeratedTypes) +2024-09-07 21:54:40,998 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::AppDatStKind, _objData=UmlObjectData [id=1780, uuid={088C6AC2-2351-44bf-92A5-C8E7C03B4C15}, since=null, name=unknown, alias=, stereotype=enum, visibility=public, txtDescription='No information available about the environment.', htmlDescription='

No information available about the environment.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=true, _isTypeSuperfluous=true, _type=null] +2024-09-07 21:54:41,008 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::AppDatStKind, _objData=UmlObjectData [id=1781, uuid={4624AC11-61D2-4ce9-99AF-1512A03A0802}, since=null, name=good, alias=, stereotype=enum, visibility=public, txtDescription='Good environment status.', htmlDescription='

Good environment status.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=int, _isLiteral=true, _isTypeSuperfluous=true, _type=null] +2024-09-07 21:54:41,017 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::AppDatStKind, _objData=UmlObjectData [id=1782, uuid={8143CB0E-A1A4-4abf-820C-2678E62A29E1}, since=null, name=bad, alias=, stereotype=enum, visibility=public, txtDescription='Environmental problems detected.', htmlDescription='

Environmental problems detected.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=2, _eaTypeId=0, _eaTypeName=int, _isLiteral=true, _isTypeSuperfluous=true, _type=null] +2024-09-07 21:54:41,022 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::AppDatStKind +2024-09-07 21:54:41,027 [main] TRACE ClassBuilder - Class PhyHealthKind (1 in package EnumeratedTypes) +2024-09-07 21:54:41,051 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::PhyHealthKind, _objData=UmlObjectData [id=4113, uuid={37ACCA99-1DF6-4847-8122-3BCE07D878BA}, since=null, name=ok, alias=, stereotype=enum, visibility=public, txtDescription='No problems, normal operation.', htmlDescription='

No problems, normal operation.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=true, _isTypeSuperfluous=true, _type=null] +2024-09-07 21:54:41,061 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::PhyHealthKind, _objData=UmlObjectData [id=4114, uuid={5D46B37F-ECC9-4e40-8A90-5061744F8173}, since=null, name=warning, alias=, stereotype=enum, visibility=public, txtDescription='Minor problems, but in safe operation mode.', htmlDescription='

Minor problems, but in safe operation mode.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=int, _isLiteral=true, _isTypeSuperfluous=true, _type=null] +2024-09-07 21:54:41,070 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::PhyHealthKind, _objData=UmlObjectData [id=4115, uuid={D7AB716A-CA99-403b-9D93-D795563A98BC}, since=null, name=alarm, alias=, stereotype=enum, visibility=public, txtDescription='Severe problem, no operation possible.', htmlDescription='

Severe problem, no operation possible.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=2, _eaTypeId=0, _eaTypeName=int, _isLiteral=true, _isTypeSuperfluous=true, _type=null] +2024-09-07 21:54:41,074 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::PhyHealthKind +2024-09-07 21:54:41,080 [main] TRACE ClassBuilder - Class ExtKind (2 in package EnumeratedTypes) +2024-09-07 21:54:41,104 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ExtKind, _objData=UmlObjectData [id=3369, uuid={27CBBAC5-2512-4f4b-A0B1-935AC701B409}, since=null, name=unknown, alias=, stereotype=enum, visibility=public, txtDescription='unknown module', htmlDescription='

unknown module

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,113 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ExtKind, _objData=UmlObjectData [id=3370, uuid={34D83563-3678-4f50-8C33-ACE3F6629F9D}, since=null, name=ioModule, alias=, stereotype=enum, visibility=public, txtDescription='I/O module', htmlDescription='

I/O module

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,123 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ExtKind, _objData=UmlObjectData [id=3371, uuid={C5B47DA7-C6A6-457c-87C7-E616CA496356}, since=null, name=softwarePLC, alias=, stereotype=enum, visibility=public, txtDescription='Software PLC module', htmlDescription='

Software PLC module

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,128 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::ExtKind +2024-09-07 21:54:41,134 [main] TRACE ClassBuilder - Class IntKind (4 in package EnumeratedTypes) +2024-09-07 21:54:41,156 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::IntKind, _objData=UmlObjectData [id=3392, uuid={0CCB0825-478A-4793-9BED-DCE9190E1B71}, since=null, name=wired, alias=, stereotype=enum, visibility=public, txtDescription='Wired interface', htmlDescription='

Wired interface

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,164 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::IntKind, _objData=UmlObjectData [id=3393, uuid={9E23B223-6923-4872-B4B4-86CB85C60579}, since=null, name=wireless, alias=, stereotype=enum, visibility=public, txtDescription='Wireless interface', htmlDescription='

Wireless interface

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,168 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::IntKind +2024-09-07 21:54:41,174 [main] TRACE ClassBuilder - Class LnkKind (5 in package EnumeratedTypes) +2024-09-07 21:54:41,199 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::LnkKind, _objData=UmlObjectData [id=2720, uuid={04896740-8BD1-4a07-987A-351CE576D6E0}, since=null, name=unknown, alias=, stereotype=enum, visibility=public, txtDescription='unknown', htmlDescription='

unknown

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,208 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::LnkKind, _objData=UmlObjectData [id=2721, uuid={61312937-D7B2-4aff-BF7B-CC599BE0AF64}, since=null, name=serial, alias=, stereotype=enum, visibility=public, txtDescription='serial', htmlDescription='

serial

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,217 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::LnkKind, _objData=UmlObjectData [id=2722, uuid={C0A08551-30DD-4843-9619-727AC796310A}, since=null, name=tcp, alias=, stereotype=enum, visibility=public, txtDescription='tcp', htmlDescription='

tcp

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,226 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::LnkKind, _objData=UmlObjectData [id=2723, uuid={93B64A96-33DB-4cfd-9500-8EC833B7FE0C}, since=null, name=udp, alias=, stereotype=enum, visibility=public, txtDescription='udp', htmlDescription='

udp

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,235 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::LnkKind, _objData=UmlObjectData [id=3391, uuid={72A18E68-801C-4831-8D81-BD42E2AC29B7}, since=null, name=eth, alias=, stereotype=enum, visibility=public, txtDescription='Ethernet interface ISO/OSI level 2 protocol, not using UDP and TCP.', htmlDescription='

Ethernet interface ISO/OSI level 2 protocol, not using UDP and TCP.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,240 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::LnkKind +2024-09-07 21:54:41,245 [main] TRACE ClassBuilder - Class PSPAccKind (6 in package EnumeratedTypes) +2024-09-07 21:54:41,266 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::PSPAccKind, _objData=UmlObjectData [id=1784, uuid={D408D95C-FFE4-4655-A529-710E301D9B38}, since=null, name=notBeingAccessed, alias=, stereotype=, visibility=public, txtDescription='No access to IED control panel is taking place.', htmlDescription='

No access to IED control panel is taking place.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=true, _isTypeSuperfluous=true, _type=null] +2024-09-07 21:54:41,275 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::PSPAccKind, _objData=UmlObjectData [id=1785, uuid={4FE96E50-3BB9-4a27-9440-1187A89DB87F}, since=null, name=accessOccurring, alias=, stereotype=, visibility=public, txtDescription='An access to IED control panel is taking place.', htmlDescription='

An access to IED control panel is taking place.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=int, _isLiteral=true, _isTypeSuperfluous=true, _type=null] +2024-09-07 21:54:41,279 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::PSPAccKind +2024-09-07 21:54:41,284 [main] TRACE ClassBuilder - Class ProtIdKind (7 in package EnumeratedTypes) +2024-09-07 21:54:41,308 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ProtIdKind, _objData=UmlObjectData [id=3250, uuid={07B1D7D8-39BB-4858-8EA3-BF4F5EC59D4E}, since=null, name=unknown, alias=, stereotype=enum, visibility=public, txtDescription='Unknown protocol', htmlDescription='

Unknown protocol

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,317 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ProtIdKind, _objData=UmlObjectData [id=3249, uuid={946B4BE5-1467-4fb2-99F0-66054A2B505E}, since=null, name=iEC6185081, alias=, stereotype=enum, visibility=public, txtDescription='MMS', htmlDescription='

MMS

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,326 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ProtIdKind, _objData=UmlObjectData [id=3251, uuid={FCC2EF29-9BF3-42ab-B706-EEC24615E648}, since=null, name=iEC6185081GOOSE, alias=, stereotype=enum, visibility=public, txtDescription='GOOSE. This type indicate also routable GOOSE when the LnkType attribute specifies a routable type (e.g. TCP)', htmlDescription='

GOOSE. This type indicate also routable GOOSE when the LnkType attribute specifies a routable type (e.g. TCP)

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,335 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ProtIdKind, _objData=UmlObjectData [id=3252, uuid={53BC9774-9A1A-4ea3-BA2C-3F3E35450676}, since=null, name=iEC6185092SV, alias=, stereotype=enum, visibility=public, txtDescription='SV. This type indicate also routable SV when the LnkType attribute specifies a routable type (e.g. TCP)', htmlDescription='

SV. This type indicate also routable SV when the LnkType attribute specifies a routable type (e.g. TCP)

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,343 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ProtIdKind, _objData=UmlObjectData [id=3253, uuid={2C9A588E-9040-4f72-A62A-0A0C70EB186D}, since=null, name=ieee1815DNP, alias=, stereotype=enum, visibility=public, txtDescription='DNP', htmlDescription='

DNP

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,353 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ProtIdKind, _objData=UmlObjectData [id=3254, uuid={B7D18D05-3E60-4a6e-9210-E719F96EA21F}, since=null, name=iec608705, alias=, stereotype=enum, visibility=public, txtDescription='IEC 60870-5 (Valid for 101 and 104 companion standards)', htmlDescription='

IEC 60870-5 (Valid for 101 and 104 companion standards)

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=5, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,362 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ProtIdKind, _objData=UmlObjectData [id=4503, uuid={BE6DDE6F-88D8-4f32-AB00-B3F5EBFA1B7B}, since=null, name=iEC6185082, alias=, stereotype=enum, visibility=public, txtDescription='MMS over Extensible Messaging Presence Protocol (XMPP)', htmlDescription='

MMS over Extensible Messaging Presence Protocol (XMPP)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=6, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,366 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::ProtIdKind +2024-09-07 21:54:41,371 [main] TRACE ClassBuilder - Class EventKind (8 in package EnumeratedTypes) +2024-09-07 21:54:41,398 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3694, uuid={648B3CAD-2A54-403c-8179-4CCAF44C7DFC}, since=null, name=none, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that the application does not exist.', htmlDescription='

Indicates that the application does not exist.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,408 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3695, uuid={629EF376-0921-44b8-9D1C-CE35E96EA70C}, since=null, name=unKnown, alias=, stereotype=enum, visibility=public, txtDescription='unclassified type', htmlDescription='

unclassified type

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,417 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3696, uuid={EAF67857-3BB4-401b-866C-95586A723502}, since=null, name=denialOfService, alias=, stereotype=enum, visibility=public, txtDescription='Denial of Service attack', htmlDescription='

Denial of Service attack

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,426 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3697, uuid={6A482C90-ACB9-4b3c-A3B6-614C2A1FF15D}, since=null, name=malware, alias=, stereotype=enum, visibility=public, txtDescription='Malware detected', htmlDescription='

Malware detected

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,435 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3698, uuid={B9FF19E5-679A-4370-AA7F-C8FBBFC5762D}, since=null, name=bufferOverRun, alias=, stereotype=enum, visibility=public, txtDescription='Buffer Over Run', htmlDescription='

Buffer Over Run

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,444 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3701, uuid={0B2BD779-5C64-4a16-B567-5B15C981A38D}, since=null, name=bufferUnderRun, alias=, stereotype=enum, visibility=public, txtDescription='Buffer Under Run', htmlDescription='

Buffer Under Run

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=5, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,452 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3702, uuid={62A177D9-B72C-456c-9901-7E28473C34BF}, since=null, name=badCredential, alias=, stereotype=enum, visibility=public, txtDescription='Bad Credential', htmlDescription='

Bad Credential

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=6, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,461 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3703, uuid={FF33276B-A640-4bff-B1CD-9BF645FB9A0F}, since=null, name=badKey, alias=, stereotype=enum, visibility=public, txtDescription='Bad Key', htmlDescription='

Bad Key

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=7, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,471 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3699, uuid={10F046F2-3549-4712-83DC-080961F7A2FF}, since=null, name=malformedPDU, alias=, stereotype=enum, visibility=public, txtDescription='Detected some tampered/malformed packets.', htmlDescription='

Detected some tampered/malformed packets.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=8, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,480 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3693, uuid={408A86F3-7E67-4037-98BE-835B3D745F6F}, since=null, name=physicalDisruption, alias=, stereotype=enum, visibility=public, txtDescription='Power failure detection or media disconnection.', htmlDescription='

Power failure detection or media disconnection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=9, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,488 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3700, uuid={2F6F7E56-04CE-45eb-A2EA-2240EA8F3214}, since=null, name=invalidNetworkAccess, alias=, stereotype=enum, visibility=public, txtDescription='Access to the device form unexpected/banned networks.', htmlDescription='

Access to the device form unexpected/banned networks.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=10, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,493 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::EventKind +2024-09-07 21:54:41,498 [main] TRACE ClassBuilder - Class TimSyncIssueKind (10 in package EnumeratedTypes) +2024-09-07 21:54:41,520 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncIssueKind, _objData=UmlObjectData [id=644, uuid={5F833F2F-8710-4c68-9FD5-2901D4F9FBAA}, since=null, name=synced, alias=, stereotype=enum, visibility=public, txtDescription='Indicates time sync is active and correctly operating with local time sync.', htmlDescription='

Indicates time sync is active and correctly operating with local time sync.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,536 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncIssueKind, _objData=UmlObjectData [id=645, uuid={88454DC2-BBEA-4021-BAD5-FE61CA4E4F49}, since=null, name=degradated, alias=, stereotype=enum, visibility=public, txtDescription='Indicates time sync is active but not operating correctly (for example because time source is not correctly operating or because of network degradation).', htmlDescription='

Indicates time sync is active but not operating correctly (for example because time source is not correctly operating or because of network degradation).

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,547 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncIssueKind, _objData=UmlObjectData [id=646, uuid={869DAB25-EE51-4fb5-9626-BD3FAFC7A6B3}, since=null, name=failed, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that sync has failed.', htmlDescription='

Indicates that sync has failed.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,558 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncIssueKind, _objData=UmlObjectData [id=4499, uuid={64AE1060-E782-4cb0-9E8C-F0A50D2EF305}, since=null, name=syncedGlobal, alias=, stereotype=enum, visibility=public, txtDescription='Indicates time sync is active and correctly operating with global time sync.', htmlDescription='

Indicates time sync is active and correctly operating with global time sync.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,562 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::TimSyncIssueKind +2024-09-07 21:54:41,567 [main] TRACE ClassBuilder - Class SecurityProfileKind (11 in package EnumeratedTypes) +2024-09-07 21:54:41,593 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::SecurityProfileKind, _objData=UmlObjectData [id=3924, uuid={F71BC91A-79AE-45ca-8AB9-6204E87EEBD0}, since=null, name=noSecurity, alias=, stereotype=enum, visibility=public, txtDescription='Indicate that no security profile is in use', htmlDescription='

Indicate that no security profile is in use

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,604 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::SecurityProfileKind, _objData=UmlObjectData [id=3926, uuid={6A444C1A-57C0-4e5d-8703-6142480FF36E}, since=null, name=aProfile, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that authentication A Profile is in use.', htmlDescription='

Indicates that authentication A Profile is in use.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,614 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::SecurityProfileKind, _objData=UmlObjectData [id=3927, uuid={89E81915-E439-46f6-B4B0-93DD1656B0A6}, since=null, name=e2eProfile, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that End-to-end application security profile is in use', htmlDescription='

Indicates that End-to-end application security profile is in use

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,625 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::SecurityProfileKind, _objData=UmlObjectData [id=3922, uuid={CF278B1A-3FC4-4998-B195-7ED80C0F5913}, since=null, name=ae2eProfile, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that encrypted End-to-end application security profile is in use', htmlDescription='

Indicates that encrypted End-to-end application security profile is in use

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,630 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::SecurityProfileKind +2024-09-07 21:54:41,635 [main] TRACE ClassBuilder - Class TimSyncSrcKind (11 in package EnumeratedTypes) +2024-09-07 21:54:41,667 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=665, uuid={952CFE67-4E7C-422f-BD48-A384F2B03616}, since=null, name=unknown, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that the type of the current time sync source is unknown.', htmlDescription='

Indicates that the type of the current time sync source is unknown.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,676 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=666, uuid={EA2E4808-5FE5-4d01-AD36-77DC2F564964}, since=null, name=ntp, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via NTP protocol.', htmlDescription='

Indicates that time sync is being performed via NTP protocol.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,684 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=667, uuid={7001BEF2-2BA7-473c-BE53-48B29DE68D38}, since=null, name=sntp, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via SNTP protocol.', htmlDescription='

Indicates that time sync is being performed via SNTP protocol.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,694 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=668, uuid={473F67F7-75B0-4ec8-AC6D-2C02DCB3D4F9}, since=null, name=irig, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via IRIG input.', htmlDescription='

Indicates that time sync is being performed via IRIG input.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,703 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=669, uuid={DFB8EAFA-7990-4ac3-AD4B-6FD2B4387C90}, since=null, name=gps, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed using GNSS input. In the previous edition GPS enumeration was in use and it is kept in this edition for backward compatibility reasons. It is equivalent to GNSS.', htmlDescription='

Indicates that time sync is being performed using GNSS input. In the previous edition GPS enumeration was in use and it is kept in this edition for backward compatibility reasons. It is equivalent to GNSS.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,712 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=670, uuid={F059225D-17FE-4d2e-8C53-948236E8E978}, since=null, name=ieee1588PTP, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via PTP protocol.', htmlDescription='

Indicates that time sync is being performed via PTP protocol.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=5, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,721 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=671, uuid={9DD2DD32-D0B5-4e2d-9449-188E91493134}, since=null, name=ieee1588PTPC37238Profile2011, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via PTP protocol using C37.238-2011 power profile.', htmlDescription='

Indicates that time sync is being performed via PTP protocol using C37.238-2011 power profile.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=6, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,730 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=4110, uuid={6D78019A-469B-4a3b-966F-A3C9D73B86EF}, since=null, name=ieee1588PTPIEC6185093, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via PTP protocol using IEC61850-9-3 profile.', htmlDescription='

Indicates that time sync is being performed via PTP protocol using IEC61850-9-3 profile.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=7, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,739 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=4495, uuid={99E0863C-202C-4217-9613-152A89692C12}, since=null, name=ieee1588PTPC37238Profile2017, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via PTP protocol using C37.238-2017 power profile.', htmlDescription='

Indicates that time sync is being performed via PTP protocol using C37.238-2017 power profile.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=8, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,748 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=4496, uuid={220F6156-D807-40ac-8E76-FC831FA1D73A}, since=null, name=ieee1588PTPIEC6185093Ed20, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via PTP protocol using IEC61850-9-3 Ed. 2.0 profile.', htmlDescription='

Indicates that time sync is being performed via PTP protocol using IEC61850-9-3 Ed. 2.0 profile.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=9, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,758 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=4497, uuid={A37E91A6-003F-4702-931D-6FC0F51BAC0C}, since=null, name=ieee1588PTPIEC6185093Profile2016, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via PTP protocol using IEC61850-9-3 profile.', htmlDescription='

Indicates that time sync is being performed via PTP protocol using IEC61850-9-3 profile.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=7, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,767 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=4498, uuid={08161D84-2F6C-4a93-A4A0-2E54C2EBA124}, since=null, name=gnss, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via GNSS input', htmlDescription='

Indicates that time sync is being performed via GNSS input

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,776 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=4500, uuid={B0AE11B0-563B-4d29-8660-1A415DFD83BC}, since=null, name=applicationProtocol, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via application protocol transport (e.g.DNP time sync)', htmlDescription='

Indicates that time sync is being performed via application protocol transport (e.g.DNP time sync)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=10, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,785 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=4504, uuid={21CB0952-E7FB-4f9d-AA97-59732AD6ADB4}, since=null, name=ntpOnts, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via NTP over NTS (RFC 8915)', htmlDescription='

Indicates that time sync is being performed via NTP over NTS (RFC 8915)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=11, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,789 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::TimSyncSrcKind +2024-09-07 21:54:41,794 [main] TRACE ClassBuilder - Class AppDatStType (12 in package EnumeratedTypes) +2024-09-07 21:54:41,847 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::AppDatStType, _objData=UmlObjectData [id=2991, uuid={20C199C1-6505-4e87-AA5E-7761159CD7E3}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp.', htmlDescription='

Timestamp.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,856 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::AppDatStType, _objData=UmlObjectData [id=2992, uuid={A150447F-47CA-40a3-A3E4-20675ECB8425}, since=null, name=Value, alias=, stereotype=enum, visibility=public, txtDescription='AppDatStKind enumeration.', htmlDescription='

AppDatStKind enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=292, _eaTypeName=AppDatStKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,870 [main] DEBUG ClassBuilder - Adding AppDatStType as subclass of AbstractBaseType +2024-09-07 21:54:41,870 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::AppDatStType +2024-09-07 21:54:41,875 [main] TRACE ClassBuilder - Class PhyHealthType (12 in package EnumeratedTypes) +2024-09-07 21:54:41,927 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::PhyHealthType, _objData=UmlObjectData [id=4116, uuid={BAC3158A-D258-496a-83A5-0E64DFD67679}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp.', htmlDescription='

Timestamp.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,936 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::PhyHealthType, _objData=UmlObjectData [id=4117, uuid={D2C2C044-39BB-4b98-BC2D-E3B53A97EDAE}, since=null, name=Value, alias=, stereotype=enum, visibility=public, txtDescription='PhyHealthKind enumeration.', htmlDescription='

PhyHealthKind enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1034, _eaTypeName=PhyHealthKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:41,951 [main] DEBUG ClassBuilder - Adding PhyHealthType as subclass of AbstractBaseType +2024-09-07 21:54:41,951 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::PhyHealthType +2024-09-07 21:54:41,957 [main] TRACE ClassBuilder - Class ExtType (13 in package EnumeratedTypes) +2024-09-07 21:54:41,992 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ExtType, _objData=UmlObjectData [id=3367, uuid={1245D715-EBD7-4730-A6F9-04F33AE0CF28}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='ExtKind enumeration.', htmlDescription='

ExtKind enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=856, _eaTypeName=ExtKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:42,007 [main] DEBUG ClassBuilder - Adding ExtType as subclass of AbstractBaseType +2024-09-07 21:54:42,007 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::ExtType +2024-09-07 21:54:42,012 [main] TRACE ClassBuilder - Class IntType (14 in package EnumeratedTypes) +2024-09-07 21:54:42,047 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::IntType, _objData=UmlObjectData [id=3395, uuid={0A1710BD-B405-499c-8631-29D2BA1F37C0}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='IntKind enumeration', htmlDescription='

IntKind enumeration

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=864, _eaTypeName=IntKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:42,062 [main] DEBUG ClassBuilder - Adding IntType as subclass of AbstractBaseType +2024-09-07 21:54:42,062 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::IntType +2024-09-07 21:54:42,067 [main] TRACE ClassBuilder - Class EventType (15 in package EnumeratedTypes) +2024-09-07 21:54:42,118 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventType, _objData=UmlObjectData [id=3705, uuid={CF22855C-E347-4873-AD54-398449D71764}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp.', htmlDescription='

Timestamp.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:42,128 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventType, _objData=UmlObjectData [id=3704, uuid={B8CA2998-8D74-4277-B68D-01EC12299F89}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='EventKind enumeration.', htmlDescription='

EventKind enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=958, _eaTypeName=EventKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:42,142 [main] DEBUG ClassBuilder - Adding EventType as subclass of AbstractBaseType +2024-09-07 21:54:42,143 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::EventType +2024-09-07 21:54:42,148 [main] TRACE ClassBuilder - Class PSPAccType (16 in package EnumeratedTypes) +2024-09-07 21:54:42,198 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::PSPAccType, _objData=UmlObjectData [id=3378, uuid={2DC1C237-EFE6-4e97-A76B-58AA500A8F7B}, since=null, name=Timestamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp.', htmlDescription='

Timestamp.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:42,207 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::PSPAccType, _objData=UmlObjectData [id=3377, uuid={018C1C51-9C40-4e91-A95B-3878F4DD9BD9}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='PSPAccKind Enumeration.', htmlDescription='

PSPAccKind Enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=293, _eaTypeName=PSPAccKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:42,222 [main] DEBUG ClassBuilder - Adding PSPAccType as subclass of AbstractBaseType +2024-09-07 21:54:42,222 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::PSPAccType +2024-09-07 21:54:42,227 [main] TRACE ClassBuilder - Class ProtIdType (17 in package EnumeratedTypes) +2024-09-07 21:54:42,264 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ProtIdType, _objData=UmlObjectData [id=3011, uuid={7F5D7A4B-5851-45b9-9F48-5C8F08A97218}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='ProtIdKind Enumeration.', htmlDescription='

ProtIdKind Enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=829, _eaTypeName=ProtIdKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:42,278 [main] DEBUG ClassBuilder - Adding ProtIdType as subclass of AbstractBaseType +2024-09-07 21:54:42,278 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::ProtIdType +2024-09-07 21:54:42,284 [main] TRACE ClassBuilder - Class TimSyncIssueType (18 in package EnumeratedTypes) +2024-09-07 21:54:42,320 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncIssueType, _objData=UmlObjectData [id=3006, uuid={A23195C8-D6B6-4033-B7CC-798A866B84FA}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='TimSyncIssueKind Enumeration.', htmlDescription='

TimSyncIssueKind Enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=113, _eaTypeName=TimSyncIssueKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:42,335 [main] DEBUG ClassBuilder - Adding TimSyncIssueType as subclass of AbstractBaseType +2024-09-07 21:54:42,335 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::TimSyncIssueType +2024-09-07 21:54:42,341 [main] TRACE ClassBuilder - Class SecurityProfileType (20 in package EnumeratedTypes) +2024-09-07 21:54:42,378 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::SecurityProfileType, _objData=UmlObjectData [id=3929, uuid={62BF7B27-EFA1-466c-AED9-06307DBA6999}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='SecurityProfile Enumeration', htmlDescription='

SecurityProfile Enumeration

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1011, _eaTypeName=SecurityProfileKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:42,393 [main] DEBUG ClassBuilder - Adding SecurityProfileType as subclass of AbstractBaseType +2024-09-07 21:54:42,393 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::SecurityProfileType +2024-09-07 21:54:42,399 [main] TRACE ClassBuilder - Class TimSyncSrcType (20 in package EnumeratedTypes) +2024-09-07 21:54:42,439 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcType, _objData=UmlObjectData [id=3008, uuid={7D7258A7-E193-49cd-AA63-6F1E9EECA15D}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='TimSyncSrcKind Enumeration', htmlDescription='

TimSyncSrcKind Enumeration

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=117, _eaTypeName=TimSyncSrcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:42,454 [main] DEBUG ClassBuilder - Adding TimSyncSrcType as subclass of AbstractBaseType +2024-09-07 21:54:42,454 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::TimSyncSrcType +2024-09-07 21:54:42,460 [main] TRACE ClassBuilder - Class LnkType (21 in package EnumeratedTypes) +2024-09-07 21:54:42,496 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::LnkType, _objData=UmlObjectData [id=3010, uuid={9322D17D-875C-49ca-B9CF-0F43B6E41A52}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='LnkType Enumeration.', htmlDescription='

LnkType Enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=644, _eaTypeName=LnkKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:42,512 [main] DEBUG ClassBuilder - Adding LnkType as subclass of AbstractBaseType +2024-09-07 21:54:42,512 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::LnkType +2024-09-07 21:54:42,515 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=112, _objData=UmlObjectData [id=33, uuid={EA70BE0D-4F03-49cf-98EB-61A3452B8572}, since=null, name=EnumeratedTypes, alias=, stereotype=, visibility=public, txtDescription='The abstract objects defined as enumerated types refer to special enumerated data types. +The type object naming actually reflects this classification, as explained explicitly within this section in the description of each abstract type. +Please note that the attributes defined in this package classes have 1..1 multiplicity. The multiplicity is handled when these classes are used as attributes within the agents classes definition.', htmlDescription='

The abstract objects defined as enumerated types refer to special enumerated data types.

The type object naming actually reflects this classification, as explained explicitly within this section in the description of each abstract type.

Please note that the attributes defined in this package classes have 1..1 multiplicity. The multiplicity is handled when these classes are used as attributes within the agents classes definition.

'], _modelId=362, _selfDependent=false, 5_taggedValues{isAgent=yes, isEnumeration=yes, mibIdentity=enumeration, mibName=IEC-62351-ENUM-MIB, objectIdentity=enumeration}, _classes=22 +2024-09-07 21:54:42,521 [main] INFO PackageBuilder - processing package Environmental Agent (7) ... +2024-09-07 21:54:42,542 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Environmental Agent, _objData=UmlObjectData [id=8, uuid={DD68DDD1-5EEB-4a23-B16C-1FF759A2EE6A}, since=null, name=Environmental, alias=, stereotype=, visibility=public, txtDescription='The Environmental agent class.', htmlDescription='

The Environmental agent class.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 21:54:42,625 [main] TRACE ClassBuilder - Class Environmental (1 in package Environmental Agent) +2024-09-07 21:54:42,858 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2673, uuid={B7336AC3-3490-4d18-9C0A-633A3375B799}, since=null, name=AppDatSt, alias=, stereotype=health, visibility=public, txtDescription='Status of the environment where the device is operated (e.g. Power Supply, Physical Access)', htmlDescription='

Status of the environment where the device is operated (e.g. Power Supply, Physical Access)

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=766, _eaTypeName=AppDatStType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:42,870 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=596, uuid={F437BD0A-FA9A-4244-BD21-213EDEE71F93}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Attribute that allows a reset of the statistical information.', htmlDescription='

Attribute that allows a reset of the statistical information.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:42,882 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=3707, uuid={CC877A95-C652-4fe2-AD1D-655296F78214}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:42,894 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2257, uuid={A7F35D26-4B23-4015-AD0D-EBEFA191D4F4}, since=null, name=PSPBld, alias=, stereotype=security, visibility=public, txtDescription='Building access occurred.', htmlDescription='

Building access occurred.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:42,906 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2255, uuid={AE5A5B25-3635-4d4e-BB6F-3F373B37D7F7}, since=null, name=PSPIed, alias=, stereotype=security, visibility=public, txtDescription='Indicates that direct access to the IED is in process.', htmlDescription='

Indicates that direct access to the IED is in process.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:42,918 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2256, uuid={B58DB9CE-5D6A-4836-8A52-322BC774BC87}, since=null, name=PSPPanel, alias=, stereotype=security, visibility=public, txtDescription='Indicates that panel access is occurring to the IED.', htmlDescription='

Indicates that panel access is occurring to the IED.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:42,931 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2258, uuid={5330F087-530C-45ed-97CC-9AAA63252BF8}, since=null, name=PSPPerimeter, alias=, stereotype=security, visibility=public, txtDescription='Physical perimeter access occurred (e.g. door open), where available.', htmlDescription='

Physical perimeter access occurred (e.g. door open), where available.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:42,943 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=152, uuid={77B56447-B1AC-4c57-B772-2A438F32F38B}, since=null, name=PSUP, alias=, stereotype=table, visibility=public, txtDescription='A list of power supply entries.', htmlDescription='

A list of power supply entries.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=616, _eaTypeName=PSUPEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:42,956 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2260, uuid={0ABF14FE-A7EB-447e-9066-271C644F8B1A}, since=null, name=PSUPLos, alias=, stereotype=health, visibility=public, txtDescription='Power supply table entry index of the last power supply that was detected as lost.', htmlDescription='

Power supply table entry index of the last power supply that was detected as lost.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:42,969 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2259, uuid={ECCB9B5A-C082-4a31-BCA7-B115A8600DA0}, since=null, name=PSUPOn, alias=, stereotype=health, visibility=public, txtDescription='Index of the power supply that was the last to come on.', htmlDescription='

Index of the power supply that was the last to come on.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:42,984 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=3622, uuid={96BB2987-191F-4e60-BCB6-102571495093}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=874, _eaTypeName=SecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:42,998 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=3621, uuid={75ECAF5C-210D-48b8-90F9-82576506744C}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object.', htmlDescription='

State events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=903, _eaTypeName=Notification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:43,012 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=4501, uuid={7FB27A25-45C1-42c1-9B72-BD8FC786A10A}, since=null, name=PSPRemote, alias=, stereotype=security, visibility=public, txtDescription='Indicates that a current remote access is occurring to the IED.', htmlDescription='

Indicates that a current remote access is occurring to the IED.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:43,028 [main] DEBUG ClassBuilder - Adding Environmental as subclass of AbstractAgent +2024-09-07 21:54:43,028 [main] TRACE ClassBuilder - read from EA: Environmental Agent::Environmental +2024-09-07 21:54:43,034 [main] TRACE ClassBuilder - Class PSUPEntry (2 in package Environmental Agent) +2024-09-07 21:54:43,167 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2663, uuid={82D58AB7-4A2D-4041-B53A-D00E492C6C11}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:43,179 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2671, uuid={6A6A7DC3-B5BB-4553-84C2-44318B449579}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the power supply.', htmlDescription='

Description of the power supply.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:43,193 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=3725, uuid={27FE83CA-F363-47cc-8B97-92F4711DDAAF}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='Id of the power supply.', htmlDescription='

Id of the power supply.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 21:54:43,210 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2670, uuid={40DB5D25-5E33-4ad3-BB26-D2E165FEBA1F}, since=null, name=Name, alias=, stereotype=identity, visibility=public, txtDescription='Name of the power supply.', htmlDescription='

Name of the power supply.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 21:54:43,222 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2669, uuid={87F74A2E-D615-4bb8-A54D-B421846C7542}, since=null, name=PSUPLos, alias=, stereotype=health, visibility=public, txtDescription='Timestamp of the last detected power loss.', htmlDescription='

Timestamp of the last detected power loss.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:43,234 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2661, uuid={3F81B85E-2C71-4d22-8767-ADB07D4305CC}, since=null, name=PwrLosCnt, alias=, stereotype=health, visibility=public, txtDescription='Attribute that provides a count of number power losses. Power loss indicates primary supply power loss not shutdown.', htmlDescription='

Attribute that provides a count of number power losses. Power loss indicates primary supply power loss not shutdown.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:43,245 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2728, uuid={0A17570B-860F-49a1-8208-A78149EDC279}, since=null, name=PwrOn, alias=, stereotype=health, visibility=public, txtDescription='Indicates if the power supply state is currently on and operating appropriately.', htmlDescription='

Indicates if the power supply state is currently on and operating appropriately.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:43,260 [main] DEBUG ClassBuilder - Adding PSUPEntry as subclass of AbstractAgent +2024-09-07 21:54:43,260 [main] TRACE ClassBuilder - read from EA: Environmental Agent::PSUPEntry +2024-09-07 21:54:43,265 [main] TRACE ClassBuilder - Class Notification (3 in package Environmental Agent) +2024-09-07 21:54:43,319 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Notification, _objData=UmlObjectData [id=3463, uuid={99A52BA7-C37A-4d5a-9AF2-69F868DCA056}, since=null, name=PSUPLos, alias=, stereotype=health, visibility=public, txtDescription='Power supply Table Entry Index of the last power supply that was detected as lost.', htmlDescription='

Power supply Table Entry Index of the last power supply that was detected as lost.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:43,328 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Notification, _objData=UmlObjectData [id=3462, uuid={CF8ECE95-A139-4efa-B7E5-5EBCC29D609C}, since=null, name=PSUPOn, alias=, stereotype=health, visibility=public, txtDescription='Index of the power supply that was the last to come on.', htmlDescription='

Index of the power supply that was the last to come on.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:43,343 [main] DEBUG ClassBuilder - Adding Notification as subclass of AbstractAgent +2024-09-07 21:54:43,343 [main] TRACE ClassBuilder - read from EA: Environmental Agent::Notification +2024-09-07 21:54:43,349 [main] TRACE ClassBuilder - Class SecurityNotification (4 in package Environmental Agent) +2024-09-07 21:54:43,451 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=4039, uuid={F551C4F9-AD27-4ef4-B8FA-5DBAC7238912}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:43,461 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=3432, uuid={04CE81A5-8629-43c0-8F3E-D93C55B63D0B}, since=null, name=PSPBld, alias=, stereotype=security, visibility=public, txtDescription='Building Access occurred.', htmlDescription='

Building Access occurred.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:43,470 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=3430, uuid={8AA6C984-EF4B-41bb-B433-665F0793B107}, since=null, name=PSPIed, alias=, stereotype=security, visibility=public, txtDescription='Indicates that direct access to the IED is in process.', htmlDescription='

Indicates that direct access to the IED is in process.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:43,480 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=3431, uuid={CBC52337-714E-4296-BD4F-B152E72DF029}, since=null, name=PSPPanel, alias=, stereotype=security, visibility=public, txtDescription='Indicates that panel access is occurring to the IED.', htmlDescription='

Indicates that panel access is occurring to the IED.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:43,490 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=3433, uuid={165E406E-AC48-43d3-A163-7401119B36B9}, since=null, name=PSPPerimeter, alias=, stereotype=security, visibility=public, txtDescription='Perimeter Access occurred.', htmlDescription='

Perimeter Access occurred.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-07 21:54:43,504 [main] DEBUG ClassBuilder - Adding SecurityNotification as subclass of AbstractAgent +2024-09-07 21:54:43,504 [main] TRACE ClassBuilder - read from EA: Environmental Agent::SecurityNotification +2024-09-07 21:54:43,507 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=40, _objData=UmlObjectData [id=10, uuid={943B03A5-8EC5-4979-8421-5F10D4177B08}, since=null, name=Environmental Agent, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 16 this package contains the object descriptions for the environmental information to be provided for the Network and System Monitoring of environmental conditions where the device is operating.', htmlDescription='

As shown in Figure 16 this package contains the object descriptions for the environmental information to be provided for the Network and System Monitoring of environmental conditions where the device is operating.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=environmental-agent, mibName=IEC-62351-ENV-MIB, mibPrefix=env, objectBranchId=1, objectIdentity=environmental-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=Environmental Agent, _objData=UmlObjectData [id=8, uuid={DD68DDD1-5EEB-4a23-B16C-1FF759A2EE6A}, since=null, name=Environmental, alias=, stereotype=, visibility=public, txtDescription='The Environmental agent class.', htmlDescription='

The Environmental agent class.

'], _portrait=true, _kind=LOGICAL]], _classes=4 +2024-09-07 21:54:43,513 [main] INFO PackageBuilder - processing package IED Agent (8) ... +2024-09-07 21:54:43,534 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=IED Agent, _objData=UmlObjectData [id=9, uuid={C3FD1BF6-CB13-4fb3-9C75-D9FACF470ACD}, since=null, name=IED, alias=, stereotype=, visibility=public, txtDescription='The Intelligent Electronic Device class attributes', htmlDescription='

The Intelligent Electronic Device class attributes

'], _portrait=true, _kind=LOGICAL] +2024-09-07 21:54:43,673 [main] TRACE ClassBuilder - Class IED (1 in package IED Agent) +2024-09-07 21:54:44,328 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=159, uuid={1405DC0D-6A4E-4f7e-AF8C-5E21E5C79F3C}, since=null, name=AtkCnt, alias=, stereotype=security, visibility=public, txtDescription='Attribute that provides the number of cyber- attacks that have been detected.', htmlDescription='

Attribute that provides the number of cyber- attacks that have been detected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:44,340 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=593, uuid={D7F266B3-90FC-434c-850B-A67888D5FF8C}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:44,353 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3365, uuid={4F170B51-C2F3-496d-A921-71158D5FAAD4}, since=null, name=ConfigurationCRC, alias=, stereotype=identity, visibility=public, txtDescription='CRC of the last update.', htmlDescription='

CRC of the last update.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:44,366 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3364, uuid={70C845C3-72FA-4ee2-8C82-B541DEA6F1A6}, since=null, name=ConfigurationVersion, alias=, stereotype=identity, visibility=public, txtDescription='Version of the last uploaded configuration.', htmlDescription='

Version of the last uploaded configuration.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:44,377 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3264, uuid={B2181BC5-C543-4352-AF8C-CF45A0CC6715}, since=null, name=CPU, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of CPU inside the IED.', htmlDescription='

This entry defer to possible multiple instances of CPU inside the IED.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=832, _eaTypeName=CPUEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:44,388 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=164, uuid={27E657EB-F5E0-46ac-9D03-B88771E3C03E}, since=null, name=CpuUsage, alias=, stereotype=health, visibility=public, txtDescription='Provides an attribute that indicates the percentage of processing resources that is in use. Range is 0 to 100', htmlDescription='

Provides an attribute that indicates the percentage of processing resources that is in use. Range is 0 to 100

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:44,399 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=165, uuid={331F6C40-DC4F-47e4-A1E7-D03E91A9BAB7}, since=null, name=DataInv, alias=, stereotype=security, visibility=public, txtDescription='Provides a count of the number of attempts to write invalid data, for instance out-of-range data.', htmlDescription='

Provides a count of the number of attempts to write invalid data, for instance out-of-range data.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:44,410 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=1904, uuid={6044B2D8-9605-461e-A2D5-AF9EF801D394}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='This entry provides a textual description of the IED.', htmlDescription='

This entry provides a textual description of the IED.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:44,422 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=174, uuid={84B44E91-B83B-48bc-95EB-FCE87A7F7BC1}, since=null, name=ExpCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of expired certificates that are in the certificate storage configured for local use.', htmlDescription='

Indicates the number of expired certificates that are in the certificate storage configured for local use.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:44,433 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3332, uuid={609144A0-BD56-43ff-AEA6-E96829144EC8}, since=null, name=EXT, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of extension modules inside the IED.', htmlDescription='

This entry defer to possible multiple instances of extension modules inside the IED.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=850, _eaTypeName=EXTEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:44,445 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3357, uuid={40D5B796-07CF-4261-BF72-7AC36DC3E5C5}, since=null, name=FirmwareVersion, alias=, stereotype=identity, visibility=public, txtDescription='Version of the last uploaded Firmware. Timestamp refers to upload time.', htmlDescription='

Version of the last uploaded Firmware. Timestamp refers to upload time.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:44,457 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=1908, uuid={6FD1E9BC-3801-4721-BC75-1500D754A5F4}, since=null, name=InternalTemp, alias=, stereotype=health, visibility=public, txtDescription='Degree Centigrade measurement of the internal IED Temperature.', htmlDescription='

Degree Centigrade measurement of the internal IED Temperature.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:44,468 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3493, uuid={A2E2F01C-9202-4d14-B2FC-EE99FA25D64D}, since=null, name=LastCPUFail, alias=, stereotype=health, visibility=public, txtDescription='Index of last failing CPU.', htmlDescription='

Index of last failing CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:44,479 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3706, uuid={21041DB8-C542-4137-AADE-3D1E8DD5E1D5}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:44,490 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3494, uuid={7A6C77E3-9BB2-4834-8C72-DAE268A5A789}, since=null, name=LastEXTFail, alias=, stereotype=health, visibility=public, txtDescription='Index of last failing Extension.', htmlDescription='

Index of last failing Extension.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:44,501 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3492, uuid={4ACA1571-DB99-4447-9A06-033F9EE4348B}, since=null, name=LastSTOREFail, alias=, stereotype=health, visibility=public, txtDescription='Index of last failing Storage.', htmlDescription='

Index of last failing Storage.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:44,512 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3256, uuid={A9D75A03-5288-48d7-BA55-09F388369D28}, since=null, name=Location, alias=, stereotype=identity, visibility=public, txtDescription='Physical Installation coordinates (geographical and plant location).', htmlDescription='

Physical Installation coordinates (geographical and plant location).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:44,523 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3257, uuid={B4CF9E53-369A-47de-B31C-9255617C59E5}, since=null, name=Maintainer, alias=, stereotype=identity, visibility=public, txtDescription='Organizational reference for device maintenance.', htmlDescription='

Organizational reference for device maintenance.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:44,536 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3388, uuid={B008E2FB-21B8-4e33-B720-B440E4B1F49D}, since=null, name=MemTotal, alias=, stereotype=health, visibility=public, txtDescription='Provides an attribute that report the total RAM available in KBytes.', htmlDescription='

Provides an attribute that report the total RAM available in KBytes.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:44,548 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=1910, uuid={F6C9C372-CCF6-49b4-B39B-B7C633D0987A}, since=null, name=MemUsage, alias=, stereotype=health, visibility=public, txtDescription='Provides an attribute that indicates the percentage of memory that is in use.Range is 0 to 100.', htmlDescription='

Provides an attribute that indicates the percentage of memory that is in use.Range is 0 to 100.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:44,560 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3255, uuid={E81796A9-2AC8-45d5-A00C-A8FF43E2E704}, since=null, name=MIBVersion, alias=, stereotype=identity, visibility=public, txtDescription='Version of the Management Information Base.', htmlDescription='

Version of the Management Information Base.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:44,572 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=167, uuid={E0D67C9A-2A09-4694-B58C-55AB9281E1BA}, since=null, name=MisEvCnt, alias=, stereotype=health, visibility=public, txtDescription='Provides an attribute that represents the count of missed events or data.', htmlDescription='

Provides an attribute that represents the count of missed events or data.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:44,584 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=1913, uuid={FBF2BE7D-376E-477d-BEA6-8FBF4467B076}, since=null, name=Name, alias=, stereotype=identity, visibility=public, txtDescription='Name of IED.', htmlDescription='

Name of IED.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:44,597 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3718, uuid={472EB367-3A8B-4a9a-82E6-AD7C1825366F}, since=null, name=NearToExpCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of certificates in the certificate storage configured for local use that have exceeded the 70% of validity period.', htmlDescription='

Indicates the number of certificates in the certificate storage configured for local use that have exceeded the 70% of validity period.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:44,608 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=177, uuid={813425EE-45D4-449f-A1BA-5E8BDECC6309}, since=null, name=NvStore, alias=, stereotype=health, visibility=public, txtDescription='Indicates the global number of kilobytes of storage allocated for local use in all storage areas.', htmlDescription='

Indicates the global number of kilobytes of storage allocated for local use in all storage areas.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:44,620 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=178, uuid={82009203-F55E-466e-9B62-1933D717E9E0}, since=null, name=NvStoreRem, alias=, stereotype=health, visibility=public, txtDescription='Indicates the percentage of NvStore available for storage.', htmlDescription='

Indicates the percentage of NvStore available for storage.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:44,631 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=157, uuid={BE9FD31C-2E94-434f-8D2A-69F9BBC26FFD}, since=null, name=PhyHealth, alias=, stereotype=health, visibility=public, txtDescription='General health status of IED hardware and software.', htmlDescription='

General health status of IED hardware and software.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1036, _eaTypeName=PhyHealthType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:44,642 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=158, uuid={D980F3DA-CEDB-4402-837B-C8480047FB4F}, since=null, name=PhyHealthChgCnt, alias=, stereotype=health, visibility=public, txtDescription='Provides a count of the number of transitions state of PhyHealth Attribute.', htmlDescription='

Provides a count of the number of transitions state of PhyHealth Attribute.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:44,653 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3437, uuid={DF896F75-F02E-4195-9E06-0E9BB719136B}, since=null, name=RBACDbUpdate, alias=, stereotype=security, visibility=public, txtDescription='Version of the last uploaded RBAC Database.', htmlDescription='

Version of the last uploaded RBAC Database.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:44,666 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=176, uuid={BF4C520F-2A9F-434f-A442-25072A5C8B6B}, since=null, name=RevCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of revoked certificates that are still configured for local use.', htmlDescription='

Indicates the number of revoked certificates that are still configured for local use.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:44,678 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3479, uuid={8DA6CCEB-ED0C-41ec-B476-C7F33C86B499}, since=null, name=RevCheckFail, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number revocation check failures.', htmlDescription='

Indicates the number revocation check failures.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:44,690 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3620, uuid={93F9F190-837F-4def-9AE7-693E1E609256}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=912, _eaTypeName=SecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:44,701 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3619, uuid={167D9C3F-D113-4dd9-8CD1-62228F439DF9}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object.', htmlDescription='

State events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=911, _eaTypeName=Notification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:44,713 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3387, uuid={2CF43DE1-E31F-4743-B645-CC6617CC65E9}, since=null, name=STORE, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of storage modules inside the IED.', htmlDescription='

This entry defer to possible multiple instances of storage modules inside the IED.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=862, _eaTypeName=STOREEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:44,725 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=4118, uuid={A000D652-2899-4b1e-A269-5B0E74D9612D}, since=null, name=SvcViol, alias=, stereotype=security, visibility=public, txtDescription='Number of service privilege violations (i.e., when the data object that the client wanted to access exists in the access view for the association with that client, but the requested service is not allowed).', htmlDescription='

Number of service privilege violations (i.e., when the data object that the client wanted to access exists in the access view for the association with that client, but the requested service is not allowed).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:44,737 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3964, uuid={8C00B0E5-5F91-4e94-AAA3-B08EFBB15D6C}, since=null, name=Watchdog, alias=, stereotype=health, visibility=public, txtDescription='This attribute report the count of Watchdog intervention on any component of the IED.', htmlDescription='

This attribute report the count of Watchdog intervention on any component of the IED.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:44,749 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=2217, uuid={FA50F248-F688-4b0f-B343-E8626A859677}, since=null, name=WrmStrCnt, alias=, stereotype=health, visibility=public, txtDescription='Number of warm starts detected.', htmlDescription='

Number of warm starts detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:44,764 [main] DEBUG ClassBuilder - Adding IED as subclass of AbstractAgent +2024-09-07 21:54:44,764 [main] TRACE ClassBuilder - read from EA: IED Agent::IED +2024-09-07 21:54:44,769 [main] TRACE ClassBuilder - Class CPUEntry (2 in package IED Agent) +2024-09-07 21:54:44,917 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3261, uuid={F7E2552A-9E40-4498-9B35-80E4DC7388F3}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:44,928 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3260, uuid={2A8CCA5F-B153-4fa8-8801-52859B51BF8A}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the CPU.', htmlDescription='

Description of the CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:44,939 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3262, uuid={6C624EF6-19CC-45c7-8B22-52C6EB105C3F}, since=null, name=Faulty, alias=, stereotype=health, visibility=public, txtDescription='CPU generated errors.', htmlDescription='

CPU generated errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:44,953 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3259, uuid={18120B8F-8761-4f72-A364-9015D0229D9F}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='CPU number.', htmlDescription='

CPU number.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 21:54:44,964 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3258, uuid={5BACDAAA-B8BD-4635-B1F3-7E2C4CB93292}, since=null, name=Online, alias=, stereotype=health, visibility=public, txtDescription='Indicate that CPU is online and active.', htmlDescription='

Indicate that CPU is online and active.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:44,976 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3263, uuid={404E8337-84BD-4e87-888C-BC40C8FDFD3D}, since=null, name=Operable, alias=, stereotype=health, visibility=public, txtDescription='Indicates that CPU is operable (it can be either online or offline).', htmlDescription='

Indicates that CPU is operable (it can be either online or offline).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:44,988 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3389, uuid={D6BA8CB3-C883-4924-9F0F-3E0D3BF3FE2D}, since=null, name=Temperature, alias=, stereotype=health, visibility=public, txtDescription='Temperature of this CPU.', htmlDescription='

Temperature of this CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:44,999 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3965, uuid={2C004DAE-5C35-4b32-8046-95848FB39988}, since=null, name=Watchdog, alias=, stereotype=health, visibility=public, txtDescription='This attribute report the count of Watchdog intervention on this CPU.', htmlDescription='

This attribute report the count of Watchdog intervention on this CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:45,013 [main] DEBUG ClassBuilder - Adding CPUEntry as subclass of AbstractAgent +2024-09-07 21:54:45,013 [main] TRACE ClassBuilder - read from EA: IED Agent::CPUEntry +2024-09-07 21:54:45,019 [main] TRACE ClassBuilder - Class EXTEntry (3 in package IED Agent) +2024-09-07 21:54:45,199 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3334, uuid={5449D06F-D84C-4247-BFF2-855283FE546B}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='Software PLC ID.', htmlDescription='

Software PLC ID.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 21:54:45,212 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3335, uuid={1FA00718-1A03-4856-BE17-E4C968E2303B}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the Software PLC.', htmlDescription='

Description of the Software PLC.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:45,225 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3366, uuid={26FC08E1-AE06-447a-A63C-A464EF3B6C5A}, since=null, name=ExtensionType, alias=, stereotype=identity, visibility=public, txtDescription='This attribute defines the type of the extension module.', htmlDescription='

This attribute defines the type of the extension module.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=854, _eaTypeName=ExtType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:45,239 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3416, uuid={25484747-00E6-4e15-9F70-84DADE0F1C1C}, since=null, name=CodeVersion, alias=, stereotype=identity, visibility=public, txtDescription='Version of the last uploaded code.', htmlDescription='

Version of the last uploaded code.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:45,252 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3338, uuid={582D62C0-D628-4ccb-8BBD-32D4EE3B63BD}, since=null, name=Running, alias=, stereotype=health, visibility=public, txtDescription='Indicates that CPU is operable (it can be either online or offline).', htmlDescription='

Indicates that CPU is operable (it can be either online or offline).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:45,265 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3390, uuid={4838CC42-4D04-48d4-B5E0-73AC845722FF}, since=null, name=Temperature, alias=, stereotype=health, visibility=public, txtDescription='Temperature of this extension.', htmlDescription='

Temperature of this extension.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:45,278 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3333, uuid={884C8693-44E5-4b48-BBA4-E016ABF8B3C1}, since=null, name=Watchdog, alias=, stereotype=health, visibility=public, txtDescription='This attribute report the count of Watchdog intervention on this IED extension (e.g. software PLC).', htmlDescription='

This attribute report the count of Watchdog intervention on this IED extension (e.g. software PLC).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:45,291 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3337, uuid={A88DDBF9-7D12-4096-A713-D46EF92F2788}, since=null, name=Errors, alias=, stereotype=health, visibility=public, txtDescription='This attribute reports the PLC software detected errors.', htmlDescription='

This attribute reports the PLC software detected errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:45,304 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3336, uuid={A600A488-A1C0-4de3-BA57-148F100FC3F6}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:45,320 [main] DEBUG ClassBuilder - Adding EXTEntry as subclass of AbstractAgent +2024-09-07 21:54:45,320 [main] TRACE ClassBuilder - read from EA: IED Agent::EXTEntry +2024-09-07 21:54:45,326 [main] TRACE ClassBuilder - Class STOREEntry (4 in package IED Agent) +2024-09-07 21:54:45,449 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3382, uuid={51E473C6-FD18-455e-AED3-59F394443C8D}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='Storage area ID number.', htmlDescription='

Storage area ID number.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 21:54:45,461 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3383, uuid={064A1F24-744B-46ad-AD7C-A95961E97B13}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the storage area.', htmlDescription='

Description of the storage area.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:45,474 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3386, uuid={F81C3EA0-A881-4cf8-981C-6AAA51137320}, since=null, name=NvStore, alias=, stereotype=health, visibility=public, txtDescription='Indicates the amount of storage.', htmlDescription='

Indicates the amount of storage.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:45,486 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3381, uuid={9C3D8C6F-12FE-4f73-AF1F-DE108934866D}, since=null, name=NvStoreRem, alias=, stereotype=health, visibility=public, txtDescription='Indicate remaining storage in this area.', htmlDescription='

Indicate remaining storage in this area.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:45,498 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3385, uuid={D8309CF9-DAF0-4ee7-A381-888D751BA0AA}, since=null, name=Faulty, alias=, stereotype=health, visibility=public, txtDescription='Storage area fault generated errors.', htmlDescription='

Storage area fault generated errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:45,511 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3732, uuid={39256EA1-992F-4aca-AF28-01BF33E5DF73}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:45,526 [main] DEBUG ClassBuilder - Adding STOREEntry as subclass of AbstractAgent +2024-09-07 21:54:45,526 [main] TRACE ClassBuilder - read from EA: IED Agent::STOREEntry +2024-09-07 21:54:45,531 [main] TRACE ClassBuilder - Class Notification (5 in package IED Agent) +2024-09-07 21:54:45,668 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3486, uuid={B5FF53A1-E8B9-46ec-BE1B-75F6EC7C48F5}, since=null, name=PhyHealthChgCnt, alias=, stereotype=health, visibility=public, txtDescription='Provides a count of the number of transitions state of PhyHealth Attribute.', htmlDescription='

Provides a count of the number of transitions state of PhyHealth Attribute.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:45,681 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3497, uuid={C24EC3BA-E07C-4a47-9FC1-D975C6DF5FA9}, since=null, name=InternalTemp, alias=, stereotype=health, visibility=public, txtDescription='Degree Centigrade measurement of the internal IED Temperature.', htmlDescription='

Degree Centigrade measurement of the internal IED Temperature.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:45,695 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3495, uuid={11B98054-C537-42a0-938C-380F69A2A3F5}, since=null, name=NvStore, alias=, stereotype=health, visibility=public, txtDescription='Indicates the global number of kilobytes of storage allocated for local use in all storage areas.', htmlDescription='

Indicates the global number of kilobytes of storage allocated for local use in all storage areas.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:45,708 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3496, uuid={5E3EA7C8-15A7-42f6-9FBC-0C995489AB43}, since=null, name=NvStoreRem, alias=, stereotype=health, visibility=public, txtDescription='Indicates the percentage of NvStore available for storage.', htmlDescription='

Indicates the percentage of NvStore available for storage.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:45,719 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3480, uuid={8334F7D0-DA9C-4f85-8A96-1ACB87744C5B}, since=null, name=PhyHealth, alias=, stereotype=health, visibility=public, txtDescription='General health status of IED hardware and software.', htmlDescription='

General health status of IED hardware and software.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1036, _eaTypeName=PhyHealthType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:45,731 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3489, uuid={37E2129D-71C5-4030-8530-00D04FA20DDF}, since=null, name=WrmStrCnt, alias=, stereotype=health, visibility=public, txtDescription='Number of warm starts detected.', htmlDescription='

Number of warm starts detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:45,745 [main] DEBUG ClassBuilder - Adding Notification as subclass of AbstractAgent +2024-09-07 21:54:45,745 [main] TRACE ClassBuilder - read from EA: IED Agent::Notification +2024-09-07 21:54:45,750 [main] TRACE ClassBuilder - Class SecurityNotification (6 in package IED Agent) +2024-09-07 21:54:45,876 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3502, uuid={E2312704-4F51-465e-8B02-4DFC37D2286B}, since=null, name=AtkCnt, alias=, stereotype=security, visibility=public, txtDescription='Attribute that provides the number of cyber- attacks that have been detected.', htmlDescription='

Attribute that provides the number of cyber- attacks that have been detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:45,888 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3499, uuid={7B741BD7-BDA8-4148-BDA0-6667E98C3102}, since=null, name=ExpCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of expired certificates that are in the certificate storage configured for local use.', htmlDescription='

Indicates the number of expired certificates that are in the certificate storage configured for local use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:45,903 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3730, uuid={7029DE89-300D-43cb-B94F-49317EE26061}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:45,952 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3731, uuid={554C03A1-C7D0-43ea-8541-46609B5191C2}, since=null, name=NearToExpCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of certificates in the certificate storage configured for local use that have exceeded the 70% of validity period.', htmlDescription='

Indicates the number of certificates in the certificate storage configured for local use that have exceeded the 70% of validity period.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:45,989 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3498, uuid={16D2AFD2-62AE-4dfe-BA94-32B996B33302}, since=null, name=RevCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of revoked certificates that are still configured for local use.', htmlDescription='

Indicates the number of revoked certificates that are still configured for local use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:46,003 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3500, uuid={406910CA-F346-4649-99A2-5A215611BD7D}, since=null, name=RevCheckFail, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number revocation check failures.', htmlDescription='

Indicates the number revocation check failures.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:46,026 [main] DEBUG ClassBuilder - Adding SecurityNotification as subclass of AbstractAgent +2024-09-07 21:54:46,026 [main] TRACE ClassBuilder - read from EA: IED Agent::SecurityNotification +2024-09-07 21:54:46,029 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=43, _objData=UmlObjectData [id=11, uuid={FA4A74C3-A660-4c32-8794-7695680DB23E}, since=null, name=IED Agent, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 17, the IED Agent package contains the object descriptions for the environmental information to be provided for the network and system monitoring of environmental conditions where the device is operating.', htmlDescription='

As shown in Figure 17, the IED Agent package contains the object descriptions for the environmental information to be provided for the network and system monitoring of environmental conditions where the device is operating.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=ied-agent, mibName=IEC-62351-DEV-MIB, mibPrefix=iED, objectBranchId=2, objectIdentity=ied-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=IED Agent, _objData=UmlObjectData [id=9, uuid={C3FD1BF6-CB13-4fb3-9C75-D9FACF470ACD}, since=null, name=IED, alias=, stereotype=, visibility=public, txtDescription='The Intelligent Electronic Device class attributes', htmlDescription='

The Intelligent Electronic Device class attributes

'], _portrait=true, _kind=LOGICAL]], _classes=6 +2024-09-07 21:54:46,034 [main] INFO PackageBuilder - processing package Application Protocols Agents (9) ... +2024-09-07 21:54:46,196 [main] INFO PackageBuilder - processing package Common objects (0) ... +2024-09-07 21:54:46,209 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Common objects, _objData=UmlObjectData [id=64, uuid={583FFED4-9F6C-420f-88B3-80FF9F387121}, since=null, name=Application Protocol common objects, alias=, stereotype=, visibility=public, txtDescription='Application Protocol common objects', htmlDescription='

Application Protocol common objects

'], _portrait=true, _kind=LOGICAL] +2024-09-07 21:54:46,255 [main] TRACE ClassBuilder - Class CommonProtocolInfo (1 in package Common objects) +2024-09-07 21:54:46,470 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4079, uuid={CCA64890-32AD-4a39-BD2E-B115DB6259D5}, since=null, name=IEC62351part3, alias=, stereotype=security, visibility=public, txtDescription='True is security profile in use for this association (IEC 62351-3).', htmlDescription='

True is security profile in use for this association (IEC 62351-3).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:46,485 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4087, uuid={0CDF636C-287B-44bf-AF3B-83CBAEB3791B}, since=null, name=Part3ConnectionId, alias=, stereotype=protocol, visibility=public, txtDescription='IEC 62351-3 Transport layer connection id in use for this Association. Meaningful only if IEC62351Part3 is true.', htmlDescription='

IEC 62351-3 Transport layer connection id in use for this Association. Meaningful only if IEC62351Part3 is true.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:46,503 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4099, uuid={18DFBDB7-B849-4a22-AEBA-4B62D877531D}, since=null, name=TCPHndShTime, alias=, stereotype=performance, visibility=public, txtDescription='Duration of the TCP handshake. Only applicable when the when the application layer has access to the TLS layer.', htmlDescription='

Duration of the TCP handshake. Only applicable when the when the application layer has access to the TLS layer.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:46,525 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4107, uuid={A9F9F05C-681E-480a-B663-D8EB1E1FE300}, since=null, name=TLSHndTime, alias=, stereotype=performance, visibility=public, txtDescription='TLS Handshake time. Only applicable when the when the application layer has access to the TLS layer.', htmlDescription='

TLS Handshake time. Only applicable when the when the application layer has access to the TLS layer.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:46,544 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4109, uuid={F7CBA04D-7FEA-47c7-A560-EA06B30C3056}, since=null, name=TLSRenegotiationTime, alias=, stereotype=performance, visibility=public, txtDescription='TLS Renegotiation time. Only applicable when the when the application layer has access to the TLS layer.', htmlDescription='

TLS Renegotiation time. Only applicable when the when the application layer has access to the TLS layer.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:46,558 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4108, uuid={CBC69A2E-FFEA-4612-9907-B3E519FB4E3F}, since=null, name=TLSResumptionTime, alias=, stereotype=performance, visibility=public, txtDescription='TLS Resumption time. Only applicable when the when the application layer has access to the TLS layer.', htmlDescription='

TLS Resumption time. Only applicable when the when the application layer has access to the TLS layer.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:46,573 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4106, uuid={EF9560F0-0EC3-4417-883D-96C32AE7803C}, since=null, name=TotalHndTime, alias=, stereotype=performance, visibility=public, txtDescription='Transport + Application Handshake time.', htmlDescription='

Transport + Application Handshake time.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:46,591 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4105, uuid={BCBEF3C5-946E-42cf-8D1D-CAAC2679E795}, since=null, name=TransportHndTime, alias=, stereotype=performance, visibility=public, txtDescription='Transport layer handshake time. It is equal to TCPHndTime if IEC62351part3 is false, it is equal to TCPHndTime + TLSHndTime if IEC62351part3 is true.', htmlDescription='

Transport layer handshake time. It is equal to TCPHndTime if IEC62351part3 is false, it is equal to TCPHndTime + TLSHndTime if IEC62351part3 is true.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:46,650 [main] DEBUG ClassBuilder - Adding CommonProtocolInfo as subclass of AbstractAgent +2024-09-07 21:54:46,653 [main] TRACE ClassBuilder - read from EA: Common objects::CommonProtocolInfo +2024-09-07 21:54:46,655 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Application Protocols Agents, _depth=4, _eaElementID=1030, _objData=UmlObjectData [id=383, uuid={AE0BBC52-C6A1-4653-96A9-F35780566A54}, since=null, name=Common objects, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 18, this package includes the common class for the application protocols.', htmlDescription='

As shown in Figure 18, this package includes the common class for the application protocols.

'], _modelId=362, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=Common objects, _objData=UmlObjectData [id=64, uuid={583FFED4-9F6C-420f-88B3-80FF9F387121}, since=null, name=Application Protocol common objects, alias=, stereotype=, visibility=public, txtDescription='Application Protocol common objects', htmlDescription='

Application Protocol common objects

'], _portrait=true, _kind=LOGICAL]], _classes=1 +2024-09-07 21:54:46,660 [main] INFO PackageBuilder - processing package IEC62351-3 ed.2 Agent (6) ... +2024-09-07 21:54:46,681 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=IEC62351-3 ed.2 Agent, _objData=UmlObjectData [id=72, uuid={38D28719-1A0B-491f-9010-AF2D3032BB4B}, since=null, name=IEC 62351-3 ed.2 Agent Relationships, alias=, stereotype=, visibility=public, txtDescription='This picture depicts the relationship between IEC 62351-3 ed.2 objects', htmlDescription='

This picture depicts the relationship between IEC 62351-3 ed.2 objects

'], _portrait=true, _kind=LOGICAL] +2024-09-07 21:54:46,797 [main] TRACE ClassBuilder - Class IEC62351-3ed2security (1 in package IEC62351-3 ed.2 Agent) +2024-09-07 21:54:47,382 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4460, uuid={7510EED9-2C7E-480d-BD60-571DDC732128}, since=null, name=tlsEarlyDataCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: counts early data in handshake detected but neglected.', htmlDescription='

TLSv1.3: counts early data in handshake detected but neglected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:47,398 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4454, uuid={4FA3487F-4B3B-477e-99E8-2F5D24C013EF}, since=null, name=tlsDisallowedCipherCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts disallowed cipher suite proposed.', htmlDescription='

Counts disallowed cipher suite proposed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:47,413 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4461, uuid={F6A6964F-1010-4fc3-9112-0BBBF8244593}, since=null, name=tlsCertSizeMismatchCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts occurrences of endpoint certificate size exceeds limits', htmlDescription='

Counts occurrences of endpoint certificate size exceeds limits

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:47,431 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4463, uuid={89576E04-2176-4454-8207-BA0A305B9547}, since=null, name=tlsNoCaMatchCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts events of matching RootCA certificate for endpoint certificate validation not available.', htmlDescription='

Counts events of matching RootCA certificate for endpoint certificate validation not available.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:47,446 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4464, uuid={E1FBC1A2-6D0C-437e-95D2-873497AF44C6}, since=null, name=tlsNoSigAlgoExtCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: Counts events of no signature-algorithm extension included. Fallback to deprecated signature algorithm', htmlDescription='

TLSv1.2: Counts events of no signature-algorithm extension included. Fallback to deprecated signature algorithm

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:47,460 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4465, uuid={0A95DFE0-8624-4b8a-814E-A12605F19B07}, since=null, name=tlsDepDigAlgCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: Deprecated signature algorithm combination detected counter.', htmlDescription='

TLSv1.2: Deprecated signature algorithm combination detected counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:47,494 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4466, uuid={B68E613E-EEC5-4696-A841-9EE87D237582}, since=null, name=tlsNoTrustedCertMatchCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times Endpoint certificate not in certificate trust list', htmlDescription='

Counts the times Endpoint certificate not in certificate trust list

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:47,523 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4467, uuid={614E4EB0-BAA2-4b19-B00A-EA1FF0D8A3BD}, since=null, name=tlsCertRevokedCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times when endpoint certificate not in certificate trust list', htmlDescription='

Counts the times when endpoint certificate not in certificate trust list

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:47,551 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4468, uuid={1E2A987C-A48F-4eb7-A3BA-2C77F4A68216}, since=null, name=tlsNoCrlCnt, alias=, stereotype=security, visibility=public, txtDescription='Local CRL not accessible counter.', htmlDescription='

Local CRL not accessible counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:47,571 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4469, uuid={4A915807-5D1C-40af-9AA5-A745061F5DED}, since=null, name=tlsCrlExpCnt, alias=, stereotype=security, visibility=public, txtDescription='CRL expired.counter.', htmlDescription='

CRL expired.counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:47,585 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4470, uuid={AE06F05B-3CA8-44d1-9A20-5F4997A319FF}, since=null, name=tlsNoEpskModeCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: no support for encrypt-then-MAC counter', htmlDescription='

TLSv1.2: no support for encrypt-then-MAC counter

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:47,600 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4471, uuid={3E766604-E835-4b5a-A853-08A031D9FE22}, since=null, name=tlsNoEncryptThenMacCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: support of non-ephemeral PSK mode only counter.', htmlDescription='

TLSv1.3: support of non-ephemeral PSK mode only counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:47,614 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4472, uuid={C8F076B9-538C-423c-BC24-3756EAB54AEE}, since=null, name=tlsOcspResExpCnt, alias=, stereotype=security, visibility=public, txtDescription='OCSP response expired counter.', htmlDescription='

OCSP response expired counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:47,628 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4473, uuid={808D4C4A-240F-40a2-A84B-7EB7FAF41461}, since=null, name=tlsCertExpCnt, alias=, stereotype=security, visibility=public, txtDescription='Endpoint certificate expired counter.', htmlDescription='

Endpoint certificate expired counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:47,641 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4474, uuid={03D6BEA0-3F60-4e5b-BB2A-9126ABD1750F}, since=null, name=tlsNoSkUpdateCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: Peer does not perform session key update counter.', htmlDescription='

TLSv1.3: Peer does not perform session key update counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:47,656 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4475, uuid={264129C9-891C-4677-A001-B283CE215402}, since=null, name=tlsSigAlgMismatchCnt, alias=, stereotype=security, visibility=public, txtDescription='Signature algorithms in received endpoint certificate not supported counter.', htmlDescription='

Signature algorithms in received endpoint certificate not supported counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:47,668 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4476, uuid={A460A30B-5686-4f92-AFDC-C53C056A3309}, since=null, name=tlsSigVFailedCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times certificate signature could not be verified.', htmlDescription='

Counts the times certificate signature could not be verified.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:47,681 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4477, uuid={0FF962F9-BFB0-4683-96B5-09E38C57E324}, since=null, name=tlsShortRsaKeyCnt, alias=, stereotype=security, visibility=public, txtDescription='RSA key with key length of less than 2048 bit detected counter.', htmlDescription='

RSA key with key length of less than 2048 bit detected counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:47,696 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4478, uuid={39629ED0-372D-4c6f-B89B-4C13BA7374C6}, since=null, name=tlsMinKeyCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times RSA key with minimum key length of 1024 bit detected and allowed by configuration', htmlDescription='

Counts the times RSA key with minimum key length of 1024 bit detected and allowed by configuration

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:47,715 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4479, uuid={947A8F86-CF55-46c2-B517-3D4FA76FBA27}, since=null, name=tlsShortKeyCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times RSA key with insufficient key length (less than 1024 bit) detected..', htmlDescription='

Counts the times RSA key with insufficient key length (less than 1024 bit) detected..

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:47,729 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4480, uuid={560E07AC-D31D-4807-B518-20E83C9DD1A3}, since=null, name=tlsDepHashCnt, alias=, stereotype=security, visibility=public, txtDescription='Use of deprecated hash algorithm detected counter', htmlDescription='

Use of deprecated hash algorithm detected counter

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:47,742 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4462, uuid={6EDD77BB-4D13-4937-96A5-231A8441C74A}, since=null, name=tlsNoTrCaMatchSCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: No support of peer signalled trusted CA counter.', htmlDescription='

TLSv1.3: No support of peer signalled trusted CA counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:47,757 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4455, uuid={15470B2B-1EDC-41c5-AD3A-2E3583BF3A65}, since=null, name=tlsSessionidExpiredFullHsCnt, alias=, stereotype=security, visibility=public, txtDescription='Counter of sessionID expired, Resumption not possible, full TLS handshake done.', htmlDescription='

Counter of sessionID expired, Resumption not possible, full TLS handshake done.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:47,771 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4458, uuid={2B104C3D-3F3F-4c1a-812A-DC170DBA1CA2}, since=null, name=tlsNoRenegTicket, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: Number of times peer does not use secure renegotiation (session tickets) capability in renegotiated handshake.', htmlDescription='

TLSv1.2: Number of times peer does not use secure renegotiation (session tickets) capability in renegotiated handshake.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:47,786 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4457, uuid={D1BA2BD4-A79C-4617-9538-493A2956FC91}, since=null, name=tlsNoRenegSigCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: Number of times peer does not signal secure renegotiation support (session tickets) in initial handshake.', htmlDescription='

TLSv1.2: Number of times peer does not signal secure renegotiation support (session tickets) in initial handshake.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:47,799 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4453, uuid={E290CB99-A7B9-4ee1-AC49-29234D78A42C}, since=null, name=tlsSessionClosedRevCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the TLS session closure due to received revoked endpoint certificate.', htmlDescription='

Counts the TLS session closure due to received revoked endpoint certificate.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:47,814 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4459, uuid={854B3699-1B9D-4f64-B8B6-56CB2FD90FBB}, since=null, name=tlsNoTrCaMatchScCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: No support of peer signalled trusted CA counter.', htmlDescription='

TLSv1.3: No support of peer signalled trusted CA counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:47,827 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4450, uuid={8D2D94D8-3C6F-4bda-878C-F54D750FFD27}, since=null, name=tlsHsSuccessCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the TLS session successfully established.', htmlDescription='

Counts the TLS session successfully established.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:47,840 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4456, uuid={D19394DC-2DE1-403e-9C38-01EE35A0DDFD}, since=null, name=tlsNoReneg, alias=, stereotype=security, visibility=public, txtDescription='Number of times renegotiation interval is exceeded. TLSv1.2 peer does not renegotiate.', htmlDescription='

Number of times renegotiation interval is exceeded. TLSv1.2 peer does not renegotiate.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:47,854 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4452, uuid={B1BA2AF1-A523-4ca2-979A-38272AF41E2B}, since=null, name=tlsNoLocalCertCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times local endpoint certificate is not available.', htmlDescription='

Number of times local endpoint certificate is not available.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:47,867 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4447, uuid={3D255C0C-5B4C-4589-A304-5D6FAF7E69A2}, since=null, name=tlsWeakVersionCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times when deprecated TLS version proposed and support of TLS versions prior to TLSv1.2 enabled', htmlDescription='

Counts the times when deprecated TLS version proposed and support of TLS versions prior to TLSv1.2 enabled

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:47,881 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4449, uuid={4B8CCA5B-77FF-4b70-98D5-168DA947FE99}, since=null, name=tlsVersionChangeCnt, alias=, stereotype=security, visibility=public, txtDescription='Count the TLS version change (potential downgrade) in ongoing session detected.', htmlDescription='

Count the TLS version change (potential downgrade) in ongoing session detected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:47,895 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4446, uuid={C75A400F-5B38-4bc5-BE6A-48FB4977B686}, since=null, name=tlsDeprecatedVersionCnT, alias=, stereotype=security, visibility=public, txtDescription='Counts the times when a deprecated TLS version is proposed and support of TLS versions prior to TLSv1.2 is disabled.', htmlDescription='

Counts the times when a deprecated TLS version is proposed and support of TLS versions prior to TLSv1.2 is disabled.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:47,910 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4451, uuid={ACB5D4CD-DBF9-4e86-892D-469DB0082C7E}, since=null, name=tlsNoPeerCertCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times peer did not provide endpoint certificate during the TLS handshake.', htmlDescription='

Number of times peer did not provide endpoint certificate during the TLS handshake.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:47,923 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4448, uuid={A02762E7-1235-453b-8BB2-6D4E8F705EA1}, since=null, name=tlsDisallowedVersionCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times when disallowed TLS version (prior to TLSv1.0) proposed', htmlDescription='

Counts the times when disallowed TLS version (prior to TLSv1.0) proposed

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:47,965 [main] DEBUG ClassBuilder - Adding IEC62351-3ed2security as subclass of AbstractAgent +2024-09-07 21:54:47,968 [main] TRACE ClassBuilder - read from EA: IEC62351-3 ed.2 Agent::IEC62351-3ed2security +2024-09-07 21:54:47,975 [main] TRACE ClassBuilder - Class TLSSession (2 in package IEC62351-3 ed.2 Agent) +2024-09-07 21:54:48,091 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4488, uuid={851472EB-C0E1-4464-B067-F650659846CF}, since=null, name=SessionId, alias=, stereotype=index, visibility=public, txtDescription='Id of the TLS session.', htmlDescription='

Id of the TLS session.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibindex=yes, Version=1}] +2024-09-07 21:54:48,103 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4489, uuid={B226702B-AC3E-4f8c-BF07-E3347944EA3A}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:48,116 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4490, uuid={69D938D2-D561-48eb-8BCF-FA2CFA350C07}, since=null, name=LocAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Local address.', htmlDescription='

Local address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:48,131 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4491, uuid={6C3E2D7A-F0C0-424b-A05C-4A96E29F65E7}, since=null, name=LocAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Local address type.', htmlDescription='

Local address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:48,143 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4492, uuid={5C777986-F9FD-4fbf-AAFB-2E087F0B21F7}, since=null, name=RemAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address.', htmlDescription='

Remote address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:48,156 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4493, uuid={7AB71D12-EB91-421a-B172-48B97B758080}, since=null, name=RemAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address type.', htmlDescription='

Remote address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:48,204 [main] DEBUG ClassBuilder - Adding TLSSession as subclass of AbstractAgent +2024-09-07 21:54:48,206 [main] DEBUG ClassBuilder - Adding TLSSession as subclass of CommonProtocolInfo +2024-09-07 21:54:48,211 [main] DEBUG ClassBuilder - Adding TLSSession as subclass of IEC62351-3ed2security +2024-09-07 21:54:48,211 [main] TRACE ClassBuilder - read from EA: IEC62351-3 ed.2 Agent::TLSSession +2024-09-07 21:54:48,216 [main] TRACE ClassBuilder - Class Summary (3 in package IEC62351-3 ed.2 Agent) +2024-09-07 21:54:48,336 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4481, uuid={8E8A2B77-DF1B-4f33-B823-499F2C569AB8}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:48,349 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4482, uuid={CBC3AD5A-6EDA-4a33-95FA-37A565CEA2C1}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered (security or health).', htmlDescription='

Provides the last known event encountered (security or health).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:48,364 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4483, uuid={4669B65B-F448-43b1-9BB7-DD9A5FEFA04B}, since=null, name=Server, alias=, stereotype=table, visibility=public, txtDescription='Client session (when applicable)', htmlDescription='

Client session (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=1077, _eaTypeName=ServerTLS, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{MIBPrefix=tC, Version=1}] +2024-09-07 21:54:48,379 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4484, uuid={C3E6C81C-3F3D-4c3b-BABC-8573CD333CF5}, since=null, name=Client, alias=, stereotype=table, visibility=public, txtDescription='Server session (when applicable)', htmlDescription='

Server session (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=1079, _eaTypeName=ClientTLS, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{MIBPrefix=tC, Version=1}] +2024-09-07 21:54:48,392 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4485, uuid={36BE9868-D051-429a-8C15-ADEDE8C4F60A}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object', htmlDescription='

Security events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1078, _eaTypeName=IEC62351part3ed2SecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:48,405 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4486, uuid={9668B8A2-A9DD-433f-A572-90776DAC42FC}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object', htmlDescription='

State events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1074, _eaTypeName=IEC62351part3edNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:48,421 [main] DEBUG ClassBuilder - Adding Summary as subclass of IEC62351-3ed2security +2024-09-07 21:54:48,421 [main] TRACE ClassBuilder - read from EA: IEC62351-3 ed.2 Agent::Summary +2024-09-07 21:54:48,427 [main] TRACE ClassBuilder - Class IEC62351part3ed2SecurityNotification (4 in package IEC62351-3 ed.2 Agent) +2024-09-07 21:54:48,471 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification, _objData=UmlObjectData [id=4487, uuid={6943E7EC-3F67-43a9-90B0-9BCF7DB4D056}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Description of last event reported', htmlDescription='

Description of last event reported

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:48,487 [main] DEBUG ClassBuilder - Adding IEC62351part3ed2SecurityNotification as subclass of AbstractAgent +2024-09-07 21:54:48,487 [main] TRACE ClassBuilder - read from EA: IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification +2024-09-07 21:54:48,491 [main] TRACE ClassBuilder - Class ClientTLS (6 in package IEC62351-3 ed.2 Agent) +2024-09-07 21:54:48,522 [main] DEBUG ClassBuilder - Adding ClientTLS as subclass of TLSSession +2024-09-07 21:54:48,522 [main] TRACE ClassBuilder - read from EA: IEC62351-3 ed.2 Agent::ClientTLS +2024-09-07 21:54:48,527 [main] TRACE ClassBuilder - Class ServerTLS (7 in package IEC62351-3 ed.2 Agent) +2024-09-07 21:54:48,557 [main] DEBUG ClassBuilder - Adding ServerTLS as subclass of TLSSession +2024-09-07 21:54:48,558 [main] TRACE ClassBuilder - read from EA: IEC62351-3 ed.2 Agent::ServerTLS +2024-09-07 21:54:48,560 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Application Protocols Agents, _depth=4, _eaElementID=1073, _objData=UmlObjectData [id=393, uuid={0BB5C1E1-95F4-4e19-914B-062361E3FE90}, since=null, name=IEC62351-3 ed.2 Agent, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 19, the IEC 62351-3 Agent package includes the monitoring classes for the IEC 62351-3 ed. 2 events.', htmlDescription='

As shown in Figure 19, the IEC 62351-3 Agent package includes the monitoring classes for the IEC 62351-3 ed. 2 events.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=iec62351-3-ed2-agent, mibName=IEC-62351-3-ED2, mibPrefix=part3, objectBranchId=4, objectIdentity=iec62351-3-ed2-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=IEC62351-3 ed.2 Agent, _objData=UmlObjectData [id=72, uuid={38D28719-1A0B-491f-9010-AF2D3032BB4B}, since=null, name=IEC 62351-3 ed.2 Agent Relationships, alias=, stereotype=, visibility=public, txtDescription='This picture depicts the relationship between IEC 62351-3 ed.2 objects', htmlDescription='

This picture depicts the relationship between IEC 62351-3 ed.2 objects

'], _portrait=true, _kind=LOGICAL]], _classes=6 +2024-09-07 21:54:48,565 [main] INFO PackageBuilder - processing package IEEE 1815 and IEC 60870-5 Agent (6) ... +2024-09-07 21:54:48,587 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=IEEE 1815 and IEC 60870-5 Agent, _objData=UmlObjectData [id=33, uuid={8B1E40BA-BA71-478e-BC81-025DA5A45A35}, since=null, name=IEEE 1815 and IEC 60870 Agent Relationships, alias=, stereotype=, visibility=public, txtDescription='This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes. +Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.', htmlDescription='

This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes.

Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 21:54:48,720 [main] TRACE ClassBuilder - Class 60870andDNPProtocolInfo (1 in package IEEE 1815 and IEC 60870-5 Agent) +2024-09-07 21:54:49,219 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3991, uuid={E3FE31B6-2024-4e98-99E9-12CFAC8AEC6F}, since=null, name=AuthFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Count of the number of authorization failures.', htmlDescription='

Count of the number of authorization failures.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:49,233 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3992, uuid={F6B00869-D41C-44b6-B4FF-FA092ED078AE}, since=null, name=CtrlPrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of control actions attempted that did not have the correct privilege.', htmlDescription='

Number of control actions attempted that did not have the correct privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:49,246 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3993, uuid={2CBA5468-91CA-4cf0-BAC3-55AC2EC54FC8}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted.', htmlDescription='

Number PDUs received that could not be decrypted.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:49,260 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3405, uuid={66AB8F6D-0721-44fb-861C-C607A8498C6F}, since=null, name=ExT0Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T0 (connection establishment).', htmlDescription='

Count the expirations of the 104 time-out T0 (connection establishment).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:49,273 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3406, uuid={F62CF6E4-A1AF-476b-B35E-F4DE2A4E0591}, since=null, name=ExT1Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T1 (PDU).', htmlDescription='

Count the expirations of the 104 time-out T1 (PDU).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:49,288 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3407, uuid={8099C0E4-518A-434c-BF60-73BC878C2238}, since=null, name=ExT2Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T2 (ACK).', htmlDescription='

Count the expirations of the 104 time-out T2 (ACK).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:49,301 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3408, uuid={439C3366-994E-4fbc-A804-80CA3D745D68}, since=null, name=ExT3Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T3 (TEST).', htmlDescription='

Count the expirations of the 104 time-out T3 (TEST).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:49,315 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3124, uuid={B8936537-E883-4ab6-8A65-47CF971C5BB4}, since=null, name=InDisc, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDUs that were discarded.', htmlDescription='

Number of received PDUs that were discarded.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:49,329 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3994, uuid={9A232ABD-C751-45bb-8278-552FEB934C4E}, since=null, name=InErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of PDUs received that were in error.', htmlDescription='

Number of PDUs received that were in error.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:49,342 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3995, uuid={A4886E74-D4DE-4163-BBF4-BFB4DA9AA818}, since=null, name=InOvCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer overflows detected due to incoming communication.', htmlDescription='

Number of buffer overflows detected due to incoming communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:49,356 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3996, uuid={34EAD965-3EEE-42ae-9A33-371405C3B4A8}, since=null, name=InterPDUTime, alias=, stereotype=protocol, visibility=public, txtDescription='Time between two consecutives PDUs.', htmlDescription='

Time between two consecutives PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:49,371 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3997, uuid={E65434B6-333B-4677-9DB7-2689202D1C31}, since=null, name=MisPDUCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Provides an attribute that represents the count of missed PDU.', htmlDescription='

Provides an attribute that represents the count of missed PDU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:49,385 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3141, uuid={3DEDE5E8-C46A-4627-A2B8-FA7B2651B388}, since=null, name=OutErr, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmission errors.', htmlDescription='

Number of transmission errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:49,398 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3990, uuid={4B336F22-0DBB-425c-9CE9-8A2B3968C18C}, since=null, name=OutUv, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer underflows detected due to outgoing serial communication.', htmlDescription='

Number of buffer underflows detected due to outgoing serial communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:49,412 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3998, uuid={56C57887-C03F-430b-A3CC-47993296C81A}, since=null, name=PDURTT, alias=, stereotype=protocol, visibility=public, txtDescription='PDU round trip time.', htmlDescription='

PDU round trip time.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:49,424 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3999, uuid={F9A50D40-7721-4f2f-B450-70B42C8159B7}, since=null, name=PDUSizeFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDU with wrong size.', htmlDescription='

Number of received PDU with wrong size.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:49,436 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4000, uuid={C3639D7C-0EF8-4ffb-912C-24F7FA06CBA6}, since=null, name=PduTampCnt, alias=, stereotype=security, visibility=public, txtDescription='Provides an attribute that indicates the count of the number of PDUs that have been detected to be tampered with.', htmlDescription='

Provides an attribute that indicates the count of the number of PDUs that have been detected to be tampered with.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:49,449 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4001, uuid={AD2C395F-15DF-4e49-A4EF-1C8758015811}, since=null, name=PrimaryInterface, alias=, stereotype=protocol, visibility=public, txtDescription='True if the Protocol is running on primary interface (false when backup interface is in use).', htmlDescription='

True if the Protocol is running on primary interface (false when backup interface is in use).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:49,463 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4002, uuid={15035EBB-A53C-4c7d-BEA7-D6AF668B9A81}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:49,476 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3403, uuid={D5E66B05-319E-467b-9B20-4D0021DE5B43}, since=null, name=RtxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the number of retransmissions.', htmlDescription='

Count the number of retransmissions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:49,490 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3123, uuid={5F22267E-6104-41c7-A2B6-BBFFCE828B94}, since=null, name=RxCritical, alias=, stereotype=protocol, visibility=public, txtDescription='Number of critical requests received (according to IEC 62351-5).', htmlDescription='

Number of critical requests received (according to IEC 62351-5).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:49,503 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4003, uuid={37C50A09-5C52-4612-ACD2-3CA5076E832A}, since=null, name=RxPdu, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDUs (including in error PDUs).', htmlDescription='

Number of received PDUs (including in error PDUs).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:49,515 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3135, uuid={51629B5F-2B79-4aa4-A704-E8D4D467D6E2}, since=null, name=RxSolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Number of solicited requests received. Only for DNP.', htmlDescription='

Number of solicited requests received. Only for DNP.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:49,529 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3145, uuid={546FFA93-9BFB-40fc-8F59-570F9FA50834}, since=null, name=RxUnsolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Contains the count of number of unsolicited requests that have been transmitted since the last reset.', htmlDescription='

Contains the count of number of unsolicited requests that have been transmitted since the last reset.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:49,541 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4004, uuid={219E7530-12EB-4a52-AE1A-536554F0ED28}, since=null, name=SessKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of session key negotiations that failed.', htmlDescription='

Number of session key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:49,554 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3122, uuid={9760193C-146A-427a-88DE-4FA2BBC2EA9E}, since=null, name=TxCritical, alias=, stereotype=protocol, visibility=public, txtDescription='Number of critical requests transmitted (according to IEC 62351-5)', htmlDescription='

Number of critical requests transmitted (according to IEC 62351-5)

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:49,566 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4005, uuid={984B7498-8B61-45e0-BE19-6E17EA80D9D0}, since=null, name=TxPdu, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmitted PDUs.', htmlDescription='

Number of transmitted PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:49,578 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3120, uuid={7F13ABEF-5E7A-4fc2-BE27-AB2E70B1B97A}, since=null, name=TxSolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Number of solicited requests transmitted. Only for DNP.', htmlDescription='

Number of solicited requests transmitted. Only for DNP.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:49,593 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3121, uuid={76A62C46-9C78-48ff-9770-F2A7BE837E1F}, since=null, name=TxUnsolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Contains the count of number of unsolicited requests that have been transmitted since the last reset.', htmlDescription='

Contains the count of number of unsolicited requests that have been transmitted since the last reset.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:49,607 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4006, uuid={2AAAEC13-D4BB-4d2a-8461-00DBAE43010B}, since=null, name=UpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations that failed.', htmlDescription='

Number of update key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:49,646 [main] DEBUG ClassBuilder - Adding 60870andDNPProtocolInfo as subclass of AbstractAgent +2024-09-07 21:54:49,646 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo +2024-09-07 21:54:49,652 [main] TRACE ClassBuilder - Class Association (2 in package IEEE 1815 and IEC 60870-5 Agent) +2024-09-07 21:54:49,857 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=3726, uuid={361DD26C-8F48-46fd-BCE9-B6A3787F5FA6}, since=null, name=AssociationId, alias=, stereotype=index, visibility=public, txtDescription='Id of the association.', htmlDescription='

Id of the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:49,869 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=3241, uuid={87C4526C-4B22-42d3-BFDD-0EBE86166CDA}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:49,887 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2417, uuid={FF67FCFB-43B0-4a5a-8A33-52E57E2A1E33}, since=null, name=LocAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Local address.', htmlDescription='

Local address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 21:54:49,903 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=3715, uuid={857943C5-1917-46b9-BAA2-F6DBBE305DDA}, since=null, name=LocAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Local address type.', htmlDescription='

Local address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 21:54:49,917 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2413, uuid={218B44A4-22AA-4a3a-B54C-BC3742A6A951}, since=null, name=ProtID, alias=, stereotype=protocol, visibility=public, txtDescription='Protocol ID in use.', htmlDescription='

Protocol ID in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=780, _eaTypeName=ProtIdType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:49,930 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2412, uuid={2DCFE840-6DFB-49ca-9D60-6F00BBFE9375}, since=null, name=ProviderDesc, alias=, stereotype=identity, visibility=public, txtDescription='Textual description of the provider that is in use.', htmlDescription='

Textual description of the provider that is in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:49,942 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2411, uuid={739910E5-2234-4d7f-BF07-E2FAC9061548}, since=null, name=ProviderName, alias=, stereotype=identity, visibility=public, txtDescription='Identity of the provider responding as the outstation for this association.', htmlDescription='

Identity of the provider responding as the outstation for this association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:49,961 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2416, uuid={F1041BDF-E1EE-44c3-B346-5643EFA0E8C7}, since=null, name=RemAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address.', htmlDescription='

Remote address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{isIndex=yes, mibIndex=yes, Version=0}] +2024-09-07 21:54:49,979 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=3714, uuid={25C69ED7-7E01-4316-B15C-28D99CC5FC94}, since=null, name=RemAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address type.', htmlDescription='

Remote address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{isIndex=yes, mibIndex=yes, Version=0}] +2024-09-07 21:54:49,991 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2410, uuid={4F98C052-71F6-44e6-A31C-2A148D61DF91}, since=null, name=TLnkErrCnt, alias=, stereotype=health, visibility=public, txtDescription='Count of communication link errors detected.', htmlDescription='

Count of communication link errors detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:50,004 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2415, uuid={FED824F2-3E50-44cd-A78C-B816071534FB}, since=null, name=TLnkTyp, alias=, stereotype=protocol, visibility=public, txtDescription='Type of transport being utilized.', htmlDescription='

Type of transport being utilized.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=778, _eaTypeName=LnkType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:50,054 [main] DEBUG ClassBuilder - Adding Association as subclass of AbstractAgent +2024-09-07 21:54:50,054 [main] DEBUG ClassBuilder - Adding Association as subclass of 60870andDNPProtocolInfo +2024-09-07 21:54:50,060 [main] DEBUG ClassBuilder - Adding Association as subclass of CommonProtocolInfo +2024-09-07 21:54:50,060 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent::Association +2024-09-07 21:54:50,065 [main] TRACE ClassBuilder - Class Summary (3 in package IEEE 1815 and IEC 60870-5 Agent) +2024-09-07 21:54:50,200 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=3248, uuid={37A47CAE-5E15-4947-9824-88474381CEB3}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:50,213 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=3708, uuid={33EEE0D1-CEBA-4f55-8388-E92B798B5827}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered (security or health).', htmlDescription='

Provides the last known event encountered (security or health).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:50,227 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=2278, uuid={D8685894-627E-4b6f-B670-3C72CC90DF6B}, since=null, name=Master, alias=, stereotype=table, visibility=public, txtDescription='Client association (when applicable)', htmlDescription='

Client association (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=820, _eaTypeName=MasterAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{MIBPrefix=tC, Version=0}] +2024-09-07 21:54:50,243 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=2287, uuid={364CBB2E-460C-46ce-AC40-149F1C18EAC8}, since=null, name=Outstation, alias=, stereotype=table, visibility=public, txtDescription='Server association (when applicable)', htmlDescription='

Server association (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=821, _eaTypeName=OutstationAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{MIBPrefix=tC, Version=0}] +2024-09-07 21:54:50,255 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=3609, uuid={86E71A83-DD23-44dd-AF05-2C4883970DBA}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object', htmlDescription='

Security events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=914, _eaTypeName=60870andDNPSecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:50,267 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=3608, uuid={E3191E3F-E629-4bfd-A8E1-64D78A2B9955}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object', htmlDescription='

State events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=915, _eaTypeName=60870andDNPNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:50,281 [main] DEBUG ClassBuilder - Adding Summary as subclass of 60870andDNPProtocolInfo +2024-09-07 21:54:50,281 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent::Summary +2024-09-07 21:54:50,287 [main] TRACE ClassBuilder - Class 60870andDNPSecurityNotification (4 in package IEEE 1815 and IEC 60870-5 Agent) +2024-09-07 21:54:50,438 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3519, uuid={8EC7A2E6-FA1E-44bf-871A-8E7A12508F3F}, since=null, name=AuthFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Count of the number of authorization failures.', htmlDescription='

Count of the number of authorization failures.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:50,452 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3518, uuid={F5BEAE2F-4536-4f9c-9478-CF23E2A2D7C5}, since=null, name=CtrlPrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of control actions attempted that did not have the correct privilege.', htmlDescription='

Number of control actions attempted that did not have the correct privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:50,465 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3522, uuid={9ABAB39B-C8D2-427c-805D-DD74A37B15BD}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted.', htmlDescription='

Number PDUs received that could not be decrypted.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:50,476 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=4043, uuid={1BC26E95-9659-4250-87C9-365D73AD44BE}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered (security or health).', htmlDescription='

Provides the last known event encountered (security or health).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:50,488 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3520, uuid={2018A0E6-F948-40c3-98F5-CC50CFBD7527}, since=null, name=PduTampCnt, alias=, stereotype=security, visibility=public, txtDescription='Provides an attribute that indicates the count of the number of PDUs that have been detected to be tampered with.', htmlDescription='

Provides an attribute that indicates the count of the number of PDUs that have been detected to be tampered with.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:50,502 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3521, uuid={F0F1CF0B-1E15-4c19-ACB3-B4C1D745383F}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:50,516 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3523, uuid={22ADAAB8-8A4A-49c6-A261-6FC1E02DFEDB}, since=null, name=SessKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of session key negotiations that failed.', htmlDescription='

Number of session key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:50,531 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3524, uuid={A9AFB691-7A96-43a3-9FDB-B197827A4D8C}, since=null, name=UpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations that failed.', htmlDescription='

Number of update key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:50,546 [main] DEBUG ClassBuilder - Adding 60870andDNPSecurityNotification as subclass of AbstractAgent +2024-09-07 21:54:50,546 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification +2024-09-07 21:54:50,552 [main] TRACE ClassBuilder - Class 60870andDNPNotification (5 in package IEEE 1815 and IEC 60870-5 Agent) +2024-09-07 21:54:50,659 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3526, uuid={6936B8C9-BCD0-46a8-B2A7-4423628A89F6}, since=null, name=InErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of PDUs received that were in error.', htmlDescription='

Number of PDUs received that were in error.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:50,672 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3528, uuid={97175DF9-326B-40f7-B626-D213159A0A56}, since=null, name=InOvCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer overflows detected due to incoming communication.', htmlDescription='

Number of buffer overflows detected due to incoming communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:50,684 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3529, uuid={47916BBB-21C9-49df-8C8B-3A9375A29441}, since=null, name=OutUv, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer underflows detected due to outgoing serial communication.', htmlDescription='

Number of buffer underflows detected due to outgoing serial communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:50,695 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3527, uuid={0C1DB352-F31C-4520-B8BB-43E3CB924F8D}, since=null, name=RxPdu, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDUs.', htmlDescription='

Number of received PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:50,707 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3525, uuid={B77A1C29-3430-40df-AC7F-D1ACC9E6C035}, since=null, name=TxPdu, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmitted PDUs.', htmlDescription='

Number of transmitted PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:50,722 [main] DEBUG ClassBuilder - Adding 60870andDNPNotification as subclass of AbstractAgent +2024-09-07 21:54:50,722 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification +2024-09-07 21:54:50,726 [main] TRACE ClassBuilder - Class MasterAssociation (6 in package IEEE 1815 and IEC 60870-5 Agent) +2024-09-07 21:54:50,755 [main] DEBUG ClassBuilder - Adding MasterAssociation as subclass of Association +2024-09-07 21:54:50,755 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent::MasterAssociation +2024-09-07 21:54:50,760 [main] TRACE ClassBuilder - Class OutstationAssociation (7 in package IEEE 1815 and IEC 60870-5 Agent) +2024-09-07 21:54:50,788 [main] DEBUG ClassBuilder - Adding OutstationAssociation as subclass of Association +2024-09-07 21:54:50,788 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent::OutstationAssociation +2024-09-07 21:54:50,791 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Application Protocols Agents, _depth=4, _eaElementID=131, _objData=UmlObjectData [id=41, uuid={B92342A5-EA3E-4be2-8BA2-4B40BB389569}, since=null, name=IEEE 1815 and IEC 60870-5 Agent, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 20, this package includes the IEEE 1815 DNP and IEC 60870-5-104 protocols classes. This high level class named "summary" includes two objects related to the application stack and "association" class that reports the object related to the possible communication sessions between masters and outstations. +This package includes the version of the objects related to IEC TS 62351-5:2013. +The two class "Master Association" and "Outstation Association" Inherits the Associations class attributes. +For each IEEE 1815 DNP or IEC 60870-5-104 application stack a single instance of "summary" class is provided. This instance of "summary" class can be related to several instances of "OutstationAssociation" and "MasterAssociation" classes which inherit the attributes from the "Association" class. Each instance "Association" is the container of the attributes of a specific application session between an Outstation and a Master. +Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Infoand Security objects, and therefore the more general class as well.', htmlDescription='

As shown in Figure 20, this package includes the IEEE 1815 DNP and IEC 60870-5-104 protocols classes. This high level class named "summary" includes two objects related to the application stack and "association" class that reports the object related to the possible communication sessions between masters and outstations.

This package includes the version of the objects related to IEC TS 62351-5:2013.

The two class "Master Association" and "Outstation Association" Inherits the Associations class attributes.

For each IEEE 1815 DNP or IEC 60870-5-104 application stack a single instance of "summary" class is provided. This instance of "summary" class can be related to several instances of "OutstationAssociation" and "MasterAssociation" classes which inherit the attributes from the "Association" class. Each instance "Association" is the container of the attributes of a specific application session between an Outstation and a Master.

Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Infoand Security objects, and therefore the more general class as well.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=ieee1815andiec60870-5-agent, mibName=IEC-62351-IEC60870-5-IEEE1815-MIB, mibPrefix=tC, objectBranchId=1, objectIdentity=ieee1815andiec60870-5-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=IEEE 1815 and IEC 60870-5 Agent, _objData=UmlObjectData [id=33, uuid={8B1E40BA-BA71-478e-BC81-025DA5A45A35}, since=null, name=IEEE 1815 and IEC 60870 Agent Relationships, alias=, stereotype=, visibility=public, txtDescription='This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes. +Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.', htmlDescription='

This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes.

Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.

'], _portrait=true, _kind=LOGICAL]], _classes=7 +2024-09-07 21:54:50,796 [main] INFO PackageBuilder - processing package IEEE 1815 and IEC 60870-5 Agent - ed2 (6) ... +2024-09-07 21:54:50,817 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=IEEE 1815 and IEC 60870-5 Agent - ed2, _objData=UmlObjectData [id=70, uuid={AA945755-BD47-4be2-A238-6331816DBA4B}, since=null, name=IEEE 1815 and IEC 60870 Agent Relationships, alias=, stereotype=, visibility=public, txtDescription='This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes. +Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.', htmlDescription='

This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes.

Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 21:54:50,969 [main] TRACE ClassBuilder - Class 60870andDNPProtocolInfoEd2 (1 in package IEEE 1815 and IEC 60870-5 Agent - ed2) +2024-09-07 21:54:51,361 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4257, uuid={0C0A0A2C-20C0-4ca9-9856-507B3CF40B66}, since=null, name=ExT0Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T0 (connection establishment).', htmlDescription='

Count the expirations of the 104 time-out T0 (connection establishment).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:51,373 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4258, uuid={C6845E20-7B2D-4978-A35B-D43715366935}, since=null, name=ExT1Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T1 (PDU).', htmlDescription='

Count the expirations of the 104 time-out T1 (PDU).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:51,384 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4259, uuid={15711ABC-5E51-4c9e-95EB-71E116D1CBC1}, since=null, name=ExT2Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T2 (ACK).', htmlDescription='

Count the expirations of the 104 time-out T2 (ACK).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:51,395 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4260, uuid={7A191FB8-98E6-4847-930B-90CB4FC6E61E}, since=null, name=ExT3Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T3 (TEST).', htmlDescription='

Count the expirations of the 104 time-out T3 (TEST).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:51,408 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4261, uuid={81B43739-99E7-46b8-BB5A-340970E92A28}, since=null, name=DiscPduCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of discarded messages.', htmlDescription='

Number of discarded messages.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:51,419 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4262, uuid={8165A5DE-3828-4785-9068-BB9EBEA44FF2}, since=null, name=InErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of PDUs received that were in error.', htmlDescription='

Number of PDUs received that were in error.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:51,432 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4263, uuid={D90D5B9D-8B9D-454d-83A9-E6715E4783C6}, since=null, name=InOvCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer overflows detected due to incoming communication.', htmlDescription='

Number of buffer overflows detected due to incoming communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:51,445 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4264, uuid={E8C8E34D-3689-46e8-B001-9DE7609677AC}, since=null, name=InterPDUTime, alias=, stereotype=protocol, visibility=public, txtDescription='Time between two consecutives PDUs.', htmlDescription='

Time between two consecutives PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:51,457 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4265, uuid={49E9D387-25A4-46e7-8CEB-9C75979FB7AF}, since=null, name=MisPDUCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Provides an attribute that represents the count of missed PDU.', htmlDescription='

Provides an attribute that represents the count of missed PDU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:51,469 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4266, uuid={8845E947-C91C-4a04-B4FE-3AEDC1029732}, since=null, name=OutErr, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmission errors.', htmlDescription='

Number of transmission errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:51,481 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4267, uuid={CCD6A7C5-F0B4-4402-AE88-B35035615DC3}, since=null, name=OutUv, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer underflows detected due to outgoing serial communication.', htmlDescription='

Number of buffer underflows detected due to outgoing serial communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:51,495 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4269, uuid={378D6C1B-B55C-457c-BD03-A017415E19C4}, since=null, name=PDUSizeFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDU with wrong size.', htmlDescription='

Number of received PDU with wrong size.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:51,507 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4273, uuid={8E51A58B-0043-4528-B1BC-BC2B4CC4E59C}, since=null, name=RtxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the number of retransmissions.', htmlDescription='

Count the number of retransmissions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:51,520 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4275, uuid={9768D1CC-F452-448b-B8DF-26922CB00ED7}, since=null, name=RxPduCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDUs (including PDUs with errors).', htmlDescription='

Number of received PDUs (including PDUs with errors).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:51,533 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4276, uuid={00CBF4DB-7CDE-4393-BCCF-90A5601FF89C}, since=null, name=RxSolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Number of solicited requests received. Only for DNP.', htmlDescription='

Number of solicited requests received. Only for DNP.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:51,545 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4277, uuid={A480B5CE-C799-40b2-9A6C-05A2B643932E}, since=null, name=RxUnsolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Contains the count of number of unsolicited requests that have been transmitted since the last reset.', htmlDescription='

Contains the count of number of unsolicited requests that have been transmitted since the last reset.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:51,558 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4280, uuid={7A2A5BFA-FCB8-44a4-A4CF-442CC8A9FB0E}, since=null, name=TxPduCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmitted PDUs.', htmlDescription='

Number of transmitted PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:51,571 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4281, uuid={BF7B41CE-7B62-4a5f-A9F6-D1E8A5A4952E}, since=null, name=TxSolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Number of solicited requests transmitted. Only for DNP.', htmlDescription='

Number of solicited requests transmitted. Only for DNP.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:51,585 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4282, uuid={BB6FDD4B-6837-4d88-B268-0D09301311FD}, since=null, name=TxUnsolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Contains the count of number of unsolicited requests that have been transmitted since the last reset.', htmlDescription='

Contains the count of number of unsolicited requests that have been transmitted since the last reset.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:51,635 [main] DEBUG ClassBuilder - Adding 60870andDNPProtocolInfoEd2 as subclass of AbstractAgent +2024-09-07 21:54:51,638 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2 +2024-09-07 21:54:51,644 [main] TRACE ClassBuilder - Class IEC62351part5 (1 in package IEEE 1815 and IEC 60870-5 Agent - ed2) +2024-09-07 21:54:52,137 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4306, uuid={85A6FA13-2677-4c99-BC12-DD878801CFC4}, since=null, name=StAsProcScsCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Station Association procedure has been successfully performed.', htmlDescription='

Number of times the Station Association procedure has been successfully performed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:52,148 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4307, uuid={F82373BD-CE1D-4a57-B13C-413810F179B0}, since=null, name=StAsProcFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Station Association procedure has failed.', htmlDescription='

Number of times the Station Association procedure has failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:52,162 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4308, uuid={69BDB5BC-DE98-4195-8110-202AD93E7AFC}, since=null, name=SKeyProcScsCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Session Key was changed successfully.', htmlDescription='

Number of times the Session Key was changed successfully.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:52,176 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4336, uuid={8BE551FF-4A0A-45b6-A0A0-D051150BF74D}, since=null, name=KeyAutnAlgSupFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Data authentication algorithm support failures. Controlled station only.', htmlDescription='

Number of Data authentication algorithm support failures. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:52,191 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4337, uuid={60FED222-F3AD-4f4c-A733-DE4950C990C2}, since=null, name=SKeyWrapAlgSupFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of key wrap algorithm support failures. Controlled station only.', htmlDescription='

Number of key wrap algorithm support failures. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:52,204 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4338, uuid={C2B0C0DF-C9DD-4aef-932E-B016DA2E6276}, since=null, name=DataProtAlgSupFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Data authentication algorithm support failures. Controlled station only.', htmlDescription='

Number of Data authentication algorithm support failures. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:52,218 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4339, uuid={55BE76A2-DF93-45de-9D84-4EE282ACC41B}, since=null, name=SKeyAutnErrCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Key authentication errors.', htmlDescription='

Number of Key authentication errors.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:52,232 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4340, uuid={97FE21BE-F20E-4b5f-9E7C-62B9BF57A4C7}, since=null, name=DataAutnErrCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of non-authentic Secure Data messages received.', htmlDescription='

Number of non-authentic Secure Data messages received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:52,243 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4341, uuid={303256CB-76CD-4b39-8D6B-6B5F7E4718DC}, since=null, name=UnxpMsgErrCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of unexpected messages received.', htmlDescription='

Number of unexpected messages received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:52,256 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4342, uuid={7B618961-D677-4bf9-83FB-40700B9BA9CC}, since=null, name=MaxReplyToutCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Max Reply Timeouts threshold was reached. Controlling station only.', htmlDescription='

Number of times the Max Reply Timeouts threshold was reached. Controlling station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:52,269 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4343, uuid={D8D3268F-F4C4-49d7-AB23-7946C1CEA6D1}, since=null, name=NodeAutrFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of unauthorized communication attempts.', htmlDescription='

Number of unauthorized communication attempts.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:52,281 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4344, uuid={23FA293A-4F87-4c7c-B4E2-6B3955B5ED61}, since=null, name=CtrlOperAutrFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of unauthorized operations. Controlled station only.', htmlDescription='

Number of unauthorized operations. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:52,293 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4345, uuid={6193E983-C056-491a-B7A3-EBE58355374C}, since=null, name=RemCertCheckFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of invalid certificates received.', htmlDescription='

Number of invalid certificates received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:52,306 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4346, uuid={46BA0F58-A6A4-4d23-9157-B07A5643B284}, since=null, name=RemCertExpiredCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the remote station's certificate expired.', htmlDescription='

Number of times the remote station's certificate expired.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:52,320 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4347, uuid={C54FF7FA-520C-4d4f-A4A1-B7E88C041568}, since=null, name=RemCertRevokedCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the remote station's certificate has been revoked.', htmlDescription='

Number of times the remote station's certificate has been revoked.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:52,332 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4348, uuid={95955856-F76D-4e05-B055-4FF8029E1A9D}, since=null, name=LocCertExpiredCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the local station's certificate expired.', htmlDescription='

Number of times the local station's certificate expired.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:52,345 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4349, uuid={DE7B5995-13C2-44c8-8579-6CEF37D201AF}, since=null, name=LocCertRevokedCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the local station's certificate has been revoked.', htmlDescription='

Number of times the local station's certificate has been revoked.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:52,358 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4350, uuid={2223C6EC-FBAE-4b91-8FF2-4407C5DFFF36}, since=null, name=KeysInvRemCertRevCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Cryptographic Keys were invalidated due to remote station's certificate revocation.', htmlDescription='

Number of times the Cryptographic Keys were invalidated due to remote station's certificate revocation.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:52,370 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4351, uuid={5DCACFEC-13BF-47c0-88D7-950B26D9DBBB}, since=null, name=KeysInvLocCertRevCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Cryptographic Keys were invalidated due to local station's certificate revocation.', htmlDescription='

Number of times the Cryptographic Keys were invalidated due to local station's certificate revocation.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:52,384 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4352, uuid={4A474D59-99BF-495e-BB9D-C3E096F5F83B}, since=null, name=DataAutnScsCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of authentic Secure Data messages received.', htmlDescription='

Number of authentic Secure Data messages received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:52,396 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4353, uuid={7F7D3F88-910D-4dae-B5B1-DED2E46A51C7}, since=null, name=ReplyToutCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Reply Timeouts. Controlling station only.', htmlDescription='

Number of Reply Timeouts. Controlling station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:52,412 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4354, uuid={E6FD44A6-C9CE-45d6-BA4A-3EF7DECB1691}, since=null, name=RequestToutCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Request Timeouts. Controlled station only.', htmlDescription='

Number of Request Timeouts. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:52,427 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4355, uuid={65E3DDC2-B3AC-4c86-8AF6-39C43114EC3C}, since=null, name=SKeyInvUseCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Session Key was invalidated due to Max Session Key Usage Count. Controlled station only.', htmlDescription='

Number of times the Session Key was invalidated due to Max Session Key Usage Count. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:52,439 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4356, uuid={3C26B695-A1A0-44c3-BE08-C75CA78940DA}, since=null, name=SKeyInvToutCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Session Keys were invalidated due to Max Session Key Usage Timeout. Controlled station only.', htmlDescription='

Number of times the Session Keys were invalidated due to Max Session Key Usage Timeout. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:52,451 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4357, uuid={B3A60D84-37C0-40f2-9019-17B8C45C778E}, since=null, name=SKeyProcFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Session Key Change failures.', htmlDescription='

Number of Session Key Change failures.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:52,469 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4335, uuid={90633EE5-94E7-44d3-B98C-08140BCBFCF1}, since=null, name=ProtInfoErrCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of protocol information errors. Controlled station only.', htmlDescription='

Number of protocol information errors. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:52,495 [main] DEBUG ClassBuilder - Adding IEC62351part5 as superclass of 60870andDNPProtocolInfoEd2 +2024-09-07 21:54:52,500 [main] DEBUG ClassBuilder - Adding IEC62351part5 as subclass of AbstractAgent +2024-09-07 21:54:52,500 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5 +2024-09-07 21:54:52,505 [main] TRACE ClassBuilder - Class Association (2 in package IEEE 1815 and IEC 60870-5 Agent - ed2) +2024-09-07 21:54:52,714 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4284, uuid={D3B5EC3D-3991-40b8-85B6-2AFB3206637A}, since=null, name=AssociationId, alias=, stereotype=index, visibility=public, txtDescription='Id of the association.', htmlDescription='

Id of the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:52,725 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4285, uuid={DB5A65D6-2349-4a56-A200-129882572A95}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:52,742 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4286, uuid={FABF76A8-43C1-4be2-89C5-4C3B7F18604B}, since=null, name=LocAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Local address.', htmlDescription='

Local address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 21:54:52,758 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4287, uuid={F933B36B-EE52-4922-9AA4-F0CB5A55F9CE}, since=null, name=LocAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Local address type.', htmlDescription='

Local address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 21:54:52,770 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4288, uuid={4EDE24F7-C4DB-4078-926A-3518CCBB1D8F}, since=null, name=ProtID, alias=, stereotype=protocol, visibility=public, txtDescription='Protocol ID in use.', htmlDescription='

Protocol ID in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=780, _eaTypeName=ProtIdType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:52,782 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4289, uuid={8CE59398-E353-464a-9B25-03588802C32E}, since=null, name=ProviderDesc, alias=, stereotype=identity, visibility=public, txtDescription='Textual description of the provider that is in use.', htmlDescription='

Textual description of the provider that is in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:52,794 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4290, uuid={BD1C65C9-07DF-4192-8713-A93BC3E1C050}, since=null, name=ProviderName, alias=, stereotype=identity, visibility=public, txtDescription='Identity of the provider responding as the outstation for this association.', htmlDescription='

Identity of the provider responding as the outstation for this association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:52,813 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4291, uuid={BEB1F3A7-96E9-4a7f-B4CE-78A311245A60}, since=null, name=RemAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address.', htmlDescription='

Remote address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{isIndex=yes, mibIndex=yes, Version=0}] +2024-09-07 21:54:52,832 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4292, uuid={59810D47-4220-40e1-A018-FE80613740BC}, since=null, name=RemAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address type.', htmlDescription='

Remote address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{isIndex=yes, mibIndex=yes, Version=0}] +2024-09-07 21:54:52,843 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4293, uuid={9AE7823D-F26B-48f8-A955-DA056C8C0F32}, since=null, name=TLnkErrCnt, alias=, stereotype=health, visibility=public, txtDescription='Count of communication link errors detected.', htmlDescription='

Count of communication link errors detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:52,853 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4294, uuid={FFAF85C1-58F9-4330-80FE-18A5100B3EE7}, since=null, name=TLnkTyp, alias=, stereotype=protocol, visibility=public, txtDescription='Type of transport being utilized.', htmlDescription='

Type of transport being utilized.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=778, _eaTypeName=LnkType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:52,902 [main] DEBUG ClassBuilder - Adding Association as subclass of CommonProtocolInfo +2024-09-07 21:54:52,904 [main] DEBUG ClassBuilder - Adding Association as subclass of AbstractAgent +2024-09-07 21:54:52,905 [main] DEBUG ClassBuilder - Adding Association as subclass of 60870andDNPProtocolInfoEd2 +2024-09-07 21:54:52,908 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent - ed2::Association +2024-09-07 21:54:52,913 [main] TRACE ClassBuilder - Class Summary (3 in package IEEE 1815 and IEC 60870-5 Agent - ed2) +2024-09-07 21:54:53,031 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4295, uuid={E543F5FE-D414-4517-9CFA-17AF02358984}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:53,043 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4296, uuid={A601B46C-5CB2-4663-BBDD-6B075EA07FE8}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered (security or health).', htmlDescription='

Provides the last known event encountered (security or health).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:53,057 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4297, uuid={DD17EC1E-C1D2-444e-BC3B-65A68EB1768E}, since=null, name=Master, alias=, stereotype=table, visibility=public, txtDescription='Client association (when applicable)', htmlDescription='

Client association (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=1057, _eaTypeName=MasterAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{MIBPrefix=tC, Version=0}] +2024-09-07 21:54:53,071 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4298, uuid={927B1068-7146-4ea9-B50A-FD00B14D1747}, since=null, name=Outstation, alias=, stereotype=table, visibility=public, txtDescription='Server association (when applicable)', htmlDescription='

Server association (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=1056, _eaTypeName=OutstationAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{MIBPrefix=tC, Version=0}] +2024-09-07 21:54:53,082 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4299, uuid={E4361517-7300-4db5-A392-69EAD372A4E2}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object', htmlDescription='

Security events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1055, _eaTypeName=60870andDNPSecurityNotificationEd2, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:53,093 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4300, uuid={240DF754-7E5E-4226-B4F4-F1DDBE6652EB}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object', htmlDescription='

State events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1061, _eaTypeName=60870andDNPNotificationEd2, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:53,108 [main] DEBUG ClassBuilder - Adding Summary as subclass of 60870andDNPProtocolInfoEd2 +2024-09-07 21:54:53,108 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent - ed2::Summary +2024-09-07 21:54:53,113 [main] TRACE ClassBuilder - Class 60870andDNPSecurityNotificationEd2 (4 in package IEEE 1815 and IEC 60870-5 Agent - ed2) +2024-09-07 21:54:53,155 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2, _objData=UmlObjectData [id=4358, uuid={6AA445FA-BC7C-4384-8725-306C37B37564}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:53,169 [main] DEBUG ClassBuilder - Adding 60870andDNPSecurityNotificationEd2 as subclass of AbstractAgent +2024-09-07 21:54:53,169 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2 +2024-09-07 21:54:53,175 [main] TRACE ClassBuilder - Class 60870andDNPNotificationEd2 (5 in package IEEE 1815 and IEC 60870-5 Agent - ed2) +2024-09-07 21:54:53,267 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2, _objData=UmlObjectData [id=4360, uuid={60B53F7E-A6F1-449b-8917-E860F3F35ECB}, since=null, name=LastEvent, alias=, stereotype=protocol, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:53,291 [main] DEBUG ClassBuilder - Adding 60870andDNPNotificationEd2 as subclass of AbstractAgent +2024-09-07 21:54:53,292 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2 +2024-09-07 21:54:53,302 [main] TRACE ClassBuilder - Class MasterAssociation (6 in package IEEE 1815 and IEC 60870-5 Agent - ed2) +2024-09-07 21:54:53,353 [main] DEBUG ClassBuilder - Adding MasterAssociation as subclass of Association +2024-09-07 21:54:53,353 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent - ed2::MasterAssociation +2024-09-07 21:54:53,363 [main] TRACE ClassBuilder - Class OutstationAssociation (7 in package IEEE 1815 and IEC 60870-5 Agent - ed2) +2024-09-07 21:54:53,441 [main] DEBUG ClassBuilder - Adding OutstationAssociation as subclass of Association +2024-09-07 21:54:53,441 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent - ed2::OutstationAssociation +2024-09-07 21:54:53,447 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Application Protocols Agents, _depth=4, _eaElementID=1054, _objData=UmlObjectData [id=390, uuid={86E0AF53-5128-4026-88AF-43035DFFE86D}, since=null, name=IEEE 1815 and IEC 60870-5 Agent - ed2, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 21, this package includes the IEEE 1815 DNP, IEC 60870-5-104 protocols classes and the IEC 62351-5 security objects. The high level class named "summary" includes two objects related to the application stack and "association" class that reports the object related to the possible communication sessions between masters and outstations. +This package includes the new version of the objects related to IEC 62351-5:2023. +The two classes "Master Association" and "Outstation Association" Inherits the Associations class attributes. +For each IEEE 1815 DNP or IEC 60870-5-104 application stack a single instance of "summary" class is provided. This instance of "summary" class can be related to several instances of "OutstationAssociation" and "MasterAssociation" classes which inherit the attributes from the "Association" class. Each instance "Association" is the container of the attributes of a specific application session between an Outstation and a Master. +Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Security objects, and therefore the more general class as well.', htmlDescription='

As shown in Figure 21, this package includes the IEEE 1815 DNP, IEC 60870-5-104 protocols classes and the IEC 62351-5 security objects. The high level class named "summary" includes two objects related to the application stack and "association" class that reports the object related to the possible communication sessions between masters and outstations.

This package includes the new version of the objects related to IEC 62351-5:2023.

The two classes "Master Association" and "Outstation Association" Inherits the Associations class attributes.

For each IEEE 1815 DNP or IEC 60870-5-104 application stack a single instance of "summary" class is provided. This instance of "summary" class can be related to several instances of "OutstationAssociation" and "MasterAssociation" classes which inherit the attributes from the "Association" class. Each instance "Association" is the container of the attributes of a specific application session between an Outstation and a Master.

Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Security objects, and therefore the more general class as well.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=ieee1815andiec60870-5-agent-ed2, mibName=IEC-62351-IEC60870-5-IEEE1815-MIB-ED2, mibPrefix=tC2, objectBranchId=3, objectIdentity=ieee1815andiec60870-5-agent-ed2}, 1_diagrams=[DiagramBuilder [_containingPackage=IEEE 1815 and IEC 60870-5 Agent - ed2, _objData=UmlObjectData [id=70, uuid={AA945755-BD47-4be2-A238-6331816DBA4B}, since=null, name=IEEE 1815 and IEC 60870 Agent Relationships, alias=, stereotype=, visibility=public, txtDescription='This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes. +Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.', htmlDescription='

This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes.

Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.

'], _portrait=true, _kind=LOGICAL]], _classes=8 +2024-09-07 21:54:53,460 [main] INFO PackageBuilder - processing package IEC61850 Agent (8) ... +2024-09-07 21:54:53,577 [main] INFO PackageBuilder - processing package ACSI (1) ... +2024-09-07 21:54:53,597 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=ACSI, _objData=UmlObjectData [id=45, uuid={1B1AAFC2-CBA3-401c-873D-7B6CDCE9CBD6}, since=null, name=ACSI, alias=, stereotype=, visibility=public, txtDescription='ACSI classes relationship. ACSI Summary inherit Security attributes from the more general classes.', htmlDescription='

ACSI classes relationship. ACSI Summary inherit Security attributes from the more general classes.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 21:54:53,624 [main] TRACE ClassBuilder - Class ACSISummary (1 in package ACSI) +2024-09-07 21:54:53,905 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1254, uuid={60676AFB-06AF-480c-86DC-DDF92723390B}, since=null, name=assocPoolMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number of client/server associations.', htmlDescription='

Maximum number of client/server associations.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:53,917 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1255, uuid={B21687C2-9C22-4c8f-A435-15A69F7147D6}, since=null, name=assocPoolUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of client/server associations active.', htmlDescription='

Number of client/server associations active.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:53,928 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1278, uuid={6CA26B83-F728-4e94-9E7E-89E5998C3308}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:53,939 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=3931, uuid={75069142-E376-4865-9020-9924B1C82527}, since=null, name=CtrlPrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of control actions attempted that did not have the correct privilege.', htmlDescription='

Number of control actions attempted that did not have the correct privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:53,951 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1262, uuid={44D0F3A5-606C-4650-ABCB-FE16EEE777E3}, since=null, name=gsePubMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number GSE Publications supported.', htmlDescription='

Maximum number GSE Publications supported.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:53,962 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=2263, uuid={1C2B216E-5A48-41c9-8A95-E49BCC60C316}, since=null, name=gsePubUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of active GSE Publications.', htmlDescription='

Number of active GSE Publications.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:53,973 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1264, uuid={B2FDE11B-6BA3-4051-B3BD-15152FB16FED}, since=null, name=gseSubMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number of GSE Subscriptions.', htmlDescription='

Maximum number of GSE Subscriptions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:53,984 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1263, uuid={1842AD96-E339-455f-9BC0-7F98C8F31CEC}, since=null, name=gseSubUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of active GSE Subscriptions.', htmlDescription='

Number of active GSE Subscriptions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:53,995 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=3709, uuid={014B3324-A84F-455f-957B-1420E50D5C59}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:54,005 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=3930, uuid={F5A04750-F784-4c0c-AB12-2298DE62BB99}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:54,017 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1271, uuid={A10D2F0C-3A4C-4aa4-B832-655CEBF8F43C}, since=null, name=RemoteEstAssocCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count of the number of currently active associations that were established through the ACSI associate response.', htmlDescription='

Count of the number of currently active associations that were established through the ACSI associate response.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:54,028 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=3932, uuid={7EF57F32-F44A-4126-9201-8EFAD41F12D4}, since=null, name=AcsCtlFail, alias=, stereotype=security, visibility=public, txtDescription='Number of access control failures detected (i.e., when a data object that the client wanted to access exists in the server, but based on the access view of the association with that client, an access to the data object was refused).', htmlDescription='

Number of access control failures detected (i.e., when a data object that the client wanted to access exists in the server, but based on the access view of the association with that client, an access to the data object was refused).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:54,039 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1282, uuid={2E06924F-F7EB-44a7-A1D2-2428322A0892}, since=null, name=svPubMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number SV publications supported.', htmlDescription='

Maximum number SV publications supported.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:54,051 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1281, uuid={D6CCDFE9-6558-4cd0-B508-8BA15852D950}, since=null, name=svPubUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of active SV publications.', htmlDescription='

Number of active SV publications.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:54,063 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1284, uuid={769A7A31-DA16-43a0-A340-14FF723B8636}, since=null, name=svSubMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number SV subscriptions supported.', htmlDescription='

Maximum number SV subscriptions supported.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:54,074 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1283, uuid={40270792-85F3-4361-850B-A5F29E1B75C0}, since=null, name=svSubUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of active SV subscriptions.', htmlDescription='

Number of active SV subscriptions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:54,088 [main] DEBUG ClassBuilder - Adding ACSISummary as subclass of AbstractAgent +2024-09-07 21:54:54,088 [main] TRACE ClassBuilder - read from EA: ACSI::ACSISummary +2024-09-07 21:54:54,090 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850 Agent, _depth=5, _eaElementID=685, _objData=UmlObjectData [id=246, uuid={624494C4-C544-437f-BE42-BED22973E721}, since=null, name=ACSI, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 22, the ACSI package includes the IEC 61850 Abstract Communication Service Interface (ACSI) classes.', htmlDescription='

As shown in Figure 22, the ACSI package includes the IEC 61850 Abstract Communication Service Interface (ACSI) classes.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=acsi-agent, mibName=IEC-62351-IEC61850-ACSI-MIB, mibPrefix=aCSI, objectBranchId=1, objectIdentity=acsi-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=ACSI, _objData=UmlObjectData [id=45, uuid={1B1AAFC2-CBA3-401c-873D-7B6CDCE9CBD6}, since=null, name=ACSI, alias=, stereotype=, visibility=public, txtDescription='ACSI classes relationship. ACSI Summary inherit Security attributes from the more general classes.', htmlDescription='

ACSI classes relationship. ACSI Summary inherit Security attributes from the more general classes.

'], _portrait=true, _kind=LOGICAL]], _classes=1 +2024-09-07 21:54:54,095 [main] INFO PackageBuilder - processing package MMS (2) ... +2024-09-07 21:54:54,114 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=MMS, _objData=UmlObjectData [id=42, uuid={C69DADFE-D7C7-45d0-83FC-41012CB3C1CA}, since=null, name=MMS, alias=, stereotype=, visibility=public, txtDescription='MMS classes relationship. MMS Provider and MMS Association inherit both Security and Procotol Info attributes from the more general classes.', htmlDescription='

MMS classes relationship. MMS Provider and MMS Association inherit both Security and Procotol Info attributes from the more general classes.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 21:54:54,212 [main] TRACE ClassBuilder - Class MMSProtocolInfo (1 in package MMS) +2024-09-07 21:54:54,464 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=4122, uuid={B070617B-7900-42b1-8DA7-F591BA2099FA}, since=null, name=ErrorRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of error PDU that have been received including: +- Confirmed-ErrorPDU (only for client) +- Cancel-ErrorPDU (only for client) +- Initiate-ErrorPDU +- Conclude-ErrorPDU.', htmlDescription='

Number of error PDU that have been received including:

  • Confirmed-ErrorPDU (only for client)
  • Cancel-ErrorPDU (only for client)
  • Initiate-ErrorPDU
  • Conclude-ErrorPDU.
'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:54,476 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=4123, uuid={650B0D6F-9766-4bae-9182-5EC830CB64E3}, since=null, name=ErrorTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of error PDU that have been sent including: +- Confirmed-ErrorPDU (only for server) +- Cancel-ErrorPDU (only for server) +- Initiate-ErrorPDU +- Conclude-ErrorPDU.', htmlDescription='

Number of error PDU that have been sent including:

  • Confirmed-ErrorPDU (only for server)
  • Cancel-ErrorPDU (only for server)
  • Initiate-ErrorPDU
  • Conclude-ErrorPDU.
'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:54,487 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3214, uuid={30ED064F-399A-4e3a-97D2-D106F082CF4F}, since=null, name=InfoRptRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of MMS Information Reports that have been received.', htmlDescription='

Number of MMS Information Reports that have been received.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:54,498 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=4120, uuid={CEC51410-D5D9-4150-B1C4-AA691F453D23}, since=null, name=InfoRptTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of MMS Information Reports that have been sent.', htmlDescription='

Number of MMS Information Reports that have been sent.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:54,509 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3969, uuid={94722C63-A68B-4460-A0BA-93F19272E206}, since=null, name=MisCmdAckCnt, alias=, stereotype=security, visibility=public, txtDescription='Provides an attribute that indicates the count of the number of MMS request that have not been acknowledged.', htmlDescription='

Provides an attribute that indicates the count of the number of MMS request that have not been acknowledged.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:54,521 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3414, uuid={8F4B6AF1-5A4A-47a1-A365-8963A1FAE78F}, since=null, name=MMSProExchTime, alias=, stereotype=performance, visibility=public, txtDescription='MMS Profile exchange duration (seconds). MMS profile is meant as Logical Devices, Logical Nodes and Dataset definition are exchanged.', htmlDescription='

MMS Profile exchange duration (seconds). MMS profile is meant as Logical Devices, Logical Nodes and Dataset definition are exchanged.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:54,532 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3211, uuid={6C0EA55B-1ACA-4a3a-9068-E9C2CEC96B9D}, since=null, name=RejectRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of RejectPDU received.', htmlDescription='

Number of RejectPDU received.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:54,543 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3212, uuid={C8554D1E-C163-4286-96BB-E26046672513}, since=null, name=RejectTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of RejectPDU sent.', htmlDescription='

Number of RejectPDU sent.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:54,554 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3208, uuid={C94BBBC3-1104-42b0-B156-E80FE61CBDB8}, since=null, name=ReqRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of request PDU that have been received including: +- Confirmed-RequestPDU (only for server) +- Cancel-RequestPDU (only for server) +- Initiate-RequestPDU +- Conclude-RequestPDU.', htmlDescription='

Number of request PDU that have been received including:

  • Confirmed-RequestPDU (only for server)
  • Cancel-RequestPDU (only for server)
  • Initiate-RequestPDU
  • Conclude-RequestPDU.
'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:54,566 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3206, uuid={023D9D84-38BC-4c86-B9CC-78085AC2F869}, since=null, name=ReqTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of request PDU that have been sent including: +- Confirmed-RequestPDU (only for client) +- Cancel-RequestPDU (only for client) +- Initiate-RequestPDU +- Conclude-RequestPDU.', htmlDescription='

Number of request PDU that have been sent including:

  • Confirmed-RequestPDU (only for client)
  • Cancel-RequestPDU (only for client)
  • Initiate-RequestPDU
  • Conclude-RequestPDU.
'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:54,578 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3210, uuid={B07FEDC7-72A1-43b4-9CA9-AEDC8CE77EAF}, since=null, name=RespRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of response PDU that have been received including: +- Confirmed-ResponsePDU (only for client) +- Cancel-ResponsePDU (only for client) +- Initiate-ResponsePDU +- Conclude-ResponsePDU +.', htmlDescription='

Number of response PDU that have been received including:

  • Confirmed-ResponsePDU (only for client)
  • Cancel-ResponsePDU (only for client)
  • Initiate-ResponsePDU
  • Conclude-ResponsePDU

.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:54,590 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3209, uuid={06689B60-CBF2-4d45-8B5A-FB998997F62F}, since=null, name=RespTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of response PDU that have been sent including: +- Confirmed-ResponsePDU (only for server) +- Cancel-ResponsePDU (only for server) +- Initiate-ResponsePDU +- Conclude-ResponsePDU..', htmlDescription='

Number of response PDU that have been sent including:

  • Confirmed-ResponsePDU (only for server)
  • Cancel-ResponsePDU (only for server)
  • Initiate-ResponsePDU
  • Conclude-ResponsePDU..
'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:54,602 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3935, uuid={1F695097-A4ED-4e85-94FE-44B50CFE99F1}, since=null, name=SessKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of session key negotiations that failed.', htmlDescription='

Number of session key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:54,636 [main] DEBUG ClassBuilder - Adding MMSProtocolInfo as subclass of AbstractAgent +2024-09-07 21:54:54,636 [main] TRACE ClassBuilder - read from EA: MMS::MMSProtocolInfo +2024-09-07 21:54:54,641 [main] TRACE ClassBuilder - Class MMSProvider (2 in package MMS) +2024-09-07 21:54:54,942 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3918, uuid={7DB85E2A-0EB8-4226-BEBB-924AB496EB36}, since=null, name=AProfileDecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted within A-Profile session.', htmlDescription='

Number PDUs received that could not be decrypted within A-Profile session.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:54,955 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3938, uuid={A3E432FD-BDD0-4ccf-9233-0A226162B425}, since=null, name=AuthFail, alias=, stereotype=security, visibility=public, txtDescription='Count of the number of authorization failures.', htmlDescription='

Count of the number of authorization failures.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:54,987 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3245, uuid={D1866C6F-051F-404e-9A2B-AC1D6D44D3FC}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:55,000 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2831, uuid={2F166DD9-DE35-44b6-91DE-78EA3A9D0652}, since=null, name=ConnFailInCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of incoming Initiate-requests that have been refused.', htmlDescription='

Number of incoming Initiate-requests that have been refused.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:55,016 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2832, uuid={BA3D3302-5D14-40f7-9AA3-145CCB5F1361}, since=null, name=ConnFailOutCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of outgoing Initiate-requests that have been refused.', htmlDescription='

Number of outgoing Initiate-requests that have been refused.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:55,034 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3936, uuid={86BF3330-EB9C-4633-AB27-D7612CE8D05C}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted.', htmlDescription='

Number PDUs received that could not be decrypted.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:55,048 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3710, uuid={0163C656-8AA1-4c67-82E4-258002A53DDE}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:55,064 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2803, uuid={DEAB3F8B-E3E4-4664-B8B6-2D0C07019F7B}, since=null, name=MMS, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed MMS information can be obtained for each connection.', htmlDescription='

Provides a table through which more detailed MMS information can be obtained for each connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=693, _eaTypeName=MMSAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=mMS, objectIdentity=mMSMMSEntry, Version=0}] +2024-09-07 21:54:55,076 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3915, uuid={294CE46B-D0B5-49f5-BF02-E0988430AD45}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:55,088 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2810, uuid={22C7C42F-8D14-493c-A2EA-CCD76245D0BE}, since=null, name=ProviderDesc, alias=, stereotype=identity, visibility=public, txtDescription='Description of provider.', htmlDescription='

Description of provider.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:55,099 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2811, uuid={D38418EB-A105-4a60-8D61-BB360D9237B5}, since=null, name=ProviderName, alias=, stereotype=identity, visibility=public, txtDescription='Name of the provider.', htmlDescription='

Name of the provider.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:55,112 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3614, uuid={A048CDB1-2C04-4ec3-B2B0-2F9ACEE80E4F}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=920, _eaTypeName=MMSSecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:55,126 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=4030, uuid={354E6408-AAF1-42b2-B717-205A592C81BE}, since=null, name=SessionEstablishmentRate, alias=, stereotype=performance, visibility=public, txtDescription='The number of times any Association has been restablished after a disconnection within 15 minutes.', htmlDescription='

The number of times any Association has been restablished after a disconnection within 15 minutes.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:55,139 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=4031, uuid={F68354BD-DA88-4aca-B25F-9C06F7BEFBB9}, since=null, name=SessionRestartCnt, alias=, stereotype=security, visibility=public, txtDescription='Provides an attribute that indicates the count of the number of times the session has been restablished.', htmlDescription='

Provides an attribute that indicates the count of the number of times the session has been restablished.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:55,152 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3613, uuid={0233C10F-B173-4f99-A4E9-A79E7500E3B0}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object.', htmlDescription='

State events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=921, _eaTypeName=MMSNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:55,164 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3919, uuid={575C57A8-200D-4db3-B297-AE2635C01BC3}, since=null, name=TProfileDecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted within T-Profile session.', htmlDescription='

Number PDUs received that could not be decrypted within T-Profile session.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:55,176 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3921, uuid={D87795A0-A0B4-4126-9015-DBEBDD79CA50}, since=null, name=TProfileSessKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of session key negotiations that failed. This applies only to T-Profile.', htmlDescription='

Number of session key negotiations that failed. This applies only to T-Profile.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:55,189 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3975, uuid={5C2EA464-4FB4-4413-90B5-E3451373A966}, since=null, name=UpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations that failed.', htmlDescription='

Number of update key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:55,204 [main] DEBUG ClassBuilder - Adding MMSProvider as subclass of MMSProtocolInfo +2024-09-07 21:54:55,204 [main] TRACE ClassBuilder - read from EA: MMS::MMSProvider +2024-09-07 21:54:55,210 [main] TRACE ClassBuilder - Class MMSAssociation (3 in package MMS) +2024-09-07 21:54:55,535 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2820, uuid={3D4B3729-146B-4ed2-976D-D539FFAAAE40}, since=null, name=Active, alias=, stereotype=protocol, visibility=public, txtDescription='True if association is in use.', htmlDescription='

True if association is in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:55,548 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3727, uuid={9E3D1B59-980F-4217-B141-1C353C1D4E72}, since=null, name=AssociationId, alias=, stereotype=index, visibility=public, txtDescription='Id of the association.', htmlDescription='

Id of the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:55,559 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=4119, uuid={8717A248-6228-4974-9285-1B96BBEDF420}, since=null, name=Client, alias=, stereotype=protocol, visibility=public, txtDescription='True if role is client, false if role is server', htmlDescription='

True if role is client, false if role is server

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:55,570 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3246, uuid={2C472C21-D2BB-4a4b-8D93-5C0E3346AA95}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:55,580 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3939, uuid={EBEAECC3-8BE4-4469-B891-4898C2954EE5}, since=null, name=HndShTime, alias=, stereotype=performance, visibility=public, txtDescription='Duration of the MMS session handshake. This apply to the sender only.', htmlDescription='

Duration of the MMS session handshake. This apply to the sender only.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:55,592 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2844, uuid={C34BBC7F-ACC5-4172-B430-081B10B49819}, since=null, name=RemoteEstAssos, alias=, stereotype=protocol, visibility=public, txtDescription='True if the association was established due to an incoming Initiate-Request.', htmlDescription='

True if the association was established due to an incoming Initiate-Request.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:55,606 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2876, uuid={BF20C38C-E4DE-439e-A7C3-2D9FCB7CA1C2}, since=null, name=RemoteIP, alias=, stereotype=protocol, visibility=public, txtDescription='Remote entity IP network address.', htmlDescription='

Remote entity IP network address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 21:54:55,617 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3692, uuid={5EA2A0D0-6DA8-427e-ADEB-2CC19FDBB143}, since=null, name=RemoteIPAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:55,630 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2873, uuid={14DA2F03-EFD1-4b98-A66F-EFD6046F1025}, since=null, name=RemotePSEL, alias=, stereotype=protocol, visibility=public, txtDescription='Remote entity presentation selector.', htmlDescription='

Remote entity presentation selector.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=782, _eaTypeName=Selector, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 21:54:55,643 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2874, uuid={C4E19558-A5AA-43ce-A203-6E7BACDD96C7}, since=null, name=RemoteSSEL, alias=, stereotype=protocol, visibility=public, txtDescription='Remote entity session selector.', htmlDescription='

Remote entity session selector.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=782, _eaTypeName=Selector, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 21:54:55,656 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2875, uuid={C5BC70EE-7E84-4822-95B3-1EA00D57E252}, since=null, name=RemoteTSEL, alias=, stereotype=protocol, visibility=public, txtDescription='Remote entity transport selector.', htmlDescription='

Remote entity transport selector.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=782, _eaTypeName=Selector, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 21:54:55,667 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3972, uuid={47D3343F-E927-48ec-8558-54CC13AEC30E}, since=null, name=ReportPer100Seconds, alias=, stereotype=performance, visibility=public, txtDescription='Number of Reports received/transmitted during the last 100 seconds.', htmlDescription='

Number of Reports received/transmitted during the last 100 seconds.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:55,678 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3968, uuid={D1802DDE-FE54-49d6-9EBB-1A5DE0464F3A}, since=null, name=RptReceptionDelay, alias=, stereotype=performance, visibility=public, txtDescription='The time required to receive the last Report. This time is the difference between the reception time and the emission timestamp stored inside the report. If not synchronized this value shall be set to -1.', htmlDescription='

The time required to receive the last Report. This time is the difference between the reception time and the emission timestamp stored inside the report. If not synchronized this value shall be set to -1.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:55,688 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3913, uuid={B94A45CC-7384-41ee-9821-F77D634C675F}, since=null, name=SecurityProfile, alias=, stereotype=protocol, visibility=public, txtDescription='This is the security profile in use for this association (no security, integrity A profile, A+, AE+).', htmlDescription='

This is the security profile in use for this association (no security, integrity A profile, A+, AE+).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1013, _eaTypeName=SecurityProfileType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:55,712 [main] DEBUG ClassBuilder - Adding MMSAssociation as subclass of MMSProtocolInfo +2024-09-07 21:54:55,713 [main] DEBUG ClassBuilder - Adding MMSAssociation as subclass of CommonProtocolInfo +2024-09-07 21:54:55,713 [main] TRACE ClassBuilder - read from EA: MMS::MMSAssociation +2024-09-07 21:54:55,718 [main] TRACE ClassBuilder - Class MMSSecurityNotification (4 in package MMS) +2024-09-07 21:54:55,806 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSSecurityNotification, _objData=UmlObjectData [id=3582, uuid={ED76E952-B3FD-4bbd-B4F7-7F695D6C14B6}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of PDUs received that could not be decrypted.', htmlDescription='

Number of PDUs received that could not be decrypted.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:55,820 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSSecurityNotification, _objData=UmlObjectData [id=4036, uuid={6D84220E-9E6E-4b52-8843-92394244A0F5}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:55,832 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSSecurityNotification, _objData=UmlObjectData [id=3581, uuid={52A9B9D0-58D5-4d7d-A396-A7788A41EB89}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:55,843 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSSecurityNotification, _objData=UmlObjectData [id=3584, uuid={4F8B7D7A-78C6-4ac7-A43C-8B06E8D829E0}, since=null, name=UpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations that failed.', htmlDescription='

Number of update key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:55,857 [main] DEBUG ClassBuilder - Adding MMSSecurityNotification as subclass of AbstractAgent +2024-09-07 21:54:55,857 [main] TRACE ClassBuilder - read from EA: MMS::MMSSecurityNotification +2024-09-07 21:54:55,862 [main] TRACE ClassBuilder - Class MMSNotification (5 in package MMS) +2024-09-07 21:54:55,948 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSNotification, _objData=UmlObjectData [id=3573, uuid={6F0A08FF-024D-4919-99B5-B68C203679AA}, since=null, name=ConnFailInCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of incoming Initiate-requests that have been refused.', htmlDescription='

Number of incoming Initiate-requests that have been refused.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:55,959 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSNotification, _objData=UmlObjectData [id=3574, uuid={F172E26F-F99A-4ca4-BBF3-4759B78D18F3}, since=null, name=ConnFailOutCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of outgoing Initiate-requests that have been refused.', htmlDescription='

Number of outgoing Initiate-requests that have been refused.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:55,971 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSNotification, _objData=UmlObjectData [id=3575, uuid={5F493EBC-63E7-480b-B344-66194892E87B}, since=null, name=RejectRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of reject issued in reception.', htmlDescription='

Number of reject issued in reception.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:55,984 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSNotification, _objData=UmlObjectData [id=3576, uuid={0D61F583-C436-4314-A1B5-C6FA04940FD7}, since=null, name=RejectTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received Reject on transmission.', htmlDescription='

Number of received Reject on transmission.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:55,999 [main] DEBUG ClassBuilder - Adding MMSNotification as subclass of AbstractAgent +2024-09-07 21:54:55,999 [main] TRACE ClassBuilder - read from EA: MMS::MMSNotification +2024-09-07 21:54:56,001 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850 Agent, _depth=5, _eaElementID=613, _objData=UmlObjectData [id=214, uuid={0123913E-3D3C-4627-ABFC-BF86D71D1894}, since=null, name=MMS, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 23, the MMS package includes the IEC 61850 Manufacturing Message Specification (MMS) classes. MMS Provider and MMS Association inherit both Security and Protocol Info attributes from the more general classes.', htmlDescription='

As shown in Figure 23, the MMS package includes the IEC 61850 Manufacturing Message Specification (MMS) classes. MMS Provider and MMS Association inherit both Security and Protocol Info attributes from the more general classes.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=mms-agent, mibName=IEC-62351-IEC61850-MMS-MIB, mibPrefix=mMS, objectBranchId=2, objectIdentity=mms-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=MMS, _objData=UmlObjectData [id=42, uuid={C69DADFE-D7C7-45d0-83FC-41012CB3C1CA}, since=null, name=MMS, alias=, stereotype=, visibility=public, txtDescription='MMS classes relationship. MMS Provider and MMS Association inherit both Security and Procotol Info attributes from the more general classes.', htmlDescription='

MMS classes relationship. MMS Provider and MMS Association inherit both Security and Procotol Info attributes from the more general classes.

'], _portrait=true, _kind=LOGICAL]], _classes=5 +2024-09-07 21:54:56,007 [main] INFO PackageBuilder - processing package SV and GSE common objects (3) ... +2024-09-07 21:54:56,018 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=SV and GSE common objects, _objData=UmlObjectData [id=63, uuid={DFEA5E4E-B042-4697-A4BE-C60308616114}, since=null, name=SV and GSE common objects, alias=, stereotype=, visibility=public, txtDescription='GSE/SV common classes relationship.', htmlDescription='

GSE/SV common classes relationship.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 21:54:56,080 [main] TRACE ClassBuilder - Class GSEandSVCommon (1 in package SV and GSE common objects) +2024-09-07 21:54:56,155 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVCommon, _objData=UmlObjectData [id=4054, uuid={8F7CBDDF-5309-4c57-A3E5-B0C820FEC605}, since=null, name=GroupUpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations at KDC that failed.', htmlDescription='

Number of update key negotiations at KDC that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:56,166 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVCommon, _objData=UmlObjectData [id=4055, uuid={72C144FE-7138-4153-8C18-0FC5BC1E8998}, since=null, name=KDCAuthFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Count of the number of authorization failures against KDC.', htmlDescription='

Count of the number of authorization failures against KDC.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:56,177 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVCommon, _objData=UmlObjectData [id=4056, uuid={10AD71AC-8E2C-4afb-88B0-4CAAF7C06C47}, since=null, name=KDCSessionKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Session Key establishment between peer and KDC failed.', htmlDescription='

Session Key establishment between peer and KDC failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:56,250 [main] DEBUG ClassBuilder - Adding GSEandSVCommon as subclass of AbstractAgent +2024-09-07 21:54:56,250 [main] TRACE ClassBuilder - read from EA: SV and GSE common objects::GSEandSVCommon +2024-09-07 21:54:56,255 [main] TRACE ClassBuilder - Class GSEandSVPublisherAssociation (2 in package SV and GSE common objects) +2024-09-07 21:54:56,350 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=4057, uuid={C97C7E95-F1A3-49a6-84CD-F37F54D4DCAA}, since=null, name=CBRef, alias=, stereotype=index, visibility=public, txtDescription='Reference of the GSE/SV Control block being supervised.', htmlDescription='

Reference of the GSE/SV Control block being supervised.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:56,363 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=4058, uuid={A3300C61-0405-4178-AA24-56139902DFD1}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:56,375 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=4059, uuid={B346F0EE-81BD-4f02-BD05-3DEB6C966B08}, since=null, name=OutUv, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer underflows detected due to outgoing serial communication.', htmlDescription='

Number of buffer underflows detected due to outgoing serial communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:56,387 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=4366, uuid={10164DB8-AB84-46a3-9325-B0D817803F9A}, since=null, name=APPID, alias=, stereotype=protocol, visibility=public, txtDescription='Application Identifier being expected.', htmlDescription='

Application Identifier being expected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:56,399 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=3829, uuid={F6725CAA-C95B-431e-BCC4-6877D34082A8}, since=null, name=TxPduPerSecond, alias=, stereotype=protocol, visibility=public, txtDescription='Count of the number of SV telegrams sent within a second on the association.', htmlDescription='

Count of the number of SV telegrams sent within a second on the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:56,399 [main] ERROR ClassBuilder - [+++ EA problem: attr count on GSEandSVPublisherAssociation = 5 +, +++ attr CBRef: pos = 1 +, +++ attr CntRs: pos = 2 +, +++ attr OutUv: pos = 3 +, +++ attr APPID: pos = 4 +, +++ attr TxPduPerSecond: pos = 4 DUPLICATE +] +2024-09-07 21:54:56,449 [main] DEBUG ClassBuilder - Adding GSEandSVPublisherAssociation as subclass of GSEandSVCommon +2024-09-07 21:54:56,455 [main] TRACE ClassBuilder - read from EA: SV and GSE common objects::GSEandSVPublisherAssociation +2024-09-07 21:54:56,460 [main] TRACE ClassBuilder - Class GSEandSVSubscriberAssociation (3 in package SV and GSE common objects) +2024-09-07 21:54:56,594 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4061, uuid={E70C3857-A774-4635-9A52-713A3189C31C}, since=null, name=CBRef, alias=, stereotype=index, visibility=public, txtDescription='Reference of the GSE/SV Control block being supervised.', htmlDescription='

Reference of the GSE/SV Control block being supervised.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:56,605 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4062, uuid={2E060239-4EB9-4a8a-A7C3-AED6EDA8C5A3}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:56,616 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4063, uuid={B4825E20-07C1-4cde-94AD-CFE37852AE7F}, since=null, name=InOvCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer overflows detected due to incoming communication. This counter is incremented each time the buffer space is insufficient to receive an incoming message.', htmlDescription='

Number of buffer overflows detected due to incoming communication. This counter is incremented each time the buffer space is insufficient to receive an incoming message.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:56,628 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4064, uuid={BA2766B5-6FA2-4c9b-85EA-7353D0790FDF}, since=null, name=MessageIntegrityFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number messages that were not using the proper Group Key.', htmlDescription='

Number messages that were not using the proper Group Key.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:56,639 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4067, uuid={85138267-8516-4911-9D4D-D78674944F2D}, since=null, name=RxPduPerSecond, alias=, stereotype=protocol, visibility=public, txtDescription='Count of the number of SV telegrams received within a second on the association.', htmlDescription='

Count of the number of SV telegrams received within a second on the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:56,649 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4365, uuid={7955A1E1-9F67-46da-A434-8EA5BA1C0BE2}, since=null, name=APPID, alias=, stereotype=protocol, visibility=public, txtDescription='Application identified being expected.', htmlDescription='

Application identified being expected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:56,664 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4367, uuid={2B5045AC-99BD-4941-BCD5-36ABDDCAC2FF}, since=null, name=RxAPPID, alias=, stereotype=protocol, visibility=public, txtDescription='Last Application Identifier being received.', htmlDescription='

Last Application Identifier being received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:56,759 [main] DEBUG ClassBuilder - Adding GSEandSVSubscriberAssociation as subclass of GSEandSVCommon +2024-09-07 21:54:56,854 [main] TRACE ClassBuilder - read from EA: SV and GSE common objects::GSEandSVSubscriberAssociation +2024-09-07 21:54:56,859 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850 Agent, _depth=5, _eaElementID=1023, _objData=UmlObjectData [id=380, uuid={206C6DF0-DCC9-45e0-B3CE-6470323EA4B6}, since=null, name=SV and GSE common objects, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 24, the SV and GSE common objects package includes the IEC 61850 Sampled Value (SV) and Generic Substation Events (GSE) common classes.', htmlDescription='

As shown in Figure 24, the SV and GSE common objects package includes the IEC 61850 Sampled Value (SV) and Generic Substation Events (GSE) common classes.

'], _modelId=362, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=SV and GSE common objects, _objData=UmlObjectData [id=63, uuid={DFEA5E4E-B042-4697-A4BE-C60308616114}, since=null, name=SV and GSE common objects, alias=, stereotype=, visibility=public, txtDescription='GSE/SV common classes relationship.', htmlDescription='

GSE/SV common classes relationship.

'], _portrait=true, _kind=LOGICAL]], _classes=3 +2024-09-07 21:54:56,873 [main] INFO PackageBuilder - processing package SV (4) ... +2024-09-07 21:54:56,943 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=SV, _objData=UmlObjectData [id=60, uuid={472A38C4-7002-4632-9EB5-EC1C28A2CCA8}, since=null, name=SV, alias=, stereotype=, visibility=public, txtDescription='SV classes relationship. SVProvider and SVAssociation inherit both Security and Procotol Info attributes from the more general classes.', htmlDescription='

SV classes relationship. SVProvider and SVAssociation inherit both Security and Procotol Info attributes from the more general classes.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 21:54:57,114 [main] TRACE ClassBuilder - Class SVProvider (4 in package SV) +2024-09-07 21:54:57,291 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3844, uuid={C24FF010-3527-40b6-A143-3CBD3C95FC45}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:57,304 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=4052, uuid={4D212643-73E9-4b01-B3E4-1419141F7F5C}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of PDUs received that could not be decrypted', htmlDescription='

Number of PDUs received that could not be decrypted

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:57,316 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3845, uuid={62E2AB60-AB61-489b-9B09-FC14A0BF4694}, since=null, name=PDUSizeFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDU with wrong size. This is meaningful only for IP telegrams.', htmlDescription='

Number of received PDU with wrong size. This is meaningful only for IP telegrams.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:57,334 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3846, uuid={A6C46361-5561-43d2-8B67-6DAC7566C062}, since=null, name=PIP, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed SV information can be obtained for each IP publisher connection.', htmlDescription='

Provides a table through which more detailed SV information can be obtained for each IP publisher connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=994, _eaTypeName=SVPublisherAssociationIP, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}] +2024-09-07 21:54:57,351 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3847, uuid={1C5E81A0-3007-4221-BBCF-B4538CDCD068}, since=null, name=PL2, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed SV information can be obtained for each L2 (Ethernet) publisher connection.', htmlDescription='

Provides a table through which more detailed SV information can be obtained for each L2 (Ethernet) publisher connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=995, _eaTypeName=SVPublisherAssociationL2, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}] +2024-09-07 21:54:57,366 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3848, uuid={F24AD27F-DE3D-4d47-BF82-D81306D727FD}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=997, _eaTypeName=SVNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:57,385 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3849, uuid={E61DCB59-D671-4e3e-AF63-7A7934A7139B}, since=null, name=SIP, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed SV information can be obtained for each IP subscriber connection.', htmlDescription='

Provides a table through which more detailed SV information can be obtained for each IP subscriber connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=998, _eaTypeName=SVSubcriberAssociationIP, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}] +2024-09-07 21:54:57,404 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3850, uuid={3A8AA373-DF4D-4203-9E17-D1A556AE4626}, since=null, name=SL2, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed SV information can be obtained for each L2 (Ethernet) subscriber connection.', htmlDescription='

Provides a table through which more detailed SV information can be obtained for each L2 (Ethernet) subscriber connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=999, _eaTypeName=SVSubcriberAssociationL2, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}] +2024-09-07 21:54:57,421 [main] DEBUG ClassBuilder - Adding SVProvider as subclass of GSEandSVCommon +2024-09-07 21:54:57,421 [main] TRACE ClassBuilder - read from EA: SV::SVProvider +2024-09-07 21:54:57,427 [main] TRACE ClassBuilder - Class SVPublisherAssociationIP (5 in package SV) +2024-09-07 21:54:57,491 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVPublisherAssociationIP, _objData=UmlObjectData [id=3817, uuid={3EC59ACA-14AB-4adf-823D-4EF3DBBA4715}, since=null, name=DestIpAddr, alias=, stereotype=protocol, visibility=public, txtDescription='Destination IP address.', htmlDescription='

Destination IP address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 21:54:57,505 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVPublisherAssociationIP, _objData=UmlObjectData [id=3818, uuid={3B41797D-66B7-473b-A47C-92A5B0C6DB2C}, since=null, name=DestIpAddrType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:57,520 [main] DEBUG ClassBuilder - Adding SVPublisherAssociationIP as subclass of GSEandSVPublisherAssociation +2024-09-07 21:54:57,520 [main] TRACE ClassBuilder - read from EA: SV::SVPublisherAssociationIP +2024-09-07 21:54:57,525 [main] TRACE ClassBuilder - Class SVPublisherAssociationL2 (6 in package SV) +2024-09-07 21:54:57,575 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVPublisherAssociationL2, _objData=UmlObjectData [id=3819, uuid={2E77B17F-D224-4764-9C29-36CD379797D7}, since=null, name=DestMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 21:54:57,590 [main] DEBUG ClassBuilder - Adding SVPublisherAssociationL2 as subclass of GSEandSVPublisherAssociation +2024-09-07 21:54:57,590 [main] TRACE ClassBuilder - read from EA: SV::SVPublisherAssociationL2 +2024-09-07 21:54:57,596 [main] TRACE ClassBuilder - Class SVSubcriberAssociationIP (7 in package SV) +2024-09-07 21:54:57,662 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVSubcriberAssociationIP, _objData=UmlObjectData [id=3823, uuid={CF21D44F-A555-48cc-99A1-D49E20097B5D}, since=null, name=SrcIpAddr, alias=, stereotype=protocol, visibility=public, txtDescription='Source IP address.', htmlDescription='

Source IP address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 21:54:57,675 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVSubcriberAssociationIP, _objData=UmlObjectData [id=3824, uuid={3AB68377-764F-4314-851D-FEE4B40FC99E}, since=null, name=SrcIpAddrType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:57,692 [main] DEBUG ClassBuilder - Adding SVSubcriberAssociationIP as subclass of GSEandSVSubscriberAssociation +2024-09-07 21:54:57,692 [main] TRACE ClassBuilder - read from EA: SV::SVSubcriberAssociationIP +2024-09-07 21:54:57,698 [main] TRACE ClassBuilder - Class SVSubcriberAssociationL2 (8 in package SV) +2024-09-07 21:54:57,750 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVSubcriberAssociationL2, _objData=UmlObjectData [id=3825, uuid={A6F5F486-2B40-4620-ADA1-3CBA7408C0D8}, since=null, name=SrcMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 21:54:57,765 [main] DEBUG ClassBuilder - Adding SVSubcriberAssociationL2 as subclass of GSEandSVSubscriberAssociation +2024-09-07 21:54:57,765 [main] TRACE ClassBuilder - read from EA: SV::SVSubcriberAssociationL2 +2024-09-07 21:54:57,770 [main] TRACE ClassBuilder - Class SVNotification (9 in package SV) +2024-09-07 21:54:57,800 [main] DEBUG ClassBuilder - Adding SVNotification as subclass of GSEandSVCommon +2024-09-07 21:54:57,800 [main] TRACE ClassBuilder - read from EA: SV::SVNotification +2024-09-07 21:54:57,802 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850 Agent, _depth=5, _eaElementID=993, _objData=UmlObjectData [id=370, uuid={FBDCDA40-333C-4feb-A44B-6E6F8766621D}, since=null, name=SV, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 25, the SV package includes the IEC 61850 Sampled Value (SV) classes. SVProvider and SVAssociation inherit both Security and Protocol Info attributes from the more general classes.', htmlDescription='

As shown in Figure 25, the SV package includes the IEC 61850 Sampled Value (SV) classes. SVProvider and SVAssociation inherit both Security and Protocol Info attributes from the more general classes.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=sv-agent, mibName=IEC-62351-IEC61850-SV-MIB, mibPrefix=sV, objectBranchId=3, objectIdentity=sv-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=SV, _objData=UmlObjectData [id=60, uuid={472A38C4-7002-4632-9EB5-EC1C28A2CCA8}, since=null, name=SV, alias=, stereotype=, visibility=public, txtDescription='SV classes relationship. SVProvider and SVAssociation inherit both Security and Procotol Info attributes from the more general classes.', htmlDescription='

SV classes relationship. SVProvider and SVAssociation inherit both Security and Procotol Info attributes from the more general classes.

'], _portrait=true, _kind=LOGICAL]], _classes=6 +2024-09-07 21:54:57,807 [main] INFO PackageBuilder - processing package GSE (5) ... +2024-09-07 21:54:57,829 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=GSE, _objData=UmlObjectData [id=44, uuid={80FA056A-3318-4339-86E8-7D464BD53A85}, since=null, name=GSE, alias=, stereotype=, visibility=public, txtDescription='GSE classes relationship. GSEProvider and GSEAssociation inherit both Security and Procotol Info attributes from the more general classes.', htmlDescription='

GSE classes relationship. GSEProvider and GSEAssociation inherit both Security and Procotol Info attributes from the more general classes.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 21:54:57,960 [main] TRACE ClassBuilder - Class GSESubscriberAssociation (3 in package GSE) +2024-09-07 21:54:58,252 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=3750, uuid={AFDD17DA-6B2F-4bc7-8F89-0E63A9B7D1D7}, since=null, name=ConfRevMis, alias=, stereotype=protocol, visibility=public, txtDescription='True indicates that the expected configuration revision did not match the received number.', htmlDescription='

True indicates that the expected configuration revision did not match the received number.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:58,263 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=3755, uuid={2E11DB8F-06FC-485f-8C56-703E601D8A60}, since=null, name=NdsComm, alias=, stereotype=protocol, visibility=public, txtDescription='Duplicated Message received', htmlDescription='

Duplicated Message received

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:58,274 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4368, uuid={9075FAD9-2CE1-4e5d-907F-DBD0B4B1CC32}, since=null, name=ConfRev, alias=, stereotype=protocol, visibility=public, txtDescription='Last configuration Revision being received.', htmlDescription='

Last configuration Revision being received.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:58,285 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4369, uuid={E4803687-6245-40fd-AB97-A5A553A34C59}, since=null, name=RxConfRev, alias=, stereotype=protocol, visibility=public, txtDescription='True indicates that the expected configuration revision did not match the received number.', htmlDescription='

True indicates that the expected configuration revision did not match the received number.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:58,296 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=3758, uuid={EBC5C199-473E-4859-B0FE-DD1C08CC93AF}, since=null, name=TalExpCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count of the received TAL expirations that have been detected.', htmlDescription='

Count of the received TAL expirations that have been detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:58,307 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4370, uuid={09E69AF6-2C2B-46e9-B274-E5220B53D94D}, since=null, name=OosErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of times out of sequence of GOOSE has been observed.', htmlDescription='

Number of times out of sequence of GOOSE has been observed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:58,318 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4371, uuid={5B152C15-4AC4-421a-87EB-F81484BD2524}, since=null, name=DupMsgRx, alias=, stereotype=protocol, visibility=public, txtDescription='If true, the subscription needs commissioning, i.e., the received message does not conform to the current subscription configuration (either the 'dataSetRef' is wrong, the data set members, the configuration revision number, or no subscription is configured at all).', htmlDescription='

If true, the subscription needs commissioning, i.e., the received message does not conform to the current subscription configuration (either the 'dataSetRef' is wrong, the data set members, the configuration revision number, or no subscription is configured at all).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:58,329 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4372, uuid={313447D4-3710-47a8-85FF-DAA9316F8720}, since=null, name=DatSet, alias=, stereotype=protocol, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:58,339 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4373, uuid={8E3C588A-BEC3-454f-861F-712BADFC92AA}, since=null, name=RxDatSet, alias=, stereotype=protocol, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:58,351 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4374, uuid={C304ABDA-E4BA-4cfc-BAD9-17425F5A0611}, since=null, name=GoID, alias=, stereotype=protocol, visibility=public, txtDescription='GOOSE Identifier being expected.', htmlDescription='

GOOSE Identifier being expected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:58,363 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4375, uuid={985D635D-D095-4282-B40B-8D3F15CDC152}, since=null, name=RxGoID, alias=, stereotype=protocol, visibility=public, txtDescription='Last GOOSE Identifier being received.', htmlDescription='

Last GOOSE Identifier being received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:58,376 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4376, uuid={3BC29513-E13B-40a1-A86D-4B3406FC2CD1}, since=null, name=StNum, alias=, stereotype=protocol, visibility=public, txtDescription='StNum being received from last accepted GOOSE message.', htmlDescription='

StNum being received from last accepted GOOSE message.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:58,389 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4377, uuid={699EF357-D4F5-4445-8F55-446FF895C089}, since=null, name=SqNum, alias=, stereotype=protocol, visibility=public, txtDescription='SqNum being received from last accepted GOOSE message.', htmlDescription='

SqNum being received from last accepted GOOSE message.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:58,400 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4378, uuid={778EF329-63E8-4a88-A172-D2DAD54D972A}, since=null, name=RejectStNum, alias=, stereotype=protocol, visibility=public, txtDescription='Last StNum being rejected.', htmlDescription='

Last StNum being rejected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:58,416 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4379, uuid={A699C155-79DE-4187-BDF5-AFD122DAD7CA}, since=null, name=RejectSqNum, alias=, stereotype=protocol, visibility=public, txtDescription='Last SqNum being rejected.', htmlDescription='

Last SqNum being rejected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:58,432 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4494, uuid={98542797-3D0F-4f54-96D7-B2BEBEAF605A}, since=null, name=RxT, alias=, stereotype=protocol, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:58,432 [main] ERROR ClassBuilder - [+++ EA problem: attr count on GSESubscriberAssociation = 16 +, +++ attr ConfRevMis: pos = 0 +, +++ attr NdsComm: pos = 2 +, +++ attr ConfRev: pos = 3 +, +++ attr RxConfRev: pos = 4 +, +++ attr TalExpCnt: pos = 4 DUPLICATE +, +++ attr OosErrCnt: pos = 5 +, +++ attr DupMsgRx: pos = 6 +, +++ attr DatSet: pos = 7 +, +++ attr RxDatSet: pos = 8 +, +++ attr GoID: pos = 9 +, +++ attr RxGoID: pos = 10 +, +++ attr StNum: pos = 11 +, +++ attr SqNum: pos = 12 +, +++ attr RejectStNum: pos = 13 +, +++ attr RejectSqNum: pos = 14 +, +++ attr RxT: pos = 15 +] +2024-09-07 21:54:58,468 [main] DEBUG ClassBuilder - Adding GSESubscriberAssociation as subclass of GSEandSVSubscriberAssociation +2024-09-07 21:54:58,468 [main] TRACE ClassBuilder - read from EA: GSE::GSESubscriberAssociation +2024-09-07 21:54:58,473 [main] TRACE ClassBuilder - Class GSEProvider (4 in package GSE) +2024-09-07 21:54:58,666 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3243, uuid={71555478-FCAD-4dae-B530-6956D1B5D475}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:58,679 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=4053, uuid={A432D351-022A-4b49-AA3D-61CBB91067FC}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of PDUs received that could not be decrypted', htmlDescription='

Number of PDUs received that could not be decrypted

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:58,695 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3773, uuid={4B58CE58-88E3-4e07-9FF3-FE0181F95942}, since=null, name=InErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of PDUs received that were in error due to malformed content, parity errors or configuration mismatch.', htmlDescription='

Number of PDUs received that were in error due to malformed content, parity errors or configuration mismatch.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:58,711 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=4121, uuid={D727F0F0-5C88-4fc4-83C5-D69614BE4ED8}, since=null, name=InUnexpectedMulticast, alias=, stereotype=protocol, visibility=public, txtDescription='Count of unexpected multicast received PDUs. This apply to GOOSE only.', htmlDescription='

Count of unexpected multicast received PDUs. This apply to GOOSE only.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:58,794 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3744, uuid={8BC8E8B9-0BA6-4277-B1B1-23F48CD0FD30}, since=null, name=PIP, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed GSE information can be obtained for each IP publisher connection.', htmlDescription='

Provides a table through which more detailed GSE information can be obtained for each IP publisher connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=796, _eaTypeName=GSEPublisherAssociationIP, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}] +2024-09-07 21:54:58,834 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3745, uuid={10373ECE-DF59-4995-BA92-240A3CC2D94B}, since=null, name=PL2, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed GSE information can be obtained for each L2 (Ethernet) publisher connection.', htmlDescription='

Provides a table through which more detailed GSE information can be obtained for each L2 (Ethernet) publisher connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=984, _eaTypeName=GSEPublisherAssociationL2, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}] +2024-09-07 21:54:58,858 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3618, uuid={BF431EAB-1B49-4c5a-8BC3-171FED573957}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=930, _eaTypeName=GSENotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-07 21:54:58,876 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3046, uuid={AA8FC433-0ACC-4dcf-9B1C-59469C28FCA5}, since=null, name=SIP, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed GSE information can be obtained for each IP subscriber connection.', htmlDescription='

Provides a table through which more detailed GSE information can be obtained for each IP subscriber connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=979, _eaTypeName=GSESubcriberAssociationIP, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}] +2024-09-07 21:54:58,896 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3746, uuid={F6A461DF-31BD-4546-8B62-BE2A79D53F41}, since=null, name=SL2, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed GSE information can be obtained for each L2 (Ethernet) subscriber connection.', htmlDescription='

Provides a table through which more detailed GSE information can be obtained for each L2 (Ethernet) subscriber connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=977, _eaTypeName=GSESubcriberAssociationL2, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}] +2024-09-07 21:54:58,910 [main] DEBUG ClassBuilder - Adding GSEProvider as subclass of GSEandSVCommon +2024-09-07 21:54:58,910 [main] TRACE ClassBuilder - read from EA: GSE::GSEProvider +2024-09-07 21:54:58,916 [main] TRACE ClassBuilder - Class GSEPublisherAssociationIP (5 in package GSE) +2024-09-07 21:54:59,002 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEPublisherAssociationIP, _objData=UmlObjectData [id=3803, uuid={9C513452-9437-4849-894C-B2C33952D4F0}, since=null, name=DestIpAddr, alias=, stereotype=protocol, visibility=public, txtDescription='Destination IP address.', htmlDescription='

Destination IP address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 21:54:59,019 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEPublisherAssociationIP, _objData=UmlObjectData [id=3802, uuid={03D1AF7D-F2B5-425c-8FD2-63B09E3887F9}, since=null, name=DestIpAddrType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:59,034 [main] DEBUG ClassBuilder - Adding GSEPublisherAssociationIP as subclass of GSEandSVPublisherAssociation +2024-09-07 21:54:59,034 [main] TRACE ClassBuilder - read from EA: GSE::GSEPublisherAssociationIP +2024-09-07 21:54:59,040 [main] TRACE ClassBuilder - Class GSEPublisherAssociationL2 (6 in package GSE) +2024-09-07 21:54:59,138 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEPublisherAssociationL2, _objData=UmlObjectData [id=3801, uuid={53A15D60-889F-4c5a-BCF1-89AF1D539B97}, since=null, name=DestMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 21:54:59,162 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEPublisherAssociationL2, _objData=UmlObjectData [id=4362, uuid={1EF8C591-A06A-43cb-8FBF-95E679E109F8}, since=null, name=SrcMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=no, Version=1}] +2024-09-07 21:54:59,199 [main] DEBUG ClassBuilder - Adding GSEPublisherAssociationL2 as subclass of GSEandSVPublisherAssociation +2024-09-07 21:54:59,199 [main] TRACE ClassBuilder - read from EA: GSE::GSEPublisherAssociationL2 +2024-09-07 21:54:59,207 [main] TRACE ClassBuilder - Class GSESubcriberAssociationIP (7 in package GSE) +2024-09-07 21:54:59,346 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubcriberAssociationIP, _objData=UmlObjectData [id=3740, uuid={FFD24620-C094-400d-8BD1-F48524198222}, since=null, name=SrcIpAddr, alias=, stereotype=protocol, visibility=public, txtDescription='Source IP address. .', htmlDescription='

Source IP address. .

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 21:54:59,358 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubcriberAssociationIP, _objData=UmlObjectData [id=3739, uuid={B418786B-EB08-4581-8037-B7C3A6E0311A}, since=null, name=SrcIpAddrType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:59,372 [main] DEBUG ClassBuilder - Adding GSESubcriberAssociationIP as subclass of GSESubscriberAssociation +2024-09-07 21:54:59,372 [main] TRACE ClassBuilder - read from EA: GSE::GSESubcriberAssociationIP +2024-09-07 21:54:59,378 [main] TRACE ClassBuilder - Class GSESubcriberAssociationL2 (8 in package GSE) +2024-09-07 21:54:59,440 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubcriberAssociationL2, _objData=UmlObjectData [id=3742, uuid={556B251D-88A4-4ac8-855E-D537776F059A}, since=null, name=SrcMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP Profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP Profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 21:54:59,455 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubcriberAssociationL2, _objData=UmlObjectData [id=4361, uuid={5024F7E1-FEC6-4125-AF1E-FFC7C29B18D8}, since=null, name=DstMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP Profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP Profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=no, Version=1}] +2024-09-07 21:54:59,470 [main] DEBUG ClassBuilder - Adding GSESubcriberAssociationL2 as subclass of GSESubscriberAssociation +2024-09-07 21:54:59,470 [main] TRACE ClassBuilder - read from EA: GSE::GSESubcriberAssociationL2 +2024-09-07 21:54:59,477 [main] TRACE ClassBuilder - Class GSENotification (9 in package GSE) +2024-09-07 21:54:59,506 [main] DEBUG ClassBuilder - Adding GSENotification as subclass of GSEandSVCommon +2024-09-07 21:54:59,506 [main] TRACE ClassBuilder - read from EA: GSE::GSENotification +2024-09-07 21:54:59,509 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850 Agent, _depth=5, _eaElementID=612, _objData=UmlObjectData [id=213, uuid={82435997-4AFF-4079-AAE7-9E673726C85A}, since=null, name=GSE, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 26, the GSE package includes the IEC 61850 Generic Substation Events (GSE) classes. GSEprovider and GSEAssociation inherit both Security and Protocol Info attributes from the more general classes.', htmlDescription='

As shown in Figure 26, the GSE package includes the IEC 61850 Generic Substation Events (GSE) classes. GSEprovider and GSEAssociation inherit both Security and Protocol Info attributes from the more general classes.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=gse-agent, mibName=IEC-62351-IEC61850-GSE-MIB, mibPrefix=gSE, objectBranchId=4, objectIdentity=gse-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=GSE, _objData=UmlObjectData [id=44, uuid={80FA056A-3318-4339-86E8-7D464BD53A85}, since=null, name=GSE, alias=, stereotype=, visibility=public, txtDescription='GSE classes relationship. GSEProvider and GSEAssociation inherit both Security and Procotol Info attributes from the more general classes.', htmlDescription='

GSE classes relationship. GSEProvider and GSEAssociation inherit both Security and Procotol Info attributes from the more general classes.

'], _portrait=true, _kind=LOGICAL]], _classes=7 +2024-09-07 21:54:59,509 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Application Protocols Agents, _depth=4, _eaElementID=143, _objData=UmlObjectData [id=42, uuid={AD259188-13EE-4de8-ACE5-B251CBE161AE}, since=null, name=IEC61850 Agent, alias=, stereotype=, visibility=public, txtDescription='The IEC 61850 Agent package includes the collection of IEC 61850 protocols monitoring information. It is structured into the following sub-packages: +- ACSI (Abstract communication service interface) +- MMS (Manufacturing Message Specification) +- SV (Sampled Value) +- GSE (Generic Substation Events).', htmlDescription='

The IEC 61850 Agent package includes the collection of IEC 61850 protocols monitoring information. It is structured into the following sub-packages:

  • ACSI (Abstract communication service interface)
  • MMS (Manufacturing Message Specification)
  • SV (Sampled Value)
  • GSE (Generic Substation Events).
'], _modelId=362, _selfDependent=false, 2_taggedValues{objectBranchId=2, objectIdentity=iec61850}, _childPackages=5] +2024-09-07 21:54:59,509 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=604, _objData=UmlObjectData [id=210, uuid={79D95A5F-8421-4ee5-89EC-51F26A20BCDC}, since=null, name=Application Protocols Agents, alias=, stereotype=, visibility=public, txtDescription='This Application Protocols Agents package contains the object descriptions to be provided in order to monitor the behaviour of the application protocols and any possible security information related to application communication layer. +Each protocol package is structured with the goal of exposing summary information on the overall application stack protocol statistics and information, but also of providing specialized statistics and information for each association with remote entities (the application level connections). This is done by reusing the same common or protocol-related objects with the goal of obtaining more coherent structure and semantics of variables.', htmlDescription='

This Application Protocols Agents package contains the object descriptions to be provided in order to monitor the behaviour of the application protocols and any possible security information related to application communication layer.

Each protocol package is structured with the goal of exposing summary information on the overall application stack protocol statistics and information, but also of providing specialized statistics and information for each association with remote entities (the application level connections). This is done by reusing the same common or protocol-related objects with the goal of obtaining more coherent structure and semantics of variables.

'], _modelId=362, _selfDependent=false, 2_taggedValues{objectBranchId=3, objectIdentity=application}, _childPackages=5] +2024-09-07 21:54:59,514 [main] INFO PackageBuilder - processing package Clocks Agent (10) ... +2024-09-07 21:54:59,535 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Clocks Agent, _objData=UmlObjectData [id=46, uuid={9DE08B60-19E1-4c7c-B3D6-82731BE2066A}, since=null, name=Clocks Agent, alias=, stereotype=, visibility=public, txtDescription='Clocks Agent classes', htmlDescription='

Clocks Agent classes

'], _portrait=true, _kind=LOGICAL] +2024-09-07 21:54:59,599 [main] TRACE ClassBuilder - Class Clock (0 in package Clocks Agent) +2024-09-07 21:54:59,710 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=2651, uuid={219E72A9-5B41-4365-A90E-491097F96C10}, since=null, name=clockTamperDetected, alias=, stereotype=security, visibility=public, txtDescription='Timestamp of when a tamper of a clock has been detected', htmlDescription='

Timestamp of when a tamper of a clock has been detected

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:59,721 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=2656, uuid={C95F5CA0-6663-41c7-BAE9-BB32F924F8F1}, since=null, name=LastClockHoldover, alias=, stereotype=health, visibility=public, txtDescription='Indicates the timestamp at which the last Holdover was detected.', htmlDescription='

Indicates the timestamp at which the last Holdover was detected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:59,733 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=2657, uuid={FF50E5F4-F0FB-48b1-B605-B025F27CA0DD}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='When written True, the statistics of clockTamperDetected and LastClockHoldover are set back to a value of zero. The values in the clocks table are not impacted by this reset.', htmlDescription='

When written True, the statistics of clockTamperDetected and LastClockHoldover are set back to a value of zero. The values in the clocks table are not impacted by this reset.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:59,749 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=2650, uuid={106DFE8D-727B-42bf-84CA-4C8E484CB760}, since=null, name=Clocks, alias=, stereotype=table, visibility=public, txtDescription='Table of information regarding the clock sources that are in use.', htmlDescription='

Table of information regarding the clock sources that are in use.

'], _isConst=false, _isStatic=false, _multiplicity=[0..n], _initValue=, _eaTypeId=608, _eaTypeName=ClockEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=cLK, objectIdentity=cLKclockEntry, Version=0}] +2024-09-07 21:54:59,761 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=3631, uuid={31D800F0-35C2-4312-95B7-E3A890982D86}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=944, _eaTypeName=SecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:59,777 [main] DEBUG ClassBuilder - Adding Clock as subclass of AbstractAgent +2024-09-07 21:54:59,777 [main] TRACE ClassBuilder - read from EA: Clocks Agent::Clock +2024-09-07 21:54:59,782 [main] TRACE ClassBuilder - Class ClockEntry (0 in package Clocks Agent) +2024-09-07 21:54:59,964 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2646, uuid={E98C8059-D343-41c5-A9FD-C45F4FA62052}, since=null, name=ClockAccuracy, alias=, stereotype=health, visibility=public, txtDescription='Reports the current expected accuracy of this clock in nanoseconds. A value of -1 indicates that the accuracy is unknown or estimated to be larger than 2147483647 ns.', htmlDescription='

Reports the current expected accuracy of this clock in nanoseconds. A value of -1 indicates that the accuracy is unknown or estimated to be larger than 2147483647 ns.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:54:59,980 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=3085, uuid={50EFFF08-CB85-4033-8EB9-8FC29AACD6DC}, since=null, name=ClockIndex, alias=, stereotype=index, visibility=public, txtDescription='Clock Index', htmlDescription='

Clock Index

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 21:54:59,994 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=3729, uuid={E0CAC256-AD0A-4515-9F48-63353DA71841}, since=null, name=ClockIssue, alias=, stereotype=performance, visibility=public, txtDescription='Reports the presence of any clock issue.', htmlDescription='

Reports the presence of any clock issue.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=776, _eaTypeName=TimSyncIssueType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:55:00,009 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2649, uuid={1591A4AF-7AD8-4720-B04E-7C389735450F}, since=null, name=ClockTamperDetected, alias=, stereotype=security, visibility=public, txtDescription='Clock tamper have been detected.', htmlDescription='

Clock tamper have been detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:55:00,027 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2645, uuid={F98377B8-808A-4705-81F9-99E14B733B97}, since=null, name=TmSrc, alias=, stereotype=performance, visibility=public, txtDescription='Reports the clock sync method.', htmlDescription='

Reports the clock sync method.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=777, _eaTypeName=TimSyncSrcType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:55:00,041 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2655, uuid={EFB862ED-119C-4441-AD7D-3F382A7C0C92}, since=null, name=HoldOver, alias=, stereotype=health, visibility=public, txtDescription='The Holdover flag shall be set True whenever the Time Traceable flag is True and the IED is not receiving a qualified signal from a recognized standard time source. It shall be set False otherwise. Therefore, this flag gives an immediate indication of loss of the time reference signal.', htmlDescription='

The Holdover flag shall be set True whenever the Time Traceable flag is True and the IED is not receiving a qualified signal from a recognized standard time source. It shall be set False otherwise. Therefore, this flag gives an immediate indication of loss of the time reference signal.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:55:00,053 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2648, uuid={A8CB6533-B21C-4986-941B-F8F32BD739E3}, since=null, name=LastSyncOffset, alias=, stereotype=health, visibility=public, txtDescription='Reports the time offset (in seconds) computed from the last qualified synchronization signal received by this clock. This value is used by the clock servo to gradually adjust the clock.', htmlDescription='

Reports the time offset (in seconds) computed from the last qualified synchronization signal received by this clock. This value is used by the clock servo to gradually adjust the clock.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:55:00,065 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2653, uuid={AAB46675-D113-417c-8AB8-E4E268247EF8}, since=null, name=TimeSourceAvailable, alias=, stereotype=health, visibility=public, txtDescription='The Time Source Available flag shall be set True whenever the IED is receiving a qualified signal from a recognized standard time source. If it loses this signal, then after an appropriate period (during which the additional holdover uncertainty is not a significant impairment to performance), the Time Source Available flag shall be set False. The duration of the period after loss of the time signal and negation of the Time Source Available flag depends on the quality of the holdover oscillator and the required time quality, and may be a configurable IED parameter. +This flag may not immediately be set False, because momentary loss of the time signal may not adversely affect IED time quality. The Holdover flag provides an immediate indication of this condition.', htmlDescription='

The Time Source Available flag shall be set True whenever the IED is receiving a qualified signal from a recognized standard time source. If it loses this signal, then after an appropriate period (during which the additional holdover uncertainty is not a significant impairment to performance), the Time Source Available flag shall be set False. The duration of the period after loss of the time signal and negation of the Time Source Available flag depends on the quality of the holdover oscillator and the required time quality, and may be a configurable IED parameter.

This flag may not immediately be set False, because momentary loss of the time signal may not adversely affect IED time quality. The Holdover flag provides an immediate indication of this condition.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:55:00,078 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2652, uuid={ECD9FD6B-5168-426a-BF8F-D2B9B57110B0}, since=null, name=TimeTraceable, alias=, stereotype=health, visibility=public, txtDescription='The Time Traceable flag shall be set False before the IED has received and qualified a signal from a recognized standard time source. Once it has locked to the recognized standard time source and stabilized, the Time Traceable flag shall be set True. The Time Traceable flag shall not be set False again, so long as the IED can estimate its holdover uncertainty. If at some point, perhaps due to an extended holdover interval, the IED no longer can estimate its holdover uncertainty, then the Time Traceable flag shall be set False.', htmlDescription='

The Time Traceable flag shall be set False before the IED has received and qualified a signal from a recognized standard time source. Once it has locked to the recognized standard time source and stabilized, the Time Traceable flag shall be set True. The Time Traceable flag shall not be set False again, so long as the IED can estimate its holdover uncertainty. If at some point, perhaps due to an extended holdover interval, the IED no longer can estimate its holdover uncertainty, then the Time Traceable flag shall be set False.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:55:00,093 [main] DEBUG ClassBuilder - Adding ClockEntry as subclass of AbstractAgent +2024-09-07 21:55:00,093 [main] TRACE ClassBuilder - read from EA: Clocks Agent::ClockEntry +2024-09-07 21:55:00,098 [main] TRACE ClassBuilder - Class SecurityNotification (6 in package Clocks Agent) +2024-09-07 21:55:00,140 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::SecurityNotification, _objData=UmlObjectData [id=3632, uuid={04B87A68-22D2-4882-A4A5-D62CF502F233}, since=null, name=clockTamperDetected, alias=, stereotype=security, visibility=public, txtDescription='Timestamp of when a tamper of a clock has been detected', htmlDescription='

Timestamp of when a tamper of a clock has been detected

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:55:00,154 [main] DEBUG ClassBuilder - Adding SecurityNotification as subclass of AbstractAgent +2024-09-07 21:55:00,154 [main] TRACE ClassBuilder - read from EA: Clocks Agent::SecurityNotification +2024-09-07 21:55:00,158 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=605, _objData=UmlObjectData [id=211, uuid={E6C708DE-BB97-4b5d-94A9-6AD67FCE234E}, since=null, name=Clocks Agent, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 28, the Clocks Agent package includes the clock monitoring classes.', htmlDescription='

As shown in Figure 28, the Clocks Agent package includes the clock monitoring classes.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=clock-agent, mibName=IEC-62351-CLK-MIB, mibPrefix=cLK, objectBranchId=4, objectIdentity=clock-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=Clocks Agent, _objData=UmlObjectData [id=46, uuid={9DE08B60-19E1-4c7c-B3D6-82731BE2066A}, since=null, name=Clocks Agent, alias=, stereotype=, visibility=public, txtDescription='Clocks Agent classes', htmlDescription='

Clocks Agent classes

'], _portrait=true, _kind=LOGICAL]], _classes=3 +2024-09-07 21:55:00,162 [main] INFO PackageBuilder - processing package Interfaces Agent (11) ... +2024-09-07 21:55:00,178 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Interfaces Agent, _objData=UmlObjectData [id=24, uuid={1B416A08-A236-4e2a-9A9E-6A48912EF05F}, since=null, name=Interfaces, alias=, stereotype=, visibility=public, txtDescription='The IED interfaces are depicted.', htmlDescription='

The IED interfaces are depicted.

'], _portrait=true, _kind=LOGICAL] +2024-09-07 21:55:00,328 [main] TRACE ClassBuilder - Class Interface (1 in package Interfaces Agent) +2024-09-07 21:55:00,470 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3319, uuid={6FD1D092-9094-4f03-8B24-7DCD8E2358AD}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='Interface number', htmlDescription='

Interface number

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-07 21:55:00,484 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3320, uuid={6EB13B61-C6AA-4e12-9BC2-177D8DB73982}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the CPU.', htmlDescription='

Description of the CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:55:00,496 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3415, uuid={2252ED03-8326-4d40-957F-9921BA0D74BE}, since=null, name=IntType, alias=, stereotype=identity, visibility=public, txtDescription='Interface type (Wired or Wireless)', htmlDescription='

Interface type (Wired or Wireless)

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=866, _eaTypeName=IntType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:55:00,509 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3323, uuid={5B1D4273-C6BF-44d8-93A8-EE46A1AEBA45}, since=null, name=Operable, alias=, stereotype=health, visibility=public, txtDescription='Indicates that CPU is operable (it can be either online or offline)', htmlDescription='

Indicates that CPU is operable (it can be either online or offline)

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:55:00,522 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3318, uuid={C6769525-A8F5-4599-84AB-E17EB20458CD}, since=null, name=Online, alias=, stereotype=health, visibility=public, txtDescription='Indicate that CPU is online and active', htmlDescription='

Indicate that CPU is online and active

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:55:00,534 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3322, uuid={CF6212A6-1358-4cd8-AC00-7BE9C09A5BFE}, since=null, name=Faulty, alias=, stereotype=health, visibility=public, txtDescription='CPU generated errors', htmlDescription='

CPU generated errors

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:55:00,546 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3321, uuid={AE8F0410-796C-42ec-BA19-BA8D3B558380}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:55:00,612 [main] DEBUG ClassBuilder - Adding Interface as subclass of AbstractAgent +2024-09-07 21:55:00,612 [main] TRACE ClassBuilder - read from EA: Interfaces Agent::Interface +2024-09-07 21:55:00,617 [main] TRACE ClassBuilder - Class Interfaces (2 in package Interfaces Agent) +2024-09-07 21:55:00,988 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3652, uuid={F38DE40F-DC22-441d-BD42-E3990926DFB1}, since=null, name=serAvail, alias=, stereotype=performance, visibility=public, txtDescription='Number of serial interfaces installed on the device', htmlDescription='

Number of serial interfaces installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:55:01,000 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3657, uuid={4E66DA97-6D8F-450a-A00B-ADE0FEE47CE4}, since=null, name=serActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of serial interfaces active on the device', htmlDescription='

Number of serial interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:55:01,012 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3662, uuid={6F91E49F-3A68-4208-A29A-512F23CC10B0}, since=null, name=serFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing serial Interfaces on the device', htmlDescription='

Number of failing serial Interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:55:01,025 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3653, uuid={B23510B0-5513-4f80-9792-63DED4A16F44}, since=null, name=ethAvail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of ethernet Interfaces installed on the device', htmlDescription='

Number of ethernet Interfaces installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:55:01,036 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3658, uuid={6B6B3BCD-0AE0-4c6f-9FB3-472BEC079B13}, since=null, name=ethActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of ethernet interfaces active on the device', htmlDescription='

Number of ethernet interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:55:01,048 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3663, uuid={536CCD9F-B77E-465a-8898-FCD7644820AD}, since=null, name=ethFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing ethernet interfaces on the device', htmlDescription='

Number of failing ethernet interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:55:01,058 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3654, uuid={1C804DCB-08CB-41f0-B6F7-384A70C8C3C8}, since=null, name=algAvail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of analogue Interfaces installed on the device', htmlDescription='

Number of analogue Interfaces installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:55:01,069 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3659, uuid={29FE15BB-45B5-47c2-A74E-3EF574575434}, since=null, name=algActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of analogue interfaces Active on the device', htmlDescription='

Number of analogue interfaces Active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:55:01,080 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3664, uuid={54797821-2674-4526-B44A-9F87D01A6991}, since=null, name=algFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing analogue interfaces on the device', htmlDescription='

Number of failing analogue interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:55:01,091 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3655, uuid={74214291-7A17-4b83-AA3C-A305991D037A}, since=null, name=keyAvail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of keyboard Interface installed on the device', htmlDescription='

Number of keyboard Interface installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:55:01,104 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3660, uuid={AB6E018D-82C3-4524-8D58-58164F10E51B}, since=null, name=keyActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of keyboard interface active on the device', htmlDescription='

Number of keyboard interface active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:55:01,118 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3665, uuid={5F0D156E-80E6-401b-9854-FCA4DCA132BB}, since=null, name=keyFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing keyboard interface on the device', htmlDescription='

Number of failing keyboard interface on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:55:01,133 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3656, uuid={4C0A881D-B242-49b2-A9F8-DF5C3DF79322}, since=null, name=usbAvail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of Universal Serial Bus Interface installed on the device', htmlDescription='

Number of Universal Serial Bus Interface installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:55:01,146 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3661, uuid={6078BDD9-2E54-4b6b-A1B3-CCDBFE46E859}, since=null, name=usbActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of Universal Serial Bus interface active on the device', htmlDescription='

Number of Universal Serial Bus interface active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:55:01,159 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3666, uuid={64E92266-4098-47ce-9874-DBF194F6A4D1}, since=null, name=usbFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing Universal Serial Bus interface on the device', htmlDescription='

Number of failing Universal Serial Bus interface on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:55:01,174 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3283, uuid={6E4426CC-406A-429e-AD6D-1EECA102F2FC}, since=null, name=SER, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of serial interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of serial interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=836, _eaTypeName=SEREntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=sER, objectIdentity=intSERIALEntry, Version=0}] +2024-09-07 21:55:01,190 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3297, uuid={4C6CDBC0-62B0-4881-A810-A6CE56DACD81}, since=null, name=ETH, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of Ethernet interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of Ethernet interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=838, _eaTypeName=ETHEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=eTH, objectIdentity=intETHEntry, Version=0}] +2024-09-07 21:55:01,205 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3298, uuid={8794992C-DE7F-4bf7-83EC-5592356A181C}, since=null, name=USB, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of USB interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of USB interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=840, _eaTypeName=USBEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=uSB, objectIdentity=intUSBEntry, Version=0}] +2024-09-07 21:55:01,220 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3299, uuid={B0761727-4B75-4eb5-82B3-0BB613618FC7}, since=null, name=KEY, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of keyboard interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of keyboard interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=842, _eaTypeName=KEYEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=kEY, objectIdentity=intKEYEntry, Version=0}] +2024-09-07 21:55:01,234 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3328, uuid={D97ACC7A-DBFA-4c92-BC5C-FF187AF4C4EF}, since=null, name=ALG, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of analogue interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of analogue interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=847, _eaTypeName=ALGEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=aLG, objectIdentity=intALGEntry, Version=0}] +2024-09-07 21:55:01,245 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3678, uuid={B5CE0636-5BE9-4566-8B6A-2103E2769BA9}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object', htmlDescription='

State events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=946, _eaTypeName=Notification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:55:01,259 [main] DEBUG ClassBuilder - Adding Interfaces as subclass of AbstractAgent +2024-09-07 21:55:01,259 [main] TRACE ClassBuilder - read from EA: Interfaces Agent::Interfaces +2024-09-07 21:55:01,264 [main] TRACE ClassBuilder - Class ETHEntry (3 in package Interfaces Agent) +2024-09-07 21:55:01,292 [main] DEBUG ClassBuilder - Adding ETHEntry as subclass of Interface +2024-09-07 21:55:01,292 [main] TRACE ClassBuilder - read from EA: Interfaces Agent::ETHEntry +2024-09-07 21:55:01,297 [main] TRACE ClassBuilder - Class KEYEntry (4 in package Interfaces Agent) +2024-09-07 21:55:01,338 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::KEYEntry, _objData=UmlObjectData [id=3327, uuid={6A06B961-6E51-4f13-B73C-32E26BB4F831}, since=null, name=Locked, alias=, stereotype=health, visibility=public, txtDescription='Indicate a locked status for the device keyboard', htmlDescription='

Indicate a locked status for the device keyboard

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:55:01,353 [main] DEBUG ClassBuilder - Adding KEYEntry as subclass of Interface +2024-09-07 21:55:01,353 [main] TRACE ClassBuilder - read from EA: Interfaces Agent::KEYEntry +2024-09-07 21:55:01,357 [main] TRACE ClassBuilder - Class SEREntry (5 in package Interfaces Agent) +2024-09-07 21:55:01,414 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::SEREntry, _objData=UmlObjectData [id=3325, uuid={BD2A2516-013B-4f4c-83C4-6D873D08A614}, since=null, name=ByteIn, alias=, stereotype=protocol, visibility=public, txtDescription='Inbound Byte counter', htmlDescription='

Inbound Byte counter

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:55:01,427 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::SEREntry, _objData=UmlObjectData [id=3326, uuid={DB538A18-009B-4f5a-B7CD-6FDE73E706B1}, since=null, name=ByteOut, alias=, stereotype=protocol, visibility=public, txtDescription='Outbound Byte counter', htmlDescription='

Outbound Byte counter

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:55:01,443 [main] DEBUG ClassBuilder - Adding SEREntry as subclass of Interface +2024-09-07 21:55:01,443 [main] TRACE ClassBuilder - read from EA: Interfaces Agent::SEREntry +2024-09-07 21:55:01,449 [main] TRACE ClassBuilder - Class ALGEntry (6 in package Interfaces Agent) +2024-09-07 21:55:01,480 [main] DEBUG ClassBuilder - Adding ALGEntry as subclass of Interface +2024-09-07 21:55:01,480 [main] TRACE ClassBuilder - read from EA: Interfaces Agent::ALGEntry +2024-09-07 21:55:01,486 [main] TRACE ClassBuilder - Class USBEntry (7 in package Interfaces Agent) +2024-09-07 21:55:01,516 [main] DEBUG ClassBuilder - Adding USBEntry as subclass of Interface +2024-09-07 21:55:01,516 [main] TRACE ClassBuilder - read from EA: Interfaces Agent::USBEntry +2024-09-07 21:55:01,523 [main] TRACE ClassBuilder - Class Notification (8 in package Interfaces Agent) +2024-09-07 21:55:01,707 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3668, uuid={51550105-54C1-4ba6-BC2E-E028F066BD90}, since=null, name=serActive, alias=, stereotype=health, visibility=public, txtDescription='Number of serial Interfaces active on the device', htmlDescription='

Number of serial Interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:55:01,722 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3669, uuid={BE46F414-6E9C-412e-9E70-29513A7DAA18}, since=null, name=serFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing serial Interfaces on the device', htmlDescription='

Number of failing serial Interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:55:01,736 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3670, uuid={78956E09-8F39-4f86-A5CE-B8DBF44C7D6E}, since=null, name=ethActive, alias=, stereotype=health, visibility=public, txtDescription='Number of ethernet interfaces active on the device', htmlDescription='

Number of ethernet interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:55:01,748 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3671, uuid={101FCB6C-9867-4262-8E50-6F057EEAF643}, since=null, name=ethFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing ethernet interfaces on the device', htmlDescription='

Number of failing ethernet interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:55:01,761 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3672, uuid={5171FAC8-436F-42e9-B8E2-0C31C19FAC68}, since=null, name=algActive, alias=, stereotype=health, visibility=public, txtDescription='Number of analogue interfaces active on the device', htmlDescription='

Number of analogue interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:55:01,773 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3673, uuid={9711AA3F-E429-4304-960A-AA9CF2BCC003}, since=null, name=algFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing analogue interfaces on the device', htmlDescription='

Number of failing analogue interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:55:01,785 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3667, uuid={D523B290-8CF4-4630-ADC0-AA4FF4336A1B}, since=null, name=keyActive, alias=, stereotype=health, visibility=public, txtDescription='Number of keyboard interfaces active on the device', htmlDescription='

Number of keyboard interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:55:01,797 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3674, uuid={367C987D-D473-46cd-A5B1-6B3A1D275D36}, since=null, name=keyFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing keyboard interfaces on the device', htmlDescription='

Number of failing keyboard interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:55:01,809 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3675, uuid={0F833AFE-832E-4673-99D3-42CDEFDDF7E0}, since=null, name=usbActive, alias=, stereotype=health, visibility=public, txtDescription='Number of Universal Serial Bus interfaces active on the device', htmlDescription='

Number of Universal Serial Bus interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:55:01,821 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3676, uuid={E957BF40-9F27-4a63-B2DD-16F525F01FA1}, since=null, name=usbFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing Universal Serial Bus interfaces on the device', htmlDescription='

Number of failing Universal Serial Bus interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-07 21:55:01,836 [main] DEBUG ClassBuilder - Adding Notification as subclass of AbstractAgent +2024-09-07 21:55:01,836 [main] TRACE ClassBuilder - read from EA: Interfaces Agent::Notification +2024-09-07 21:55:01,838 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=130, _objData=UmlObjectData [id=40, uuid={971EA18E-FACB-4b68-BAB7-76613251FB91}, since=null, name=Interfaces Agent, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 27, the Interfaces Agent package contains the object descriptions to be provided in order to monitor the IED Interfaces state and behaviour.', htmlDescription='

As shown in Figure 27, the Interfaces Agent package contains the object descriptions to be provided in order to monitor the IED Interfaces state and behaviour.

'], _modelId=362, _selfDependent=false, 5_taggedValues{mibIdentity=interfaces-agent, mibName=IEC-62351-INT-MIB, mibPrefix=int, objectBranchId=5, objectIdentity=interfaces-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=Interfaces Agent, _objData=UmlObjectData [id=24, uuid={1B416A08-A236-4e2a-9A9E-6A48912EF05F}, since=null, name=Interfaces, alias=, stereotype=, visibility=public, txtDescription='The IED interfaces are depicted.', htmlDescription='

The IED interfaces are depicted.

'], _portrait=true, _kind=LOGICAL]], _classes=8 +2024-09-07 21:55:01,838 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=iec62351, _depth=2, _eaElementID=122, _objData=UmlObjectData [id=36, uuid={6739D61A-8BB1-4a90-AC8E-98287558CD65}, since=null, name=part7, alias=, stereotype=, visibility=public, txtDescription='IEC 62351-7 Network Management objects', htmlDescription='

IEC 62351-7 Network Management objects

'], _modelId=362, _selfDependent=false, 4_taggedValues{mibHeaderDescription=Copyright (C) IEC. This version of this MIB module is part + of IEC 57-62351-7-Ed2. + See the IEC 57-62351-7-Ed2 for full legal notices., mibHeaderRevision=202409010900Z, objectBranchId=7, objectIdentity=part7}, _childPackages=10] +2024-09-07 21:55:01,838 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=standard, _depth=1, _eaElementID=982, _objData=UmlObjectData [id=364, uuid={C0098415-D52F-4c38-9D2D-A6B872F36F1B}, since=null, name=iec62351, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=362, _selfDependent=false, 2_taggedValues{objectBranchId=62351, objectIdentity=iec62351}, _childPackages=1] +2024-09-07 21:55:01,839 [main] TRACE PackageBuilder - read PackageBuilder [_kind=TOP, _containingPackage=iso, _depth=0, _eaElementID=981, _objData=UmlObjectData [id=363, uuid={92B28419-A0C7-4a2d-8D51-D7A95DF4FBF7}, since=null, name=standard, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=362, _selfDependent=false, 2_taggedValues{objectBranchId=0, objectIdentity=standard}, _childPackages=1] +2024-09-07 21:55:01,839 [main] TRACE PackageBuilder - read PackageBuilder [_kind=MODEL, _depth=-1, _eaElementID=980, _objData=UmlObjectData [id=362, uuid={3328AB0D-72D5-404d-9405-042619AAC66A}, since=null, name=iso, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=362, _selfDependent=false, _childPackages=1] +2024-09-07 21:55:01,839 [main] INFO Util - time=[0:00:26.969] read model from EA with iteration API +2024-09-07 21:55:01,839 [main] INFO Util - +2024-09-07 21:55:01,839 [main] INFO Util - +2024-09-07 21:55:01,839 [main] INFO Util - ------------------------------------------------ +2024-09-07 21:55:01,839 [main] INFO Util - linking builders... +2024-09-07 21:55:01,840 [main] INFO EaModelBuilder - assigning type to attributes ... +2024-09-07 21:55:01,840 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::BooleanValue, _objData=UmlObjectData [id=2987, uuid={AD4E7F12-52BE-4498-9D56-489F0D36E706}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Represents a boolean value.', htmlDescription='

Represents a boolean value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=636, _eaTypeName=TruthValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1e8b406]. +2024-09-07 21:55:01,840 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::BooleanValueTs, _objData=UmlObjectData [id=2915, uuid={3DFAA603-DD4F-4fb0-B38D-E41B9F5976AD}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-07 21:55:01,841 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::BooleanValueTs, _objData=UmlObjectData [id=2916, uuid={3EDE9EA6-FA52-457e-9F52-95B08337CC6C}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Represents a boolean value.', htmlDescription='

Represents a boolean value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=636, _eaTypeName=TruthValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1e8b406]. +2024-09-07 21:55:01,841 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::CounterTs, _objData=UmlObjectData [id=2921, uuid={41F902F6-723F-4b04-A87D-8CFABFCB21DE}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-07 21:55:01,841 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::CounterTs, _objData=UmlObjectData [id=2922, uuid={CD1BCCAD-7FF8-4fd1-A24D-07EEC8C393A6}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='According to SMI v2, used to specify a value which represents a count. The range is 0 to 4294967295.', htmlDescription='

According to SMI v2, used to specify a value which represents a count. The range is 0 to 4294967295.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=624, _eaTypeName=Counter32 , _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@13f2bb1]. +2024-09-07 21:55:01,841 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::CntRs, _objData=UmlObjectData [id=3004, uuid={CBFD6F89-8B72-4d52-BB3D-1F897706A12D}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-07 21:55:01,841 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::CntRs, _objData=UmlObjectData [id=3003, uuid={8CAFD2C5-0DE7-4308-93B7-D49D6E8065AD}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Boolean', htmlDescription='

Boolean

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=636, _eaTypeName=TruthValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1e8b406]. +2024-09-07 21:55:01,841 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::Floating, _objData=UmlObjectData [id=2937, uuid={C1ACEE33-E3BF-408c-AA52-21345E91BD5B}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='IEEE Standard for Floating-Point Arithmetic, Standard 754-2008', htmlDescription='

IEEE Standard for Floating-Point Arithmetic, Standard 754-2008

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=630, _eaTypeName=Float32TC, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@18a00e3]. +2024-09-07 21:55:01,841 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::FloatingTs, _objData=UmlObjectData [id=2939, uuid={DFBCD799-E7D8-4865-988A-FB02011B6B88}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-07 21:55:01,841 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::FloatingTs, _objData=UmlObjectData [id=2940, uuid={111399D4-DEC9-4f43-A8B9-0E3848228A09}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='IEEE Standard for Floating-Point Arithmetic, Standard 754-2008', htmlDescription='

IEEE Standard for Floating-Point Arithmetic, Standard 754-2008

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=630, _eaTypeName=Float32TC, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@18a00e3]. +2024-09-07 21:55:01,841 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::EntityIndex, _objData=UmlObjectData [id=3724, uuid={5A44C892-8691-42d1-B0D8-D8DE77225CA8}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Integer value 1..2147483647 index', htmlDescription='

Integer value 1..2147483647 index

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=968, _eaTypeName=Unsigned32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@178f375]. +2024-09-07 21:55:01,841 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::Integer, _objData=UmlObjectData [id=2928, uuid={A4296952-0928-44e2-8560-C6B0DC4466A7}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Integer value -2147483648..2147483647 (inclusive) according to SMI v2', htmlDescription='

Integer value -2147483648..2147483647 (inclusive) according to SMI v2

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=173, _eaTypeName=Integer32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1375618]. +2024-09-07 21:55:01,841 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::IntegerTs, _objData=UmlObjectData [id=2930, uuid={B1DF3BAC-B146-48d1-B242-E0EE779A9B56}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-07 21:55:01,841 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::IntegerTs, _objData=UmlObjectData [id=2931, uuid={D8B8C3AD-4B33-445e-9393-31D5B1982D4A}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Integer value -2147483648..2147483647 (inclusive) according to SMI v2', htmlDescription='

Integer value -2147483648..2147483647 (inclusive) according to SMI v2

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=173, _eaTypeName=Integer32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1375618]. +2024-09-07 21:55:01,842 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::InetAddress, _objData=UmlObjectData [id=3017, uuid={8A787CF9-BA07-4486-A4DF-1CF9BA7A3A41}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='A value that represents an Internet address according to IETF RFC 4001.', htmlDescription='

A value that represents an Internet address according to IETF RFC 4001.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=952, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@15be6bb]. +2024-09-07 21:55:01,842 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::InetAddressType, _objData=UmlObjectData [id=3690, uuid={117C0501-377C-4bf4-90D9-77F084F0628D}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Address Type', htmlDescription='

Address Type

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=954, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1fcfece]. +2024-09-07 21:55:01,842 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::MacAddress, _objData=UmlObjectData [id=3019, uuid={212F7F94-30C7-4296-9560-DDE128B43ABE}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='OCTET STRING (SIZE (6)), DISPLAY-HINT "1x:"', htmlDescription='

OCTET STRING (SIZE (6)), DISPLAY-HINT "1x:"

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=966, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@15eef3d]. +2024-09-07 21:55:01,842 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::Selector, _objData=UmlObjectData [id=3015, uuid={2B45785E-70C4-45d5-B68C-37E64794195C}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='For Transport Selector, max length is 8. For Session and Presentation Selector max length is 16.', htmlDescription='

For Transport Selector, max length is 8. For Session and Presentation Selector max length is 16.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=632, _eaTypeName=DisplayString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c4c815]. +2024-09-07 21:55:01,842 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::Timestamp, _objData=UmlObjectData [id=3083, uuid={1090CB92-2A2F-4fef-8659-3BD00578C467}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='The value of year is in network-byte order, fractions of second is as defined in RFC 5905, epoch is defined as Midnight January 1, 1970.', htmlDescription='

The value of year is in network-byte order, fractions of second is as defined in RFC 5905, epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-07 21:55:01,842 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::CharString, _objData=UmlObjectData [id=2989, uuid={E34DC27C-7282-4663-B1EF-D2B160F31A39}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Represents a String.', htmlDescription='

Represents a String.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=632, _eaTypeName=DisplayString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c4c815]. +2024-09-07 21:55:01,842 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::CharStringTs, _objData=UmlObjectData [id=3380, uuid={AF16BFAF-FF80-4499-9DAD-A58391568338}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-07 21:55:01,842 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::CharStringTs, _objData=UmlObjectData [id=3379, uuid={2E8EFCAA-307D-4001-97ED-98DC7A6FCC62}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Represents a String.', htmlDescription='

Represents a String.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=632, _eaTypeName=DisplayString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c4c815]. +2024-09-07 21:55:01,842 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::AppDatStType, _objData=UmlObjectData [id=2991, uuid={20C199C1-6505-4e87-AA5E-7761159CD7E3}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp.', htmlDescription='

Timestamp.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-07 21:55:01,842 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::AppDatStType, _objData=UmlObjectData [id=2992, uuid={A150447F-47CA-40a3-A3E4-20675ECB8425}, since=null, name=Value, alias=, stereotype=enum, visibility=public, txtDescription='AppDatStKind enumeration.', htmlDescription='

AppDatStKind enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=292, _eaTypeName=AppDatStKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@100a15d]. +2024-09-07 21:55:01,842 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::PhyHealthType, _objData=UmlObjectData [id=4116, uuid={BAC3158A-D258-496a-83A5-0E64DFD67679}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp.', htmlDescription='

Timestamp.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-07 21:55:01,842 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::PhyHealthType, _objData=UmlObjectData [id=4117, uuid={D2C2C044-39BB-4b98-BC2D-E3B53A97EDAE}, since=null, name=Value, alias=, stereotype=enum, visibility=public, txtDescription='PhyHealthKind enumeration.', htmlDescription='

PhyHealthKind enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1034, _eaTypeName=PhyHealthKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@34c75a]. +2024-09-07 21:55:01,842 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::ExtType, _objData=UmlObjectData [id=3367, uuid={1245D715-EBD7-4730-A6F9-04F33AE0CF28}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='ExtKind enumeration.', htmlDescription='

ExtKind enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=856, _eaTypeName=ExtKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@16a51ab]. +2024-09-07 21:55:01,843 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::IntType, _objData=UmlObjectData [id=3395, uuid={0A1710BD-B405-499c-8631-29D2BA1F37C0}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='IntKind enumeration', htmlDescription='

IntKind enumeration

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=864, _eaTypeName=IntKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@19a81e8]. +2024-09-07 21:55:01,843 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::EventType, _objData=UmlObjectData [id=3705, uuid={CF22855C-E347-4873-AD54-398449D71764}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp.', htmlDescription='

Timestamp.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-07 21:55:01,843 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::EventType, _objData=UmlObjectData [id=3704, uuid={B8CA2998-8D74-4277-B68D-01EC12299F89}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='EventKind enumeration.', htmlDescription='

EventKind enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=958, _eaTypeName=EventKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@15b5592]. +2024-09-07 21:55:01,843 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::PSPAccType, _objData=UmlObjectData [id=3378, uuid={2DC1C237-EFE6-4e97-A76B-58AA500A8F7B}, since=null, name=Timestamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp.', htmlDescription='

Timestamp.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-07 21:55:01,843 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::PSPAccType, _objData=UmlObjectData [id=3377, uuid={018C1C51-9C40-4e91-A95B-3878F4DD9BD9}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='PSPAccKind Enumeration.', htmlDescription='

PSPAccKind Enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=293, _eaTypeName=PSPAccKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@120ebad]. +2024-09-07 21:55:01,843 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::ProtIdType, _objData=UmlObjectData [id=3011, uuid={7F5D7A4B-5851-45b9-9F48-5C8F08A97218}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='ProtIdKind Enumeration.', htmlDescription='

ProtIdKind Enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=829, _eaTypeName=ProtIdKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@19f379]. +2024-09-07 21:55:01,843 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncIssueType, _objData=UmlObjectData [id=3006, uuid={A23195C8-D6B6-4033-B7CC-798A866B84FA}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='TimSyncIssueKind Enumeration.', htmlDescription='

TimSyncIssueKind Enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=113, _eaTypeName=TimSyncIssueKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@12cc05a]. +2024-09-07 21:55:01,843 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::SecurityProfileType, _objData=UmlObjectData [id=3929, uuid={62BF7B27-EFA1-466c-AED9-06307DBA6999}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='SecurityProfile Enumeration', htmlDescription='

SecurityProfile Enumeration

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1011, _eaTypeName=SecurityProfileKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8a9f61]. +2024-09-07 21:55:01,843 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcType, _objData=UmlObjectData [id=3008, uuid={7D7258A7-E193-49cd-AA63-6F1E9EECA15D}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='TimSyncSrcKind Enumeration', htmlDescription='

TimSyncSrcKind Enumeration

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=117, _eaTypeName=TimSyncSrcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@16905e]. +2024-09-07 21:55:01,843 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::LnkType, _objData=UmlObjectData [id=3010, uuid={9322D17D-875C-49ca-B9CF-0F43B6E41A52}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='LnkType Enumeration.', htmlDescription='

LnkType Enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=644, _eaTypeName=LnkKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@5ca609]. +2024-09-07 21:55:01,843 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2673, uuid={B7336AC3-3490-4d18-9C0A-633A3375B799}, since=null, name=AppDatSt, alias=, stereotype=health, visibility=public, txtDescription='Status of the environment where the device is operated (e.g. Power Supply, Physical Access)', htmlDescription='

Status of the environment where the device is operated (e.g. Power Supply, Physical Access)

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=766, _eaTypeName=AppDatStType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@16d4b5c, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,845 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=596, uuid={F437BD0A-FA9A-4244-BD21-213EDEE71F93}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Attribute that allows a reset of the statistical information.', htmlDescription='

Attribute that allows a reset of the statistical information.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,845 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=3707, uuid={CC877A95-C652-4fe2-AD1D-655296F78214}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,845 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2257, uuid={A7F35D26-4B23-4015-AD0D-EBEFA191D4F4}, since=null, name=PSPBld, alias=, stereotype=security, visibility=public, txtDescription='Building access occurred.', htmlDescription='

Building access occurred.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,845 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2255, uuid={AE5A5B25-3635-4d4e-BB6F-3F373B37D7F7}, since=null, name=PSPIed, alias=, stereotype=security, visibility=public, txtDescription='Indicates that direct access to the IED is in process.', htmlDescription='

Indicates that direct access to the IED is in process.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,845 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2256, uuid={B58DB9CE-5D6A-4836-8A52-322BC774BC87}, since=null, name=PSPPanel, alias=, stereotype=security, visibility=public, txtDescription='Indicates that panel access is occurring to the IED.', htmlDescription='

Indicates that panel access is occurring to the IED.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,845 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2258, uuid={5330F087-530C-45ed-97CC-9AAA63252BF8}, since=null, name=PSPPerimeter, alias=, stereotype=security, visibility=public, txtDescription='Physical perimeter access occurred (e.g. door open), where available.', htmlDescription='

Physical perimeter access occurred (e.g. door open), where available.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,845 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=152, uuid={77B56447-B1AC-4c57-B772-2A438F32F38B}, since=null, name=PSUP, alias=, stereotype=table, visibility=public, txtDescription='A list of power supply entries.', htmlDescription='

A list of power supply entries.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=616, _eaTypeName=PSUPEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@feb3fa, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,845 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2260, uuid={0ABF14FE-A7EB-447e-9066-271C644F8B1A}, since=null, name=PSUPLos, alias=, stereotype=health, visibility=public, txtDescription='Power supply table entry index of the last power supply that was detected as lost.', htmlDescription='

Power supply table entry index of the last power supply that was detected as lost.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,845 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2259, uuid={ECCB9B5A-C082-4a31-BCA7-B115A8600DA0}, since=null, name=PSUPOn, alias=, stereotype=health, visibility=public, txtDescription='Index of the power supply that was the last to come on.', htmlDescription='

Index of the power supply that was the last to come on.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,845 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=3622, uuid={96BB2987-191F-4e60-BCB6-102571495093}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=874, _eaTypeName=SecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@15d3402, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,846 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=3621, uuid={75ECAF5C-210D-48b8-90F9-82576506744C}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object.', htmlDescription='

State events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=903, _eaTypeName=Notification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1565ec2, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,846 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=4501, uuid={7FB27A25-45C1-42c1-9B72-BD8FC786A10A}, since=null, name=PSPRemote, alias=, stereotype=security, visibility=public, txtDescription='Indicates that a current remote access is occurring to the IED.', htmlDescription='

Indicates that a current remote access is occurring to the IED.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,846 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2663, uuid={82D58AB7-4A2D-4041-B53A-D00E492C6C11}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,846 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2671, uuid={6A6A7DC3-B5BB-4553-84C2-44318B449579}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the power supply.', htmlDescription='

Description of the power supply.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,846 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=3725, uuid={27FE83CA-F363-47cc-8B97-92F4711DDAAF}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='Id of the power supply.', htmlDescription='

Id of the power supply.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 21:55:01,846 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2670, uuid={40DB5D25-5E33-4ad3-BB26-D2E165FEBA1F}, since=null, name=Name, alias=, stereotype=identity, visibility=public, txtDescription='Name of the power supply.', htmlDescription='

Name of the power supply.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 21:55:01,846 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2669, uuid={87F74A2E-D615-4bb8-A54D-B421846C7542}, since=null, name=PSUPLos, alias=, stereotype=health, visibility=public, txtDescription='Timestamp of the last detected power loss.', htmlDescription='

Timestamp of the last detected power loss.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,846 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2661, uuid={3F81B85E-2C71-4d22-8767-ADB07D4305CC}, since=null, name=PwrLosCnt, alias=, stereotype=health, visibility=public, txtDescription='Attribute that provides a count of number power losses. Power loss indicates primary supply power loss not shutdown.', htmlDescription='

Attribute that provides a count of number power losses. Power loss indicates primary supply power loss not shutdown.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,846 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2728, uuid={0A17570B-860F-49a1-8208-A78149EDC279}, since=null, name=PwrOn, alias=, stereotype=health, visibility=public, txtDescription='Indicates if the power supply state is currently on and operating appropriately.', htmlDescription='

Indicates if the power supply state is currently on and operating appropriately.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,847 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Notification, _objData=UmlObjectData [id=3463, uuid={99A52BA7-C37A-4d5a-9AF2-69F868DCA056}, since=null, name=PSUPLos, alias=, stereotype=health, visibility=public, txtDescription='Power supply Table Entry Index of the last power supply that was detected as lost.', htmlDescription='

Power supply Table Entry Index of the last power supply that was detected as lost.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e]. +2024-09-07 21:55:01,847 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Notification, _objData=UmlObjectData [id=3462, uuid={CF8ECE95-A139-4efa-B7E5-5EBCC29D609C}, since=null, name=PSUPOn, alias=, stereotype=health, visibility=public, txtDescription='Index of the power supply that was the last to come on.', htmlDescription='

Index of the power supply that was the last to come on.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2]. +2024-09-07 21:55:01,847 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=4039, uuid={F551C4F9-AD27-4ef4-B8FA-5DBAC7238912}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,847 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=3432, uuid={04CE81A5-8629-43c0-8F3E-D93C55B63D0B}, since=null, name=PSPBld, alias=, stereotype=security, visibility=public, txtDescription='Building Access occurred.', htmlDescription='

Building Access occurred.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@fc185]. +2024-09-07 21:55:01,847 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=3430, uuid={8AA6C984-EF4B-41bb-B433-665F0793B107}, since=null, name=PSPIed, alias=, stereotype=security, visibility=public, txtDescription='Indicates that direct access to the IED is in process.', htmlDescription='

Indicates that direct access to the IED is in process.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@fc185]. +2024-09-07 21:55:01,847 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=3431, uuid={CBC52337-714E-4296-BD4F-B152E72DF029}, since=null, name=PSPPanel, alias=, stereotype=security, visibility=public, txtDescription='Indicates that panel access is occurring to the IED.', htmlDescription='

Indicates that panel access is occurring to the IED.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@fc185]. +2024-09-07 21:55:01,847 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=3433, uuid={165E406E-AC48-43d3-A163-7401119B36B9}, since=null, name=PSPPerimeter, alias=, stereotype=security, visibility=public, txtDescription='Perimeter Access occurred.', htmlDescription='

Perimeter Access occurred.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@fc185]. +2024-09-07 21:55:01,847 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=159, uuid={1405DC0D-6A4E-4f7e-AF8C-5E21E5C79F3C}, since=null, name=AtkCnt, alias=, stereotype=security, visibility=public, txtDescription='Attribute that provides the number of cyber- attacks that have been detected.', htmlDescription='

Attribute that provides the number of cyber- attacks that have been detected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,847 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=593, uuid={D7F266B3-90FC-434c-850B-A67888D5FF8C}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,847 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3365, uuid={4F170B51-C2F3-496d-A921-71158D5FAAD4}, since=null, name=ConfigurationCRC, alias=, stereotype=identity, visibility=public, txtDescription='CRC of the last update.', htmlDescription='

CRC of the last update.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,847 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3364, uuid={70C845C3-72FA-4ee2-8C82-B541DEA6F1A6}, since=null, name=ConfigurationVersion, alias=, stereotype=identity, visibility=public, txtDescription='Version of the last uploaded configuration.', htmlDescription='

Version of the last uploaded configuration.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f5e5e3, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,847 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3264, uuid={B2181BC5-C543-4352-AF8C-CF45A0CC6715}, since=null, name=CPU, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of CPU inside the IED.', htmlDescription='

This entry defer to possible multiple instances of CPU inside the IED.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=832, _eaTypeName=CPUEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@193948d, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,847 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=164, uuid={27E657EB-F5E0-46ac-9D03-B88771E3C03E}, since=null, name=CpuUsage, alias=, stereotype=health, visibility=public, txtDescription='Provides an attribute that indicates the percentage of processing resources that is in use. Range is 0 to 100', htmlDescription='

Provides an attribute that indicates the percentage of processing resources that is in use. Range is 0 to 100

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,847 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=165, uuid={331F6C40-DC4F-47e4-A1E7-D03E91A9BAB7}, since=null, name=DataInv, alias=, stereotype=security, visibility=public, txtDescription='Provides a count of the number of attempts to write invalid data, for instance out-of-range data.', htmlDescription='

Provides a count of the number of attempts to write invalid data, for instance out-of-range data.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,848 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=1904, uuid={6044B2D8-9605-461e-A2D5-AF9EF801D394}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='This entry provides a textual description of the IED.', htmlDescription='

This entry provides a textual description of the IED.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,848 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=174, uuid={84B44E91-B83B-48bc-95EB-FCE87A7F7BC1}, since=null, name=ExpCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of expired certificates that are in the certificate storage configured for local use.', htmlDescription='

Indicates the number of expired certificates that are in the certificate storage configured for local use.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,848 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3332, uuid={609144A0-BD56-43ff-AEA6-E96829144EC8}, since=null, name=EXT, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of extension modules inside the IED.', htmlDescription='

This entry defer to possible multiple instances of extension modules inside the IED.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=850, _eaTypeName=EXTEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1604f19, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,848 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3357, uuid={40D5B796-07CF-4261-BF72-7AC36DC3E5C5}, since=null, name=FirmwareVersion, alias=, stereotype=identity, visibility=public, txtDescription='Version of the last uploaded Firmware. Timestamp refers to upload time.', htmlDescription='

Version of the last uploaded Firmware. Timestamp refers to upload time.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f5e5e3, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,848 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=1908, uuid={6FD1E9BC-3801-4721-BC75-1500D754A5F4}, since=null, name=InternalTemp, alias=, stereotype=health, visibility=public, txtDescription='Degree Centigrade measurement of the internal IED Temperature.', htmlDescription='

Degree Centigrade measurement of the internal IED Temperature.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,848 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3493, uuid={A2E2F01C-9202-4d14-B2FC-EE99FA25D64D}, since=null, name=LastCPUFail, alias=, stereotype=health, visibility=public, txtDescription='Index of last failing CPU.', htmlDescription='

Index of last failing CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,848 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3706, uuid={21041DB8-C542-4137-AADE-3D1E8DD5E1D5}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,848 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3494, uuid={7A6C77E3-9BB2-4834-8C72-DAE268A5A789}, since=null, name=LastEXTFail, alias=, stereotype=health, visibility=public, txtDescription='Index of last failing Extension.', htmlDescription='

Index of last failing Extension.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,848 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3492, uuid={4ACA1571-DB99-4447-9A06-033F9EE4348B}, since=null, name=LastSTOREFail, alias=, stereotype=health, visibility=public, txtDescription='Index of last failing Storage.', htmlDescription='

Index of last failing Storage.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,848 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3256, uuid={A9D75A03-5288-48d7-BA55-09F388369D28}, since=null, name=Location, alias=, stereotype=identity, visibility=public, txtDescription='Physical Installation coordinates (geographical and plant location).', htmlDescription='

Physical Installation coordinates (geographical and plant location).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,848 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3257, uuid={B4CF9E53-369A-47de-B31C-9255617C59E5}, since=null, name=Maintainer, alias=, stereotype=identity, visibility=public, txtDescription='Organizational reference for device maintenance.', htmlDescription='

Organizational reference for device maintenance.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,848 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3388, uuid={B008E2FB-21B8-4e33-B720-B440E4B1F49D}, since=null, name=MemTotal, alias=, stereotype=health, visibility=public, txtDescription='Provides an attribute that report the total RAM available in KBytes.', htmlDescription='

Provides an attribute that report the total RAM available in KBytes.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,848 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=1910, uuid={F6C9C372-CCF6-49b4-B39B-B7C633D0987A}, since=null, name=MemUsage, alias=, stereotype=health, visibility=public, txtDescription='Provides an attribute that indicates the percentage of memory that is in use.Range is 0 to 100.', htmlDescription='

Provides an attribute that indicates the percentage of memory that is in use.Range is 0 to 100.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,848 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3255, uuid={E81796A9-2AC8-45d5-A00C-A8FF43E2E704}, since=null, name=MIBVersion, alias=, stereotype=identity, visibility=public, txtDescription='Version of the Management Information Base.', htmlDescription='

Version of the Management Information Base.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,848 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=167, uuid={E0D67C9A-2A09-4694-B58C-55AB9281E1BA}, since=null, name=MisEvCnt, alias=, stereotype=health, visibility=public, txtDescription='Provides an attribute that represents the count of missed events or data.', htmlDescription='

Provides an attribute that represents the count of missed events or data.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,848 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=1913, uuid={FBF2BE7D-376E-477d-BEA6-8FBF4467B076}, since=null, name=Name, alias=, stereotype=identity, visibility=public, txtDescription='Name of IED.', htmlDescription='

Name of IED.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,848 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3718, uuid={472EB367-3A8B-4a9a-82E6-AD7C1825366F}, since=null, name=NearToExpCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of certificates in the certificate storage configured for local use that have exceeded the 70% of validity period.', htmlDescription='

Indicates the number of certificates in the certificate storage configured for local use that have exceeded the 70% of validity period.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,848 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=177, uuid={813425EE-45D4-449f-A1BA-5E8BDECC6309}, since=null, name=NvStore, alias=, stereotype=health, visibility=public, txtDescription='Indicates the global number of kilobytes of storage allocated for local use in all storage areas.', htmlDescription='

Indicates the global number of kilobytes of storage allocated for local use in all storage areas.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,848 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=178, uuid={82009203-F55E-466e-9B62-1933D717E9E0}, since=null, name=NvStoreRem, alias=, stereotype=health, visibility=public, txtDescription='Indicates the percentage of NvStore available for storage.', htmlDescription='

Indicates the percentage of NvStore available for storage.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,849 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=157, uuid={BE9FD31C-2E94-434f-8D2A-69F9BBC26FFD}, since=null, name=PhyHealth, alias=, stereotype=health, visibility=public, txtDescription='General health status of IED hardware and software.', htmlDescription='

General health status of IED hardware and software.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1036, _eaTypeName=PhyHealthType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1efea79, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,849 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=158, uuid={D980F3DA-CEDB-4402-837B-C8480047FB4F}, since=null, name=PhyHealthChgCnt, alias=, stereotype=health, visibility=public, txtDescription='Provides a count of the number of transitions state of PhyHealth Attribute.', htmlDescription='

Provides a count of the number of transitions state of PhyHealth Attribute.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,849 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3437, uuid={DF896F75-F02E-4195-9E06-0E9BB719136B}, since=null, name=RBACDbUpdate, alias=, stereotype=security, visibility=public, txtDescription='Version of the last uploaded RBAC Database.', htmlDescription='

Version of the last uploaded RBAC Database.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f5e5e3, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,849 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=176, uuid={BF4C520F-2A9F-434f-A442-25072A5C8B6B}, since=null, name=RevCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of revoked certificates that are still configured for local use.', htmlDescription='

Indicates the number of revoked certificates that are still configured for local use.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,849 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3479, uuid={8DA6CCEB-ED0C-41ec-B476-C7F33C86B499}, since=null, name=RevCheckFail, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number revocation check failures.', htmlDescription='

Indicates the number revocation check failures.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,849 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3620, uuid={93F9F190-837F-4def-9AE7-693E1E609256}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=912, _eaTypeName=SecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@23a2f9, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,849 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3619, uuid={167D9C3F-D113-4dd9-8CD1-62228F439DF9}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object.', htmlDescription='

State events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=911, _eaTypeName=Notification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c0edeb, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,849 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3387, uuid={2CF43DE1-E31F-4743-B645-CC6617CC65E9}, since=null, name=STORE, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of storage modules inside the IED.', htmlDescription='

This entry defer to possible multiple instances of storage modules inside the IED.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=862, _eaTypeName=STOREEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@17e2f02, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,849 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=4118, uuid={A000D652-2899-4b1e-A269-5B0E74D9612D}, since=null, name=SvcViol, alias=, stereotype=security, visibility=public, txtDescription='Number of service privilege violations (i.e., when the data object that the client wanted to access exists in the access view for the association with that client, but the requested service is not allowed).', htmlDescription='

Number of service privilege violations (i.e., when the data object that the client wanted to access exists in the access view for the association with that client, but the requested service is not allowed).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,849 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3964, uuid={8C00B0E5-5F91-4e94-AAA3-B08EFBB15D6C}, since=null, name=Watchdog, alias=, stereotype=health, visibility=public, txtDescription='This attribute report the count of Watchdog intervention on any component of the IED.', htmlDescription='

This attribute report the count of Watchdog intervention on any component of the IED.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,849 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=2217, uuid={FA50F248-F688-4b0f-B343-E8626A859677}, since=null, name=WrmStrCnt, alias=, stereotype=health, visibility=public, txtDescription='Number of warm starts detected.', htmlDescription='

Number of warm starts detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,849 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3261, uuid={F7E2552A-9E40-4498-9B35-80E4DC7388F3}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,849 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3260, uuid={2A8CCA5F-B153-4fa8-8801-52859B51BF8A}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the CPU.', htmlDescription='

Description of the CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,849 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3262, uuid={6C624EF6-19CC-45c7-8B22-52C6EB105C3F}, since=null, name=Faulty, alias=, stereotype=health, visibility=public, txtDescription='CPU generated errors.', htmlDescription='

CPU generated errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,849 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3259, uuid={18120B8F-8761-4f72-A364-9015D0229D9F}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='CPU number.', htmlDescription='

CPU number.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 21:55:01,849 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3258, uuid={5BACDAAA-B8BD-4635-B1F3-7E2C4CB93292}, since=null, name=Online, alias=, stereotype=health, visibility=public, txtDescription='Indicate that CPU is online and active.', htmlDescription='

Indicate that CPU is online and active.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,849 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3263, uuid={404E8337-84BD-4e87-888C-BC40C8FDFD3D}, since=null, name=Operable, alias=, stereotype=health, visibility=public, txtDescription='Indicates that CPU is operable (it can be either online or offline).', htmlDescription='

Indicates that CPU is operable (it can be either online or offline).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,849 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3389, uuid={D6BA8CB3-C883-4924-9F0F-3E0D3BF3FE2D}, since=null, name=Temperature, alias=, stereotype=health, visibility=public, txtDescription='Temperature of this CPU.', htmlDescription='

Temperature of this CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,849 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3965, uuid={2C004DAE-5C35-4b32-8046-95848FB39988}, since=null, name=Watchdog, alias=, stereotype=health, visibility=public, txtDescription='This attribute report the count of Watchdog intervention on this CPU.', htmlDescription='

This attribute report the count of Watchdog intervention on this CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,850 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3334, uuid={5449D06F-D84C-4247-BFF2-855283FE546B}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='Software PLC ID.', htmlDescription='

Software PLC ID.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 21:55:01,850 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3335, uuid={1FA00718-1A03-4856-BE17-E4C968E2303B}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the Software PLC.', htmlDescription='

Description of the Software PLC.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,850 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3366, uuid={26FC08E1-AE06-447a-A63C-A464EF3B6C5A}, since=null, name=ExtensionType, alias=, stereotype=identity, visibility=public, txtDescription='This attribute defines the type of the extension module.', htmlDescription='

This attribute defines the type of the extension module.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=854, _eaTypeName=ExtType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1081592, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,850 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3416, uuid={25484747-00E6-4e15-9F70-84DADE0F1C1C}, since=null, name=CodeVersion, alias=, stereotype=identity, visibility=public, txtDescription='Version of the last uploaded code.', htmlDescription='

Version of the last uploaded code.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f5e5e3, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,850 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3338, uuid={582D62C0-D628-4ccb-8BBD-32D4EE3B63BD}, since=null, name=Running, alias=, stereotype=health, visibility=public, txtDescription='Indicates that CPU is operable (it can be either online or offline).', htmlDescription='

Indicates that CPU is operable (it can be either online or offline).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,850 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3390, uuid={4838CC42-4D04-48d4-B5E0-73AC845722FF}, since=null, name=Temperature, alias=, stereotype=health, visibility=public, txtDescription='Temperature of this extension.', htmlDescription='

Temperature of this extension.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,850 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3333, uuid={884C8693-44E5-4b48-BBA4-E016ABF8B3C1}, since=null, name=Watchdog, alias=, stereotype=health, visibility=public, txtDescription='This attribute report the count of Watchdog intervention on this IED extension (e.g. software PLC).', htmlDescription='

This attribute report the count of Watchdog intervention on this IED extension (e.g. software PLC).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,850 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3337, uuid={A88DDBF9-7D12-4096-A713-D46EF92F2788}, since=null, name=Errors, alias=, stereotype=health, visibility=public, txtDescription='This attribute reports the PLC software detected errors.', htmlDescription='

This attribute reports the PLC software detected errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,850 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3336, uuid={A600A488-A1C0-4de3-BA57-148F100FC3F6}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,850 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3382, uuid={51E473C6-FD18-455e-AED3-59F394443C8D}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='Storage area ID number.', htmlDescription='

Storage area ID number.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 21:55:01,850 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3383, uuid={064A1F24-744B-46ad-AD7C-A95961E97B13}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the storage area.', htmlDescription='

Description of the storage area.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,851 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3386, uuid={F81C3EA0-A881-4cf8-981C-6AAA51137320}, since=null, name=NvStore, alias=, stereotype=health, visibility=public, txtDescription='Indicates the amount of storage.', htmlDescription='

Indicates the amount of storage.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,852 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3381, uuid={9C3D8C6F-12FE-4f73-AF1F-DE108934866D}, since=null, name=NvStoreRem, alias=, stereotype=health, visibility=public, txtDescription='Indicate remaining storage in this area.', htmlDescription='

Indicate remaining storage in this area.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,852 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3385, uuid={D8309CF9-DAF0-4ee7-A381-888D751BA0AA}, since=null, name=Faulty, alias=, stereotype=health, visibility=public, txtDescription='Storage area fault generated errors.', htmlDescription='

Storage area fault generated errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,852 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3732, uuid={39256EA1-992F-4aca-AF28-01BF33E5DF73}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,852 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3486, uuid={B5FF53A1-E8B9-46ec-BE1B-75F6EC7C48F5}, since=null, name=PhyHealthChgCnt, alias=, stereotype=health, visibility=public, txtDescription='Provides a count of the number of transitions state of PhyHealth Attribute.', htmlDescription='

Provides a count of the number of transitions state of PhyHealth Attribute.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,852 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3497, uuid={C24EC3BA-E07C-4a47-9FC1-D975C6DF5FA9}, since=null, name=InternalTemp, alias=, stereotype=health, visibility=public, txtDescription='Degree Centigrade measurement of the internal IED Temperature.', htmlDescription='

Degree Centigrade measurement of the internal IED Temperature.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,852 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3495, uuid={11B98054-C537-42a0-938C-380F69A2A3F5}, since=null, name=NvStore, alias=, stereotype=health, visibility=public, txtDescription='Indicates the global number of kilobytes of storage allocated for local use in all storage areas.', htmlDescription='

Indicates the global number of kilobytes of storage allocated for local use in all storage areas.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,852 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3496, uuid={5E3EA7C8-15A7-42f6-9FBC-0C995489AB43}, since=null, name=NvStoreRem, alias=, stereotype=health, visibility=public, txtDescription='Indicates the percentage of NvStore available for storage.', htmlDescription='

Indicates the percentage of NvStore available for storage.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,852 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3480, uuid={8334F7D0-DA9C-4f85-8A96-1ACB87744C5B}, since=null, name=PhyHealth, alias=, stereotype=health, visibility=public, txtDescription='General health status of IED hardware and software.', htmlDescription='

General health status of IED hardware and software.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1036, _eaTypeName=PhyHealthType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1efea79, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,852 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3489, uuid={37E2129D-71C5-4030-8530-00D04FA20DDF}, since=null, name=WrmStrCnt, alias=, stereotype=health, visibility=public, txtDescription='Number of warm starts detected.', htmlDescription='

Number of warm starts detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,853 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3502, uuid={E2312704-4F51-465e-8B02-4DFC37D2286B}, since=null, name=AtkCnt, alias=, stereotype=security, visibility=public, txtDescription='Attribute that provides the number of cyber- attacks that have been detected.', htmlDescription='

Attribute that provides the number of cyber- attacks that have been detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,853 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3499, uuid={7B741BD7-BDA8-4148-BDA0-6667E98C3102}, since=null, name=ExpCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of expired certificates that are in the certificate storage configured for local use.', htmlDescription='

Indicates the number of expired certificates that are in the certificate storage configured for local use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,853 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3730, uuid={7029DE89-300D-43cb-B94F-49317EE26061}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,853 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3731, uuid={554C03A1-C7D0-43ea-8541-46609B5191C2}, since=null, name=NearToExpCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of certificates in the certificate storage configured for local use that have exceeded the 70% of validity period.', htmlDescription='

Indicates the number of certificates in the certificate storage configured for local use that have exceeded the 70% of validity period.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,853 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3498, uuid={16D2AFD2-62AE-4dfe-BA94-32B996B33302}, since=null, name=RevCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of revoked certificates that are still configured for local use.', htmlDescription='

Indicates the number of revoked certificates that are still configured for local use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,853 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3500, uuid={406910CA-F346-4649-99A2-5A215611BD7D}, since=null, name=RevCheckFail, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number revocation check failures.', htmlDescription='

Indicates the number revocation check failures.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,853 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4079, uuid={CCA64890-32AD-4a39-BD2E-B115DB6259D5}, since=null, name=IEC62351part3, alias=, stereotype=security, visibility=public, txtDescription='True is security profile in use for this association (IEC 62351-3).', htmlDescription='

True is security profile in use for this association (IEC 62351-3).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@756e4d, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,853 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4087, uuid={0CDF636C-287B-44bf-AF3B-83CBAEB3791B}, since=null, name=Part3ConnectionId, alias=, stereotype=protocol, visibility=public, txtDescription='IEC 62351-3 Transport layer connection id in use for this Association. Meaningful only if IEC62351Part3 is true.', htmlDescription='

IEC 62351-3 Transport layer connection id in use for this Association. Meaningful only if IEC62351Part3 is true.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,853 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4099, uuid={18DFBDB7-B849-4a22-AEBA-4B62D877531D}, since=null, name=TCPHndShTime, alias=, stereotype=performance, visibility=public, txtDescription='Duration of the TCP handshake. Only applicable when the when the application layer has access to the TLS layer.', htmlDescription='

Duration of the TCP handshake. Only applicable when the when the application layer has access to the TLS layer.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,853 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4107, uuid={A9F9F05C-681E-480a-B663-D8EB1E1FE300}, since=null, name=TLSHndTime, alias=, stereotype=performance, visibility=public, txtDescription='TLS Handshake time. Only applicable when the when the application layer has access to the TLS layer.', htmlDescription='

TLS Handshake time. Only applicable when the when the application layer has access to the TLS layer.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,853 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4109, uuid={F7CBA04D-7FEA-47c7-A560-EA06B30C3056}, since=null, name=TLSRenegotiationTime, alias=, stereotype=performance, visibility=public, txtDescription='TLS Renegotiation time. Only applicable when the when the application layer has access to the TLS layer.', htmlDescription='

TLS Renegotiation time. Only applicable when the when the application layer has access to the TLS layer.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,853 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4108, uuid={CBC69A2E-FFEA-4612-9907-B3E519FB4E3F}, since=null, name=TLSResumptionTime, alias=, stereotype=performance, visibility=public, txtDescription='TLS Resumption time. Only applicable when the when the application layer has access to the TLS layer.', htmlDescription='

TLS Resumption time. Only applicable when the when the application layer has access to the TLS layer.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,853 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4106, uuid={EF9560F0-0EC3-4417-883D-96C32AE7803C}, since=null, name=TotalHndTime, alias=, stereotype=performance, visibility=public, txtDescription='Transport + Application Handshake time.', htmlDescription='

Transport + Application Handshake time.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,853 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4105, uuid={BCBEF3C5-946E-42cf-8D1D-CAAC2679E795}, since=null, name=TransportHndTime, alias=, stereotype=performance, visibility=public, txtDescription='Transport layer handshake time. It is equal to TCPHndTime if IEC62351part3 is false, it is equal to TCPHndTime + TLSHndTime if IEC62351part3 is true.', htmlDescription='

Transport layer handshake time. It is equal to TCPHndTime if IEC62351part3 is false, it is equal to TCPHndTime + TLSHndTime if IEC62351part3 is true.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,853 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4460, uuid={7510EED9-2C7E-480d-BD60-571DDC732128}, since=null, name=tlsEarlyDataCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: counts early data in handshake detected but neglected.', htmlDescription='

TLSv1.3: counts early data in handshake detected but neglected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,853 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4454, uuid={4FA3487F-4B3B-477e-99E8-2F5D24C013EF}, since=null, name=tlsDisallowedCipherCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts disallowed cipher suite proposed.', htmlDescription='

Counts disallowed cipher suite proposed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,853 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4461, uuid={F6A6964F-1010-4fc3-9112-0BBBF8244593}, since=null, name=tlsCertSizeMismatchCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts occurrences of endpoint certificate size exceeds limits', htmlDescription='

Counts occurrences of endpoint certificate size exceeds limits

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,854 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4463, uuid={89576E04-2176-4454-8207-BA0A305B9547}, since=null, name=tlsNoCaMatchCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts events of matching RootCA certificate for endpoint certificate validation not available.', htmlDescription='

Counts events of matching RootCA certificate for endpoint certificate validation not available.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,854 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4464, uuid={E1FBC1A2-6D0C-437e-95D2-873497AF44C6}, since=null, name=tlsNoSigAlgoExtCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: Counts events of no signature-algorithm extension included. Fallback to deprecated signature algorithm', htmlDescription='

TLSv1.2: Counts events of no signature-algorithm extension included. Fallback to deprecated signature algorithm

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,854 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4465, uuid={0A95DFE0-8624-4b8a-814E-A12605F19B07}, since=null, name=tlsDepDigAlgCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: Deprecated signature algorithm combination detected counter.', htmlDescription='

TLSv1.2: Deprecated signature algorithm combination detected counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,854 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4466, uuid={B68E613E-EEC5-4696-A841-9EE87D237582}, since=null, name=tlsNoTrustedCertMatchCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times Endpoint certificate not in certificate trust list', htmlDescription='

Counts the times Endpoint certificate not in certificate trust list

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,854 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4467, uuid={614E4EB0-BAA2-4b19-B00A-EA1FF0D8A3BD}, since=null, name=tlsCertRevokedCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times when endpoint certificate not in certificate trust list', htmlDescription='

Counts the times when endpoint certificate not in certificate trust list

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,854 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4468, uuid={1E2A987C-A48F-4eb7-A3BA-2C77F4A68216}, since=null, name=tlsNoCrlCnt, alias=, stereotype=security, visibility=public, txtDescription='Local CRL not accessible counter.', htmlDescription='

Local CRL not accessible counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,854 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4469, uuid={4A915807-5D1C-40af-9AA5-A745061F5DED}, since=null, name=tlsCrlExpCnt, alias=, stereotype=security, visibility=public, txtDescription='CRL expired.counter.', htmlDescription='

CRL expired.counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,854 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4470, uuid={AE06F05B-3CA8-44d1-9A20-5F4997A319FF}, since=null, name=tlsNoEpskModeCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: no support for encrypt-then-MAC counter', htmlDescription='

TLSv1.2: no support for encrypt-then-MAC counter

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,854 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4471, uuid={3E766604-E835-4b5a-A853-08A031D9FE22}, since=null, name=tlsNoEncryptThenMacCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: support of non-ephemeral PSK mode only counter.', htmlDescription='

TLSv1.3: support of non-ephemeral PSK mode only counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,855 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4472, uuid={C8F076B9-538C-423c-BC24-3756EAB54AEE}, since=null, name=tlsOcspResExpCnt, alias=, stereotype=security, visibility=public, txtDescription='OCSP response expired counter.', htmlDescription='

OCSP response expired counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,855 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4473, uuid={808D4C4A-240F-40a2-A84B-7EB7FAF41461}, since=null, name=tlsCertExpCnt, alias=, stereotype=security, visibility=public, txtDescription='Endpoint certificate expired counter.', htmlDescription='

Endpoint certificate expired counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,855 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4474, uuid={03D6BEA0-3F60-4e5b-BB2A-9126ABD1750F}, since=null, name=tlsNoSkUpdateCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: Peer does not perform session key update counter.', htmlDescription='

TLSv1.3: Peer does not perform session key update counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,855 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4475, uuid={264129C9-891C-4677-A001-B283CE215402}, since=null, name=tlsSigAlgMismatchCnt, alias=, stereotype=security, visibility=public, txtDescription='Signature algorithms in received endpoint certificate not supported counter.', htmlDescription='

Signature algorithms in received endpoint certificate not supported counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,855 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4476, uuid={A460A30B-5686-4f92-AFDC-C53C056A3309}, since=null, name=tlsSigVFailedCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times certificate signature could not be verified.', htmlDescription='

Counts the times certificate signature could not be verified.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,855 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4477, uuid={0FF962F9-BFB0-4683-96B5-09E38C57E324}, since=null, name=tlsShortRsaKeyCnt, alias=, stereotype=security, visibility=public, txtDescription='RSA key with key length of less than 2048 bit detected counter.', htmlDescription='

RSA key with key length of less than 2048 bit detected counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,855 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4478, uuid={39629ED0-372D-4c6f-B89B-4C13BA7374C6}, since=null, name=tlsMinKeyCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times RSA key with minimum key length of 1024 bit detected and allowed by configuration', htmlDescription='

Counts the times RSA key with minimum key length of 1024 bit detected and allowed by configuration

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,855 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4479, uuid={947A8F86-CF55-46c2-B517-3D4FA76FBA27}, since=null, name=tlsShortKeyCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times RSA key with insufficient key length (less than 1024 bit) detected..', htmlDescription='

Counts the times RSA key with insufficient key length (less than 1024 bit) detected..

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,855 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4480, uuid={560E07AC-D31D-4807-B518-20E83C9DD1A3}, since=null, name=tlsDepHashCnt, alias=, stereotype=security, visibility=public, txtDescription='Use of deprecated hash algorithm detected counter', htmlDescription='

Use of deprecated hash algorithm detected counter

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,855 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4462, uuid={6EDD77BB-4D13-4937-96A5-231A8441C74A}, since=null, name=tlsNoTrCaMatchSCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: No support of peer signalled trusted CA counter.', htmlDescription='

TLSv1.3: No support of peer signalled trusted CA counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,855 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4455, uuid={15470B2B-1EDC-41c5-AD3A-2E3583BF3A65}, since=null, name=tlsSessionidExpiredFullHsCnt, alias=, stereotype=security, visibility=public, txtDescription='Counter of sessionID expired, Resumption not possible, full TLS handshake done.', htmlDescription='

Counter of sessionID expired, Resumption not possible, full TLS handshake done.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,856 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4458, uuid={2B104C3D-3F3F-4c1a-812A-DC170DBA1CA2}, since=null, name=tlsNoRenegTicket, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: Number of times peer does not use secure renegotiation (session tickets) capability in renegotiated handshake.', htmlDescription='

TLSv1.2: Number of times peer does not use secure renegotiation (session tickets) capability in renegotiated handshake.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,856 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4457, uuid={D1BA2BD4-A79C-4617-9538-493A2956FC91}, since=null, name=tlsNoRenegSigCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: Number of times peer does not signal secure renegotiation support (session tickets) in initial handshake.', htmlDescription='

TLSv1.2: Number of times peer does not signal secure renegotiation support (session tickets) in initial handshake.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,856 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4453, uuid={E290CB99-A7B9-4ee1-AC49-29234D78A42C}, since=null, name=tlsSessionClosedRevCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the TLS session closure due to received revoked endpoint certificate.', htmlDescription='

Counts the TLS session closure due to received revoked endpoint certificate.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,856 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4459, uuid={854B3699-1B9D-4f64-B8B6-56CB2FD90FBB}, since=null, name=tlsNoTrCaMatchScCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: No support of peer signalled trusted CA counter.', htmlDescription='

TLSv1.3: No support of peer signalled trusted CA counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,856 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4450, uuid={8D2D94D8-3C6F-4bda-878C-F54D750FFD27}, since=null, name=tlsHsSuccessCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the TLS session successfully established.', htmlDescription='

Counts the TLS session successfully established.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,856 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4456, uuid={D19394DC-2DE1-403e-9C38-01EE35A0DDFD}, since=null, name=tlsNoReneg, alias=, stereotype=security, visibility=public, txtDescription='Number of times renegotiation interval is exceeded. TLSv1.2 peer does not renegotiate.', htmlDescription='

Number of times renegotiation interval is exceeded. TLSv1.2 peer does not renegotiate.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,856 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4452, uuid={B1BA2AF1-A523-4ca2-979A-38272AF41E2B}, since=null, name=tlsNoLocalCertCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times local endpoint certificate is not available.', htmlDescription='

Number of times local endpoint certificate is not available.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,856 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4447, uuid={3D255C0C-5B4C-4589-A304-5D6FAF7E69A2}, since=null, name=tlsWeakVersionCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times when deprecated TLS version proposed and support of TLS versions prior to TLSv1.2 enabled', htmlDescription='

Counts the times when deprecated TLS version proposed and support of TLS versions prior to TLSv1.2 enabled

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,856 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4449, uuid={4B8CCA5B-77FF-4b70-98D5-168DA947FE99}, since=null, name=tlsVersionChangeCnt, alias=, stereotype=security, visibility=public, txtDescription='Count the TLS version change (potential downgrade) in ongoing session detected.', htmlDescription='

Count the TLS version change (potential downgrade) in ongoing session detected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,856 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4446, uuid={C75A400F-5B38-4bc5-BE6A-48FB4977B686}, since=null, name=tlsDeprecatedVersionCnT, alias=, stereotype=security, visibility=public, txtDescription='Counts the times when a deprecated TLS version is proposed and support of TLS versions prior to TLSv1.2 is disabled.', htmlDescription='

Counts the times when a deprecated TLS version is proposed and support of TLS versions prior to TLSv1.2 is disabled.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,856 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4451, uuid={ACB5D4CD-DBF9-4e86-892D-469DB0082C7E}, since=null, name=tlsNoPeerCertCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times peer did not provide endpoint certificate during the TLS handshake.', htmlDescription='

Number of times peer did not provide endpoint certificate during the TLS handshake.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,856 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4448, uuid={A02762E7-1235-453b-8BB2-6D4E8F705EA1}, since=null, name=tlsDisallowedVersionCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times when disallowed TLS version (prior to TLSv1.0) proposed', htmlDescription='

Counts the times when disallowed TLS version (prior to TLSv1.0) proposed

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,856 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4488, uuid={851472EB-C0E1-4464-B067-F650659846CF}, since=null, name=SessionId, alias=, stereotype=index, visibility=public, txtDescription='Id of the TLS session.', htmlDescription='

Id of the TLS session.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 2_taggedValues{mibindex=yes, Version=1}]. +2024-09-07 21:55:01,857 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4489, uuid={B226702B-AC3E-4f8c-BF07-E3347944EA3A}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,857 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4490, uuid={69D938D2-D561-48eb-8BCF-FA2CFA350C07}, since=null, name=LocAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Local address.', htmlDescription='

Local address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,857 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4491, uuid={6C3E2D7A-F0C0-424b-A05C-4A96E29F65E7}, since=null, name=LocAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Local address type.', htmlDescription='

Local address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,857 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4492, uuid={5C777986-F9FD-4fbf-AAFB-2E087F0B21F7}, since=null, name=RemAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address.', htmlDescription='

Remote address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,857 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4493, uuid={7AB71D12-EB91-421a-B172-48B97B758080}, since=null, name=RemAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address type.', htmlDescription='

Remote address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,857 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4481, uuid={8E8A2B77-DF1B-4f33-B823-499F2C569AB8}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,857 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4482, uuid={CBC3AD5A-6EDA-4a33-95FA-37A565CEA2C1}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered (security or health).', htmlDescription='

Provides the last known event encountered (security or health).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,857 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4483, uuid={4669B65B-F448-43b1-9BB7-DD9A5FEFA04B}, since=null, name=Server, alias=, stereotype=table, visibility=public, txtDescription='Client session (when applicable)', htmlDescription='

Client session (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=1077, _eaTypeName=ServerTLS, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@167c1fc, 2_taggedValues{MIBPrefix=tC, Version=1}]. +2024-09-07 21:55:01,857 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4484, uuid={C3E6C81C-3F3D-4c3b-BABC-8573CD333CF5}, since=null, name=Client, alias=, stereotype=table, visibility=public, txtDescription='Server session (when applicable)', htmlDescription='

Server session (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=1079, _eaTypeName=ClientTLS, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ee9faa, 2_taggedValues{MIBPrefix=tC, Version=1}]. +2024-09-07 21:55:01,857 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4485, uuid={36BE9868-D051-429a-8C15-ADEDE8C4F60A}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object', htmlDescription='

Security events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1078, _eaTypeName=IEC62351part3ed2SecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@38203, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,858 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification, _objData=UmlObjectData [id=4487, uuid={6943E7EC-3F67-43a9-90B0-9BCF7DB4D056}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Description of last event reported', htmlDescription='

Description of last event reported

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,858 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3991, uuid={E3FE31B6-2024-4e98-99E9-12CFAC8AEC6F}, since=null, name=AuthFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Count of the number of authorization failures.', htmlDescription='

Count of the number of authorization failures.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,858 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3992, uuid={F6B00869-D41C-44b6-B4FF-FA092ED078AE}, since=null, name=CtrlPrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of control actions attempted that did not have the correct privilege.', htmlDescription='

Number of control actions attempted that did not have the correct privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,858 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3993, uuid={2CBA5468-91CA-4cf0-BAC3-55AC2EC54FC8}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted.', htmlDescription='

Number PDUs received that could not be decrypted.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,858 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3405, uuid={66AB8F6D-0721-44fb-861C-C607A8498C6F}, since=null, name=ExT0Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T0 (connection establishment).', htmlDescription='

Count the expirations of the 104 time-out T0 (connection establishment).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,858 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3406, uuid={F62CF6E4-A1AF-476b-B35E-F4DE2A4E0591}, since=null, name=ExT1Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T1 (PDU).', htmlDescription='

Count the expirations of the 104 time-out T1 (PDU).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,858 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3407, uuid={8099C0E4-518A-434c-BF60-73BC878C2238}, since=null, name=ExT2Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T2 (ACK).', htmlDescription='

Count the expirations of the 104 time-out T2 (ACK).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,859 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3408, uuid={439C3366-994E-4fbc-A804-80CA3D745D68}, since=null, name=ExT3Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T3 (TEST).', htmlDescription='

Count the expirations of the 104 time-out T3 (TEST).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,859 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3124, uuid={B8936537-E883-4ab6-8A65-47CF971C5BB4}, since=null, name=InDisc, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDUs that were discarded.', htmlDescription='

Number of received PDUs that were discarded.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,859 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3994, uuid={9A232ABD-C751-45bb-8278-552FEB934C4E}, since=null, name=InErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of PDUs received that were in error.', htmlDescription='

Number of PDUs received that were in error.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,859 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3995, uuid={A4886E74-D4DE-4163-BBF4-BFB4DA9AA818}, since=null, name=InOvCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer overflows detected due to incoming communication.', htmlDescription='

Number of buffer overflows detected due to incoming communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,860 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3996, uuid={34EAD965-3EEE-42ae-9A33-371405C3B4A8}, since=null, name=InterPDUTime, alias=, stereotype=protocol, visibility=public, txtDescription='Time between two consecutives PDUs.', htmlDescription='

Time between two consecutives PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,860 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3997, uuid={E65434B6-333B-4677-9DB7-2689202D1C31}, since=null, name=MisPDUCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Provides an attribute that represents the count of missed PDU.', htmlDescription='

Provides an attribute that represents the count of missed PDU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,860 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3141, uuid={3DEDE5E8-C46A-4627-A2B8-FA7B2651B388}, since=null, name=OutErr, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmission errors.', htmlDescription='

Number of transmission errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,860 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3990, uuid={4B336F22-0DBB-425c-9CE9-8A2B3968C18C}, since=null, name=OutUv, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer underflows detected due to outgoing serial communication.', htmlDescription='

Number of buffer underflows detected due to outgoing serial communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,860 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3998, uuid={56C57887-C03F-430b-A3CC-47993296C81A}, since=null, name=PDURTT, alias=, stereotype=protocol, visibility=public, txtDescription='PDU round trip time.', htmlDescription='

PDU round trip time.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,860 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3999, uuid={F9A50D40-7721-4f2f-B450-70B42C8159B7}, since=null, name=PDUSizeFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDU with wrong size.', htmlDescription='

Number of received PDU with wrong size.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,860 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4000, uuid={C3639D7C-0EF8-4ffb-912C-24F7FA06CBA6}, since=null, name=PduTampCnt, alias=, stereotype=security, visibility=public, txtDescription='Provides an attribute that indicates the count of the number of PDUs that have been detected to be tampered with.', htmlDescription='

Provides an attribute that indicates the count of the number of PDUs that have been detected to be tampered with.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,860 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4001, uuid={AD2C395F-15DF-4e49-A4EF-1C8758015811}, since=null, name=PrimaryInterface, alias=, stereotype=protocol, visibility=public, txtDescription='True if the Protocol is running on primary interface (false when backup interface is in use).', htmlDescription='

True if the Protocol is running on primary interface (false when backup interface is in use).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,860 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4002, uuid={15035EBB-A53C-4c7d-BEA7-D6AF668B9A81}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,860 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3403, uuid={D5E66B05-319E-467b-9B20-4D0021DE5B43}, since=null, name=RtxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the number of retransmissions.', htmlDescription='

Count the number of retransmissions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,860 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3123, uuid={5F22267E-6104-41c7-A2B6-BBFFCE828B94}, since=null, name=RxCritical, alias=, stereotype=protocol, visibility=public, txtDescription='Number of critical requests received (according to IEC 62351-5).', htmlDescription='

Number of critical requests received (according to IEC 62351-5).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,860 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4003, uuid={37C50A09-5C52-4612-ACD2-3CA5076E832A}, since=null, name=RxPdu, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDUs (including in error PDUs).', htmlDescription='

Number of received PDUs (including in error PDUs).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,860 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3135, uuid={51629B5F-2B79-4aa4-A704-E8D4D467D6E2}, since=null, name=RxSolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Number of solicited requests received. Only for DNP.', htmlDescription='

Number of solicited requests received. Only for DNP.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,860 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3145, uuid={546FFA93-9BFB-40fc-8F59-570F9FA50834}, since=null, name=RxUnsolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Contains the count of number of unsolicited requests that have been transmitted since the last reset.', htmlDescription='

Contains the count of number of unsolicited requests that have been transmitted since the last reset.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,860 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4004, uuid={219E7530-12EB-4a52-AE1A-536554F0ED28}, since=null, name=SessKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of session key negotiations that failed.', htmlDescription='

Number of session key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,861 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3122, uuid={9760193C-146A-427a-88DE-4FA2BBC2EA9E}, since=null, name=TxCritical, alias=, stereotype=protocol, visibility=public, txtDescription='Number of critical requests transmitted (according to IEC 62351-5)', htmlDescription='

Number of critical requests transmitted (according to IEC 62351-5)

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,861 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4005, uuid={984B7498-8B61-45e0-BE19-6E17EA80D9D0}, since=null, name=TxPdu, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmitted PDUs.', htmlDescription='

Number of transmitted PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,861 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3120, uuid={7F13ABEF-5E7A-4fc2-BE27-AB2E70B1B97A}, since=null, name=TxSolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Number of solicited requests transmitted. Only for DNP.', htmlDescription='

Number of solicited requests transmitted. Only for DNP.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,861 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3121, uuid={76A62C46-9C78-48ff-9770-F2A7BE837E1F}, since=null, name=TxUnsolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Contains the count of number of unsolicited requests that have been transmitted since the last reset.', htmlDescription='

Contains the count of number of unsolicited requests that have been transmitted since the last reset.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,861 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4006, uuid={2AAAEC13-D4BB-4d2a-8461-00DBAE43010B}, since=null, name=UpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations that failed.', htmlDescription='

Number of update key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,861 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=3726, uuid={361DD26C-8F48-46fd-BCE9-B6A3787F5FA6}, since=null, name=AssociationId, alias=, stereotype=index, visibility=public, txtDescription='Id of the association.', htmlDescription='

Id of the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,861 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=3241, uuid={87C4526C-4B22-42d3-BFDD-0EBE86166CDA}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,861 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2417, uuid={FF67FCFB-43B0-4a5a-8A33-52E57E2A1E33}, since=null, name=LocAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Local address.', htmlDescription='

Local address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 21:55:01,861 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=3715, uuid={857943C5-1917-46b9-BAA2-F6DBBE305DDA}, since=null, name=LocAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Local address type.', htmlDescription='

Local address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 21:55:01,861 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2413, uuid={218B44A4-22AA-4a3a-B54C-BC3742A6A951}, since=null, name=ProtID, alias=, stereotype=protocol, visibility=public, txtDescription='Protocol ID in use.', htmlDescription='

Protocol ID in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=780, _eaTypeName=ProtIdType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1c7cbad, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,861 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2412, uuid={2DCFE840-6DFB-49ca-9D60-6F00BBFE9375}, since=null, name=ProviderDesc, alias=, stereotype=identity, visibility=public, txtDescription='Textual description of the provider that is in use.', htmlDescription='

Textual description of the provider that is in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,861 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2411, uuid={739910E5-2234-4d7f-BF07-E2FAC9061548}, since=null, name=ProviderName, alias=, stereotype=identity, visibility=public, txtDescription='Identity of the provider responding as the outstation for this association.', htmlDescription='

Identity of the provider responding as the outstation for this association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,861 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2416, uuid={F1041BDF-E1EE-44c3-B346-5643EFA0E8C7}, since=null, name=RemAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address.', htmlDescription='

Remote address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 3_taggedValues{isIndex=yes, mibIndex=yes, Version=0}]. +2024-09-07 21:55:01,861 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=3714, uuid={25C69ED7-7E01-4316-B15C-28D99CC5FC94}, since=null, name=RemAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address type.', htmlDescription='

Remote address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 3_taggedValues{isIndex=yes, mibIndex=yes, Version=0}]. +2024-09-07 21:55:01,861 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2410, uuid={4F98C052-71F6-44e6-A31C-2A148D61DF91}, since=null, name=TLnkErrCnt, alias=, stereotype=health, visibility=public, txtDescription='Count of communication link errors detected.', htmlDescription='

Count of communication link errors detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,861 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2415, uuid={FED824F2-3E50-44cd-A78C-B816071534FB}, since=null, name=TLnkTyp, alias=, stereotype=protocol, visibility=public, txtDescription='Type of transport being utilized.', htmlDescription='

Type of transport being utilized.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=778, _eaTypeName=LnkType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2cbe0, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,861 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=3248, uuid={37A47CAE-5E15-4947-9824-88474381CEB3}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,861 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=3708, uuid={33EEE0D1-CEBA-4f55-8388-E92B798B5827}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered (security or health).', htmlDescription='

Provides the last known event encountered (security or health).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,862 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=2278, uuid={D8685894-627E-4b6f-B670-3C72CC90DF6B}, since=null, name=Master, alias=, stereotype=table, visibility=public, txtDescription='Client association (when applicable)', htmlDescription='

Client association (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=820, _eaTypeName=MasterAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@be83e4, 2_taggedValues{MIBPrefix=tC, Version=0}]. +2024-09-07 21:55:01,862 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=2287, uuid={364CBB2E-460C-46ce-AC40-149F1C18EAC8}, since=null, name=Outstation, alias=, stereotype=table, visibility=public, txtDescription='Server association (when applicable)', htmlDescription='

Server association (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=821, _eaTypeName=OutstationAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@cb5822, 2_taggedValues{MIBPrefix=tC, Version=0}]. +2024-09-07 21:55:01,862 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=3609, uuid={86E71A83-DD23-44dd-AF05-2C4883970DBA}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object', htmlDescription='

Security events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=914, _eaTypeName=60870andDNPSecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@19e13df, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,862 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=3608, uuid={E3191E3F-E629-4bfd-A8E1-64D78A2B9955}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object', htmlDescription='

State events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=915, _eaTypeName=60870andDNPNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@198378d, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,862 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3519, uuid={8EC7A2E6-FA1E-44bf-871A-8E7A12508F3F}, since=null, name=AuthFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Count of the number of authorization failures.', htmlDescription='

Count of the number of authorization failures.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,862 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3518, uuid={F5BEAE2F-4536-4f9c-9478-CF23E2A2D7C5}, since=null, name=CtrlPrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of control actions attempted that did not have the correct privilege.', htmlDescription='

Number of control actions attempted that did not have the correct privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,862 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3522, uuid={9ABAB39B-C8D2-427c-805D-DD74A37B15BD}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted.', htmlDescription='

Number PDUs received that could not be decrypted.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,862 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=4043, uuid={1BC26E95-9659-4250-87C9-365D73AD44BE}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered (security or health).', htmlDescription='

Provides the last known event encountered (security or health).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,862 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3520, uuid={2018A0E6-F948-40c3-98F5-CC50CFBD7527}, since=null, name=PduTampCnt, alias=, stereotype=security, visibility=public, txtDescription='Provides an attribute that indicates the count of the number of PDUs that have been detected to be tampered with.', htmlDescription='

Provides an attribute that indicates the count of the number of PDUs that have been detected to be tampered with.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,862 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3521, uuid={F0F1CF0B-1E15-4c19-ACB3-B4C1D745383F}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,863 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3523, uuid={22ADAAB8-8A4A-49c6-A261-6FC1E02DFEDB}, since=null, name=SessKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of session key negotiations that failed.', htmlDescription='

Number of session key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,863 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3524, uuid={A9AFB691-7A96-43a3-9FDB-B197827A4D8C}, since=null, name=UpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations that failed.', htmlDescription='

Number of update key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,863 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3526, uuid={6936B8C9-BCD0-46a8-B2A7-4423628A89F6}, since=null, name=InErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of PDUs received that were in error.', htmlDescription='

Number of PDUs received that were in error.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,863 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3528, uuid={97175DF9-326B-40f7-B626-D213159A0A56}, since=null, name=InOvCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer overflows detected due to incoming communication.', htmlDescription='

Number of buffer overflows detected due to incoming communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,863 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3529, uuid={47916BBB-21C9-49df-8C8B-3A9375A29441}, since=null, name=OutUv, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer underflows detected due to outgoing serial communication.', htmlDescription='

Number of buffer underflows detected due to outgoing serial communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,863 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3527, uuid={0C1DB352-F31C-4520-B8BB-43E3CB924F8D}, since=null, name=RxPdu, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDUs.', htmlDescription='

Number of received PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,863 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3525, uuid={B77A1C29-3430-40df-AC7F-D1ACC9E6C035}, since=null, name=TxPdu, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmitted PDUs.', htmlDescription='

Number of transmitted PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,863 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4257, uuid={0C0A0A2C-20C0-4ca9-9856-507B3CF40B66}, since=null, name=ExT0Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T0 (connection establishment).', htmlDescription='

Count the expirations of the 104 time-out T0 (connection establishment).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,863 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4258, uuid={C6845E20-7B2D-4978-A35B-D43715366935}, since=null, name=ExT1Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T1 (PDU).', htmlDescription='

Count the expirations of the 104 time-out T1 (PDU).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,863 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4259, uuid={15711ABC-5E51-4c9e-95EB-71E116D1CBC1}, since=null, name=ExT2Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T2 (ACK).', htmlDescription='

Count the expirations of the 104 time-out T2 (ACK).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,863 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4260, uuid={7A191FB8-98E6-4847-930B-90CB4FC6E61E}, since=null, name=ExT3Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T3 (TEST).', htmlDescription='

Count the expirations of the 104 time-out T3 (TEST).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,863 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4261, uuid={81B43739-99E7-46b8-BB5A-340970E92A28}, since=null, name=DiscPduCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of discarded messages.', htmlDescription='

Number of discarded messages.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,864 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4262, uuid={8165A5DE-3828-4785-9068-BB9EBEA44FF2}, since=null, name=InErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of PDUs received that were in error.', htmlDescription='

Number of PDUs received that were in error.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,864 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4263, uuid={D90D5B9D-8B9D-454d-83A9-E6715E4783C6}, since=null, name=InOvCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer overflows detected due to incoming communication.', htmlDescription='

Number of buffer overflows detected due to incoming communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,864 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4264, uuid={E8C8E34D-3689-46e8-B001-9DE7609677AC}, since=null, name=InterPDUTime, alias=, stereotype=protocol, visibility=public, txtDescription='Time between two consecutives PDUs.', htmlDescription='

Time between two consecutives PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,864 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4265, uuid={49E9D387-25A4-46e7-8CEB-9C75979FB7AF}, since=null, name=MisPDUCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Provides an attribute that represents the count of missed PDU.', htmlDescription='

Provides an attribute that represents the count of missed PDU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,864 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4266, uuid={8845E947-C91C-4a04-B4FE-3AEDC1029732}, since=null, name=OutErr, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmission errors.', htmlDescription='

Number of transmission errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,864 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4267, uuid={CCD6A7C5-F0B4-4402-AE88-B35035615DC3}, since=null, name=OutUv, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer underflows detected due to outgoing serial communication.', htmlDescription='

Number of buffer underflows detected due to outgoing serial communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,864 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4269, uuid={378D6C1B-B55C-457c-BD03-A017415E19C4}, since=null, name=PDUSizeFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDU with wrong size.', htmlDescription='

Number of received PDU with wrong size.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,864 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4273, uuid={8E51A58B-0043-4528-B1BC-BC2B4CC4E59C}, since=null, name=RtxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the number of retransmissions.', htmlDescription='

Count the number of retransmissions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,864 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4275, uuid={9768D1CC-F452-448b-B8DF-26922CB00ED7}, since=null, name=RxPduCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDUs (including PDUs with errors).', htmlDescription='

Number of received PDUs (including PDUs with errors).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,864 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4276, uuid={00CBF4DB-7CDE-4393-BCCF-90A5601FF89C}, since=null, name=RxSolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Number of solicited requests received. Only for DNP.', htmlDescription='

Number of solicited requests received. Only for DNP.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,864 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4277, uuid={A480B5CE-C799-40b2-9A6C-05A2B643932E}, since=null, name=RxUnsolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Contains the count of number of unsolicited requests that have been transmitted since the last reset.', htmlDescription='

Contains the count of number of unsolicited requests that have been transmitted since the last reset.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,864 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4280, uuid={7A2A5BFA-FCB8-44a4-A4CF-442CC8A9FB0E}, since=null, name=TxPduCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmitted PDUs.', htmlDescription='

Number of transmitted PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,864 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4281, uuid={BF7B41CE-7B62-4a5f-A9F6-D1E8A5A4952E}, since=null, name=TxSolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Number of solicited requests transmitted. Only for DNP.', htmlDescription='

Number of solicited requests transmitted. Only for DNP.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,864 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4282, uuid={BB6FDD4B-6837-4d88-B268-0D09301311FD}, since=null, name=TxUnsolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Contains the count of number of unsolicited requests that have been transmitted since the last reset.', htmlDescription='

Contains the count of number of unsolicited requests that have been transmitted since the last reset.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,865 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4306, uuid={85A6FA13-2677-4c99-BC12-DD878801CFC4}, since=null, name=StAsProcScsCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Station Association procedure has been successfully performed.', htmlDescription='

Number of times the Station Association procedure has been successfully performed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,865 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4307, uuid={F82373BD-CE1D-4a57-B13C-413810F179B0}, since=null, name=StAsProcFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Station Association procedure has failed.', htmlDescription='

Number of times the Station Association procedure has failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,865 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4308, uuid={69BDB5BC-DE98-4195-8110-202AD93E7AFC}, since=null, name=SKeyProcScsCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Session Key was changed successfully.', htmlDescription='

Number of times the Session Key was changed successfully.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,865 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4336, uuid={8BE551FF-4A0A-45b6-A0A0-D051150BF74D}, since=null, name=KeyAutnAlgSupFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Data authentication algorithm support failures. Controlled station only.', htmlDescription='

Number of Data authentication algorithm support failures. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,866 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4337, uuid={60FED222-F3AD-4f4c-A733-DE4950C990C2}, since=null, name=SKeyWrapAlgSupFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of key wrap algorithm support failures. Controlled station only.', htmlDescription='

Number of key wrap algorithm support failures. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,866 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4338, uuid={C2B0C0DF-C9DD-4aef-932E-B016DA2E6276}, since=null, name=DataProtAlgSupFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Data authentication algorithm support failures. Controlled station only.', htmlDescription='

Number of Data authentication algorithm support failures. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,866 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4339, uuid={55BE76A2-DF93-45de-9D84-4EE282ACC41B}, since=null, name=SKeyAutnErrCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Key authentication errors.', htmlDescription='

Number of Key authentication errors.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,866 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4340, uuid={97FE21BE-F20E-4b5f-9E7C-62B9BF57A4C7}, since=null, name=DataAutnErrCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of non-authentic Secure Data messages received.', htmlDescription='

Number of non-authentic Secure Data messages received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,866 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4341, uuid={303256CB-76CD-4b39-8D6B-6B5F7E4718DC}, since=null, name=UnxpMsgErrCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of unexpected messages received.', htmlDescription='

Number of unexpected messages received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,866 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4342, uuid={7B618961-D677-4bf9-83FB-40700B9BA9CC}, since=null, name=MaxReplyToutCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Max Reply Timeouts threshold was reached. Controlling station only.', htmlDescription='

Number of times the Max Reply Timeouts threshold was reached. Controlling station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,866 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4343, uuid={D8D3268F-F4C4-49d7-AB23-7946C1CEA6D1}, since=null, name=NodeAutrFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of unauthorized communication attempts.', htmlDescription='

Number of unauthorized communication attempts.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,866 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4344, uuid={23FA293A-4F87-4c7c-B4E2-6B3955B5ED61}, since=null, name=CtrlOperAutrFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of unauthorized operations. Controlled station only.', htmlDescription='

Number of unauthorized operations. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,866 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4345, uuid={6193E983-C056-491a-B7A3-EBE58355374C}, since=null, name=RemCertCheckFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of invalid certificates received.', htmlDescription='

Number of invalid certificates received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,866 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4346, uuid={46BA0F58-A6A4-4d23-9157-B07A5643B284}, since=null, name=RemCertExpiredCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the remote station's certificate expired.', htmlDescription='

Number of times the remote station's certificate expired.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,866 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4347, uuid={C54FF7FA-520C-4d4f-A4A1-B7E88C041568}, since=null, name=RemCertRevokedCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the remote station's certificate has been revoked.', htmlDescription='

Number of times the remote station's certificate has been revoked.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,866 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4348, uuid={95955856-F76D-4e05-B055-4FF8029E1A9D}, since=null, name=LocCertExpiredCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the local station's certificate expired.', htmlDescription='

Number of times the local station's certificate expired.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,866 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4349, uuid={DE7B5995-13C2-44c8-8579-6CEF37D201AF}, since=null, name=LocCertRevokedCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the local station's certificate has been revoked.', htmlDescription='

Number of times the local station's certificate has been revoked.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,866 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4350, uuid={2223C6EC-FBAE-4b91-8FF2-4407C5DFFF36}, since=null, name=KeysInvRemCertRevCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Cryptographic Keys were invalidated due to remote station's certificate revocation.', htmlDescription='

Number of times the Cryptographic Keys were invalidated due to remote station's certificate revocation.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,866 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4351, uuid={5DCACFEC-13BF-47c0-88D7-950B26D9DBBB}, since=null, name=KeysInvLocCertRevCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Cryptographic Keys were invalidated due to local station's certificate revocation.', htmlDescription='

Number of times the Cryptographic Keys were invalidated due to local station's certificate revocation.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,866 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4352, uuid={4A474D59-99BF-495e-BB9D-C3E096F5F83B}, since=null, name=DataAutnScsCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of authentic Secure Data messages received.', htmlDescription='

Number of authentic Secure Data messages received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,866 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4353, uuid={7F7D3F88-910D-4dae-B5B1-DED2E46A51C7}, since=null, name=ReplyToutCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Reply Timeouts. Controlling station only.', htmlDescription='

Number of Reply Timeouts. Controlling station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,866 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4354, uuid={E6FD44A6-C9CE-45d6-BA4A-3EF7DECB1691}, since=null, name=RequestToutCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Request Timeouts. Controlled station only.', htmlDescription='

Number of Request Timeouts. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,866 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4355, uuid={65E3DDC2-B3AC-4c86-8AF6-39C43114EC3C}, since=null, name=SKeyInvUseCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Session Key was invalidated due to Max Session Key Usage Count. Controlled station only.', htmlDescription='

Number of times the Session Key was invalidated due to Max Session Key Usage Count. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,867 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4356, uuid={3C26B695-A1A0-44c3-BE08-C75CA78940DA}, since=null, name=SKeyInvToutCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Session Keys were invalidated due to Max Session Key Usage Timeout. Controlled station only.', htmlDescription='

Number of times the Session Keys were invalidated due to Max Session Key Usage Timeout. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,867 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4357, uuid={B3A60D84-37C0-40f2-9019-17B8C45C778E}, since=null, name=SKeyProcFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Session Key Change failures.', htmlDescription='

Number of Session Key Change failures.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,867 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4335, uuid={90633EE5-94E7-44d3-B98C-08140BCBFCF1}, since=null, name=ProtInfoErrCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of protocol information errors. Controlled station only.', htmlDescription='

Number of protocol information errors. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,867 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4284, uuid={D3B5EC3D-3991-40b8-85B6-2AFB3206637A}, since=null, name=AssociationId, alias=, stereotype=index, visibility=public, txtDescription='Id of the association.', htmlDescription='

Id of the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,867 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4285, uuid={DB5A65D6-2349-4a56-A200-129882572A95}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,867 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4286, uuid={FABF76A8-43C1-4be2-89C5-4C3B7F18604B}, since=null, name=LocAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Local address.', htmlDescription='

Local address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 21:55:01,867 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4287, uuid={F933B36B-EE52-4922-9AA4-F0CB5A55F9CE}, since=null, name=LocAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Local address type.', htmlDescription='

Local address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 21:55:01,867 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4288, uuid={4EDE24F7-C4DB-4078-926A-3518CCBB1D8F}, since=null, name=ProtID, alias=, stereotype=protocol, visibility=public, txtDescription='Protocol ID in use.', htmlDescription='

Protocol ID in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=780, _eaTypeName=ProtIdType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1c7cbad, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,867 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4289, uuid={8CE59398-E353-464a-9B25-03588802C32E}, since=null, name=ProviderDesc, alias=, stereotype=identity, visibility=public, txtDescription='Textual description of the provider that is in use.', htmlDescription='

Textual description of the provider that is in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,867 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4290, uuid={BD1C65C9-07DF-4192-8713-A93BC3E1C050}, since=null, name=ProviderName, alias=, stereotype=identity, visibility=public, txtDescription='Identity of the provider responding as the outstation for this association.', htmlDescription='

Identity of the provider responding as the outstation for this association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,867 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4291, uuid={BEB1F3A7-96E9-4a7f-B4CE-78A311245A60}, since=null, name=RemAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address.', htmlDescription='

Remote address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 3_taggedValues{isIndex=yes, mibIndex=yes, Version=0}]. +2024-09-07 21:55:01,867 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4292, uuid={59810D47-4220-40e1-A018-FE80613740BC}, since=null, name=RemAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address type.', htmlDescription='

Remote address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 3_taggedValues{isIndex=yes, mibIndex=yes, Version=0}]. +2024-09-07 21:55:01,867 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4293, uuid={9AE7823D-F26B-48f8-A955-DA056C8C0F32}, since=null, name=TLnkErrCnt, alias=, stereotype=health, visibility=public, txtDescription='Count of communication link errors detected.', htmlDescription='

Count of communication link errors detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,867 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4294, uuid={FFAF85C1-58F9-4330-80FE-18A5100B3EE7}, since=null, name=TLnkTyp, alias=, stereotype=protocol, visibility=public, txtDescription='Type of transport being utilized.', htmlDescription='

Type of transport being utilized.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=778, _eaTypeName=LnkType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2cbe0, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,867 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4295, uuid={E543F5FE-D414-4517-9CFA-17AF02358984}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,867 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4296, uuid={A601B46C-5CB2-4663-BBDD-6B075EA07FE8}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered (security or health).', htmlDescription='

Provides the last known event encountered (security or health).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,868 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4297, uuid={DD17EC1E-C1D2-444e-BC3B-65A68EB1768E}, since=null, name=Master, alias=, stereotype=table, visibility=public, txtDescription='Client association (when applicable)', htmlDescription='

Client association (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=1057, _eaTypeName=MasterAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@4edc67, 2_taggedValues{MIBPrefix=tC, Version=0}]. +2024-09-07 21:55:01,868 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4298, uuid={927B1068-7146-4ea9-B50A-FD00B14D1747}, since=null, name=Outstation, alias=, stereotype=table, visibility=public, txtDescription='Server association (when applicable)', htmlDescription='

Server association (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=1056, _eaTypeName=OutstationAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@acaea5, 2_taggedValues{MIBPrefix=tC, Version=0}]. +2024-09-07 21:55:01,868 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4299, uuid={E4361517-7300-4db5-A392-69EAD372A4E2}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object', htmlDescription='

Security events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1055, _eaTypeName=60870andDNPSecurityNotificationEd2, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d56d67, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,868 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4300, uuid={240DF754-7E5E-4226-B4F4-F1DDBE6652EB}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object', htmlDescription='

State events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1061, _eaTypeName=60870andDNPNotificationEd2, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@18355a8, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,868 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2, _objData=UmlObjectData [id=4358, uuid={6AA445FA-BC7C-4384-8725-306C37B37564}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,868 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2, _objData=UmlObjectData [id=4360, uuid={60B53F7E-A6F1-449b-8917-E860F3F35ECB}, since=null, name=LastEvent, alias=, stereotype=protocol, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,868 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1254, uuid={60676AFB-06AF-480c-86DC-DDF92723390B}, since=null, name=assocPoolMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number of client/server associations.', htmlDescription='

Maximum number of client/server associations.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,868 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1255, uuid={B21687C2-9C22-4c8f-A435-15A69F7147D6}, since=null, name=assocPoolUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of client/server associations active.', htmlDescription='

Number of client/server associations active.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,868 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1278, uuid={6CA26B83-F728-4e94-9E7E-89E5998C3308}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,868 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=3931, uuid={75069142-E376-4865-9020-9924B1C82527}, since=null, name=CtrlPrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of control actions attempted that did not have the correct privilege.', htmlDescription='

Number of control actions attempted that did not have the correct privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,869 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1262, uuid={44D0F3A5-606C-4650-ABCB-FE16EEE777E3}, since=null, name=gsePubMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number GSE Publications supported.', htmlDescription='

Maximum number GSE Publications supported.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,869 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=2263, uuid={1C2B216E-5A48-41c9-8A95-E49BCC60C316}, since=null, name=gsePubUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of active GSE Publications.', htmlDescription='

Number of active GSE Publications.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,869 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1264, uuid={B2FDE11B-6BA3-4051-B3BD-15152FB16FED}, since=null, name=gseSubMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number of GSE Subscriptions.', htmlDescription='

Maximum number of GSE Subscriptions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,869 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1263, uuid={1842AD96-E339-455f-9BC0-7F98C8F31CEC}, since=null, name=gseSubUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of active GSE Subscriptions.', htmlDescription='

Number of active GSE Subscriptions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,869 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=3709, uuid={014B3324-A84F-455f-957B-1420E50D5C59}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,869 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=3930, uuid={F5A04750-F784-4c0c-AB12-2298DE62BB99}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,869 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1271, uuid={A10D2F0C-3A4C-4aa4-B832-655CEBF8F43C}, since=null, name=RemoteEstAssocCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count of the number of currently active associations that were established through the ACSI associate response.', htmlDescription='

Count of the number of currently active associations that were established through the ACSI associate response.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,869 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=3932, uuid={7EF57F32-F44A-4126-9201-8EFAD41F12D4}, since=null, name=AcsCtlFail, alias=, stereotype=security, visibility=public, txtDescription='Number of access control failures detected (i.e., when a data object that the client wanted to access exists in the server, but based on the access view of the association with that client, an access to the data object was refused).', htmlDescription='

Number of access control failures detected (i.e., when a data object that the client wanted to access exists in the server, but based on the access view of the association with that client, an access to the data object was refused).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,869 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1282, uuid={2E06924F-F7EB-44a7-A1D2-2428322A0892}, since=null, name=svPubMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number SV publications supported.', htmlDescription='

Maximum number SV publications supported.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,869 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1281, uuid={D6CCDFE9-6558-4cd0-B508-8BA15852D950}, since=null, name=svPubUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of active SV publications.', htmlDescription='

Number of active SV publications.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,869 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1284, uuid={769A7A31-DA16-43a0-A340-14FF723B8636}, since=null, name=svSubMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number SV subscriptions supported.', htmlDescription='

Maximum number SV subscriptions supported.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,869 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1283, uuid={40270792-85F3-4361-850B-A5F29E1B75C0}, since=null, name=svSubUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of active SV subscriptions.', htmlDescription='

Number of active SV subscriptions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,869 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=4122, uuid={B070617B-7900-42b1-8DA7-F591BA2099FA}, since=null, name=ErrorRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of error PDU that have been received including: +- Confirmed-ErrorPDU (only for client) +- Cancel-ErrorPDU (only for client) +- Initiate-ErrorPDU +- Conclude-ErrorPDU.', htmlDescription='

Number of error PDU that have been received including:

  • Confirmed-ErrorPDU (only for client)
  • Cancel-ErrorPDU (only for client)
  • Initiate-ErrorPDU
  • Conclude-ErrorPDU.
'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,870 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=4123, uuid={650B0D6F-9766-4bae-9182-5EC830CB64E3}, since=null, name=ErrorTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of error PDU that have been sent including: +- Confirmed-ErrorPDU (only for server) +- Cancel-ErrorPDU (only for server) +- Initiate-ErrorPDU +- Conclude-ErrorPDU.', htmlDescription='

Number of error PDU that have been sent including:

  • Confirmed-ErrorPDU (only for server)
  • Cancel-ErrorPDU (only for server)
  • Initiate-ErrorPDU
  • Conclude-ErrorPDU.
'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,870 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3214, uuid={30ED064F-399A-4e3a-97D2-D106F082CF4F}, since=null, name=InfoRptRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of MMS Information Reports that have been received.', htmlDescription='

Number of MMS Information Reports that have been received.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,870 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=4120, uuid={CEC51410-D5D9-4150-B1C4-AA691F453D23}, since=null, name=InfoRptTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of MMS Information Reports that have been sent.', htmlDescription='

Number of MMS Information Reports that have been sent.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,870 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3969, uuid={94722C63-A68B-4460-A0BA-93F19272E206}, since=null, name=MisCmdAckCnt, alias=, stereotype=security, visibility=public, txtDescription='Provides an attribute that indicates the count of the number of MMS request that have not been acknowledged.', htmlDescription='

Provides an attribute that indicates the count of the number of MMS request that have not been acknowledged.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,870 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3414, uuid={8F4B6AF1-5A4A-47a1-A365-8963A1FAE78F}, since=null, name=MMSProExchTime, alias=, stereotype=performance, visibility=public, txtDescription='MMS Profile exchange duration (seconds). MMS profile is meant as Logical Devices, Logical Nodes and Dataset definition are exchanged.', htmlDescription='

MMS Profile exchange duration (seconds). MMS profile is meant as Logical Devices, Logical Nodes and Dataset definition are exchanged.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,871 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3211, uuid={6C0EA55B-1ACA-4a3a-9068-E9C2CEC96B9D}, since=null, name=RejectRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of RejectPDU received.', htmlDescription='

Number of RejectPDU received.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,871 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3212, uuid={C8554D1E-C163-4286-96BB-E26046672513}, since=null, name=RejectTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of RejectPDU sent.', htmlDescription='

Number of RejectPDU sent.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,871 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3208, uuid={C94BBBC3-1104-42b0-B156-E80FE61CBDB8}, since=null, name=ReqRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of request PDU that have been received including: +- Confirmed-RequestPDU (only for server) +- Cancel-RequestPDU (only for server) +- Initiate-RequestPDU +- Conclude-RequestPDU.', htmlDescription='

Number of request PDU that have been received including:

  • Confirmed-RequestPDU (only for server)
  • Cancel-RequestPDU (only for server)
  • Initiate-RequestPDU
  • Conclude-RequestPDU.
'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,872 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3206, uuid={023D9D84-38BC-4c86-B9CC-78085AC2F869}, since=null, name=ReqTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of request PDU that have been sent including: +- Confirmed-RequestPDU (only for client) +- Cancel-RequestPDU (only for client) +- Initiate-RequestPDU +- Conclude-RequestPDU.', htmlDescription='

Number of request PDU that have been sent including:

  • Confirmed-RequestPDU (only for client)
  • Cancel-RequestPDU (only for client)
  • Initiate-RequestPDU
  • Conclude-RequestPDU.
'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,872 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3210, uuid={B07FEDC7-72A1-43b4-9CA9-AEDC8CE77EAF}, since=null, name=RespRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of response PDU that have been received including: +- Confirmed-ResponsePDU (only for client) +- Cancel-ResponsePDU (only for client) +- Initiate-ResponsePDU +- Conclude-ResponsePDU +.', htmlDescription='

Number of response PDU that have been received including:

  • Confirmed-ResponsePDU (only for client)
  • Cancel-ResponsePDU (only for client)
  • Initiate-ResponsePDU
  • Conclude-ResponsePDU

.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,872 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3209, uuid={06689B60-CBF2-4d45-8B5A-FB998997F62F}, since=null, name=RespTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of response PDU that have been sent including: +- Confirmed-ResponsePDU (only for server) +- Cancel-ResponsePDU (only for server) +- Initiate-ResponsePDU +- Conclude-ResponsePDU..', htmlDescription='

Number of response PDU that have been sent including:

  • Confirmed-ResponsePDU (only for server)
  • Cancel-ResponsePDU (only for server)
  • Initiate-ResponsePDU
  • Conclude-ResponsePDU..
'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,872 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3935, uuid={1F695097-A4ED-4e85-94FE-44B50CFE99F1}, since=null, name=SessKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of session key negotiations that failed.', htmlDescription='

Number of session key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,872 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3918, uuid={7DB85E2A-0EB8-4226-BEBB-924AB496EB36}, since=null, name=AProfileDecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted within A-Profile session.', htmlDescription='

Number PDUs received that could not be decrypted within A-Profile session.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,872 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3938, uuid={A3E432FD-BDD0-4ccf-9233-0A226162B425}, since=null, name=AuthFail, alias=, stereotype=security, visibility=public, txtDescription='Count of the number of authorization failures.', htmlDescription='

Count of the number of authorization failures.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,872 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3245, uuid={D1866C6F-051F-404e-9A2B-AC1D6D44D3FC}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,872 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2831, uuid={2F166DD9-DE35-44b6-91DE-78EA3A9D0652}, since=null, name=ConnFailInCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of incoming Initiate-requests that have been refused.', htmlDescription='

Number of incoming Initiate-requests that have been refused.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,872 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2832, uuid={BA3D3302-5D14-40f7-9AA3-145CCB5F1361}, since=null, name=ConnFailOutCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of outgoing Initiate-requests that have been refused.', htmlDescription='

Number of outgoing Initiate-requests that have been refused.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,872 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3936, uuid={86BF3330-EB9C-4633-AB27-D7612CE8D05C}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted.', htmlDescription='

Number PDUs received that could not be decrypted.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,873 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3710, uuid={0163C656-8AA1-4c67-82E4-258002A53DDE}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,873 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2803, uuid={DEAB3F8B-E3E4-4664-B8B6-2D0C07019F7B}, since=null, name=MMS, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed MMS information can be obtained for each connection.', htmlDescription='

Provides a table through which more detailed MMS information can be obtained for each connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=693, _eaTypeName=MMSAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3884b2, 3_taggedValues{mibPrefix=mMS, objectIdentity=mMSMMSEntry, Version=0}]. +2024-09-07 21:55:01,873 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3915, uuid={294CE46B-D0B5-49f5-BF02-E0988430AD45}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,873 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2810, uuid={22C7C42F-8D14-493c-A2EA-CCD76245D0BE}, since=null, name=ProviderDesc, alias=, stereotype=identity, visibility=public, txtDescription='Description of provider.', htmlDescription='

Description of provider.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,873 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2811, uuid={D38418EB-A105-4a60-8D61-BB360D9237B5}, since=null, name=ProviderName, alias=, stereotype=identity, visibility=public, txtDescription='Name of the provider.', htmlDescription='

Name of the provider.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,873 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3614, uuid={A048CDB1-2C04-4ec3-B2B0-2F9ACEE80E4F}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=920, _eaTypeName=MMSSecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1275dab, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,873 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=4030, uuid={354E6408-AAF1-42b2-B717-205A592C81BE}, since=null, name=SessionEstablishmentRate, alias=, stereotype=performance, visibility=public, txtDescription='The number of times any Association has been restablished after a disconnection within 15 minutes.', htmlDescription='

The number of times any Association has been restablished after a disconnection within 15 minutes.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,873 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=4031, uuid={F68354BD-DA88-4aca-B25F-9C06F7BEFBB9}, since=null, name=SessionRestartCnt, alias=, stereotype=security, visibility=public, txtDescription='Provides an attribute that indicates the count of the number of times the session has been restablished.', htmlDescription='

Provides an attribute that indicates the count of the number of times the session has been restablished.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,874 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3613, uuid={0233C10F-B173-4f99-A4E9-A79E7500E3B0}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object.', htmlDescription='

State events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=921, _eaTypeName=MMSNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1832929, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,874 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3919, uuid={575C57A8-200D-4db3-B297-AE2635C01BC3}, since=null, name=TProfileDecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted within T-Profile session.', htmlDescription='

Number PDUs received that could not be decrypted within T-Profile session.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,874 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3921, uuid={D87795A0-A0B4-4126-9015-DBEBDD79CA50}, since=null, name=TProfileSessKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of session key negotiations that failed. This applies only to T-Profile.', htmlDescription='

Number of session key negotiations that failed. This applies only to T-Profile.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,874 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3975, uuid={5C2EA464-4FB4-4413-90B5-E3451373A966}, since=null, name=UpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations that failed.', htmlDescription='

Number of update key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,874 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2820, uuid={3D4B3729-146B-4ed2-976D-D539FFAAAE40}, since=null, name=Active, alias=, stereotype=protocol, visibility=public, txtDescription='True if association is in use.', htmlDescription='

True if association is in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,874 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3727, uuid={9E3D1B59-980F-4217-B141-1C353C1D4E72}, since=null, name=AssociationId, alias=, stereotype=index, visibility=public, txtDescription='Id of the association.', htmlDescription='

Id of the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,874 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=4119, uuid={8717A248-6228-4974-9285-1B96BBEDF420}, since=null, name=Client, alias=, stereotype=protocol, visibility=public, txtDescription='True if role is client, false if role is server', htmlDescription='

True if role is client, false if role is server

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@756e4d, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,874 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3246, uuid={2C472C21-D2BB-4a4b-8D93-5C0E3346AA95}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,874 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3939, uuid={EBEAECC3-8BE4-4469-B891-4898C2954EE5}, since=null, name=HndShTime, alias=, stereotype=performance, visibility=public, txtDescription='Duration of the MMS session handshake. This apply to the sender only.', htmlDescription='

Duration of the MMS session handshake. This apply to the sender only.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,874 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2844, uuid={C34BBC7F-ACC5-4172-B430-081B10B49819}, since=null, name=RemoteEstAssos, alias=, stereotype=protocol, visibility=public, txtDescription='True if the association was established due to an incoming Initiate-Request.', htmlDescription='

True if the association was established due to an incoming Initiate-Request.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@756e4d, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,874 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2876, uuid={BF20C38C-E4DE-439e-A7C3-2D9FCB7CA1C2}, since=null, name=RemoteIP, alias=, stereotype=protocol, visibility=public, txtDescription='Remote entity IP network address.', htmlDescription='

Remote entity IP network address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 21:55:01,874 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3692, uuid={5EA2A0D0-6DA8-427e-ADEB-2CC19FDBB143}, since=null, name=RemoteIPAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,874 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2873, uuid={14DA2F03-EFD1-4b98-A66F-EFD6046F1025}, since=null, name=RemotePSEL, alias=, stereotype=protocol, visibility=public, txtDescription='Remote entity presentation selector.', htmlDescription='

Remote entity presentation selector.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=782, _eaTypeName=Selector, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@82f6ef, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 21:55:01,875 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2874, uuid={C4E19558-A5AA-43ce-A203-6E7BACDD96C7}, since=null, name=RemoteSSEL, alias=, stereotype=protocol, visibility=public, txtDescription='Remote entity session selector.', htmlDescription='

Remote entity session selector.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=782, _eaTypeName=Selector, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@82f6ef, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 21:55:01,875 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2875, uuid={C5BC70EE-7E84-4822-95B3-1EA00D57E252}, since=null, name=RemoteTSEL, alias=, stereotype=protocol, visibility=public, txtDescription='Remote entity transport selector.', htmlDescription='

Remote entity transport selector.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=782, _eaTypeName=Selector, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@82f6ef, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 21:55:01,875 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3972, uuid={47D3343F-E927-48ec-8558-54CC13AEC30E}, since=null, name=ReportPer100Seconds, alias=, stereotype=performance, visibility=public, txtDescription='Number of Reports received/transmitted during the last 100 seconds.', htmlDescription='

Number of Reports received/transmitted during the last 100 seconds.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,875 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3968, uuid={D1802DDE-FE54-49d6-9EBB-1A5DE0464F3A}, since=null, name=RptReceptionDelay, alias=, stereotype=performance, visibility=public, txtDescription='The time required to receive the last Report. This time is the difference between the reception time and the emission timestamp stored inside the report. If not synchronized this value shall be set to -1.', htmlDescription='

The time required to receive the last Report. This time is the difference between the reception time and the emission timestamp stored inside the report. If not synchronized this value shall be set to -1.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,875 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3913, uuid={B94A45CC-7384-41ee-9821-F77D634C675F}, since=null, name=SecurityProfile, alias=, stereotype=protocol, visibility=public, txtDescription='This is the security profile in use for this association (no security, integrity A profile, A+, AE+).', htmlDescription='

This is the security profile in use for this association (no security, integrity A profile, A+, AE+).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1013, _eaTypeName=SecurityProfileType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@153acfe, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,875 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSSecurityNotification, _objData=UmlObjectData [id=3582, uuid={ED76E952-B3FD-4bbd-B4F7-7F695D6C14B6}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of PDUs received that could not be decrypted.', htmlDescription='

Number of PDUs received that could not be decrypted.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,875 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSSecurityNotification, _objData=UmlObjectData [id=4036, uuid={6D84220E-9E6E-4b52-8843-92394244A0F5}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,875 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSSecurityNotification, _objData=UmlObjectData [id=3581, uuid={52A9B9D0-58D5-4d7d-A396-A7788A41EB89}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,875 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSSecurityNotification, _objData=UmlObjectData [id=3584, uuid={4F8B7D7A-78C6-4ac7-A43C-8B06E8D829E0}, since=null, name=UpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations that failed.', htmlDescription='

Number of update key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,875 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSNotification, _objData=UmlObjectData [id=3573, uuid={6F0A08FF-024D-4919-99B5-B68C203679AA}, since=null, name=ConnFailInCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of incoming Initiate-requests that have been refused.', htmlDescription='

Number of incoming Initiate-requests that have been refused.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,875 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSNotification, _objData=UmlObjectData [id=3574, uuid={F172E26F-F99A-4ca4-BBF3-4759B78D18F3}, since=null, name=ConnFailOutCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of outgoing Initiate-requests that have been refused.', htmlDescription='

Number of outgoing Initiate-requests that have been refused.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,875 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSNotification, _objData=UmlObjectData [id=3575, uuid={5F493EBC-63E7-480b-B344-66194892E87B}, since=null, name=RejectRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of reject issued in reception.', htmlDescription='

Number of reject issued in reception.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,875 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSNotification, _objData=UmlObjectData [id=3576, uuid={0D61F583-C436-4314-A1B5-C6FA04940FD7}, since=null, name=RejectTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received Reject on transmission.', htmlDescription='

Number of received Reject on transmission.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,876 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVCommon, _objData=UmlObjectData [id=4054, uuid={8F7CBDDF-5309-4c57-A3E5-B0C820FEC605}, since=null, name=GroupUpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations at KDC that failed.', htmlDescription='

Number of update key negotiations at KDC that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,876 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVCommon, _objData=UmlObjectData [id=4055, uuid={72C144FE-7138-4153-8C18-0FC5BC1E8998}, since=null, name=KDCAuthFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Count of the number of authorization failures against KDC.', htmlDescription='

Count of the number of authorization failures against KDC.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,876 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVCommon, _objData=UmlObjectData [id=4056, uuid={10AD71AC-8E2C-4afb-88B0-4CAAF7C06C47}, since=null, name=KDCSessionKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Session Key establishment between peer and KDC failed.', htmlDescription='

Session Key establishment between peer and KDC failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,876 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=4057, uuid={C97C7E95-F1A3-49a6-84CD-F37F54D4DCAA}, since=null, name=CBRef, alias=, stereotype=index, visibility=public, txtDescription='Reference of the GSE/SV Control block being supervised.', htmlDescription='

Reference of the GSE/SV Control block being supervised.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,876 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=4058, uuid={A3300C61-0405-4178-AA24-56139902DFD1}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,876 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=4059, uuid={B346F0EE-81BD-4f02-BD05-3DEB6C966B08}, since=null, name=OutUv, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer underflows detected due to outgoing serial communication.', htmlDescription='

Number of buffer underflows detected due to outgoing serial communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,876 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=4366, uuid={10164DB8-AB84-46a3-9325-B0D817803F9A}, since=null, name=APPID, alias=, stereotype=protocol, visibility=public, txtDescription='Application Identifier being expected.', htmlDescription='

Application Identifier being expected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,876 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=3829, uuid={F6725CAA-C95B-431e-BCC4-6877D34082A8}, since=null, name=TxPduPerSecond, alias=, stereotype=protocol, visibility=public, txtDescription='Count of the number of SV telegrams sent within a second on the association.', htmlDescription='

Count of the number of SV telegrams sent within a second on the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,876 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4061, uuid={E70C3857-A774-4635-9A52-713A3189C31C}, since=null, name=CBRef, alias=, stereotype=index, visibility=public, txtDescription='Reference of the GSE/SV Control block being supervised.', htmlDescription='

Reference of the GSE/SV Control block being supervised.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,876 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4062, uuid={2E060239-4EB9-4a8a-A7C3-AED6EDA8C5A3}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,876 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4063, uuid={B4825E20-07C1-4cde-94AD-CFE37852AE7F}, since=null, name=InOvCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer overflows detected due to incoming communication. This counter is incremented each time the buffer space is insufficient to receive an incoming message.', htmlDescription='

Number of buffer overflows detected due to incoming communication. This counter is incremented each time the buffer space is insufficient to receive an incoming message.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,876 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4064, uuid={BA2766B5-6FA2-4c9b-85EA-7353D0790FDF}, since=null, name=MessageIntegrityFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number messages that were not using the proper Group Key.', htmlDescription='

Number messages that were not using the proper Group Key.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,876 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4067, uuid={85138267-8516-4911-9D4D-D78674944F2D}, since=null, name=RxPduPerSecond, alias=, stereotype=protocol, visibility=public, txtDescription='Count of the number of SV telegrams received within a second on the association.', htmlDescription='

Count of the number of SV telegrams received within a second on the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,877 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4365, uuid={7955A1E1-9F67-46da-A434-8EA5BA1C0BE2}, since=null, name=APPID, alias=, stereotype=protocol, visibility=public, txtDescription='Application identified being expected.', htmlDescription='

Application identified being expected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,877 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4367, uuid={2B5045AC-99BD-4941-BCD5-36ABDDCAC2FF}, since=null, name=RxAPPID, alias=, stereotype=protocol, visibility=public, txtDescription='Last Application Identifier being received.', htmlDescription='

Last Application Identifier being received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f5e5e3, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,877 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3844, uuid={C24FF010-3527-40b6-A143-3CBD3C95FC45}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,877 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=4052, uuid={4D212643-73E9-4b01-B3E4-1419141F7F5C}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of PDUs received that could not be decrypted', htmlDescription='

Number of PDUs received that could not be decrypted

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,877 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3845, uuid={62E2AB60-AB61-489b-9B09-FC14A0BF4694}, since=null, name=PDUSizeFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDU with wrong size. This is meaningful only for IP telegrams.', htmlDescription='

Number of received PDU with wrong size. This is meaningful only for IP telegrams.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,877 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3846, uuid={A6C46361-5561-43d2-8B67-6DAC7566C062}, since=null, name=PIP, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed SV information can be obtained for each IP publisher connection.', htmlDescription='

Provides a table through which more detailed SV information can be obtained for each IP publisher connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=994, _eaTypeName=SVPublisherAssociationIP, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@132ec19, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}]. +2024-09-07 21:55:01,877 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3847, uuid={1C5E81A0-3007-4221-BBCF-B4538CDCD068}, since=null, name=PL2, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed SV information can be obtained for each L2 (Ethernet) publisher connection.', htmlDescription='

Provides a table through which more detailed SV information can be obtained for each L2 (Ethernet) publisher connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=995, _eaTypeName=SVPublisherAssociationL2, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c4039c, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}]. +2024-09-07 21:55:01,877 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3848, uuid={F24AD27F-DE3D-4d47-BF82-D81306D727FD}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=997, _eaTypeName=SVNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e45eb6, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,877 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3849, uuid={E61DCB59-D671-4e3e-AF63-7A7934A7139B}, since=null, name=SIP, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed SV information can be obtained for each IP subscriber connection.', htmlDescription='

Provides a table through which more detailed SV information can be obtained for each IP subscriber connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=998, _eaTypeName=SVSubcriberAssociationIP, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@19f99ea, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}]. +2024-09-07 21:55:01,877 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3850, uuid={3A8AA373-DF4D-4203-9E17-D1A556AE4626}, since=null, name=SL2, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed SV information can be obtained for each L2 (Ethernet) subscriber connection.', htmlDescription='

Provides a table through which more detailed SV information can be obtained for each L2 (Ethernet) subscriber connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=999, _eaTypeName=SVSubcriberAssociationL2, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1efef64, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}]. +2024-09-07 21:55:01,878 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVPublisherAssociationIP, _objData=UmlObjectData [id=3817, uuid={3EC59ACA-14AB-4adf-823D-4EF3DBBA4715}, since=null, name=DestIpAddr, alias=, stereotype=protocol, visibility=public, txtDescription='Destination IP address.', htmlDescription='

Destination IP address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 21:55:01,878 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVPublisherAssociationIP, _objData=UmlObjectData [id=3818, uuid={3B41797D-66B7-473b-A47C-92A5B0C6DB2C}, since=null, name=DestIpAddrType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,878 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVPublisherAssociationL2, _objData=UmlObjectData [id=3819, uuid={2E77B17F-D224-4764-9C29-36CD379797D7}, since=null, name=DestMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f4468b, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 21:55:01,878 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVSubcriberAssociationIP, _objData=UmlObjectData [id=3823, uuid={CF21D44F-A555-48cc-99A1-D49E20097B5D}, since=null, name=SrcIpAddr, alias=, stereotype=protocol, visibility=public, txtDescription='Source IP address.', htmlDescription='

Source IP address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 21:55:01,878 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVSubcriberAssociationIP, _objData=UmlObjectData [id=3824, uuid={3AB68377-764F-4314-851D-FEE4B40FC99E}, since=null, name=SrcIpAddrType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,878 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVSubcriberAssociationL2, _objData=UmlObjectData [id=3825, uuid={A6F5F486-2B40-4620-ADA1-3CBA7408C0D8}, since=null, name=SrcMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f4468b, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 21:55:01,878 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=3750, uuid={AFDD17DA-6B2F-4bc7-8F89-0E63A9B7D1D7}, since=null, name=ConfRevMis, alias=, stereotype=protocol, visibility=public, txtDescription='True indicates that the expected configuration revision did not match the received number.', htmlDescription='

True indicates that the expected configuration revision did not match the received number.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@756e4d, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,878 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=3755, uuid={2E11DB8F-06FC-485f-8C56-703E601D8A60}, since=null, name=NdsComm, alias=, stereotype=protocol, visibility=public, txtDescription='Duplicated Message received', htmlDescription='

Duplicated Message received

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@756e4d, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,879 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4368, uuid={9075FAD9-2CE1-4e5d-907F-DBD0B4B1CC32}, since=null, name=ConfRev, alias=, stereotype=protocol, visibility=public, txtDescription='Last configuration Revision being received.', htmlDescription='

Last configuration Revision being received.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,879 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4369, uuid={E4803687-6245-40fd-AB97-A5A553A34C59}, since=null, name=RxConfRev, alias=, stereotype=protocol, visibility=public, txtDescription='True indicates that the expected configuration revision did not match the received number.', htmlDescription='

True indicates that the expected configuration revision did not match the received number.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,879 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=3758, uuid={EBC5C199-473E-4859-B0FE-DD1C08CC93AF}, since=null, name=TalExpCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count of the received TAL expirations that have been detected.', htmlDescription='

Count of the received TAL expirations that have been detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,879 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4370, uuid={09E69AF6-2C2B-46e9-B274-E5220B53D94D}, since=null, name=OosErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of times out of sequence of GOOSE has been observed.', htmlDescription='

Number of times out of sequence of GOOSE has been observed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,879 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4371, uuid={5B152C15-4AC4-421a-87EB-F81484BD2524}, since=null, name=DupMsgRx, alias=, stereotype=protocol, visibility=public, txtDescription='If true, the subscription needs commissioning, i.e., the received message does not conform to the current subscription configuration (either the 'dataSetRef' is wrong, the data set members, the configuration revision number, or no subscription is configured at all).', htmlDescription='

If true, the subscription needs commissioning, i.e., the received message does not conform to the current subscription configuration (either the 'dataSetRef' is wrong, the data set members, the configuration revision number, or no subscription is configured at all).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,879 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4372, uuid={313447D4-3710-47a8-85FF-DAA9316F8720}, since=null, name=DatSet, alias=, stereotype=protocol, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,879 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4373, uuid={8E3C588A-BEC3-454f-861F-712BADFC92AA}, since=null, name=RxDatSet, alias=, stereotype=protocol, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f5e5e3, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,879 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4374, uuid={C304ABDA-E4BA-4cfc-BAD9-17425F5A0611}, since=null, name=GoID, alias=, stereotype=protocol, visibility=public, txtDescription='GOOSE Identifier being expected.', htmlDescription='

GOOSE Identifier being expected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,879 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4375, uuid={985D635D-D095-4282-B40B-8D3F15CDC152}, since=null, name=RxGoID, alias=, stereotype=protocol, visibility=public, txtDescription='Last GOOSE Identifier being received.', htmlDescription='

Last GOOSE Identifier being received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f5e5e3, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,879 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4376, uuid={3BC29513-E13B-40a1-A86D-4B3406FC2CD1}, since=null, name=StNum, alias=, stereotype=protocol, visibility=public, txtDescription='StNum being received from last accepted GOOSE message.', htmlDescription='

StNum being received from last accepted GOOSE message.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,879 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4377, uuid={699EF357-D4F5-4445-8F55-446FF895C089}, since=null, name=SqNum, alias=, stereotype=protocol, visibility=public, txtDescription='SqNum being received from last accepted GOOSE message.', htmlDescription='

SqNum being received from last accepted GOOSE message.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,880 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4378, uuid={778EF329-63E8-4a88-A172-D2DAD54D972A}, since=null, name=RejectStNum, alias=, stereotype=protocol, visibility=public, txtDescription='Last StNum being rejected.', htmlDescription='

Last StNum being rejected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,880 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4379, uuid={A699C155-79DE-4187-BDF5-AFD122DAD7CA}, since=null, name=RejectSqNum, alias=, stereotype=protocol, visibility=public, txtDescription='Last SqNum being rejected.', htmlDescription='

Last SqNum being rejected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,880 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4494, uuid={98542797-3D0F-4f54-96D7-B2BEBEAF605A}, since=null, name=RxT, alias=, stereotype=protocol, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@fc185, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,881 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3243, uuid={71555478-FCAD-4dae-B530-6956D1B5D475}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,881 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=4053, uuid={A432D351-022A-4b49-AA3D-61CBB91067FC}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of PDUs received that could not be decrypted', htmlDescription='

Number of PDUs received that could not be decrypted

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,881 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3773, uuid={4B58CE58-88E3-4e07-9FF3-FE0181F95942}, since=null, name=InErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of PDUs received that were in error due to malformed content, parity errors or configuration mismatch.', htmlDescription='

Number of PDUs received that were in error due to malformed content, parity errors or configuration mismatch.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,881 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=4121, uuid={D727F0F0-5C88-4fc4-83C5-D69614BE4ED8}, since=null, name=InUnexpectedMulticast, alias=, stereotype=protocol, visibility=public, txtDescription='Count of unexpected multicast received PDUs. This apply to GOOSE only.', htmlDescription='

Count of unexpected multicast received PDUs. This apply to GOOSE only.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,881 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3744, uuid={8BC8E8B9-0BA6-4277-B1B1-23F48CD0FD30}, since=null, name=PIP, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed GSE information can be obtained for each IP publisher connection.', htmlDescription='

Provides a table through which more detailed GSE information can be obtained for each IP publisher connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=796, _eaTypeName=GSEPublisherAssociationIP, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@6fa38a, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}]. +2024-09-07 21:55:01,881 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3745, uuid={10373ECE-DF59-4995-BA92-240A3CC2D94B}, since=null, name=PL2, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed GSE information can be obtained for each L2 (Ethernet) publisher connection.', htmlDescription='

Provides a table through which more detailed GSE information can be obtained for each L2 (Ethernet) publisher connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=984, _eaTypeName=GSEPublisherAssociationL2, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@a3ffec, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}]. +2024-09-07 21:55:01,881 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3618, uuid={BF431EAB-1B49-4c5a-8BC3-171FED573957}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=930, _eaTypeName=GSENotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1caeb3e, 1_taggedValues{Version=1}]. +2024-09-07 21:55:01,881 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3046, uuid={AA8FC433-0ACC-4dcf-9B1C-59469C28FCA5}, since=null, name=SIP, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed GSE information can be obtained for each IP subscriber connection.', htmlDescription='

Provides a table through which more detailed GSE information can be obtained for each IP subscriber connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=979, _eaTypeName=GSESubcriberAssociationIP, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1e88b3c, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}]. +2024-09-07 21:55:01,881 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3746, uuid={F6A461DF-31BD-4546-8B62-BE2A79D53F41}, since=null, name=SL2, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed GSE information can be obtained for each L2 (Ethernet) subscriber connection.', htmlDescription='

Provides a table through which more detailed GSE information can be obtained for each L2 (Ethernet) subscriber connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=977, _eaTypeName=GSESubcriberAssociationL2, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d80b78, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}]. +2024-09-07 21:55:01,882 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEPublisherAssociationIP, _objData=UmlObjectData [id=3803, uuid={9C513452-9437-4849-894C-B2C33952D4F0}, since=null, name=DestIpAddr, alias=, stereotype=protocol, visibility=public, txtDescription='Destination IP address.', htmlDescription='

Destination IP address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 21:55:01,882 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEPublisherAssociationIP, _objData=UmlObjectData [id=3802, uuid={03D1AF7D-F2B5-425c-8FD2-63B09E3887F9}, since=null, name=DestIpAddrType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,882 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEPublisherAssociationL2, _objData=UmlObjectData [id=3801, uuid={53A15D60-889F-4c5a-BCF1-89AF1D539B97}, since=null, name=DestMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f4468b, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 21:55:01,882 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEPublisherAssociationL2, _objData=UmlObjectData [id=4362, uuid={1EF8C591-A06A-43cb-8FBF-95E679E109F8}, since=null, name=SrcMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f4468b, 2_taggedValues{mibIndex=no, Version=1}]. +2024-09-07 21:55:01,882 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubcriberAssociationIP, _objData=UmlObjectData [id=3740, uuid={FFD24620-C094-400d-8BD1-F48524198222}, since=null, name=SrcIpAddr, alias=, stereotype=protocol, visibility=public, txtDescription='Source IP address. .', htmlDescription='

Source IP address. .

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 21:55:01,882 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubcriberAssociationIP, _objData=UmlObjectData [id=3739, uuid={B418786B-EB08-4581-8037-B7C3A6E0311A}, since=null, name=SrcIpAddrType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,882 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubcriberAssociationL2, _objData=UmlObjectData [id=3742, uuid={556B251D-88A4-4ac8-855E-D537776F059A}, since=null, name=SrcMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP Profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP Profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f4468b, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 21:55:01,882 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubcriberAssociationL2, _objData=UmlObjectData [id=4361, uuid={5024F7E1-FEC6-4125-AF1E-FFC7C29B18D8}, since=null, name=DstMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP Profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP Profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f4468b, 2_taggedValues{mibIndex=no, Version=1}]. +2024-09-07 21:55:01,882 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=2651, uuid={219E72A9-5B41-4365-A90E-491097F96C10}, since=null, name=clockTamperDetected, alias=, stereotype=security, visibility=public, txtDescription='Timestamp of when a tamper of a clock has been detected', htmlDescription='

Timestamp of when a tamper of a clock has been detected

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@fc185, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,882 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=2656, uuid={C95F5CA0-6663-41c7-BAE9-BB32F924F8F1}, since=null, name=LastClockHoldover, alias=, stereotype=health, visibility=public, txtDescription='Indicates the timestamp at which the last Holdover was detected.', htmlDescription='

Indicates the timestamp at which the last Holdover was detected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@fc185, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,882 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=2657, uuid={FF50E5F4-F0FB-48b1-B605-B025F27CA0DD}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='When written True, the statistics of clockTamperDetected and LastClockHoldover are set back to a value of zero. The values in the clocks table are not impacted by this reset.', htmlDescription='

When written True, the statistics of clockTamperDetected and LastClockHoldover are set back to a value of zero. The values in the clocks table are not impacted by this reset.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,882 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=2650, uuid={106DFE8D-727B-42bf-84CA-4C8E484CB760}, since=null, name=Clocks, alias=, stereotype=table, visibility=public, txtDescription='Table of information regarding the clock sources that are in use.', htmlDescription='

Table of information regarding the clock sources that are in use.

'], _isConst=false, _isStatic=false, _multiplicity=[0..n], _initValue=, _eaTypeId=608, _eaTypeName=ClockEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ce4f0a, 3_taggedValues{mibPrefix=cLK, objectIdentity=cLKclockEntry, Version=0}]. +2024-09-07 21:55:01,882 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=3631, uuid={31D800F0-35C2-4312-95B7-E3A890982D86}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=944, _eaTypeName=SecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3a8624, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,883 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2646, uuid={E98C8059-D343-41c5-A9FD-C45F4FA62052}, since=null, name=ClockAccuracy, alias=, stereotype=health, visibility=public, txtDescription='Reports the current expected accuracy of this clock in nanoseconds. A value of -1 indicates that the accuracy is unknown or estimated to be larger than 2147483647 ns.', htmlDescription='

Reports the current expected accuracy of this clock in nanoseconds. A value of -1 indicates that the accuracy is unknown or estimated to be larger than 2147483647 ns.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,883 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=3085, uuid={50EFFF08-CB85-4033-8EB9-8FC29AACD6DC}, since=null, name=ClockIndex, alias=, stereotype=index, visibility=public, txtDescription='Clock Index', htmlDescription='

Clock Index

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 21:55:01,883 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=3729, uuid={E0CAC256-AD0A-4515-9F48-63353DA71841}, since=null, name=ClockIssue, alias=, stereotype=performance, visibility=public, txtDescription='Reports the presence of any clock issue.', htmlDescription='

Reports the presence of any clock issue.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=776, _eaTypeName=TimSyncIssueType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1933fd1, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,883 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2649, uuid={1591A4AF-7AD8-4720-B04E-7C389735450F}, since=null, name=ClockTamperDetected, alias=, stereotype=security, visibility=public, txtDescription='Clock tamper have been detected.', htmlDescription='

Clock tamper have been detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@756e4d, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,883 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2645, uuid={F98377B8-808A-4705-81F9-99E14B733B97}, since=null, name=TmSrc, alias=, stereotype=performance, visibility=public, txtDescription='Reports the clock sync method.', htmlDescription='

Reports the clock sync method.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=777, _eaTypeName=TimSyncSrcType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2d45ba, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,883 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2655, uuid={EFB862ED-119C-4441-AD7D-3F382A7C0C92}, since=null, name=HoldOver, alias=, stereotype=health, visibility=public, txtDescription='The Holdover flag shall be set True whenever the Time Traceable flag is True and the IED is not receiving a qualified signal from a recognized standard time source. It shall be set False otherwise. Therefore, this flag gives an immediate indication of loss of the time reference signal.', htmlDescription='

The Holdover flag shall be set True whenever the Time Traceable flag is True and the IED is not receiving a qualified signal from a recognized standard time source. It shall be set False otherwise. Therefore, this flag gives an immediate indication of loss of the time reference signal.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@756e4d, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,883 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2648, uuid={A8CB6533-B21C-4986-941B-F8F32BD739E3}, since=null, name=LastSyncOffset, alias=, stereotype=health, visibility=public, txtDescription='Reports the time offset (in seconds) computed from the last qualified synchronization signal received by this clock. This value is used by the clock servo to gradually adjust the clock.', htmlDescription='

Reports the time offset (in seconds) computed from the last qualified synchronization signal received by this clock. This value is used by the clock servo to gradually adjust the clock.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,883 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2653, uuid={AAB46675-D113-417c-8AB8-E4E268247EF8}, since=null, name=TimeSourceAvailable, alias=, stereotype=health, visibility=public, txtDescription='The Time Source Available flag shall be set True whenever the IED is receiving a qualified signal from a recognized standard time source. If it loses this signal, then after an appropriate period (during which the additional holdover uncertainty is not a significant impairment to performance), the Time Source Available flag shall be set False. The duration of the period after loss of the time signal and negation of the Time Source Available flag depends on the quality of the holdover oscillator and the required time quality, and may be a configurable IED parameter. +This flag may not immediately be set False, because momentary loss of the time signal may not adversely affect IED time quality. The Holdover flag provides an immediate indication of this condition.', htmlDescription='

The Time Source Available flag shall be set True whenever the IED is receiving a qualified signal from a recognized standard time source. If it loses this signal, then after an appropriate period (during which the additional holdover uncertainty is not a significant impairment to performance), the Time Source Available flag shall be set False. The duration of the period after loss of the time signal and negation of the Time Source Available flag depends on the quality of the holdover oscillator and the required time quality, and may be a configurable IED parameter.

This flag may not immediately be set False, because momentary loss of the time signal may not adversely affect IED time quality. The Holdover flag provides an immediate indication of this condition.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@756e4d, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,883 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2652, uuid={ECD9FD6B-5168-426a-BF8F-D2B9B57110B0}, since=null, name=TimeTraceable, alias=, stereotype=health, visibility=public, txtDescription='The Time Traceable flag shall be set False before the IED has received and qualified a signal from a recognized standard time source. Once it has locked to the recognized standard time source and stabilized, the Time Traceable flag shall be set True. The Time Traceable flag shall not be set False again, so long as the IED can estimate its holdover uncertainty. If at some point, perhaps due to an extended holdover interval, the IED no longer can estimate its holdover uncertainty, then the Time Traceable flag shall be set False.', htmlDescription='

The Time Traceable flag shall be set False before the IED has received and qualified a signal from a recognized standard time source. Once it has locked to the recognized standard time source and stabilized, the Time Traceable flag shall be set True. The Time Traceable flag shall not be set False again, so long as the IED can estimate its holdover uncertainty. If at some point, perhaps due to an extended holdover interval, the IED no longer can estimate its holdover uncertainty, then the Time Traceable flag shall be set False.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@756e4d, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,883 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::SecurityNotification, _objData=UmlObjectData [id=3632, uuid={04B87A68-22D2-4882-A4A5-D62CF502F233}, since=null, name=clockTamperDetected, alias=, stereotype=security, visibility=public, txtDescription='Timestamp of when a tamper of a clock has been detected', htmlDescription='

Timestamp of when a tamper of a clock has been detected

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@fc185, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,883 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3319, uuid={6FD1D092-9094-4f03-8B24-7DCD8E2358AD}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='Interface number', htmlDescription='

Interface number

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-07 21:55:01,883 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3320, uuid={6EB13B61-C6AA-4e12-9BC2-177D8DB73982}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the CPU.', htmlDescription='

Description of the CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,883 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3415, uuid={2252ED03-8326-4d40-957F-9921BA0D74BE}, since=null, name=IntType, alias=, stereotype=identity, visibility=public, txtDescription='Interface type (Wired or Wireless)', htmlDescription='

Interface type (Wired or Wireless)

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=866, _eaTypeName=IntType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1629756, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,883 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3323, uuid={5B1D4273-C6BF-44d8-93A8-EE46A1AEBA45}, since=null, name=Operable, alias=, stereotype=health, visibility=public, txtDescription='Indicates that CPU is operable (it can be either online or offline)', htmlDescription='

Indicates that CPU is operable (it can be either online or offline)

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,883 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3318, uuid={C6769525-A8F5-4599-84AB-E17EB20458CD}, since=null, name=Online, alias=, stereotype=health, visibility=public, txtDescription='Indicate that CPU is online and active', htmlDescription='

Indicate that CPU is online and active

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,883 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3322, uuid={CF6212A6-1358-4cd8-AC00-7BE9C09A5BFE}, since=null, name=Faulty, alias=, stereotype=health, visibility=public, txtDescription='CPU generated errors', htmlDescription='

CPU generated errors

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,883 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3321, uuid={AE8F0410-796C-42ec-BA19-BA8D3B558380}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,883 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3652, uuid={F38DE40F-DC22-441d-BD42-E3990926DFB1}, since=null, name=serAvail, alias=, stereotype=performance, visibility=public, txtDescription='Number of serial interfaces installed on the device', htmlDescription='

Number of serial interfaces installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,883 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3657, uuid={4E66DA97-6D8F-450a-A00B-ADE0FEE47CE4}, since=null, name=serActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of serial interfaces active on the device', htmlDescription='

Number of serial interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,883 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3662, uuid={6F91E49F-3A68-4208-A29A-512F23CC10B0}, since=null, name=serFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing serial Interfaces on the device', htmlDescription='

Number of failing serial Interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,884 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3653, uuid={B23510B0-5513-4f80-9792-63DED4A16F44}, since=null, name=ethAvail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of ethernet Interfaces installed on the device', htmlDescription='

Number of ethernet Interfaces installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,884 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3658, uuid={6B6B3BCD-0AE0-4c6f-9FB3-472BEC079B13}, since=null, name=ethActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of ethernet interfaces active on the device', htmlDescription='

Number of ethernet interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,884 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3663, uuid={536CCD9F-B77E-465a-8898-FCD7644820AD}, since=null, name=ethFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing ethernet interfaces on the device', htmlDescription='

Number of failing ethernet interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,884 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3654, uuid={1C804DCB-08CB-41f0-B6F7-384A70C8C3C8}, since=null, name=algAvail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of analogue Interfaces installed on the device', htmlDescription='

Number of analogue Interfaces installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,884 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3659, uuid={29FE15BB-45B5-47c2-A74E-3EF574575434}, since=null, name=algActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of analogue interfaces Active on the device', htmlDescription='

Number of analogue interfaces Active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,884 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3664, uuid={54797821-2674-4526-B44A-9F87D01A6991}, since=null, name=algFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing analogue interfaces on the device', htmlDescription='

Number of failing analogue interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,884 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3655, uuid={74214291-7A17-4b83-AA3C-A305991D037A}, since=null, name=keyAvail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of keyboard Interface installed on the device', htmlDescription='

Number of keyboard Interface installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,884 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3660, uuid={AB6E018D-82C3-4524-8D58-58164F10E51B}, since=null, name=keyActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of keyboard interface active on the device', htmlDescription='

Number of keyboard interface active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,884 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3665, uuid={5F0D156E-80E6-401b-9854-FCA4DCA132BB}, since=null, name=keyFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing keyboard interface on the device', htmlDescription='

Number of failing keyboard interface on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,884 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3656, uuid={4C0A881D-B242-49b2-A9F8-DF5C3DF79322}, since=null, name=usbAvail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of Universal Serial Bus Interface installed on the device', htmlDescription='

Number of Universal Serial Bus Interface installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,885 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3661, uuid={6078BDD9-2E54-4b6b-A1B3-CCDBFE46E859}, since=null, name=usbActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of Universal Serial Bus interface active on the device', htmlDescription='

Number of Universal Serial Bus interface active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,885 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3666, uuid={64E92266-4098-47ce-9874-DBF194F6A4D1}, since=null, name=usbFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing Universal Serial Bus interface on the device', htmlDescription='

Number of failing Universal Serial Bus interface on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,885 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3283, uuid={6E4426CC-406A-429e-AD6D-1EECA102F2FC}, since=null, name=SER, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of serial interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of serial interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=836, _eaTypeName=SEREntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@4ed9f0, 3_taggedValues{mibPrefix=sER, objectIdentity=intSERIALEntry, Version=0}]. +2024-09-07 21:55:01,885 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3297, uuid={4C6CDBC0-62B0-4881-A810-A6CE56DACD81}, since=null, name=ETH, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of Ethernet interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of Ethernet interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=838, _eaTypeName=ETHEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@4f787b, 3_taggedValues{mibPrefix=eTH, objectIdentity=intETHEntry, Version=0}]. +2024-09-07 21:55:01,885 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3298, uuid={8794992C-DE7F-4bf7-83EC-5592356A181C}, since=null, name=USB, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of USB interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of USB interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=840, _eaTypeName=USBEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@5cb137, 3_taggedValues{mibPrefix=uSB, objectIdentity=intUSBEntry, Version=0}]. +2024-09-07 21:55:01,885 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3299, uuid={B0761727-4B75-4eb5-82B3-0BB613618FC7}, since=null, name=KEY, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of keyboard interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of keyboard interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=842, _eaTypeName=KEYEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@41eaa2, 3_taggedValues{mibPrefix=kEY, objectIdentity=intKEYEntry, Version=0}]. +2024-09-07 21:55:01,885 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3328, uuid={D97ACC7A-DBFA-4c92-BC5C-FF187AF4C4EF}, since=null, name=ALG, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of analogue interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of analogue interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=847, _eaTypeName=ALGEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d62f43, 3_taggedValues{mibPrefix=aLG, objectIdentity=intALGEntry, Version=0}]. +2024-09-07 21:55:01,885 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3678, uuid={B5CE0636-5BE9-4566-8B6A-2103E2769BA9}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object', htmlDescription='

State events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=946, _eaTypeName=Notification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@14b1c02, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,885 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::KEYEntry, _objData=UmlObjectData [id=3327, uuid={6A06B961-6E51-4f13-B73C-32E26BB4F831}, since=null, name=Locked, alias=, stereotype=health, visibility=public, txtDescription='Indicate a locked status for the device keyboard', htmlDescription='

Indicate a locked status for the device keyboard

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,885 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::SEREntry, _objData=UmlObjectData [id=3325, uuid={BD2A2516-013B-4f4c-83C4-6D873D08A614}, since=null, name=ByteIn, alias=, stereotype=protocol, visibility=public, txtDescription='Inbound Byte counter', htmlDescription='

Inbound Byte counter

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,885 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::SEREntry, _objData=UmlObjectData [id=3326, uuid={DB538A18-009B-4f5a-B7CD-6FDE73E706B1}, since=null, name=ByteOut, alias=, stereotype=protocol, visibility=public, txtDescription='Outbound Byte counter', htmlDescription='

Outbound Byte counter

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,885 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3668, uuid={51550105-54C1-4ba6-BC2E-E028F066BD90}, since=null, name=serActive, alias=, stereotype=health, visibility=public, txtDescription='Number of serial Interfaces active on the device', htmlDescription='

Number of serial Interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,886 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3669, uuid={BE46F414-6E9C-412e-9E70-29513A7DAA18}, since=null, name=serFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing serial Interfaces on the device', htmlDescription='

Number of failing serial Interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,886 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3670, uuid={78956E09-8F39-4f86-A5CE-B8DBF44C7D6E}, since=null, name=ethActive, alias=, stereotype=health, visibility=public, txtDescription='Number of ethernet interfaces active on the device', htmlDescription='

Number of ethernet interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,886 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3671, uuid={101FCB6C-9867-4262-8E50-6F057EEAF643}, since=null, name=ethFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing ethernet interfaces on the device', htmlDescription='

Number of failing ethernet interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,886 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3672, uuid={5171FAC8-436F-42e9-B8E2-0C31C19FAC68}, since=null, name=algActive, alias=, stereotype=health, visibility=public, txtDescription='Number of analogue interfaces active on the device', htmlDescription='

Number of analogue interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,886 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3673, uuid={9711AA3F-E429-4304-960A-AA9CF2BCC003}, since=null, name=algFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing analogue interfaces on the device', htmlDescription='

Number of failing analogue interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,886 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3667, uuid={D523B290-8CF4-4630-ADC0-AA4FF4336A1B}, since=null, name=keyActive, alias=, stereotype=health, visibility=public, txtDescription='Number of keyboard interfaces active on the device', htmlDescription='

Number of keyboard interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,886 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3674, uuid={367C987D-D473-46cd-A5B1-6B3A1D275D36}, since=null, name=keyFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing keyboard interfaces on the device', htmlDescription='

Number of failing keyboard interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,886 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3675, uuid={0F833AFE-832E-4673-99D3-42CDEFDDF7E0}, since=null, name=usbActive, alias=, stereotype=health, visibility=public, txtDescription='Number of Universal Serial Bus interfaces active on the device', htmlDescription='

Number of Universal Serial Bus interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,886 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3676, uuid={E957BF40-9F27-4a63-B2DD-16F525F01FA1}, since=null, name=usbFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing Universal Serial Bus interfaces on the device', htmlDescription='

Number of failing Universal Serial Bus interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-07 21:55:01,886 [main] INFO EaModelBuilder - assigning type for operations' parameters and exceptions ... +2024-09-07 21:55:01,886 [main] INFO EaModelBuilder - cross-checking dependencies ... +2024-09-07 21:55:01,887 [main] INFO EaModelBuilder - cross-checking associations ... +2024-09-07 21:55:01,887 [main] INFO Util - time=[0:00:00.048] linked builders. +2024-09-07 21:55:01,887 [main] INFO Util - +2024-09-07 21:55:01,887 [main] INFO Util - +2024-09-07 21:55:01,887 [main] INFO Util - ------------------------------------------------ +2024-09-07 21:55:01,888 [main] INFO Util - creating in-memory model and exporting normative diagrams... +2024-09-07 21:55:03,367 [main] TRACE UmlPackage - ---- created null model package NullCIM +2024-09-07 21:55:03,377 [main] TRACE UmlClass - created (826) OTHER_CIM CIM null CIM class NullCIM::NullCIM +2024-09-07 21:55:03,377 [main] TRACE UmlPackage - ---- created null model package NullIEC61850 +2024-09-07 21:55:03,377 [main] TRACE UmlClass - created (830) OTHER_IEC61850 IEC61850 null 61850 class NullIEC61850::NullIEC61850 +2024-09-07 21:55:03,377 [main] INFO EaModelBuilder - creating in-memory package structure ... +2024-09-07 21:55:03,377 [main] TRACE UmlPackage - ---- created model package iso +2024-09-07 21:55:03,377 [main] TRACE UmlPackage - ---- created top package standard +2024-09-07 21:55:03,378 [main] TRACE UmlPackage - ---- created package iec62351 +2024-09-07 21:55:03,378 [main] TRACE UmlPackage - ---- created package part7 +2024-09-07 21:55:03,378 [main] TRACE UmlPackage - ---- created package Profiles +2024-09-07 21:55:03,384 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{4642A2B9-A297-45be-A2B5-28C4F1A2B373}.png3912962887803567670.png. +2024-09-07 21:55:03,960 [main] DEBUG JapiDiagramExporter - ... saved in 577 ms +2024-09-07 21:55:03,964 [main] TRACE UmlDiagram - created (51) OTHER_CIM CIM class Profiles::Part7Profiles +2024-09-07 21:55:03,965 [main] TRACE UmlPackage - ---- created package nsmAgent +2024-09-07 21:55:03,965 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{8F3F8B93-6E15-4fcf-9C40-83EB793F28A5}.png2605183831330332065.png. +2024-09-07 21:55:04,689 [main] DEBUG JapiDiagramExporter - ... saved in 724 ms +2024-09-07 21:55:04,690 [main] TRACE UmlDiagram - created (52) OTHER_CIM CIM class nsmAgent::nsmAgent +2024-09-07 21:55:04,690 [main] TRACE UmlPackage - ---- created package Overview +2024-09-07 21:55:04,695 [main] TRACE UmlSkipped - created (941) OTHER_CIM CIM boundary Overview::IEC 60870, DNP and IEC 62351 +2024-09-07 21:55:04,695 [main] TRACE UmlSkipped - created (939) OTHER_CIM CIM boundary Overview::IEC 61850 +2024-09-07 21:55:04,697 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{1EC9B9AC-962E-4b2c-A2A8-EFB524CF896E}.png7005902127578983837.png. +2024-09-07 21:55:05,515 [main] DEBUG JapiDiagramExporter - ... saved in 819 ms +2024-09-07 21:55:05,516 [main] TRACE UmlDiagram - created (23) OTHER_CIM CIM class Overview::Part7 Classes Overview +2024-09-07 21:55:05,516 [main] TRACE UmlPackage - ---- created package BaseTypes +2024-09-07 21:55:05,516 [main] TRACE UmlPackage - ---- created package Abstract Types +2024-09-07 21:55:05,516 [main] TRACE UmlPackage - ---- created package EnumeratedTypes +2024-09-07 21:55:05,516 [main] TRACE UmlPackage - ---- created package Environmental Agent +2024-09-07 21:55:05,516 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{DD68DDD1-5EEB-4a23-B16C-1FF759A2EE6A}.png4989933578017527989.png. +2024-09-07 21:55:05,752 [main] DEBUG JapiDiagramExporter - ... saved in 236 ms +2024-09-07 21:55:05,753 [main] TRACE UmlDiagram - created (8) OTHER_CIM CIM class Environmental Agent::Environmental +2024-09-07 21:55:05,753 [main] TRACE UmlPackage - ---- created package IED Agent +2024-09-07 21:55:05,753 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{C3FD1BF6-CB13-4fb3-9C75-D9FACF470ACD}.png5945425103437325801.png. +2024-09-07 21:55:06,082 [main] DEBUG JapiDiagramExporter - ... saved in 329 ms +2024-09-07 21:55:06,082 [main] TRACE UmlDiagram - created (9) OTHER_CIM CIM class IED Agent::IED +2024-09-07 21:55:06,082 [main] TRACE UmlPackage - ---- created package Application Protocols Agents +2024-09-07 21:55:06,082 [main] TRACE UmlPackage - ---- created package Common objects +2024-09-07 21:55:06,083 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{583FFED4-9F6C-420f-88B3-80FF9F387121}.png8324480361242447078.png. +2024-09-07 21:55:06,257 [main] DEBUG JapiDiagramExporter - ... saved in 175 ms +2024-09-07 21:55:06,257 [main] TRACE UmlDiagram - created (64) OTHER_CIM CIM class Common objects::Application Protocol common objects +2024-09-07 21:55:06,258 [main] TRACE UmlPackage - ---- created package IEC62351-3 ed.2 Agent +2024-09-07 21:55:06,258 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{38D28719-1A0B-491f-9010-AF2D3032BB4B}.png6778409624245575046.png. +2024-09-07 21:55:06,593 [main] DEBUG JapiDiagramExporter - ... saved in 335 ms +2024-09-07 21:55:06,593 [main] TRACE UmlDiagram - created (72) OTHER_CIM CIM class IEC62351-3 ed.2 Agent::IEC 62351-3 ed.2 Agent Relationships +2024-09-07 21:55:06,593 [main] TRACE UmlPackage - ---- created package IEEE 1815 and IEC 60870-5 Agent +2024-09-07 21:55:06,594 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{8B1E40BA-BA71-478e-BC81-025DA5A45A35}.png2284439551274417060.png. +2024-09-07 21:55:06,956 [main] DEBUG JapiDiagramExporter - ... saved in 363 ms +2024-09-07 21:55:06,957 [main] TRACE UmlDiagram - created (33) OTHER_CIM CIM class IEEE 1815 and IEC 60870-5 Agent::IEEE 1815 and IEC 60870 Agent Relationships +2024-09-07 21:55:06,957 [main] TRACE UmlPackage - ---- created package IEEE 1815 and IEC 60870-5 Agent - ed2 +2024-09-07 21:55:06,957 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{AA945755-BD47-4be2-A238-6331816DBA4B}.png3985236958356751284.png. +2024-09-07 21:55:07,346 [main] DEBUG JapiDiagramExporter - ... saved in 389 ms +2024-09-07 21:55:07,346 [main] TRACE UmlDiagram - created (70) OTHER_CIM CIM class IEEE 1815 and IEC 60870-5 Agent - ed2::IEEE 1815 and IEC 60870 Agent Relationships +2024-09-07 21:55:07,346 [main] TRACE UmlPackage - ---- created package IEC61850 Agent +2024-09-07 21:55:07,347 [main] TRACE UmlPackage - ---- created package ACSI +2024-09-07 21:55:07,347 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{1B1AAFC2-CBA3-401c-873D-7B6CDCE9CBD6}.png6158943464215908884.png. +2024-09-07 21:55:07,542 [main] DEBUG JapiDiagramExporter - ... saved in 195 ms +2024-09-07 21:55:07,543 [main] TRACE UmlDiagram - created (45) OTHER_CIM CIM class ACSI::ACSI +2024-09-07 21:55:07,543 [main] TRACE UmlPackage - ---- created package MMS +2024-09-07 21:55:07,543 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{C69DADFE-D7C7-45d0-83FC-41012CB3C1CA}.png2397024537406833124.png. +2024-09-07 21:55:07,870 [main] DEBUG JapiDiagramExporter - ... saved in 327 ms +2024-09-07 21:55:07,871 [main] TRACE UmlDiagram - created (42) OTHER_CIM CIM class MMS::MMS +2024-09-07 21:55:07,871 [main] TRACE UmlPackage - ---- created package SV and GSE common objects +2024-09-07 21:55:07,872 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{DFEA5E4E-B042-4697-A4BE-C60308616114}.png5580763380350753900.png. +2024-09-07 21:55:08,070 [main] DEBUG JapiDiagramExporter - ... saved in 199 ms +2024-09-07 21:55:08,070 [main] TRACE UmlDiagram - created (63) OTHER_CIM CIM class SV and GSE common objects::SV and GSE common objects +2024-09-07 21:55:08,070 [main] TRACE UmlPackage - ---- created package SV +2024-09-07 21:55:08,070 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{472A38C4-7002-4632-9EB5-EC1C28A2CCA8}.png6626689241919794620.png. +2024-09-07 21:55:08,393 [main] DEBUG JapiDiagramExporter - ... saved in 323 ms +2024-09-07 21:55:08,394 [main] TRACE UmlDiagram - created (60) OTHER_CIM CIM class SV::SV +2024-09-07 21:55:08,394 [main] TRACE UmlPackage - ---- created package GSE +2024-09-07 21:55:08,394 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{80FA056A-3318-4339-86E8-7D464BD53A85}.png6373608160574533250.png. +2024-09-07 21:55:08,772 [main] DEBUG JapiDiagramExporter - ... saved in 378 ms +2024-09-07 21:55:08,772 [main] TRACE UmlDiagram - created (44) OTHER_CIM CIM class GSE::GSE +2024-09-07 21:55:08,772 [main] TRACE UmlPackage - ---- created package Clocks Agent +2024-09-07 21:55:08,773 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{9DE08B60-19E1-4c7c-B3D6-82731BE2066A}.png5293784979746876935.png. +2024-09-07 21:55:08,982 [main] DEBUG JapiDiagramExporter - ... saved in 210 ms +2024-09-07 21:55:08,982 [main] TRACE UmlDiagram - created (46) OTHER_CIM CIM class Clocks Agent::Clocks Agent +2024-09-07 21:55:08,982 [main] TRACE UmlPackage - ---- created package Interfaces Agent +2024-09-07 21:55:08,983 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{1B416A08-A236-4e2a-9A9E-6A48912EF05F}.png761777036682344290.png. +2024-09-07 21:55:09,300 [main] DEBUG JapiDiagramExporter - ... saved in 318 ms +2024-09-07 21:55:09,300 [main] TRACE UmlDiagram - created (24) OTHER_CIM CIM class Interfaces Agent::Interfaces +2024-09-07 21:55:09,300 [main] INFO EaModelBuilder - creating in-memory root classes and enum literals ... +2024-09-07 21:55:09,301 [main] TRACE UmlClass - created (894) OTHER_CIM CIM root class <> nsmAgent::Attribute +2024-09-07 21:55:09,301 [main] TRACE UmlClass - created (886) OTHER_CIM CIM root class <> nsmAgent::Attribute +2024-09-07 21:55:09,301 [main] TRACE UmlClass - created (889) OTHER_CIM CIM root class <> nsmAgent::Attribute +2024-09-07 21:55:09,301 [main] TRACE UmlClass - created (890) OTHER_CIM CIM root class <> nsmAgent::Attribute +2024-09-07 21:55:09,301 [main] TRACE UmlClass - created (892) OTHER_CIM CIM root class <> nsmAgent::Attribute +2024-09-07 21:55:09,301 [main] TRACE UmlClass - created (896) OTHER_CIM CIM root class <> nsmAgent::Attribute +2024-09-07 21:55:09,301 [main] TRACE UmlClass - created (898) OTHER_CIM CIM root class <> nsmAgent::Attribute +2024-09-07 21:55:09,302 [main] TRACE UmlClass - created (938) OTHER_CIM CIM root class <> nsmAgent::Attribute +2024-09-07 21:55:09,302 [main] TRACE UmlClass - created (900) OTHER_CIM CIM root class <> nsmAgent::Attribute +2024-09-07 21:55:09,302 [main] TRACE UmlClass - created (888) OTHER_CIM CIM root class <> nsmAgent::Class +2024-09-07 21:55:09,302 [main] TRACE UmlClass - created (1022) OTHER_CIM CIM root class <> nsmAgent::Class +2024-09-07 21:55:09,302 [main] TRACE UmlClass - created (882) OTHER_CIM CIM root class <> nsmAgent::Class +2024-09-07 21:55:09,302 [main] TRACE UmlClass - created (895) OTHER_CIM CIM root class <> nsmAgent::health +2024-09-07 21:55:09,302 [main] TRACE UmlClass - created (893) OTHER_CIM CIM root class <> nsmAgent::identity +2024-09-07 21:55:09,302 [main] TRACE UmlClass - created (891) OTHER_CIM CIM root class <> nsmAgent::index +2024-09-07 21:55:09,302 [main] TRACE UmlClass - created (887) OTHER_CIM CIM root class <> nsmAgent::nsmAgent +2024-09-07 21:55:09,302 [main] TRACE UmlClass - created (1021) OTHER_CIM CIM root class <> nsmAgent::nsmEntry +2024-09-07 21:55:09,303 [main] TRACE UmlClass - created (883) OTHER_CIM CIM root class <> nsmAgent::nsmEvent +2024-09-07 21:55:09,303 [main] TRACE UmlClass - created (897) OTHER_CIM CIM root class <> nsmAgent::performance +2024-09-07 21:55:09,303 [main] TRACE UmlClass - created (885) OTHER_CIM CIM root class <> nsmAgent::protocol +2024-09-07 21:55:09,303 [main] TRACE UmlClass - created (884) OTHER_CIM CIM root class <> nsmAgent::security +2024-09-07 21:55:09,303 [main] TRACE UmlClass - created (899) OTHER_CIM CIM root class <> nsmAgent::setvalue +2024-09-07 21:55:09,303 [main] TRACE UmlClass - created (901) OTHER_CIM CIM root class <> nsmAgent::table +2024-09-07 21:55:09,303 [main] TRACE UmlClass - created (936) OTHER_CIM CIM root class <> nsmAgent::trap +2024-09-07 21:55:09,303 [main] TRACE UmlClass - created (660) OTHER_CIM CIM root class BaseTypes::AbsoluteDateTime +2024-09-07 21:55:09,303 [main] TRACE UmlClass - created (624) OTHER_CIM CIM root class BaseTypes::Counter32 +2024-09-07 21:55:09,303 [main] TRACE UmlClass - created (628) OTHER_CIM CIM root class BaseTypes::DateAndTime +2024-09-07 21:55:09,304 [main] TRACE UmlClass - created (632) OTHER_CIM CIM root class BaseTypes::DisplayString +2024-09-07 21:55:09,304 [main] TRACE UmlClass - created (630) OTHER_CIM CIM root class BaseTypes::Float32TC +2024-09-07 21:55:09,304 [main] TRACE UmlClass - created (622) OTHER_CIM CIM root class BaseTypes::Gauge32 +2024-09-07 21:55:09,304 [main] TRACE UmlClass - created (952) OTHER_CIM CIM root class BaseTypes::InetAddress +2024-09-07 21:55:09,304 [main] TRACE UmlClass - created (966) OTHER_CIM CIM root class BaseTypes::MacAddress +2024-09-07 21:55:09,304 [main] TRACE UmlClass - created (954) OTHER_CIM CIM enumeration <> BaseTypes::InetAddressType +2024-09-07 21:55:09,314 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 21:55:09,315 [main] TRACE UmlAttribute - created (3685) OTHER_CIM CIM literal <> BaseTypes::InetAddressType.unknown = 0 +2024-09-07 21:55:09,315 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 21:55:09,315 [main] TRACE UmlAttribute - created (3686) OTHER_CIM CIM literal <> BaseTypes::InetAddressType.ipv4 = 1 +2024-09-07 21:55:09,315 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 21:55:09,315 [main] TRACE UmlAttribute - created (3687) OTHER_CIM CIM literal <> BaseTypes::InetAddressType.ipv6 = 2 +2024-09-07 21:55:09,315 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-07 21:55:09,315 [main] TRACE UmlAttribute - created (3688) OTHER_CIM CIM literal <> BaseTypes::InetAddressType.ipv4z = 3 +2024-09-07 21:55:09,315 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-07 21:55:09,315 [main] TRACE UmlAttribute - created (3689) OTHER_CIM CIM literal <> BaseTypes::InetAddressType.ipv6z = 4 +2024-09-07 21:55:09,315 [main] TRACE ValueRange - '16' has no separator indicating range. +2024-09-07 21:55:09,315 [main] TRACE UmlAttribute - created (3683) OTHER_CIM CIM literal <> BaseTypes::InetAddressType.dns = 16 +2024-09-07 21:55:09,315 [main] TRACE UmlClass - created (972) OTHER_CIM CIM root class BaseTypes::EntityIndex +2024-09-07 21:55:09,315 [main] TRACE UmlClass - created (173) OTHER_CIM CIM root class BaseTypes::Integer32 +2024-09-07 21:55:09,315 [main] TRACE UmlClass - created (968) OTHER_CIM CIM root class BaseTypes::Unsigned32 +2024-09-07 21:55:09,315 [main] TRACE UmlClass - created (626) OTHER_CIM CIM root class BaseTypes::TimeTicks +2024-09-07 21:55:09,315 [main] TRACE UmlClass - created (636) OTHER_CIM CIM root class BaseTypes::TruthValue +2024-09-07 21:55:09,316 [main] TRACE UmlClass - created (712) OTHER_CIM CIM root class Abstract Types::AbstractBaseType +2024-09-07 21:55:09,316 [main] TRACE UmlClass - created (798) OTHER_CIM CIM root class Abstract Types::AbstractAgent +2024-09-07 21:55:09,316 [main] TRACE UmlClass - created (292) OTHER_CIM CIM enumeration <> EnumeratedTypes::AppDatStKind +2024-09-07 21:55:09,316 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 21:55:09,316 [main] TRACE UmlAttribute - created (1780) OTHER_CIM CIM literal <> EnumeratedTypes::AppDatStKind.unknown = 0 +2024-09-07 21:55:09,317 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 21:55:09,317 [main] TRACE UmlAttribute - created (1781) OTHER_CIM CIM literal <> EnumeratedTypes::AppDatStKind.good = 1 +2024-09-07 21:55:09,317 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 21:55:09,317 [main] TRACE UmlAttribute - created (1782) OTHER_CIM CIM literal <> EnumeratedTypes::AppDatStKind.bad = 2 +2024-09-07 21:55:09,317 [main] TRACE UmlClass - created (1034) OTHER_CIM CIM enumeration <> EnumeratedTypes::PhyHealthKind +2024-09-07 21:55:09,317 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 21:55:09,317 [main] TRACE UmlAttribute - created (4113) OTHER_CIM CIM literal <> EnumeratedTypes::PhyHealthKind.ok = 0 +2024-09-07 21:55:09,317 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 21:55:09,317 [main] TRACE UmlAttribute - created (4114) OTHER_CIM CIM literal <> EnumeratedTypes::PhyHealthKind.warning = 1 +2024-09-07 21:55:09,317 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 21:55:09,317 [main] TRACE UmlAttribute - created (4115) OTHER_CIM CIM literal <> EnumeratedTypes::PhyHealthKind.alarm = 2 +2024-09-07 21:55:09,317 [main] TRACE UmlClass - created (856) OTHER_CIM CIM enumeration <> EnumeratedTypes::ExtKind +2024-09-07 21:55:09,317 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 21:55:09,317 [main] TRACE UmlAttribute - created (3369) OTHER_CIM CIM literal <> EnumeratedTypes::ExtKind.unknown = 0 +2024-09-07 21:55:09,317 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 21:55:09,317 [main] TRACE UmlAttribute - created (3370) OTHER_CIM CIM literal <> EnumeratedTypes::ExtKind.ioModule = 1 +2024-09-07 21:55:09,317 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 21:55:09,317 [main] TRACE UmlAttribute - created (3371) OTHER_CIM CIM literal <> EnumeratedTypes::ExtKind.softwarePLC = 2 +2024-09-07 21:55:09,318 [main] TRACE UmlClass - created (864) OTHER_CIM CIM enumeration <> EnumeratedTypes::IntKind +2024-09-07 21:55:09,318 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 21:55:09,318 [main] TRACE UmlAttribute - created (3392) OTHER_CIM CIM literal <> EnumeratedTypes::IntKind.wired = 0 +2024-09-07 21:55:09,318 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 21:55:09,318 [main] TRACE UmlAttribute - created (3393) OTHER_CIM CIM literal <> EnumeratedTypes::IntKind.wireless = 1 +2024-09-07 21:55:09,318 [main] TRACE UmlClass - created (644) OTHER_CIM CIM enumeration <> EnumeratedTypes::LnkKind +2024-09-07 21:55:09,318 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 21:55:09,318 [main] TRACE UmlAttribute - created (2720) OTHER_CIM CIM literal <> EnumeratedTypes::LnkKind.unknown = 0 +2024-09-07 21:55:09,318 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 21:55:09,318 [main] TRACE UmlAttribute - created (2721) OTHER_CIM CIM literal <> EnumeratedTypes::LnkKind.serial = 1 +2024-09-07 21:55:09,318 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 21:55:09,318 [main] TRACE UmlAttribute - created (2722) OTHER_CIM CIM literal <> EnumeratedTypes::LnkKind.tcp = 2 +2024-09-07 21:55:09,318 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-07 21:55:09,318 [main] TRACE UmlAttribute - created (2723) OTHER_CIM CIM literal <> EnumeratedTypes::LnkKind.udp = 3 +2024-09-07 21:55:09,319 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-07 21:55:09,319 [main] TRACE UmlAttribute - created (3391) OTHER_CIM CIM literal <> EnumeratedTypes::LnkKind.eth = 4 +2024-09-07 21:55:09,319 [main] TRACE UmlClass - created (293) OTHER_CIM CIM enumeration <> EnumeratedTypes::PSPAccKind +2024-09-07 21:55:09,319 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 21:55:09,319 [main] TRACE UmlAttribute - created (1784) OTHER_CIM CIM literal EnumeratedTypes::PSPAccKind.notBeingAccessed = 0 +2024-09-07 21:55:09,319 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 21:55:09,319 [main] TRACE UmlAttribute - created (1785) OTHER_CIM CIM literal EnumeratedTypes::PSPAccKind.accessOccurring = 1 +2024-09-07 21:55:09,319 [main] TRACE UmlClass - created (829) OTHER_CIM CIM enumeration <> EnumeratedTypes::ProtIdKind +2024-09-07 21:55:09,319 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 21:55:09,319 [main] TRACE UmlAttribute - created (3250) OTHER_CIM CIM literal <> EnumeratedTypes::ProtIdKind.unknown = 0 +2024-09-07 21:55:09,319 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 21:55:09,319 [main] TRACE UmlAttribute - created (3249) OTHER_CIM CIM literal <> EnumeratedTypes::ProtIdKind.iEC6185081 = 1 +2024-09-07 21:55:09,319 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 21:55:09,319 [main] TRACE UmlAttribute - created (3251) OTHER_CIM CIM literal <> EnumeratedTypes::ProtIdKind.iEC6185081GOOSE = 2 +2024-09-07 21:55:09,319 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-07 21:55:09,319 [main] TRACE UmlAttribute - created (3252) OTHER_CIM CIM literal <> EnumeratedTypes::ProtIdKind.iEC6185092SV = 3 +2024-09-07 21:55:09,319 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-07 21:55:09,319 [main] TRACE UmlAttribute - created (3253) OTHER_CIM CIM literal <> EnumeratedTypes::ProtIdKind.ieee1815DNP = 4 +2024-09-07 21:55:09,320 [main] TRACE ValueRange - '5' has no separator indicating range. +2024-09-07 21:55:09,320 [main] TRACE UmlAttribute - created (3254) OTHER_CIM CIM literal <> EnumeratedTypes::ProtIdKind.iec608705 = 5 +2024-09-07 21:55:09,320 [main] TRACE ValueRange - '6' has no separator indicating range. +2024-09-07 21:55:09,320 [main] TRACE UmlAttribute - created (4503) OTHER_CIM CIM literal <> EnumeratedTypes::ProtIdKind.iEC6185082 = 6 +2024-09-07 21:55:09,320 [main] TRACE UmlClass - created (958) OTHER_CIM CIM enumeration <> EnumeratedTypes::EventKind +2024-09-07 21:55:09,320 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 21:55:09,320 [main] TRACE UmlAttribute - created (3694) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.none = 0 +2024-09-07 21:55:09,320 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 21:55:09,320 [main] TRACE UmlAttribute - created (3695) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.unKnown = 1 +2024-09-07 21:55:09,320 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 21:55:09,320 [main] TRACE UmlAttribute - created (3696) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.denialOfService = 2 +2024-09-07 21:55:09,320 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-07 21:55:09,320 [main] TRACE UmlAttribute - created (3697) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.malware = 3 +2024-09-07 21:55:09,320 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-07 21:55:09,320 [main] TRACE UmlAttribute - created (3698) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.bufferOverRun = 4 +2024-09-07 21:55:09,320 [main] TRACE ValueRange - '5' has no separator indicating range. +2024-09-07 21:55:09,320 [main] TRACE UmlAttribute - created (3701) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.bufferUnderRun = 5 +2024-09-07 21:55:09,320 [main] TRACE ValueRange - '6' has no separator indicating range. +2024-09-07 21:55:09,320 [main] TRACE UmlAttribute - created (3702) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.badCredential = 6 +2024-09-07 21:55:09,320 [main] TRACE ValueRange - '7' has no separator indicating range. +2024-09-07 21:55:09,320 [main] TRACE UmlAttribute - created (3703) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.badKey = 7 +2024-09-07 21:55:09,320 [main] TRACE ValueRange - '8' has no separator indicating range. +2024-09-07 21:55:09,321 [main] TRACE UmlAttribute - created (3699) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.malformedPDU = 8 +2024-09-07 21:55:09,321 [main] TRACE ValueRange - '9' has no separator indicating range. +2024-09-07 21:55:09,321 [main] TRACE UmlAttribute - created (3693) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.physicalDisruption = 9 +2024-09-07 21:55:09,321 [main] TRACE ValueRange - '10' has no separator indicating range. +2024-09-07 21:55:09,321 [main] TRACE UmlAttribute - created (3700) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.invalidNetworkAccess = 10 +2024-09-07 21:55:09,321 [main] TRACE UmlClass - created (113) OTHER_CIM CIM enumeration <> EnumeratedTypes::TimSyncIssueKind +2024-09-07 21:55:09,321 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 21:55:09,321 [main] TRACE UmlAttribute - created (644) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncIssueKind.synced = 0 +2024-09-07 21:55:09,321 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 21:55:09,321 [main] TRACE UmlAttribute - created (645) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncIssueKind.degradated = 1 +2024-09-07 21:55:09,321 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 21:55:09,321 [main] TRACE UmlAttribute - created (646) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncIssueKind.failed = 2 +2024-09-07 21:55:09,321 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-07 21:55:09,321 [main] TRACE UmlAttribute - created (4499) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncIssueKind.syncedGlobal = 3 +2024-09-07 21:55:09,321 [main] TRACE UmlClass - created (1011) OTHER_CIM CIM enumeration <> EnumeratedTypes::SecurityProfileKind +2024-09-07 21:55:09,321 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 21:55:09,321 [main] TRACE UmlAttribute - created (3924) OTHER_CIM CIM literal <> EnumeratedTypes::SecurityProfileKind.noSecurity = 0 +2024-09-07 21:55:09,321 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 21:55:09,321 [main] TRACE UmlAttribute - created (3926) OTHER_CIM CIM literal <> EnumeratedTypes::SecurityProfileKind.aProfile = 1 +2024-09-07 21:55:09,322 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 21:55:09,322 [main] TRACE UmlAttribute - created (3927) OTHER_CIM CIM literal <> EnumeratedTypes::SecurityProfileKind.e2eProfile = 2 +2024-09-07 21:55:09,322 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-07 21:55:09,322 [main] TRACE UmlAttribute - created (3922) OTHER_CIM CIM literal <> EnumeratedTypes::SecurityProfileKind.ae2eProfile = 3 +2024-09-07 21:55:09,322 [main] TRACE UmlClass - created (117) OTHER_CIM CIM enumeration <> EnumeratedTypes::TimSyncSrcKind +2024-09-07 21:55:09,322 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 21:55:09,322 [main] TRACE UmlAttribute - created (665) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.unknown = 0 +2024-09-07 21:55:09,322 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-07 21:55:09,322 [main] TRACE UmlAttribute - created (666) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.ntp = 1 +2024-09-07 21:55:09,322 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-07 21:55:09,322 [main] TRACE UmlAttribute - created (667) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.sntp = 2 +2024-09-07 21:55:09,322 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-07 21:55:09,322 [main] TRACE UmlAttribute - created (668) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.irig = 3 +2024-09-07 21:55:09,322 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-07 21:55:09,322 [main] TRACE UmlAttribute - created (669) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.gps = 4 +2024-09-07 21:55:09,322 [main] TRACE ValueRange - '5' has no separator indicating range. +2024-09-07 21:55:09,322 [main] TRACE UmlAttribute - created (670) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.ieee1588PTP = 5 +2024-09-07 21:55:09,322 [main] TRACE ValueRange - '6' has no separator indicating range. +2024-09-07 21:55:09,322 [main] TRACE UmlAttribute - created (671) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.ieee1588PTPC37238Profile2011 = 6 +2024-09-07 21:55:09,323 [main] TRACE ValueRange - '7' has no separator indicating range. +2024-09-07 21:55:09,323 [main] TRACE UmlAttribute - created (4110) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.ieee1588PTPIEC6185093 = 7 +2024-09-07 21:55:09,323 [main] TRACE ValueRange - '8' has no separator indicating range. +2024-09-07 21:55:09,323 [main] TRACE UmlAttribute - created (4495) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.ieee1588PTPC37238Profile2017 = 8 +2024-09-07 21:55:09,323 [main] TRACE ValueRange - '9' has no separator indicating range. +2024-09-07 21:55:09,323 [main] TRACE UmlAttribute - created (4496) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.ieee1588PTPIEC6185093Ed20 = 9 +2024-09-07 21:55:09,323 [main] TRACE ValueRange - '7' has no separator indicating range. +2024-09-07 21:55:09,323 [main] TRACE UmlAttribute - created (4497) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.ieee1588PTPIEC6185093Profile2016 = 7 +2024-09-07 21:55:09,323 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-07 21:55:09,323 [main] TRACE UmlAttribute - created (4498) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.gnss = 4 +2024-09-07 21:55:09,323 [main] TRACE ValueRange - '10' has no separator indicating range. +2024-09-07 21:55:09,323 [main] TRACE UmlAttribute - created (4500) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.applicationProtocol = 10 +2024-09-07 21:55:09,323 [main] TRACE ValueRange - '11' has no separator indicating range. +2024-09-07 21:55:09,323 [main] TRACE UmlAttribute - created (4504) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.ntpOnts = 11 +2024-09-07 21:55:09,323 [main] INFO EaModelBuilder - creating in-memory sub-classes recursively ... +2024-09-07 21:55:09,323 [main] TRACE UmlClass - created (760) OTHER_CIM CIM class Abstract Types::BooleanValue, 1 superclasses=[AbstractBaseType] +2024-09-07 21:55:09,324 [main] TRACE UmlClass - created (734) OTHER_CIM CIM class Abstract Types::Integer, 1 superclasses=[AbstractBaseType] +2024-09-07 21:55:09,324 [main] TRACE UmlClass - created (728) OTHER_CIM CIM class Abstract Types::BooleanValueTs, 1 superclasses=[AbstractBaseType] +2024-09-07 21:55:09,324 [main] TRACE UmlClass - created (731) OTHER_CIM CIM class Abstract Types::CounterTs, 1 superclasses=[AbstractBaseType] +2024-09-07 21:55:09,324 [main] TRACE UmlClass - created (739) OTHER_CIM CIM class Abstract Types::Floating, 1 superclasses=[AbstractBaseType] +2024-09-07 21:55:09,324 [main] TRACE UmlClass - created (740) OTHER_CIM CIM class Abstract Types::FloatingTs, 1 superclasses=[AbstractBaseType] +2024-09-07 21:55:09,324 [main] TRACE UmlClass - created (735) OTHER_CIM CIM class Abstract Types::IntegerTs, 1 superclasses=[AbstractBaseType] +2024-09-07 21:55:09,324 [main] TRACE UmlClass - created (764) OTHER_CIM CIM class Abstract Types::CharString, 1 superclasses=[AbstractBaseType] +2024-09-07 21:55:09,324 [main] TRACE UmlClass - created (860) OTHER_CIM CIM class Abstract Types::CharStringTs, 1 superclasses=[AbstractBaseType] +2024-09-07 21:55:09,324 [main] TRACE UmlClass - created (804) OTHER_CIM CIM class Abstract Types::Timestamp, 1 superclasses=[AbstractBaseType] +2024-09-07 21:55:09,325 [main] TRACE UmlClass - created (782) OTHER_CIM CIM class Abstract Types::Selector, 1 superclasses=[AbstractBaseType] +2024-09-07 21:55:09,325 [main] TRACE UmlClass - created (786) OTHER_CIM CIM class Abstract Types::MacAddress, 1 superclasses=[AbstractBaseType] +2024-09-07 21:55:09,325 [main] TRACE UmlClass - created (956) OTHER_CIM CIM class Abstract Types::InetAddressType, 1 superclasses=[AbstractBaseType] +2024-09-07 21:55:09,325 [main] TRACE UmlClass - created (784) OTHER_CIM CIM class Abstract Types::InetAddress, 1 superclasses=[AbstractBaseType] +2024-09-07 21:55:09,325 [main] TRACE UmlClass - created (974) OTHER_CIM CIM class Abstract Types::EntityIndex, 1 superclasses=[AbstractBaseType] +2024-09-07 21:55:09,325 [main] TRACE UmlClass - created (774) OTHER_CIM CIM class Abstract Types::CntRs, 1 superclasses=[AbstractBaseType] +2024-09-07 21:55:09,325 [main] TRACE UmlClass - created (766) OTHER_CIM CIM class EnumeratedTypes::AppDatStType, 1 superclasses=[AbstractBaseType] +2024-09-07 21:55:09,326 [main] TRACE UmlClass - created (1036) OTHER_CIM CIM class EnumeratedTypes::PhyHealthType, 1 superclasses=[AbstractBaseType] +2024-09-07 21:55:09,326 [main] TRACE UmlClass - created (854) OTHER_CIM CIM class EnumeratedTypes::ExtType, 1 superclasses=[AbstractBaseType] +2024-09-07 21:55:09,326 [main] TRACE UmlClass - created (866) OTHER_CIM CIM class EnumeratedTypes::IntType, 1 superclasses=[AbstractBaseType] +2024-09-07 21:55:09,326 [main] TRACE UmlClass - created (960) OTHER_CIM CIM class EnumeratedTypes::EventType, 1 superclasses=[AbstractBaseType] +2024-09-07 21:55:09,326 [main] TRACE UmlClass - created (858) OTHER_CIM CIM class EnumeratedTypes::PSPAccType, 1 superclasses=[AbstractBaseType] +2024-09-07 21:55:09,326 [main] TRACE UmlClass - created (780) OTHER_CIM CIM class EnumeratedTypes::ProtIdType, 1 superclasses=[AbstractBaseType] +2024-09-07 21:55:09,326 [main] TRACE UmlClass - created (776) OTHER_CIM CIM class EnumeratedTypes::TimSyncIssueType, 1 superclasses=[AbstractBaseType] +2024-09-07 21:55:09,326 [main] TRACE UmlClass - created (1013) OTHER_CIM CIM class EnumeratedTypes::SecurityProfileType, 1 superclasses=[AbstractBaseType] +2024-09-07 21:55:09,326 [main] TRACE UmlClass - created (777) OTHER_CIM CIM class EnumeratedTypes::TimSyncSrcType, 1 superclasses=[AbstractBaseType] +2024-09-07 21:55:09,326 [main] TRACE UmlClass - created (778) OTHER_CIM CIM class EnumeratedTypes::LnkType, 1 superclasses=[AbstractBaseType] +2024-09-07 21:55:09,326 [main] TRACE UmlClass - created (41) OTHER_CIM CIM class <> Environmental Agent::Environmental, 1 superclasses=[AbstractAgent] +2024-09-07 21:55:09,326 [main] TRACE UmlClass - created (616) OTHER_CIM CIM class <> Environmental Agent::PSUPEntry, 1 superclasses=[AbstractAgent] +2024-09-07 21:55:09,327 [main] TRACE UmlClass - created (903) OTHER_CIM CIM class <> Environmental Agent::Notification, 1 superclasses=[AbstractAgent] +2024-09-07 21:55:09,327 [main] TRACE UmlClass - created (874) OTHER_CIM CIM class <> Environmental Agent::SecurityNotification, 1 superclasses=[AbstractAgent] +2024-09-07 21:55:09,327 [main] TRACE UmlClass - created (44) OTHER_CIM CIM class <> IED Agent::IED, 1 superclasses=[AbstractAgent] +2024-09-07 21:55:09,327 [main] TRACE UmlClass - created (832) OTHER_CIM CIM class <> IED Agent::CPUEntry, 1 superclasses=[AbstractAgent] +2024-09-07 21:55:09,327 [main] TRACE UmlClass - created (850) OTHER_CIM CIM class <> IED Agent::EXTEntry, 1 superclasses=[AbstractAgent] +2024-09-07 21:55:09,327 [main] TRACE UmlClass - created (862) OTHER_CIM CIM class <> IED Agent::STOREEntry, 1 superclasses=[AbstractAgent] +2024-09-07 21:55:09,327 [main] TRACE UmlClass - created (911) OTHER_CIM CIM class <> IED Agent::Notification, 1 superclasses=[AbstractAgent] +2024-09-07 21:55:09,327 [main] TRACE UmlClass - created (912) OTHER_CIM CIM class <> IED Agent::SecurityNotification, 1 superclasses=[AbstractAgent] +2024-09-07 21:55:09,327 [main] TRACE UmlClass - created (1032) OTHER_CIM CIM class Common objects::CommonProtocolInfo, 1 superclasses=[AbstractAgent] +2024-09-07 21:55:09,327 [main] TRACE UmlClass - created (1075) OTHER_CIM CIM class IEC62351-3 ed.2 Agent::IEC62351-3ed2security, 1 superclasses=[AbstractAgent] +2024-09-07 21:55:09,327 [main] TRACE UmlClass - created (1080) OTHER_CIM CIM class IEC62351-3 ed.2 Agent::TLSSession, 3 superclasses=[AbstractAgent, CommonProtocolInfo, IEC62351-3ed2security] +2024-09-07 21:55:09,327 [main] TRACE UmlClass - created (1079) OTHER_CIM CIM class <> IEC62351-3 ed.2 Agent::ClientTLS, 1 superclasses=[TLSSession] +2024-09-07 21:55:09,328 [main] TRACE UmlClass - created (1077) OTHER_CIM CIM class <> IEC62351-3 ed.2 Agent::ServerTLS, 1 superclasses=[TLSSession] +2024-09-07 21:55:09,328 [main] TRACE UmlClass - created (808) OTHER_CIM CIM class IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, 1 superclasses=[AbstractAgent] +2024-09-07 21:55:09,328 [main] TRACE UmlClass - created (584) OTHER_CIM CIM class IEEE 1815 and IEC 60870-5 Agent::Association, 3 superclasses=[AbstractAgent, 60870andDNPProtocolInfo, CommonProtocolInfo] +2024-09-07 21:55:09,328 [main] TRACE UmlClass - created (820) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent::MasterAssociation, 1 superclasses=[Association] +2024-09-07 21:55:09,328 [main] TRACE UmlClass - created (821) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent::OutstationAssociation, 1 superclasses=[Association] +2024-09-07 21:55:09,328 [main] TRACE UmlClass - created (1063) OTHER_CIM CIM class IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, 1 superclasses=[AbstractAgent] +2024-09-07 21:55:09,328 [main] TRACE UmlClass - created (1058) OTHER_CIM CIM class IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, 2 superclasses=[AbstractAgent, IEC62351part5] +2024-09-07 21:55:09,328 [main] TRACE UmlClass - created (1059) OTHER_CIM CIM class IEEE 1815 and IEC 60870-5 Agent - ed2::Association, 3 superclasses=[CommonProtocolInfo, AbstractAgent, 60870andDNPProtocolInfoEd2] +2024-09-07 21:55:09,328 [main] TRACE UmlClass - created (1057) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent - ed2::MasterAssociation, 1 superclasses=[Association] +2024-09-07 21:55:09,328 [main] TRACE UmlClass - created (1056) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent - ed2::OutstationAssociation, 1 superclasses=[Association] +2024-09-07 21:55:09,328 [main] TRACE UmlClass - created (818) OTHER_CIM CIM class MMS::MMSProtocolInfo, 1 superclasses=[AbstractAgent] +2024-09-07 21:55:09,328 [main] TRACE UmlClass - created (693) OTHER_CIM CIM class <> MMS::MMSAssociation, 2 superclasses=[MMSProtocolInfo, CommonProtocolInfo] +2024-09-07 21:55:09,328 [main] TRACE UmlClass - created (1076) OTHER_CIM CIM class <> IEC62351-3 ed.2 Agent::Summary, 1 superclasses=[IEC62351-3ed2security] +2024-09-07 21:55:09,329 [main] TRACE UmlClass - created (1078) OTHER_CIM CIM class <> IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification, 1 superclasses=[AbstractAgent] +2024-09-07 21:55:09,329 [main] TRACE UmlClass - created (576) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent::Summary, 1 superclasses=[60870andDNPProtocolInfo] +2024-09-07 21:55:09,329 [main] TRACE UmlClass - created (914) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, 1 superclasses=[AbstractAgent] +2024-09-07 21:55:09,329 [main] TRACE UmlClass - created (915) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, 1 superclasses=[AbstractAgent] +2024-09-07 21:55:09,329 [main] TRACE UmlClass - created (1060) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, 1 superclasses=[60870andDNPProtocolInfoEd2] +2024-09-07 21:55:09,329 [main] TRACE UmlClass - created (1055) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2, 1 superclasses=[AbstractAgent] +2024-09-07 21:55:09,329 [main] TRACE UmlClass - created (1061) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2, 1 superclasses=[AbstractAgent] +2024-09-07 21:55:09,329 [main] TRACE UmlClass - created (152) OTHER_CIM CIM class <> ACSI::ACSISummary, 1 superclasses=[AbstractAgent] +2024-09-07 21:55:09,329 [main] TRACE UmlClass - created (691) OTHER_CIM CIM class <> MMS::MMSProvider, 1 superclasses=[MMSProtocolInfo] +2024-09-07 21:55:09,329 [main] TRACE UmlClass - created (920) OTHER_CIM CIM class <> MMS::MMSSecurityNotification, 1 superclasses=[AbstractAgent] +2024-09-07 21:55:09,330 [main] TRACE UmlClass - created (921) OTHER_CIM CIM class <> MMS::MMSNotification, 1 superclasses=[AbstractAgent] +2024-09-07 21:55:09,330 [main] TRACE UmlClass - created (1025) OTHER_CIM CIM class SV and GSE common objects::GSEandSVCommon, 1 superclasses=[AbstractAgent] +2024-09-07 21:55:09,330 [main] TRACE UmlClass - created (1026) OTHER_CIM CIM class SV and GSE common objects::GSEandSVPublisherAssociation, 1 superclasses=[GSEandSVCommon] +2024-09-07 21:55:09,330 [main] TRACE UmlClass - created (994) OTHER_CIM CIM class <> SV::SVPublisherAssociationIP, 1 superclasses=[GSEandSVPublisherAssociation] +2024-09-07 21:55:09,330 [main] TRACE UmlClass - created (995) OTHER_CIM CIM class <> SV::SVPublisherAssociationL2, 1 superclasses=[GSEandSVPublisherAssociation] +2024-09-07 21:55:09,330 [main] TRACE UmlClass - created (796) OTHER_CIM CIM class <> GSE::GSEPublisherAssociationIP, 1 superclasses=[GSEandSVPublisherAssociation] +2024-09-07 21:55:09,330 [main] TRACE UmlClass - created (984) OTHER_CIM CIM class <> GSE::GSEPublisherAssociationL2, 1 superclasses=[GSEandSVPublisherAssociation] +2024-09-07 21:55:09,330 [main] TRACE UmlClass - created (1027) OTHER_CIM CIM class SV and GSE common objects::GSEandSVSubscriberAssociation, 1 superclasses=[GSEandSVCommon] +2024-09-07 21:55:09,330 [main] TRACE UmlClass - created (998) OTHER_CIM CIM class <> SV::SVSubcriberAssociationIP, 1 superclasses=[GSEandSVSubscriberAssociation] +2024-09-07 21:55:09,330 [main] TRACE UmlClass - created (999) OTHER_CIM CIM class <> SV::SVSubcriberAssociationL2, 1 superclasses=[GSEandSVSubscriberAssociation] +2024-09-07 21:55:09,330 [main] TRACE UmlClass - created (986) OTHER_CIM CIM class GSE::GSESubscriberAssociation, 1 superclasses=[GSEandSVSubscriberAssociation] +2024-09-07 21:55:09,330 [main] TRACE UmlClass - created (979) OTHER_CIM CIM class <> GSE::GSESubcriberAssociationIP, 1 superclasses=[GSESubscriberAssociation] +2024-09-07 21:55:09,330 [main] TRACE UmlClass - created (977) OTHER_CIM CIM class <> GSE::GSESubcriberAssociationL2, 1 superclasses=[GSESubscriberAssociation] +2024-09-07 21:55:09,330 [main] TRACE UmlClass - created (1002) OTHER_CIM CIM class <> SV::SVProvider, 1 superclasses=[GSEandSVCommon] +2024-09-07 21:55:09,330 [main] TRACE UmlClass - created (997) OTHER_CIM CIM class <> SV::SVNotification, 1 superclasses=[GSEandSVCommon] +2024-09-07 21:55:09,330 [main] TRACE UmlClass - created (794) OTHER_CIM CIM class <> GSE::GSEProvider, 1 superclasses=[GSEandSVCommon] +2024-09-07 21:55:09,331 [main] TRACE UmlClass - created (930) OTHER_CIM CIM class <> GSE::GSENotification, 1 superclasses=[GSEandSVCommon] +2024-09-07 21:55:09,331 [main] TRACE UmlClass - created (609) OTHER_CIM CIM class <> Clocks Agent::Clock, 1 superclasses=[AbstractAgent] +2024-09-07 21:55:09,331 [main] TRACE UmlClass - created (608) OTHER_CIM CIM class <> Clocks Agent::ClockEntry, 1 superclasses=[AbstractAgent] +2024-09-07 21:55:09,331 [main] TRACE UmlClass - created (944) OTHER_CIM CIM class <> Clocks Agent::SecurityNotification, 1 superclasses=[AbstractAgent] +2024-09-07 21:55:09,331 [main] TRACE UmlClass - created (844) OTHER_CIM CIM class Interfaces Agent::Interface, 1 superclasses=[AbstractAgent] +2024-09-07 21:55:09,331 [main] TRACE UmlClass - created (838) OTHER_CIM CIM class <> Interfaces Agent::ETHEntry, 1 superclasses=[Interface] +2024-09-07 21:55:09,331 [main] TRACE UmlClass - created (842) OTHER_CIM CIM class <> Interfaces Agent::KEYEntry, 1 superclasses=[Interface] +2024-09-07 21:55:09,331 [main] TRACE UmlClass - created (836) OTHER_CIM CIM class <> Interfaces Agent::SEREntry, 1 superclasses=[Interface] +2024-09-07 21:55:09,331 [main] TRACE UmlClass - created (847) OTHER_CIM CIM class <> Interfaces Agent::ALGEntry, 1 superclasses=[Interface] +2024-09-07 21:55:09,331 [main] TRACE UmlClass - created (840) OTHER_CIM CIM class <> Interfaces Agent::USBEntry, 1 superclasses=[Interface] +2024-09-07 21:55:09,331 [main] TRACE UmlClass - created (834) OTHER_CIM CIM class <> Interfaces Agent::Interfaces, 1 superclasses=[AbstractAgent] +2024-09-07 21:55:09,331 [main] TRACE UmlClass - created (946) OTHER_CIM CIM class <> Interfaces Agent::Notification, 1 superclasses=[AbstractAgent] +2024-09-07 21:55:09,331 [main] INFO EaModelBuilder - reordering in-memory classes in packages ... +2024-09-07 21:55:09,332 [main] INFO EaModelBuilder - creating in-memory class' attributes, operations and constraints ... +2024-09-07 21:55:09,333 [main] ERROR UmlAttribute - unclassified CIM attribute: (3451) OTHER_CIM CIM [0..1] null nsmAgent::Class.isActive: NullCIM::NullCIM +2024-09-07 21:55:09,334 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,334 [main] TRACE UmlAttribute - created (3451) OTHER_CIM CIM [0..1] attribute nsmAgent::Class.isActive: NullCIM::NullCIM +2024-09-07 21:55:09,334 [main] ERROR UmlAttribute - unclassified CIM attribute: (3982) OTHER_CIM CIM [0..1] null nsmAgent::Class.isActive: NullCIM::NullCIM +2024-09-07 21:55:09,334 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,334 [main] TRACE UmlAttribute - created (3982) OTHER_CIM CIM [0..1] attribute nsmAgent::Class.isActive: NullCIM::NullCIM +2024-09-07 21:55:09,334 [main] ERROR UmlAttribute - unclassified CIM attribute: (3442) OTHER_CIM CIM [0..1] null nsmAgent::Class.isActive: NullCIM::NullCIM +2024-09-07 21:55:09,334 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,334 [main] TRACE UmlAttribute - created (3442) OTHER_CIM CIM [0..1] attribute nsmAgent::Class.isActive: NullCIM::NullCIM +2024-09-07 21:55:09,335 [main] ERROR UmlAttribute - unclassified CIM attribute: (3454) OTHER_CIM CIM [0..1] null nsmAgent::health.Version: NullCIM::NullCIM = 0 +2024-09-07 21:55:09,335 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 21:55:09,335 [main] TRACE UmlAttribute - created (3454) OTHER_CIM CIM [0..1] attribute nsmAgent::health.Version: NullCIM::NullCIM = 0 +2024-09-07 21:55:09,335 [main] ERROR UmlAttribute - unclassified CIM attribute: (3453) OTHER_CIM CIM [0..1] null nsmAgent::identity.Version: NullCIM::NullCIM = 0 +2024-09-07 21:55:09,335 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 21:55:09,335 [main] TRACE UmlAttribute - created (3453) OTHER_CIM CIM [0..1] attribute nsmAgent::identity.Version: NullCIM::NullCIM = 0 +2024-09-07 21:55:09,335 [main] ERROR UmlAttribute - unclassified CIM attribute: (3452) OTHER_CIM CIM [0..1] null nsmAgent::index.Version: NullCIM::NullCIM = 0 +2024-09-07 21:55:09,335 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 21:55:09,335 [main] TRACE UmlAttribute - created (3452) OTHER_CIM CIM [0..1] attribute nsmAgent::index.Version: NullCIM::NullCIM = 0 +2024-09-07 21:55:09,335 [main] ERROR UmlAttribute - unclassified CIM attribute: (3448) OTHER_CIM CIM [0..1] null nsmAgent::nsmAgent.mibPrefix: NullCIM::NullCIM +2024-09-07 21:55:09,336 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,336 [main] TRACE UmlAttribute - created (3448) OTHER_CIM CIM [0..1] attribute nsmAgent::nsmAgent.mibPrefix: NullCIM::NullCIM +2024-09-07 21:55:09,336 [main] ERROR UmlAttribute - unclassified CIM attribute: (3449) OTHER_CIM CIM [0..1] null nsmAgent::nsmAgent.objectIdentity: NullCIM::NullCIM +2024-09-07 21:55:09,336 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,336 [main] TRACE UmlAttribute - created (3449) OTHER_CIM CIM [0..1] attribute nsmAgent::nsmAgent.objectIdentity: NullCIM::NullCIM +2024-09-07 21:55:09,336 [main] ERROR UmlAttribute - unclassified CIM attribute: (3450) OTHER_CIM CIM [0..1] null nsmAgent::nsmAgent.objectBranchId: NullCIM::NullCIM +2024-09-07 21:55:09,336 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,336 [main] TRACE UmlAttribute - created (3450) OTHER_CIM CIM [0..1] attribute nsmAgent::nsmAgent.objectBranchId: NullCIM::NullCIM +2024-09-07 21:55:09,336 [main] ERROR UmlAttribute - unclassified CIM attribute: (3979) OTHER_CIM CIM [0..1] null nsmAgent::nsmEntry.mibPrefix: NullCIM::NullCIM +2024-09-07 21:55:09,336 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,336 [main] TRACE UmlAttribute - created (3979) OTHER_CIM CIM [0..1] attribute nsmAgent::nsmEntry.mibPrefix: NullCIM::NullCIM +2024-09-07 21:55:09,336 [main] ERROR UmlAttribute - unclassified CIM attribute: (3980) OTHER_CIM CIM [0..1] null nsmAgent::nsmEntry.objectIdentity: NullCIM::NullCIM +2024-09-07 21:55:09,337 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,337 [main] TRACE UmlAttribute - created (3980) OTHER_CIM CIM [0..1] attribute nsmAgent::nsmEntry.objectIdentity: NullCIM::NullCIM +2024-09-07 21:55:09,337 [main] ERROR UmlAttribute - unclassified CIM attribute: (3981) OTHER_CIM CIM [0..1] null nsmAgent::nsmEntry.objectBranchId: NullCIM::NullCIM +2024-09-07 21:55:09,337 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,337 [main] TRACE UmlAttribute - created (3981) OTHER_CIM CIM [0..1] attribute nsmAgent::nsmEntry.objectBranchId: NullCIM::NullCIM +2024-09-07 21:55:09,337 [main] ERROR UmlAttribute - unclassified CIM attribute: (3443) OTHER_CIM CIM [0..1] null nsmAgent::nsmEvent.mibPrefix: NullCIM::NullCIM +2024-09-07 21:55:09,337 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,337 [main] TRACE UmlAttribute - created (3443) OTHER_CIM CIM [0..1] attribute nsmAgent::nsmEvent.mibPrefix: NullCIM::NullCIM +2024-09-07 21:55:09,337 [main] ERROR UmlAttribute - unclassified CIM attribute: (3444) OTHER_CIM CIM [0..1] null nsmAgent::nsmEvent.objectIdentity: NullCIM::NullCIM +2024-09-07 21:55:09,337 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,337 [main] TRACE UmlAttribute - created (3444) OTHER_CIM CIM [0..1] attribute nsmAgent::nsmEvent.objectIdentity: NullCIM::NullCIM +2024-09-07 21:55:09,337 [main] ERROR UmlAttribute - unclassified CIM attribute: (3445) OTHER_CIM CIM [0..1] null nsmAgent::nsmEvent.objectBranchId: NullCIM::NullCIM +2024-09-07 21:55:09,338 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,338 [main] TRACE UmlAttribute - created (3445) OTHER_CIM CIM [0..1] attribute nsmAgent::nsmEvent.objectBranchId: NullCIM::NullCIM +2024-09-07 21:55:09,338 [main] ERROR UmlAttribute - unclassified CIM attribute: (3455) OTHER_CIM CIM [0..1] null nsmAgent::performance.Version: NullCIM::NullCIM = 0 +2024-09-07 21:55:09,338 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 21:55:09,338 [main] TRACE UmlAttribute - created (3455) OTHER_CIM CIM [0..1] attribute nsmAgent::performance.Version: NullCIM::NullCIM = 0 +2024-09-07 21:55:09,338 [main] ERROR UmlAttribute - unclassified CIM attribute: (3447) OTHER_CIM CIM [0..1] null nsmAgent::protocol.Version: NullCIM::NullCIM = 0 +2024-09-07 21:55:09,338 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 21:55:09,338 [main] TRACE UmlAttribute - created (3447) OTHER_CIM CIM [0..1] attribute nsmAgent::protocol.Version: NullCIM::NullCIM = 0 +2024-09-07 21:55:09,338 [main] ERROR UmlAttribute - unclassified CIM attribute: (3446) OTHER_CIM CIM [0..1] null nsmAgent::security.Version: NullCIM::NullCIM = 0 +2024-09-07 21:55:09,338 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 21:55:09,338 [main] TRACE UmlAttribute - created (3446) OTHER_CIM CIM [0..1] attribute nsmAgent::security.Version: NullCIM::NullCIM = 0 +2024-09-07 21:55:09,338 [main] ERROR UmlAttribute - unclassified CIM attribute: (3456) OTHER_CIM CIM [0..1] null nsmAgent::setvalue.Version: NullCIM::NullCIM = 0 +2024-09-07 21:55:09,338 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 21:55:09,338 [main] TRACE UmlAttribute - created (3456) OTHER_CIM CIM [0..1] attribute nsmAgent::setvalue.Version: NullCIM::NullCIM = 0 +2024-09-07 21:55:09,338 [main] ERROR UmlAttribute - unclassified CIM attribute: (3457) OTHER_CIM CIM [0..1] null nsmAgent::table.Version: NullCIM::NullCIM = 0 +2024-09-07 21:55:09,339 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 21:55:09,339 [main] TRACE UmlAttribute - created (3457) OTHER_CIM CIM [0..1] attribute nsmAgent::table.Version: NullCIM::NullCIM = 0 +2024-09-07 21:55:09,339 [main] ERROR UmlAttribute - unclassified CIM attribute: (3610) OTHER_CIM CIM [0..1] null nsmAgent::trap.Version: NullCIM::NullCIM = 0 +2024-09-07 21:55:09,339 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-07 21:55:09,339 [main] TRACE UmlAttribute - created (3610) OTHER_CIM CIM [0..1] attribute nsmAgent::trap.Version: NullCIM::NullCIM = 0 +2024-09-07 21:55:09,339 [main] ERROR UmlAttribute - unclassified CIM attribute: (2741) OTHER_CIM CIM [1..1] null BaseTypes::AbsoluteDateTime.value: NullCIM::NullCIM = OCTET STRING (SIZE(8..11)) +2024-09-07 21:55:09,339 [main] TRACE ValueRange - 'OCTET STRING (SIZE(8..11))' has no separator indicating range. +2024-09-07 21:55:09,339 [main] TRACE UmlAttribute - created (2741) OTHER_CIM CIM [1..1] attribute BaseTypes::AbsoluteDateTime.value: NullCIM::NullCIM = OCTET STRING (SIZE(8..11)) +2024-09-07 21:55:09,339 [main] ERROR UmlAttribute - unclassified CIM attribute: (2679) OTHER_CIM CIM [1..1] null BaseTypes::Counter32 .value: NullCIM::NullCIM = Counter32 +2024-09-07 21:55:09,339 [main] TRACE ValueRange - 'Counter32' has no separator indicating range. +2024-09-07 21:55:09,339 [main] TRACE UmlAttribute - created (2679) OTHER_CIM CIM [1..1] attribute BaseTypes::Counter32 .value: NullCIM::NullCIM = Counter32 +2024-09-07 21:55:09,340 [main] ERROR UmlAttribute - unclassified CIM attribute: (2681) OTHER_CIM CIM [1..1] null BaseTypes::DateAndTime.value: NullCIM::NullCIM = OCTET STRING (SIZE(8..11)) +2024-09-07 21:55:09,340 [main] TRACE ValueRange - 'OCTET STRING (SIZE(8..11))' has no separator indicating range. +2024-09-07 21:55:09,340 [main] TRACE UmlAttribute - created (2681) OTHER_CIM CIM [1..1] attribute BaseTypes::DateAndTime.value: NullCIM::NullCIM = OCTET STRING (SIZE(8..11)) +2024-09-07 21:55:09,340 [main] ERROR UmlAttribute - unclassified CIM attribute: (2683) OTHER_CIM CIM [1..1] null BaseTypes::DisplayString.value: NullCIM::NullCIM = DisplayString +2024-09-07 21:55:09,340 [main] TRACE ValueRange - 'DisplayString' has no separator indicating range. +2024-09-07 21:55:09,340 [main] TRACE UmlAttribute - created (2683) OTHER_CIM CIM [1..1] attribute BaseTypes::DisplayString.value: NullCIM::NullCIM = DisplayString +2024-09-07 21:55:09,340 [main] ERROR UmlAttribute - unclassified CIM attribute: (2682) OTHER_CIM CIM [1..1] null BaseTypes::Float32TC.value: NullCIM::NullCIM = OCTET STRING (SIZE(4)) +2024-09-07 21:55:09,340 [main] TRACE ValueRange - 'OCTET STRING (SIZE(4))' has no separator indicating range. +2024-09-07 21:55:09,340 [main] TRACE UmlAttribute - created (2682) OTHER_CIM CIM [1..1] attribute BaseTypes::Float32TC.value: NullCIM::NullCIM = OCTET STRING (SIZE(4)) +2024-09-07 21:55:09,340 [main] ERROR UmlAttribute - unclassified CIM attribute: (2678) OTHER_CIM CIM [1..1] null BaseTypes::Gauge32.value: NullCIM::NullCIM = Gauge32 +2024-09-07 21:55:09,341 [main] TRACE ValueRange - 'Gauge32' has no separator indicating range. +2024-09-07 21:55:09,341 [main] TRACE UmlAttribute - created (2678) OTHER_CIM CIM [1..1] attribute BaseTypes::Gauge32.value: NullCIM::NullCIM = Gauge32 +2024-09-07 21:55:09,341 [main] ERROR UmlAttribute - unclassified CIM attribute: (3682) OTHER_CIM CIM [1..1] null BaseTypes::InetAddress.value: NullCIM::NullCIM = DisplayString (SIZE(0..255)) +2024-09-07 21:55:09,341 [main] TRACE ValueRange - 'DisplayString (SIZE(0..255))' has no separator indicating range. +2024-09-07 21:55:09,341 [main] TRACE UmlAttribute - created (3682) OTHER_CIM CIM [1..1] attribute BaseTypes::InetAddress.value: NullCIM::NullCIM = DisplayString (SIZE(0..255)) +2024-09-07 21:55:09,341 [main] ERROR UmlAttribute - unclassified CIM attribute: (3719) OTHER_CIM CIM [1..1] null BaseTypes::MacAddress.value: NullCIM::NullCIM = DisplayString (SIZE(0..255)) +2024-09-07 21:55:09,341 [main] TRACE ValueRange - 'DisplayString (SIZE(0..255))' has no separator indicating range. +2024-09-07 21:55:09,341 [main] TRACE UmlAttribute - created (3719) OTHER_CIM CIM [1..1] attribute BaseTypes::MacAddress.value: NullCIM::NullCIM = DisplayString (SIZE(0..255)) +2024-09-07 21:55:09,341 [main] ERROR UmlAttribute - unclassified CIM attribute: (3723) OTHER_CIM CIM [1..1] null BaseTypes::EntityIndex.value: NullCIM::NullCIM = Integer32 +2024-09-07 21:55:09,342 [main] TRACE ValueRange - 'Integer32' has no separator indicating range. +2024-09-07 21:55:09,342 [main] TRACE UmlAttribute - created (3723) OTHER_CIM CIM [1..1] attribute BaseTypes::EntityIndex.value: NullCIM::NullCIM = Integer32 +2024-09-07 21:55:09,342 [main] ERROR UmlAttribute - unclassified CIM attribute: (1397) OTHER_CIM CIM [1..1] null BaseTypes::Integer32.value: NullCIM::NullCIM = Integer32 +2024-09-07 21:55:09,342 [main] TRACE ValueRange - 'Integer32' has no separator indicating range. +2024-09-07 21:55:09,342 [main] TRACE UmlAttribute - created (1397) OTHER_CIM CIM [1..1] attribute BaseTypes::Integer32.value: NullCIM::NullCIM = Integer32 +2024-09-07 21:55:09,342 [main] ERROR UmlAttribute - unclassified CIM attribute: (3721) OTHER_CIM CIM [1..1] null BaseTypes::Unsigned32.value: NullCIM::NullCIM = Integer32 +2024-09-07 21:55:09,342 [main] TRACE ValueRange - 'Integer32' has no separator indicating range. +2024-09-07 21:55:09,342 [main] TRACE UmlAttribute - created (3721) OTHER_CIM CIM [1..1] attribute BaseTypes::Unsigned32.value: NullCIM::NullCIM = Integer32 +2024-09-07 21:55:09,342 [main] ERROR UmlAttribute - unclassified CIM attribute: (2680) OTHER_CIM CIM [1..1] null BaseTypes::TimeTicks.value: NullCIM::NullCIM = TimeTicks +2024-09-07 21:55:09,342 [main] TRACE ValueRange - 'TimeTicks' has no separator indicating range. +2024-09-07 21:55:09,342 [main] TRACE UmlAttribute - created (2680) OTHER_CIM CIM [1..1] attribute BaseTypes::TimeTicks.value: NullCIM::NullCIM = TimeTicks +2024-09-07 21:55:09,342 [main] ERROR UmlAttribute - unclassified CIM attribute: (2685) OTHER_CIM CIM [1..1] null BaseTypes::TruthValue.value: NullCIM::NullCIM = TruthValue +2024-09-07 21:55:09,343 [main] TRACE ValueRange - 'TruthValue' has no separator indicating range. +2024-09-07 21:55:09,343 [main] TRACE UmlAttribute - created (2685) OTHER_CIM CIM [1..1] attribute BaseTypes::TruthValue.value: NullCIM::NullCIM = TruthValue +2024-09-07 21:55:09,343 [main] ERROR UmlAttribute - unclassified CIM attribute: (2987) OTHER_CIM CIM [1..1] null Abstract Types::BooleanValue.Value: BaseTypes::TruthValue +2024-09-07 21:55:09,343 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,343 [main] TRACE UmlAttribute - created (2987) OTHER_CIM CIM [1..1] attribute Abstract Types::BooleanValue.Value: BaseTypes::TruthValue +2024-09-07 21:55:09,343 [main] ERROR UmlAttribute - unclassified CIM attribute: (2915) OTHER_CIM CIM [1..1] null Abstract Types::BooleanValueTs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 21:55:09,343 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,343 [main] TRACE UmlAttribute - created (2915) OTHER_CIM CIM [1..1] attribute Abstract Types::BooleanValueTs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 21:55:09,343 [main] ERROR UmlAttribute - unclassified CIM attribute: (2916) OTHER_CIM CIM [1..1] null Abstract Types::BooleanValueTs.Value: BaseTypes::TruthValue +2024-09-07 21:55:09,343 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,343 [main] TRACE UmlAttribute - created (2916) OTHER_CIM CIM [1..1] attribute Abstract Types::BooleanValueTs.Value: BaseTypes::TruthValue +2024-09-07 21:55:09,344 [main] ERROR UmlAttribute - unclassified CIM attribute: (2921) OTHER_CIM CIM [1..1] null Abstract Types::CounterTs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 21:55:09,344 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,344 [main] TRACE UmlAttribute - created (2921) OTHER_CIM CIM [1..1] attribute Abstract Types::CounterTs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 21:55:09,344 [main] ERROR UmlAttribute - unclassified CIM attribute: (2922) OTHER_CIM CIM [1..1] null Abstract Types::CounterTs.Value: BaseTypes::Counter32 +2024-09-07 21:55:09,344 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,344 [main] TRACE UmlAttribute - created (2922) OTHER_CIM CIM [1..1] attribute Abstract Types::CounterTs.Value: BaseTypes::Counter32 +2024-09-07 21:55:09,344 [main] ERROR UmlAttribute - unclassified CIM attribute: (3004) OTHER_CIM CIM [1..1] null Abstract Types::CntRs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 21:55:09,344 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,344 [main] TRACE UmlAttribute - created (3004) OTHER_CIM CIM [1..1] attribute Abstract Types::CntRs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 21:55:09,344 [main] ERROR UmlAttribute - unclassified CIM attribute: (3003) OTHER_CIM CIM [1..1] null Abstract Types::CntRs.Value: BaseTypes::TruthValue +2024-09-07 21:55:09,344 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,345 [main] TRACE UmlAttribute - created (3003) OTHER_CIM CIM [1..1] attribute Abstract Types::CntRs.Value: BaseTypes::TruthValue +2024-09-07 21:55:09,345 [main] ERROR UmlAttribute - unclassified CIM attribute: (2937) OTHER_CIM CIM [1..1] null Abstract Types::Floating.Value: BaseTypes::Float32TC +2024-09-07 21:55:09,345 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,345 [main] TRACE UmlAttribute - created (2937) OTHER_CIM CIM [1..1] attribute Abstract Types::Floating.Value: BaseTypes::Float32TC +2024-09-07 21:55:09,345 [main] ERROR UmlAttribute - unclassified CIM attribute: (2939) OTHER_CIM CIM [1..1] null Abstract Types::FloatingTs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 21:55:09,345 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,345 [main] TRACE UmlAttribute - created (2939) OTHER_CIM CIM [1..1] attribute Abstract Types::FloatingTs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 21:55:09,345 [main] ERROR UmlAttribute - unclassified CIM attribute: (2940) OTHER_CIM CIM [1..1] null Abstract Types::FloatingTs.Value: BaseTypes::Float32TC +2024-09-07 21:55:09,345 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,345 [main] TRACE UmlAttribute - created (2940) OTHER_CIM CIM [1..1] attribute Abstract Types::FloatingTs.Value: BaseTypes::Float32TC +2024-09-07 21:55:09,345 [main] ERROR UmlAttribute - unclassified CIM attribute: (3724) OTHER_CIM CIM [1..1] null Abstract Types::EntityIndex.Value: BaseTypes::Unsigned32 +2024-09-07 21:55:09,346 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,346 [main] TRACE UmlAttribute - created (3724) OTHER_CIM CIM [1..1] attribute Abstract Types::EntityIndex.Value: BaseTypes::Unsigned32 +2024-09-07 21:55:09,346 [main] ERROR UmlAttribute - unclassified CIM attribute: (2928) OTHER_CIM CIM [1..1] null Abstract Types::Integer.Value: BaseTypes::Integer32 +2024-09-07 21:55:09,346 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,346 [main] TRACE UmlAttribute - created (2928) OTHER_CIM CIM [1..1] attribute Abstract Types::Integer.Value: BaseTypes::Integer32 +2024-09-07 21:55:09,346 [main] ERROR UmlAttribute - unclassified CIM attribute: (2930) OTHER_CIM CIM [1..1] null Abstract Types::IntegerTs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 21:55:09,346 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,346 [main] TRACE UmlAttribute - created (2930) OTHER_CIM CIM [1..1] attribute Abstract Types::IntegerTs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 21:55:09,346 [main] ERROR UmlAttribute - unclassified CIM attribute: (2931) OTHER_CIM CIM [1..1] null Abstract Types::IntegerTs.Value: BaseTypes::Integer32 +2024-09-07 21:55:09,346 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,346 [main] TRACE UmlAttribute - created (2931) OTHER_CIM CIM [1..1] attribute Abstract Types::IntegerTs.Value: BaseTypes::Integer32 +2024-09-07 21:55:09,347 [main] ERROR UmlAttribute - unclassified CIM attribute: (3017) OTHER_CIM CIM [1..1] null Abstract Types::InetAddress.Value: BaseTypes::InetAddress +2024-09-07 21:55:09,347 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,347 [main] TRACE UmlAttribute - created (3017) OTHER_CIM CIM [1..1] attribute Abstract Types::InetAddress.Value: BaseTypes::InetAddress +2024-09-07 21:55:09,347 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,347 [main] TRACE UmlAttribute - created (3690) OTHER_CIM CIM [1..1] enumeration attribute Abstract Types::InetAddressType.Value: BaseTypes::InetAddressType +2024-09-07 21:55:09,347 [main] ERROR UmlAttribute - unclassified CIM attribute: (3019) OTHER_CIM CIM [1..1] null Abstract Types::MacAddress.Value: BaseTypes::MacAddress +2024-09-07 21:55:09,347 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,347 [main] TRACE UmlAttribute - created (3019) OTHER_CIM CIM [1..1] attribute Abstract Types::MacAddress.Value: BaseTypes::MacAddress +2024-09-07 21:55:09,347 [main] ERROR UmlAttribute - unclassified CIM attribute: (3015) OTHER_CIM CIM [1..1] null Abstract Types::Selector.Value: BaseTypes::DisplayString +2024-09-07 21:55:09,347 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,347 [main] TRACE UmlAttribute - created (3015) OTHER_CIM CIM [1..1] attribute Abstract Types::Selector.Value: BaseTypes::DisplayString +2024-09-07 21:55:09,347 [main] ERROR UmlAttribute - unclassified CIM attribute: (3083) OTHER_CIM CIM [1..1] null Abstract Types::Timestamp.TimeStamp: BaseTypes::DateAndTime +2024-09-07 21:55:09,347 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,347 [main] TRACE UmlAttribute - created (3083) OTHER_CIM CIM [1..1] attribute Abstract Types::Timestamp.TimeStamp: BaseTypes::DateAndTime +2024-09-07 21:55:09,348 [main] ERROR UmlAttribute - unclassified CIM attribute: (2989) OTHER_CIM CIM [1..1] null Abstract Types::CharString.Value: BaseTypes::DisplayString +2024-09-07 21:55:09,348 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,349 [main] TRACE UmlAttribute - created (2989) OTHER_CIM CIM [1..1] attribute Abstract Types::CharString.Value: BaseTypes::DisplayString +2024-09-07 21:55:09,349 [main] ERROR UmlAttribute - unclassified CIM attribute: (3380) OTHER_CIM CIM [1..1] null Abstract Types::CharStringTs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 21:55:09,349 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,350 [main] TRACE UmlAttribute - created (3380) OTHER_CIM CIM [1..1] attribute Abstract Types::CharStringTs.TimeStamp: BaseTypes::DateAndTime +2024-09-07 21:55:09,350 [main] ERROR UmlAttribute - unclassified CIM attribute: (3379) OTHER_CIM CIM [1..1] null Abstract Types::CharStringTs.Value: BaseTypes::DisplayString +2024-09-07 21:55:09,350 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,350 [main] TRACE UmlAttribute - created (3379) OTHER_CIM CIM [1..1] attribute Abstract Types::CharStringTs.Value: BaseTypes::DisplayString +2024-09-07 21:55:09,350 [main] ERROR UmlAttribute - unclassified CIM attribute: (2991) OTHER_CIM CIM [1..1] null EnumeratedTypes::AppDatStType.TimeStamp: BaseTypes::DateAndTime +2024-09-07 21:55:09,350 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,350 [main] TRACE UmlAttribute - created (2991) OTHER_CIM CIM [1..1] attribute EnumeratedTypes::AppDatStType.TimeStamp: BaseTypes::DateAndTime +2024-09-07 21:55:09,350 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,351 [main] TRACE UmlAttribute - created (2992) OTHER_CIM CIM [1..1] enumeration attribute <> EnumeratedTypes::AppDatStType.Value: EnumeratedTypes::AppDatStKind +2024-09-07 21:55:09,351 [main] ERROR UmlAttribute - unclassified CIM attribute: (4116) OTHER_CIM CIM [1..1] null EnumeratedTypes::PhyHealthType.TimeStamp: BaseTypes::DateAndTime +2024-09-07 21:55:09,351 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,351 [main] TRACE UmlAttribute - created (4116) OTHER_CIM CIM [1..1] attribute EnumeratedTypes::PhyHealthType.TimeStamp: BaseTypes::DateAndTime +2024-09-07 21:55:09,351 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,351 [main] TRACE UmlAttribute - created (4117) OTHER_CIM CIM [1..1] enumeration attribute <> EnumeratedTypes::PhyHealthType.Value: EnumeratedTypes::PhyHealthKind +2024-09-07 21:55:09,351 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,351 [main] TRACE UmlAttribute - created (3367) OTHER_CIM CIM [1..1] enumeration attribute EnumeratedTypes::ExtType.Value: EnumeratedTypes::ExtKind +2024-09-07 21:55:09,351 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,351 [main] TRACE UmlAttribute - created (3395) OTHER_CIM CIM [1..1] enumeration attribute EnumeratedTypes::IntType.Value: EnumeratedTypes::IntKind +2024-09-07 21:55:09,351 [main] ERROR UmlAttribute - unclassified CIM attribute: (3705) OTHER_CIM CIM [1..1] null EnumeratedTypes::EventType.TimeStamp: BaseTypes::DateAndTime +2024-09-07 21:55:09,352 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,352 [main] TRACE UmlAttribute - created (3705) OTHER_CIM CIM [1..1] attribute EnumeratedTypes::EventType.TimeStamp: BaseTypes::DateAndTime +2024-09-07 21:55:09,352 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,352 [main] TRACE UmlAttribute - created (3704) OTHER_CIM CIM [1..1] enumeration attribute EnumeratedTypes::EventType.Value: EnumeratedTypes::EventKind +2024-09-07 21:55:09,352 [main] ERROR UmlAttribute - unclassified CIM attribute: (3378) OTHER_CIM CIM [1..1] null EnumeratedTypes::PSPAccType.Timestamp: BaseTypes::DateAndTime +2024-09-07 21:55:09,352 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,352 [main] TRACE UmlAttribute - created (3378) OTHER_CIM CIM [1..1] attribute EnumeratedTypes::PSPAccType.Timestamp: BaseTypes::DateAndTime +2024-09-07 21:55:09,353 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,353 [main] TRACE UmlAttribute - created (3377) OTHER_CIM CIM [1..1] enumeration attribute EnumeratedTypes::PSPAccType.Value: EnumeratedTypes::PSPAccKind +2024-09-07 21:55:09,353 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,353 [main] TRACE UmlAttribute - created (3011) OTHER_CIM CIM [1..1] enumeration attribute EnumeratedTypes::ProtIdType.Value: EnumeratedTypes::ProtIdKind +2024-09-07 21:55:09,353 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,353 [main] TRACE UmlAttribute - created (3006) OTHER_CIM CIM [1..1] enumeration attribute EnumeratedTypes::TimSyncIssueType.Value: EnumeratedTypes::TimSyncIssueKind +2024-09-07 21:55:09,353 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,353 [main] TRACE UmlAttribute - created (3929) OTHER_CIM CIM [1..1] enumeration attribute EnumeratedTypes::SecurityProfileType.Value: EnumeratedTypes::SecurityProfileKind +2024-09-07 21:55:09,353 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,353 [main] TRACE UmlAttribute - created (3008) OTHER_CIM CIM [1..1] enumeration attribute EnumeratedTypes::TimSyncSrcType.Value: EnumeratedTypes::TimSyncSrcKind +2024-09-07 21:55:09,353 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,353 [main] TRACE UmlAttribute - created (3010) OTHER_CIM CIM [1..1] enumeration attribute EnumeratedTypes::LnkType.Value: EnumeratedTypes::LnkKind +2024-09-07 21:55:09,353 [main] ERROR UmlAttribute - unclassified CIM attribute: (2673) OTHER_CIM CIM const [1..1] null <> Environmental Agent::Environmental.AppDatSt: EnumeratedTypes::AppDatStType +2024-09-07 21:55:09,354 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,354 [main] TRACE UmlAttribute - created (2673) OTHER_CIM CIM const [1..1] attribute <> Environmental Agent::Environmental.AppDatSt: EnumeratedTypes::AppDatStType +2024-09-07 21:55:09,354 [main] ERROR UmlAttribute - unclassified CIM attribute: (596) OTHER_CIM CIM [0..1] null <> Environmental Agent::Environmental.CntRs: Abstract Types::CntRs +2024-09-07 21:55:09,354 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,354 [main] TRACE UmlAttribute - created (596) OTHER_CIM CIM [0..1] attribute <> Environmental Agent::Environmental.CntRs: Abstract Types::CntRs +2024-09-07 21:55:09,354 [main] ERROR UmlAttribute - unclassified CIM attribute: (3707) OTHER_CIM CIM const [1..1] null <> Environmental Agent::Environmental.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:55:09,354 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,354 [main] TRACE UmlAttribute - created (3707) OTHER_CIM CIM const [1..1] attribute <> Environmental Agent::Environmental.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:55:09,354 [main] ERROR UmlAttribute - unclassified CIM attribute: (2257) OTHER_CIM CIM const [0..1] null <> Environmental Agent::Environmental.PSPBld: Abstract Types::BooleanValueTs +2024-09-07 21:55:09,354 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,355 [main] TRACE UmlAttribute - created (2257) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::Environmental.PSPBld: Abstract Types::BooleanValueTs +2024-09-07 21:55:09,355 [main] ERROR UmlAttribute - unclassified CIM attribute: (2255) OTHER_CIM CIM const [1..1] null <> Environmental Agent::Environmental.PSPIed: Abstract Types::BooleanValueTs +2024-09-07 21:55:09,355 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,355 [main] TRACE UmlAttribute - created (2255) OTHER_CIM CIM const [1..1] attribute <> Environmental Agent::Environmental.PSPIed: Abstract Types::BooleanValueTs +2024-09-07 21:55:09,355 [main] ERROR UmlAttribute - unclassified CIM attribute: (2256) OTHER_CIM CIM const [1..1] null <> Environmental Agent::Environmental.PSPPanel: Abstract Types::BooleanValueTs +2024-09-07 21:55:09,355 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,355 [main] TRACE UmlAttribute - created (2256) OTHER_CIM CIM const [1..1] attribute <> Environmental Agent::Environmental.PSPPanel: Abstract Types::BooleanValueTs +2024-09-07 21:55:09,355 [main] ERROR UmlAttribute - unclassified CIM attribute: (2258) OTHER_CIM CIM const [0..1] null <> Environmental Agent::Environmental.PSPPerimeter: Abstract Types::BooleanValueTs +2024-09-07 21:55:09,356 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,356 [main] TRACE UmlAttribute - created (2258) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::Environmental.PSPPerimeter: Abstract Types::BooleanValueTs +2024-09-07 21:55:09,356 [main] ERROR UmlAttribute - unclassified CIM attribute: (152) OTHER_CIM CIM [0..*] null <
> Environmental Agent::Environmental.PSUP: Environmental Agent::PSUPEntry +2024-09-07 21:55:09,356 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,356 [main] TRACE UmlAttribute - created (152) OTHER_CIM CIM [0..*] attribute <
> Environmental Agent::Environmental.PSUP: Environmental Agent::PSUPEntry +2024-09-07 21:55:09,356 [main] ERROR UmlAttribute - unclassified CIM attribute: (2260) OTHER_CIM CIM const [0..1] null <> Environmental Agent::Environmental.PSUPLos: Abstract Types::Integer +2024-09-07 21:55:09,356 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,356 [main] TRACE UmlAttribute - created (2260) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::Environmental.PSUPLos: Abstract Types::Integer +2024-09-07 21:55:09,356 [main] ERROR UmlAttribute - unclassified CIM attribute: (2259) OTHER_CIM CIM const [1..1] null <> Environmental Agent::Environmental.PSUPOn: Abstract Types::IntegerTs +2024-09-07 21:55:09,357 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,357 [main] TRACE UmlAttribute - created (2259) OTHER_CIM CIM const [1..1] attribute <> Environmental Agent::Environmental.PSUPOn: Abstract Types::IntegerTs +2024-09-07 21:55:09,357 [main] ERROR UmlAttribute - unclassified CIM attribute: (3622) OTHER_CIM CIM [0..1] null <> Environmental Agent::Environmental.SecurityNotification: Environmental Agent::SecurityNotification +2024-09-07 21:55:09,357 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,357 [main] TRACE UmlAttribute - created (3622) OTHER_CIM CIM [0..1] attribute <> Environmental Agent::Environmental.SecurityNotification: Environmental Agent::SecurityNotification +2024-09-07 21:55:09,357 [main] ERROR UmlAttribute - unclassified CIM attribute: (3621) OTHER_CIM CIM [0..1] null <> Environmental Agent::Environmental.StateNotification: Environmental Agent::Notification +2024-09-07 21:55:09,357 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,357 [main] TRACE UmlAttribute - created (3621) OTHER_CIM CIM [0..1] attribute <> Environmental Agent::Environmental.StateNotification: Environmental Agent::Notification +2024-09-07 21:55:09,358 [main] ERROR UmlAttribute - unclassified CIM attribute: (4501) OTHER_CIM CIM [1..1] null <> Environmental Agent::Environmental.PSPRemote: Abstract Types::BooleanValueTs +2024-09-07 21:55:09,358 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,358 [main] TRACE UmlAttribute - created (4501) OTHER_CIM CIM [1..1] attribute <> Environmental Agent::Environmental.PSPRemote: Abstract Types::BooleanValueTs +2024-09-07 21:55:09,358 [main] ERROR UmlAttribute - unclassified CIM attribute: (2663) OTHER_CIM CIM [0..1] null <> Environmental Agent::PSUPEntry.CntRs: Abstract Types::CntRs +2024-09-07 21:55:09,358 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,358 [main] TRACE UmlAttribute - created (2663) OTHER_CIM CIM [0..1] attribute <> Environmental Agent::PSUPEntry.CntRs: Abstract Types::CntRs +2024-09-07 21:55:09,358 [main] ERROR UmlAttribute - unclassified CIM attribute: (2671) OTHER_CIM CIM const [0..1] null <> Environmental Agent::PSUPEntry.Descr: Abstract Types::CharString +2024-09-07 21:55:09,358 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,359 [main] TRACE UmlAttribute - created (2671) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::PSUPEntry.Descr: Abstract Types::CharString +2024-09-07 21:55:09,359 [main] ERROR UmlAttribute - unclassified CIM attribute: (3725) OTHER_CIM CIM const [0..1] null <> Environmental Agent::PSUPEntry.ID: Abstract Types::EntityIndex +2024-09-07 21:55:09,359 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,359 [main] TRACE UmlAttribute - created (3725) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::PSUPEntry.ID: Abstract Types::EntityIndex +2024-09-07 21:55:09,359 [main] ERROR UmlAttribute - unclassified CIM attribute: (2670) OTHER_CIM CIM const [0..1] null <> Environmental Agent::PSUPEntry.Name: Abstract Types::CharString +2024-09-07 21:55:09,359 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,359 [main] TRACE UmlAttribute - created (2670) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::PSUPEntry.Name: Abstract Types::CharString +2024-09-07 21:55:09,359 [main] ERROR UmlAttribute - unclassified CIM attribute: (2669) OTHER_CIM CIM const [0..1] null <> Environmental Agent::PSUPEntry.PSUPLos: Abstract Types::BooleanValueTs +2024-09-07 21:55:09,359 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,359 [main] TRACE UmlAttribute - created (2669) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::PSUPEntry.PSUPLos: Abstract Types::BooleanValueTs +2024-09-07 21:55:09,359 [main] ERROR UmlAttribute - unclassified CIM attribute: (2661) OTHER_CIM CIM const [0..1] null <> Environmental Agent::PSUPEntry.PwrLosCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,360 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,360 [main] TRACE UmlAttribute - created (2661) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::PSUPEntry.PwrLosCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,360 [main] ERROR UmlAttribute - unclassified CIM attribute: (2728) OTHER_CIM CIM const [0..1] null <> Environmental Agent::PSUPEntry.PwrOn: Abstract Types::BooleanValueTs +2024-09-07 21:55:09,360 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,360 [main] TRACE UmlAttribute - created (2728) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::PSUPEntry.PwrOn: Abstract Types::BooleanValueTs +2024-09-07 21:55:09,360 [main] ERROR UmlAttribute - unclassified CIM attribute: (3463) OTHER_CIM CIM const [0..1] null <> Environmental Agent::Notification.PSUPLos: Abstract Types::Integer +2024-09-07 21:55:09,360 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,360 [main] TRACE UmlAttribute - created (3463) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::Notification.PSUPLos: Abstract Types::Integer +2024-09-07 21:55:09,360 [main] ERROR UmlAttribute - unclassified CIM attribute: (3462) OTHER_CIM CIM const [0..1] null <> Environmental Agent::Notification.PSUPOn: Abstract Types::IntegerTs +2024-09-07 21:55:09,360 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,360 [main] TRACE UmlAttribute - created (3462) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::Notification.PSUPOn: Abstract Types::IntegerTs +2024-09-07 21:55:09,361 [main] ERROR UmlAttribute - unclassified CIM attribute: (4039) OTHER_CIM CIM const [0..1] null <> Environmental Agent::SecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:55:09,361 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,361 [main] TRACE UmlAttribute - created (4039) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::SecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:55:09,361 [main] ERROR UmlAttribute - unclassified CIM attribute: (3432) OTHER_CIM CIM const [0..1] null <> Environmental Agent::SecurityNotification.PSPBld: Abstract Types::Timestamp +2024-09-07 21:55:09,361 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,361 [main] TRACE UmlAttribute - created (3432) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::SecurityNotification.PSPBld: Abstract Types::Timestamp +2024-09-07 21:55:09,361 [main] ERROR UmlAttribute - unclassified CIM attribute: (3430) OTHER_CIM CIM const [0..1] null <> Environmental Agent::SecurityNotification.PSPIed: Abstract Types::Timestamp +2024-09-07 21:55:09,361 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,361 [main] TRACE UmlAttribute - created (3430) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::SecurityNotification.PSPIed: Abstract Types::Timestamp +2024-09-07 21:55:09,361 [main] ERROR UmlAttribute - unclassified CIM attribute: (3431) OTHER_CIM CIM const [0..1] null <> Environmental Agent::SecurityNotification.PSPPanel: Abstract Types::Timestamp +2024-09-07 21:55:09,362 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,362 [main] TRACE UmlAttribute - created (3431) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::SecurityNotification.PSPPanel: Abstract Types::Timestamp +2024-09-07 21:55:09,362 [main] ERROR UmlAttribute - unclassified CIM attribute: (3433) OTHER_CIM CIM const [0..1] null <> Environmental Agent::SecurityNotification.PSPPerimeter: Abstract Types::Timestamp +2024-09-07 21:55:09,362 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,362 [main] TRACE UmlAttribute - created (3433) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::SecurityNotification.PSPPerimeter: Abstract Types::Timestamp +2024-09-07 21:55:09,362 [main] ERROR UmlAttribute - unclassified CIM attribute: (159) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.AtkCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,362 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,362 [main] TRACE UmlAttribute - created (159) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.AtkCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,362 [main] ERROR UmlAttribute - unclassified CIM attribute: (593) OTHER_CIM CIM [0..1] null <> IED Agent::IED.CntRs: Abstract Types::CntRs +2024-09-07 21:55:09,362 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,362 [main] TRACE UmlAttribute - created (593) OTHER_CIM CIM [0..1] attribute <> IED Agent::IED.CntRs: Abstract Types::CntRs +2024-09-07 21:55:09,362 [main] ERROR UmlAttribute - unclassified CIM attribute: (3365) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.ConfigurationCRC: Abstract Types::IntegerTs +2024-09-07 21:55:09,362 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,363 [main] TRACE UmlAttribute - created (3365) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.ConfigurationCRC: Abstract Types::IntegerTs +2024-09-07 21:55:09,363 [main] ERROR UmlAttribute - unclassified CIM attribute: (3364) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.ConfigurationVersion: Abstract Types::CharStringTs +2024-09-07 21:55:09,363 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,363 [main] TRACE UmlAttribute - created (3364) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.ConfigurationVersion: Abstract Types::CharStringTs +2024-09-07 21:55:09,363 [main] ERROR UmlAttribute - unclassified CIM attribute: (3264) OTHER_CIM CIM [0..*] null <
> IED Agent::IED.CPU: IED Agent::CPUEntry +2024-09-07 21:55:09,363 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,363 [main] TRACE UmlAttribute - created (3264) OTHER_CIM CIM [0..*] attribute <
> IED Agent::IED.CPU: IED Agent::CPUEntry +2024-09-07 21:55:09,363 [main] ERROR UmlAttribute - unclassified CIM attribute: (164) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.CpuUsage: Abstract Types::FloatingTs +2024-09-07 21:55:09,363 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,364 [main] TRACE UmlAttribute - created (164) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.CpuUsage: Abstract Types::FloatingTs +2024-09-07 21:55:09,364 [main] ERROR UmlAttribute - unclassified CIM attribute: (165) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.DataInv: Abstract Types::CounterTs +2024-09-07 21:55:09,365 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,365 [main] TRACE UmlAttribute - created (165) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.DataInv: Abstract Types::CounterTs +2024-09-07 21:55:09,365 [main] ERROR UmlAttribute - unclassified CIM attribute: (1904) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.Descr: Abstract Types::CharString +2024-09-07 21:55:09,365 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,365 [main] TRACE UmlAttribute - created (1904) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.Descr: Abstract Types::CharString +2024-09-07 21:55:09,365 [main] ERROR UmlAttribute - unclassified CIM attribute: (174) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.ExpCerts: Abstract Types::IntegerTs +2024-09-07 21:55:09,365 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,365 [main] TRACE UmlAttribute - created (174) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.ExpCerts: Abstract Types::IntegerTs +2024-09-07 21:55:09,365 [main] ERROR UmlAttribute - unclassified CIM attribute: (3332) OTHER_CIM CIM [0..*] null <
> IED Agent::IED.EXT: IED Agent::EXTEntry +2024-09-07 21:55:09,366 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,366 [main] TRACE UmlAttribute - created (3332) OTHER_CIM CIM [0..*] attribute <
> IED Agent::IED.EXT: IED Agent::EXTEntry +2024-09-07 21:55:09,366 [main] ERROR UmlAttribute - unclassified CIM attribute: (3357) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.FirmwareVersion: Abstract Types::CharStringTs +2024-09-07 21:55:09,367 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,367 [main] TRACE UmlAttribute - created (3357) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.FirmwareVersion: Abstract Types::CharStringTs +2024-09-07 21:55:09,367 [main] ERROR UmlAttribute - unclassified CIM attribute: (1908) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.InternalTemp: Abstract Types::FloatingTs +2024-09-07 21:55:09,367 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,368 [main] TRACE UmlAttribute - created (1908) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.InternalTemp: Abstract Types::FloatingTs +2024-09-07 21:55:09,368 [main] ERROR UmlAttribute - unclassified CIM attribute: (3493) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.LastCPUFail: Abstract Types::IntegerTs +2024-09-07 21:55:09,368 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,368 [main] TRACE UmlAttribute - created (3493) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.LastCPUFail: Abstract Types::IntegerTs +2024-09-07 21:55:09,368 [main] ERROR UmlAttribute - unclassified CIM attribute: (3706) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:55:09,368 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,368 [main] TRACE UmlAttribute - created (3706) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:55:09,369 [main] ERROR UmlAttribute - unclassified CIM attribute: (3494) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.LastEXTFail: Abstract Types::IntegerTs +2024-09-07 21:55:09,369 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,369 [main] TRACE UmlAttribute - created (3494) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.LastEXTFail: Abstract Types::IntegerTs +2024-09-07 21:55:09,369 [main] ERROR UmlAttribute - unclassified CIM attribute: (3492) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.LastSTOREFail: Abstract Types::IntegerTs +2024-09-07 21:55:09,369 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,369 [main] TRACE UmlAttribute - created (3492) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.LastSTOREFail: Abstract Types::IntegerTs +2024-09-07 21:55:09,369 [main] ERROR UmlAttribute - unclassified CIM attribute: (3256) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.Location: Abstract Types::CharString +2024-09-07 21:55:09,369 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,369 [main] TRACE UmlAttribute - created (3256) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.Location: Abstract Types::CharString +2024-09-07 21:55:09,369 [main] ERROR UmlAttribute - unclassified CIM attribute: (3257) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.Maintainer: Abstract Types::CharString +2024-09-07 21:55:09,370 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,370 [main] TRACE UmlAttribute - created (3257) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.Maintainer: Abstract Types::CharString +2024-09-07 21:55:09,370 [main] ERROR UmlAttribute - unclassified CIM attribute: (3388) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.MemTotal: Abstract Types::Integer +2024-09-07 21:55:09,370 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,370 [main] TRACE UmlAttribute - created (3388) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.MemTotal: Abstract Types::Integer +2024-09-07 21:55:09,370 [main] ERROR UmlAttribute - unclassified CIM attribute: (1910) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.MemUsage: Abstract Types::FloatingTs +2024-09-07 21:55:09,370 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,370 [main] TRACE UmlAttribute - created (1910) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.MemUsage: Abstract Types::FloatingTs +2024-09-07 21:55:09,370 [main] ERROR UmlAttribute - unclassified CIM attribute: (3255) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.MIBVersion: Abstract Types::CharString +2024-09-07 21:55:09,371 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,371 [main] TRACE UmlAttribute - created (3255) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.MIBVersion: Abstract Types::CharString +2024-09-07 21:55:09,371 [main] ERROR UmlAttribute - unclassified CIM attribute: (167) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.MisEvCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,371 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,371 [main] TRACE UmlAttribute - created (167) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.MisEvCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,371 [main] ERROR UmlAttribute - unclassified CIM attribute: (1913) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.Name: Abstract Types::CharString +2024-09-07 21:55:09,371 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,371 [main] TRACE UmlAttribute - created (1913) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.Name: Abstract Types::CharString +2024-09-07 21:55:09,371 [main] ERROR UmlAttribute - unclassified CIM attribute: (3718) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.NearToExpCerts: Abstract Types::IntegerTs +2024-09-07 21:55:09,371 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,371 [main] TRACE UmlAttribute - created (3718) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.NearToExpCerts: Abstract Types::IntegerTs +2024-09-07 21:55:09,372 [main] ERROR UmlAttribute - unclassified CIM attribute: (177) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.NvStore: Abstract Types::FloatingTs +2024-09-07 21:55:09,372 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,372 [main] TRACE UmlAttribute - created (177) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.NvStore: Abstract Types::FloatingTs +2024-09-07 21:55:09,372 [main] ERROR UmlAttribute - unclassified CIM attribute: (178) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.NvStoreRem: Abstract Types::FloatingTs +2024-09-07 21:55:09,372 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,372 [main] TRACE UmlAttribute - created (178) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.NvStoreRem: Abstract Types::FloatingTs +2024-09-07 21:55:09,372 [main] ERROR UmlAttribute - unclassified CIM attribute: (157) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.PhyHealth: EnumeratedTypes::PhyHealthType +2024-09-07 21:55:09,372 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,372 [main] TRACE UmlAttribute - created (157) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.PhyHealth: EnumeratedTypes::PhyHealthType +2024-09-07 21:55:09,372 [main] ERROR UmlAttribute - unclassified CIM attribute: (158) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.PhyHealthChgCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,372 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,372 [main] TRACE UmlAttribute - created (158) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.PhyHealthChgCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,373 [main] ERROR UmlAttribute - unclassified CIM attribute: (3437) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.RBACDbUpdate: Abstract Types::CharStringTs +2024-09-07 21:55:09,373 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,373 [main] TRACE UmlAttribute - created (3437) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.RBACDbUpdate: Abstract Types::CharStringTs +2024-09-07 21:55:09,373 [main] ERROR UmlAttribute - unclassified CIM attribute: (176) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.RevCerts: Abstract Types::IntegerTs +2024-09-07 21:55:09,373 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,373 [main] TRACE UmlAttribute - created (176) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.RevCerts: Abstract Types::IntegerTs +2024-09-07 21:55:09,373 [main] ERROR UmlAttribute - unclassified CIM attribute: (3479) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.RevCheckFail: Abstract Types::CounterTs +2024-09-07 21:55:09,373 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,373 [main] TRACE UmlAttribute - created (3479) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.RevCheckFail: Abstract Types::CounterTs +2024-09-07 21:55:09,373 [main] ERROR UmlAttribute - unclassified CIM attribute: (3620) OTHER_CIM CIM [0..1] null <> IED Agent::IED.SecurityNotification: IED Agent::SecurityNotification +2024-09-07 21:55:09,373 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,373 [main] TRACE UmlAttribute - created (3620) OTHER_CIM CIM [0..1] attribute <> IED Agent::IED.SecurityNotification: IED Agent::SecurityNotification +2024-09-07 21:55:09,373 [main] ERROR UmlAttribute - unclassified CIM attribute: (3619) OTHER_CIM CIM [0..1] null <> IED Agent::IED.StateNotification: IED Agent::Notification +2024-09-07 21:55:09,374 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,374 [main] TRACE UmlAttribute - created (3619) OTHER_CIM CIM [0..1] attribute <> IED Agent::IED.StateNotification: IED Agent::Notification +2024-09-07 21:55:09,374 [main] ERROR UmlAttribute - unclassified CIM attribute: (3387) OTHER_CIM CIM [0..*] null <
> IED Agent::IED.STORE: IED Agent::STOREEntry +2024-09-07 21:55:09,374 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,374 [main] TRACE UmlAttribute - created (3387) OTHER_CIM CIM [0..*] attribute <
> IED Agent::IED.STORE: IED Agent::STOREEntry +2024-09-07 21:55:09,374 [main] ERROR UmlAttribute - unclassified CIM attribute: (4118) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.SvcViol: Abstract Types::CounterTs +2024-09-07 21:55:09,374 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,374 [main] TRACE UmlAttribute - created (4118) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.SvcViol: Abstract Types::CounterTs +2024-09-07 21:55:09,374 [main] ERROR UmlAttribute - unclassified CIM attribute: (3964) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.Watchdog: Abstract Types::CounterTs +2024-09-07 21:55:09,375 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,375 [main] TRACE UmlAttribute - created (3964) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.Watchdog: Abstract Types::CounterTs +2024-09-07 21:55:09,375 [main] ERROR UmlAttribute - unclassified CIM attribute: (2217) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.WrmStrCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,375 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,375 [main] TRACE UmlAttribute - created (2217) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.WrmStrCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,375 [main] ERROR UmlAttribute - unclassified CIM attribute: (3261) OTHER_CIM CIM [0..1] null <> IED Agent::CPUEntry.CntRs: Abstract Types::CntRs +2024-09-07 21:55:09,375 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,375 [main] TRACE UmlAttribute - created (3261) OTHER_CIM CIM [0..1] attribute <> IED Agent::CPUEntry.CntRs: Abstract Types::CntRs +2024-09-07 21:55:09,375 [main] ERROR UmlAttribute - unclassified CIM attribute: (3260) OTHER_CIM CIM const [0..1] null <> IED Agent::CPUEntry.Descr: Abstract Types::CharString +2024-09-07 21:55:09,375 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,375 [main] TRACE UmlAttribute - created (3260) OTHER_CIM CIM const [0..1] attribute <> IED Agent::CPUEntry.Descr: Abstract Types::CharString +2024-09-07 21:55:09,375 [main] ERROR UmlAttribute - unclassified CIM attribute: (3262) OTHER_CIM CIM const [0..1] null <> IED Agent::CPUEntry.Faulty: Abstract Types::BooleanValueTs +2024-09-07 21:55:09,376 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,376 [main] TRACE UmlAttribute - created (3262) OTHER_CIM CIM const [0..1] attribute <> IED Agent::CPUEntry.Faulty: Abstract Types::BooleanValueTs +2024-09-07 21:55:09,376 [main] ERROR UmlAttribute - unclassified CIM attribute: (3259) OTHER_CIM CIM const [0..1] null <> IED Agent::CPUEntry.ID: Abstract Types::EntityIndex +2024-09-07 21:55:09,376 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,376 [main] TRACE UmlAttribute - created (3259) OTHER_CIM CIM const [0..1] attribute <> IED Agent::CPUEntry.ID: Abstract Types::EntityIndex +2024-09-07 21:55:09,376 [main] ERROR UmlAttribute - unclassified CIM attribute: (3258) OTHER_CIM CIM const [0..1] null <> IED Agent::CPUEntry.Online: Abstract Types::BooleanValueTs +2024-09-07 21:55:09,376 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,376 [main] TRACE UmlAttribute - created (3258) OTHER_CIM CIM const [0..1] attribute <> IED Agent::CPUEntry.Online: Abstract Types::BooleanValueTs +2024-09-07 21:55:09,376 [main] ERROR UmlAttribute - unclassified CIM attribute: (3263) OTHER_CIM CIM const [0..1] null <> IED Agent::CPUEntry.Operable: Abstract Types::BooleanValueTs +2024-09-07 21:55:09,376 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,377 [main] TRACE UmlAttribute - created (3263) OTHER_CIM CIM const [0..1] attribute <> IED Agent::CPUEntry.Operable: Abstract Types::BooleanValueTs +2024-09-07 21:55:09,377 [main] ERROR UmlAttribute - unclassified CIM attribute: (3389) OTHER_CIM CIM const [0..1] null <> IED Agent::CPUEntry.Temperature: Abstract Types::FloatingTs +2024-09-07 21:55:09,377 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,377 [main] TRACE UmlAttribute - created (3389) OTHER_CIM CIM const [0..1] attribute <> IED Agent::CPUEntry.Temperature: Abstract Types::FloatingTs +2024-09-07 21:55:09,377 [main] ERROR UmlAttribute - unclassified CIM attribute: (3965) OTHER_CIM CIM const [0..1] null <> IED Agent::CPUEntry.Watchdog: Abstract Types::CounterTs +2024-09-07 21:55:09,377 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,377 [main] TRACE UmlAttribute - created (3965) OTHER_CIM CIM const [0..1] attribute <> IED Agent::CPUEntry.Watchdog: Abstract Types::CounterTs +2024-09-07 21:55:09,377 [main] ERROR UmlAttribute - unclassified CIM attribute: (3334) OTHER_CIM CIM const [0..1] null <> IED Agent::EXTEntry.ID: Abstract Types::EntityIndex +2024-09-07 21:55:09,377 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,377 [main] TRACE UmlAttribute - created (3334) OTHER_CIM CIM const [0..1] attribute <> IED Agent::EXTEntry.ID: Abstract Types::EntityIndex +2024-09-07 21:55:09,377 [main] ERROR UmlAttribute - unclassified CIM attribute: (3335) OTHER_CIM CIM const [0..1] null <> IED Agent::EXTEntry.Descr: Abstract Types::CharString +2024-09-07 21:55:09,378 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,378 [main] TRACE UmlAttribute - created (3335) OTHER_CIM CIM const [0..1] attribute <> IED Agent::EXTEntry.Descr: Abstract Types::CharString +2024-09-07 21:55:09,378 [main] ERROR UmlAttribute - unclassified CIM attribute: (3366) OTHER_CIM CIM const [0..1] null <> IED Agent::EXTEntry.ExtensionType: EnumeratedTypes::ExtType +2024-09-07 21:55:09,378 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,378 [main] TRACE UmlAttribute - created (3366) OTHER_CIM CIM const [0..1] attribute <> IED Agent::EXTEntry.ExtensionType: EnumeratedTypes::ExtType +2024-09-07 21:55:09,378 [main] ERROR UmlAttribute - unclassified CIM attribute: (3416) OTHER_CIM CIM const [0..1] null <> IED Agent::EXTEntry.CodeVersion: Abstract Types::CharStringTs +2024-09-07 21:55:09,378 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,378 [main] TRACE UmlAttribute - created (3416) OTHER_CIM CIM const [0..1] attribute <> IED Agent::EXTEntry.CodeVersion: Abstract Types::CharStringTs +2024-09-07 21:55:09,378 [main] ERROR UmlAttribute - unclassified CIM attribute: (3338) OTHER_CIM CIM const [0..1] null <> IED Agent::EXTEntry.Running: Abstract Types::BooleanValueTs +2024-09-07 21:55:09,379 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,379 [main] TRACE UmlAttribute - created (3338) OTHER_CIM CIM const [0..1] attribute <> IED Agent::EXTEntry.Running: Abstract Types::BooleanValueTs +2024-09-07 21:55:09,379 [main] ERROR UmlAttribute - unclassified CIM attribute: (3390) OTHER_CIM CIM const [0..1] null <> IED Agent::EXTEntry.Temperature: Abstract Types::FloatingTs +2024-09-07 21:55:09,379 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,379 [main] TRACE UmlAttribute - created (3390) OTHER_CIM CIM const [0..1] attribute <> IED Agent::EXTEntry.Temperature: Abstract Types::FloatingTs +2024-09-07 21:55:09,379 [main] ERROR UmlAttribute - unclassified CIM attribute: (3333) OTHER_CIM CIM const [1..1] null <> IED Agent::EXTEntry.Watchdog: Abstract Types::CounterTs +2024-09-07 21:55:09,379 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,379 [main] TRACE UmlAttribute - created (3333) OTHER_CIM CIM const [1..1] attribute <> IED Agent::EXTEntry.Watchdog: Abstract Types::CounterTs +2024-09-07 21:55:09,379 [main] ERROR UmlAttribute - unclassified CIM attribute: (3337) OTHER_CIM CIM const [0..1] null <> IED Agent::EXTEntry.Errors: Abstract Types::CounterTs +2024-09-07 21:55:09,379 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,379 [main] TRACE UmlAttribute - created (3337) OTHER_CIM CIM const [0..1] attribute <> IED Agent::EXTEntry.Errors: Abstract Types::CounterTs +2024-09-07 21:55:09,379 [main] ERROR UmlAttribute - unclassified CIM attribute: (3336) OTHER_CIM CIM [0..1] null <> IED Agent::EXTEntry.CntRs: Abstract Types::CntRs +2024-09-07 21:55:09,380 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,380 [main] TRACE UmlAttribute - created (3336) OTHER_CIM CIM [0..1] attribute <> IED Agent::EXTEntry.CntRs: Abstract Types::CntRs +2024-09-07 21:55:09,380 [main] ERROR UmlAttribute - unclassified CIM attribute: (3382) OTHER_CIM CIM const [0..1] null <> IED Agent::STOREEntry.ID: Abstract Types::EntityIndex +2024-09-07 21:55:09,380 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,380 [main] TRACE UmlAttribute - created (3382) OTHER_CIM CIM const [0..1] attribute <> IED Agent::STOREEntry.ID: Abstract Types::EntityIndex +2024-09-07 21:55:09,380 [main] ERROR UmlAttribute - unclassified CIM attribute: (3383) OTHER_CIM CIM const [0..1] null <> IED Agent::STOREEntry.Descr: Abstract Types::CharString +2024-09-07 21:55:09,380 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,380 [main] TRACE UmlAttribute - created (3383) OTHER_CIM CIM const [0..1] attribute <> IED Agent::STOREEntry.Descr: Abstract Types::CharString +2024-09-07 21:55:09,380 [main] ERROR UmlAttribute - unclassified CIM attribute: (3386) OTHER_CIM CIM const [0..1] null <> IED Agent::STOREEntry.NvStore: Abstract Types::Floating +2024-09-07 21:55:09,380 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,381 [main] TRACE UmlAttribute - created (3386) OTHER_CIM CIM const [0..1] attribute <> IED Agent::STOREEntry.NvStore: Abstract Types::Floating +2024-09-07 21:55:09,381 [main] ERROR UmlAttribute - unclassified CIM attribute: (3381) OTHER_CIM CIM const [0..1] null <> IED Agent::STOREEntry.NvStoreRem: Abstract Types::FloatingTs +2024-09-07 21:55:09,381 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,384 [main] TRACE UmlAttribute - created (3381) OTHER_CIM CIM const [0..1] attribute <> IED Agent::STOREEntry.NvStoreRem: Abstract Types::FloatingTs +2024-09-07 21:55:09,385 [main] ERROR UmlAttribute - unclassified CIM attribute: (3385) OTHER_CIM CIM const [0..1] null <> IED Agent::STOREEntry.Faulty: Abstract Types::BooleanValueTs +2024-09-07 21:55:09,385 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,386 [main] TRACE UmlAttribute - created (3385) OTHER_CIM CIM const [0..1] attribute <> IED Agent::STOREEntry.Faulty: Abstract Types::BooleanValueTs +2024-09-07 21:55:09,386 [main] ERROR UmlAttribute - unclassified CIM attribute: (3732) OTHER_CIM CIM [0..1] null <> IED Agent::STOREEntry.CntRs: Abstract Types::CntRs +2024-09-07 21:55:09,386 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,386 [main] TRACE UmlAttribute - created (3732) OTHER_CIM CIM [0..1] attribute <> IED Agent::STOREEntry.CntRs: Abstract Types::CntRs +2024-09-07 21:55:09,386 [main] ERROR UmlAttribute - unclassified CIM attribute: (3486) OTHER_CIM CIM const [0..1] null <> IED Agent::Notification.PhyHealthChgCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,386 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,386 [main] TRACE UmlAttribute - created (3486) OTHER_CIM CIM const [0..1] attribute <> IED Agent::Notification.PhyHealthChgCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,386 [main] ERROR UmlAttribute - unclassified CIM attribute: (3497) OTHER_CIM CIM const [0..1] null <> IED Agent::Notification.InternalTemp: Abstract Types::FloatingTs +2024-09-07 21:55:09,386 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,386 [main] TRACE UmlAttribute - created (3497) OTHER_CIM CIM const [0..1] attribute <> IED Agent::Notification.InternalTemp: Abstract Types::FloatingTs +2024-09-07 21:55:09,387 [main] ERROR UmlAttribute - unclassified CIM attribute: (3495) OTHER_CIM CIM const [0..1] null <> IED Agent::Notification.NvStore: Abstract Types::FloatingTs +2024-09-07 21:55:09,387 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,387 [main] TRACE UmlAttribute - created (3495) OTHER_CIM CIM const [0..1] attribute <> IED Agent::Notification.NvStore: Abstract Types::FloatingTs +2024-09-07 21:55:09,387 [main] ERROR UmlAttribute - unclassified CIM attribute: (3496) OTHER_CIM CIM const [0..1] null <> IED Agent::Notification.NvStoreRem: Abstract Types::FloatingTs +2024-09-07 21:55:09,387 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,387 [main] TRACE UmlAttribute - created (3496) OTHER_CIM CIM const [0..1] attribute <> IED Agent::Notification.NvStoreRem: Abstract Types::FloatingTs +2024-09-07 21:55:09,387 [main] ERROR UmlAttribute - unclassified CIM attribute: (3480) OTHER_CIM CIM const [0..1] null <> IED Agent::Notification.PhyHealth: EnumeratedTypes::PhyHealthType +2024-09-07 21:55:09,387 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,387 [main] TRACE UmlAttribute - created (3480) OTHER_CIM CIM const [0..1] attribute <> IED Agent::Notification.PhyHealth: EnumeratedTypes::PhyHealthType +2024-09-07 21:55:09,387 [main] ERROR UmlAttribute - unclassified CIM attribute: (3489) OTHER_CIM CIM const [0..1] null <> IED Agent::Notification.WrmStrCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,387 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,387 [main] TRACE UmlAttribute - created (3489) OTHER_CIM CIM const [0..1] attribute <> IED Agent::Notification.WrmStrCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,388 [main] ERROR UmlAttribute - unclassified CIM attribute: (3502) OTHER_CIM CIM const [0..1] null <> IED Agent::SecurityNotification.AtkCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,388 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,388 [main] TRACE UmlAttribute - created (3502) OTHER_CIM CIM const [0..1] attribute <> IED Agent::SecurityNotification.AtkCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,388 [main] ERROR UmlAttribute - unclassified CIM attribute: (3499) OTHER_CIM CIM const [0..1] null <> IED Agent::SecurityNotification.ExpCerts: Abstract Types::IntegerTs +2024-09-07 21:55:09,388 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,388 [main] TRACE UmlAttribute - created (3499) OTHER_CIM CIM const [0..1] attribute <> IED Agent::SecurityNotification.ExpCerts: Abstract Types::IntegerTs +2024-09-07 21:55:09,388 [main] ERROR UmlAttribute - unclassified CIM attribute: (3730) OTHER_CIM CIM const [0..1] null <> IED Agent::SecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:55:09,388 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,388 [main] TRACE UmlAttribute - created (3730) OTHER_CIM CIM const [0..1] attribute <> IED Agent::SecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:55:09,388 [main] ERROR UmlAttribute - unclassified CIM attribute: (3731) OTHER_CIM CIM const [0..1] null <> IED Agent::SecurityNotification.NearToExpCerts: Abstract Types::IntegerTs +2024-09-07 21:55:09,388 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,389 [main] TRACE UmlAttribute - created (3731) OTHER_CIM CIM const [0..1] attribute <> IED Agent::SecurityNotification.NearToExpCerts: Abstract Types::IntegerTs +2024-09-07 21:55:09,389 [main] ERROR UmlAttribute - unclassified CIM attribute: (3498) OTHER_CIM CIM const [0..1] null <> IED Agent::SecurityNotification.RevCerts: Abstract Types::IntegerTs +2024-09-07 21:55:09,389 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,389 [main] TRACE UmlAttribute - created (3498) OTHER_CIM CIM const [0..1] attribute <> IED Agent::SecurityNotification.RevCerts: Abstract Types::IntegerTs +2024-09-07 21:55:09,389 [main] ERROR UmlAttribute - unclassified CIM attribute: (3500) OTHER_CIM CIM const [0..1] null <> IED Agent::SecurityNotification.RevCheckFail: Abstract Types::CounterTs +2024-09-07 21:55:09,389 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,389 [main] TRACE UmlAttribute - created (3500) OTHER_CIM CIM const [0..1] attribute <> IED Agent::SecurityNotification.RevCheckFail: Abstract Types::CounterTs +2024-09-07 21:55:09,390 [main] ERROR UmlAttribute - unclassified CIM attribute: (4079) OTHER_CIM CIM const [1..1] null <> Common objects::CommonProtocolInfo.IEC62351part3: Abstract Types::BooleanValue +2024-09-07 21:55:09,390 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,390 [main] TRACE UmlAttribute - created (4079) OTHER_CIM CIM const [1..1] attribute <> Common objects::CommonProtocolInfo.IEC62351part3: Abstract Types::BooleanValue +2024-09-07 21:55:09,390 [main] ERROR UmlAttribute - unclassified CIM attribute: (4087) OTHER_CIM CIM const [0..1] null <> Common objects::CommonProtocolInfo.Part3ConnectionId: Abstract Types::Integer +2024-09-07 21:55:09,390 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,390 [main] TRACE UmlAttribute - created (4087) OTHER_CIM CIM const [0..1] attribute <> Common objects::CommonProtocolInfo.Part3ConnectionId: Abstract Types::Integer +2024-09-07 21:55:09,390 [main] ERROR UmlAttribute - unclassified CIM attribute: (4099) OTHER_CIM CIM const [0..1] null <> Common objects::CommonProtocolInfo.TCPHndShTime: Abstract Types::Floating +2024-09-07 21:55:09,390 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,390 [main] TRACE UmlAttribute - created (4099) OTHER_CIM CIM const [0..1] attribute <> Common objects::CommonProtocolInfo.TCPHndShTime: Abstract Types::Floating +2024-09-07 21:55:09,390 [main] ERROR UmlAttribute - unclassified CIM attribute: (4107) OTHER_CIM CIM const [0..1] null <> Common objects::CommonProtocolInfo.TLSHndTime: Abstract Types::Floating +2024-09-07 21:55:09,391 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,391 [main] TRACE UmlAttribute - created (4107) OTHER_CIM CIM const [0..1] attribute <> Common objects::CommonProtocolInfo.TLSHndTime: Abstract Types::Floating +2024-09-07 21:55:09,391 [main] ERROR UmlAttribute - unclassified CIM attribute: (4109) OTHER_CIM CIM const [0..1] null <> Common objects::CommonProtocolInfo.TLSRenegotiationTime: Abstract Types::Floating +2024-09-07 21:55:09,391 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,391 [main] TRACE UmlAttribute - created (4109) OTHER_CIM CIM const [0..1] attribute <> Common objects::CommonProtocolInfo.TLSRenegotiationTime: Abstract Types::Floating +2024-09-07 21:55:09,391 [main] ERROR UmlAttribute - unclassified CIM attribute: (4108) OTHER_CIM CIM const [0..1] null <> Common objects::CommonProtocolInfo.TLSResumptionTime: Abstract Types::Floating +2024-09-07 21:55:09,391 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,391 [main] TRACE UmlAttribute - created (4108) OTHER_CIM CIM const [0..1] attribute <> Common objects::CommonProtocolInfo.TLSResumptionTime: Abstract Types::Floating +2024-09-07 21:55:09,391 [main] ERROR UmlAttribute - unclassified CIM attribute: (4106) OTHER_CIM CIM const [0..1] null <> Common objects::CommonProtocolInfo.TotalHndTime: Abstract Types::Floating +2024-09-07 21:55:09,391 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,391 [main] TRACE UmlAttribute - created (4106) OTHER_CIM CIM const [0..1] attribute <> Common objects::CommonProtocolInfo.TotalHndTime: Abstract Types::Floating +2024-09-07 21:55:09,391 [main] ERROR UmlAttribute - unclassified CIM attribute: (4105) OTHER_CIM CIM const [0..1] null <> Common objects::CommonProtocolInfo.TransportHndTime: Abstract Types::Floating +2024-09-07 21:55:09,392 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,392 [main] TRACE UmlAttribute - created (4105) OTHER_CIM CIM const [0..1] attribute <> Common objects::CommonProtocolInfo.TransportHndTime: Abstract Types::Floating +2024-09-07 21:55:09,392 [main] ERROR UmlAttribute - unclassified CIM attribute: (4460) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsEarlyDataCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,392 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,392 [main] TRACE UmlAttribute - created (4460) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsEarlyDataCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,392 [main] ERROR UmlAttribute - unclassified CIM attribute: (4454) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDisallowedCipherCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,392 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,392 [main] TRACE UmlAttribute - created (4454) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDisallowedCipherCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,392 [main] ERROR UmlAttribute - unclassified CIM attribute: (4461) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsCertSizeMismatchCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,392 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,392 [main] TRACE UmlAttribute - created (4461) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsCertSizeMismatchCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,392 [main] ERROR UmlAttribute - unclassified CIM attribute: (4463) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoCaMatchCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,393 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,393 [main] TRACE UmlAttribute - created (4463) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoCaMatchCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,393 [main] ERROR UmlAttribute - unclassified CIM attribute: (4464) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoSigAlgoExtCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,393 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,393 [main] TRACE UmlAttribute - created (4464) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoSigAlgoExtCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,393 [main] ERROR UmlAttribute - unclassified CIM attribute: (4465) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDepDigAlgCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,393 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,393 [main] TRACE UmlAttribute - created (4465) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDepDigAlgCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,393 [main] ERROR UmlAttribute - unclassified CIM attribute: (4466) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoTrustedCertMatchCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,393 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,393 [main] TRACE UmlAttribute - created (4466) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoTrustedCertMatchCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,394 [main] ERROR UmlAttribute - unclassified CIM attribute: (4467) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsCertRevokedCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,394 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,394 [main] TRACE UmlAttribute - created (4467) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsCertRevokedCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,394 [main] ERROR UmlAttribute - unclassified CIM attribute: (4468) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoCrlCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,394 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,394 [main] TRACE UmlAttribute - created (4468) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoCrlCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,394 [main] ERROR UmlAttribute - unclassified CIM attribute: (4469) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsCrlExpCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,394 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,394 [main] TRACE UmlAttribute - created (4469) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsCrlExpCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,394 [main] ERROR UmlAttribute - unclassified CIM attribute: (4470) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoEpskModeCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,394 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,395 [main] TRACE UmlAttribute - created (4470) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoEpskModeCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,395 [main] ERROR UmlAttribute - unclassified CIM attribute: (4471) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoEncryptThenMacCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,395 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,395 [main] TRACE UmlAttribute - created (4471) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoEncryptThenMacCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,395 [main] ERROR UmlAttribute - unclassified CIM attribute: (4472) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsOcspResExpCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,395 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,395 [main] TRACE UmlAttribute - created (4472) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsOcspResExpCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,395 [main] ERROR UmlAttribute - unclassified CIM attribute: (4473) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsCertExpCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,395 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,395 [main] TRACE UmlAttribute - created (4473) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsCertExpCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,395 [main] ERROR UmlAttribute - unclassified CIM attribute: (4474) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoSkUpdateCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,395 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,395 [main] TRACE UmlAttribute - created (4474) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoSkUpdateCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,396 [main] ERROR UmlAttribute - unclassified CIM attribute: (4475) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsSigAlgMismatchCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,396 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,396 [main] TRACE UmlAttribute - created (4475) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsSigAlgMismatchCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,396 [main] ERROR UmlAttribute - unclassified CIM attribute: (4476) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsSigVFailedCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,396 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,396 [main] TRACE UmlAttribute - created (4476) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsSigVFailedCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,396 [main] ERROR UmlAttribute - unclassified CIM attribute: (4477) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsShortRsaKeyCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,396 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,397 [main] TRACE UmlAttribute - created (4477) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsShortRsaKeyCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,397 [main] ERROR UmlAttribute - unclassified CIM attribute: (4478) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsMinKeyCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,397 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,397 [main] TRACE UmlAttribute - created (4478) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsMinKeyCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,397 [main] ERROR UmlAttribute - unclassified CIM attribute: (4479) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsShortKeyCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,397 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,397 [main] TRACE UmlAttribute - created (4479) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsShortKeyCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,397 [main] ERROR UmlAttribute - unclassified CIM attribute: (4480) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDepHashCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,397 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,397 [main] TRACE UmlAttribute - created (4480) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDepHashCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,397 [main] ERROR UmlAttribute - unclassified CIM attribute: (4462) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoTrCaMatchSCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,397 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,398 [main] TRACE UmlAttribute - created (4462) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoTrCaMatchSCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,398 [main] ERROR UmlAttribute - unclassified CIM attribute: (4455) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsSessionidExpiredFullHsCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,398 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,398 [main] TRACE UmlAttribute - created (4455) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsSessionidExpiredFullHsCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,398 [main] ERROR UmlAttribute - unclassified CIM attribute: (4458) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoRenegTicket: Abstract Types::CounterTs +2024-09-07 21:55:09,398 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,398 [main] TRACE UmlAttribute - created (4458) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoRenegTicket: Abstract Types::CounterTs +2024-09-07 21:55:09,398 [main] ERROR UmlAttribute - unclassified CIM attribute: (4457) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoRenegSigCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,398 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,398 [main] TRACE UmlAttribute - created (4457) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoRenegSigCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,399 [main] ERROR UmlAttribute - unclassified CIM attribute: (4453) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsSessionClosedRevCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,400 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,400 [main] TRACE UmlAttribute - created (4453) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsSessionClosedRevCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,400 [main] ERROR UmlAttribute - unclassified CIM attribute: (4459) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoTrCaMatchScCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,400 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,401 [main] TRACE UmlAttribute - created (4459) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoTrCaMatchScCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,401 [main] ERROR UmlAttribute - unclassified CIM attribute: (4450) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsHsSuccessCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,401 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,401 [main] TRACE UmlAttribute - created (4450) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsHsSuccessCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,401 [main] ERROR UmlAttribute - unclassified CIM attribute: (4456) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoReneg: Abstract Types::CounterTs +2024-09-07 21:55:09,401 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,401 [main] TRACE UmlAttribute - created (4456) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoReneg: Abstract Types::CounterTs +2024-09-07 21:55:09,401 [main] ERROR UmlAttribute - unclassified CIM attribute: (4452) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoLocalCertCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,401 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,402 [main] TRACE UmlAttribute - created (4452) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoLocalCertCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,402 [main] ERROR UmlAttribute - unclassified CIM attribute: (4447) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsWeakVersionCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,402 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,402 [main] TRACE UmlAttribute - created (4447) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsWeakVersionCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,402 [main] ERROR UmlAttribute - unclassified CIM attribute: (4449) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsVersionChangeCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,402 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,402 [main] TRACE UmlAttribute - created (4449) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsVersionChangeCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,402 [main] ERROR UmlAttribute - unclassified CIM attribute: (4446) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDeprecatedVersionCnT: Abstract Types::CounterTs +2024-09-07 21:55:09,402 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,402 [main] TRACE UmlAttribute - created (4446) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDeprecatedVersionCnT: Abstract Types::CounterTs +2024-09-07 21:55:09,402 [main] ERROR UmlAttribute - unclassified CIM attribute: (4451) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoPeerCertCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,403 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,403 [main] TRACE UmlAttribute - created (4451) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoPeerCertCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,403 [main] ERROR UmlAttribute - unclassified CIM attribute: (4448) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDisallowedVersionCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,403 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,403 [main] TRACE UmlAttribute - created (4448) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDisallowedVersionCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,403 [main] ERROR UmlAttribute - unclassified CIM attribute: (4488) OTHER_CIM CIM const [0..1] null <> IEC62351-3 ed.2 Agent::TLSSession.SessionId: Abstract Types::EntityIndex +2024-09-07 21:55:09,403 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,403 [main] TRACE UmlAttribute - created (4488) OTHER_CIM CIM const [0..1] attribute <> IEC62351-3 ed.2 Agent::TLSSession.SessionId: Abstract Types::EntityIndex +2024-09-07 21:55:09,403 [main] ERROR UmlAttribute - unclassified CIM attribute: (4489) OTHER_CIM CIM [0..1] null <> IEC62351-3 ed.2 Agent::TLSSession.CntRs: Abstract Types::CntRs +2024-09-07 21:55:09,403 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,403 [main] TRACE UmlAttribute - created (4489) OTHER_CIM CIM [0..1] attribute <> IEC62351-3 ed.2 Agent::TLSSession.CntRs: Abstract Types::CntRs +2024-09-07 21:55:09,403 [main] ERROR UmlAttribute - unclassified CIM attribute: (4490) OTHER_CIM CIM const [0..1] null <> IEC62351-3 ed.2 Agent::TLSSession.LocAddress: Abstract Types::InetAddress +2024-09-07 21:55:09,403 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,404 [main] TRACE UmlAttribute - created (4490) OTHER_CIM CIM const [0..1] attribute <> IEC62351-3 ed.2 Agent::TLSSession.LocAddress: Abstract Types::InetAddress +2024-09-07 21:55:09,404 [main] ERROR UmlAttribute - unclassified CIM attribute: (4491) OTHER_CIM CIM const [0..1] null <> IEC62351-3 ed.2 Agent::TLSSession.LocAddressType: Abstract Types::InetAddressType +2024-09-07 21:55:09,404 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,404 [main] TRACE UmlAttribute - created (4491) OTHER_CIM CIM const [0..1] attribute <> IEC62351-3 ed.2 Agent::TLSSession.LocAddressType: Abstract Types::InetAddressType +2024-09-07 21:55:09,404 [main] ERROR UmlAttribute - unclassified CIM attribute: (4492) OTHER_CIM CIM const [0..1] null <> IEC62351-3 ed.2 Agent::TLSSession.RemAddress: Abstract Types::InetAddress +2024-09-07 21:55:09,404 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,404 [main] TRACE UmlAttribute - created (4492) OTHER_CIM CIM const [0..1] attribute <> IEC62351-3 ed.2 Agent::TLSSession.RemAddress: Abstract Types::InetAddress +2024-09-07 21:55:09,404 [main] ERROR UmlAttribute - unclassified CIM attribute: (4493) OTHER_CIM CIM const [0..1] null <> IEC62351-3 ed.2 Agent::TLSSession.RemAddressType: Abstract Types::InetAddressType +2024-09-07 21:55:09,404 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,405 [main] TRACE UmlAttribute - created (4493) OTHER_CIM CIM const [0..1] attribute <> IEC62351-3 ed.2 Agent::TLSSession.RemAddressType: Abstract Types::InetAddressType +2024-09-07 21:55:09,405 [main] ERROR UmlAttribute - unclassified CIM attribute: (4481) OTHER_CIM CIM [0..1] null <> IEC62351-3 ed.2 Agent::Summary.CntRs: Abstract Types::CntRs +2024-09-07 21:55:09,405 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,405 [main] TRACE UmlAttribute - created (4481) OTHER_CIM CIM [0..1] attribute <> IEC62351-3 ed.2 Agent::Summary.CntRs: Abstract Types::CntRs +2024-09-07 21:55:09,405 [main] ERROR UmlAttribute - unclassified CIM attribute: (4482) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::Summary.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:55:09,405 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,405 [main] TRACE UmlAttribute - created (4482) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::Summary.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:55:09,405 [main] ERROR UmlAttribute - unclassified CIM attribute: (4483) OTHER_CIM CIM [0..*] null <
> IEC62351-3 ed.2 Agent::Summary.Server: IEC62351-3 ed.2 Agent::ServerTLS +2024-09-07 21:55:09,405 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,405 [main] TRACE UmlAttribute - created (4483) OTHER_CIM CIM [0..*] attribute <
> IEC62351-3 ed.2 Agent::Summary.Server: IEC62351-3 ed.2 Agent::ServerTLS +2024-09-07 21:55:09,405 [main] ERROR UmlAttribute - unclassified CIM attribute: (4484) OTHER_CIM CIM [0..*] null <
> IEC62351-3 ed.2 Agent::Summary.Client: IEC62351-3 ed.2 Agent::ClientTLS +2024-09-07 21:55:09,405 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,406 [main] TRACE UmlAttribute - created (4484) OTHER_CIM CIM [0..*] attribute <
> IEC62351-3 ed.2 Agent::Summary.Client: IEC62351-3 ed.2 Agent::ClientTLS +2024-09-07 21:55:09,406 [main] ERROR UmlAttribute - unclassified CIM attribute: (4485) OTHER_CIM CIM [0..1] null <> IEC62351-3 ed.2 Agent::Summary.SecurityNotification: IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification +2024-09-07 21:55:09,406 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,406 [main] TRACE UmlAttribute - created (4485) OTHER_CIM CIM [0..1] attribute <> IEC62351-3 ed.2 Agent::Summary.SecurityNotification: IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification +2024-09-07 21:55:09,406 [main] ERROR UmlAttribute - unclassified CIM attribute: (4486) OTHER_CIM CIM [0..1] null <> IEC62351-3 ed.2 Agent::Summary.StateNotification: NullCIM::NullCIM +2024-09-07 21:55:09,406 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,406 [main] TRACE UmlAttribute - created (4486) OTHER_CIM CIM [0..1] attribute <> IEC62351-3 ed.2 Agent::Summary.StateNotification: NullCIM::NullCIM +2024-09-07 21:55:09,406 [main] ERROR UmlAttribute - unclassified CIM attribute: (4487) OTHER_CIM CIM const [0..1] null <> IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:55:09,406 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,406 [main] TRACE UmlAttribute - created (4487) OTHER_CIM CIM const [0..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:55:09,406 [main] ERROR UmlAttribute - unclassified CIM attribute: (3991) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.AuthFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,406 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,406 [main] TRACE UmlAttribute - created (3991) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.AuthFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,406 [main] ERROR UmlAttribute - unclassified CIM attribute: (3992) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.CtrlPrivFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,407 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,407 [main] TRACE UmlAttribute - created (3992) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.CtrlPrivFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,407 [main] ERROR UmlAttribute - unclassified CIM attribute: (3993) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,407 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,407 [main] TRACE UmlAttribute - created (3993) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,407 [main] ERROR UmlAttribute - unclassified CIM attribute: (3405) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.ExT0Cnt: Abstract Types::CounterTs +2024-09-07 21:55:09,407 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,407 [main] TRACE UmlAttribute - created (3405) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.ExT0Cnt: Abstract Types::CounterTs +2024-09-07 21:55:09,407 [main] ERROR UmlAttribute - unclassified CIM attribute: (3406) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.ExT1Cnt: Abstract Types::CounterTs +2024-09-07 21:55:09,407 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,408 [main] TRACE UmlAttribute - created (3406) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.ExT1Cnt: Abstract Types::CounterTs +2024-09-07 21:55:09,408 [main] ERROR UmlAttribute - unclassified CIM attribute: (3407) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.ExT2Cnt: Abstract Types::CounterTs +2024-09-07 21:55:09,408 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,408 [main] TRACE UmlAttribute - created (3407) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.ExT2Cnt: Abstract Types::CounterTs +2024-09-07 21:55:09,408 [main] ERROR UmlAttribute - unclassified CIM attribute: (3408) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.ExT3Cnt: Abstract Types::CounterTs +2024-09-07 21:55:09,408 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,408 [main] TRACE UmlAttribute - created (3408) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.ExT3Cnt: Abstract Types::CounterTs +2024-09-07 21:55:09,408 [main] ERROR UmlAttribute - unclassified CIM attribute: (3124) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.InDisc: Abstract Types::CounterTs +2024-09-07 21:55:09,408 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,408 [main] TRACE UmlAttribute - created (3124) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.InDisc: Abstract Types::CounterTs +2024-09-07 21:55:09,408 [main] ERROR UmlAttribute - unclassified CIM attribute: (3994) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.InErrCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,408 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,408 [main] TRACE UmlAttribute - created (3994) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.InErrCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,409 [main] ERROR UmlAttribute - unclassified CIM attribute: (3995) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.InOvCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,409 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,409 [main] TRACE UmlAttribute - created (3995) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.InOvCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,409 [main] ERROR UmlAttribute - unclassified CIM attribute: (3996) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.InterPDUTime: Abstract Types::Floating +2024-09-07 21:55:09,409 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,409 [main] TRACE UmlAttribute - created (3996) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.InterPDUTime: Abstract Types::Floating +2024-09-07 21:55:09,409 [main] ERROR UmlAttribute - unclassified CIM attribute: (3997) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.MisPDUCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,409 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,409 [main] TRACE UmlAttribute - created (3997) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.MisPDUCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,409 [main] ERROR UmlAttribute - unclassified CIM attribute: (3141) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.OutErr: Abstract Types::CounterTs +2024-09-07 21:55:09,409 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,409 [main] TRACE UmlAttribute - created (3141) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.OutErr: Abstract Types::CounterTs +2024-09-07 21:55:09,410 [main] ERROR UmlAttribute - unclassified CIM attribute: (3990) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.OutUv: Abstract Types::CounterTs +2024-09-07 21:55:09,410 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,410 [main] TRACE UmlAttribute - created (3990) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.OutUv: Abstract Types::CounterTs +2024-09-07 21:55:09,410 [main] ERROR UmlAttribute - unclassified CIM attribute: (3998) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PDURTT: Abstract Types::Floating +2024-09-07 21:55:09,410 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,410 [main] TRACE UmlAttribute - created (3998) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PDURTT: Abstract Types::Floating +2024-09-07 21:55:09,410 [main] ERROR UmlAttribute - unclassified CIM attribute: (3999) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PDUSizeFail: Abstract Types::CounterTs +2024-09-07 21:55:09,410 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,410 [main] TRACE UmlAttribute - created (3999) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PDUSizeFail: Abstract Types::CounterTs +2024-09-07 21:55:09,410 [main] ERROR UmlAttribute - unclassified CIM attribute: (4000) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PduTampCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,410 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,411 [main] TRACE UmlAttribute - created (4000) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PduTampCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,411 [main] ERROR UmlAttribute - unclassified CIM attribute: (4001) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PrimaryInterface: Abstract Types::BooleanValueTs +2024-09-07 21:55:09,411 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,411 [main] TRACE UmlAttribute - created (4001) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PrimaryInterface: Abstract Types::BooleanValueTs +2024-09-07 21:55:09,411 [main] ERROR UmlAttribute - unclassified CIM attribute: (4002) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PrivFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,411 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,411 [main] TRACE UmlAttribute - created (4002) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PrivFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,411 [main] ERROR UmlAttribute - unclassified CIM attribute: (3403) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RtxCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,411 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,411 [main] TRACE UmlAttribute - created (3403) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RtxCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,412 [main] ERROR UmlAttribute - unclassified CIM attribute: (3123) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RxCritical: Abstract Types::CounterTs +2024-09-07 21:55:09,413 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,413 [main] TRACE UmlAttribute - created (3123) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RxCritical: Abstract Types::CounterTs +2024-09-07 21:55:09,413 [main] ERROR UmlAttribute - unclassified CIM attribute: (4003) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RxPdu: Abstract Types::CounterTs +2024-09-07 21:55:09,413 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,413 [main] TRACE UmlAttribute - created (4003) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RxPdu: Abstract Types::CounterTs +2024-09-07 21:55:09,414 [main] ERROR UmlAttribute - unclassified CIM attribute: (3135) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RxSolicitedReq: Abstract Types::CounterTs +2024-09-07 21:55:09,414 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,414 [main] TRACE UmlAttribute - created (3135) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RxSolicitedReq: Abstract Types::CounterTs +2024-09-07 21:55:09,414 [main] ERROR UmlAttribute - unclassified CIM attribute: (3145) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RxUnsolicitedReq: Abstract Types::CounterTs +2024-09-07 21:55:09,414 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,414 [main] TRACE UmlAttribute - created (3145) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RxUnsolicitedReq: Abstract Types::CounterTs +2024-09-07 21:55:09,414 [main] ERROR UmlAttribute - unclassified CIM attribute: (4004) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.SessKeyFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,414 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,414 [main] TRACE UmlAttribute - created (4004) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.SessKeyFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,414 [main] ERROR UmlAttribute - unclassified CIM attribute: (3122) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.TxCritical: Abstract Types::CounterTs +2024-09-07 21:55:09,414 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,415 [main] TRACE UmlAttribute - created (3122) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.TxCritical: Abstract Types::CounterTs +2024-09-07 21:55:09,415 [main] ERROR UmlAttribute - unclassified CIM attribute: (4005) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.TxPdu: Abstract Types::CounterTs +2024-09-07 21:55:09,415 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,415 [main] TRACE UmlAttribute - created (4005) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.TxPdu: Abstract Types::CounterTs +2024-09-07 21:55:09,415 [main] ERROR UmlAttribute - unclassified CIM attribute: (3120) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.TxSolicitedReq: Abstract Types::CounterTs +2024-09-07 21:55:09,415 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,415 [main] TRACE UmlAttribute - created (3120) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.TxSolicitedReq: Abstract Types::CounterTs +2024-09-07 21:55:09,415 [main] ERROR UmlAttribute - unclassified CIM attribute: (3121) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.TxUnsolicitedReq: Abstract Types::CounterTs +2024-09-07 21:55:09,417 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,418 [main] TRACE UmlAttribute - created (3121) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.TxUnsolicitedReq: Abstract Types::CounterTs +2024-09-07 21:55:09,418 [main] ERROR UmlAttribute - unclassified CIM attribute: (4006) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.UpKeyFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,418 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,418 [main] TRACE UmlAttribute - created (4006) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.UpKeyFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,418 [main] ERROR UmlAttribute - unclassified CIM attribute: (3726) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.AssociationId: Abstract Types::EntityIndex +2024-09-07 21:55:09,418 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,418 [main] TRACE UmlAttribute - created (3726) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.AssociationId: Abstract Types::EntityIndex +2024-09-07 21:55:09,418 [main] ERROR UmlAttribute - unclassified CIM attribute: (3241) OTHER_CIM CIM [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.CntRs: Abstract Types::CntRs +2024-09-07 21:55:09,418 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,418 [main] TRACE UmlAttribute - created (3241) OTHER_CIM CIM [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.CntRs: Abstract Types::CntRs +2024-09-07 21:55:09,418 [main] ERROR UmlAttribute - unclassified CIM attribute: (2417) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.LocAddress: Abstract Types::InetAddress +2024-09-07 21:55:09,418 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,418 [main] TRACE UmlAttribute - created (2417) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.LocAddress: Abstract Types::InetAddress +2024-09-07 21:55:09,419 [main] ERROR UmlAttribute - unclassified CIM attribute: (3715) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.LocAddressType: Abstract Types::InetAddressType +2024-09-07 21:55:09,419 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,419 [main] TRACE UmlAttribute - created (3715) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.LocAddressType: Abstract Types::InetAddressType +2024-09-07 21:55:09,419 [main] ERROR UmlAttribute - unclassified CIM attribute: (2413) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.ProtID: EnumeratedTypes::ProtIdType +2024-09-07 21:55:09,419 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,419 [main] TRACE UmlAttribute - created (2413) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.ProtID: EnumeratedTypes::ProtIdType +2024-09-07 21:55:09,419 [main] ERROR UmlAttribute - unclassified CIM attribute: (2412) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.ProviderDesc: Abstract Types::CharString +2024-09-07 21:55:09,419 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,419 [main] TRACE UmlAttribute - created (2412) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.ProviderDesc: Abstract Types::CharString +2024-09-07 21:55:09,419 [main] ERROR UmlAttribute - unclassified CIM attribute: (2411) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.ProviderName: Abstract Types::CharString +2024-09-07 21:55:09,419 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,420 [main] TRACE UmlAttribute - created (2411) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.ProviderName: Abstract Types::CharString +2024-09-07 21:55:09,420 [main] ERROR UmlAttribute - unclassified CIM attribute: (2416) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.RemAddress: Abstract Types::InetAddress +2024-09-07 21:55:09,420 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,420 [main] TRACE UmlAttribute - created (2416) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.RemAddress: Abstract Types::InetAddress +2024-09-07 21:55:09,420 [main] ERROR UmlAttribute - unclassified CIM attribute: (3714) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.RemAddressType: Abstract Types::InetAddressType +2024-09-07 21:55:09,420 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,420 [main] TRACE UmlAttribute - created (3714) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.RemAddressType: Abstract Types::InetAddressType +2024-09-07 21:55:09,420 [main] ERROR UmlAttribute - unclassified CIM attribute: (2410) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.TLnkErrCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,420 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,420 [main] TRACE UmlAttribute - created (2410) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.TLnkErrCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,420 [main] ERROR UmlAttribute - unclassified CIM attribute: (2415) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.TLnkTyp: EnumeratedTypes::LnkType +2024-09-07 21:55:09,420 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,420 [main] TRACE UmlAttribute - created (2415) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.TLnkTyp: EnumeratedTypes::LnkType +2024-09-07 21:55:09,420 [main] ERROR UmlAttribute - unclassified CIM attribute: (3248) OTHER_CIM CIM [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Summary.CntRs: Abstract Types::CntRs +2024-09-07 21:55:09,421 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,421 [main] TRACE UmlAttribute - created (3248) OTHER_CIM CIM [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Summary.CntRs: Abstract Types::CntRs +2024-09-07 21:55:09,421 [main] ERROR UmlAttribute - unclassified CIM attribute: (3708) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent::Summary.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:55:09,421 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,421 [main] TRACE UmlAttribute - created (3708) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Summary.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:55:09,421 [main] ERROR UmlAttribute - unclassified CIM attribute: (2278) OTHER_CIM CIM [0..*] null <
> IEEE 1815 and IEC 60870-5 Agent::Summary.Master: IEEE 1815 and IEC 60870-5 Agent::MasterAssociation +2024-09-07 21:55:09,421 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,421 [main] TRACE UmlAttribute - created (2278) OTHER_CIM CIM [0..*] attribute <
> IEEE 1815 and IEC 60870-5 Agent::Summary.Master: IEEE 1815 and IEC 60870-5 Agent::MasterAssociation +2024-09-07 21:55:09,421 [main] ERROR UmlAttribute - unclassified CIM attribute: (2287) OTHER_CIM CIM [0..*] null <
> IEEE 1815 and IEC 60870-5 Agent::Summary.Outstation: IEEE 1815 and IEC 60870-5 Agent::OutstationAssociation +2024-09-07 21:55:09,421 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,421 [main] TRACE UmlAttribute - created (2287) OTHER_CIM CIM [0..*] attribute <
> IEEE 1815 and IEC 60870-5 Agent::Summary.Outstation: IEEE 1815 and IEC 60870-5 Agent::OutstationAssociation +2024-09-07 21:55:09,421 [main] ERROR UmlAttribute - unclassified CIM attribute: (3609) OTHER_CIM CIM [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Summary.SecurityNotification: IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification +2024-09-07 21:55:09,422 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,422 [main] TRACE UmlAttribute - created (3609) OTHER_CIM CIM [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Summary.SecurityNotification: IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification +2024-09-07 21:55:09,422 [main] ERROR UmlAttribute - unclassified CIM attribute: (3608) OTHER_CIM CIM [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Summary.StateNotification: IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification +2024-09-07 21:55:09,422 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,422 [main] TRACE UmlAttribute - created (3608) OTHER_CIM CIM [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Summary.StateNotification: IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification +2024-09-07 21:55:09,422 [main] ERROR UmlAttribute - unclassified CIM attribute: (3519) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.AuthFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,422 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,422 [main] TRACE UmlAttribute - created (3519) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.AuthFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,422 [main] ERROR UmlAttribute - unclassified CIM attribute: (3518) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.CtrlPrivFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,422 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,422 [main] TRACE UmlAttribute - created (3518) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.CtrlPrivFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,422 [main] ERROR UmlAttribute - unclassified CIM attribute: (3522) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,422 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,423 [main] TRACE UmlAttribute - created (3522) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,423 [main] ERROR UmlAttribute - unclassified CIM attribute: (4043) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:55:09,423 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,423 [main] TRACE UmlAttribute - created (4043) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:55:09,423 [main] ERROR UmlAttribute - unclassified CIM attribute: (3520) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.PduTampCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,423 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,423 [main] TRACE UmlAttribute - created (3520) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.PduTampCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,423 [main] ERROR UmlAttribute - unclassified CIM attribute: (3521) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.PrivFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,423 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,423 [main] TRACE UmlAttribute - created (3521) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.PrivFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,424 [main] ERROR UmlAttribute - unclassified CIM attribute: (3523) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.SessKeyFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,424 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,424 [main] TRACE UmlAttribute - created (3523) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.SessKeyFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,424 [main] ERROR UmlAttribute - unclassified CIM attribute: (3524) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.UpKeyFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,424 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,424 [main] TRACE UmlAttribute - created (3524) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.UpKeyFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,424 [main] ERROR UmlAttribute - unclassified CIM attribute: (3526) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.InErrCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,424 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,424 [main] TRACE UmlAttribute - created (3526) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.InErrCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,425 [main] ERROR UmlAttribute - unclassified CIM attribute: (3528) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.InOvCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,425 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,425 [main] TRACE UmlAttribute - created (3528) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.InOvCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,425 [main] ERROR UmlAttribute - unclassified CIM attribute: (3529) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.OutUv: Abstract Types::CounterTs +2024-09-07 21:55:09,425 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,425 [main] TRACE UmlAttribute - created (3529) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.OutUv: Abstract Types::CounterTs +2024-09-07 21:55:09,425 [main] ERROR UmlAttribute - unclassified CIM attribute: (3527) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.RxPdu: Abstract Types::CounterTs +2024-09-07 21:55:09,425 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,425 [main] TRACE UmlAttribute - created (3527) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.RxPdu: Abstract Types::CounterTs +2024-09-07 21:55:09,426 [main] ERROR UmlAttribute - unclassified CIM attribute: (3525) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.TxPdu: Abstract Types::CounterTs +2024-09-07 21:55:09,426 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,426 [main] TRACE UmlAttribute - created (3525) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.TxPdu: Abstract Types::CounterTs +2024-09-07 21:55:09,426 [main] ERROR UmlAttribute - unclassified CIM attribute: (4257) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.ExT0Cnt: Abstract Types::CounterTs +2024-09-07 21:55:09,426 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,426 [main] TRACE UmlAttribute - created (4257) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.ExT0Cnt: Abstract Types::CounterTs +2024-09-07 21:55:09,426 [main] ERROR UmlAttribute - unclassified CIM attribute: (4258) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.ExT1Cnt: Abstract Types::CounterTs +2024-09-07 21:55:09,426 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,426 [main] TRACE UmlAttribute - created (4258) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.ExT1Cnt: Abstract Types::CounterTs +2024-09-07 21:55:09,426 [main] ERROR UmlAttribute - unclassified CIM attribute: (4259) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.ExT2Cnt: Abstract Types::CounterTs +2024-09-07 21:55:09,426 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,426 [main] TRACE UmlAttribute - created (4259) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.ExT2Cnt: Abstract Types::CounterTs +2024-09-07 21:55:09,426 [main] ERROR UmlAttribute - unclassified CIM attribute: (4260) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.ExT3Cnt: Abstract Types::CounterTs +2024-09-07 21:55:09,426 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,427 [main] TRACE UmlAttribute - created (4260) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.ExT3Cnt: Abstract Types::CounterTs +2024-09-07 21:55:09,427 [main] ERROR UmlAttribute - unclassified CIM attribute: (4261) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.DiscPduCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,427 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,427 [main] TRACE UmlAttribute - created (4261) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.DiscPduCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,427 [main] ERROR UmlAttribute - unclassified CIM attribute: (4262) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.InErrCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,427 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,427 [main] TRACE UmlAttribute - created (4262) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.InErrCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,427 [main] ERROR UmlAttribute - unclassified CIM attribute: (4263) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.InOvCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,427 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,427 [main] TRACE UmlAttribute - created (4263) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.InOvCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,427 [main] ERROR UmlAttribute - unclassified CIM attribute: (4264) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.InterPDUTime: Abstract Types::Floating +2024-09-07 21:55:09,427 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,428 [main] TRACE UmlAttribute - created (4264) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.InterPDUTime: Abstract Types::Floating +2024-09-07 21:55:09,428 [main] ERROR UmlAttribute - unclassified CIM attribute: (4265) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.MisPDUCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,428 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,428 [main] TRACE UmlAttribute - created (4265) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.MisPDUCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,428 [main] ERROR UmlAttribute - unclassified CIM attribute: (4266) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.OutErr: Abstract Types::CounterTs +2024-09-07 21:55:09,428 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,428 [main] TRACE UmlAttribute - created (4266) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.OutErr: Abstract Types::CounterTs +2024-09-07 21:55:09,428 [main] ERROR UmlAttribute - unclassified CIM attribute: (4267) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.OutUv: Abstract Types::CounterTs +2024-09-07 21:55:09,428 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,428 [main] TRACE UmlAttribute - created (4267) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.OutUv: Abstract Types::CounterTs +2024-09-07 21:55:09,428 [main] ERROR UmlAttribute - unclassified CIM attribute: (4269) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.PDUSizeFail: Abstract Types::CounterTs +2024-09-07 21:55:09,428 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,428 [main] TRACE UmlAttribute - created (4269) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.PDUSizeFail: Abstract Types::CounterTs +2024-09-07 21:55:09,428 [main] ERROR UmlAttribute - unclassified CIM attribute: (4273) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.RtxCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,429 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,429 [main] TRACE UmlAttribute - created (4273) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.RtxCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,429 [main] ERROR UmlAttribute - unclassified CIM attribute: (4275) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.RxPduCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,429 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,429 [main] TRACE UmlAttribute - created (4275) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.RxPduCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,429 [main] ERROR UmlAttribute - unclassified CIM attribute: (4276) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.RxSolicitedReq: Abstract Types::CounterTs +2024-09-07 21:55:09,429 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,429 [main] TRACE UmlAttribute - created (4276) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.RxSolicitedReq: Abstract Types::CounterTs +2024-09-07 21:55:09,429 [main] ERROR UmlAttribute - unclassified CIM attribute: (4277) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.RxUnsolicitedReq: Abstract Types::CounterTs +2024-09-07 21:55:09,429 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,429 [main] TRACE UmlAttribute - created (4277) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.RxUnsolicitedReq: Abstract Types::CounterTs +2024-09-07 21:55:09,429 [main] ERROR UmlAttribute - unclassified CIM attribute: (4280) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.TxPduCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,429 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,429 [main] TRACE UmlAttribute - created (4280) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.TxPduCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,430 [main] ERROR UmlAttribute - unclassified CIM attribute: (4281) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.TxSolicitedReq: Abstract Types::CounterTs +2024-09-07 21:55:09,430 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,430 [main] TRACE UmlAttribute - created (4281) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.TxSolicitedReq: Abstract Types::CounterTs +2024-09-07 21:55:09,430 [main] ERROR UmlAttribute - unclassified CIM attribute: (4282) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.TxUnsolicitedReq: Abstract Types::CounterTs +2024-09-07 21:55:09,430 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,430 [main] TRACE UmlAttribute - created (4282) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.TxUnsolicitedReq: Abstract Types::CounterTs +2024-09-07 21:55:09,430 [main] ERROR UmlAttribute - unclassified CIM attribute: (4306) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.StAsProcScsCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,430 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,430 [main] TRACE UmlAttribute - created (4306) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.StAsProcScsCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,430 [main] ERROR UmlAttribute - unclassified CIM attribute: (4307) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.StAsProcFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,430 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,430 [main] TRACE UmlAttribute - created (4307) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.StAsProcFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,430 [main] ERROR UmlAttribute - unclassified CIM attribute: (4308) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyProcScsCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,431 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,431 [main] TRACE UmlAttribute - created (4308) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyProcScsCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,431 [main] ERROR UmlAttribute - unclassified CIM attribute: (4336) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.KeyAutnAlgSupFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,431 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,431 [main] TRACE UmlAttribute - created (4336) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.KeyAutnAlgSupFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,431 [main] ERROR UmlAttribute - unclassified CIM attribute: (4337) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyWrapAlgSupFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,431 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,431 [main] TRACE UmlAttribute - created (4337) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyWrapAlgSupFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,431 [main] ERROR UmlAttribute - unclassified CIM attribute: (4338) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.DataProtAlgSupFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,431 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,432 [main] TRACE UmlAttribute - created (4338) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.DataProtAlgSupFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,432 [main] ERROR UmlAttribute - unclassified CIM attribute: (4339) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyAutnErrCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,432 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,432 [main] TRACE UmlAttribute - created (4339) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyAutnErrCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,432 [main] ERROR UmlAttribute - unclassified CIM attribute: (4340) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.DataAutnErrCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,432 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,432 [main] TRACE UmlAttribute - created (4340) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.DataAutnErrCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,432 [main] ERROR UmlAttribute - unclassified CIM attribute: (4341) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.UnxpMsgErrCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,433 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,433 [main] TRACE UmlAttribute - created (4341) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.UnxpMsgErrCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,433 [main] ERROR UmlAttribute - unclassified CIM attribute: (4342) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.MaxReplyToutCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,433 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,433 [main] TRACE UmlAttribute - created (4342) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.MaxReplyToutCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,433 [main] ERROR UmlAttribute - unclassified CIM attribute: (4343) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.NodeAutrFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,433 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,433 [main] TRACE UmlAttribute - created (4343) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.NodeAutrFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,433 [main] ERROR UmlAttribute - unclassified CIM attribute: (4344) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.CtrlOperAutrFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,433 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,433 [main] TRACE UmlAttribute - created (4344) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.CtrlOperAutrFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,433 [main] ERROR UmlAttribute - unclassified CIM attribute: (4345) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.RemCertCheckFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,434 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,434 [main] TRACE UmlAttribute - created (4345) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.RemCertCheckFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,434 [main] ERROR UmlAttribute - unclassified CIM attribute: (4346) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.RemCertExpiredCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,434 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,434 [main] TRACE UmlAttribute - created (4346) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.RemCertExpiredCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,434 [main] ERROR UmlAttribute - unclassified CIM attribute: (4347) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.RemCertRevokedCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,434 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,434 [main] TRACE UmlAttribute - created (4347) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.RemCertRevokedCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,434 [main] ERROR UmlAttribute - unclassified CIM attribute: (4348) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.LocCertExpiredCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,434 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,434 [main] TRACE UmlAttribute - created (4348) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.LocCertExpiredCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,434 [main] ERROR UmlAttribute - unclassified CIM attribute: (4349) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.LocCertRevokedCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,435 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,435 [main] TRACE UmlAttribute - created (4349) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.LocCertRevokedCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,435 [main] ERROR UmlAttribute - unclassified CIM attribute: (4350) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.KeysInvRemCertRevCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,435 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,435 [main] TRACE UmlAttribute - created (4350) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.KeysInvRemCertRevCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,435 [main] ERROR UmlAttribute - unclassified CIM attribute: (4351) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.KeysInvLocCertRevCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,435 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,435 [main] TRACE UmlAttribute - created (4351) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.KeysInvLocCertRevCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,435 [main] ERROR UmlAttribute - unclassified CIM attribute: (4352) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.DataAutnScsCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,435 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,436 [main] TRACE UmlAttribute - created (4352) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.DataAutnScsCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,436 [main] ERROR UmlAttribute - unclassified CIM attribute: (4353) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.ReplyToutCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,436 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,436 [main] TRACE UmlAttribute - created (4353) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.ReplyToutCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,436 [main] ERROR UmlAttribute - unclassified CIM attribute: (4354) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.RequestToutCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,436 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,436 [main] TRACE UmlAttribute - created (4354) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.RequestToutCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,436 [main] ERROR UmlAttribute - unclassified CIM attribute: (4355) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyInvUseCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,436 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,436 [main] TRACE UmlAttribute - created (4355) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyInvUseCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,436 [main] ERROR UmlAttribute - unclassified CIM attribute: (4356) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyInvToutCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,437 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,437 [main] TRACE UmlAttribute - created (4356) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyInvToutCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,438 [main] ERROR UmlAttribute - unclassified CIM attribute: (4357) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyProcFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,438 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,438 [main] TRACE UmlAttribute - created (4357) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyProcFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,438 [main] ERROR UmlAttribute - unclassified CIM attribute: (4335) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.ProtInfoErrCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,438 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,438 [main] TRACE UmlAttribute - created (4335) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.ProtInfoErrCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,438 [main] ERROR UmlAttribute - unclassified CIM attribute: (4284) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.AssociationId: Abstract Types::EntityIndex +2024-09-07 21:55:09,438 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,438 [main] TRACE UmlAttribute - created (4284) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.AssociationId: Abstract Types::EntityIndex +2024-09-07 21:55:09,438 [main] ERROR UmlAttribute - unclassified CIM attribute: (4285) OTHER_CIM CIM [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.CntRs: Abstract Types::CntRs +2024-09-07 21:55:09,438 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,439 [main] TRACE UmlAttribute - created (4285) OTHER_CIM CIM [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.CntRs: Abstract Types::CntRs +2024-09-07 21:55:09,439 [main] ERROR UmlAttribute - unclassified CIM attribute: (4286) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.LocAddress: Abstract Types::InetAddress +2024-09-07 21:55:09,439 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,439 [main] TRACE UmlAttribute - created (4286) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.LocAddress: Abstract Types::InetAddress +2024-09-07 21:55:09,439 [main] ERROR UmlAttribute - unclassified CIM attribute: (4287) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.LocAddressType: Abstract Types::InetAddressType +2024-09-07 21:55:09,439 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,439 [main] TRACE UmlAttribute - created (4287) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.LocAddressType: Abstract Types::InetAddressType +2024-09-07 21:55:09,439 [main] ERROR UmlAttribute - unclassified CIM attribute: (4288) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.ProtID: EnumeratedTypes::ProtIdType +2024-09-07 21:55:09,439 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,439 [main] TRACE UmlAttribute - created (4288) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.ProtID: EnumeratedTypes::ProtIdType +2024-09-07 21:55:09,439 [main] ERROR UmlAttribute - unclassified CIM attribute: (4289) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.ProviderDesc: Abstract Types::CharString +2024-09-07 21:55:09,439 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,439 [main] TRACE UmlAttribute - created (4289) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.ProviderDesc: Abstract Types::CharString +2024-09-07 21:55:09,440 [main] ERROR UmlAttribute - unclassified CIM attribute: (4290) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.ProviderName: Abstract Types::CharString +2024-09-07 21:55:09,440 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,440 [main] TRACE UmlAttribute - created (4290) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.ProviderName: Abstract Types::CharString +2024-09-07 21:55:09,440 [main] ERROR UmlAttribute - unclassified CIM attribute: (4291) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.RemAddress: Abstract Types::InetAddress +2024-09-07 21:55:09,440 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,440 [main] TRACE UmlAttribute - created (4291) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.RemAddress: Abstract Types::InetAddress +2024-09-07 21:55:09,440 [main] ERROR UmlAttribute - unclassified CIM attribute: (4292) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.RemAddressType: Abstract Types::InetAddressType +2024-09-07 21:55:09,440 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,440 [main] TRACE UmlAttribute - created (4292) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.RemAddressType: Abstract Types::InetAddressType +2024-09-07 21:55:09,440 [main] ERROR UmlAttribute - unclassified CIM attribute: (4293) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.TLnkErrCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,440 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,440 [main] TRACE UmlAttribute - created (4293) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.TLnkErrCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,441 [main] ERROR UmlAttribute - unclassified CIM attribute: (4294) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.TLnkTyp: EnumeratedTypes::LnkType +2024-09-07 21:55:09,441 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,441 [main] TRACE UmlAttribute - created (4294) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.TLnkTyp: EnumeratedTypes::LnkType +2024-09-07 21:55:09,441 [main] ERROR UmlAttribute - unclassified CIM attribute: (4295) OTHER_CIM CIM [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.CntRs: Abstract Types::CntRs +2024-09-07 21:55:09,441 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,441 [main] TRACE UmlAttribute - created (4295) OTHER_CIM CIM [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.CntRs: Abstract Types::CntRs +2024-09-07 21:55:09,441 [main] ERROR UmlAttribute - unclassified CIM attribute: (4296) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:55:09,441 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,441 [main] TRACE UmlAttribute - created (4296) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:55:09,441 [main] ERROR UmlAttribute - unclassified CIM attribute: (4297) OTHER_CIM CIM [0..*] null <
> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.Master: IEEE 1815 and IEC 60870-5 Agent - ed2::MasterAssociation +2024-09-07 21:55:09,441 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,441 [main] TRACE UmlAttribute - created (4297) OTHER_CIM CIM [0..*] attribute <
> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.Master: IEEE 1815 and IEC 60870-5 Agent - ed2::MasterAssociation +2024-09-07 21:55:09,442 [main] ERROR UmlAttribute - unclassified CIM attribute: (4298) OTHER_CIM CIM [0..*] null <
> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.Outstation: IEEE 1815 and IEC 60870-5 Agent - ed2::OutstationAssociation +2024-09-07 21:55:09,442 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,442 [main] TRACE UmlAttribute - created (4298) OTHER_CIM CIM [0..*] attribute <
> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.Outstation: IEEE 1815 and IEC 60870-5 Agent - ed2::OutstationAssociation +2024-09-07 21:55:09,442 [main] ERROR UmlAttribute - unclassified CIM attribute: (4299) OTHER_CIM CIM [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.SecurityNotification: IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2 +2024-09-07 21:55:09,442 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,442 [main] TRACE UmlAttribute - created (4299) OTHER_CIM CIM [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.SecurityNotification: IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2 +2024-09-07 21:55:09,442 [main] ERROR UmlAttribute - unclassified CIM attribute: (4300) OTHER_CIM CIM [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.StateNotification: IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2 +2024-09-07 21:55:09,442 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,442 [main] TRACE UmlAttribute - created (4300) OTHER_CIM CIM [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.StateNotification: IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2 +2024-09-07 21:55:09,442 [main] ERROR UmlAttribute - unclassified CIM attribute: (4358) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:55:09,443 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,443 [main] TRACE UmlAttribute - created (4358) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:55:09,443 [main] ERROR UmlAttribute - unclassified CIM attribute: (4360) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:55:09,443 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,443 [main] TRACE UmlAttribute - created (4360) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:55:09,443 [main] ERROR UmlAttribute - unclassified CIM attribute: (1254) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.assocPoolMax: Abstract Types::Integer +2024-09-07 21:55:09,443 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,443 [main] TRACE UmlAttribute - created (1254) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.assocPoolMax: Abstract Types::Integer +2024-09-07 21:55:09,443 [main] ERROR UmlAttribute - unclassified CIM attribute: (1255) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.assocPoolUsed: Abstract Types::Integer +2024-09-07 21:55:09,443 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,443 [main] TRACE UmlAttribute - created (1255) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.assocPoolUsed: Abstract Types::Integer +2024-09-07 21:55:09,443 [main] ERROR UmlAttribute - unclassified CIM attribute: (1278) OTHER_CIM CIM [0..1] null <> ACSI::ACSISummary.CntRs: Abstract Types::CntRs +2024-09-07 21:55:09,444 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,444 [main] TRACE UmlAttribute - created (1278) OTHER_CIM CIM [0..1] attribute <> ACSI::ACSISummary.CntRs: Abstract Types::CntRs +2024-09-07 21:55:09,444 [main] ERROR UmlAttribute - unclassified CIM attribute: (3931) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.CtrlPrivFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,444 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,444 [main] TRACE UmlAttribute - created (3931) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.CtrlPrivFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,444 [main] ERROR UmlAttribute - unclassified CIM attribute: (1262) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.gsePubMax: Abstract Types::Integer +2024-09-07 21:55:09,444 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,444 [main] TRACE UmlAttribute - created (1262) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.gsePubMax: Abstract Types::Integer +2024-09-07 21:55:09,444 [main] ERROR UmlAttribute - unclassified CIM attribute: (2263) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.gsePubUsed: Abstract Types::Integer +2024-09-07 21:55:09,444 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,445 [main] TRACE UmlAttribute - created (2263) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.gsePubUsed: Abstract Types::Integer +2024-09-07 21:55:09,445 [main] ERROR UmlAttribute - unclassified CIM attribute: (1264) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.gseSubMax: Abstract Types::Integer +2024-09-07 21:55:09,445 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,445 [main] TRACE UmlAttribute - created (1264) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.gseSubMax: Abstract Types::Integer +2024-09-07 21:55:09,445 [main] ERROR UmlAttribute - unclassified CIM attribute: (1263) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.gseSubUsed: Abstract Types::Integer +2024-09-07 21:55:09,445 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,445 [main] TRACE UmlAttribute - created (1263) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.gseSubUsed: Abstract Types::Integer +2024-09-07 21:55:09,445 [main] ERROR UmlAttribute - unclassified CIM attribute: (3709) OTHER_CIM CIM const [1..1] null <> ACSI::ACSISummary.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:55:09,445 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,445 [main] TRACE UmlAttribute - created (3709) OTHER_CIM CIM const [1..1] attribute <> ACSI::ACSISummary.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:55:09,445 [main] ERROR UmlAttribute - unclassified CIM attribute: (3930) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.PrivFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,445 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,445 [main] TRACE UmlAttribute - created (3930) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.PrivFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,445 [main] ERROR UmlAttribute - unclassified CIM attribute: (1271) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.RemoteEstAssocCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,445 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,445 [main] TRACE UmlAttribute - created (1271) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.RemoteEstAssocCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,446 [main] ERROR UmlAttribute - unclassified CIM attribute: (3932) OTHER_CIM CIM const [1..1] null <> ACSI::ACSISummary.AcsCtlFail: Abstract Types::CounterTs +2024-09-07 21:55:09,446 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,446 [main] TRACE UmlAttribute - created (3932) OTHER_CIM CIM const [1..1] attribute <> ACSI::ACSISummary.AcsCtlFail: Abstract Types::CounterTs +2024-09-07 21:55:09,446 [main] ERROR UmlAttribute - unclassified CIM attribute: (1282) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.svPubMax: Abstract Types::Integer +2024-09-07 21:55:09,446 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,446 [main] TRACE UmlAttribute - created (1282) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.svPubMax: Abstract Types::Integer +2024-09-07 21:55:09,446 [main] ERROR UmlAttribute - unclassified CIM attribute: (1281) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.svPubUsed: Abstract Types::Integer +2024-09-07 21:55:09,446 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,446 [main] TRACE UmlAttribute - created (1281) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.svPubUsed: Abstract Types::Integer +2024-09-07 21:55:09,446 [main] ERROR UmlAttribute - unclassified CIM attribute: (1284) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.svSubMax: Abstract Types::Integer +2024-09-07 21:55:09,446 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,447 [main] TRACE UmlAttribute - created (1284) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.svSubMax: Abstract Types::Integer +2024-09-07 21:55:09,447 [main] ERROR UmlAttribute - unclassified CIM attribute: (1283) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.svSubUsed: Abstract Types::Integer +2024-09-07 21:55:09,447 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,447 [main] TRACE UmlAttribute - created (1283) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.svSubUsed: Abstract Types::Integer +2024-09-07 21:55:09,447 [main] ERROR UmlAttribute - unclassified CIM attribute: (4122) OTHER_CIM CIM const [1..1] null <> MMS::MMSProtocolInfo.ErrorRxCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,447 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,447 [main] TRACE UmlAttribute - created (4122) OTHER_CIM CIM const [1..1] attribute <> MMS::MMSProtocolInfo.ErrorRxCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,447 [main] ERROR UmlAttribute - unclassified CIM attribute: (4123) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.ErrorTxCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,447 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,447 [main] TRACE UmlAttribute - created (4123) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.ErrorTxCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,447 [main] ERROR UmlAttribute - unclassified CIM attribute: (3214) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.InfoRptRxCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,447 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,448 [main] TRACE UmlAttribute - created (3214) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.InfoRptRxCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,448 [main] ERROR UmlAttribute - unclassified CIM attribute: (4120) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.InfoRptTxCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,448 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,448 [main] TRACE UmlAttribute - created (4120) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.InfoRptTxCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,448 [main] ERROR UmlAttribute - unclassified CIM attribute: (3969) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.MisCmdAckCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,448 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,448 [main] TRACE UmlAttribute - created (3969) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.MisCmdAckCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,448 [main] ERROR UmlAttribute - unclassified CIM attribute: (3414) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.MMSProExchTime: Abstract Types::Floating +2024-09-07 21:55:09,448 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,448 [main] TRACE UmlAttribute - created (3414) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.MMSProExchTime: Abstract Types::Floating +2024-09-07 21:55:09,448 [main] ERROR UmlAttribute - unclassified CIM attribute: (3211) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.RejectRxCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,448 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,448 [main] TRACE UmlAttribute - created (3211) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.RejectRxCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,448 [main] ERROR UmlAttribute - unclassified CIM attribute: (3212) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.RejectTxCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,449 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,449 [main] TRACE UmlAttribute - created (3212) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.RejectTxCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,449 [main] ERROR UmlAttribute - unclassified CIM attribute: (3208) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.ReqRxCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,449 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,450 [main] TRACE UmlAttribute - created (3208) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.ReqRxCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,450 [main] ERROR UmlAttribute - unclassified CIM attribute: (3206) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.ReqTxCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,450 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,450 [main] TRACE UmlAttribute - created (3206) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.ReqTxCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,451 [main] ERROR UmlAttribute - unclassified CIM attribute: (3210) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.RespRxCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,451 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,451 [main] TRACE UmlAttribute - created (3210) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.RespRxCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,451 [main] ERROR UmlAttribute - unclassified CIM attribute: (3209) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.RespTxCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,451 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,451 [main] TRACE UmlAttribute - created (3209) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.RespTxCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,451 [main] ERROR UmlAttribute - unclassified CIM attribute: (3935) OTHER_CIM CIM const [1..1] null <> MMS::MMSProtocolInfo.SessKeyFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,451 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,451 [main] TRACE UmlAttribute - created (3935) OTHER_CIM CIM const [1..1] attribute <> MMS::MMSProtocolInfo.SessKeyFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,451 [main] ERROR UmlAttribute - unclassified CIM attribute: (3918) OTHER_CIM CIM const [1..1] null <> MMS::MMSProvider.AProfileDecryptFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,451 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,451 [main] TRACE UmlAttribute - created (3918) OTHER_CIM CIM const [1..1] attribute <> MMS::MMSProvider.AProfileDecryptFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,451 [main] ERROR UmlAttribute - unclassified CIM attribute: (3938) OTHER_CIM CIM const [1..1] null <> MMS::MMSProvider.AuthFail: Abstract Types::CounterTs +2024-09-07 21:55:09,452 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,452 [main] TRACE UmlAttribute - created (3938) OTHER_CIM CIM const [1..1] attribute <> MMS::MMSProvider.AuthFail: Abstract Types::CounterTs +2024-09-07 21:55:09,452 [main] ERROR UmlAttribute - unclassified CIM attribute: (3245) OTHER_CIM CIM [0..1] null <> MMS::MMSProvider.CntRs: Abstract Types::CntRs +2024-09-07 21:55:09,452 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,452 [main] TRACE UmlAttribute - created (3245) OTHER_CIM CIM [0..1] attribute <> MMS::MMSProvider.CntRs: Abstract Types::CntRs +2024-09-07 21:55:09,452 [main] ERROR UmlAttribute - unclassified CIM attribute: (2831) OTHER_CIM CIM const [1..1] null <> MMS::MMSProvider.ConnFailInCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,452 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,452 [main] TRACE UmlAttribute - created (2831) OTHER_CIM CIM const [1..1] attribute <> MMS::MMSProvider.ConnFailInCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,452 [main] ERROR UmlAttribute - unclassified CIM attribute: (2832) OTHER_CIM CIM const [1..1] null <> MMS::MMSProvider.ConnFailOutCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,452 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,453 [main] TRACE UmlAttribute - created (2832) OTHER_CIM CIM const [1..1] attribute <> MMS::MMSProvider.ConnFailOutCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,453 [main] ERROR UmlAttribute - unclassified CIM attribute: (3936) OTHER_CIM CIM const [0..1] null <> MMS::MMSProvider.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,453 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,453 [main] TRACE UmlAttribute - created (3936) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProvider.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,453 [main] ERROR UmlAttribute - unclassified CIM attribute: (3710) OTHER_CIM CIM const [1..1] null <> MMS::MMSProvider.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:55:09,453 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,453 [main] TRACE UmlAttribute - created (3710) OTHER_CIM CIM const [1..1] attribute <> MMS::MMSProvider.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:55:09,453 [main] ERROR UmlAttribute - unclassified CIM attribute: (2803) OTHER_CIM CIM [0..*] null <
> MMS::MMSProvider.MMS: MMS::MMSAssociation +2024-09-07 21:55:09,453 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,453 [main] TRACE UmlAttribute - created (2803) OTHER_CIM CIM [0..*] attribute <
> MMS::MMSProvider.MMS: MMS::MMSAssociation +2024-09-07 21:55:09,453 [main] ERROR UmlAttribute - unclassified CIM attribute: (3915) OTHER_CIM CIM const [0..1] null <> MMS::MMSProvider.PrivFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,453 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,453 [main] TRACE UmlAttribute - created (3915) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProvider.PrivFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,453 [main] ERROR UmlAttribute - unclassified CIM attribute: (2810) OTHER_CIM CIM const [0..1] null <> MMS::MMSProvider.ProviderDesc: Abstract Types::CharString +2024-09-07 21:55:09,454 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,454 [main] TRACE UmlAttribute - created (2810) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProvider.ProviderDesc: Abstract Types::CharString +2024-09-07 21:55:09,454 [main] ERROR UmlAttribute - unclassified CIM attribute: (2811) OTHER_CIM CIM const [0..1] null <> MMS::MMSProvider.ProviderName: Abstract Types::CharString +2024-09-07 21:55:09,454 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,454 [main] TRACE UmlAttribute - created (2811) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProvider.ProviderName: Abstract Types::CharString +2024-09-07 21:55:09,454 [main] ERROR UmlAttribute - unclassified CIM attribute: (3614) OTHER_CIM CIM [0..1] null <> MMS::MMSProvider.SecurityNotification: MMS::MMSSecurityNotification +2024-09-07 21:55:09,454 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,454 [main] TRACE UmlAttribute - created (3614) OTHER_CIM CIM [0..1] attribute <> MMS::MMSProvider.SecurityNotification: MMS::MMSSecurityNotification +2024-09-07 21:55:09,454 [main] ERROR UmlAttribute - unclassified CIM attribute: (4030) OTHER_CIM CIM const [0..1] null <> MMS::MMSProvider.SessionEstablishmentRate: Abstract Types::Integer +2024-09-07 21:55:09,454 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,454 [main] TRACE UmlAttribute - created (4030) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProvider.SessionEstablishmentRate: Abstract Types::Integer +2024-09-07 21:55:09,454 [main] ERROR UmlAttribute - unclassified CIM attribute: (4031) OTHER_CIM CIM const [0..1] null <> MMS::MMSProvider.SessionRestartCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,454 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,455 [main] TRACE UmlAttribute - created (4031) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProvider.SessionRestartCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,455 [main] ERROR UmlAttribute - unclassified CIM attribute: (3613) OTHER_CIM CIM [0..1] null <> MMS::MMSProvider.StateNotification: MMS::MMSNotification +2024-09-07 21:55:09,455 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,455 [main] TRACE UmlAttribute - created (3613) OTHER_CIM CIM [0..1] attribute <> MMS::MMSProvider.StateNotification: MMS::MMSNotification +2024-09-07 21:55:09,455 [main] ERROR UmlAttribute - unclassified CIM attribute: (3919) OTHER_CIM CIM const [1..1] null <> MMS::MMSProvider.TProfileDecryptFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,455 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,455 [main] TRACE UmlAttribute - created (3919) OTHER_CIM CIM const [1..1] attribute <> MMS::MMSProvider.TProfileDecryptFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,455 [main] ERROR UmlAttribute - unclassified CIM attribute: (3921) OTHER_CIM CIM const [0..1] null <> MMS::MMSProvider.TProfileSessKeyFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,455 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,455 [main] TRACE UmlAttribute - created (3921) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProvider.TProfileSessKeyFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,455 [main] ERROR UmlAttribute - unclassified CIM attribute: (3975) OTHER_CIM CIM const [1..1] null <> MMS::MMSProvider.UpKeyFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,456 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,456 [main] TRACE UmlAttribute - created (3975) OTHER_CIM CIM const [1..1] attribute <> MMS::MMSProvider.UpKeyFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,456 [main] ERROR UmlAttribute - unclassified CIM attribute: (2820) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.Active: Abstract Types::BooleanValueTs +2024-09-07 21:55:09,456 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,456 [main] TRACE UmlAttribute - created (2820) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.Active: Abstract Types::BooleanValueTs +2024-09-07 21:55:09,456 [main] ERROR UmlAttribute - unclassified CIM attribute: (3727) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.AssociationId: Abstract Types::EntityIndex +2024-09-07 21:55:09,456 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,456 [main] TRACE UmlAttribute - created (3727) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.AssociationId: Abstract Types::EntityIndex +2024-09-07 21:55:09,456 [main] ERROR UmlAttribute - unclassified CIM attribute: (4119) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.Client: Abstract Types::BooleanValue +2024-09-07 21:55:09,456 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,456 [main] TRACE UmlAttribute - created (4119) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.Client: Abstract Types::BooleanValue +2024-09-07 21:55:09,456 [main] ERROR UmlAttribute - unclassified CIM attribute: (3246) OTHER_CIM CIM [0..1] null <> MMS::MMSAssociation.CntRs: Abstract Types::CntRs +2024-09-07 21:55:09,456 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,456 [main] TRACE UmlAttribute - created (3246) OTHER_CIM CIM [0..1] attribute <> MMS::MMSAssociation.CntRs: Abstract Types::CntRs +2024-09-07 21:55:09,456 [main] ERROR UmlAttribute - unclassified CIM attribute: (3939) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.HndShTime: Abstract Types::Floating +2024-09-07 21:55:09,457 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,457 [main] TRACE UmlAttribute - created (3939) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.HndShTime: Abstract Types::Floating +2024-09-07 21:55:09,457 [main] ERROR UmlAttribute - unclassified CIM attribute: (2844) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.RemoteEstAssos: Abstract Types::BooleanValue +2024-09-07 21:55:09,457 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,457 [main] TRACE UmlAttribute - created (2844) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.RemoteEstAssos: Abstract Types::BooleanValue +2024-09-07 21:55:09,457 [main] ERROR UmlAttribute - unclassified CIM attribute: (2876) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.RemoteIP: Abstract Types::InetAddress +2024-09-07 21:55:09,457 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,457 [main] TRACE UmlAttribute - created (2876) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.RemoteIP: Abstract Types::InetAddress +2024-09-07 21:55:09,457 [main] ERROR UmlAttribute - unclassified CIM attribute: (3692) OTHER_CIM CIM [0..1] null <> MMS::MMSAssociation.RemoteIPAddressType: Abstract Types::InetAddressType +2024-09-07 21:55:09,457 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,457 [main] TRACE UmlAttribute - created (3692) OTHER_CIM CIM [0..1] attribute <> MMS::MMSAssociation.RemoteIPAddressType: Abstract Types::InetAddressType +2024-09-07 21:55:09,457 [main] ERROR UmlAttribute - unclassified CIM attribute: (2873) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.RemotePSEL: Abstract Types::Selector +2024-09-07 21:55:09,457 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,458 [main] TRACE UmlAttribute - created (2873) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.RemotePSEL: Abstract Types::Selector +2024-09-07 21:55:09,458 [main] ERROR UmlAttribute - unclassified CIM attribute: (2874) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.RemoteSSEL: Abstract Types::Selector +2024-09-07 21:55:09,458 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,458 [main] TRACE UmlAttribute - created (2874) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.RemoteSSEL: Abstract Types::Selector +2024-09-07 21:55:09,458 [main] ERROR UmlAttribute - unclassified CIM attribute: (2875) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.RemoteTSEL: Abstract Types::Selector +2024-09-07 21:55:09,458 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,458 [main] TRACE UmlAttribute - created (2875) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.RemoteTSEL: Abstract Types::Selector +2024-09-07 21:55:09,458 [main] ERROR UmlAttribute - unclassified CIM attribute: (3972) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.ReportPer100Seconds: Abstract Types::Integer +2024-09-07 21:55:09,458 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,458 [main] TRACE UmlAttribute - created (3972) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.ReportPer100Seconds: Abstract Types::Integer +2024-09-07 21:55:09,458 [main] ERROR UmlAttribute - unclassified CIM attribute: (3968) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.RptReceptionDelay: Abstract Types::FloatingTs +2024-09-07 21:55:09,458 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,458 [main] TRACE UmlAttribute - created (3968) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.RptReceptionDelay: Abstract Types::FloatingTs +2024-09-07 21:55:09,458 [main] ERROR UmlAttribute - unclassified CIM attribute: (3913) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.SecurityProfile: EnumeratedTypes::SecurityProfileType +2024-09-07 21:55:09,459 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,459 [main] TRACE UmlAttribute - created (3913) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.SecurityProfile: EnumeratedTypes::SecurityProfileType +2024-09-07 21:55:09,459 [main] ERROR UmlAttribute - unclassified CIM attribute: (3582) OTHER_CIM CIM const [0..1] null <> MMS::MMSSecurityNotification.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,459 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,459 [main] TRACE UmlAttribute - created (3582) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSSecurityNotification.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,459 [main] ERROR UmlAttribute - unclassified CIM attribute: (4036) OTHER_CIM CIM const [0..1] null <> MMS::MMSSecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:55:09,459 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,459 [main] TRACE UmlAttribute - created (4036) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSSecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-07 21:55:09,459 [main] ERROR UmlAttribute - unclassified CIM attribute: (3581) OTHER_CIM CIM const [0..1] null <> MMS::MMSSecurityNotification.PrivFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,459 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,459 [main] TRACE UmlAttribute - created (3581) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSSecurityNotification.PrivFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,459 [main] ERROR UmlAttribute - unclassified CIM attribute: (3584) OTHER_CIM CIM const [0..1] null <> MMS::MMSSecurityNotification.UpKeyFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,459 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,459 [main] TRACE UmlAttribute - created (3584) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSSecurityNotification.UpKeyFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,459 [main] ERROR UmlAttribute - unclassified CIM attribute: (3573) OTHER_CIM CIM const [0..1] null <> MMS::MMSNotification.ConnFailInCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,460 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,460 [main] TRACE UmlAttribute - created (3573) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSNotification.ConnFailInCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,460 [main] ERROR UmlAttribute - unclassified CIM attribute: (3574) OTHER_CIM CIM const [0..1] null <> MMS::MMSNotification.ConnFailOutCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,460 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,460 [main] TRACE UmlAttribute - created (3574) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSNotification.ConnFailOutCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,460 [main] ERROR UmlAttribute - unclassified CIM attribute: (3575) OTHER_CIM CIM const [0..1] null <> MMS::MMSNotification.RejectRxCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,460 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,460 [main] TRACE UmlAttribute - created (3575) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSNotification.RejectRxCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,460 [main] ERROR UmlAttribute - unclassified CIM attribute: (3576) OTHER_CIM CIM const [0..1] null <> MMS::MMSNotification.RejectTxCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,460 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,460 [main] TRACE UmlAttribute - created (3576) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSNotification.RejectTxCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,461 [main] ERROR UmlAttribute - unclassified CIM attribute: (4054) OTHER_CIM CIM const [0..1] null <> SV and GSE common objects::GSEandSVCommon.GroupUpKeyFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,461 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,461 [main] TRACE UmlAttribute - created (4054) OTHER_CIM CIM const [0..1] attribute <> SV and GSE common objects::GSEandSVCommon.GroupUpKeyFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,461 [main] ERROR UmlAttribute - unclassified CIM attribute: (4055) OTHER_CIM CIM const [1..1] null <> SV and GSE common objects::GSEandSVCommon.KDCAuthFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,461 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,461 [main] TRACE UmlAttribute - created (4055) OTHER_CIM CIM const [1..1] attribute <> SV and GSE common objects::GSEandSVCommon.KDCAuthFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,462 [main] ERROR UmlAttribute - unclassified CIM attribute: (4056) OTHER_CIM CIM const [0..1] null <> SV and GSE common objects::GSEandSVCommon.KDCSessionKeyFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,462 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,462 [main] TRACE UmlAttribute - created (4056) OTHER_CIM CIM const [0..1] attribute <> SV and GSE common objects::GSEandSVCommon.KDCSessionKeyFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,462 [main] ERROR UmlAttribute - unclassified CIM attribute: (4057) OTHER_CIM CIM const [0..1] null <> SV and GSE common objects::GSEandSVPublisherAssociation.CBRef: Abstract Types::CharString +2024-09-07 21:55:09,462 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,462 [main] TRACE UmlAttribute - created (4057) OTHER_CIM CIM const [0..1] attribute <> SV and GSE common objects::GSEandSVPublisherAssociation.CBRef: Abstract Types::CharString +2024-09-07 21:55:09,462 [main] ERROR UmlAttribute - unclassified CIM attribute: (4058) OTHER_CIM CIM [0..1] null <> SV and GSE common objects::GSEandSVPublisherAssociation.CntRs: Abstract Types::CntRs +2024-09-07 21:55:09,462 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,462 [main] TRACE UmlAttribute - created (4058) OTHER_CIM CIM [0..1] attribute <> SV and GSE common objects::GSEandSVPublisherAssociation.CntRs: Abstract Types::CntRs +2024-09-07 21:55:09,462 [main] ERROR UmlAttribute - unclassified CIM attribute: (4059) OTHER_CIM CIM const [0..1] null <> SV and GSE common objects::GSEandSVPublisherAssociation.OutUv: Abstract Types::CounterTs +2024-09-07 21:55:09,462 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,462 [main] TRACE UmlAttribute - created (4059) OTHER_CIM CIM const [0..1] attribute <> SV and GSE common objects::GSEandSVPublisherAssociation.OutUv: Abstract Types::CounterTs +2024-09-07 21:55:09,462 [main] ERROR UmlAttribute - unclassified CIM attribute: (4366) OTHER_CIM CIM const [1..1] null <> SV and GSE common objects::GSEandSVPublisherAssociation.APPID: Abstract Types::CharString +2024-09-07 21:55:09,463 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,463 [main] TRACE UmlAttribute - created (4366) OTHER_CIM CIM const [1..1] attribute <> SV and GSE common objects::GSEandSVPublisherAssociation.APPID: Abstract Types::CharString +2024-09-07 21:55:09,463 [main] ERROR UmlAttribute - unclassified CIM attribute: (3829) OTHER_CIM CIM const [0..1] null <> SV and GSE common objects::GSEandSVPublisherAssociation.TxPduPerSecond: Abstract Types::Floating +2024-09-07 21:55:09,463 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,463 [main] TRACE UmlAttribute - created (3829) OTHER_CIM CIM const [0..1] attribute <> SV and GSE common objects::GSEandSVPublisherAssociation.TxPduPerSecond: Abstract Types::Floating +2024-09-07 21:55:09,463 [main] ERROR UmlAttribute - unclassified CIM attribute: (4061) OTHER_CIM CIM const [0..1] null <> SV and GSE common objects::GSEandSVSubscriberAssociation.CBRef: Abstract Types::CharString +2024-09-07 21:55:09,463 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,463 [main] TRACE UmlAttribute - created (4061) OTHER_CIM CIM const [0..1] attribute <> SV and GSE common objects::GSEandSVSubscriberAssociation.CBRef: Abstract Types::CharString +2024-09-07 21:55:09,463 [main] ERROR UmlAttribute - unclassified CIM attribute: (4062) OTHER_CIM CIM [0..1] null <> SV and GSE common objects::GSEandSVSubscriberAssociation.CntRs: Abstract Types::CntRs +2024-09-07 21:55:09,463 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,463 [main] TRACE UmlAttribute - created (4062) OTHER_CIM CIM [0..1] attribute <> SV and GSE common objects::GSEandSVSubscriberAssociation.CntRs: Abstract Types::CntRs +2024-09-07 21:55:09,463 [main] ERROR UmlAttribute - unclassified CIM attribute: (4063) OTHER_CIM CIM const [0..1] null <> SV and GSE common objects::GSEandSVSubscriberAssociation.InOvCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,463 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,463 [main] TRACE UmlAttribute - created (4063) OTHER_CIM CIM const [0..1] attribute <> SV and GSE common objects::GSEandSVSubscriberAssociation.InOvCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,467 [main] ERROR UmlAttribute - unclassified CIM attribute: (4064) OTHER_CIM CIM const [1..1] null <> SV and GSE common objects::GSEandSVSubscriberAssociation.MessageIntegrityFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,468 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,468 [main] TRACE UmlAttribute - created (4064) OTHER_CIM CIM const [1..1] attribute <> SV and GSE common objects::GSEandSVSubscriberAssociation.MessageIntegrityFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,468 [main] ERROR UmlAttribute - unclassified CIM attribute: (4067) OTHER_CIM CIM const [0..1] null <> SV and GSE common objects::GSEandSVSubscriberAssociation.RxPduPerSecond: Abstract Types::Floating +2024-09-07 21:55:09,468 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,468 [main] TRACE UmlAttribute - created (4067) OTHER_CIM CIM const [0..1] attribute <> SV and GSE common objects::GSEandSVSubscriberAssociation.RxPduPerSecond: Abstract Types::Floating +2024-09-07 21:55:09,468 [main] ERROR UmlAttribute - unclassified CIM attribute: (4365) OTHER_CIM CIM const [1..1] null <> SV and GSE common objects::GSEandSVSubscriberAssociation.APPID: Abstract Types::CharString +2024-09-07 21:55:09,468 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,468 [main] TRACE UmlAttribute - created (4365) OTHER_CIM CIM const [1..1] attribute <> SV and GSE common objects::GSEandSVSubscriberAssociation.APPID: Abstract Types::CharString +2024-09-07 21:55:09,468 [main] ERROR UmlAttribute - unclassified CIM attribute: (4367) OTHER_CIM CIM const [1..1] null <> SV and GSE common objects::GSEandSVSubscriberAssociation.RxAPPID: Abstract Types::CharStringTs +2024-09-07 21:55:09,468 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,469 [main] TRACE UmlAttribute - created (4367) OTHER_CIM CIM const [1..1] attribute <> SV and GSE common objects::GSEandSVSubscriberAssociation.RxAPPID: Abstract Types::CharStringTs +2024-09-07 21:55:09,469 [main] ERROR UmlAttribute - unclassified CIM attribute: (3844) OTHER_CIM CIM [0..1] null <> SV::SVProvider.CntRs: Abstract Types::CntRs +2024-09-07 21:55:09,469 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,469 [main] TRACE UmlAttribute - created (3844) OTHER_CIM CIM [0..1] attribute <> SV::SVProvider.CntRs: Abstract Types::CntRs +2024-09-07 21:55:09,469 [main] ERROR UmlAttribute - unclassified CIM attribute: (4052) OTHER_CIM CIM const [0..1] null <> SV::SVProvider.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,469 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,469 [main] TRACE UmlAttribute - created (4052) OTHER_CIM CIM const [0..1] attribute <> SV::SVProvider.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,469 [main] ERROR UmlAttribute - unclassified CIM attribute: (3845) OTHER_CIM CIM const [0..1] null <> SV::SVProvider.PDUSizeFail: Abstract Types::CounterTs +2024-09-07 21:55:09,469 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,469 [main] TRACE UmlAttribute - created (3845) OTHER_CIM CIM const [0..1] attribute <> SV::SVProvider.PDUSizeFail: Abstract Types::CounterTs +2024-09-07 21:55:09,469 [main] ERROR UmlAttribute - unclassified CIM attribute: (3846) OTHER_CIM CIM [0..*] null <
> SV::SVProvider.PIP: SV::SVPublisherAssociationIP +2024-09-07 21:55:09,469 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,470 [main] TRACE UmlAttribute - created (3846) OTHER_CIM CIM [0..*] attribute <
> SV::SVProvider.PIP: SV::SVPublisherAssociationIP +2024-09-07 21:55:09,470 [main] ERROR UmlAttribute - unclassified CIM attribute: (3847) OTHER_CIM CIM [0..*] null <
> SV::SVProvider.PL2: SV::SVPublisherAssociationL2 +2024-09-07 21:55:09,470 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,470 [main] TRACE UmlAttribute - created (3847) OTHER_CIM CIM [0..*] attribute <
> SV::SVProvider.PL2: SV::SVPublisherAssociationL2 +2024-09-07 21:55:09,470 [main] ERROR UmlAttribute - unclassified CIM attribute: (3848) OTHER_CIM CIM [0..1] null <> SV::SVProvider.SecurityNotification: SV::SVNotification +2024-09-07 21:55:09,470 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,470 [main] TRACE UmlAttribute - created (3848) OTHER_CIM CIM [0..1] attribute <> SV::SVProvider.SecurityNotification: SV::SVNotification +2024-09-07 21:55:09,470 [main] ERROR UmlAttribute - unclassified CIM attribute: (3849) OTHER_CIM CIM [0..*] null <
> SV::SVProvider.SIP: SV::SVSubcriberAssociationIP +2024-09-07 21:55:09,470 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,470 [main] TRACE UmlAttribute - created (3849) OTHER_CIM CIM [0..*] attribute <
> SV::SVProvider.SIP: SV::SVSubcriberAssociationIP +2024-09-07 21:55:09,470 [main] ERROR UmlAttribute - unclassified CIM attribute: (3850) OTHER_CIM CIM [0..*] null <
> SV::SVProvider.SL2: SV::SVSubcriberAssociationL2 +2024-09-07 21:55:09,470 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,470 [main] TRACE UmlAttribute - created (3850) OTHER_CIM CIM [0..*] attribute <
> SV::SVProvider.SL2: SV::SVSubcriberAssociationL2 +2024-09-07 21:55:09,470 [main] ERROR UmlAttribute - unclassified CIM attribute: (3817) OTHER_CIM CIM const [0..1] null <> SV::SVPublisherAssociationIP.DestIpAddr: Abstract Types::InetAddress +2024-09-07 21:55:09,471 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,471 [main] TRACE UmlAttribute - created (3817) OTHER_CIM CIM const [0..1] attribute <> SV::SVPublisherAssociationIP.DestIpAddr: Abstract Types::InetAddress +2024-09-07 21:55:09,471 [main] ERROR UmlAttribute - unclassified CIM attribute: (3818) OTHER_CIM CIM const [0..1] null <> SV::SVPublisherAssociationIP.DestIpAddrType: Abstract Types::InetAddressType +2024-09-07 21:55:09,471 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,471 [main] TRACE UmlAttribute - created (3818) OTHER_CIM CIM const [0..1] attribute <> SV::SVPublisherAssociationIP.DestIpAddrType: Abstract Types::InetAddressType +2024-09-07 21:55:09,471 [main] ERROR UmlAttribute - unclassified CIM attribute: (3819) OTHER_CIM CIM const [0..1] null <> SV::SVPublisherAssociationL2.DestMacAddr: Abstract Types::MacAddress +2024-09-07 21:55:09,471 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,471 [main] TRACE UmlAttribute - created (3819) OTHER_CIM CIM const [0..1] attribute <> SV::SVPublisherAssociationL2.DestMacAddr: Abstract Types::MacAddress +2024-09-07 21:55:09,471 [main] ERROR UmlAttribute - unclassified CIM attribute: (3823) OTHER_CIM CIM const [0..1] null <> SV::SVSubcriberAssociationIP.SrcIpAddr: Abstract Types::InetAddress +2024-09-07 21:55:09,471 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,471 [main] TRACE UmlAttribute - created (3823) OTHER_CIM CIM const [0..1] attribute <> SV::SVSubcriberAssociationIP.SrcIpAddr: Abstract Types::InetAddress +2024-09-07 21:55:09,471 [main] ERROR UmlAttribute - unclassified CIM attribute: (3824) OTHER_CIM CIM const [0..1] null <> SV::SVSubcriberAssociationIP.SrcIpAddrType: Abstract Types::InetAddressType +2024-09-07 21:55:09,471 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,471 [main] TRACE UmlAttribute - created (3824) OTHER_CIM CIM const [0..1] attribute <> SV::SVSubcriberAssociationIP.SrcIpAddrType: Abstract Types::InetAddressType +2024-09-07 21:55:09,471 [main] ERROR UmlAttribute - unclassified CIM attribute: (3825) OTHER_CIM CIM const [0..1] null <> SV::SVSubcriberAssociationL2.SrcMacAddr: Abstract Types::MacAddress +2024-09-07 21:55:09,472 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,472 [main] TRACE UmlAttribute - created (3825) OTHER_CIM CIM const [0..1] attribute <> SV::SVSubcriberAssociationL2.SrcMacAddr: Abstract Types::MacAddress +2024-09-07 21:55:09,472 [main] ERROR UmlAttribute - unclassified CIM attribute: (3750) OTHER_CIM CIM const [0..1] null <> GSE::GSESubscriberAssociation.ConfRevMis: Abstract Types::BooleanValue +2024-09-07 21:55:09,472 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,472 [main] TRACE UmlAttribute - created (3750) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubscriberAssociation.ConfRevMis: Abstract Types::BooleanValue +2024-09-07 21:55:09,472 [main] ERROR UmlAttribute - unclassified CIM attribute: (3755) OTHER_CIM CIM const [0..1] null <> GSE::GSESubscriberAssociation.NdsComm: Abstract Types::BooleanValue +2024-09-07 21:55:09,472 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,472 [main] TRACE UmlAttribute - created (3755) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubscriberAssociation.NdsComm: Abstract Types::BooleanValue +2024-09-07 21:55:09,472 [main] ERROR UmlAttribute - unclassified CIM attribute: (4368) OTHER_CIM CIM const [0..1] null <> GSE::GSESubscriberAssociation.ConfRev: Abstract Types::Integer +2024-09-07 21:55:09,472 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,472 [main] TRACE UmlAttribute - created (4368) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubscriberAssociation.ConfRev: Abstract Types::Integer +2024-09-07 21:55:09,472 [main] ERROR UmlAttribute - unclassified CIM attribute: (4369) OTHER_CIM CIM const [0..1] null <> GSE::GSESubscriberAssociation.RxConfRev: Abstract Types::IntegerTs +2024-09-07 21:55:09,472 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,472 [main] TRACE UmlAttribute - created (4369) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubscriberAssociation.RxConfRev: Abstract Types::IntegerTs +2024-09-07 21:55:09,472 [main] ERROR UmlAttribute - unclassified CIM attribute: (3758) OTHER_CIM CIM const [0..1] null <> GSE::GSESubscriberAssociation.TalExpCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,473 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,473 [main] TRACE UmlAttribute - created (3758) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubscriberAssociation.TalExpCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,473 [main] ERROR UmlAttribute - unclassified CIM attribute: (4370) OTHER_CIM CIM const [0..1] null <> GSE::GSESubscriberAssociation.OosErrCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,473 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,473 [main] TRACE UmlAttribute - created (4370) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubscriberAssociation.OosErrCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,473 [main] ERROR UmlAttribute - unclassified CIM attribute: (4371) OTHER_CIM CIM const [0..1] null <> GSE::GSESubscriberAssociation.DupMsgRx: Abstract Types::BooleanValueTs +2024-09-07 21:55:09,473 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,473 [main] TRACE UmlAttribute - created (4371) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubscriberAssociation.DupMsgRx: Abstract Types::BooleanValueTs +2024-09-07 21:55:09,473 [main] ERROR UmlAttribute - unclassified CIM attribute: (4372) OTHER_CIM CIM const [1..1] null <> GSE::GSESubscriberAssociation.DatSet: Abstract Types::CharString +2024-09-07 21:55:09,473 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,473 [main] TRACE UmlAttribute - created (4372) OTHER_CIM CIM const [1..1] attribute <> GSE::GSESubscriberAssociation.DatSet: Abstract Types::CharString +2024-09-07 21:55:09,473 [main] ERROR UmlAttribute - unclassified CIM attribute: (4373) OTHER_CIM CIM const [1..1] null <> GSE::GSESubscriberAssociation.RxDatSet: Abstract Types::CharStringTs +2024-09-07 21:55:09,473 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,473 [main] TRACE UmlAttribute - created (4373) OTHER_CIM CIM const [1..1] attribute <> GSE::GSESubscriberAssociation.RxDatSet: Abstract Types::CharStringTs +2024-09-07 21:55:09,474 [main] ERROR UmlAttribute - unclassified CIM attribute: (4374) OTHER_CIM CIM const [1..1] null <> GSE::GSESubscriberAssociation.GoID: Abstract Types::CharString +2024-09-07 21:55:09,474 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,474 [main] TRACE UmlAttribute - created (4374) OTHER_CIM CIM const [1..1] attribute <> GSE::GSESubscriberAssociation.GoID: Abstract Types::CharString +2024-09-07 21:55:09,474 [main] ERROR UmlAttribute - unclassified CIM attribute: (4375) OTHER_CIM CIM const [1..1] null <> GSE::GSESubscriberAssociation.RxGoID: Abstract Types::CharStringTs +2024-09-07 21:55:09,474 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,474 [main] TRACE UmlAttribute - created (4375) OTHER_CIM CIM const [1..1] attribute <> GSE::GSESubscriberAssociation.RxGoID: Abstract Types::CharStringTs +2024-09-07 21:55:09,474 [main] ERROR UmlAttribute - unclassified CIM attribute: (4376) OTHER_CIM CIM const [1..1] null <> GSE::GSESubscriberAssociation.StNum: Abstract Types::IntegerTs +2024-09-07 21:55:09,474 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,474 [main] TRACE UmlAttribute - created (4376) OTHER_CIM CIM const [1..1] attribute <> GSE::GSESubscriberAssociation.StNum: Abstract Types::IntegerTs +2024-09-07 21:55:09,474 [main] ERROR UmlAttribute - unclassified CIM attribute: (4377) OTHER_CIM CIM const [1..1] null <> GSE::GSESubscriberAssociation.SqNum: Abstract Types::IntegerTs +2024-09-07 21:55:09,476 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,476 [main] TRACE UmlAttribute - created (4377) OTHER_CIM CIM const [1..1] attribute <> GSE::GSESubscriberAssociation.SqNum: Abstract Types::IntegerTs +2024-09-07 21:55:09,476 [main] ERROR UmlAttribute - unclassified CIM attribute: (4378) OTHER_CIM CIM const [1..1] null <> GSE::GSESubscriberAssociation.RejectStNum: Abstract Types::IntegerTs +2024-09-07 21:55:09,476 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,477 [main] TRACE UmlAttribute - created (4378) OTHER_CIM CIM const [1..1] attribute <> GSE::GSESubscriberAssociation.RejectStNum: Abstract Types::IntegerTs +2024-09-07 21:55:09,477 [main] ERROR UmlAttribute - unclassified CIM attribute: (4379) OTHER_CIM CIM const [1..1] null <> GSE::GSESubscriberAssociation.RejectSqNum: Abstract Types::IntegerTs +2024-09-07 21:55:09,477 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,477 [main] TRACE UmlAttribute - created (4379) OTHER_CIM CIM const [1..1] attribute <> GSE::GSESubscriberAssociation.RejectSqNum: Abstract Types::IntegerTs +2024-09-07 21:55:09,477 [main] ERROR UmlAttribute - unclassified CIM attribute: (4494) OTHER_CIM CIM const [1..1] null <> GSE::GSESubscriberAssociation.RxT: Abstract Types::Timestamp +2024-09-07 21:55:09,477 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,477 [main] TRACE UmlAttribute - created (4494) OTHER_CIM CIM const [1..1] attribute <> GSE::GSESubscriberAssociation.RxT: Abstract Types::Timestamp +2024-09-07 21:55:09,477 [main] ERROR UmlAttribute - unclassified CIM attribute: (3243) OTHER_CIM CIM [0..1] null <> GSE::GSEProvider.CntRs: Abstract Types::CntRs +2024-09-07 21:55:09,477 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,477 [main] TRACE UmlAttribute - created (3243) OTHER_CIM CIM [0..1] attribute <> GSE::GSEProvider.CntRs: Abstract Types::CntRs +2024-09-07 21:55:09,477 [main] ERROR UmlAttribute - unclassified CIM attribute: (4053) OTHER_CIM CIM const [1..1] null <> GSE::GSEProvider.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,477 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,478 [main] TRACE UmlAttribute - created (4053) OTHER_CIM CIM const [1..1] attribute <> GSE::GSEProvider.DecryptFailCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,478 [main] ERROR UmlAttribute - unclassified CIM attribute: (3773) OTHER_CIM CIM const [0..1] null <> GSE::GSEProvider.InErrCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,478 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,478 [main] TRACE UmlAttribute - created (3773) OTHER_CIM CIM const [0..1] attribute <> GSE::GSEProvider.InErrCnt: Abstract Types::CounterTs +2024-09-07 21:55:09,478 [main] ERROR UmlAttribute - unclassified CIM attribute: (4121) OTHER_CIM CIM const [0..1] null <> GSE::GSEProvider.InUnexpectedMulticast: Abstract Types::CounterTs +2024-09-07 21:55:09,478 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,478 [main] TRACE UmlAttribute - created (4121) OTHER_CIM CIM const [0..1] attribute <> GSE::GSEProvider.InUnexpectedMulticast: Abstract Types::CounterTs +2024-09-07 21:55:09,478 [main] ERROR UmlAttribute - unclassified CIM attribute: (3744) OTHER_CIM CIM [0..*] null <
> GSE::GSEProvider.PIP: GSE::GSEPublisherAssociationIP +2024-09-07 21:55:09,478 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,479 [main] TRACE UmlAttribute - created (3744) OTHER_CIM CIM [0..*] attribute <
> GSE::GSEProvider.PIP: GSE::GSEPublisherAssociationIP +2024-09-07 21:55:09,479 [main] ERROR UmlAttribute - unclassified CIM attribute: (3745) OTHER_CIM CIM [0..*] null <
> GSE::GSEProvider.PL2: GSE::GSEPublisherAssociationL2 +2024-09-07 21:55:09,479 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,479 [main] TRACE UmlAttribute - created (3745) OTHER_CIM CIM [0..*] attribute <
> GSE::GSEProvider.PL2: GSE::GSEPublisherAssociationL2 +2024-09-07 21:55:09,479 [main] ERROR UmlAttribute - unclassified CIM attribute: (3618) OTHER_CIM CIM [0..1] null <> GSE::GSEProvider.SecurityNotification: GSE::GSENotification +2024-09-07 21:55:09,479 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,479 [main] TRACE UmlAttribute - created (3618) OTHER_CIM CIM [0..1] attribute <> GSE::GSEProvider.SecurityNotification: GSE::GSENotification +2024-09-07 21:55:09,479 [main] ERROR UmlAttribute - unclassified CIM attribute: (3046) OTHER_CIM CIM [0..*] null <
> GSE::GSEProvider.SIP: GSE::GSESubcriberAssociationIP +2024-09-07 21:55:09,479 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,479 [main] TRACE UmlAttribute - created (3046) OTHER_CIM CIM [0..*] attribute <
> GSE::GSEProvider.SIP: GSE::GSESubcriberAssociationIP +2024-09-07 21:55:09,479 [main] ERROR UmlAttribute - unclassified CIM attribute: (3746) OTHER_CIM CIM [0..*] null <
> GSE::GSEProvider.SL2: GSE::GSESubcriberAssociationL2 +2024-09-07 21:55:09,480 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,480 [main] TRACE UmlAttribute - created (3746) OTHER_CIM CIM [0..*] attribute <
> GSE::GSEProvider.SL2: GSE::GSESubcriberAssociationL2 +2024-09-07 21:55:09,480 [main] ERROR UmlAttribute - unclassified CIM attribute: (3803) OTHER_CIM CIM const [0..1] null <> GSE::GSEPublisherAssociationIP.DestIpAddr: Abstract Types::InetAddress +2024-09-07 21:55:09,480 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,480 [main] TRACE UmlAttribute - created (3803) OTHER_CIM CIM const [0..1] attribute <> GSE::GSEPublisherAssociationIP.DestIpAddr: Abstract Types::InetAddress +2024-09-07 21:55:09,480 [main] ERROR UmlAttribute - unclassified CIM attribute: (3802) OTHER_CIM CIM const [0..1] null <> GSE::GSEPublisherAssociationIP.DestIpAddrType: Abstract Types::InetAddressType +2024-09-07 21:55:09,480 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,480 [main] TRACE UmlAttribute - created (3802) OTHER_CIM CIM const [0..1] attribute <> GSE::GSEPublisherAssociationIP.DestIpAddrType: Abstract Types::InetAddressType +2024-09-07 21:55:09,480 [main] ERROR UmlAttribute - unclassified CIM attribute: (3801) OTHER_CIM CIM const [0..1] null <> GSE::GSEPublisherAssociationL2.DestMacAddr: Abstract Types::MacAddress +2024-09-07 21:55:09,480 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,480 [main] TRACE UmlAttribute - created (3801) OTHER_CIM CIM const [0..1] attribute <> GSE::GSEPublisherAssociationL2.DestMacAddr: Abstract Types::MacAddress +2024-09-07 21:55:09,480 [main] ERROR UmlAttribute - unclassified CIM attribute: (4362) OTHER_CIM CIM const [0..1] null <> GSE::GSEPublisherAssociationL2.SrcMacAddr: Abstract Types::MacAddress +2024-09-07 21:55:09,481 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,481 [main] TRACE UmlAttribute - created (4362) OTHER_CIM CIM const [0..1] attribute <> GSE::GSEPublisherAssociationL2.SrcMacAddr: Abstract Types::MacAddress +2024-09-07 21:55:09,481 [main] ERROR UmlAttribute - unclassified CIM attribute: (3740) OTHER_CIM CIM const [0..1] null <> GSE::GSESubcriberAssociationIP.SrcIpAddr: Abstract Types::InetAddress +2024-09-07 21:55:09,481 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,481 [main] TRACE UmlAttribute - created (3740) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubcriberAssociationIP.SrcIpAddr: Abstract Types::InetAddress +2024-09-07 21:55:09,481 [main] ERROR UmlAttribute - unclassified CIM attribute: (3739) OTHER_CIM CIM const [0..1] null <> GSE::GSESubcriberAssociationIP.SrcIpAddrType: Abstract Types::InetAddressType +2024-09-07 21:55:09,481 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,481 [main] TRACE UmlAttribute - created (3739) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubcriberAssociationIP.SrcIpAddrType: Abstract Types::InetAddressType +2024-09-07 21:55:09,481 [main] ERROR UmlAttribute - unclassified CIM attribute: (3742) OTHER_CIM CIM const [0..1] null <> GSE::GSESubcriberAssociationL2.SrcMacAddr: Abstract Types::MacAddress +2024-09-07 21:55:09,481 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,481 [main] TRACE UmlAttribute - created (3742) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubcriberAssociationL2.SrcMacAddr: Abstract Types::MacAddress +2024-09-07 21:55:09,481 [main] ERROR UmlAttribute - unclassified CIM attribute: (4361) OTHER_CIM CIM const [0..1] null <> GSE::GSESubcriberAssociationL2.DstMacAddr: Abstract Types::MacAddress +2024-09-07 21:55:09,481 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,481 [main] TRACE UmlAttribute - created (4361) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubcriberAssociationL2.DstMacAddr: Abstract Types::MacAddress +2024-09-07 21:55:09,481 [main] ERROR UmlAttribute - unclassified CIM attribute: (2651) OTHER_CIM CIM const [1..1] null <> Clocks Agent::Clock.clockTamperDetected: Abstract Types::Timestamp +2024-09-07 21:55:09,482 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,482 [main] TRACE UmlAttribute - created (2651) OTHER_CIM CIM const [1..1] attribute <> Clocks Agent::Clock.clockTamperDetected: Abstract Types::Timestamp +2024-09-07 21:55:09,482 [main] ERROR UmlAttribute - unclassified CIM attribute: (2656) OTHER_CIM CIM const [1..1] null <> Clocks Agent::Clock.LastClockHoldover: Abstract Types::Timestamp +2024-09-07 21:55:09,482 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,482 [main] TRACE UmlAttribute - created (2656) OTHER_CIM CIM const [1..1] attribute <> Clocks Agent::Clock.LastClockHoldover: Abstract Types::Timestamp +2024-09-07 21:55:09,482 [main] ERROR UmlAttribute - unclassified CIM attribute: (2657) OTHER_CIM CIM [0..1] null <> Clocks Agent::Clock.CntRs: Abstract Types::CntRs +2024-09-07 21:55:09,482 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,482 [main] TRACE UmlAttribute - created (2657) OTHER_CIM CIM [0..1] attribute <> Clocks Agent::Clock.CntRs: Abstract Types::CntRs +2024-09-07 21:55:09,482 [main] ERROR UmlAttribute - unclassified CIM attribute: (2650) OTHER_CIM CIM [0..n] null <
> Clocks Agent::Clock.Clocks: Clocks Agent::ClockEntry +2024-09-07 21:55:09,483 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,483 [main] TRACE UmlAttribute - created (2650) OTHER_CIM CIM [0..n] attribute <
> Clocks Agent::Clock.Clocks: Clocks Agent::ClockEntry +2024-09-07 21:55:09,483 [main] ERROR UmlAttribute - unclassified CIM attribute: (3631) OTHER_CIM CIM [0..1] null <> Clocks Agent::Clock.SecurityNotification: Clocks Agent::SecurityNotification +2024-09-07 21:55:09,483 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,483 [main] TRACE UmlAttribute - created (3631) OTHER_CIM CIM [0..1] attribute <> Clocks Agent::Clock.SecurityNotification: Clocks Agent::SecurityNotification +2024-09-07 21:55:09,483 [main] ERROR UmlAttribute - unclassified CIM attribute: (2646) OTHER_CIM CIM const [0..1] null <> Clocks Agent::ClockEntry.ClockAccuracy: Abstract Types::Integer +2024-09-07 21:55:09,483 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,483 [main] TRACE UmlAttribute - created (2646) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::ClockEntry.ClockAccuracy: Abstract Types::Integer +2024-09-07 21:55:09,483 [main] ERROR UmlAttribute - unclassified CIM attribute: (3085) OTHER_CIM CIM const [0..1] null <> Clocks Agent::ClockEntry.ClockIndex: Abstract Types::EntityIndex +2024-09-07 21:55:09,484 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,484 [main] TRACE UmlAttribute - created (3085) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::ClockEntry.ClockIndex: Abstract Types::EntityIndex +2024-09-07 21:55:09,484 [main] ERROR UmlAttribute - unclassified CIM attribute: (3729) OTHER_CIM CIM const [0..1] null <> Clocks Agent::ClockEntry.ClockIssue: EnumeratedTypes::TimSyncIssueType +2024-09-07 21:55:09,484 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,484 [main] TRACE UmlAttribute - created (3729) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::ClockEntry.ClockIssue: EnumeratedTypes::TimSyncIssueType +2024-09-07 21:55:09,484 [main] ERROR UmlAttribute - unclassified CIM attribute: (2649) OTHER_CIM CIM const [0..1] null <> Clocks Agent::ClockEntry.ClockTamperDetected: Abstract Types::BooleanValue +2024-09-07 21:55:09,484 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,484 [main] TRACE UmlAttribute - created (2649) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::ClockEntry.ClockTamperDetected: Abstract Types::BooleanValue +2024-09-07 21:55:09,484 [main] ERROR UmlAttribute - unclassified CIM attribute: (2645) OTHER_CIM CIM const [0..1] null <> Clocks Agent::ClockEntry.TmSrc: EnumeratedTypes::TimSyncSrcType +2024-09-07 21:55:09,484 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,484 [main] TRACE UmlAttribute - created (2645) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::ClockEntry.TmSrc: EnumeratedTypes::TimSyncSrcType +2024-09-07 21:55:09,484 [main] ERROR UmlAttribute - unclassified CIM attribute: (2655) OTHER_CIM CIM const [0..1] null <> Clocks Agent::ClockEntry.HoldOver: Abstract Types::BooleanValue +2024-09-07 21:55:09,485 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,485 [main] TRACE UmlAttribute - created (2655) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::ClockEntry.HoldOver: Abstract Types::BooleanValue +2024-09-07 21:55:09,485 [main] ERROR UmlAttribute - unclassified CIM attribute: (2648) OTHER_CIM CIM const [0..1] null <> Clocks Agent::ClockEntry.LastSyncOffset: Abstract Types::FloatingTs +2024-09-07 21:55:09,485 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,485 [main] TRACE UmlAttribute - created (2648) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::ClockEntry.LastSyncOffset: Abstract Types::FloatingTs +2024-09-07 21:55:09,485 [main] ERROR UmlAttribute - unclassified CIM attribute: (2653) OTHER_CIM CIM const [0..1] null <> Clocks Agent::ClockEntry.TimeSourceAvailable: Abstract Types::BooleanValue +2024-09-07 21:55:09,485 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,485 [main] TRACE UmlAttribute - created (2653) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::ClockEntry.TimeSourceAvailable: Abstract Types::BooleanValue +2024-09-07 21:55:09,485 [main] ERROR UmlAttribute - unclassified CIM attribute: (2652) OTHER_CIM CIM const [0..1] null <> Clocks Agent::ClockEntry.TimeTraceable: Abstract Types::BooleanValue +2024-09-07 21:55:09,485 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,485 [main] TRACE UmlAttribute - created (2652) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::ClockEntry.TimeTraceable: Abstract Types::BooleanValue +2024-09-07 21:55:09,485 [main] ERROR UmlAttribute - unclassified CIM attribute: (3632) OTHER_CIM CIM const [0..1] null <> Clocks Agent::SecurityNotification.clockTamperDetected: Abstract Types::Timestamp +2024-09-07 21:55:09,485 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,485 [main] TRACE UmlAttribute - created (3632) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::SecurityNotification.clockTamperDetected: Abstract Types::Timestamp +2024-09-07 21:55:09,486 [main] ERROR UmlAttribute - unclassified CIM attribute: (3319) OTHER_CIM CIM const [0..1] null <> Interfaces Agent::Interface.ID: Abstract Types::EntityIndex +2024-09-07 21:55:09,486 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,486 [main] TRACE UmlAttribute - created (3319) OTHER_CIM CIM const [0..1] attribute <> Interfaces Agent::Interface.ID: Abstract Types::EntityIndex +2024-09-07 21:55:09,486 [main] ERROR UmlAttribute - unclassified CIM attribute: (3320) OTHER_CIM CIM const [0..1] null <> Interfaces Agent::Interface.Descr: Abstract Types::CharString +2024-09-07 21:55:09,486 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,486 [main] TRACE UmlAttribute - created (3320) OTHER_CIM CIM const [0..1] attribute <> Interfaces Agent::Interface.Descr: Abstract Types::CharString +2024-09-07 21:55:09,486 [main] ERROR UmlAttribute - unclassified CIM attribute: (3415) OTHER_CIM CIM const [0..1] null <> Interfaces Agent::Interface.IntType: EnumeratedTypes::IntType +2024-09-07 21:55:09,486 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,486 [main] TRACE UmlAttribute - created (3415) OTHER_CIM CIM const [0..1] attribute <> Interfaces Agent::Interface.IntType: EnumeratedTypes::IntType +2024-09-07 21:55:09,486 [main] ERROR UmlAttribute - unclassified CIM attribute: (3323) OTHER_CIM CIM const [0..1] null <> Interfaces Agent::Interface.Operable: Abstract Types::BooleanValueTs +2024-09-07 21:55:09,486 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,486 [main] TRACE UmlAttribute - created (3323) OTHER_CIM CIM const [0..1] attribute <> Interfaces Agent::Interface.Operable: Abstract Types::BooleanValueTs +2024-09-07 21:55:09,486 [main] ERROR UmlAttribute - unclassified CIM attribute: (3318) OTHER_CIM CIM const [0..1] null <> Interfaces Agent::Interface.Online: Abstract Types::BooleanValueTs +2024-09-07 21:55:09,486 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,486 [main] TRACE UmlAttribute - created (3318) OTHER_CIM CIM const [0..1] attribute <> Interfaces Agent::Interface.Online: Abstract Types::BooleanValueTs +2024-09-07 21:55:09,487 [main] ERROR UmlAttribute - unclassified CIM attribute: (3322) OTHER_CIM CIM const [0..1] null <> Interfaces Agent::Interface.Faulty: Abstract Types::BooleanValueTs +2024-09-07 21:55:09,487 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,487 [main] TRACE UmlAttribute - created (3322) OTHER_CIM CIM const [0..1] attribute <> Interfaces Agent::Interface.Faulty: Abstract Types::BooleanValueTs +2024-09-07 21:55:09,487 [main] ERROR UmlAttribute - unclassified CIM attribute: (3321) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interface.CntRs: Abstract Types::CntRs +2024-09-07 21:55:09,487 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,487 [main] TRACE UmlAttribute - created (3321) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interface.CntRs: Abstract Types::CntRs +2024-09-07 21:55:09,487 [main] ERROR UmlAttribute - unclassified CIM attribute: (3652) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.serAvail: Abstract Types::Integer +2024-09-07 21:55:09,487 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,487 [main] TRACE UmlAttribute - created (3652) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.serAvail: Abstract Types::Integer +2024-09-07 21:55:09,487 [main] ERROR UmlAttribute - unclassified CIM attribute: (3657) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.serActive: Abstract Types::IntegerTs +2024-09-07 21:55:09,487 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,487 [main] TRACE UmlAttribute - created (3657) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.serActive: Abstract Types::IntegerTs +2024-09-07 21:55:09,487 [main] ERROR UmlAttribute - unclassified CIM attribute: (3662) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.serFail: Abstract Types::IntegerTs +2024-09-07 21:55:09,487 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,487 [main] TRACE UmlAttribute - created (3662) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.serFail: Abstract Types::IntegerTs +2024-09-07 21:55:09,488 [main] ERROR UmlAttribute - unclassified CIM attribute: (3653) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.ethAvail: Abstract Types::Integer +2024-09-07 21:55:09,488 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,488 [main] TRACE UmlAttribute - created (3653) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.ethAvail: Abstract Types::Integer +2024-09-07 21:55:09,488 [main] ERROR UmlAttribute - unclassified CIM attribute: (3658) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.ethActive: Abstract Types::IntegerTs +2024-09-07 21:55:09,488 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,488 [main] TRACE UmlAttribute - created (3658) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.ethActive: Abstract Types::IntegerTs +2024-09-07 21:55:09,488 [main] ERROR UmlAttribute - unclassified CIM attribute: (3663) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.ethFail: Abstract Types::IntegerTs +2024-09-07 21:55:09,488 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,488 [main] TRACE UmlAttribute - created (3663) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.ethFail: Abstract Types::IntegerTs +2024-09-07 21:55:09,489 [main] ERROR UmlAttribute - unclassified CIM attribute: (3654) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.algAvail: Abstract Types::Integer +2024-09-07 21:55:09,489 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,489 [main] TRACE UmlAttribute - created (3654) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.algAvail: Abstract Types::Integer +2024-09-07 21:55:09,489 [main] ERROR UmlAttribute - unclassified CIM attribute: (3659) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.algActive: Abstract Types::IntegerTs +2024-09-07 21:55:09,489 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,489 [main] TRACE UmlAttribute - created (3659) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.algActive: Abstract Types::IntegerTs +2024-09-07 21:55:09,489 [main] ERROR UmlAttribute - unclassified CIM attribute: (3664) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.algFail: Abstract Types::IntegerTs +2024-09-07 21:55:09,489 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,489 [main] TRACE UmlAttribute - created (3664) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.algFail: Abstract Types::IntegerTs +2024-09-07 21:55:09,489 [main] ERROR UmlAttribute - unclassified CIM attribute: (3655) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.keyAvail: Abstract Types::Integer +2024-09-07 21:55:09,489 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,489 [main] TRACE UmlAttribute - created (3655) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.keyAvail: Abstract Types::Integer +2024-09-07 21:55:09,489 [main] ERROR UmlAttribute - unclassified CIM attribute: (3660) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.keyActive: Abstract Types::IntegerTs +2024-09-07 21:55:09,489 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,489 [main] TRACE UmlAttribute - created (3660) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.keyActive: Abstract Types::IntegerTs +2024-09-07 21:55:09,490 [main] ERROR UmlAttribute - unclassified CIM attribute: (3665) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.keyFail: Abstract Types::IntegerTs +2024-09-07 21:55:09,490 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,490 [main] TRACE UmlAttribute - created (3665) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.keyFail: Abstract Types::IntegerTs +2024-09-07 21:55:09,490 [main] ERROR UmlAttribute - unclassified CIM attribute: (3656) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.usbAvail: Abstract Types::Integer +2024-09-07 21:55:09,490 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,490 [main] TRACE UmlAttribute - created (3656) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.usbAvail: Abstract Types::Integer +2024-09-07 21:55:09,490 [main] ERROR UmlAttribute - unclassified CIM attribute: (3661) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.usbActive: Abstract Types::IntegerTs +2024-09-07 21:55:09,490 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,490 [main] TRACE UmlAttribute - created (3661) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.usbActive: Abstract Types::IntegerTs +2024-09-07 21:55:09,490 [main] ERROR UmlAttribute - unclassified CIM attribute: (3666) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.usbFail: Abstract Types::IntegerTs +2024-09-07 21:55:09,490 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,490 [main] TRACE UmlAttribute - created (3666) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.usbFail: Abstract Types::IntegerTs +2024-09-07 21:55:09,490 [main] ERROR UmlAttribute - unclassified CIM attribute: (3283) OTHER_CIM CIM [0..*] null <
> Interfaces Agent::Interfaces.SER: Interfaces Agent::SEREntry +2024-09-07 21:55:09,490 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,491 [main] TRACE UmlAttribute - created (3283) OTHER_CIM CIM [0..*] attribute <
> Interfaces Agent::Interfaces.SER: Interfaces Agent::SEREntry +2024-09-07 21:55:09,491 [main] ERROR UmlAttribute - unclassified CIM attribute: (3297) OTHER_CIM CIM [0..*] null <
> Interfaces Agent::Interfaces.ETH: Interfaces Agent::ETHEntry +2024-09-07 21:55:09,491 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,491 [main] TRACE UmlAttribute - created (3297) OTHER_CIM CIM [0..*] attribute <
> Interfaces Agent::Interfaces.ETH: Interfaces Agent::ETHEntry +2024-09-07 21:55:09,491 [main] ERROR UmlAttribute - unclassified CIM attribute: (3298) OTHER_CIM CIM [0..*] null <
> Interfaces Agent::Interfaces.USB: Interfaces Agent::USBEntry +2024-09-07 21:55:09,491 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,491 [main] TRACE UmlAttribute - created (3298) OTHER_CIM CIM [0..*] attribute <
> Interfaces Agent::Interfaces.USB: Interfaces Agent::USBEntry +2024-09-07 21:55:09,491 [main] ERROR UmlAttribute - unclassified CIM attribute: (3299) OTHER_CIM CIM [0..*] null <
> Interfaces Agent::Interfaces.KEY: Interfaces Agent::KEYEntry +2024-09-07 21:55:09,491 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,491 [main] TRACE UmlAttribute - created (3299) OTHER_CIM CIM [0..*] attribute <
> Interfaces Agent::Interfaces.KEY: Interfaces Agent::KEYEntry +2024-09-07 21:55:09,491 [main] ERROR UmlAttribute - unclassified CIM attribute: (3328) OTHER_CIM CIM [0..*] null <
> Interfaces Agent::Interfaces.ALG: Interfaces Agent::ALGEntry +2024-09-07 21:55:09,492 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,492 [main] TRACE UmlAttribute - created (3328) OTHER_CIM CIM [0..*] attribute <
> Interfaces Agent::Interfaces.ALG: Interfaces Agent::ALGEntry +2024-09-07 21:55:09,492 [main] ERROR UmlAttribute - unclassified CIM attribute: (3678) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.StateNotification: Interfaces Agent::Notification +2024-09-07 21:55:09,492 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,492 [main] TRACE UmlAttribute - created (3678) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.StateNotification: Interfaces Agent::Notification +2024-09-07 21:55:09,492 [main] ERROR UmlAttribute - unclassified CIM attribute: (3327) OTHER_CIM CIM const [0..1] null <> Interfaces Agent::KEYEntry.Locked: Abstract Types::BooleanValueTs +2024-09-07 21:55:09,492 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,492 [main] TRACE UmlAttribute - created (3327) OTHER_CIM CIM const [0..1] attribute <> Interfaces Agent::KEYEntry.Locked: Abstract Types::BooleanValueTs +2024-09-07 21:55:09,492 [main] ERROR UmlAttribute - unclassified CIM attribute: (3325) OTHER_CIM CIM const [0..1] null <> Interfaces Agent::SEREntry.ByteIn: Abstract Types::CounterTs +2024-09-07 21:55:09,492 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,492 [main] TRACE UmlAttribute - created (3325) OTHER_CIM CIM const [0..1] attribute <> Interfaces Agent::SEREntry.ByteIn: Abstract Types::CounterTs +2024-09-07 21:55:09,492 [main] ERROR UmlAttribute - unclassified CIM attribute: (3326) OTHER_CIM CIM const [0..1] null <> Interfaces Agent::SEREntry.ByteOut: Abstract Types::CounterTs +2024-09-07 21:55:09,492 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,492 [main] TRACE UmlAttribute - created (3326) OTHER_CIM CIM const [0..1] attribute <> Interfaces Agent::SEREntry.ByteOut: Abstract Types::CounterTs +2024-09-07 21:55:09,492 [main] ERROR UmlAttribute - unclassified CIM attribute: (3668) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.serActive: Abstract Types::IntegerTs +2024-09-07 21:55:09,493 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,493 [main] TRACE UmlAttribute - created (3668) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.serActive: Abstract Types::IntegerTs +2024-09-07 21:55:09,493 [main] ERROR UmlAttribute - unclassified CIM attribute: (3669) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.serFail: Abstract Types::IntegerTs +2024-09-07 21:55:09,493 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,493 [main] TRACE UmlAttribute - created (3669) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.serFail: Abstract Types::IntegerTs +2024-09-07 21:55:09,493 [main] ERROR UmlAttribute - unclassified CIM attribute: (3670) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.ethActive: Abstract Types::IntegerTs +2024-09-07 21:55:09,493 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,493 [main] TRACE UmlAttribute - created (3670) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.ethActive: Abstract Types::IntegerTs +2024-09-07 21:55:09,493 [main] ERROR UmlAttribute - unclassified CIM attribute: (3671) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.ethFail: Abstract Types::IntegerTs +2024-09-07 21:55:09,493 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,493 [main] TRACE UmlAttribute - created (3671) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.ethFail: Abstract Types::IntegerTs +2024-09-07 21:55:09,493 [main] ERROR UmlAttribute - unclassified CIM attribute: (3672) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.algActive: Abstract Types::IntegerTs +2024-09-07 21:55:09,493 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,493 [main] TRACE UmlAttribute - created (3672) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.algActive: Abstract Types::IntegerTs +2024-09-07 21:55:09,493 [main] ERROR UmlAttribute - unclassified CIM attribute: (3673) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.algFail: Abstract Types::IntegerTs +2024-09-07 21:55:09,493 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,494 [main] TRACE UmlAttribute - created (3673) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.algFail: Abstract Types::IntegerTs +2024-09-07 21:55:09,494 [main] ERROR UmlAttribute - unclassified CIM attribute: (3667) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.keyActive: Abstract Types::IntegerTs +2024-09-07 21:55:09,494 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,494 [main] TRACE UmlAttribute - created (3667) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.keyActive: Abstract Types::IntegerTs +2024-09-07 21:55:09,494 [main] ERROR UmlAttribute - unclassified CIM attribute: (3674) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.keyFail: Abstract Types::IntegerTs +2024-09-07 21:55:09,494 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,494 [main] TRACE UmlAttribute - created (3674) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.keyFail: Abstract Types::IntegerTs +2024-09-07 21:55:09,494 [main] ERROR UmlAttribute - unclassified CIM attribute: (3675) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.usbActive: Abstract Types::IntegerTs +2024-09-07 21:55:09,494 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,494 [main] TRACE UmlAttribute - created (3675) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.usbActive: Abstract Types::IntegerTs +2024-09-07 21:55:09,494 [main] ERROR UmlAttribute - unclassified CIM attribute: (3676) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.usbFail: Abstract Types::IntegerTs +2024-09-07 21:55:09,494 [main] TRACE ValueRange - '' has no values. +2024-09-07 21:55:09,494 [main] TRACE UmlAttribute - created (3676) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.usbFail: Abstract Types::IntegerTs +2024-09-07 21:55:09,494 [main] INFO EaModelBuilder - creating in-memory associations ... +2024-09-07 21:55:09,501 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 21:55:09,501 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 21:55:09,515 [main] TRACE UmlAssociation - created (185) OTHER_CIM CIM association <>, qname='health.<> - Attribute.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable); otherEnd: OTHER_CIM [?..?] health.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] health.<> (navigable); otherEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable) +2024-09-07 21:55:09,515 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 21:55:09,515 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 21:55:09,515 [main] TRACE UmlAssociation - created (179) OTHER_CIM CIM association <>, qname='protocol.<> - Attribute.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable); otherEnd: OTHER_CIM [?..?] protocol.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] protocol.<> (navigable); otherEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable) +2024-09-07 21:55:09,515 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 21:55:09,515 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 21:55:09,515 [main] TRACE UmlAssociation - created (180) OTHER_CIM CIM association <>, qname='security.<> - Attribute.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable); otherEnd: OTHER_CIM [?..?] security.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] security.<> (navigable); otherEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable) +2024-09-07 21:55:09,515 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 21:55:09,515 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 21:55:09,515 [main] TRACE UmlAssociation - created (183) OTHER_CIM CIM association <>, qname='index.<> - Attribute.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable); otherEnd: OTHER_CIM [?..?] index.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] index.<> (navigable); otherEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable) +2024-09-07 21:55:09,516 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 21:55:09,516 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 21:55:09,516 [main] TRACE UmlAssociation - created (184) OTHER_CIM CIM association <>, qname='identity.<> - Attribute.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable); otherEnd: OTHER_CIM [?..?] identity.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] identity.<> (navigable); otherEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable) +2024-09-07 21:55:09,516 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 21:55:09,516 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 21:55:09,516 [main] TRACE UmlAssociation - created (186) OTHER_CIM CIM association <>, qname='performance.<> - Attribute.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable); otherEnd: OTHER_CIM [?..?] performance.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] performance.<> (navigable); otherEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable) +2024-09-07 21:55:09,516 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 21:55:09,516 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 21:55:09,516 [main] TRACE UmlAssociation - created (187) OTHER_CIM CIM association <>, qname='setvalue.<> - Attribute.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable); otherEnd: OTHER_CIM [?..?] setvalue.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] setvalue.<> (navigable); otherEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable) +2024-09-07 21:55:09,516 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 21:55:09,516 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 21:55:09,516 [main] TRACE UmlAssociation - created (207) OTHER_CIM CIM association <>, qname='trap.<> - Attribute.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable); otherEnd: OTHER_CIM [?..?] trap.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] trap.<> (navigable); otherEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable) +2024-09-07 21:55:09,516 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 21:55:09,517 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 21:55:09,517 [main] TRACE UmlAssociation - created (188) OTHER_CIM CIM association <>, qname='table.<> - Attribute.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable); otherEnd: OTHER_CIM [?..?] table.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] table.<> (navigable); otherEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable) +2024-09-07 21:55:09,517 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 21:55:09,517 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 21:55:09,517 [main] TRACE UmlAssociation - created (181) OTHER_CIM CIM association <>, qname='nsmEvent.<> - Class.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Class.<> (non-navigable); otherEnd: OTHER_CIM [?..?] nsmEvent.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] nsmEvent.<> (navigable); otherEnd: OTHER_CIM [?..?] Class.<> (non-navigable) +2024-09-07 21:55:09,517 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 21:55:09,517 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 21:55:09,517 [main] TRACE UmlAssociation - created (226) OTHER_CIM CIM association <>, qname='nsmEntry.<> - Class.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Class.<> (non-navigable); otherEnd: OTHER_CIM [?..?] nsmEntry.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] nsmEntry.<> (navigable); otherEnd: OTHER_CIM [?..?] Class.<> (non-navigable) +2024-09-07 21:55:09,517 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-07 21:55:09,517 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-07 21:55:09,517 [main] TRACE UmlAssociation - created (182) OTHER_CIM CIM association <>, qname='nsmAgent.<> - Class.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Class.<> (non-navigable); otherEnd: OTHER_CIM [?..?] nsmAgent.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] nsmAgent.<> (navigable); otherEnd: OTHER_CIM [?..?] Class.<> (non-navigable) +2024-09-07 21:55:09,517 [main] INFO EaModelBuilder - creating in-memory dependencies ... +2024-09-07 21:55:09,517 [main] INFO Util - time=[0:00:07.629] created in-memory model and exported normative diagrams +2024-09-07 21:55:09,517 [main] INFO Util - +2024-09-07 21:55:09,518 [main] INFO Util - +2024-09-07 21:55:09,518 [main] INFO Util - ------------------------------------------------ +2024-09-07 21:55:09,518 [main] INFO Util - closing EA file 'C:\Users\gigi\git\jCleanCim\input\IEC62351-7-Ed2-FDIS-20240901.eap'... +2024-09-07 21:55:10,170 [main] INFO Util - time=[0:00:00.652] closed EA file. +2024-09-07 21:55:10,170 [main] INFO Util - +2024-09-07 21:55:10,171 [main] INFO Util - time=[0:00:53.342] built model from 'iso (CIM)' +2024-09-07 21:55:10,171 [main] INFO Util - +2024-09-07 21:55:10,171 [main] INFO Util - +2024-09-07 21:55:10,171 [main] INFO Util - ================================================ +2024-09-07 21:55:10,171 [main] INFO Util - generating MIBs from iso (CIM) +2024-09-07 21:55:10,171 [main] INFO Util - ================================================ +2024-09-07 21:55:10,171 [main] INFO Util - +2024-09-07 21:55:10,171 [main] INFO Util - ------------------------------------------------ +2024-09-07 21:55:10,172 [main] INFO Util - full MIBs ... +2024-09-07 21:55:10,440 [main] INFO Util - +2024-09-07 21:55:10,441 [main] INFO Util - ------------------------------------------------ +2024-09-07 21:55:10,441 [main] INFO Util - light MIBs ... +2024-09-07 21:55:10,646 [main] INFO Util - time=[0:00:00.475] generated MIBs in: C:\Users\gigi\git\jCleanCim\output\mibs +2024-09-07 21:55:10,646 [main] INFO Util - +2024-09-07 21:55:10,646 [main] INFO Util - +2024-09-07 21:55:10,646 [main] INFO Util - ================================================ +2024-09-07 21:55:10,646 [main] INFO Util - generating doc from iso (CIM) +2024-09-07 21:55:10,646 [main] INFO Util - ================================================ +2024-09-07 21:55:10,646 [main] INFO Util - +2024-09-07 21:55:10,646 [main] INFO Util - ------------------------------------------------ +2024-09-07 21:55:10,647 [main] INFO Util - collecting documentation content ... +2024-09-07 21:55:10,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Attribute': UML1 +2024-09-07 21:55:10,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Attribute': UML2 +2024-09-07 21:55:10,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Attribute': UML3 +2024-09-07 21:55:10,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Attribute': UML4 +2024-09-07 21:55:10,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Attribute': UML5 +2024-09-07 21:55:10,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Attribute': UML6 +2024-09-07 21:55:10,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Attribute': UML7 +2024-09-07 21:55:10,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Attribute': UML8 +2024-09-07 21:55:10,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Attribute': UML9 +2024-09-07 21:55:10,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Class': UML10 +2024-09-07 21:55:10,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Class': UML11 +2024-09-07 21:55:10,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Class': UML12 +2024-09-07 21:55:10,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::health': UML13 +2024-09-07 21:55:10,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::identity': UML14 +2024-09-07 21:55:10,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::index': UML15 +2024-09-07 21:55:10,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::nsmAgent': UML16 +2024-09-07 21:55:10,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::nsmEntry': UML17 +2024-09-07 21:55:10,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::nsmEvent': UML18 +2024-09-07 21:55:10,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::performance': UML19 +2024-09-07 21:55:10,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::protocol': UML20 +2024-09-07 21:55:10,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::security': UML21 +2024-09-07 21:55:10,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::setvalue': UML22 +2024-09-07 21:55:10,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::table': UML23 +2024-09-07 21:55:10,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::trap': UML24 +2024-09-07 21:55:10,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::AbsoluteDateTime': UML25 +2024-09-07 21:55:10,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::Counter32 ': UML26 +2024-09-07 21:55:10,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::DateAndTime': UML27 +2024-09-07 21:55:10,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::DisplayString': UML28 +2024-09-07 21:55:10,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::Float32TC': UML29 +2024-09-07 21:55:10,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::Gauge32': UML30 +2024-09-07 21:55:10,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::InetAddress': UML31 +2024-09-07 21:55:10,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::MacAddress': UML32 +2024-09-07 21:55:10,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::InetAddressType': UML33 +2024-09-07 21:55:10,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::EntityIndex': UML34 +2024-09-07 21:55:10,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::Integer32': UML35 +2024-09-07 21:55:10,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::Unsigned32': UML36 +2024-09-07 21:55:10,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::TimeTicks': UML37 +2024-09-07 21:55:10,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::TruthValue': UML38 +2024-09-07 21:55:10,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::AbstractBaseType': UML39 +2024-09-07 21:55:10,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::AbstractAgent': UML40 +2024-09-07 21:55:10,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::AppDatStKind': UML41 +2024-09-07 21:55:10,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::PhyHealthKind': UML42 +2024-09-07 21:55:10,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ExtKind': UML43 +2024-09-07 21:55:10,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::IntKind': UML44 +2024-09-07 21:55:10,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::LnkKind': UML45 +2024-09-07 21:55:10,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::PSPAccKind': UML46 +2024-09-07 21:55:10,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ProtIdKind': UML47 +2024-09-07 21:55:10,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind': UML48 +2024-09-07 21:55:10,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncIssueKind': UML49 +2024-09-07 21:55:10,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::SecurityProfileKind': UML50 +2024-09-07 21:55:10,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind': UML51 +2024-09-07 21:55:10,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::BooleanValue': UML52 +2024-09-07 21:55:10,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::Integer': UML53 +2024-09-07 21:55:10,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::BooleanValueTs': UML54 +2024-09-07 21:55:10,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::CounterTs': UML55 +2024-09-07 21:55:10,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::Floating': UML56 +2024-09-07 21:55:10,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::FloatingTs': UML57 +2024-09-07 21:55:10,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::IntegerTs': UML58 +2024-09-07 21:55:10,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::CharString': UML59 +2024-09-07 21:55:10,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::CharStringTs': UML60 +2024-09-07 21:55:10,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::Timestamp': UML61 +2024-09-07 21:55:10,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::Selector': UML62 +2024-09-07 21:55:10,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::MacAddress': UML63 +2024-09-07 21:55:10,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::InetAddressType': UML64 +2024-09-07 21:55:10,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::InetAddress': UML65 +2024-09-07 21:55:10,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::EntityIndex': UML66 +2024-09-07 21:55:10,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::CntRs': UML67 +2024-09-07 21:55:10,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::AppDatStType': UML68 +2024-09-07 21:55:10,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::PhyHealthType': UML69 +2024-09-07 21:55:10,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ExtType': UML70 +2024-09-07 21:55:10,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::IntType': UML71 +2024-09-07 21:55:10,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventType': UML72 +2024-09-07 21:55:10,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::PSPAccType': UML73 +2024-09-07 21:55:10,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ProtIdType': UML74 +2024-09-07 21:55:10,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncIssueType': UML75 +2024-09-07 21:55:10,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::SecurityProfileType': UML76 +2024-09-07 21:55:10,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcType': UML77 +2024-09-07 21:55:10,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::LnkType': UML78 +2024-09-07 21:55:10,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Environmental Agent::Environmental': UML79 +2024-09-07 21:55:10,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Environmental Agent::PSUPEntry': UML80 +2024-09-07 21:55:10,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Environmental Agent::Notification': UML81 +2024-09-07 21:55:10,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Environmental Agent::SecurityNotification': UML82 +2024-09-07 21:55:10,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IED Agent::IED': UML83 +2024-09-07 21:55:10,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IED Agent::CPUEntry': UML84 +2024-09-07 21:55:10,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IED Agent::EXTEntry': UML85 +2024-09-07 21:55:10,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IED Agent::STOREEntry': UML86 +2024-09-07 21:55:10,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IED Agent::Notification': UML87 +2024-09-07 21:55:10,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IED Agent::SecurityNotification': UML88 +2024-09-07 21:55:10,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Common objects::CommonProtocolInfo': UML89 +2024-09-07 21:55:10,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEC62351-3 ed.2 Agent::IEC62351-3ed2security': UML90 +2024-09-07 21:55:10,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEC62351-3 ed.2 Agent::TLSSession': UML91 +2024-09-07 21:55:10,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEC62351-3 ed.2 Agent::ClientTLS': UML92 +2024-09-07 21:55:10,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEC62351-3 ed.2 Agent::ServerTLS': UML93 +2024-09-07 21:55:10,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo': UML94 +2024-09-07 21:55:10,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent::Association': UML95 +2024-09-07 21:55:10,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent::MasterAssociation': UML96 +2024-09-07 21:55:10,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent::OutstationAssociation': UML97 +2024-09-07 21:55:10,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5': UML98 +2024-09-07 21:55:10,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2': UML99 +2024-09-07 21:55:10,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent - ed2::Association': UML100 +2024-09-07 21:55:10,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent - ed2::MasterAssociation': UML101 +2024-09-07 21:55:10,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent - ed2::OutstationAssociation': UML102 +2024-09-07 21:55:10,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MMS::MMSProtocolInfo': UML103 +2024-09-07 21:55:10,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MMS::MMSAssociation': UML104 +2024-09-07 21:55:10,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEC62351-3 ed.2 Agent::Summary': UML105 +2024-09-07 21:55:10,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification': UML106 +2024-09-07 21:55:10,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent::Summary': UML107 +2024-09-07 21:55:10,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification': UML108 +2024-09-07 21:55:10,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification': UML109 +2024-09-07 21:55:10,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent - ed2::Summary': UML110 +2024-09-07 21:55:10,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2': UML111 +2024-09-07 21:55:10,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2': UML112 +2024-09-07 21:55:10,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ACSI::ACSISummary': UML113 +2024-09-07 21:55:10,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MMS::MMSProvider': UML114 +2024-09-07 21:55:10,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MMS::MMSSecurityNotification': UML115 +2024-09-07 21:55:10,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MMS::MMSNotification': UML116 +2024-09-07 21:55:10,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'SV and GSE common objects::GSEandSVCommon': UML117 +2024-09-07 21:55:10,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'SV and GSE common objects::GSEandSVPublisherAssociation': UML118 +2024-09-07 21:55:10,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'SV::SVPublisherAssociationIP': UML119 +2024-09-07 21:55:10,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'SV::SVPublisherAssociationL2': UML120 +2024-09-07 21:55:10,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GSE::GSEPublisherAssociationIP': UML121 +2024-09-07 21:55:10,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GSE::GSEPublisherAssociationL2': UML122 +2024-09-07 21:55:10,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'SV and GSE common objects::GSEandSVSubscriberAssociation': UML123 +2024-09-07 21:55:10,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'SV::SVSubcriberAssociationIP': UML124 +2024-09-07 21:55:10,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'SV::SVSubcriberAssociationL2': UML125 +2024-09-07 21:55:10,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GSE::GSESubscriberAssociation': UML126 +2024-09-07 21:55:10,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GSE::GSESubcriberAssociationIP': UML127 +2024-09-07 21:55:10,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GSE::GSESubcriberAssociationL2': UML128 +2024-09-07 21:55:10,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'SV::SVProvider': UML129 +2024-09-07 21:55:10,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'SV::SVNotification': UML130 +2024-09-07 21:55:10,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GSE::GSEProvider': UML131 +2024-09-07 21:55:10,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GSE::GSENotification': UML132 +2024-09-07 21:55:10,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Clocks Agent::Clock': UML133 +2024-09-07 21:55:10,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Clocks Agent::ClockEntry': UML134 +2024-09-07 21:55:10,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Clocks Agent::SecurityNotification': UML135 +2024-09-07 21:55:10,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Interfaces Agent::Interface': UML136 +2024-09-07 21:55:10,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Interfaces Agent::ETHEntry': UML137 +2024-09-07 21:55:10,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Interfaces Agent::KEYEntry': UML138 +2024-09-07 21:55:10,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Interfaces Agent::SEREntry': UML139 +2024-09-07 21:55:10,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Interfaces Agent::ALGEntry': UML140 +2024-09-07 21:55:10,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Interfaces Agent::USBEntry': UML141 +2024-09-07 21:55:10,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Interfaces Agent::Interfaces': UML142 +2024-09-07 21:55:10,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Interfaces Agent::Notification': UML143 +2024-09-07 21:55:10,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::InetAddressType.unknown': UML144 +2024-09-07 21:55:10,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::InetAddressType.ipv4': UML145 +2024-09-07 21:55:10,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::InetAddressType.ipv6': UML146 +2024-09-07 21:55:10,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::InetAddressType.ipv4z': UML147 +2024-09-07 21:55:10,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::InetAddressType.ipv6z': UML148 +2024-09-07 21:55:10,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::InetAddressType.dns': UML149 +2024-09-07 21:55:10,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::AppDatStKind.unknown': UML150 +2024-09-07 21:55:10,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::AppDatStKind.good': UML151 +2024-09-07 21:55:10,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::AppDatStKind.bad': UML152 +2024-09-07 21:55:10,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::PhyHealthKind.ok': UML153 +2024-09-07 21:55:10,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::PhyHealthKind.warning': UML154 +2024-09-07 21:55:10,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::PhyHealthKind.alarm': UML155 +2024-09-07 21:55:10,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ExtKind.unknown': UML156 +2024-09-07 21:55:10,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ExtKind.ioModule': UML157 +2024-09-07 21:55:10,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ExtKind.softwarePLC': UML158 +2024-09-07 21:55:10,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::IntKind.wired': UML159 +2024-09-07 21:55:10,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::IntKind.wireless': UML160 +2024-09-07 21:55:10,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::LnkKind.unknown': UML161 +2024-09-07 21:55:10,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::LnkKind.serial': UML162 +2024-09-07 21:55:10,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::LnkKind.tcp': UML163 +2024-09-07 21:55:10,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::LnkKind.udp': UML164 +2024-09-07 21:55:10,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::LnkKind.eth': UML165 +2024-09-07 21:55:10,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::PSPAccKind.notBeingAccessed': UML166 +2024-09-07 21:55:10,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::PSPAccKind.accessOccurring': UML167 +2024-09-07 21:55:10,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ProtIdKind.unknown': UML168 +2024-09-07 21:55:10,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ProtIdKind.iEC6185081': UML169 +2024-09-07 21:55:10,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ProtIdKind.iEC6185081GOOSE': UML170 +2024-09-07 21:55:10,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ProtIdKind.iEC6185092SV': UML171 +2024-09-07 21:55:10,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ProtIdKind.ieee1815DNP': UML172 +2024-09-07 21:55:10,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ProtIdKind.iec608705': UML173 +2024-09-07 21:55:10,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ProtIdKind.iEC6185082': UML174 +2024-09-07 21:55:10,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind.none': UML175 +2024-09-07 21:55:10,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind.unKnown': UML176 +2024-09-07 21:55:10,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind.denialOfService': UML177 +2024-09-07 21:55:10,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind.malware': UML178 +2024-09-07 21:55:10,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind.bufferOverRun': UML179 +2024-09-07 21:55:10,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind.bufferUnderRun': UML180 +2024-09-07 21:55:10,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind.badCredential': UML181 +2024-09-07 21:55:10,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind.badKey': UML182 +2024-09-07 21:55:10,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind.malformedPDU': UML183 +2024-09-07 21:55:10,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind.physicalDisruption': UML184 +2024-09-07 21:55:10,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind.invalidNetworkAccess': UML185 +2024-09-07 21:55:10,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncIssueKind.synced': UML186 +2024-09-07 21:55:10,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncIssueKind.degradated': UML187 +2024-09-07 21:55:10,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncIssueKind.failed': UML188 +2024-09-07 21:55:10,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncIssueKind.syncedGlobal': UML189 +2024-09-07 21:55:10,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::SecurityProfileKind.noSecurity': UML190 +2024-09-07 21:55:10,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::SecurityProfileKind.aProfile': UML191 +2024-09-07 21:55:10,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::SecurityProfileKind.e2eProfile': UML192 +2024-09-07 21:55:10,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::SecurityProfileKind.ae2eProfile': UML193 +2024-09-07 21:55:10,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.unknown': UML194 +2024-09-07 21:55:10,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.ntp': UML195 +2024-09-07 21:55:10,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.sntp': UML196 +2024-09-07 21:55:10,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.irig': UML197 +2024-09-07 21:55:10,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.gps': UML198 +2024-09-07 21:55:10,662 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.ieee1588PTP': UML199 +2024-09-07 21:55:10,662 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.ieee1588PTPC37238Profile2011': UML200 +2024-09-07 21:55:10,662 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.ieee1588PTPIEC6185093': UML201 +2024-09-07 21:55:10,662 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.ieee1588PTPC37238Profile2017': UML202 +2024-09-07 21:55:10,662 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.ieee1588PTPIEC6185093Ed20': UML203 +2024-09-07 21:55:10,662 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.ieee1588PTPIEC6185093Profile2016': UML204 +2024-09-07 21:55:10,662 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.gnss': UML205 +2024-09-07 21:55:10,662 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.applicationProtocol': UML206 +2024-09-07 21:55:10,662 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.ntpOnts': UML207 +2024-09-07 21:55:10,688 [main] INFO PackageDocImpl - collecting doc for package iso ... +2024-09-07 21:55:10,692 [main] INFO PackageDocImpl - collecting doc for package standard ... +2024-09-07 21:55:10,693 [main] INFO PackageDocImpl - collecting doc for package iec62351 ... +2024-09-07 21:55:10,693 [main] INFO PackageDocImpl - collecting doc for package part7 ... +2024-09-07 21:55:10,693 [main] INFO PackageDocImpl - collecting doc for package Profiles ... +2024-09-07 21:55:10,697 [main] INFO PackageDocImpl - collecting doc for package nsmAgent ... +2024-09-07 21:55:10,734 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Attribute, hphSpec = 'aaùAttributeùUML1ùdd' +2024-09-07 21:55:10,735 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Attribute, hphSpec = 'aaùAttributeùUML5ùdd' +2024-09-07 21:55:10,735 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Attribute, hphSpec = 'aaùAttributeùUML4ùdd' +2024-09-07 21:55:10,736 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Class, hphSpec = 'aaùClassùUML12ùdd' +2024-09-07 21:55:10,736 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Class, hphSpec = 'aaùClassùUML11ùdd' +2024-09-07 21:55:10,737 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Class, hphSpec = 'aaùClassùUML10ùdd' +2024-09-07 21:55:10,737 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Attribute, hphSpec = 'aaùAttributeùUML6ùdd' +2024-09-07 21:55:10,738 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Attribute, hphSpec = 'aaùAttributeùUML2ùdd' +2024-09-07 21:55:10,738 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Attribute, hphSpec = 'aaùAttributeùUML3ùdd' +2024-09-07 21:55:10,738 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Attribute, hphSpec = 'aaùAttributeùUML7ùdd' +2024-09-07 21:55:10,739 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Attribute, hphSpec = 'aaùAttributeùUML9ùdd' +2024-09-07 21:55:10,739 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Attribute, hphSpec = 'aaùAttributeùUML8ùdd' +2024-09-07 21:55:10,740 [main] INFO PackageDocImpl - collecting doc for package Overview ... +2024-09-07 21:55:10,740 [main] INFO PackageDocImpl - collecting doc for package BaseTypes ... +2024-09-07 21:55:10,754 [main] INFO PackageDocImpl - collecting doc for package Abstract Types ... +2024-09-07 21:55:10,754 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:55:10,754 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TruthValue, hphSpec = 'aaùTruthValueùUML38ùdd' +2024-09-07 21:55:10,754 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:55:10,755 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DateAndTime, hphSpec = 'aaùDateAndTimeùUML27ùdd' +2024-09-07 21:55:10,755 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TruthValue, hphSpec = 'aaùTruthValueùUML38ùdd' +2024-09-07 21:55:10,755 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:55:10,755 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DateAndTime, hphSpec = 'aaùDateAndTimeùUML27ùdd' +2024-09-07 21:55:10,755 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Counter32 , hphSpec = 'aaùCounter32 ùUML26ùdd' +2024-09-07 21:55:10,756 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:55:10,756 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DateAndTime, hphSpec = 'aaùDateAndTimeùUML27ùdd' +2024-09-07 21:55:10,756 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TruthValue, hphSpec = 'aaùTruthValueùUML38ùdd' +2024-09-07 21:55:10,756 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:55:10,756 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Float32TC, hphSpec = 'aaùFloat32TCùUML29ùdd' +2024-09-07 21:55:10,756 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:55:10,756 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DateAndTime, hphSpec = 'aaùDateAndTimeùUML27ùdd' +2024-09-07 21:55:10,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Float32TC, hphSpec = 'aaùFloat32TCùUML29ùdd' +2024-09-07 21:55:10,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:55:10,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Unsigned32, hphSpec = 'aaùUnsigned32ùUML36ùdd' +2024-09-07 21:55:10,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:55:10,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer32, hphSpec = 'aaùInteger32ùUML35ùdd' +2024-09-07 21:55:10,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:55:10,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DateAndTime, hphSpec = 'aaùDateAndTimeùUML27ùdd' +2024-09-07 21:55:10,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer32, hphSpec = 'aaùInteger32ùUML35ùdd' +2024-09-07 21:55:10,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:55:10,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML31ùdd' +2024-09-07 21:55:10,759 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:55:10,759 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML33ùdd' +2024-09-07 21:55:10,759 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:55:10,759 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MacAddress, hphSpec = 'aaùMacAddressùUML32ùdd' +2024-09-07 21:55:10,759 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:55:10,759 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DisplayString, hphSpec = 'aaùDisplayStringùUML28ùdd' +2024-09-07 21:55:10,760 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:55:10,760 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DateAndTime, hphSpec = 'aaùDateAndTimeùUML27ùdd' +2024-09-07 21:55:10,760 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:55:10,760 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DisplayString, hphSpec = 'aaùDisplayStringùUML28ùdd' +2024-09-07 21:55:10,760 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:55:10,760 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DateAndTime, hphSpec = 'aaùDateAndTimeùUML27ùdd' +2024-09-07 21:55:10,760 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DisplayString, hphSpec = 'aaùDisplayStringùUML28ùdd' +2024-09-07 21:55:10,761 [main] INFO PackageDocImpl - collecting doc for package EnumeratedTypes ... +2024-09-07 21:55:10,774 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:55:10,775 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DateAndTime, hphSpec = 'aaùDateAndTimeùUML27ùdd' +2024-09-07 21:55:10,775 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AppDatStKind, hphSpec = 'aaùAppDatStKindùUML41ùdd' +2024-09-07 21:55:10,775 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:55:10,775 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DateAndTime, hphSpec = 'aaùDateAndTimeùUML27ùdd' +2024-09-07 21:55:10,775 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PhyHealthKind, hphSpec = 'aaùPhyHealthKindùUML42ùdd' +2024-09-07 21:55:10,775 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:55:10,776 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ExtKind, hphSpec = 'aaùExtKindùUML43ùdd' +2024-09-07 21:55:10,776 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:55:10,776 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntKind, hphSpec = 'aaùIntKindùUML44ùdd' +2024-09-07 21:55:10,777 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:55:10,777 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DateAndTime, hphSpec = 'aaùDateAndTimeùUML27ùdd' +2024-09-07 21:55:10,777 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventKind, hphSpec = 'aaùEventKindùUML48ùdd' +2024-09-07 21:55:10,778 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:55:10,778 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DateAndTime, hphSpec = 'aaùDateAndTimeùUML27ùdd' +2024-09-07 21:55:10,778 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PSPAccKind, hphSpec = 'aaùPSPAccKindùUML46ùdd' +2024-09-07 21:55:10,779 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:55:10,779 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ProtIdKind, hphSpec = 'aaùProtIdKindùUML47ùdd' +2024-09-07 21:55:10,781 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:55:10,781 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimSyncIssueKind, hphSpec = 'aaùTimSyncIssueKindùUML49ùdd' +2024-09-07 21:55:10,781 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:55:10,782 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SecurityProfileKind, hphSpec = 'aaùSecurityProfileKindùUML50ùdd' +2024-09-07 21:55:10,782 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:55:10,782 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimSyncSrcKind, hphSpec = 'aaùTimSyncSrcKindùUML51ùdd' +2024-09-07 21:55:10,782 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-07 21:55:10,782 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LnkKind, hphSpec = 'aaùLnkKindùUML45ùdd' +2024-09-07 21:55:10,783 [main] INFO PackageDocImpl - collecting doc for package Environmental Agent ... +2024-09-07 21:55:10,783 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,784 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AppDatStType, hphSpec = 'aaùAppDatStTypeùUML68ùdd' +2024-09-07 21:55:10,784 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:55:10,784 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-07 21:55:10,784 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:55:10,784 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:55:10,785 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:55:10,785 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:55:10,785 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PSUPEntry, hphSpec = 'aaùPSUPEntryùUML80ùdd' +2024-09-07 21:55:10,785 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:55:10,785 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:55:10,786 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SecurityNotification, hphSpec = 'aaùSecurityNotificationùUML82ùdd' +2024-09-07 21:55:10,786 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Notification, hphSpec = 'aaùNotificationùUML81ùdd' +2024-09-07 21:55:10,786 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:55:10,787 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,787 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:55:10,787 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,787 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 21:55:10,788 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,788 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:55:10,788 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,788 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:55:10,788 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,788 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:55:10,788 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:55:10,789 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,789 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-07 21:55:10,789 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Timestamp, hphSpec = 'aaùTimestampùUML61ùdd' +2024-09-07 21:55:10,789 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Timestamp, hphSpec = 'aaùTimestampùUML61ùdd' +2024-09-07 21:55:10,789 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Timestamp, hphSpec = 'aaùTimestampùUML61ùdd' +2024-09-07 21:55:10,789 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Timestamp, hphSpec = 'aaùTimestampùUML61ùdd' +2024-09-07 21:55:10,789 [main] INFO PackageDocImpl - collecting doc for package IED Agent ... +2024-09-07 21:55:10,790 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,790 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,790 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:55:10,790 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:55:10,790 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 21:55:10,790 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CPUEntry, hphSpec = 'aaùCPUEntryùUML84ùdd' +2024-09-07 21:55:10,791 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-07 21:55:10,791 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,791 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,791 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:55:10,791 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EXTEntry, hphSpec = 'aaùEXTEntryùUML85ùdd' +2024-09-07 21:55:10,792 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 21:55:10,792 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-07 21:55:10,792 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:55:10,792 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-07 21:55:10,792 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:55:10,792 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:55:10,792 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,792 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,792 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:55:10,795 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-07 21:55:10,795 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,795 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,795 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,795 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:55:10,795 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-07 21:55:10,795 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-07 21:55:10,796 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PhyHealthType, hphSpec = 'aaùPhyHealthTypeùUML69ùdd' +2024-09-07 21:55:10,796 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,796 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 21:55:10,796 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:55:10,796 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,797 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SecurityNotification, hphSpec = 'aaùSecurityNotificationùUML88ùdd' +2024-09-07 21:55:10,797 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Notification, hphSpec = 'aaùNotificationùUML87ùdd' +2024-09-07 21:55:10,797 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = STOREEntry, hphSpec = 'aaùSTOREEntryùUML86ùdd' +2024-09-07 21:55:10,797 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,797 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,798 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,798 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,798 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:55:10,798 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,798 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:55:10,799 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 21:55:10,799 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:55:10,799 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:55:10,799 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-07 21:55:10,799 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,799 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,799 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 21:55:10,799 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,799 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ExtType, hphSpec = 'aaùExtTypeùUML70ùdd' +2024-09-07 21:55:10,799 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 21:55:10,799 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:55:10,799 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-07 21:55:10,800 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,800 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,800 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:55:10,800 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,800 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 21:55:10,800 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,800 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,800 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-07 21:55:10,800 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:55:10,800 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:55:10,801 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,801 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,801 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-07 21:55:10,801 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-07 21:55:10,801 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-07 21:55:10,801 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PhyHealthType, hphSpec = 'aaùPhyHealthTypeùUML69ùdd' +2024-09-07 21:55:10,801 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,801 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,802 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,802 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:55:10,802 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-07 21:55:10,802 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:55:10,802 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:55:10,802 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,802 [main] INFO PackageDocImpl - collecting doc for package Application Protocols Agents ... +2024-09-07 21:55:10,803 [main] INFO PackageDocImpl - collecting doc for package Common objects ... +2024-09-07 21:55:10,803 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,803 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 21:55:10,803 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:55:10,803 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,803 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,804 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,804 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,804 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,804 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,804 [main] INFO PackageDocImpl - collecting doc for package IEC62351-3 ed.2 Agent ... +2024-09-07 21:55:10,805 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,805 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,805 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,805 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,805 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,806 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,806 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,806 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,806 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,806 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,806 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,807 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,807 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,807 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,807 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,807 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,807 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,807 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,807 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,807 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,807 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,807 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,807 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,807 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,807 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,807 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,808 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,808 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,808 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,808 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,808 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,808 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,808 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,808 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,808 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,808 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,809 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,809 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,809 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,809 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,809 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,810 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 21:55:10,810 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:55:10,811 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 21:55:10,811 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 21:55:10,811 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 21:55:10,811 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 21:55:10,811 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 21:55:10,811 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,811 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:55:10,811 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,811 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,811 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,811 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,811 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,811 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,811 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,811 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,811 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,811 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,811 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,811 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,811 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,811 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,811 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,811 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,812 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,812 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,812 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,812 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,812 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,812 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,812 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,812 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,812 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,812 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,812 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,813 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,813 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,813 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,813 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,813 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,813 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,813 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,813 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,813 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,813 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,813 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,813 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,813 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,814 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,814 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,814 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,814 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,814 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,814 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,814 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,814 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,814 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,814 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,814 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,814 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,814 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,814 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,814 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,814 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,814 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,814 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,814 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,814 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,814 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,815 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,815 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,815 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,815 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,815 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,815 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,815 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,815 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,815 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,815 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,815 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,815 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,815 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,815 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,815 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,815 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,815 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,815 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,815 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,815 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,815 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,815 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,816 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,816 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,816 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:55:10,816 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-07 21:55:10,816 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ServerTLS, hphSpec = 'aaùServerTLSùUML93ùdd' +2024-09-07 21:55:10,816 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ClientTLS, hphSpec = 'aaùClientTLSùUML92ùdd' +2024-09-07 21:55:10,816 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part3ed2SecurityNotification, hphSpec = 'aaùIEC62351part3ed2SecurityNotificationùUML106ùdd' +2024-09-07 21:55:10,816 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,816 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,816 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,816 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,816 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,816 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,816 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,816 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,816 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,816 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-07 21:55:10,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-07 21:55:10,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,820 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 21:55:10,820 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-07 21:55:10,820 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:55:10,820 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-07 21:55:10,820 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 21:55:10,820 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-07 21:55:10,820 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 21:55:10,820 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-07 21:55:10,820 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 21:55:10,820 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-07 21:55:10,820 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 21:55:10,820 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-07 21:55:10,820 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 21:55:10,820 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,820 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:55:10,821 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,821 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,821 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,821 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,821 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,821 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,821 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,821 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,821 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,821 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,821 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,821 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,821 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,821 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,821 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,826 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-07 21:55:10,826 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,826 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,826 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,826 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,826 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,826 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 21:55:10,826 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-07 21:55:10,827 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:55:10,827 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-07 21:55:10,827 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 21:55:10,827 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-07 21:55:10,827 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 21:55:10,827 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-07 21:55:10,827 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 21:55:10,827 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-07 21:55:10,827 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 21:55:10,827 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-07 21:55:10,827 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 21:55:10,827 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,827 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:55:10,827 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,827 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,827 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,827 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,827 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,827 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,829 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,829 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,829 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,829 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,829 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,829 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,829 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,829 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,829 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,829 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,829 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,829 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,829 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,830 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,830 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,830 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,830 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,830 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,830 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,830 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,830 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,830 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,830 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,830 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,830 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,830 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,830 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,830 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,830 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,830 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,830 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,830 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,830 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,831 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,831 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,831 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,831 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,831 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,831 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,831 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,831 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,831 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,831 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,831 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,831 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,831 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,831 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,831 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,831 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,831 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,831 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,831 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,831 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,831 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,831 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-07 21:55:10,832 [main] INFO PackageDocImpl - collecting doc for package IEEE 1815 and IEC 60870-5 Agent ... +2024-09-07 21:55:10,832 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,832 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,832 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,832 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,832 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,832 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,833 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,833 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,833 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,833 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,833 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,833 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,833 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,833 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,833 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,833 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,833 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,834 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,834 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:55:10,834 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,834 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,834 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,834 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,836 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,836 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,836 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,837 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,837 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,837 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,837 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,837 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,837 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,838 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,838 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,838 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,838 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,838 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 21:55:10,838 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:55:10,838 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 21:55:10,838 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 21:55:10,838 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ProtIdType, hphSpec = 'aaùProtIdTypeùUML74ùdd' +2024-09-07 21:55:10,838 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 21:55:10,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 21:55:10,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LnkType, hphSpec = 'aaùLnkTypeùUML78ùdd' +2024-09-07 21:55:10,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:55:10,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 21:55:10,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:55:10,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,842 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,842 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,842 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,842 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:55:10,842 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-07 21:55:10,842 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MasterAssociation, hphSpec = 'aaùMasterAssociationùUML96ùdd' +2024-09-07 21:55:10,842 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OutstationAssociation, hphSpec = 'aaùOutstationAssociationùUML97ùdd' +2024-09-07 21:55:10,842 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPSecurityNotification, hphSpec = 'aaù60870andDNPSecurityNotificationùUML108ùdd' +2024-09-07 21:55:10,842 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPNotification, hphSpec = 'aaù60870andDNPNotificationùUML109ùdd' +2024-09-07 21:55:10,842 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,842 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,842 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,842 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,842 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,842 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,842 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,842 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,842 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:55:10,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,844 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,844 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,844 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,844 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,844 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,844 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,844 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,844 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,844 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,844 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,844 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,844 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,844 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,844 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,845 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,845 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,845 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,845 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,845 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-07 21:55:10,845 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,845 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,845 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,845 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,846 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,846 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,846 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,846 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,846 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,846 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,846 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:55:10,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 21:55:10,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:55:10,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:55:10,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:55:10,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 21:55:10,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:55:10,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 21:55:10,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:55:10,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ProtIdType, hphSpec = 'aaùProtIdTypeùUML74ùdd' +2024-09-07 21:55:10,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:55:10,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:55:10,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:55:10,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 21:55:10,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:55:10,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 21:55:10,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:55:10,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:55:10,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LnkType, hphSpec = 'aaùLnkTypeùUML78ùdd' +2024-09-07 21:55:10,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:55:10,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:55:10,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,850 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,850 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,850 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,850 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 21:55:10,850 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,850 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:55:10,850 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,850 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,850 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,850 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,850 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,850 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,850 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,850 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,850 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,850 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,850 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,850 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,850 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,850 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:55:10,850 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,850 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,850 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,850 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,850 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 21:55:10,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:55:10,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:55:10,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:55:10,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 21:55:10,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:55:10,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 21:55:10,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:55:10,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ProtIdType, hphSpec = 'aaùProtIdTypeùUML74ùdd' +2024-09-07 21:55:10,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:55:10,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:55:10,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:55:10,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 21:55:10,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:55:10,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 21:55:10,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:55:10,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:55:10,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LnkType, hphSpec = 'aaùLnkTypeùUML78ùdd' +2024-09-07 21:55:10,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-07 21:55:10,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,852 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,852 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,852 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,852 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,852 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,852 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,852 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,852 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,852 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,852 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,852 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,852 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,852 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,852 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,852 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,852 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,852 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,852 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,852 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,852 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,852 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,852 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,852 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,852 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,852 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,852 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,852 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,852 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:55:10,852 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,852 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-07 21:55:10,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 21:55:10,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:55:10,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,854 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,854 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,854 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,854 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,854 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,854 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,854 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,854 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,854 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,854 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,854 [main] INFO PackageDocImpl - collecting doc for package IEEE 1815 and IEC 60870-5 Agent - ed2 ... +2024-09-07 21:55:10,854 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,854 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,854 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,855 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,855 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,855 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,855 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,855 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,855 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,855 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,855 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,855 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,855 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,855 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,857 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,857 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,857 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,857 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,857 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,857 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,857 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,857 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,857 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,857 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,857 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,857 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,857 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,857 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,857 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,857 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,857 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,857 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,857 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,857 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,857 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,857 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,857 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,857 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,857 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,858 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,858 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,858 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,858 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,858 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,858 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,858 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,858 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,858 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,858 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,858 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,858 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,858 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,858 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,858 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,858 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,858 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,858 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,858 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,858 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,859 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,859 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,859 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,859 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,859 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,859 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,859 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,859 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,859 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,859 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,859 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,859 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,859 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,859 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,859 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,859 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,859 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,859 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,860 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,860 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,860 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,860 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,860 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,860 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,860 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,860 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,860 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,861 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,861 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,861 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,861 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,861 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,861 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,861 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,861 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 21:55:10,861 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:55:10,861 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 21:55:10,861 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 21:55:10,861 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ProtIdType, hphSpec = 'aaùProtIdTypeùUML74ùdd' +2024-09-07 21:55:10,861 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,861 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,861 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 21:55:10,861 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 21:55:10,861 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,861 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LnkType, hphSpec = 'aaùLnkTypeùUML78ùdd' +2024-09-07 21:55:10,861 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 21:55:10,861 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,861 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:55:10,861 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,862 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,862 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,862 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,862 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,862 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,862 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,862 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,862 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,862 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,862 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,862 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,863 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,863 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,863 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,863 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,863 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,863 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,863 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,863 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,863 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,863 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,863 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,863 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,863 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,863 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,863 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,863 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,864 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,864 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,864 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,864 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,864 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,864 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,864 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,864 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,864 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,864 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,864 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,864 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,864 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,864 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,864 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,864 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,864 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,864 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,864 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,864 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,864 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,864 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,868 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,868 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,869 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,869 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,869 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,869 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,869 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:55:10,869 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-07 21:55:10,869 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MasterAssociation, hphSpec = 'aaùMasterAssociationùUML101ùdd' +2024-09-07 21:55:10,869 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OutstationAssociation, hphSpec = 'aaùOutstationAssociationùUML102ùdd' +2024-09-07 21:55:10,869 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPSecurityNotificationEd2, hphSpec = 'aaù60870andDNPSecurityNotificationEd2ùUML111ùdd' +2024-09-07 21:55:10,869 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPNotificationEd2, hphSpec = 'aaù60870andDNPNotificationEd2ùUML112ùdd' +2024-09-07 21:55:10,869 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,869 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,869 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,869 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,869 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,869 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,871 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,871 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,871 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,871 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,871 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,871 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,871 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,871 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,871 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,871 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,871 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,871 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,871 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,871 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,871 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,871 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,871 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,871 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,871 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,871 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,871 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,871 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,871 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,871 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,871 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,871 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,871 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,871 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,871 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,871 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,873 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-07 21:55:10,873 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,873 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-07 21:55:10,873 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:55:10,873 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,873 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,873 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,873 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,873 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,873 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,873 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 21:55:10,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:55:10,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:55:10,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:55:10,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 21:55:10,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:55:10,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 21:55:10,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:55:10,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ProtIdType, hphSpec = 'aaùProtIdTypeùUML74ùdd' +2024-09-07 21:55:10,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:55:10,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:55:10,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:55:10,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 21:55:10,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:55:10,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 21:55:10,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:55:10,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:55:10,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LnkType, hphSpec = 'aaùLnkTypeùUML78ùdd' +2024-09-07 21:55:10,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:55:10,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 21:55:10,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:55:10,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,876 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,876 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,876 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,876 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,876 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,876 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,876 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,876 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,876 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,876 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,876 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,876 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,876 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,876 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,876 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,876 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,876 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,876 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,876 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,876 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,876 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,876 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,876 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,876 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,876 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,876 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,877 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,877 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,877 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,877 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,877 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,877 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,877 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,877 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,877 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,877 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,877 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,877 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,877 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,877 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,877 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,877 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,877 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,877 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,877 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,877 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,877 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,877 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,877 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,877 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,877 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,877 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,878 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,878 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,878 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,878 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,878 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,878 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,878 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,878 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,878 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,878 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,878 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,878 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,879 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:55:10,879 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,879 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,879 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,879 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,879 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,879 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,879 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,880 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 21:55:10,880 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:55:10,880 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:55:10,880 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:55:10,880 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 21:55:10,880 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:55:10,880 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 21:55:10,880 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:55:10,880 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ProtIdType, hphSpec = 'aaùProtIdTypeùUML74ùdd' +2024-09-07 21:55:10,880 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:55:10,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:55:10,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:55:10,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 21:55:10,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:55:10,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 21:55:10,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:55:10,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:55:10,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LnkType, hphSpec = 'aaùLnkTypeùUML78ùdd' +2024-09-07 21:55:10,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-07 21:55:10,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 21:55:10,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:55:10,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-07 21:55:10,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,884 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,884 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,884 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,884 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,884 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,884 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-07 21:55:10,884 [main] INFO PackageDocImpl - collecting doc for package IEC61850 Agent ... +2024-09-07 21:55:10,884 [main] INFO PackageDocImpl - collecting doc for package ACSI ... +2024-09-07 21:55:10,884 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,885 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:55:10,885 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:55:10,885 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:55:10,885 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,885 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:55:10,885 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:55:10,885 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:55:10,885 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:55:10,885 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-07 21:55:10,885 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,885 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,885 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,886 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:55:10,886 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:55:10,886 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:55:10,886 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:55:10,887 [main] INFO PackageDocImpl - collecting doc for package MMS ... +2024-09-07 21:55:10,887 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,888 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,888 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,888 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,888 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,888 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,888 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,888 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,888 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,888 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,889 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,889 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,889 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,889 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,889 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:55:10,889 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,890 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,890 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,890 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:55:10,890 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,890 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,890 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,890 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-07 21:55:10,891 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSAssociation, hphSpec = 'aaùMMSAssociationùUML104ùdd' +2024-09-07 21:55:10,891 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,891 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,891 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,891 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSSecurityNotification, hphSpec = 'aaùMMSSecurityNotificationùUML115ùdd' +2024-09-07 21:55:10,891 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:55:10,891 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,891 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSNotification, hphSpec = 'aaùMMSNotificationùUML116ùdd' +2024-09-07 21:55:10,891 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,891 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,891 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,892 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,892 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:55:10,892 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,892 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:55:10,892 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,892 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:55:10,893 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,893 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:55:10,893 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,893 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:55:10,893 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,893 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:55:10,893 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,893 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:55:10,893 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,893 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:55:10,893 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,893 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:55:10,893 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,893 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:55:10,893 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,893 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:55:10,893 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,893 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:55:10,893 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,893 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:55:10,894 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:55:10,894 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,894 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,894 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,894 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:55:10,895 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 21:55:10,895 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 21:55:10,896 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:55:10,896 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,897 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 21:55:10,897 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 21:55:10,897 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 21:55:10,897 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Selector, hphSpec = 'aaùSelectorùUML62ùdd' +2024-09-07 21:55:10,897 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Selector, hphSpec = 'aaùSelectorùUML62ùdd' +2024-09-07 21:55:10,897 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Selector, hphSpec = 'aaùSelectorùUML62ùdd' +2024-09-07 21:55:10,897 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:55:10,898 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-07 21:55:10,898 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SecurityProfileType, hphSpec = 'aaùSecurityProfileTypeùUML76ùdd' +2024-09-07 21:55:10,898 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,898 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:55:10,898 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,898 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:55:10,898 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,898 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:55:10,898 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,898 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:55:10,898 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,898 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:55:10,898 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,898 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:55:10,898 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,898 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:55:10,898 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,898 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:55:10,898 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,899 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:55:10,899 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,899 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:55:10,899 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,899 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:55:10,899 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,899 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:55:10,899 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,899 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-07 21:55:10,899 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 21:55:10,899 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,899 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:55:10,899 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,899 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,900 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,900 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,900 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,900 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,900 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,900 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,900 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,900 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,900 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,900 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,900 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-07 21:55:10,901 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,901 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,901 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-07 21:55:10,901 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,901 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,901 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,901 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,901 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,901 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,901 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,902 [main] INFO PackageDocImpl - collecting doc for package SV and GSE common objects ... +2024-09-07 21:55:10,902 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,902 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,902 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,902 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,903 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,903 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,903 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,903 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:55:10,903 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,903 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,903 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,903 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,903 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,903 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,904 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,904 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,906 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,906 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,906 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,906 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,906 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:55:10,907 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,907 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,907 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,907 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,907 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 21:55:10,907 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,907 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,907 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,907 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,907 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,907 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,907 [main] INFO PackageDocImpl - collecting doc for package SV ... +2024-09-07 21:55:10,908 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,908 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,908 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:55:10,908 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,908 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,909 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SVPublisherAssociationIP, hphSpec = 'aaùSVPublisherAssociationIPùUML119ùdd' +2024-09-07 21:55:10,909 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SVPublisherAssociationL2, hphSpec = 'aaùSVPublisherAssociationL2ùUML120ùdd' +2024-09-07 21:55:10,909 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SVNotification, hphSpec = 'aaùSVNotificationùUML130ùdd' +2024-09-07 21:55:10,909 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SVSubcriberAssociationIP, hphSpec = 'aaùSVSubcriberAssociationIPùUML124ùdd' +2024-09-07 21:55:10,909 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SVSubcriberAssociationL2, hphSpec = 'aaùSVSubcriberAssociationL2ùUML125ùdd' +2024-09-07 21:55:10,909 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,909 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,909 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,909 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,909 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,909 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,910 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:55:10,910 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,910 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,910 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 21:55:10,910 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 21:55:10,910 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,910 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:55:10,910 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:55:10,910 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:55:10,910 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,910 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:55:10,910 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,910 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:55:10,910 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,910 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:55:10,910 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,910 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,911 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,911 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,911 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,911 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,911 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:55:10,911 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,911 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,911 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MacAddress, hphSpec = 'aaùMacAddressùUML63ùdd' +2024-09-07 21:55:10,911 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,911 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:55:10,911 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:55:10,911 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:55:10,911 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,912 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:55:10,912 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,912 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:55:10,912 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,912 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:55:10,913 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,913 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,913 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,914 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,914 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,914 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,914 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:55:10,914 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,914 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,914 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 21:55:10,914 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 21:55:10,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:55:10,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:55:10,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:55:10,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:55:10,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:55:10,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:55:10,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:55:10,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 21:55:10,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:55:10,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,916 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:55:10,916 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,916 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,916 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MacAddress, hphSpec = 'aaùMacAddressùUML63ùdd' +2024-09-07 21:55:10,916 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,916 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:55:10,916 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:55:10,916 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:55:10,917 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,917 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:55:10,917 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,917 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:55:10,917 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,917 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:55:10,917 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,917 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:55:10,917 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 21:55:10,917 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:55:10,917 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,917 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,917 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,917 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,917 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,917 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,918 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,918 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,918 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,918 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,918 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,918 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,918 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,918 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,918 [main] INFO PackageDocImpl - collecting doc for package GSE ... +2024-09-07 21:55:10,919 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:55:10,919 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,919 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,919 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 21:55:10,919 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 21:55:10,919 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:55:10,919 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:55:10,919 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,919 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,919 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:55:10,919 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,920 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 21:55:10,920 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,920 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 21:55:10,920 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:55:10,920 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:55:10,920 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:55:10,920 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:55:10,920 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Timestamp, hphSpec = 'aaùTimestampùUML61ùdd' +2024-09-07 21:55:10,920 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,920 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:55:10,920 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:55:10,920 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:55:10,920 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,920 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:55:10,920 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,920 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:55:10,920 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,920 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:55:10,920 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,921 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:55:10,921 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 21:55:10,921 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:55:10,921 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,921 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,921 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,921 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,921 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,921 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,921 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,921 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,921 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:55:10,921 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,921 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,921 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,921 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEPublisherAssociationIP, hphSpec = 'aaùGSEPublisherAssociationIPùUML121ùdd' +2024-09-07 21:55:10,921 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEPublisherAssociationL2, hphSpec = 'aaùGSEPublisherAssociationL2ùUML122ùdd' +2024-09-07 21:55:10,921 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSENotification, hphSpec = 'aaùGSENotificationùUML132ùdd' +2024-09-07 21:55:10,921 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubcriberAssociationIP, hphSpec = 'aaùGSESubcriberAssociationIPùUML127ùdd' +2024-09-07 21:55:10,922 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubcriberAssociationL2, hphSpec = 'aaùGSESubcriberAssociationL2ùUML128ùdd' +2024-09-07 21:55:10,922 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,922 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,922 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,922 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,922 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,922 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,922 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:55:10,922 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,922 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,922 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 21:55:10,922 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 21:55:10,922 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,922 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:55:10,922 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:55:10,922 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:55:10,922 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,922 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:55:10,922 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,922 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:55:10,922 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,922 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:55:10,922 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,922 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,922 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,922 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,923 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,923 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,923 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:55:10,923 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,923 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,923 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MacAddress, hphSpec = 'aaùMacAddressùUML63ùdd' +2024-09-07 21:55:10,923 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MacAddress, hphSpec = 'aaùMacAddressùUML63ùdd' +2024-09-07 21:55:10,923 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,923 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:55:10,923 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:55:10,923 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:55:10,923 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,923 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:55:10,923 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,923 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:55:10,923 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,923 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-07 21:55:10,923 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,923 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,923 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,923 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,923 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,923 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,923 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:55:10,924 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:55:10,924 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,924 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,924 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-07 21:55:10,924 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-07 21:55:10,924 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 21:55:10,924 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:55:10,924 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 21:55:10,924 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:55:10,924 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:55:10,924 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:55:10,924 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:55:10,924 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:55:10,924 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,924 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:55:10,924 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,924 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:55:10,924 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:55:10,924 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:55:10,925 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,925 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:55:10,925 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 21:55:10,925 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:55:10,925 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,925 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:55:10,925 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 21:55:10,925 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:55:10,925 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:55:10,925 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:55:10,925 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:55:10,925 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:55:10,925 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:55:10,925 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:55:10,925 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:55:10,925 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:55:10,925 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Timestamp, hphSpec = 'aaùTimestampùUML61ùdd' +2024-09-07 21:55:10,925 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:55:10,925 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,925 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:55:10,925 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:55:10,925 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:55:10,925 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,925 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:55:10,925 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,926 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:55:10,926 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,926 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:55:10,926 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,926 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:55:10,926 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 21:55:10,926 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:55:10,926 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,926 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,926 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,926 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,926 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,926 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,926 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:55:10,927 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:55:10,927 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,927 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,927 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MacAddress, hphSpec = 'aaùMacAddressùUML63ùdd' +2024-09-07 21:55:10,927 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MacAddress, hphSpec = 'aaùMacAddressùUML63ùdd' +2024-09-07 21:55:10,927 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 21:55:10,927 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:55:10,927 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 21:55:10,927 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:55:10,927 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:55:10,927 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:55:10,927 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:55:10,927 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:55:10,927 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,927 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:55:10,927 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,927 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:55:10,928 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:55:10,928 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:55:10,928 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,928 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:55:10,928 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 21:55:10,928 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:55:10,928 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,928 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:55:10,928 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 21:55:10,928 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:55:10,928 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:55:10,928 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:55:10,928 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:55:10,928 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:55:10,928 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:55:10,928 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:55:10,928 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:55:10,928 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:55:10,928 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Timestamp, hphSpec = 'aaùTimestampùUML61ùdd' +2024-09-07 21:55:10,928 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-07 21:55:10,928 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,928 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:55:10,928 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:55:10,928 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:55:10,928 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,928 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:55:10,928 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,928 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:55:10,929 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-07 21:55:10,929 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:55:10,929 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,929 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:55:10,929 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-07 21:55:10,929 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-07 21:55:10,929 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,929 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,929 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,929 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,929 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,929 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,930 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,930 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,930 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,930 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,930 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,930 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,930 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,930 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-07 21:55:10,931 [main] INFO PackageDocImpl - collecting doc for package Clocks Agent ... +2024-09-07 21:55:10,931 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,931 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Timestamp, hphSpec = 'aaùTimestampùUML61ùdd' +2024-09-07 21:55:10,931 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Timestamp, hphSpec = 'aaùTimestampùUML61ùdd' +2024-09-07 21:55:10,931 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:55:10,931 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ClockEntry, hphSpec = 'aaùClockEntryùUML134ùdd' +2024-09-07 21:55:10,931 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SecurityNotification, hphSpec = 'aaùSecurityNotificationùUML135ùdd' +2024-09-07 21:55:10,932 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,932 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:55:10,932 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 21:55:10,932 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimSyncIssueType, hphSpec = 'aaùTimSyncIssueTypeùUML75ùdd' +2024-09-07 21:55:10,932 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 21:55:10,932 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimSyncSrcType, hphSpec = 'aaùTimSyncSrcTypeùUML77ùdd' +2024-09-07 21:55:10,932 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 21:55:10,932 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-07 21:55:10,932 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 21:55:10,932 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-07 21:55:10,932 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,932 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Timestamp, hphSpec = 'aaùTimestampùUML61ùdd' +2024-09-07 21:55:10,933 [main] INFO PackageDocImpl - collecting doc for package Interfaces Agent ... +2024-09-07 21:55:10,933 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,933 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 21:55:10,933 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,933 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntType, hphSpec = 'aaùIntTypeùUML71ùdd' +2024-09-07 21:55:10,933 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:55:10,933 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:55:10,934 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:55:10,934 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:55:10,935 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,935 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:55:10,935 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:55:10,936 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:55:10,936 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:55:10,936 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:55:10,936 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:55:10,936 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:55:10,936 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:55:10,936 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:55:10,936 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:55:10,936 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:55:10,936 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:55:10,936 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-07 21:55:10,936 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:55:10,937 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:55:10,937 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SEREntry, hphSpec = 'aaùSEREntryùUML139ùdd' +2024-09-07 21:55:10,937 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ETHEntry, hphSpec = 'aaùETHEntryùUML137ùdd' +2024-09-07 21:55:10,937 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = USBEntry, hphSpec = 'aaùUSBEntryùUML141ùdd' +2024-09-07 21:55:10,937 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = KEYEntry, hphSpec = 'aaùKEYEntryùUML138ùdd' +2024-09-07 21:55:10,937 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ALGEntry, hphSpec = 'aaùALGEntryùUML140ùdd' +2024-09-07 21:55:10,937 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Notification, hphSpec = 'aaùNotificationùUML143ùdd' +2024-09-07 21:55:10,937 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:55:10,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 21:55:10,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:55:10,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:55:10,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntType, hphSpec = 'aaùIntTypeùUML71ùdd' +2024-09-07 21:55:10,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:55:10,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:55:10,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:55:10,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:55:10,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:55:10,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:55:10,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:55:10,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:55:10,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:55:10,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:55:10,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:55:10,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 21:55:10,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:55:10,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:55:10,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntType, hphSpec = 'aaùIntTypeùUML71ùdd' +2024-09-07 21:55:10,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:55:10,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:55:10,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:55:10,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:55:10,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:55:10,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:55:10,939 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:55:10,939 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:55:10,939 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:55:10,939 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:55:10,939 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,939 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,939 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-07 21:55:10,939 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 21:55:10,940 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:55:10,940 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,940 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:55:10,940 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntType, hphSpec = 'aaùIntTypeùUML71ùdd' +2024-09-07 21:55:10,940 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:55:10,940 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:55:10,940 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:55:10,940 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:55:10,940 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:55:10,940 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:55:10,940 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:55:10,940 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:55:10,940 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:55:10,943 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:55:10,944 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,944 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 21:55:10,944 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:55:10,944 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,944 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:55:10,944 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntType, hphSpec = 'aaùIntTypeùUML71ùdd' +2024-09-07 21:55:10,944 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:55:10,944 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:55:10,944 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:55:10,944 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:55:10,944 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:55:10,944 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:55:10,944 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:55:10,944 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:55:10,944 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:55:10,945 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:55:10,945 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,945 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-07 21:55:10,945 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:55:10,946 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-07 21:55:10,946 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:55:10,946 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntType, hphSpec = 'aaùIntTypeùUML71ùdd' +2024-09-07 21:55:10,946 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:55:10,946 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:55:10,946 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:55:10,946 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:55:10,946 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:55:10,946 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-07 21:55:10,946 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:55:10,946 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-07 21:55:10,946 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-07 21:55:10,947 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-07 21:55:10,947 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:55:10,947 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:55:10,947 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:55:10,947 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:55:10,947 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:55:10,947 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:55:10,947 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:55:10,947 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:55:10,948 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:55:10,948 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-07 21:55:10,948 [main] INFO Util - time=[0:00:00.302] collected documentation content for 'model packages=[iso]; retained=[iso, standard, iec62351, part7, Profiles, nsmAgent, Overview, BaseTypes, Abstract Types, EnumeratedTypes, Environmental Agent, IED Agent, Application Protocols Agents, Common objects, IEC62351-3 ed.2 Agent, IEEE 1815 and IEC 60870-5 Agent, IEEE 1815 and IEC 60870-5 Agent - ed2, IEC61850 Agent, ACSI, MMS, SV and GSE common objects, SV, GSE, Clocks Agent, Interfaces Agent]; skipped=[]'. +2024-09-07 21:55:10,948 [main] INFO Util - +2024-09-07 21:55:10,948 [main] INFO Util - +2024-09-07 21:55:10,948 [main] INFO Util - ------------------------------------------------ +2024-09-07 21:55:10,948 [main] INFO Util - writing documentation ... +2024-09-07 21:55:10,957 [main] WARN DocCollectorImpl - Multiple classes with Qname 'startUmlClass.nsmAgent.Attribute.endUml' - retaining first one in case you use its placeholder. +2024-09-07 21:55:10,957 [main] WARN DocCollectorImpl - Multiple classes with Qname 'startUmlClass.nsmAgent.Class.endUml' - retaining first one in case you use its placeholder. +2024-09-07 21:55:11,015 [main] INFO AbstractWriter - creating DocWordWriter +2024-09-07 21:55:11,021 [main] TRACE Style - === before para.addPreferredStyles([PARAGRAPH, Normal, Standard, Normal]): +Style.para=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:55:11,021 [main] TRACE Style - === after +Style.para=null; cfg-preferred names=[PARAGRAPH, Normal, Standard]; doc-usable styles={}; all recognised names=[PARAGRAPH, Standard, Normal] + +2024-09-07 21:55:11,021 [main] TRACE Style - === before fig.addPreferredStyles([FIGURE, Picture, Normal, Standard, Normal]): +Style.fig=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:55:11,021 [main] TRACE Style - === after +Style.fig=null; cfg-preferred names=[FIGURE, Picture, Normal, Standard]; doc-usable styles={}; all recognised names=[Picture, Standard, Normal, FIGURE] + +2024-09-07 21:55:11,021 [main] TRACE Style - === before tabhead.addPreferredStyles([TABLE-col-heading, Normal, Standard, Normal]): +Style.tabhead=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:55:11,021 [main] TRACE Style - === after +Style.tabhead=null; cfg-preferred names=[TABLE-col-heading, Normal, Standard]; doc-usable styles={}; all recognised names=[TABLE-col-heading, Standard, Normal] + +2024-09-07 21:55:11,021 [main] TRACE Style - === before tabcell.addPreferredStyles([TABLE-cell, Normal, Standard, Normal]): +Style.tabcell=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:55:11,021 [main] TRACE Style - === after +Style.tabcell=null; cfg-preferred names=[TABLE-cell, Normal, Standard]; doc-usable styles={}; all recognised names=[TABLE-cell, Standard, Normal] + +2024-09-07 21:55:11,021 [main] TRACE Style - === before figcapt.addPreferredStyles([FIGURE-title, Caption, Beschriftung, Légende]): +Style.figcapt=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:55:11,021 [main] TRACE Style - === after +Style.figcapt=null; cfg-preferred names=[FIGURE-title, Caption, Beschriftung, Légende]; doc-usable styles={}; all recognised names=[FIGURE-title, Beschriftung, Légende, Caption] + +2024-09-07 21:55:11,022 [main] TRACE Style - === before tabcapt.addPreferredStyles([TABLE-title, Caption, Beschriftung, Légende]): +Style.tabcapt=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:55:11,022 [main] TRACE Style - === after +Style.tabcapt=null; cfg-preferred names=[TABLE-title, Caption, Beschriftung, Légende]; doc-usable styles={}; all recognised names=[TABLE-title, Beschriftung, Légende, Caption] + +2024-09-07 21:55:11,022 [main] TRACE Style - === before toc1.addPreferredStyles([TOC]): +Style.toc1=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:55:11,022 [main] TRACE Style - === after +Style.toc1=null; cfg-preferred names=[TOC 1]; doc-usable styles={}; all recognised names=[TOC 1] + +2024-09-07 21:55:11,022 [main] TRACE Style - === before toc2.addPreferredStyles([TOC]): +Style.toc2=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:55:11,022 [main] TRACE Style - === after +Style.toc2=null; cfg-preferred names=[TOC 2]; doc-usable styles={}; all recognised names=[TOC 2] + +2024-09-07 21:55:11,022 [main] TRACE Style - === before toc3.addPreferredStyles([TOC]): +Style.toc3=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:55:11,022 [main] TRACE Style - === after +Style.toc3=null; cfg-preferred names=[TOC 3]; doc-usable styles={}; all recognised names=[TOC 3] + +2024-09-07 21:55:11,022 [main] TRACE Style - === before toc4.addPreferredStyles([TOC]): +Style.toc4=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:55:11,022 [main] TRACE Style - === after +Style.toc4=null; cfg-preferred names=[TOC 4]; doc-usable styles={}; all recognised names=[TOC 4] + +2024-09-07 21:55:11,022 [main] TRACE Style - === before toc5.addPreferredStyles([TOC]): +Style.toc5=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:55:11,022 [main] TRACE Style - === after +Style.toc5=null; cfg-preferred names=[TOC 5]; doc-usable styles={}; all recognised names=[TOC 5] + +2024-09-07 21:55:11,022 [main] TRACE Style - === before toc6.addPreferredStyles([TOC]): +Style.toc6=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:55:11,022 [main] TRACE Style - === after +Style.toc6=null; cfg-preferred names=[TOC 6]; doc-usable styles={}; all recognised names=[TOC 6] + +2024-09-07 21:55:11,022 [main] TRACE Style - === before toc7.addPreferredStyles([TOC]): +Style.toc7=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:55:11,022 [main] TRACE Style - === after +Style.toc7=null; cfg-preferred names=[TOC 7]; doc-usable styles={}; all recognised names=[TOC 7] + +2024-09-07 21:55:11,022 [main] TRACE Style - === before toc8.addPreferredStyles([TOC]): +Style.toc8=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:55:11,022 [main] TRACE Style - === after +Style.toc8=null; cfg-preferred names=[TOC 8]; doc-usable styles={}; all recognised names=[TOC 8] + +2024-09-07 21:55:11,022 [main] TRACE Style - === before toc9.addPreferredStyles([TOC]): +Style.toc9=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:55:11,022 [main] TRACE Style - === after +Style.toc9=null; cfg-preferred names=[TOC 9]; doc-usable styles={}; all recognised names=[TOC 9] + +2024-09-07 21:55:11,022 [main] TRACE Style - === before h1.addPreferredStyles([Heading]): +Style.h1=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:55:11,022 [main] TRACE Style - === after +Style.h1=null; cfg-preferred names=[Heading 1]; doc-usable styles={}; all recognised names=[Heading 1] + +2024-09-07 21:55:11,022 [main] TRACE Style - === before h2.addPreferredStyles([Heading]): +Style.h2=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:55:11,022 [main] TRACE Style - === after +Style.h2=null; cfg-preferred names=[Heading 2]; doc-usable styles={}; all recognised names=[Heading 2] + +2024-09-07 21:55:11,022 [main] TRACE Style - === before h3.addPreferredStyles([Heading]): +Style.h3=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:55:11,022 [main] TRACE Style - === after +Style.h3=null; cfg-preferred names=[Heading 3]; doc-usable styles={}; all recognised names=[Heading 3] + +2024-09-07 21:55:11,022 [main] TRACE Style - === before h4.addPreferredStyles([Heading]): +Style.h4=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:55:11,022 [main] TRACE Style - === after +Style.h4=null; cfg-preferred names=[Heading 4]; doc-usable styles={}; all recognised names=[Heading 4] + +2024-09-07 21:55:11,022 [main] TRACE Style - === before h5.addPreferredStyles([Heading]): +Style.h5=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:55:11,022 [main] TRACE Style - === after +Style.h5=null; cfg-preferred names=[Heading 5]; doc-usable styles={}; all recognised names=[Heading 5] + +2024-09-07 21:55:11,022 [main] TRACE Style - === before h6.addPreferredStyles([Heading]): +Style.h6=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:55:11,022 [main] TRACE Style - === after +Style.h6=null; cfg-preferred names=[Heading 6]; doc-usable styles={}; all recognised names=[Heading 6] + +2024-09-07 21:55:11,023 [main] TRACE Style - === before h7.addPreferredStyles([Heading]): +Style.h7=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:55:11,023 [main] TRACE Style - === after +Style.h7=null; cfg-preferred names=[Heading 7]; doc-usable styles={}; all recognised names=[Heading 7] + +2024-09-07 21:55:11,023 [main] TRACE Style - === before h8.addPreferredStyles([Heading]): +Style.h8=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:55:11,023 [main] TRACE Style - === after +Style.h8=null; cfg-preferred names=[Heading 8]; doc-usable styles={}; all recognised names=[Heading 8] + +2024-09-07 21:55:11,023 [main] TRACE Style - === before h9.addPreferredStyles([Heading]): +Style.h9=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-07 21:55:11,023 [main] TRACE Style - === after +Style.h9=null; cfg-preferred names=[Heading 9]; doc-usable styles={}; all recognised names=[Heading 9] + +2024-09-07 21:55:11,317 [main] INFO AbstractWordWriter - Created DocWordWriter. +2024-09-07 21:55:11,317 [main] INFO JCleanCim - from C:\Users\gigi\git\jCleanCim\input\57-62351-7-Ed2-FDIS-template_20240901.docx +2024-09-07 21:55:11,317 [main] INFO JCleanCim - into C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx +2024-09-07 21:55:11,317 [main] INFO DocWordWriter - creating MSWord application +2024-09-07 21:55:14,689 [main] INFO DocWordWriter - opening MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 21:55:15,681 [main] INFO AbstractWordWriter - Microsoft Word version: 15.0 + +2024-09-07 21:55:15,925 [main] DEBUG DocWordWriter - original(_initialOptions): OptimOptions [viewId=3, normView=false, paginate=true, updFld=true, updScr=true, fastSave=false, spelling=false, grammar=false] +2024-09-07 21:55:15,940 [main] DEBUG DocWordWriter - setting existing custom property: uml = IEC62351-7-Ed2-FDIS-20240901.eap +2024-09-07 21:55:15,953 [main] DEBUG DocWordWriter - setting existing custom property: jCleanCim = 02v03 +2024-09-07 21:55:15,979 [main] INFO OptimOptions - setting view to normal +2024-09-07 21:55:16,027 [main] INFO OptimOptions - disabling pagination +2024-09-07 21:55:16,218 [main] INFO OptimOptions - disabling field update +2024-09-07 21:55:16,305 [main] INFO OptimOptions - disabling screen updating +2024-09-07 21:55:16,313 [main] DEBUG DocWordWriter - current(_optimisedOptions): OptimOptions [viewId=1, normView=true, paginate=false, updFld=false, updScr=false, fastSave=false, spelling=false, grammar=false] +2024-09-07 21:55:16,313 [main] INFO Util - +2024-09-07 21:55:16,313 [main] INFO Util - ------------------------------------------------ +2024-09-07 21:55:16,313 [main] INFO Util - collecting existing and retaining usable styles from open MS Word document.... +2024-09-07 21:55:16,334 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Normal, id=-1, outline = 0, kind=normal +2024-09-07 21:55:16,340 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 1, id=-2, outline = 1, kind=heading +2024-09-07 21:55:16,344 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 2, id=-3, outline = 2, kind=heading +2024-09-07 21:55:16,356 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 3, id=-4, outline = 3, kind=heading +2024-09-07 21:55:16,386 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 4, id=-5, outline = 4, kind=heading +2024-09-07 21:55:16,393 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 5, id=-6, outline = 5, kind=heading +2024-09-07 21:55:16,400 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 6, id=-7, outline = 6, kind=heading +2024-09-07 21:55:16,405 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 7, id=-8, outline = 7, kind=heading +2024-09-07 21:55:16,409 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 8, id=-9, outline = 8, kind=heading +2024-09-07 21:55:16,412 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 9, id=-10, outline = 9, kind=heading +2024-09-07 21:55:16,418 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 1;?????????1?, id=-20, outline = 1, kind=toc +2024-09-07 21:55:16,421 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 2, id=-21, outline = 2, kind=toc +2024-09-07 21:55:16,425 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 3, id=-22, outline = 3, kind=toc +2024-09-07 21:55:16,428 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 4, id=-23, outline = 4, kind=toc +2024-09-07 21:55:16,432 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 5, id=-24, outline = 5, kind=toc +2024-09-07 21:55:16,437 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 6, id=-25, outline = 6, kind=toc +2024-09-07 21:55:16,440 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 7, id=-26, outline = 7, kind=toc +2024-09-07 21:55:16,443 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 8, id=-27, outline = 8, kind=toc +2024-09-07 21:55:16,448 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 9, id=-28, outline = 9, kind=toc +2024-09-07 21:55:16,452 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Caption, id=-35, outline = 0, kind=caption +2024-09-07 21:55:24,438 [main] INFO DocWordWriter - AMD-Heading1 (custom, id=0: OTHER) +2024-09-07 21:55:24,438 [main] INFO DocWordWriter - AMD-Heading2... (custom, id=0: OTHER) +2024-09-07 21:55:24,438 [main] INFO DocWordWriter - ANNEX_title (custom, id=0: OTHER) +2024-09-07 21:55:24,438 [main] INFO DocWordWriter - Annexes (custom, id=0: OTHER) +2024-09-07 21:55:24,438 [main] INFO DocWordWriter - ANNEX-heading1 (custom, id=0: OTHER) +2024-09-07 21:55:24,438 [main] INFO DocWordWriter - ANNEX-heading2 (custom, id=0: OTHER) +2024-09-07 21:55:24,438 [main] INFO DocWordWriter - ANNEX-heading2... (custom, id=0: OTHER) +2024-09-07 21:55:24,438 [main] INFO DocWordWriter - ANNEX-heading3 (custom, id=0: OTHER) +2024-09-07 21:55:24,439 [main] INFO DocWordWriter - ANNEX-heading4 (custom, id=0: OTHER) +2024-09-07 21:55:24,439 [main] INFO DocWordWriter - ANNEX-heading5 (custom, id=0: OTHER) +2024-09-07 21:55:24,439 [main] INFO DocWordWriter - ANNEX-title (custom, id=0: OTHER) +2024-09-07 21:55:24,439 [main] INFO DocWordWriter - BIBLIOGRAPHY-numbered (custom, id=0: OTHER) +2024-09-07 21:55:24,439 [main] INFO DocWordWriter - Body Drawing (custom, id=0: OTHER) +2024-09-07 21:55:24,439 [main] INFO DocWordWriter - Body Small (custom, id=0: OTHER) +2024-09-07 21:55:24,439 [main] INFO DocWordWriter - Body Text Bold (custom, id=0: OTHER) +2024-09-07 21:55:24,439 [main] INFO DocWordWriter - Body Text Hanging (custom, id=0: OTHER) +2024-09-07 21:55:24,439 [main] INFO DocWordWriter - Body Text Single (custom, id=0: OTHER) +2024-09-07 21:55:24,439 [main] INFO DocWordWriter - Caption (builtIn, id=-35: CAPT) +2024-09-07 21:55:24,439 [main] INFO DocWordWriter - CODE (custom, id=0: OTHER) +2024-09-07 21:55:24,439 [main] INFO DocWordWriter - CODE-TableCell (custom, id=0: OTHER) +2024-09-07 21:55:24,439 [main] INFO DocWordWriter - Colorful Grid - Accent 11 (custom, id=0: OTHER) +2024-09-07 21:55:24,439 [main] INFO DocWordWriter - Colorful List - Accent 11 (custom, id=0: OTHER) +2024-09-07 21:55:24,439 [main] INFO DocWordWriter - Confidential Page # Date (custom, id=0: OTHER) +2024-09-07 21:55:24,439 [main] INFO DocWordWriter - Cover Subtitle (custom, id=0: OTHER) +2024-09-07 21:55:24,439 [main] INFO DocWordWriter - Cover Title (custom, id=0: OTHER) +2024-09-07 21:55:24,441 [main] INFO DocWordWriter - Disclaimer (custom, id=0: OTHER) +2024-09-07 21:55:24,441 [main] INFO DocWordWriter - DisclaimerInsert (custom, id=0: OTHER) +2024-09-07 21:55:24,441 [main] INFO DocWordWriter - EPRI Address (custom, id=0: OTHER) +2024-09-07 21:55:24,441 [main] INFO DocWordWriter - EPRI Block Quote (custom, id=0: OTHER) +2024-09-07 21:55:24,441 [main] INFO DocWordWriter - EPRI Bulleted List (custom, id=0: OTHER) +2024-09-07 21:55:24,441 [main] INFO DocWordWriter - EPRI Citations (custom, id=0: OTHER) +2024-09-07 21:55:24,441 [main] INFO DocWordWriter - EPRI Citations NEPO FY01-02 (custom, id=0: OTHER) +2024-09-07 21:55:24,441 [main] INFO DocWordWriter - EPRI Citations NEPO FY03 (custom, id=0: OTHER) +2024-09-07 21:55:24,442 [main] INFO DocWordWriter - EPRI Copyright Text (custom, id=0: OTHER) +2024-09-07 21:55:24,442 [main] INFO DocWordWriter - EPRI Copyright Title (custom, id=0: OTHER) +2024-09-07 21:55:24,442 [main] INFO DocWordWriter - EPRI Cosponsor Text (custom, id=0: OTHER) +2024-09-07 21:55:24,442 [main] INFO DocWordWriter - EPRI Disclaimer (custom, id=0: OTHER) +2024-09-07 21:55:24,442 [main] INFO DocWordWriter - EPRI Disclaimer Insert (custom, id=0: OTHER) +2024-09-07 21:55:24,442 [main] INFO DocWordWriter - EPRI Disclaimer Title (custom, id=0: OTHER) +2024-09-07 21:55:24,442 [main] INFO DocWordWriter - EPRI Executable Box (custom, id=0: OTHER) +2024-09-07 21:55:24,442 [main] INFO DocWordWriter - EPRI Figure (custom, id=0: OTHER) +2024-09-07 21:55:24,442 [main] INFO DocWordWriter - EPRI Footnote Text (custom, id=0: OTHER) +2024-09-07 21:55:24,442 [main] INFO DocWordWriter - EPRI Front Matter Bullet (custom, id=0: OTHER) +2024-09-07 21:55:24,442 [main] INFO DocWordWriter - EPRI Front Matter Text First Paragraph (custom, id=0: OTHER) +2024-09-07 21:55:24,442 [main] INFO DocWordWriter - EPRI Heading 2;First Level Head (custom, id=0: OTHER) +2024-09-07 21:55:24,442 [main] INFO DocWordWriter - EPRI Heading 3;Second Level Head (custom, id=0: OTHER) +2024-09-07 21:55:24,442 [main] INFO DocWordWriter - EPRI Heading 8;Appendix 2nd Level Head (custom, id=0: OTHER) +2024-09-07 21:55:24,443 [main] INFO DocWordWriter - EPRI Heading 9;Appendix 3rd Level Head (custom, id=0: OTHER) +2024-09-07 21:55:24,443 [main] INFO DocWordWriter - EPRI Key Point (custom, id=0: OTHER) +2024-09-07 21:55:24,443 [main] INFO DocWordWriter - EPRI Licensed (custom, id=0: OTHER) +2024-09-07 21:55:24,443 [main] INFO DocWordWriter - EPRI Licensed 1st pg (custom, id=0: OTHER) +2024-09-07 21:55:24,443 [main] INFO DocWordWriter - EPRI Licensed Header (custom, id=0: OTHER) +2024-09-07 21:55:24,443 [main] INFO DocWordWriter - EPRI Normal (custom, id=0: OTHER) +2024-09-07 21:55:24,443 [main] INFO DocWordWriter - EPRI Numbered List (custom, id=0: OTHER) +2024-09-07 21:55:24,443 [main] INFO DocWordWriter - EPRI Ordering (custom, id=0: OTHER) +2024-09-07 21:55:24,443 [main] INFO DocWordWriter - EPRI Popout (custom, id=0: OTHER) +2024-09-07 21:55:24,444 [main] INFO DocWordWriter - EPRI Product ID# (custom, id=0: OTHER) +2024-09-07 21:55:24,444 [main] INFO DocWordWriter - EPRI Project Manager (custom, id=0: OTHER) +2024-09-07 21:55:24,444 [main] INFO DocWordWriter - EPRI RS Bulleted List (custom, id=0: OTHER) +2024-09-07 21:55:24,444 [main] INFO DocWordWriter - EPRI RS Subtitle (custom, id=0: OTHER) +2024-09-07 21:55:24,444 [main] INFO DocWordWriter - EPRI RS Text (custom, id=0: OTHER) +2024-09-07 21:55:24,444 [main] INFO DocWordWriter - EPRI Section Number (custom, id=0: OTHER) +2024-09-07 21:55:24,444 [main] INFO DocWordWriter - EPRI Section Style (custom, id=0: OTHER) +2024-09-07 21:55:24,444 [main] INFO DocWordWriter - EPRI Section Title (custom, id=0: OTHER) +2024-09-07 21:55:24,444 [main] INFO DocWordWriter - EPRI Sub Bulleted List (custom, id=0: OTHER) +2024-09-07 21:55:24,444 [main] INFO DocWordWriter - EPRI Sub Bulleted List 2 (custom, id=0: OTHER) +2024-09-07 21:55:24,445 [main] INFO DocWordWriter - EPRI Subheadings (custom, id=0: OTHER) +2024-09-07 21:55:24,445 [main] INFO DocWordWriter - EPRI Subtitle (custom, id=0: OTHER) +2024-09-07 21:55:24,445 [main] INFO DocWordWriter - EPRI Table Header (custom, id=0: OTHER) +2024-09-07 21:55:24,445 [main] INFO DocWordWriter - EPRI Table Text (custom, id=0: OTHER) +2024-09-07 21:55:24,445 [main] INFO DocWordWriter - EPRI Table Text Left (custom, id=0: OTHER) +2024-09-07 21:55:24,446 [main] INFO DocWordWriter - EPRI Title (custom, id=0: OTHER) +2024-09-07 21:55:24,446 [main] INFO DocWordWriter - EPRI Title Text (custom, id=0: OTHER) +2024-09-07 21:55:24,446 [main] INFO DocWordWriter - EPRI TOC 1 (custom, id=0: OTHER) +2024-09-07 21:55:24,446 [main] INFO DocWordWriter - EPRI TOC 2 (custom, id=0: OTHER) +2024-09-07 21:55:24,446 [main] INFO DocWordWriter - EPRI TOC 3 (custom, id=0: OTHER) +2024-09-07 21:55:24,446 [main] INFO DocWordWriter - EPRI TOC 4 (custom, id=0: OTHER) +2024-09-07 21:55:24,446 [main] INFO DocWordWriter - EPRI TOC 5 (custom, id=0: OTHER) +2024-09-07 21:55:24,446 [main] INFO DocWordWriter - eprinormal (custom, id=0: OTHER) +2024-09-07 21:55:24,447 [main] INFO DocWordWriter - EXAMPLE (custom, id=0: OTHER) +2024-09-07 21:55:24,447 [main] INFO DocWordWriter - FIGURE (custom, id=0: OTHER) +2024-09-07 21:55:24,447 [main] INFO DocWordWriter - FIGURE-title (custom, id=0: OTHER) +2024-09-07 21:55:24,448 [main] INFO DocWordWriter - FOREWORD (custom, id=0: OTHER) +2024-09-07 21:55:24,448 [main] INFO DocWordWriter - FORM-admin (custom, id=0: OTHER) +2024-09-07 21:55:24,448 [main] INFO DocWordWriter - Front Matter Footnote Text (custom, id=0: OTHER) +2024-09-07 21:55:24,448 [main] INFO DocWordWriter - head1 (custom, id=0: OTHER) +2024-09-07 21:55:24,448 [main] INFO DocWordWriter - Heading 1 (builtIn, id=-2: HEAD) +2024-09-07 21:55:24,448 [main] INFO DocWordWriter - Heading 2 (builtIn, id=-3: HEAD) +2024-09-07 21:55:24,448 [main] INFO DocWordWriter - Heading 3 (builtIn, id=-4: HEAD) +2024-09-07 21:55:24,448 [main] INFO DocWordWriter - Heading 4 (builtIn, id=-5: HEAD) +2024-09-07 21:55:24,448 [main] INFO DocWordWriter - Heading 5 (builtIn, id=-6: HEAD) +2024-09-07 21:55:24,448 [main] INFO DocWordWriter - Heading 6 (builtIn, id=-7: HEAD) +2024-09-07 21:55:24,448 [main] INFO DocWordWriter - Heading 7 (builtIn, id=-8: HEAD) +2024-09-07 21:55:24,448 [main] INFO DocWordWriter - Heading 8 (builtIn, id=-9: HEAD) +2024-09-07 21:55:24,448 [main] INFO DocWordWriter - Heading 9 (builtIn, id=-10: HEAD) +2024-09-07 21:55:24,449 [main] INFO DocWordWriter - HEADING(Nonumber) (custom, id=0: OTHER) +2024-09-07 21:55:24,449 [main] INFO DocWordWriter - Headings (custom, id=0: OTHER) +2024-09-07 21:55:24,449 [main] INFO DocWordWriter - IEC_INSTRUCTIONS (custom, id=0: OTHER) +2024-09-07 21:55:24,449 [main] INFO DocWordWriter - ISO_Change (custom, id=0: OTHER) +2024-09-07 21:55:24,449 [main] INFO DocWordWriter - ISO_Secret_Observations (custom, id=0: OTHER) +2024-09-07 21:55:24,449 [main] INFO DocWordWriter - List Bullet 6 (custom, id=0: OTHER) +2024-09-07 21:55:24,449 [main] INFO DocWordWriter - List Dash (custom, id=0: OTHER) +2024-09-07 21:55:24,449 [main] INFO DocWordWriter - List Dash 2 (custom, id=0: OTHER) +2024-09-07 21:55:24,449 [main] INFO DocWordWriter - List Dash 3 (custom, id=0: OTHER) +2024-09-07 21:55:24,449 [main] INFO DocWordWriter - List Dash 4 (custom, id=0: OTHER) +2024-09-07 21:55:24,449 [main] INFO DocWordWriter - List Number alt (custom, id=0: OTHER) +2024-09-07 21:55:24,449 [main] INFO DocWordWriter - List Number alt 2 (custom, id=0: OTHER) +2024-09-07 21:55:24,449 [main] INFO DocWordWriter - List Number alt 3 (custom, id=0: OTHER) +2024-09-07 21:55:24,449 [main] INFO DocWordWriter - MAIN-TITLE (custom, id=0: OTHER) +2024-09-07 21:55:24,449 [main] INFO DocWordWriter - MAIN-TITLE12 (custom, id=0: OTHER) +2024-09-07 21:55:24,449 [main] INFO DocWordWriter - Normal (builtIn, id=-1: NORM) +2024-09-07 21:55:24,450 [main] INFO DocWordWriter - Normal Hang (custom, id=0: OTHER) +2024-09-07 21:55:24,450 [main] INFO DocWordWriter - NOTE (custom, id=0: OTHER) +2024-09-07 21:55:24,450 [main] INFO DocWordWriter - Numbered PARA (level 2) (custom, id=0: OTHER) +2024-09-07 21:55:24,450 [main] INFO DocWordWriter - Numbered PARA (level 3) (custom, id=0: OTHER) +2024-09-07 21:55:24,450 [main] INFO DocWordWriter - Numbered PARA (level 4) (custom, id=0: OTHER) +2024-09-07 21:55:24,450 [main] INFO DocWordWriter - Outline (custom, id=0: OTHER) +2024-09-07 21:55:24,450 [main] INFO DocWordWriter - PARAEQUATION (custom, id=0: OTHER) +2024-09-07 21:55:24,450 [main] INFO DocWordWriter - PARAGRAPH (custom, id=0: OTHER) +2024-09-07 21:55:24,450 [main] INFO DocWordWriter - Picture (custom, id=0: OTHER) +2024-09-07 21:55:24,450 [main] INFO DocWordWriter - Product ID# (custom, id=0: OTHER) +2024-09-07 21:55:24,450 [main] INFO DocWordWriter - Section Title Only (custom, id=0: OTHER) +2024-09-07 21:55:24,450 [main] INFO DocWordWriter - SMALL-BLOCKS12 (custom, id=0: OTHER) +2024-09-07 21:55:24,450 [main] INFO DocWordWriter - Style Outline numbered (custom, id=0: OTHER) +2024-09-07 21:55:24,450 [main] INFO DocWordWriter - TAB_FIG_footnote (custom, id=0: OTHER) +2024-09-07 21:55:24,450 [main] INFO DocWordWriter - Table Bullet (custom, id=0: OTHER) +2024-09-07 21:55:24,450 [main] INFO DocWordWriter - Table Dash (custom, id=0: OTHER) +2024-09-07 21:55:24,450 [main] INFO DocWordWriter - Table Style (custom, id=0: OTHER) +2024-09-07 21:55:24,450 [main] INFO DocWordWriter - TABLE-cell (custom, id=0: OTHER) +2024-09-07 21:55:24,451 [main] INFO DocWordWriter - TABLE-centered (custom, id=0: OTHER) +2024-09-07 21:55:24,451 [main] INFO DocWordWriter - TABLE-col-heading (custom, id=0: OTHER) +2024-09-07 21:55:24,451 [main] INFO DocWordWriter - TABLE-title (custom, id=0: OTHER) +2024-09-07 21:55:24,451 [main] INFO DocWordWriter - TERM (custom, id=0: OTHER) +2024-09-07 21:55:24,451 [main] INFO DocWordWriter - TERM-admitted (custom, id=0: OTHER) +2024-09-07 21:55:24,451 [main] INFO DocWordWriter - TERM-definition (custom, id=0: OTHER) +2024-09-07 21:55:24,451 [main] INFO DocWordWriter - TERM-deprecated (custom, id=0: OTHER) +2024-09-07 21:55:24,451 [main] INFO DocWordWriter - TERM-example (custom, id=0: OTHER) +2024-09-07 21:55:24,451 [main] INFO DocWordWriter - TERM-note (custom, id=0: OTHER) +2024-09-07 21:55:24,451 [main] INFO DocWordWriter - TERM-number (custom, id=0: OTHER) +2024-09-07 21:55:24,451 [main] INFO DocWordWriter - TERM-number 3 (custom, id=0: OTHER) +2024-09-07 21:55:24,451 [main] INFO DocWordWriter - TERM-number 4 (custom, id=0: OTHER) +2024-09-07 21:55:24,451 [main] INFO DocWordWriter - TERM-source (custom, id=0: OTHER) +2024-09-07 21:55:24,451 [main] INFO DocWordWriter - Title Page Text (custom, id=0: OTHER) +2024-09-07 21:55:24,451 [main] INFO DocWordWriter - Title1 (custom, id=0: OTHER) +2024-09-07 21:55:24,451 [main] INFO DocWordWriter - TOC 1;?????????1? (builtIn, id=-20: TOC) +2024-09-07 21:55:24,452 [main] INFO DocWordWriter - TOC 2 (builtIn, id=-21: TOC) +2024-09-07 21:55:24,452 [main] INFO DocWordWriter - TOC 3 (builtIn, id=-22: TOC) +2024-09-07 21:55:24,452 [main] INFO DocWordWriter - TOC 4 (builtIn, id=-23: TOC) +2024-09-07 21:55:24,452 [main] INFO DocWordWriter - TOC 5 (builtIn, id=-24: TOC) +2024-09-07 21:55:24,452 [main] INFO DocWordWriter - TOC 6 (builtIn, id=-25: TOC) +2024-09-07 21:55:24,452 [main] INFO DocWordWriter - TOC 7 (builtIn, id=-26: TOC) +2024-09-07 21:55:24,452 [main] INFO DocWordWriter - TOC 8 (builtIn, id=-27: TOC) +2024-09-07 21:55:24,452 [main] INFO DocWordWriter - TOC 9 (builtIn, id=-28: TOC) +2024-09-07 21:55:24,452 [main] INFO DocWordWriter - UCI List (custom, id=0: OTHER) +2024-09-07 21:55:24,452 [main] INFO Util - time=[0:00:08.139] collected existing and retained usable styles +2024-09-07 21:55:24,452 [main] INFO Util - +2024-09-07 21:55:24,452 [main] TRACE Style - === before para.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.para=null; cfg-preferred names=[PARAGRAPH, Normal, Standard]; doc-usable styles={}; all recognised names=[PARAGRAPH, Standard, Normal] +2024-09-07 21:55:24,453 [main] INFO Style - Assigned from preferred names [full match]: Style.para=PARAGRAPH; cfg-preferred names=[PARAGRAPH, Normal, Standard] +2024-09-07 21:55:24,453 [main] TRACE Style - === after +Style.para=PARAGRAPH; cfg-preferred names=[PARAGRAPH, Normal, Standard]; doc-usable styles={PARAGRAPH=PARAGRAPH (custom, id=0: PARA), Normal=Normal (builtIn, id=-1: NORM)}; all recognised names=[PARAGRAPH, Standard, Normal] + +2024-09-07 21:55:24,453 [main] TRACE Style - === before fig.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.fig=null; cfg-preferred names=[FIGURE, Picture, Normal, Standard]; doc-usable styles={}; all recognised names=[Picture, Standard, Normal, FIGURE] +2024-09-07 21:55:24,453 [main] INFO Style - Assigned from preferred names [full match]: Style.fig=FIGURE; cfg-preferred names=[FIGURE, Picture, Normal, Standard] +2024-09-07 21:55:24,453 [main] TRACE Style - === after +Style.fig=FIGURE; cfg-preferred names=[FIGURE, Picture, Normal, Standard]; doc-usable styles={FIGURE=FIGURE (custom, id=0: FIG), Picture=Picture (custom, id=0: OTHER), Normal=Normal (builtIn, id=-1: NORM)}; all recognised names=[Picture, Standard, Normal, FIGURE] + +2024-09-07 21:55:24,453 [main] TRACE Style - === before tabhead.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.tabhead=null; cfg-preferred names=[TABLE-col-heading, Normal, Standard]; doc-usable styles={}; all recognised names=[TABLE-col-heading, Standard, Normal] +2024-09-07 21:55:24,453 [main] INFO Style - Assigned from preferred names [full match]: Style.tabhead=TABLE-col-heading; cfg-preferred names=[TABLE-col-heading, Normal, Standard] +2024-09-07 21:55:24,453 [main] TRACE Style - === after +Style.tabhead=TABLE-col-heading; cfg-preferred names=[TABLE-col-heading, Normal, Standard]; doc-usable styles={TABLE-col-heading=TABLE-col-heading (custom, id=0: TABHEAD), Normal=Normal (builtIn, id=-1: NORM)}; all recognised names=[TABLE-col-heading, Standard, Normal] + +2024-09-07 21:55:24,453 [main] TRACE Style - === before tabcell.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.tabcell=null; cfg-preferred names=[TABLE-cell, Normal, Standard]; doc-usable styles={}; all recognised names=[TABLE-cell, Standard, Normal] +2024-09-07 21:55:24,454 [main] INFO Style - Assigned from preferred names [full match]: Style.tabcell=TABLE-cell; cfg-preferred names=[TABLE-cell, Normal, Standard] +2024-09-07 21:55:24,454 [main] TRACE Style - === after +Style.tabcell=TABLE-cell; cfg-preferred names=[TABLE-cell, Normal, Standard]; doc-usable styles={TABLE-cell=TABLE-cell (custom, id=0: TABCELL), Normal=Normal (builtIn, id=-1: NORM)}; all recognised names=[TABLE-cell, Standard, Normal] + +2024-09-07 21:55:24,454 [main] TRACE Style - === before figcapt.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.figcapt=null; cfg-preferred names=[FIGURE-title, Caption, Beschriftung, Légende]; doc-usable styles={}; all recognised names=[FIGURE-title, Beschriftung, Légende, Caption] +2024-09-07 21:55:24,454 [main] INFO Style - Assigned from preferred names [full match]: Style.figcapt=FIGURE-title; cfg-preferred names=[FIGURE-title, Caption, Beschriftung, Légende] +2024-09-07 21:55:24,454 [main] TRACE Style - === after +Style.figcapt=FIGURE-title; cfg-preferred names=[FIGURE-title, Caption, Beschriftung, Légende]; doc-usable styles={FIGURE-title=FIGURE-title (custom, id=0: FIGCAPT), Caption=Caption (builtIn, id=-35: CAPT)}; all recognised names=[FIGURE-title, Beschriftung, Légende, Caption] + +2024-09-07 21:55:24,454 [main] TRACE Style - === before tabcapt.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.tabcapt=null; cfg-preferred names=[TABLE-title, Caption, Beschriftung, Légende]; doc-usable styles={}; all recognised names=[TABLE-title, Beschriftung, Légende, Caption] +2024-09-07 21:55:24,454 [main] INFO Style - Assigned from preferred names [full match]: Style.tabcapt=TABLE-title; cfg-preferred names=[TABLE-title, Caption, Beschriftung, Légende] +2024-09-07 21:55:24,455 [main] TRACE Style - === after +Style.tabcapt=TABLE-title; cfg-preferred names=[TABLE-title, Caption, Beschriftung, Légende]; doc-usable styles={TABLE-title=TABLE-title (custom, id=0: TABCAPT), Caption=Caption (builtIn, id=-35: CAPT)}; all recognised names=[TABLE-title, Beschriftung, Légende, Caption] + +2024-09-07 21:55:24,455 [main] TRACE Style - === before toc1.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.toc1=null; cfg-preferred names=[TOC 1]; doc-usable styles={}; all recognised names=[TOC 1] +2024-09-07 21:55:24,455 [main] INFO Style - Assigned from preferred names [matching start with preferred] :Style.toc1=TOC 1;?????????1?; cfg-preferred names=[TOC 1]; doc-usable styles={TOC 1=TOC 1;?????????1? (builtIn, id=-20: TOC)}; all recognised names=[TOC 1] +2024-09-07 21:55:24,455 [main] INFO Style - NOTE: If not happy with this assignment, add custom style(s) to your document manually. +2024-09-07 21:55:24,455 [main] TRACE Style - === after +Style.toc1=TOC 1;?????????1?; cfg-preferred names=[TOC 1]; doc-usable styles={TOC 1=TOC 1;?????????1? (builtIn, id=-20: TOC)}; all recognised names=[TOC 1] + +2024-09-07 21:55:24,455 [main] TRACE Style - === before toc2.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.toc2=null; cfg-preferred names=[TOC 2]; doc-usable styles={}; all recognised names=[TOC 2] +2024-09-07 21:55:24,456 [main] INFO Style - Assigned from preferred names [full match]: Style.toc2=TOC 2; cfg-preferred names=[TOC 2] +2024-09-07 21:55:24,456 [main] TRACE Style - === after +Style.toc2=TOC 2; cfg-preferred names=[TOC 2]; doc-usable styles={TOC 2=TOC 2 (builtIn, id=-21: TOC)}; all recognised names=[TOC 2] + +2024-09-07 21:55:24,456 [main] TRACE Style - === before toc3.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.toc3=null; cfg-preferred names=[TOC 3]; doc-usable styles={}; all recognised names=[TOC 3] +2024-09-07 21:55:24,456 [main] INFO Style - Assigned from preferred names [full match]: Style.toc3=TOC 3; cfg-preferred names=[TOC 3] +2024-09-07 21:55:24,456 [main] TRACE Style - === after +Style.toc3=TOC 3; cfg-preferred names=[TOC 3]; doc-usable styles={TOC 3=TOC 3 (builtIn, id=-22: TOC)}; all recognised names=[TOC 3] + +2024-09-07 21:55:24,456 [main] TRACE Style - === before toc4.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.toc4=null; cfg-preferred names=[TOC 4]; doc-usable styles={}; all recognised names=[TOC 4] +2024-09-07 21:55:24,456 [main] INFO Style - Assigned from preferred names [full match]: Style.toc4=TOC 4; cfg-preferred names=[TOC 4] +2024-09-07 21:55:24,456 [main] TRACE Style - === after +Style.toc4=TOC 4; cfg-preferred names=[TOC 4]; doc-usable styles={TOC 4=TOC 4 (builtIn, id=-23: TOC)}; all recognised names=[TOC 4] + +2024-09-07 21:55:24,456 [main] TRACE Style - === before toc5.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.toc5=null; cfg-preferred names=[TOC 5]; doc-usable styles={}; all recognised names=[TOC 5] +2024-09-07 21:55:24,457 [main] INFO Style - Assigned from preferred names [full match]: Style.toc5=TOC 5; cfg-preferred names=[TOC 5] +2024-09-07 21:55:24,457 [main] TRACE Style - === after +Style.toc5=TOC 5; cfg-preferred names=[TOC 5]; doc-usable styles={TOC 5=TOC 5 (builtIn, id=-24: TOC)}; all recognised names=[TOC 5] + +2024-09-07 21:55:24,457 [main] TRACE Style - === before toc6.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.toc6=null; cfg-preferred names=[TOC 6]; doc-usable styles={}; all recognised names=[TOC 6] +2024-09-07 21:55:24,457 [main] INFO Style - Assigned from preferred names [full match]: Style.toc6=TOC 6; cfg-preferred names=[TOC 6] +2024-09-07 21:55:24,458 [main] TRACE Style - === after +Style.toc6=TOC 6; cfg-preferred names=[TOC 6]; doc-usable styles={TOC 6=TOC 6 (builtIn, id=-25: TOC)}; all recognised names=[TOC 6] + +2024-09-07 21:55:24,458 [main] TRACE Style - === before toc7.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.toc7=null; cfg-preferred names=[TOC 7]; doc-usable styles={}; all recognised names=[TOC 7] +2024-09-07 21:55:24,458 [main] INFO Style - Assigned from preferred names [full match]: Style.toc7=TOC 7; cfg-preferred names=[TOC 7] +2024-09-07 21:55:24,458 [main] TRACE Style - === after +Style.toc7=TOC 7; cfg-preferred names=[TOC 7]; doc-usable styles={TOC 7=TOC 7 (builtIn, id=-26: TOC)}; all recognised names=[TOC 7] + +2024-09-07 21:55:24,458 [main] TRACE Style - === before toc8.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.toc8=null; cfg-preferred names=[TOC 8]; doc-usable styles={}; all recognised names=[TOC 8] +2024-09-07 21:55:24,459 [main] INFO Style - Assigned from preferred names [full match]: Style.toc8=TOC 8; cfg-preferred names=[TOC 8] +2024-09-07 21:55:24,459 [main] TRACE Style - === after +Style.toc8=TOC 8; cfg-preferred names=[TOC 8]; doc-usable styles={TOC 8=TOC 8 (builtIn, id=-27: TOC)}; all recognised names=[TOC 8] + +2024-09-07 21:55:24,459 [main] TRACE Style - === before toc9.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.toc9=null; cfg-preferred names=[TOC 9]; doc-usable styles={}; all recognised names=[TOC 9] +2024-09-07 21:55:24,459 [main] INFO Style - Assigned from preferred names [full match]: Style.toc9=TOC 9; cfg-preferred names=[TOC 9] +2024-09-07 21:55:24,459 [main] TRACE Style - === after +Style.toc9=TOC 9; cfg-preferred names=[TOC 9]; doc-usable styles={TOC 9=TOC 9 (builtIn, id=-28: TOC)}; all recognised names=[TOC 9] + +2024-09-07 21:55:24,460 [main] TRACE Style - === before h1.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.h1=null; cfg-preferred names=[Heading 1]; doc-usable styles={}; all recognised names=[Heading 1] +2024-09-07 21:55:24,460 [main] INFO Style - Assigned from preferred names [full match]: Style.h1=Heading 1; cfg-preferred names=[Heading 1] +2024-09-07 21:55:24,460 [main] TRACE Style - === after +Style.h1=Heading 1; cfg-preferred names=[Heading 1]; doc-usable styles={Heading 1=Heading 1 (builtIn, id=-2: HEAD)}; all recognised names=[Heading 1] + +2024-09-07 21:55:24,460 [main] TRACE Style - === before h2.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.h2=null; cfg-preferred names=[Heading 2]; doc-usable styles={}; all recognised names=[Heading 2] +2024-09-07 21:55:24,461 [main] INFO Style - Assigned from preferred names [full match]: Style.h2=Heading 2; cfg-preferred names=[Heading 2] +2024-09-07 21:55:24,461 [main] TRACE Style - === after +Style.h2=Heading 2; cfg-preferred names=[Heading 2]; doc-usable styles={Heading 2=Heading 2 (builtIn, id=-3: HEAD)}; all recognised names=[Heading 2] + +2024-09-07 21:55:24,461 [main] TRACE Style - === before h3.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.h3=null; cfg-preferred names=[Heading 3]; doc-usable styles={}; all recognised names=[Heading 3] +2024-09-07 21:55:24,461 [main] INFO Style - Assigned from preferred names [full match]: Style.h3=Heading 3; cfg-preferred names=[Heading 3] +2024-09-07 21:55:24,461 [main] TRACE Style - === after +Style.h3=Heading 3; cfg-preferred names=[Heading 3]; doc-usable styles={Heading 3=Heading 3 (builtIn, id=-4: HEAD)}; all recognised names=[Heading 3] + +2024-09-07 21:55:24,461 [main] TRACE Style - === before h4.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.h4=null; cfg-preferred names=[Heading 4]; doc-usable styles={}; all recognised names=[Heading 4] +2024-09-07 21:55:24,461 [main] INFO Style - Assigned from preferred names [full match]: Style.h4=Heading 4; cfg-preferred names=[Heading 4] +2024-09-07 21:55:24,462 [main] TRACE Style - === after +Style.h4=Heading 4; cfg-preferred names=[Heading 4]; doc-usable styles={Heading 4=Heading 4 (builtIn, id=-5: HEAD)}; all recognised names=[Heading 4] + +2024-09-07 21:55:24,462 [main] TRACE Style - === before h5.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.h5=null; cfg-preferred names=[Heading 5]; doc-usable styles={}; all recognised names=[Heading 5] +2024-09-07 21:55:24,462 [main] INFO Style - Assigned from preferred names [full match]: Style.h5=Heading 5; cfg-preferred names=[Heading 5] +2024-09-07 21:55:24,462 [main] TRACE Style - === after +Style.h5=Heading 5; cfg-preferred names=[Heading 5]; doc-usable styles={Heading 5=Heading 5 (builtIn, id=-6: HEAD)}; all recognised names=[Heading 5] + +2024-09-07 21:55:24,462 [main] TRACE Style - === before h6.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.h6=null; cfg-preferred names=[Heading 6]; doc-usable styles={}; all recognised names=[Heading 6] +2024-09-07 21:55:24,462 [main] INFO Style - Assigned from preferred names [full match]: Style.h6=Heading 6; cfg-preferred names=[Heading 6] +2024-09-07 21:55:24,462 [main] TRACE Style - === after +Style.h6=Heading 6; cfg-preferred names=[Heading 6]; doc-usable styles={Heading 6=Heading 6 (builtIn, id=-7: HEAD)}; all recognised names=[Heading 6] + +2024-09-07 21:55:24,463 [main] TRACE Style - === before h7.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.h7=null; cfg-preferred names=[Heading 7]; doc-usable styles={}; all recognised names=[Heading 7] +2024-09-07 21:55:24,463 [main] INFO Style - Assigned from preferred names [full match]: Style.h7=Heading 7; cfg-preferred names=[Heading 7] +2024-09-07 21:55:24,463 [main] TRACE Style - === after +Style.h7=Heading 7; cfg-preferred names=[Heading 7]; doc-usable styles={Heading 7=Heading 7 (builtIn, id=-8: HEAD)}; all recognised names=[Heading 7] + +2024-09-07 21:55:24,468 [main] TRACE Style - === before h8.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.h8=null; cfg-preferred names=[Heading 8]; doc-usable styles={}; all recognised names=[Heading 8] +2024-09-07 21:55:24,468 [main] INFO Style - Assigned from preferred names [full match]: Style.h8=Heading 8; cfg-preferred names=[Heading 8] +2024-09-07 21:55:24,468 [main] TRACE Style - === after +Style.h8=Heading 8; cfg-preferred names=[Heading 8]; doc-usable styles={Heading 8=Heading 8 (builtIn, id=-9: HEAD)}; all recognised names=[Heading 8] + +2024-09-07 21:55:24,468 [main] TRACE Style - === before h9.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.h9=null; cfg-preferred names=[Heading 9]; doc-usable styles={}; all recognised names=[Heading 9] +2024-09-07 21:55:24,468 [main] INFO Style - Assigned from preferred names [full match]: Style.h9=Heading 9; cfg-preferred names=[Heading 9] +2024-09-07 21:55:24,468 [main] TRACE Style - === after +Style.h9=Heading 9; cfg-preferred names=[Heading 9]; doc-usable styles={Heading 9=Heading 9 (builtIn, id=-10: HEAD)}; all recognised names=[Heading 9] + +2024-09-07 21:55:24,468 [main] INFO Util - +2024-09-07 21:55:24,469 [main] INFO Util - ------------------------------------------------ +2024-09-07 21:55:24,469 [main] INFO Util - collecting used existing figure/table caption ranges from template... +2024-09-07 21:55:31,049 [main] INFO DocWordWriter - found paragraph [Figure 1 – Example of a power system SCADA architecture extended with NSM Data Objects ] with caption style [FIGURE-title] +2024-09-07 21:55:32,127 [main] INFO DocWordWriter - found paragraph [Figure 2 – IDS Information exchange between applications: generic communication topology ] with caption style [FIGURE-title] +2024-09-07 21:55:32,440 [main] INFO DocWordWriter - found paragraph [Figure 3 – Active security monitoring architecture with NSM data objects ] with caption style [FIGURE-title] +2024-09-07 21:55:32,760 [main] INFO DocWordWriter - found paragraph [Figure 4 – Comparison of NSM data objects with IEC 61850 objects ] with caption style [FIGURE-title] +2024-09-07 21:55:32,782 [main] INFO DocWordWriter - found paragraph [Figure 5 – Management of both the power system infrastructure and the information infrastructure ] with caption style [FIGURE-title] +2024-09-07 21:55:33,572 [main] INFO DocWordWriter - found paragraph [Figure 6 – Abstract types ] with caption style [FIGURE-title] +2024-09-07 21:55:33,660 [main] INFO DocWordWriter - found paragraph [Figure 7 – Enumerated types ] with caption style [FIGURE-title] +2024-09-07 21:55:33,829 [main] INFO DocWordWriter - found paragraph [Figure 8 – Subagents ] with caption style [FIGURE-title] +2024-09-07 21:55:33,928 [main] INFO DocWordWriter - found paragraph [Figure 9 – Environmental agent ] with caption style [FIGURE-title] +2024-09-07 21:55:33,977 [main] INFO DocWordWriter - found paragraph [Figure 10 – Model stereotypes ] with caption style [FIGURE-title] +2024-09-07 21:55:34,254 [main] INFO DocWordWriter - found paragraph [Figure 11 – Object identifier structure ] with caption style [FIGURE-title] +2024-09-07 21:55:34,533 [main] INFO DocWordWriter - found paragraph [Figure 12 – SNMP table ] with caption style [FIGURE-title] +2024-09-07 21:55:34,647 [main] INFO DocWordWriter - found paragraph [Figure 13 – SNMP RFCs map and security ] with caption style [FIGURE-title] +2024-09-07 21:55:34,761 [main] INFO DocWordWriter - found paragraph [Figure 14 – SNMP Entity ] with caption style [FIGURE-title] +2024-09-07 21:55:35,440 [main] INFO DocWordWriter - found paragraph [Table B.1 – IEC 61850-7-4 objects mapping ] with caption style [TABLE-title] +2024-09-07 21:55:36,362 [main] INFO Util - time=[0:00:11.893] collected used figure/table caption ranges from template. +2024-09-07 21:55:36,362 [main] INFO Util - +2024-09-07 21:55:36,362 [main] INFO Util - +2024-09-07 21:55:36,362 [main] INFO Util - ------------------------------------------------ +2024-09-07 21:55:36,362 [main] INFO Util - scanning placeholders... +2024-09-07 21:55:36,949 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.Abstract Types.endUml' PACKAGE Abstract Types, figures (14 before ) +2024-09-07 21:55:37,028 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.EnumeratedTypes.endUml' PACKAGE EnumeratedTypes, figures (14 before ) +2024-09-07 21:55:37,107 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.Overview.endUml' PACKAGE Overview, figures (14 before ) +2024-09-07 21:55:37,183 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.Environmental Agent.endUml' PACKAGE Environmental Agent, figures (14 before ) +2024-09-07 21:55:37,257 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.IED Agent.endUml' PACKAGE IED Agent, figures (14 before ) +2024-09-07 21:55:37,328 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.Application Protocols Agents.endUml' PACKAGE Application Protocols Agents, figures (14 before ) +2024-09-07 21:55:37,405 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.Interfaces Agent.endUml' PACKAGE Interfaces Agent, figures (14 before ) +2024-09-07 21:55:37,477 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.Clocks Agent.endUml' PACKAGE Clocks Agent, figures (14 before ) +2024-09-07 21:55:37,487 [main] INFO AbstractWordWriter - 8 placeholders found. +2024-09-07 21:55:37,487 [main] INFO Util - time=[0:00:01.125] scanned placeholders. +2024-09-07 21:55:37,487 [main] INFO Util - +2024-09-07 21:55:37,487 [main] INFO Util - +2024-09-07 21:55:37,487 [main] INFO Util - ------------------------------------------------ +2024-09-07 21:55:37,487 [main] INFO Util - inserting documentation into placeholders +2024-09-07 21:55:37,494 [main] INFO AbstractWordWriter - replacing [99221 - 99258] PACKAGE Abstract Types, figures (14 before )... +2024-09-07 21:55:37,519 [main] INFO AbstractWordWriter - writing doc for package Abstract Types ... +2024-09-07 21:55:37,596 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML52' to Word document and to used list. +2024-09-07 21:55:37,644 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of Abstract Types::BooleanValue +2024-09-07 21:55:37,669 [main] DEBUG DocWordWriter - ... 25 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:55:37,679 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-07 21:55:37,734 [main] DEBUG DocWordWriter - ... 55 ms for fillValues() +2024-09-07 21:55:37,750 [main] DEBUG DocWordWriter - ... 16 ms for widths (table) +2024-09-07 21:55:37,822 [main] DEBUG DocWordWriter - ... 72 ms for widths (columns) +2024-09-07 21:55:37,842 [main] DEBUG DocWordWriter - ... 20 ms for shadding/merging/styling (rows) +2024-09-07 21:55:37,868 [main] DEBUG DocWordWriter - ... 26 ms for borders +2024-09-07 21:55:37,868 [main] DEBUG DocWordWriter - ... 134 ms for formatTable() +2024-09-07 21:55:37,875 [main] INFO DocWordWriter - ... 224 ms total for insertTable() +2024-09-07 21:55:37,908 [main] INFO DocWordWriter - ... 24 ms for insertCaption(): Table 1 – Attributes of Abstract Types::BooleanValue +2024-09-07 21:55:37,946 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of BooleanValue.', [99813 - 99850] +2024-09-07 21:55:37,955 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of BooleanValue.', [99813 - 99851] +2024-09-07 21:55:37,962 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [99813 - 99813] +2024-09-07 21:55:37,975 [main] INFO DocWordWriter - ... 37 ms for insertCaptionRef() +2024-09-07 21:55:37,975 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:55:38,004 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML54' to Word document and to used list. +2024-09-07 21:55:38,055 [main] INFO DocWordWriter - --- insertTable() 3 rows: Attributes of Abstract Types::BooleanValueTs +2024-09-07 21:55:38,075 [main] DEBUG DocWordWriter - ... 20 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:55:38,088 [main] DEBUG DocWordWriter - ... 13 ms for createTable() +2024-09-07 21:55:38,167 [main] DEBUG DocWordWriter - ... 79 ms for fillValues() +2024-09-07 21:55:38,182 [main] DEBUG DocWordWriter - ... 15 ms for widths (table) +2024-09-07 21:55:38,252 [main] DEBUG DocWordWriter - ... 70 ms for widths (columns) +2024-09-07 21:55:38,274 [main] DEBUG DocWordWriter - ... 22 ms for shadding/merging/styling (rows) +2024-09-07 21:55:38,302 [main] DEBUG DocWordWriter - ... 28 ms for borders +2024-09-07 21:55:38,302 [main] DEBUG DocWordWriter - ... 135 ms for formatTable() +2024-09-07 21:55:38,309 [main] INFO DocWordWriter - ... 247 ms total for insertTable() +2024-09-07 21:55:38,353 [main] INFO DocWordWriter - ... 35 ms for insertCaption(): Table 2 – Attributes of Abstract Types::BooleanValueTs +2024-09-07 21:55:38,388 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of BooleanValueTs.', [100241 - 100280] +2024-09-07 21:55:38,397 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of BooleanValueTs.', [100241 - 100281] +2024-09-07 21:55:38,403 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [100241 - 100241] +2024-09-07 21:55:38,414 [main] INFO DocWordWriter - ... 32 ms for insertCaptionRef() +2024-09-07 21:55:38,415 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:55:38,441 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML55' to Word document and to used list. +2024-09-07 21:55:38,489 [main] INFO DocWordWriter - --- insertTable() 3 rows: Attributes of Abstract Types::CounterTs +2024-09-07 21:55:38,515 [main] DEBUG DocWordWriter - ... 26 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:55:38,527 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-07 21:55:38,611 [main] DEBUG DocWordWriter - ... 84 ms for fillValues() +2024-09-07 21:55:38,628 [main] DEBUG DocWordWriter - ... 17 ms for widths (table) +2024-09-07 21:55:38,701 [main] DEBUG DocWordWriter - ... 73 ms for widths (columns) +2024-09-07 21:55:38,719 [main] DEBUG DocWordWriter - ... 18 ms for shadding/merging/styling (rows) +2024-09-07 21:55:38,741 [main] DEBUG DocWordWriter - ... 22 ms for borders +2024-09-07 21:55:38,741 [main] DEBUG DocWordWriter - ... 130 ms for formatTable() +2024-09-07 21:55:38,749 [main] INFO DocWordWriter - ... 252 ms total for insertTable() +2024-09-07 21:55:38,786 [main] INFO DocWordWriter - ... 31 ms for insertCaption(): Table 3 – Attributes of Abstract Types::CounterTs +2024-09-07 21:55:38,826 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of CounterTs.', [100827 - 100861] +2024-09-07 21:55:38,836 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of CounterTs.', [100827 - 100862] +2024-09-07 21:55:38,843 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [100827 - 100827] +2024-09-07 21:55:38,855 [main] INFO DocWordWriter - ... 36 ms for insertCaptionRef() +2024-09-07 21:55:38,855 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:55:38,883 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML67' to Word document and to used list. +2024-09-07 21:55:38,936 [main] INFO DocWordWriter - --- insertTable() 3 rows: Attributes of Abstract Types::CntRs +2024-09-07 21:55:38,957 [main] DEBUG DocWordWriter - ... 21 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:55:38,968 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 21:55:39,051 [main] DEBUG DocWordWriter - ... 83 ms for fillValues() +2024-09-07 21:55:39,066 [main] DEBUG DocWordWriter - ... 15 ms for widths (table) +2024-09-07 21:55:39,145 [main] DEBUG DocWordWriter - ... 79 ms for widths (columns) +2024-09-07 21:55:39,167 [main] DEBUG DocWordWriter - ... 22 ms for shadding/merging/styling (rows) +2024-09-07 21:55:39,190 [main] DEBUG DocWordWriter - ... 23 ms for borders +2024-09-07 21:55:39,190 [main] DEBUG DocWordWriter - ... 139 ms for formatTable() +2024-09-07 21:55:39,200 [main] INFO DocWordWriter - ... 254 ms total for insertTable() +2024-09-07 21:55:39,247 [main] INFO DocWordWriter - ... 39 ms for insertCaption(): Table 4 – Attributes of Abstract Types::CntRs +2024-09-07 21:55:39,286 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of CntRs.', [101399 - 101429] +2024-09-07 21:55:39,296 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of CntRs.', [101399 - 101430] +2024-09-07 21:55:39,303 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [101399 - 101399] +2024-09-07 21:55:39,318 [main] INFO DocWordWriter - ... 40 ms for insertCaptionRef() +2024-09-07 21:55:39,318 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:55:39,351 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML56' to Word document and to used list. +2024-09-07 21:55:39,405 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of Abstract Types::Floating +2024-09-07 21:55:39,432 [main] DEBUG DocWordWriter - ... 27 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:55:39,442 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-07 21:55:39,505 [main] DEBUG DocWordWriter - ... 63 ms for fillValues() +2024-09-07 21:55:39,521 [main] DEBUG DocWordWriter - ... 16 ms for widths (table) +2024-09-07 21:55:39,600 [main] DEBUG DocWordWriter - ... 79 ms for widths (columns) +2024-09-07 21:55:39,619 [main] DEBUG DocWordWriter - ... 19 ms for shadding/merging/styling (rows) +2024-09-07 21:55:39,642 [main] DEBUG DocWordWriter - ... 23 ms for borders +2024-09-07 21:55:39,642 [main] DEBUG DocWordWriter - ... 137 ms for formatTable() +2024-09-07 21:55:39,650 [main] INFO DocWordWriter - ... 237 ms total for insertTable() +2024-09-07 21:55:39,699 [main] INFO DocWordWriter - ... 42 ms for insertCaption(): Table 5 – Attributes of Abstract Types::Floating +2024-09-07 21:55:39,739 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Floating.', [101937 - 101970] +2024-09-07 21:55:39,748 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Floating.', [101937 - 101971] +2024-09-07 21:55:39,755 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [101937 - 101937] +2024-09-07 21:55:39,768 [main] INFO DocWordWriter - ... 37 ms for insertCaptionRef() +2024-09-07 21:55:39,768 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:55:39,797 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML57' to Word document and to used list. +2024-09-07 21:55:39,853 [main] INFO DocWordWriter - --- insertTable() 3 rows: Attributes of Abstract Types::FloatingTs +2024-09-07 21:55:39,876 [main] DEBUG DocWordWriter - ... 23 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:55:39,888 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-07 21:55:39,975 [main] DEBUG DocWordWriter - ... 87 ms for fillValues() +2024-09-07 21:55:39,990 [main] DEBUG DocWordWriter - ... 15 ms for widths (table) +2024-09-07 21:55:40,063 [main] DEBUG DocWordWriter - ... 73 ms for widths (columns) +2024-09-07 21:55:40,084 [main] DEBUG DocWordWriter - ... 21 ms for shadding/merging/styling (rows) +2024-09-07 21:55:40,115 [main] DEBUG DocWordWriter - ... 31 ms for borders +2024-09-07 21:55:40,115 [main] DEBUG DocWordWriter - ... 140 ms for formatTable() +2024-09-07 21:55:40,125 [main] INFO DocWordWriter - ... 262 ms total for insertTable() +2024-09-07 21:55:40,181 [main] INFO DocWordWriter - ... 49 ms for insertCaption(): Table 6 – Attributes of Abstract Types::FloatingTs +2024-09-07 21:55:40,222 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of FloatingTs.', [102373 - 102408] +2024-09-07 21:55:40,232 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of FloatingTs.', [102373 - 102409] +2024-09-07 21:55:40,240 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [102373 - 102373] +2024-09-07 21:55:40,258 [main] INFO DocWordWriter - ... 45 ms for insertCaptionRef() +2024-09-07 21:55:40,258 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:55:40,288 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML66' to Word document and to used list. +2024-09-07 21:55:40,352 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of Abstract Types::EntityIndex +2024-09-07 21:55:40,380 [main] DEBUG DocWordWriter - ... 28 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:55:40,394 [main] DEBUG DocWordWriter - ... 14 ms for createTable() +2024-09-07 21:55:40,459 [main] DEBUG DocWordWriter - ... 65 ms for fillValues() +2024-09-07 21:55:40,476 [main] DEBUG DocWordWriter - ... 17 ms for widths (table) +2024-09-07 21:55:40,547 [main] DEBUG DocWordWriter - ... 71 ms for widths (columns) +2024-09-07 21:55:40,567 [main] DEBUG DocWordWriter - ... 20 ms for shadding/merging/styling (rows) +2024-09-07 21:55:40,591 [main] DEBUG DocWordWriter - ... 24 ms for borders +2024-09-07 21:55:40,591 [main] DEBUG DocWordWriter - ... 132 ms for formatTable() +2024-09-07 21:55:40,601 [main] INFO DocWordWriter - ... 239 ms total for insertTable() +2024-09-07 21:55:40,657 [main] INFO DocWordWriter - ... 49 ms for insertCaption(): Table 7 – Attributes of Abstract Types::EntityIndex +2024-09-07 21:55:40,698 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of EntityIndex.', [102981 - 103017] +2024-09-07 21:55:40,708 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of EntityIndex.', [102981 - 103018] +2024-09-07 21:55:40,715 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [102981 - 102981] +2024-09-07 21:55:40,727 [main] INFO DocWordWriter - ... 38 ms for insertCaptionRef() +2024-09-07 21:55:40,727 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:55:40,760 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML53' to Word document and to used list. +2024-09-07 21:55:40,819 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of Abstract Types::Integer +2024-09-07 21:55:40,844 [main] DEBUG DocWordWriter - ... 25 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:55:40,860 [main] DEBUG DocWordWriter - ... 16 ms for createTable() +2024-09-07 21:55:40,933 [main] DEBUG DocWordWriter - ... 73 ms for fillValues() +2024-09-07 21:55:40,949 [main] DEBUG DocWordWriter - ... 16 ms for widths (table) +2024-09-07 21:55:41,019 [main] DEBUG DocWordWriter - ... 70 ms for widths (columns) +2024-09-07 21:55:41,041 [main] DEBUG DocWordWriter - ... 22 ms for shadding/merging/styling (rows) +2024-09-07 21:55:41,064 [main] DEBUG DocWordWriter - ... 23 ms for borders +2024-09-07 21:55:41,064 [main] DEBUG DocWordWriter - ... 131 ms for formatTable() +2024-09-07 21:55:41,080 [main] INFO DocWordWriter - ... 245 ms total for insertTable() +2024-09-07 21:55:41,150 [main] INFO DocWordWriter - ... 62 ms for insertCaption(): Table 8 – Attributes of Abstract Types::Integer +2024-09-07 21:55:41,191 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Integer.', [103312 - 103344] +2024-09-07 21:55:41,200 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Integer.', [103312 - 103345] +2024-09-07 21:55:41,207 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [103312 - 103312] +2024-09-07 21:55:41,224 [main] INFO DocWordWriter - ... 42 ms for insertCaptionRef() +2024-09-07 21:55:41,224 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:55:41,258 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML58' to Word document and to used list. +2024-09-07 21:55:41,329 [main] INFO DocWordWriter - --- insertTable() 3 rows: Attributes of Abstract Types::IntegerTs +2024-09-07 21:55:41,355 [main] DEBUG DocWordWriter - ... 26 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:55:41,366 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 21:55:41,460 [main] DEBUG DocWordWriter - ... 94 ms for fillValues() +2024-09-07 21:55:41,479 [main] DEBUG DocWordWriter - ... 19 ms for widths (table) +2024-09-07 21:55:41,563 [main] DEBUG DocWordWriter - ... 84 ms for widths (columns) +2024-09-07 21:55:41,586 [main] DEBUG DocWordWriter - ... 23 ms for shadding/merging/styling (rows) +2024-09-07 21:55:41,611 [main] DEBUG DocWordWriter - ... 25 ms for borders +2024-09-07 21:55:41,611 [main] DEBUG DocWordWriter - ... 151 ms for formatTable() +2024-09-07 21:55:41,619 [main] INFO DocWordWriter - ... 282 ms total for insertTable() +2024-09-07 21:55:41,691 [main] INFO DocWordWriter - ... 64 ms for insertCaption(): Table 9 – Attributes of Abstract Types::IntegerTs +2024-09-07 21:55:41,728 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of IntegerTs.', [103754 - 103788] +2024-09-07 21:55:41,737 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of IntegerTs.', [103754 - 103789] +2024-09-07 21:55:41,744 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [103754 - 103754] +2024-09-07 21:55:41,759 [main] INFO DocWordWriter - ... 40 ms for insertCaptionRef() +2024-09-07 21:55:41,759 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:55:41,793 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML65' to Word document and to used list. +2024-09-07 21:55:41,857 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of Abstract Types::InetAddress +2024-09-07 21:55:41,881 [main] DEBUG DocWordWriter - ... 24 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:55:41,892 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 21:55:41,958 [main] DEBUG DocWordWriter - ... 66 ms for fillValues() +2024-09-07 21:55:41,974 [main] DEBUG DocWordWriter - ... 16 ms for widths (table) +2024-09-07 21:55:42,044 [main] DEBUG DocWordWriter - ... 70 ms for widths (columns) +2024-09-07 21:55:42,066 [main] DEBUG DocWordWriter - ... 22 ms for shadding/merging/styling (rows) +2024-09-07 21:55:42,091 [main] DEBUG DocWordWriter - ... 25 ms for borders +2024-09-07 21:55:42,091 [main] DEBUG DocWordWriter - ... 133 ms for formatTable() +2024-09-07 21:55:42,099 [main] INFO DocWordWriter - ... 234 ms total for insertTable() +2024-09-07 21:55:42,178 [main] INFO DocWordWriter - ... 71 ms for insertCaption(): Table 10 – Attributes of Abstract Types::InetAddress +2024-09-07 21:55:42,222 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of InetAddress.', [104943 - 104979] +2024-09-07 21:55:42,232 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of InetAddress.', [104943 - 104980] +2024-09-07 21:55:42,239 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [104943 - 104943] +2024-09-07 21:55:42,252 [main] INFO DocWordWriter - ... 40 ms for insertCaptionRef() +2024-09-07 21:55:42,253 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:55:42,285 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML64' to Word document and to used list. +2024-09-07 21:55:42,348 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of Abstract Types::InetAddressType +2024-09-07 21:55:42,374 [main] DEBUG DocWordWriter - ... 26 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:55:42,385 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 21:55:42,457 [main] DEBUG DocWordWriter - ... 72 ms for fillValues() +2024-09-07 21:55:42,473 [main] DEBUG DocWordWriter - ... 16 ms for widths (table) +2024-09-07 21:55:42,549 [main] DEBUG DocWordWriter - ... 76 ms for widths (columns) +2024-09-07 21:55:42,572 [main] DEBUG DocWordWriter - ... 23 ms for shadding/merging/styling (rows) +2024-09-07 21:55:42,595 [main] DEBUG DocWordWriter - ... 23 ms for borders +2024-09-07 21:55:42,595 [main] DEBUG DocWordWriter - ... 138 ms for formatTable() +2024-09-07 21:55:42,604 [main] INFO DocWordWriter - ... 247 ms total for insertTable() +2024-09-07 21:55:42,688 [main] INFO DocWordWriter - ... 77 ms for insertCaption(): Table 11 – Attributes of Abstract Types::InetAddressType +2024-09-07 21:55:42,728 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of InetAddressType.', [105363 - 105403] +2024-09-07 21:55:42,738 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of InetAddressType.', [105363 - 105404] +2024-09-07 21:55:42,746 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [105363 - 105363] +2024-09-07 21:55:42,759 [main] INFO DocWordWriter - ... 40 ms for insertCaptionRef() +2024-09-07 21:55:42,760 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:55:42,792 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML63' to Word document and to used list. +2024-09-07 21:55:42,857 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of Abstract Types::MacAddress +2024-09-07 21:55:42,883 [main] DEBUG DocWordWriter - ... 26 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:55:42,894 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 21:55:42,966 [main] DEBUG DocWordWriter - ... 72 ms for fillValues() +2024-09-07 21:55:42,983 [main] DEBUG DocWordWriter - ... 17 ms for widths (table) +2024-09-07 21:55:43,054 [main] DEBUG DocWordWriter - ... 71 ms for widths (columns) +2024-09-07 21:55:43,075 [main] DEBUG DocWordWriter - ... 21 ms for shadding/merging/styling (rows) +2024-09-07 21:55:43,098 [main] DEBUG DocWordWriter - ... 23 ms for borders +2024-09-07 21:55:43,098 [main] DEBUG DocWordWriter - ... 132 ms for formatTable() +2024-09-07 21:55:43,108 [main] INFO DocWordWriter - ... 241 ms total for insertTable() +2024-09-07 21:55:43,193 [main] INFO DocWordWriter - ... 79 ms for insertCaption(): Table 12 – Attributes of Abstract Types::MacAddress +2024-09-07 21:55:43,234 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of MacAddress.', [105938 - 105973] +2024-09-07 21:55:43,244 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of MacAddress.', [105938 - 105974] +2024-09-07 21:55:43,251 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [105938 - 105938] +2024-09-07 21:55:43,266 [main] INFO DocWordWriter - ... 41 ms for insertCaptionRef() +2024-09-07 21:55:43,266 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:55:43,299 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML62' to Word document and to used list. +2024-09-07 21:55:43,361 [main] INFO DocWordWriter - closing MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 21:55:45,042 [main] INFO DocWordWriter - opening MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 21:55:45,867 [main] INFO OptimOptions - setting view to normal +2024-09-07 21:55:45,916 [main] INFO OptimOptions - disabling pagination +2024-09-07 21:55:45,959 [main] INFO OptimOptions - disabling field update +2024-09-07 21:55:46,163 [main] INFO OptimOptions - disabling screen updating +2024-09-07 21:55:46,182 [main] DEBUG DocWordWriter - current(_optimisedOptions): OptimOptions [viewId=1, normView=true, paginate=false, updFld=false, updScr=false, fastSave=false, spelling=false, grammar=false] +2024-09-07 21:55:46,257 [main] INFO Util - time=[0:00:02.925] closed and reopened document. +2024-09-07 21:55:46,257 [main] INFO Util - +2024-09-07 21:55:46,322 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of Abstract Types::Selector +2024-09-07 21:55:46,352 [main] DEBUG DocWordWriter - ... 30 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:55:46,360 [main] DEBUG DocWordWriter - ... 8 ms for createTable() +2024-09-07 21:55:46,422 [main] DEBUG DocWordWriter - ... 62 ms for fillValues() +2024-09-07 21:55:46,440 [main] DEBUG DocWordWriter - ... 18 ms for widths (table) +2024-09-07 21:55:46,556 [main] DEBUG DocWordWriter - ... 116 ms for widths (columns) +2024-09-07 21:55:46,579 [main] DEBUG DocWordWriter - ... 23 ms for shadding/merging/styling (rows) +2024-09-07 21:55:46,601 [main] DEBUG DocWordWriter - ... 22 ms for borders +2024-09-07 21:55:46,601 [main] DEBUG DocWordWriter - ... 179 ms for formatTable() +2024-09-07 21:55:46,610 [main] INFO DocWordWriter - ... 279 ms total for insertTable() +2024-09-07 21:55:46,629 [main] INFO DocWordWriter - ... 12 ms for insertCaption(): Table 13 – Attributes of Abstract Types::Selector +2024-09-07 21:55:46,664 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Selector.', [106465 - 106498] +2024-09-07 21:55:46,672 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Selector.', [106465 - 106499] +2024-09-07 21:55:46,679 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [106465 - 106465] +2024-09-07 21:55:46,687 [main] INFO DocWordWriter - ... 31 ms for insertCaptionRef() +2024-09-07 21:55:46,687 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:55:46,716 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML61' to Word document and to used list. +2024-09-07 21:55:46,771 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of Abstract Types::Timestamp +2024-09-07 21:55:46,793 [main] DEBUG DocWordWriter - ... 22 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:55:46,800 [main] DEBUG DocWordWriter - ... 7 ms for createTable() +2024-09-07 21:55:46,859 [main] DEBUG DocWordWriter - ... 59 ms for fillValues() +2024-09-07 21:55:46,876 [main] DEBUG DocWordWriter - ... 17 ms for widths (table) +2024-09-07 21:55:46,943 [main] DEBUG DocWordWriter - ... 67 ms for widths (columns) +2024-09-07 21:55:46,964 [main] DEBUG DocWordWriter - ... 21 ms for shadding/merging/styling (rows) +2024-09-07 21:55:46,987 [main] DEBUG DocWordWriter - ... 23 ms for borders +2024-09-07 21:55:46,987 [main] DEBUG DocWordWriter - ... 128 ms for formatTable() +2024-09-07 21:55:46,996 [main] INFO DocWordWriter - ... 216 ms total for insertTable() +2024-09-07 21:55:47,018 [main] INFO DocWordWriter - ... 15 ms for insertCaption(): Table 14 – Attributes of Abstract Types::Timestamp +2024-09-07 21:55:47,057 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Timestamp.', [106832 - 106866] +2024-09-07 21:55:47,065 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Timestamp.', [106832 - 106867] +2024-09-07 21:55:47,072 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [106832 - 106832] +2024-09-07 21:55:47,079 [main] INFO DocWordWriter - ... 32 ms for insertCaptionRef() +2024-09-07 21:55:47,079 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:55:47,109 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML59' to Word document and to used list. +2024-09-07 21:55:47,165 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of Abstract Types::CharString +2024-09-07 21:55:47,187 [main] DEBUG DocWordWriter - ... 22 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:55:47,195 [main] DEBUG DocWordWriter - ... 8 ms for createTable() +2024-09-07 21:55:47,253 [main] DEBUG DocWordWriter - ... 58 ms for fillValues() +2024-09-07 21:55:47,274 [main] DEBUG DocWordWriter - ... 21 ms for widths (table) +2024-09-07 21:55:47,352 [main] DEBUG DocWordWriter - ... 78 ms for widths (columns) +2024-09-07 21:55:47,372 [main] DEBUG DocWordWriter - ... 20 ms for shadding/merging/styling (rows) +2024-09-07 21:55:47,396 [main] DEBUG DocWordWriter - ... 24 ms for borders +2024-09-07 21:55:47,396 [main] DEBUG DocWordWriter - ... 143 ms for formatTable() +2024-09-07 21:55:47,406 [main] INFO DocWordWriter - ... 231 ms total for insertTable() +2024-09-07 21:55:47,434 [main] INFO DocWordWriter - ... 19 ms for insertCaption(): Table 15 – Attributes of Abstract Types::CharString +2024-09-07 21:55:47,478 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of CharString.', [107266 - 107301] +2024-09-07 21:55:47,486 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of CharString.', [107266 - 107302] +2024-09-07 21:55:47,492 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [107266 - 107266] +2024-09-07 21:55:47,500 [main] INFO DocWordWriter - ... 31 ms for insertCaptionRef() +2024-09-07 21:55:47,500 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:55:47,534 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML60' to Word document and to used list. +2024-09-07 21:55:47,588 [main] INFO DocWordWriter - --- insertTable() 3 rows: Attributes of Abstract Types::CharStringTs +2024-09-07 21:55:47,611 [main] DEBUG DocWordWriter - ... 23 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:55:47,618 [main] DEBUG DocWordWriter - ... 7 ms for createTable() +2024-09-07 21:55:47,701 [main] DEBUG DocWordWriter - ... 83 ms for fillValues() +2024-09-07 21:55:47,719 [main] DEBUG DocWordWriter - ... 18 ms for widths (table) +2024-09-07 21:55:47,794 [main] DEBUG DocWordWriter - ... 75 ms for widths (columns) +2024-09-07 21:55:47,815 [main] DEBUG DocWordWriter - ... 21 ms for shadding/merging/styling (rows) +2024-09-07 21:55:47,842 [main] DEBUG DocWordWriter - ... 27 ms for borders +2024-09-07 21:55:47,842 [main] DEBUG DocWordWriter - ... 141 ms for formatTable() +2024-09-07 21:55:47,851 [main] INFO DocWordWriter - ... 254 ms total for insertTable() +2024-09-07 21:55:47,877 [main] INFO DocWordWriter - ... 19 ms for insertCaption(): Table 16 – Attributes of Abstract Types::CharStringTs +2024-09-07 21:55:47,921 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of CharStringTs.', [107670 - 107707] +2024-09-07 21:55:47,930 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of CharStringTs.', [107670 - 107708] +2024-09-07 21:55:47,937 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [107670 - 107670] +2024-09-07 21:55:47,945 [main] INFO DocWordWriter - ... 33 ms for insertCaptionRef() +2024-09-07 21:55:47,945 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:55:47,986 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML39' to Word document and to used list. +2024-09-07 21:55:48,050 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML40' to Word document and to used list. +2024-09-07 21:55:48,084 [main] INFO Util - time=[0:00:10.596] replaced [108232 - 108292] PACKAGE Abstract Types, figures (14 before ), tables (16 mine)... +2024-09-07 21:55:48,084 [main] INFO Util - +2024-09-07 21:55:48,089 [main] INFO AbstractWordWriter - replacing [108330 - 108368] PACKAGE EnumeratedTypes, figures (14 before ), tables (16 before )... +2024-09-07 21:55:48,112 [main] INFO AbstractWordWriter - writing doc for package EnumeratedTypes ... +2024-09-07 21:55:48,185 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML41' to Word document and to used list. +2024-09-07 21:55:48,240 [main] INFO DocWordWriter - --- insertTable() 4 rows: Literals of EnumeratedTypes::AppDatStKind +2024-09-07 21:55:48,261 [main] DEBUG DocWordWriter - ... 21 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:55:48,269 [main] DEBUG DocWordWriter - ... 8 ms for createTable() +2024-09-07 21:55:48,310 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML150' to Word document and to used list. +2024-09-07 21:55:48,348 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML151' to Word document and to used list. +2024-09-07 21:55:48,374 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML152' to Word document and to used list. +2024-09-07 21:55:48,387 [main] DEBUG DocWordWriter - ... 118 ms for fillValues() +2024-09-07 21:55:48,404 [main] DEBUG DocWordWriter - ... 17 ms for widths (table) +2024-09-07 21:55:48,461 [main] DEBUG DocWordWriter - ... 57 ms for widths (columns) +2024-09-07 21:55:48,483 [main] DEBUG DocWordWriter - ... 22 ms for shadding/merging/styling (rows) +2024-09-07 21:55:48,509 [main] DEBUG DocWordWriter - ... 26 ms for borders +2024-09-07 21:55:48,509 [main] DEBUG DocWordWriter - ... 122 ms for formatTable() +2024-09-07 21:55:48,518 [main] INFO DocWordWriter - ... 269 ms total for insertTable() +2024-09-07 21:55:48,548 [main] INFO DocWordWriter - ... 23 ms for insertCaption(): Table 17 – Literals of EnumeratedTypes::AppDatStKind +2024-09-07 21:55:48,590 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all literals of AppDatStKind.', [108948 - 108983] +2024-09-07 21:55:48,600 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all literals of AppDatStKind.', [108948 - 108984] +2024-09-07 21:55:48,607 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [108948 - 108948] +2024-09-07 21:55:48,616 [main] INFO DocWordWriter - ... 35 ms for insertCaptionRef() +2024-09-07 21:55:48,616 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:55:48,646 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML42' to Word document and to used list. +2024-09-07 21:55:48,705 [main] INFO DocWordWriter - --- insertTable() 4 rows: Literals of EnumeratedTypes::PhyHealthKind +2024-09-07 21:55:48,729 [main] DEBUG DocWordWriter - ... 24 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:55:48,738 [main] DEBUG DocWordWriter - ... 9 ms for createTable() +2024-09-07 21:55:48,783 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML153' to Word document and to used list. +2024-09-07 21:55:48,808 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML154' to Word document and to used list. +2024-09-07 21:55:48,835 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML155' to Word document and to used list. +2024-09-07 21:55:48,850 [main] DEBUG DocWordWriter - ... 112 ms for fillValues() +2024-09-07 21:55:48,871 [main] DEBUG DocWordWriter - ... 21 ms for widths (table) +2024-09-07 21:55:48,938 [main] DEBUG DocWordWriter - ... 67 ms for widths (columns) +2024-09-07 21:55:48,959 [main] DEBUG DocWordWriter - ... 21 ms for shadding/merging/styling (rows) +2024-09-07 21:55:48,983 [main] DEBUG DocWordWriter - ... 24 ms for borders +2024-09-07 21:55:48,983 [main] DEBUG DocWordWriter - ... 133 ms for formatTable() +2024-09-07 21:55:48,992 [main] INFO DocWordWriter - ... 278 ms total for insertTable() +2024-09-07 21:55:49,033 [main] INFO DocWordWriter - ... 32 ms for insertCaption(): Table 18 – Literals of EnumeratedTypes::PhyHealthKind +2024-09-07 21:55:49,083 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all literals of PhyHealthKind.', [109347 - 109383] +2024-09-07 21:55:49,095 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all literals of PhyHealthKind.', [109347 - 109384] +2024-09-07 21:55:49,102 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [109347 - 109347] +2024-09-07 21:55:49,112 [main] INFO DocWordWriter - ... 38 ms for insertCaptionRef() +2024-09-07 21:55:49,112 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:55:49,148 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML43' to Word document and to used list. +2024-09-07 21:55:49,219 [main] INFO DocWordWriter - --- insertTable() 4 rows: Literals of EnumeratedTypes::ExtKind +2024-09-07 21:55:49,245 [main] DEBUG DocWordWriter - ... 26 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:55:49,255 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-07 21:55:49,302 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML156' to Word document and to used list. +2024-09-07 21:55:49,330 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML157' to Word document and to used list. +2024-09-07 21:55:49,358 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML158' to Word document and to used list. +2024-09-07 21:55:49,372 [main] DEBUG DocWordWriter - ... 117 ms for fillValues() +2024-09-07 21:55:49,392 [main] DEBUG DocWordWriter - ... 20 ms for widths (table) +2024-09-07 21:55:49,463 [main] DEBUG DocWordWriter - ... 71 ms for widths (columns) +2024-09-07 21:55:49,489 [main] DEBUG DocWordWriter - ... 26 ms for shadding/merging/styling (rows) +2024-09-07 21:55:49,522 [main] DEBUG DocWordWriter - ... 33 ms for borders +2024-09-07 21:55:49,522 [main] DEBUG DocWordWriter - ... 150 ms for formatTable() +2024-09-07 21:55:49,533 [main] INFO DocWordWriter - ... 303 ms total for insertTable() +2024-09-07 21:55:49,579 [main] INFO DocWordWriter - ... 37 ms for insertCaption(): Table 19 – Literals of EnumeratedTypes::ExtKind +2024-09-07 21:55:49,625 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all literals of ExtKind.', [109744 - 109774] +2024-09-07 21:55:49,633 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all literals of ExtKind.', [109744 - 109775] +2024-09-07 21:55:49,640 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [109744 - 109744] +2024-09-07 21:55:49,648 [main] INFO DocWordWriter - ... 32 ms for insertCaptionRef() +2024-09-07 21:55:49,648 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:55:49,678 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML44' to Word document and to used list. +2024-09-07 21:55:49,739 [main] INFO DocWordWriter - --- insertTable() 3 rows: Literals of EnumeratedTypes::IntKind +2024-09-07 21:55:49,761 [main] DEBUG DocWordWriter - ... 21 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:55:49,769 [main] DEBUG DocWordWriter - ... 9 ms for createTable() +2024-09-07 21:55:49,808 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML159' to Word document and to used list. +2024-09-07 21:55:49,831 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML160' to Word document and to used list. +2024-09-07 21:55:49,843 [main] DEBUG DocWordWriter - ... 74 ms for fillValues() +2024-09-07 21:55:49,859 [main] DEBUG DocWordWriter - ... 16 ms for widths (table) +2024-09-07 21:55:49,912 [main] DEBUG DocWordWriter - ... 53 ms for widths (columns) +2024-09-07 21:55:49,932 [main] DEBUG DocWordWriter - ... 20 ms for shadding/merging/styling (rows) +2024-09-07 21:55:49,960 [main] DEBUG DocWordWriter - ... 28 ms for borders +2024-09-07 21:55:49,960 [main] DEBUG DocWordWriter - ... 117 ms for formatTable() +2024-09-07 21:55:49,969 [main] INFO DocWordWriter - ... 221 ms total for insertTable() +2024-09-07 21:55:50,004 [main] INFO DocWordWriter - ... 29 ms for insertCaption(): Table 20 – Literals of EnumeratedTypes::IntKind +2024-09-07 21:55:50,044 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all literals of IntKind.', [110077 - 110107] +2024-09-07 21:55:50,053 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all literals of IntKind.', [110077 - 110108] +2024-09-07 21:55:50,060 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [110077 - 110077] +2024-09-07 21:55:50,068 [main] INFO DocWordWriter - ... 33 ms for insertCaptionRef() +2024-09-07 21:55:50,068 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:55:50,100 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML45' to Word document and to used list. +2024-09-07 21:55:50,157 [main] INFO DocWordWriter - --- insertTable() 6 rows: Literals of EnumeratedTypes::LnkKind +2024-09-07 21:55:50,181 [main] DEBUG DocWordWriter - ... 24 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:55:50,190 [main] DEBUG DocWordWriter - ... 9 ms for createTable() +2024-09-07 21:55:50,229 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML161' to Word document and to used list. +2024-09-07 21:55:50,252 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML162' to Word document and to used list. +2024-09-07 21:55:50,275 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML163' to Word document and to used list. +2024-09-07 21:55:50,304 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML164' to Word document and to used list. +2024-09-07 21:55:50,330 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML165' to Word document and to used list. +2024-09-07 21:55:50,344 [main] DEBUG DocWordWriter - ... 154 ms for fillValues() +2024-09-07 21:55:50,363 [main] DEBUG DocWordWriter - ... 19 ms for widths (table) +2024-09-07 21:55:50,424 [main] DEBUG DocWordWriter - ... 61 ms for widths (columns) +2024-09-07 21:55:50,445 [main] DEBUG DocWordWriter - ... 21 ms for shadding/merging/styling (rows) +2024-09-07 21:55:50,478 [main] DEBUG DocWordWriter - ... 33 ms for borders +2024-09-07 21:55:50,478 [main] DEBUG DocWordWriter - ... 134 ms for formatTable() +2024-09-07 21:55:50,487 [main] INFO DocWordWriter - ... 321 ms total for insertTable() +2024-09-07 21:55:50,530 [main] INFO DocWordWriter - ... 35 ms for insertCaption(): Table 21 – Literals of EnumeratedTypes::LnkKind +2024-09-07 21:55:50,571 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all literals of LnkKind.', [110357 - 110387] +2024-09-07 21:55:50,579 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all literals of LnkKind.', [110357 - 110388] +2024-09-07 21:55:50,587 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [110357 - 110357] +2024-09-07 21:55:50,596 [main] INFO DocWordWriter - ... 35 ms for insertCaptionRef() +2024-09-07 21:55:50,596 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:55:50,626 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML46' to Word document and to used list. +2024-09-07 21:55:50,684 [main] INFO DocWordWriter - --- insertTable() 3 rows: Literals of EnumeratedTypes::PSPAccKind +2024-09-07 21:55:50,707 [main] DEBUG DocWordWriter - ... 23 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:55:50,715 [main] DEBUG DocWordWriter - ... 8 ms for createTable() +2024-09-07 21:55:50,756 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML166' to Word document and to used list. +2024-09-07 21:55:50,780 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML167' to Word document and to used list. +2024-09-07 21:55:50,793 [main] DEBUG DocWordWriter - ... 78 ms for fillValues() +2024-09-07 21:55:50,809 [main] DEBUG DocWordWriter - ... 16 ms for widths (table) +2024-09-07 21:55:50,873 [main] DEBUG DocWordWriter - ... 64 ms for widths (columns) +2024-09-07 21:55:50,894 [main] DEBUG DocWordWriter - ... 21 ms for shadding/merging/styling (rows) +2024-09-07 21:55:50,921 [main] DEBUG DocWordWriter - ... 27 ms for borders +2024-09-07 21:55:50,921 [main] DEBUG DocWordWriter - ... 128 ms for formatTable() +2024-09-07 21:55:50,930 [main] INFO DocWordWriter - ... 237 ms total for insertTable() +2024-09-07 21:55:50,972 [main] INFO DocWordWriter - ... 34 ms for insertCaption(): Table 22 – Literals of EnumeratedTypes::PSPAccKind +2024-09-07 21:55:51,016 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all literals of PSPAccKind.', [110743 - 110776] +2024-09-07 21:55:51,025 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all literals of PSPAccKind.', [110743 - 110777] +2024-09-07 21:55:51,032 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [110743 - 110743] +2024-09-07 21:55:51,041 [main] INFO DocWordWriter - ... 36 ms for insertCaptionRef() +2024-09-07 21:55:51,041 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:55:51,074 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML47' to Word document and to used list. +2024-09-07 21:55:51,136 [main] INFO DocWordWriter - --- insertTable() 8 rows: Literals of EnumeratedTypes::ProtIdKind +2024-09-07 21:55:51,160 [main] DEBUG DocWordWriter - ... 24 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:55:51,171 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 21:55:51,220 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML168' to Word document and to used list. +2024-09-07 21:55:51,244 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML169' to Word document and to used list. +2024-09-07 21:55:51,268 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML170' to Word document and to used list. +2024-09-07 21:55:51,292 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML171' to Word document and to used list. +2024-09-07 21:55:51,317 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML172' to Word document and to used list. +2024-09-07 21:55:51,341 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML173' to Word document and to used list. +2024-09-07 21:55:51,367 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML174' to Word document and to used list. +2024-09-07 21:55:51,380 [main] DEBUG DocWordWriter - ... 209 ms for fillValues() +2024-09-07 21:55:51,400 [main] DEBUG DocWordWriter - ... 19 ms for widths (table) +2024-09-07 21:55:51,474 [main] DEBUG DocWordWriter - ... 74 ms for widths (columns) +2024-09-07 21:55:51,500 [main] DEBUG DocWordWriter - ... 26 ms for shadding/merging/styling (rows) +2024-09-07 21:55:51,535 [main] DEBUG DocWordWriter - ... 35 ms for borders +2024-09-07 21:55:51,535 [main] DEBUG DocWordWriter - ... 155 ms for formatTable() +2024-09-07 21:55:51,544 [main] INFO DocWordWriter - ... 399 ms total for insertTable() +2024-09-07 21:55:51,596 [main] INFO DocWordWriter - ... 44 ms for insertCaption(): Table 23 – Literals of EnumeratedTypes::ProtIdKind +2024-09-07 21:55:51,642 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all literals of ProtIdKind.', [111140 - 111173] +2024-09-07 21:55:51,652 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all literals of ProtIdKind.', [111140 - 111174] +2024-09-07 21:55:51,658 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [111140 - 111140] +2024-09-07 21:55:51,667 [main] INFO DocWordWriter - ... 33 ms for insertCaptionRef() +2024-09-07 21:55:51,667 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:55:51,731 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML48' to Word document and to used list. +2024-09-07 21:55:51,798 [main] INFO DocWordWriter - --- insertTable() 12 rows: Literals of EnumeratedTypes::EventKind +2024-09-07 21:55:51,821 [main] DEBUG DocWordWriter - ... 23 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:55:51,833 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-07 21:55:51,873 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML175' to Word document and to used list. +2024-09-07 21:55:51,895 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML176' to Word document and to used list. +2024-09-07 21:55:51,921 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML177' to Word document and to used list. +2024-09-07 21:55:51,945 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML178' to Word document and to used list. +2024-09-07 21:55:51,968 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML179' to Word document and to used list. +2024-09-07 21:55:51,992 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML180' to Word document and to used list. +2024-09-07 21:55:52,015 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML181' to Word document and to used list. +2024-09-07 21:55:52,037 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML182' to Word document and to used list. +2024-09-07 21:55:52,062 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML183' to Word document and to used list. +2024-09-07 21:55:52,087 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML184' to Word document and to used list. +2024-09-07 21:55:52,113 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML185' to Word document and to used list. +2024-09-07 21:55:52,126 [main] DEBUG DocWordWriter - ... 293 ms for fillValues() +2024-09-07 21:55:52,147 [main] DEBUG DocWordWriter - ... 21 ms for widths (table) +2024-09-07 21:55:52,233 [main] DEBUG DocWordWriter - ... 86 ms for widths (columns) +2024-09-07 21:55:52,256 [main] DEBUG DocWordWriter - ... 23 ms for shadding/merging/styling (rows) +2024-09-07 21:55:52,299 [main] DEBUG DocWordWriter - ... 43 ms for borders +2024-09-07 21:55:52,299 [main] DEBUG DocWordWriter - ... 173 ms for formatTable() +2024-09-07 21:55:52,310 [main] INFO DocWordWriter - ... 501 ms total for insertTable() +2024-09-07 21:55:52,364 [main] INFO DocWordWriter - ... 47 ms for insertCaption(): Table 24 – Literals of EnumeratedTypes::EventKind +2024-09-07 21:55:52,407 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all literals of EventKind.', [111868 - 111900] +2024-09-07 21:55:52,418 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all literals of EventKind.', [111868 - 111901] +2024-09-07 21:55:52,425 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [111868 - 111868] +2024-09-07 21:55:52,434 [main] INFO DocWordWriter - ... 36 ms for insertCaptionRef() +2024-09-07 21:55:52,434 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:55:52,469 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML49' to Word document and to used list. +2024-09-07 21:55:52,526 [main] INFO DocWordWriter - closing MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 21:55:53,862 [main] INFO DocWordWriter - opening MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 21:55:54,898 [main] INFO OptimOptions - setting view to normal +2024-09-07 21:55:55,011 [main] INFO OptimOptions - disabling pagination +2024-09-07 21:55:55,048 [main] INFO OptimOptions - disabling field update +2024-09-07 21:55:55,184 [main] INFO OptimOptions - disabling screen updating +2024-09-07 21:55:55,192 [main] DEBUG DocWordWriter - current(_optimisedOptions): OptimOptions [viewId=1, normView=true, paginate=false, updFld=false, updScr=false, fastSave=false, spelling=false, grammar=false] +2024-09-07 21:55:55,246 [main] INFO Util - time=[0:00:02.747] closed and reopened document. +2024-09-07 21:55:55,246 [main] INFO Util - +2024-09-07 21:55:55,303 [main] INFO DocWordWriter - --- insertTable() 5 rows: Literals of EnumeratedTypes::TimSyncIssueKind +2024-09-07 21:55:55,329 [main] DEBUG DocWordWriter - ... 26 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:55:55,338 [main] DEBUG DocWordWriter - ... 9 ms for createTable() +2024-09-07 21:55:55,378 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML186' to Word document and to used list. +2024-09-07 21:55:55,416 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML187' to Word document and to used list. +2024-09-07 21:55:55,440 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML188' to Word document and to used list. +2024-09-07 21:55:55,463 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML189' to Word document and to used list. +2024-09-07 21:55:55,476 [main] DEBUG DocWordWriter - ... 138 ms for fillValues() +2024-09-07 21:55:55,495 [main] DEBUG DocWordWriter - ... 19 ms for widths (table) +2024-09-07 21:55:55,555 [main] DEBUG DocWordWriter - ... 60 ms for widths (columns) +2024-09-07 21:55:55,577 [main] DEBUG DocWordWriter - ... 22 ms for shadding/merging/styling (rows) +2024-09-07 21:55:55,606 [main] DEBUG DocWordWriter - ... 29 ms for borders +2024-09-07 21:55:55,606 [main] DEBUG DocWordWriter - ... 130 ms for formatTable() +2024-09-07 21:55:55,616 [main] INFO DocWordWriter - ... 303 ms total for insertTable() +2024-09-07 21:55:55,638 [main] INFO DocWordWriter - ... 15 ms for insertCaption(): Table 25 – Literals of EnumeratedTypes::TimSyncIssueKind +2024-09-07 21:55:55,678 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all literals of TimSyncIssueKind.', [112631 - 112670] +2024-09-07 21:55:55,689 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all literals of TimSyncIssueKind.', [112631 - 112671] +2024-09-07 21:55:55,696 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [112631 - 112631] +2024-09-07 21:55:55,704 [main] INFO DocWordWriter - ... 35 ms for insertCaptionRef() +2024-09-07 21:55:55,704 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:55:55,736 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML50' to Word document and to used list. +2024-09-07 21:55:55,793 [main] INFO DocWordWriter - --- insertTable() 5 rows: Literals of EnumeratedTypes::SecurityProfileKind +2024-09-07 21:55:55,816 [main] DEBUG DocWordWriter - ... 23 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:55:55,824 [main] DEBUG DocWordWriter - ... 8 ms for createTable() +2024-09-07 21:55:55,864 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML190' to Word document and to used list. +2024-09-07 21:55:55,886 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML191' to Word document and to used list. +2024-09-07 21:55:55,910 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML192' to Word document and to used list. +2024-09-07 21:55:55,934 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML193' to Word document and to used list. +2024-09-07 21:55:55,948 [main] DEBUG DocWordWriter - ... 124 ms for fillValues() +2024-09-07 21:55:55,966 [main] DEBUG DocWordWriter - ... 18 ms for widths (table) +2024-09-07 21:55:56,024 [main] DEBUG DocWordWriter - ... 58 ms for widths (columns) +2024-09-07 21:55:56,047 [main] DEBUG DocWordWriter - ... 23 ms for shadding/merging/styling (rows) +2024-09-07 21:55:56,080 [main] DEBUG DocWordWriter - ... 33 ms for borders +2024-09-07 21:55:56,080 [main] DEBUG DocWordWriter - ... 132 ms for formatTable() +2024-09-07 21:55:56,089 [main] INFO DocWordWriter - ... 287 ms total for insertTable() +2024-09-07 21:55:56,113 [main] INFO DocWordWriter - ... 16 ms for insertCaption(): Table 26 – Literals of EnumeratedTypes::SecurityProfileKind +2024-09-07 21:55:56,152 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all literals of SecurityProfileKind.', [113502 - 113544] +2024-09-07 21:55:56,161 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all literals of SecurityProfileKind.', [113502 - 113545] +2024-09-07 21:55:56,167 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [113502 - 113502] +2024-09-07 21:55:56,175 [main] INFO DocWordWriter - ... 33 ms for insertCaptionRef() +2024-09-07 21:55:56,175 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:55:56,207 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML51' to Word document and to used list. +2024-09-07 21:55:56,264 [main] INFO DocWordWriter - --- insertTable() 15 rows: Literals of EnumeratedTypes::TimSyncSrcKind +2024-09-07 21:55:56,290 [main] DEBUG DocWordWriter - ... 26 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:55:56,301 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 21:55:56,341 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML194' to Word document and to used list. +2024-09-07 21:55:56,366 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML195' to Word document and to used list. +2024-09-07 21:55:56,388 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML196' to Word document and to used list. +2024-09-07 21:55:56,410 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML197' to Word document and to used list. +2024-09-07 21:55:56,434 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML198' to Word document and to used list. +2024-09-07 21:55:56,456 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML199' to Word document and to used list. +2024-09-07 21:55:56,479 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML200' to Word document and to used list. +2024-09-07 21:55:56,502 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML201' to Word document and to used list. +2024-09-07 21:55:56,525 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML202' to Word document and to used list. +2024-09-07 21:55:56,548 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML203' to Word document and to used list. +2024-09-07 21:55:56,570 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML204' to Word document and to used list. +2024-09-07 21:55:56,593 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML205' to Word document and to used list. +2024-09-07 21:55:56,616 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML206' to Word document and to used list. +2024-09-07 21:55:56,639 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML207' to Word document and to used list. +2024-09-07 21:55:56,652 [main] DEBUG DocWordWriter - ... 351 ms for fillValues() +2024-09-07 21:55:56,674 [main] DEBUG DocWordWriter - ... 22 ms for widths (table) +2024-09-07 21:55:56,770 [main] DEBUG DocWordWriter - ... 96 ms for widths (columns) +2024-09-07 21:55:56,793 [main] DEBUG DocWordWriter - ... 23 ms for shadding/merging/styling (rows) +2024-09-07 21:55:56,841 [main] DEBUG DocWordWriter - ... 47 ms for borders +2024-09-07 21:55:56,841 [main] DEBUG DocWordWriter - ... 189 ms for formatTable() +2024-09-07 21:55:56,850 [main] INFO DocWordWriter - ... 577 ms total for insertTable() +2024-09-07 21:55:56,880 [main] INFO DocWordWriter - ... 22 ms for insertCaption(): Table 27 – Literals of EnumeratedTypes::TimSyncSrcKind +2024-09-07 21:55:56,945 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all literals of TimSyncSrcKind.', [114261 - 114298] +2024-09-07 21:55:56,964 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all literals of TimSyncSrcKind.', [114261 - 114299] +2024-09-07 21:55:56,972 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [114261 - 114261] +2024-09-07 21:55:56,982 [main] INFO DocWordWriter - ... 71 ms for insertCaptionRef() +2024-09-07 21:55:56,982 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:55:57,013 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML68' to Word document and to used list. +2024-09-07 21:55:57,072 [main] INFO DocWordWriter - --- insertTable() 3 rows: Attributes of EnumeratedTypes::AppDatStType +2024-09-07 21:55:57,097 [main] DEBUG DocWordWriter - ... 25 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:55:57,106 [main] DEBUG DocWordWriter - ... 9 ms for createTable() +2024-09-07 21:55:57,199 [main] DEBUG DocWordWriter - ... 93 ms for fillValues() +2024-09-07 21:55:57,217 [main] DEBUG DocWordWriter - ... 17 ms for widths (table) +2024-09-07 21:55:57,290 [main] DEBUG DocWordWriter - ... 73 ms for widths (columns) +2024-09-07 21:55:57,313 [main] DEBUG DocWordWriter - ... 23 ms for shadding/merging/styling (rows) +2024-09-07 21:55:57,338 [main] DEBUG DocWordWriter - ... 25 ms for borders +2024-09-07 21:55:57,338 [main] DEBUG DocWordWriter - ... 139 ms for formatTable() +2024-09-07 21:55:57,347 [main] INFO DocWordWriter - ... 266 ms total for insertTable() +2024-09-07 21:55:57,377 [main] INFO DocWordWriter - ... 22 ms for insertCaption(): Table 28 – Attributes of EnumeratedTypes::AppDatStType +2024-09-07 21:55:57,418 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of AppDatStType.', [116062 - 116099] +2024-09-07 21:55:57,427 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of AppDatStType.', [116062 - 116100] +2024-09-07 21:55:57,434 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [116062 - 116062] +2024-09-07 21:55:57,442 [main] INFO DocWordWriter - ... 33 ms for insertCaptionRef() +2024-09-07 21:55:57,442 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:55:57,474 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML69' to Word document and to used list. +2024-09-07 21:55:57,532 [main] INFO DocWordWriter - --- insertTable() 3 rows: Attributes of EnumeratedTypes::PhyHealthType +2024-09-07 21:55:57,555 [main] DEBUG DocWordWriter - ... 23 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:55:57,563 [main] DEBUG DocWordWriter - ... 8 ms for createTable() +2024-09-07 21:55:57,653 [main] DEBUG DocWordWriter - ... 90 ms for fillValues() +2024-09-07 21:55:57,671 [main] DEBUG DocWordWriter - ... 18 ms for widths (table) +2024-09-07 21:55:57,747 [main] DEBUG DocWordWriter - ... 76 ms for widths (columns) +2024-09-07 21:55:57,769 [main] DEBUG DocWordWriter - ... 22 ms for shadding/merging/styling (rows) +2024-09-07 21:55:57,794 [main] DEBUG DocWordWriter - ... 25 ms for borders +2024-09-07 21:55:57,794 [main] DEBUG DocWordWriter - ... 141 ms for formatTable() +2024-09-07 21:55:57,804 [main] INFO DocWordWriter - ... 262 ms total for insertTable() +2024-09-07 21:55:57,836 [main] INFO DocWordWriter - ... 24 ms for insertCaption(): Table 29 – Attributes of EnumeratedTypes::PhyHealthType +2024-09-07 21:55:57,878 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of PhyHealthType.', [116452 - 116490] +2024-09-07 21:55:57,888 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of PhyHealthType.', [116452 - 116491] +2024-09-07 21:55:57,895 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [116452 - 116452] +2024-09-07 21:55:57,904 [main] INFO DocWordWriter - ... 34 ms for insertCaptionRef() +2024-09-07 21:55:57,904 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:55:57,937 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML70' to Word document and to used list. +2024-09-07 21:55:58,001 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of EnumeratedTypes::ExtType +2024-09-07 21:55:58,026 [main] DEBUG DocWordWriter - ... 25 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:55:58,035 [main] DEBUG DocWordWriter - ... 9 ms for createTable() +2024-09-07 21:55:58,095 [main] DEBUG DocWordWriter - ... 60 ms for fillValues() +2024-09-07 21:55:58,113 [main] DEBUG DocWordWriter - ... 18 ms for widths (table) +2024-09-07 21:55:58,188 [main] DEBUG DocWordWriter - ... 75 ms for widths (columns) +2024-09-07 21:55:58,213 [main] DEBUG DocWordWriter - ... 25 ms for shadding/merging/styling (rows) +2024-09-07 21:55:58,238 [main] DEBUG DocWordWriter - ... 25 ms for borders +2024-09-07 21:55:58,238 [main] DEBUG DocWordWriter - ... 143 ms for formatTable() +2024-09-07 21:55:58,247 [main] INFO DocWordWriter - ... 237 ms total for insertTable() +2024-09-07 21:55:58,282 [main] INFO DocWordWriter - ... 28 ms for insertCaption(): Table 30 – Attributes of EnumeratedTypes::ExtType +2024-09-07 21:55:58,323 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of ExtType.', [116848 - 116880] +2024-09-07 21:55:58,332 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of ExtType.', [116848 - 116881] +2024-09-07 21:55:58,339 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [116848 - 116848] +2024-09-07 21:55:58,347 [main] INFO DocWordWriter - ... 33 ms for insertCaptionRef() +2024-09-07 21:55:58,348 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:55:58,384 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML71' to Word document and to used list. +2024-09-07 21:55:58,443 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of EnumeratedTypes::IntType +2024-09-07 21:55:58,468 [main] DEBUG DocWordWriter - ... 25 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:55:58,476 [main] DEBUG DocWordWriter - ... 8 ms for createTable() +2024-09-07 21:55:58,538 [main] DEBUG DocWordWriter - ... 62 ms for fillValues() +2024-09-07 21:55:58,556 [main] DEBUG DocWordWriter - ... 18 ms for widths (table) +2024-09-07 21:55:58,631 [main] DEBUG DocWordWriter - ... 75 ms for widths (columns) +2024-09-07 21:55:58,655 [main] DEBUG DocWordWriter - ... 24 ms for shadding/merging/styling (rows) +2024-09-07 21:55:58,680 [main] DEBUG DocWordWriter - ... 25 ms for borders +2024-09-07 21:55:58,680 [main] DEBUG DocWordWriter - ... 142 ms for formatTable() +2024-09-07 21:55:58,690 [main] INFO DocWordWriter - ... 237 ms total for insertTable() +2024-09-07 21:55:58,725 [main] INFO DocWordWriter - ... 28 ms for insertCaption(): Table 31 – Attributes of EnumeratedTypes::IntType +2024-09-07 21:55:58,765 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of IntType.', [117195 - 117227] +2024-09-07 21:55:58,773 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of IntType.', [117195 - 117228] +2024-09-07 21:55:58,780 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [117195 - 117195] +2024-09-07 21:55:58,788 [main] INFO DocWordWriter - ... 32 ms for insertCaptionRef() +2024-09-07 21:55:58,789 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:55:58,821 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML72' to Word document and to used list. +2024-09-07 21:55:58,883 [main] INFO DocWordWriter - --- insertTable() 3 rows: Attributes of EnumeratedTypes::EventType +2024-09-07 21:55:58,908 [main] DEBUG DocWordWriter - ... 25 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:55:58,918 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-07 21:55:59,011 [main] DEBUG DocWordWriter - ... 93 ms for fillValues() +2024-09-07 21:55:59,029 [main] DEBUG DocWordWriter - ... 18 ms for widths (table) +2024-09-07 21:55:59,106 [main] DEBUG DocWordWriter - ... 77 ms for widths (columns) +2024-09-07 21:55:59,129 [main] DEBUG DocWordWriter - ... 23 ms for shadding/merging/styling (rows) +2024-09-07 21:55:59,155 [main] DEBUG DocWordWriter - ... 26 ms for borders +2024-09-07 21:55:59,155 [main] DEBUG DocWordWriter - ... 144 ms for formatTable() +2024-09-07 21:55:59,165 [main] INFO DocWordWriter - ... 272 ms total for insertTable() +2024-09-07 21:55:59,205 [main] INFO DocWordWriter - ... 33 ms for insertCaption(): Table 32 – Attributes of EnumeratedTypes::EventType +2024-09-07 21:55:59,252 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of EventType.', [117535 - 117569] +2024-09-07 21:55:59,262 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of EventType.', [117535 - 117570] +2024-09-07 21:55:59,269 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [117535 - 117535] +2024-09-07 21:55:59,281 [main] INFO DocWordWriter - ... 39 ms for insertCaptionRef() +2024-09-07 21:55:59,281 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:55:59,324 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML73' to Word document and to used list. +2024-09-07 21:55:59,472 [main] INFO DocWordWriter - --- insertTable() 3 rows: Attributes of EnumeratedTypes::PSPAccType +2024-09-07 21:55:59,505 [main] DEBUG DocWordWriter - ... 33 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:55:59,514 [main] DEBUG DocWordWriter - ... 9 ms for createTable() +2024-09-07 21:55:59,606 [main] DEBUG DocWordWriter - ... 92 ms for fillValues() +2024-09-07 21:55:59,626 [main] DEBUG DocWordWriter - ... 20 ms for widths (table) +2024-09-07 21:55:59,749 [main] DEBUG DocWordWriter - ... 123 ms for widths (columns) +2024-09-07 21:55:59,772 [main] DEBUG DocWordWriter - ... 23 ms for shadding/merging/styling (rows) +2024-09-07 21:55:59,798 [main] DEBUG DocWordWriter - ... 26 ms for borders +2024-09-07 21:55:59,798 [main] DEBUG DocWordWriter - ... 192 ms for formatTable() +2024-09-07 21:55:59,807 [main] INFO DocWordWriter - ... 326 ms total for insertTable() +2024-09-07 21:55:59,853 [main] INFO DocWordWriter - ... 39 ms for insertCaption(): Table 33 – Attributes of EnumeratedTypes::PSPAccType +2024-09-07 21:55:59,893 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of PSPAccType.', [117925 - 117960] +2024-09-07 21:55:59,902 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of PSPAccType.', [117925 - 117961] +2024-09-07 21:55:59,908 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [117925 - 117925] +2024-09-07 21:55:59,919 [main] INFO DocWordWriter - ... 35 ms for insertCaptionRef() +2024-09-07 21:55:59,919 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:55:59,951 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML74' to Word document and to used list. +2024-09-07 21:56:00,020 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of EnumeratedTypes::ProtIdType +2024-09-07 21:56:00,047 [main] DEBUG DocWordWriter - ... 27 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:56:00,056 [main] DEBUG DocWordWriter - ... 9 ms for createTable() +2024-09-07 21:56:00,120 [main] DEBUG DocWordWriter - ... 64 ms for fillValues() +2024-09-07 21:56:00,139 [main] DEBUG DocWordWriter - ... 19 ms for widths (table) +2024-09-07 21:56:00,217 [main] DEBUG DocWordWriter - ... 78 ms for widths (columns) +2024-09-07 21:56:00,240 [main] DEBUG DocWordWriter - ... 23 ms for shadding/merging/styling (rows) +2024-09-07 21:56:00,266 [main] DEBUG DocWordWriter - ... 26 ms for borders +2024-09-07 21:56:00,266 [main] DEBUG DocWordWriter - ... 146 ms for formatTable() +2024-09-07 21:56:00,276 [main] INFO DocWordWriter - ... 246 ms total for insertTable() +2024-09-07 21:56:00,331 [main] INFO DocWordWriter - ... 49 ms for insertCaption(): Table 34 – Attributes of EnumeratedTypes::ProtIdType +2024-09-07 21:56:00,373 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of ProtIdType.', [118396 - 118431] +2024-09-07 21:56:00,382 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of ProtIdType.', [118396 - 118432] +2024-09-07 21:56:00,388 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [118396 - 118396] +2024-09-07 21:56:00,398 [main] INFO DocWordWriter - ... 33 ms for insertCaptionRef() +2024-09-07 21:56:00,398 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:56:00,431 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML75' to Word document and to used list. +2024-09-07 21:56:00,492 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of EnumeratedTypes::TimSyncIssueType +2024-09-07 21:56:00,516 [main] DEBUG DocWordWriter - ... 24 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:56:00,524 [main] DEBUG DocWordWriter - ... 8 ms for createTable() +2024-09-07 21:56:00,587 [main] DEBUG DocWordWriter - ... 63 ms for fillValues() +2024-09-07 21:56:00,604 [main] DEBUG DocWordWriter - ... 17 ms for widths (table) +2024-09-07 21:56:00,677 [main] DEBUG DocWordWriter - ... 73 ms for widths (columns) +2024-09-07 21:56:00,698 [main] DEBUG DocWordWriter - ... 21 ms for shadding/merging/styling (rows) +2024-09-07 21:56:00,730 [main] DEBUG DocWordWriter - ... 32 ms for borders +2024-09-07 21:56:00,730 [main] DEBUG DocWordWriter - ... 143 ms for formatTable() +2024-09-07 21:56:00,740 [main] INFO DocWordWriter - ... 238 ms total for insertTable() +2024-09-07 21:56:00,796 [main] INFO DocWordWriter - ... 49 ms for insertCaption(): Table 35 – Attributes of EnumeratedTypes::TimSyncIssueType +2024-09-07 21:56:00,837 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of TimSyncIssueType.', [118775 - 118816] +2024-09-07 21:56:00,847 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of TimSyncIssueType.', [118775 - 118817] +2024-09-07 21:56:00,853 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [118775 - 118775] +2024-09-07 21:56:00,863 [main] INFO DocWordWriter - ... 34 ms for insertCaptionRef() +2024-09-07 21:56:00,863 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:56:00,897 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML76' to Word document and to used list. +2024-09-07 21:56:00,959 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of EnumeratedTypes::SecurityProfileType +2024-09-07 21:56:00,983 [main] DEBUG DocWordWriter - ... 24 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:56:00,992 [main] DEBUG DocWordWriter - ... 9 ms for createTable() +2024-09-07 21:56:01,058 [main] DEBUG DocWordWriter - ... 66 ms for fillValues() +2024-09-07 21:56:01,077 [main] DEBUG DocWordWriter - ... 19 ms for widths (table) +2024-09-07 21:56:01,153 [main] DEBUG DocWordWriter - ... 76 ms for widths (columns) +2024-09-07 21:56:01,177 [main] DEBUG DocWordWriter - ... 24 ms for shadding/merging/styling (rows) +2024-09-07 21:56:01,202 [main] DEBUG DocWordWriter - ... 25 ms for borders +2024-09-07 21:56:01,202 [main] DEBUG DocWordWriter - ... 144 ms for formatTable() +2024-09-07 21:56:01,212 [main] INFO DocWordWriter - ... 243 ms total for insertTable() +2024-09-07 21:56:01,275 [main] INFO DocWordWriter - ... 55 ms for insertCaption(): Table 36 – Attributes of EnumeratedTypes::SecurityProfileType +2024-09-07 21:56:01,319 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of SecurityProfileType.', [119378 - 119422] +2024-09-07 21:56:01,328 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of SecurityProfileType.', [119378 - 119423] +2024-09-07 21:56:01,334 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [119378 - 119378] +2024-09-07 21:56:01,344 [main] INFO DocWordWriter - ... 35 ms for insertCaptionRef() +2024-09-07 21:56:01,344 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:56:01,379 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML77' to Word document and to used list. +2024-09-07 21:56:01,437 [main] INFO DocWordWriter - closing MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 21:56:02,898 [main] INFO DocWordWriter - opening MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 21:56:03,909 [main] INFO OptimOptions - setting view to normal +2024-09-07 21:56:03,955 [main] INFO OptimOptions - disabling pagination +2024-09-07 21:56:04,002 [main] INFO OptimOptions - disabling field update +2024-09-07 21:56:04,162 [main] INFO OptimOptions - disabling screen updating +2024-09-07 21:56:04,179 [main] DEBUG DocWordWriter - current(_optimisedOptions): OptimOptions [viewId=1, normView=true, paginate=false, updFld=false, updScr=false, fastSave=false, spelling=false, grammar=false] +2024-09-07 21:56:04,240 [main] INFO Util - time=[0:00:02.827] closed and reopened document. +2024-09-07 21:56:04,240 [main] INFO Util - +2024-09-07 21:56:04,298 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of EnumeratedTypes::TimSyncSrcType +2024-09-07 21:56:04,328 [main] DEBUG DocWordWriter - ... 30 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:56:04,337 [main] DEBUG DocWordWriter - ... 9 ms for createTable() +2024-09-07 21:56:04,407 [main] DEBUG DocWordWriter - ... 70 ms for fillValues() +2024-09-07 21:56:04,423 [main] DEBUG DocWordWriter - ... 16 ms for widths (table) +2024-09-07 21:56:04,493 [main] DEBUG DocWordWriter - ... 70 ms for widths (columns) +2024-09-07 21:56:04,515 [main] DEBUG DocWordWriter - ... 22 ms for shadding/merging/styling (rows) +2024-09-07 21:56:04,538 [main] DEBUG DocWordWriter - ... 23 ms for borders +2024-09-07 21:56:04,538 [main] DEBUG DocWordWriter - ... 131 ms for formatTable() +2024-09-07 21:56:04,546 [main] INFO DocWordWriter - ... 240 ms total for insertTable() +2024-09-07 21:56:04,570 [main] INFO DocWordWriter - ... 17 ms for insertCaption(): Table 37 – Attributes of EnumeratedTypes::TimSyncSrcType +2024-09-07 21:56:04,611 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of TimSyncSrcType.', [119800 - 119839] +2024-09-07 21:56:04,622 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of TimSyncSrcType.', [119800 - 119840] +2024-09-07 21:56:04,628 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [119800 - 119800] +2024-09-07 21:56:04,639 [main] INFO DocWordWriter - ... 38 ms for insertCaptionRef() +2024-09-07 21:56:04,639 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:56:04,673 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML78' to Word document and to used list. +2024-09-07 21:56:04,732 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of EnumeratedTypes::LnkType +2024-09-07 21:56:04,754 [main] DEBUG DocWordWriter - ... 22 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:56:04,761 [main] DEBUG DocWordWriter - ... 7 ms for createTable() +2024-09-07 21:56:04,823 [main] DEBUG DocWordWriter - ... 62 ms for fillValues() +2024-09-07 21:56:04,840 [main] DEBUG DocWordWriter - ... 17 ms for widths (table) +2024-09-07 21:56:04,913 [main] DEBUG DocWordWriter - ... 73 ms for widths (columns) +2024-09-07 21:56:04,936 [main] DEBUG DocWordWriter - ... 23 ms for shadding/merging/styling (rows) +2024-09-07 21:56:04,960 [main] DEBUG DocWordWriter - ... 24 ms for borders +2024-09-07 21:56:04,960 [main] DEBUG DocWordWriter - ... 137 ms for formatTable() +2024-09-07 21:56:04,971 [main] INFO DocWordWriter - ... 228 ms total for insertTable() +2024-09-07 21:56:04,997 [main] INFO DocWordWriter - ... 20 ms for insertCaption(): Table 38 – Attributes of EnumeratedTypes::LnkType +2024-09-07 21:56:05,037 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of LnkType.', [120221 - 120253] +2024-09-07 21:56:05,046 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of LnkType.', [120221 - 120254] +2024-09-07 21:56:05,052 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [120221 - 120221] +2024-09-07 21:56:05,061 [main] INFO DocWordWriter - ... 34 ms for insertCaptionRef() +2024-09-07 21:56:05,061 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:56:05,071 [main] INFO Util - time=[0:00:16.987] replaced [120453 - 120453] PACKAGE EnumeratedTypes, figures (14 before ), tables (16 before 22 mine)... +2024-09-07 21:56:05,071 [main] INFO Util - +2024-09-07 21:56:05,075 [main] INFO AbstractWordWriter - replacing [120499 - 120530] PACKAGE Overview, figures (14 before ), tables (38 before )... +2024-09-07 21:56:05,099 [main] INFO AbstractWordWriter - writing doc for package Overview ... +2024-09-07 21:56:05,234 [main] INFO DocWordWriter - ... 15 ms for insertCaption(): Figure 15 – Class diagram Overview::Part7 Classes Overview +2024-09-07 21:56:05,294 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': IEC 62351-7 Objects overview', [121118 - 121148] +2024-09-07 21:56:05,301 [main] TRACE DocWordWriter - prepend : range.txt = ': IEC 62351-7 Objects overview', [121118 - 121148] +2024-09-07 21:56:05,308 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [121118 - 121118] +2024-09-07 21:56:05,316 [main] INFO DocWordWriter - ... 28 ms for insertCaptionRef() +2024-09-07 21:56:05,316 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:56:05,327 [main] INFO Util - time=[0:00:00.256] replaced [121032 - 121183] PACKAGE Overview, figures (14 before 1 mine), tables (38 before )... +2024-09-07 21:56:05,327 [main] INFO Util - +2024-09-07 21:56:05,332 [main] INFO AbstractWordWriter - replacing [121216 - 121258] PACKAGE Environmental Agent, figures (15 before ), tables (38 before )... +2024-09-07 21:56:05,358 [main] INFO AbstractWordWriter - writing doc for package Environmental Agent ... +2024-09-07 21:56:05,498 [main] INFO DocWordWriter - ... 17 ms for insertCaption(): Figure 16 – Class diagram Environmental Agent::Environmental +2024-09-07 21:56:05,563 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': The Environmental agent class.', [121554 - 121586] +2024-09-07 21:56:05,570 [main] TRACE DocWordWriter - prepend : range.txt = ': The Environmental agent class.', [121554 - 121586] +2024-09-07 21:56:05,578 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [121554 - 121554] +2024-09-07 21:56:05,586 [main] INFO DocWordWriter - ... 28 ms for insertCaptionRef() +2024-09-07 21:56:05,586 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:56:05,620 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML79' to Word document and to used list. +2024-09-07 21:56:05,682 [main] INFO DocWordWriter - --- insertTable() 14 rows: Attributes of Environmental Agent::Environmental +2024-09-07 21:56:05,708 [main] DEBUG DocWordWriter - ... 26 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:56:05,719 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 21:56:06,100 [main] DEBUG DocWordWriter - ... 381 ms for fillValues() +2024-09-07 21:56:06,126 [main] DEBUG DocWordWriter - ... 26 ms for widths (table) +2024-09-07 21:56:06,249 [main] DEBUG DocWordWriter - ... 123 ms for widths (columns) +2024-09-07 21:56:06,272 [main] DEBUG DocWordWriter - ... 23 ms for shadding/merging/styling (rows) +2024-09-07 21:56:06,322 [main] DEBUG DocWordWriter - ... 50 ms for borders +2024-09-07 21:56:06,322 [main] DEBUG DocWordWriter - ... 222 ms for formatTable() +2024-09-07 21:56:06,331 [main] INFO DocWordWriter - ... 640 ms total for insertTable() +2024-09-07 21:56:06,367 [main] INFO DocWordWriter - ... 29 ms for insertCaption(): Table 39 – Attributes of Environmental Agent::Environmental +2024-09-07 21:56:06,411 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Environmental.', [121937 - 121975] +2024-09-07 21:56:06,420 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Environmental.', [121937 - 121976] +2024-09-07 21:56:06,427 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [121937 - 121937] +2024-09-07 21:56:06,437 [main] INFO DocWordWriter - ... 36 ms for insertCaptionRef() +2024-09-07 21:56:06,437 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:56:06,471 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML80' to Word document and to used list. +2024-09-07 21:56:06,530 [main] INFO DocWordWriter - --- insertTable() 8 rows: Attributes of Environmental Agent::PSUPEntry +2024-09-07 21:56:06,554 [main] DEBUG DocWordWriter - ... 24 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:56:06,563 [main] DEBUG DocWordWriter - ... 9 ms for createTable() +2024-09-07 21:56:06,793 [main] DEBUG DocWordWriter - ... 230 ms for fillValues() +2024-09-07 21:56:06,814 [main] DEBUG DocWordWriter - ... 21 ms for widths (table) +2024-09-07 21:56:06,915 [main] DEBUG DocWordWriter - ... 101 ms for widths (columns) +2024-09-07 21:56:06,937 [main] DEBUG DocWordWriter - ... 22 ms for shadding/merging/styling (rows) +2024-09-07 21:56:06,973 [main] DEBUG DocWordWriter - ... 36 ms for borders +2024-09-07 21:56:06,974 [main] DEBUG DocWordWriter - ... 181 ms for formatTable() +2024-09-07 21:56:06,983 [main] INFO DocWordWriter - ... 444 ms total for insertTable() +2024-09-07 21:56:07,022 [main] INFO DocWordWriter - ... 30 ms for insertCaption(): Table 40 – Attributes of Environmental Agent::PSUPEntry +2024-09-07 21:56:07,065 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of PSUPEntry.', [123579 - 123613] +2024-09-07 21:56:07,075 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of PSUPEntry.', [123579 - 123614] +2024-09-07 21:56:07,082 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [123579 - 123579] +2024-09-07 21:56:07,091 [main] INFO DocWordWriter - ... 36 ms for insertCaptionRef() +2024-09-07 21:56:07,091 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:56:07,124 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML81' to Word document and to used list. +2024-09-07 21:56:07,187 [main] INFO DocWordWriter - --- insertTable() 3 rows: Attributes of Environmental Agent::Notification +2024-09-07 21:56:07,212 [main] DEBUG DocWordWriter - ... 25 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:56:07,221 [main] DEBUG DocWordWriter - ... 9 ms for createTable() +2024-09-07 21:56:07,317 [main] DEBUG DocWordWriter - ... 96 ms for fillValues() +2024-09-07 21:56:07,336 [main] DEBUG DocWordWriter - ... 19 ms for widths (table) +2024-09-07 21:56:07,411 [main] DEBUG DocWordWriter - ... 75 ms for widths (columns) +2024-09-07 21:56:07,436 [main] DEBUG DocWordWriter - ... 25 ms for shadding/merging/styling (rows) +2024-09-07 21:56:07,462 [main] DEBUG DocWordWriter - ... 26 ms for borders +2024-09-07 21:56:07,462 [main] DEBUG DocWordWriter - ... 145 ms for formatTable() +2024-09-07 21:56:07,472 [main] INFO DocWordWriter - ... 275 ms total for insertTable() +2024-09-07 21:56:07,513 [main] INFO DocWordWriter - ... 32 ms for insertCaption(): Table 41 – Attributes of Environmental Agent::Notification +2024-09-07 21:56:07,555 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Notification.', [124574 - 124611] +2024-09-07 21:56:07,565 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Notification.', [124574 - 124612] +2024-09-07 21:56:07,572 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [124574 - 124574] +2024-09-07 21:56:07,582 [main] INFO DocWordWriter - ... 37 ms for insertCaptionRef() +2024-09-07 21:56:07,582 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:56:07,615 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML82' to Word document and to used list. +2024-09-07 21:56:07,677 [main] INFO DocWordWriter - --- insertTable() 6 rows: Attributes of Environmental Agent::SecurityNotification +2024-09-07 21:56:07,713 [main] DEBUG DocWordWriter - ... 36 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:56:07,722 [main] DEBUG DocWordWriter - ... 9 ms for createTable() +2024-09-07 21:56:07,914 [main] DEBUG DocWordWriter - ... 192 ms for fillValues() +2024-09-07 21:56:07,936 [main] DEBUG DocWordWriter - ... 22 ms for widths (table) +2024-09-07 21:56:08,023 [main] DEBUG DocWordWriter - ... 87 ms for widths (columns) +2024-09-07 21:56:08,046 [main] DEBUG DocWordWriter - ... 23 ms for shadding/merging/styling (rows) +2024-09-07 21:56:08,077 [main] DEBUG DocWordWriter - ... 31 ms for borders +2024-09-07 21:56:08,077 [main] DEBUG DocWordWriter - ... 163 ms for formatTable() +2024-09-07 21:56:08,086 [main] INFO DocWordWriter - ... 400 ms total for insertTable() +2024-09-07 21:56:08,132 [main] INFO DocWordWriter - ... 38 ms for insertCaption(): Table 42 – Attributes of Environmental Agent::SecurityNotification +2024-09-07 21:56:08,171 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of SecurityNotification.', [125160 - 125205] +2024-09-07 21:56:08,180 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of SecurityNotification.', [125160 - 125206] +2024-09-07 21:56:08,186 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [125160 - 125160] +2024-09-07 21:56:08,196 [main] INFO DocWordWriter - ... 34 ms for insertCaptionRef() +2024-09-07 21:56:08,196 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:56:08,204 [main] INFO Util - time=[0:00:02.876] replaced [125802 - 125802] PACKAGE Environmental Agent, figures (15 before 1 mine), tables (38 before 4 mine)... +2024-09-07 21:56:08,204 [main] INFO Util - +2024-09-07 21:56:08,208 [main] INFO AbstractWordWriter - replacing [125846 - 125878] PACKAGE IED Agent, figures (16 before ), tables (42 before )... +2024-09-07 21:56:08,233 [main] INFO AbstractWordWriter - writing doc for package IED Agent ... +2024-09-07 21:56:08,404 [main] INFO DocWordWriter - ... 25 ms for insertCaption(): Figure 17 – Class diagram IED Agent::IED +2024-09-07 21:56:08,465 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': The Intelligent Electronic Device class attributes', [126164 - 126216] +2024-09-07 21:56:08,472 [main] TRACE DocWordWriter - prepend : range.txt = ': The Intelligent Electronic Device class attributes', [126164 - 126216] +2024-09-07 21:56:08,478 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [126164 - 126164] +2024-09-07 21:56:08,487 [main] INFO DocWordWriter - ... 26 ms for insertCaptionRef() +2024-09-07 21:56:08,487 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:56:08,521 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML83' to Word document and to used list. +2024-09-07 21:56:08,584 [main] INFO DocWordWriter - --- insertTable() 38 rows: Attributes of IED Agent::IED +2024-09-07 21:56:08,608 [main] DEBUG DocWordWriter - ... 24 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:56:08,622 [main] DEBUG DocWordWriter - ... 14 ms for createTable() +2024-09-07 21:56:09,732 [main] DEBUG DocWordWriter - ... 1110 ms for fillValues() +2024-09-07 21:56:09,776 [main] DEBUG DocWordWriter - ... 44 ms for widths (table) +2024-09-07 21:56:10,000 [main] DEBUG DocWordWriter - ... 224 ms for widths (columns) +2024-09-07 21:56:10,027 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-07 21:56:10,117 [main] DEBUG DocWordWriter - ... 90 ms for borders +2024-09-07 21:56:10,117 [main] DEBUG DocWordWriter - ... 385 ms for formatTable() +2024-09-07 21:56:10,128 [main] INFO DocWordWriter - ... 1533 ms total for insertTable() +2024-09-07 21:56:10,191 [main] INFO DocWordWriter - ... 56 ms for insertCaption(): Table 43 – Attributes of IED Agent::IED +2024-09-07 21:56:10,236 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of IED.', [126556 - 126584] +2024-09-07 21:56:10,247 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of IED.', [126556 - 126585] +2024-09-07 21:56:10,254 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [126556 - 126556] +2024-09-07 21:56:10,264 [main] INFO DocWordWriter - ... 37 ms for insertCaptionRef() +2024-09-07 21:56:10,264 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:56:10,297 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML84' to Word document and to used list. +2024-09-07 21:56:10,365 [main] INFO DocWordWriter - --- insertTable() 9 rows: Attributes of IED Agent::CPUEntry +2024-09-07 21:56:10,391 [main] DEBUG DocWordWriter - ... 26 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:56:10,403 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-07 21:56:10,683 [main] DEBUG DocWordWriter - ... 280 ms for fillValues() +2024-09-07 21:56:10,706 [main] DEBUG DocWordWriter - ... 22 ms for widths (table) +2024-09-07 21:56:10,810 [main] DEBUG DocWordWriter - ... 104 ms for widths (columns) +2024-09-07 21:56:10,834 [main] DEBUG DocWordWriter - ... 24 ms for shadding/merging/styling (rows) +2024-09-07 21:56:10,874 [main] DEBUG DocWordWriter - ... 40 ms for borders +2024-09-07 21:56:10,874 [main] DEBUG DocWordWriter - ... 191 ms for formatTable() +2024-09-07 21:56:10,884 [main] INFO DocWordWriter - ... 509 ms total for insertTable() +2024-09-07 21:56:10,943 [main] INFO DocWordWriter - ... 52 ms for insertCaption(): Table 44 – Attributes of IED Agent::CPUEntry +2024-09-07 21:56:10,989 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of CPUEntry.', [131017 - 131050] +2024-09-07 21:56:10,999 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of CPUEntry.', [131017 - 131051] +2024-09-07 21:56:11,006 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [131017 - 131017] +2024-09-07 21:56:11,020 [main] INFO DocWordWriter - ... 42 ms for insertCaptionRef() +2024-09-07 21:56:11,020 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:56:11,062 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML85' to Word document and to used list. +2024-09-07 21:56:11,125 [main] INFO DocWordWriter - --- insertTable() 10 rows: Attributes of IED Agent::EXTEntry +2024-09-07 21:56:11,150 [main] DEBUG DocWordWriter - ... 25 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:56:11,161 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 21:56:11,477 [main] DEBUG DocWordWriter - ... 316 ms for fillValues() +2024-09-07 21:56:11,501 [main] DEBUG DocWordWriter - ... 24 ms for widths (table) +2024-09-07 21:56:11,614 [main] DEBUG DocWordWriter - ... 113 ms for widths (columns) +2024-09-07 21:56:11,636 [main] DEBUG DocWordWriter - ... 22 ms for shadding/merging/styling (rows) +2024-09-07 21:56:11,677 [main] DEBUG DocWordWriter - ... 41 ms for borders +2024-09-07 21:56:11,677 [main] DEBUG DocWordWriter - ... 200 ms for formatTable() +2024-09-07 21:56:11,688 [main] INFO DocWordWriter - ... 552 ms total for insertTable() +2024-09-07 21:56:11,753 [main] INFO DocWordWriter - ... 58 ms for insertCaption(): Table 45 – Attributes of IED Agent::EXTEntry +2024-09-07 21:56:11,799 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of EXTEntry.', [131980 - 132013] +2024-09-07 21:56:11,809 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of EXTEntry.', [131980 - 132014] +2024-09-07 21:56:11,816 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [131980 - 131980] +2024-09-07 21:56:11,827 [main] INFO DocWordWriter - ... 38 ms for insertCaptionRef() +2024-09-07 21:56:11,828 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:56:11,865 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML86' to Word document and to used list. +2024-09-07 21:56:11,929 [main] INFO DocWordWriter - --- insertTable() 7 rows: Attributes of IED Agent::STOREEntry +2024-09-07 21:56:11,953 [main] DEBUG DocWordWriter - ... 24 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:56:11,965 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-07 21:56:12,185 [main] DEBUG DocWordWriter - ... 220 ms for fillValues() +2024-09-07 21:56:12,207 [main] DEBUG DocWordWriter - ... 21 ms for widths (table) +2024-09-07 21:56:12,306 [main] DEBUG DocWordWriter - ... 99 ms for widths (columns) +2024-09-07 21:56:12,329 [main] DEBUG DocWordWriter - ... 23 ms for shadding/merging/styling (rows) +2024-09-07 21:56:12,364 [main] DEBUG DocWordWriter - ... 35 ms for borders +2024-09-07 21:56:12,364 [main] DEBUG DocWordWriter - ... 179 ms for formatTable() +2024-09-07 21:56:12,375 [main] INFO DocWordWriter - ... 435 ms total for insertTable() +2024-09-07 21:56:12,447 [main] INFO DocWordWriter - ... 65 ms for insertCaption(): Table 46 – Attributes of IED Agent::STOREEntry +2024-09-07 21:56:12,490 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of STOREEntry.', [133094 - 133129] +2024-09-07 21:56:12,502 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of STOREEntry.', [133094 - 133130] +2024-09-07 21:56:12,514 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [133094 - 133094] +2024-09-07 21:56:12,528 [main] INFO DocWordWriter - ... 48 ms for insertCaptionRef() +2024-09-07 21:56:12,528 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:56:12,564 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML87' to Word document and to used list. +2024-09-07 21:56:12,630 [main] INFO DocWordWriter - --- insertTable() 7 rows: Attributes of IED Agent::Notification +2024-09-07 21:56:12,656 [main] DEBUG DocWordWriter - ... 26 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:56:12,667 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 21:56:12,889 [main] DEBUG DocWordWriter - ... 222 ms for fillValues() +2024-09-07 21:56:12,911 [main] DEBUG DocWordWriter - ... 22 ms for widths (table) +2024-09-07 21:56:13,000 [main] DEBUG DocWordWriter - ... 89 ms for widths (columns) +2024-09-07 21:56:13,022 [main] DEBUG DocWordWriter - ... 22 ms for shadding/merging/styling (rows) +2024-09-07 21:56:13,060 [main] DEBUG DocWordWriter - ... 38 ms for borders +2024-09-07 21:56:13,060 [main] DEBUG DocWordWriter - ... 171 ms for formatTable() +2024-09-07 21:56:13,069 [main] INFO DocWordWriter - ... 430 ms total for insertTable() +2024-09-07 21:56:13,151 [main] INFO DocWordWriter - ... 75 ms for insertCaption(): Table 47 – Attributes of IED Agent::Notification +2024-09-07 21:56:13,198 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Notification.', [133880 - 133917] +2024-09-07 21:56:13,207 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Notification.', [133880 - 133918] +2024-09-07 21:56:13,213 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [133880 - 133880] +2024-09-07 21:56:13,224 [main] INFO DocWordWriter - ... 36 ms for insertCaptionRef() +2024-09-07 21:56:13,224 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:56:13,258 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML88' to Word document and to used list. +2024-09-07 21:56:13,321 [main] INFO DocWordWriter - --- insertTable() 7 rows: Attributes of IED Agent::SecurityNotification +2024-09-07 21:56:13,347 [main] DEBUG DocWordWriter - ... 26 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:56:13,359 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-07 21:56:13,576 [main] DEBUG DocWordWriter - ... 217 ms for fillValues() +2024-09-07 21:56:13,598 [main] DEBUG DocWordWriter - ... 22 ms for widths (table) +2024-09-07 21:56:13,692 [main] DEBUG DocWordWriter - ... 94 ms for widths (columns) +2024-09-07 21:56:13,715 [main] DEBUG DocWordWriter - ... 23 ms for shadding/merging/styling (rows) +2024-09-07 21:56:13,750 [main] DEBUG DocWordWriter - ... 35 ms for borders +2024-09-07 21:56:13,750 [main] DEBUG DocWordWriter - ... 174 ms for formatTable() +2024-09-07 21:56:13,759 [main] INFO DocWordWriter - ... 429 ms total for insertTable() +2024-09-07 21:56:13,840 [main] INFO DocWordWriter - ... 74 ms for insertCaption(): Table 48 – Attributes of IED Agent::SecurityNotification +2024-09-07 21:56:13,884 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of SecurityNotification.', [134893 - 134938] +2024-09-07 21:56:13,894 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of SecurityNotification.', [134893 - 134939] +2024-09-07 21:56:13,901 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [134893 - 134893] +2024-09-07 21:56:13,913 [main] INFO DocWordWriter - ... 39 ms for insertCaptionRef() +2024-09-07 21:56:13,913 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:56:13,921 [main] INFO Util - time=[0:00:05.716] replaced [135872 - 135872] PACKAGE IED Agent, figures (16 before 1 mine), tables (42 before 6 mine)... +2024-09-07 21:56:13,921 [main] INFO Util - +2024-09-07 21:56:13,927 [main] INFO AbstractWordWriter - replacing [135906 - 135957] PACKAGE Application Protocols Agents, figures (17 before ), tables (48 before )... +2024-09-07 21:56:13,955 [main] INFO AbstractWordWriter - writing doc for package Application Protocols Agents ... +2024-09-07 21:56:14,056 [main] INFO AbstractWordWriter - writing doc for package Common objects ... +2024-09-07 21:56:14,203 [main] INFO DocWordWriter - ... 36 ms for insertCaption(): Figure 18 – Class diagram Common objects::Application Protocol common objects +2024-09-07 21:56:14,274 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': Application Protocol common objects', [136854 - 136891] +2024-09-07 21:56:14,281 [main] TRACE DocWordWriter - prepend : range.txt = ': Application Protocol common objects', [136854 - 136891] +2024-09-07 21:56:14,288 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [136854 - 136854] +2024-09-07 21:56:14,300 [main] INFO DocWordWriter - ... 30 ms for insertCaptionRef() +2024-09-07 21:56:14,300 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:56:14,335 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML89' to Word document and to used list. +2024-09-07 21:56:14,393 [main] INFO DocWordWriter - closing MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 21:56:15,859 [main] INFO DocWordWriter - opening MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 21:56:16,920 [main] INFO OptimOptions - setting view to normal +2024-09-07 21:56:16,975 [main] INFO OptimOptions - disabling pagination +2024-09-07 21:56:17,031 [main] INFO OptimOptions - disabling field update +2024-09-07 21:56:17,181 [main] INFO OptimOptions - disabling screen updating +2024-09-07 21:56:17,193 [main] DEBUG DocWordWriter - current(_optimisedOptions): OptimOptions [viewId=1, normView=true, paginate=false, updFld=false, updScr=false, fastSave=false, spelling=false, grammar=false] +2024-09-07 21:56:17,261 [main] INFO Util - time=[0:00:02.891] closed and reopened document. +2024-09-07 21:56:17,261 [main] INFO Util - +2024-09-07 21:56:17,301 [main] INFO DocWordWriter - --- insertTable() 9 rows: Attributes of Common objects::CommonProtocolInfo +2024-09-07 21:56:17,330 [main] DEBUG DocWordWriter - ... 29 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:56:17,339 [main] DEBUG DocWordWriter - ... 9 ms for createTable() +2024-09-07 21:56:17,613 [main] DEBUG DocWordWriter - ... 274 ms for fillValues() +2024-09-07 21:56:17,636 [main] DEBUG DocWordWriter - ... 23 ms for widths (table) +2024-09-07 21:56:17,741 [main] DEBUG DocWordWriter - ... 105 ms for widths (columns) +2024-09-07 21:56:17,765 [main] DEBUG DocWordWriter - ... 24 ms for shadding/merging/styling (rows) +2024-09-07 21:56:17,804 [main] DEBUG DocWordWriter - ... 39 ms for borders +2024-09-07 21:56:17,804 [main] DEBUG DocWordWriter - ... 191 ms for formatTable() +2024-09-07 21:56:17,814 [main] INFO DocWordWriter - ... 503 ms total for insertTable() +2024-09-07 21:56:17,843 [main] INFO DocWordWriter - ... 21 ms for insertCaption(): Table 49 – Attributes of Common objects::CommonProtocolInfo +2024-09-07 21:56:17,885 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of CommonProtocolInfo.', [137366 - 137409] +2024-09-07 21:56:17,895 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of CommonProtocolInfo.', [137366 - 137410] +2024-09-07 21:56:17,902 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [137366 - 137366] +2024-09-07 21:56:17,911 [main] INFO DocWordWriter - ... 36 ms for insertCaptionRef() +2024-09-07 21:56:17,911 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:56:17,977 [main] INFO AbstractWordWriter - writing doc for package IEC62351-3 ed.2 Agent ... +2024-09-07 21:56:18,143 [main] INFO DocWordWriter - ... 20 ms for insertCaption(): Figure 19 – Class diagram IEC62351-3 ed.2 Agent::IEC 62351-3 ed.2 Agent Relationships +2024-09-07 21:56:18,207 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': This picture depicts the relationship between IEC 62351-3 ed.2 objects', [139058 - 139130] +2024-09-07 21:56:18,214 [main] TRACE DocWordWriter - prepend : range.txt = ': This picture depicts the relationship between IEC 62351-3 ed.2 objects', [139058 - 139130] +2024-09-07 21:56:18,220 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [139058 - 139058] +2024-09-07 21:56:18,229 [main] INFO DocWordWriter - ... 27 ms for insertCaptionRef() +2024-09-07 21:56:18,230 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:56:18,266 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML90' to Word document and to used list. +2024-09-07 21:56:18,328 [main] INFO DocWordWriter - --- insertTable() 36 rows: Attributes of IEC62351-3 ed.2 Agent::IEC62351-3ed2security +2024-09-07 21:56:18,352 [main] DEBUG DocWordWriter - ... 23 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:56:18,366 [main] DEBUG DocWordWriter - ... 15 ms for createTable() +2024-09-07 21:56:19,409 [main] DEBUG DocWordWriter - ... 1043 ms for fillValues() +2024-09-07 21:56:19,453 [main] DEBUG DocWordWriter - ... 44 ms for widths (table) +2024-09-07 21:56:19,675 [main] DEBUG DocWordWriter - ... 222 ms for widths (columns) +2024-09-07 21:56:19,701 [main] DEBUG DocWordWriter - ... 26 ms for shadding/merging/styling (rows) +2024-09-07 21:56:19,788 [main] DEBUG DocWordWriter - ... 87 ms for borders +2024-09-07 21:56:19,788 [main] DEBUG DocWordWriter - ... 379 ms for formatTable() +2024-09-07 21:56:19,799 [main] INFO DocWordWriter - ... 1460 ms total for insertTable() +2024-09-07 21:56:19,842 [main] INFO DocWordWriter - ... 37 ms for insertCaption(): Table 50 – Attributes of IEC62351-3 ed.2 Agent::IEC62351-3ed2security +2024-09-07 21:56:19,888 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of IEC62351-3ed2security.', [139267 - 139313] +2024-09-07 21:56:19,899 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of IEC62351-3ed2security.', [139267 - 139314] +2024-09-07 21:56:19,907 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [139267 - 139267] +2024-09-07 21:56:19,916 [main] INFO DocWordWriter - ... 38 ms for insertCaptionRef() +2024-09-07 21:56:19,916 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:56:19,952 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML91' to Word document and to used list. +2024-09-07 21:56:20,016 [main] INFO DocWordWriter - --- insertTable() 50 rows: Attributes of IEC62351-3 ed.2 Agent::TLSSession +2024-09-07 21:56:20,040 [main] DEBUG DocWordWriter - ... 24 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:56:20,058 [main] DEBUG DocWordWriter - ... 18 ms for createTable() +2024-09-07 21:56:21,575 [main] DEBUG DocWordWriter - ... 1517 ms for fillValues() +2024-09-07 21:56:21,627 [main] DEBUG DocWordWriter - ... 52 ms for widths (table) +2024-09-07 21:56:21,907 [main] DEBUG DocWordWriter - ... 280 ms for widths (columns) +2024-09-07 21:56:21,934 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-07 21:56:22,048 [main] DEBUG DocWordWriter - ... 114 ms for borders +2024-09-07 21:56:22,048 [main] DEBUG DocWordWriter - ... 473 ms for formatTable() +2024-09-07 21:56:22,059 [main] INFO DocWordWriter - ... 2032 ms total for insertTable() +2024-09-07 21:56:22,115 [main] INFO DocWordWriter - ... 49 ms for insertCaption(): Table 51 – Attributes of IEC62351-3 ed.2 Agent::TLSSession +2024-09-07 21:56:22,162 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of TLSSession.', [144097 - 144132] +2024-09-07 21:56:22,173 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of TLSSession.', [144097 - 144133] +2024-09-07 21:56:22,179 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [144097 - 144097] +2024-09-07 21:56:22,190 [main] INFO DocWordWriter - ... 39 ms for insertCaptionRef() +2024-09-07 21:56:22,190 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:56:22,233 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML105' to Word document and to used list. +2024-09-07 21:56:22,300 [main] INFO DocWordWriter - --- insertTable() 42 rows: Attributes of IEC62351-3 ed.2 Agent::Summary +2024-09-07 21:56:22,327 [main] DEBUG DocWordWriter - ... 27 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:56:22,349 [main] DEBUG DocWordWriter - ... 22 ms for createTable() +2024-09-07 21:56:23,688 [main] DEBUG DocWordWriter - ... 1339 ms for fillValues() +2024-09-07 21:56:23,735 [main] DEBUG DocWordWriter - ... 47 ms for widths (table) +2024-09-07 21:56:23,986 [main] DEBUG DocWordWriter - ... 251 ms for widths (columns) +2024-09-07 21:56:24,013 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-07 21:56:24,114 [main] DEBUG DocWordWriter - ... 101 ms for borders +2024-09-07 21:56:24,114 [main] DEBUG DocWordWriter - ... 426 ms for formatTable() +2024-09-07 21:56:24,124 [main] INFO DocWordWriter - ... 1814 ms total for insertTable() +2024-09-07 21:56:24,185 [main] INFO DocWordWriter - ... 53 ms for insertCaption(): Table 52 – Attributes of IEC62351-3 ed.2 Agent::Summary +2024-09-07 21:56:24,234 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Summary.', [149299 - 149331] +2024-09-07 21:56:24,245 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Summary.', [149299 - 149332] +2024-09-07 21:56:24,252 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [149299 - 149299] +2024-09-07 21:56:24,264 [main] INFO DocWordWriter - ... 41 ms for insertCaptionRef() +2024-09-07 21:56:24,264 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:56:24,300 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML106' to Word document and to used list. +2024-09-07 21:56:24,371 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification +2024-09-07 21:56:24,402 [main] DEBUG DocWordWriter - ... 31 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:56:24,414 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-07 21:56:24,498 [main] DEBUG DocWordWriter - ... 84 ms for fillValues() +2024-09-07 21:56:24,521 [main] DEBUG DocWordWriter - ... 23 ms for widths (table) +2024-09-07 21:56:24,612 [main] DEBUG DocWordWriter - ... 91 ms for widths (columns) +2024-09-07 21:56:24,642 [main] DEBUG DocWordWriter - ... 30 ms for shadding/merging/styling (rows) +2024-09-07 21:56:24,673 [main] DEBUG DocWordWriter - ... 31 ms for borders +2024-09-07 21:56:24,673 [main] DEBUG DocWordWriter - ... 175 ms for formatTable() +2024-09-07 21:56:24,685 [main] INFO DocWordWriter - ... 302 ms total for insertTable() +2024-09-07 21:56:24,753 [main] INFO DocWordWriter - ... 59 ms for insertCaption(): Table 53 – Attributes of IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification +2024-09-07 21:56:24,803 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of IEC62351part3ed2SecurityNotification.', [153856 - 153917] +2024-09-07 21:56:24,813 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of IEC62351part3ed2SecurityNotification.', [153856 - 153918] +2024-09-07 21:56:24,819 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [153856 - 153856] +2024-09-07 21:56:24,831 [main] INFO DocWordWriter - ... 39 ms for insertCaptionRef() +2024-09-07 21:56:24,831 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:56:24,867 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML92' to Word document and to used list. +2024-09-07 21:56:24,940 [main] INFO DocWordWriter - --- insertTable() 50 rows: Attributes of IEC62351-3 ed.2 Agent::ClientTLS +2024-09-07 21:56:24,965 [main] DEBUG DocWordWriter - ... 25 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:56:24,995 [main] DEBUG DocWordWriter - ... 30 ms for createTable() +2024-09-07 21:56:26,591 [main] DEBUG DocWordWriter - ... 1596 ms for fillValues() +2024-09-07 21:56:26,644 [main] DEBUG DocWordWriter - ... 53 ms for widths (table) +2024-09-07 21:56:26,916 [main] DEBUG DocWordWriter - ... 272 ms for widths (columns) +2024-09-07 21:56:26,943 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-07 21:56:27,067 [main] DEBUG DocWordWriter - ... 124 ms for borders +2024-09-07 21:56:27,067 [main] DEBUG DocWordWriter - ... 476 ms for formatTable() +2024-09-07 21:56:27,078 [main] INFO DocWordWriter - ... 2127 ms total for insertTable() +2024-09-07 21:56:27,155 [main] INFO DocWordWriter - ... 70 ms for insertCaption(): Table 54 – Attributes of IEC62351-3 ed.2 Agent::ClientTLS +2024-09-07 21:56:27,203 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of ClientTLS.', [154281 - 154315] +2024-09-07 21:56:27,214 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of ClientTLS.', [154281 - 154316] +2024-09-07 21:56:27,221 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [154281 - 154281] +2024-09-07 21:56:27,234 [main] INFO DocWordWriter - ... 41 ms for insertCaptionRef() +2024-09-07 21:56:27,234 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:56:27,270 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML93' to Word document and to used list. +2024-09-07 21:56:27,339 [main] INFO DocWordWriter - --- insertTable() 50 rows: Attributes of IEC62351-3 ed.2 Agent::ServerTLS +2024-09-07 21:56:27,366 [main] DEBUG DocWordWriter - ... 27 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:56:27,402 [main] DEBUG DocWordWriter - ... 36 ms for createTable() +2024-09-07 21:56:29,071 [main] DEBUG DocWordWriter - ... 1669 ms for fillValues() +2024-09-07 21:56:29,123 [main] DEBUG DocWordWriter - ... 52 ms for widths (table) +2024-09-07 21:56:29,416 [main] DEBUG DocWordWriter - ... 293 ms for widths (columns) +2024-09-07 21:56:29,445 [main] DEBUG DocWordWriter - ... 29 ms for shadding/merging/styling (rows) +2024-09-07 21:56:29,561 [main] DEBUG DocWordWriter - ... 116 ms for borders +2024-09-07 21:56:29,561 [main] DEBUG DocWordWriter - ... 490 ms for formatTable() +2024-09-07 21:56:29,572 [main] INFO DocWordWriter - ... 2222 ms total for insertTable() +2024-09-07 21:56:29,667 [main] INFO DocWordWriter - ... 88 ms for insertCaption(): Table 55 – Attributes of IEC62351-3 ed.2 Agent::ServerTLS +2024-09-07 21:56:29,716 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of ServerTLS.', [159551 - 159585] +2024-09-07 21:56:29,728 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of ServerTLS.', [159551 - 159586] +2024-09-07 21:56:29,735 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [159551 - 159551] +2024-09-07 21:56:29,748 [main] INFO DocWordWriter - ... 42 ms for insertCaptionRef() +2024-09-07 21:56:29,748 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:56:29,794 [main] INFO AbstractWordWriter - writing doc for package IEEE 1815 and IEC 60870-5 Agent ... +2024-09-07 21:56:30,007 [main] INFO DocWordWriter - ... 36 ms for insertCaption(): Figure 20 – Class diagram IEEE 1815 and IEC 60870-5 Agent::IEEE 1815 and IEC 60870 Agent Relationships +2024-09-07 21:56:30,080 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes. Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.', [166011 - 166292] +2024-09-07 21:56:30,088 [main] TRACE DocWordWriter - prepend : range.txt = ': This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes. Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.', [166011 - 166292] +2024-09-07 21:56:30,094 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [166011 - 166011] +2024-09-07 21:56:30,107 [main] INFO DocWordWriter - ... 33 ms for insertCaptionRef() +2024-09-07 21:56:30,108 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:56:30,146 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML94' to Word document and to used list. +2024-09-07 21:56:30,220 [main] INFO DocWordWriter - --- insertTable() 31 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo +2024-09-07 21:56:30,252 [main] DEBUG DocWordWriter - ... 32 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:56:30,285 [main] DEBUG DocWordWriter - ... 33 ms for createTable() +2024-09-07 21:56:31,341 [main] DEBUG DocWordWriter - ... 1056 ms for fillValues() +2024-09-07 21:56:31,381 [main] DEBUG DocWordWriter - ... 40 ms for widths (table) +2024-09-07 21:56:31,584 [main] DEBUG DocWordWriter - ... 203 ms for widths (columns) +2024-09-07 21:56:31,611 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-07 21:56:31,692 [main] DEBUG DocWordWriter - ... 81 ms for borders +2024-09-07 21:56:31,692 [main] DEBUG DocWordWriter - ... 351 ms for formatTable() +2024-09-07 21:56:31,704 [main] INFO DocWordWriter - ... 1472 ms total for insertTable() +2024-09-07 21:56:31,804 [main] INFO DocWordWriter - ... 92 ms for insertCaption(): Table 56 – Attributes of IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo +2024-09-07 21:56:31,853 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of 60870andDNPProtocolInfo.', [166566 - 166614] +2024-09-07 21:56:31,865 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of 60870andDNPProtocolInfo.', [166566 - 166615] +2024-09-07 21:56:31,872 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [166566 - 166566] +2024-09-07 21:56:31,889 [main] INFO DocWordWriter - ... 46 ms for insertCaptionRef() +2024-09-07 21:56:31,889 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:56:31,928 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML95' to Word document and to used list. +2024-09-07 21:56:32,000 [main] INFO DocWordWriter - --- insertTable() 50 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent::Association +2024-09-07 21:56:32,026 [main] DEBUG DocWordWriter - ... 26 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:56:32,073 [main] DEBUG DocWordWriter - ... 47 ms for createTable() +2024-09-07 21:56:33,812 [main] DEBUG DocWordWriter - ... 1739 ms for fillValues() +2024-09-07 21:56:33,865 [main] DEBUG DocWordWriter - ... 53 ms for widths (table) +2024-09-07 21:56:34,143 [main] DEBUG DocWordWriter - ... 278 ms for widths (columns) +2024-09-07 21:56:34,170 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-07 21:56:34,288 [main] DEBUG DocWordWriter - ... 118 ms for borders +2024-09-07 21:56:34,288 [main] DEBUG DocWordWriter - ... 476 ms for formatTable() +2024-09-07 21:56:34,299 [main] INFO DocWordWriter - ... 2288 ms total for insertTable() +2024-09-07 21:56:34,419 [main] INFO DocWordWriter - ... 112 ms for insertCaption(): Table 57 – Attributes of IEEE 1815 and IEC 60870-5 Agent::Association +2024-09-07 21:56:34,470 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Association.', [170244 - 170280] +2024-09-07 21:56:34,483 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Association.', [170244 - 170281] +2024-09-07 21:56:34,490 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [170244 - 170244] +2024-09-07 21:56:34,508 [main] INFO DocWordWriter - ... 50 ms for insertCaptionRef() +2024-09-07 21:56:34,508 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:56:34,551 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML107' to Word document and to used list. +2024-09-07 21:56:34,625 [main] INFO DocWordWriter - --- insertTable() 37 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent::Summary +2024-09-07 21:56:34,652 [main] DEBUG DocWordWriter - ... 27 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:56:34,695 [main] DEBUG DocWordWriter - ... 43 ms for createTable() +2024-09-07 21:56:36,001 [main] DEBUG DocWordWriter - ... 1306 ms for fillValues() +2024-09-07 21:56:36,045 [main] DEBUG DocWordWriter - ... 44 ms for widths (table) +2024-09-07 21:56:36,273 [main] DEBUG DocWordWriter - ... 228 ms for widths (columns) +2024-09-07 21:56:36,299 [main] DEBUG DocWordWriter - ... 26 ms for shadding/merging/styling (rows) +2024-09-07 21:56:36,392 [main] DEBUG DocWordWriter - ... 93 ms for borders +2024-09-07 21:56:36,392 [main] DEBUG DocWordWriter - ... 391 ms for formatTable() +2024-09-07 21:56:36,404 [main] INFO DocWordWriter - ... 1767 ms total for insertTable() +2024-09-07 21:56:36,574 [main] INFO DocWordWriter - ... 161 ms for insertCaption(): Table 58 – Attributes of IEEE 1815 and IEC 60870-5 Agent::Summary +2024-09-07 21:56:36,620 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Summary.', [175290 - 175322] +2024-09-07 21:56:36,633 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Summary.', [175290 - 175323] +2024-09-07 21:56:36,640 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [175290 - 175290] +2024-09-07 21:56:36,660 [main] INFO DocWordWriter - ... 50 ms for insertCaptionRef() +2024-09-07 21:56:36,660 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:56:36,703 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML108' to Word document and to used list. +2024-09-07 21:56:36,779 [main] INFO DocWordWriter - --- insertTable() 9 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification +2024-09-07 21:56:36,809 [main] DEBUG DocWordWriter - ... 30 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:56:36,828 [main] DEBUG DocWordWriter - ... 19 ms for createTable() +2024-09-07 21:56:37,156 [main] DEBUG DocWordWriter - ... 328 ms for fillValues() +2024-09-07 21:56:37,181 [main] DEBUG DocWordWriter - ... 25 ms for widths (table) +2024-09-07 21:56:37,292 [main] DEBUG DocWordWriter - ... 111 ms for widths (columns) +2024-09-07 21:56:37,319 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-07 21:56:37,360 [main] DEBUG DocWordWriter - ... 41 ms for borders +2024-09-07 21:56:37,360 [main] DEBUG DocWordWriter - ... 204 ms for formatTable() +2024-09-07 21:56:37,370 [main] INFO DocWordWriter - ... 581 ms total for insertTable() +2024-09-07 21:56:37,528 [main] INFO DocWordWriter - ... 150 ms for insertCaption(): Table 59 – Attributes of IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification +2024-09-07 21:56:37,585 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of 60870andDNPSecurityNotification.', [179223 - 179279] +2024-09-07 21:56:37,597 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of 60870andDNPSecurityNotification.', [179223 - 179280] +2024-09-07 21:56:37,605 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [179223 - 179223] +2024-09-07 21:56:37,629 [main] INFO DocWordWriter - ... 61 ms for insertCaptionRef() +2024-09-07 21:56:37,629 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:56:37,680 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML109' to Word document and to used list. +2024-09-07 21:56:37,788 [main] INFO DocWordWriter - --- insertTable() 6 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification +2024-09-07 21:56:37,824 [main] DEBUG DocWordWriter - ... 36 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:56:37,851 [main] DEBUG DocWordWriter - ... 27 ms for createTable() +2024-09-07 21:56:38,123 [main] DEBUG DocWordWriter - ... 272 ms for fillValues() +2024-09-07 21:56:38,145 [main] DEBUG DocWordWriter - ... 22 ms for widths (table) +2024-09-07 21:56:38,236 [main] DEBUG DocWordWriter - ... 91 ms for widths (columns) +2024-09-07 21:56:38,259 [main] DEBUG DocWordWriter - ... 23 ms for shadding/merging/styling (rows) +2024-09-07 21:56:38,294 [main] DEBUG DocWordWriter - ... 35 ms for borders +2024-09-07 21:56:38,294 [main] DEBUG DocWordWriter - ... 171 ms for formatTable() +2024-09-07 21:56:38,306 [main] INFO DocWordWriter - ... 506 ms total for insertTable() +2024-09-07 21:56:38,449 [main] INFO DocWordWriter - ... 135 ms for insertCaption(): Table 60 – Attributes of IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification +2024-09-07 21:56:38,495 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of 60870andDNPNotification.', [180568 - 180616] +2024-09-07 21:56:38,507 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of 60870andDNPNotification.', [180568 - 180617] +2024-09-07 21:56:38,515 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [180568 - 180568] +2024-09-07 21:56:38,532 [main] INFO DocWordWriter - ... 47 ms for insertCaptionRef() +2024-09-07 21:56:38,532 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:56:38,574 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML96' to Word document and to used list. +2024-09-07 21:56:38,643 [main] INFO DocWordWriter - closing MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 21:56:40,563 [main] INFO DocWordWriter - opening MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 21:56:42,131 [main] INFO OptimOptions - setting view to normal +2024-09-07 21:56:42,278 [main] INFO OptimOptions - disabling pagination +2024-09-07 21:56:42,318 [main] INFO OptimOptions - disabling field update +2024-09-07 21:56:42,429 [main] INFO OptimOptions - disabling screen updating +2024-09-07 21:56:42,441 [main] DEBUG DocWordWriter - current(_optimisedOptions): OptimOptions [viewId=1, normView=true, paginate=false, updFld=false, updScr=false, fastSave=false, spelling=false, grammar=false] +2024-09-07 21:56:42,513 [main] INFO Util - time=[0:00:03.898] closed and reopened document. +2024-09-07 21:56:42,513 [main] INFO Util - +2024-09-07 21:56:42,560 [main] INFO DocWordWriter - --- insertTable() 50 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent::MasterAssociation +2024-09-07 21:56:42,588 [main] DEBUG DocWordWriter - ... 28 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:56:42,601 [main] DEBUG DocWordWriter - ... 13 ms for createTable() +2024-09-07 21:56:44,154 [main] DEBUG DocWordWriter - ... 1553 ms for fillValues() +2024-09-07 21:56:44,208 [main] DEBUG DocWordWriter - ... 54 ms for widths (table) +2024-09-07 21:56:44,493 [main] DEBUG DocWordWriter - ... 285 ms for widths (columns) +2024-09-07 21:56:44,521 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-07 21:56:44,635 [main] DEBUG DocWordWriter - ... 114 ms for borders +2024-09-07 21:56:44,635 [main] DEBUG DocWordWriter - ... 481 ms for formatTable() +2024-09-07 21:56:44,646 [main] INFO DocWordWriter - ... 2075 ms total for insertTable() +2024-09-07 21:56:44,693 [main] INFO DocWordWriter - ... 39 ms for insertCaption(): Table 61 – Attributes of IEEE 1815 and IEC 60870-5 Agent::MasterAssociation +2024-09-07 21:56:44,739 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of MasterAssociation.', [181358 - 181400] +2024-09-07 21:56:44,749 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of MasterAssociation.', [181358 - 181401] +2024-09-07 21:56:44,756 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [181358 - 181358] +2024-09-07 21:56:44,766 [main] INFO DocWordWriter - ... 37 ms for insertCaptionRef() +2024-09-07 21:56:44,766 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:56:44,853 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML97' to Word document and to used list. +2024-09-07 21:56:44,924 [main] INFO DocWordWriter - --- insertTable() 50 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent::OutstationAssociation +2024-09-07 21:56:44,948 [main] DEBUG DocWordWriter - ... 24 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:56:44,965 [main] DEBUG DocWordWriter - ... 17 ms for createTable() +2024-09-07 21:56:46,606 [main] DEBUG DocWordWriter - ... 1641 ms for fillValues() +2024-09-07 21:56:46,659 [main] DEBUG DocWordWriter - ... 53 ms for widths (table) +2024-09-07 21:56:46,933 [main] DEBUG DocWordWriter - ... 274 ms for widths (columns) +2024-09-07 21:56:46,961 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-07 21:56:47,075 [main] DEBUG DocWordWriter - ... 114 ms for borders +2024-09-07 21:56:47,076 [main] DEBUG DocWordWriter - ... 470 ms for formatTable() +2024-09-07 21:56:47,086 [main] INFO DocWordWriter - ... 2152 ms total for insertTable() +2024-09-07 21:56:47,138 [main] INFO DocWordWriter - ... 44 ms for insertCaption(): Table 62 – Attributes of IEEE 1815 and IEC 60870-5 Agent::OutstationAssociation +2024-09-07 21:56:47,184 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of OutstationAssociation.', [186436 - 186482] +2024-09-07 21:56:47,194 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of OutstationAssociation.', [186436 - 186483] +2024-09-07 21:56:47,200 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [186436 - 186436] +2024-09-07 21:56:47,212 [main] INFO DocWordWriter - ... 38 ms for insertCaptionRef() +2024-09-07 21:56:47,212 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:56:47,266 [main] INFO AbstractWordWriter - writing doc for package IEEE 1815 and IEC 60870-5 Agent - ed2 ... +2024-09-07 21:56:47,505 [main] INFO DocWordWriter - ... 24 ms for insertCaption(): Figure 21 – Class diagram IEEE 1815 and IEC 60870-5 Agent - ed2::IEEE 1815 and IEC 60870 Agent Relationships +2024-09-07 21:56:47,578 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes. Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.', [192740 - 193021] +2024-09-07 21:56:47,585 [main] TRACE DocWordWriter - prepend : range.txt = ': This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes. Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.', [192740 - 193021] +2024-09-07 21:56:47,591 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [192740 - 192740] +2024-09-07 21:56:47,602 [main] INFO DocWordWriter - ... 29 ms for insertCaptionRef() +2024-09-07 21:56:47,602 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:56:47,639 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML99' to Word document and to used list. +2024-09-07 21:56:47,715 [main] INFO DocWordWriter - --- insertTable() 46 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2 +2024-09-07 21:56:47,745 [main] DEBUG DocWordWriter - ... 30 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:56:47,767 [main] DEBUG DocWordWriter - ... 22 ms for createTable() +2024-09-07 21:56:49,278 [main] DEBUG DocWordWriter - ... 1511 ms for fillValues() +2024-09-07 21:56:49,329 [main] DEBUG DocWordWriter - ... 50 ms for widths (table) +2024-09-07 21:56:49,588 [main] DEBUG DocWordWriter - ... 259 ms for widths (columns) +2024-09-07 21:56:49,616 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-07 21:56:49,736 [main] DEBUG DocWordWriter - ... 120 ms for borders +2024-09-07 21:56:49,736 [main] DEBUG DocWordWriter - ... 458 ms for formatTable() +2024-09-07 21:56:49,746 [main] INFO DocWordWriter - ... 2021 ms total for insertTable() +2024-09-07 21:56:49,808 [main] INFO DocWordWriter - ... 54 ms for insertCaption(): Table 63 – Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2 +2024-09-07 21:56:49,858 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of 60870andDNPProtocolInfoEd2.', [193298 - 193349] +2024-09-07 21:56:49,868 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of 60870andDNPProtocolInfoEd2.', [193298 - 193350] +2024-09-07 21:56:49,876 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [193298 - 193298] +2024-09-07 21:56:49,888 [main] INFO DocWordWriter - ... 41 ms for insertCaptionRef() +2024-09-07 21:56:49,888 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:56:49,926 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML98' to Word document and to used list. +2024-09-07 21:56:49,998 [main] INFO DocWordWriter - --- insertTable() 27 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5 +2024-09-07 21:56:50,025 [main] DEBUG DocWordWriter - ... 27 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:56:50,044 [main] DEBUG DocWordWriter - ... 19 ms for createTable() +2024-09-07 21:56:50,966 [main] DEBUG DocWordWriter - ... 922 ms for fillValues() +2024-09-07 21:56:51,003 [main] DEBUG DocWordWriter - ... 37 ms for widths (table) +2024-09-07 21:56:51,183 [main] DEBUG DocWordWriter - ... 180 ms for widths (columns) +2024-09-07 21:56:51,210 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-07 21:56:51,283 [main] DEBUG DocWordWriter - ... 73 ms for borders +2024-09-07 21:56:51,283 [main] DEBUG DocWordWriter - ... 317 ms for formatTable() +2024-09-07 21:56:51,294 [main] INFO DocWordWriter - ... 1285 ms total for insertTable() +2024-09-07 21:56:51,356 [main] INFO DocWordWriter - ... 54 ms for insertCaption(): Table 64 – Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5 +2024-09-07 21:56:51,404 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of IEC62351part5.', [198090 - 198128] +2024-09-07 21:56:51,416 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of IEC62351part5.', [198090 - 198129] +2024-09-07 21:56:51,422 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [198090 - 198090] +2024-09-07 21:56:51,436 [main] INFO DocWordWriter - ... 43 ms for insertCaptionRef() +2024-09-07 21:56:51,436 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:56:51,476 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML100' to Word document and to used list. +2024-09-07 21:56:51,545 [main] INFO DocWordWriter - --- insertTable() 65 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::Association +2024-09-07 21:56:51,571 [main] DEBUG DocWordWriter - ... 26 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:56:51,610 [main] DEBUG DocWordWriter - ... 39 ms for createTable() +2024-09-07 21:56:53,832 [main] DEBUG DocWordWriter - ... 2222 ms for fillValues() +2024-09-07 21:56:53,894 [main] DEBUG DocWordWriter - ... 61 ms for widths (table) +2024-09-07 21:56:54,243 [main] DEBUG DocWordWriter - ... 349 ms for widths (columns) +2024-09-07 21:56:54,273 [main] DEBUG DocWordWriter - ... 30 ms for shadding/merging/styling (rows) +2024-09-07 21:56:54,421 [main] DEBUG DocWordWriter - ... 148 ms for borders +2024-09-07 21:56:54,421 [main] DEBUG DocWordWriter - ... 589 ms for formatTable() +2024-09-07 21:56:54,432 [main] INFO DocWordWriter - ... 2876 ms total for insertTable() +2024-09-07 21:56:54,518 [main] INFO DocWordWriter - ... 79 ms for insertCaption(): Table 65 – Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::Association +2024-09-07 21:56:54,568 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Association.', [201693 - 201729] +2024-09-07 21:56:54,580 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Association.', [201693 - 201730] +2024-09-07 21:56:54,587 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [201693 - 201693] +2024-09-07 21:56:54,600 [main] INFO DocWordWriter - ... 42 ms for insertCaptionRef() +2024-09-07 21:56:54,601 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:56:54,639 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML110' to Word document and to used list. +2024-09-07 21:56:54,712 [main] INFO DocWordWriter - --- insertTable() 52 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::Summary +2024-09-07 21:56:54,738 [main] DEBUG DocWordWriter - ... 26 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:56:54,782 [main] DEBUG DocWordWriter - ... 44 ms for createTable() +2024-09-07 21:56:56,611 [main] DEBUG DocWordWriter - ... 1829 ms for fillValues() +2024-09-07 21:56:56,664 [main] DEBUG DocWordWriter - ... 53 ms for widths (table) +2024-09-07 21:56:56,954 [main] DEBUG DocWordWriter - ... 290 ms for widths (columns) +2024-09-07 21:56:56,984 [main] DEBUG DocWordWriter - ... 30 ms for shadding/merging/styling (rows) +2024-09-07 21:56:57,104 [main] DEBUG DocWordWriter - ... 120 ms for borders +2024-09-07 21:56:57,104 [main] DEBUG DocWordWriter - ... 493 ms for formatTable() +2024-09-07 21:56:57,114 [main] INFO DocWordWriter - ... 2392 ms total for insertTable() +2024-09-07 21:56:57,210 [main] INFO DocWordWriter - ... 88 ms for insertCaption(): Table 66 – Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::Summary +2024-09-07 21:56:57,262 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Summary.', [208172 - 208204] +2024-09-07 21:56:57,273 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Summary.', [208172 - 208205] +2024-09-07 21:56:57,281 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [208172 - 208172] +2024-09-07 21:56:57,295 [main] INFO DocWordWriter - ... 44 ms for insertCaptionRef() +2024-09-07 21:56:57,296 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:56:57,335 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML111' to Word document and to used list. +2024-09-07 21:56:57,411 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2 +2024-09-07 21:56:57,440 [main] DEBUG DocWordWriter - ... 29 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:56:57,453 [main] DEBUG DocWordWriter - ... 13 ms for createTable() +2024-09-07 21:56:57,534 [main] DEBUG DocWordWriter - ... 81 ms for fillValues() +2024-09-07 21:56:57,554 [main] DEBUG DocWordWriter - ... 20 ms for widths (table) +2024-09-07 21:56:57,630 [main] DEBUG DocWordWriter - ... 76 ms for widths (columns) +2024-09-07 21:56:57,658 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-07 21:56:57,688 [main] DEBUG DocWordWriter - ... 30 ms for borders +2024-09-07 21:56:57,688 [main] DEBUG DocWordWriter - ... 154 ms for formatTable() +2024-09-07 21:56:57,699 [main] INFO DocWordWriter - ... 277 ms total for insertTable() +2024-09-07 21:56:57,783 [main] INFO DocWordWriter - ... 77 ms for insertCaption(): Table 67 – Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2 +2024-09-07 21:56:57,827 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of 60870andDNPSecurityNotificationEd2.', [213549 - 213608] +2024-09-07 21:56:57,838 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of 60870andDNPSecurityNotificationEd2.', [213549 - 213609] +2024-09-07 21:56:57,844 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [213549 - 213549] +2024-09-07 21:56:57,860 [main] INFO DocWordWriter - ... 43 ms for insertCaptionRef() +2024-09-07 21:56:57,860 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:56:57,898 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML112' to Word document and to used list. +2024-09-07 21:56:57,972 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2 +2024-09-07 21:56:58,000 [main] DEBUG DocWordWriter - ... 28 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:56:58,011 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 21:56:58,089 [main] DEBUG DocWordWriter - ... 78 ms for fillValues() +2024-09-07 21:56:58,109 [main] DEBUG DocWordWriter - ... 20 ms for widths (table) +2024-09-07 21:56:58,187 [main] DEBUG DocWordWriter - ... 78 ms for widths (columns) +2024-09-07 21:56:58,214 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-07 21:56:58,243 [main] DEBUG DocWordWriter - ... 29 ms for borders +2024-09-07 21:56:58,244 [main] DEBUG DocWordWriter - ... 155 ms for formatTable() +2024-09-07 21:56:58,254 [main] INFO DocWordWriter - ... 272 ms total for insertTable() +2024-09-07 21:56:58,349 [main] INFO DocWordWriter - ... 88 ms for insertCaption(): Table 68 – Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2 +2024-09-07 21:56:58,396 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of 60870andDNPNotificationEd2.', [214030 - 214081] +2024-09-07 21:56:58,408 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of 60870andDNPNotificationEd2.', [214030 - 214082] +2024-09-07 21:56:58,415 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [214030 - 214030] +2024-09-07 21:56:58,430 [main] INFO DocWordWriter - ... 45 ms for insertCaptionRef() +2024-09-07 21:56:58,431 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:56:58,479 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML101' to Word document and to used list. +2024-09-07 21:56:58,559 [main] INFO DocWordWriter - --- insertTable() 65 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::MasterAssociation +2024-09-07 21:56:58,588 [main] DEBUG DocWordWriter - ... 29 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:56:58,650 [main] DEBUG DocWordWriter - ... 62 ms for createTable() +2024-09-07 21:57:01,031 [main] DEBUG DocWordWriter - ... 2381 ms for fillValues() +2024-09-07 21:57:01,097 [main] DEBUG DocWordWriter - ... 66 ms for widths (table) +2024-09-07 21:57:01,514 [main] DEBUG DocWordWriter - ... 417 ms for widths (columns) +2024-09-07 21:57:01,543 [main] DEBUG DocWordWriter - ... 29 ms for shadding/merging/styling (rows) +2024-09-07 21:57:01,692 [main] DEBUG DocWordWriter - ... 149 ms for borders +2024-09-07 21:57:01,692 [main] DEBUG DocWordWriter - ... 661 ms for formatTable() +2024-09-07 21:57:01,704 [main] INFO DocWordWriter - ... 3133 ms total for insertTable() +2024-09-07 21:57:01,840 [main] INFO DocWordWriter - ... 129 ms for insertCaption(): Table 69 – Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::MasterAssociation +2024-09-07 21:57:01,893 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of MasterAssociation.', [214424 - 214466] +2024-09-07 21:57:01,905 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of MasterAssociation.', [214424 - 214467] +2024-09-07 21:57:01,911 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [214424 - 214424] +2024-09-07 21:57:01,928 [main] INFO DocWordWriter - ... 46 ms for insertCaptionRef() +2024-09-07 21:57:01,928 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:57:01,971 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML102' to Word document and to used list. +2024-09-07 21:57:02,050 [main] INFO DocWordWriter - --- insertTable() 65 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::OutstationAssociation +2024-09-07 21:57:02,078 [main] DEBUG DocWordWriter - ... 28 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:57:02,160 [main] DEBUG DocWordWriter - ... 82 ms for createTable() +2024-09-07 21:57:04,677 [main] DEBUG DocWordWriter - ... 2517 ms for fillValues() +2024-09-07 21:57:04,744 [main] DEBUG DocWordWriter - ... 67 ms for widths (table) +2024-09-07 21:57:05,110 [main] DEBUG DocWordWriter - ... 366 ms for widths (columns) +2024-09-07 21:57:05,141 [main] DEBUG DocWordWriter - ... 31 ms for shadding/merging/styling (rows) +2024-09-07 21:57:05,287 [main] DEBUG DocWordWriter - ... 146 ms for borders +2024-09-07 21:57:05,287 [main] DEBUG DocWordWriter - ... 610 ms for formatTable() +2024-09-07 21:57:05,298 [main] INFO DocWordWriter - ... 3237 ms total for insertTable() +2024-09-07 21:57:05,454 [main] INFO DocWordWriter - ... 148 ms for insertCaption(): Table 70 – Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::OutstationAssociation +2024-09-07 21:57:05,509 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of OutstationAssociation.', [220946 - 220992] +2024-09-07 21:57:05,522 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of OutstationAssociation.', [220946 - 220993] +2024-09-07 21:57:05,529 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [220946 - 220946] +2024-09-07 21:57:05,550 [main] INFO DocWordWriter - ... 52 ms for insertCaptionRef() +2024-09-07 21:57:05,550 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:57:05,602 [main] INFO AbstractWordWriter - writing doc for package IEC61850 Agent ... +2024-09-07 21:57:05,732 [main] INFO AbstractWordWriter - writing doc for package ACSI ... +2024-09-07 21:57:05,927 [main] INFO DocWordWriter - ... 58 ms for insertCaption(): Figure 22 – Class diagram ACSI::ACSI +2024-09-07 21:57:06,002 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': ACSI classes relationship. ACSI Summary inherit Security attributes from the more general classes.', [227895 - 227995] +2024-09-07 21:57:06,010 [main] TRACE DocWordWriter - prepend : range.txt = ': ACSI classes relationship. ACSI Summary inherit Security attributes from the more general classes.', [227895 - 227995] +2024-09-07 21:57:06,017 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [227895 - 227895] +2024-09-07 21:57:06,041 [main] INFO DocWordWriter - ... 44 ms for insertCaptionRef() +2024-09-07 21:57:06,042 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:57:06,089 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML113' to Word document and to used list. +2024-09-07 21:57:06,171 [main] INFO DocWordWriter - --- insertTable() 17 rows: Attributes of ACSI::ACSISummary +2024-09-07 21:57:06,200 [main] DEBUG DocWordWriter - ... 29 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:57:06,237 [main] DEBUG DocWordWriter - ... 37 ms for createTable() +2024-09-07 21:57:06,901 [main] DEBUG DocWordWriter - ... 664 ms for fillValues() +2024-09-07 21:57:06,933 [main] DEBUG DocWordWriter - ... 32 ms for widths (table) +2024-09-07 21:57:07,083 [main] DEBUG DocWordWriter - ... 150 ms for widths (columns) +2024-09-07 21:57:07,111 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-07 21:57:07,168 [main] DEBUG DocWordWriter - ... 57 ms for borders +2024-09-07 21:57:07,169 [main] DEBUG DocWordWriter - ... 268 ms for formatTable() +2024-09-07 21:57:07,180 [main] INFO DocWordWriter - ... 998 ms total for insertTable() +2024-09-07 21:57:07,337 [main] INFO DocWordWriter - ... 150 ms for insertCaption(): Table 71 – Attributes of ACSI::ACSISummary +2024-09-07 21:57:07,384 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of ACSISummary.', [228191 - 228227] +2024-09-07 21:57:07,398 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of ACSISummary.', [228191 - 228228] +2024-09-07 21:57:07,405 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [228191 - 228191] +2024-09-07 21:57:07,426 [main] INFO DocWordWriter - ... 52 ms for insertCaptionRef() +2024-09-07 21:57:07,426 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:57:07,477 [main] INFO AbstractWordWriter - writing doc for package MMS ... +2024-09-07 21:57:07,726 [main] INFO DocWordWriter - ... 69 ms for insertCaption(): Figure 23 – Class diagram MMS::MMS +2024-09-07 21:57:07,800 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': MMS classes relationship. MMS Provider and MMS Association inherit both Security and Procotol Info attributes from the more general classes.', [230392 - 230534] +2024-09-07 21:57:07,808 [main] TRACE DocWordWriter - prepend : range.txt = ': MMS classes relationship. MMS Provider and MMS Association inherit both Security and Procotol Info attributes from the more general classes.', [230392 - 230534] +2024-09-07 21:57:07,814 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [230392 - 230392] +2024-09-07 21:57:07,841 [main] INFO DocWordWriter - ... 45 ms for insertCaptionRef() +2024-09-07 21:57:07,841 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:57:07,892 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML103' to Word document and to used list. +2024-09-07 21:57:07,972 [main] INFO DocWordWriter - --- insertTable() 14 rows: Attributes of MMS::MMSProtocolInfo +2024-09-07 21:57:08,002 [main] DEBUG DocWordWriter - ... 30 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:57:08,036 [main] DEBUG DocWordWriter - ... 34 ms for createTable() +2024-09-07 21:57:08,626 [main] DEBUG DocWordWriter - ... 590 ms for fillValues() +2024-09-07 21:57:08,656 [main] DEBUG DocWordWriter - ... 30 ms for widths (table) +2024-09-07 21:57:08,794 [main] DEBUG DocWordWriter - ... 138 ms for widths (columns) +2024-09-07 21:57:08,821 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-07 21:57:08,875 [main] DEBUG DocWordWriter - ... 54 ms for borders +2024-09-07 21:57:08,875 [main] DEBUG DocWordWriter - ... 249 ms for formatTable() +2024-09-07 21:57:08,886 [main] INFO DocWordWriter - ... 903 ms total for insertTable() +2024-09-07 21:57:09,076 [main] INFO DocWordWriter - ... 181 ms for insertCaption(): Table 72 – Attributes of MMS::MMSProtocolInfo +2024-09-07 21:57:09,124 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of MMSProtocolInfo.', [230724 - 230764] +2024-09-07 21:57:09,136 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of MMSProtocolInfo.', [230724 - 230765] +2024-09-07 21:57:09,144 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [230724 - 230724] +2024-09-07 21:57:09,165 [main] INFO DocWordWriter - ... 52 ms for insertCaptionRef() +2024-09-07 21:57:09,165 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:57:09,211 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML114' to Word document and to used list. +2024-09-07 21:57:09,281 [main] INFO DocWordWriter - closing MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 21:57:11,619 [main] INFO DocWordWriter - opening MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 21:57:13,045 [main] INFO OptimOptions - setting view to normal +2024-09-07 21:57:13,103 [main] INFO OptimOptions - disabling pagination +2024-09-07 21:57:13,164 [main] INFO OptimOptions - disabling field update +2024-09-07 21:57:13,327 [main] INFO OptimOptions - disabling screen updating +2024-09-07 21:57:13,336 [main] DEBUG DocWordWriter - current(_optimisedOptions): OptimOptions [viewId=1, normView=true, paginate=false, updFld=false, updScr=false, fastSave=false, spelling=false, grammar=false] +2024-09-07 21:57:13,412 [main] INFO Util - time=[0:00:04.156] closed and reopened document. +2024-09-07 21:57:13,412 [main] INFO Util - +2024-09-07 21:57:13,453 [main] INFO DocWordWriter - --- insertTable() 32 rows: Attributes of MMS::MMSProvider +2024-09-07 21:57:13,485 [main] DEBUG DocWordWriter - ... 32 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:57:13,500 [main] DEBUG DocWordWriter - ... 15 ms for createTable() +2024-09-07 21:57:14,563 [main] DEBUG DocWordWriter - ... 1063 ms for fillValues() +2024-09-07 21:57:14,604 [main] DEBUG DocWordWriter - ... 41 ms for widths (table) +2024-09-07 21:57:14,807 [main] DEBUG DocWordWriter - ... 203 ms for widths (columns) +2024-09-07 21:57:14,835 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-07 21:57:14,918 [main] DEBUG DocWordWriter - ... 83 ms for borders +2024-09-07 21:57:14,918 [main] DEBUG DocWordWriter - ... 355 ms for formatTable() +2024-09-07 21:57:14,928 [main] INFO DocWordWriter - ... 1465 ms total for insertTable() +2024-09-07 21:57:14,969 [main] INFO DocWordWriter - ... 32 ms for insertCaption(): Table 73 – Attributes of MMS::MMSProvider +2024-09-07 21:57:15,020 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of MMSProvider.', [233231 - 233267] +2024-09-07 21:57:15,031 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of MMSProvider.', [233231 - 233268] +2024-09-07 21:57:15,038 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [233231 - 233231] +2024-09-07 21:57:15,049 [main] INFO DocWordWriter - ... 40 ms for insertCaptionRef() +2024-09-07 21:57:15,049 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:57:15,169 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML104' to Word document and to used list. +2024-09-07 21:57:15,240 [main] INFO DocWordWriter - --- insertTable() 36 rows: Attributes of MMS::MMSAssociation +2024-09-07 21:57:15,268 [main] DEBUG DocWordWriter - ... 28 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:57:15,282 [main] DEBUG DocWordWriter - ... 14 ms for createTable() +2024-09-07 21:57:16,513 [main] DEBUG DocWordWriter - ... 1231 ms for fillValues() +2024-09-07 21:57:16,562 [main] DEBUG DocWordWriter - ... 49 ms for widths (table) +2024-09-07 21:57:16,784 [main] DEBUG DocWordWriter - ... 222 ms for widths (columns) +2024-09-07 21:57:16,812 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-07 21:57:16,902 [main] DEBUG DocWordWriter - ... 90 ms for borders +2024-09-07 21:57:16,902 [main] DEBUG DocWordWriter - ... 389 ms for formatTable() +2024-09-07 21:57:16,913 [main] INFO DocWordWriter - ... 1662 ms total for insertTable() +2024-09-07 21:57:16,961 [main] INFO DocWordWriter - ... 39 ms for insertCaption(): Table 74 – Attributes of MMS::MMSAssociation +2024-09-07 21:57:17,010 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of MMSAssociation.', [236849 - 236888] +2024-09-07 21:57:17,021 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of MMSAssociation.', [236849 - 236889] +2024-09-07 21:57:17,029 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [236849 - 236849] +2024-09-07 21:57:17,039 [main] INFO DocWordWriter - ... 40 ms for insertCaptionRef() +2024-09-07 21:57:17,039 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:57:17,077 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML115' to Word document and to used list. +2024-09-07 21:57:17,148 [main] INFO DocWordWriter - --- insertTable() 5 rows: Attributes of MMS::MMSSecurityNotification +2024-09-07 21:57:17,176 [main] DEBUG DocWordWriter - ... 28 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:57:17,187 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 21:57:17,368 [main] DEBUG DocWordWriter - ... 181 ms for fillValues() +2024-09-07 21:57:17,390 [main] DEBUG DocWordWriter - ... 22 ms for widths (table) +2024-09-07 21:57:17,479 [main] DEBUG DocWordWriter - ... 89 ms for widths (columns) +2024-09-07 21:57:17,504 [main] DEBUG DocWordWriter - ... 25 ms for shadding/merging/styling (rows) +2024-09-07 21:57:17,540 [main] DEBUG DocWordWriter - ... 36 ms for borders +2024-09-07 21:57:17,540 [main] DEBUG DocWordWriter - ... 172 ms for formatTable() +2024-09-07 21:57:17,550 [main] INFO DocWordWriter - ... 392 ms total for insertTable() +2024-09-07 21:57:17,592 [main] INFO DocWordWriter - ... 34 ms for insertCaption(): Table 75 – Attributes of MMS::MMSSecurityNotification +2024-09-07 21:57:17,640 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of MMSSecurityNotification.', [240744 - 240792] +2024-09-07 21:57:17,650 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of MMSSecurityNotification.', [240744 - 240793] +2024-09-07 21:57:17,658 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [240744 - 240744] +2024-09-07 21:57:17,671 [main] INFO DocWordWriter - ... 43 ms for insertCaptionRef() +2024-09-07 21:57:17,671 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:57:17,710 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML116' to Word document and to used list. +2024-09-07 21:57:17,780 [main] INFO DocWordWriter - --- insertTable() 5 rows: Attributes of MMS::MMSNotification +2024-09-07 21:57:17,807 [main] DEBUG DocWordWriter - ... 27 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:57:17,817 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-07 21:57:17,992 [main] DEBUG DocWordWriter - ... 175 ms for fillValues() +2024-09-07 21:57:18,015 [main] DEBUG DocWordWriter - ... 23 ms for widths (table) +2024-09-07 21:57:18,101 [main] DEBUG DocWordWriter - ... 86 ms for widths (columns) +2024-09-07 21:57:18,126 [main] DEBUG DocWordWriter - ... 25 ms for shadding/merging/styling (rows) +2024-09-07 21:57:18,158 [main] DEBUG DocWordWriter - ... 32 ms for borders +2024-09-07 21:57:18,159 [main] DEBUG DocWordWriter - ... 167 ms for formatTable() +2024-09-07 21:57:18,170 [main] INFO DocWordWriter - ... 379 ms total for insertTable() +2024-09-07 21:57:18,217 [main] INFO DocWordWriter - ... 39 ms for insertCaption(): Table 76 – Attributes of MMS::MMSNotification +2024-09-07 21:57:18,263 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of MMSNotification.', [241527 - 241567] +2024-09-07 21:57:18,274 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of MMSNotification.', [241527 - 241568] +2024-09-07 21:57:18,281 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [241527 - 241527] +2024-09-07 21:57:18,292 [main] INFO DocWordWriter - ... 40 ms for insertCaptionRef() +2024-09-07 21:57:18,292 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:57:18,342 [main] INFO AbstractWordWriter - writing doc for package SV and GSE common objects ... +2024-09-07 21:57:18,506 [main] INFO DocWordWriter - ... 26 ms for insertCaption(): Figure 24 – Class diagram SV and GSE common objects::SV and GSE common objects +2024-09-07 21:57:18,579 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': GSE/SV common classes relationship.', [242418 - 242455] +2024-09-07 21:57:18,586 [main] TRACE DocWordWriter - prepend : range.txt = ': GSE/SV common classes relationship.', [242418 - 242455] +2024-09-07 21:57:18,593 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [242418 - 242418] +2024-09-07 21:57:18,607 [main] INFO DocWordWriter - ... 33 ms for insertCaptionRef() +2024-09-07 21:57:18,607 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:57:18,647 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML117' to Word document and to used list. +2024-09-07 21:57:18,727 [main] INFO DocWordWriter - --- insertTable() 4 rows: Attributes of SV and GSE common objects::GSEandSVCommon +2024-09-07 21:57:18,758 [main] DEBUG DocWordWriter - ... 31 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:57:18,768 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-07 21:57:18,910 [main] DEBUG DocWordWriter - ... 142 ms for fillValues() +2024-09-07 21:57:18,930 [main] DEBUG DocWordWriter - ... 20 ms for widths (table) +2024-09-07 21:57:19,014 [main] DEBUG DocWordWriter - ... 84 ms for widths (columns) +2024-09-07 21:57:19,038 [main] DEBUG DocWordWriter - ... 24 ms for shadding/merging/styling (rows) +2024-09-07 21:57:19,069 [main] DEBUG DocWordWriter - ... 31 ms for borders +2024-09-07 21:57:19,069 [main] DEBUG DocWordWriter - ... 159 ms for formatTable() +2024-09-07 21:57:19,080 [main] INFO DocWordWriter - ... 342 ms total for insertTable() +2024-09-07 21:57:19,133 [main] INFO DocWordWriter - ... 45 ms for insertCaption(): Table 77 – Attributes of SV and GSE common objects::GSEandSVCommon +2024-09-07 21:57:19,177 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of GSEandSVCommon.', [242625 - 242664] +2024-09-07 21:57:19,188 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of GSEandSVCommon.', [242625 - 242665] +2024-09-07 21:57:19,195 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [242625 - 242625] +2024-09-07 21:57:19,205 [main] INFO DocWordWriter - ... 38 ms for insertCaptionRef() +2024-09-07 21:57:19,206 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:57:19,245 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML118' to Word document and to used list. +2024-09-07 21:57:19,318 [main] INFO DocWordWriter - --- insertTable() 9 rows: Attributes of SV and GSE common objects::GSEandSVPublisherAssociation +2024-09-07 21:57:19,345 [main] DEBUG DocWordWriter - ... 27 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:57:19,358 [main] DEBUG DocWordWriter - ... 13 ms for createTable() +2024-09-07 21:57:19,673 [main] DEBUG DocWordWriter - ... 315 ms for fillValues() +2024-09-07 21:57:19,699 [main] DEBUG DocWordWriter - ... 25 ms for widths (table) +2024-09-07 21:57:19,820 [main] DEBUG DocWordWriter - ... 121 ms for widths (columns) +2024-09-07 21:57:19,847 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-07 21:57:19,888 [main] DEBUG DocWordWriter - ... 41 ms for borders +2024-09-07 21:57:19,888 [main] DEBUG DocWordWriter - ... 215 ms for formatTable() +2024-09-07 21:57:19,899 [main] INFO DocWordWriter - ... 570 ms total for insertTable() +2024-09-07 21:57:19,962 [main] INFO DocWordWriter - ... 55 ms for insertCaption(): Table 78 – Attributes of SV and GSE common objects::GSEandSVPublisherAssociation +2024-09-07 21:57:20,009 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of GSEandSVPublisherAssociation.', [243342 - 243395] +2024-09-07 21:57:20,021 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of GSEandSVPublisherAssociation.', [243342 - 243396] +2024-09-07 21:57:20,028 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [243342 - 243342] +2024-09-07 21:57:20,040 [main] INFO DocWordWriter - ... 42 ms for insertCaptionRef() +2024-09-07 21:57:20,040 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:57:20,079 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML123' to Word document and to used list. +2024-09-07 21:57:20,155 [main] INFO DocWordWriter - --- insertTable() 11 rows: Attributes of SV and GSE common objects::GSEandSVSubscriberAssociation +2024-09-07 21:57:20,184 [main] DEBUG DocWordWriter - ... 29 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:57:20,198 [main] DEBUG DocWordWriter - ... 14 ms for createTable() +2024-09-07 21:57:20,587 [main] DEBUG DocWordWriter - ... 389 ms for fillValues() +2024-09-07 21:57:20,615 [main] DEBUG DocWordWriter - ... 27 ms for widths (table) +2024-09-07 21:57:20,736 [main] DEBUG DocWordWriter - ... 121 ms for widths (columns) +2024-09-07 21:57:20,762 [main] DEBUG DocWordWriter - ... 26 ms for shadding/merging/styling (rows) +2024-09-07 21:57:20,807 [main] DEBUG DocWordWriter - ... 45 ms for borders +2024-09-07 21:57:20,807 [main] DEBUG DocWordWriter - ... 220 ms for formatTable() +2024-09-07 21:57:20,818 [main] INFO DocWordWriter - ... 652 ms total for insertTable() +2024-09-07 21:57:20,898 [main] INFO DocWordWriter - ... 72 ms for insertCaption(): Table 79 – Attributes of SV and GSE common objects::GSEandSVSubscriberAssociation +2024-09-07 21:57:20,948 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of GSEandSVSubscriberAssociation.', [244540 - 244594] +2024-09-07 21:57:20,960 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of GSEandSVSubscriberAssociation.', [244540 - 244595] +2024-09-07 21:57:20,967 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [244540 - 244540] +2024-09-07 21:57:20,978 [main] INFO DocWordWriter - ... 41 ms for insertCaptionRef() +2024-09-07 21:57:20,979 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:57:21,026 [main] INFO AbstractWordWriter - writing doc for package SV ... +2024-09-07 21:57:21,218 [main] INFO DocWordWriter - ... 32 ms for insertCaption(): Figure 25 – Class diagram SV::SV +2024-09-07 21:57:21,295 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': SV classes relationship. SVProvider and SVAssociation inherit both Security and Procotol Info attributes from the more general classes.', [246153 - 246290] +2024-09-07 21:57:21,302 [main] TRACE DocWordWriter - prepend : range.txt = ': SV classes relationship. SVProvider and SVAssociation inherit both Security and Procotol Info attributes from the more general classes.', [246153 - 246290] +2024-09-07 21:57:21,310 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [246153 - 246153] +2024-09-07 21:57:21,324 [main] INFO DocWordWriter - ... 36 ms for insertCaptionRef() +2024-09-07 21:57:21,324 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:57:21,366 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML129' to Word document and to used list. +2024-09-07 21:57:21,445 [main] INFO DocWordWriter - --- insertTable() 12 rows: Attributes of SV::SVProvider +2024-09-07 21:57:21,472 [main] DEBUG DocWordWriter - ... 27 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:57:21,487 [main] DEBUG DocWordWriter - ... 15 ms for createTable() +2024-09-07 21:57:21,920 [main] DEBUG DocWordWriter - ... 433 ms for fillValues() +2024-09-07 21:57:21,952 [main] DEBUG DocWordWriter - ... 32 ms for widths (table) +2024-09-07 21:57:22,076 [main] DEBUG DocWordWriter - ... 124 ms for widths (columns) +2024-09-07 21:57:22,103 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-07 21:57:22,150 [main] DEBUG DocWordWriter - ... 47 ms for borders +2024-09-07 21:57:22,150 [main] DEBUG DocWordWriter - ... 230 ms for formatTable() +2024-09-07 21:57:22,160 [main] INFO DocWordWriter - ... 705 ms total for insertTable() +2024-09-07 21:57:22,238 [main] INFO DocWordWriter - ... 70 ms for insertCaption(): Table 80 – Attributes of SV::SVProvider +2024-09-07 21:57:22,286 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of SVProvider.', [246491 - 246526] +2024-09-07 21:57:22,298 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of SVProvider.', [246491 - 246527] +2024-09-07 21:57:22,306 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [246491 - 246491] +2024-09-07 21:57:22,318 [main] INFO DocWordWriter - ... 42 ms for insertCaptionRef() +2024-09-07 21:57:22,318 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:57:22,358 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML119' to Word document and to used list. +2024-09-07 21:57:22,441 [main] INFO DocWordWriter - --- insertTable() 11 rows: Attributes of SV::SVPublisherAssociationIP +2024-09-07 21:57:22,469 [main] DEBUG DocWordWriter - ... 28 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:57:22,484 [main] DEBUG DocWordWriter - ... 15 ms for createTable() +2024-09-07 21:57:22,886 [main] DEBUG DocWordWriter - ... 402 ms for fillValues() +2024-09-07 21:57:22,913 [main] DEBUG DocWordWriter - ... 27 ms for widths (table) +2024-09-07 21:57:23,046 [main] DEBUG DocWordWriter - ... 133 ms for widths (columns) +2024-09-07 21:57:23,072 [main] DEBUG DocWordWriter - ... 26 ms for shadding/merging/styling (rows) +2024-09-07 21:57:23,116 [main] DEBUG DocWordWriter - ... 44 ms for borders +2024-09-07 21:57:23,116 [main] DEBUG DocWordWriter - ... 230 ms for formatTable() +2024-09-07 21:57:23,128 [main] INFO DocWordWriter - ... 675 ms total for insertTable() +2024-09-07 21:57:23,212 [main] INFO DocWordWriter - ... 76 ms for insertCaption(): Table 81 – Attributes of SV::SVPublisherAssociationIP +2024-09-07 21:57:23,264 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of SVPublisherAssociationIP.', [248341 - 248390] +2024-09-07 21:57:23,275 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of SVPublisherAssociationIP.', [248341 - 248391] +2024-09-07 21:57:23,283 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [248341 - 248341] +2024-09-07 21:57:23,296 [main] INFO DocWordWriter - ... 43 ms for insertCaptionRef() +2024-09-07 21:57:23,296 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:57:23,336 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML120' to Word document and to used list. +2024-09-07 21:57:23,415 [main] INFO DocWordWriter - --- insertTable() 10 rows: Attributes of SV::SVPublisherAssociationL2 +2024-09-07 21:57:23,445 [main] DEBUG DocWordWriter - ... 30 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:57:23,460 [main] DEBUG DocWordWriter - ... 15 ms for createTable() +2024-09-07 21:57:23,828 [main] DEBUG DocWordWriter - ... 368 ms for fillValues() +2024-09-07 21:57:23,854 [main] DEBUG DocWordWriter - ... 26 ms for widths (table) +2024-09-07 21:57:23,970 [main] DEBUG DocWordWriter - ... 116 ms for widths (columns) +2024-09-07 21:57:23,998 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-07 21:57:24,042 [main] DEBUG DocWordWriter - ... 44 ms for borders +2024-09-07 21:57:24,042 [main] DEBUG DocWordWriter - ... 214 ms for formatTable() +2024-09-07 21:57:24,055 [main] INFO DocWordWriter - ... 627 ms total for insertTable() +2024-09-07 21:57:24,161 [main] INFO DocWordWriter - ... 97 ms for insertCaption(): Table 82 – Attributes of SV::SVPublisherAssociationL2 +2024-09-07 21:57:24,211 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of SVPublisherAssociationL2.', [249799 - 249848] +2024-09-07 21:57:24,223 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of SVPublisherAssociationL2.', [249799 - 249849] +2024-09-07 21:57:24,230 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [249799 - 249799] +2024-09-07 21:57:24,242 [main] INFO DocWordWriter - ... 42 ms for insertCaptionRef() +2024-09-07 21:57:24,242 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:57:24,284 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML124' to Word document and to used list. +2024-09-07 21:57:24,363 [main] INFO DocWordWriter - --- insertTable() 13 rows: Attributes of SV::SVSubcriberAssociationIP +2024-09-07 21:57:24,393 [main] DEBUG DocWordWriter - ... 30 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:57:24,410 [main] DEBUG DocWordWriter - ... 17 ms for createTable() +2024-09-07 21:57:24,880 [main] DEBUG DocWordWriter - ... 470 ms for fillValues() +2024-09-07 21:57:24,908 [main] DEBUG DocWordWriter - ... 28 ms for widths (table) +2024-09-07 21:57:25,037 [main] DEBUG DocWordWriter - ... 129 ms for widths (columns) +2024-09-07 21:57:25,064 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-07 21:57:25,115 [main] DEBUG DocWordWriter - ... 51 ms for borders +2024-09-07 21:57:25,115 [main] DEBUG DocWordWriter - ... 235 ms for formatTable() +2024-09-07 21:57:25,128 [main] INFO DocWordWriter - ... 752 ms total for insertTable() +2024-09-07 21:57:25,238 [main] INFO DocWordWriter - ... 101 ms for insertCaption(): Table 83 – Attributes of SV::SVSubcriberAssociationIP +2024-09-07 21:57:25,288 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of SVSubcriberAssociationIP.', [251221 - 251270] +2024-09-07 21:57:25,300 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of SVSubcriberAssociationIP.', [251221 - 251271] +2024-09-07 21:57:25,307 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [251221 - 251221] +2024-09-07 21:57:25,320 [main] INFO DocWordWriter - ... 44 ms for insertCaptionRef() +2024-09-07 21:57:25,320 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:57:25,363 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML125' to Word document and to used list. +2024-09-07 21:57:25,443 [main] INFO DocWordWriter - --- insertTable() 12 rows: Attributes of SV::SVSubcriberAssociationL2 +2024-09-07 21:57:25,472 [main] DEBUG DocWordWriter - ... 29 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:57:25,489 [main] DEBUG DocWordWriter - ... 17 ms for createTable() +2024-09-07 21:57:25,934 [main] DEBUG DocWordWriter - ... 445 ms for fillValues() +2024-09-07 21:57:25,962 [main] DEBUG DocWordWriter - ... 28 ms for widths (table) +2024-09-07 21:57:26,089 [main] DEBUG DocWordWriter - ... 127 ms for widths (columns) +2024-09-07 21:57:26,116 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-07 21:57:26,164 [main] DEBUG DocWordWriter - ... 48 ms for borders +2024-09-07 21:57:26,164 [main] DEBUG DocWordWriter - ... 230 ms for formatTable() +2024-09-07 21:57:26,175 [main] INFO DocWordWriter - ... 721 ms total for insertTable() +2024-09-07 21:57:26,301 [main] INFO DocWordWriter - ... 117 ms for insertCaption(): Table 84 – Attributes of SV::SVSubcriberAssociationL2 +2024-09-07 21:57:26,351 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of SVSubcriberAssociationL2.', [252904 - 252953] +2024-09-07 21:57:26,363 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of SVSubcriberAssociationL2.', [252904 - 252954] +2024-09-07 21:57:26,370 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [252904 - 252904] +2024-09-07 21:57:26,383 [main] INFO DocWordWriter - ... 43 ms for insertCaptionRef() +2024-09-07 21:57:26,383 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:57:26,426 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML130' to Word document and to used list. +2024-09-07 21:57:26,494 [main] INFO DocWordWriter - closing MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 21:57:28,866 [main] INFO DocWordWriter - opening MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 21:57:30,465 [main] INFO OptimOptions - setting view to normal +2024-09-07 21:57:30,596 [main] INFO OptimOptions - disabling pagination +2024-09-07 21:57:30,631 [main] INFO OptimOptions - disabling field update +2024-09-07 21:57:30,759 [main] INFO OptimOptions - disabling screen updating +2024-09-07 21:57:30,769 [main] DEBUG DocWordWriter - current(_optimisedOptions): OptimOptions [viewId=1, normView=true, paginate=false, updFld=false, updScr=false, fastSave=false, spelling=false, grammar=false] +2024-09-07 21:57:30,829 [main] INFO Util - time=[0:00:04.363] closed and reopened document. +2024-09-07 21:57:30,830 [main] INFO Util - +2024-09-07 21:57:30,878 [main] INFO DocWordWriter - --- insertTable() 4 rows: Attributes of SV::SVNotification +2024-09-07 21:57:30,906 [main] DEBUG DocWordWriter - ... 28 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:57:30,915 [main] DEBUG DocWordWriter - ... 9 ms for createTable() +2024-09-07 21:57:31,058 [main] DEBUG DocWordWriter - ... 143 ms for fillValues() +2024-09-07 21:57:31,084 [main] DEBUG DocWordWriter - ... 26 ms for widths (table) +2024-09-07 21:57:31,171 [main] DEBUG DocWordWriter - ... 87 ms for widths (columns) +2024-09-07 21:57:31,197 [main] DEBUG DocWordWriter - ... 26 ms for shadding/merging/styling (rows) +2024-09-07 21:57:31,230 [main] DEBUG DocWordWriter - ... 33 ms for borders +2024-09-07 21:57:31,230 [main] DEBUG DocWordWriter - ... 172 ms for formatTable() +2024-09-07 21:57:31,242 [main] INFO DocWordWriter - ... 352 ms total for insertTable() +2024-09-07 21:57:31,273 [main] INFO DocWordWriter - ... 23 ms for insertCaption(): Table 85 – Attributes of SV::SVNotification +2024-09-07 21:57:31,317 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of SVNotification.', [254420 - 254459] +2024-09-07 21:57:31,327 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of SVNotification.', [254420 - 254460] +2024-09-07 21:57:31,334 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [254420 - 254420] +2024-09-07 21:57:31,343 [main] INFO DocWordWriter - ... 36 ms for insertCaptionRef() +2024-09-07 21:57:31,344 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:57:31,485 [main] INFO AbstractWordWriter - writing doc for package GSE ... +2024-09-07 21:57:31,675 [main] INFO DocWordWriter - ... 23 ms for insertCaption(): Figure 26 – Class diagram GSE::GSE +2024-09-07 21:57:31,747 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': GSE classes relationship. GSEProvider and GSEAssociation inherit both Security and Procotol Info attributes from the more general classes.', [255196 - 255336] +2024-09-07 21:57:31,770 [main] TRACE DocWordWriter - prepend : range.txt = ': GSE classes relationship. GSEProvider and GSEAssociation inherit both Security and Procotol Info attributes from the more general classes.', [255196 - 255336] +2024-09-07 21:57:31,779 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [255196 - 255196] +2024-09-07 21:57:31,790 [main] INFO DocWordWriter - ... 48 ms for insertCaptionRef() +2024-09-07 21:57:31,790 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:57:31,830 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML126' to Word document and to used list. +2024-09-07 21:57:31,907 [main] INFO DocWordWriter - --- insertTable() 27 rows: Attributes of GSE::GSESubscriberAssociation +2024-09-07 21:57:31,937 [main] DEBUG DocWordWriter - ... 30 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:57:31,949 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-07 21:57:32,901 [main] DEBUG DocWordWriter - ... 951 ms for fillValues() +2024-09-07 21:57:32,938 [main] DEBUG DocWordWriter - ... 37 ms for widths (table) +2024-09-07 21:57:33,119 [main] DEBUG DocWordWriter - ... 181 ms for widths (columns) +2024-09-07 21:57:33,146 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-07 21:57:33,221 [main] DEBUG DocWordWriter - ... 75 ms for borders +2024-09-07 21:57:33,221 [main] DEBUG DocWordWriter - ... 321 ms for formatTable() +2024-09-07 21:57:33,234 [main] INFO DocWordWriter - ... 1314 ms total for insertTable() +2024-09-07 21:57:33,278 [main] INFO DocWordWriter - ... 37 ms for insertCaption(): Table 86 – Attributes of GSE::GSESubscriberAssociation +2024-09-07 21:57:33,327 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of GSESubscriberAssociation.', [255523 - 255572] +2024-09-07 21:57:33,339 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of GSESubscriberAssociation.', [255523 - 255573] +2024-09-07 21:57:33,346 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [255523 - 255523] +2024-09-07 21:57:33,357 [main] INFO DocWordWriter - ... 41 ms for insertCaptionRef() +2024-09-07 21:57:33,357 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:57:33,396 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML131' to Word document and to used list. +2024-09-07 21:57:33,471 [main] INFO DocWordWriter - --- insertTable() 13 rows: Attributes of GSE::GSEProvider +2024-09-07 21:57:33,498 [main] DEBUG DocWordWriter - ... 27 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:57:33,509 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 21:57:33,976 [main] DEBUG DocWordWriter - ... 467 ms for fillValues() +2024-09-07 21:57:34,004 [main] DEBUG DocWordWriter - ... 28 ms for widths (table) +2024-09-07 21:57:34,133 [main] DEBUG DocWordWriter - ... 129 ms for widths (columns) +2024-09-07 21:57:34,160 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-07 21:57:34,209 [main] DEBUG DocWordWriter - ... 49 ms for borders +2024-09-07 21:57:34,209 [main] DEBUG DocWordWriter - ... 233 ms for formatTable() +2024-09-07 21:57:34,221 [main] INFO DocWordWriter - ... 738 ms total for insertTable() +2024-09-07 21:57:34,268 [main] INFO DocWordWriter - ... 39 ms for insertCaption(): Table 87 – Attributes of GSE::GSEProvider +2024-09-07 21:57:34,317 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of GSEProvider.', [258531 - 258567] +2024-09-07 21:57:34,329 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of GSEProvider.', [258531 - 258568] +2024-09-07 21:57:34,336 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [258531 - 258531] +2024-09-07 21:57:34,347 [main] INFO DocWordWriter - ... 42 ms for insertCaptionRef() +2024-09-07 21:57:34,347 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:57:34,388 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML121' to Word document and to used list. +2024-09-07 21:57:34,465 [main] INFO DocWordWriter - --- insertTable() 11 rows: Attributes of GSE::GSEPublisherAssociationIP +2024-09-07 21:57:34,493 [main] DEBUG DocWordWriter - ... 28 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:57:34,505 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-07 21:57:34,901 [main] DEBUG DocWordWriter - ... 396 ms for fillValues() +2024-09-07 21:57:34,934 [main] DEBUG DocWordWriter - ... 33 ms for widths (table) +2024-09-07 21:57:35,051 [main] DEBUG DocWordWriter - ... 117 ms for widths (columns) +2024-09-07 21:57:35,079 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-07 21:57:35,125 [main] DEBUG DocWordWriter - ... 46 ms for borders +2024-09-07 21:57:35,125 [main] DEBUG DocWordWriter - ... 224 ms for formatTable() +2024-09-07 21:57:35,137 [main] INFO DocWordWriter - ... 660 ms total for insertTable() +2024-09-07 21:57:35,190 [main] INFO DocWordWriter - ... 46 ms for insertCaption(): Table 88 – Attributes of GSE::GSEPublisherAssociationIP +2024-09-07 21:57:35,239 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of GSEPublisherAssociationIP.', [260550 - 260600] +2024-09-07 21:57:35,251 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of GSEPublisherAssociationIP.', [260550 - 260601] +2024-09-07 21:57:35,258 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [260550 - 260550] +2024-09-07 21:57:35,269 [main] INFO DocWordWriter - ... 41 ms for insertCaptionRef() +2024-09-07 21:57:35,269 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:57:35,310 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML122' to Word document and to used list. +2024-09-07 21:57:35,391 [main] INFO DocWordWriter - --- insertTable() 11 rows: Attributes of GSE::GSEPublisherAssociationL2 +2024-09-07 21:57:35,420 [main] DEBUG DocWordWriter - ... 29 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:57:35,433 [main] DEBUG DocWordWriter - ... 13 ms for createTable() +2024-09-07 21:57:35,839 [main] DEBUG DocWordWriter - ... 406 ms for fillValues() +2024-09-07 21:57:35,866 [main] DEBUG DocWordWriter - ... 27 ms for widths (table) +2024-09-07 21:57:35,994 [main] DEBUG DocWordWriter - ... 128 ms for widths (columns) +2024-09-07 21:57:36,032 [main] DEBUG DocWordWriter - ... 38 ms for shadding/merging/styling (rows) +2024-09-07 21:57:36,077 [main] DEBUG DocWordWriter - ... 45 ms for borders +2024-09-07 21:57:36,077 [main] DEBUG DocWordWriter - ... 238 ms for formatTable() +2024-09-07 21:57:36,088 [main] INFO DocWordWriter - ... 686 ms total for insertTable() +2024-09-07 21:57:36,152 [main] INFO DocWordWriter - ... 57 ms for insertCaption(): Table 89 – Attributes of GSE::GSEPublisherAssociationL2 +2024-09-07 21:57:36,202 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of GSEPublisherAssociationL2.', [262013 - 262063] +2024-09-07 21:57:36,214 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of GSEPublisherAssociationL2.', [262013 - 262064] +2024-09-07 21:57:36,223 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [262013 - 262013] +2024-09-07 21:57:36,234 [main] INFO DocWordWriter - ... 43 ms for insertCaptionRef() +2024-09-07 21:57:36,234 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:57:36,276 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML127' to Word document and to used list. +2024-09-07 21:57:36,353 [main] INFO DocWordWriter - --- insertTable() 29 rows: Attributes of GSE::GSESubcriberAssociationIP +2024-09-07 21:57:36,383 [main] DEBUG DocWordWriter - ... 30 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:57:36,400 [main] DEBUG DocWordWriter - ... 17 ms for createTable() +2024-09-07 21:57:37,467 [main] DEBUG DocWordWriter - ... 1067 ms for fillValues() +2024-09-07 21:57:37,507 [main] DEBUG DocWordWriter - ... 39 ms for widths (table) +2024-09-07 21:57:37,701 [main] DEBUG DocWordWriter - ... 194 ms for widths (columns) +2024-09-07 21:57:37,730 [main] DEBUG DocWordWriter - ... 29 ms for shadding/merging/styling (rows) +2024-09-07 21:57:37,810 [main] DEBUG DocWordWriter - ... 80 ms for borders +2024-09-07 21:57:37,810 [main] DEBUG DocWordWriter - ... 343 ms for formatTable() +2024-09-07 21:57:37,821 [main] INFO DocWordWriter - ... 1457 ms total for insertTable() +2024-09-07 21:57:37,899 [main] INFO DocWordWriter - ... 70 ms for insertCaption(): Table 90 – Attributes of GSE::GSESubcriberAssociationIP +2024-09-07 21:57:37,951 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of GSESubcriberAssociationIP.', [263567 - 263617] +2024-09-07 21:57:37,962 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of GSESubcriberAssociationIP.', [263567 - 263618] +2024-09-07 21:57:37,970 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [263567 - 263567] +2024-09-07 21:57:37,982 [main] INFO DocWordWriter - ... 43 ms for insertCaptionRef() +2024-09-07 21:57:37,982 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:57:38,025 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML128' to Word document and to used list. +2024-09-07 21:57:38,110 [main] INFO DocWordWriter - --- insertTable() 29 rows: Attributes of GSE::GSESubcriberAssociationL2 +2024-09-07 21:57:38,139 [main] DEBUG DocWordWriter - ... 29 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:57:38,160 [main] DEBUG DocWordWriter - ... 21 ms for createTable() +2024-09-07 21:57:39,238 [main] DEBUG DocWordWriter - ... 1078 ms for fillValues() +2024-09-07 21:57:39,279 [main] DEBUG DocWordWriter - ... 41 ms for widths (table) +2024-09-07 21:57:39,470 [main] DEBUG DocWordWriter - ... 191 ms for widths (columns) +2024-09-07 21:57:39,499 [main] DEBUG DocWordWriter - ... 29 ms for shadding/merging/styling (rows) +2024-09-07 21:57:39,577 [main] DEBUG DocWordWriter - ... 78 ms for borders +2024-09-07 21:57:39,577 [main] DEBUG DocWordWriter - ... 339 ms for formatTable() +2024-09-07 21:57:39,589 [main] INFO DocWordWriter - ... 1467 ms total for insertTable() +2024-09-07 21:57:39,679 [main] INFO DocWordWriter - ... 82 ms for insertCaption(): Table 91 – Attributes of GSE::GSESubcriberAssociationL2 +2024-09-07 21:57:39,730 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of GSESubcriberAssociationL2.', [266848 - 266898] +2024-09-07 21:57:39,743 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of GSESubcriberAssociationL2.', [266848 - 266899] +2024-09-07 21:57:39,750 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [266848 - 266848] +2024-09-07 21:57:39,763 [main] INFO DocWordWriter - ... 44 ms for insertCaptionRef() +2024-09-07 21:57:39,763 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:57:39,806 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML132' to Word document and to used list. +2024-09-07 21:57:39,883 [main] INFO DocWordWriter - --- insertTable() 4 rows: Attributes of GSE::GSENotification +2024-09-07 21:57:39,911 [main] DEBUG DocWordWriter - ... 28 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:57:39,922 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 21:57:40,078 [main] DEBUG DocWordWriter - ... 156 ms for fillValues() +2024-09-07 21:57:40,101 [main] DEBUG DocWordWriter - ... 23 ms for widths (table) +2024-09-07 21:57:40,195 [main] DEBUG DocWordWriter - ... 94 ms for widths (columns) +2024-09-07 21:57:40,223 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-07 21:57:40,260 [main] DEBUG DocWordWriter - ... 37 ms for borders +2024-09-07 21:57:40,260 [main] DEBUG DocWordWriter - ... 182 ms for formatTable() +2024-09-07 21:57:40,272 [main] INFO DocWordWriter - ... 377 ms total for insertTable() +2024-09-07 21:57:40,365 [main] INFO DocWordWriter - ... 84 ms for insertCaption(): Table 92 – Attributes of GSE::GSENotification +2024-09-07 21:57:40,414 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of GSENotification.', [270086 - 270126] +2024-09-07 21:57:40,427 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of GSENotification.', [270086 - 270127] +2024-09-07 21:57:40,435 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [270086 - 270086] +2024-09-07 21:57:40,448 [main] INFO DocWordWriter - ... 45 ms for insertCaptionRef() +2024-09-07 21:57:40,448 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:57:40,458 [main] INFO Util - time=[0:01:26.537] replaced [270566 - 270566] PACKAGE Application Protocols Agents, figures (17 before 9 mine), tables (48 before 44 mine)... +2024-09-07 21:57:40,458 [main] INFO Util - +2024-09-07 21:57:40,462 [main] INFO AbstractWordWriter - replacing [270619 - 270658] PACKAGE Interfaces Agent, figures (26 before ), tables (92 before )... +2024-09-07 21:57:40,491 [main] INFO AbstractWordWriter - writing doc for package Interfaces Agent ... +2024-09-07 21:57:40,680 [main] INFO DocWordWriter - ... 32 ms for insertCaption(): Figure 27 – Class diagram Interfaces Agent::Interfaces +2024-09-07 21:57:40,755 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': The IED interfaces are depicted.', [270894 - 270928] +2024-09-07 21:57:40,763 [main] TRACE DocWordWriter - prepend : range.txt = ': The IED interfaces are depicted.', [270894 - 270928] +2024-09-07 21:57:40,771 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [270894 - 270894] +2024-09-07 21:57:40,784 [main] INFO DocWordWriter - ... 34 ms for insertCaptionRef() +2024-09-07 21:57:40,784 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:57:40,829 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML136' to Word document and to used list. +2024-09-07 21:57:40,919 [main] INFO DocWordWriter - --- insertTable() 8 rows: Attributes of Interfaces Agent::Interface +2024-09-07 21:57:40,948 [main] DEBUG DocWordWriter - ... 29 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:57:40,961 [main] DEBUG DocWordWriter - ... 13 ms for createTable() +2024-09-07 21:57:41,273 [main] DEBUG DocWordWriter - ... 312 ms for fillValues() +2024-09-07 21:57:41,299 [main] DEBUG DocWordWriter - ... 26 ms for widths (table) +2024-09-07 21:57:41,406 [main] DEBUG DocWordWriter - ... 107 ms for widths (columns) +2024-09-07 21:57:41,440 [main] DEBUG DocWordWriter - ... 34 ms for shadding/merging/styling (rows) +2024-09-07 21:57:41,479 [main] DEBUG DocWordWriter - ... 39 ms for borders +2024-09-07 21:57:41,480 [main] DEBUG DocWordWriter - ... 207 ms for formatTable() +2024-09-07 21:57:41,493 [main] INFO DocWordWriter - ... 561 ms total for insertTable() +2024-09-07 21:57:41,610 [main] INFO DocWordWriter - ... 110 ms for insertCaption(): Table 93 – Attributes of Interfaces Agent::Interface +2024-09-07 21:57:41,660 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Interface.', [271078 - 271112] +2024-09-07 21:57:41,672 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Interface.', [271078 - 271113] +2024-09-07 21:57:41,680 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [271078 - 271078] +2024-09-07 21:57:41,693 [main] INFO DocWordWriter - ... 45 ms for insertCaptionRef() +2024-09-07 21:57:41,693 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:57:41,737 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML142' to Word document and to used list. +2024-09-07 21:57:41,816 [main] INFO DocWordWriter - --- insertTable() 22 rows: Attributes of Interfaces Agent::Interfaces +2024-09-07 21:57:41,848 [main] DEBUG DocWordWriter - ... 32 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:57:41,866 [main] DEBUG DocWordWriter - ... 18 ms for createTable() +2024-09-07 21:57:42,714 [main] DEBUG DocWordWriter - ... 848 ms for fillValues() +2024-09-07 21:57:42,749 [main] DEBUG DocWordWriter - ... 35 ms for widths (table) +2024-09-07 21:57:42,916 [main] DEBUG DocWordWriter - ... 167 ms for widths (columns) +2024-09-07 21:57:42,945 [main] DEBUG DocWordWriter - ... 29 ms for shadding/merging/styling (rows) +2024-09-07 21:57:43,011 [main] DEBUG DocWordWriter - ... 66 ms for borders +2024-09-07 21:57:43,011 [main] DEBUG DocWordWriter - ... 297 ms for formatTable() +2024-09-07 21:57:43,023 [main] INFO DocWordWriter - ... 1195 ms total for insertTable() +2024-09-07 21:57:43,147 [main] INFO DocWordWriter - ... 115 ms for insertCaption(): Table 94 – Attributes of Interfaces Agent::Interfaces +2024-09-07 21:57:43,195 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Interfaces.', [271919 - 271954] +2024-09-07 21:57:43,207 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Interfaces.', [271919 - 271955] +2024-09-07 21:57:43,214 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [271919 - 271919] +2024-09-07 21:57:43,228 [main] INFO DocWordWriter - ... 44 ms for insertCaptionRef() +2024-09-07 21:57:43,228 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:57:43,269 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML137' to Word document and to used list. +2024-09-07 21:57:43,347 [main] INFO DocWordWriter - --- insertTable() 8 rows: Attributes of Interfaces Agent::ETHEntry +2024-09-07 21:57:43,378 [main] DEBUG DocWordWriter - ... 31 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:57:43,393 [main] DEBUG DocWordWriter - ... 15 ms for createTable() +2024-09-07 21:57:43,696 [main] DEBUG DocWordWriter - ... 303 ms for fillValues() +2024-09-07 21:57:43,724 [main] DEBUG DocWordWriter - ... 28 ms for widths (table) +2024-09-07 21:57:43,833 [main] DEBUG DocWordWriter - ... 109 ms for widths (columns) +2024-09-07 21:57:43,862 [main] DEBUG DocWordWriter - ... 29 ms for shadding/merging/styling (rows) +2024-09-07 21:57:43,903 [main] DEBUG DocWordWriter - ... 41 ms for borders +2024-09-07 21:57:43,903 [main] DEBUG DocWordWriter - ... 207 ms for formatTable() +2024-09-07 21:57:43,914 [main] INFO DocWordWriter - ... 556 ms total for insertTable() +2024-09-07 21:57:44,045 [main] INFO DocWordWriter - ... 123 ms for insertCaption(): Table 95 – Attributes of Interfaces Agent::ETHEntry +2024-09-07 21:57:44,093 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of ETHEntry.', [274405 - 274438] +2024-09-07 21:57:44,106 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of ETHEntry.', [274405 - 274439] +2024-09-07 21:57:44,114 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [274405 - 274405] +2024-09-07 21:57:44,129 [main] INFO DocWordWriter - ... 47 ms for insertCaptionRef() +2024-09-07 21:57:44,129 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:57:44,175 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML138' to Word document and to used list. +2024-09-07 21:57:44,255 [main] INFO DocWordWriter - --- insertTable() 9 rows: Attributes of Interfaces Agent::KEYEntry +2024-09-07 21:57:44,284 [main] DEBUG DocWordWriter - ... 29 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:57:44,298 [main] DEBUG DocWordWriter - ... 14 ms for createTable() +2024-09-07 21:57:44,654 [main] DEBUG DocWordWriter - ... 356 ms for fillValues() +2024-09-07 21:57:44,680 [main] DEBUG DocWordWriter - ... 26 ms for widths (table) +2024-09-07 21:57:44,798 [main] DEBUG DocWordWriter - ... 118 ms for widths (columns) +2024-09-07 21:57:44,829 [main] DEBUG DocWordWriter - ... 31 ms for shadding/merging/styling (rows) +2024-09-07 21:57:44,874 [main] DEBUG DocWordWriter - ... 45 ms for borders +2024-09-07 21:57:44,874 [main] DEBUG DocWordWriter - ... 220 ms for formatTable() +2024-09-07 21:57:44,885 [main] INFO DocWordWriter - ... 619 ms total for insertTable() +2024-09-07 21:57:45,029 [main] INFO DocWordWriter - ... 136 ms for insertCaption(): Table 96 – Attributes of Interfaces Agent::KEYEntry +2024-09-07 21:57:45,076 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of KEYEntry.', [275275 - 275308] +2024-09-07 21:57:45,088 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of KEYEntry.', [275275 - 275309] +2024-09-07 21:57:45,096 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [275275 - 275275] +2024-09-07 21:57:45,109 [main] INFO DocWordWriter - ... 44 ms for insertCaptionRef() +2024-09-07 21:57:45,109 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:57:45,152 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML139' to Word document and to used list. +2024-09-07 21:57:45,225 [main] INFO DocWordWriter - closing MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 21:57:47,775 [main] INFO DocWordWriter - opening MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 21:57:49,409 [main] INFO OptimOptions - setting view to normal +2024-09-07 21:57:49,463 [main] INFO OptimOptions - disabling pagination +2024-09-07 21:57:49,505 [main] INFO OptimOptions - disabling field update +2024-09-07 21:57:49,690 [main] INFO OptimOptions - disabling screen updating +2024-09-07 21:57:49,697 [main] DEBUG DocWordWriter - current(_optimisedOptions): OptimOptions [viewId=1, normView=true, paginate=false, updFld=false, updScr=false, fastSave=false, spelling=false, grammar=false] +2024-09-07 21:57:49,764 [main] INFO Util - time=[0:00:04.569] closed and reopened document. +2024-09-07 21:57:49,764 [main] INFO Util - +2024-09-07 21:57:49,810 [main] INFO DocWordWriter - --- insertTable() 10 rows: Attributes of Interfaces Agent::SEREntry +2024-09-07 21:57:49,848 [main] DEBUG DocWordWriter - ... 38 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:57:49,859 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 21:57:50,215 [main] DEBUG DocWordWriter - ... 356 ms for fillValues() +2024-09-07 21:57:50,242 [main] DEBUG DocWordWriter - ... 27 ms for widths (table) +2024-09-07 21:57:50,357 [main] DEBUG DocWordWriter - ... 115 ms for widths (columns) +2024-09-07 21:57:50,386 [main] DEBUG DocWordWriter - ... 29 ms for shadding/merging/styling (rows) +2024-09-07 21:57:50,430 [main] DEBUG DocWordWriter - ... 44 ms for borders +2024-09-07 21:57:50,430 [main] DEBUG DocWordWriter - ... 215 ms for formatTable() +2024-09-07 21:57:50,442 [main] INFO DocWordWriter - ... 620 ms total for insertTable() +2024-09-07 21:57:50,476 [main] INFO DocWordWriter - ... 27 ms for insertCaption(): Table 97 – Attributes of Interfaces Agent::SEREntry +2024-09-07 21:57:50,525 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of SEREntry.', [276232 - 276265] +2024-09-07 21:57:50,536 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of SEREntry.', [276232 - 276266] +2024-09-07 21:57:50,542 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [276232 - 276232] +2024-09-07 21:57:50,554 [main] INFO DocWordWriter - ... 41 ms for insertCaptionRef() +2024-09-07 21:57:50,554 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:57:50,702 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML140' to Word document and to used list. +2024-09-07 21:57:50,781 [main] INFO DocWordWriter - --- insertTable() 8 rows: Attributes of Interfaces Agent::ALGEntry +2024-09-07 21:57:50,808 [main] DEBUG DocWordWriter - ... 27 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:57:50,818 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-07 21:57:51,119 [main] DEBUG DocWordWriter - ... 301 ms for fillValues() +2024-09-07 21:57:51,144 [main] DEBUG DocWordWriter - ... 25 ms for widths (table) +2024-09-07 21:57:51,251 [main] DEBUG DocWordWriter - ... 107 ms for widths (columns) +2024-09-07 21:57:51,278 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-07 21:57:51,318 [main] DEBUG DocWordWriter - ... 40 ms for borders +2024-09-07 21:57:51,318 [main] DEBUG DocWordWriter - ... 199 ms for formatTable() +2024-09-07 21:57:51,329 [main] INFO DocWordWriter - ... 537 ms total for insertTable() +2024-09-07 21:57:51,371 [main] INFO DocWordWriter - ... 34 ms for insertCaption(): Table 98 – Attributes of Interfaces Agent::ALGEntry +2024-09-07 21:57:51,417 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of ALGEntry.', [277228 - 277261] +2024-09-07 21:57:51,428 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of ALGEntry.', [277228 - 277262] +2024-09-07 21:57:51,436 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [277228 - 277228] +2024-09-07 21:57:51,447 [main] INFO DocWordWriter - ... 42 ms for insertCaptionRef() +2024-09-07 21:57:51,447 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:57:51,491 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML141' to Word document and to used list. +2024-09-07 21:57:51,569 [main] INFO DocWordWriter - --- insertTable() 8 rows: Attributes of Interfaces Agent::USBEntry +2024-09-07 21:57:51,597 [main] DEBUG DocWordWriter - ... 28 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:57:51,608 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 21:57:51,907 [main] DEBUG DocWordWriter - ... 299 ms for fillValues() +2024-09-07 21:57:51,935 [main] DEBUG DocWordWriter - ... 28 ms for widths (table) +2024-09-07 21:57:52,051 [main] DEBUG DocWordWriter - ... 116 ms for widths (columns) +2024-09-07 21:57:52,077 [main] DEBUG DocWordWriter - ... 26 ms for shadding/merging/styling (rows) +2024-09-07 21:57:52,116 [main] DEBUG DocWordWriter - ... 39 ms for borders +2024-09-07 21:57:52,116 [main] DEBUG DocWordWriter - ... 209 ms for formatTable() +2024-09-07 21:57:52,127 [main] INFO DocWordWriter - ... 547 ms total for insertTable() +2024-09-07 21:57:52,173 [main] INFO DocWordWriter - ... 39 ms for insertCaption(): Table 99 – Attributes of Interfaces Agent::USBEntry +2024-09-07 21:57:52,221 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of USBEntry.', [278090 - 278123] +2024-09-07 21:57:52,235 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of USBEntry.', [278090 - 278124] +2024-09-07 21:57:52,242 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [278090 - 278090] +2024-09-07 21:57:52,253 [main] INFO DocWordWriter - ... 44 ms for insertCaptionRef() +2024-09-07 21:57:52,253 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:57:52,294 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML143' to Word document and to used list. +2024-09-07 21:57:52,375 [main] INFO DocWordWriter - --- insertTable() 11 rows: Attributes of Interfaces Agent::Notification +2024-09-07 21:57:52,403 [main] DEBUG DocWordWriter - ... 28 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:57:52,415 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-07 21:57:52,819 [main] DEBUG DocWordWriter - ... 404 ms for fillValues() +2024-09-07 21:57:52,847 [main] DEBUG DocWordWriter - ... 28 ms for widths (table) +2024-09-07 21:57:52,965 [main] DEBUG DocWordWriter - ... 118 ms for widths (columns) +2024-09-07 21:57:52,993 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-07 21:57:53,049 [main] DEBUG DocWordWriter - ... 56 ms for borders +2024-09-07 21:57:53,049 [main] DEBUG DocWordWriter - ... 230 ms for formatTable() +2024-09-07 21:57:53,063 [main] INFO DocWordWriter - ... 674 ms total for insertTable() +2024-09-07 21:57:53,115 [main] INFO DocWordWriter - ... 45 ms for insertCaption(): Table 100 – Attributes of Interfaces Agent::Notification +2024-09-07 21:57:53,161 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Notification.', [279002 - 279039] +2024-09-07 21:57:53,173 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Notification.', [279002 - 279040] +2024-09-07 21:57:53,179 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [279002 - 279002] +2024-09-07 21:57:53,190 [main] INFO DocWordWriter - ... 40 ms for insertCaptionRef() +2024-09-07 21:57:53,190 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:57:53,201 [main] INFO Util - time=[0:00:12.743] replaced [280164 - 280164] PACKAGE Interfaces Agent, figures (26 before 1 mine), tables (92 before 8 mine)... +2024-09-07 21:57:53,201 [main] INFO Util - +2024-09-07 21:57:53,205 [main] INFO AbstractWordWriter - replacing [280205 - 280240] PACKAGE Clocks Agent, figures (27 before ), tables (100 before )... +2024-09-07 21:57:53,233 [main] INFO AbstractWordWriter - writing doc for package Clocks Agent ... +2024-09-07 21:57:53,394 [main] INFO DocWordWriter - ... 24 ms for insertCaption(): Figure 28 – Class diagram Clocks Agent::Clocks Agent +2024-09-07 21:57:53,467 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': Clocks Agent classes', [280402 - 280424] +2024-09-07 21:57:53,475 [main] TRACE DocWordWriter - prepend : range.txt = ': Clocks Agent classes', [280402 - 280424] +2024-09-07 21:57:53,483 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [280402 - 280402] +2024-09-07 21:57:53,494 [main] INFO DocWordWriter - ... 32 ms for insertCaptionRef() +2024-09-07 21:57:53,494 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:57:53,537 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML133' to Word document and to used list. +2024-09-07 21:57:53,614 [main] INFO DocWordWriter - --- insertTable() 6 rows: Attributes of Clocks Agent::Clock +2024-09-07 21:57:53,642 [main] DEBUG DocWordWriter - ... 28 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:57:53,652 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-07 21:57:53,887 [main] DEBUG DocWordWriter - ... 235 ms for fillValues() +2024-09-07 21:57:53,911 [main] DEBUG DocWordWriter - ... 24 ms for widths (table) +2024-09-07 21:57:54,002 [main] DEBUG DocWordWriter - ... 91 ms for widths (columns) +2024-09-07 21:57:54,029 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-07 21:57:54,068 [main] DEBUG DocWordWriter - ... 39 ms for borders +2024-09-07 21:57:54,068 [main] DEBUG DocWordWriter - ... 181 ms for formatTable() +2024-09-07 21:57:54,080 [main] INFO DocWordWriter - ... 454 ms total for insertTable() +2024-09-07 21:57:54,145 [main] INFO DocWordWriter - ... 57 ms for insertCaption(): Table 101 – Attributes of Clocks Agent::Clock +2024-09-07 21:57:54,193 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Clock.', [280536 - 280566] +2024-09-07 21:57:54,205 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Clock.', [280536 - 280567] +2024-09-07 21:57:54,213 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [280536 - 280536] +2024-09-07 21:57:54,224 [main] INFO DocWordWriter - ... 43 ms for insertCaptionRef() +2024-09-07 21:57:54,224 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:57:54,267 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML134' to Word document and to used list. +2024-09-07 21:57:54,345 [main] INFO DocWordWriter - --- insertTable() 10 rows: Attributes of Clocks Agent::ClockEntry +2024-09-07 21:57:54,374 [main] DEBUG DocWordWriter - ... 29 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:57:54,385 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-07 21:57:54,773 [main] DEBUG DocWordWriter - ... 388 ms for fillValues() +2024-09-07 21:57:54,802 [main] DEBUG DocWordWriter - ... 29 ms for widths (table) +2024-09-07 21:57:54,918 [main] DEBUG DocWordWriter - ... 116 ms for widths (columns) +2024-09-07 21:57:54,947 [main] DEBUG DocWordWriter - ... 29 ms for shadding/merging/styling (rows) +2024-09-07 21:57:54,991 [main] DEBUG DocWordWriter - ... 44 ms for borders +2024-09-07 21:57:54,991 [main] DEBUG DocWordWriter - ... 218 ms for formatTable() +2024-09-07 21:57:55,004 [main] INFO DocWordWriter - ... 646 ms total for insertTable() +2024-09-07 21:57:55,073 [main] INFO DocWordWriter - ... 62 ms for insertCaption(): Table 102 – Attributes of Clocks Agent::ClockEntry +2024-09-07 21:57:55,123 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of ClockEntry.', [281463 - 281498] +2024-09-07 21:57:55,135 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of ClockEntry.', [281463 - 281499] +2024-09-07 21:57:55,142 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [281463 - 281463] +2024-09-07 21:57:55,157 [main] INFO DocWordWriter - ... 46 ms for insertCaptionRef() +2024-09-07 21:57:55,158 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:57:55,202 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML135' to Word document and to used list. +2024-09-07 21:57:55,276 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of Clocks Agent::SecurityNotification +2024-09-07 21:57:55,304 [main] DEBUG DocWordWriter - ... 28 ms for appendRawTextInNewParagraphWithStyle() +2024-09-07 21:57:55,314 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-07 21:57:55,397 [main] DEBUG DocWordWriter - ... 83 ms for fillValues() +2024-09-07 21:57:55,420 [main] DEBUG DocWordWriter - ... 23 ms for widths (table) +2024-09-07 21:57:55,500 [main] DEBUG DocWordWriter - ... 80 ms for widths (columns) +2024-09-07 21:57:55,529 [main] DEBUG DocWordWriter - ... 29 ms for shadding/merging/styling (rows) +2024-09-07 21:57:55,557 [main] DEBUG DocWordWriter - ... 28 ms for borders +2024-09-07 21:57:55,557 [main] DEBUG DocWordWriter - ... 160 ms for formatTable() +2024-09-07 21:57:55,569 [main] INFO DocWordWriter - ... 281 ms total for insertTable() +2024-09-07 21:57:55,643 [main] INFO DocWordWriter - ... 65 ms for insertCaption(): Table 103 – Attributes of Clocks Agent::SecurityNotification +2024-09-07 21:57:55,692 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of SecurityNotification.', [284343 - 284388] +2024-09-07 21:57:55,705 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of SecurityNotification.', [284343 - 284389] +2024-09-07 21:57:55,712 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [284343 - 284343] +2024-09-07 21:57:55,724 [main] INFO DocWordWriter - ... 43 ms for insertCaptionRef() +2024-09-07 21:57:55,724 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-07 21:57:55,734 [main] INFO Util - time=[0:00:02.533] replaced [284662 - 284662] PACKAGE Clocks Agent, figures (27 before 1 mine), tables (100 before 3 mine)... +2024-09-07 21:57:55,734 [main] INFO Util - +2024-09-07 21:57:55,734 [main] INFO Util - +2024-09-07 21:57:55,734 [main] INFO Util - ------------------------------------------------ +2024-09-07 21:57:55,734 [main] INFO Util - scanning placeholders... +2024-09-07 21:57:56,237 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTruthValueùUML38ùdd' HYPERLINK TruthValue, UML38 +2024-09-07 21:57:56,254 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDateAndTimeùUML27ùdd' HYPERLINK DateAndTime, UML27 +2024-09-07 21:57:56,269 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTruthValueùUML38ùdd' HYPERLINK TruthValue, UML38 +2024-09-07 21:57:56,283 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDateAndTimeùUML27ùdd' HYPERLINK DateAndTime, UML27 +2024-09-07 21:57:56,298 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounter32 ùUML26ùdd' HYPERLINK Counter32 , UML26 +2024-09-07 21:57:56,314 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDateAndTimeùUML27ùdd' HYPERLINK DateAndTime, UML27 +2024-09-07 21:57:56,328 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTruthValueùUML38ùdd' HYPERLINK TruthValue, UML38 +2024-09-07 21:57:56,342 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloat32TCùUML29ùdd' HYPERLINK Float32TC, UML29 +2024-09-07 21:57:56,355 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDateAndTimeùUML27ùdd' HYPERLINK DateAndTime, UML27 +2024-09-07 21:57:56,369 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloat32TCùUML29ùdd' HYPERLINK Float32TC, UML29 +2024-09-07 21:57:56,384 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùUnsigned32ùUML36ùdd' HYPERLINK Unsigned32, UML36 +2024-09-07 21:57:56,398 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInteger32ùUML35ùdd' HYPERLINK Integer32, UML35 +2024-09-07 21:57:56,412 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDateAndTimeùUML27ùdd' HYPERLINK DateAndTime, UML27 +2024-09-07 21:57:56,430 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInteger32ùUML35ùdd' HYPERLINK Integer32, UML35 +2024-09-07 21:57:56,443 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML31ùdd' HYPERLINK InetAddress, UML31 +2024-09-07 21:57:56,456 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML33ùdd' HYPERLINK InetAddressType, UML33 +2024-09-07 21:57:56,470 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMacAddressùUML32ùdd' HYPERLINK MacAddress, UML32 +2024-09-07 21:57:56,484 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDisplayStringùUML28ùdd' HYPERLINK DisplayString, UML28 +2024-09-07 21:57:56,498 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDateAndTimeùUML27ùdd' HYPERLINK DateAndTime, UML27 +2024-09-07 21:57:56,513 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDisplayStringùUML28ùdd' HYPERLINK DisplayString, UML28 +2024-09-07 21:57:56,529 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDateAndTimeùUML27ùdd' HYPERLINK DateAndTime, UML27 +2024-09-07 21:57:56,546 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDisplayStringùUML28ùdd' HYPERLINK DisplayString, UML28 +2024-09-07 21:57:56,562 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDateAndTimeùUML27ùdd' HYPERLINK DateAndTime, UML27 +2024-09-07 21:57:56,576 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAppDatStKindùUML41ùdd' HYPERLINK AppDatStKind, UML41 +2024-09-07 21:57:56,591 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDateAndTimeùUML27ùdd' HYPERLINK DateAndTime, UML27 +2024-09-07 21:57:56,604 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùPhyHealthKindùUML42ùdd' HYPERLINK PhyHealthKind, UML42 +2024-09-07 21:57:56,618 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùExtKindùUML43ùdd' HYPERLINK ExtKind, UML43 +2024-09-07 21:57:56,631 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntKindùUML44ùdd' HYPERLINK IntKind, UML44 +2024-09-07 21:57:56,645 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDateAndTimeùUML27ùdd' HYPERLINK DateAndTime, UML27 +2024-09-07 21:57:56,662 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventKindùUML48ùdd' HYPERLINK EventKind, UML48 +2024-09-07 21:57:56,675 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDateAndTimeùUML27ùdd' HYPERLINK DateAndTime, UML27 +2024-09-07 21:57:56,688 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùPSPAccKindùUML46ùdd' HYPERLINK PSPAccKind, UML46 +2024-09-07 21:57:56,703 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùProtIdKindùUML47ùdd' HYPERLINK ProtIdKind, UML47 +2024-09-07 21:57:56,717 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimSyncIssueKindùUML49ùdd' HYPERLINK TimSyncIssueKind, UML49 +2024-09-07 21:57:56,732 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSecurityProfileKindùUML50ùdd' HYPERLINK SecurityProfileKind, UML50 +2024-09-07 21:57:56,746 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimSyncSrcKindùUML51ùdd' HYPERLINK TimSyncSrcKind, UML51 +2024-09-07 21:57:56,760 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùLnkKindùUML45ùdd' HYPERLINK LnkKind, UML45 +2024-09-07 21:57:56,776 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAppDatStTypeùUML68ùdd' HYPERLINK AppDatStType, UML68 +2024-09-07 21:57:56,791 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:57:56,804 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-07 21:57:56,818 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:57:56,830 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:57:56,845 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:57:56,859 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:57:56,872 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùPSUPEntryùUML80ùdd' HYPERLINK PSUPEntry, UML80 +2024-09-07 21:57:56,886 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:57:56,899 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:57:56,913 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSecurityNotificationùUML82ùdd' HYPERLINK SecurityNotification, UML82 +2024-09-07 21:57:56,927 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùNotificationùUML81ùdd' HYPERLINK Notification, UML81 +2024-09-07 21:57:56,945 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:57:56,959 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:57:56,973 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:57:56,985 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 21:57:56,999 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:57:57,012 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:57:57,026 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:57,040 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:57:57,053 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:57:57,066 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:57:57,080 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-07 21:57:57,094 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimestampùUML61ùdd' HYPERLINK Timestamp, UML61 +2024-09-07 21:57:57,110 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimestampùUML61ùdd' HYPERLINK Timestamp, UML61 +2024-09-07 21:57:57,126 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimestampùUML61ùdd' HYPERLINK Timestamp, UML61 +2024-09-07 21:57:57,140 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimestampùUML61ùdd' HYPERLINK Timestamp, UML61 +2024-09-07 21:57:57,153 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:57,166 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:57:57,179 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:57:57,193 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 21:57:57,210 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCPUEntryùUML84ùdd' HYPERLINK CPUEntry, UML84 +2024-09-07 21:57:57,227 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-07 21:57:57,240 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:57,254 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:57:57,269 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:57:57,282 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEXTEntryùUML85ùdd' HYPERLINK EXTEntry, UML85 +2024-09-07 21:57:57,298 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 21:57:57,311 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-07 21:57:57,327 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:57:57,343 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-07 21:57:57,358 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:57:57,372 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:57:57,385 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:57:57,399 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:57:57,412 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:57:57,426 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-07 21:57:57,441 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:57:57,455 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:57,466 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:57:57,480 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:57:57,494 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-07 21:57:57,509 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-07 21:57:57,524 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùPhyHealthTypeùUML69ùdd' HYPERLINK PhyHealthType, UML69 +2024-09-07 21:57:57,538 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:57,552 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 21:57:57,565 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:57:57,581 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:57,596 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSecurityNotificationùUML88ùdd' HYPERLINK SecurityNotification, UML88 +2024-09-07 21:57:57,610 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùNotificationùUML87ùdd' HYPERLINK Notification, UML87 +2024-09-07 21:57:57,628 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSTOREEntryùUML86ùdd' HYPERLINK STOREEntry, UML86 +2024-09-07 21:57:57,643 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:57,657 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:57,670 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:57,685 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:57:57,698 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:57:57,714 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:57:57,727 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 21:57:57,743 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:57:57,755 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:57:57,770 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-07 21:57:57,782 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:57,796 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 21:57:57,811 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:57:57,824 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùExtTypeùUML70ùdd' HYPERLINK ExtType, UML70 +2024-09-07 21:57:57,838 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 21:57:57,850 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:57:57,862 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-07 21:57:57,876 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:57,890 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:57,902 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:57:57,915 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 21:57:57,929 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:57:57,942 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:57:57,955 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-07 21:57:57,968 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:57:57,980 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:57:57,994 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:58,008 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-07 21:57:58,024 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-07 21:57:58,039 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-07 21:57:58,052 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùPhyHealthTypeùUML69ùdd' HYPERLINK PhyHealthType, UML69 +2024-09-07 21:57:58,065 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:58,079 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:58,092 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:57:58,106 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-07 21:57:58,118 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:57:58,132 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:57:58,146 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:58,160 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 21:57:58,173 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:57:58,185 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:57:58,199 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:57:58,210 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:57:58,223 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:57:58,241 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:57:58,255 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:57:58,269 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:58,282 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:58,295 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:58,307 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:58,321 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:58,332 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:58,348 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:58,363 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:58,378 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:58,393 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:58,408 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:58,421 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:58,433 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:58,446 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:58,459 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:58,472 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:58,484 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:58,498 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:58,510 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:58,523 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:58,537 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:58,549 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:58,562 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:58,575 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:58,588 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:58,600 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:58,614 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:58,627 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:58,640 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:58,655 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:58,668 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:58,680 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:58,693 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:58,707 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:58,723 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:58,737 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 21:57:58,749 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:57:58,762 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 21:57:58,775 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 21:57:58,789 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 21:57:58,802 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 21:57:58,815 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 21:57:58,827 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:57:58,840 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:57:58,854 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:57:58,866 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:57:58,879 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:57:58,892 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:57:58,904 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:57:58,917 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:57:58,929 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:57:58,941 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:57:58,954 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:57:58,968 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:57:58,979 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:57:58,992 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:57:59,004 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:57:59,018 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:59,031 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:57:59,045 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:59,058 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:57:59,071 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:59,088 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:57:59,103 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:59,115 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:57:59,128 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:59,142 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:57:59,155 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:59,170 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:57:59,182 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:59,195 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:57:59,208 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:59,220 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:57:59,234 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:59,246 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:57:59,259 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:59,272 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:57:59,284 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:59,298 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:57:59,310 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:59,323 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:57:59,336 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:59,350 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:57:59,362 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:59,374 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:57:59,387 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:59,404 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:57:59,418 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:59,432 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:57:59,446 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:59,460 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:57:59,475 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:59,488 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:57:59,501 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:59,513 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:57:59,525 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:59,539 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:57:59,551 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:59,565 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:57:59,577 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:59,589 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:57:59,602 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:59,614 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:57:59,627 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:59,640 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:57:59,654 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:59,668 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:57:59,680 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:59,693 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:57:59,707 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:59,721 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:57:59,737 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:59,749 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:57:59,763 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:59,776 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:57:59,789 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:59,802 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:57:59,815 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:59,827 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:57:59,839 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:59,852 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:57:59,864 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:59,877 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:57:59,890 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:59,902 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:57:59,915 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:57:59,927 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:57:59,939 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:57:59,954 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-07 21:57:59,967 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùServerTLSùUML93ùdd' HYPERLINK ServerTLS, UML93 +2024-09-07 21:57:59,978 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùClientTLSùUML92ùdd' HYPERLINK ClientTLS, UML92 +2024-09-07 21:57:59,992 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part3ed2SecurityNotificationùUML106ùdd' HYPERLINK IEC62351part3ed2SecurityNotification, UML106 +2024-09-07 21:58:00,004 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:00,021 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:00,036 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:00,049 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:00,061 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:00,073 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:00,086 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:00,103 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:00,115 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:00,129 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:00,143 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:00,157 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:00,170 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:00,184 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:00,199 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:00,212 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:00,226 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:00,239 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:00,252 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:00,269 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:00,283 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:00,298 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:00,313 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:00,326 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:00,340 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:00,356 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:00,370 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:00,387 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:00,400 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:00,416 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:00,429 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:00,443 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:00,458 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:00,472 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:00,486 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:00,502 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:00,518 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:00,532 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:00,546 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:00,558 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:00,571 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:00,582 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:00,597 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:00,612 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:00,625 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:00,640 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:00,652 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:00,669 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:00,681 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:00,693 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:00,708 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:00,724 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:00,736 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:00,750 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:00,763 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:00,776 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:00,789 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:00,802 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:00,815 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:00,828 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:00,840 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:00,853 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:00,867 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:00,885 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:00,898 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:00,910 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:00,923 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:00,935 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:00,948 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:00,960 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:00,974 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-07 21:58:00,987 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 21:58:01,000 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-07 21:58:01,013 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:58:01,025 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-07 21:58:01,037 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 21:58:01,051 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-07 21:58:01,063 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 21:58:01,077 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-07 21:58:01,092 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 21:58:01,106 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-07 21:58:01,120 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 21:58:01,133 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-07 21:58:01,152 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 21:58:01,164 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:01,180 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:58:01,192 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:01,208 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:01,222 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:01,235 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:01,249 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:01,264 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:01,277 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:01,289 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:01,301 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:01,316 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:01,329 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:01,342 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:01,355 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:01,368 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:01,381 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:01,395 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:01,407 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:01,420 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:01,433 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:01,446 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:01,458 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:01,471 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:01,483 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:01,497 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:01,509 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:01,522 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:01,533 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:01,547 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:01,561 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:01,577 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:01,598 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:01,613 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:01,625 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:01,639 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:01,651 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:01,664 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:01,677 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:01,689 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:01,702 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:01,717 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:01,732 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:01,747 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:01,759 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:01,772 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:01,785 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:01,800 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:01,816 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:01,829 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:01,841 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:01,854 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:01,867 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:01,880 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:01,892 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:01,904 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:01,918 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:01,930 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:01,944 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:01,956 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:01,968 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:01,981 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:01,995 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:02,007 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:02,020 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:02,032 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:02,046 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:02,057 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:02,071 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:02,085 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:02,097 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:02,109 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:02,122 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:02,135 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:02,147 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:02,161 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:02,174 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:02,190 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:02,203 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:02,218 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:02,231 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:02,244 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:02,256 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:02,272 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:02,284 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:02,296 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 21:58:02,311 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-07 21:58:02,322 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:58:02,335 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-07 21:58:02,348 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 21:58:02,363 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-07 21:58:02,376 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 21:58:02,388 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-07 21:58:02,401 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 21:58:02,414 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-07 21:58:02,427 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 21:58:02,440 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-07 21:58:02,453 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 21:58:02,466 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:02,478 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:58:02,518 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:02,531 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:02,544 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:02,555 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:02,569 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:02,582 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:02,594 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:02,607 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:02,621 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:02,634 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:02,648 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:02,664 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:02,680 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:02,693 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:02,707 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:02,720 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:02,734 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:02,747 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:02,760 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:02,773 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:02,786 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:02,799 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:02,812 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:02,825 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:02,837 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:02,850 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:02,863 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:02,875 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:02,888 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:02,902 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:02,914 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:02,927 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:02,939 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:02,952 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:02,965 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:02,978 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:02,991 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:03,003 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:03,015 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:03,029 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:03,041 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:03,054 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:03,066 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:03,079 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:03,093 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:03,105 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:03,118 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:03,131 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:03,144 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:03,156 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:03,168 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:03,180 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:03,196 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:03,212 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:03,225 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:03,238 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:03,252 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:03,274 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:03,292 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:03,308 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:03,324 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:03,336 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:03,352 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:03,367 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:03,384 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:03,399 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:03,413 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:03,424 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:03,437 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:03,449 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:03,461 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:03,475 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:03,487 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:03,500 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:03,513 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:03,526 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:03,538 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:03,551 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:03,563 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:03,576 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:03,589 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:03,601 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:03,615 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-07 21:58:03,629 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:03,642 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:03,656 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:03,668 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:03,682 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:03,696 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:03,712 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:03,727 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:03,743 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:03,756 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:03,770 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:03,793 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:03,807 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:03,822 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:03,834 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:03,846 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:03,859 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:03,872 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:58:03,885 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:03,896 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:03,910 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:03,923 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:03,935 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:03,948 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:03,961 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:03,973 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:03,985 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:03,998 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:04,011 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:04,024 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:04,036 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 21:58:04,048 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:58:04,061 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 21:58:04,075 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 21:58:04,088 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùProtIdTypeùUML74ùdd' HYPERLINK ProtIdType, UML74 +2024-09-07 21:58:04,100 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:04,114 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:04,127 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 21:58:04,144 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 21:58:04,157 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:04,169 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùLnkTypeùUML78ùdd' HYPERLINK LnkType, UML78 +2024-09-07 21:58:04,182 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:04,196 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:04,210 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:04,223 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:04,235 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:04,248 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:04,265 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:04,284 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:04,296 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:04,308 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:04,322 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:04,335 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:04,347 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:04,363 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:04,379 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:04,394 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:04,408 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:04,421 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:04,433 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:04,445 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:04,458 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:04,475 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:04,489 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:04,500 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:04,514 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:04,526 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:04,540 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:04,552 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:04,565 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:04,578 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:04,591 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:04,605 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:04,617 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:04,629 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:04,642 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:58:04,658 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:04,672 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:04,685 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:04,698 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:04,712 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:04,727 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:04,740 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:04,753 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:04,770 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:04,785 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:04,801 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:04,815 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:04,829 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:04,842 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:04,856 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:04,868 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:04,881 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:04,895 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:04,908 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:04,925 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:04,939 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:04,951 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:04,965 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:04,977 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:04,991 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:05,005 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 21:58:05,017 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:05,030 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:58:05,043 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:05,056 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:05,070 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:05,082 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:05,095 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:05,106 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:05,120 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:05,133 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:05,146 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:05,158 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:05,171 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:05,183 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:05,197 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:05,210 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:58:05,224 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-07 21:58:05,241 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMasterAssociationùUML96ùdd' HYPERLINK MasterAssociation, UML96 +2024-09-07 21:58:05,254 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùOutstationAssociationùUML97ùdd' HYPERLINK OutstationAssociation, UML97 +2024-09-07 21:58:05,265 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPSecurityNotificationùUML108ùdd' HYPERLINK 60870andDNPSecurityNotification, UML108 +2024-09-07 21:58:05,282 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPNotificationùUML109ùdd' HYPERLINK 60870andDNPNotification, UML109 +2024-09-07 21:58:05,295 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:05,308 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:05,321 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:05,334 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:05,346 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:05,359 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:05,372 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:05,385 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:05,398 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:05,410 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:05,423 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:05,436 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:05,448 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:05,461 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:05,474 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:05,486 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:05,499 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:05,512 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:05,524 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:05,537 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:05,550 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:05,563 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:05,576 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:05,588 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:05,606 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:05,619 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:05,631 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:05,643 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:05,656 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:05,668 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:05,680 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:05,694 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:05,707 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:05,721 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:05,733 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:58:05,746 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:05,759 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:05,771 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:05,784 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:05,797 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:05,811 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:05,824 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:05,839 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:05,854 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:05,868 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:05,881 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:05,894 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:05,906 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:05,922 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:05,936 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:05,955 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:05,968 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:05,980 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:05,994 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:06,006 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:06,021 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:06,034 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:06,046 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:06,060 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:06,073 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:06,089 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:06,103 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:06,115 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:06,129 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-07 21:58:06,141 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:06,154 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:06,169 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:06,181 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:06,195 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:06,209 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:06,223 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:06,236 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:06,249 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:06,263 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 21:58:06,275 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 21:58:06,288 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:58:06,302 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 21:58:06,318 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 21:58:06,333 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 21:58:06,347 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 21:58:06,360 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 21:58:06,373 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùProtIdTypeùUML74ùdd' HYPERLINK ProtIdType, UML74 +2024-09-07 21:58:06,387 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 21:58:06,399 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:06,412 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 21:58:06,426 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:06,437 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 21:58:06,453 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 21:58:06,466 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 21:58:06,478 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 21:58:06,492 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 21:58:06,505 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:06,519 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 21:58:06,532 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùLnkTypeùUML78ùdd' HYPERLINK LnkType, UML78 +2024-09-07 21:58:06,545 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 21:58:06,557 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:06,572 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:06,584 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:06,597 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:06,610 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:06,623 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:06,638 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:06,651 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:06,664 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:06,676 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:06,689 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:06,703 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:06,718 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:06,731 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:06,744 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:06,757 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:06,771 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:06,784 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:06,797 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:06,811 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:06,824 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:06,836 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:06,853 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:06,866 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:06,879 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:06,892 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:06,907 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:06,921 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:06,936 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:06,951 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:06,963 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:06,976 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:06,989 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:07,002 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:07,020 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:58:07,031 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:07,045 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:07,057 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:07,070 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:07,083 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:07,095 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:07,108 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:07,121 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:07,134 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:07,147 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:07,160 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:07,172 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:07,185 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:07,198 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:07,210 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:07,224 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:07,235 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:07,249 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:07,261 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:07,275 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:07,287 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:07,300 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:07,312 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:07,328 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:07,340 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:07,354 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 21:58:07,368 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:07,384 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:58:07,401 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:07,418 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:07,431 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:07,444 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:07,457 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:07,470 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:07,483 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:07,497 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:07,510 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:07,523 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:07,536 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:07,552 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:07,565 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:07,577 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 21:58:07,591 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 21:58:07,602 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:58:07,616 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 21:58:07,629 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 21:58:07,640 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 21:58:07,654 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 21:58:07,667 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 21:58:07,680 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùProtIdTypeùUML74ùdd' HYPERLINK ProtIdType, UML74 +2024-09-07 21:58:07,693 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 21:58:07,708 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:07,720 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 21:58:07,733 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:07,744 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 21:58:07,758 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 21:58:07,771 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 21:58:07,785 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 21:58:07,799 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 21:58:07,812 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:07,824 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 21:58:07,838 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùLnkTypeùUML78ùdd' HYPERLINK LnkType, UML78 +2024-09-07 21:58:07,850 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-07 21:58:07,866 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:07,879 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:07,892 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:07,905 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:07,919 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:07,932 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:07,945 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:07,958 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:07,974 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:07,987 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:08,002 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:08,015 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:08,029 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:08,040 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:08,053 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:08,066 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:08,081 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:08,093 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:08,104 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:08,133 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:08,146 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:08,157 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:08,172 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:08,187 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:08,201 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:08,216 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:08,230 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:08,243 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:08,258 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:08,272 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:08,287 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:08,301 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:08,315 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:08,329 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:08,344 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:58:08,357 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:08,371 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:08,384 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:08,398 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:08,415 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:08,429 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:08,441 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:08,455 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:08,469 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:08,483 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:08,500 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:08,513 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:08,527 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:08,582 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:08,595 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:08,608 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:08,622 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:08,637 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:08,651 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:08,664 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:08,680 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:08,694 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:08,709 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:08,722 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:08,735 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-07 21:58:08,748 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 21:58:08,765 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:08,778 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:58:08,790 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:08,804 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:08,817 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:08,830 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:08,844 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:08,859 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:08,871 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:08,885 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:08,898 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:08,913 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:08,926 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:08,938 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:08,951 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:08,965 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:08,981 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:08,995 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,007 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,021 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,035 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,050 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,066 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:09,081 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,097 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,111 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,123 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,137 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,150 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,164 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,178 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,191 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,204 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,217 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,230 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,243 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:09,256 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,269 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:09,283 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,296 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:09,314 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,328 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:09,341 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,354 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:09,368 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,382 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:09,395 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,409 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:09,422 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,435 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:09,448 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,461 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:09,474 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,487 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:09,499 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,512 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:09,529 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,542 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:09,555 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,568 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:09,580 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,593 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:09,605 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,618 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:09,631 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,644 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:09,656 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,669 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:09,682 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,695 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:09,710 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,724 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:09,736 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,749 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:09,762 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,774 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:09,787 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,800 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:09,814 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,827 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:09,840 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,853 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:09,865 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,879 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:09,892 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,903 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:09,917 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,930 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,943 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,956 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,968 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,982 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:09,994 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:10,008 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:10,020 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:10,033 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:10,046 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:10,059 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:10,072 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:10,084 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:10,098 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:10,113 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:10,127 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:10,143 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:10,158 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:10,170 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:10,183 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:10,196 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:10,209 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:10,222 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:10,234 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:10,247 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:10,260 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 21:58:10,278 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:58:10,291 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 21:58:10,304 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 21:58:10,316 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùProtIdTypeùUML74ùdd' HYPERLINK ProtIdType, UML74 +2024-09-07 21:58:10,329 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:10,342 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:10,355 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 21:58:10,377 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 21:58:10,391 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:10,403 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùLnkTypeùUML78ùdd' HYPERLINK LnkType, UML78 +2024-09-07 21:58:10,416 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 21:58:10,428 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:10,444 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:58:10,457 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:10,469 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:10,482 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:10,495 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:10,508 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:10,520 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:10,533 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:10,545 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:10,558 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:10,571 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:10,583 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:10,596 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:10,609 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:10,622 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:10,634 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:10,647 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:10,660 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:10,672 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:10,685 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:10,698 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:10,712 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:10,725 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:10,738 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:10,750 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:10,762 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:10,775 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:10,788 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:10,802 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:10,814 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:10,827 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:10,839 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:10,852 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:10,864 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:10,878 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:10,892 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:10,905 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:10,918 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:10,931 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:10,944 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:10,959 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:10,972 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:10,984 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:10,997 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:11,010 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:11,023 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:11,036 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:11,049 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:11,062 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:11,074 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:11,087 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:11,100 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:11,112 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:11,125 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:11,138 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:11,150 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:11,164 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:11,177 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:11,192 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:11,207 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:11,222 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:11,237 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:11,249 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:11,262 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:11,275 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:11,288 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:11,302 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:11,314 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:11,327 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:11,340 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:11,354 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:11,370 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:11,384 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:11,397 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:11,411 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:11,423 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:11,438 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:11,451 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:11,464 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:11,477 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:11,490 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:11,502 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:11,514 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:11,529 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:11,542 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:11,555 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:11,568 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:11,583 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:11,596 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:11,608 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:11,621 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:11,634 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:11,646 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:11,659 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:11,672 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:11,685 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:11,697 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:11,711 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:11,724 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:11,737 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:11,750 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:11,762 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:11,776 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:11,789 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:11,803 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:58:11,815 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-07 21:58:11,828 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMasterAssociationùUML101ùdd' HYPERLINK MasterAssociation, UML101 +2024-09-07 21:58:11,840 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùOutstationAssociationùUML102ùdd' HYPERLINK OutstationAssociation, UML102 +2024-09-07 21:58:11,853 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPSecurityNotificationEd2ùUML111ùdd' HYPERLINK 60870andDNPSecurityNotificationEd2, UML111 +2024-09-07 21:58:11,866 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPNotificationEd2ùUML112ùdd' HYPERLINK 60870andDNPNotificationEd2, UML112 +2024-09-07 21:58:11,879 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:11,892 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:11,905 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:11,919 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:11,932 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:11,944 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:11,957 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:11,974 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:11,987 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:11,999 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:12,012 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:12,026 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:12,039 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:12,052 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:12,064 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:12,077 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:12,090 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:12,103 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:12,115 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:12,128 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:12,141 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:12,154 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:12,167 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:12,180 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:12,192 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:12,205 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:12,217 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:12,230 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:12,244 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:12,258 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:12,273 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:12,290 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:12,305 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:12,317 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:12,330 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:12,342 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:12,356 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:12,369 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:12,382 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:12,395 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:12,409 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:12,437 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:12,454 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:12,471 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:12,486 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:12,501 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:12,518 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:12,542 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:12,562 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:12,574 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:12,587 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:12,605 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:12,618 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:12,630 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:12,643 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:12,655 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:12,669 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:12,681 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:12,694 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:12,710 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:12,724 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:12,736 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:12,749 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:12,762 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:12,774 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:12,787 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:12,801 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:12,813 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:12,825 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:12,837 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:12,850 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:12,863 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:12,876 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:12,888 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:12,901 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:12,914 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:12,928 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:12,941 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:12,954 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:12,971 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:12,984 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:12,997 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:13,010 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:13,022 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:13,036 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:13,048 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:13,060 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:13,073 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:13,086 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:13,098 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:13,112 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-07 21:58:13,125 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-07 21:58:13,139 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 21:58:13,152 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 21:58:13,165 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:58:13,177 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 21:58:13,190 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 21:58:13,203 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 21:58:13,216 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 21:58:13,230 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 21:58:13,242 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùProtIdTypeùUML74ùdd' HYPERLINK ProtIdType, UML74 +2024-09-07 21:58:13,254 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 21:58:13,268 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:13,280 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 21:58:13,292 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:13,305 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 21:58:13,320 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 21:58:13,334 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 21:58:13,349 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 21:58:13,364 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 21:58:13,378 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:13,390 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 21:58:13,403 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùLnkTypeùUML78ùdd' HYPERLINK LnkType, UML78 +2024-09-07 21:58:13,416 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 21:58:13,428 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 21:58:13,442 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:13,455 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:58:13,467 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:13,480 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:13,492 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:13,505 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:13,518 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:13,532 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:13,544 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:13,558 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:13,570 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:13,584 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:13,597 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:13,610 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:13,623 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:13,636 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:13,649 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:13,662 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:13,675 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:13,687 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:13,701 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:13,715 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:13,727 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:13,740 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:13,752 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:13,770 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:13,782 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:13,795 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:13,808 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:13,823 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:13,836 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:13,849 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:13,861 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:13,874 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:13,887 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:13,900 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:13,912 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:13,924 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:13,937 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:13,951 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:13,965 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:13,977 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:13,990 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:14,003 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:14,016 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:14,028 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:14,041 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:14,053 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:14,066 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:14,079 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:14,091 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:14,104 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:14,117 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:14,135 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:14,148 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:14,162 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:14,174 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:14,187 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:14,200 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:14,213 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:14,225 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:14,238 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:14,251 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:14,264 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:14,276 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:14,289 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:14,302 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:14,315 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:14,327 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:14,340 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:14,354 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:14,367 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:14,380 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:14,395 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:14,409 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:14,425 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:14,440 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:14,455 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:14,469 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:14,482 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:14,495 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:14,508 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:14,520 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:14,533 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:14,546 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:14,559 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:14,571 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:14,584 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:14,597 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:14,611 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:14,624 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:14,637 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:14,650 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:14,667 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:14,683 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:14,697 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:14,711 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:14,725 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:14,738 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:14,752 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:14,765 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:14,777 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:14,790 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:14,803 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:14,816 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:14,830 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 21:58:14,841 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 21:58:14,854 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:58:14,868 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 21:58:14,881 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 21:58:14,894 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 21:58:14,906 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 21:58:14,918 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 21:58:14,931 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùProtIdTypeùUML74ùdd' HYPERLINK ProtIdType, UML74 +2024-09-07 21:58:14,944 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 21:58:14,956 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:14,970 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 21:58:14,983 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:14,996 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 21:58:15,009 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 21:58:15,024 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 21:58:15,037 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 21:58:15,049 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 21:58:15,062 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:15,075 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 21:58:15,088 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùLnkTypeùUML78ùdd' HYPERLINK LnkType, UML78 +2024-09-07 21:58:15,101 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-07 21:58:15,115 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 21:58:15,128 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:15,140 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:58:15,153 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:15,166 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:15,179 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:15,191 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:15,204 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:15,217 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:15,230 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:15,243 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:15,256 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:15,268 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:15,281 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:15,295 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:15,307 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:15,319 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:15,332 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:15,345 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:15,358 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:15,372 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:15,385 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:15,398 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:15,415 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:15,428 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:15,440 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:15,453 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:15,467 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:15,483 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:15,498 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:15,513 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:15,528 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:15,540 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:15,553 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:15,566 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:15,581 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:15,594 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:15,607 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:15,620 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:15,633 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:15,646 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:15,658 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:15,670 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:15,683 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:15,696 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:15,710 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:15,723 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:15,736 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:15,749 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:15,762 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:15,775 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:15,787 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:15,800 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:15,813 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-07 21:58:15,826 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:15,839 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:15,852 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:15,864 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:15,877 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:15,890 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:15,903 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:15,915 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:15,928 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:15,941 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:15,954 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:15,966 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:15,980 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:15,997 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:16,010 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:16,022 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:16,035 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:16,048 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:16,061 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:16,074 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:16,086 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:16,098 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:16,111 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:16,124 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:16,137 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:16,150 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:16,163 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:16,176 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:16,189 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:16,201 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:16,214 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:16,227 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:16,240 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:16,253 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:16,266 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:16,278 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:16,292 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:16,304 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:16,316 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:16,329 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:16,343 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:16,356 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:16,368 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:16,381 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:16,394 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:16,407 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:16,420 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:16,432 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:16,446 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:16,459 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:16,471 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:16,485 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-07 21:58:16,498 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:58:16,511 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:58:16,524 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:58:16,537 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:16,552 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:58:16,567 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:58:16,582 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:58:16,596 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:58:16,609 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-07 21:58:16,621 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:16,634 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:16,647 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:16,660 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:58:16,673 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:58:16,685 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:58:16,698 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:58:16,715 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:16,729 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:16,742 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:16,755 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:16,768 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:16,781 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:16,794 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:16,811 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:16,825 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:16,837 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:16,851 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:16,864 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:16,878 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:16,892 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:16,905 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:16,917 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:58:16,931 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:16,944 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:16,956 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:16,969 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-07 21:58:16,982 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSAssociationùUML104ùdd' HYPERLINK MMSAssociation, UML104 +2024-09-07 21:58:16,997 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:17,012 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:17,026 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:17,040 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSSecurityNotificationùUML115ùdd' HYPERLINK MMSSecurityNotification, UML115 +2024-09-07 21:58:17,053 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:58:17,066 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:17,079 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSNotificationùUML116ùdd' HYPERLINK MMSNotification, UML116 +2024-09-07 21:58:17,093 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:17,107 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:17,119 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:17,131 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:17,144 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:58:17,157 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:17,170 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:58:17,182 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:17,195 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:58:17,208 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:17,220 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:58:17,232 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:17,245 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:58:17,258 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:17,271 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:58:17,284 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:17,297 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:58:17,310 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:17,327 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:58:17,341 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:17,355 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:58:17,369 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:17,383 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:58:17,396 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:17,410 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:58:17,424 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:17,438 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:58:17,452 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:17,464 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:58:17,478 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:58:17,493 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 21:58:17,508 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 21:58:17,521 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:58:17,535 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:17,548 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 21:58:17,561 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 21:58:17,577 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 21:58:17,590 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSelectorùUML62ùdd' HYPERLINK Selector, UML62 +2024-09-07 21:58:17,602 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSelectorùUML62ùdd' HYPERLINK Selector, UML62 +2024-09-07 21:58:17,615 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSelectorùUML62ùdd' HYPERLINK Selector, UML62 +2024-09-07 21:58:17,630 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:58:17,645 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-07 21:58:17,661 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSecurityProfileTypeùUML76ùdd' HYPERLINK SecurityProfileType, UML76 +2024-09-07 21:58:17,674 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:17,687 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:58:17,701 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:17,715 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:58:17,728 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:17,740 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:58:17,754 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:17,766 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:58:17,779 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:17,791 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:58:17,804 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:17,818 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:58:17,830 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:17,843 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:58:17,856 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:17,868 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:58:17,881 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:17,894 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:58:17,907 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:17,920 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:58:17,967 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:17,983 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:58:17,997 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:18,011 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:58:18,024 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:18,037 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-07 21:58:18,050 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 21:58:18,063 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:18,076 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:58:18,089 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:18,101 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:18,114 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:18,126 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:18,139 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:18,151 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:18,163 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:18,176 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:18,188 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:18,202 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:18,214 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:18,226 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:18,240 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-07 21:58:18,253 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:18,266 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-07 21:58:18,279 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:18,291 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:18,305 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:18,317 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:18,330 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:18,342 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:18,357 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:18,372 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:18,388 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:18,400 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:18,413 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:58:18,426 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:18,439 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:18,452 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:18,464 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:18,477 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:58:18,490 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:18,503 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:58:18,515 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:18,528 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:58:18,541 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:18,554 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:58:18,566 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:18,579 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:18,591 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:18,605 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:18,619 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 21:58:18,631 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:18,644 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:58:18,657 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:18,670 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:58:18,684 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:18,699 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:58:18,717 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:58:18,731 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:18,746 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:18,759 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSVPublisherAssociationIPùUML119ùdd' HYPERLINK SVPublisherAssociationIP, UML119 +2024-09-07 21:58:18,772 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSVPublisherAssociationL2ùUML120ùdd' HYPERLINK SVPublisherAssociationL2, UML120 +2024-09-07 21:58:18,785 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSVNotificationùUML130ùdd' HYPERLINK SVNotification, UML130 +2024-09-07 21:58:18,797 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSVSubcriberAssociationIPùUML124ùdd' HYPERLINK SVSubcriberAssociationIP, UML124 +2024-09-07 21:58:18,810 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSVSubcriberAssociationL2ùUML125ùdd' HYPERLINK SVSubcriberAssociationL2, UML125 +2024-09-07 21:58:18,825 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:18,838 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:58:18,851 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:18,863 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:58:18,875 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:18,888 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:58:18,901 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 21:58:18,914 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 21:58:18,927 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:18,939 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 21:58:18,954 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:58:18,970 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 21:58:18,983 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:19,005 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 21:58:19,018 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:19,031 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 21:58:19,044 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:19,057 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 21:58:19,071 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:19,083 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:58:19,096 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:19,108 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:58:19,121 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:19,139 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:58:19,153 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMacAddressùUML63ùdd' HYPERLINK MacAddress, UML63 +2024-09-07 21:58:19,167 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:19,179 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 21:58:19,192 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:58:19,205 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 21:58:19,219 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:19,231 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 21:58:19,245 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:19,258 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 21:58:19,272 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:19,286 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 21:58:19,298 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:19,312 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:58:19,325 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:19,338 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:58:19,351 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:19,364 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:58:19,377 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 21:58:19,390 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 21:58:19,406 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:19,420 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:58:19,436 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:58:19,450 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:58:19,463 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:19,478 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:58:19,491 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:19,504 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:58:19,521 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:19,536 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:58:19,549 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:19,562 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:58:19,575 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 21:58:19,589 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:58:19,602 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:19,614 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:58:19,627 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:19,640 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:58:19,652 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:19,665 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:58:19,678 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMacAddressùUML63ùdd' HYPERLINK MacAddress, UML63 +2024-09-07 21:58:19,691 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:19,706 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:58:19,719 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:58:19,733 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:58:19,746 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:19,759 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:58:19,774 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:19,788 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:58:19,804 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:19,820 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:58:19,833 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:19,845 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:58:19,858 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 21:58:19,870 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:58:19,883 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:19,895 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:58:19,907 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:19,920 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:58:19,933 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:19,946 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:58:19,959 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:19,971 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:58:19,985 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:19,997 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:58:20,010 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:20,023 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:58:20,036 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 21:58:20,050 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 21:58:20,063 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:58:20,076 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:58:20,089 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:20,102 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:20,116 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:58:20,128 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:20,141 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 21:58:20,154 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:20,167 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 21:58:20,179 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:58:20,192 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:58:20,205 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:58:20,218 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:58:20,231 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimestampùUML61ùdd' HYPERLINK Timestamp, UML61 +2024-09-07 21:58:20,244 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:20,256 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:58:20,271 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:58:20,283 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:58:20,296 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:20,309 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:58:20,322 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:20,335 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:58:20,348 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:20,361 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:58:20,374 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:20,386 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:58:20,400 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 21:58:20,413 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:58:20,426 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:20,438 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:58:20,451 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:20,464 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:58:20,477 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:20,490 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:58:20,502 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:58:20,515 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:20,527 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:20,540 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:20,554 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEPublisherAssociationIPùUML121ùdd' HYPERLINK GSEPublisherAssociationIP, UML121 +2024-09-07 21:58:20,567 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEPublisherAssociationL2ùUML122ùdd' HYPERLINK GSEPublisherAssociationL2, UML122 +2024-09-07 21:58:20,581 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSENotificationùUML132ùdd' HYPERLINK GSENotification, UML132 +2024-09-07 21:58:20,593 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubcriberAssociationIPùUML127ùdd' HYPERLINK GSESubcriberAssociationIP, UML127 +2024-09-07 21:58:20,605 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubcriberAssociationL2ùUML128ùdd' HYPERLINK GSESubcriberAssociationL2, UML128 +2024-09-07 21:58:20,618 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:20,635 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:58:20,649 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:20,660 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:58:20,673 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:20,686 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:58:20,700 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 21:58:20,714 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 21:58:20,727 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:20,740 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 21:58:20,752 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:58:20,765 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 21:58:20,778 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:20,790 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 21:58:20,804 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:20,818 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 21:58:20,831 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:20,846 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 21:58:20,861 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:20,875 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:58:20,890 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:20,903 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:58:20,917 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:20,929 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:58:20,942 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMacAddressùUML63ùdd' HYPERLINK MacAddress, UML63 +2024-09-07 21:58:20,955 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMacAddressùUML63ùdd' HYPERLINK MacAddress, UML63 +2024-09-07 21:58:20,968 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:20,981 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 21:58:20,993 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:58:21,006 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 21:58:21,019 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:21,032 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 21:58:21,044 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:21,058 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 21:58:21,070 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:21,083 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-07 21:58:21,096 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:21,108 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:58:21,121 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:21,134 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:58:21,150 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:21,168 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:58:21,181 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-07 21:58:21,194 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-07 21:58:21,206 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 21:58:21,219 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:58:21,232 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 21:58:21,246 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:58:21,258 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:58:21,271 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:58:21,283 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:58:21,296 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:58:21,309 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:21,322 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:58:21,334 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:21,347 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:58:21,362 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:58:21,374 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:58:21,387 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:21,400 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:58:21,413 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 21:58:21,426 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:58:21,439 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:21,452 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:58:21,465 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 21:58:21,478 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:58:21,490 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:58:21,504 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:58:21,517 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:58:21,530 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:58:21,542 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:58:21,555 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:58:21,569 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:58:21,582 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:58:21,596 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimestampùUML61ùdd' HYPERLINK Timestamp, UML61 +2024-09-07 21:58:21,609 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:58:21,622 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:21,636 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:58:21,649 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:58:21,662 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:58:21,675 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:21,689 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:58:21,704 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:21,718 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:58:21,732 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:21,749 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:58:21,762 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:21,778 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:58:21,791 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 21:58:21,804 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:58:21,818 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:21,832 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:58:21,845 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:21,857 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:58:21,870 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:21,883 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:58:21,896 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMacAddressùUML63ùdd' HYPERLINK MacAddress, UML63 +2024-09-07 21:58:21,908 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMacAddressùUML63ùdd' HYPERLINK MacAddress, UML63 +2024-09-07 21:58:21,924 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 21:58:21,938 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:58:21,953 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 21:58:21,967 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:58:21,980 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:58:21,993 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:58:22,006 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:58:22,018 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:58:22,031 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:22,044 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:58:22,056 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:22,069 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:58:22,083 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:58:22,096 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:58:22,109 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:22,122 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:58:22,135 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 21:58:22,147 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:58:22,160 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:22,173 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:58:22,185 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 21:58:22,198 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:58:22,211 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:58:22,224 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:58:22,237 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:58:22,249 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:58:22,262 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:58:22,275 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:58:22,288 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:58:22,300 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:58:22,313 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimestampùUML61ùdd' HYPERLINK Timestamp, UML61 +2024-09-07 21:58:22,327 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-07 21:58:22,340 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:22,353 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:58:22,366 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:58:22,379 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:58:22,392 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:22,403 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:58:22,418 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:22,431 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:58:22,448 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-07 21:58:22,461 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:58:22,474 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:22,488 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:58:22,501 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-07 21:58:22,515 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-07 21:58:22,528 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:22,542 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:58:22,554 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:22,567 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:58:22,580 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:22,594 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:58:22,606 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:22,619 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:58:22,632 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:22,645 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:58:22,659 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:22,672 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-07 21:58:22,685 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 21:58:22,698 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:22,715 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntTypeùUML71ùdd' HYPERLINK IntType, UML71 +2024-09-07 21:58:22,729 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:58:22,742 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:58:22,755 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:58:22,768 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:58:22,781 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:58:22,794 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:58:22,808 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:58:22,820 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:58:22,834 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:58:22,847 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:58:22,861 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:58:22,875 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:58:22,888 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:58:22,901 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:58:22,913 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:58:22,930 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:58:22,943 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:58:22,957 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:58:22,970 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:58:22,984 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSEREntryùUML139ùdd' HYPERLINK SEREntry, UML139 +2024-09-07 21:58:22,998 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùETHEntryùUML137ùdd' HYPERLINK ETHEntry, UML137 +2024-09-07 21:58:23,013 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùUSBEntryùUML141ùdd' HYPERLINK USBEntry, UML141 +2024-09-07 21:58:23,029 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùKEYEntryùUML138ùdd' HYPERLINK KEYEntry, UML138 +2024-09-07 21:58:23,042 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùALGEntryùUML140ùdd' HYPERLINK ALGEntry, UML140 +2024-09-07 21:58:23,055 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùNotificationùUML143ùdd' HYPERLINK Notification, UML143 +2024-09-07 21:58:23,068 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 21:58:23,081 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:58:23,094 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:23,107 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:58:23,120 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntTypeùUML71ùdd' HYPERLINK IntType, UML71 +2024-09-07 21:58:23,133 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:58:23,147 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:58:23,192 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:58:23,209 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:58:23,223 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:58:23,235 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:58:23,247 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:58:23,260 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:58:23,273 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:58:23,285 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:58:23,299 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 21:58:23,312 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:58:23,325 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:23,344 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:58:23,358 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntTypeùUML71ùdd' HYPERLINK IntType, UML71 +2024-09-07 21:58:23,370 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:58:23,382 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:58:23,395 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:58:23,408 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:58:23,421 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:58:23,434 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:58:23,446 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:58:23,459 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:58:23,472 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:58:23,485 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:23,498 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-07 21:58:23,511 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 21:58:23,524 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:58:23,536 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:23,549 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:58:23,561 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntTypeùUML71ùdd' HYPERLINK IntType, UML71 +2024-09-07 21:58:23,574 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:58:23,586 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:58:23,599 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:58:23,613 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:58:23,626 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:58:23,638 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:58:23,651 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:58:23,663 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:58:23,676 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:58:23,689 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 21:58:23,702 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:58:23,715 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:23,728 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:58:23,741 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntTypeùUML71ùdd' HYPERLINK IntType, UML71 +2024-09-07 21:58:23,754 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:58:23,766 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:58:23,779 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:58:23,791 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:58:23,805 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:58:23,818 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:58:23,831 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:58:23,845 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:58:23,857 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:58:23,870 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 21:58:23,882 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:58:23,895 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-07 21:58:23,908 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:58:23,920 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntTypeùUML71ùdd' HYPERLINK IntType, UML71 +2024-09-07 21:58:23,933 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:58:23,946 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:58:23,958 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:58:23,971 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:58:23,983 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:58:23,996 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-07 21:58:24,008 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:58:24,021 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:58:24,033 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-07 21:58:24,046 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:58:24,061 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:58:24,076 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:58:24,091 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:58:24,105 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:58:24,118 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:58:24,131 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:58:24,144 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:58:24,157 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:58:24,170 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-07 21:58:24,188 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimestampùUML61ùdd' HYPERLINK Timestamp, UML61 +2024-09-07 21:58:24,200 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimestampùUML61ùdd' HYPERLINK Timestamp, UML61 +2024-09-07 21:58:24,212 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-07 21:58:24,225 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùClockEntryùUML134ùdd' HYPERLINK ClockEntry, UML134 +2024-09-07 21:58:24,238 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSecurityNotificationùUML135ùdd' HYPERLINK SecurityNotification, UML135 +2024-09-07 21:58:24,251 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-07 21:58:24,264 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-07 21:58:24,276 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimSyncIssueTypeùUML75ùdd' HYPERLINK TimSyncIssueType, UML75 +2024-09-07 21:58:24,290 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 21:58:24,302 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimSyncSrcTypeùUML77ùdd' HYPERLINK TimSyncSrcType, UML77 +2024-09-07 21:58:24,315 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 21:58:24,328 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-07 21:58:24,344 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 21:58:24,358 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-07 21:58:24,371 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimestampùUML61ùdd' HYPERLINK Timestamp, UML61 +2024-09-07 21:58:24,379 [main] INFO AbstractWordWriter - 2092 hyperlink placeholders found. +2024-09-07 21:58:24,381 [main] INFO Util - time=[0:00:28.646] scanned hyperlink placeholders. +2024-09-07 21:58:24,381 [main] INFO Util - +2024-09-07 21:58:24,381 [main] INFO Util - +2024-09-07 21:58:24,381 [main] INFO Util - ------------------------------------------------ +2024-09-07 21:58:24,381 [main] INFO Util - inserting 2092 hyperlinks (or text only) into hyperlink placeholders +2024-09-07 21:58:24,388 [main] TRACE AbstractWordWriter - replacing hyperlink [100010 - 100032] HYPERLINK TruthValue, UML38... +2024-09-07 21:58:24,401 [main] TRACE AbstractWordWriter - No hyperlink added: 'TruthValue' for bookmark 'UML38' not in this document. +2024-09-07 21:58:24,407 [main] TRACE AbstractWordWriter - replacing hyperlink [100434 - 100457] HYPERLINK DateAndTime, UML27... +2024-09-07 21:58:24,421 [main] TRACE AbstractWordWriter - No hyperlink added: 'DateAndTime' for bookmark 'UML27' not in this document. +2024-09-07 21:58:24,424 [main] TRACE AbstractWordWriter - replacing hyperlink [100601 - 100623] HYPERLINK TruthValue, UML38... +2024-09-07 21:58:24,438 [main] TRACE AbstractWordWriter - No hyperlink added: 'TruthValue' for bookmark 'UML38' not in this document. +2024-09-07 21:58:24,441 [main] TRACE AbstractWordWriter - replacing hyperlink [100986 - 101009] HYPERLINK DateAndTime, UML27... +2024-09-07 21:58:24,455 [main] TRACE AbstractWordWriter - No hyperlink added: 'DateAndTime' for bookmark 'UML27' not in this document. +2024-09-07 21:58:24,458 [main] TRACE AbstractWordWriter - replacing hyperlink [101153 - 101175] HYPERLINK Counter32 , UML26... +2024-09-07 21:58:24,472 [main] TRACE AbstractWordWriter - No hyperlink added: 'Counter32 ' for bookmark 'UML26' not in this document. +2024-09-07 21:58:24,476 [main] TRACE AbstractWordWriter - replacing hyperlink [101526 - 101549] HYPERLINK DateAndTime, UML27... +2024-09-07 21:58:24,490 [main] TRACE AbstractWordWriter - No hyperlink added: 'DateAndTime' for bookmark 'UML27' not in this document. +2024-09-07 21:58:24,493 [main] TRACE AbstractWordWriter - replacing hyperlink [101693 - 101715] HYPERLINK TruthValue, UML38... +2024-09-07 21:58:24,506 [main] TRACE AbstractWordWriter - No hyperlink added: 'TruthValue' for bookmark 'UML38' not in this document. +2024-09-07 21:58:24,510 [main] TRACE AbstractWordWriter - replacing hyperlink [102042 - 102063] HYPERLINK Float32TC, UML29... +2024-09-07 21:58:24,524 [main] TRACE AbstractWordWriter - No hyperlink added: 'Float32TC' for bookmark 'UML29' not in this document. +2024-09-07 21:58:24,527 [main] TRACE AbstractWordWriter - replacing hyperlink [102474 - 102497] HYPERLINK DateAndTime, UML27... +2024-09-07 21:58:24,541 [main] TRACE AbstractWordWriter - No hyperlink added: 'DateAndTime' for bookmark 'UML27' not in this document. +2024-09-07 21:58:24,544 [main] TRACE AbstractWordWriter - replacing hyperlink [102641 - 102662] HYPERLINK Float32TC, UML29... +2024-09-07 21:58:24,558 [main] TRACE AbstractWordWriter - No hyperlink added: 'Float32TC' for bookmark 'UML29' not in this document. +2024-09-07 21:58:24,561 [main] TRACE AbstractWordWriter - replacing hyperlink [103056 - 103078] HYPERLINK Unsigned32, UML36... +2024-09-07 21:58:24,574 [main] TRACE AbstractWordWriter - No hyperlink added: 'Unsigned32' for bookmark 'UML36' not in this document. +2024-09-07 21:58:24,577 [main] TRACE AbstractWordWriter - replacing hyperlink [103367 - 103388] HYPERLINK Integer32, UML35... +2024-09-07 21:58:24,592 [main] TRACE AbstractWordWriter - No hyperlink added: 'Integer32' for bookmark 'UML35' not in this document. +2024-09-07 21:58:24,595 [main] TRACE AbstractWordWriter - replacing hyperlink [103805 - 103828] HYPERLINK DateAndTime, UML27... +2024-09-07 21:58:24,609 [main] TRACE AbstractWordWriter - No hyperlink added: 'DateAndTime' for bookmark 'UML27' not in this document. +2024-09-07 21:58:24,612 [main] TRACE AbstractWordWriter - replacing hyperlink [103972 - 103993] HYPERLINK Integer32, UML35... +2024-09-07 21:58:24,626 [main] TRACE AbstractWordWriter - No hyperlink added: 'Integer32' for bookmark 'UML35' not in this document. +2024-09-07 21:58:24,630 [main] TRACE AbstractWordWriter - replacing hyperlink [104972 - 104995] HYPERLINK InetAddress, UML31... +2024-09-07 21:58:24,644 [main] TRACE AbstractWordWriter - No hyperlink added: 'InetAddress' for bookmark 'UML31' not in this document. +2024-09-07 21:58:24,647 [main] TRACE AbstractWordWriter - replacing hyperlink [105388 - 105415] HYPERLINK InetAddressType, UML33... +2024-09-07 21:58:24,662 [main] TRACE AbstractWordWriter - No hyperlink added: 'InetAddressType' for bookmark 'UML33' not in this document. +2024-09-07 21:58:24,665 [main] TRACE AbstractWordWriter - replacing hyperlink [105941 - 105963] HYPERLINK MacAddress, UML32... +2024-09-07 21:58:24,679 [main] TRACE AbstractWordWriter - No hyperlink added: 'MacAddress' for bookmark 'UML32' not in this document. +2024-09-07 21:58:24,682 [main] TRACE AbstractWordWriter - replacing hyperlink [106452 - 106477] HYPERLINK DisplayString, UML28... +2024-09-07 21:58:24,696 [main] TRACE AbstractWordWriter - No hyperlink added: 'DisplayString' for bookmark 'UML28' not in this document. +2024-09-07 21:58:24,699 [main] TRACE AbstractWordWriter - replacing hyperlink [106813 - 106836] HYPERLINK DateAndTime, UML27... +2024-09-07 21:58:24,714 [main] TRACE AbstractWordWriter - No hyperlink added: 'DateAndTime' for bookmark 'UML27' not in this document. +2024-09-07 21:58:24,718 [main] TRACE AbstractWordWriter - replacing hyperlink [107233 - 107258] HYPERLINK DisplayString, UML28... +2024-09-07 21:58:24,731 [main] TRACE AbstractWordWriter - No hyperlink added: 'DisplayString' for bookmark 'UML28' not in this document. +2024-09-07 21:58:24,734 [main] TRACE AbstractWordWriter - replacing hyperlink [107633 - 107656] HYPERLINK DateAndTime, UML27... +2024-09-07 21:58:24,748 [main] TRACE AbstractWordWriter - No hyperlink added: 'DateAndTime' for bookmark 'UML27' not in this document. +2024-09-07 21:58:24,751 [main] TRACE AbstractWordWriter - replacing hyperlink [107800 - 107825] HYPERLINK DisplayString, UML28... +2024-09-07 21:58:24,765 [main] TRACE AbstractWordWriter - No hyperlink added: 'DisplayString' for bookmark 'UML28' not in this document. +2024-09-07 21:58:24,768 [main] TRACE AbstractWordWriter - replacing hyperlink [116002 - 116025] HYPERLINK DateAndTime, UML27... +2024-09-07 21:58:24,781 [main] TRACE AbstractWordWriter - No hyperlink added: 'DateAndTime' for bookmark 'UML27' not in this document. +2024-09-07 21:58:24,784 [main] TRACE AbstractWordWriter - replacing hyperlink [116034 - 116058] HYPERLINK AppDatStKind, UML41... +2024-09-07 21:58:24,829 [main] TRACE AbstractWordWriter - replacing hyperlink [116412 - 116435] HYPERLINK DateAndTime, UML27... +2024-09-07 21:58:24,844 [main] TRACE AbstractWordWriter - No hyperlink added: 'DateAndTime' for bookmark 'UML27' not in this document. +2024-09-07 21:58:24,847 [main] TRACE AbstractWordWriter - replacing hyperlink [116444 - 116469] HYPERLINK PhyHealthKind, UML42... +2024-09-07 21:58:24,893 [main] TRACE AbstractWordWriter - replacing hyperlink [116811 - 116830] HYPERLINK ExtKind, UML43... +2024-09-07 21:58:24,938 [main] TRACE AbstractWordWriter - replacing hyperlink [117183 - 117202] HYPERLINK IntKind, UML44... +2024-09-07 21:58:24,984 [main] TRACE AbstractWordWriter - replacing hyperlink [117556 - 117579] HYPERLINK DateAndTime, UML27... +2024-09-07 21:58:24,998 [main] TRACE AbstractWordWriter - No hyperlink added: 'DateAndTime' for bookmark 'UML27' not in this document. +2024-09-07 21:58:25,002 [main] TRACE AbstractWordWriter - replacing hyperlink [117588 - 117609] HYPERLINK EventKind, UML48... +2024-09-07 21:58:25,047 [main] TRACE AbstractWordWriter - replacing hyperlink [117963 - 117986] HYPERLINK DateAndTime, UML27... +2024-09-07 21:58:25,061 [main] TRACE AbstractWordWriter - No hyperlink added: 'DateAndTime' for bookmark 'UML27' not in this document. +2024-09-07 21:58:25,065 [main] TRACE AbstractWordWriter - replacing hyperlink [117995 - 118017] HYPERLINK PSPAccKind, UML46... +2024-09-07 21:58:25,111 [main] TRACE AbstractWordWriter - replacing hyperlink [118446 - 118468] HYPERLINK ProtIdKind, UML47... +2024-09-07 21:58:25,162 [main] TRACE AbstractWordWriter - replacing hyperlink [118865 - 118893] HYPERLINK TimSyncIssueKind, UML49... +2024-09-07 21:58:25,210 [main] TRACE AbstractWordWriter - replacing hyperlink [119508 - 119539] HYPERLINK SecurityProfileKind, UML50... +2024-09-07 21:58:25,256 [main] TRACE AbstractWordWriter - replacing hyperlink [119957 - 119983] HYPERLINK TimSyncSrcKind, UML51... +2024-09-07 21:58:25,303 [main] TRACE AbstractWordWriter - replacing hyperlink [120396 - 120415] HYPERLINK LnkKind, UML45... +2024-09-07 21:58:25,348 [main] TRACE AbstractWordWriter - replacing hyperlink [122156 - 122180] HYPERLINK AppDatStType, UML68... +2024-09-07 21:58:25,401 [main] TRACE AbstractWordWriter - replacing hyperlink [122321 - 122338] HYPERLINK CntRs, UML67... +2024-09-07 21:58:25,446 [main] TRACE AbstractWordWriter - replacing hyperlink [122448 - 122469] HYPERLINK EventType, UML72... +2024-09-07 21:58:25,492 [main] TRACE AbstractWordWriter - replacing hyperlink [122561 - 122587] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:58:25,539 [main] TRACE AbstractWordWriter - replacing hyperlink [122667 - 122693] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:58:25,584 [main] TRACE AbstractWordWriter - replacing hyperlink [122804 - 122830] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:58:25,629 [main] TRACE AbstractWordWriter - replacing hyperlink [122943 - 122969] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:58:25,677 [main] TRACE AbstractWordWriter - replacing hyperlink [123094 - 123115] HYPERLINK PSUPEntry, UML80... +2024-09-07 21:58:25,726 [main] TRACE AbstractWordWriter - replacing hyperlink [123194 - 123213] HYPERLINK Integer, UML53... +2024-09-07 21:58:25,772 [main] TRACE AbstractWordWriter - replacing hyperlink [123341 - 123362] HYPERLINK IntegerTs, UML58... +2024-09-07 21:58:25,817 [main] TRACE AbstractWordWriter - replacing hyperlink [123479 - 123511] HYPERLINK SecurityNotification, UML82... +2024-09-07 21:58:25,863 [main] TRACE AbstractWordWriter - replacing hyperlink [123615 - 123639] HYPERLINK Notification, UML81... +2024-09-07 21:58:25,909 [main] TRACE AbstractWordWriter - replacing hyperlink [123724 - 123750] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:58:25,954 [main] TRACE AbstractWordWriter - replacing hyperlink [124174 - 124191] HYPERLINK CntRs, UML67... +2024-09-07 21:58:26,001 [main] TRACE AbstractWordWriter - replacing hyperlink [124267 - 124289] HYPERLINK CharString, UML59... +2024-09-07 21:58:26,047 [main] TRACE AbstractWordWriter - replacing hyperlink [124368 - 124391] HYPERLINK EntityIndex, UML66... +2024-09-07 21:58:26,092 [main] TRACE AbstractWordWriter - replacing hyperlink [124461 - 124483] HYPERLINK CharString, UML59... +2024-09-07 21:58:26,138 [main] TRACE AbstractWordWriter - replacing hyperlink [124560 - 124586] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:58:26,185 [main] TRACE AbstractWordWriter - replacing hyperlink [124684 - 124705] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:26,238 [main] TRACE AbstractWordWriter - replacing hyperlink [124868 - 124894] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:58:26,284 [main] TRACE AbstractWordWriter - replacing hyperlink [125376 - 125395] HYPERLINK Integer, UML53... +2024-09-07 21:58:26,328 [main] TRACE AbstractWordWriter - replacing hyperlink [125523 - 125544] HYPERLINK IntegerTs, UML58... +2024-09-07 21:58:26,376 [main] TRACE AbstractWordWriter - replacing hyperlink [126032 - 126053] HYPERLINK EventType, UML72... +2024-09-07 21:58:26,422 [main] TRACE AbstractWordWriter - replacing hyperlink [126145 - 126166] HYPERLINK Timestamp, UML61... +2024-09-07 21:58:26,468 [main] TRACE AbstractWordWriter - replacing hyperlink [126241 - 126262] HYPERLINK Timestamp, UML61... +2024-09-07 21:58:26,512 [main] TRACE AbstractWordWriter - replacing hyperlink [126368 - 126389] HYPERLINK Timestamp, UML61... +2024-09-07 21:58:26,559 [main] TRACE AbstractWordWriter - replacing hyperlink [126497 - 126518] HYPERLINK Timestamp, UML61... +2024-09-07 21:58:26,606 [main] TRACE AbstractWordWriter - replacing hyperlink [127516 - 127537] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:26,653 [main] TRACE AbstractWordWriter - replacing hyperlink [127663 - 127680] HYPERLINK CntRs, UML67... +2024-09-07 21:58:26,699 [main] TRACE AbstractWordWriter - replacing hyperlink [127767 - 127788] HYPERLINK IntegerTs, UML58... +2024-09-07 21:58:26,748 [main] TRACE AbstractWordWriter - replacing hyperlink [127875 - 127899] HYPERLINK CharStringTs, UML60... +2024-09-07 21:58:26,793 [main] TRACE AbstractWordWriter - replacing hyperlink [127995 - 128015] HYPERLINK CPUEntry, UML84... +2024-09-07 21:58:26,841 [main] TRACE AbstractWordWriter - replacing hyperlink [128133 - 128155] HYPERLINK FloatingTs, UML57... +2024-09-07 21:58:26,888 [main] TRACE AbstractWordWriter - replacing hyperlink [128314 - 128335] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:26,935 [main] TRACE AbstractWordWriter - replacing hyperlink [128481 - 128503] HYPERLINK CharString, UML59... +2024-09-07 21:58:26,981 [main] TRACE AbstractWordWriter - replacing hyperlink [128609 - 128630] HYPERLINK IntegerTs, UML58... +2024-09-07 21:58:27,025 [main] TRACE AbstractWordWriter - replacing hyperlink [128786 - 128806] HYPERLINK EXTEntry, UML85... +2024-09-07 21:58:27,072 [main] TRACE AbstractWordWriter - replacing hyperlink [128945 - 128969] HYPERLINK CharStringTs, UML60... +2024-09-07 21:58:27,118 [main] TRACE AbstractWordWriter - replacing hyperlink [129099 - 129121] HYPERLINK FloatingTs, UML57... +2024-09-07 21:58:27,164 [main] TRACE AbstractWordWriter - replacing hyperlink [129237 - 129258] HYPERLINK IntegerTs, UML58... +2024-09-07 21:58:27,209 [main] TRACE AbstractWordWriter - replacing hyperlink [129335 - 129356] HYPERLINK EventType, UML72... +2024-09-07 21:58:27,260 [main] TRACE AbstractWordWriter - replacing hyperlink [129453 - 129474] HYPERLINK IntegerTs, UML58... +2024-09-07 21:58:27,310 [main] TRACE AbstractWordWriter - replacing hyperlink [129561 - 129582] HYPERLINK IntegerTs, UML58... +2024-09-07 21:58:27,358 [main] TRACE AbstractWordWriter - replacing hyperlink [129662 - 129684] HYPERLINK CharString, UML59... +2024-09-07 21:58:27,406 [main] TRACE AbstractWordWriter - replacing hyperlink [129807 - 129829] HYPERLINK CharString, UML59... +2024-09-07 21:58:27,454 [main] TRACE AbstractWordWriter - replacing hyperlink [129930 - 129949] HYPERLINK Integer, UML53... +2024-09-07 21:58:27,501 [main] TRACE AbstractWordWriter - replacing hyperlink [130065 - 130087] HYPERLINK FloatingTs, UML57... +2024-09-07 21:58:27,546 [main] TRACE AbstractWordWriter - replacing hyperlink [130235 - 130257] HYPERLINK CharString, UML59... +2024-09-07 21:58:27,593 [main] TRACE AbstractWordWriter - replacing hyperlink [130353 - 130374] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:27,637 [main] TRACE AbstractWordWriter - replacing hyperlink [130493 - 130515] HYPERLINK CharString, UML59... +2024-09-07 21:58:27,684 [main] TRACE AbstractWordWriter - replacing hyperlink [130586 - 130607] HYPERLINK IntegerTs, UML58... +2024-09-07 21:58:27,732 [main] TRACE AbstractWordWriter - replacing hyperlink [130793 - 130815] HYPERLINK FloatingTs, UML57... +2024-09-07 21:58:27,779 [main] TRACE AbstractWordWriter - replacing hyperlink [130965 - 130987] HYPERLINK FloatingTs, UML57... +2024-09-07 21:58:27,824 [main] TRACE AbstractWordWriter - replacing hyperlink [131097 - 131122] HYPERLINK PhyHealthType, UML69... +2024-09-07 21:58:27,873 [main] TRACE AbstractWordWriter - replacing hyperlink [131234 - 131255] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:27,920 [main] TRACE AbstractWordWriter - replacing hyperlink [131384 - 131408] HYPERLINK CharStringTs, UML60... +2024-09-07 21:58:27,966 [main] TRACE AbstractWordWriter - replacing hyperlink [131506 - 131527] HYPERLINK IntegerTs, UML58... +2024-09-07 21:58:28,012 [main] TRACE AbstractWordWriter - replacing hyperlink [131668 - 131689] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:28,056 [main] TRACE AbstractWordWriter - replacing hyperlink [131800 - 131832] HYPERLINK SecurityNotification, UML88... +2024-09-07 21:58:28,102 [main] TRACE AbstractWordWriter - replacing hyperlink [131936 - 131960] HYPERLINK Notification, UML87... +2024-09-07 21:58:28,149 [main] TRACE AbstractWordWriter - replacing hyperlink [132044 - 132066] HYPERLINK STOREEntry, UML86... +2024-09-07 21:58:28,195 [main] TRACE AbstractWordWriter - replacing hyperlink [132197 - 132218] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:28,242 [main] TRACE AbstractWordWriter - replacing hyperlink [132476 - 132497] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:28,288 [main] TRACE AbstractWordWriter - replacing hyperlink [132633 - 132654] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:28,340 [main] TRACE AbstractWordWriter - replacing hyperlink [133015 - 133032] HYPERLINK CntRs, UML67... +2024-09-07 21:58:28,393 [main] TRACE AbstractWordWriter - replacing hyperlink [133108 - 133130] HYPERLINK CharString, UML59... +2024-09-07 21:58:28,439 [main] TRACE AbstractWordWriter - replacing hyperlink [133204 - 133230] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:58:28,485 [main] TRACE AbstractWordWriter - replacing hyperlink [133300 - 133323] HYPERLINK EntityIndex, UML66... +2024-09-07 21:58:28,531 [main] TRACE AbstractWordWriter - replacing hyperlink [133383 - 133409] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:58:28,578 [main] TRACE AbstractWordWriter - replacing hyperlink [133503 - 133529] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:58:28,625 [main] TRACE AbstractWordWriter - replacing hyperlink [133655 - 133677] HYPERLINK FloatingTs, UML57... +2024-09-07 21:58:28,670 [main] TRACE AbstractWordWriter - replacing hyperlink [133752 - 133773] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:28,719 [main] TRACE AbstractWordWriter - replacing hyperlink [134206 - 134229] HYPERLINK EntityIndex, UML66... +2024-09-07 21:58:28,769 [main] TRACE AbstractWordWriter - replacing hyperlink [134293 - 134315] HYPERLINK CharString, UML59... +2024-09-07 21:58:28,816 [main] TRACE AbstractWordWriter - replacing hyperlink [134405 - 134424] HYPERLINK ExtType, UML70... +2024-09-07 21:58:28,864 [main] TRACE AbstractWordWriter - replacing hyperlink [134533 - 134557] HYPERLINK CharStringTs, UML60... +2024-09-07 21:58:28,911 [main] TRACE AbstractWordWriter - replacing hyperlink [134645 - 134671] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:58:28,956 [main] TRACE AbstractWordWriter - replacing hyperlink [134797 - 134819] HYPERLINK FloatingTs, UML57... +2024-09-07 21:58:29,003 [main] TRACE AbstractWordWriter - replacing hyperlink [134900 - 134921] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:29,050 [main] TRACE AbstractWordWriter - replacing hyperlink [135068 - 135089] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:29,097 [main] TRACE AbstractWordWriter - replacing hyperlink [135192 - 135209] HYPERLINK CntRs, UML67... +2024-09-07 21:58:29,144 [main] TRACE AbstractWordWriter - replacing hyperlink [135573 - 135596] HYPERLINK EntityIndex, UML66... +2024-09-07 21:58:29,188 [main] TRACE AbstractWordWriter - replacing hyperlink [135667 - 135689] HYPERLINK CharString, UML59... +2024-09-07 21:58:29,236 [main] TRACE AbstractWordWriter - replacing hyperlink [135773 - 135793] HYPERLINK Floating, UML56... +2024-09-07 21:58:29,282 [main] TRACE AbstractWordWriter - replacing hyperlink [135876 - 135898] HYPERLINK FloatingTs, UML57... +2024-09-07 21:58:29,328 [main] TRACE AbstractWordWriter - replacing hyperlink [135987 - 136013] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:58:29,376 [main] TRACE AbstractWordWriter - replacing hyperlink [136101 - 136118] HYPERLINK CntRs, UML67... +2024-09-07 21:58:29,427 [main] TRACE AbstractWordWriter - replacing hyperlink [136542 - 136563] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:29,475 [main] TRACE AbstractWordWriter - replacing hyperlink [136692 - 136714] HYPERLINK FloatingTs, UML57... +2024-09-07 21:58:29,521 [main] TRACE AbstractWordWriter - replacing hyperlink [136826 - 136848] HYPERLINK FloatingTs, UML57... +2024-09-07 21:58:29,570 [main] TRACE AbstractWordWriter - replacing hyperlink [136998 - 137020] HYPERLINK FloatingTs, UML57... +2024-09-07 21:58:29,617 [main] TRACE AbstractWordWriter - replacing hyperlink [137130 - 137155] HYPERLINK PhyHealthType, UML69... +2024-09-07 21:58:29,663 [main] TRACE AbstractWordWriter - replacing hyperlink [137261 - 137282] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:29,709 [main] TRACE AbstractWordWriter - replacing hyperlink [137731 - 137752] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:29,756 [main] TRACE AbstractWordWriter - replacing hyperlink [137881 - 137902] HYPERLINK IntegerTs, UML58... +2024-09-07 21:58:29,805 [main] TRACE AbstractWordWriter - replacing hyperlink [138061 - 138082] HYPERLINK EventType, UML72... +2024-09-07 21:58:29,850 [main] TRACE AbstractWordWriter - replacing hyperlink [138182 - 138203] HYPERLINK IntegerTs, UML58... +2024-09-07 21:58:29,896 [main] TRACE AbstractWordWriter - replacing hyperlink [138390 - 138411] HYPERLINK IntegerTs, UML58... +2024-09-07 21:58:29,942 [main] TRACE AbstractWordWriter - replacing hyperlink [138552 - 138573] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:29,987 [main] TRACE AbstractWordWriter - replacing hyperlink [140374 - 140398] HYPERLINK BooleanValue, UML52... +2024-09-07 21:58:30,034 [main] TRACE AbstractWordWriter - replacing hyperlink [140529 - 140548] HYPERLINK Integer, UML53... +2024-09-07 21:58:30,080 [main] TRACE AbstractWordWriter - replacing hyperlink [140714 - 140734] HYPERLINK Floating, UML56... +2024-09-07 21:58:30,127 [main] TRACE AbstractWordWriter - replacing hyperlink [140901 - 140921] HYPERLINK Floating, UML56... +2024-09-07 21:58:30,173 [main] TRACE AbstractWordWriter - replacing hyperlink [141087 - 141107] HYPERLINK Floating, UML56... +2024-09-07 21:58:30,219 [main] TRACE AbstractWordWriter - replacing hyperlink [141274 - 141294] HYPERLINK Floating, UML56... +2024-09-07 21:58:30,269 [main] TRACE AbstractWordWriter - replacing hyperlink [141453 - 141473] HYPERLINK Floating, UML56... +2024-09-07 21:58:30,314 [main] TRACE AbstractWordWriter - replacing hyperlink [141574 - 141594] HYPERLINK Floating, UML56... +2024-09-07 21:58:30,362 [main] TRACE AbstractWordWriter - replacing hyperlink [142501 - 142522] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:30,410 [main] TRACE AbstractWordWriter - replacing hyperlink [142651 - 142672] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:30,459 [main] TRACE AbstractWordWriter - replacing hyperlink [142778 - 142799] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:30,513 [main] TRACE AbstractWordWriter - replacing hyperlink [142920 - 142941] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:30,560 [main] TRACE AbstractWordWriter - replacing hyperlink [143098 - 143119] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:30,606 [main] TRACE AbstractWordWriter - replacing hyperlink [143289 - 143310] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:30,651 [main] TRACE AbstractWordWriter - replacing hyperlink [143447 - 143468] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:30,698 [main] TRACE AbstractWordWriter - replacing hyperlink [143596 - 143617] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:30,746 [main] TRACE AbstractWordWriter - replacing hyperlink [143744 - 143765] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:30,795 [main] TRACE AbstractWordWriter - replacing hyperlink [143854 - 143875] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:30,843 [main] TRACE AbstractWordWriter - replacing hyperlink [143955 - 143976] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:30,889 [main] TRACE AbstractWordWriter - replacing hyperlink [144090 - 144111] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:30,936 [main] TRACE AbstractWordWriter - replacing hyperlink [144227 - 144248] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:30,982 [main] TRACE AbstractWordWriter - replacing hyperlink [144335 - 144356] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:31,030 [main] TRACE AbstractWordWriter - replacing hyperlink [144453 - 144474] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:31,077 [main] TRACE AbstractWordWriter - replacing hyperlink [144596 - 144617] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:31,127 [main] TRACE AbstractWordWriter - replacing hyperlink [144753 - 144774] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:31,176 [main] TRACE AbstractWordWriter - replacing hyperlink [144896 - 144917] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:31,226 [main] TRACE AbstractWordWriter - replacing hyperlink [145037 - 145058] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:31,277 [main] TRACE AbstractWordWriter - replacing hyperlink [145214 - 145235] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:31,325 [main] TRACE AbstractWordWriter - replacing hyperlink [145377 - 145398] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:31,373 [main] TRACE AbstractWordWriter - replacing hyperlink [145509 - 145530] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:31,422 [main] TRACE AbstractWordWriter - replacing hyperlink [145659 - 145680] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:31,476 [main] TRACE AbstractWordWriter - replacing hyperlink [145819 - 145840] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:31,535 [main] TRACE AbstractWordWriter - replacing hyperlink [146019 - 146040] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:31,595 [main] TRACE AbstractWordWriter - replacing hyperlink [146221 - 146242] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:31,654 [main] TRACE AbstractWordWriter - replacing hyperlink [146381 - 146402] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:31,706 [main] TRACE AbstractWordWriter - replacing hyperlink [146518 - 146539] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:31,764 [main] TRACE AbstractWordWriter - replacing hyperlink [146641 - 146662] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:31,821 [main] TRACE AbstractWordWriter - replacing hyperlink [146809 - 146830] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:31,883 [main] TRACE AbstractWordWriter - replacing hyperlink [146951 - 146972] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:31,944 [main] TRACE AbstractWordWriter - replacing hyperlink [147141 - 147162] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:32,001 [main] TRACE AbstractWordWriter - replacing hyperlink [147308 - 147329] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:32,063 [main] TRACE AbstractWordWriter - replacing hyperlink [147505 - 147526] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:32,118 [main] TRACE AbstractWordWriter - replacing hyperlink [147676 - 147697] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:32,177 [main] TRACE AbstractWordWriter - replacing hyperlink [148248 - 148271] HYPERLINK EntityIndex, UML66... +2024-09-07 21:58:32,241 [main] TRACE AbstractWordWriter - replacing hyperlink [148341 - 148358] HYPERLINK CntRs, UML67... +2024-09-07 21:58:32,299 [main] TRACE AbstractWordWriter - replacing hyperlink [148439 - 148462] HYPERLINK InetAddress, UML65... +2024-09-07 21:58:32,369 [main] TRACE AbstractWordWriter - replacing hyperlink [148536 - 148563] HYPERLINK InetAddressType, UML64... +2024-09-07 21:58:32,446 [main] TRACE AbstractWordWriter - replacing hyperlink [148642 - 148665] HYPERLINK InetAddress, UML65... +2024-09-07 21:58:32,522 [main] TRACE AbstractWordWriter - replacing hyperlink [148740 - 148767] HYPERLINK InetAddressType, UML64... +2024-09-07 21:58:32,593 [main] TRACE AbstractWordWriter - replacing hyperlink [148850 - 148874] HYPERLINK BooleanValue, UML52... +2024-09-07 21:58:32,662 [main] TRACE AbstractWordWriter - replacing hyperlink [148932 - 148962] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:58:32,715 [main] TRACE AbstractWordWriter - replacing hyperlink [149020 - 149039] HYPERLINK Integer, UML53... +2024-09-07 21:58:32,773 [main] TRACE AbstractWordWriter - replacing hyperlink [149092 - 149122] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:58:32,831 [main] TRACE AbstractWordWriter - replacing hyperlink [149175 - 149195] HYPERLINK Floating, UML56... +2024-09-07 21:58:32,886 [main] TRACE AbstractWordWriter - replacing hyperlink [149252 - 149282] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:58:32,945 [main] TRACE AbstractWordWriter - replacing hyperlink [149333 - 149353] HYPERLINK Floating, UML56... +2024-09-07 21:58:33,002 [main] TRACE AbstractWordWriter - replacing hyperlink [149410 - 149440] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:58:33,066 [main] TRACE AbstractWordWriter - replacing hyperlink [149501 - 149521] HYPERLINK Floating, UML56... +2024-09-07 21:58:33,121 [main] TRACE AbstractWordWriter - replacing hyperlink [149578 - 149608] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:58:33,187 [main] TRACE AbstractWordWriter - replacing hyperlink [149666 - 149686] HYPERLINK Floating, UML56... +2024-09-07 21:58:33,246 [main] TRACE AbstractWordWriter - replacing hyperlink [149743 - 149773] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:58:33,300 [main] TRACE AbstractWordWriter - replacing hyperlink [149826 - 149846] HYPERLINK Floating, UML56... +2024-09-07 21:58:33,355 [main] TRACE AbstractWordWriter - replacing hyperlink [149903 - 149933] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:58:33,407 [main] TRACE AbstractWordWriter - replacing hyperlink [149990 - 150010] HYPERLINK Floating, UML56... +2024-09-07 21:58:33,460 [main] TRACE AbstractWordWriter - replacing hyperlink [150067 - 150097] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:58:33,512 [main] TRACE AbstractWordWriter - replacing hyperlink [150153 - 150174] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:33,566 [main] TRACE AbstractWordWriter - replacing hyperlink [150229 - 150262] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:33,616 [main] TRACE AbstractWordWriter - replacing hyperlink [150328 - 150349] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:33,663 [main] TRACE AbstractWordWriter - replacing hyperlink [150404 - 150437] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:33,718 [main] TRACE AbstractWordWriter - replacing hyperlink [150503 - 150524] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:33,764 [main] TRACE AbstractWordWriter - replacing hyperlink [150579 - 150612] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:33,811 [main] TRACE AbstractWordWriter - replacing hyperlink [150671 - 150692] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:33,859 [main] TRACE AbstractWordWriter - replacing hyperlink [150747 - 150780] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:33,907 [main] TRACE AbstractWordWriter - replacing hyperlink [150842 - 150863] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:33,954 [main] TRACE AbstractWordWriter - replacing hyperlink [150918 - 150951] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:34,003 [main] TRACE AbstractWordWriter - replacing hyperlink [151010 - 151031] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:34,050 [main] TRACE AbstractWordWriter - replacing hyperlink [151086 - 151119] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:34,095 [main] TRACE AbstractWordWriter - replacing hyperlink [151187 - 151208] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:34,142 [main] TRACE AbstractWordWriter - replacing hyperlink [151263 - 151296] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:34,189 [main] TRACE AbstractWordWriter - replacing hyperlink [151357 - 151378] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:34,235 [main] TRACE AbstractWordWriter - replacing hyperlink [151433 - 151466] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:34,284 [main] TRACE AbstractWordWriter - replacing hyperlink [151521 - 151542] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:34,345 [main] TRACE AbstractWordWriter - replacing hyperlink [151597 - 151630] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:34,392 [main] TRACE AbstractWordWriter - replacing hyperlink [151686 - 151707] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:34,438 [main] TRACE AbstractWordWriter - replacing hyperlink [151762 - 151795] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:34,485 [main] TRACE AbstractWordWriter - replacing hyperlink [151855 - 151876] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:34,532 [main] TRACE AbstractWordWriter - replacing hyperlink [151931 - 151964] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:34,578 [main] TRACE AbstractWordWriter - replacing hyperlink [152030 - 152051] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:34,625 [main] TRACE AbstractWordWriter - replacing hyperlink [152106 - 152139] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:34,671 [main] TRACE AbstractWordWriter - replacing hyperlink [152199 - 152220] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:34,718 [main] TRACE AbstractWordWriter - replacing hyperlink [152275 - 152308] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:34,769 [main] TRACE AbstractWordWriter - replacing hyperlink [152365 - 152386] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:34,817 [main] TRACE AbstractWordWriter - replacing hyperlink [152441 - 152474] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:34,867 [main] TRACE AbstractWordWriter - replacing hyperlink [152534 - 152555] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:34,914 [main] TRACE AbstractWordWriter - replacing hyperlink [152610 - 152643] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:34,960 [main] TRACE AbstractWordWriter - replacing hyperlink [152707 - 152728] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:35,008 [main] TRACE AbstractWordWriter - replacing hyperlink [152783 - 152816] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:35,055 [main] TRACE AbstractWordWriter - replacing hyperlink [152876 - 152897] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:35,102 [main] TRACE AbstractWordWriter - replacing hyperlink [152952 - 152985] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:35,149 [main] TRACE AbstractWordWriter - replacing hyperlink [153046 - 153067] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:35,196 [main] TRACE AbstractWordWriter - replacing hyperlink [153122 - 153155] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:35,243 [main] TRACE AbstractWordWriter - replacing hyperlink [153211 - 153232] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:35,301 [main] TRACE AbstractWordWriter - replacing hyperlink [153287 - 153320] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:35,354 [main] TRACE AbstractWordWriter - replacing hyperlink [153378 - 153399] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:35,404 [main] TRACE AbstractWordWriter - replacing hyperlink [153454 - 153487] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:35,452 [main] TRACE AbstractWordWriter - replacing hyperlink [153544 - 153565] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:35,515 [main] TRACE AbstractWordWriter - replacing hyperlink [153620 - 153653] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:35,575 [main] TRACE AbstractWordWriter - replacing hyperlink [153715 - 153736] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:35,639 [main] TRACE AbstractWordWriter - replacing hyperlink [153791 - 153824] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:35,689 [main] TRACE AbstractWordWriter - replacing hyperlink [153896 - 153917] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:35,739 [main] TRACE AbstractWordWriter - replacing hyperlink [153972 - 154005] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:35,789 [main] TRACE AbstractWordWriter - replacing hyperlink [154065 - 154086] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:35,865 [main] TRACE AbstractWordWriter - replacing hyperlink [154141 - 154174] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:35,916 [main] TRACE AbstractWordWriter - replacing hyperlink [154234 - 154255] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:35,972 [main] TRACE AbstractWordWriter - replacing hyperlink [154310 - 154343] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:36,025 [main] TRACE AbstractWordWriter - replacing hyperlink [154409 - 154430] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:36,075 [main] TRACE AbstractWordWriter - replacing hyperlink [154485 - 154518] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:36,124 [main] TRACE AbstractWordWriter - replacing hyperlink [154581 - 154602] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:36,175 [main] TRACE AbstractWordWriter - replacing hyperlink [154657 - 154690] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:36,223 [main] TRACE AbstractWordWriter - replacing hyperlink [154749 - 154770] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:36,273 [main] TRACE AbstractWordWriter - replacing hyperlink [154825 - 154858] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:36,323 [main] TRACE AbstractWordWriter - replacing hyperlink [154912 - 154933] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:36,377 [main] TRACE AbstractWordWriter - replacing hyperlink [154988 - 155021] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:36,427 [main] TRACE AbstractWordWriter - replacing hyperlink [155082 - 155103] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:36,478 [main] TRACE AbstractWordWriter - replacing hyperlink [155158 - 155191] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:36,528 [main] TRACE AbstractWordWriter - replacing hyperlink [155252 - 155273] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:36,575 [main] TRACE AbstractWordWriter - replacing hyperlink [155328 - 155361] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:36,647 [main] TRACE AbstractWordWriter - replacing hyperlink [155424 - 155445] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:36,703 [main] TRACE AbstractWordWriter - replacing hyperlink [155500 - 155533] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:36,749 [main] TRACE AbstractWordWriter - replacing hyperlink [155600 - 155621] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:36,797 [main] TRACE AbstractWordWriter - replacing hyperlink [155676 - 155709] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:36,848 [main] TRACE AbstractWordWriter - replacing hyperlink [155769 - 155790] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:36,907 [main] TRACE AbstractWordWriter - replacing hyperlink [155845 - 155878] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:36,958 [main] TRACE AbstractWordWriter - replacing hyperlink [155945 - 155966] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:37,005 [main] TRACE AbstractWordWriter - replacing hyperlink [156021 - 156054] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:37,051 [main] TRACE AbstractWordWriter - replacing hyperlink [156425 - 156442] HYPERLINK CntRs, UML67... +2024-09-07 21:58:37,103 [main] TRACE AbstractWordWriter - replacing hyperlink [156522 - 156543] HYPERLINK EventType, UML72... +2024-09-07 21:58:37,154 [main] TRACE AbstractWordWriter - replacing hyperlink [156659 - 156680] HYPERLINK ServerTLS, UML93... +2024-09-07 21:58:37,204 [main] TRACE AbstractWordWriter - replacing hyperlink [156762 - 156783] HYPERLINK ClientTLS, UML92... +2024-09-07 21:58:37,250 [main] TRACE AbstractWordWriter - replacing hyperlink [156876 - 156925] HYPERLINK IEC62351part3ed2SecurityNotification, UML106... +2024-09-07 21:58:37,297 [main] TRACE AbstractWordWriter - replacing hyperlink [157111 - 157132] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:37,344 [main] TRACE AbstractWordWriter - replacing hyperlink [157187 - 157220] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:37,410 [main] TRACE AbstractWordWriter - replacing hyperlink [157286 - 157307] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:37,468 [main] TRACE AbstractWordWriter - replacing hyperlink [157362 - 157395] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:37,523 [main] TRACE AbstractWordWriter - replacing hyperlink [157461 - 157482] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:37,576 [main] TRACE AbstractWordWriter - replacing hyperlink [157537 - 157570] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:37,626 [main] TRACE AbstractWordWriter - replacing hyperlink [157629 - 157650] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:37,676 [main] TRACE AbstractWordWriter - replacing hyperlink [157705 - 157738] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:37,727 [main] TRACE AbstractWordWriter - replacing hyperlink [157800 - 157821] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:37,776 [main] TRACE AbstractWordWriter - replacing hyperlink [157876 - 157909] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:37,829 [main] TRACE AbstractWordWriter - replacing hyperlink [157968 - 157989] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:37,883 [main] TRACE AbstractWordWriter - replacing hyperlink [158044 - 158077] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:37,972 [main] TRACE AbstractWordWriter - replacing hyperlink [158145 - 158166] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:38,039 [main] TRACE AbstractWordWriter - replacing hyperlink [158221 - 158254] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:38,094 [main] TRACE AbstractWordWriter - replacing hyperlink [158315 - 158336] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:38,146 [main] TRACE AbstractWordWriter - replacing hyperlink [158391 - 158424] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:38,197 [main] TRACE AbstractWordWriter - replacing hyperlink [158479 - 158500] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:38,248 [main] TRACE AbstractWordWriter - replacing hyperlink [158555 - 158588] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:38,299 [main] TRACE AbstractWordWriter - replacing hyperlink [158644 - 158665] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:38,351 [main] TRACE AbstractWordWriter - replacing hyperlink [158720 - 158753] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:38,404 [main] TRACE AbstractWordWriter - replacing hyperlink [158813 - 158834] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:38,456 [main] TRACE AbstractWordWriter - replacing hyperlink [158889 - 158922] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:38,505 [main] TRACE AbstractWordWriter - replacing hyperlink [158988 - 159009] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:38,551 [main] TRACE AbstractWordWriter - replacing hyperlink [159064 - 159097] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:38,597 [main] TRACE AbstractWordWriter - replacing hyperlink [159157 - 159178] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:38,645 [main] TRACE AbstractWordWriter - replacing hyperlink [159233 - 159266] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:38,691 [main] TRACE AbstractWordWriter - replacing hyperlink [159323 - 159344] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:38,760 [main] TRACE AbstractWordWriter - replacing hyperlink [159399 - 159432] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:38,818 [main] TRACE AbstractWordWriter - replacing hyperlink [159492 - 159513] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:38,874 [main] TRACE AbstractWordWriter - replacing hyperlink [159568 - 159601] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:38,923 [main] TRACE AbstractWordWriter - replacing hyperlink [159665 - 159686] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:38,970 [main] TRACE AbstractWordWriter - replacing hyperlink [159741 - 159774] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:39,024 [main] TRACE AbstractWordWriter - replacing hyperlink [159834 - 159855] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:39,077 [main] TRACE AbstractWordWriter - replacing hyperlink [159910 - 159943] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:39,127 [main] TRACE AbstractWordWriter - replacing hyperlink [160004 - 160025] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:39,175 [main] TRACE AbstractWordWriter - replacing hyperlink [160080 - 160113] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:39,224 [main] TRACE AbstractWordWriter - replacing hyperlink [160169 - 160190] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:39,271 [main] TRACE AbstractWordWriter - replacing hyperlink [160245 - 160278] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:39,317 [main] TRACE AbstractWordWriter - replacing hyperlink [160336 - 160357] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:39,369 [main] TRACE AbstractWordWriter - replacing hyperlink [160412 - 160445] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:39,416 [main] TRACE AbstractWordWriter - replacing hyperlink [160502 - 160523] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:39,462 [main] TRACE AbstractWordWriter - replacing hyperlink [160578 - 160611] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:39,514 [main] TRACE AbstractWordWriter - replacing hyperlink [160673 - 160694] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:39,570 [main] TRACE AbstractWordWriter - replacing hyperlink [160749 - 160782] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:39,626 [main] TRACE AbstractWordWriter - replacing hyperlink [160854 - 160875] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:39,679 [main] TRACE AbstractWordWriter - replacing hyperlink [160930 - 160963] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:39,731 [main] TRACE AbstractWordWriter - replacing hyperlink [161023 - 161044] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:39,785 [main] TRACE AbstractWordWriter - replacing hyperlink [161099 - 161132] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:39,842 [main] TRACE AbstractWordWriter - replacing hyperlink [161192 - 161213] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:39,891 [main] TRACE AbstractWordWriter - replacing hyperlink [161268 - 161301] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:39,942 [main] TRACE AbstractWordWriter - replacing hyperlink [161367 - 161388] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:39,993 [main] TRACE AbstractWordWriter - replacing hyperlink [161443 - 161476] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:40,043 [main] TRACE AbstractWordWriter - replacing hyperlink [161539 - 161560] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:40,095 [main] TRACE AbstractWordWriter - replacing hyperlink [161615 - 161648] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:40,155 [main] TRACE AbstractWordWriter - replacing hyperlink [161707 - 161728] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:40,202 [main] TRACE AbstractWordWriter - replacing hyperlink [161783 - 161816] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:40,250 [main] TRACE AbstractWordWriter - replacing hyperlink [161870 - 161891] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:40,297 [main] TRACE AbstractWordWriter - replacing hyperlink [161946 - 161979] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:40,348 [main] TRACE AbstractWordWriter - replacing hyperlink [162040 - 162061] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:40,401 [main] TRACE AbstractWordWriter - replacing hyperlink [162116 - 162149] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:40,452 [main] TRACE AbstractWordWriter - replacing hyperlink [162210 - 162231] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:40,503 [main] TRACE AbstractWordWriter - replacing hyperlink [162286 - 162319] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:40,555 [main] TRACE AbstractWordWriter - replacing hyperlink [162382 - 162403] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:40,605 [main] TRACE AbstractWordWriter - replacing hyperlink [162458 - 162491] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:40,659 [main] TRACE AbstractWordWriter - replacing hyperlink [162558 - 162579] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:40,709 [main] TRACE AbstractWordWriter - replacing hyperlink [162634 - 162667] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:40,759 [main] TRACE AbstractWordWriter - replacing hyperlink [162727 - 162748] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:40,807 [main] TRACE AbstractWordWriter - replacing hyperlink [162803 - 162836] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:40,858 [main] TRACE AbstractWordWriter - replacing hyperlink [162903 - 162924] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:40,905 [main] TRACE AbstractWordWriter - replacing hyperlink [162979 - 163012] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:40,954 [main] TRACE AbstractWordWriter - replacing hyperlink [163512 - 163533] HYPERLINK EventType, UML72... +2024-09-07 21:58:41,008 [main] TRACE AbstractWordWriter - replacing hyperlink [163910 - 163933] HYPERLINK EntityIndex, UML66... +2024-09-07 21:58:41,060 [main] TRACE AbstractWordWriter - replacing hyperlink [163987 - 164009] HYPERLINK TLSSession, UML91... +2024-09-07 21:58:41,106 [main] TRACE AbstractWordWriter - replacing hyperlink [164047 - 164064] HYPERLINK CntRs, UML67... +2024-09-07 21:58:41,152 [main] TRACE AbstractWordWriter - replacing hyperlink [164115 - 164137] HYPERLINK TLSSession, UML91... +2024-09-07 21:58:41,205 [main] TRACE AbstractWordWriter - replacing hyperlink [164180 - 164203] HYPERLINK InetAddress, UML65... +2024-09-07 21:58:41,259 [main] TRACE AbstractWordWriter - replacing hyperlink [164260 - 164282] HYPERLINK TLSSession, UML91... +2024-09-07 21:58:41,306 [main] TRACE AbstractWordWriter - replacing hyperlink [164329 - 164356] HYPERLINK InetAddressType, UML64... +2024-09-07 21:58:41,357 [main] TRACE AbstractWordWriter - replacing hyperlink [164417 - 164439] HYPERLINK TLSSession, UML91... +2024-09-07 21:58:41,410 [main] TRACE AbstractWordWriter - replacing hyperlink [164482 - 164505] HYPERLINK InetAddress, UML65... +2024-09-07 21:58:41,461 [main] TRACE AbstractWordWriter - replacing hyperlink [164562 - 164584] HYPERLINK TLSSession, UML91... +2024-09-07 21:58:41,518 [main] TRACE AbstractWordWriter - replacing hyperlink [164631 - 164658] HYPERLINK InetAddressType, UML64... +2024-09-07 21:58:41,571 [main] TRACE AbstractWordWriter - replacing hyperlink [164719 - 164741] HYPERLINK TLSSession, UML91... +2024-09-07 21:58:41,623 [main] TRACE AbstractWordWriter - replacing hyperlink [164787 - 164811] HYPERLINK BooleanValue, UML52... +2024-09-07 21:58:41,675 [main] TRACE AbstractWordWriter - replacing hyperlink [164869 - 164899] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:58:41,727 [main] TRACE AbstractWordWriter - replacing hyperlink [164957 - 164976] HYPERLINK Integer, UML53... +2024-09-07 21:58:41,781 [main] TRACE AbstractWordWriter - replacing hyperlink [165029 - 165059] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:58:41,829 [main] TRACE AbstractWordWriter - replacing hyperlink [165112 - 165132] HYPERLINK Floating, UML56... +2024-09-07 21:58:41,878 [main] TRACE AbstractWordWriter - replacing hyperlink [165189 - 165219] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:58:41,924 [main] TRACE AbstractWordWriter - replacing hyperlink [165270 - 165290] HYPERLINK Floating, UML56... +2024-09-07 21:58:41,972 [main] TRACE AbstractWordWriter - replacing hyperlink [165347 - 165377] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:58:42,020 [main] TRACE AbstractWordWriter - replacing hyperlink [165438 - 165458] HYPERLINK Floating, UML56... +2024-09-07 21:58:42,068 [main] TRACE AbstractWordWriter - replacing hyperlink [165515 - 165545] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:58:42,115 [main] TRACE AbstractWordWriter - replacing hyperlink [165603 - 165623] HYPERLINK Floating, UML56... +2024-09-07 21:58:42,162 [main] TRACE AbstractWordWriter - replacing hyperlink [165680 - 165710] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:58:42,209 [main] TRACE AbstractWordWriter - replacing hyperlink [165763 - 165783] HYPERLINK Floating, UML56... +2024-09-07 21:58:42,265 [main] TRACE AbstractWordWriter - replacing hyperlink [165840 - 165870] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:58:42,315 [main] TRACE AbstractWordWriter - replacing hyperlink [165927 - 165947] HYPERLINK Floating, UML56... +2024-09-07 21:58:42,364 [main] TRACE AbstractWordWriter - replacing hyperlink [166004 - 166034] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:58:42,413 [main] TRACE AbstractWordWriter - replacing hyperlink [166090 - 166111] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:42,472 [main] TRACE AbstractWordWriter - replacing hyperlink [166166 - 166199] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:42,523 [main] TRACE AbstractWordWriter - replacing hyperlink [166265 - 166286] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:42,580 [main] TRACE AbstractWordWriter - replacing hyperlink [166341 - 166374] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:42,632 [main] TRACE AbstractWordWriter - replacing hyperlink [166440 - 166461] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:42,680 [main] TRACE AbstractWordWriter - replacing hyperlink [166516 - 166549] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:42,728 [main] TRACE AbstractWordWriter - replacing hyperlink [166608 - 166629] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:42,777 [main] TRACE AbstractWordWriter - replacing hyperlink [166684 - 166717] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:42,825 [main] TRACE AbstractWordWriter - replacing hyperlink [166779 - 166800] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:42,875 [main] TRACE AbstractWordWriter - replacing hyperlink [166855 - 166888] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:42,922 [main] TRACE AbstractWordWriter - replacing hyperlink [166947 - 166968] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:42,970 [main] TRACE AbstractWordWriter - replacing hyperlink [167023 - 167056] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:43,019 [main] TRACE AbstractWordWriter - replacing hyperlink [167124 - 167145] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:43,067 [main] TRACE AbstractWordWriter - replacing hyperlink [167200 - 167233] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:43,116 [main] TRACE AbstractWordWriter - replacing hyperlink [167294 - 167315] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:43,164 [main] TRACE AbstractWordWriter - replacing hyperlink [167370 - 167403] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:43,210 [main] TRACE AbstractWordWriter - replacing hyperlink [167458 - 167479] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:43,258 [main] TRACE AbstractWordWriter - replacing hyperlink [167534 - 167567] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:43,329 [main] TRACE AbstractWordWriter - replacing hyperlink [167623 - 167644] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:43,449 [main] TRACE AbstractWordWriter - replacing hyperlink [167699 - 167732] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:43,498 [main] TRACE AbstractWordWriter - replacing hyperlink [167792 - 167813] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:43,546 [main] TRACE AbstractWordWriter - replacing hyperlink [167868 - 167901] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:43,595 [main] TRACE AbstractWordWriter - replacing hyperlink [167967 - 167988] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:43,642 [main] TRACE AbstractWordWriter - replacing hyperlink [168043 - 168076] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:43,692 [main] TRACE AbstractWordWriter - replacing hyperlink [168136 - 168157] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:43,745 [main] TRACE AbstractWordWriter - replacing hyperlink [168212 - 168245] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:43,795 [main] TRACE AbstractWordWriter - replacing hyperlink [168302 - 168323] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:43,849 [main] TRACE AbstractWordWriter - replacing hyperlink [168378 - 168411] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:43,905 [main] TRACE AbstractWordWriter - replacing hyperlink [168471 - 168492] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:43,956 [main] TRACE AbstractWordWriter - replacing hyperlink [168547 - 168580] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:44,010 [main] TRACE AbstractWordWriter - replacing hyperlink [168644 - 168665] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:44,062 [main] TRACE AbstractWordWriter - replacing hyperlink [168720 - 168753] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:44,111 [main] TRACE AbstractWordWriter - replacing hyperlink [168813 - 168834] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:44,160 [main] TRACE AbstractWordWriter - replacing hyperlink [168889 - 168922] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:44,209 [main] TRACE AbstractWordWriter - replacing hyperlink [168983 - 169004] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:44,257 [main] TRACE AbstractWordWriter - replacing hyperlink [169059 - 169092] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:44,306 [main] TRACE AbstractWordWriter - replacing hyperlink [169148 - 169169] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:44,354 [main] TRACE AbstractWordWriter - replacing hyperlink [169224 - 169257] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:44,431 [main] TRACE AbstractWordWriter - replacing hyperlink [169315 - 169336] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:44,500 [main] TRACE AbstractWordWriter - replacing hyperlink [169391 - 169424] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:44,548 [main] TRACE AbstractWordWriter - replacing hyperlink [169481 - 169502] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:44,596 [main] TRACE AbstractWordWriter - replacing hyperlink [169557 - 169590] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:44,644 [main] TRACE AbstractWordWriter - replacing hyperlink [169652 - 169673] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:44,693 [main] TRACE AbstractWordWriter - replacing hyperlink [169728 - 169761] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:44,742 [main] TRACE AbstractWordWriter - replacing hyperlink [169833 - 169854] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:44,790 [main] TRACE AbstractWordWriter - replacing hyperlink [169909 - 169942] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:44,838 [main] TRACE AbstractWordWriter - replacing hyperlink [170002 - 170023] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:44,889 [main] TRACE AbstractWordWriter - replacing hyperlink [170078 - 170111] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:44,938 [main] TRACE AbstractWordWriter - replacing hyperlink [170171 - 170192] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:44,985 [main] TRACE AbstractWordWriter - replacing hyperlink [170247 - 170280] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:45,033 [main] TRACE AbstractWordWriter - replacing hyperlink [170346 - 170367] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:45,080 [main] TRACE AbstractWordWriter - replacing hyperlink [170422 - 170455] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:45,129 [main] TRACE AbstractWordWriter - replacing hyperlink [170518 - 170539] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:45,180 [main] TRACE AbstractWordWriter - replacing hyperlink [170594 - 170627] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:45,233 [main] TRACE AbstractWordWriter - replacing hyperlink [170686 - 170707] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:45,280 [main] TRACE AbstractWordWriter - replacing hyperlink [170762 - 170795] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:45,329 [main] TRACE AbstractWordWriter - replacing hyperlink [170849 - 170870] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:45,379 [main] TRACE AbstractWordWriter - replacing hyperlink [170925 - 170958] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:45,436 [main] TRACE AbstractWordWriter - replacing hyperlink [171019 - 171040] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:45,486 [main] TRACE AbstractWordWriter - replacing hyperlink [171095 - 171128] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:45,547 [main] TRACE AbstractWordWriter - replacing hyperlink [171189 - 171210] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:45,602 [main] TRACE AbstractWordWriter - replacing hyperlink [171265 - 171298] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:45,650 [main] TRACE AbstractWordWriter - replacing hyperlink [171361 - 171382] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:45,700 [main] TRACE AbstractWordWriter - replacing hyperlink [171437 - 171470] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:45,748 [main] TRACE AbstractWordWriter - replacing hyperlink [171537 - 171558] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:45,796 [main] TRACE AbstractWordWriter - replacing hyperlink [171613 - 171646] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:45,845 [main] TRACE AbstractWordWriter - replacing hyperlink [171706 - 171727] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:45,897 [main] TRACE AbstractWordWriter - replacing hyperlink [171782 - 171815] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:45,948 [main] TRACE AbstractWordWriter - replacing hyperlink [171882 - 171903] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:46,002 [main] TRACE AbstractWordWriter - replacing hyperlink [171958 - 171991] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:46,054 [main] TRACE AbstractWordWriter - replacing hyperlink [172333 - 172356] HYPERLINK EntityIndex, UML66... +2024-09-07 21:58:46,107 [main] TRACE AbstractWordWriter - replacing hyperlink [172410 - 172432] HYPERLINK TLSSession, UML91... +2024-09-07 21:58:46,159 [main] TRACE AbstractWordWriter - replacing hyperlink [172470 - 172487] HYPERLINK CntRs, UML67... +2024-09-07 21:58:46,210 [main] TRACE AbstractWordWriter - replacing hyperlink [172538 - 172560] HYPERLINK TLSSession, UML91... +2024-09-07 21:58:46,265 [main] TRACE AbstractWordWriter - replacing hyperlink [172603 - 172626] HYPERLINK InetAddress, UML65... +2024-09-07 21:58:46,319 [main] TRACE AbstractWordWriter - replacing hyperlink [172683 - 172705] HYPERLINK TLSSession, UML91... +2024-09-07 21:58:46,384 [main] TRACE AbstractWordWriter - replacing hyperlink [172752 - 172779] HYPERLINK InetAddressType, UML64... +2024-09-07 21:58:46,437 [main] TRACE AbstractWordWriter - replacing hyperlink [172840 - 172862] HYPERLINK TLSSession, UML91... +2024-09-07 21:58:46,491 [main] TRACE AbstractWordWriter - replacing hyperlink [172905 - 172928] HYPERLINK InetAddress, UML65... +2024-09-07 21:58:46,545 [main] TRACE AbstractWordWriter - replacing hyperlink [172985 - 173007] HYPERLINK TLSSession, UML91... +2024-09-07 21:58:46,602 [main] TRACE AbstractWordWriter - replacing hyperlink [173054 - 173081] HYPERLINK InetAddressType, UML64... +2024-09-07 21:58:46,657 [main] TRACE AbstractWordWriter - replacing hyperlink [173142 - 173164] HYPERLINK TLSSession, UML91... +2024-09-07 21:58:46,709 [main] TRACE AbstractWordWriter - replacing hyperlink [173210 - 173234] HYPERLINK BooleanValue, UML52... +2024-09-07 21:58:46,763 [main] TRACE AbstractWordWriter - replacing hyperlink [173292 - 173322] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:58:46,817 [main] TRACE AbstractWordWriter - replacing hyperlink [173380 - 173399] HYPERLINK Integer, UML53... +2024-09-07 21:58:46,866 [main] TRACE AbstractWordWriter - replacing hyperlink [173452 - 173482] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:58:46,918 [main] TRACE AbstractWordWriter - replacing hyperlink [173535 - 173555] HYPERLINK Floating, UML56... +2024-09-07 21:58:46,969 [main] TRACE AbstractWordWriter - replacing hyperlink [173612 - 173642] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:58:47,017 [main] TRACE AbstractWordWriter - replacing hyperlink [173693 - 173713] HYPERLINK Floating, UML56... +2024-09-07 21:58:47,122 [main] TRACE AbstractWordWriter - replacing hyperlink [173770 - 173800] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:58:47,237 [main] TRACE AbstractWordWriter - replacing hyperlink [173861 - 173881] HYPERLINK Floating, UML56... +2024-09-07 21:58:47,349 [main] TRACE AbstractWordWriter - replacing hyperlink [173938 - 173968] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:58:47,407 [main] TRACE AbstractWordWriter - replacing hyperlink [174026 - 174046] HYPERLINK Floating, UML56... +2024-09-07 21:58:47,456 [main] TRACE AbstractWordWriter - replacing hyperlink [174103 - 174133] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:58:47,504 [main] TRACE AbstractWordWriter - replacing hyperlink [174186 - 174206] HYPERLINK Floating, UML56... +2024-09-07 21:58:47,553 [main] TRACE AbstractWordWriter - replacing hyperlink [174263 - 174293] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:58:47,605 [main] TRACE AbstractWordWriter - replacing hyperlink [174350 - 174370] HYPERLINK Floating, UML56... +2024-09-07 21:58:47,662 [main] TRACE AbstractWordWriter - replacing hyperlink [174427 - 174457] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:58:47,717 [main] TRACE AbstractWordWriter - replacing hyperlink [174513 - 174534] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:47,766 [main] TRACE AbstractWordWriter - replacing hyperlink [174589 - 174622] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:47,815 [main] TRACE AbstractWordWriter - replacing hyperlink [174688 - 174709] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:47,865 [main] TRACE AbstractWordWriter - replacing hyperlink [174764 - 174797] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:47,919 [main] TRACE AbstractWordWriter - replacing hyperlink [174863 - 174884] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:47,972 [main] TRACE AbstractWordWriter - replacing hyperlink [174939 - 174972] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:48,022 [main] TRACE AbstractWordWriter - replacing hyperlink [175031 - 175052] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:48,072 [main] TRACE AbstractWordWriter - replacing hyperlink [175107 - 175140] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:48,120 [main] TRACE AbstractWordWriter - replacing hyperlink [175202 - 175223] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:48,168 [main] TRACE AbstractWordWriter - replacing hyperlink [175278 - 175311] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:48,218 [main] TRACE AbstractWordWriter - replacing hyperlink [175370 - 175391] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:48,270 [main] TRACE AbstractWordWriter - replacing hyperlink [175446 - 175479] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:48,319 [main] TRACE AbstractWordWriter - replacing hyperlink [175547 - 175568] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:48,369 [main] TRACE AbstractWordWriter - replacing hyperlink [175623 - 175656] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:48,418 [main] TRACE AbstractWordWriter - replacing hyperlink [175717 - 175738] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:48,467 [main] TRACE AbstractWordWriter - replacing hyperlink [175793 - 175826] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:48,519 [main] TRACE AbstractWordWriter - replacing hyperlink [175881 - 175902] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:48,568 [main] TRACE AbstractWordWriter - replacing hyperlink [175957 - 175990] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:48,635 [main] TRACE AbstractWordWriter - replacing hyperlink [176046 - 176067] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:48,804 [main] TRACE AbstractWordWriter - replacing hyperlink [176122 - 176155] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:48,862 [main] TRACE AbstractWordWriter - replacing hyperlink [176215 - 176236] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:48,921 [main] TRACE AbstractWordWriter - replacing hyperlink [176291 - 176324] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:48,979 [main] TRACE AbstractWordWriter - replacing hyperlink [176390 - 176411] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:49,034 [main] TRACE AbstractWordWriter - replacing hyperlink [176466 - 176499] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:49,084 [main] TRACE AbstractWordWriter - replacing hyperlink [176559 - 176580] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:49,134 [main] TRACE AbstractWordWriter - replacing hyperlink [176635 - 176668] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:49,183 [main] TRACE AbstractWordWriter - replacing hyperlink [176725 - 176746] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:49,231 [main] TRACE AbstractWordWriter - replacing hyperlink [176801 - 176834] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:49,279 [main] TRACE AbstractWordWriter - replacing hyperlink [176894 - 176915] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:49,328 [main] TRACE AbstractWordWriter - replacing hyperlink [176970 - 177003] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:49,376 [main] TRACE AbstractWordWriter - replacing hyperlink [177067 - 177088] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:49,424 [main] TRACE AbstractWordWriter - replacing hyperlink [177143 - 177176] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:49,472 [main] TRACE AbstractWordWriter - replacing hyperlink [177236 - 177257] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:49,520 [main] TRACE AbstractWordWriter - replacing hyperlink [177312 - 177345] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:49,567 [main] TRACE AbstractWordWriter - replacing hyperlink [177406 - 177427] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:49,617 [main] TRACE AbstractWordWriter - replacing hyperlink [177482 - 177515] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:49,666 [main] TRACE AbstractWordWriter - replacing hyperlink [177571 - 177592] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:49,715 [main] TRACE AbstractWordWriter - replacing hyperlink [177647 - 177680] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:49,763 [main] TRACE AbstractWordWriter - replacing hyperlink [177738 - 177759] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:49,813 [main] TRACE AbstractWordWriter - replacing hyperlink [177814 - 177847] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:49,863 [main] TRACE AbstractWordWriter - replacing hyperlink [177904 - 177925] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:49,918 [main] TRACE AbstractWordWriter - replacing hyperlink [177980 - 178013] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:49,967 [main] TRACE AbstractWordWriter - replacing hyperlink [178075 - 178096] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:50,016 [main] TRACE AbstractWordWriter - replacing hyperlink [178151 - 178184] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:50,064 [main] TRACE AbstractWordWriter - replacing hyperlink [178256 - 178277] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:50,114 [main] TRACE AbstractWordWriter - replacing hyperlink [178332 - 178365] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:50,162 [main] TRACE AbstractWordWriter - replacing hyperlink [178425 - 178446] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:50,211 [main] TRACE AbstractWordWriter - replacing hyperlink [178501 - 178534] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:50,260 [main] TRACE AbstractWordWriter - replacing hyperlink [178594 - 178615] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:50,314 [main] TRACE AbstractWordWriter - replacing hyperlink [178670 - 178703] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:50,365 [main] TRACE AbstractWordWriter - replacing hyperlink [178769 - 178790] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:50,414 [main] TRACE AbstractWordWriter - replacing hyperlink [178845 - 178878] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:50,465 [main] TRACE AbstractWordWriter - replacing hyperlink [178941 - 178962] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:50,516 [main] TRACE AbstractWordWriter - replacing hyperlink [179017 - 179050] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:50,570 [main] TRACE AbstractWordWriter - replacing hyperlink [179109 - 179130] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:50,622 [main] TRACE AbstractWordWriter - replacing hyperlink [179185 - 179218] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:50,672 [main] TRACE AbstractWordWriter - replacing hyperlink [179272 - 179293] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:50,719 [main] TRACE AbstractWordWriter - replacing hyperlink [179348 - 179381] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:50,766 [main] TRACE AbstractWordWriter - replacing hyperlink [179442 - 179463] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:50,818 [main] TRACE AbstractWordWriter - replacing hyperlink [179518 - 179551] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:50,873 [main] TRACE AbstractWordWriter - replacing hyperlink [179612 - 179633] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:50,931 [main] TRACE AbstractWordWriter - replacing hyperlink [179688 - 179721] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:50,988 [main] TRACE AbstractWordWriter - replacing hyperlink [179784 - 179805] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:51,037 [main] TRACE AbstractWordWriter - replacing hyperlink [179860 - 179893] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:51,084 [main] TRACE AbstractWordWriter - replacing hyperlink [179960 - 179981] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:51,133 [main] TRACE AbstractWordWriter - replacing hyperlink [180036 - 180069] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:51,182 [main] TRACE AbstractWordWriter - replacing hyperlink [180129 - 180150] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:51,231 [main] TRACE AbstractWordWriter - replacing hyperlink [180205 - 180238] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:51,280 [main] TRACE AbstractWordWriter - replacing hyperlink [180305 - 180326] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:51,330 [main] TRACE AbstractWordWriter - replacing hyperlink [180381 - 180414] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-07 21:58:51,385 [main] TRACE AbstractWordWriter - replacing hyperlink [182541 - 182562] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:51,437 [main] TRACE AbstractWordWriter - replacing hyperlink [182667 - 182688] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:51,490 [main] TRACE AbstractWordWriter - replacing hyperlink [182822 - 182843] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:51,541 [main] TRACE AbstractWordWriter - replacing hyperlink [182943 - 182964] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:51,592 [main] TRACE AbstractWordWriter - replacing hyperlink [183087 - 183108] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:51,647 [main] TRACE AbstractWordWriter - replacing hyperlink [183210 - 183231] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:51,700 [main] TRACE AbstractWordWriter - replacing hyperlink [183333 - 183354] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:51,748 [main] TRACE AbstractWordWriter - replacing hyperlink [183456 - 183477] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:51,797 [main] TRACE AbstractWordWriter - replacing hyperlink [183573 - 183594] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:51,849 [main] TRACE AbstractWordWriter - replacing hyperlink [183688 - 183709] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:51,897 [main] TRACE AbstractWordWriter - replacing hyperlink [183831 - 183851] HYPERLINK Floating, UML56... +2024-09-07 21:58:51,948 [main] TRACE AbstractWordWriter - replacing hyperlink [183938 - 183959] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:52,002 [main] TRACE AbstractWordWriter - replacing hyperlink [184071 - 184092] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:52,062 [main] TRACE AbstractWordWriter - replacing hyperlink [184171 - 184192] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:52,113 [main] TRACE AbstractWordWriter - replacing hyperlink [184316 - 184336] HYPERLINK Floating, UML56... +2024-09-07 21:58:52,171 [main] TRACE AbstractWordWriter - replacing hyperlink [184410 - 184431] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:52,224 [main] TRACE AbstractWordWriter - replacing hyperlink [184524 - 184545] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:52,278 [main] TRACE AbstractWordWriter - replacing hyperlink [184718 - 184744] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:58:52,331 [main] TRACE AbstractWordWriter - replacing hyperlink [184897 - 184918] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:52,389 [main] TRACE AbstractWordWriter - replacing hyperlink [185053 - 185074] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:52,448 [main] TRACE AbstractWordWriter - replacing hyperlink [185165 - 185186] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:52,500 [main] TRACE AbstractWordWriter - replacing hyperlink [185299 - 185320] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:52,553 [main] TRACE AbstractWordWriter - replacing hyperlink [185428 - 185449] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:52,604 [main] TRACE AbstractWordWriter - replacing hyperlink [185561 - 185582] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:52,653 [main] TRACE AbstractWordWriter - replacing hyperlink [185741 - 185762] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:52,700 [main] TRACE AbstractWordWriter - replacing hyperlink [185863 - 185884] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:52,748 [main] TRACE AbstractWordWriter - replacing hyperlink [185999 - 186020] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:52,795 [main] TRACE AbstractWordWriter - replacing hyperlink [186105 - 186126] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:52,845 [main] TRACE AbstractWordWriter - replacing hyperlink [186241 - 186262] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:52,895 [main] TRACE AbstractWordWriter - replacing hyperlink [186419 - 186440] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:52,942 [main] TRACE AbstractWordWriter - replacing hyperlink [187010 - 187033] HYPERLINK EntityIndex, UML66... +2024-09-07 21:58:52,993 [main] TRACE AbstractWordWriter - replacing hyperlink [187103 - 187120] HYPERLINK CntRs, UML67... +2024-09-07 21:58:53,045 [main] TRACE AbstractWordWriter - replacing hyperlink [187201 - 187224] HYPERLINK InetAddress, UML65... +2024-09-07 21:58:53,097 [main] TRACE AbstractWordWriter - replacing hyperlink [187298 - 187325] HYPERLINK InetAddressType, UML64... +2024-09-07 21:58:53,145 [main] TRACE AbstractWordWriter - replacing hyperlink [187400 - 187422] HYPERLINK ProtIdType, UML74... +2024-09-07 21:58:53,195 [main] TRACE AbstractWordWriter - replacing hyperlink [187498 - 187520] HYPERLINK CharString, UML59... +2024-09-07 21:58:53,244 [main] TRACE AbstractWordWriter - replacing hyperlink [187628 - 187650] HYPERLINK CharString, UML59... +2024-09-07 21:58:53,294 [main] TRACE AbstractWordWriter - replacing hyperlink [187780 - 187803] HYPERLINK InetAddress, UML65... +2024-09-07 21:58:53,343 [main] TRACE AbstractWordWriter - replacing hyperlink [187878 - 187905] HYPERLINK InetAddressType, UML64... +2024-09-07 21:58:53,398 [main] TRACE AbstractWordWriter - replacing hyperlink [187985 - 188006] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:53,447 [main] TRACE AbstractWordWriter - replacing hyperlink [188099 - 188118] HYPERLINK LnkType, UML78... +2024-09-07 21:58:53,495 [main] TRACE AbstractWordWriter - replacing hyperlink [188204 - 188225] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:53,543 [main] TRACE AbstractWordWriter - replacing hyperlink [188280 - 188315] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:53,592 [main] TRACE AbstractWordWriter - replacing hyperlink [188376 - 188397] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:53,641 [main] TRACE AbstractWordWriter - replacing hyperlink [188452 - 188487] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:53,691 [main] TRACE AbstractWordWriter - replacing hyperlink [188547 - 188568] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:53,740 [main] TRACE AbstractWordWriter - replacing hyperlink [188623 - 188658] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:53,788 [main] TRACE AbstractWordWriter - replacing hyperlink [188711 - 188732] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:53,841 [main] TRACE AbstractWordWriter - replacing hyperlink [188787 - 188822] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:53,899 [main] TRACE AbstractWordWriter - replacing hyperlink [188875 - 188896] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:53,954 [main] TRACE AbstractWordWriter - replacing hyperlink [188951 - 188986] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:54,005 [main] TRACE AbstractWordWriter - replacing hyperlink [189039 - 189060] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:54,055 [main] TRACE AbstractWordWriter - replacing hyperlink [189115 - 189150] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:54,111 [main] TRACE AbstractWordWriter - replacing hyperlink [189203 - 189224] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:54,166 [main] TRACE AbstractWordWriter - replacing hyperlink [189279 - 189314] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:54,216 [main] TRACE AbstractWordWriter - replacing hyperlink [189366 - 189387] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:54,265 [main] TRACE AbstractWordWriter - replacing hyperlink [189442 - 189477] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:54,315 [main] TRACE AbstractWordWriter - replacing hyperlink [189531 - 189552] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:54,364 [main] TRACE AbstractWordWriter - replacing hyperlink [189607 - 189642] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:54,414 [main] TRACE AbstractWordWriter - replacing hyperlink [189695 - 189716] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:54,463 [main] TRACE AbstractWordWriter - replacing hyperlink [189771 - 189806] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:54,511 [main] TRACE AbstractWordWriter - replacing hyperlink [189864 - 189884] HYPERLINK Floating, UML56... +2024-09-07 21:58:54,560 [main] TRACE AbstractWordWriter - replacing hyperlink [189938 - 189973] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:54,608 [main] TRACE AbstractWordWriter - replacing hyperlink [190028 - 190049] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:54,656 [main] TRACE AbstractWordWriter - replacing hyperlink [190104 - 190139] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:54,707 [main] TRACE AbstractWordWriter - replacing hyperlink [190191 - 190212] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:54,757 [main] TRACE AbstractWordWriter - replacing hyperlink [190267 - 190302] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:54,805 [main] TRACE AbstractWordWriter - replacing hyperlink [190353 - 190374] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:54,854 [main] TRACE AbstractWordWriter - replacing hyperlink [190429 - 190464] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:54,903 [main] TRACE AbstractWordWriter - replacing hyperlink [190516 - 190536] HYPERLINK Floating, UML56... +2024-09-07 21:58:54,951 [main] TRACE AbstractWordWriter - replacing hyperlink [190590 - 190625] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:55,002 [main] TRACE AbstractWordWriter - replacing hyperlink [190682 - 190703] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:55,050 [main] TRACE AbstractWordWriter - replacing hyperlink [190758 - 190793] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:55,100 [main] TRACE AbstractWordWriter - replacing hyperlink [190849 - 190870] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:55,149 [main] TRACE AbstractWordWriter - replacing hyperlink [190925 - 190960] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:55,209 [main] TRACE AbstractWordWriter - replacing hyperlink [191022 - 191048] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:58:55,260 [main] TRACE AbstractWordWriter - replacing hyperlink [191108 - 191143] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:55,316 [main] TRACE AbstractWordWriter - replacing hyperlink [191200 - 191221] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:55,369 [main] TRACE AbstractWordWriter - replacing hyperlink [191276 - 191311] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:55,423 [main] TRACE AbstractWordWriter - replacing hyperlink [191363 - 191384] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:55,475 [main] TRACE AbstractWordWriter - replacing hyperlink [191439 - 191474] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:55,530 [main] TRACE AbstractWordWriter - replacing hyperlink [191530 - 191551] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:55,582 [main] TRACE AbstractWordWriter - replacing hyperlink [191606 - 191641] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:55,635 [main] TRACE AbstractWordWriter - replacing hyperlink [191692 - 191713] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:55,687 [main] TRACE AbstractWordWriter - replacing hyperlink [191768 - 191803] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:55,741 [main] TRACE AbstractWordWriter - replacing hyperlink [191863 - 191884] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:55,790 [main] TRACE AbstractWordWriter - replacing hyperlink [191939 - 191974] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:55,839 [main] TRACE AbstractWordWriter - replacing hyperlink [192036 - 192057] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:55,888 [main] TRACE AbstractWordWriter - replacing hyperlink [192112 - 192147] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:55,937 [main] TRACE AbstractWordWriter - replacing hyperlink [192207 - 192228] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:55,986 [main] TRACE AbstractWordWriter - replacing hyperlink [192283 - 192318] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:56,036 [main] TRACE AbstractWordWriter - replacing hyperlink [192374 - 192395] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:56,086 [main] TRACE AbstractWordWriter - replacing hyperlink [192450 - 192485] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:56,134 [main] TRACE AbstractWordWriter - replacing hyperlink [192536 - 192557] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:56,183 [main] TRACE AbstractWordWriter - replacing hyperlink [192612 - 192647] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:56,236 [main] TRACE AbstractWordWriter - replacing hyperlink [192707 - 192728] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:56,294 [main] TRACE AbstractWordWriter - replacing hyperlink [192783 - 192818] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:56,344 [main] TRACE AbstractWordWriter - replacing hyperlink [192880 - 192901] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:56,397 [main] TRACE AbstractWordWriter - replacing hyperlink [192956 - 192991] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:56,446 [main] TRACE AbstractWordWriter - replacing hyperlink [193049 - 193070] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:56,497 [main] TRACE AbstractWordWriter - replacing hyperlink [193125 - 193160] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:56,553 [main] TRACE AbstractWordWriter - replacing hyperlink [193219 - 193243] HYPERLINK BooleanValue, UML52... +2024-09-07 21:58:56,604 [main] TRACE AbstractWordWriter - replacing hyperlink [193301 - 193331] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:58:56,654 [main] TRACE AbstractWordWriter - replacing hyperlink [193389 - 193408] HYPERLINK Integer, UML53... +2024-09-07 21:58:56,706 [main] TRACE AbstractWordWriter - replacing hyperlink [193461 - 193491] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:58:56,762 [main] TRACE AbstractWordWriter - replacing hyperlink [193544 - 193564] HYPERLINK Floating, UML56... +2024-09-07 21:58:56,815 [main] TRACE AbstractWordWriter - replacing hyperlink [193621 - 193651] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:58:56,868 [main] TRACE AbstractWordWriter - replacing hyperlink [193702 - 193722] HYPERLINK Floating, UML56... +2024-09-07 21:58:56,924 [main] TRACE AbstractWordWriter - replacing hyperlink [193779 - 193809] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:58:56,976 [main] TRACE AbstractWordWriter - replacing hyperlink [193870 - 193890] HYPERLINK Floating, UML56... +2024-09-07 21:58:57,026 [main] TRACE AbstractWordWriter - replacing hyperlink [193947 - 193977] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:58:57,077 [main] TRACE AbstractWordWriter - replacing hyperlink [194035 - 194055] HYPERLINK Floating, UML56... +2024-09-07 21:58:57,131 [main] TRACE AbstractWordWriter - replacing hyperlink [194112 - 194142] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:58:57,184 [main] TRACE AbstractWordWriter - replacing hyperlink [194195 - 194215] HYPERLINK Floating, UML56... +2024-09-07 21:58:57,240 [main] TRACE AbstractWordWriter - replacing hyperlink [194272 - 194302] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:58:57,293 [main] TRACE AbstractWordWriter - replacing hyperlink [194359 - 194379] HYPERLINK Floating, UML56... +2024-09-07 21:58:57,355 [main] TRACE AbstractWordWriter - replacing hyperlink [194436 - 194466] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:58:57,408 [main] TRACE AbstractWordWriter - replacing hyperlink [194894 - 194911] HYPERLINK CntRs, UML67... +2024-09-07 21:58:57,462 [main] TRACE AbstractWordWriter - replacing hyperlink [194991 - 195012] HYPERLINK EventType, UML72... +2024-09-07 21:58:57,554 [main] TRACE AbstractWordWriter - replacing hyperlink [195128 - 195157] HYPERLINK MasterAssociation, UML96... +2024-09-07 21:58:57,611 [main] TRACE AbstractWordWriter - replacing hyperlink [195255 - 195288] HYPERLINK OutstationAssociation, UML97... +2024-09-07 21:58:57,664 [main] TRACE AbstractWordWriter - replacing hyperlink [195397 - 195441] HYPERLINK 60870andDNPSecurityNotification, UML108... +2024-09-07 21:58:57,720 [main] TRACE AbstractWordWriter - replacing hyperlink [195555 - 195591] HYPERLINK 60870andDNPNotification, UML109... +2024-09-07 21:58:57,778 [main] TRACE AbstractWordWriter - replacing hyperlink [195688 - 195709] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:57,831 [main] TRACE AbstractWordWriter - replacing hyperlink [195764 - 195799] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:57,883 [main] TRACE AbstractWordWriter - replacing hyperlink [195860 - 195881] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:57,938 [main] TRACE AbstractWordWriter - replacing hyperlink [195936 - 195971] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:57,996 [main] TRACE AbstractWordWriter - replacing hyperlink [196031 - 196052] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:58,054 [main] TRACE AbstractWordWriter - replacing hyperlink [196107 - 196142] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:58,104 [main] TRACE AbstractWordWriter - replacing hyperlink [196195 - 196216] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:58,153 [main] TRACE AbstractWordWriter - replacing hyperlink [196271 - 196306] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:58,201 [main] TRACE AbstractWordWriter - replacing hyperlink [196359 - 196380] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:58,256 [main] TRACE AbstractWordWriter - replacing hyperlink [196435 - 196470] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:58,310 [main] TRACE AbstractWordWriter - replacing hyperlink [196523 - 196544] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:58,363 [main] TRACE AbstractWordWriter - replacing hyperlink [196599 - 196634] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:58,421 [main] TRACE AbstractWordWriter - replacing hyperlink [196687 - 196708] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:58,470 [main] TRACE AbstractWordWriter - replacing hyperlink [196763 - 196798] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:58,518 [main] TRACE AbstractWordWriter - replacing hyperlink [196850 - 196871] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:58,569 [main] TRACE AbstractWordWriter - replacing hyperlink [196926 - 196961] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:58,623 [main] TRACE AbstractWordWriter - replacing hyperlink [197015 - 197036] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:58,676 [main] TRACE AbstractWordWriter - replacing hyperlink [197091 - 197126] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:58,727 [main] TRACE AbstractWordWriter - replacing hyperlink [197179 - 197200] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:58,782 [main] TRACE AbstractWordWriter - replacing hyperlink [197255 - 197290] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:58,832 [main] TRACE AbstractWordWriter - replacing hyperlink [197348 - 197368] HYPERLINK Floating, UML56... +2024-09-07 21:58:58,880 [main] TRACE AbstractWordWriter - replacing hyperlink [197422 - 197457] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:58,929 [main] TRACE AbstractWordWriter - replacing hyperlink [197512 - 197533] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:58,981 [main] TRACE AbstractWordWriter - replacing hyperlink [197588 - 197623] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:59,036 [main] TRACE AbstractWordWriter - replacing hyperlink [197675 - 197696] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:59,095 [main] TRACE AbstractWordWriter - replacing hyperlink [197751 - 197786] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:59,147 [main] TRACE AbstractWordWriter - replacing hyperlink [197837 - 197858] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:59,196 [main] TRACE AbstractWordWriter - replacing hyperlink [197913 - 197948] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:59,246 [main] TRACE AbstractWordWriter - replacing hyperlink [198000 - 198020] HYPERLINK Floating, UML56... +2024-09-07 21:58:59,296 [main] TRACE AbstractWordWriter - replacing hyperlink [198074 - 198109] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:59,346 [main] TRACE AbstractWordWriter - replacing hyperlink [198166 - 198187] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:59,396 [main] TRACE AbstractWordWriter - replacing hyperlink [198242 - 198277] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:59,452 [main] TRACE AbstractWordWriter - replacing hyperlink [198333 - 198354] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:59,539 [main] TRACE AbstractWordWriter - replacing hyperlink [198409 - 198444] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:59,593 [main] TRACE AbstractWordWriter - replacing hyperlink [198506 - 198532] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:58:59,643 [main] TRACE AbstractWordWriter - replacing hyperlink [198592 - 198627] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:59,693 [main] TRACE AbstractWordWriter - replacing hyperlink [198684 - 198705] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:59,745 [main] TRACE AbstractWordWriter - replacing hyperlink [198760 - 198795] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:59,796 [main] TRACE AbstractWordWriter - replacing hyperlink [198847 - 198868] HYPERLINK CounterTs, UML55... +2024-09-07 21:58:59,862 [main] TRACE AbstractWordWriter - replacing hyperlink [198923 - 198958] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:58:59,915 [main] TRACE AbstractWordWriter - replacing hyperlink [199014 - 199035] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:00,075 [main] TRACE AbstractWordWriter - replacing hyperlink [199090 - 199125] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:00,200 [main] TRACE AbstractWordWriter - replacing hyperlink [199176 - 199197] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:00,268 [main] TRACE AbstractWordWriter - replacing hyperlink [199252 - 199287] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:00,322 [main] TRACE AbstractWordWriter - replacing hyperlink [199347 - 199368] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:00,381 [main] TRACE AbstractWordWriter - replacing hyperlink [199423 - 199458] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:00,436 [main] TRACE AbstractWordWriter - replacing hyperlink [199520 - 199541] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:00,489 [main] TRACE AbstractWordWriter - replacing hyperlink [199596 - 199631] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:00,550 [main] TRACE AbstractWordWriter - replacing hyperlink [199691 - 199712] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:00,600 [main] TRACE AbstractWordWriter - replacing hyperlink [199767 - 199802] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:00,650 [main] TRACE AbstractWordWriter - replacing hyperlink [199858 - 199879] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:00,700 [main] TRACE AbstractWordWriter - replacing hyperlink [199934 - 199969] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:00,751 [main] TRACE AbstractWordWriter - replacing hyperlink [200020 - 200041] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:00,801 [main] TRACE AbstractWordWriter - replacing hyperlink [200096 - 200131] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:00,852 [main] TRACE AbstractWordWriter - replacing hyperlink [200191 - 200212] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:00,903 [main] TRACE AbstractWordWriter - replacing hyperlink [200267 - 200302] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:00,954 [main] TRACE AbstractWordWriter - replacing hyperlink [200364 - 200385] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:01,012 [main] TRACE AbstractWordWriter - replacing hyperlink [200440 - 200475] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:01,064 [main] TRACE AbstractWordWriter - replacing hyperlink [200533 - 200554] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:01,223 [main] TRACE AbstractWordWriter - replacing hyperlink [200609 - 200644] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:01,317 [main] TRACE AbstractWordWriter - replacing hyperlink [201138 - 201159] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:01,386 [main] TRACE AbstractWordWriter - replacing hyperlink [201264 - 201285] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:01,451 [main] TRACE AbstractWordWriter - replacing hyperlink [201419 - 201440] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:01,515 [main] TRACE AbstractWordWriter - replacing hyperlink [201542 - 201563] HYPERLINK EventType, UML72... +2024-09-07 21:59:01,569 [main] TRACE AbstractWordWriter - replacing hyperlink [201680 - 201701] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:01,627 [main] TRACE AbstractWordWriter - replacing hyperlink [201869 - 201890] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:01,680 [main] TRACE AbstractWordWriter - replacing hyperlink [202033 - 202054] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:01,731 [main] TRACE AbstractWordWriter - replacing hyperlink [202157 - 202178] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:01,783 [main] TRACE AbstractWordWriter - replacing hyperlink [202680 - 202701] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:01,833 [main] TRACE AbstractWordWriter - replacing hyperlink [202795 - 202816] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:01,889 [main] TRACE AbstractWordWriter - replacing hyperlink [202931 - 202952] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:01,938 [main] TRACE AbstractWordWriter - replacing hyperlink [203075 - 203096] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:01,989 [main] TRACE AbstractWordWriter - replacing hyperlink [203169 - 203190] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:02,046 [main] TRACE AbstractWordWriter - replacing hyperlink [203598 - 203621] HYPERLINK EntityIndex, UML66... +2024-09-07 21:59:02,100 [main] TRACE AbstractWordWriter - replacing hyperlink [203675 - 203698] HYPERLINK Association, UML95... +2024-09-07 21:59:02,151 [main] TRACE AbstractWordWriter - replacing hyperlink [203737 - 203754] HYPERLINK CntRs, UML67... +2024-09-07 21:59:02,202 [main] TRACE AbstractWordWriter - replacing hyperlink [203805 - 203828] HYPERLINK Association, UML95... +2024-09-07 21:59:02,251 [main] TRACE AbstractWordWriter - replacing hyperlink [203872 - 203895] HYPERLINK InetAddress, UML65... +2024-09-07 21:59:02,300 [main] TRACE AbstractWordWriter - replacing hyperlink [203952 - 203975] HYPERLINK Association, UML95... +2024-09-07 21:59:02,350 [main] TRACE AbstractWordWriter - replacing hyperlink [204023 - 204050] HYPERLINK InetAddressType, UML64... +2024-09-07 21:59:02,401 [main] TRACE AbstractWordWriter - replacing hyperlink [204111 - 204134] HYPERLINK Association, UML95... +2024-09-07 21:59:02,455 [main] TRACE AbstractWordWriter - replacing hyperlink [204174 - 204196] HYPERLINK ProtIdType, UML74... +2024-09-07 21:59:02,529 [main] TRACE AbstractWordWriter - replacing hyperlink [204252 - 204275] HYPERLINK Association, UML95... +2024-09-07 21:59:02,585 [main] TRACE AbstractWordWriter - replacing hyperlink [204321 - 204343] HYPERLINK CharString, UML59... +2024-09-07 21:59:02,640 [main] TRACE AbstractWordWriter - replacing hyperlink [204399 - 204422] HYPERLINK Association, UML95... +2024-09-07 21:59:02,695 [main] TRACE AbstractWordWriter - replacing hyperlink [204468 - 204490] HYPERLINK CharString, UML59... +2024-09-07 21:59:02,743 [main] TRACE AbstractWordWriter - replacing hyperlink [204546 - 204569] HYPERLINK Association, UML95... +2024-09-07 21:59:02,793 [main] TRACE AbstractWordWriter - replacing hyperlink [204613 - 204636] HYPERLINK InetAddress, UML65... +2024-09-07 21:59:02,843 [main] TRACE AbstractWordWriter - replacing hyperlink [204693 - 204716] HYPERLINK Association, UML95... +2024-09-07 21:59:02,893 [main] TRACE AbstractWordWriter - replacing hyperlink [204764 - 204791] HYPERLINK InetAddressType, UML64... +2024-09-07 21:59:02,942 [main] TRACE AbstractWordWriter - replacing hyperlink [204852 - 204875] HYPERLINK Association, UML95... +2024-09-07 21:59:02,992 [main] TRACE AbstractWordWriter - replacing hyperlink [204919 - 204940] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:03,044 [main] TRACE AbstractWordWriter - replacing hyperlink [204993 - 205016] HYPERLINK Association, UML95... +2024-09-07 21:59:03,092 [main] TRACE AbstractWordWriter - replacing hyperlink [205057 - 205076] HYPERLINK LnkType, UML78... +2024-09-07 21:59:03,141 [main] TRACE AbstractWordWriter - replacing hyperlink [205129 - 205152] HYPERLINK Association, UML95... +2024-09-07 21:59:03,191 [main] TRACE AbstractWordWriter - replacing hyperlink [205197 - 205218] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:03,241 [main] TRACE AbstractWordWriter - replacing hyperlink [205273 - 205308] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:03,290 [main] TRACE AbstractWordWriter - replacing hyperlink [205369 - 205390] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:03,340 [main] TRACE AbstractWordWriter - replacing hyperlink [205445 - 205480] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:03,391 [main] TRACE AbstractWordWriter - replacing hyperlink [205540 - 205561] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:03,440 [main] TRACE AbstractWordWriter - replacing hyperlink [205616 - 205651] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:03,488 [main] TRACE AbstractWordWriter - replacing hyperlink [205704 - 205725] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:03,538 [main] TRACE AbstractWordWriter - replacing hyperlink [205780 - 205815] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:03,586 [main] TRACE AbstractWordWriter - replacing hyperlink [205868 - 205889] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:03,635 [main] TRACE AbstractWordWriter - replacing hyperlink [205944 - 205979] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:03,686 [main] TRACE AbstractWordWriter - replacing hyperlink [206032 - 206053] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:03,747 [main] TRACE AbstractWordWriter - replacing hyperlink [206108 - 206143] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:03,795 [main] TRACE AbstractWordWriter - replacing hyperlink [206196 - 206217] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:03,845 [main] TRACE AbstractWordWriter - replacing hyperlink [206272 - 206307] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:03,897 [main] TRACE AbstractWordWriter - replacing hyperlink [206359 - 206380] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:03,948 [main] TRACE AbstractWordWriter - replacing hyperlink [206435 - 206470] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:04,004 [main] TRACE AbstractWordWriter - replacing hyperlink [206524 - 206545] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:04,062 [main] TRACE AbstractWordWriter - replacing hyperlink [206600 - 206635] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:04,115 [main] TRACE AbstractWordWriter - replacing hyperlink [206688 - 206709] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:04,170 [main] TRACE AbstractWordWriter - replacing hyperlink [206764 - 206799] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:04,226 [main] TRACE AbstractWordWriter - replacing hyperlink [206857 - 206877] HYPERLINK Floating, UML56... +2024-09-07 21:59:04,282 [main] TRACE AbstractWordWriter - replacing hyperlink [206931 - 206966] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:04,339 [main] TRACE AbstractWordWriter - replacing hyperlink [207021 - 207042] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:04,420 [main] TRACE AbstractWordWriter - replacing hyperlink [207097 - 207132] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:04,471 [main] TRACE AbstractWordWriter - replacing hyperlink [207184 - 207205] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:04,524 [main] TRACE AbstractWordWriter - replacing hyperlink [207260 - 207295] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:04,572 [main] TRACE AbstractWordWriter - replacing hyperlink [207346 - 207367] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:04,621 [main] TRACE AbstractWordWriter - replacing hyperlink [207422 - 207457] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:04,668 [main] TRACE AbstractWordWriter - replacing hyperlink [207509 - 207529] HYPERLINK Floating, UML56... +2024-09-07 21:59:04,716 [main] TRACE AbstractWordWriter - replacing hyperlink [207583 - 207618] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:04,775 [main] TRACE AbstractWordWriter - replacing hyperlink [207675 - 207696] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:04,829 [main] TRACE AbstractWordWriter - replacing hyperlink [207751 - 207786] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:04,881 [main] TRACE AbstractWordWriter - replacing hyperlink [207842 - 207863] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:04,931 [main] TRACE AbstractWordWriter - replacing hyperlink [207918 - 207953] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:04,982 [main] TRACE AbstractWordWriter - replacing hyperlink [208015 - 208041] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:59:05,032 [main] TRACE AbstractWordWriter - replacing hyperlink [208101 - 208136] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:05,086 [main] TRACE AbstractWordWriter - replacing hyperlink [208193 - 208214] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:05,136 [main] TRACE AbstractWordWriter - replacing hyperlink [208269 - 208304] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:05,183 [main] TRACE AbstractWordWriter - replacing hyperlink [208356 - 208377] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:05,232 [main] TRACE AbstractWordWriter - replacing hyperlink [208432 - 208467] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:05,282 [main] TRACE AbstractWordWriter - replacing hyperlink [208523 - 208544] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:05,335 [main] TRACE AbstractWordWriter - replacing hyperlink [208599 - 208634] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:05,390 [main] TRACE AbstractWordWriter - replacing hyperlink [208685 - 208706] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:05,445 [main] TRACE AbstractWordWriter - replacing hyperlink [208761 - 208796] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:05,500 [main] TRACE AbstractWordWriter - replacing hyperlink [208856 - 208877] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:05,556 [main] TRACE AbstractWordWriter - replacing hyperlink [208932 - 208967] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:05,609 [main] TRACE AbstractWordWriter - replacing hyperlink [209029 - 209050] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:05,659 [main] TRACE AbstractWordWriter - replacing hyperlink [209105 - 209140] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:05,708 [main] TRACE AbstractWordWriter - replacing hyperlink [209200 - 209221] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:05,758 [main] TRACE AbstractWordWriter - replacing hyperlink [209276 - 209311] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:05,812 [main] TRACE AbstractWordWriter - replacing hyperlink [209367 - 209388] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:05,880 [main] TRACE AbstractWordWriter - replacing hyperlink [209443 - 209478] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:05,931 [main] TRACE AbstractWordWriter - replacing hyperlink [209529 - 209550] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:05,984 [main] TRACE AbstractWordWriter - replacing hyperlink [209605 - 209640] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:06,038 [main] TRACE AbstractWordWriter - replacing hyperlink [209700 - 209721] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:06,100 [main] TRACE AbstractWordWriter - replacing hyperlink [209776 - 209811] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:06,157 [main] TRACE AbstractWordWriter - replacing hyperlink [209873 - 209894] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:06,211 [main] TRACE AbstractWordWriter - replacing hyperlink [209949 - 209984] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:06,264 [main] TRACE AbstractWordWriter - replacing hyperlink [210042 - 210063] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:06,317 [main] TRACE AbstractWordWriter - replacing hyperlink [210118 - 210153] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:06,371 [main] TRACE AbstractWordWriter - replacing hyperlink [210212 - 210236] HYPERLINK BooleanValue, UML52... +2024-09-07 21:59:06,428 [main] TRACE AbstractWordWriter - replacing hyperlink [210294 - 210324] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:06,487 [main] TRACE AbstractWordWriter - replacing hyperlink [210382 - 210401] HYPERLINK Integer, UML53... +2024-09-07 21:59:06,542 [main] TRACE AbstractWordWriter - replacing hyperlink [210454 - 210484] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:06,596 [main] TRACE AbstractWordWriter - replacing hyperlink [210537 - 210557] HYPERLINK Floating, UML56... +2024-09-07 21:59:06,648 [main] TRACE AbstractWordWriter - replacing hyperlink [210614 - 210644] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:06,699 [main] TRACE AbstractWordWriter - replacing hyperlink [210695 - 210715] HYPERLINK Floating, UML56... +2024-09-07 21:59:06,751 [main] TRACE AbstractWordWriter - replacing hyperlink [210772 - 210802] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:06,801 [main] TRACE AbstractWordWriter - replacing hyperlink [210863 - 210883] HYPERLINK Floating, UML56... +2024-09-07 21:59:06,853 [main] TRACE AbstractWordWriter - replacing hyperlink [210940 - 210970] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:06,910 [main] TRACE AbstractWordWriter - replacing hyperlink [211028 - 211048] HYPERLINK Floating, UML56... +2024-09-07 21:59:06,966 [main] TRACE AbstractWordWriter - replacing hyperlink [211105 - 211135] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:07,020 [main] TRACE AbstractWordWriter - replacing hyperlink [211188 - 211208] HYPERLINK Floating, UML56... +2024-09-07 21:59:07,077 [main] TRACE AbstractWordWriter - replacing hyperlink [211265 - 211295] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:07,128 [main] TRACE AbstractWordWriter - replacing hyperlink [211352 - 211372] HYPERLINK Floating, UML56... +2024-09-07 21:59:07,178 [main] TRACE AbstractWordWriter - replacing hyperlink [211429 - 211459] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:07,228 [main] TRACE AbstractWordWriter - replacing hyperlink [211857 - 211880] HYPERLINK EntityIndex, UML66... +2024-09-07 21:59:07,279 [main] TRACE AbstractWordWriter - replacing hyperlink [211934 - 211957] HYPERLINK Association, UML95... +2024-09-07 21:59:07,329 [main] TRACE AbstractWordWriter - replacing hyperlink [211996 - 212013] HYPERLINK CntRs, UML67... +2024-09-07 21:59:07,379 [main] TRACE AbstractWordWriter - replacing hyperlink [212064 - 212087] HYPERLINK Association, UML95... +2024-09-07 21:59:07,450 [main] TRACE AbstractWordWriter - replacing hyperlink [212131 - 212154] HYPERLINK InetAddress, UML65... +2024-09-07 21:59:07,501 [main] TRACE AbstractWordWriter - replacing hyperlink [212211 - 212234] HYPERLINK Association, UML95... +2024-09-07 21:59:07,552 [main] TRACE AbstractWordWriter - replacing hyperlink [212282 - 212309] HYPERLINK InetAddressType, UML64... +2024-09-07 21:59:07,607 [main] TRACE AbstractWordWriter - replacing hyperlink [212370 - 212393] HYPERLINK Association, UML95... +2024-09-07 21:59:07,669 [main] TRACE AbstractWordWriter - replacing hyperlink [212433 - 212455] HYPERLINK ProtIdType, UML74... +2024-09-07 21:59:07,744 [main] TRACE AbstractWordWriter - replacing hyperlink [212511 - 212534] HYPERLINK Association, UML95... +2024-09-07 21:59:07,818 [main] TRACE AbstractWordWriter - replacing hyperlink [212580 - 212602] HYPERLINK CharString, UML59... +2024-09-07 21:59:07,885 [main] TRACE AbstractWordWriter - replacing hyperlink [212658 - 212681] HYPERLINK Association, UML95... +2024-09-07 21:59:07,938 [main] TRACE AbstractWordWriter - replacing hyperlink [212727 - 212749] HYPERLINK CharString, UML59... +2024-09-07 21:59:08,000 [main] TRACE AbstractWordWriter - replacing hyperlink [212805 - 212828] HYPERLINK Association, UML95... +2024-09-07 21:59:08,050 [main] TRACE AbstractWordWriter - replacing hyperlink [212872 - 212895] HYPERLINK InetAddress, UML65... +2024-09-07 21:59:08,103 [main] TRACE AbstractWordWriter - replacing hyperlink [212952 - 212975] HYPERLINK Association, UML95... +2024-09-07 21:59:08,152 [main] TRACE AbstractWordWriter - replacing hyperlink [213023 - 213050] HYPERLINK InetAddressType, UML64... +2024-09-07 21:59:08,203 [main] TRACE AbstractWordWriter - replacing hyperlink [213111 - 213134] HYPERLINK Association, UML95... +2024-09-07 21:59:08,253 [main] TRACE AbstractWordWriter - replacing hyperlink [213178 - 213199] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:08,305 [main] TRACE AbstractWordWriter - replacing hyperlink [213252 - 213275] HYPERLINK Association, UML95... +2024-09-07 21:59:08,356 [main] TRACE AbstractWordWriter - replacing hyperlink [213316 - 213335] HYPERLINK LnkType, UML78... +2024-09-07 21:59:08,408 [main] TRACE AbstractWordWriter - replacing hyperlink [213388 - 213411] HYPERLINK Association, UML95... +2024-09-07 21:59:08,461 [main] TRACE AbstractWordWriter - replacing hyperlink [213456 - 213477] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:08,510 [main] TRACE AbstractWordWriter - replacing hyperlink [213532 - 213567] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:08,559 [main] TRACE AbstractWordWriter - replacing hyperlink [213628 - 213649] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:08,609 [main] TRACE AbstractWordWriter - replacing hyperlink [213704 - 213739] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:08,658 [main] TRACE AbstractWordWriter - replacing hyperlink [213799 - 213820] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:08,708 [main] TRACE AbstractWordWriter - replacing hyperlink [213875 - 213910] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:08,757 [main] TRACE AbstractWordWriter - replacing hyperlink [213963 - 213984] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:08,805 [main] TRACE AbstractWordWriter - replacing hyperlink [214039 - 214074] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:08,857 [main] TRACE AbstractWordWriter - replacing hyperlink [214127 - 214148] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:08,908 [main] TRACE AbstractWordWriter - replacing hyperlink [214203 - 214238] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:08,958 [main] TRACE AbstractWordWriter - replacing hyperlink [214291 - 214312] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:09,009 [main] TRACE AbstractWordWriter - replacing hyperlink [214367 - 214402] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:09,065 [main] TRACE AbstractWordWriter - replacing hyperlink [214455 - 214476] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:09,119 [main] TRACE AbstractWordWriter - replacing hyperlink [214531 - 214566] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:09,168 [main] TRACE AbstractWordWriter - replacing hyperlink [214618 - 214639] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:09,217 [main] TRACE AbstractWordWriter - replacing hyperlink [214694 - 214729] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:09,269 [main] TRACE AbstractWordWriter - replacing hyperlink [214783 - 214804] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:09,319 [main] TRACE AbstractWordWriter - replacing hyperlink [214859 - 214894] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:09,370 [main] TRACE AbstractWordWriter - replacing hyperlink [214947 - 214968] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:09,421 [main] TRACE AbstractWordWriter - replacing hyperlink [215023 - 215058] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:09,470 [main] TRACE AbstractWordWriter - replacing hyperlink [215116 - 215136] HYPERLINK Floating, UML56... +2024-09-07 21:59:09,521 [main] TRACE AbstractWordWriter - replacing hyperlink [215190 - 215225] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:09,573 [main] TRACE AbstractWordWriter - replacing hyperlink [215280 - 215301] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:09,623 [main] TRACE AbstractWordWriter - replacing hyperlink [215356 - 215391] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:09,672 [main] TRACE AbstractWordWriter - replacing hyperlink [215443 - 215464] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:09,723 [main] TRACE AbstractWordWriter - replacing hyperlink [215519 - 215554] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:09,772 [main] TRACE AbstractWordWriter - replacing hyperlink [215605 - 215626] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:09,822 [main] TRACE AbstractWordWriter - replacing hyperlink [215681 - 215716] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:09,872 [main] TRACE AbstractWordWriter - replacing hyperlink [215768 - 215788] HYPERLINK Floating, UML56... +2024-09-07 21:59:09,923 [main] TRACE AbstractWordWriter - replacing hyperlink [215842 - 215877] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:09,973 [main] TRACE AbstractWordWriter - replacing hyperlink [215934 - 215955] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:10,023 [main] TRACE AbstractWordWriter - replacing hyperlink [216010 - 216045] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:10,075 [main] TRACE AbstractWordWriter - replacing hyperlink [216101 - 216122] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:10,135 [main] TRACE AbstractWordWriter - replacing hyperlink [216177 - 216212] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:10,185 [main] TRACE AbstractWordWriter - replacing hyperlink [216274 - 216300] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:59:10,236 [main] TRACE AbstractWordWriter - replacing hyperlink [216360 - 216395] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:10,286 [main] TRACE AbstractWordWriter - replacing hyperlink [216452 - 216473] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:10,337 [main] TRACE AbstractWordWriter - replacing hyperlink [216528 - 216563] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:10,387 [main] TRACE AbstractWordWriter - replacing hyperlink [216615 - 216636] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:10,438 [main] TRACE AbstractWordWriter - replacing hyperlink [216691 - 216726] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:10,487 [main] TRACE AbstractWordWriter - replacing hyperlink [216782 - 216803] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:10,538 [main] TRACE AbstractWordWriter - replacing hyperlink [216858 - 216893] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:10,589 [main] TRACE AbstractWordWriter - replacing hyperlink [216944 - 216965] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:10,639 [main] TRACE AbstractWordWriter - replacing hyperlink [217020 - 217055] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:10,689 [main] TRACE AbstractWordWriter - replacing hyperlink [217115 - 217136] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:10,738 [main] TRACE AbstractWordWriter - replacing hyperlink [217191 - 217226] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:10,788 [main] TRACE AbstractWordWriter - replacing hyperlink [217288 - 217309] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:10,840 [main] TRACE AbstractWordWriter - replacing hyperlink [217364 - 217399] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:10,891 [main] TRACE AbstractWordWriter - replacing hyperlink [217459 - 217480] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:10,942 [main] TRACE AbstractWordWriter - replacing hyperlink [217535 - 217570] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:10,992 [main] TRACE AbstractWordWriter - replacing hyperlink [217626 - 217647] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:11,041 [main] TRACE AbstractWordWriter - replacing hyperlink [217702 - 217737] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:11,091 [main] TRACE AbstractWordWriter - replacing hyperlink [217788 - 217809] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:11,148 [main] TRACE AbstractWordWriter - replacing hyperlink [217864 - 217899] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:11,200 [main] TRACE AbstractWordWriter - replacing hyperlink [217959 - 217980] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:11,251 [main] TRACE AbstractWordWriter - replacing hyperlink [218035 - 218070] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:11,302 [main] TRACE AbstractWordWriter - replacing hyperlink [218132 - 218153] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:11,352 [main] TRACE AbstractWordWriter - replacing hyperlink [218208 - 218243] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:11,402 [main] TRACE AbstractWordWriter - replacing hyperlink [218301 - 218322] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:11,454 [main] TRACE AbstractWordWriter - replacing hyperlink [218377 - 218412] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-07 21:59:11,505 [main] TRACE AbstractWordWriter - replacing hyperlink [218471 - 218495] HYPERLINK BooleanValue, UML52... +2024-09-07 21:59:11,561 [main] TRACE AbstractWordWriter - replacing hyperlink [218553 - 218583] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:11,612 [main] TRACE AbstractWordWriter - replacing hyperlink [218641 - 218660] HYPERLINK Integer, UML53... +2024-09-07 21:59:11,663 [main] TRACE AbstractWordWriter - replacing hyperlink [218713 - 218743] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:11,714 [main] TRACE AbstractWordWriter - replacing hyperlink [218796 - 218816] HYPERLINK Floating, UML56... +2024-09-07 21:59:11,764 [main] TRACE AbstractWordWriter - replacing hyperlink [218873 - 218903] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:11,816 [main] TRACE AbstractWordWriter - replacing hyperlink [218954 - 218974] HYPERLINK Floating, UML56... +2024-09-07 21:59:11,868 [main] TRACE AbstractWordWriter - replacing hyperlink [219031 - 219061] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:11,919 [main] TRACE AbstractWordWriter - replacing hyperlink [219122 - 219142] HYPERLINK Floating, UML56... +2024-09-07 21:59:11,971 [main] TRACE AbstractWordWriter - replacing hyperlink [219199 - 219229] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:12,021 [main] TRACE AbstractWordWriter - replacing hyperlink [219287 - 219307] HYPERLINK Floating, UML56... +2024-09-07 21:59:12,071 [main] TRACE AbstractWordWriter - replacing hyperlink [219364 - 219394] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:12,123 [main] TRACE AbstractWordWriter - replacing hyperlink [219447 - 219467] HYPERLINK Floating, UML56... +2024-09-07 21:59:12,175 [main] TRACE AbstractWordWriter - replacing hyperlink [219524 - 219554] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:12,234 [main] TRACE AbstractWordWriter - replacing hyperlink [219611 - 219631] HYPERLINK Floating, UML56... +2024-09-07 21:59:12,284 [main] TRACE AbstractWordWriter - replacing hyperlink [219688 - 219718] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:12,334 [main] TRACE AbstractWordWriter - replacing hyperlink [221902 - 221923] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:12,398 [main] TRACE AbstractWordWriter - replacing hyperlink [222046 - 222067] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:12,452 [main] TRACE AbstractWordWriter - replacing hyperlink [222169 - 222190] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:12,507 [main] TRACE AbstractWordWriter - replacing hyperlink [222292 - 222313] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:12,564 [main] TRACE AbstractWordWriter - replacing hyperlink [222419 - 222440] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:12,616 [main] TRACE AbstractWordWriter - replacing hyperlink [222521 - 222542] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:12,666 [main] TRACE AbstractWordWriter - replacing hyperlink [222636 - 222657] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:12,714 [main] TRACE AbstractWordWriter - replacing hyperlink [222779 - 222799] HYPERLINK Floating, UML56... +2024-09-07 21:59:12,763 [main] TRACE AbstractWordWriter - replacing hyperlink [222886 - 222907] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:12,813 [main] TRACE AbstractWordWriter - replacing hyperlink [223019 - 223040] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:12,864 [main] TRACE AbstractWordWriter - replacing hyperlink [223119 - 223140] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:12,914 [main] TRACE AbstractWordWriter - replacing hyperlink [223269 - 223290] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:12,965 [main] TRACE AbstractWordWriter - replacing hyperlink [223379 - 223400] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:13,015 [main] TRACE AbstractWordWriter - replacing hyperlink [223489 - 223510] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:13,066 [main] TRACE AbstractWordWriter - replacing hyperlink [223621 - 223642] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:13,116 [main] TRACE AbstractWordWriter - replacing hyperlink [223754 - 223775] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:13,169 [main] TRACE AbstractWordWriter - replacing hyperlink [223928 - 223949] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:13,220 [main] TRACE AbstractWordWriter - replacing hyperlink [224034 - 224055] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:13,274 [main] TRACE AbstractWordWriter - replacing hyperlink [224170 - 224191] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:13,330 [main] TRACE AbstractWordWriter - replacing hyperlink [224350 - 224371] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:13,381 [main] TRACE AbstractWordWriter - replacing hyperlink [224426 - 224451] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:13,430 [main] TRACE AbstractWordWriter - replacing hyperlink [224502 - 224523] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:13,482 [main] TRACE AbstractWordWriter - replacing hyperlink [224578 - 224603] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:13,533 [main] TRACE AbstractWordWriter - replacing hyperlink [224653 - 224674] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:13,583 [main] TRACE AbstractWordWriter - replacing hyperlink [224729 - 224754] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:13,633 [main] TRACE AbstractWordWriter - replacing hyperlink [224810 - 224831] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:13,684 [main] TRACE AbstractWordWriter - replacing hyperlink [224886 - 224911] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:13,734 [main] TRACE AbstractWordWriter - replacing hyperlink [224968 - 224989] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:13,786 [main] TRACE AbstractWordWriter - replacing hyperlink [225044 - 225069] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:13,836 [main] TRACE AbstractWordWriter - replacing hyperlink [225126 - 225147] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:13,890 [main] TRACE AbstractWordWriter - replacing hyperlink [225202 - 225227] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:13,943 [main] TRACE AbstractWordWriter - replacing hyperlink [225277 - 225298] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:13,995 [main] TRACE AbstractWordWriter - replacing hyperlink [225353 - 225378] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:14,046 [main] TRACE AbstractWordWriter - replacing hyperlink [225428 - 225449] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:14,097 [main] TRACE AbstractWordWriter - replacing hyperlink [225504 - 225529] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:14,146 [main] TRACE AbstractWordWriter - replacing hyperlink [225578 - 225599] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:14,201 [main] TRACE AbstractWordWriter - replacing hyperlink [225654 - 225679] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:14,252 [main] TRACE AbstractWordWriter - replacing hyperlink [225730 - 225751] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:14,303 [main] TRACE AbstractWordWriter - replacing hyperlink [225806 - 225831] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:14,362 [main] TRACE AbstractWordWriter - replacing hyperlink [225882 - 225903] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:14,415 [main] TRACE AbstractWordWriter - replacing hyperlink [225958 - 225983] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:14,484 [main] TRACE AbstractWordWriter - replacing hyperlink [226038 - 226059] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:14,536 [main] TRACE AbstractWordWriter - replacing hyperlink [226114 - 226139] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:14,587 [main] TRACE AbstractWordWriter - replacing hyperlink [226194 - 226215] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:14,637 [main] TRACE AbstractWordWriter - replacing hyperlink [226270 - 226295] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:14,688 [main] TRACE AbstractWordWriter - replacing hyperlink [226348 - 226369] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:14,742 [main] TRACE AbstractWordWriter - replacing hyperlink [226424 - 226449] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:14,796 [main] TRACE AbstractWordWriter - replacing hyperlink [226502 - 226523] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:14,846 [main] TRACE AbstractWordWriter - replacing hyperlink [226578 - 226603] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:14,898 [main] TRACE AbstractWordWriter - replacing hyperlink [226656 - 226677] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:14,949 [main] TRACE AbstractWordWriter - replacing hyperlink [226732 - 226757] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:15,001 [main] TRACE AbstractWordWriter - replacing hyperlink [226810 - 226831] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:15,060 [main] TRACE AbstractWordWriter - replacing hyperlink [226886 - 226911] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:15,110 [main] TRACE AbstractWordWriter - replacing hyperlink [226967 - 226988] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:15,161 [main] TRACE AbstractWordWriter - replacing hyperlink [227043 - 227068] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:15,214 [main] TRACE AbstractWordWriter - replacing hyperlink [227124 - 227145] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:15,283 [main] TRACE AbstractWordWriter - replacing hyperlink [227200 - 227225] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:15,337 [main] TRACE AbstractWordWriter - replacing hyperlink [227275 - 227296] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:15,397 [main] TRACE AbstractWordWriter - replacing hyperlink [227351 - 227376] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:15,457 [main] TRACE AbstractWordWriter - replacing hyperlink [227424 - 227445] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:15,512 [main] TRACE AbstractWordWriter - replacing hyperlink [227500 - 227525] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:15,567 [main] TRACE AbstractWordWriter - replacing hyperlink [227575 - 227596] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:15,621 [main] TRACE AbstractWordWriter - replacing hyperlink [227651 - 227676] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:15,679 [main] TRACE AbstractWordWriter - replacing hyperlink [227725 - 227746] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:15,730 [main] TRACE AbstractWordWriter - replacing hyperlink [227801 - 227826] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:15,780 [main] TRACE AbstractWordWriter - replacing hyperlink [227876 - 227897] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:15,831 [main] TRACE AbstractWordWriter - replacing hyperlink [227952 - 227977] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:15,882 [main] TRACE AbstractWordWriter - replacing hyperlink [228028 - 228049] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:15,934 [main] TRACE AbstractWordWriter - replacing hyperlink [228104 - 228129] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:15,986 [main] TRACE AbstractWordWriter - replacing hyperlink [228179 - 228200] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:16,039 [main] TRACE AbstractWordWriter - replacing hyperlink [228255 - 228280] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:16,090 [main] TRACE AbstractWordWriter - replacing hyperlink [228695 - 228716] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:16,144 [main] TRACE AbstractWordWriter - replacing hyperlink [228857 - 228878] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:16,198 [main] TRACE AbstractWordWriter - replacing hyperlink [228997 - 229018] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:16,250 [main] TRACE AbstractWordWriter - replacing hyperlink [229139 - 229160] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:16,303 [main] TRACE AbstractWordWriter - replacing hyperlink [229307 - 229328] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:16,353 [main] TRACE AbstractWordWriter - replacing hyperlink [229464 - 229485] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:16,406 [main] TRACE AbstractWordWriter - replacing hyperlink [229625 - 229646] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:16,461 [main] TRACE AbstractWordWriter - replacing hyperlink [229740 - 229761] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:16,517 [main] TRACE AbstractWordWriter - replacing hyperlink [229872 - 229893] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:16,569 [main] TRACE AbstractWordWriter - replacing hyperlink [229991 - 230012] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:16,621 [main] TRACE AbstractWordWriter - replacing hyperlink [230158 - 230179] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:16,672 [main] TRACE AbstractWordWriter - replacing hyperlink [230288 - 230309] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:16,723 [main] TRACE AbstractWordWriter - replacing hyperlink [230431 - 230452] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:16,773 [main] TRACE AbstractWordWriter - replacing hyperlink [230553 - 230574] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:16,824 [main] TRACE AbstractWordWriter - replacing hyperlink [230692 - 230713] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:16,875 [main] TRACE AbstractWordWriter - replacing hyperlink [230840 - 230861] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:16,926 [main] TRACE AbstractWordWriter - replacing hyperlink [230978 - 230999] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:16,977 [main] TRACE AbstractWordWriter - replacing hyperlink [231128 - 231149] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:17,030 [main] TRACE AbstractWordWriter - replacing hyperlink [231316 - 231337] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:17,081 [main] TRACE AbstractWordWriter - replacing hyperlink [231497 - 231518] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:17,133 [main] TRACE AbstractWordWriter - replacing hyperlink [231624 - 231645] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:17,185 [main] TRACE AbstractWordWriter - replacing hyperlink [231754 - 231775] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:17,240 [main] TRACE AbstractWordWriter - replacing hyperlink [231884 - 231905] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:17,291 [main] TRACE AbstractWordWriter - replacing hyperlink [232071 - 232092] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:17,342 [main] TRACE AbstractWordWriter - replacing hyperlink [232263 - 232284] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:17,394 [main] TRACE AbstractWordWriter - replacing hyperlink [232380 - 232401] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:17,446 [main] TRACE AbstractWordWriter - replacing hyperlink [232995 - 233018] HYPERLINK EntityIndex, UML66... +2024-09-07 21:59:17,497 [main] TRACE AbstractWordWriter - replacing hyperlink [233088 - 233105] HYPERLINK CntRs, UML67... +2024-09-07 21:59:17,555 [main] TRACE AbstractWordWriter - replacing hyperlink [233186 - 233209] HYPERLINK InetAddress, UML65... +2024-09-07 21:59:17,608 [main] TRACE AbstractWordWriter - replacing hyperlink [233283 - 233310] HYPERLINK InetAddressType, UML64... +2024-09-07 21:59:17,658 [main] TRACE AbstractWordWriter - replacing hyperlink [233385 - 233407] HYPERLINK ProtIdType, UML74... +2024-09-07 21:59:17,710 [main] TRACE AbstractWordWriter - replacing hyperlink [233483 - 233505] HYPERLINK CharString, UML59... +2024-09-07 21:59:17,760 [main] TRACE AbstractWordWriter - replacing hyperlink [233613 - 233635] HYPERLINK CharString, UML59... +2024-09-07 21:59:17,817 [main] TRACE AbstractWordWriter - replacing hyperlink [233765 - 233788] HYPERLINK InetAddress, UML65... +2024-09-07 21:59:17,873 [main] TRACE AbstractWordWriter - replacing hyperlink [233863 - 233890] HYPERLINK InetAddressType, UML64... +2024-09-07 21:59:17,927 [main] TRACE AbstractWordWriter - replacing hyperlink [233970 - 233991] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:17,985 [main] TRACE AbstractWordWriter - replacing hyperlink [234084 - 234103] HYPERLINK LnkType, UML78... +2024-09-07 21:59:18,040 [main] TRACE AbstractWordWriter - replacing hyperlink [234191 - 234215] HYPERLINK BooleanValue, UML52... +2024-09-07 21:59:18,093 [main] TRACE AbstractWordWriter - replacing hyperlink [234273 - 234303] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:18,145 [main] TRACE AbstractWordWriter - replacing hyperlink [234361 - 234380] HYPERLINK Integer, UML53... +2024-09-07 21:59:18,202 [main] TRACE AbstractWordWriter - replacing hyperlink [234433 - 234463] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:18,258 [main] TRACE AbstractWordWriter - replacing hyperlink [234516 - 234536] HYPERLINK Floating, UML56... +2024-09-07 21:59:18,312 [main] TRACE AbstractWordWriter - replacing hyperlink [234593 - 234623] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:18,363 [main] TRACE AbstractWordWriter - replacing hyperlink [234674 - 234694] HYPERLINK Floating, UML56... +2024-09-07 21:59:18,412 [main] TRACE AbstractWordWriter - replacing hyperlink [234751 - 234781] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:18,461 [main] TRACE AbstractWordWriter - replacing hyperlink [234842 - 234862] HYPERLINK Floating, UML56... +2024-09-07 21:59:18,512 [main] TRACE AbstractWordWriter - replacing hyperlink [234919 - 234949] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:18,562 [main] TRACE AbstractWordWriter - replacing hyperlink [235007 - 235027] HYPERLINK Floating, UML56... +2024-09-07 21:59:18,627 [main] TRACE AbstractWordWriter - replacing hyperlink [235084 - 235114] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:18,679 [main] TRACE AbstractWordWriter - replacing hyperlink [235167 - 235187] HYPERLINK Floating, UML56... +2024-09-07 21:59:18,730 [main] TRACE AbstractWordWriter - replacing hyperlink [235244 - 235274] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:18,781 [main] TRACE AbstractWordWriter - replacing hyperlink [235331 - 235351] HYPERLINK Floating, UML56... +2024-09-07 21:59:18,832 [main] TRACE AbstractWordWriter - replacing hyperlink [235408 - 235438] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:18,883 [main] TRACE AbstractWordWriter - replacing hyperlink [235486 - 235507] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:18,933 [main] TRACE AbstractWordWriter - replacing hyperlink [235562 - 235600] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:18,983 [main] TRACE AbstractWordWriter - replacing hyperlink [235656 - 235677] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:19,035 [main] TRACE AbstractWordWriter - replacing hyperlink [235732 - 235770] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:19,087 [main] TRACE AbstractWordWriter - replacing hyperlink [235826 - 235847] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:19,138 [main] TRACE AbstractWordWriter - replacing hyperlink [235902 - 235940] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:19,190 [main] TRACE AbstractWordWriter - replacing hyperlink [235996 - 236017] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:19,243 [main] TRACE AbstractWordWriter - replacing hyperlink [236072 - 236110] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:19,295 [main] TRACE AbstractWordWriter - replacing hyperlink [236169 - 236190] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:19,348 [main] TRACE AbstractWordWriter - replacing hyperlink [236245 - 236283] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:19,399 [main] TRACE AbstractWordWriter - replacing hyperlink [236340 - 236361] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:19,451 [main] TRACE AbstractWordWriter - replacing hyperlink [236416 - 236454] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:19,502 [main] TRACE AbstractWordWriter - replacing hyperlink [236510 - 236531] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:19,555 [main] TRACE AbstractWordWriter - replacing hyperlink [236586 - 236624] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:19,606 [main] TRACE AbstractWordWriter - replacing hyperlink [236685 - 236705] HYPERLINK Floating, UML56... +2024-09-07 21:59:19,662 [main] TRACE AbstractWordWriter - replacing hyperlink [236759 - 236797] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:19,718 [main] TRACE AbstractWordWriter - replacing hyperlink [236855 - 236876] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:19,768 [main] TRACE AbstractWordWriter - replacing hyperlink [236931 - 236969] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:19,819 [main] TRACE AbstractWordWriter - replacing hyperlink [237024 - 237045] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:19,871 [main] TRACE AbstractWordWriter - replacing hyperlink [237100 - 237138] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:19,923 [main] TRACE AbstractWordWriter - replacing hyperlink [237192 - 237213] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:19,976 [main] TRACE AbstractWordWriter - replacing hyperlink [237268 - 237306] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:20,033 [main] TRACE AbstractWordWriter - replacing hyperlink [237366 - 237387] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:20,089 [main] TRACE AbstractWordWriter - replacing hyperlink [237442 - 237480] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:20,140 [main] TRACE AbstractWordWriter - replacing hyperlink [237535 - 237556] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:20,191 [main] TRACE AbstractWordWriter - replacing hyperlink [237611 - 237649] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:20,246 [main] TRACE AbstractWordWriter - replacing hyperlink [237706 - 237727] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:20,297 [main] TRACE AbstractWordWriter - replacing hyperlink [237782 - 237820] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:20,348 [main] TRACE AbstractWordWriter - replacing hyperlink [237883 - 237904] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:20,399 [main] TRACE AbstractWordWriter - replacing hyperlink [237959 - 237997] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:20,451 [main] TRACE AbstractWordWriter - replacing hyperlink [238062 - 238083] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:20,502 [main] TRACE AbstractWordWriter - replacing hyperlink [238138 - 238176] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:20,554 [main] TRACE AbstractWordWriter - replacing hyperlink [238233 - 238254] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:20,608 [main] TRACE AbstractWordWriter - replacing hyperlink [238309 - 238347] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:20,659 [main] TRACE AbstractWordWriter - replacing hyperlink [238410 - 238431] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:20,712 [main] TRACE AbstractWordWriter - replacing hyperlink [238486 - 238524] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:20,773 [main] TRACE AbstractWordWriter - replacing hyperlink [238589 - 238610] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:20,825 [main] TRACE AbstractWordWriter - replacing hyperlink [238665 - 238703] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:20,878 [main] TRACE AbstractWordWriter - replacing hyperlink [238766 - 238787] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:20,929 [main] TRACE AbstractWordWriter - replacing hyperlink [238842 - 238867] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:20,980 [main] TRACE AbstractWordWriter - replacing hyperlink [238918 - 238939] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:21,031 [main] TRACE AbstractWordWriter - replacing hyperlink [238994 - 239019] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:21,083 [main] TRACE AbstractWordWriter - replacing hyperlink [239069 - 239090] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:21,136 [main] TRACE AbstractWordWriter - replacing hyperlink [239145 - 239170] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:21,186 [main] TRACE AbstractWordWriter - replacing hyperlink [239226 - 239247] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:21,239 [main] TRACE AbstractWordWriter - replacing hyperlink [239302 - 239327] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:21,290 [main] TRACE AbstractWordWriter - replacing hyperlink [239384 - 239405] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:21,343 [main] TRACE AbstractWordWriter - replacing hyperlink [239460 - 239485] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:21,395 [main] TRACE AbstractWordWriter - replacing hyperlink [239542 - 239563] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:21,448 [main] TRACE AbstractWordWriter - replacing hyperlink [239618 - 239643] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:21,497 [main] TRACE AbstractWordWriter - replacing hyperlink [239693 - 239714] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:21,548 [main] TRACE AbstractWordWriter - replacing hyperlink [239769 - 239794] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:21,599 [main] TRACE AbstractWordWriter - replacing hyperlink [239844 - 239865] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:21,655 [main] TRACE AbstractWordWriter - replacing hyperlink [239920 - 239945] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:21,706 [main] TRACE AbstractWordWriter - replacing hyperlink [239994 - 240015] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:21,759 [main] TRACE AbstractWordWriter - replacing hyperlink [240070 - 240095] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:21,819 [main] TRACE AbstractWordWriter - replacing hyperlink [240146 - 240167] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:21,871 [main] TRACE AbstractWordWriter - replacing hyperlink [240222 - 240247] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:21,923 [main] TRACE AbstractWordWriter - replacing hyperlink [240298 - 240319] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:21,975 [main] TRACE AbstractWordWriter - replacing hyperlink [240374 - 240399] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:22,027 [main] TRACE AbstractWordWriter - replacing hyperlink [240454 - 240475] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:22,079 [main] TRACE AbstractWordWriter - replacing hyperlink [240530 - 240555] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:22,131 [main] TRACE AbstractWordWriter - replacing hyperlink [240610 - 240631] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:22,182 [main] TRACE AbstractWordWriter - replacing hyperlink [240686 - 240711] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:22,235 [main] TRACE AbstractWordWriter - replacing hyperlink [240764 - 240785] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:22,287 [main] TRACE AbstractWordWriter - replacing hyperlink [240840 - 240865] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:22,341 [main] TRACE AbstractWordWriter - replacing hyperlink [240918 - 240939] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:22,393 [main] TRACE AbstractWordWriter - replacing hyperlink [240994 - 241019] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:22,446 [main] TRACE AbstractWordWriter - replacing hyperlink [241072 - 241093] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:22,497 [main] TRACE AbstractWordWriter - replacing hyperlink [241148 - 241173] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:22,548 [main] TRACE AbstractWordWriter - replacing hyperlink [241226 - 241247] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:22,599 [main] TRACE AbstractWordWriter - replacing hyperlink [241302 - 241327] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:22,652 [main] TRACE AbstractWordWriter - replacing hyperlink [241383 - 241404] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:22,703 [main] TRACE AbstractWordWriter - replacing hyperlink [241459 - 241484] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:22,757 [main] TRACE AbstractWordWriter - replacing hyperlink [241540 - 241561] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:22,808 [main] TRACE AbstractWordWriter - replacing hyperlink [241616 - 241641] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:22,866 [main] TRACE AbstractWordWriter - replacing hyperlink [241691 - 241712] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:22,920 [main] TRACE AbstractWordWriter - replacing hyperlink [241767 - 241792] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:22,971 [main] TRACE AbstractWordWriter - replacing hyperlink [241840 - 241861] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:23,022 [main] TRACE AbstractWordWriter - replacing hyperlink [241916 - 241941] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:23,075 [main] TRACE AbstractWordWriter - replacing hyperlink [241991 - 242012] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:23,125 [main] TRACE AbstractWordWriter - replacing hyperlink [242067 - 242092] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:23,177 [main] TRACE AbstractWordWriter - replacing hyperlink [242141 - 242162] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:23,234 [main] TRACE AbstractWordWriter - replacing hyperlink [242217 - 242242] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:23,285 [main] TRACE AbstractWordWriter - replacing hyperlink [242292 - 242313] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:23,338 [main] TRACE AbstractWordWriter - replacing hyperlink [242368 - 242393] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:23,392 [main] TRACE AbstractWordWriter - replacing hyperlink [242444 - 242465] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:23,443 [main] TRACE AbstractWordWriter - replacing hyperlink [242520 - 242545] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:23,494 [main] TRACE AbstractWordWriter - replacing hyperlink [242595 - 242616] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:23,547 [main] TRACE AbstractWordWriter - replacing hyperlink [242671 - 242696] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:23,601 [main] TRACE AbstractWordWriter - replacing hyperlink [243125 - 243142] HYPERLINK CntRs, UML67... +2024-09-07 21:59:23,654 [main] TRACE AbstractWordWriter - replacing hyperlink [243222 - 243243] HYPERLINK EventType, UML72... +2024-09-07 21:59:23,706 [main] TRACE AbstractWordWriter - replacing hyperlink [243359 - 243389] HYPERLINK MasterAssociation, UML101... +2024-09-07 21:59:23,758 [main] TRACE AbstractWordWriter - replacing hyperlink [243487 - 243521] HYPERLINK OutstationAssociation, UML102... +2024-09-07 21:59:23,810 [main] TRACE AbstractWordWriter - replacing hyperlink [243630 - 243677] HYPERLINK 60870andDNPSecurityNotificationEd2, UML111... +2024-09-07 21:59:23,861 [main] TRACE AbstractWordWriter - replacing hyperlink [243794 - 243833] HYPERLINK 60870andDNPNotificationEd2, UML112... +2024-09-07 21:59:23,917 [main] TRACE AbstractWordWriter - replacing hyperlink [243929 - 243950] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:23,972 [main] TRACE AbstractWordWriter - replacing hyperlink [244005 - 244043] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:24,024 [main] TRACE AbstractWordWriter - replacing hyperlink [244099 - 244120] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:24,077 [main] TRACE AbstractWordWriter - replacing hyperlink [244175 - 244213] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:24,129 [main] TRACE AbstractWordWriter - replacing hyperlink [244269 - 244290] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:24,182 [main] TRACE AbstractWordWriter - replacing hyperlink [244345 - 244383] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:24,237 [main] TRACE AbstractWordWriter - replacing hyperlink [244439 - 244460] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:24,289 [main] TRACE AbstractWordWriter - replacing hyperlink [244515 - 244553] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:24,342 [main] TRACE AbstractWordWriter - replacing hyperlink [244612 - 244633] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:24,396 [main] TRACE AbstractWordWriter - replacing hyperlink [244688 - 244726] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:24,449 [main] TRACE AbstractWordWriter - replacing hyperlink [244783 - 244804] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:24,502 [main] TRACE AbstractWordWriter - replacing hyperlink [244859 - 244897] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:24,554 [main] TRACE AbstractWordWriter - replacing hyperlink [244953 - 244974] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:24,606 [main] TRACE AbstractWordWriter - replacing hyperlink [245029 - 245067] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:24,660 [main] TRACE AbstractWordWriter - replacing hyperlink [245128 - 245148] HYPERLINK Floating, UML56... +2024-09-07 21:59:24,721 [main] TRACE AbstractWordWriter - replacing hyperlink [245202 - 245240] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:24,776 [main] TRACE AbstractWordWriter - replacing hyperlink [245298 - 245319] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:24,833 [main] TRACE AbstractWordWriter - replacing hyperlink [245374 - 245412] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:24,889 [main] TRACE AbstractWordWriter - replacing hyperlink [245467 - 245488] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:24,945 [main] TRACE AbstractWordWriter - replacing hyperlink [245543 - 245581] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:25,011 [main] TRACE AbstractWordWriter - replacing hyperlink [245635 - 245656] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:25,063 [main] TRACE AbstractWordWriter - replacing hyperlink [245711 - 245749] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:25,114 [main] TRACE AbstractWordWriter - replacing hyperlink [245809 - 245830] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:25,165 [main] TRACE AbstractWordWriter - replacing hyperlink [245885 - 245923] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:25,220 [main] TRACE AbstractWordWriter - replacing hyperlink [245978 - 245999] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:25,272 [main] TRACE AbstractWordWriter - replacing hyperlink [246054 - 246092] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:25,324 [main] TRACE AbstractWordWriter - replacing hyperlink [246149 - 246170] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:25,377 [main] TRACE AbstractWordWriter - replacing hyperlink [246225 - 246263] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:25,429 [main] TRACE AbstractWordWriter - replacing hyperlink [246326 - 246347] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:25,482 [main] TRACE AbstractWordWriter - replacing hyperlink [246402 - 246440] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:25,534 [main] TRACE AbstractWordWriter - replacing hyperlink [246505 - 246526] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:25,586 [main] TRACE AbstractWordWriter - replacing hyperlink [246581 - 246619] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:25,638 [main] TRACE AbstractWordWriter - replacing hyperlink [246676 - 246697] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:25,690 [main] TRACE AbstractWordWriter - replacing hyperlink [246752 - 246790] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:25,742 [main] TRACE AbstractWordWriter - replacing hyperlink [246853 - 246874] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:25,793 [main] TRACE AbstractWordWriter - replacing hyperlink [246929 - 246967] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:25,845 [main] TRACE AbstractWordWriter - replacing hyperlink [247032 - 247053] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:25,898 [main] TRACE AbstractWordWriter - replacing hyperlink [247108 - 247146] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:25,951 [main] TRACE AbstractWordWriter - replacing hyperlink [247209 - 247230] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:26,002 [main] TRACE AbstractWordWriter - replacing hyperlink [247285 - 247310] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:26,064 [main] TRACE AbstractWordWriter - replacing hyperlink [247361 - 247382] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:26,126 [main] TRACE AbstractWordWriter - replacing hyperlink [247437 - 247462] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:26,193 [main] TRACE AbstractWordWriter - replacing hyperlink [247512 - 247533] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:26,255 [main] TRACE AbstractWordWriter - replacing hyperlink [247588 - 247613] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:26,311 [main] TRACE AbstractWordWriter - replacing hyperlink [247669 - 247690] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:26,371 [main] TRACE AbstractWordWriter - replacing hyperlink [247745 - 247770] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:26,426 [main] TRACE AbstractWordWriter - replacing hyperlink [247827 - 247848] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:26,483 [main] TRACE AbstractWordWriter - replacing hyperlink [247903 - 247928] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:26,541 [main] TRACE AbstractWordWriter - replacing hyperlink [247985 - 248006] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:26,599 [main] TRACE AbstractWordWriter - replacing hyperlink [248061 - 248086] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:26,652 [main] TRACE AbstractWordWriter - replacing hyperlink [248136 - 248157] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:26,703 [main] TRACE AbstractWordWriter - replacing hyperlink [248212 - 248237] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:26,755 [main] TRACE AbstractWordWriter - replacing hyperlink [248287 - 248308] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:26,808 [main] TRACE AbstractWordWriter - replacing hyperlink [248363 - 248388] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:26,860 [main] TRACE AbstractWordWriter - replacing hyperlink [248437 - 248458] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:26,914 [main] TRACE AbstractWordWriter - replacing hyperlink [248513 - 248538] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:26,967 [main] TRACE AbstractWordWriter - replacing hyperlink [248589 - 248610] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:27,019 [main] TRACE AbstractWordWriter - replacing hyperlink [248665 - 248690] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:27,071 [main] TRACE AbstractWordWriter - replacing hyperlink [248741 - 248762] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:27,125 [main] TRACE AbstractWordWriter - replacing hyperlink [248817 - 248842] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:27,184 [main] TRACE AbstractWordWriter - replacing hyperlink [248897 - 248918] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:27,240 [main] TRACE AbstractWordWriter - replacing hyperlink [248973 - 248998] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:27,293 [main] TRACE AbstractWordWriter - replacing hyperlink [249053 - 249074] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:27,346 [main] TRACE AbstractWordWriter - replacing hyperlink [249129 - 249154] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:27,399 [main] TRACE AbstractWordWriter - replacing hyperlink [249207 - 249228] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:27,452 [main] TRACE AbstractWordWriter - replacing hyperlink [249283 - 249308] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:27,503 [main] TRACE AbstractWordWriter - replacing hyperlink [249361 - 249382] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:27,555 [main] TRACE AbstractWordWriter - replacing hyperlink [249437 - 249462] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:27,607 [main] TRACE AbstractWordWriter - replacing hyperlink [249515 - 249536] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:27,671 [main] TRACE AbstractWordWriter - replacing hyperlink [249591 - 249616] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:27,731 [main] TRACE AbstractWordWriter - replacing hyperlink [249669 - 249690] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:27,788 [main] TRACE AbstractWordWriter - replacing hyperlink [249745 - 249770] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:27,853 [main] TRACE AbstractWordWriter - replacing hyperlink [249826 - 249847] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:27,907 [main] TRACE AbstractWordWriter - replacing hyperlink [249902 - 249927] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:27,961 [main] TRACE AbstractWordWriter - replacing hyperlink [249983 - 250004] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:28,015 [main] TRACE AbstractWordWriter - replacing hyperlink [250059 - 250084] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:28,068 [main] TRACE AbstractWordWriter - replacing hyperlink [250134 - 250155] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:28,122 [main] TRACE AbstractWordWriter - replacing hyperlink [250210 - 250235] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:28,175 [main] TRACE AbstractWordWriter - replacing hyperlink [250283 - 250304] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:28,235 [main] TRACE AbstractWordWriter - replacing hyperlink [250359 - 250384] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:28,290 [main] TRACE AbstractWordWriter - replacing hyperlink [250434 - 250455] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:28,343 [main] TRACE AbstractWordWriter - replacing hyperlink [250510 - 250535] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:28,396 [main] TRACE AbstractWordWriter - replacing hyperlink [250584 - 250605] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:28,448 [main] TRACE AbstractWordWriter - replacing hyperlink [250660 - 250685] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:28,500 [main] TRACE AbstractWordWriter - replacing hyperlink [250735 - 250756] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:28,554 [main] TRACE AbstractWordWriter - replacing hyperlink [250811 - 250836] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:28,607 [main] TRACE AbstractWordWriter - replacing hyperlink [250887 - 250908] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:28,659 [main] TRACE AbstractWordWriter - replacing hyperlink [250963 - 250988] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:28,711 [main] TRACE AbstractWordWriter - replacing hyperlink [251038 - 251059] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:28,763 [main] TRACE AbstractWordWriter - replacing hyperlink [251114 - 251139] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:28,816 [main] TRACE AbstractWordWriter - replacing hyperlink [251636 - 251657] HYPERLINK EventType, UML72... +2024-09-07 21:59:28,869 [main] TRACE AbstractWordWriter - replacing hyperlink [252128 - 252149] HYPERLINK EventType, UML72... +2024-09-07 21:59:28,923 [main] TRACE AbstractWordWriter - replacing hyperlink [252535 - 252558] HYPERLINK EntityIndex, UML66... +2024-09-07 21:59:28,975 [main] TRACE AbstractWordWriter - replacing hyperlink [252612 - 252636] HYPERLINK Association, UML100... +2024-09-07 21:59:29,025 [main] TRACE AbstractWordWriter - replacing hyperlink [252675 - 252692] HYPERLINK CntRs, UML67... +2024-09-07 21:59:29,077 [main] TRACE AbstractWordWriter - replacing hyperlink [252743 - 252767] HYPERLINK Association, UML100... +2024-09-07 21:59:29,130 [main] TRACE AbstractWordWriter - replacing hyperlink [252811 - 252834] HYPERLINK InetAddress, UML65... +2024-09-07 21:59:29,189 [main] TRACE AbstractWordWriter - replacing hyperlink [252891 - 252915] HYPERLINK Association, UML100... +2024-09-07 21:59:29,258 [main] TRACE AbstractWordWriter - replacing hyperlink [252963 - 252990] HYPERLINK InetAddressType, UML64... +2024-09-07 21:59:29,326 [main] TRACE AbstractWordWriter - replacing hyperlink [253051 - 253075] HYPERLINK Association, UML100... +2024-09-07 21:59:29,384 [main] TRACE AbstractWordWriter - replacing hyperlink [253115 - 253137] HYPERLINK ProtIdType, UML74... +2024-09-07 21:59:29,439 [main] TRACE AbstractWordWriter - replacing hyperlink [253193 - 253217] HYPERLINK Association, UML100... +2024-09-07 21:59:29,503 [main] TRACE AbstractWordWriter - replacing hyperlink [253263 - 253285] HYPERLINK CharString, UML59... +2024-09-07 21:59:29,563 [main] TRACE AbstractWordWriter - replacing hyperlink [253341 - 253365] HYPERLINK Association, UML100... +2024-09-07 21:59:29,619 [main] TRACE AbstractWordWriter - replacing hyperlink [253411 - 253433] HYPERLINK CharString, UML59... +2024-09-07 21:59:29,679 [main] TRACE AbstractWordWriter - replacing hyperlink [253489 - 253513] HYPERLINK Association, UML100... +2024-09-07 21:59:29,734 [main] TRACE AbstractWordWriter - replacing hyperlink [253557 - 253580] HYPERLINK InetAddress, UML65... +2024-09-07 21:59:29,794 [main] TRACE AbstractWordWriter - replacing hyperlink [253637 - 253661] HYPERLINK Association, UML100... +2024-09-07 21:59:29,849 [main] TRACE AbstractWordWriter - replacing hyperlink [253709 - 253736] HYPERLINK InetAddressType, UML64... +2024-09-07 21:59:29,906 [main] TRACE AbstractWordWriter - replacing hyperlink [253797 - 253821] HYPERLINK Association, UML100... +2024-09-07 21:59:29,961 [main] TRACE AbstractWordWriter - replacing hyperlink [253865 - 253886] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:30,013 [main] TRACE AbstractWordWriter - replacing hyperlink [253939 - 253963] HYPERLINK Association, UML100... +2024-09-07 21:59:30,064 [main] TRACE AbstractWordWriter - replacing hyperlink [254004 - 254023] HYPERLINK LnkType, UML78... +2024-09-07 21:59:30,117 [main] TRACE AbstractWordWriter - replacing hyperlink [254076 - 254100] HYPERLINK Association, UML100... +2024-09-07 21:59:30,171 [main] TRACE AbstractWordWriter - replacing hyperlink [254147 - 254171] HYPERLINK BooleanValue, UML52... +2024-09-07 21:59:30,224 [main] TRACE AbstractWordWriter - replacing hyperlink [254229 - 254259] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:30,281 [main] TRACE AbstractWordWriter - replacing hyperlink [254317 - 254336] HYPERLINK Integer, UML53... +2024-09-07 21:59:30,338 [main] TRACE AbstractWordWriter - replacing hyperlink [254389 - 254419] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:30,399 [main] TRACE AbstractWordWriter - replacing hyperlink [254472 - 254492] HYPERLINK Floating, UML56... +2024-09-07 21:59:30,451 [main] TRACE AbstractWordWriter - replacing hyperlink [254549 - 254579] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:30,505 [main] TRACE AbstractWordWriter - replacing hyperlink [254630 - 254650] HYPERLINK Floating, UML56... +2024-09-07 21:59:30,558 [main] TRACE AbstractWordWriter - replacing hyperlink [254707 - 254737] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:30,610 [main] TRACE AbstractWordWriter - replacing hyperlink [254798 - 254818] HYPERLINK Floating, UML56... +2024-09-07 21:59:30,662 [main] TRACE AbstractWordWriter - replacing hyperlink [254875 - 254905] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:30,715 [main] TRACE AbstractWordWriter - replacing hyperlink [254963 - 254983] HYPERLINK Floating, UML56... +2024-09-07 21:59:30,768 [main] TRACE AbstractWordWriter - replacing hyperlink [255040 - 255070] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:30,822 [main] TRACE AbstractWordWriter - replacing hyperlink [255123 - 255143] HYPERLINK Floating, UML56... +2024-09-07 21:59:30,874 [main] TRACE AbstractWordWriter - replacing hyperlink [255200 - 255230] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:30,928 [main] TRACE AbstractWordWriter - replacing hyperlink [255287 - 255307] HYPERLINK Floating, UML56... +2024-09-07 21:59:30,981 [main] TRACE AbstractWordWriter - replacing hyperlink [255364 - 255394] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:31,033 [main] TRACE AbstractWordWriter - replacing hyperlink [255442 - 255463] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:31,086 [main] TRACE AbstractWordWriter - replacing hyperlink [255518 - 255556] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:31,143 [main] TRACE AbstractWordWriter - replacing hyperlink [255612 - 255633] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:31,200 [main] TRACE AbstractWordWriter - replacing hyperlink [255688 - 255726] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:31,260 [main] TRACE AbstractWordWriter - replacing hyperlink [255782 - 255803] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:31,316 [main] TRACE AbstractWordWriter - replacing hyperlink [255858 - 255896] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:31,370 [main] TRACE AbstractWordWriter - replacing hyperlink [255952 - 255973] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:31,430 [main] TRACE AbstractWordWriter - replacing hyperlink [256028 - 256066] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:31,483 [main] TRACE AbstractWordWriter - replacing hyperlink [256125 - 256146] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:31,536 [main] TRACE AbstractWordWriter - replacing hyperlink [256201 - 256239] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:31,590 [main] TRACE AbstractWordWriter - replacing hyperlink [256296 - 256317] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:31,643 [main] TRACE AbstractWordWriter - replacing hyperlink [256372 - 256410] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:31,696 [main] TRACE AbstractWordWriter - replacing hyperlink [256466 - 256487] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:31,754 [main] TRACE AbstractWordWriter - replacing hyperlink [256542 - 256580] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:31,812 [main] TRACE AbstractWordWriter - replacing hyperlink [256641 - 256661] HYPERLINK Floating, UML56... +2024-09-07 21:59:31,872 [main] TRACE AbstractWordWriter - replacing hyperlink [256715 - 256753] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:31,930 [main] TRACE AbstractWordWriter - replacing hyperlink [256811 - 256832] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:31,985 [main] TRACE AbstractWordWriter - replacing hyperlink [256887 - 256925] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:32,042 [main] TRACE AbstractWordWriter - replacing hyperlink [256980 - 257001] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:32,102 [main] TRACE AbstractWordWriter - replacing hyperlink [257056 - 257094] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:32,163 [main] TRACE AbstractWordWriter - replacing hyperlink [257148 - 257169] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:32,228 [main] TRACE AbstractWordWriter - replacing hyperlink [257224 - 257262] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:32,289 [main] TRACE AbstractWordWriter - replacing hyperlink [257322 - 257343] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:32,343 [main] TRACE AbstractWordWriter - replacing hyperlink [257398 - 257436] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:32,404 [main] TRACE AbstractWordWriter - replacing hyperlink [257491 - 257512] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:32,464 [main] TRACE AbstractWordWriter - replacing hyperlink [257567 - 257605] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:32,523 [main] TRACE AbstractWordWriter - replacing hyperlink [257662 - 257683] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:32,582 [main] TRACE AbstractWordWriter - replacing hyperlink [257738 - 257776] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:32,635 [main] TRACE AbstractWordWriter - replacing hyperlink [257839 - 257860] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:32,690 [main] TRACE AbstractWordWriter - replacing hyperlink [257915 - 257953] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:32,743 [main] TRACE AbstractWordWriter - replacing hyperlink [258018 - 258039] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:32,795 [main] TRACE AbstractWordWriter - replacing hyperlink [258094 - 258132] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:32,849 [main] TRACE AbstractWordWriter - replacing hyperlink [258189 - 258210] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:32,906 [main] TRACE AbstractWordWriter - replacing hyperlink [258265 - 258303] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:32,958 [main] TRACE AbstractWordWriter - replacing hyperlink [258366 - 258387] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:33,030 [main] TRACE AbstractWordWriter - replacing hyperlink [258442 - 258480] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:33,090 [main] TRACE AbstractWordWriter - replacing hyperlink [258545 - 258566] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:33,145 [main] TRACE AbstractWordWriter - replacing hyperlink [258621 - 258659] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:33,200 [main] TRACE AbstractWordWriter - replacing hyperlink [258722 - 258743] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:33,254 [main] TRACE AbstractWordWriter - replacing hyperlink [258798 - 258823] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:33,306 [main] TRACE AbstractWordWriter - replacing hyperlink [258874 - 258895] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:33,363 [main] TRACE AbstractWordWriter - replacing hyperlink [258950 - 258975] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:33,419 [main] TRACE AbstractWordWriter - replacing hyperlink [259025 - 259046] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:33,472 [main] TRACE AbstractWordWriter - replacing hyperlink [259101 - 259126] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:33,528 [main] TRACE AbstractWordWriter - replacing hyperlink [259182 - 259203] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:33,584 [main] TRACE AbstractWordWriter - replacing hyperlink [259258 - 259283] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:33,637 [main] TRACE AbstractWordWriter - replacing hyperlink [259340 - 259361] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:33,688 [main] TRACE AbstractWordWriter - replacing hyperlink [259416 - 259441] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:33,740 [main] TRACE AbstractWordWriter - replacing hyperlink [259498 - 259519] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:33,794 [main] TRACE AbstractWordWriter - replacing hyperlink [259574 - 259599] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:33,848 [main] TRACE AbstractWordWriter - replacing hyperlink [259649 - 259670] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:33,902 [main] TRACE AbstractWordWriter - replacing hyperlink [259725 - 259750] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:33,958 [main] TRACE AbstractWordWriter - replacing hyperlink [259800 - 259821] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:34,011 [main] TRACE AbstractWordWriter - replacing hyperlink [259876 - 259901] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:34,200 [main] TRACE AbstractWordWriter - replacing hyperlink [259950 - 259971] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:34,308 [main] TRACE AbstractWordWriter - replacing hyperlink [260026 - 260051] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:34,372 [main] TRACE AbstractWordWriter - replacing hyperlink [260102 - 260123] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:34,430 [main] TRACE AbstractWordWriter - replacing hyperlink [260178 - 260203] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:34,535 [main] TRACE AbstractWordWriter - replacing hyperlink [260254 - 260275] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:34,620 [main] TRACE AbstractWordWriter - replacing hyperlink [260330 - 260355] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:34,675 [main] TRACE AbstractWordWriter - replacing hyperlink [260410 - 260431] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:34,728 [main] TRACE AbstractWordWriter - replacing hyperlink [260486 - 260511] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:34,781 [main] TRACE AbstractWordWriter - replacing hyperlink [260566 - 260587] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:34,834 [main] TRACE AbstractWordWriter - replacing hyperlink [260642 - 260667] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:34,885 [main] TRACE AbstractWordWriter - replacing hyperlink [260720 - 260741] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:34,938 [main] TRACE AbstractWordWriter - replacing hyperlink [260796 - 260821] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:34,993 [main] TRACE AbstractWordWriter - replacing hyperlink [260874 - 260895] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:35,048 [main] TRACE AbstractWordWriter - replacing hyperlink [260950 - 260975] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:35,101 [main] TRACE AbstractWordWriter - replacing hyperlink [261028 - 261049] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:35,155 [main] TRACE AbstractWordWriter - replacing hyperlink [261104 - 261129] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:35,208 [main] TRACE AbstractWordWriter - replacing hyperlink [261182 - 261203] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:35,268 [main] TRACE AbstractWordWriter - replacing hyperlink [261258 - 261283] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:35,321 [main] TRACE AbstractWordWriter - replacing hyperlink [261339 - 261360] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:35,376 [main] TRACE AbstractWordWriter - replacing hyperlink [261415 - 261440] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:35,429 [main] TRACE AbstractWordWriter - replacing hyperlink [261496 - 261517] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:35,481 [main] TRACE AbstractWordWriter - replacing hyperlink [261572 - 261597] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:35,534 [main] TRACE AbstractWordWriter - replacing hyperlink [261647 - 261668] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:35,587 [main] TRACE AbstractWordWriter - replacing hyperlink [261723 - 261748] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:35,640 [main] TRACE AbstractWordWriter - replacing hyperlink [261796 - 261817] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:35,699 [main] TRACE AbstractWordWriter - replacing hyperlink [261872 - 261897] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:35,751 [main] TRACE AbstractWordWriter - replacing hyperlink [261947 - 261968] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:35,803 [main] TRACE AbstractWordWriter - replacing hyperlink [262023 - 262048] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:35,858 [main] TRACE AbstractWordWriter - replacing hyperlink [262097 - 262118] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:35,910 [main] TRACE AbstractWordWriter - replacing hyperlink [262173 - 262198] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:35,975 [main] TRACE AbstractWordWriter - replacing hyperlink [262248 - 262269] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:36,154 [main] TRACE AbstractWordWriter - replacing hyperlink [262324 - 262349] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:36,293 [main] TRACE AbstractWordWriter - replacing hyperlink [262400 - 262421] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:36,347 [main] TRACE AbstractWordWriter - replacing hyperlink [262476 - 262501] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:36,403 [main] TRACE AbstractWordWriter - replacing hyperlink [262551 - 262572] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:36,459 [main] TRACE AbstractWordWriter - replacing hyperlink [262627 - 262652] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:36,513 [main] TRACE AbstractWordWriter - replacing hyperlink [263051 - 263074] HYPERLINK EntityIndex, UML66... +2024-09-07 21:59:36,565 [main] TRACE AbstractWordWriter - replacing hyperlink [263128 - 263152] HYPERLINK Association, UML100... +2024-09-07 21:59:36,618 [main] TRACE AbstractWordWriter - replacing hyperlink [263191 - 263208] HYPERLINK CntRs, UML67... +2024-09-07 21:59:36,673 [main] TRACE AbstractWordWriter - replacing hyperlink [263259 - 263283] HYPERLINK Association, UML100... +2024-09-07 21:59:36,727 [main] TRACE AbstractWordWriter - replacing hyperlink [263327 - 263350] HYPERLINK InetAddress, UML65... +2024-09-07 21:59:36,785 [main] TRACE AbstractWordWriter - replacing hyperlink [263407 - 263431] HYPERLINK Association, UML100... +2024-09-07 21:59:36,838 [main] TRACE AbstractWordWriter - replacing hyperlink [263479 - 263506] HYPERLINK InetAddressType, UML64... +2024-09-07 21:59:36,892 [main] TRACE AbstractWordWriter - replacing hyperlink [263567 - 263591] HYPERLINK Association, UML100... +2024-09-07 21:59:36,944 [main] TRACE AbstractWordWriter - replacing hyperlink [263631 - 263653] HYPERLINK ProtIdType, UML74... +2024-09-07 21:59:36,995 [main] TRACE AbstractWordWriter - replacing hyperlink [263709 - 263733] HYPERLINK Association, UML100... +2024-09-07 21:59:37,050 [main] TRACE AbstractWordWriter - replacing hyperlink [263779 - 263801] HYPERLINK CharString, UML59... +2024-09-07 21:59:37,106 [main] TRACE AbstractWordWriter - replacing hyperlink [263857 - 263881] HYPERLINK Association, UML100... +2024-09-07 21:59:37,198 [main] TRACE AbstractWordWriter - replacing hyperlink [263927 - 263949] HYPERLINK CharString, UML59... +2024-09-07 21:59:37,252 [main] TRACE AbstractWordWriter - replacing hyperlink [264005 - 264029] HYPERLINK Association, UML100... +2024-09-07 21:59:37,309 [main] TRACE AbstractWordWriter - replacing hyperlink [264073 - 264096] HYPERLINK InetAddress, UML65... +2024-09-07 21:59:37,363 [main] TRACE AbstractWordWriter - replacing hyperlink [264153 - 264177] HYPERLINK Association, UML100... +2024-09-07 21:59:37,429 [main] TRACE AbstractWordWriter - replacing hyperlink [264225 - 264252] HYPERLINK InetAddressType, UML64... +2024-09-07 21:59:37,484 [main] TRACE AbstractWordWriter - replacing hyperlink [264313 - 264337] HYPERLINK Association, UML100... +2024-09-07 21:59:37,538 [main] TRACE AbstractWordWriter - replacing hyperlink [264381 - 264402] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:37,591 [main] TRACE AbstractWordWriter - replacing hyperlink [264455 - 264479] HYPERLINK Association, UML100... +2024-09-07 21:59:37,645 [main] TRACE AbstractWordWriter - replacing hyperlink [264520 - 264539] HYPERLINK LnkType, UML78... +2024-09-07 21:59:37,698 [main] TRACE AbstractWordWriter - replacing hyperlink [264592 - 264616] HYPERLINK Association, UML100... +2024-09-07 21:59:37,770 [main] TRACE AbstractWordWriter - replacing hyperlink [264663 - 264687] HYPERLINK BooleanValue, UML52... +2024-09-07 21:59:37,847 [main] TRACE AbstractWordWriter - replacing hyperlink [264745 - 264775] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:37,920 [main] TRACE AbstractWordWriter - replacing hyperlink [264833 - 264852] HYPERLINK Integer, UML53... +2024-09-07 21:59:37,984 [main] TRACE AbstractWordWriter - replacing hyperlink [264905 - 264935] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:38,053 [main] TRACE AbstractWordWriter - replacing hyperlink [264988 - 265008] HYPERLINK Floating, UML56... +2024-09-07 21:59:38,113 [main] TRACE AbstractWordWriter - replacing hyperlink [265065 - 265095] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:38,172 [main] TRACE AbstractWordWriter - replacing hyperlink [265146 - 265166] HYPERLINK Floating, UML56... +2024-09-07 21:59:38,230 [main] TRACE AbstractWordWriter - replacing hyperlink [265223 - 265253] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:38,283 [main] TRACE AbstractWordWriter - replacing hyperlink [265314 - 265334] HYPERLINK Floating, UML56... +2024-09-07 21:59:38,342 [main] TRACE AbstractWordWriter - replacing hyperlink [265391 - 265421] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:38,395 [main] TRACE AbstractWordWriter - replacing hyperlink [265479 - 265499] HYPERLINK Floating, UML56... +2024-09-07 21:59:38,448 [main] TRACE AbstractWordWriter - replacing hyperlink [265556 - 265586] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:38,505 [main] TRACE AbstractWordWriter - replacing hyperlink [265639 - 265659] HYPERLINK Floating, UML56... +2024-09-07 21:59:38,563 [main] TRACE AbstractWordWriter - replacing hyperlink [265716 - 265746] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:38,620 [main] TRACE AbstractWordWriter - replacing hyperlink [265803 - 265823] HYPERLINK Floating, UML56... +2024-09-07 21:59:38,680 [main] TRACE AbstractWordWriter - replacing hyperlink [265880 - 265910] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:38,747 [main] TRACE AbstractWordWriter - replacing hyperlink [265958 - 265979] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:38,808 [main] TRACE AbstractWordWriter - replacing hyperlink [266034 - 266072] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:38,867 [main] TRACE AbstractWordWriter - replacing hyperlink [266128 - 266149] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:38,933 [main] TRACE AbstractWordWriter - replacing hyperlink [266204 - 266242] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:38,988 [main] TRACE AbstractWordWriter - replacing hyperlink [266298 - 266319] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:39,040 [main] TRACE AbstractWordWriter - replacing hyperlink [266374 - 266412] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:39,093 [main] TRACE AbstractWordWriter - replacing hyperlink [266468 - 266489] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:39,146 [main] TRACE AbstractWordWriter - replacing hyperlink [266544 - 266582] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:39,203 [main] TRACE AbstractWordWriter - replacing hyperlink [266641 - 266662] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:39,258 [main] TRACE AbstractWordWriter - replacing hyperlink [266717 - 266755] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:39,318 [main] TRACE AbstractWordWriter - replacing hyperlink [266812 - 266833] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:39,374 [main] TRACE AbstractWordWriter - replacing hyperlink [266888 - 266926] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:39,437 [main] TRACE AbstractWordWriter - replacing hyperlink [266982 - 267003] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:39,496 [main] TRACE AbstractWordWriter - replacing hyperlink [267058 - 267096] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:39,555 [main] TRACE AbstractWordWriter - replacing hyperlink [267157 - 267177] HYPERLINK Floating, UML56... +2024-09-07 21:59:39,610 [main] TRACE AbstractWordWriter - replacing hyperlink [267231 - 267269] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:39,663 [main] TRACE AbstractWordWriter - replacing hyperlink [267327 - 267348] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:39,721 [main] TRACE AbstractWordWriter - replacing hyperlink [267403 - 267441] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:39,778 [main] TRACE AbstractWordWriter - replacing hyperlink [267496 - 267517] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:39,841 [main] TRACE AbstractWordWriter - replacing hyperlink [267572 - 267610] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:39,901 [main] TRACE AbstractWordWriter - replacing hyperlink [267664 - 267685] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:39,972 [main] TRACE AbstractWordWriter - replacing hyperlink [267740 - 267778] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:40,032 [main] TRACE AbstractWordWriter - replacing hyperlink [267838 - 267859] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:40,090 [main] TRACE AbstractWordWriter - replacing hyperlink [267914 - 267952] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:40,148 [main] TRACE AbstractWordWriter - replacing hyperlink [268007 - 268028] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:40,202 [main] TRACE AbstractWordWriter - replacing hyperlink [268083 - 268121] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:40,254 [main] TRACE AbstractWordWriter - replacing hyperlink [268178 - 268199] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:40,309 [main] TRACE AbstractWordWriter - replacing hyperlink [268254 - 268292] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:40,365 [main] TRACE AbstractWordWriter - replacing hyperlink [268355 - 268376] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:40,419 [main] TRACE AbstractWordWriter - replacing hyperlink [268431 - 268469] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:40,472 [main] TRACE AbstractWordWriter - replacing hyperlink [268534 - 268555] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:40,527 [main] TRACE AbstractWordWriter - replacing hyperlink [268610 - 268648] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:40,583 [main] TRACE AbstractWordWriter - replacing hyperlink [268705 - 268726] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:40,636 [main] TRACE AbstractWordWriter - replacing hyperlink [268781 - 268819] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:40,690 [main] TRACE AbstractWordWriter - replacing hyperlink [268882 - 268903] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:40,745 [main] TRACE AbstractWordWriter - replacing hyperlink [268958 - 268996] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:40,797 [main] TRACE AbstractWordWriter - replacing hyperlink [269061 - 269082] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:40,851 [main] TRACE AbstractWordWriter - replacing hyperlink [269137 - 269175] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-07 21:59:40,922 [main] TRACE AbstractWordWriter - replacing hyperlink [269238 - 269259] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:40,977 [main] TRACE AbstractWordWriter - replacing hyperlink [269314 - 269339] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:41,035 [main] TRACE AbstractWordWriter - replacing hyperlink [269390 - 269411] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:41,087 [main] TRACE AbstractWordWriter - replacing hyperlink [269466 - 269491] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:41,140 [main] TRACE AbstractWordWriter - replacing hyperlink [269541 - 269562] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:41,193 [main] TRACE AbstractWordWriter - replacing hyperlink [269617 - 269642] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:41,246 [main] TRACE AbstractWordWriter - replacing hyperlink [269698 - 269719] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:41,301 [main] TRACE AbstractWordWriter - replacing hyperlink [269774 - 269799] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:41,354 [main] TRACE AbstractWordWriter - replacing hyperlink [269856 - 269877] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:41,406 [main] TRACE AbstractWordWriter - replacing hyperlink [269932 - 269957] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:41,465 [main] TRACE AbstractWordWriter - replacing hyperlink [270014 - 270035] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:41,564 [main] TRACE AbstractWordWriter - replacing hyperlink [270090 - 270115] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:41,624 [main] TRACE AbstractWordWriter - replacing hyperlink [270165 - 270186] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:41,682 [main] TRACE AbstractWordWriter - replacing hyperlink [270241 - 270266] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:41,734 [main] TRACE AbstractWordWriter - replacing hyperlink [270316 - 270337] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:41,802 [main] TRACE AbstractWordWriter - replacing hyperlink [270392 - 270417] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:41,859 [main] TRACE AbstractWordWriter - replacing hyperlink [270466 - 270487] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:41,921 [main] TRACE AbstractWordWriter - replacing hyperlink [270542 - 270567] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:41,980 [main] TRACE AbstractWordWriter - replacing hyperlink [270618 - 270639] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:42,038 [main] TRACE AbstractWordWriter - replacing hyperlink [270694 - 270719] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:42,103 [main] TRACE AbstractWordWriter - replacing hyperlink [270770 - 270791] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:42,160 [main] TRACE AbstractWordWriter - replacing hyperlink [270846 - 270871] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:42,212 [main] TRACE AbstractWordWriter - replacing hyperlink [270926 - 270947] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:42,268 [main] TRACE AbstractWordWriter - replacing hyperlink [271002 - 271027] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:42,328 [main] TRACE AbstractWordWriter - replacing hyperlink [271082 - 271103] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:42,383 [main] TRACE AbstractWordWriter - replacing hyperlink [271158 - 271183] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:42,442 [main] TRACE AbstractWordWriter - replacing hyperlink [271236 - 271257] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:42,499 [main] TRACE AbstractWordWriter - replacing hyperlink [271312 - 271337] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:42,556 [main] TRACE AbstractWordWriter - replacing hyperlink [271390 - 271411] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:42,610 [main] TRACE AbstractWordWriter - replacing hyperlink [271466 - 271491] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:42,665 [main] TRACE AbstractWordWriter - replacing hyperlink [271544 - 271565] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:42,718 [main] TRACE AbstractWordWriter - replacing hyperlink [271620 - 271645] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:42,772 [main] TRACE AbstractWordWriter - replacing hyperlink [271698 - 271719] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:42,827 [main] TRACE AbstractWordWriter - replacing hyperlink [271774 - 271799] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:42,885 [main] TRACE AbstractWordWriter - replacing hyperlink [271855 - 271876] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:42,940 [main] TRACE AbstractWordWriter - replacing hyperlink [271931 - 271956] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:42,995 [main] TRACE AbstractWordWriter - replacing hyperlink [272012 - 272033] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:43,050 [main] TRACE AbstractWordWriter - replacing hyperlink [272088 - 272113] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:43,108 [main] TRACE AbstractWordWriter - replacing hyperlink [272163 - 272184] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:43,167 [main] TRACE AbstractWordWriter - replacing hyperlink [272239 - 272264] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:43,221 [main] TRACE AbstractWordWriter - replacing hyperlink [272312 - 272333] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:43,276 [main] TRACE AbstractWordWriter - replacing hyperlink [272388 - 272413] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:43,332 [main] TRACE AbstractWordWriter - replacing hyperlink [272463 - 272484] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:43,388 [main] TRACE AbstractWordWriter - replacing hyperlink [272539 - 272564] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:43,443 [main] TRACE AbstractWordWriter - replacing hyperlink [272613 - 272634] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:43,499 [main] TRACE AbstractWordWriter - replacing hyperlink [272689 - 272714] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:43,553 [main] TRACE AbstractWordWriter - replacing hyperlink [272764 - 272785] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:43,607 [main] TRACE AbstractWordWriter - replacing hyperlink [272840 - 272865] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:43,675 [main] TRACE AbstractWordWriter - replacing hyperlink [272916 - 272937] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:43,747 [main] TRACE AbstractWordWriter - replacing hyperlink [272992 - 273017] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:43,829 [main] TRACE AbstractWordWriter - replacing hyperlink [273067 - 273088] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:43,905 [main] TRACE AbstractWordWriter - replacing hyperlink [273143 - 273168] HYPERLINK IEC62351part5, UML98... +2024-09-07 21:59:43,960 [main] TRACE AbstractWordWriter - replacing hyperlink [274228 - 274247] HYPERLINK Integer, UML53... +2024-09-07 21:59:44,013 [main] TRACE AbstractWordWriter - replacing hyperlink [274347 - 274366] HYPERLINK Integer, UML53... +2024-09-07 21:59:44,067 [main] TRACE AbstractWordWriter - replacing hyperlink [274457 - 274474] HYPERLINK CntRs, UML67... +2024-09-07 21:59:44,122 [main] TRACE AbstractWordWriter - replacing hyperlink [274560 - 274581] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:44,179 [main] TRACE AbstractWordWriter - replacing hyperlink [274710 - 274729] HYPERLINK Integer, UML53... +2024-09-07 21:59:44,237 [main] TRACE AbstractWordWriter - replacing hyperlink [274823 - 274842] HYPERLINK Integer, UML53... +2024-09-07 21:59:44,292 [main] TRACE AbstractWordWriter - replacing hyperlink [274927 - 274946] HYPERLINK Integer, UML53... +2024-09-07 21:59:44,361 [main] TRACE AbstractWordWriter - replacing hyperlink [275034 - 275053] HYPERLINK Integer, UML53... +2024-09-07 21:59:44,420 [main] TRACE AbstractWordWriter - replacing hyperlink [275139 - 275160] HYPERLINK EventType, UML72... +2024-09-07 21:59:44,479 [main] TRACE AbstractWordWriter - replacing hyperlink [275257 - 275278] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:44,541 [main] TRACE AbstractWordWriter - replacing hyperlink [275424 - 275445] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:44,602 [main] TRACE AbstractWordWriter - replacing hyperlink [275610 - 275631] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:44,657 [main] TRACE AbstractWordWriter - replacing hyperlink [275915 - 275934] HYPERLINK Integer, UML53... +2024-09-07 21:59:44,711 [main] TRACE AbstractWordWriter - replacing hyperlink [276026 - 276045] HYPERLINK Integer, UML53... +2024-09-07 21:59:44,765 [main] TRACE AbstractWordWriter - replacing hyperlink [276128 - 276147] HYPERLINK Integer, UML53... +2024-09-07 21:59:44,821 [main] TRACE AbstractWordWriter - replacing hyperlink [276240 - 276259] HYPERLINK Integer, UML53... +2024-09-07 21:59:44,878 [main] TRACE AbstractWordWriter - replacing hyperlink [277174 - 277195] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:44,934 [main] TRACE AbstractWordWriter - replacing hyperlink [277419 - 277440] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:44,989 [main] TRACE AbstractWordWriter - replacing hyperlink [277662 - 277683] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:45,044 [main] TRACE AbstractWordWriter - replacing hyperlink [277797 - 277818] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:45,099 [main] TRACE AbstractWordWriter - replacing hyperlink [277928 - 277949] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:45,155 [main] TRACE AbstractWordWriter - replacing hyperlink [278115 - 278135] HYPERLINK Floating, UML56... +2024-09-07 21:59:45,209 [main] TRACE AbstractWordWriter - replacing hyperlink [278325 - 278346] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:45,274 [main] TRACE AbstractWordWriter - replacing hyperlink [278431 - 278452] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:45,331 [main] TRACE AbstractWordWriter - replacing hyperlink [278529 - 278550] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:45,387 [main] TRACE AbstractWordWriter - replacing hyperlink [278782 - 278803] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:45,442 [main] TRACE AbstractWordWriter - replacing hyperlink [279033 - 279054] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:45,497 [main] TRACE AbstractWordWriter - replacing hyperlink [279293 - 279314] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:45,552 [main] TRACE AbstractWordWriter - replacing hyperlink [279554 - 279575] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:45,606 [main] TRACE AbstractWordWriter - replacing hyperlink [280035 - 280056] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:45,660 [main] TRACE AbstractWordWriter - replacing hyperlink [280182 - 280203] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:45,715 [main] TRACE AbstractWordWriter - replacing hyperlink [280298 - 280315] HYPERLINK CntRs, UML67... +2024-09-07 21:59:45,770 [main] TRACE AbstractWordWriter - replacing hyperlink [280399 - 280420] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:45,823 [main] TRACE AbstractWordWriter - replacing hyperlink [280538 - 280559] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:45,877 [main] TRACE AbstractWordWriter - replacing hyperlink [280677 - 280698] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:45,986 [main] TRACE AbstractWordWriter - replacing hyperlink [280800 - 280821] HYPERLINK EventType, UML72... +2024-09-07 21:59:46,071 [main] TRACE AbstractWordWriter - replacing hyperlink [280913 - 280940] HYPERLINK MMSAssociation, UML104... +2024-09-07 21:59:46,156 [main] TRACE AbstractWordWriter - replacing hyperlink [281094 - 281115] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:46,222 [main] TRACE AbstractWordWriter - replacing hyperlink [281256 - 281278] HYPERLINK CharString, UML59... +2024-09-07 21:59:46,278 [main] TRACE AbstractWordWriter - replacing hyperlink [281359 - 281381] HYPERLINK CharString, UML59... +2024-09-07 21:59:46,346 [main] TRACE AbstractWordWriter - replacing hyperlink [281467 - 281503] HYPERLINK MMSSecurityNotification, UML115... +2024-09-07 21:59:46,413 [main] TRACE AbstractWordWriter - replacing hyperlink [281617 - 281636] HYPERLINK Integer, UML53... +2024-09-07 21:59:46,476 [main] TRACE AbstractWordWriter - replacing hyperlink [281796 - 281817] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:46,545 [main] TRACE AbstractWordWriter - replacing hyperlink [281982 - 282010] HYPERLINK MMSNotification, UML116... +2024-09-07 21:59:46,610 [main] TRACE AbstractWordWriter - replacing hyperlink [282111 - 282132] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:46,679 [main] TRACE AbstractWordWriter - replacing hyperlink [282272 - 282293] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:46,776 [main] TRACE AbstractWordWriter - replacing hyperlink [282428 - 282449] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:46,840 [main] TRACE AbstractWordWriter - replacing hyperlink [282549 - 282570] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:46,893 [main] TRACE AbstractWordWriter - replacing hyperlink [282625 - 282653] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:59:46,949 [main] TRACE AbstractWordWriter - replacing hyperlink [282701 - 282722] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:47,002 [main] TRACE AbstractWordWriter - replacing hyperlink [282777 - 282805] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:59:47,056 [main] TRACE AbstractWordWriter - replacing hyperlink [282855 - 282876] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:47,117 [main] TRACE AbstractWordWriter - replacing hyperlink [282931 - 282959] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:59:47,174 [main] TRACE AbstractWordWriter - replacing hyperlink [283009 - 283030] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:47,229 [main] TRACE AbstractWordWriter - replacing hyperlink [283085 - 283113] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:59:47,290 [main] TRACE AbstractWordWriter - replacing hyperlink [283163 - 283184] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:47,350 [main] TRACE AbstractWordWriter - replacing hyperlink [283239 - 283267] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:59:47,413 [main] TRACE AbstractWordWriter - replacing hyperlink [283319 - 283339] HYPERLINK Floating, UML56... +2024-09-07 21:59:47,468 [main] TRACE AbstractWordWriter - replacing hyperlink [283396 - 283424] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:59:47,522 [main] TRACE AbstractWordWriter - replacing hyperlink [283473 - 283494] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:47,579 [main] TRACE AbstractWordWriter - replacing hyperlink [283549 - 283577] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:59:47,633 [main] TRACE AbstractWordWriter - replacing hyperlink [283626 - 283647] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:47,687 [main] TRACE AbstractWordWriter - replacing hyperlink [283702 - 283730] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:59:47,740 [main] TRACE AbstractWordWriter - replacing hyperlink [283776 - 283797] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:47,799 [main] TRACE AbstractWordWriter - replacing hyperlink [283852 - 283880] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:59:47,853 [main] TRACE AbstractWordWriter - replacing hyperlink [283926 - 283947] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:47,906 [main] TRACE AbstractWordWriter - replacing hyperlink [284002 - 284030] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:59:47,960 [main] TRACE AbstractWordWriter - replacing hyperlink [284077 - 284098] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:48,013 [main] TRACE AbstractWordWriter - replacing hyperlink [284153 - 284181] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:59:48,066 [main] TRACE AbstractWordWriter - replacing hyperlink [284228 - 284249] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:48,118 [main] TRACE AbstractWordWriter - replacing hyperlink [284304 - 284332] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:59:48,171 [main] TRACE AbstractWordWriter - replacing hyperlink [284384 - 284405] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:48,226 [main] TRACE AbstractWordWriter - replacing hyperlink [284460 - 284488] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:59:48,281 [main] TRACE AbstractWordWriter - replacing hyperlink [284929 - 284955] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:59:48,336 [main] TRACE AbstractWordWriter - replacing hyperlink [285047 - 285070] HYPERLINK EntityIndex, UML66... +2024-09-07 21:59:48,392 [main] TRACE AbstractWordWriter - replacing hyperlink [285141 - 285165] HYPERLINK BooleanValue, UML52... +2024-09-07 21:59:48,456 [main] TRACE AbstractWordWriter - replacing hyperlink [285264 - 285281] HYPERLINK CntRs, UML67... +2024-09-07 21:59:48,511 [main] TRACE AbstractWordWriter - replacing hyperlink [285361 - 285381] HYPERLINK Floating, UML56... +2024-09-07 21:59:48,568 [main] TRACE AbstractWordWriter - replacing hyperlink [285510 - 285534] HYPERLINK BooleanValue, UML52... +2024-09-07 21:59:48,621 [main] TRACE AbstractWordWriter - replacing hyperlink [285665 - 285688] HYPERLINK InetAddress, UML65... +2024-09-07 21:59:48,675 [main] TRACE AbstractWordWriter - replacing hyperlink [285786 - 285813] HYPERLINK InetAddressType, UML64... +2024-09-07 21:59:48,730 [main] TRACE AbstractWordWriter - replacing hyperlink [285899 - 285919] HYPERLINK Selector, UML62... +2024-09-07 21:59:48,785 [main] TRACE AbstractWordWriter - replacing hyperlink [286008 - 286028] HYPERLINK Selector, UML62... +2024-09-07 21:59:48,844 [main] TRACE AbstractWordWriter - replacing hyperlink [286112 - 286132] HYPERLINK Selector, UML62... +2024-09-07 21:59:48,897 [main] TRACE AbstractWordWriter - replacing hyperlink [286227 - 286246] HYPERLINK Integer, UML53... +2024-09-07 21:59:48,952 [main] TRACE AbstractWordWriter - replacing hyperlink [286375 - 286397] HYPERLINK FloatingTs, UML57... +2024-09-07 21:59:49,007 [main] TRACE AbstractWordWriter - replacing hyperlink [286664 - 286695] HYPERLINK SecurityProfileType, UML76... +2024-09-07 21:59:49,064 [main] TRACE AbstractWordWriter - replacing hyperlink [286860 - 286881] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:49,123 [main] TRACE AbstractWordWriter - replacing hyperlink [286936 - 286964] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:59:49,180 [main] TRACE AbstractWordWriter - replacing hyperlink [287012 - 287033] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:49,236 [main] TRACE AbstractWordWriter - replacing hyperlink [287088 - 287116] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:59:49,290 [main] TRACE AbstractWordWriter - replacing hyperlink [287166 - 287187] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:49,348 [main] TRACE AbstractWordWriter - replacing hyperlink [287242 - 287270] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:59:49,401 [main] TRACE AbstractWordWriter - replacing hyperlink [287320 - 287341] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:49,459 [main] TRACE AbstractWordWriter - replacing hyperlink [287396 - 287424] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:59:49,523 [main] TRACE AbstractWordWriter - replacing hyperlink [287474 - 287495] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:49,580 [main] TRACE AbstractWordWriter - replacing hyperlink [287550 - 287578] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:59:49,634 [main] TRACE AbstractWordWriter - replacing hyperlink [287630 - 287650] HYPERLINK Floating, UML56... +2024-09-07 21:59:49,688 [main] TRACE AbstractWordWriter - replacing hyperlink [287707 - 287735] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:59:49,744 [main] TRACE AbstractWordWriter - replacing hyperlink [287784 - 287805] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:49,798 [main] TRACE AbstractWordWriter - replacing hyperlink [287860 - 287888] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:59:49,852 [main] TRACE AbstractWordWriter - replacing hyperlink [287937 - 287958] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:49,907 [main] TRACE AbstractWordWriter - replacing hyperlink [288013 - 288041] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:59:49,962 [main] TRACE AbstractWordWriter - replacing hyperlink [288087 - 288108] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:50,015 [main] TRACE AbstractWordWriter - replacing hyperlink [288163 - 288191] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:59:50,071 [main] TRACE AbstractWordWriter - replacing hyperlink [288237 - 288258] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:50,127 [main] TRACE AbstractWordWriter - replacing hyperlink [288313 - 288341] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:59:50,180 [main] TRACE AbstractWordWriter - replacing hyperlink [288388 - 288409] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:50,235 [main] TRACE AbstractWordWriter - replacing hyperlink [288464 - 288492] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:59:50,290 [main] TRACE AbstractWordWriter - replacing hyperlink [288539 - 288560] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:50,350 [main] TRACE AbstractWordWriter - replacing hyperlink [288615 - 288643] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:59:50,406 [main] TRACE AbstractWordWriter - replacing hyperlink [288695 - 288716] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:50,461 [main] TRACE AbstractWordWriter - replacing hyperlink [288771 - 288799] HYPERLINK MMSProtocolInfo, UML103... +2024-09-07 21:59:50,514 [main] TRACE AbstractWordWriter - replacing hyperlink [288850 - 288874] HYPERLINK BooleanValue, UML52... +2024-09-07 21:59:50,578 [main] TRACE AbstractWordWriter - replacing hyperlink [288932 - 288962] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:50,637 [main] TRACE AbstractWordWriter - replacing hyperlink [289020 - 289039] HYPERLINK Integer, UML53... +2024-09-07 21:59:50,692 [main] TRACE AbstractWordWriter - replacing hyperlink [289092 - 289122] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:50,746 [main] TRACE AbstractWordWriter - replacing hyperlink [289175 - 289195] HYPERLINK Floating, UML56... +2024-09-07 21:59:50,802 [main] TRACE AbstractWordWriter - replacing hyperlink [289252 - 289282] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:50,857 [main] TRACE AbstractWordWriter - replacing hyperlink [289333 - 289353] HYPERLINK Floating, UML56... +2024-09-07 21:59:50,912 [main] TRACE AbstractWordWriter - replacing hyperlink [289410 - 289440] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:50,967 [main] TRACE AbstractWordWriter - replacing hyperlink [289501 - 289521] HYPERLINK Floating, UML56... +2024-09-07 21:59:51,022 [main] TRACE AbstractWordWriter - replacing hyperlink [289578 - 289608] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:51,076 [main] TRACE AbstractWordWriter - replacing hyperlink [289666 - 289686] HYPERLINK Floating, UML56... +2024-09-07 21:59:51,131 [main] TRACE AbstractWordWriter - replacing hyperlink [289743 - 289773] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:51,190 [main] TRACE AbstractWordWriter - replacing hyperlink [289826 - 289846] HYPERLINK Floating, UML56... +2024-09-07 21:59:51,244 [main] TRACE AbstractWordWriter - replacing hyperlink [289903 - 289933] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:51,299 [main] TRACE AbstractWordWriter - replacing hyperlink [289990 - 290010] HYPERLINK Floating, UML56... +2024-09-07 21:59:51,357 [main] TRACE AbstractWordWriter - replacing hyperlink [290067 - 290097] HYPERLINK CommonProtocolInfo, UML89... +2024-09-07 21:59:51,411 [main] TRACE AbstractWordWriter - replacing hyperlink [290528 - 290549] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:51,467 [main] TRACE AbstractWordWriter - replacing hyperlink [290654 - 290675] HYPERLINK EventType, UML72... +2024-09-07 21:59:51,522 [main] TRACE AbstractWordWriter - replacing hyperlink [290772 - 290793] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:51,576 [main] TRACE AbstractWordWriter - replacing hyperlink [290934 - 290955] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:51,638 [main] TRACE AbstractWordWriter - replacing hyperlink [291402 - 291423] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:51,696 [main] TRACE AbstractWordWriter - replacing hyperlink [291541 - 291562] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:51,749 [main] TRACE AbstractWordWriter - replacing hyperlink [291677 - 291698] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:51,807 [main] TRACE AbstractWordWriter - replacing hyperlink [291790 - 291811] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:51,860 [main] TRACE AbstractWordWriter - replacing hyperlink [292632 - 292653] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:51,916 [main] TRACE AbstractWordWriter - replacing hyperlink [292764 - 292785] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:51,971 [main] TRACE AbstractWordWriter - replacing hyperlink [292907 - 292928] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:52,025 [main] TRACE AbstractWordWriter - replacing hyperlink [293446 - 293468] HYPERLINK CharString, UML59... +2024-09-07 21:59:52,080 [main] TRACE AbstractWordWriter - replacing hyperlink [293570 - 293587] HYPERLINK CntRs, UML67... +2024-09-07 21:59:52,137 [main] TRACE AbstractWordWriter - replacing hyperlink [293663 - 293684] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:52,192 [main] TRACE AbstractWordWriter - replacing hyperlink [293807 - 293829] HYPERLINK CharString, UML59... +2024-09-07 21:59:52,248 [main] TRACE AbstractWordWriter - replacing hyperlink [293926 - 293946] HYPERLINK Floating, UML56... +2024-09-07 21:59:52,303 [main] TRACE AbstractWordWriter - replacing hyperlink [294083 - 294104] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:52,360 [main] TRACE AbstractWordWriter - replacing hyperlink [294159 - 294186] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:59:52,416 [main] TRACE AbstractWordWriter - replacing hyperlink [294237 - 294258] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:52,471 [main] TRACE AbstractWordWriter - replacing hyperlink [294313 - 294340] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:59:52,526 [main] TRACE AbstractWordWriter - replacing hyperlink [294397 - 294418] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:52,581 [main] TRACE AbstractWordWriter - replacing hyperlink [294473 - 294500] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:59:52,638 [main] TRACE AbstractWordWriter - replacing hyperlink [294955 - 294977] HYPERLINK CharString, UML59... +2024-09-07 21:59:52,701 [main] TRACE AbstractWordWriter - replacing hyperlink [295079 - 295096] HYPERLINK CntRs, UML67... +2024-09-07 21:59:52,757 [main] TRACE AbstractWordWriter - replacing hyperlink [295174 - 295195] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:52,812 [main] TRACE AbstractWordWriter - replacing hyperlink [295431 - 295452] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:52,866 [main] TRACE AbstractWordWriter - replacing hyperlink [295567 - 295587] HYPERLINK Floating, UML56... +2024-09-07 21:59:52,921 [main] TRACE AbstractWordWriter - replacing hyperlink [295716 - 295738] HYPERLINK CharString, UML59... +2024-09-07 21:59:52,977 [main] TRACE AbstractWordWriter - replacing hyperlink [295828 - 295852] HYPERLINK CharStringTs, UML60... +2024-09-07 21:59:53,032 [main] TRACE AbstractWordWriter - replacing hyperlink [295959 - 295980] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:53,087 [main] TRACE AbstractWordWriter - replacing hyperlink [296035 - 296062] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:59:53,144 [main] TRACE AbstractWordWriter - replacing hyperlink [296113 - 296134] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:53,200 [main] TRACE AbstractWordWriter - replacing hyperlink [296189 - 296216] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:59:53,254 [main] TRACE AbstractWordWriter - replacing hyperlink [296273 - 296294] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:53,308 [main] TRACE AbstractWordWriter - replacing hyperlink [296349 - 296376] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:59:53,366 [main] TRACE AbstractWordWriter - replacing hyperlink [297211 - 297228] HYPERLINK CntRs, UML67... +2024-09-07 21:59:53,421 [main] TRACE AbstractWordWriter - replacing hyperlink [297313 - 297334] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:53,476 [main] TRACE AbstractWordWriter - replacing hyperlink [297440 - 297461] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:53,533 [main] TRACE AbstractWordWriter - replacing hyperlink [297592 - 297629] HYPERLINK SVPublisherAssociationIP, UML119... +2024-09-07 21:59:53,587 [main] TRACE AbstractWordWriter - replacing hyperlink [297800 - 297837] HYPERLINK SVPublisherAssociationL2, UML120... +2024-09-07 21:59:53,642 [main] TRACE AbstractWordWriter - replacing hyperlink [298033 - 298060] HYPERLINK SVNotification, UML130... +2024-09-07 21:59:53,700 [main] TRACE AbstractWordWriter - replacing hyperlink [298147 - 298184] HYPERLINK SVSubcriberAssociationIP, UML124... +2024-09-07 21:59:53,763 [main] TRACE AbstractWordWriter - replacing hyperlink [298356 - 298393] HYPERLINK SVSubcriberAssociationL2, UML125... +2024-09-07 21:59:53,822 [main] TRACE AbstractWordWriter - replacing hyperlink [298587 - 298608] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:53,879 [main] TRACE AbstractWordWriter - replacing hyperlink [298663 - 298690] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:59:53,935 [main] TRACE AbstractWordWriter - replacing hyperlink [298741 - 298762] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:53,990 [main] TRACE AbstractWordWriter - replacing hyperlink [298817 - 298844] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:59:54,045 [main] TRACE AbstractWordWriter - replacing hyperlink [298901 - 298922] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:54,101 [main] TRACE AbstractWordWriter - replacing hyperlink [298977 - 299004] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:59:54,156 [main] TRACE AbstractWordWriter - replacing hyperlink [299548 - 299571] HYPERLINK InetAddress, UML65... +2024-09-07 21:59:54,211 [main] TRACE AbstractWordWriter - replacing hyperlink [299654 - 299681] HYPERLINK InetAddressType, UML64... +2024-09-07 21:59:54,266 [main] TRACE AbstractWordWriter - replacing hyperlink [299762 - 299784] HYPERLINK CharString, UML59... +2024-09-07 21:59:54,320 [main] TRACE AbstractWordWriter - replacing hyperlink [299837 - 299878] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 21:59:54,378 [main] TRACE AbstractWordWriter - replacing hyperlink [299934 - 299951] HYPERLINK CntRs, UML67... +2024-09-07 21:59:54,433 [main] TRACE AbstractWordWriter - replacing hyperlink [300002 - 300043] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 21:59:54,489 [main] TRACE AbstractWordWriter - replacing hyperlink [300099 - 300120] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:54,545 [main] TRACE AbstractWordWriter - replacing hyperlink [300175 - 300216] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 21:59:54,602 [main] TRACE AbstractWordWriter - replacing hyperlink [300272 - 300294] HYPERLINK CharString, UML59... +2024-09-07 21:59:54,657 [main] TRACE AbstractWordWriter - replacing hyperlink [300350 - 300391] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 21:59:54,713 [main] TRACE AbstractWordWriter - replacing hyperlink [300456 - 300476] HYPERLINK Floating, UML56... +2024-09-07 21:59:54,768 [main] TRACE AbstractWordWriter - replacing hyperlink [300530 - 300571] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 21:59:54,828 [main] TRACE AbstractWordWriter - replacing hyperlink [300639 - 300660] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:54,887 [main] TRACE AbstractWordWriter - replacing hyperlink [300715 - 300742] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:59:54,945 [main] TRACE AbstractWordWriter - replacing hyperlink [300793 - 300814] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:54,999 [main] TRACE AbstractWordWriter - replacing hyperlink [300869 - 300896] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:59:55,054 [main] TRACE AbstractWordWriter - replacing hyperlink [300953 - 300974] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:55,108 [main] TRACE AbstractWordWriter - replacing hyperlink [301029 - 301056] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:59:55,164 [main] TRACE AbstractWordWriter - replacing hyperlink [301608 - 301630] HYPERLINK MacAddress, UML63... +2024-09-07 21:59:55,218 [main] TRACE AbstractWordWriter - replacing hyperlink [301758 - 301780] HYPERLINK CharString, UML59... +2024-09-07 21:59:55,272 [main] TRACE AbstractWordWriter - replacing hyperlink [301833 - 301874] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 21:59:55,327 [main] TRACE AbstractWordWriter - replacing hyperlink [301930 - 301947] HYPERLINK CntRs, UML67... +2024-09-07 21:59:55,391 [main] TRACE AbstractWordWriter - replacing hyperlink [301998 - 302039] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 21:59:55,447 [main] TRACE AbstractWordWriter - replacing hyperlink [302095 - 302116] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:55,502 [main] TRACE AbstractWordWriter - replacing hyperlink [302171 - 302212] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 21:59:55,559 [main] TRACE AbstractWordWriter - replacing hyperlink [302268 - 302290] HYPERLINK CharString, UML59... +2024-09-07 21:59:55,614 [main] TRACE AbstractWordWriter - replacing hyperlink [302346 - 302387] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 21:59:55,670 [main] TRACE AbstractWordWriter - replacing hyperlink [302452 - 302472] HYPERLINK Floating, UML56... +2024-09-07 21:59:55,726 [main] TRACE AbstractWordWriter - replacing hyperlink [302526 - 302567] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 21:59:55,782 [main] TRACE AbstractWordWriter - replacing hyperlink [302635 - 302656] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:55,836 [main] TRACE AbstractWordWriter - replacing hyperlink [302711 - 302738] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:59:55,898 [main] TRACE AbstractWordWriter - replacing hyperlink [302789 - 302810] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:55,955 [main] TRACE AbstractWordWriter - replacing hyperlink [302865 - 302892] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:59:56,012 [main] TRACE AbstractWordWriter - replacing hyperlink [302949 - 302970] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:56,066 [main] TRACE AbstractWordWriter - replacing hyperlink [303025 - 303052] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:59:56,120 [main] TRACE AbstractWordWriter - replacing hyperlink [303595 - 303618] HYPERLINK InetAddress, UML65... +2024-09-07 21:59:56,176 [main] TRACE AbstractWordWriter - replacing hyperlink [303695 - 303722] HYPERLINK InetAddressType, UML64... +2024-09-07 21:59:56,230 [main] TRACE AbstractWordWriter - replacing hyperlink [303803 - 303825] HYPERLINK CharString, UML59... +2024-09-07 21:59:56,283 [main] TRACE AbstractWordWriter - replacing hyperlink [303878 - 303920] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:59:56,342 [main] TRACE AbstractWordWriter - replacing hyperlink [303977 - 303994] HYPERLINK CntRs, UML67... +2024-09-07 21:59:56,398 [main] TRACE AbstractWordWriter - replacing hyperlink [304045 - 304087] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:59:56,453 [main] TRACE AbstractWordWriter - replacing hyperlink [304146 - 304167] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:56,510 [main] TRACE AbstractWordWriter - replacing hyperlink [304222 - 304264] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:59:56,565 [main] TRACE AbstractWordWriter - replacing hyperlink [304339 - 304360] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:56,621 [main] TRACE AbstractWordWriter - replacing hyperlink [304415 - 304457] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:59:56,677 [main] TRACE AbstractWordWriter - replacing hyperlink [304523 - 304543] HYPERLINK Floating, UML56... +2024-09-07 21:59:56,734 [main] TRACE AbstractWordWriter - replacing hyperlink [304597 - 304639] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:59:56,793 [main] TRACE AbstractWordWriter - replacing hyperlink [304696 - 304718] HYPERLINK CharString, UML59... +2024-09-07 21:59:56,848 [main] TRACE AbstractWordWriter - replacing hyperlink [304774 - 304816] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:59:56,904 [main] TRACE AbstractWordWriter - replacing hyperlink [304875 - 304899] HYPERLINK CharStringTs, UML60... +2024-09-07 21:59:56,967 [main] TRACE AbstractWordWriter - replacing hyperlink [304957 - 304999] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:59:57,023 [main] TRACE AbstractWordWriter - replacing hyperlink [305068 - 305089] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:57,078 [main] TRACE AbstractWordWriter - replacing hyperlink [305144 - 305171] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:59:57,133 [main] TRACE AbstractWordWriter - replacing hyperlink [305222 - 305243] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:57,220 [main] TRACE AbstractWordWriter - replacing hyperlink [305298 - 305325] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:59:57,276 [main] TRACE AbstractWordWriter - replacing hyperlink [305382 - 305403] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:57,330 [main] TRACE AbstractWordWriter - replacing hyperlink [305458 - 305485] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:59:57,391 [main] TRACE AbstractWordWriter - replacing hyperlink [306036 - 306058] HYPERLINK MacAddress, UML63... +2024-09-07 21:59:57,449 [main] TRACE AbstractWordWriter - replacing hyperlink [306186 - 306208] HYPERLINK CharString, UML59... +2024-09-07 21:59:57,504 [main] TRACE AbstractWordWriter - replacing hyperlink [306261 - 306303] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:59:57,562 [main] TRACE AbstractWordWriter - replacing hyperlink [306360 - 306377] HYPERLINK CntRs, UML67... +2024-09-07 21:59:57,618 [main] TRACE AbstractWordWriter - replacing hyperlink [306428 - 306470] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:59:57,675 [main] TRACE AbstractWordWriter - replacing hyperlink [306529 - 306550] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:57,731 [main] TRACE AbstractWordWriter - replacing hyperlink [306605 - 306647] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:59:57,786 [main] TRACE AbstractWordWriter - replacing hyperlink [306722 - 306743] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:57,842 [main] TRACE AbstractWordWriter - replacing hyperlink [306798 - 306840] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:59:57,897 [main] TRACE AbstractWordWriter - replacing hyperlink [306906 - 306926] HYPERLINK Floating, UML56... +2024-09-07 21:59:57,953 [main] TRACE AbstractWordWriter - replacing hyperlink [306980 - 307022] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:59:58,016 [main] TRACE AbstractWordWriter - replacing hyperlink [307079 - 307101] HYPERLINK CharString, UML59... +2024-09-07 21:59:58,076 [main] TRACE AbstractWordWriter - replacing hyperlink [307157 - 307199] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:59:58,131 [main] TRACE AbstractWordWriter - replacing hyperlink [307258 - 307282] HYPERLINK CharStringTs, UML60... +2024-09-07 21:59:58,188 [main] TRACE AbstractWordWriter - replacing hyperlink [307340 - 307382] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:59:58,245 [main] TRACE AbstractWordWriter - replacing hyperlink [307451 - 307472] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:58,299 [main] TRACE AbstractWordWriter - replacing hyperlink [307527 - 307554] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:59:58,358 [main] TRACE AbstractWordWriter - replacing hyperlink [307605 - 307626] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:58,412 [main] TRACE AbstractWordWriter - replacing hyperlink [307681 - 307708] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:59:58,467 [main] TRACE AbstractWordWriter - replacing hyperlink [307765 - 307786] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:58,524 [main] TRACE AbstractWordWriter - replacing hyperlink [307841 - 307868] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:59:58,580 [main] TRACE AbstractWordWriter - replacing hyperlink [308262 - 308283] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:58,637 [main] TRACE AbstractWordWriter - replacing hyperlink [308338 - 308365] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:59:58,693 [main] TRACE AbstractWordWriter - replacing hyperlink [308416 - 308437] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:58,749 [main] TRACE AbstractWordWriter - replacing hyperlink [308492 - 308519] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:59:58,806 [main] TRACE AbstractWordWriter - replacing hyperlink [308576 - 308597] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:58,860 [main] TRACE AbstractWordWriter - replacing hyperlink [308652 - 308679] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 21:59:58,916 [main] TRACE AbstractWordWriter - replacing hyperlink [309556 - 309580] HYPERLINK BooleanValue, UML52... +2024-09-07 21:59:58,972 [main] TRACE AbstractWordWriter - replacing hyperlink [309724 - 309748] HYPERLINK BooleanValue, UML52... +2024-09-07 21:59:59,027 [main] TRACE AbstractWordWriter - replacing hyperlink [309829 - 309848] HYPERLINK Integer, UML53... +2024-09-07 21:59:59,091 [main] TRACE AbstractWordWriter - replacing hyperlink [309942 - 309963] HYPERLINK IntegerTs, UML58... +2024-09-07 21:59:59,149 [main] TRACE AbstractWordWriter - replacing hyperlink [310106 - 310127] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:59,204 [main] TRACE AbstractWordWriter - replacing hyperlink [310242 - 310263] HYPERLINK CounterTs, UML55... +2024-09-07 21:59:59,259 [main] TRACE AbstractWordWriter - replacing hyperlink [310374 - 310400] HYPERLINK BooleanValueTs, UML54... +2024-09-07 21:59:59,314 [main] TRACE AbstractWordWriter - replacing hyperlink [310721 - 310743] HYPERLINK CharString, UML59... +2024-09-07 21:59:59,377 [main] TRACE AbstractWordWriter - replacing hyperlink [310795 - 310819] HYPERLINK CharStringTs, UML60... +2024-09-07 21:59:59,432 [main] TRACE AbstractWordWriter - replacing hyperlink [310869 - 310891] HYPERLINK CharString, UML59... +2024-09-07 21:59:59,488 [main] TRACE AbstractWordWriter - replacing hyperlink [310974 - 310998] HYPERLINK CharStringTs, UML60... +2024-09-07 21:59:59,543 [main] TRACE AbstractWordWriter - replacing hyperlink [311087 - 311108] HYPERLINK IntegerTs, UML58... +2024-09-07 21:59:59,602 [main] TRACE AbstractWordWriter - replacing hyperlink [311211 - 311232] HYPERLINK IntegerTs, UML58... +2024-09-07 21:59:59,664 [main] TRACE AbstractWordWriter - replacing hyperlink [311341 - 311362] HYPERLINK IntegerTs, UML58... +2024-09-07 21:59:59,720 [main] TRACE AbstractWordWriter - replacing hyperlink [311443 - 311464] HYPERLINK IntegerTs, UML58... +2024-09-07 21:59:59,776 [main] TRACE AbstractWordWriter - replacing hyperlink [311537 - 311558] HYPERLINK Timestamp, UML61... +2024-09-07 21:59:59,832 [main] TRACE AbstractWordWriter - replacing hyperlink [311606 - 311628] HYPERLINK CharString, UML59... +2024-09-07 21:59:59,886 [main] TRACE AbstractWordWriter - replacing hyperlink [311681 - 311723] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 21:59:59,941 [main] TRACE AbstractWordWriter - replacing hyperlink [311780 - 311797] HYPERLINK CntRs, UML67... +2024-09-07 21:59:59,998 [main] TRACE AbstractWordWriter - replacing hyperlink [311848 - 311890] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 22:00:00,060 [main] TRACE AbstractWordWriter - replacing hyperlink [311949 - 311970] HYPERLINK CounterTs, UML55... +2024-09-07 22:00:00,116 [main] TRACE AbstractWordWriter - replacing hyperlink [312025 - 312067] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 22:00:00,187 [main] TRACE AbstractWordWriter - replacing hyperlink [312142 - 312163] HYPERLINK CounterTs, UML55... +2024-09-07 22:00:00,242 [main] TRACE AbstractWordWriter - replacing hyperlink [312218 - 312260] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 22:00:00,302 [main] TRACE AbstractWordWriter - replacing hyperlink [312326 - 312346] HYPERLINK Floating, UML56... +2024-09-07 22:00:00,361 [main] TRACE AbstractWordWriter - replacing hyperlink [312400 - 312442] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 22:00:00,416 [main] TRACE AbstractWordWriter - replacing hyperlink [312499 - 312521] HYPERLINK CharString, UML59... +2024-09-07 22:00:00,472 [main] TRACE AbstractWordWriter - replacing hyperlink [312577 - 312619] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 22:00:00,527 [main] TRACE AbstractWordWriter - replacing hyperlink [312678 - 312702] HYPERLINK CharStringTs, UML60... +2024-09-07 22:00:00,584 [main] TRACE AbstractWordWriter - replacing hyperlink [312760 - 312802] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 22:00:00,639 [main] TRACE AbstractWordWriter - replacing hyperlink [312871 - 312892] HYPERLINK CounterTs, UML55... +2024-09-07 22:00:00,696 [main] TRACE AbstractWordWriter - replacing hyperlink [312947 - 312974] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 22:00:00,752 [main] TRACE AbstractWordWriter - replacing hyperlink [313025 - 313046] HYPERLINK CounterTs, UML55... +2024-09-07 22:00:00,808 [main] TRACE AbstractWordWriter - replacing hyperlink [313101 - 313128] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 22:00:00,864 [main] TRACE AbstractWordWriter - replacing hyperlink [313185 - 313206] HYPERLINK CounterTs, UML55... +2024-09-07 22:00:00,919 [main] TRACE AbstractWordWriter - replacing hyperlink [313261 - 313288] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 22:00:00,974 [main] TRACE AbstractWordWriter - replacing hyperlink [313677 - 313694] HYPERLINK CntRs, UML67... +2024-09-07 22:00:01,030 [main] TRACE AbstractWordWriter - replacing hyperlink [313779 - 313800] HYPERLINK CounterTs, UML55... +2024-09-07 22:00:01,086 [main] TRACE AbstractWordWriter - replacing hyperlink [313903 - 313924] HYPERLINK CounterTs, UML55... +2024-09-07 22:00:01,146 [main] TRACE AbstractWordWriter - replacing hyperlink [314099 - 314120] HYPERLINK CounterTs, UML55... +2024-09-07 22:00:01,212 [main] TRACE AbstractWordWriter - replacing hyperlink [314240 - 314278] HYPERLINK GSEPublisherAssociationIP, UML121... +2024-09-07 22:00:01,286 [main] TRACE AbstractWordWriter - replacing hyperlink [314451 - 314489] HYPERLINK GSEPublisherAssociationL2, UML122... +2024-09-07 22:00:01,345 [main] TRACE AbstractWordWriter - replacing hyperlink [314687 - 314715] HYPERLINK GSENotification, UML132... +2024-09-07 22:00:01,403 [main] TRACE AbstractWordWriter - replacing hyperlink [314803 - 314841] HYPERLINK GSESubcriberAssociationIP, UML127... +2024-09-07 22:00:01,457 [main] TRACE AbstractWordWriter - replacing hyperlink [315015 - 315053] HYPERLINK GSESubcriberAssociationL2, UML128... +2024-09-07 22:00:01,512 [main] TRACE AbstractWordWriter - replacing hyperlink [315249 - 315270] HYPERLINK CounterTs, UML55... +2024-09-07 22:00:01,568 [main] TRACE AbstractWordWriter - replacing hyperlink [315325 - 315352] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 22:00:01,622 [main] TRACE AbstractWordWriter - replacing hyperlink [315403 - 315424] HYPERLINK CounterTs, UML55... +2024-09-07 22:00:01,680 [main] TRACE AbstractWordWriter - replacing hyperlink [315479 - 315506] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 22:00:01,734 [main] TRACE AbstractWordWriter - replacing hyperlink [315563 - 315584] HYPERLINK CounterTs, UML55... +2024-09-07 22:00:01,800 [main] TRACE AbstractWordWriter - replacing hyperlink [315639 - 315666] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 22:00:01,856 [main] TRACE AbstractWordWriter - replacing hyperlink [316215 - 316238] HYPERLINK InetAddress, UML65... +2024-09-07 22:00:01,912 [main] TRACE AbstractWordWriter - replacing hyperlink [316321 - 316348] HYPERLINK InetAddressType, UML64... +2024-09-07 22:00:01,968 [main] TRACE AbstractWordWriter - replacing hyperlink [316429 - 316451] HYPERLINK CharString, UML59... +2024-09-07 22:00:02,022 [main] TRACE AbstractWordWriter - replacing hyperlink [316504 - 316545] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 22:00:02,079 [main] TRACE AbstractWordWriter - replacing hyperlink [316601 - 316618] HYPERLINK CntRs, UML67... +2024-09-07 22:00:02,136 [main] TRACE AbstractWordWriter - replacing hyperlink [316669 - 316710] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 22:00:02,195 [main] TRACE AbstractWordWriter - replacing hyperlink [316766 - 316787] HYPERLINK CounterTs, UML55... +2024-09-07 22:00:02,251 [main] TRACE AbstractWordWriter - replacing hyperlink [316842 - 316883] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 22:00:02,318 [main] TRACE AbstractWordWriter - replacing hyperlink [316939 - 316961] HYPERLINK CharString, UML59... +2024-09-07 22:00:02,379 [main] TRACE AbstractWordWriter - replacing hyperlink [317017 - 317058] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 22:00:02,434 [main] TRACE AbstractWordWriter - replacing hyperlink [317123 - 317143] HYPERLINK Floating, UML56... +2024-09-07 22:00:02,488 [main] TRACE AbstractWordWriter - replacing hyperlink [317197 - 317238] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 22:00:02,573 [main] TRACE AbstractWordWriter - replacing hyperlink [317306 - 317327] HYPERLINK CounterTs, UML55... +2024-09-07 22:00:02,629 [main] TRACE AbstractWordWriter - replacing hyperlink [317382 - 317409] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 22:00:02,684 [main] TRACE AbstractWordWriter - replacing hyperlink [317460 - 317481] HYPERLINK CounterTs, UML55... +2024-09-07 22:00:02,740 [main] TRACE AbstractWordWriter - replacing hyperlink [317536 - 317563] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 22:00:02,796 [main] TRACE AbstractWordWriter - replacing hyperlink [317620 - 317641] HYPERLINK CounterTs, UML55... +2024-09-07 22:00:02,852 [main] TRACE AbstractWordWriter - replacing hyperlink [317696 - 317723] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 22:00:02,908 [main] TRACE AbstractWordWriter - replacing hyperlink [318280 - 318302] HYPERLINK MacAddress, UML63... +2024-09-07 22:00:02,965 [main] TRACE AbstractWordWriter - replacing hyperlink [318435 - 318457] HYPERLINK MacAddress, UML63... +2024-09-07 22:00:03,021 [main] TRACE AbstractWordWriter - replacing hyperlink [318585 - 318607] HYPERLINK CharString, UML59... +2024-09-07 22:00:03,077 [main] TRACE AbstractWordWriter - replacing hyperlink [318660 - 318701] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 22:00:03,134 [main] TRACE AbstractWordWriter - replacing hyperlink [318757 - 318774] HYPERLINK CntRs, UML67... +2024-09-07 22:00:03,190 [main] TRACE AbstractWordWriter - replacing hyperlink [318825 - 318866] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 22:00:03,246 [main] TRACE AbstractWordWriter - replacing hyperlink [318922 - 318943] HYPERLINK CounterTs, UML55... +2024-09-07 22:00:03,302 [main] TRACE AbstractWordWriter - replacing hyperlink [318998 - 319039] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 22:00:03,369 [main] TRACE AbstractWordWriter - replacing hyperlink [319095 - 319117] HYPERLINK CharString, UML59... +2024-09-07 22:00:03,426 [main] TRACE AbstractWordWriter - replacing hyperlink [319173 - 319214] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 22:00:03,480 [main] TRACE AbstractWordWriter - replacing hyperlink [319279 - 319299] HYPERLINK Floating, UML56... +2024-09-07 22:00:03,537 [main] TRACE AbstractWordWriter - replacing hyperlink [319353 - 319394] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-07 22:00:03,594 [main] TRACE AbstractWordWriter - replacing hyperlink [319462 - 319483] HYPERLINK CounterTs, UML55... +2024-09-07 22:00:03,650 [main] TRACE AbstractWordWriter - replacing hyperlink [319538 - 319565] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 22:00:03,707 [main] TRACE AbstractWordWriter - replacing hyperlink [319616 - 319637] HYPERLINK CounterTs, UML55... +2024-09-07 22:00:03,761 [main] TRACE AbstractWordWriter - replacing hyperlink [319692 - 319719] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 22:00:03,817 [main] TRACE AbstractWordWriter - replacing hyperlink [319776 - 319797] HYPERLINK CounterTs, UML55... +2024-09-07 22:00:03,874 [main] TRACE AbstractWordWriter - replacing hyperlink [319852 - 319879] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 22:00:03,931 [main] TRACE AbstractWordWriter - replacing hyperlink [320427 - 320450] HYPERLINK InetAddress, UML65... +2024-09-07 22:00:03,988 [main] TRACE AbstractWordWriter - replacing hyperlink [320529 - 320556] HYPERLINK InetAddressType, UML64... +2024-09-07 22:00:04,043 [main] TRACE AbstractWordWriter - replacing hyperlink [320642 - 320666] HYPERLINK BooleanValue, UML52... +2024-09-07 22:00:04,101 [main] TRACE AbstractWordWriter - replacing hyperlink [320724 - 320761] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 22:00:04,159 [main] TRACE AbstractWordWriter - replacing hyperlink [320815 - 320839] HYPERLINK BooleanValue, UML52... +2024-09-07 22:00:04,215 [main] TRACE AbstractWordWriter - replacing hyperlink [320897 - 320934] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 22:00:04,272 [main] TRACE AbstractWordWriter - replacing hyperlink [320988 - 321007] HYPERLINK Integer, UML53... +2024-09-07 22:00:04,329 [main] TRACE AbstractWordWriter - replacing hyperlink [321060 - 321097] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 22:00:04,395 [main] TRACE AbstractWordWriter - replacing hyperlink [321153 - 321174] HYPERLINK IntegerTs, UML58... +2024-09-07 22:00:04,459 [main] TRACE AbstractWordWriter - replacing hyperlink [321229 - 321266] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 22:00:04,514 [main] TRACE AbstractWordWriter - replacing hyperlink [321322 - 321343] HYPERLINK CounterTs, UML55... +2024-09-07 22:00:04,570 [main] TRACE AbstractWordWriter - replacing hyperlink [321398 - 321435] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 22:00:04,627 [main] TRACE AbstractWordWriter - replacing hyperlink [321491 - 321512] HYPERLINK CounterTs, UML55... +2024-09-07 22:00:04,683 [main] TRACE AbstractWordWriter - replacing hyperlink [321567 - 321604] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 22:00:04,742 [main] TRACE AbstractWordWriter - replacing hyperlink [321659 - 321685] HYPERLINK BooleanValueTs, UML54... +2024-09-07 22:00:04,798 [main] TRACE AbstractWordWriter - replacing hyperlink [321745 - 321782] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 22:00:04,857 [main] TRACE AbstractWordWriter - replacing hyperlink [321835 - 321857] HYPERLINK CharString, UML59... +2024-09-07 22:00:04,912 [main] TRACE AbstractWordWriter - replacing hyperlink [321913 - 321950] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 22:00:04,968 [main] TRACE AbstractWordWriter - replacing hyperlink [322005 - 322029] HYPERLINK CharStringTs, UML60... +2024-09-07 22:00:05,025 [main] TRACE AbstractWordWriter - replacing hyperlink [322087 - 322124] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 22:00:05,081 [main] TRACE AbstractWordWriter - replacing hyperlink [322175 - 322197] HYPERLINK CharString, UML59... +2024-09-07 22:00:05,138 [main] TRACE AbstractWordWriter - replacing hyperlink [322253 - 322290] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 22:00:05,193 [main] TRACE AbstractWordWriter - replacing hyperlink [322343 - 322367] HYPERLINK CharStringTs, UML60... +2024-09-07 22:00:05,252 [main] TRACE AbstractWordWriter - replacing hyperlink [322425 - 322462] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 22:00:05,309 [main] TRACE AbstractWordWriter - replacing hyperlink [322514 - 322535] HYPERLINK IntegerTs, UML58... +2024-09-07 22:00:05,370 [main] TRACE AbstractWordWriter - replacing hyperlink [322590 - 322627] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 22:00:05,424 [main] TRACE AbstractWordWriter - replacing hyperlink [322679 - 322700] HYPERLINK IntegerTs, UML58... +2024-09-07 22:00:05,483 [main] TRACE AbstractWordWriter - replacing hyperlink [322755 - 322792] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 22:00:05,541 [main] TRACE AbstractWordWriter - replacing hyperlink [322850 - 322871] HYPERLINK IntegerTs, UML58... +2024-09-07 22:00:05,598 [main] TRACE AbstractWordWriter - replacing hyperlink [322926 - 322963] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 22:00:05,659 [main] TRACE AbstractWordWriter - replacing hyperlink [323021 - 323042] HYPERLINK IntegerTs, UML58... +2024-09-07 22:00:05,716 [main] TRACE AbstractWordWriter - replacing hyperlink [323097 - 323134] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 22:00:05,775 [main] TRACE AbstractWordWriter - replacing hyperlink [323184 - 323205] HYPERLINK Timestamp, UML61... +2024-09-07 22:00:05,832 [main] TRACE AbstractWordWriter - replacing hyperlink [323260 - 323297] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 22:00:05,889 [main] TRACE AbstractWordWriter - replacing hyperlink [323349 - 323371] HYPERLINK CharString, UML59... +2024-09-07 22:00:05,945 [main] TRACE AbstractWordWriter - replacing hyperlink [323424 - 323466] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 22:00:06,003 [main] TRACE AbstractWordWriter - replacing hyperlink [323523 - 323540] HYPERLINK CntRs, UML67... +2024-09-07 22:00:06,058 [main] TRACE AbstractWordWriter - replacing hyperlink [323591 - 323633] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 22:00:06,114 [main] TRACE AbstractWordWriter - replacing hyperlink [323692 - 323713] HYPERLINK CounterTs, UML55... +2024-09-07 22:00:06,169 [main] TRACE AbstractWordWriter - replacing hyperlink [323768 - 323810] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 22:00:06,226 [main] TRACE AbstractWordWriter - replacing hyperlink [323885 - 323906] HYPERLINK CounterTs, UML55... +2024-09-07 22:00:06,283 [main] TRACE AbstractWordWriter - replacing hyperlink [323961 - 324003] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 22:00:06,342 [main] TRACE AbstractWordWriter - replacing hyperlink [324069 - 324089] HYPERLINK Floating, UML56... +2024-09-07 22:00:06,401 [main] TRACE AbstractWordWriter - replacing hyperlink [324143 - 324185] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 22:00:06,457 [main] TRACE AbstractWordWriter - replacing hyperlink [324242 - 324264] HYPERLINK CharString, UML59... +2024-09-07 22:00:06,515 [main] TRACE AbstractWordWriter - replacing hyperlink [324320 - 324362] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 22:00:06,580 [main] TRACE AbstractWordWriter - replacing hyperlink [324421 - 324445] HYPERLINK CharStringTs, UML60... +2024-09-07 22:00:06,638 [main] TRACE AbstractWordWriter - replacing hyperlink [324503 - 324545] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 22:00:06,693 [main] TRACE AbstractWordWriter - replacing hyperlink [324614 - 324635] HYPERLINK CounterTs, UML55... +2024-09-07 22:00:06,750 [main] TRACE AbstractWordWriter - replacing hyperlink [324690 - 324717] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 22:00:06,808 [main] TRACE AbstractWordWriter - replacing hyperlink [324768 - 324789] HYPERLINK CounterTs, UML55... +2024-09-07 22:00:06,865 [main] TRACE AbstractWordWriter - replacing hyperlink [324844 - 324871] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 22:00:06,922 [main] TRACE AbstractWordWriter - replacing hyperlink [324928 - 324949] HYPERLINK CounterTs, UML55... +2024-09-07 22:00:06,978 [main] TRACE AbstractWordWriter - replacing hyperlink [325004 - 325031] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 22:00:07,036 [main] TRACE AbstractWordWriter - replacing hyperlink [325587 - 325609] HYPERLINK MacAddress, UML63... +2024-09-07 22:00:07,093 [main] TRACE AbstractWordWriter - replacing hyperlink [325742 - 325764] HYPERLINK MacAddress, UML63... +2024-09-07 22:00:07,150 [main] TRACE AbstractWordWriter - replacing hyperlink [325897 - 325921] HYPERLINK BooleanValue, UML52... +2024-09-07 22:00:07,206 [main] TRACE AbstractWordWriter - replacing hyperlink [325979 - 326016] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 22:00:07,264 [main] TRACE AbstractWordWriter - replacing hyperlink [326070 - 326094] HYPERLINK BooleanValue, UML52... +2024-09-07 22:00:07,320 [main] TRACE AbstractWordWriter - replacing hyperlink [326152 - 326189] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 22:00:07,379 [main] TRACE AbstractWordWriter - replacing hyperlink [326243 - 326262] HYPERLINK Integer, UML53... +2024-09-07 22:00:07,437 [main] TRACE AbstractWordWriter - replacing hyperlink [326315 - 326352] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 22:00:07,492 [main] TRACE AbstractWordWriter - replacing hyperlink [326408 - 326429] HYPERLINK IntegerTs, UML58... +2024-09-07 22:00:07,549 [main] TRACE AbstractWordWriter - replacing hyperlink [326484 - 326521] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 22:00:07,659 [main] TRACE AbstractWordWriter - replacing hyperlink [326577 - 326598] HYPERLINK CounterTs, UML55... +2024-09-07 22:00:07,718 [main] TRACE AbstractWordWriter - replacing hyperlink [326653 - 326690] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 22:00:07,774 [main] TRACE AbstractWordWriter - replacing hyperlink [326746 - 326767] HYPERLINK CounterTs, UML55... +2024-09-07 22:00:07,830 [main] TRACE AbstractWordWriter - replacing hyperlink [326822 - 326859] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 22:00:07,888 [main] TRACE AbstractWordWriter - replacing hyperlink [326914 - 326940] HYPERLINK BooleanValueTs, UML54... +2024-09-07 22:00:07,944 [main] TRACE AbstractWordWriter - replacing hyperlink [327000 - 327037] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 22:00:08,001 [main] TRACE AbstractWordWriter - replacing hyperlink [327090 - 327112] HYPERLINK CharString, UML59... +2024-09-07 22:00:08,057 [main] TRACE AbstractWordWriter - replacing hyperlink [327168 - 327205] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 22:00:08,115 [main] TRACE AbstractWordWriter - replacing hyperlink [327260 - 327284] HYPERLINK CharStringTs, UML60... +2024-09-07 22:00:08,171 [main] TRACE AbstractWordWriter - replacing hyperlink [327342 - 327379] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 22:00:08,231 [main] TRACE AbstractWordWriter - replacing hyperlink [327430 - 327452] HYPERLINK CharString, UML59... +2024-09-07 22:00:08,287 [main] TRACE AbstractWordWriter - replacing hyperlink [327508 - 327545] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 22:00:08,344 [main] TRACE AbstractWordWriter - replacing hyperlink [327598 - 327622] HYPERLINK CharStringTs, UML60... +2024-09-07 22:00:08,405 [main] TRACE AbstractWordWriter - replacing hyperlink [327680 - 327717] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 22:00:08,462 [main] TRACE AbstractWordWriter - replacing hyperlink [327769 - 327790] HYPERLINK IntegerTs, UML58... +2024-09-07 22:00:08,518 [main] TRACE AbstractWordWriter - replacing hyperlink [327845 - 327882] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 22:00:08,574 [main] TRACE AbstractWordWriter - replacing hyperlink [327934 - 327955] HYPERLINK IntegerTs, UML58... +2024-09-07 22:00:08,636 [main] TRACE AbstractWordWriter - replacing hyperlink [328010 - 328047] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 22:00:08,699 [main] TRACE AbstractWordWriter - replacing hyperlink [328105 - 328126] HYPERLINK IntegerTs, UML58... +2024-09-07 22:00:08,758 [main] TRACE AbstractWordWriter - replacing hyperlink [328181 - 328218] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 22:00:08,816 [main] TRACE AbstractWordWriter - replacing hyperlink [328276 - 328297] HYPERLINK IntegerTs, UML58... +2024-09-07 22:00:08,871 [main] TRACE AbstractWordWriter - replacing hyperlink [328352 - 328389] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 22:00:08,931 [main] TRACE AbstractWordWriter - replacing hyperlink [328439 - 328460] HYPERLINK Timestamp, UML61... +2024-09-07 22:00:08,986 [main] TRACE AbstractWordWriter - replacing hyperlink [328515 - 328552] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-07 22:00:09,044 [main] TRACE AbstractWordWriter - replacing hyperlink [328604 - 328626] HYPERLINK CharString, UML59... +2024-09-07 22:00:09,101 [main] TRACE AbstractWordWriter - replacing hyperlink [328679 - 328721] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 22:00:09,157 [main] TRACE AbstractWordWriter - replacing hyperlink [328778 - 328795] HYPERLINK CntRs, UML67... +2024-09-07 22:00:09,214 [main] TRACE AbstractWordWriter - replacing hyperlink [328846 - 328888] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 22:00:09,271 [main] TRACE AbstractWordWriter - replacing hyperlink [328947 - 328968] HYPERLINK CounterTs, UML55... +2024-09-07 22:00:09,326 [main] TRACE AbstractWordWriter - replacing hyperlink [329023 - 329065] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 22:00:09,389 [main] TRACE AbstractWordWriter - replacing hyperlink [329140 - 329161] HYPERLINK CounterTs, UML55... +2024-09-07 22:00:09,447 [main] TRACE AbstractWordWriter - replacing hyperlink [329216 - 329258] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 22:00:09,503 [main] TRACE AbstractWordWriter - replacing hyperlink [329324 - 329344] HYPERLINK Floating, UML56... +2024-09-07 22:00:09,559 [main] TRACE AbstractWordWriter - replacing hyperlink [329398 - 329440] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 22:00:09,615 [main] TRACE AbstractWordWriter - replacing hyperlink [329497 - 329519] HYPERLINK CharString, UML59... +2024-09-07 22:00:09,672 [main] TRACE AbstractWordWriter - replacing hyperlink [329575 - 329617] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 22:00:09,730 [main] TRACE AbstractWordWriter - replacing hyperlink [329676 - 329700] HYPERLINK CharStringTs, UML60... +2024-09-07 22:00:09,800 [main] TRACE AbstractWordWriter - replacing hyperlink [329758 - 329800] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-07 22:00:09,856 [main] TRACE AbstractWordWriter - replacing hyperlink [329869 - 329890] HYPERLINK CounterTs, UML55... +2024-09-07 22:00:09,913 [main] TRACE AbstractWordWriter - replacing hyperlink [329945 - 329972] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 22:00:09,968 [main] TRACE AbstractWordWriter - replacing hyperlink [330023 - 330044] HYPERLINK CounterTs, UML55... +2024-09-07 22:00:10,025 [main] TRACE AbstractWordWriter - replacing hyperlink [330099 - 330126] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 22:00:10,080 [main] TRACE AbstractWordWriter - replacing hyperlink [330183 - 330204] HYPERLINK CounterTs, UML55... +2024-09-07 22:00:10,137 [main] TRACE AbstractWordWriter - replacing hyperlink [330259 - 330286] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 22:00:10,192 [main] TRACE AbstractWordWriter - replacing hyperlink [330684 - 330705] HYPERLINK CounterTs, UML55... +2024-09-07 22:00:10,250 [main] TRACE AbstractWordWriter - replacing hyperlink [330760 - 330787] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 22:00:10,307 [main] TRACE AbstractWordWriter - replacing hyperlink [330838 - 330859] HYPERLINK CounterTs, UML55... +2024-09-07 22:00:10,364 [main] TRACE AbstractWordWriter - replacing hyperlink [330914 - 330941] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 22:00:10,424 [main] TRACE AbstractWordWriter - replacing hyperlink [330998 - 331019] HYPERLINK CounterTs, UML55... +2024-09-07 22:00:10,481 [main] TRACE AbstractWordWriter - replacing hyperlink [331074 - 331101] HYPERLINK GSEandSVCommon, UML117... +2024-09-07 22:00:10,538 [main] TRACE AbstractWordWriter - replacing hyperlink [331839 - 331862] HYPERLINK EntityIndex, UML66... +2024-09-07 22:00:10,596 [main] TRACE AbstractWordWriter - replacing hyperlink [331926 - 331948] HYPERLINK CharString, UML59... +2024-09-07 22:00:10,653 [main] TRACE AbstractWordWriter - replacing hyperlink [332023 - 332042] HYPERLINK IntType, UML71... +2024-09-07 22:00:10,711 [main] TRACE AbstractWordWriter - replacing hyperlink [332126 - 332152] HYPERLINK BooleanValueTs, UML54... +2024-09-07 22:00:10,767 [main] TRACE AbstractWordWriter - replacing hyperlink [332272 - 332298] HYPERLINK BooleanValueTs, UML54... +2024-09-07 22:00:10,830 [main] TRACE AbstractWordWriter - replacing hyperlink [332389 - 332415] HYPERLINK BooleanValueTs, UML54... +2024-09-07 22:00:10,890 [main] TRACE AbstractWordWriter - replacing hyperlink [332487 - 332504] HYPERLINK CntRs, UML67... +2024-09-07 22:00:10,947 [main] TRACE AbstractWordWriter - replacing hyperlink [332889 - 332908] HYPERLINK Integer, UML53... +2024-09-07 22:00:11,004 [main] TRACE AbstractWordWriter - replacing hyperlink [333013 - 333034] HYPERLINK IntegerTs, UML58... +2024-09-07 22:00:11,060 [main] TRACE AbstractWordWriter - replacing hyperlink [333133 - 333154] HYPERLINK IntegerTs, UML58... +2024-09-07 22:00:11,115 [main] TRACE AbstractWordWriter - replacing hyperlink [333255 - 333274] HYPERLINK Integer, UML53... +2024-09-07 22:00:11,175 [main] TRACE AbstractWordWriter - replacing hyperlink [333378 - 333399] HYPERLINK IntegerTs, UML58... +2024-09-07 22:00:11,230 [main] TRACE AbstractWordWriter - replacing hyperlink [333500 - 333521] HYPERLINK IntegerTs, UML58... +2024-09-07 22:00:11,286 [main] TRACE AbstractWordWriter - replacing hyperlink [333625 - 333644] HYPERLINK Integer, UML53... +2024-09-07 22:00:11,341 [main] TRACE AbstractWordWriter - replacing hyperlink [333748 - 333769] HYPERLINK IntegerTs, UML58... +2024-09-07 22:00:11,404 [main] TRACE AbstractWordWriter - replacing hyperlink [333870 - 333891] HYPERLINK IntegerTs, UML58... +2024-09-07 22:00:11,464 [main] TRACE AbstractWordWriter - replacing hyperlink [333995 - 334014] HYPERLINK Integer, UML53... +2024-09-07 22:00:11,523 [main] TRACE AbstractWordWriter - replacing hyperlink [334117 - 334138] HYPERLINK IntegerTs, UML58... +2024-09-07 22:00:11,585 [main] TRACE AbstractWordWriter - replacing hyperlink [334238 - 334259] HYPERLINK IntegerTs, UML58... +2024-09-07 22:00:11,642 [main] TRACE AbstractWordWriter - replacing hyperlink [334361 - 334380] HYPERLINK Integer, UML53... +2024-09-07 22:00:11,704 [main] TRACE AbstractWordWriter - replacing hyperlink [334495 - 334516] HYPERLINK IntegerTs, UML58... +2024-09-07 22:00:11,763 [main] TRACE AbstractWordWriter - replacing hyperlink [334628 - 334649] HYPERLINK IntegerTs, UML58... +2024-09-07 22:00:11,824 [main] TRACE AbstractWordWriter - replacing hyperlink [334761 - 334782] HYPERLINK SEREntry, UML139... +2024-09-07 22:00:11,880 [main] TRACE AbstractWordWriter - replacing hyperlink [334911 - 334932] HYPERLINK ETHEntry, UML137... +2024-09-07 22:00:11,946 [main] TRACE AbstractWordWriter - replacing hyperlink [335063 - 335084] HYPERLINK USBEntry, UML141... +2024-09-07 22:00:12,006 [main] TRACE AbstractWordWriter - replacing hyperlink [335210 - 335231] HYPERLINK KEYEntry, UML138... +2024-09-07 22:00:12,063 [main] TRACE AbstractWordWriter - replacing hyperlink [335362 - 335383] HYPERLINK ALGEntry, UML140... +2024-09-07 22:00:12,121 [main] TRACE AbstractWordWriter - replacing hyperlink [335525 - 335550] HYPERLINK Notification, UML143... +2024-09-07 22:00:12,178 [main] TRACE AbstractWordWriter - replacing hyperlink [335920 - 335943] HYPERLINK EntityIndex, UML66... +2024-09-07 22:00:12,243 [main] TRACE AbstractWordWriter - replacing hyperlink [335997 - 336019] HYPERLINK Interface, UML136... +2024-09-07 22:00:12,312 [main] TRACE AbstractWordWriter - replacing hyperlink [336056 - 336078] HYPERLINK CharString, UML59... +2024-09-07 22:00:12,380 [main] TRACE AbstractWordWriter - replacing hyperlink [336134 - 336156] HYPERLINK Interface, UML136... +2024-09-07 22:00:12,446 [main] TRACE AbstractWordWriter - replacing hyperlink [336195 - 336214] HYPERLINK IntType, UML71... +2024-09-07 22:00:12,509 [main] TRACE AbstractWordWriter - replacing hyperlink [336267 - 336289] HYPERLINK Interface, UML136... +2024-09-07 22:00:12,578 [main] TRACE AbstractWordWriter - replacing hyperlink [336329 - 336355] HYPERLINK BooleanValueTs, UML54... +2024-09-07 22:00:12,642 [main] TRACE AbstractWordWriter - replacing hyperlink [336413 - 336435] HYPERLINK Interface, UML136... +2024-09-07 22:00:12,702 [main] TRACE AbstractWordWriter - replacing hyperlink [336473 - 336499] HYPERLINK BooleanValueTs, UML54... +2024-09-07 22:00:12,764 [main] TRACE AbstractWordWriter - replacing hyperlink [336557 - 336579] HYPERLINK Interface, UML136... +2024-09-07 22:00:12,828 [main] TRACE AbstractWordWriter - replacing hyperlink [336617 - 336643] HYPERLINK BooleanValueTs, UML54... +2024-09-07 22:00:12,892 [main] TRACE AbstractWordWriter - replacing hyperlink [336701 - 336723] HYPERLINK Interface, UML136... +2024-09-07 22:00:12,957 [main] TRACE AbstractWordWriter - replacing hyperlink [336760 - 336777] HYPERLINK CntRs, UML67... +2024-09-07 22:00:13,018 [main] TRACE AbstractWordWriter - replacing hyperlink [336828 - 336850] HYPERLINK Interface, UML136... +2024-09-07 22:00:13,075 [main] TRACE AbstractWordWriter - replacing hyperlink [337184 - 337210] HYPERLINK BooleanValueTs, UML54... +2024-09-07 22:00:13,133 [main] TRACE AbstractWordWriter - replacing hyperlink [337307 - 337330] HYPERLINK EntityIndex, UML66... +2024-09-07 22:00:13,190 [main] TRACE AbstractWordWriter - replacing hyperlink [337384 - 337406] HYPERLINK Interface, UML136... +2024-09-07 22:00:13,246 [main] TRACE AbstractWordWriter - replacing hyperlink [337443 - 337465] HYPERLINK CharString, UML59... +2024-09-07 22:00:13,304 [main] TRACE AbstractWordWriter - replacing hyperlink [337521 - 337543] HYPERLINK Interface, UML136... +2024-09-07 22:00:13,362 [main] TRACE AbstractWordWriter - replacing hyperlink [337582 - 337601] HYPERLINK IntType, UML71... +2024-09-07 22:00:13,420 [main] TRACE AbstractWordWriter - replacing hyperlink [337654 - 337676] HYPERLINK Interface, UML136... +2024-09-07 22:00:13,478 [main] TRACE AbstractWordWriter - replacing hyperlink [337716 - 337742] HYPERLINK BooleanValueTs, UML54... +2024-09-07 22:00:13,536 [main] TRACE AbstractWordWriter - replacing hyperlink [337800 - 337822] HYPERLINK Interface, UML136... +2024-09-07 22:00:13,591 [main] TRACE AbstractWordWriter - replacing hyperlink [337860 - 337886] HYPERLINK BooleanValueTs, UML54... +2024-09-07 22:00:13,648 [main] TRACE AbstractWordWriter - replacing hyperlink [337944 - 337966] HYPERLINK Interface, UML136... +2024-09-07 22:00:13,705 [main] TRACE AbstractWordWriter - replacing hyperlink [338004 - 338030] HYPERLINK BooleanValueTs, UML54... +2024-09-07 22:00:13,764 [main] TRACE AbstractWordWriter - replacing hyperlink [338088 - 338110] HYPERLINK Interface, UML136... +2024-09-07 22:00:13,822 [main] TRACE AbstractWordWriter - replacing hyperlink [338147 - 338164] HYPERLINK CntRs, UML67... +2024-09-07 22:00:13,880 [main] TRACE AbstractWordWriter - replacing hyperlink [338215 - 338237] HYPERLINK Interface, UML136... +2024-09-07 22:00:13,937 [main] TRACE AbstractWordWriter - replacing hyperlink [338563 - 338584] HYPERLINK CounterTs, UML55... +2024-09-07 22:00:13,995 [main] TRACE AbstractWordWriter - replacing hyperlink [338655 - 338676] HYPERLINK CounterTs, UML55... +2024-09-07 22:00:14,060 [main] TRACE AbstractWordWriter - replacing hyperlink [338743 - 338766] HYPERLINK EntityIndex, UML66... +2024-09-07 22:00:14,128 [main] TRACE AbstractWordWriter - replacing hyperlink [338820 - 338842] HYPERLINK Interface, UML136... +2024-09-07 22:00:14,321 [main] TRACE AbstractWordWriter - replacing hyperlink [338879 - 338901] HYPERLINK CharString, UML59... +2024-09-07 22:00:14,380 [main] TRACE AbstractWordWriter - replacing hyperlink [338957 - 338979] HYPERLINK Interface, UML136... +2024-09-07 22:00:14,439 [main] TRACE AbstractWordWriter - replacing hyperlink [339018 - 339037] HYPERLINK IntType, UML71... +2024-09-07 22:00:14,496 [main] TRACE AbstractWordWriter - replacing hyperlink [339090 - 339112] HYPERLINK Interface, UML136... +2024-09-07 22:00:14,552 [main] TRACE AbstractWordWriter - replacing hyperlink [339152 - 339178] HYPERLINK BooleanValueTs, UML54... +2024-09-07 22:00:14,609 [main] TRACE AbstractWordWriter - replacing hyperlink [339236 - 339258] HYPERLINK Interface, UML136... +2024-09-07 22:00:14,702 [main] TRACE AbstractWordWriter - replacing hyperlink [339296 - 339322] HYPERLINK BooleanValueTs, UML54... +2024-09-07 22:00:14,760 [main] TRACE AbstractWordWriter - replacing hyperlink [339380 - 339402] HYPERLINK Interface, UML136... +2024-09-07 22:00:14,819 [main] TRACE AbstractWordWriter - replacing hyperlink [339440 - 339466] HYPERLINK BooleanValueTs, UML54... +2024-09-07 22:00:14,877 [main] TRACE AbstractWordWriter - replacing hyperlink [339524 - 339546] HYPERLINK Interface, UML136... +2024-09-07 22:00:15,012 [main] TRACE AbstractWordWriter - replacing hyperlink [339583 - 339600] HYPERLINK CntRs, UML67... +2024-09-07 22:00:15,084 [main] TRACE AbstractWordWriter - replacing hyperlink [339651 - 339673] HYPERLINK Interface, UML136... +2024-09-07 22:00:15,150 [main] TRACE AbstractWordWriter - replacing hyperlink [339999 - 340022] HYPERLINK EntityIndex, UML66... +2024-09-07 22:00:15,205 [main] TRACE AbstractWordWriter - replacing hyperlink [340076 - 340098] HYPERLINK Interface, UML136... +2024-09-07 22:00:15,260 [main] TRACE AbstractWordWriter - replacing hyperlink [340135 - 340157] HYPERLINK CharString, UML59... +2024-09-07 22:00:15,316 [main] TRACE AbstractWordWriter - replacing hyperlink [340213 - 340235] HYPERLINK Interface, UML136... +2024-09-07 22:00:15,372 [main] TRACE AbstractWordWriter - replacing hyperlink [340274 - 340293] HYPERLINK IntType, UML71... +2024-09-07 22:00:15,435 [main] TRACE AbstractWordWriter - replacing hyperlink [340346 - 340368] HYPERLINK Interface, UML136... +2024-09-07 22:00:15,498 [main] TRACE AbstractWordWriter - replacing hyperlink [340408 - 340434] HYPERLINK BooleanValueTs, UML54... +2024-09-07 22:00:15,556 [main] TRACE AbstractWordWriter - replacing hyperlink [340492 - 340514] HYPERLINK Interface, UML136... +2024-09-07 22:00:15,615 [main] TRACE AbstractWordWriter - replacing hyperlink [340552 - 340578] HYPERLINK BooleanValueTs, UML54... +2024-09-07 22:00:15,672 [main] TRACE AbstractWordWriter - replacing hyperlink [340636 - 340658] HYPERLINK Interface, UML136... +2024-09-07 22:00:15,731 [main] TRACE AbstractWordWriter - replacing hyperlink [340696 - 340722] HYPERLINK BooleanValueTs, UML54... +2024-09-07 22:00:15,787 [main] TRACE AbstractWordWriter - replacing hyperlink [340780 - 340802] HYPERLINK Interface, UML136... +2024-09-07 22:00:15,846 [main] TRACE AbstractWordWriter - replacing hyperlink [340839 - 340856] HYPERLINK CntRs, UML67... +2024-09-07 22:00:15,903 [main] TRACE AbstractWordWriter - replacing hyperlink [340907 - 340929] HYPERLINK Interface, UML136... +2024-09-07 22:00:15,959 [main] TRACE AbstractWordWriter - replacing hyperlink [341251 - 341274] HYPERLINK EntityIndex, UML66... +2024-09-07 22:00:16,017 [main] TRACE AbstractWordWriter - replacing hyperlink [341328 - 341350] HYPERLINK Interface, UML136... +2024-09-07 22:00:16,079 [main] TRACE AbstractWordWriter - replacing hyperlink [341387 - 341409] HYPERLINK CharString, UML59... +2024-09-07 22:00:16,143 [main] TRACE AbstractWordWriter - replacing hyperlink [341465 - 341487] HYPERLINK Interface, UML136... +2024-09-07 22:00:16,211 [main] TRACE AbstractWordWriter - replacing hyperlink [341526 - 341545] HYPERLINK IntType, UML71... +2024-09-07 22:00:16,268 [main] TRACE AbstractWordWriter - replacing hyperlink [341598 - 341620] HYPERLINK Interface, UML136... +2024-09-07 22:00:16,329 [main] TRACE AbstractWordWriter - replacing hyperlink [341660 - 341686] HYPERLINK BooleanValueTs, UML54... +2024-09-07 22:00:16,389 [main] TRACE AbstractWordWriter - replacing hyperlink [341744 - 341766] HYPERLINK Interface, UML136... +2024-09-07 22:00:16,451 [main] TRACE AbstractWordWriter - replacing hyperlink [341804 - 341830] HYPERLINK BooleanValueTs, UML54... +2024-09-07 22:00:16,507 [main] TRACE AbstractWordWriter - replacing hyperlink [341888 - 341910] HYPERLINK Interface, UML136... +2024-09-07 22:00:16,565 [main] TRACE AbstractWordWriter - replacing hyperlink [341948 - 341974] HYPERLINK BooleanValueTs, UML54... +2024-09-07 22:00:16,622 [main] TRACE AbstractWordWriter - replacing hyperlink [342032 - 342054] HYPERLINK Interface, UML136... +2024-09-07 22:00:16,680 [main] TRACE AbstractWordWriter - replacing hyperlink [342091 - 342108] HYPERLINK CntRs, UML67... +2024-09-07 22:00:16,740 [main] TRACE AbstractWordWriter - replacing hyperlink [342159 - 342181] HYPERLINK Interface, UML136... +2024-09-07 22:00:16,800 [main] TRACE AbstractWordWriter - replacing hyperlink [342570 - 342591] HYPERLINK IntegerTs, UML58... +2024-09-07 22:00:16,858 [main] TRACE AbstractWordWriter - replacing hyperlink [342688 - 342709] HYPERLINK IntegerTs, UML58... +2024-09-07 22:00:16,914 [main] TRACE AbstractWordWriter - replacing hyperlink [342809 - 342830] HYPERLINK IntegerTs, UML58... +2024-09-07 22:00:16,971 [main] TRACE AbstractWordWriter - replacing hyperlink [342929 - 342950] HYPERLINK IntegerTs, UML58... +2024-09-07 22:00:17,030 [main] TRACE AbstractWordWriter - replacing hyperlink [343053 - 343074] HYPERLINK IntegerTs, UML58... +2024-09-07 22:00:17,090 [main] TRACE AbstractWordWriter - replacing hyperlink [343173 - 343194] HYPERLINK IntegerTs, UML58... +2024-09-07 22:00:17,147 [main] TRACE AbstractWordWriter - replacing hyperlink [343297 - 343318] HYPERLINK IntegerTs, UML58... +2024-09-07 22:00:17,204 [main] TRACE AbstractWordWriter - replacing hyperlink [343417 - 343438] HYPERLINK IntegerTs, UML58... +2024-09-07 22:00:17,270 [main] TRACE AbstractWordWriter - replacing hyperlink [343540 - 343561] HYPERLINK IntegerTs, UML58... +2024-09-07 22:00:17,329 [main] TRACE AbstractWordWriter - replacing hyperlink [343672 - 343693] HYPERLINK IntegerTs, UML58... +2024-09-07 22:00:17,387 [main] TRACE AbstractWordWriter - replacing hyperlink [344366 - 344387] HYPERLINK Timestamp, UML61... +2024-09-07 22:00:17,448 [main] TRACE AbstractWordWriter - replacing hyperlink [344503 - 344524] HYPERLINK Timestamp, UML61... +2024-09-07 22:00:17,505 [main] TRACE AbstractWordWriter - replacing hyperlink [344635 - 344652] HYPERLINK CntRs, UML67... +2024-09-07 22:00:17,563 [main] TRACE AbstractWordWriter - replacing hyperlink [344876 - 344899] HYPERLINK ClockEntry, UML134... +2024-09-07 22:00:17,619 [main] TRACE AbstractWordWriter - replacing hyperlink [345026 - 345059] HYPERLINK SecurityNotification, UML135... +2024-09-07 22:00:17,679 [main] TRACE AbstractWordWriter - replacing hyperlink [345440 - 345459] HYPERLINK Integer, UML53... +2024-09-07 22:00:17,738 [main] TRACE AbstractWordWriter - replacing hyperlink [345676 - 345699] HYPERLINK EntityIndex, UML66... +2024-09-07 22:00:17,795 [main] TRACE AbstractWordWriter - replacing hyperlink [345763 - 345791] HYPERLINK TimSyncIssueType, UML75... +2024-09-07 22:00:17,856 [main] TRACE AbstractWordWriter - replacing hyperlink [345904 - 345928] HYPERLINK BooleanValue, UML52... +2024-09-07 22:00:17,914 [main] TRACE AbstractWordWriter - replacing hyperlink [346012 - 346038] HYPERLINK TimSyncSrcType, UML77... +2024-09-07 22:00:17,972 [main] TRACE AbstractWordWriter - replacing hyperlink [346128 - 346152] HYPERLINK BooleanValue, UML52... +2024-09-07 22:00:18,031 [main] TRACE AbstractWordWriter - replacing hyperlink [346497 - 346519] HYPERLINK FloatingTs, UML57... +2024-09-07 22:00:18,091 [main] TRACE AbstractWordWriter - replacing hyperlink [346767 - 346791] HYPERLINK BooleanValue, UML52... +2024-09-07 22:00:18,148 [main] TRACE AbstractWordWriter - replacing hyperlink [347619 - 347643] HYPERLINK BooleanValue, UML52... +2024-09-07 22:00:18,209 [main] TRACE AbstractWordWriter - replacing hyperlink [348614 - 348635] HYPERLINK Timestamp, UML61... +2024-09-07 22:00:18,259 [main] INFO Util - time=[0:01:53.878] replaced 2092 hyperlink placeholders +2024-09-07 22:00:18,259 [main] INFO Util - +2024-09-07 22:00:18,259 [main] DEBUG DocWordWriter - restoring original options +2024-09-07 22:00:18,259 [main] INFO OptimOptions - bringing back original view +2024-09-07 22:00:18,334 [main] INFO OptimOptions - enabling pagination +2024-09-07 22:00:18,384 [main] INFO OptimOptions - enabling field updates +2024-09-07 22:00:18,505 [main] INFO OptimOptions - enabling screen updating +2024-09-07 22:00:18,509 [main] DEBUG DocWordWriter - >> current/restored : OptimOptions [viewId=3, normView=false, paginate=true, updFld=true, updScr=true, fastSave=false, spelling=false, grammar=false] +2024-09-07 22:00:18,509 [main] INFO AbstractWordWriter - updating document fields (takes a while)... +2024-09-07 22:00:34,569 [main] INFO DocWordWriter - updateFields: 16059 ms +2024-09-07 22:00:41,769 [main] INFO DocWordWriter - updateTablesOfContents: 7200 ms +2024-09-07 22:00:49,440 [main] INFO DocWordWriter - updateTablesOfFigures: 7671 ms +2024-09-07 22:00:49,440 [main] INFO Util - time=[0:00:30.931] updated document fields +2024-09-07 22:00:49,441 [main] INFO Util - +2024-09-07 22:00:49,441 [main] INFO DocWordWriter - closing MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-07 22:00:53,618 [main] INFO DocWordWriter - exiting MSWord application +2024-09-07 22:00:53,621 [main] INFO Util - time=[0:05:42.673] written documentation to C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx +2024-09-07 22:00:53,621 [main] INFO Util - +2024-09-07 22:00:53,621 [main] INFO Util - time=[0:06:36.868] completed all configured steps - exiting +2024-09-07 22:00:53,621 [main] INFO Util - +2024-09-07 22:00:53,622 [main] INFO JCleanCim - completed at: Sat Sep 07 22:00:53 CEST 2024 +2024-09-07 22:00:53,622 [main] INFO JCleanCim - exiting +2024-09-08 08:25:32,157 [main] INFO JCleanCim - started at: Sun Sep 08 08:25:32 CEST 2024 +2024-09-08 08:25:32,158 [main] INFO JCleanCim - execution environment: +2024-09-08 08:25:32,158 [main] INFO JCleanCim - os.name = Windows 10 +2024-09-08 08:25:32,158 [main] INFO JCleanCim - java.version = 1.8.0_351 +2024-09-08 08:25:32,158 [main] INFO JCleanCim - java.home = C:\Program Files (x86)\Java\jre1.8.0_351 +2024-09-08 08:25:32,159 [main] INFO JCleanCim - java.class.path = C:\Users\gigi\git\jCleanCim\build\prod\classes;C:\Users\gigi\git\jCleanCim\lib\eaapi.jar;C:\Users\gigi\git\jCleanCim\dlls;C:\Users\gigi\git\jCleanCim\lib\commons-cli-1.2.jar;C:\Users\gigi\git\jCleanCim\config;C:\Users\gigi\git\jCleanCim\input;C:\Users\gigi\git\jCleanCim\lib\jacob.jar;C:\Users\gigi\git\jCleanCim\test\config;C:\Users\gigi\git\jCleanCim\test\input;C:\Users\gigi\git\jCleanCim\lib\commons-logging-1.1.1.jar;C:\Users\gigi\git\jCleanCim\lib\log4j-1.2.17.jar;C:\Users\gigi\git\jCleanCim\lib\commons-lang-2.6.jar;C:\Users\gigi\git\jCleanCim\lib\junit-4.8.2.jar;C:\Users\gigi\git\jCleanCim\lib\jackcess-2.1.0.jar;C:\Users\gigi\git\jCleanCim\lib\poi-ooxml-3.15-beta2.jar +2024-09-08 08:25:32,175 [main] INFO Util - loaded properties from resource build.properties +2024-09-08 08:25:32,176 [main] INFO JCleanCim - jCleanCim version: 02v03 +2024-09-08 08:25:32,176 [main] INFO JCleanCim - +2024-09-08 08:25:32,193 [main] INFO Util - loaded properties from resource config.properties +2024-09-08 08:25:32,195 [main] INFO Util - loaded properties from resource config61850.properties +2024-09-08 08:25:32,197 [main] INFO Util - loaded properties from resource build.properties +2024-09-08 08:25:32,202 [main] INFO Config - EA model specified in config.properties: 'C:\Users\gigi\git\jCleanCim\input\IEC62351-7-Ed2-FDIS-20240901.eap' +2024-09-08 08:25:32,203 [main] INFO Config - blank image file: 'C:\Users\gigi\git\jCleanCim\input\blank.png' +2024-09-08 08:25:32,209 [main] DEBUG Config - Property validation.rules.off not found in config.properties. +2024-09-08 08:25:32,210 [main] INFO Util - Creating backup of existing file: C:\Users\gigi\git\jCleanCim\output\pics.75807876846000 +2024-09-08 08:25:32,214 [main] INFO Config - pics output directory: 'C:\Users\gigi\git\jCleanCim\output\pics' +2024-09-08 08:25:32,215 [main] INFO Config - input MS Word template: 'C:\Users\gigi\git\jCleanCim\input\57-62351-7-Ed2-FDIS-template_20240901.docx' +2024-09-08 08:25:32,216 [main] INFO Util - Creating backup of existing file: C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx.75807882727500 +2024-09-08 08:25:32,220 [main] INFO Config - output MS Word file: 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-08 08:25:32,220 [main] INFO Util - Creating backup of existing file: C:\Users\gigi\git\jCleanCim\output\mibs.75807886838400 +2024-09-08 08:25:32,223 [main] INFO Config - full MIBs output directory: 'C:\Users\gigi\git\jCleanCim\output\mibs' +2024-09-08 08:25:32,224 [main] INFO Util - Creating backup of existing file: C:\Users\gigi\git\jCleanCim\output\mibslight.75807890490700 +2024-09-08 08:25:32,228 [main] INFO Config - light MIBs output directory: 'C:\Users\gigi\git\jCleanCim\output\mibslight' +2024-09-08 08:25:32,228 [main] DEBUG Config - Property docgen.word.styles.prefix.toc not found in config.properties. +2024-09-08 08:25:32,228 [main] DEBUG Config - Property docgen.word.styles.prefix.head not found in config.properties. +2024-09-08 08:25:32,228 [main] DEBUG Config - Property docgen.skipForCustomStereotypes not found in config.properties. +2024-09-08 08:25:32,229 [main] INFO JCleanCim - Config: +app.skipTiming = +docgen.iec61850.includeMetamodelInheritance = +docgen.iec61850.writeUmlTypes = +docgen.includeInformative = +docgen.includeNonPublic = +docgen.on = true +docgen.printHtml = +docgen.showCustomStereotypes = true +docgen.showNamespacePackages = Base, Dynamics, ExtEuBase, Ext1 +docgen.word.analysePlaceholders = +docgen.word.inTemplate = 57-62351-7-Ed2-FDIS-template_20240901.docx +docgen.word.includeInheritancePath = false +docgen.word.introToFigureBefore = +docgen.word.outDocument = 57-62351-7-Ed2-FDIS_20240901.docx +docgen.word.saveReopenEvery = 12 +docgen.word.styles.fig = FIGURE, Picture, Normal, Standard, Normal +docgen.word.styles.figcapt = FIGURE-title, Caption, Beschriftung, Légende +docgen.word.styles.para = PARAGRAPH, Normal, Standard, Normal +docgen.word.styles.tabcapt = TABLE-title, Caption, Beschriftung, Légende +docgen.word.styles.tabcell = TABLE-cell, Normal, Standard, Normal +docgen.word.styles.tabhead = TABLE-col-heading, Normal, Standard, Normal +docgen.word.useDocFormat = true +docgen.word.useHyperlinks = true +docgen.xml.scope = +mibgen.on = true +mibgen.outDirFull = mibs +mibgen.outDirLight = mibslight +model.builder = japi +model.filename = IEC62351-7-Ed2-FDIS-20240901.eap +model.nature.iec61850 = IEC61850Domain, My61850Extensions, NonCIM, IEC61850_SCL_mappings, MyNonCimExtensions +model.nature.iec62351 = IEC62351 +model.picsRelpath = +profiles.crosscheck.on = +profiles.dirnames = +profiles.docgen.on = +profiles.relpath = +project.version = 02v03 +statistics.cim.ignoreDomainClassAttributes = true +statistics.cim.ignoreIdObjectInheritance = true +statistics.on = false +statistics.tagsToIgnore = GUIDBasedOn +validation.associations.off = +validation.attributes.off = +validation.classes.off = +validation.dependencies.off = +validation.diagrams.off = +validation.iec61850.package72Top = IEC61850_7_2 +validation.iec61850.packageFC = FunctionalConstraints +validation.iec61850.packageLnMaps = Functions +validation.iec61850.packageMetaModel = MetaModel +validation.iec61850.packagePresCond = PresenceConditions +validation.iec61850.packageTrgOp = TriggerOptions +validation.iec61850.packages72 = FunctionalConstraints, TriggerOptions, ACSIEnums, CoreTypes, MetaModel +validation.iec61850.packages73 = PresenceConditions, ConstructedDAs, CommonDataClasses, DAEnums,CommonDataClasses_90_3, DAEnums_90_3,CommonDataClasses_90_4, DAEnums_90_4,CommonDataClasses_90_6, DAEnums_90_6,CommonDataClasses_90_8, DAEnums_90_8,CommonDataClasses_90_10, DAEnums_90_10,CommonDataClasses_90_17, DAEnums_90_17,CommonDataClasses_7_410, DAEnums_7_410,CommonDataClasses_7_420, DAEnums_7_420,CommonDataClasses_25_2, DAEnums_25_2 +validation.iec61850.packages74 = Functions, Abbreviations, LogicalNodes, DOEnums,Abbreviations_90_3, LogicalNodes_90_3, DOEnums_90_3,Abbreviations_90_4, LogicalNodes_90_4, DOEnums_90_4,Abbreviations_90_6, LogicalNodes_90_6, DOEnums_90_6,Abbreviations_90_8, LogicalNodes_90_8, DOEnums_90_8,Abbreviations_90_9, LogicalNodes_90_9, DOEnums_90_9,Abbreviations_90_10, LogicalNodes_90_10, DOEnums_90_10,Abbreviations_90_11, LogicalNodes_90_11, DOEnums_90_11,Abbreviations_90_17, LogicalNodes_90_17, DOEnums_90_17,Abbreviations_7_410, LogicalNodes_7_410, DOEnums_7_410,Abbreviations_7_420, LogicalNodes_7_420, DOEnums_7_420,Abbreviations_7_499, LogicalNodes_7_499, DOEnums_7_499,Abbreviations_61869-9, LogicalNodes_61869-9, Abbreviations_62271-3, LogicalNodes_62271-3, Abbreviations_25_2, LogicalNodes_25_2, DOEnums_25_2 +validation.iec61850.packagesBasic = CoreTypes +validation.iec61850.packagesCdc = CommonDataClasses, CommonDataClasses_90_3, CommonDataClasses_90_4, CommonDataClasses_90_6, CommonDataClasses_90_8, CommonDataClasses_90_9, CommonDataClasses_90_10, CommonDataClasses_90_17, CommonDataClasses_7_410, CommonDataClasses_7_420, CommonDataClasses_25_2 +validation.iec61850.packagesDa = ConstructedDAs +validation.iec61850.packagesDoAbbr = Abbreviations, Abbreviations_90_3, Abbreviations_90_4, Abbreviations_90_6, Abbreviations_90_8, Abbreviations_90_9, Abbreviations_90_10, Abbreviations_90_11, Abbreviations_90_17, Abbreviations_7_410, Abbreviations_7_420, Abbreviations_7_499, Abbreviations_61869-9, Abbreviations_62271-3, Abbreviations_25_2 +validation.iec61850.packagesEnumsXml = DomainTypesEnums, DOEnums, DAEnums, DOEnums_90_3, DAEnums_90_3, DOEnums_90_4, DAEnums_90_4, DOEnums_90_6, DAEnums_90_6, DOEnums_90_8, DAEnums_90_8, DOEnums_90_9, DAEnums_90_9, DOEnums_90_10, DAEnums_90_10, DOEnums_90_11, DAEnums_90_11, DOEnums_90_17, DAEnums_90_17, DOEnums_7_410, DAEnums_7_410, DOEnums_7_420, DAEnums_7_420, DOEnums_7_499, DAEnums_7_499, DOEnums_25_2, DAEnums_25_2 +validation.iec61850.packagesLn = LogicalNodes, LogicalNodes_90_3, LogicalNodes_90_4, LogicalNodes_90_6, LogicalNodes_90_8, LogicalNodes_90_9, LogicalNodes_90_10, LogicalNodes_90_11, LogicalNodes_90_17, LogicalNodes_7_410, LogicalNodes_7_420, LogicalNodes_7_499, LogicalNodes_61869-9, LogicalNodes_62271-3, LogicalNodes_7_420, LogicalNodes_25_2 +validation.logging.verbose = +validation.on = false +validation.operations.off = +validation.packages.off = +validation.packagesDataIndex = Core, LogicalNodes, CommonDataClasses, LogicalNodes_90_3, CommonDataClasses_90_3, LogicalNodes_90_4, CommonDataClasses_90_4, LogicalNodes_90_6, CommonDataClasses_90_6, LogicalNodes_90_8, CommonDataClasses_90_8, LogicalNodes_90_9, CommonDataClasses_90_9, LogicalNodes_90_10, CommonDataClasses_90_10, LogicalNodes_90_11, CommonDataClasses_90_11, LogicalNodes_90_17, CommonDataClasses_90_17, LogicalNodes_7_410, CommonDataClasses_7_410, LogicalNodes_7_420, LogicalNodes_7_499, CommonDataClasses_7_420, LogicalNodes_61869-9, LogicalNodes_62271-3, LogicalNodes_25_2, CommonDataClasses_25_2 +validation.scope = +xmiexport.dialects = +xmiexport.on = + +2024-09-08 08:25:32,249 [main] INFO Util - +2024-09-08 08:25:32,249 [main] INFO Util - ================================================ +2024-09-08 08:25:32,249 [main] INFO Util - building model from EA EA Java API + ea.dll... +2024-09-08 08:25:32,250 [main] INFO Util - ================================================ +2024-09-08 08:25:32,256 [main] INFO Util - +2024-09-08 08:25:32,256 [main] INFO Util - ------------------------------------------------ +2024-09-08 08:25:32,256 [main] INFO Util - initialising EA builder... +2024-09-08 08:25:33,595 [main] INFO EaModelBuilder - EA version: build 1623 +2024-09-08 08:25:33,736 [main] INFO Util - time=[0:00:01.341] initialised EA builder. +2024-09-08 08:25:33,737 [main] INFO Util - +2024-09-08 08:25:33,737 [main] INFO Util - +2024-09-08 08:25:33,737 [main] INFO Util - ------------------------------------------------ +2024-09-08 08:25:33,737 [main] INFO Util - opening EA file 'C:\Users\gigi\git\jCleanCim\input\IEC62351-7-Ed2-FDIS-20240901.eap'... +2024-09-08 08:25:54,511 [main] INFO Util - time=[0:00:20.774] opened EA file. +2024-09-08 08:25:54,511 [main] INFO Util - +2024-09-08 08:25:54,511 [main] INFO Util - +2024-09-08 08:25:54,512 [main] INFO Util - ------------------------------------------------ +2024-09-08 08:25:54,512 [main] INFO Util - reading model from EA with iteration API (this will take a while)... +2024-09-08 08:25:54,615 [main] INFO PackageBuilder - processing model package iso (0) ... +2024-09-08 08:25:54,674 [main] INFO PackageBuilder - processing top package standard (0) ... +2024-09-08 08:25:54,728 [main] INFO PackageBuilder - processing package iec62351 (0) ... +2024-09-08 08:25:54,825 [main] INFO PackageBuilder - processing package part7 (0) ... +2024-09-08 08:25:55,080 [main] INFO PackageBuilder - processing package Profiles (0) ... +2024-09-08 08:25:55,101 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Profiles, _objData=UmlObjectData [id=51, uuid={4642A2B9-A297-45be-A2B5-28C4F1A2B373}, since=null, name=Part7Profiles, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 08:25:55,150 [main] INFO PackageBuilder - processing package nsmAgent (0) ... +2024-09-08 08:25:55,165 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=nsmAgent, _objData=UmlObjectData [id=52, uuid={8F3F8B93-6E15-4fcf-9C40-83EB793F28A5}, since=null, name=nsmAgent, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 08:25:55,849 [main] TRACE ClassBuilder - Class Attribute (0 in package nsmAgent) +2024-09-08 08:25:57,195 [main] DEBUG AssociationEndBuilder - Updated target type to Attribute +2024-09-08 08:25:57,204 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=11, uuid=6512bd43-d9ca-36e0-ac99-0b0a82652dca, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=12, uuid=c20ad4d7-6fe9-3759-aa27-a0c99bff6710, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=185, uuid={037D3A56-F1D8-42bb-9EFD-F6E2309B7770}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-08 08:25:57,204 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=11, uuid=6512bd43-d9ca-36e0-ac99-0b0a82652dca, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=12, uuid=c20ad4d7-6fe9-3759-aa27-a0c99bff6710, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=185, uuid={037D3A56-F1D8-42bb-9EFD-F6E2309B7770}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Attribute +2024-09-08 08:25:57,205 [main] TRACE ClassBuilder - read from EA: nsmAgent::Attribute +2024-09-08 08:25:57,210 [main] TRACE ClassBuilder - Class Attribute (0 in package nsmAgent) +2024-09-08 08:25:57,305 [main] DEBUG AssociationEndBuilder - Updated target type to Attribute +2024-09-08 08:25:57,314 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=15, uuid=9bf31c7f-f062-336a-96d3-c8bd1f8f2ff3, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=16, uuid=c74d97b0-1eae-357e-84aa-9d5bade97baf, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=179, uuid={AB14A505-E58D-4c64-BE95-5835E1FE0435}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-08 08:25:57,314 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=15, uuid=9bf31c7f-f062-336a-96d3-c8bd1f8f2ff3, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=16, uuid=c74d97b0-1eae-357e-84aa-9d5bade97baf, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=179, uuid={AB14A505-E58D-4c64-BE95-5835E1FE0435}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Attribute +2024-09-08 08:25:57,314 [main] TRACE ClassBuilder - read from EA: nsmAgent::Attribute +2024-09-08 08:25:57,320 [main] TRACE ClassBuilder - Class Attribute (0 in package nsmAgent) +2024-09-08 08:25:57,410 [main] DEBUG AssociationEndBuilder - Updated target type to Attribute +2024-09-08 08:25:57,418 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=19, uuid=1f0e3dad-9990-3345-b743-9f8ffabdffc4, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=20, uuid=98f13708-2101-34c4-b568-7be6106a3b84, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=180, uuid={81333E16-399C-4a6d-83B9-BAC271270F32}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-08 08:25:57,418 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=19, uuid=1f0e3dad-9990-3345-b743-9f8ffabdffc4, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=20, uuid=98f13708-2101-34c4-b568-7be6106a3b84, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=180, uuid={81333E16-399C-4a6d-83B9-BAC271270F32}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Attribute +2024-09-08 08:25:57,419 [main] TRACE ClassBuilder - read from EA: nsmAgent::Attribute +2024-09-08 08:25:57,423 [main] TRACE ClassBuilder - Class Attribute (0 in package nsmAgent) +2024-09-08 08:25:57,519 [main] DEBUG AssociationEndBuilder - Updated target type to Attribute +2024-09-08 08:25:57,529 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=23, uuid=37693cfc-7480-39e4-9d87-b8c7d8b9aacd, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=24, uuid=1ff1de77-4005-38da-93f4-2943881c655f, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=183, uuid={A10A942F-369A-4aa5-88B5-9F7AD36E5852}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-08 08:25:57,529 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=23, uuid=37693cfc-7480-39e4-9d87-b8c7d8b9aacd, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=24, uuid=1ff1de77-4005-38da-93f4-2943881c655f, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=183, uuid={A10A942F-369A-4aa5-88B5-9F7AD36E5852}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Attribute +2024-09-08 08:25:57,529 [main] TRACE ClassBuilder - read from EA: nsmAgent::Attribute +2024-09-08 08:25:57,535 [main] TRACE ClassBuilder - Class Attribute (0 in package nsmAgent) +2024-09-08 08:25:57,625 [main] DEBUG AssociationEndBuilder - Updated target type to Attribute +2024-09-08 08:25:57,633 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=27, uuid=02e74f10-e032-3ad8-a8d1-38f2b4fdd6f0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=28, uuid=33e75ff0-9dd6-31bb-a69f-351039152189, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=184, uuid={0A546037-FD29-4ca6-8123-D9FEDAA5A7C4}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-08 08:25:57,633 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=27, uuid=02e74f10-e032-3ad8-a8d1-38f2b4fdd6f0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=28, uuid=33e75ff0-9dd6-31bb-a69f-351039152189, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=184, uuid={0A546037-FD29-4ca6-8123-D9FEDAA5A7C4}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Attribute +2024-09-08 08:25:57,633 [main] TRACE ClassBuilder - read from EA: nsmAgent::Attribute +2024-09-08 08:25:57,639 [main] TRACE ClassBuilder - Class Attribute (0 in package nsmAgent) +2024-09-08 08:25:57,730 [main] DEBUG AssociationEndBuilder - Updated target type to Attribute +2024-09-08 08:25:57,739 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=31, uuid=c16a5320-fa47-3530-9958-3c34fd356ef5, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=32, uuid=6364d3f0-f495-36ab-9dcf-8d3b5c6e0b01, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=186, uuid={5A0BDE1C-4479-472a-95D9-5E2FF2FB1D48}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-08 08:25:57,739 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=31, uuid=c16a5320-fa47-3530-9958-3c34fd356ef5, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=32, uuid=6364d3f0-f495-36ab-9dcf-8d3b5c6e0b01, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=186, uuid={5A0BDE1C-4479-472a-95D9-5E2FF2FB1D48}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Attribute +2024-09-08 08:25:57,739 [main] TRACE ClassBuilder - read from EA: nsmAgent::Attribute +2024-09-08 08:25:57,745 [main] TRACE ClassBuilder - Class Attribute (0 in package nsmAgent) +2024-09-08 08:25:57,835 [main] DEBUG AssociationEndBuilder - Updated target type to Attribute +2024-09-08 08:25:57,843 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=35, uuid=1c383cd3-0b7c-398a-b502-93adfecb7b18, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=36, uuid=19ca14e7-ea63-38a4-ae0e-b13d585e4c22, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=187, uuid={D024B2AD-A446-46a8-9026-6CAB3B506EAD}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-08 08:25:57,844 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=35, uuid=1c383cd3-0b7c-398a-b502-93adfecb7b18, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=36, uuid=19ca14e7-ea63-38a4-ae0e-b13d585e4c22, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=187, uuid={D024B2AD-A446-46a8-9026-6CAB3B506EAD}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Attribute +2024-09-08 08:25:57,844 [main] TRACE ClassBuilder - read from EA: nsmAgent::Attribute +2024-09-08 08:25:57,850 [main] TRACE ClassBuilder - Class Attribute (0 in package nsmAgent) +2024-09-08 08:25:57,947 [main] DEBUG AssociationEndBuilder - Updated target type to Attribute +2024-09-08 08:25:57,960 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=39, uuid=d67d8ab4-f4c1-3bf2-aaa3-53e27879133c, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=40, uuid=d645920e-395f-3dad-bbbb-ed0eca3fe2e0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=207, uuid={EF3A2C3D-0E4D-4d2e-98CA-E29A17F69D6F}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-08 08:25:57,960 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=39, uuid=d67d8ab4-f4c1-3bf2-aaa3-53e27879133c, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=40, uuid=d645920e-395f-3dad-bbbb-ed0eca3fe2e0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=207, uuid={EF3A2C3D-0E4D-4d2e-98CA-E29A17F69D6F}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Attribute +2024-09-08 08:25:57,960 [main] TRACE ClassBuilder - read from EA: nsmAgent::Attribute +2024-09-08 08:25:57,965 [main] TRACE ClassBuilder - Class Attribute (0 in package nsmAgent) +2024-09-08 08:25:58,180 [main] DEBUG AssociationEndBuilder - Updated target type to Attribute +2024-09-08 08:25:58,251 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=43, uuid=17e62166-fc85-36df-a4d1-bc0e1742c08b, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=44, uuid=f7177163-c833-3ff4-b38f-c8d2872f1ec6, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=188, uuid={779BD3EC-A6F0-4fa2-AF25-CF73DEB80D9D}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-08 08:25:58,251 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=43, uuid=17e62166-fc85-36df-a4d1-bc0e1742c08b, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=44, uuid=f7177163-c833-3ff4-b38f-c8d2872f1ec6, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=188, uuid={779BD3EC-A6F0-4fa2-AF25-CF73DEB80D9D}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Attribute +2024-09-08 08:25:58,251 [main] TRACE ClassBuilder - read from EA: nsmAgent::Attribute +2024-09-08 08:25:58,257 [main] TRACE ClassBuilder - Class Class (0 in package nsmAgent) +2024-09-08 08:25:58,290 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::Class, _objData=UmlObjectData [id=3451, uuid={6E8148A7-7F05-41a0-9B96-4DE1404873EE}, since=null, name=isActive, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:25:58,376 [main] DEBUG AssociationEndBuilder - Updated target type to Class +2024-09-08 08:25:58,386 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=48, uuid=642e92ef-b794-3173-8881-b53e1e1b18b6, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=49, uuid=f457c545-a9de-388f-98ec-ee47145a72c0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=181, uuid={B87BF513-6F00-4a87-8745-0EFE6669608B}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-08 08:25:58,386 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=48, uuid=642e92ef-b794-3173-8881-b53e1e1b18b6, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=49, uuid=f457c545-a9de-388f-98ec-ee47145a72c0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=181, uuid={B87BF513-6F00-4a87-8745-0EFE6669608B}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Class +2024-09-08 08:25:58,386 [main] TRACE ClassBuilder - read from EA: nsmAgent::Class +2024-09-08 08:25:58,394 [main] TRACE ClassBuilder - Class Class (0 in package nsmAgent) +2024-09-08 08:25:58,425 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::Class, _objData=UmlObjectData [id=3982, uuid={0ADC0F06-862E-4bf0-91E6-77D5A0ACAC93}, since=null, name=isActive, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:25:58,530 [main] DEBUG AssociationEndBuilder - Updated target type to Class +2024-09-08 08:25:58,543 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=53, uuid=d82c8d16-19ad-3176-9665-453cfb2e55f0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=54, uuid=a684ecee-e76f-3522-b732-86a895bc8436, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=226, uuid={18809321-3AB3-4ee2-8EFB-837D3C11C6DB}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-08 08:25:58,544 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=53, uuid=d82c8d16-19ad-3176-9665-453cfb2e55f0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=54, uuid=a684ecee-e76f-3522-b732-86a895bc8436, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=226, uuid={18809321-3AB3-4ee2-8EFB-837D3C11C6DB}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Class +2024-09-08 08:25:58,544 [main] TRACE ClassBuilder - read from EA: nsmAgent::Class +2024-09-08 08:25:58,551 [main] TRACE ClassBuilder - Class Class (0 in package nsmAgent) +2024-09-08 08:25:58,575 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::Class, _objData=UmlObjectData [id=3442, uuid={59E9AD9F-FC10-4f48-B814-DA381B64951D}, since=null, name=isActive, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:25:58,667 [main] DEBUG AssociationEndBuilder - Updated target type to Class +2024-09-08 08:25:58,677 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=58, uuid=66f041e1-6a60-328b-85a7-e228a89c3799, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=59, uuid=093f65e0-80a2-35f8-876b-1c5722a46aa2, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=182, uuid={3E772D79-C1EA-4a57-A5C1-11E871B0C5C7}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-08 08:25:58,677 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=58, uuid=66f041e1-6a60-328b-85a7-e228a89c3799, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=59, uuid=093f65e0-80a2-35f8-876b-1c5722a46aa2, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=182, uuid={3E772D79-C1EA-4a57-A5C1-11E871B0C5C7}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to nsmAgent::Class +2024-09-08 08:25:58,677 [main] TRACE ClassBuilder - read from EA: nsmAgent::Class +2024-09-08 08:25:58,684 [main] TRACE ClassBuilder - Class health (0 in package nsmAgent) +2024-09-08 08:25:58,718 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::health, _objData=UmlObjectData [id=3454, uuid={CC8861DB-2567-4147-A044-BA3F2890EF3C}, since=null, name=Version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:25:58,805 [main] DEBUG AssociationEndBuilder - Updated source type to health +2024-09-08 08:25:58,805 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=11, uuid=6512bd43-d9ca-36e0-ac99-0b0a82652dca, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=health, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=12, uuid=c20ad4d7-6fe9-3759-aa27-a0c99bff6710, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=185, uuid={037D3A56-F1D8-42bb-9EFD-F6E2309B7770}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::health +2024-09-08 08:25:58,805 [main] TRACE ClassBuilder - read from EA: nsmAgent::health +2024-09-08 08:25:58,812 [main] TRACE ClassBuilder - Class identity (0 in package nsmAgent) +2024-09-08 08:25:58,837 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::identity, _objData=UmlObjectData [id=3453, uuid={FCEB4C51-4294-4255-B547-06FC8EAD1631}, since=null, name=Version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:25:58,928 [main] DEBUG AssociationEndBuilder - Updated source type to identity +2024-09-08 08:25:58,928 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=27, uuid=02e74f10-e032-3ad8-a8d1-38f2b4fdd6f0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=identity, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=28, uuid=33e75ff0-9dd6-31bb-a69f-351039152189, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=184, uuid={0A546037-FD29-4ca6-8123-D9FEDAA5A7C4}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::identity +2024-09-08 08:25:58,928 [main] TRACE ClassBuilder - read from EA: nsmAgent::identity +2024-09-08 08:25:58,936 [main] TRACE ClassBuilder - Class index (0 in package nsmAgent) +2024-09-08 08:25:58,965 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::index, _objData=UmlObjectData [id=3452, uuid={94DC5272-A241-486c-B0B9-E954FC9CEEB9}, since=null, name=Version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:25:59,048 [main] DEBUG AssociationEndBuilder - Updated source type to index +2024-09-08 08:25:59,048 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=23, uuid=37693cfc-7480-39e4-9d87-b8c7d8b9aacd, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=index, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=24, uuid=1ff1de77-4005-38da-93f4-2943881c655f, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=183, uuid={A10A942F-369A-4aa5-88B5-9F7AD36E5852}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::index +2024-09-08 08:25:59,048 [main] TRACE ClassBuilder - read from EA: nsmAgent::index +2024-09-08 08:25:59,073 [main] TRACE ClassBuilder - Class nsmAgent (0 in package nsmAgent) +2024-09-08 08:25:59,107 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::nsmAgent, _objData=UmlObjectData [id=3448, uuid={5FAAD04C-5CF2-4de7-9E7A-87ED0BF31C92}, since=null, name=mibPrefix, alias=, stereotype=, visibility=public, txtDescription='The prefix to be added to the each Attributes when used within this Agent branch', htmlDescription='

The prefix to be added to the each Attributes when used within this Agent branch

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=string, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:25:59,118 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::nsmAgent, _objData=UmlObjectData [id=3449, uuid={91C49511-AC32-48bc-B58E-2B08325AECF0}, since=null, name=objectIdentity, alias=, stereotype=, visibility=public, txtDescription='The branch identifier', htmlDescription='

The branch identifier

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=string, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:25:59,136 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::nsmAgent, _objData=UmlObjectData [id=3450, uuid={ED9B83E7-AE09-4070-96DD-DC944F967E05}, since=null, name=objectBranchId, alias=, stereotype=, visibility=public, txtDescription='The branch identifier', htmlDescription='

The branch identifier

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=string, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:25:59,253 [main] DEBUG AssociationEndBuilder - Updated source type to nsmAgent +2024-09-08 08:25:59,253 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=58, uuid=66f041e1-6a60-328b-85a7-e228a89c3799, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=nsmAgent, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=59, uuid=093f65e0-80a2-35f8-876b-1c5722a46aa2, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=182, uuid={3E772D79-C1EA-4a57-A5C1-11E871B0C5C7}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::nsmAgent +2024-09-08 08:25:59,254 [main] TRACE ClassBuilder - read from EA: nsmAgent::nsmAgent +2024-09-08 08:25:59,274 [main] TRACE ClassBuilder - Class nsmEntry (0 in package nsmAgent) +2024-09-08 08:25:59,306 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::nsmEntry, _objData=UmlObjectData [id=3979, uuid={21B90413-2706-49d1-A52C-E5C36E7666D4}, since=null, name=mibPrefix, alias=, stereotype=, visibility=public, txtDescription='The prefix to be added to the each Attributes when used within this Agent branch', htmlDescription='

The prefix to be added to the each Attributes when used within this Agent branch

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=string, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:25:59,321 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::nsmEntry, _objData=UmlObjectData [id=3980, uuid={1140893C-EF40-4d4c-908C-CB302BACA4CB}, since=null, name=objectIdentity, alias=, stereotype=, visibility=public, txtDescription='The branch identifier', htmlDescription='

The branch identifier

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=string, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:25:59,335 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::nsmEntry, _objData=UmlObjectData [id=3981, uuid={D16EB47B-7D14-4b5a-87B0-9E3757C72F57}, since=null, name=objectBranchId, alias=, stereotype=, visibility=public, txtDescription='The branch identifier', htmlDescription='

The branch identifier

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=string, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:25:59,411 [main] DEBUG AssociationEndBuilder - Updated source type to nsmEntry +2024-09-08 08:25:59,411 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=53, uuid=d82c8d16-19ad-3176-9665-453cfb2e55f0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=nsmEntry, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=54, uuid=a684ecee-e76f-3522-b732-86a895bc8436, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=226, uuid={18809321-3AB3-4ee2-8EFB-837D3C11C6DB}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::nsmEntry +2024-09-08 08:25:59,411 [main] TRACE ClassBuilder - read from EA: nsmAgent::nsmEntry +2024-09-08 08:25:59,419 [main] TRACE ClassBuilder - Class nsmEvent (0 in package nsmAgent) +2024-09-08 08:25:59,456 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::nsmEvent, _objData=UmlObjectData [id=3443, uuid={897C9792-FFA0-4111-80BB-4973BBF14FBE}, since=null, name=mibPrefix, alias=, stereotype=, visibility=public, txtDescription='The prefix to be added to the each Attributes when used within this Agent branch', htmlDescription='

The prefix to be added to the each Attributes when used within this Agent branch

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=string, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:25:59,468 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::nsmEvent, _objData=UmlObjectData [id=3444, uuid={46527C35-A279-40fb-90C3-546B6430D724}, since=null, name=objectIdentity, alias=, stereotype=, visibility=public, txtDescription='The branch identifier', htmlDescription='

The branch identifier

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=string, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:25:59,481 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::nsmEvent, _objData=UmlObjectData [id=3445, uuid={07EF49E6-1576-43ed-9364-792638FA9A7F}, since=null, name=objectBranchId, alias=, stereotype=, visibility=public, txtDescription='The branch identifier', htmlDescription='

The branch identifier

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=string, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:25:59,559 [main] DEBUG AssociationEndBuilder - Updated source type to nsmEvent +2024-09-08 08:25:59,559 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=48, uuid=642e92ef-b794-3173-8881-b53e1e1b18b6, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=nsmEvent, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=49, uuid=f457c545-a9de-388f-98ec-ee47145a72c0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=181, uuid={B87BF513-6F00-4a87-8745-0EFE6669608B}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::nsmEvent +2024-09-08 08:25:59,559 [main] TRACE ClassBuilder - read from EA: nsmAgent::nsmEvent +2024-09-08 08:25:59,566 [main] TRACE ClassBuilder - Class performance (0 in package nsmAgent) +2024-09-08 08:25:59,592 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::performance, _objData=UmlObjectData [id=3455, uuid={F52F6387-CDFF-4a2a-B4C3-3E25870BE05A}, since=null, name=Version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:25:59,671 [main] DEBUG AssociationEndBuilder - Updated source type to performance +2024-09-08 08:25:59,671 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=31, uuid=c16a5320-fa47-3530-9958-3c34fd356ef5, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=performance, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=32, uuid=6364d3f0-f495-36ab-9dcf-8d3b5c6e0b01, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=186, uuid={5A0BDE1C-4479-472a-95D9-5E2FF2FB1D48}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::performance +2024-09-08 08:25:59,671 [main] TRACE ClassBuilder - read from EA: nsmAgent::performance +2024-09-08 08:25:59,678 [main] TRACE ClassBuilder - Class protocol (0 in package nsmAgent) +2024-09-08 08:25:59,707 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::protocol, _objData=UmlObjectData [id=3447, uuid={F2329AA5-0361-4f8c-92BD-CE45DB120CE3}, since=null, name=Version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:25:59,782 [main] DEBUG AssociationEndBuilder - Updated source type to protocol +2024-09-08 08:25:59,782 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=15, uuid=9bf31c7f-f062-336a-96d3-c8bd1f8f2ff3, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=protocol, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=16, uuid=c74d97b0-1eae-357e-84aa-9d5bade97baf, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=179, uuid={AB14A505-E58D-4c64-BE95-5835E1FE0435}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::protocol +2024-09-08 08:25:59,782 [main] TRACE ClassBuilder - read from EA: nsmAgent::protocol +2024-09-08 08:25:59,789 [main] TRACE ClassBuilder - Class security (0 in package nsmAgent) +2024-09-08 08:25:59,816 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::security, _objData=UmlObjectData [id=3446, uuid={7B1451A9-BA4A-4172-938F-AE95484B650C}, since=null, name=Version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:25:59,895 [main] DEBUG AssociationEndBuilder - Updated source type to security +2024-09-08 08:25:59,895 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=19, uuid=1f0e3dad-9990-3345-b743-9f8ffabdffc4, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=security, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=20, uuid=98f13708-2101-34c4-b568-7be6106a3b84, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=180, uuid={81333E16-399C-4a6d-83B9-BAC271270F32}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::security +2024-09-08 08:25:59,896 [main] TRACE ClassBuilder - read from EA: nsmAgent::security +2024-09-08 08:25:59,903 [main] TRACE ClassBuilder - Class setvalue (0 in package nsmAgent) +2024-09-08 08:25:59,937 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::setvalue, _objData=UmlObjectData [id=3456, uuid={5980FD0B-7618-42e2-8A8F-B4A3BA69C461}, since=null, name=Version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:00,026 [main] DEBUG AssociationEndBuilder - Updated source type to setvalue +2024-09-08 08:26:00,027 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=35, uuid=1c383cd3-0b7c-398a-b502-93adfecb7b18, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=setvalue, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=36, uuid=19ca14e7-ea63-38a4-ae0e-b13d585e4c22, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=187, uuid={D024B2AD-A446-46a8-9026-6CAB3B506EAD}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::setvalue +2024-09-08 08:26:00,027 [main] TRACE ClassBuilder - read from EA: nsmAgent::setvalue +2024-09-08 08:26:00,052 [main] TRACE ClassBuilder - Class table (0 in package nsmAgent) +2024-09-08 08:26:00,083 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::table, _objData=UmlObjectData [id=3457, uuid={50B5AB79-81F7-412a-AF6C-15E7D27E4EC6}, since=null, name=Version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:00,166 [main] DEBUG AssociationEndBuilder - Updated source type to table +2024-09-08 08:26:00,166 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=43, uuid=17e62166-fc85-36df-a4d1-bc0e1742c08b, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=table, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=44, uuid=f7177163-c833-3ff4-b38f-c8d2872f1ec6, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=188, uuid={779BD3EC-A6F0-4fa2-AF25-CF73DEB80D9D}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::table +2024-09-08 08:26:00,166 [main] TRACE ClassBuilder - read from EA: nsmAgent::table +2024-09-08 08:26:00,174 [main] TRACE ClassBuilder - Class trap (0 in package nsmAgent) +2024-09-08 08:26:00,208 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=nsmAgent::trap, _objData=UmlObjectData [id=3610, uuid={321E6795-47CE-4d0f-A903-28BFD422C88F}, since=null, name=Version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:00,279 [main] DEBUG AssociationEndBuilder - Updated source type to trap +2024-09-08 08:26:00,280 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=39, uuid=d67d8ab4-f4c1-3bf2-aaa3-53e27879133c, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=trap, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=40, uuid=d645920e-395f-3dad-bbbb-ed0eca3fe2e0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Attribute, _multiplicity=[?..?], _navigable=yes], _objData=UmlObjectData [id=207, uuid={EF3A2C3D-0E4D-4d2e-98CA-E29A17F69D6F}, since=null, name=, alias=, stereotype=extends, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to nsmAgent::trap +2024-09-08 08:26:00,280 [main] TRACE ClassBuilder - read from EA: nsmAgent::trap +2024-09-08 08:26:00,293 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Profiles, _depth=4, _eaElementID=881, _objData=UmlObjectData [id=330, uuid={5A3BC3BE-A490-436c-A0C4-BF2365F8CDD4}, since=null, name=nsmAgent, alias=, stereotype=profile, visibility=public, txtDescription='', htmlDescription=''], _modelId=362, _selfDependent=false, 1_taggedValues{_profile_data=}, 1_diagrams=[DiagramBuilder [_containingPackage=nsmAgent, _objData=UmlObjectData [id=52, uuid={8F3F8B93-6E15-4fcf-9C40-83EB793F28A5}, since=null, name=nsmAgent, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _classes=24 +2024-09-08 08:26:00,293 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=880, _objData=UmlObjectData [id=329, uuid={9FD92520-A629-4fe0-9C99-D01EACC33DFB}, since=null, name=Profiles, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=362, _selfDependent=false, 1_taggedValues{_profile_data=}, 1_diagrams=[DiagramBuilder [_containingPackage=Profiles, _objData=UmlObjectData [id=51, uuid={4642A2B9-A297-45be-A2B5-28C4F1A2B373}, since=null, name=Part7Profiles, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _childPackages=1] +2024-09-08 08:26:00,316 [main] INFO PackageBuilder - processing package Overview (2) ... +2024-09-08 08:26:00,360 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Overview, _objData=UmlObjectData [id=23, uuid={1EC9B9AC-962E-4b2c-A2A8-EFB524CF896E}, since=null, name=Part7 Classes Overview, alias=, stereotype=, visibility=public, txtDescription='IEC 62351-7 Objects overview', htmlDescription='

IEC 62351-7 Objects overview

'], _portrait=true, _kind=LOGICAL] +2024-09-08 08:26:00,458 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=941, uuid={F4ED4B79-564B-4c10-81A0-56580DAC755C}, since=null, name=IEC 60870, DNP and IEC 62351, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Overview, _otherEndName=] +2024-09-08 08:26:00,466 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=939, uuid={A16E0E74-46E5-4db2-9B18-5CAA5D5C1EE4}, since=null, name=IEC 61850, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Overview, _otherEndName=] +2024-09-08 08:26:00,470 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=872, _objData=UmlObjectData [id=324, uuid={E9E467F0-A1DE-4274-9A43-A31884D06B9B}, since=null, name=Overview, alias=, stereotype=, visibility=public, txtDescription='The NSM agent objects are organized in a UML package hierarchy that is shown in Figure 15. The application protocol branch is organized into further substructures that include the specific protocols agents. +The tree of packages is reflected in the translation to the SNMP MIB structure. This MIB structure shall respect additional constraints. For instance the reuse of attribute names in different MIB branches is not allowed. Additional MIB constraints are related to naming conventions and the OID specification.', htmlDescription='

The NSM agent objects are organized in a UML package hierarchy that is shown in Figure 15. The application protocol branch is organized into further substructures that include the specific protocols agents.

The tree of packages is reflected in the translation to the SNMP MIB structure. This MIB structure shall respect additional constraints. For instance the reuse of attribute names in different MIB branches is not allowed. Additional MIB constraints are related to naming conventions and the OID specification.

'], _modelId=362, _selfDependent=false, 2_skippedEaItems=[SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=941, uuid={F4ED4B79-564B-4c10-81A0-56580DAC755C}, since=null, name=IEC 60870, DNP and IEC 62351, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Overview, _otherEndName=], SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=939, uuid={A16E0E74-46E5-4db2-9B18-5CAA5D5C1EE4}, since=null, name=IEC 61850, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Overview, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=Overview, _objData=UmlObjectData [id=23, uuid={1EC9B9AC-962E-4b2c-A2A8-EFB524CF896E}, since=null, name=Part7 Classes Overview, alias=, stereotype=, visibility=public, txtDescription='IEC 62351-7 Objects overview', htmlDescription='

IEC 62351-7 Objects overview

'], _portrait=true, _kind=LOGICAL]] +2024-09-08 08:26:00,478 [main] INFO PackageBuilder - processing package BaseTypes (3) ... +2024-09-08 08:26:00,871 [main] TRACE ClassBuilder - Class AbsoluteDateTime (1 in package BaseTypes) +2024-09-08 08:26:00,904 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::AbsoluteDateTime, _objData=UmlObjectData [id=2741, uuid={F3AF56F9-1853-4d50-BE66-55698A10D728}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='String representation of date and time.', htmlDescription='

String representation of date and time.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=OCTET STRING (SIZE(8..11)), _eaTypeId=0, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:00,909 [main] TRACE ClassBuilder - read from EA: BaseTypes::AbsoluteDateTime +2024-09-08 08:26:00,916 [main] TRACE ClassBuilder - Class Counter32 (2 in package BaseTypes) +2024-09-08 08:26:00,946 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::Counter32 , _objData=UmlObjectData [id=2679, uuid={FA17507F-4E8A-4a30-A8AB-34397CB7B197}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='The range of allowed values must be specified.', htmlDescription='

The range of allowed values must be specified.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=Counter32, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:00,952 [main] TRACE ClassBuilder - read from EA: BaseTypes::Counter32 +2024-09-08 08:26:00,958 [main] TRACE ClassBuilder - Class DateAndTime (3 in package BaseTypes) +2024-09-08 08:26:00,987 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::DateAndTime, _objData=UmlObjectData [id=2681, uuid={E60E2615-6D31-4e8f-AF20-74D562BF4897}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='String representation of date and time according with SMIv2.', htmlDescription='

String representation of date and time according with SMIv2.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=OCTET STRING (SIZE(8..11)), _eaTypeId=0, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:00,993 [main] TRACE ClassBuilder - read from EA: BaseTypes::DateAndTime +2024-09-08 08:26:01,001 [main] TRACE ClassBuilder - Class DisplayString (4 in package BaseTypes) +2024-09-08 08:26:01,062 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::DisplayString, _objData=UmlObjectData [id=2683, uuid={5A7A658D-D236-49b6-BA65-B91C55B54DE8}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='The range of allowed values must be specified.', htmlDescription='

The range of allowed values must be specified.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=DisplayString, _eaTypeId=662, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:01,070 [main] TRACE ClassBuilder - read from EA: BaseTypes::DisplayString +2024-09-08 08:26:01,078 [main] TRACE ClassBuilder - Class Float32TC (6 in package BaseTypes) +2024-09-08 08:26:01,108 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::Float32TC, _objData=UmlObjectData [id=2682, uuid={82BCCE12-A0B4-4061-803E-FD3AE22BF6DC}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='This type represents a 32-bit (4-octet) IEEE floating-point number in binary interchange format', htmlDescription='

This type represents a 32-bit (4-octet) IEEE floating-point number in binary interchange format

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=OCTET STRING (SIZE(4)), _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:01,114 [main] TRACE ClassBuilder - read from EA: BaseTypes::Float32TC +2024-09-08 08:26:01,124 [main] TRACE ClassBuilder - Class Gauge32 (7 in package BaseTypes) +2024-09-08 08:26:01,158 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::Gauge32, _objData=UmlObjectData [id=2678, uuid={FFFF9E05-F8E0-4bc6-B3AB-1A2B5D086BB8}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='The range of allowed values must be specified.', htmlDescription='

The range of allowed values must be specified.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=Gauge32, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:01,164 [main] TRACE ClassBuilder - read from EA: BaseTypes::Gauge32 +2024-09-08 08:26:01,174 [main] TRACE ClassBuilder - Class InetAddress (9 in package BaseTypes) +2024-09-08 08:26:01,201 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::InetAddress, _objData=UmlObjectData [id=3682, uuid={B67A78A1-439B-400a-A30B-D4240DC32266}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='The range of allowed values must be specified.', htmlDescription='

The range of allowed values must be specified.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=DisplayString (SIZE(0..255)), _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:01,207 [main] TRACE ClassBuilder - read from EA: BaseTypes::InetAddress +2024-09-08 08:26:01,216 [main] TRACE ClassBuilder - Class MacAddress (9 in package BaseTypes) +2024-09-08 08:26:01,250 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::MacAddress, _objData=UmlObjectData [id=3719, uuid={96C8CC34-E7C1-46d8-B06F-8DF3BCF5E1C8}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='The range of allowed values must be specified.', htmlDescription='

The range of allowed values must be specified.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=DisplayString (SIZE(0..255)), _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:01,257 [main] TRACE ClassBuilder - read from EA: BaseTypes::MacAddress +2024-09-08 08:26:01,263 [main] TRACE ClassBuilder - Class InetAddressType (10 in package BaseTypes) +2024-09-08 08:26:01,309 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::InetAddressType, _objData=UmlObjectData [id=3685, uuid={7907F04A-B00E-486d-A58A-BB3F1695DE2B}, since=null, name=unknown, alias=, stereotype=enum, visibility=public, txtDescription='Indicates unknown type', htmlDescription='

Indicates unknown type

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:01,326 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::InetAddressType, _objData=UmlObjectData [id=3686, uuid={1E6CB781-CF7B-41f1-A0A8-9724E82FF6E9}, since=null, name=ipv4, alias=, stereotype=enum, visibility=public, txtDescription='An IPv4 address as defined by the InetAddressIPv4 textual convention.', htmlDescription='

An IPv4 address as defined by the InetAddressIPv4 textual convention.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:01,338 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::InetAddressType, _objData=UmlObjectData [id=3687, uuid={A7C3B60B-E33D-4d5c-8338-53FABA39CA4F}, since=null, name=ipv6, alias=, stereotype=enum, visibility=public, txtDescription='An IPv6 address as defined by the InetAddressIPv6 textual convention.', htmlDescription='

An IPv6 address as defined by the InetAddressIPv6 textual convention.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:01,353 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::InetAddressType, _objData=UmlObjectData [id=3688, uuid={F3691BC4-D8C1-4abc-B19E-53E33A9BF458}, since=null, name=ipv4z, alias=, stereotype=enum, visibility=public, txtDescription='A non-global IPv4 address including a zone index as defined by the InetAddressIPv4z textual convention.', htmlDescription='

A non-global IPv4 address including a zone index as defined by the InetAddressIPv4z textual convention.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:01,365 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::InetAddressType, _objData=UmlObjectData [id=3689, uuid={1E81FD33-C128-45bc-920A-8C4BD7E2DEBD}, since=null, name=ipv6z, alias=, stereotype=enum, visibility=public, txtDescription='A non-global IPv6 address including a zone index as defined by the InetAddressIPv6z textual convention.', htmlDescription='

A non-global IPv6 address including a zone index as defined by the InetAddressIPv6z textual convention.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:01,377 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::InetAddressType, _objData=UmlObjectData [id=3683, uuid={CA22E66E-263F-4cc6-A4E8-C19D9E3C14C2}, since=null, name=dns, alias=, stereotype=enum, visibility=public, txtDescription='A non-global IPv6 address including a zone index as defined by the InetAddressIPv6z textual convention.', htmlDescription='

A non-global IPv6 address including a zone index as defined by the InetAddressIPv6z textual convention.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=16, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:01,385 [main] TRACE ClassBuilder - read from EA: BaseTypes::InetAddressType +2024-09-08 08:26:01,394 [main] TRACE ClassBuilder - Class EntityIndex (11 in package BaseTypes) +2024-09-08 08:26:01,497 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::EntityIndex, _objData=UmlObjectData [id=3723, uuid={79B557BD-8843-4e68-94FA-BA4CD410B0E4}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='Integer value 1..2147483647', htmlDescription='

Integer value 1..2147483647

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=Integer32, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:01,506 [main] TRACE ClassBuilder - read from EA: BaseTypes::EntityIndex +2024-09-08 08:26:01,513 [main] TRACE ClassBuilder - Class Integer32 (11 in package BaseTypes) +2024-09-08 08:26:01,543 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::Integer32, _objData=UmlObjectData [id=1397, uuid={16A49FC2-9DFE-4d0a-AF1A-139BBD3A6396}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='Integer value -2147483648..2147483647 (inclusive) according to SMI v2', htmlDescription='

Integer value -2147483648..2147483647 (inclusive) according to SMI v2

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=Integer32, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:01,549 [main] TRACE ClassBuilder - read from EA: BaseTypes::Integer32 +2024-09-08 08:26:01,558 [main] TRACE ClassBuilder - Class Unsigned32 (11 in package BaseTypes) +2024-09-08 08:26:01,587 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::Unsigned32, _objData=UmlObjectData [id=3721, uuid={0EB7C369-E8EA-4733-8E05-C3D43A4FC483}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='The range of allowed values must be specified.', htmlDescription='

The range of allowed values must be specified.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=Integer32, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:01,592 [main] TRACE ClassBuilder - read from EA: BaseTypes::Unsigned32 +2024-09-08 08:26:01,601 [main] TRACE ClassBuilder - Class TimeTicks (15 in package BaseTypes) +2024-09-08 08:26:01,631 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::TimeTicks, _objData=UmlObjectData [id=2680, uuid={6097D103-479F-41f4-9A97-1F94284761AB}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='The range of allowed values must be specified.', htmlDescription='

The range of allowed values must be specified.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=TimeTicks, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:01,637 [main] TRACE ClassBuilder - read from EA: BaseTypes::TimeTicks +2024-09-08 08:26:01,642 [main] TRACE ClassBuilder - Class TruthValue (16 in package BaseTypes) +2024-09-08 08:26:01,669 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BaseTypes::TruthValue, _objData=UmlObjectData [id=2685, uuid={8672694D-2B24-4f77-957A-398B85E13893}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='Represents a boolean value. INTEGER { true(1), false(2) } according with RFC 2579', htmlDescription='

Represents a boolean value. INTEGER { true(1), false(2) } according with RFC 2579

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=TruthValue, _eaTypeId=0, _eaTypeName=int, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:01,676 [main] TRACE ClassBuilder - read from EA: BaseTypes::TruthValue +2024-09-08 08:26:01,680 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=163, _objData=UmlObjectData [id=45, uuid={66B1AE60-7FA0-4e1d-80D0-B1602C003F67}, since=null, name=BaseTypes, alias=, stereotype=, visibility=public, txtDescription='This package include the base data type. The type is inherited from the SNMP naming convention and is needed for the mapping from the a abstract types.', htmlDescription='

This package include the base data type. The type is inherited from the SNMP naming convention and is needed for the mapping from the a abstract types.

'], _modelId=362, _selfDependent=false, _classes=14 +2024-09-08 08:26:01,686 [main] INFO PackageBuilder - processing package Abstract Types (4) ... +2024-09-08 08:26:02,215 [main] TRACE ClassBuilder - Class BooleanValue (1 in package Abstract Types) +2024-09-08 08:26:02,270 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::BooleanValue, _objData=UmlObjectData [id=2987, uuid={AD4E7F12-52BE-4498-9D56-489F0D36E706}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Represents a boolean value.', htmlDescription='

Represents a boolean value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=636, _eaTypeName=TruthValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:02,292 [main] TRACE ClassBuilder - read from EA: Abstract Types::BooleanValue +2024-09-08 08:26:02,299 [main] TRACE ClassBuilder - Class BooleanValueTs (2 in package Abstract Types) +2024-09-08 08:26:02,378 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::BooleanValueTs, _objData=UmlObjectData [id=2915, uuid={3DFAA603-DD4F-4fb0-B38D-E41B9F5976AD}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:02,389 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::BooleanValueTs, _objData=UmlObjectData [id=2916, uuid={3EDE9EA6-FA52-457e-9F52-95B08337CC6C}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Represents a boolean value.', htmlDescription='

Represents a boolean value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=636, _eaTypeName=TruthValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:02,410 [main] TRACE ClassBuilder - read from EA: Abstract Types::BooleanValueTs +2024-09-08 08:26:02,417 [main] TRACE ClassBuilder - Class CounterTs (5 in package Abstract Types) +2024-09-08 08:26:02,502 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::CounterTs, _objData=UmlObjectData [id=2921, uuid={41F902F6-723F-4b04-A87D-8CFABFCB21DE}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:02,587 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::CounterTs, _objData=UmlObjectData [id=2922, uuid={CD1BCCAD-7FF8-4fd1-A24D-07EEC8C393A6}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='According to SMI v2, used to specify a value which represents a count. The range is 0 to 4294967295.', htmlDescription='

According to SMI v2, used to specify a value which represents a count. The range is 0 to 4294967295.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=624, _eaTypeName=Counter32 , _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:02,611 [main] TRACE ClassBuilder - read from EA: Abstract Types::CounterTs +2024-09-08 08:26:02,619 [main] TRACE ClassBuilder - Class CntRs (7 in package Abstract Types) +2024-09-08 08:26:02,700 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::CntRs, _objData=UmlObjectData [id=3004, uuid={CBFD6F89-8B72-4d52-BB3D-1F897706A12D}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:02,712 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::CntRs, _objData=UmlObjectData [id=3003, uuid={8CAFD2C5-0DE7-4308-93B7-D49D6E8065AD}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Boolean', htmlDescription='

Boolean

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=636, _eaTypeName=TruthValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:02,735 [main] TRACE ClassBuilder - read from EA: Abstract Types::CntRs +2024-09-08 08:26:02,741 [main] TRACE ClassBuilder - Class Floating (8 in package Abstract Types) +2024-09-08 08:26:02,794 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::Floating, _objData=UmlObjectData [id=2937, uuid={C1ACEE33-E3BF-408c-AA52-21345E91BD5B}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='IEEE Standard for Floating-Point Arithmetic, Standard 754-2008', htmlDescription='

IEEE Standard for Floating-Point Arithmetic, Standard 754-2008

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=630, _eaTypeName=Float32TC, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:02,815 [main] TRACE ClassBuilder - read from EA: Abstract Types::Floating +2024-09-08 08:26:02,821 [main] TRACE ClassBuilder - Class FloatingTs (9 in package Abstract Types) +2024-09-08 08:26:02,904 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::FloatingTs, _objData=UmlObjectData [id=2939, uuid={DFBCD799-E7D8-4865-988A-FB02011B6B88}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:02,917 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::FloatingTs, _objData=UmlObjectData [id=2940, uuid={111399D4-DEC9-4f43-A8B9-0E3848228A09}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='IEEE Standard for Floating-Point Arithmetic, Standard 754-2008', htmlDescription='

IEEE Standard for Floating-Point Arithmetic, Standard 754-2008

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=630, _eaTypeName=Float32TC, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:02,937 [main] TRACE ClassBuilder - read from EA: Abstract Types::FloatingTs +2024-09-08 08:26:02,943 [main] TRACE ClassBuilder - Class EntityIndex (11 in package Abstract Types) +2024-09-08 08:26:02,994 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::EntityIndex, _objData=UmlObjectData [id=3724, uuid={5A44C892-8691-42d1-B0D8-D8DE77225CA8}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Integer value 1..2147483647 index', htmlDescription='

Integer value 1..2147483647 index

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=968, _eaTypeName=Unsigned32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:03,014 [main] TRACE ClassBuilder - read from EA: Abstract Types::EntityIndex +2024-09-08 08:26:03,021 [main] TRACE ClassBuilder - Class Integer (11 in package Abstract Types) +2024-09-08 08:26:03,071 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::Integer, _objData=UmlObjectData [id=2928, uuid={A4296952-0928-44e2-8560-C6B0DC4466A7}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Integer value -2147483648..2147483647 (inclusive) according to SMI v2', htmlDescription='

Integer value -2147483648..2147483647 (inclusive) according to SMI v2

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=173, _eaTypeName=Integer32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:03,094 [main] TRACE ClassBuilder - read from EA: Abstract Types::Integer +2024-09-08 08:26:03,101 [main] TRACE ClassBuilder - Class IntegerTs (12 in package Abstract Types) +2024-09-08 08:26:03,214 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::IntegerTs, _objData=UmlObjectData [id=2930, uuid={B1DF3BAC-B146-48d1-B242-E0EE779A9B56}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:03,226 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::IntegerTs, _objData=UmlObjectData [id=2931, uuid={D8B8C3AD-4B33-445e-9393-31D5B1982D4A}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Integer value -2147483648..2147483647 (inclusive) according to SMI v2', htmlDescription='

Integer value -2147483648..2147483647 (inclusive) according to SMI v2

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=173, _eaTypeName=Integer32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:03,247 [main] TRACE ClassBuilder - read from EA: Abstract Types::IntegerTs +2024-09-08 08:26:03,253 [main] TRACE ClassBuilder - Class InetAddress (14 in package Abstract Types) +2024-09-08 08:26:03,309 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::InetAddress, _objData=UmlObjectData [id=3017, uuid={8A787CF9-BA07-4486-A4DF-1CF9BA7A3A41}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='A value that represents an Internet address according to IETF RFC 4001.', htmlDescription='

A value that represents an Internet address according to IETF RFC 4001.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=952, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:03,335 [main] TRACE ClassBuilder - read from EA: Abstract Types::InetAddress +2024-09-08 08:26:03,344 [main] TRACE ClassBuilder - Class InetAddressType (15 in package Abstract Types) +2024-09-08 08:26:03,426 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::InetAddressType, _objData=UmlObjectData [id=3690, uuid={117C0501-377C-4bf4-90D9-77F084F0628D}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Address Type', htmlDescription='

Address Type

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=954, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:03,459 [main] TRACE ClassBuilder - read from EA: Abstract Types::InetAddressType +2024-09-08 08:26:03,468 [main] TRACE ClassBuilder - Class MacAddress (16 in package Abstract Types) +2024-09-08 08:26:03,528 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::MacAddress, _objData=UmlObjectData [id=3019, uuid={212F7F94-30C7-4296-9560-DDE128B43ABE}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='OCTET STRING (SIZE (6)), DISPLAY-HINT "1x:"', htmlDescription='

OCTET STRING (SIZE (6)), DISPLAY-HINT "1x:"

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=966, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:03,550 [main] TRACE ClassBuilder - read from EA: Abstract Types::MacAddress +2024-09-08 08:26:03,557 [main] TRACE ClassBuilder - Class Selector (17 in package Abstract Types) +2024-09-08 08:26:03,679 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::Selector, _objData=UmlObjectData [id=3015, uuid={2B45785E-70C4-45d5-B68C-37E64794195C}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='For Transport Selector, max length is 8. For Session and Presentation Selector max length is 16.', htmlDescription='

For Transport Selector, max length is 8. For Session and Presentation Selector max length is 16.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=632, _eaTypeName=DisplayString, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:03,699 [main] TRACE ClassBuilder - read from EA: Abstract Types::Selector +2024-09-08 08:26:03,706 [main] TRACE ClassBuilder - Class Timestamp (18 in package Abstract Types) +2024-09-08 08:26:03,753 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::Timestamp, _objData=UmlObjectData [id=3083, uuid={1090CB92-2A2F-4fef-8659-3BD00578C467}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='The value of year is in network-byte order, fractions of second is as defined in RFC 5905, epoch is defined as Midnight January 1, 1970.', htmlDescription='

The value of year is in network-byte order, fractions of second is as defined in RFC 5905, epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:03,773 [main] TRACE ClassBuilder - read from EA: Abstract Types::Timestamp +2024-09-08 08:26:03,780 [main] TRACE ClassBuilder - Class CharString (19 in package Abstract Types) +2024-09-08 08:26:03,834 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::CharString, _objData=UmlObjectData [id=2989, uuid={E34DC27C-7282-4663-B1EF-D2B160F31A39}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Represents a String.', htmlDescription='

Represents a String.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=632, _eaTypeName=DisplayString, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:03,867 [main] TRACE ClassBuilder - read from EA: Abstract Types::CharString +2024-09-08 08:26:03,874 [main] TRACE ClassBuilder - Class CharStringTs (20 in package Abstract Types) +2024-09-08 08:26:03,952 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::CharStringTs, _objData=UmlObjectData [id=3380, uuid={AF16BFAF-FF80-4499-9DAD-A58391568338}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:03,964 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abstract Types::CharStringTs, _objData=UmlObjectData [id=3379, uuid={2E8EFCAA-307D-4001-97ED-98DC7A6FCC62}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Represents a String.', htmlDescription='

Represents a String.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=632, _eaTypeName=DisplayString, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:03,992 [main] TRACE ClassBuilder - read from EA: Abstract Types::CharStringTs +2024-09-08 08:26:03,998 [main] TRACE ClassBuilder - Class AbstractBaseType (21 in package Abstract Types) +2024-09-08 08:26:04,427 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of BooleanValue +2024-09-08 08:26:04,429 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of Integer +2024-09-08 08:26:04,431 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of BooleanValueTs +2024-09-08 08:26:04,433 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of CounterTs +2024-09-08 08:26:04,435 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of Floating +2024-09-08 08:26:04,437 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of FloatingTs +2024-09-08 08:26:04,438 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of IntegerTs +2024-09-08 08:26:04,440 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of CharString +2024-09-08 08:26:04,442 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of CharStringTs +2024-09-08 08:26:04,443 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of Timestamp +2024-09-08 08:26:04,445 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of Selector +2024-09-08 08:26:04,447 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of MacAddress +2024-09-08 08:26:04,448 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of InetAddressType +2024-09-08 08:26:04,450 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of InetAddress +2024-09-08 08:26:04,452 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of EntityIndex +2024-09-08 08:26:04,454 [main] DEBUG ClassBuilder - Adding AbstractBaseType as superclass of CntRs +2024-09-08 08:26:04,476 [main] TRACE ClassBuilder - read from EA: Abstract Types::AbstractBaseType +2024-09-08 08:26:04,482 [main] TRACE ClassBuilder - Class AbstractAgent (22 in package Abstract Types) +2024-09-08 08:26:05,110 [main] TRACE ClassBuilder - read from EA: Abstract Types::AbstractAgent +2024-09-08 08:26:05,112 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=710, _objData=UmlObjectData [id=259, uuid={5004F08F-A898-4404-9AC0-FF579C27E37E}, since=null, name=Abstract Types, alias=, stereotype=, visibility=public, txtDescription='The abstract objects used within each agent are mapped to the following object types, except for the objects that refer to special enumerated data types which are defined by their own dedicated types. +Abstract objects are classified by the following attributes: +- Type of data (Boolean, Counter, Integer, Float) +- Timestamp required for each status value change +The type object naming actually reflects this classification, as provided in the description of each abstract type.', htmlDescription='

The abstract objects used within each agent are mapped to the following object types, except for the objects that refer to special enumerated data types which are defined by their own dedicated types.

Abstract objects are classified by the following attributes:

  • Type of data (Boolean, Counter, Integer, Float)
  • Timestamp required for each status value change

The type object naming actually reflects this classification, as provided in the description of each abstract type.

'], _modelId=362, _selfDependent=false, _classes=18 +2024-09-08 08:26:05,119 [main] INFO PackageBuilder - processing package EnumeratedTypes (5) ... +2024-09-08 08:26:05,756 [main] TRACE ClassBuilder - Class AppDatStKind (1 in package EnumeratedTypes) +2024-09-08 08:26:05,859 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::AppDatStKind, _objData=UmlObjectData [id=1780, uuid={088C6AC2-2351-44bf-92A5-C8E7C03B4C15}, since=null, name=unknown, alias=, stereotype=enum, visibility=public, txtDescription='No information available about the environment.', htmlDescription='

No information available about the environment.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=true, _isTypeSuperfluous=true, _type=null] +2024-09-08 08:26:05,876 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::AppDatStKind, _objData=UmlObjectData [id=1781, uuid={4624AC11-61D2-4ce9-99AF-1512A03A0802}, since=null, name=good, alias=, stereotype=enum, visibility=public, txtDescription='Good environment status.', htmlDescription='

Good environment status.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=int, _isLiteral=true, _isTypeSuperfluous=true, _type=null] +2024-09-08 08:26:05,889 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::AppDatStKind, _objData=UmlObjectData [id=1782, uuid={8143CB0E-A1A4-4abf-820C-2678E62A29E1}, since=null, name=bad, alias=, stereotype=enum, visibility=public, txtDescription='Environmental problems detected.', htmlDescription='

Environmental problems detected.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=2, _eaTypeId=0, _eaTypeName=int, _isLiteral=true, _isTypeSuperfluous=true, _type=null] +2024-09-08 08:26:05,896 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::AppDatStKind +2024-09-08 08:26:05,903 [main] TRACE ClassBuilder - Class PhyHealthKind (1 in package EnumeratedTypes) +2024-09-08 08:26:05,932 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::PhyHealthKind, _objData=UmlObjectData [id=4113, uuid={37ACCA99-1DF6-4847-8122-3BCE07D878BA}, since=null, name=ok, alias=, stereotype=enum, visibility=public, txtDescription='No problems, normal operation.', htmlDescription='

No problems, normal operation.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=true, _isTypeSuperfluous=true, _type=null] +2024-09-08 08:26:05,945 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::PhyHealthKind, _objData=UmlObjectData [id=4114, uuid={5D46B37F-ECC9-4e40-8A90-5061744F8173}, since=null, name=warning, alias=, stereotype=enum, visibility=public, txtDescription='Minor problems, but in safe operation mode.', htmlDescription='

Minor problems, but in safe operation mode.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=int, _isLiteral=true, _isTypeSuperfluous=true, _type=null] +2024-09-08 08:26:05,957 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::PhyHealthKind, _objData=UmlObjectData [id=4115, uuid={D7AB716A-CA99-403b-9D93-D795563A98BC}, since=null, name=alarm, alias=, stereotype=enum, visibility=public, txtDescription='Severe problem, no operation possible.', htmlDescription='

Severe problem, no operation possible.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=2, _eaTypeId=0, _eaTypeName=int, _isLiteral=true, _isTypeSuperfluous=true, _type=null] +2024-09-08 08:26:05,963 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::PhyHealthKind +2024-09-08 08:26:05,971 [main] TRACE ClassBuilder - Class ExtKind (2 in package EnumeratedTypes) +2024-09-08 08:26:06,000 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ExtKind, _objData=UmlObjectData [id=3369, uuid={27CBBAC5-2512-4f4b-A0B1-935AC701B409}, since=null, name=unknown, alias=, stereotype=enum, visibility=public, txtDescription='unknown module', htmlDescription='

unknown module

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:06,012 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ExtKind, _objData=UmlObjectData [id=3370, uuid={34D83563-3678-4f50-8C33-ACE3F6629F9D}, since=null, name=ioModule, alias=, stereotype=enum, visibility=public, txtDescription='I/O module', htmlDescription='

I/O module

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:06,026 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ExtKind, _objData=UmlObjectData [id=3371, uuid={C5B47DA7-C6A6-457c-87C7-E616CA496356}, since=null, name=softwarePLC, alias=, stereotype=enum, visibility=public, txtDescription='Software PLC module', htmlDescription='

Software PLC module

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:06,032 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::ExtKind +2024-09-08 08:26:06,037 [main] TRACE ClassBuilder - Class IntKind (4 in package EnumeratedTypes) +2024-09-08 08:26:06,066 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::IntKind, _objData=UmlObjectData [id=3392, uuid={0CCB0825-478A-4793-9BED-DCE9190E1B71}, since=null, name=wired, alias=, stereotype=enum, visibility=public, txtDescription='Wired interface', htmlDescription='

Wired interface

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:06,077 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::IntKind, _objData=UmlObjectData [id=3393, uuid={9E23B223-6923-4872-B4B4-86CB85C60579}, since=null, name=wireless, alias=, stereotype=enum, visibility=public, txtDescription='Wireless interface', htmlDescription='

Wireless interface

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:06,083 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::IntKind +2024-09-08 08:26:06,091 [main] TRACE ClassBuilder - Class LnkKind (5 in package EnumeratedTypes) +2024-09-08 08:26:06,204 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::LnkKind, _objData=UmlObjectData [id=2720, uuid={04896740-8BD1-4a07-987A-351CE576D6E0}, since=null, name=unknown, alias=, stereotype=enum, visibility=public, txtDescription='unknown', htmlDescription='

unknown

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:06,218 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::LnkKind, _objData=UmlObjectData [id=2721, uuid={61312937-D7B2-4aff-BF7B-CC599BE0AF64}, since=null, name=serial, alias=, stereotype=enum, visibility=public, txtDescription='serial', htmlDescription='

serial

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:06,231 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::LnkKind, _objData=UmlObjectData [id=2722, uuid={C0A08551-30DD-4843-9619-727AC796310A}, since=null, name=tcp, alias=, stereotype=enum, visibility=public, txtDescription='tcp', htmlDescription='

tcp

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:06,243 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::LnkKind, _objData=UmlObjectData [id=2723, uuid={93B64A96-33DB-4cfd-9500-8EC833B7FE0C}, since=null, name=udp, alias=, stereotype=enum, visibility=public, txtDescription='udp', htmlDescription='

udp

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:06,258 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::LnkKind, _objData=UmlObjectData [id=3391, uuid={72A18E68-801C-4831-8D81-BD42E2AC29B7}, since=null, name=eth, alias=, stereotype=enum, visibility=public, txtDescription='Ethernet interface ISO/OSI level 2 protocol, not using UDP and TCP.', htmlDescription='

Ethernet interface ISO/OSI level 2 protocol, not using UDP and TCP.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:06,264 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::LnkKind +2024-09-08 08:26:06,269 [main] TRACE ClassBuilder - Class PSPAccKind (6 in package EnumeratedTypes) +2024-09-08 08:26:06,296 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::PSPAccKind, _objData=UmlObjectData [id=1784, uuid={D408D95C-FFE4-4655-A529-710E301D9B38}, since=null, name=notBeingAccessed, alias=, stereotype=, visibility=public, txtDescription='No access to IED control panel is taking place.', htmlDescription='

No access to IED control panel is taking place.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=int, _isLiteral=true, _isTypeSuperfluous=true, _type=null] +2024-09-08 08:26:06,306 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::PSPAccKind, _objData=UmlObjectData [id=1785, uuid={4FE96E50-3BB9-4a27-9440-1187A89DB87F}, since=null, name=accessOccurring, alias=, stereotype=, visibility=public, txtDescription='An access to IED control panel is taking place.', htmlDescription='

An access to IED control panel is taking place.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=int, _isLiteral=true, _isTypeSuperfluous=true, _type=null] +2024-09-08 08:26:06,314 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::PSPAccKind +2024-09-08 08:26:06,320 [main] TRACE ClassBuilder - Class ProtIdKind (7 in package EnumeratedTypes) +2024-09-08 08:26:06,356 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ProtIdKind, _objData=UmlObjectData [id=3250, uuid={07B1D7D8-39BB-4858-8EA3-BF4F5EC59D4E}, since=null, name=unknown, alias=, stereotype=enum, visibility=public, txtDescription='Unknown protocol', htmlDescription='

Unknown protocol

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:06,369 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ProtIdKind, _objData=UmlObjectData [id=3249, uuid={946B4BE5-1467-4fb2-99F0-66054A2B505E}, since=null, name=iEC6185081, alias=, stereotype=enum, visibility=public, txtDescription='MMS', htmlDescription='

MMS

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:06,381 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ProtIdKind, _objData=UmlObjectData [id=3251, uuid={FCC2EF29-9BF3-42ab-B706-EEC24615E648}, since=null, name=iEC6185081GOOSE, alias=, stereotype=enum, visibility=public, txtDescription='GOOSE. This type indicate also routable GOOSE when the LnkType attribute specifies a routable type (e.g. TCP)', htmlDescription='

GOOSE. This type indicate also routable GOOSE when the LnkType attribute specifies a routable type (e.g. TCP)

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:06,392 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ProtIdKind, _objData=UmlObjectData [id=3252, uuid={53BC9774-9A1A-4ea3-BA2C-3F3E35450676}, since=null, name=iEC6185092SV, alias=, stereotype=enum, visibility=public, txtDescription='SV. This type indicate also routable SV when the LnkType attribute specifies a routable type (e.g. TCP)', htmlDescription='

SV. This type indicate also routable SV when the LnkType attribute specifies a routable type (e.g. TCP)

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:06,404 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ProtIdKind, _objData=UmlObjectData [id=3253, uuid={2C9A588E-9040-4f72-A62A-0A0C70EB186D}, since=null, name=ieee1815DNP, alias=, stereotype=enum, visibility=public, txtDescription='DNP', htmlDescription='

DNP

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:06,416 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ProtIdKind, _objData=UmlObjectData [id=3254, uuid={B7D18D05-3E60-4a6e-9210-E719F96EA21F}, since=null, name=iec608705, alias=, stereotype=enum, visibility=public, txtDescription='IEC 60870-5 (Valid for 101 and 104 companion standards)', htmlDescription='

IEC 60870-5 (Valid for 101 and 104 companion standards)

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=5, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:06,428 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ProtIdKind, _objData=UmlObjectData [id=4503, uuid={BE6DDE6F-88D8-4f32-AB00-B3F5EBFA1B7B}, since=null, name=iEC6185082, alias=, stereotype=enum, visibility=public, txtDescription='MMS over Extensible Messaging Presence Protocol (XMPP)', htmlDescription='

MMS over Extensible Messaging Presence Protocol (XMPP)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=6, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:06,433 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::ProtIdKind +2024-09-08 08:26:06,441 [main] TRACE ClassBuilder - Class EventKind (8 in package EnumeratedTypes) +2024-09-08 08:26:06,477 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3694, uuid={648B3CAD-2A54-403c-8179-4CCAF44C7DFC}, since=null, name=none, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that the application does not exist.', htmlDescription='

Indicates that the application does not exist.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:06,489 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3695, uuid={629EF376-0921-44b8-9D1C-CE35E96EA70C}, since=null, name=unKnown, alias=, stereotype=enum, visibility=public, txtDescription='unclassified type', htmlDescription='

unclassified type

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:06,504 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3696, uuid={EAF67857-3BB4-401b-866C-95586A723502}, since=null, name=denialOfService, alias=, stereotype=enum, visibility=public, txtDescription='Denial of Service attack', htmlDescription='

Denial of Service attack

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:06,519 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3697, uuid={6A482C90-ACB9-4b3c-A3B6-614C2A1FF15D}, since=null, name=malware, alias=, stereotype=enum, visibility=public, txtDescription='Malware detected', htmlDescription='

Malware detected

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:06,534 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3698, uuid={B9FF19E5-679A-4370-AA7F-C8FBBFC5762D}, since=null, name=bufferOverRun, alias=, stereotype=enum, visibility=public, txtDescription='Buffer Over Run', htmlDescription='

Buffer Over Run

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:06,547 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3701, uuid={0B2BD779-5C64-4a16-B567-5B15C981A38D}, since=null, name=bufferUnderRun, alias=, stereotype=enum, visibility=public, txtDescription='Buffer Under Run', htmlDescription='

Buffer Under Run

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=5, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:06,559 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3702, uuid={62A177D9-B72C-456c-9901-7E28473C34BF}, since=null, name=badCredential, alias=, stereotype=enum, visibility=public, txtDescription='Bad Credential', htmlDescription='

Bad Credential

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=6, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:06,571 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3703, uuid={FF33276B-A640-4bff-B1CD-9BF645FB9A0F}, since=null, name=badKey, alias=, stereotype=enum, visibility=public, txtDescription='Bad Key', htmlDescription='

Bad Key

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=7, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:06,582 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3699, uuid={10F046F2-3549-4712-83DC-080961F7A2FF}, since=null, name=malformedPDU, alias=, stereotype=enum, visibility=public, txtDescription='Detected some tampered/malformed packets.', htmlDescription='

Detected some tampered/malformed packets.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=8, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:06,594 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3693, uuid={408A86F3-7E67-4037-98BE-835B3D745F6F}, since=null, name=physicalDisruption, alias=, stereotype=enum, visibility=public, txtDescription='Power failure detection or media disconnection.', htmlDescription='

Power failure detection or media disconnection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=9, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:06,608 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventKind, _objData=UmlObjectData [id=3700, uuid={2F6F7E56-04CE-45eb-A2EA-2240EA8F3214}, since=null, name=invalidNetworkAccess, alias=, stereotype=enum, visibility=public, txtDescription='Access to the device form unexpected/banned networks.', htmlDescription='

Access to the device form unexpected/banned networks.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=10, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:06,614 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::EventKind +2024-09-08 08:26:06,621 [main] TRACE ClassBuilder - Class TimSyncIssueKind (10 in package EnumeratedTypes) +2024-09-08 08:26:06,652 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncIssueKind, _objData=UmlObjectData [id=644, uuid={5F833F2F-8710-4c68-9FD5-2901D4F9FBAA}, since=null, name=synced, alias=, stereotype=enum, visibility=public, txtDescription='Indicates time sync is active and correctly operating with local time sync.', htmlDescription='

Indicates time sync is active and correctly operating with local time sync.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:06,665 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncIssueKind, _objData=UmlObjectData [id=645, uuid={88454DC2-BBEA-4021-BAD5-FE61CA4E4F49}, since=null, name=degradated, alias=, stereotype=enum, visibility=public, txtDescription='Indicates time sync is active but not operating correctly (for example because time source is not correctly operating or because of network degradation).', htmlDescription='

Indicates time sync is active but not operating correctly (for example because time source is not correctly operating or because of network degradation).

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:06,677 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncIssueKind, _objData=UmlObjectData [id=646, uuid={869DAB25-EE51-4fb5-9626-BD3FAFC7A6B3}, since=null, name=failed, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that sync has failed.', htmlDescription='

Indicates that sync has failed.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:06,713 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncIssueKind, _objData=UmlObjectData [id=4499, uuid={64AE1060-E782-4cb0-9E8C-F0A50D2EF305}, since=null, name=syncedGlobal, alias=, stereotype=enum, visibility=public, txtDescription='Indicates time sync is active and correctly operating with global time sync.', htmlDescription='

Indicates time sync is active and correctly operating with global time sync.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:06,724 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::TimSyncIssueKind +2024-09-08 08:26:06,760 [main] TRACE ClassBuilder - Class SecurityProfileKind (11 in package EnumeratedTypes) +2024-09-08 08:26:06,788 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::SecurityProfileKind, _objData=UmlObjectData [id=3924, uuid={F71BC91A-79AE-45ca-8AB9-6204E87EEBD0}, since=null, name=noSecurity, alias=, stereotype=enum, visibility=public, txtDescription='Indicate that no security profile is in use', htmlDescription='

Indicate that no security profile is in use

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:06,805 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::SecurityProfileKind, _objData=UmlObjectData [id=3926, uuid={6A444C1A-57C0-4e5d-8703-6142480FF36E}, since=null, name=aProfile, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that authentication A Profile is in use.', htmlDescription='

Indicates that authentication A Profile is in use.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:06,818 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::SecurityProfileKind, _objData=UmlObjectData [id=3927, uuid={89E81915-E439-46f6-B4B0-93DD1656B0A6}, since=null, name=e2eProfile, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that End-to-end application security profile is in use', htmlDescription='

Indicates that End-to-end application security profile is in use

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:06,830 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::SecurityProfileKind, _objData=UmlObjectData [id=3922, uuid={CF278B1A-3FC4-4998-B195-7ED80C0F5913}, since=null, name=ae2eProfile, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that encrypted End-to-end application security profile is in use', htmlDescription='

Indicates that encrypted End-to-end application security profile is in use

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:06,836 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::SecurityProfileKind +2024-09-08 08:26:06,843 [main] TRACE ClassBuilder - Class TimSyncSrcKind (11 in package EnumeratedTypes) +2024-09-08 08:26:06,943 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=665, uuid={952CFE67-4E7C-422f-BD48-A384F2B03616}, since=null, name=unknown, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that the type of the current time sync source is unknown.', htmlDescription='

Indicates that the type of the current time sync source is unknown.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:06,964 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=666, uuid={EA2E4808-5FE5-4d01-AD36-77DC2F564964}, since=null, name=ntp, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via NTP protocol.', htmlDescription='

Indicates that time sync is being performed via NTP protocol.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:06,974 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=667, uuid={7001BEF2-2BA7-473c-BE53-48B29DE68D38}, since=null, name=sntp, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via SNTP protocol.', htmlDescription='

Indicates that time sync is being performed via SNTP protocol.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:06,987 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=668, uuid={473F67F7-75B0-4ec8-AC6D-2C02DCB3D4F9}, since=null, name=irig, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via IRIG input.', htmlDescription='

Indicates that time sync is being performed via IRIG input.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:06,999 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=669, uuid={DFB8EAFA-7990-4ac3-AD4B-6FD2B4387C90}, since=null, name=gps, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed using GNSS input. In the previous edition GPS enumeration was in use and it is kept in this edition for backward compatibility reasons. It is equivalent to GNSS.', htmlDescription='

Indicates that time sync is being performed using GNSS input. In the previous edition GPS enumeration was in use and it is kept in this edition for backward compatibility reasons. It is equivalent to GNSS.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:07,010 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=670, uuid={F059225D-17FE-4d2e-8C53-948236E8E978}, since=null, name=ieee1588PTP, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via PTP protocol.', htmlDescription='

Indicates that time sync is being performed via PTP protocol.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=5, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:07,022 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=671, uuid={9DD2DD32-D0B5-4e2d-9449-188E91493134}, since=null, name=ieee1588PTPC37238Profile2011, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via PTP protocol using C37.238-2011 power profile.', htmlDescription='

Indicates that time sync is being performed via PTP protocol using C37.238-2011 power profile.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=6, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:07,034 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=4110, uuid={6D78019A-469B-4a3b-966F-A3C9D73B86EF}, since=null, name=ieee1588PTPIEC6185093, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via PTP protocol using IEC61850-9-3 profile.', htmlDescription='

Indicates that time sync is being performed via PTP protocol using IEC61850-9-3 profile.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=7, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:07,046 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=4495, uuid={99E0863C-202C-4217-9613-152A89692C12}, since=null, name=ieee1588PTPC37238Profile2017, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via PTP protocol using C37.238-2017 power profile.', htmlDescription='

Indicates that time sync is being performed via PTP protocol using C37.238-2017 power profile.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=8, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:07,059 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=4496, uuid={220F6156-D807-40ac-8E76-FC831FA1D73A}, since=null, name=ieee1588PTPIEC6185093Ed20, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via PTP protocol using IEC61850-9-3 Ed. 2.0 profile.', htmlDescription='

Indicates that time sync is being performed via PTP protocol using IEC61850-9-3 Ed. 2.0 profile.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=9, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:07,071 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=4497, uuid={A37E91A6-003F-4702-931D-6FC0F51BAC0C}, since=null, name=ieee1588PTPIEC6185093Profile2016, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via PTP protocol using IEC61850-9-3 profile.', htmlDescription='

Indicates that time sync is being performed via PTP protocol using IEC61850-9-3 profile.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=7, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:07,082 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=4498, uuid={08161D84-2F6C-4a93-A4A0-2E54C2EBA124}, since=null, name=gnss, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via GNSS input', htmlDescription='

Indicates that time sync is being performed via GNSS input

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:07,097 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=4500, uuid={B0AE11B0-563B-4d29-8660-1A415DFD83BC}, since=null, name=applicationProtocol, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via application protocol transport (e.g.DNP time sync)', htmlDescription='

Indicates that time sync is being performed via application protocol transport (e.g.DNP time sync)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=10, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:07,115 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcKind, _objData=UmlObjectData [id=4504, uuid={21CB0952-E7FB-4f9d-AA97-59732AD6ADB4}, since=null, name=ntpOnts, alias=, stereotype=enum, visibility=public, txtDescription='Indicates that time sync is being performed via NTP over NTS (RFC 8915)', htmlDescription='

Indicates that time sync is being performed via NTP over NTS (RFC 8915)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=11, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:07,124 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::TimSyncSrcKind +2024-09-08 08:26:07,132 [main] TRACE ClassBuilder - Class AppDatStType (12 in package EnumeratedTypes) +2024-09-08 08:26:07,234 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::AppDatStType, _objData=UmlObjectData [id=2991, uuid={20C199C1-6505-4e87-AA5E-7761159CD7E3}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp.', htmlDescription='

Timestamp.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:07,253 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::AppDatStType, _objData=UmlObjectData [id=2992, uuid={A150447F-47CA-40a3-A3E4-20675ECB8425}, since=null, name=Value, alias=, stereotype=enum, visibility=public, txtDescription='AppDatStKind enumeration.', htmlDescription='

AppDatStKind enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=292, _eaTypeName=AppDatStKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:07,273 [main] DEBUG ClassBuilder - Adding AppDatStType as subclass of AbstractBaseType +2024-09-08 08:26:07,273 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::AppDatStType +2024-09-08 08:26:07,278 [main] TRACE ClassBuilder - Class PhyHealthType (12 in package EnumeratedTypes) +2024-09-08 08:26:07,370 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::PhyHealthType, _objData=UmlObjectData [id=4116, uuid={BAC3158A-D258-496a-83A5-0E64DFD67679}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp.', htmlDescription='

Timestamp.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:07,386 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::PhyHealthType, _objData=UmlObjectData [id=4117, uuid={D2C2C044-39BB-4b98-BC2D-E3B53A97EDAE}, since=null, name=Value, alias=, stereotype=enum, visibility=public, txtDescription='PhyHealthKind enumeration.', htmlDescription='

PhyHealthKind enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1034, _eaTypeName=PhyHealthKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:07,406 [main] DEBUG ClassBuilder - Adding PhyHealthType as subclass of AbstractBaseType +2024-09-08 08:26:07,406 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::PhyHealthType +2024-09-08 08:26:07,411 [main] TRACE ClassBuilder - Class ExtType (13 in package EnumeratedTypes) +2024-09-08 08:26:07,465 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ExtType, _objData=UmlObjectData [id=3367, uuid={1245D715-EBD7-4730-A6F9-04F33AE0CF28}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='ExtKind enumeration.', htmlDescription='

ExtKind enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=856, _eaTypeName=ExtKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:07,486 [main] DEBUG ClassBuilder - Adding ExtType as subclass of AbstractBaseType +2024-09-08 08:26:07,486 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::ExtType +2024-09-08 08:26:07,493 [main] TRACE ClassBuilder - Class IntType (14 in package EnumeratedTypes) +2024-09-08 08:26:07,544 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::IntType, _objData=UmlObjectData [id=3395, uuid={0A1710BD-B405-499c-8631-29D2BA1F37C0}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='IntKind enumeration', htmlDescription='

IntKind enumeration

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=864, _eaTypeName=IntKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:07,566 [main] DEBUG ClassBuilder - Adding IntType as subclass of AbstractBaseType +2024-09-08 08:26:07,566 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::IntType +2024-09-08 08:26:07,573 [main] TRACE ClassBuilder - Class EventType (15 in package EnumeratedTypes) +2024-09-08 08:26:07,654 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventType, _objData=UmlObjectData [id=3705, uuid={CF22855C-E347-4873-AD54-398449D71764}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp.', htmlDescription='

Timestamp.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:07,666 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::EventType, _objData=UmlObjectData [id=3704, uuid={B8CA2998-8D74-4277-B68D-01EC12299F89}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='EventKind enumeration.', htmlDescription='

EventKind enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=958, _eaTypeName=EventKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:07,686 [main] DEBUG ClassBuilder - Adding EventType as subclass of AbstractBaseType +2024-09-08 08:26:07,687 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::EventType +2024-09-08 08:26:07,693 [main] TRACE ClassBuilder - Class PSPAccType (16 in package EnumeratedTypes) +2024-09-08 08:26:07,769 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::PSPAccType, _objData=UmlObjectData [id=3378, uuid={2DC1C237-EFE6-4e97-A76B-58AA500A8F7B}, since=null, name=Timestamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp.', htmlDescription='

Timestamp.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:07,782 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::PSPAccType, _objData=UmlObjectData [id=3377, uuid={018C1C51-9C40-4e91-A95B-3878F4DD9BD9}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='PSPAccKind Enumeration.', htmlDescription='

PSPAccKind Enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=293, _eaTypeName=PSPAccKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:07,804 [main] DEBUG ClassBuilder - Adding PSPAccType as subclass of AbstractBaseType +2024-09-08 08:26:07,804 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::PSPAccType +2024-09-08 08:26:07,811 [main] TRACE ClassBuilder - Class ProtIdType (17 in package EnumeratedTypes) +2024-09-08 08:26:07,861 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::ProtIdType, _objData=UmlObjectData [id=3011, uuid={7F5D7A4B-5851-45b9-9F48-5C8F08A97218}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='ProtIdKind Enumeration.', htmlDescription='

ProtIdKind Enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=829, _eaTypeName=ProtIdKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:07,880 [main] DEBUG ClassBuilder - Adding ProtIdType as subclass of AbstractBaseType +2024-09-08 08:26:07,880 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::ProtIdType +2024-09-08 08:26:07,886 [main] TRACE ClassBuilder - Class TimSyncIssueType (18 in package EnumeratedTypes) +2024-09-08 08:26:07,943 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncIssueType, _objData=UmlObjectData [id=3006, uuid={A23195C8-D6B6-4033-B7CC-798A866B84FA}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='TimSyncIssueKind Enumeration.', htmlDescription='

TimSyncIssueKind Enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=113, _eaTypeName=TimSyncIssueKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:07,965 [main] DEBUG ClassBuilder - Adding TimSyncIssueType as subclass of AbstractBaseType +2024-09-08 08:26:07,965 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::TimSyncIssueType +2024-09-08 08:26:07,996 [main] TRACE ClassBuilder - Class SecurityProfileType (20 in package EnumeratedTypes) +2024-09-08 08:26:08,056 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::SecurityProfileType, _objData=UmlObjectData [id=3929, uuid={62BF7B27-EFA1-466c-AED9-06307DBA6999}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='SecurityProfile Enumeration', htmlDescription='

SecurityProfile Enumeration

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1011, _eaTypeName=SecurityProfileKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:08,076 [main] DEBUG ClassBuilder - Adding SecurityProfileType as subclass of AbstractBaseType +2024-09-08 08:26:08,077 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::SecurityProfileType +2024-09-08 08:26:08,083 [main] TRACE ClassBuilder - Class TimSyncSrcType (20 in package EnumeratedTypes) +2024-09-08 08:26:08,137 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcType, _objData=UmlObjectData [id=3008, uuid={7D7258A7-E193-49cd-AA63-6F1E9EECA15D}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='TimSyncSrcKind Enumeration', htmlDescription='

TimSyncSrcKind Enumeration

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=117, _eaTypeName=TimSyncSrcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:08,158 [main] DEBUG ClassBuilder - Adding TimSyncSrcType as subclass of AbstractBaseType +2024-09-08 08:26:08,158 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::TimSyncSrcType +2024-09-08 08:26:08,165 [main] TRACE ClassBuilder - Class LnkType (21 in package EnumeratedTypes) +2024-09-08 08:26:08,221 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=EnumeratedTypes::LnkType, _objData=UmlObjectData [id=3010, uuid={9322D17D-875C-49ca-B9CF-0F43B6E41A52}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='LnkType Enumeration.', htmlDescription='

LnkType Enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=644, _eaTypeName=LnkKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:08,242 [main] DEBUG ClassBuilder - Adding LnkType as subclass of AbstractBaseType +2024-09-08 08:26:08,242 [main] TRACE ClassBuilder - read from EA: EnumeratedTypes::LnkType +2024-09-08 08:26:08,245 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=112, _objData=UmlObjectData [id=33, uuid={EA70BE0D-4F03-49cf-98EB-61A3452B8572}, since=null, name=EnumeratedTypes, alias=, stereotype=, visibility=public, txtDescription='The abstract objects defined as enumerated types refer to special enumerated data types. +The type object naming actually reflects this classification, as explained explicitly within this section in the description of each abstract type. +Please note that the attributes defined in this package classes have 1..1 multiplicity. The multiplicity is handled when these classes are used as attributes within the agents classes definition.', htmlDescription='

The abstract objects defined as enumerated types refer to special enumerated data types.

The type object naming actually reflects this classification, as explained explicitly within this section in the description of each abstract type.

Please note that the attributes defined in this package classes have 1..1 multiplicity. The multiplicity is handled when these classes are used as attributes within the agents classes definition.

'], _modelId=362, _selfDependent=false, 5_taggedValues{isAgent=yes, isEnumeration=yes, mibIdentity=enumeration, mibName=IEC-62351-ENUM-MIB, objectIdentity=enumeration}, _classes=22 +2024-09-08 08:26:08,250 [main] INFO PackageBuilder - processing package Environmental Agent (7) ... +2024-09-08 08:26:08,277 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Environmental Agent, _objData=UmlObjectData [id=8, uuid={DD68DDD1-5EEB-4a23-B16C-1FF759A2EE6A}, since=null, name=Environmental, alias=, stereotype=, visibility=public, txtDescription='The Environmental agent class.', htmlDescription='

The Environmental agent class.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 08:26:08,417 [main] TRACE ClassBuilder - Class Environmental (1 in package Environmental Agent) +2024-09-08 08:26:08,790 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2673, uuid={B7336AC3-3490-4d18-9C0A-633A3375B799}, since=null, name=AppDatSt, alias=, stereotype=health, visibility=public, txtDescription='Status of the environment where the device is operated (e.g. Power Supply, Physical Access)', htmlDescription='

Status of the environment where the device is operated (e.g. Power Supply, Physical Access)

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=766, _eaTypeName=AppDatStType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:08,804 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=596, uuid={F437BD0A-FA9A-4244-BD21-213EDEE71F93}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Attribute that allows a reset of the statistical information.', htmlDescription='

Attribute that allows a reset of the statistical information.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:08,817 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=3707, uuid={CC877A95-C652-4fe2-AD1D-655296F78214}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:08,831 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2257, uuid={A7F35D26-4B23-4015-AD0D-EBEFA191D4F4}, since=null, name=PSPBld, alias=, stereotype=security, visibility=public, txtDescription='Building access occurred.', htmlDescription='

Building access occurred.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:08,844 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2255, uuid={AE5A5B25-3635-4d4e-BB6F-3F373B37D7F7}, since=null, name=PSPIed, alias=, stereotype=security, visibility=public, txtDescription='Indicates that direct access to the IED is in process.', htmlDescription='

Indicates that direct access to the IED is in process.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:08,858 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2256, uuid={B58DB9CE-5D6A-4836-8A52-322BC774BC87}, since=null, name=PSPPanel, alias=, stereotype=security, visibility=public, txtDescription='Indicates that panel access is occurring to the IED.', htmlDescription='

Indicates that panel access is occurring to the IED.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:08,873 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2258, uuid={5330F087-530C-45ed-97CC-9AAA63252BF8}, since=null, name=PSPPerimeter, alias=, stereotype=security, visibility=public, txtDescription='Physical perimeter access occurred (e.g. door open), where available.', htmlDescription='

Physical perimeter access occurred (e.g. door open), where available.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:08,890 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=152, uuid={77B56447-B1AC-4c57-B772-2A438F32F38B}, since=null, name=PSUP, alias=, stereotype=table, visibility=public, txtDescription='A list of power supply entries.', htmlDescription='

A list of power supply entries.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=616, _eaTypeName=PSUPEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:08,904 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2260, uuid={0ABF14FE-A7EB-447e-9066-271C644F8B1A}, since=null, name=PSUPLos, alias=, stereotype=health, visibility=public, txtDescription='Power supply table entry index of the last power supply that was detected as lost.', htmlDescription='

Power supply table entry index of the last power supply that was detected as lost.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:08,920 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2259, uuid={ECCB9B5A-C082-4a31-BCA7-B115A8600DA0}, since=null, name=PSUPOn, alias=, stereotype=health, visibility=public, txtDescription='Index of the power supply that was the last to come on.', htmlDescription='

Index of the power supply that was the last to come on.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:08,935 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=3622, uuid={96BB2987-191F-4e60-BCB6-102571495093}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=874, _eaTypeName=SecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:08,949 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=3621, uuid={75ECAF5C-210D-48b8-90F9-82576506744C}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object.', htmlDescription='

State events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=903, _eaTypeName=Notification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:08,964 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=4501, uuid={7FB27A25-45C1-42c1-9B72-BD8FC786A10A}, since=null, name=PSPRemote, alias=, stereotype=security, visibility=public, txtDescription='Indicates that a current remote access is occurring to the IED.', htmlDescription='

Indicates that a current remote access is occurring to the IED.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:08,985 [main] DEBUG ClassBuilder - Adding Environmental as subclass of AbstractAgent +2024-09-08 08:26:08,985 [main] TRACE ClassBuilder - read from EA: Environmental Agent::Environmental +2024-09-08 08:26:08,992 [main] TRACE ClassBuilder - Class PSUPEntry (2 in package Environmental Agent) +2024-09-08 08:26:09,195 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2663, uuid={82D58AB7-4A2D-4041-B53A-D00E492C6C11}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:09,209 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2671, uuid={6A6A7DC3-B5BB-4553-84C2-44318B449579}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the power supply.', htmlDescription='

Description of the power supply.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:09,225 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=3725, uuid={27FE83CA-F363-47cc-8B97-92F4711DDAAF}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='Id of the power supply.', htmlDescription='

Id of the power supply.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-08 08:26:09,244 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2670, uuid={40DB5D25-5E33-4ad3-BB26-D2E165FEBA1F}, since=null, name=Name, alias=, stereotype=identity, visibility=public, txtDescription='Name of the power supply.', htmlDescription='

Name of the power supply.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-08 08:26:09,259 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2669, uuid={87F74A2E-D615-4bb8-A54D-B421846C7542}, since=null, name=PSUPLos, alias=, stereotype=health, visibility=public, txtDescription='Timestamp of the last detected power loss.', htmlDescription='

Timestamp of the last detected power loss.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:09,273 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2661, uuid={3F81B85E-2C71-4d22-8767-ADB07D4305CC}, since=null, name=PwrLosCnt, alias=, stereotype=health, visibility=public, txtDescription='Attribute that provides a count of number power losses. Power loss indicates primary supply power loss not shutdown.', htmlDescription='

Attribute that provides a count of number power losses. Power loss indicates primary supply power loss not shutdown.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:09,287 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2728, uuid={0A17570B-860F-49a1-8208-A78149EDC279}, since=null, name=PwrOn, alias=, stereotype=health, visibility=public, txtDescription='Indicates if the power supply state is currently on and operating appropriately.', htmlDescription='

Indicates if the power supply state is currently on and operating appropriately.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:09,307 [main] DEBUG ClassBuilder - Adding PSUPEntry as subclass of AbstractAgent +2024-09-08 08:26:09,307 [main] TRACE ClassBuilder - read from EA: Environmental Agent::PSUPEntry +2024-09-08 08:26:09,313 [main] TRACE ClassBuilder - Class Notification (3 in package Environmental Agent) +2024-09-08 08:26:09,390 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Notification, _objData=UmlObjectData [id=3463, uuid={99A52BA7-C37A-4d5a-9AF2-69F868DCA056}, since=null, name=PSUPLos, alias=, stereotype=health, visibility=public, txtDescription='Power supply Table Entry Index of the last power supply that was detected as lost.', htmlDescription='

Power supply Table Entry Index of the last power supply that was detected as lost.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:09,400 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::Notification, _objData=UmlObjectData [id=3462, uuid={CF8ECE95-A139-4efa-B7E5-5EBCC29D609C}, since=null, name=PSUPOn, alias=, stereotype=health, visibility=public, txtDescription='Index of the power supply that was the last to come on.', htmlDescription='

Index of the power supply that was the last to come on.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:09,419 [main] DEBUG ClassBuilder - Adding Notification as subclass of AbstractAgent +2024-09-08 08:26:09,419 [main] TRACE ClassBuilder - read from EA: Environmental Agent::Notification +2024-09-08 08:26:09,424 [main] TRACE ClassBuilder - Class SecurityNotification (4 in package Environmental Agent) +2024-09-08 08:26:09,577 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=4039, uuid={F551C4F9-AD27-4ef4-B8FA-5DBAC7238912}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:09,587 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=3432, uuid={04CE81A5-8629-43c0-8F3E-D93C55B63D0B}, since=null, name=PSPBld, alias=, stereotype=security, visibility=public, txtDescription='Building Access occurred.', htmlDescription='

Building Access occurred.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:09,597 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=3430, uuid={8AA6C984-EF4B-41bb-B433-665F0793B107}, since=null, name=PSPIed, alias=, stereotype=security, visibility=public, txtDescription='Indicates that direct access to the IED is in process.', htmlDescription='

Indicates that direct access to the IED is in process.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:09,607 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=3431, uuid={CBC52337-714E-4296-BD4F-B152E72DF029}, since=null, name=PSPPanel, alias=, stereotype=security, visibility=public, txtDescription='Indicates that panel access is occurring to the IED.', htmlDescription='

Indicates that panel access is occurring to the IED.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:09,617 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=3433, uuid={165E406E-AC48-43d3-A163-7401119B36B9}, since=null, name=PSPPerimeter, alias=, stereotype=security, visibility=public, txtDescription='Perimeter Access occurred.', htmlDescription='

Perimeter Access occurred.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 08:26:09,638 [main] DEBUG ClassBuilder - Adding SecurityNotification as subclass of AbstractAgent +2024-09-08 08:26:09,638 [main] TRACE ClassBuilder - read from EA: Environmental Agent::SecurityNotification +2024-09-08 08:26:09,640 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=40, _objData=UmlObjectData [id=10, uuid={943B03A5-8EC5-4979-8421-5F10D4177B08}, since=null, name=Environmental Agent, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 16 this package contains the object descriptions for the environmental information to be provided for the Network and System Monitoring of environmental conditions where the device is operating.', htmlDescription='

As shown in Figure 16 this package contains the object descriptions for the environmental information to be provided for the Network and System Monitoring of environmental conditions where the device is operating.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=environmental-agent, mibName=IEC-62351-ENV-MIB, mibPrefix=env, objectBranchId=1, objectIdentity=environmental-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=Environmental Agent, _objData=UmlObjectData [id=8, uuid={DD68DDD1-5EEB-4a23-B16C-1FF759A2EE6A}, since=null, name=Environmental, alias=, stereotype=, visibility=public, txtDescription='The Environmental agent class.', htmlDescription='

The Environmental agent class.

'], _portrait=true, _kind=LOGICAL]], _classes=4 +2024-09-08 08:26:09,645 [main] INFO PackageBuilder - processing package IED Agent (8) ... +2024-09-08 08:26:09,666 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=IED Agent, _objData=UmlObjectData [id=9, uuid={C3FD1BF6-CB13-4fb3-9C75-D9FACF470ACD}, since=null, name=IED, alias=, stereotype=, visibility=public, txtDescription='The Intelligent Electronic Device class attributes', htmlDescription='

The Intelligent Electronic Device class attributes

'], _portrait=true, _kind=LOGICAL] +2024-09-08 08:26:09,855 [main] TRACE ClassBuilder - Class IED (1 in package IED Agent) +2024-09-08 08:26:10,804 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=159, uuid={1405DC0D-6A4E-4f7e-AF8C-5E21E5C79F3C}, since=null, name=AtkCnt, alias=, stereotype=security, visibility=public, txtDescription='Attribute that provides the number of cyber- attacks that have been detected.', htmlDescription='

Attribute that provides the number of cyber- attacks that have been detected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:10,817 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=593, uuid={D7F266B3-90FC-434c-850B-A67888D5FF8C}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:10,830 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3365, uuid={4F170B51-C2F3-496d-A921-71158D5FAAD4}, since=null, name=ConfigurationCRC, alias=, stereotype=identity, visibility=public, txtDescription='CRC of the last update.', htmlDescription='

CRC of the last update.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:10,843 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3364, uuid={70C845C3-72FA-4ee2-8C82-B541DEA6F1A6}, since=null, name=ConfigurationVersion, alias=, stereotype=identity, visibility=public, txtDescription='Version of the last uploaded configuration.', htmlDescription='

Version of the last uploaded configuration.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:10,856 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3264, uuid={B2181BC5-C543-4352-AF8C-CF45A0CC6715}, since=null, name=CPU, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of CPU inside the IED.', htmlDescription='

This entry defer to possible multiple instances of CPU inside the IED.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=832, _eaTypeName=CPUEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:10,869 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=164, uuid={27E657EB-F5E0-46ac-9D03-B88771E3C03E}, since=null, name=CpuUsage, alias=, stereotype=health, visibility=public, txtDescription='Provides an attribute that indicates the percentage of processing resources that is in use. Range is 0 to 100', htmlDescription='

Provides an attribute that indicates the percentage of processing resources that is in use. Range is 0 to 100

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:10,883 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=165, uuid={331F6C40-DC4F-47e4-A1E7-D03E91A9BAB7}, since=null, name=DataInv, alias=, stereotype=security, visibility=public, txtDescription='Provides a count of the number of attempts to write invalid data, for instance out-of-range data.', htmlDescription='

Provides a count of the number of attempts to write invalid data, for instance out-of-range data.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:10,896 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=1904, uuid={6044B2D8-9605-461e-A2D5-AF9EF801D394}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='This entry provides a textual description of the IED.', htmlDescription='

This entry provides a textual description of the IED.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:10,910 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=174, uuid={84B44E91-B83B-48bc-95EB-FCE87A7F7BC1}, since=null, name=ExpCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of expired certificates that are in the certificate storage configured for local use.', htmlDescription='

Indicates the number of expired certificates that are in the certificate storage configured for local use.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:10,923 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3332, uuid={609144A0-BD56-43ff-AEA6-E96829144EC8}, since=null, name=EXT, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of extension modules inside the IED.', htmlDescription='

This entry defer to possible multiple instances of extension modules inside the IED.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=850, _eaTypeName=EXTEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:10,936 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3357, uuid={40D5B796-07CF-4261-BF72-7AC36DC3E5C5}, since=null, name=FirmwareVersion, alias=, stereotype=identity, visibility=public, txtDescription='Version of the last uploaded Firmware. Timestamp refers to upload time.', htmlDescription='

Version of the last uploaded Firmware. Timestamp refers to upload time.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:10,950 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=1908, uuid={6FD1E9BC-3801-4721-BC75-1500D754A5F4}, since=null, name=InternalTemp, alias=, stereotype=health, visibility=public, txtDescription='Degree Centigrade measurement of the internal IED Temperature.', htmlDescription='

Degree Centigrade measurement of the internal IED Temperature.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:10,964 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3493, uuid={A2E2F01C-9202-4d14-B2FC-EE99FA25D64D}, since=null, name=LastCPUFail, alias=, stereotype=health, visibility=public, txtDescription='Index of last failing CPU.', htmlDescription='

Index of last failing CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:10,977 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3706, uuid={21041DB8-C542-4137-AADE-3D1E8DD5E1D5}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:10,991 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3494, uuid={7A6C77E3-9BB2-4834-8C72-DAE268A5A789}, since=null, name=LastEXTFail, alias=, stereotype=health, visibility=public, txtDescription='Index of last failing Extension.', htmlDescription='

Index of last failing Extension.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:11,003 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3492, uuid={4ACA1571-DB99-4447-9A06-033F9EE4348B}, since=null, name=LastSTOREFail, alias=, stereotype=health, visibility=public, txtDescription='Index of last failing Storage.', htmlDescription='

Index of last failing Storage.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:11,016 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3256, uuid={A9D75A03-5288-48d7-BA55-09F388369D28}, since=null, name=Location, alias=, stereotype=identity, visibility=public, txtDescription='Physical Installation coordinates (geographical and plant location).', htmlDescription='

Physical Installation coordinates (geographical and plant location).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:11,030 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3257, uuid={B4CF9E53-369A-47de-B31C-9255617C59E5}, since=null, name=Maintainer, alias=, stereotype=identity, visibility=public, txtDescription='Organizational reference for device maintenance.', htmlDescription='

Organizational reference for device maintenance.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:11,044 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3388, uuid={B008E2FB-21B8-4e33-B720-B440E4B1F49D}, since=null, name=MemTotal, alias=, stereotype=health, visibility=public, txtDescription='Provides an attribute that report the total RAM available in KBytes.', htmlDescription='

Provides an attribute that report the total RAM available in KBytes.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:11,056 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=1910, uuid={F6C9C372-CCF6-49b4-B39B-B7C633D0987A}, since=null, name=MemUsage, alias=, stereotype=health, visibility=public, txtDescription='Provides an attribute that indicates the percentage of memory that is in use.Range is 0 to 100.', htmlDescription='

Provides an attribute that indicates the percentage of memory that is in use.Range is 0 to 100.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:11,069 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3255, uuid={E81796A9-2AC8-45d5-A00C-A8FF43E2E704}, since=null, name=MIBVersion, alias=, stereotype=identity, visibility=public, txtDescription='Version of the Management Information Base.', htmlDescription='

Version of the Management Information Base.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:11,082 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=167, uuid={E0D67C9A-2A09-4694-B58C-55AB9281E1BA}, since=null, name=MisEvCnt, alias=, stereotype=health, visibility=public, txtDescription='Provides an attribute that represents the count of missed events or data.', htmlDescription='

Provides an attribute that represents the count of missed events or data.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:11,095 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=1913, uuid={FBF2BE7D-376E-477d-BEA6-8FBF4467B076}, since=null, name=Name, alias=, stereotype=identity, visibility=public, txtDescription='Name of IED.', htmlDescription='

Name of IED.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:11,109 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3718, uuid={472EB367-3A8B-4a9a-82E6-AD7C1825366F}, since=null, name=NearToExpCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of certificates in the certificate storage configured for local use that have exceeded the 70% of validity period.', htmlDescription='

Indicates the number of certificates in the certificate storage configured for local use that have exceeded the 70% of validity period.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:11,121 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=177, uuid={813425EE-45D4-449f-A1BA-5E8BDECC6309}, since=null, name=NvStore, alias=, stereotype=health, visibility=public, txtDescription='Indicates the global number of kilobytes of storage allocated for local use in all storage areas.', htmlDescription='

Indicates the global number of kilobytes of storage allocated for local use in all storage areas.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:11,135 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=178, uuid={82009203-F55E-466e-9B62-1933D717E9E0}, since=null, name=NvStoreRem, alias=, stereotype=health, visibility=public, txtDescription='Indicates the percentage of NvStore available for storage.', htmlDescription='

Indicates the percentage of NvStore available for storage.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:11,149 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=157, uuid={BE9FD31C-2E94-434f-8D2A-69F9BBC26FFD}, since=null, name=PhyHealth, alias=, stereotype=health, visibility=public, txtDescription='General health status of IED hardware and software.', htmlDescription='

General health status of IED hardware and software.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1036, _eaTypeName=PhyHealthType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:11,162 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=158, uuid={D980F3DA-CEDB-4402-837B-C8480047FB4F}, since=null, name=PhyHealthChgCnt, alias=, stereotype=health, visibility=public, txtDescription='Provides a count of the number of transitions state of PhyHealth Attribute.', htmlDescription='

Provides a count of the number of transitions state of PhyHealth Attribute.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:11,176 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3437, uuid={DF896F75-F02E-4195-9E06-0E9BB719136B}, since=null, name=RBACDbUpdate, alias=, stereotype=security, visibility=public, txtDescription='Version of the last uploaded RBAC Database.', htmlDescription='

Version of the last uploaded RBAC Database.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:11,191 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=176, uuid={BF4C520F-2A9F-434f-A442-25072A5C8B6B}, since=null, name=RevCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of revoked certificates that are still configured for local use.', htmlDescription='

Indicates the number of revoked certificates that are still configured for local use.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:11,205 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3479, uuid={8DA6CCEB-ED0C-41ec-B476-C7F33C86B499}, since=null, name=RevCheckFail, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number revocation check failures.', htmlDescription='

Indicates the number revocation check failures.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:11,220 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3620, uuid={93F9F190-837F-4def-9AE7-693E1E609256}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=912, _eaTypeName=SecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:11,234 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3619, uuid={167D9C3F-D113-4dd9-8CD1-62228F439DF9}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object.', htmlDescription='

State events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=911, _eaTypeName=Notification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:11,257 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3387, uuid={2CF43DE1-E31F-4743-B645-CC6617CC65E9}, since=null, name=STORE, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of storage modules inside the IED.', htmlDescription='

This entry defer to possible multiple instances of storage modules inside the IED.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=862, _eaTypeName=STOREEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:11,270 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=4118, uuid={A000D652-2899-4b1e-A269-5B0E74D9612D}, since=null, name=SvcViol, alias=, stereotype=security, visibility=public, txtDescription='Number of service privilege violations (i.e., when the data object that the client wanted to access exists in the access view for the association with that client, but the requested service is not allowed).', htmlDescription='

Number of service privilege violations (i.e., when the data object that the client wanted to access exists in the access view for the association with that client, but the requested service is not allowed).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:11,284 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3964, uuid={8C00B0E5-5F91-4e94-AAA3-B08EFBB15D6C}, since=null, name=Watchdog, alias=, stereotype=health, visibility=public, txtDescription='This attribute report the count of Watchdog intervention on any component of the IED.', htmlDescription='

This attribute report the count of Watchdog intervention on any component of the IED.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:11,298 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=2217, uuid={FA50F248-F688-4b0f-B343-E8626A859677}, since=null, name=WrmStrCnt, alias=, stereotype=health, visibility=public, txtDescription='Number of warm starts detected.', htmlDescription='

Number of warm starts detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:11,324 [main] DEBUG ClassBuilder - Adding IED as subclass of AbstractAgent +2024-09-08 08:26:11,324 [main] TRACE ClassBuilder - read from EA: IED Agent::IED +2024-09-08 08:26:11,329 [main] TRACE ClassBuilder - Class CPUEntry (2 in package IED Agent) +2024-09-08 08:26:11,560 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3261, uuid={F7E2552A-9E40-4498-9B35-80E4DC7388F3}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:11,573 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3260, uuid={2A8CCA5F-B153-4fa8-8801-52859B51BF8A}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the CPU.', htmlDescription='

Description of the CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:11,586 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3262, uuid={6C624EF6-19CC-45c7-8B22-52C6EB105C3F}, since=null, name=Faulty, alias=, stereotype=health, visibility=public, txtDescription='CPU generated errors.', htmlDescription='

CPU generated errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:11,601 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3259, uuid={18120B8F-8761-4f72-A364-9015D0229D9F}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='CPU number.', htmlDescription='

CPU number.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-08 08:26:11,616 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3258, uuid={5BACDAAA-B8BD-4635-B1F3-7E2C4CB93292}, since=null, name=Online, alias=, stereotype=health, visibility=public, txtDescription='Indicate that CPU is online and active.', htmlDescription='

Indicate that CPU is online and active.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:11,630 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3263, uuid={404E8337-84BD-4e87-888C-BC40C8FDFD3D}, since=null, name=Operable, alias=, stereotype=health, visibility=public, txtDescription='Indicates that CPU is operable (it can be either online or offline).', htmlDescription='

Indicates that CPU is operable (it can be either online or offline).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:11,643 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3389, uuid={D6BA8CB3-C883-4924-9F0F-3E0D3BF3FE2D}, since=null, name=Temperature, alias=, stereotype=health, visibility=public, txtDescription='Temperature of this CPU.', htmlDescription='

Temperature of this CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:11,655 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3965, uuid={2C004DAE-5C35-4b32-8046-95848FB39988}, since=null, name=Watchdog, alias=, stereotype=health, visibility=public, txtDescription='This attribute report the count of Watchdog intervention on this CPU.', htmlDescription='

This attribute report the count of Watchdog intervention on this CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:11,674 [main] DEBUG ClassBuilder - Adding CPUEntry as subclass of AbstractAgent +2024-09-08 08:26:11,674 [main] TRACE ClassBuilder - read from EA: IED Agent::CPUEntry +2024-09-08 08:26:11,679 [main] TRACE ClassBuilder - Class EXTEntry (3 in package IED Agent) +2024-09-08 08:26:11,933 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3334, uuid={5449D06F-D84C-4247-BFF2-855283FE546B}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='Software PLC ID.', htmlDescription='

Software PLC ID.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-08 08:26:11,946 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3335, uuid={1FA00718-1A03-4856-BE17-E4C968E2303B}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the Software PLC.', htmlDescription='

Description of the Software PLC.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:11,959 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3366, uuid={26FC08E1-AE06-447a-A63C-A464EF3B6C5A}, since=null, name=ExtensionType, alias=, stereotype=identity, visibility=public, txtDescription='This attribute defines the type of the extension module.', htmlDescription='

This attribute defines the type of the extension module.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=854, _eaTypeName=ExtType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:11,973 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3416, uuid={25484747-00E6-4e15-9F70-84DADE0F1C1C}, since=null, name=CodeVersion, alias=, stereotype=identity, visibility=public, txtDescription='Version of the last uploaded code.', htmlDescription='

Version of the last uploaded code.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:11,986 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3338, uuid={582D62C0-D628-4ccb-8BBD-32D4EE3B63BD}, since=null, name=Running, alias=, stereotype=health, visibility=public, txtDescription='Indicates that CPU is operable (it can be either online or offline).', htmlDescription='

Indicates that CPU is operable (it can be either online or offline).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:11,999 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3390, uuid={4838CC42-4D04-48d4-B5E0-73AC845722FF}, since=null, name=Temperature, alias=, stereotype=health, visibility=public, txtDescription='Temperature of this extension.', htmlDescription='

Temperature of this extension.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:12,011 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3333, uuid={884C8693-44E5-4b48-BBA4-E016ABF8B3C1}, since=null, name=Watchdog, alias=, stereotype=health, visibility=public, txtDescription='This attribute report the count of Watchdog intervention on this IED extension (e.g. software PLC).', htmlDescription='

This attribute report the count of Watchdog intervention on this IED extension (e.g. software PLC).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:12,024 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3337, uuid={A88DDBF9-7D12-4096-A713-D46EF92F2788}, since=null, name=Errors, alias=, stereotype=health, visibility=public, txtDescription='This attribute reports the PLC software detected errors.', htmlDescription='

This attribute reports the PLC software detected errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:12,037 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3336, uuid={A600A488-A1C0-4de3-BA57-148F100FC3F6}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:12,057 [main] DEBUG ClassBuilder - Adding EXTEntry as subclass of AbstractAgent +2024-09-08 08:26:12,057 [main] TRACE ClassBuilder - read from EA: IED Agent::EXTEntry +2024-09-08 08:26:12,062 [main] TRACE ClassBuilder - Class STOREEntry (4 in package IED Agent) +2024-09-08 08:26:12,243 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3382, uuid={51E473C6-FD18-455e-AED3-59F394443C8D}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='Storage area ID number.', htmlDescription='

Storage area ID number.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-08 08:26:12,256 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3383, uuid={064A1F24-744B-46ad-AD7C-A95961E97B13}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the storage area.', htmlDescription='

Description of the storage area.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:12,269 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3386, uuid={F81C3EA0-A881-4cf8-981C-6AAA51137320}, since=null, name=NvStore, alias=, stereotype=health, visibility=public, txtDescription='Indicates the amount of storage.', htmlDescription='

Indicates the amount of storage.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:12,282 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3381, uuid={9C3D8C6F-12FE-4f73-AF1F-DE108934866D}, since=null, name=NvStoreRem, alias=, stereotype=health, visibility=public, txtDescription='Indicate remaining storage in this area.', htmlDescription='

Indicate remaining storage in this area.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:12,294 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3385, uuid={D8309CF9-DAF0-4ee7-A381-888D751BA0AA}, since=null, name=Faulty, alias=, stereotype=health, visibility=public, txtDescription='Storage area fault generated errors.', htmlDescription='

Storage area fault generated errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:12,307 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3732, uuid={39256EA1-992F-4aca-AF28-01BF33E5DF73}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:12,327 [main] DEBUG ClassBuilder - Adding STOREEntry as subclass of AbstractAgent +2024-09-08 08:26:12,327 [main] TRACE ClassBuilder - read from EA: IED Agent::STOREEntry +2024-09-08 08:26:12,333 [main] TRACE ClassBuilder - Class Notification (5 in package IED Agent) +2024-09-08 08:26:12,519 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3486, uuid={B5FF53A1-E8B9-46ec-BE1B-75F6EC7C48F5}, since=null, name=PhyHealthChgCnt, alias=, stereotype=health, visibility=public, txtDescription='Provides a count of the number of transitions state of PhyHealth Attribute.', htmlDescription='

Provides a count of the number of transitions state of PhyHealth Attribute.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:12,531 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3497, uuid={C24EC3BA-E07C-4a47-9FC1-D975C6DF5FA9}, since=null, name=InternalTemp, alias=, stereotype=health, visibility=public, txtDescription='Degree Centigrade measurement of the internal IED Temperature.', htmlDescription='

Degree Centigrade measurement of the internal IED Temperature.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:12,544 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3495, uuid={11B98054-C537-42a0-938C-380F69A2A3F5}, since=null, name=NvStore, alias=, stereotype=health, visibility=public, txtDescription='Indicates the global number of kilobytes of storage allocated for local use in all storage areas.', htmlDescription='

Indicates the global number of kilobytes of storage allocated for local use in all storage areas.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:12,557 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3496, uuid={5E3EA7C8-15A7-42f6-9FBC-0C995489AB43}, since=null, name=NvStoreRem, alias=, stereotype=health, visibility=public, txtDescription='Indicates the percentage of NvStore available for storage.', htmlDescription='

Indicates the percentage of NvStore available for storage.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:12,570 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3480, uuid={8334F7D0-DA9C-4f85-8A96-1ACB87744C5B}, since=null, name=PhyHealth, alias=, stereotype=health, visibility=public, txtDescription='General health status of IED hardware and software.', htmlDescription='

General health status of IED hardware and software.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1036, _eaTypeName=PhyHealthType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:12,584 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3489, uuid={37E2129D-71C5-4030-8530-00D04FA20DDF}, since=null, name=WrmStrCnt, alias=, stereotype=health, visibility=public, txtDescription='Number of warm starts detected.', htmlDescription='

Number of warm starts detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:12,602 [main] DEBUG ClassBuilder - Adding Notification as subclass of AbstractAgent +2024-09-08 08:26:12,603 [main] TRACE ClassBuilder - read from EA: IED Agent::Notification +2024-09-08 08:26:12,608 [main] TRACE ClassBuilder - Class SecurityNotification (6 in package IED Agent) +2024-09-08 08:26:12,788 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3502, uuid={E2312704-4F51-465e-8B02-4DFC37D2286B}, since=null, name=AtkCnt, alias=, stereotype=security, visibility=public, txtDescription='Attribute that provides the number of cyber- attacks that have been detected.', htmlDescription='

Attribute that provides the number of cyber- attacks that have been detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:12,801 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3499, uuid={7B741BD7-BDA8-4148-BDA0-6667E98C3102}, since=null, name=ExpCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of expired certificates that are in the certificate storage configured for local use.', htmlDescription='

Indicates the number of expired certificates that are in the certificate storage configured for local use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:12,814 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3730, uuid={7029DE89-300D-43cb-B94F-49317EE26061}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:12,827 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3731, uuid={554C03A1-C7D0-43ea-8541-46609B5191C2}, since=null, name=NearToExpCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of certificates in the certificate storage configured for local use that have exceeded the 70% of validity period.', htmlDescription='

Indicates the number of certificates in the certificate storage configured for local use that have exceeded the 70% of validity period.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:12,840 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3498, uuid={16D2AFD2-62AE-4dfe-BA94-32B996B33302}, since=null, name=RevCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of revoked certificates that are still configured for local use.', htmlDescription='

Indicates the number of revoked certificates that are still configured for local use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:12,854 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3500, uuid={406910CA-F346-4649-99A2-5A215611BD7D}, since=null, name=RevCheckFail, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number revocation check failures.', htmlDescription='

Indicates the number revocation check failures.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:12,873 [main] DEBUG ClassBuilder - Adding SecurityNotification as subclass of AbstractAgent +2024-09-08 08:26:12,874 [main] TRACE ClassBuilder - read from EA: IED Agent::SecurityNotification +2024-09-08 08:26:12,876 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=43, _objData=UmlObjectData [id=11, uuid={FA4A74C3-A660-4c32-8794-7695680DB23E}, since=null, name=IED Agent, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 17, the IED Agent package contains the object descriptions for the environmental information to be provided for the network and system monitoring of environmental conditions where the device is operating.', htmlDescription='

As shown in Figure 17, the IED Agent package contains the object descriptions for the environmental information to be provided for the network and system monitoring of environmental conditions where the device is operating.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=ied-agent, mibName=IEC-62351-DEV-MIB, mibPrefix=iED, objectBranchId=2, objectIdentity=ied-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=IED Agent, _objData=UmlObjectData [id=9, uuid={C3FD1BF6-CB13-4fb3-9C75-D9FACF470ACD}, since=null, name=IED, alias=, stereotype=, visibility=public, txtDescription='The Intelligent Electronic Device class attributes', htmlDescription='

The Intelligent Electronic Device class attributes

'], _portrait=true, _kind=LOGICAL]], _classes=6 +2024-09-08 08:26:12,881 [main] INFO PackageBuilder - processing package Application Protocols Agents (9) ... +2024-09-08 08:26:13,039 [main] INFO PackageBuilder - processing package Common objects (0) ... +2024-09-08 08:26:13,050 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Common objects, _objData=UmlObjectData [id=64, uuid={583FFED4-9F6C-420f-88B3-80FF9F387121}, since=null, name=Application Protocol common objects, alias=, stereotype=, visibility=public, txtDescription='Application Protocol common objects', htmlDescription='

Application Protocol common objects

'], _portrait=true, _kind=LOGICAL] +2024-09-08 08:26:13,089 [main] TRACE ClassBuilder - Class CommonProtocolInfo (1 in package Common objects) +2024-09-08 08:26:13,309 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4079, uuid={CCA64890-32AD-4a39-BD2E-B115DB6259D5}, since=null, name=IEC62351part3, alias=, stereotype=security, visibility=public, txtDescription='True is security profile in use for this association (IEC 62351-3).', htmlDescription='

True is security profile in use for this association (IEC 62351-3).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:13,321 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4087, uuid={0CDF636C-287B-44bf-AF3B-83CBAEB3791B}, since=null, name=Part3ConnectionId, alias=, stereotype=protocol, visibility=public, txtDescription='IEC 62351-3 Transport layer connection id in use for this Association. Meaningful only if IEC62351Part3 is true.', htmlDescription='

IEC 62351-3 Transport layer connection id in use for this Association. Meaningful only if IEC62351Part3 is true.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:13,338 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4099, uuid={18DFBDB7-B849-4a22-AEBA-4B62D877531D}, since=null, name=TCPHndShTime, alias=, stereotype=performance, visibility=public, txtDescription='Duration of the TCP handshake. Only applicable when the when the application layer has access to the TLS layer.', htmlDescription='

Duration of the TCP handshake. Only applicable when the when the application layer has access to the TLS layer.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:13,358 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4107, uuid={A9F9F05C-681E-480a-B663-D8EB1E1FE300}, since=null, name=TLSHndTime, alias=, stereotype=performance, visibility=public, txtDescription='TLS Handshake time. Only applicable when the when the application layer has access to the TLS layer.', htmlDescription='

TLS Handshake time. Only applicable when the when the application layer has access to the TLS layer.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:13,373 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4109, uuid={F7CBA04D-7FEA-47c7-A560-EA06B30C3056}, since=null, name=TLSRenegotiationTime, alias=, stereotype=performance, visibility=public, txtDescription='TLS Renegotiation time. Only applicable when the when the application layer has access to the TLS layer.', htmlDescription='

TLS Renegotiation time. Only applicable when the when the application layer has access to the TLS layer.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:13,387 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4108, uuid={CBC69A2E-FFEA-4612-9907-B3E519FB4E3F}, since=null, name=TLSResumptionTime, alias=, stereotype=performance, visibility=public, txtDescription='TLS Resumption time. Only applicable when the when the application layer has access to the TLS layer.', htmlDescription='

TLS Resumption time. Only applicable when the when the application layer has access to the TLS layer.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:13,402 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4106, uuid={EF9560F0-0EC3-4417-883D-96C32AE7803C}, since=null, name=TotalHndTime, alias=, stereotype=performance, visibility=public, txtDescription='Transport + Application Handshake time.', htmlDescription='

Transport + Application Handshake time.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:13,418 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4105, uuid={BCBEF3C5-946E-42cf-8D1D-CAAC2679E795}, since=null, name=TransportHndTime, alias=, stereotype=performance, visibility=public, txtDescription='Transport layer handshake time. It is equal to TCPHndTime if IEC62351part3 is false, it is equal to TCPHndTime + TLSHndTime if IEC62351part3 is true.', htmlDescription='

Transport layer handshake time. It is equal to TCPHndTime if IEC62351part3 is false, it is equal to TCPHndTime + TLSHndTime if IEC62351part3 is true.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:13,493 [main] DEBUG ClassBuilder - Adding CommonProtocolInfo as subclass of AbstractAgent +2024-09-08 08:26:13,496 [main] TRACE ClassBuilder - read from EA: Common objects::CommonProtocolInfo +2024-09-08 08:26:13,498 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Application Protocols Agents, _depth=4, _eaElementID=1030, _objData=UmlObjectData [id=383, uuid={AE0BBC52-C6A1-4653-96A9-F35780566A54}, since=null, name=Common objects, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 18, this package includes the common class for the application protocols.', htmlDescription='

As shown in Figure 18, this package includes the common class for the application protocols.

'], _modelId=362, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=Common objects, _objData=UmlObjectData [id=64, uuid={583FFED4-9F6C-420f-88B3-80FF9F387121}, since=null, name=Application Protocol common objects, alias=, stereotype=, visibility=public, txtDescription='Application Protocol common objects', htmlDescription='

Application Protocol common objects

'], _portrait=true, _kind=LOGICAL]], _classes=1 +2024-09-08 08:26:13,506 [main] INFO PackageBuilder - processing package IEC62351-3 ed.2 Agent (6) ... +2024-09-08 08:26:13,528 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=IEC62351-3 ed.2 Agent, _objData=UmlObjectData [id=72, uuid={38D28719-1A0B-491f-9010-AF2D3032BB4B}, since=null, name=IEC 62351-3 ed.2 Agent Relationships, alias=, stereotype=, visibility=public, txtDescription='This picture depicts the relationship between IEC 62351-3 ed.2 objects', htmlDescription='

This picture depicts the relationship between IEC 62351-3 ed.2 objects

'], _portrait=true, _kind=LOGICAL] +2024-09-08 08:26:13,702 [main] TRACE ClassBuilder - Class IEC62351-3ed2security (1 in package IEC62351-3 ed.2 Agent) +2024-09-08 08:26:14,590 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4460, uuid={7510EED9-2C7E-480d-BD60-571DDC732128}, since=null, name=tlsEarlyDataCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: counts early data in handshake detected but neglected.', htmlDescription='

TLSv1.3: counts early data in handshake detected but neglected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:14,605 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4454, uuid={4FA3487F-4B3B-477e-99E8-2F5D24C013EF}, since=null, name=tlsDisallowedCipherCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts disallowed cipher suite proposed.', htmlDescription='

Counts disallowed cipher suite proposed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:14,621 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4461, uuid={F6A6964F-1010-4fc3-9112-0BBBF8244593}, since=null, name=tlsCertSizeMismatchCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts occurrences of endpoint certificate size exceeds limits', htmlDescription='

Counts occurrences of endpoint certificate size exceeds limits

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:14,637 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4463, uuid={89576E04-2176-4454-8207-BA0A305B9547}, since=null, name=tlsNoCaMatchCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts events of matching RootCA certificate for endpoint certificate validation not available.', htmlDescription='

Counts events of matching RootCA certificate for endpoint certificate validation not available.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:14,652 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4464, uuid={E1FBC1A2-6D0C-437e-95D2-873497AF44C6}, since=null, name=tlsNoSigAlgoExtCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: Counts events of no signature-algorithm extension included. Fallback to deprecated signature algorithm', htmlDescription='

TLSv1.2: Counts events of no signature-algorithm extension included. Fallback to deprecated signature algorithm

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:14,667 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4465, uuid={0A95DFE0-8624-4b8a-814E-A12605F19B07}, since=null, name=tlsDepDigAlgCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: Deprecated signature algorithm combination detected counter.', htmlDescription='

TLSv1.2: Deprecated signature algorithm combination detected counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:14,682 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4466, uuid={B68E613E-EEC5-4696-A841-9EE87D237582}, since=null, name=tlsNoTrustedCertMatchCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times Endpoint certificate not in certificate trust list', htmlDescription='

Counts the times Endpoint certificate not in certificate trust list

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:14,698 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4467, uuid={614E4EB0-BAA2-4b19-B00A-EA1FF0D8A3BD}, since=null, name=tlsCertRevokedCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times when endpoint certificate not in certificate trust list', htmlDescription='

Counts the times when endpoint certificate not in certificate trust list

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:14,713 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4468, uuid={1E2A987C-A48F-4eb7-A3BA-2C77F4A68216}, since=null, name=tlsNoCrlCnt, alias=, stereotype=security, visibility=public, txtDescription='Local CRL not accessible counter.', htmlDescription='

Local CRL not accessible counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:14,729 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4469, uuid={4A915807-5D1C-40af-9AA5-A745061F5DED}, since=null, name=tlsCrlExpCnt, alias=, stereotype=security, visibility=public, txtDescription='CRL expired.counter.', htmlDescription='

CRL expired.counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:14,744 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4470, uuid={AE06F05B-3CA8-44d1-9A20-5F4997A319FF}, since=null, name=tlsNoEpskModeCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: no support for encrypt-then-MAC counter', htmlDescription='

TLSv1.2: no support for encrypt-then-MAC counter

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:14,759 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4471, uuid={3E766604-E835-4b5a-A853-08A031D9FE22}, since=null, name=tlsNoEncryptThenMacCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: support of non-ephemeral PSK mode only counter.', htmlDescription='

TLSv1.3: support of non-ephemeral PSK mode only counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:14,775 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4472, uuid={C8F076B9-538C-423c-BC24-3756EAB54AEE}, since=null, name=tlsOcspResExpCnt, alias=, stereotype=security, visibility=public, txtDescription='OCSP response expired counter.', htmlDescription='

OCSP response expired counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:14,791 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4473, uuid={808D4C4A-240F-40a2-A84B-7EB7FAF41461}, since=null, name=tlsCertExpCnt, alias=, stereotype=security, visibility=public, txtDescription='Endpoint certificate expired counter.', htmlDescription='

Endpoint certificate expired counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:14,807 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4474, uuid={03D6BEA0-3F60-4e5b-BB2A-9126ABD1750F}, since=null, name=tlsNoSkUpdateCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: Peer does not perform session key update counter.', htmlDescription='

TLSv1.3: Peer does not perform session key update counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:14,822 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4475, uuid={264129C9-891C-4677-A001-B283CE215402}, since=null, name=tlsSigAlgMismatchCnt, alias=, stereotype=security, visibility=public, txtDescription='Signature algorithms in received endpoint certificate not supported counter.', htmlDescription='

Signature algorithms in received endpoint certificate not supported counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:14,838 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4476, uuid={A460A30B-5686-4f92-AFDC-C53C056A3309}, since=null, name=tlsSigVFailedCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times certificate signature could not be verified.', htmlDescription='

Counts the times certificate signature could not be verified.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:14,853 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4477, uuid={0FF962F9-BFB0-4683-96B5-09E38C57E324}, since=null, name=tlsShortRsaKeyCnt, alias=, stereotype=security, visibility=public, txtDescription='RSA key with key length of less than 2048 bit detected counter.', htmlDescription='

RSA key with key length of less than 2048 bit detected counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:14,869 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4478, uuid={39629ED0-372D-4c6f-B89B-4C13BA7374C6}, since=null, name=tlsMinKeyCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times RSA key with minimum key length of 1024 bit detected and allowed by configuration', htmlDescription='

Counts the times RSA key with minimum key length of 1024 bit detected and allowed by configuration

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:14,885 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4479, uuid={947A8F86-CF55-46c2-B517-3D4FA76FBA27}, since=null, name=tlsShortKeyCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times RSA key with insufficient key length (less than 1024 bit) detected..', htmlDescription='

Counts the times RSA key with insufficient key length (less than 1024 bit) detected..

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:14,901 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4480, uuid={560E07AC-D31D-4807-B518-20E83C9DD1A3}, since=null, name=tlsDepHashCnt, alias=, stereotype=security, visibility=public, txtDescription='Use of deprecated hash algorithm detected counter', htmlDescription='

Use of deprecated hash algorithm detected counter

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:14,916 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4462, uuid={6EDD77BB-4D13-4937-96A5-231A8441C74A}, since=null, name=tlsNoTrCaMatchSCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: No support of peer signalled trusted CA counter.', htmlDescription='

TLSv1.3: No support of peer signalled trusted CA counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:14,932 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4455, uuid={15470B2B-1EDC-41c5-AD3A-2E3583BF3A65}, since=null, name=tlsSessionidExpiredFullHsCnt, alias=, stereotype=security, visibility=public, txtDescription='Counter of sessionID expired, Resumption not possible, full TLS handshake done.', htmlDescription='

Counter of sessionID expired, Resumption not possible, full TLS handshake done.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:14,948 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4458, uuid={2B104C3D-3F3F-4c1a-812A-DC170DBA1CA2}, since=null, name=tlsNoRenegTicket, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: Number of times peer does not use secure renegotiation (session tickets) capability in renegotiated handshake.', htmlDescription='

TLSv1.2: Number of times peer does not use secure renegotiation (session tickets) capability in renegotiated handshake.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:14,964 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4457, uuid={D1BA2BD4-A79C-4617-9538-493A2956FC91}, since=null, name=tlsNoRenegSigCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: Number of times peer does not signal secure renegotiation support (session tickets) in initial handshake.', htmlDescription='

TLSv1.2: Number of times peer does not signal secure renegotiation support (session tickets) in initial handshake.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:14,980 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4453, uuid={E290CB99-A7B9-4ee1-AC49-29234D78A42C}, since=null, name=tlsSessionClosedRevCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the TLS session closure due to received revoked endpoint certificate.', htmlDescription='

Counts the TLS session closure due to received revoked endpoint certificate.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:14,996 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4459, uuid={854B3699-1B9D-4f64-B8B6-56CB2FD90FBB}, since=null, name=tlsNoTrCaMatchScCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: No support of peer signalled trusted CA counter.', htmlDescription='

TLSv1.3: No support of peer signalled trusted CA counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:15,012 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4450, uuid={8D2D94D8-3C6F-4bda-878C-F54D750FFD27}, since=null, name=tlsHsSuccessCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the TLS session successfully established.', htmlDescription='

Counts the TLS session successfully established.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:15,026 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4456, uuid={D19394DC-2DE1-403e-9C38-01EE35A0DDFD}, since=null, name=tlsNoReneg, alias=, stereotype=security, visibility=public, txtDescription='Number of times renegotiation interval is exceeded. TLSv1.2 peer does not renegotiate.', htmlDescription='

Number of times renegotiation interval is exceeded. TLSv1.2 peer does not renegotiate.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:15,044 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4452, uuid={B1BA2AF1-A523-4ca2-979A-38272AF41E2B}, since=null, name=tlsNoLocalCertCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times local endpoint certificate is not available.', htmlDescription='

Number of times local endpoint certificate is not available.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:15,059 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4447, uuid={3D255C0C-5B4C-4589-A304-5D6FAF7E69A2}, since=null, name=tlsWeakVersionCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times when deprecated TLS version proposed and support of TLS versions prior to TLSv1.2 enabled', htmlDescription='

Counts the times when deprecated TLS version proposed and support of TLS versions prior to TLSv1.2 enabled

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:15,075 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4449, uuid={4B8CCA5B-77FF-4b70-98D5-168DA947FE99}, since=null, name=tlsVersionChangeCnt, alias=, stereotype=security, visibility=public, txtDescription='Count the TLS version change (potential downgrade) in ongoing session detected.', htmlDescription='

Count the TLS version change (potential downgrade) in ongoing session detected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:15,090 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4446, uuid={C75A400F-5B38-4bc5-BE6A-48FB4977B686}, since=null, name=tlsDeprecatedVersionCnT, alias=, stereotype=security, visibility=public, txtDescription='Counts the times when a deprecated TLS version is proposed and support of TLS versions prior to TLSv1.2 is disabled.', htmlDescription='

Counts the times when a deprecated TLS version is proposed and support of TLS versions prior to TLSv1.2 is disabled.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:15,106 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4451, uuid={ACB5D4CD-DBF9-4e86-892D-469DB0082C7E}, since=null, name=tlsNoPeerCertCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times peer did not provide endpoint certificate during the TLS handshake.', htmlDescription='

Number of times peer did not provide endpoint certificate during the TLS handshake.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:15,121 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4448, uuid={A02762E7-1235-453b-8BB2-6D4E8F705EA1}, since=null, name=tlsDisallowedVersionCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times when disallowed TLS version (prior to TLSv1.0) proposed', htmlDescription='

Counts the times when disallowed TLS version (prior to TLSv1.0) proposed

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:15,181 [main] DEBUG ClassBuilder - Adding IEC62351-3ed2security as subclass of AbstractAgent +2024-09-08 08:26:15,184 [main] TRACE ClassBuilder - read from EA: IEC62351-3 ed.2 Agent::IEC62351-3ed2security +2024-09-08 08:26:15,189 [main] TRACE ClassBuilder - Class TLSSession (2 in package IEC62351-3 ed.2 Agent) +2024-09-08 08:26:15,368 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4488, uuid={851472EB-C0E1-4464-B067-F650659846CF}, since=null, name=SessionId, alias=, stereotype=index, visibility=public, txtDescription='Id of the TLS session.', htmlDescription='

Id of the TLS session.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibindex=yes, Version=1}] +2024-09-08 08:26:15,382 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4489, uuid={B226702B-AC3E-4f8c-BF07-E3347944EA3A}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:15,395 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4490, uuid={69D938D2-D561-48eb-8BCF-FA2CFA350C07}, since=null, name=LocAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Local address.', htmlDescription='

Local address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:15,411 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4491, uuid={6C3E2D7A-F0C0-424b-A05C-4A96E29F65E7}, since=null, name=LocAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Local address type.', htmlDescription='

Local address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:15,427 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4492, uuid={5C777986-F9FD-4fbf-AAFB-2E087F0B21F7}, since=null, name=RemAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address.', htmlDescription='

Remote address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:15,441 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4493, uuid={7AB71D12-EB91-421a-B172-48B97B758080}, since=null, name=RemAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address type.', htmlDescription='

Remote address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:15,518 [main] DEBUG ClassBuilder - Adding TLSSession as subclass of AbstractAgent +2024-09-08 08:26:15,520 [main] DEBUG ClassBuilder - Adding TLSSession as subclass of CommonProtocolInfo +2024-09-08 08:26:15,525 [main] DEBUG ClassBuilder - Adding TLSSession as subclass of IEC62351-3ed2security +2024-09-08 08:26:15,525 [main] TRACE ClassBuilder - read from EA: IEC62351-3 ed.2 Agent::TLSSession +2024-09-08 08:26:15,533 [main] TRACE ClassBuilder - Class Summary (3 in package IEC62351-3 ed.2 Agent) +2024-09-08 08:26:15,710 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4481, uuid={8E8A2B77-DF1B-4f33-B823-499F2C569AB8}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:15,723 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4482, uuid={CBC3AD5A-6EDA-4a33-95FA-37A565CEA2C1}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered (security or health).', htmlDescription='

Provides the last known event encountered (security or health).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:15,739 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4483, uuid={4669B65B-F448-43b1-9BB7-DD9A5FEFA04B}, since=null, name=Server, alias=, stereotype=table, visibility=public, txtDescription='Client session (when applicable)', htmlDescription='

Client session (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=1077, _eaTypeName=ServerTLS, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{MIBPrefix=tC, Version=1}] +2024-09-08 08:26:15,754 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4484, uuid={C3E6C81C-3F3D-4c3b-BABC-8573CD333CF5}, since=null, name=Client, alias=, stereotype=table, visibility=public, txtDescription='Server session (when applicable)', htmlDescription='

Server session (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=1079, _eaTypeName=ClientTLS, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{MIBPrefix=tC, Version=1}] +2024-09-08 08:26:15,768 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4485, uuid={36BE9868-D051-429a-8C15-ADEDE8C4F60A}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object', htmlDescription='

Security events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1078, _eaTypeName=IEC62351part3ed2SecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:15,782 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4486, uuid={9668B8A2-A9DD-433f-A572-90776DAC42FC}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object', htmlDescription='

State events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1074, _eaTypeName=IEC62351part3edNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:15,801 [main] DEBUG ClassBuilder - Adding Summary as subclass of IEC62351-3ed2security +2024-09-08 08:26:15,801 [main] TRACE ClassBuilder - read from EA: IEC62351-3 ed.2 Agent::Summary +2024-09-08 08:26:15,806 [main] TRACE ClassBuilder - Class IEC62351part3ed2SecurityNotification (4 in package IEC62351-3 ed.2 Agent) +2024-09-08 08:26:15,860 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification, _objData=UmlObjectData [id=4487, uuid={6943E7EC-3F67-43a9-90B0-9BCF7DB4D056}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Description of last event reported', htmlDescription='

Description of last event reported

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:15,881 [main] DEBUG ClassBuilder - Adding IEC62351part3ed2SecurityNotification as subclass of AbstractAgent +2024-09-08 08:26:15,881 [main] TRACE ClassBuilder - read from EA: IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification +2024-09-08 08:26:15,886 [main] TRACE ClassBuilder - Class ClientTLS (6 in package IEC62351-3 ed.2 Agent) +2024-09-08 08:26:15,921 [main] DEBUG ClassBuilder - Adding ClientTLS as subclass of TLSSession +2024-09-08 08:26:15,921 [main] TRACE ClassBuilder - read from EA: IEC62351-3 ed.2 Agent::ClientTLS +2024-09-08 08:26:15,927 [main] TRACE ClassBuilder - Class ServerTLS (7 in package IEC62351-3 ed.2 Agent) +2024-09-08 08:26:15,963 [main] DEBUG ClassBuilder - Adding ServerTLS as subclass of TLSSession +2024-09-08 08:26:15,963 [main] TRACE ClassBuilder - read from EA: IEC62351-3 ed.2 Agent::ServerTLS +2024-09-08 08:26:15,965 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Application Protocols Agents, _depth=4, _eaElementID=1073, _objData=UmlObjectData [id=393, uuid={0BB5C1E1-95F4-4e19-914B-062361E3FE90}, since=null, name=IEC62351-3 ed.2 Agent, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 19, the IEC 62351-3 Agent package includes the monitoring classes for the IEC 62351-3 ed. 2 events.', htmlDescription='

As shown in Figure 19, the IEC 62351-3 Agent package includes the monitoring classes for the IEC 62351-3 ed. 2 events.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=iec62351-3-ed2-agent, mibName=IEC-62351-3-ED2, mibPrefix=part3, objectBranchId=4, objectIdentity=iec62351-3-ed2-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=IEC62351-3 ed.2 Agent, _objData=UmlObjectData [id=72, uuid={38D28719-1A0B-491f-9010-AF2D3032BB4B}, since=null, name=IEC 62351-3 ed.2 Agent Relationships, alias=, stereotype=, visibility=public, txtDescription='This picture depicts the relationship between IEC 62351-3 ed.2 objects', htmlDescription='

This picture depicts the relationship between IEC 62351-3 ed.2 objects

'], _portrait=true, _kind=LOGICAL]], _classes=6 +2024-09-08 08:26:15,970 [main] INFO PackageBuilder - processing package IEEE 1815 and IEC 60870-5 Agent (6) ... +2024-09-08 08:26:15,996 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=IEEE 1815 and IEC 60870-5 Agent, _objData=UmlObjectData [id=33, uuid={8B1E40BA-BA71-478e-BC81-025DA5A45A35}, since=null, name=IEEE 1815 and IEC 60870 Agent Relationships, alias=, stereotype=, visibility=public, txtDescription='This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes. +Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.', htmlDescription='

This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes.

Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 08:26:16,207 [main] TRACE ClassBuilder - Class 60870andDNPProtocolInfo (1 in package IEEE 1815 and IEC 60870-5 Agent) +2024-09-08 08:26:16,955 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3991, uuid={E3FE31B6-2024-4e98-99E9-12CFAC8AEC6F}, since=null, name=AuthFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Count of the number of authorization failures.', htmlDescription='

Count of the number of authorization failures.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:16,969 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3992, uuid={F6B00869-D41C-44b6-B4FF-FA092ED078AE}, since=null, name=CtrlPrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of control actions attempted that did not have the correct privilege.', htmlDescription='

Number of control actions attempted that did not have the correct privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:16,982 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3993, uuid={2CBA5468-91CA-4cf0-BAC3-55AC2EC54FC8}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted.', htmlDescription='

Number PDUs received that could not be decrypted.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:16,994 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3405, uuid={66AB8F6D-0721-44fb-861C-C607A8498C6F}, since=null, name=ExT0Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T0 (connection establishment).', htmlDescription='

Count the expirations of the 104 time-out T0 (connection establishment).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:17,007 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3406, uuid={F62CF6E4-A1AF-476b-B35E-F4DE2A4E0591}, since=null, name=ExT1Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T1 (PDU).', htmlDescription='

Count the expirations of the 104 time-out T1 (PDU).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:17,019 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3407, uuid={8099C0E4-518A-434c-BF60-73BC878C2238}, since=null, name=ExT2Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T2 (ACK).', htmlDescription='

Count the expirations of the 104 time-out T2 (ACK).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:17,031 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3408, uuid={439C3366-994E-4fbc-A804-80CA3D745D68}, since=null, name=ExT3Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T3 (TEST).', htmlDescription='

Count the expirations of the 104 time-out T3 (TEST).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:17,043 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3124, uuid={B8936537-E883-4ab6-8A65-47CF971C5BB4}, since=null, name=InDisc, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDUs that were discarded.', htmlDescription='

Number of received PDUs that were discarded.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:17,055 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3994, uuid={9A232ABD-C751-45bb-8278-552FEB934C4E}, since=null, name=InErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of PDUs received that were in error.', htmlDescription='

Number of PDUs received that were in error.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:17,068 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3995, uuid={A4886E74-D4DE-4163-BBF4-BFB4DA9AA818}, since=null, name=InOvCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer overflows detected due to incoming communication.', htmlDescription='

Number of buffer overflows detected due to incoming communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:17,082 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3996, uuid={34EAD965-3EEE-42ae-9A33-371405C3B4A8}, since=null, name=InterPDUTime, alias=, stereotype=protocol, visibility=public, txtDescription='Time between two consecutives PDUs.', htmlDescription='

Time between two consecutives PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:17,095 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3997, uuid={E65434B6-333B-4677-9DB7-2689202D1C31}, since=null, name=MisPDUCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Provides an attribute that represents the count of missed PDU.', htmlDescription='

Provides an attribute that represents the count of missed PDU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:17,106 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3141, uuid={3DEDE5E8-C46A-4627-A2B8-FA7B2651B388}, since=null, name=OutErr, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmission errors.', htmlDescription='

Number of transmission errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:17,118 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3990, uuid={4B336F22-0DBB-425c-9CE9-8A2B3968C18C}, since=null, name=OutUv, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer underflows detected due to outgoing serial communication.', htmlDescription='

Number of buffer underflows detected due to outgoing serial communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:17,131 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3998, uuid={56C57887-C03F-430b-A3CC-47993296C81A}, since=null, name=PDURTT, alias=, stereotype=protocol, visibility=public, txtDescription='PDU round trip time.', htmlDescription='

PDU round trip time.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:17,142 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3999, uuid={F9A50D40-7721-4f2f-B450-70B42C8159B7}, since=null, name=PDUSizeFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDU with wrong size.', htmlDescription='

Number of received PDU with wrong size.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:17,155 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4000, uuid={C3639D7C-0EF8-4ffb-912C-24F7FA06CBA6}, since=null, name=PduTampCnt, alias=, stereotype=security, visibility=public, txtDescription='Provides an attribute that indicates the count of the number of PDUs that have been detected to be tampered with.', htmlDescription='

Provides an attribute that indicates the count of the number of PDUs that have been detected to be tampered with.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:17,166 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4001, uuid={AD2C395F-15DF-4e49-A4EF-1C8758015811}, since=null, name=PrimaryInterface, alias=, stereotype=protocol, visibility=public, txtDescription='True if the Protocol is running on primary interface (false when backup interface is in use).', htmlDescription='

True if the Protocol is running on primary interface (false when backup interface is in use).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:17,179 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4002, uuid={15035EBB-A53C-4c7d-BEA7-D6AF668B9A81}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:17,191 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3403, uuid={D5E66B05-319E-467b-9B20-4D0021DE5B43}, since=null, name=RtxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the number of retransmissions.', htmlDescription='

Count the number of retransmissions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:17,204 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3123, uuid={5F22267E-6104-41c7-A2B6-BBFFCE828B94}, since=null, name=RxCritical, alias=, stereotype=protocol, visibility=public, txtDescription='Number of critical requests received (according to IEC 62351-5).', htmlDescription='

Number of critical requests received (according to IEC 62351-5).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:17,215 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4003, uuid={37C50A09-5C52-4612-ACD2-3CA5076E832A}, since=null, name=RxPdu, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDUs (including in error PDUs).', htmlDescription='

Number of received PDUs (including in error PDUs).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:17,226 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3135, uuid={51629B5F-2B79-4aa4-A704-E8D4D467D6E2}, since=null, name=RxSolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Number of solicited requests received. Only for DNP.', htmlDescription='

Number of solicited requests received. Only for DNP.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:17,238 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3145, uuid={546FFA93-9BFB-40fc-8F59-570F9FA50834}, since=null, name=RxUnsolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Contains the count of number of unsolicited requests that have been transmitted since the last reset.', htmlDescription='

Contains the count of number of unsolicited requests that have been transmitted since the last reset.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:17,251 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4004, uuid={219E7530-12EB-4a52-AE1A-536554F0ED28}, since=null, name=SessKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of session key negotiations that failed.', htmlDescription='

Number of session key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:17,264 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3122, uuid={9760193C-146A-427a-88DE-4FA2BBC2EA9E}, since=null, name=TxCritical, alias=, stereotype=protocol, visibility=public, txtDescription='Number of critical requests transmitted (according to IEC 62351-5)', htmlDescription='

Number of critical requests transmitted (according to IEC 62351-5)

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:17,276 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4005, uuid={984B7498-8B61-45e0-BE19-6E17EA80D9D0}, since=null, name=TxPdu, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmitted PDUs.', htmlDescription='

Number of transmitted PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:17,288 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3120, uuid={7F13ABEF-5E7A-4fc2-BE27-AB2E70B1B97A}, since=null, name=TxSolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Number of solicited requests transmitted. Only for DNP.', htmlDescription='

Number of solicited requests transmitted. Only for DNP.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:17,299 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3121, uuid={76A62C46-9C78-48ff-9770-F2A7BE837E1F}, since=null, name=TxUnsolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Contains the count of number of unsolicited requests that have been transmitted since the last reset.', htmlDescription='

Contains the count of number of unsolicited requests that have been transmitted since the last reset.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:17,311 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4006, uuid={2AAAEC13-D4BB-4d2a-8461-00DBAE43010B}, since=null, name=UpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations that failed.', htmlDescription='

Number of update key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:17,356 [main] DEBUG ClassBuilder - Adding 60870andDNPProtocolInfo as subclass of AbstractAgent +2024-09-08 08:26:17,356 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo +2024-09-08 08:26:17,361 [main] TRACE ClassBuilder - Class Association (2 in package IEEE 1815 and IEC 60870-5 Agent) +2024-09-08 08:26:17,617 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=3726, uuid={361DD26C-8F48-46fd-BCE9-B6A3787F5FA6}, since=null, name=AssociationId, alias=, stereotype=index, visibility=public, txtDescription='Id of the association.', htmlDescription='

Id of the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:17,629 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=3241, uuid={87C4526C-4B22-42d3-BFDD-0EBE86166CDA}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:17,648 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2417, uuid={FF67FCFB-43B0-4a5a-8A33-52E57E2A1E33}, since=null, name=LocAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Local address.', htmlDescription='

Local address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-08 08:26:17,666 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=3715, uuid={857943C5-1917-46b9-BAA2-F6DBBE305DDA}, since=null, name=LocAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Local address type.', htmlDescription='

Local address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-08 08:26:17,678 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2413, uuid={218B44A4-22AA-4a3a-B54C-BC3742A6A951}, since=null, name=ProtID, alias=, stereotype=protocol, visibility=public, txtDescription='Protocol ID in use.', htmlDescription='

Protocol ID in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=780, _eaTypeName=ProtIdType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:17,693 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2412, uuid={2DCFE840-6DFB-49ca-9D60-6F00BBFE9375}, since=null, name=ProviderDesc, alias=, stereotype=identity, visibility=public, txtDescription='Textual description of the provider that is in use.', htmlDescription='

Textual description of the provider that is in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:17,706 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2411, uuid={739910E5-2234-4d7f-BF07-E2FAC9061548}, since=null, name=ProviderName, alias=, stereotype=identity, visibility=public, txtDescription='Identity of the provider responding as the outstation for this association.', htmlDescription='

Identity of the provider responding as the outstation for this association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:17,726 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2416, uuid={F1041BDF-E1EE-44c3-B346-5643EFA0E8C7}, since=null, name=RemAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address.', htmlDescription='

Remote address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{isIndex=yes, mibIndex=yes, Version=0}] +2024-09-08 08:26:17,747 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=3714, uuid={25C69ED7-7E01-4316-B15C-28D99CC5FC94}, since=null, name=RemAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address type.', htmlDescription='

Remote address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{isIndex=yes, mibIndex=yes, Version=0}] +2024-09-08 08:26:17,762 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2410, uuid={4F98C052-71F6-44e6-A31C-2A148D61DF91}, since=null, name=TLnkErrCnt, alias=, stereotype=health, visibility=public, txtDescription='Count of communication link errors detected.', htmlDescription='

Count of communication link errors detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:17,775 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2415, uuid={FED824F2-3E50-44cd-A78C-B816071534FB}, since=null, name=TLnkTyp, alias=, stereotype=protocol, visibility=public, txtDescription='Type of transport being utilized.', htmlDescription='

Type of transport being utilized.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=778, _eaTypeName=LnkType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:17,847 [main] DEBUG ClassBuilder - Adding Association as subclass of AbstractAgent +2024-09-08 08:26:17,849 [main] DEBUG ClassBuilder - Adding Association as subclass of 60870andDNPProtocolInfo +2024-09-08 08:26:17,853 [main] DEBUG ClassBuilder - Adding Association as subclass of CommonProtocolInfo +2024-09-08 08:26:17,853 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent::Association +2024-09-08 08:26:17,858 [main] TRACE ClassBuilder - Class Summary (3 in package IEEE 1815 and IEC 60870-5 Agent) +2024-09-08 08:26:18,020 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=3248, uuid={37A47CAE-5E15-4947-9824-88474381CEB3}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:18,032 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=3708, uuid={33EEE0D1-CEBA-4f55-8388-E92B798B5827}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered (security or health).', htmlDescription='

Provides the last known event encountered (security or health).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:18,048 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=2278, uuid={D8685894-627E-4b6f-B670-3C72CC90DF6B}, since=null, name=Master, alias=, stereotype=table, visibility=public, txtDescription='Client association (when applicable)', htmlDescription='

Client association (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=820, _eaTypeName=MasterAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{MIBPrefix=tC, Version=0}] +2024-09-08 08:26:18,064 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=2287, uuid={364CBB2E-460C-46ce-AC40-149F1C18EAC8}, since=null, name=Outstation, alias=, stereotype=table, visibility=public, txtDescription='Server association (when applicable)', htmlDescription='

Server association (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=821, _eaTypeName=OutstationAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{MIBPrefix=tC, Version=0}] +2024-09-08 08:26:18,076 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=3609, uuid={86E71A83-DD23-44dd-AF05-2C4883970DBA}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object', htmlDescription='

Security events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=914, _eaTypeName=60870andDNPSecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:18,090 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=3608, uuid={E3191E3F-E629-4bfd-A8E1-64D78A2B9955}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object', htmlDescription='

State events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=915, _eaTypeName=60870andDNPNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:18,110 [main] DEBUG ClassBuilder - Adding Summary as subclass of 60870andDNPProtocolInfo +2024-09-08 08:26:18,110 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent::Summary +2024-09-08 08:26:18,115 [main] TRACE ClassBuilder - Class 60870andDNPSecurityNotification (4 in package IEEE 1815 and IEC 60870-5 Agent) +2024-09-08 08:26:18,332 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3519, uuid={8EC7A2E6-FA1E-44bf-871A-8E7A12508F3F}, since=null, name=AuthFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Count of the number of authorization failures.', htmlDescription='

Count of the number of authorization failures.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:18,347 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3518, uuid={F5BEAE2F-4536-4f9c-9478-CF23E2A2D7C5}, since=null, name=CtrlPrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of control actions attempted that did not have the correct privilege.', htmlDescription='

Number of control actions attempted that did not have the correct privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:18,362 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3522, uuid={9ABAB39B-C8D2-427c-805D-DD74A37B15BD}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted.', htmlDescription='

Number PDUs received that could not be decrypted.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:18,376 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=4043, uuid={1BC26E95-9659-4250-87C9-365D73AD44BE}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered (security or health).', htmlDescription='

Provides the last known event encountered (security or health).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:18,391 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3520, uuid={2018A0E6-F948-40c3-98F5-CC50CFBD7527}, since=null, name=PduTampCnt, alias=, stereotype=security, visibility=public, txtDescription='Provides an attribute that indicates the count of the number of PDUs that have been detected to be tampered with.', htmlDescription='

Provides an attribute that indicates the count of the number of PDUs that have been detected to be tampered with.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:18,405 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3521, uuid={F0F1CF0B-1E15-4c19-ACB3-B4C1D745383F}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:18,420 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3523, uuid={22ADAAB8-8A4A-49c6-A261-6FC1E02DFEDB}, since=null, name=SessKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of session key negotiations that failed.', htmlDescription='

Number of session key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:18,434 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3524, uuid={A9AFB691-7A96-43a3-9FDB-B197827A4D8C}, since=null, name=UpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations that failed.', htmlDescription='

Number of update key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:18,455 [main] DEBUG ClassBuilder - Adding 60870andDNPSecurityNotification as subclass of AbstractAgent +2024-09-08 08:26:18,455 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification +2024-09-08 08:26:18,461 [main] TRACE ClassBuilder - Class 60870andDNPNotification (5 in package IEEE 1815 and IEC 60870-5 Agent) +2024-09-08 08:26:18,594 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3526, uuid={6936B8C9-BCD0-46a8-B2A7-4423628A89F6}, since=null, name=InErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of PDUs received that were in error.', htmlDescription='

Number of PDUs received that were in error.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:18,608 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3528, uuid={97175DF9-326B-40f7-B626-D213159A0A56}, since=null, name=InOvCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer overflows detected due to incoming communication.', htmlDescription='

Number of buffer overflows detected due to incoming communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:18,622 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3529, uuid={47916BBB-21C9-49df-8C8B-3A9375A29441}, since=null, name=OutUv, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer underflows detected due to outgoing serial communication.', htmlDescription='

Number of buffer underflows detected due to outgoing serial communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:18,635 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3527, uuid={0C1DB352-F31C-4520-B8BB-43E3CB924F8D}, since=null, name=RxPdu, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDUs.', htmlDescription='

Number of received PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:18,648 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3525, uuid={B77A1C29-3430-40df-AC7F-D1ACC9E6C035}, since=null, name=TxPdu, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmitted PDUs.', htmlDescription='

Number of transmitted PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:18,666 [main] DEBUG ClassBuilder - Adding 60870andDNPNotification as subclass of AbstractAgent +2024-09-08 08:26:18,666 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification +2024-09-08 08:26:18,671 [main] TRACE ClassBuilder - Class MasterAssociation (6 in package IEEE 1815 and IEC 60870-5 Agent) +2024-09-08 08:26:18,703 [main] DEBUG ClassBuilder - Adding MasterAssociation as subclass of Association +2024-09-08 08:26:18,703 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent::MasterAssociation +2024-09-08 08:26:18,708 [main] TRACE ClassBuilder - Class OutstationAssociation (7 in package IEEE 1815 and IEC 60870-5 Agent) +2024-09-08 08:26:18,741 [main] DEBUG ClassBuilder - Adding OutstationAssociation as subclass of Association +2024-09-08 08:26:18,741 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent::OutstationAssociation +2024-09-08 08:26:18,744 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Application Protocols Agents, _depth=4, _eaElementID=131, _objData=UmlObjectData [id=41, uuid={B92342A5-EA3E-4be2-8BA2-4B40BB389569}, since=null, name=IEEE 1815 and IEC 60870-5 Agent, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 20, this package includes the IEEE 1815 DNP and IEC 60870-5-104 protocols classes. This high level class named "summary" includes two objects related to the application stack and "association" class that reports the object related to the possible communication sessions between masters and outstations. +This package includes the version of the objects related to IEC TS 62351-5:2013. +The two class "Master Association" and "Outstation Association" Inherits the Associations class attributes. +For each IEEE 1815 DNP or IEC 60870-5-104 application stack a single instance of "summary" class is provided. This instance of "summary" class can be related to several instances of "OutstationAssociation" and "MasterAssociation" classes which inherit the attributes from the "Association" class. Each instance "Association" is the container of the attributes of a specific application session between an Outstation and a Master. +Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Infoand Security objects, and therefore the more general class as well.', htmlDescription='

As shown in Figure 20, this package includes the IEEE 1815 DNP and IEC 60870-5-104 protocols classes. This high level class named "summary" includes two objects related to the application stack and "association" class that reports the object related to the possible communication sessions between masters and outstations.

This package includes the version of the objects related to IEC TS 62351-5:2013.

The two class "Master Association" and "Outstation Association" Inherits the Associations class attributes.

For each IEEE 1815 DNP or IEC 60870-5-104 application stack a single instance of "summary" class is provided. This instance of "summary" class can be related to several instances of "OutstationAssociation" and "MasterAssociation" classes which inherit the attributes from the "Association" class. Each instance "Association" is the container of the attributes of a specific application session between an Outstation and a Master.

Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Infoand Security objects, and therefore the more general class as well.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=ieee1815andiec60870-5-agent, mibName=IEC-62351-IEC60870-5-IEEE1815-MIB, mibPrefix=tC, objectBranchId=1, objectIdentity=ieee1815andiec60870-5-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=IEEE 1815 and IEC 60870-5 Agent, _objData=UmlObjectData [id=33, uuid={8B1E40BA-BA71-478e-BC81-025DA5A45A35}, since=null, name=IEEE 1815 and IEC 60870 Agent Relationships, alias=, stereotype=, visibility=public, txtDescription='This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes. +Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.', htmlDescription='

This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes.

Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.

'], _portrait=true, _kind=LOGICAL]], _classes=7 +2024-09-08 08:26:18,749 [main] INFO PackageBuilder - processing package IEEE 1815 and IEC 60870-5 Agent - ed2 (6) ... +2024-09-08 08:26:18,771 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=IEEE 1815 and IEC 60870-5 Agent - ed2, _objData=UmlObjectData [id=70, uuid={AA945755-BD47-4be2-A238-6331816DBA4B}, since=null, name=IEEE 1815 and IEC 60870 Agent Relationships, alias=, stereotype=, visibility=public, txtDescription='This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes. +Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.', htmlDescription='

This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes.

Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 08:26:18,988 [main] TRACE ClassBuilder - Class 60870andDNPProtocolInfoEd2 (1 in package IEEE 1815 and IEC 60870-5 Agent - ed2) +2024-09-08 08:26:19,437 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4257, uuid={0C0A0A2C-20C0-4ca9-9856-507B3CF40B66}, since=null, name=ExT0Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T0 (connection establishment).', htmlDescription='

Count the expirations of the 104 time-out T0 (connection establishment).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:19,450 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4258, uuid={C6845E20-7B2D-4978-A35B-D43715366935}, since=null, name=ExT1Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T1 (PDU).', htmlDescription='

Count the expirations of the 104 time-out T1 (PDU).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:19,463 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4259, uuid={15711ABC-5E51-4c9e-95EB-71E116D1CBC1}, since=null, name=ExT2Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T2 (ACK).', htmlDescription='

Count the expirations of the 104 time-out T2 (ACK).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:19,476 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4260, uuid={7A191FB8-98E6-4847-930B-90CB4FC6E61E}, since=null, name=ExT3Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T3 (TEST).', htmlDescription='

Count the expirations of the 104 time-out T3 (TEST).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:19,489 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4261, uuid={81B43739-99E7-46b8-BB5A-340970E92A28}, since=null, name=DiscPduCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of discarded messages.', htmlDescription='

Number of discarded messages.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:19,501 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4262, uuid={8165A5DE-3828-4785-9068-BB9EBEA44FF2}, since=null, name=InErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of PDUs received that were in error.', htmlDescription='

Number of PDUs received that were in error.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:19,516 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4263, uuid={D90D5B9D-8B9D-454d-83A9-E6715E4783C6}, since=null, name=InOvCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer overflows detected due to incoming communication.', htmlDescription='

Number of buffer overflows detected due to incoming communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:19,529 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4264, uuid={E8C8E34D-3689-46e8-B001-9DE7609677AC}, since=null, name=InterPDUTime, alias=, stereotype=protocol, visibility=public, txtDescription='Time between two consecutives PDUs.', htmlDescription='

Time between two consecutives PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:19,542 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4265, uuid={49E9D387-25A4-46e7-8CEB-9C75979FB7AF}, since=null, name=MisPDUCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Provides an attribute that represents the count of missed PDU.', htmlDescription='

Provides an attribute that represents the count of missed PDU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:19,556 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4266, uuid={8845E947-C91C-4a04-B4FE-3AEDC1029732}, since=null, name=OutErr, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmission errors.', htmlDescription='

Number of transmission errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:19,569 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4267, uuid={CCD6A7C5-F0B4-4402-AE88-B35035615DC3}, since=null, name=OutUv, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer underflows detected due to outgoing serial communication.', htmlDescription='

Number of buffer underflows detected due to outgoing serial communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:19,583 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4269, uuid={378D6C1B-B55C-457c-BD03-A017415E19C4}, since=null, name=PDUSizeFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDU with wrong size.', htmlDescription='

Number of received PDU with wrong size.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:19,597 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4273, uuid={8E51A58B-0043-4528-B1BC-BC2B4CC4E59C}, since=null, name=RtxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the number of retransmissions.', htmlDescription='

Count the number of retransmissions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:19,610 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4275, uuid={9768D1CC-F452-448b-B8DF-26922CB00ED7}, since=null, name=RxPduCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDUs (including PDUs with errors).', htmlDescription='

Number of received PDUs (including PDUs with errors).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:19,624 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4276, uuid={00CBF4DB-7CDE-4393-BCCF-90A5601FF89C}, since=null, name=RxSolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Number of solicited requests received. Only for DNP.', htmlDescription='

Number of solicited requests received. Only for DNP.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:19,640 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4277, uuid={A480B5CE-C799-40b2-9A6C-05A2B643932E}, since=null, name=RxUnsolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Contains the count of number of unsolicited requests that have been transmitted since the last reset.', htmlDescription='

Contains the count of number of unsolicited requests that have been transmitted since the last reset.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:19,655 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4280, uuid={7A2A5BFA-FCB8-44a4-A4CF-442CC8A9FB0E}, since=null, name=TxPduCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmitted PDUs.', htmlDescription='

Number of transmitted PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:19,672 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4281, uuid={BF7B41CE-7B62-4a5f-A9F6-D1E8A5A4952E}, since=null, name=TxSolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Number of solicited requests transmitted. Only for DNP.', htmlDescription='

Number of solicited requests transmitted. Only for DNP.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:19,688 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4282, uuid={BB6FDD4B-6837-4d88-B268-0D09301311FD}, since=null, name=TxUnsolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Contains the count of number of unsolicited requests that have been transmitted since the last reset.', htmlDescription='

Contains the count of number of unsolicited requests that have been transmitted since the last reset.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:19,773 [main] DEBUG ClassBuilder - Adding 60870andDNPProtocolInfoEd2 as subclass of AbstractAgent +2024-09-08 08:26:19,776 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2 +2024-09-08 08:26:19,782 [main] TRACE ClassBuilder - Class IEC62351part5 (1 in package IEEE 1815 and IEC 60870-5 Agent - ed2) +2024-09-08 08:26:20,436 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4306, uuid={85A6FA13-2677-4c99-BC12-DD878801CFC4}, since=null, name=StAsProcScsCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Station Association procedure has been successfully performed.', htmlDescription='

Number of times the Station Association procedure has been successfully performed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:20,449 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4307, uuid={F82373BD-CE1D-4a57-B13C-413810F179B0}, since=null, name=StAsProcFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Station Association procedure has failed.', htmlDescription='

Number of times the Station Association procedure has failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:20,460 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4308, uuid={69BDB5BC-DE98-4195-8110-202AD93E7AFC}, since=null, name=SKeyProcScsCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Session Key was changed successfully.', htmlDescription='

Number of times the Session Key was changed successfully.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:20,472 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4336, uuid={8BE551FF-4A0A-45b6-A0A0-D051150BF74D}, since=null, name=KeyAutnAlgSupFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Data authentication algorithm support failures. Controlled station only.', htmlDescription='

Number of Data authentication algorithm support failures. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:20,485 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4337, uuid={60FED222-F3AD-4f4c-A733-DE4950C990C2}, since=null, name=SKeyWrapAlgSupFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of key wrap algorithm support failures. Controlled station only.', htmlDescription='

Number of key wrap algorithm support failures. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:20,496 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4338, uuid={C2B0C0DF-C9DD-4aef-932E-B016DA2E6276}, since=null, name=DataProtAlgSupFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Data authentication algorithm support failures. Controlled station only.', htmlDescription='

Number of Data authentication algorithm support failures. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:20,508 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4339, uuid={55BE76A2-DF93-45de-9D84-4EE282ACC41B}, since=null, name=SKeyAutnErrCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Key authentication errors.', htmlDescription='

Number of Key authentication errors.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:20,520 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4340, uuid={97FE21BE-F20E-4b5f-9E7C-62B9BF57A4C7}, since=null, name=DataAutnErrCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of non-authentic Secure Data messages received.', htmlDescription='

Number of non-authentic Secure Data messages received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:20,533 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4341, uuid={303256CB-76CD-4b39-8D6B-6B5F7E4718DC}, since=null, name=UnxpMsgErrCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of unexpected messages received.', htmlDescription='

Number of unexpected messages received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:20,547 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4342, uuid={7B618961-D677-4bf9-83FB-40700B9BA9CC}, since=null, name=MaxReplyToutCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Max Reply Timeouts threshold was reached. Controlling station only.', htmlDescription='

Number of times the Max Reply Timeouts threshold was reached. Controlling station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:20,561 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4343, uuid={D8D3268F-F4C4-49d7-AB23-7946C1CEA6D1}, since=null, name=NodeAutrFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of unauthorized communication attempts.', htmlDescription='

Number of unauthorized communication attempts.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:20,574 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4344, uuid={23FA293A-4F87-4c7c-B4E2-6B3955B5ED61}, since=null, name=CtrlOperAutrFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of unauthorized operations. Controlled station only.', htmlDescription='

Number of unauthorized operations. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:20,585 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4345, uuid={6193E983-C056-491a-B7A3-EBE58355374C}, since=null, name=RemCertCheckFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of invalid certificates received.', htmlDescription='

Number of invalid certificates received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:20,598 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4346, uuid={46BA0F58-A6A4-4d23-9157-B07A5643B284}, since=null, name=RemCertExpiredCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the remote station's certificate expired.', htmlDescription='

Number of times the remote station's certificate expired.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:20,610 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4347, uuid={C54FF7FA-520C-4d4f-A4A1-B7E88C041568}, since=null, name=RemCertRevokedCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the remote station's certificate has been revoked.', htmlDescription='

Number of times the remote station's certificate has been revoked.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:20,624 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4348, uuid={95955856-F76D-4e05-B055-4FF8029E1A9D}, since=null, name=LocCertExpiredCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the local station's certificate expired.', htmlDescription='

Number of times the local station's certificate expired.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:20,636 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4349, uuid={DE7B5995-13C2-44c8-8579-6CEF37D201AF}, since=null, name=LocCertRevokedCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the local station's certificate has been revoked.', htmlDescription='

Number of times the local station's certificate has been revoked.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:20,648 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4350, uuid={2223C6EC-FBAE-4b91-8FF2-4407C5DFFF36}, since=null, name=KeysInvRemCertRevCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Cryptographic Keys were invalidated due to remote station's certificate revocation.', htmlDescription='

Number of times the Cryptographic Keys were invalidated due to remote station's certificate revocation.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:20,662 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4351, uuid={5DCACFEC-13BF-47c0-88D7-950B26D9DBBB}, since=null, name=KeysInvLocCertRevCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Cryptographic Keys were invalidated due to local station's certificate revocation.', htmlDescription='

Number of times the Cryptographic Keys were invalidated due to local station's certificate revocation.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:20,674 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4352, uuid={4A474D59-99BF-495e-BB9D-C3E096F5F83B}, since=null, name=DataAutnScsCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of authentic Secure Data messages received.', htmlDescription='

Number of authentic Secure Data messages received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:20,687 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4353, uuid={7F7D3F88-910D-4dae-B5B1-DED2E46A51C7}, since=null, name=ReplyToutCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Reply Timeouts. Controlling station only.', htmlDescription='

Number of Reply Timeouts. Controlling station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:20,700 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4354, uuid={E6FD44A6-C9CE-45d6-BA4A-3EF7DECB1691}, since=null, name=RequestToutCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Request Timeouts. Controlled station only.', htmlDescription='

Number of Request Timeouts. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:20,712 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4355, uuid={65E3DDC2-B3AC-4c86-8AF6-39C43114EC3C}, since=null, name=SKeyInvUseCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Session Key was invalidated due to Max Session Key Usage Count. Controlled station only.', htmlDescription='

Number of times the Session Key was invalidated due to Max Session Key Usage Count. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:20,725 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4356, uuid={3C26B695-A1A0-44c3-BE08-C75CA78940DA}, since=null, name=SKeyInvToutCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Session Keys were invalidated due to Max Session Key Usage Timeout. Controlled station only.', htmlDescription='

Number of times the Session Keys were invalidated due to Max Session Key Usage Timeout. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:20,737 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4357, uuid={B3A60D84-37C0-40f2-9019-17B8C45C778E}, since=null, name=SKeyProcFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Session Key Change failures.', htmlDescription='

Number of Session Key Change failures.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:20,750 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4335, uuid={90633EE5-94E7-44d3-B98C-08140BCBFCF1}, since=null, name=ProtInfoErrCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of protocol information errors. Controlled station only.', htmlDescription='

Number of protocol information errors. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:20,782 [main] DEBUG ClassBuilder - Adding IEC62351part5 as superclass of 60870andDNPProtocolInfoEd2 +2024-09-08 08:26:20,784 [main] DEBUG ClassBuilder - Adding IEC62351part5 as subclass of AbstractAgent +2024-09-08 08:26:20,784 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5 +2024-09-08 08:26:20,790 [main] TRACE ClassBuilder - Class Association (2 in package IEEE 1815 and IEC 60870-5 Agent - ed2) +2024-09-08 08:26:21,064 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4284, uuid={D3B5EC3D-3991-40b8-85B6-2AFB3206637A}, since=null, name=AssociationId, alias=, stereotype=index, visibility=public, txtDescription='Id of the association.', htmlDescription='

Id of the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:21,078 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4285, uuid={DB5A65D6-2349-4a56-A200-129882572A95}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:21,098 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4286, uuid={FABF76A8-43C1-4be2-89C5-4C3B7F18604B}, since=null, name=LocAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Local address.', htmlDescription='

Local address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-08 08:26:21,118 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4287, uuid={F933B36B-EE52-4922-9AA4-F0CB5A55F9CE}, since=null, name=LocAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Local address type.', htmlDescription='

Local address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-08 08:26:21,132 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4288, uuid={4EDE24F7-C4DB-4078-926A-3518CCBB1D8F}, since=null, name=ProtID, alias=, stereotype=protocol, visibility=public, txtDescription='Protocol ID in use.', htmlDescription='

Protocol ID in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=780, _eaTypeName=ProtIdType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:21,146 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4289, uuid={8CE59398-E353-464a-9B25-03588802C32E}, since=null, name=ProviderDesc, alias=, stereotype=identity, visibility=public, txtDescription='Textual description of the provider that is in use.', htmlDescription='

Textual description of the provider that is in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:21,158 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4290, uuid={BD1C65C9-07DF-4192-8713-A93BC3E1C050}, since=null, name=ProviderName, alias=, stereotype=identity, visibility=public, txtDescription='Identity of the provider responding as the outstation for this association.', htmlDescription='

Identity of the provider responding as the outstation for this association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:21,182 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4291, uuid={BEB1F3A7-96E9-4a7f-B4CE-78A311245A60}, since=null, name=RemAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address.', htmlDescription='

Remote address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{isIndex=yes, mibIndex=yes, Version=0}] +2024-09-08 08:26:21,204 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4292, uuid={59810D47-4220-40e1-A018-FE80613740BC}, since=null, name=RemAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address type.', htmlDescription='

Remote address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{isIndex=yes, mibIndex=yes, Version=0}] +2024-09-08 08:26:21,216 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4293, uuid={9AE7823D-F26B-48f8-A955-DA056C8C0F32}, since=null, name=TLnkErrCnt, alias=, stereotype=health, visibility=public, txtDescription='Count of communication link errors detected.', htmlDescription='

Count of communication link errors detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:21,228 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4294, uuid={FFAF85C1-58F9-4330-80FE-18A5100B3EE7}, since=null, name=TLnkTyp, alias=, stereotype=protocol, visibility=public, txtDescription='Type of transport being utilized.', htmlDescription='

Type of transport being utilized.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=778, _eaTypeName=LnkType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:21,297 [main] DEBUG ClassBuilder - Adding Association as subclass of CommonProtocolInfo +2024-09-08 08:26:21,298 [main] DEBUG ClassBuilder - Adding Association as subclass of AbstractAgent +2024-09-08 08:26:21,300 [main] DEBUG ClassBuilder - Adding Association as subclass of 60870andDNPProtocolInfoEd2 +2024-09-08 08:26:21,302 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent - ed2::Association +2024-09-08 08:26:21,307 [main] TRACE ClassBuilder - Class Summary (3 in package IEEE 1815 and IEC 60870-5 Agent - ed2) +2024-09-08 08:26:21,462 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4295, uuid={E543F5FE-D414-4517-9CFA-17AF02358984}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:21,476 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4296, uuid={A601B46C-5CB2-4663-BBDD-6B075EA07FE8}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered (security or health).', htmlDescription='

Provides the last known event encountered (security or health).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:21,491 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4297, uuid={DD17EC1E-C1D2-444e-BC3B-65A68EB1768E}, since=null, name=Master, alias=, stereotype=table, visibility=public, txtDescription='Client association (when applicable)', htmlDescription='

Client association (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=1057, _eaTypeName=MasterAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{MIBPrefix=tC, Version=0}] +2024-09-08 08:26:21,508 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4298, uuid={927B1068-7146-4ea9-B50A-FD00B14D1747}, since=null, name=Outstation, alias=, stereotype=table, visibility=public, txtDescription='Server association (when applicable)', htmlDescription='

Server association (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=1056, _eaTypeName=OutstationAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{MIBPrefix=tC, Version=0}] +2024-09-08 08:26:21,520 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4299, uuid={E4361517-7300-4db5-A392-69EAD372A4E2}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object', htmlDescription='

Security events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1055, _eaTypeName=60870andDNPSecurityNotificationEd2, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:21,534 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4300, uuid={240DF754-7E5E-4226-B4F4-F1DDBE6652EB}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object', htmlDescription='

State events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1061, _eaTypeName=60870andDNPNotificationEd2, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:21,554 [main] DEBUG ClassBuilder - Adding Summary as subclass of 60870andDNPProtocolInfoEd2 +2024-09-08 08:26:21,554 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent - ed2::Summary +2024-09-08 08:26:21,559 [main] TRACE ClassBuilder - Class 60870andDNPSecurityNotificationEd2 (4 in package IEEE 1815 and IEC 60870-5 Agent - ed2) +2024-09-08 08:26:21,628 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2, _objData=UmlObjectData [id=4358, uuid={6AA445FA-BC7C-4384-8725-306C37B37564}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:21,647 [main] DEBUG ClassBuilder - Adding 60870andDNPSecurityNotificationEd2 as subclass of AbstractAgent +2024-09-08 08:26:21,647 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2 +2024-09-08 08:26:21,652 [main] TRACE ClassBuilder - Class 60870andDNPNotificationEd2 (5 in package IEEE 1815 and IEC 60870-5 Agent - ed2) +2024-09-08 08:26:21,703 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2, _objData=UmlObjectData [id=4360, uuid={60B53F7E-A6F1-449b-8917-E860F3F35ECB}, since=null, name=LastEvent, alias=, stereotype=protocol, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:21,720 [main] DEBUG ClassBuilder - Adding 60870andDNPNotificationEd2 as subclass of AbstractAgent +2024-09-08 08:26:21,720 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2 +2024-09-08 08:26:21,725 [main] TRACE ClassBuilder - Class MasterAssociation (6 in package IEEE 1815 and IEC 60870-5 Agent - ed2) +2024-09-08 08:26:21,759 [main] DEBUG ClassBuilder - Adding MasterAssociation as subclass of Association +2024-09-08 08:26:21,760 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent - ed2::MasterAssociation +2024-09-08 08:26:21,767 [main] TRACE ClassBuilder - Class OutstationAssociation (7 in package IEEE 1815 and IEC 60870-5 Agent - ed2) +2024-09-08 08:26:21,819 [main] DEBUG ClassBuilder - Adding OutstationAssociation as subclass of Association +2024-09-08 08:26:21,819 [main] TRACE ClassBuilder - read from EA: IEEE 1815 and IEC 60870-5 Agent - ed2::OutstationAssociation +2024-09-08 08:26:21,822 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Application Protocols Agents, _depth=4, _eaElementID=1054, _objData=UmlObjectData [id=390, uuid={86E0AF53-5128-4026-88AF-43035DFFE86D}, since=null, name=IEEE 1815 and IEC 60870-5 Agent - ed2, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 21, this package includes the IEEE 1815 DNP, IEC 60870-5-104 protocols classes and the IEC 62351-5 security objects. The high level class named "summary" includes two objects related to the application stack and "association" class that reports the object related to the possible communication sessions between masters and outstations. +This package includes the new version of the objects related to IEC 62351-5:2023. +The two classes "Master Association" and "Outstation Association" Inherits the Associations class attributes. +For each IEEE 1815 DNP or IEC 60870-5-104 application stack a single instance of "summary" class is provided. This instance of "summary" class can be related to several instances of "OutstationAssociation" and "MasterAssociation" classes which inherit the attributes from the "Association" class. Each instance "Association" is the container of the attributes of a specific application session between an Outstation and a Master. +Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Security objects, and therefore the more general class as well.', htmlDescription='

As shown in Figure 21, this package includes the IEEE 1815 DNP, IEC 60870-5-104 protocols classes and the IEC 62351-5 security objects. The high level class named "summary" includes two objects related to the application stack and "association" class that reports the object related to the possible communication sessions between masters and outstations.

This package includes the new version of the objects related to IEC 62351-5:2023.

The two classes "Master Association" and "Outstation Association" Inherits the Associations class attributes.

For each IEEE 1815 DNP or IEC 60870-5-104 application stack a single instance of "summary" class is provided. This instance of "summary" class can be related to several instances of "OutstationAssociation" and "MasterAssociation" classes which inherit the attributes from the "Association" class. Each instance "Association" is the container of the attributes of a specific application session between an Outstation and a Master.

Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Security objects, and therefore the more general class as well.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=ieee1815andiec60870-5-agent-ed2, mibName=IEC-62351-IEC60870-5-IEEE1815-MIB-ED2, mibPrefix=tC2, objectBranchId=3, objectIdentity=ieee1815andiec60870-5-agent-ed2}, 1_diagrams=[DiagramBuilder [_containingPackage=IEEE 1815 and IEC 60870-5 Agent - ed2, _objData=UmlObjectData [id=70, uuid={AA945755-BD47-4be2-A238-6331816DBA4B}, since=null, name=IEEE 1815 and IEC 60870 Agent Relationships, alias=, stereotype=, visibility=public, txtDescription='This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes. +Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.', htmlDescription='

This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes.

Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.

'], _portrait=true, _kind=LOGICAL]], _classes=8 +2024-09-08 08:26:21,828 [main] INFO PackageBuilder - processing package IEC61850 Agent (8) ... +2024-09-08 08:26:21,995 [main] INFO PackageBuilder - processing package ACSI (1) ... +2024-09-08 08:26:22,021 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=ACSI, _objData=UmlObjectData [id=45, uuid={1B1AAFC2-CBA3-401c-873D-7B6CDCE9CBD6}, since=null, name=ACSI, alias=, stereotype=, visibility=public, txtDescription='ACSI classes relationship. ACSI Summary inherit Security attributes from the more general classes.', htmlDescription='

ACSI classes relationship. ACSI Summary inherit Security attributes from the more general classes.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 08:26:22,053 [main] TRACE ClassBuilder - Class ACSISummary (1 in package ACSI) +2024-09-08 08:26:22,503 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1254, uuid={60676AFB-06AF-480c-86DC-DDF92723390B}, since=null, name=assocPoolMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number of client/server associations.', htmlDescription='

Maximum number of client/server associations.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:22,516 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1255, uuid={B21687C2-9C22-4c8f-A435-15A69F7147D6}, since=null, name=assocPoolUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of client/server associations active.', htmlDescription='

Number of client/server associations active.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:22,528 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1278, uuid={6CA26B83-F728-4e94-9E7E-89E5998C3308}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:22,540 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=3931, uuid={75069142-E376-4865-9020-9924B1C82527}, since=null, name=CtrlPrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of control actions attempted that did not have the correct privilege.', htmlDescription='

Number of control actions attempted that did not have the correct privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:22,551 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1262, uuid={44D0F3A5-606C-4650-ABCB-FE16EEE777E3}, since=null, name=gsePubMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number GSE Publications supported.', htmlDescription='

Maximum number GSE Publications supported.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:22,563 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=2263, uuid={1C2B216E-5A48-41c9-8A95-E49BCC60C316}, since=null, name=gsePubUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of active GSE Publications.', htmlDescription='

Number of active GSE Publications.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:22,577 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1264, uuid={B2FDE11B-6BA3-4051-B3BD-15152FB16FED}, since=null, name=gseSubMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number of GSE Subscriptions.', htmlDescription='

Maximum number of GSE Subscriptions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:22,589 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1263, uuid={1842AD96-E339-455f-9BC0-7F98C8F31CEC}, since=null, name=gseSubUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of active GSE Subscriptions.', htmlDescription='

Number of active GSE Subscriptions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:22,603 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=3709, uuid={014B3324-A84F-455f-957B-1420E50D5C59}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:22,616 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=3930, uuid={F5A04750-F784-4c0c-AB12-2298DE62BB99}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:22,630 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1271, uuid={A10D2F0C-3A4C-4aa4-B832-655CEBF8F43C}, since=null, name=RemoteEstAssocCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count of the number of currently active associations that were established through the ACSI associate response.', htmlDescription='

Count of the number of currently active associations that were established through the ACSI associate response.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:22,644 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=3932, uuid={7EF57F32-F44A-4126-9201-8EFAD41F12D4}, since=null, name=AcsCtlFail, alias=, stereotype=security, visibility=public, txtDescription='Number of access control failures detected (i.e., when a data object that the client wanted to access exists in the server, but based on the access view of the association with that client, an access to the data object was refused).', htmlDescription='

Number of access control failures detected (i.e., when a data object that the client wanted to access exists in the server, but based on the access view of the association with that client, an access to the data object was refused).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:22,655 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1282, uuid={2E06924F-F7EB-44a7-A1D2-2428322A0892}, since=null, name=svPubMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number SV publications supported.', htmlDescription='

Maximum number SV publications supported.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:22,667 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1281, uuid={D6CCDFE9-6558-4cd0-B508-8BA15852D950}, since=null, name=svPubUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of active SV publications.', htmlDescription='

Number of active SV publications.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:22,680 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1284, uuid={769A7A31-DA16-43a0-A340-14FF723B8636}, since=null, name=svSubMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number SV subscriptions supported.', htmlDescription='

Maximum number SV subscriptions supported.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:22,693 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1283, uuid={40270792-85F3-4361-850B-A5F29E1B75C0}, since=null, name=svSubUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of active SV subscriptions.', htmlDescription='

Number of active SV subscriptions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:22,709 [main] DEBUG ClassBuilder - Adding ACSISummary as subclass of AbstractAgent +2024-09-08 08:26:22,710 [main] TRACE ClassBuilder - read from EA: ACSI::ACSISummary +2024-09-08 08:26:22,712 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850 Agent, _depth=5, _eaElementID=685, _objData=UmlObjectData [id=246, uuid={624494C4-C544-437f-BE42-BED22973E721}, since=null, name=ACSI, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 22, the ACSI package includes the IEC 61850 Abstract Communication Service Interface (ACSI) classes.', htmlDescription='

As shown in Figure 22, the ACSI package includes the IEC 61850 Abstract Communication Service Interface (ACSI) classes.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=acsi-agent, mibName=IEC-62351-IEC61850-ACSI-MIB, mibPrefix=aCSI, objectBranchId=1, objectIdentity=acsi-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=ACSI, _objData=UmlObjectData [id=45, uuid={1B1AAFC2-CBA3-401c-873D-7B6CDCE9CBD6}, since=null, name=ACSI, alias=, stereotype=, visibility=public, txtDescription='ACSI classes relationship. ACSI Summary inherit Security attributes from the more general classes.', htmlDescription='

ACSI classes relationship. ACSI Summary inherit Security attributes from the more general classes.

'], _portrait=true, _kind=LOGICAL]], _classes=1 +2024-09-08 08:26:22,717 [main] INFO PackageBuilder - processing package MMS (2) ... +2024-09-08 08:26:22,739 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=MMS, _objData=UmlObjectData [id=42, uuid={C69DADFE-D7C7-45d0-83FC-41012CB3C1CA}, since=null, name=MMS, alias=, stereotype=, visibility=public, txtDescription='MMS classes relationship. MMS Provider and MMS Association inherit both Security and Procotol Info attributes from the more general classes.', htmlDescription='

MMS classes relationship. MMS Provider and MMS Association inherit both Security and Procotol Info attributes from the more general classes.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 08:26:22,870 [main] TRACE ClassBuilder - Class MMSProtocolInfo (1 in package MMS) +2024-09-08 08:26:23,255 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=4122, uuid={B070617B-7900-42b1-8DA7-F591BA2099FA}, since=null, name=ErrorRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of error PDU that have been received including: +- Confirmed-ErrorPDU (only for client) +- Cancel-ErrorPDU (only for client) +- Initiate-ErrorPDU +- Conclude-ErrorPDU.', htmlDescription='

Number of error PDU that have been received including:

  • Confirmed-ErrorPDU (only for client)
  • Cancel-ErrorPDU (only for client)
  • Initiate-ErrorPDU
  • Conclude-ErrorPDU.
'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:23,268 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=4123, uuid={650B0D6F-9766-4bae-9182-5EC830CB64E3}, since=null, name=ErrorTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of error PDU that have been sent including: +- Confirmed-ErrorPDU (only for server) +- Cancel-ErrorPDU (only for server) +- Initiate-ErrorPDU +- Conclude-ErrorPDU.', htmlDescription='

Number of error PDU that have been sent including:

  • Confirmed-ErrorPDU (only for server)
  • Cancel-ErrorPDU (only for server)
  • Initiate-ErrorPDU
  • Conclude-ErrorPDU.
'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:23,282 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3214, uuid={30ED064F-399A-4e3a-97D2-D106F082CF4F}, since=null, name=InfoRptRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of MMS Information Reports that have been received.', htmlDescription='

Number of MMS Information Reports that have been received.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:23,295 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=4120, uuid={CEC51410-D5D9-4150-B1C4-AA691F453D23}, since=null, name=InfoRptTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of MMS Information Reports that have been sent.', htmlDescription='

Number of MMS Information Reports that have been sent.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:23,309 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3969, uuid={94722C63-A68B-4460-A0BA-93F19272E206}, since=null, name=MisCmdAckCnt, alias=, stereotype=security, visibility=public, txtDescription='Provides an attribute that indicates the count of the number of MMS request that have not been acknowledged.', htmlDescription='

Provides an attribute that indicates the count of the number of MMS request that have not been acknowledged.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:23,321 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3414, uuid={8F4B6AF1-5A4A-47a1-A365-8963A1FAE78F}, since=null, name=MMSProExchTime, alias=, stereotype=performance, visibility=public, txtDescription='MMS Profile exchange duration (seconds). MMS profile is meant as Logical Devices, Logical Nodes and Dataset definition are exchanged.', htmlDescription='

MMS Profile exchange duration (seconds). MMS profile is meant as Logical Devices, Logical Nodes and Dataset definition are exchanged.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:23,332 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3211, uuid={6C0EA55B-1ACA-4a3a-9068-E9C2CEC96B9D}, since=null, name=RejectRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of RejectPDU received.', htmlDescription='

Number of RejectPDU received.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:23,347 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3212, uuid={C8554D1E-C163-4286-96BB-E26046672513}, since=null, name=RejectTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of RejectPDU sent.', htmlDescription='

Number of RejectPDU sent.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:23,361 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3208, uuid={C94BBBC3-1104-42b0-B156-E80FE61CBDB8}, since=null, name=ReqRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of request PDU that have been received including: +- Confirmed-RequestPDU (only for server) +- Cancel-RequestPDU (only for server) +- Initiate-RequestPDU +- Conclude-RequestPDU.', htmlDescription='

Number of request PDU that have been received including:

  • Confirmed-RequestPDU (only for server)
  • Cancel-RequestPDU (only for server)
  • Initiate-RequestPDU
  • Conclude-RequestPDU.
'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:23,374 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3206, uuid={023D9D84-38BC-4c86-B9CC-78085AC2F869}, since=null, name=ReqTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of request PDU that have been sent including: +- Confirmed-RequestPDU (only for client) +- Cancel-RequestPDU (only for client) +- Initiate-RequestPDU +- Conclude-RequestPDU.', htmlDescription='

Number of request PDU that have been sent including:

  • Confirmed-RequestPDU (only for client)
  • Cancel-RequestPDU (only for client)
  • Initiate-RequestPDU
  • Conclude-RequestPDU.
'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:23,386 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3210, uuid={B07FEDC7-72A1-43b4-9CA9-AEDC8CE77EAF}, since=null, name=RespRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of response PDU that have been received including: +- Confirmed-ResponsePDU (only for client) +- Cancel-ResponsePDU (only for client) +- Initiate-ResponsePDU +- Conclude-ResponsePDU +.', htmlDescription='

Number of response PDU that have been received including:

  • Confirmed-ResponsePDU (only for client)
  • Cancel-ResponsePDU (only for client)
  • Initiate-ResponsePDU
  • Conclude-ResponsePDU

.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:23,398 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3209, uuid={06689B60-CBF2-4d45-8B5A-FB998997F62F}, since=null, name=RespTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of response PDU that have been sent including: +- Confirmed-ResponsePDU (only for server) +- Cancel-ResponsePDU (only for server) +- Initiate-ResponsePDU +- Conclude-ResponsePDU..', htmlDescription='

Number of response PDU that have been sent including:

  • Confirmed-ResponsePDU (only for server)
  • Cancel-ResponsePDU (only for server)
  • Initiate-ResponsePDU
  • Conclude-ResponsePDU..
'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:23,409 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3935, uuid={1F695097-A4ED-4e85-94FE-44B50CFE99F1}, since=null, name=SessKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of session key negotiations that failed.', htmlDescription='

Number of session key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:23,462 [main] DEBUG ClassBuilder - Adding MMSProtocolInfo as subclass of AbstractAgent +2024-09-08 08:26:23,462 [main] TRACE ClassBuilder - read from EA: MMS::MMSProtocolInfo +2024-09-08 08:26:23,467 [main] TRACE ClassBuilder - Class MMSProvider (2 in package MMS) +2024-09-08 08:26:23,954 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3918, uuid={7DB85E2A-0EB8-4226-BEBB-924AB496EB36}, since=null, name=AProfileDecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted within A-Profile session.', htmlDescription='

Number PDUs received that could not be decrypted within A-Profile session.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:23,967 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3938, uuid={A3E432FD-BDD0-4ccf-9233-0A226162B425}, since=null, name=AuthFail, alias=, stereotype=security, visibility=public, txtDescription='Count of the number of authorization failures.', htmlDescription='

Count of the number of authorization failures.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:23,980 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3245, uuid={D1866C6F-051F-404e-9A2B-AC1D6D44D3FC}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:23,994 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2831, uuid={2F166DD9-DE35-44b6-91DE-78EA3A9D0652}, since=null, name=ConnFailInCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of incoming Initiate-requests that have been refused.', htmlDescription='

Number of incoming Initiate-requests that have been refused.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:24,006 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2832, uuid={BA3D3302-5D14-40f7-9AA3-145CCB5F1361}, since=null, name=ConnFailOutCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of outgoing Initiate-requests that have been refused.', htmlDescription='

Number of outgoing Initiate-requests that have been refused.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:24,020 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3936, uuid={86BF3330-EB9C-4633-AB27-D7612CE8D05C}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted.', htmlDescription='

Number PDUs received that could not be decrypted.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:24,033 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3710, uuid={0163C656-8AA1-4c67-82E4-258002A53DDE}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:24,052 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2803, uuid={DEAB3F8B-E3E4-4664-B8B6-2D0C07019F7B}, since=null, name=MMS, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed MMS information can be obtained for each connection.', htmlDescription='

Provides a table through which more detailed MMS information can be obtained for each connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=693, _eaTypeName=MMSAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=mMS, objectIdentity=mMSMMSEntry, Version=0}] +2024-09-08 08:26:24,066 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3915, uuid={294CE46B-D0B5-49f5-BF02-E0988430AD45}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:24,077 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2810, uuid={22C7C42F-8D14-493c-A2EA-CCD76245D0BE}, since=null, name=ProviderDesc, alias=, stereotype=identity, visibility=public, txtDescription='Description of provider.', htmlDescription='

Description of provider.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:24,090 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2811, uuid={D38418EB-A105-4a60-8D61-BB360D9237B5}, since=null, name=ProviderName, alias=, stereotype=identity, visibility=public, txtDescription='Name of the provider.', htmlDescription='

Name of the provider.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:24,106 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3614, uuid={A048CDB1-2C04-4ec3-B2B0-2F9ACEE80E4F}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=920, _eaTypeName=MMSSecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:24,121 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=4030, uuid={354E6408-AAF1-42b2-B717-205A592C81BE}, since=null, name=SessionEstablishmentRate, alias=, stereotype=performance, visibility=public, txtDescription='The number of times any Association has been restablished after a disconnection within 15 minutes.', htmlDescription='

The number of times any Association has been restablished after a disconnection within 15 minutes.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:24,136 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=4031, uuid={F68354BD-DA88-4aca-B25F-9C06F7BEFBB9}, since=null, name=SessionRestartCnt, alias=, stereotype=security, visibility=public, txtDescription='Provides an attribute that indicates the count of the number of times the session has been restablished.', htmlDescription='

Provides an attribute that indicates the count of the number of times the session has been restablished.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:24,150 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3613, uuid={0233C10F-B173-4f99-A4E9-A79E7500E3B0}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object.', htmlDescription='

State events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=921, _eaTypeName=MMSNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:24,163 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3919, uuid={575C57A8-200D-4db3-B297-AE2635C01BC3}, since=null, name=TProfileDecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted within T-Profile session.', htmlDescription='

Number PDUs received that could not be decrypted within T-Profile session.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:24,177 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3921, uuid={D87795A0-A0B4-4126-9015-DBEBDD79CA50}, since=null, name=TProfileSessKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of session key negotiations that failed. This applies only to T-Profile.', htmlDescription='

Number of session key negotiations that failed. This applies only to T-Profile.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:24,190 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3975, uuid={5C2EA464-4FB4-4413-90B5-E3451373A966}, since=null, name=UpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations that failed.', htmlDescription='

Number of update key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:24,206 [main] DEBUG ClassBuilder - Adding MMSProvider as subclass of MMSProtocolInfo +2024-09-08 08:26:24,206 [main] TRACE ClassBuilder - read from EA: MMS::MMSProvider +2024-09-08 08:26:24,212 [main] TRACE ClassBuilder - Class MMSAssociation (3 in package MMS) +2024-09-08 08:26:24,626 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2820, uuid={3D4B3729-146B-4ed2-976D-D539FFAAAE40}, since=null, name=Active, alias=, stereotype=protocol, visibility=public, txtDescription='True if association is in use.', htmlDescription='

True if association is in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:24,642 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3727, uuid={9E3D1B59-980F-4217-B141-1C353C1D4E72}, since=null, name=AssociationId, alias=, stereotype=index, visibility=public, txtDescription='Id of the association.', htmlDescription='

Id of the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:24,655 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=4119, uuid={8717A248-6228-4974-9285-1B96BBEDF420}, since=null, name=Client, alias=, stereotype=protocol, visibility=public, txtDescription='True if role is client, false if role is server', htmlDescription='

True if role is client, false if role is server

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:24,668 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3246, uuid={2C472C21-D2BB-4a4b-8D93-5C0E3346AA95}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:24,681 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3939, uuid={EBEAECC3-8BE4-4469-B891-4898C2954EE5}, since=null, name=HndShTime, alias=, stereotype=performance, visibility=public, txtDescription='Duration of the MMS session handshake. This apply to the sender only.', htmlDescription='

Duration of the MMS session handshake. This apply to the sender only.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:24,695 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2844, uuid={C34BBC7F-ACC5-4172-B430-081B10B49819}, since=null, name=RemoteEstAssos, alias=, stereotype=protocol, visibility=public, txtDescription='True if the association was established due to an incoming Initiate-Request.', htmlDescription='

True if the association was established due to an incoming Initiate-Request.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:24,713 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2876, uuid={BF20C38C-E4DE-439e-A7C3-2D9FCB7CA1C2}, since=null, name=RemoteIP, alias=, stereotype=protocol, visibility=public, txtDescription='Remote entity IP network address.', htmlDescription='

Remote entity IP network address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-08 08:26:24,726 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3692, uuid={5EA2A0D0-6DA8-427e-ADEB-2CC19FDBB143}, since=null, name=RemoteIPAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:24,744 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2873, uuid={14DA2F03-EFD1-4b98-A66F-EFD6046F1025}, since=null, name=RemotePSEL, alias=, stereotype=protocol, visibility=public, txtDescription='Remote entity presentation selector.', htmlDescription='

Remote entity presentation selector.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=782, _eaTypeName=Selector, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-08 08:26:24,760 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2874, uuid={C4E19558-A5AA-43ce-A203-6E7BACDD96C7}, since=null, name=RemoteSSEL, alias=, stereotype=protocol, visibility=public, txtDescription='Remote entity session selector.', htmlDescription='

Remote entity session selector.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=782, _eaTypeName=Selector, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-08 08:26:24,776 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2875, uuid={C5BC70EE-7E84-4822-95B3-1EA00D57E252}, since=null, name=RemoteTSEL, alias=, stereotype=protocol, visibility=public, txtDescription='Remote entity transport selector.', htmlDescription='

Remote entity transport selector.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=782, _eaTypeName=Selector, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-08 08:26:24,789 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3972, uuid={47D3343F-E927-48ec-8558-54CC13AEC30E}, since=null, name=ReportPer100Seconds, alias=, stereotype=performance, visibility=public, txtDescription='Number of Reports received/transmitted during the last 100 seconds.', htmlDescription='

Number of Reports received/transmitted during the last 100 seconds.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:24,803 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3968, uuid={D1802DDE-FE54-49d6-9EBB-1A5DE0464F3A}, since=null, name=RptReceptionDelay, alias=, stereotype=performance, visibility=public, txtDescription='The time required to receive the last Report. This time is the difference between the reception time and the emission timestamp stored inside the report. If not synchronized this value shall be set to -1.', htmlDescription='

The time required to receive the last Report. This time is the difference between the reception time and the emission timestamp stored inside the report. If not synchronized this value shall be set to -1.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:24,815 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3913, uuid={B94A45CC-7384-41ee-9821-F77D634C675F}, since=null, name=SecurityProfile, alias=, stereotype=protocol, visibility=public, txtDescription='This is the security profile in use for this association (no security, integrity A profile, A+, AE+).', htmlDescription='

This is the security profile in use for this association (no security, integrity A profile, A+, AE+).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1013, _eaTypeName=SecurityProfileType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:24,843 [main] DEBUG ClassBuilder - Adding MMSAssociation as subclass of MMSProtocolInfo +2024-09-08 08:26:24,845 [main] DEBUG ClassBuilder - Adding MMSAssociation as subclass of CommonProtocolInfo +2024-09-08 08:26:24,845 [main] TRACE ClassBuilder - read from EA: MMS::MMSAssociation +2024-09-08 08:26:24,851 [main] TRACE ClassBuilder - Class MMSSecurityNotification (4 in package MMS) +2024-09-08 08:26:24,980 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSSecurityNotification, _objData=UmlObjectData [id=3582, uuid={ED76E952-B3FD-4bbd-B4F7-7F695D6C14B6}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of PDUs received that could not be decrypted.', htmlDescription='

Number of PDUs received that could not be decrypted.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:24,992 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSSecurityNotification, _objData=UmlObjectData [id=4036, uuid={6D84220E-9E6E-4b52-8843-92394244A0F5}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:25,005 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSSecurityNotification, _objData=UmlObjectData [id=3581, uuid={52A9B9D0-58D5-4d7d-A396-A7788A41EB89}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:25,018 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSSecurityNotification, _objData=UmlObjectData [id=3584, uuid={4F8B7D7A-78C6-4ac7-A43C-8B06E8D829E0}, since=null, name=UpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations that failed.', htmlDescription='

Number of update key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:25,038 [main] DEBUG ClassBuilder - Adding MMSSecurityNotification as subclass of AbstractAgent +2024-09-08 08:26:25,038 [main] TRACE ClassBuilder - read from EA: MMS::MMSSecurityNotification +2024-09-08 08:26:25,043 [main] TRACE ClassBuilder - Class MMSNotification (5 in package MMS) +2024-09-08 08:26:25,150 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSNotification, _objData=UmlObjectData [id=3573, uuid={6F0A08FF-024D-4919-99B5-B68C203679AA}, since=null, name=ConnFailInCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of incoming Initiate-requests that have been refused.', htmlDescription='

Number of incoming Initiate-requests that have been refused.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:25,163 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSNotification, _objData=UmlObjectData [id=3574, uuid={F172E26F-F99A-4ca4-BBF3-4759B78D18F3}, since=null, name=ConnFailOutCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of outgoing Initiate-requests that have been refused.', htmlDescription='

Number of outgoing Initiate-requests that have been refused.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:25,176 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSNotification, _objData=UmlObjectData [id=3575, uuid={5F493EBC-63E7-480b-B344-66194892E87B}, since=null, name=RejectRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of reject issued in reception.', htmlDescription='

Number of reject issued in reception.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:25,188 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MMS::MMSNotification, _objData=UmlObjectData [id=3576, uuid={0D61F583-C436-4314-A1B5-C6FA04940FD7}, since=null, name=RejectTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received Reject on transmission.', htmlDescription='

Number of received Reject on transmission.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:25,204 [main] DEBUG ClassBuilder - Adding MMSNotification as subclass of AbstractAgent +2024-09-08 08:26:25,204 [main] TRACE ClassBuilder - read from EA: MMS::MMSNotification +2024-09-08 08:26:25,206 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850 Agent, _depth=5, _eaElementID=613, _objData=UmlObjectData [id=214, uuid={0123913E-3D3C-4627-ABFC-BF86D71D1894}, since=null, name=MMS, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 23, the MMS package includes the IEC 61850 Manufacturing Message Specification (MMS) classes. MMS Provider and MMS Association inherit both Security and Protocol Info attributes from the more general classes.', htmlDescription='

As shown in Figure 23, the MMS package includes the IEC 61850 Manufacturing Message Specification (MMS) classes. MMS Provider and MMS Association inherit both Security and Protocol Info attributes from the more general classes.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=mms-agent, mibName=IEC-62351-IEC61850-MMS-MIB, mibPrefix=mMS, objectBranchId=2, objectIdentity=mms-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=MMS, _objData=UmlObjectData [id=42, uuid={C69DADFE-D7C7-45d0-83FC-41012CB3C1CA}, since=null, name=MMS, alias=, stereotype=, visibility=public, txtDescription='MMS classes relationship. MMS Provider and MMS Association inherit both Security and Procotol Info attributes from the more general classes.', htmlDescription='

MMS classes relationship. MMS Provider and MMS Association inherit both Security and Procotol Info attributes from the more general classes.

'], _portrait=true, _kind=LOGICAL]], _classes=5 +2024-09-08 08:26:25,211 [main] INFO PackageBuilder - processing package SV and GSE common objects (3) ... +2024-09-08 08:26:25,222 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=SV and GSE common objects, _objData=UmlObjectData [id=63, uuid={DFEA5E4E-B042-4697-A4BE-C60308616114}, since=null, name=SV and GSE common objects, alias=, stereotype=, visibility=public, txtDescription='GSE/SV common classes relationship.', htmlDescription='

GSE/SV common classes relationship.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 08:26:25,322 [main] TRACE ClassBuilder - Class GSEandSVCommon (1 in package SV and GSE common objects) +2024-09-08 08:26:25,432 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVCommon, _objData=UmlObjectData [id=4054, uuid={8F7CBDDF-5309-4c57-A3E5-B0C820FEC605}, since=null, name=GroupUpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations at KDC that failed.', htmlDescription='

Number of update key negotiations at KDC that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:25,447 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVCommon, _objData=UmlObjectData [id=4055, uuid={72C144FE-7138-4153-8C18-0FC5BC1E8998}, since=null, name=KDCAuthFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Count of the number of authorization failures against KDC.', htmlDescription='

Count of the number of authorization failures against KDC.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:25,460 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVCommon, _objData=UmlObjectData [id=4056, uuid={10AD71AC-8E2C-4afb-88B0-4CAAF7C06C47}, since=null, name=KDCSessionKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Session Key establishment between peer and KDC failed.', htmlDescription='

Session Key establishment between peer and KDC failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:25,552 [main] DEBUG ClassBuilder - Adding GSEandSVCommon as subclass of AbstractAgent +2024-09-08 08:26:25,552 [main] TRACE ClassBuilder - read from EA: SV and GSE common objects::GSEandSVCommon +2024-09-08 08:26:25,557 [main] TRACE ClassBuilder - Class GSEandSVPublisherAssociation (2 in package SV and GSE common objects) +2024-09-08 08:26:25,661 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=4057, uuid={C97C7E95-F1A3-49a6-84CD-F37F54D4DCAA}, since=null, name=CBRef, alias=, stereotype=index, visibility=public, txtDescription='Reference of the GSE/SV Control block being supervised.', htmlDescription='

Reference of the GSE/SV Control block being supervised.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:25,672 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=4058, uuid={A3300C61-0405-4178-AA24-56139902DFD1}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:25,684 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=4059, uuid={B346F0EE-81BD-4f02-BD05-3DEB6C966B08}, since=null, name=OutUv, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer underflows detected due to outgoing serial communication.', htmlDescription='

Number of buffer underflows detected due to outgoing serial communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:25,696 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=4366, uuid={10164DB8-AB84-46a3-9325-B0D817803F9A}, since=null, name=APPID, alias=, stereotype=protocol, visibility=public, txtDescription='Application Identifier being expected.', htmlDescription='

Application Identifier being expected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:25,707 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=3829, uuid={F6725CAA-C95B-431e-BCC4-6877D34082A8}, since=null, name=TxPduPerSecond, alias=, stereotype=protocol, visibility=public, txtDescription='Count of the number of SV telegrams sent within a second on the association.', htmlDescription='

Count of the number of SV telegrams sent within a second on the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:25,707 [main] ERROR ClassBuilder - [+++ EA problem: attr count on GSEandSVPublisherAssociation = 5 +, +++ attr CBRef: pos = 1 +, +++ attr CntRs: pos = 2 +, +++ attr OutUv: pos = 3 +, +++ attr APPID: pos = 4 +, +++ attr TxPduPerSecond: pos = 4 DUPLICATE +] +2024-09-08 08:26:25,765 [main] DEBUG ClassBuilder - Adding GSEandSVPublisherAssociation as subclass of GSEandSVCommon +2024-09-08 08:26:25,771 [main] TRACE ClassBuilder - read from EA: SV and GSE common objects::GSEandSVPublisherAssociation +2024-09-08 08:26:25,775 [main] TRACE ClassBuilder - Class GSEandSVSubscriberAssociation (3 in package SV and GSE common objects) +2024-09-08 08:26:25,924 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4061, uuid={E70C3857-A774-4635-9A52-713A3189C31C}, since=null, name=CBRef, alias=, stereotype=index, visibility=public, txtDescription='Reference of the GSE/SV Control block being supervised.', htmlDescription='

Reference of the GSE/SV Control block being supervised.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:25,936 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4062, uuid={2E060239-4EB9-4a8a-A7C3-AED6EDA8C5A3}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:25,947 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4063, uuid={B4825E20-07C1-4cde-94AD-CFE37852AE7F}, since=null, name=InOvCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer overflows detected due to incoming communication. This counter is incremented each time the buffer space is insufficient to receive an incoming message.', htmlDescription='

Number of buffer overflows detected due to incoming communication. This counter is incremented each time the buffer space is insufficient to receive an incoming message.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:25,957 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4064, uuid={BA2766B5-6FA2-4c9b-85EA-7353D0790FDF}, since=null, name=MessageIntegrityFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number messages that were not using the proper Group Key.', htmlDescription='

Number messages that were not using the proper Group Key.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:25,969 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4067, uuid={85138267-8516-4911-9D4D-D78674944F2D}, since=null, name=RxPduPerSecond, alias=, stereotype=protocol, visibility=public, txtDescription='Count of the number of SV telegrams received within a second on the association.', htmlDescription='

Count of the number of SV telegrams received within a second on the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:25,981 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4365, uuid={7955A1E1-9F67-46da-A434-8EA5BA1C0BE2}, since=null, name=APPID, alias=, stereotype=protocol, visibility=public, txtDescription='Application identified being expected.', htmlDescription='

Application identified being expected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:25,991 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4367, uuid={2B5045AC-99BD-4941-BCD5-36ABDDCAC2FF}, since=null, name=RxAPPID, alias=, stereotype=protocol, visibility=public, txtDescription='Last Application Identifier being received.', htmlDescription='

Last Application Identifier being received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:26,037 [main] DEBUG ClassBuilder - Adding GSEandSVSubscriberAssociation as subclass of GSEandSVCommon +2024-09-08 08:26:26,041 [main] TRACE ClassBuilder - read from EA: SV and GSE common objects::GSEandSVSubscriberAssociation +2024-09-08 08:26:26,043 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850 Agent, _depth=5, _eaElementID=1023, _objData=UmlObjectData [id=380, uuid={206C6DF0-DCC9-45e0-B3CE-6470323EA4B6}, since=null, name=SV and GSE common objects, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 24, the SV and GSE common objects package includes the IEC 61850 Sampled Value (SV) and Generic Substation Events (GSE) common classes.', htmlDescription='

As shown in Figure 24, the SV and GSE common objects package includes the IEC 61850 Sampled Value (SV) and Generic Substation Events (GSE) common classes.

'], _modelId=362, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=SV and GSE common objects, _objData=UmlObjectData [id=63, uuid={DFEA5E4E-B042-4697-A4BE-C60308616114}, since=null, name=SV and GSE common objects, alias=, stereotype=, visibility=public, txtDescription='GSE/SV common classes relationship.', htmlDescription='

GSE/SV common classes relationship.

'], _portrait=true, _kind=LOGICAL]], _classes=3 +2024-09-08 08:26:26,048 [main] INFO PackageBuilder - processing package SV (4) ... +2024-09-08 08:26:26,069 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=SV, _objData=UmlObjectData [id=60, uuid={472A38C4-7002-4632-9EB5-EC1C28A2CCA8}, since=null, name=SV, alias=, stereotype=, visibility=public, txtDescription='SV classes relationship. SVProvider and SVAssociation inherit both Security and Procotol Info attributes from the more general classes.', htmlDescription='

SV classes relationship. SVProvider and SVAssociation inherit both Security and Procotol Info attributes from the more general classes.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 08:26:26,195 [main] TRACE ClassBuilder - Class SVProvider (4 in package SV) +2024-09-08 08:26:26,363 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3844, uuid={C24FF010-3527-40b6-A143-3CBD3C95FC45}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:26,375 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=4052, uuid={4D212643-73E9-4b01-B3E4-1419141F7F5C}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of PDUs received that could not be decrypted', htmlDescription='

Number of PDUs received that could not be decrypted

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:26,387 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3845, uuid={62E2AB60-AB61-489b-9B09-FC14A0BF4694}, since=null, name=PDUSizeFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDU with wrong size. This is meaningful only for IP telegrams.', htmlDescription='

Number of received PDU with wrong size. This is meaningful only for IP telegrams.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:26,402 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3846, uuid={A6C46361-5561-43d2-8B67-6DAC7566C062}, since=null, name=PIP, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed SV information can be obtained for each IP publisher connection.', htmlDescription='

Provides a table through which more detailed SV information can be obtained for each IP publisher connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=994, _eaTypeName=SVPublisherAssociationIP, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}] +2024-09-08 08:26:26,417 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3847, uuid={1C5E81A0-3007-4221-BBCF-B4538CDCD068}, since=null, name=PL2, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed SV information can be obtained for each L2 (Ethernet) publisher connection.', htmlDescription='

Provides a table through which more detailed SV information can be obtained for each L2 (Ethernet) publisher connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=995, _eaTypeName=SVPublisherAssociationL2, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}] +2024-09-08 08:26:26,429 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3848, uuid={F24AD27F-DE3D-4d47-BF82-D81306D727FD}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=997, _eaTypeName=SVNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:26,445 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3849, uuid={E61DCB59-D671-4e3e-AF63-7A7934A7139B}, since=null, name=SIP, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed SV information can be obtained for each IP subscriber connection.', htmlDescription='

Provides a table through which more detailed SV information can be obtained for each IP subscriber connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=998, _eaTypeName=SVSubcriberAssociationIP, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}] +2024-09-08 08:26:26,463 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3850, uuid={3A8AA373-DF4D-4203-9E17-D1A556AE4626}, since=null, name=SL2, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed SV information can be obtained for each L2 (Ethernet) subscriber connection.', htmlDescription='

Provides a table through which more detailed SV information can be obtained for each L2 (Ethernet) subscriber connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=999, _eaTypeName=SVSubcriberAssociationL2, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}] +2024-09-08 08:26:26,479 [main] DEBUG ClassBuilder - Adding SVProvider as subclass of GSEandSVCommon +2024-09-08 08:26:26,480 [main] TRACE ClassBuilder - read from EA: SV::SVProvider +2024-09-08 08:26:26,485 [main] TRACE ClassBuilder - Class SVPublisherAssociationIP (5 in package SV) +2024-09-08 08:26:26,548 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVPublisherAssociationIP, _objData=UmlObjectData [id=3817, uuid={3EC59ACA-14AB-4adf-823D-4EF3DBBA4715}, since=null, name=DestIpAddr, alias=, stereotype=protocol, visibility=public, txtDescription='Destination IP address.', htmlDescription='

Destination IP address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-08 08:26:26,559 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVPublisherAssociationIP, _objData=UmlObjectData [id=3818, uuid={3B41797D-66B7-473b-A47C-92A5B0C6DB2C}, since=null, name=DestIpAddrType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:26,574 [main] DEBUG ClassBuilder - Adding SVPublisherAssociationIP as subclass of GSEandSVPublisherAssociation +2024-09-08 08:26:26,574 [main] TRACE ClassBuilder - read from EA: SV::SVPublisherAssociationIP +2024-09-08 08:26:26,579 [main] TRACE ClassBuilder - Class SVPublisherAssociationL2 (6 in package SV) +2024-09-08 08:26:26,622 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVPublisherAssociationL2, _objData=UmlObjectData [id=3819, uuid={2E77B17F-D224-4764-9C29-36CD379797D7}, since=null, name=DestMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-08 08:26:26,636 [main] DEBUG ClassBuilder - Adding SVPublisherAssociationL2 as subclass of GSEandSVPublisherAssociation +2024-09-08 08:26:26,636 [main] TRACE ClassBuilder - read from EA: SV::SVPublisherAssociationL2 +2024-09-08 08:26:26,640 [main] TRACE ClassBuilder - Class SVSubcriberAssociationIP (7 in package SV) +2024-09-08 08:26:26,700 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVSubcriberAssociationIP, _objData=UmlObjectData [id=3823, uuid={CF21D44F-A555-48cc-99A1-D49E20097B5D}, since=null, name=SrcIpAddr, alias=, stereotype=protocol, visibility=public, txtDescription='Source IP address.', htmlDescription='

Source IP address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-08 08:26:26,711 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVSubcriberAssociationIP, _objData=UmlObjectData [id=3824, uuid={3AB68377-764F-4314-851D-FEE4B40FC99E}, since=null, name=SrcIpAddrType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:26,724 [main] DEBUG ClassBuilder - Adding SVSubcriberAssociationIP as subclass of GSEandSVSubscriberAssociation +2024-09-08 08:26:26,724 [main] TRACE ClassBuilder - read from EA: SV::SVSubcriberAssociationIP +2024-09-08 08:26:26,729 [main] TRACE ClassBuilder - Class SVSubcriberAssociationL2 (8 in package SV) +2024-09-08 08:26:26,774 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=SV::SVSubcriberAssociationL2, _objData=UmlObjectData [id=3825, uuid={A6F5F486-2B40-4620-ADA1-3CBA7408C0D8}, since=null, name=SrcMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-08 08:26:26,791 [main] DEBUG ClassBuilder - Adding SVSubcriberAssociationL2 as subclass of GSEandSVSubscriberAssociation +2024-09-08 08:26:26,791 [main] TRACE ClassBuilder - read from EA: SV::SVSubcriberAssociationL2 +2024-09-08 08:26:26,796 [main] TRACE ClassBuilder - Class SVNotification (9 in package SV) +2024-09-08 08:26:26,823 [main] DEBUG ClassBuilder - Adding SVNotification as subclass of GSEandSVCommon +2024-09-08 08:26:26,823 [main] TRACE ClassBuilder - read from EA: SV::SVNotification +2024-09-08 08:26:26,825 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850 Agent, _depth=5, _eaElementID=993, _objData=UmlObjectData [id=370, uuid={FBDCDA40-333C-4feb-A44B-6E6F8766621D}, since=null, name=SV, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 25, the SV package includes the IEC 61850 Sampled Value (SV) classes. SVProvider and SVAssociation inherit both Security and Protocol Info attributes from the more general classes.', htmlDescription='

As shown in Figure 25, the SV package includes the IEC 61850 Sampled Value (SV) classes. SVProvider and SVAssociation inherit both Security and Protocol Info attributes from the more general classes.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=sv-agent, mibName=IEC-62351-IEC61850-SV-MIB, mibPrefix=sV, objectBranchId=3, objectIdentity=sv-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=SV, _objData=UmlObjectData [id=60, uuid={472A38C4-7002-4632-9EB5-EC1C28A2CCA8}, since=null, name=SV, alias=, stereotype=, visibility=public, txtDescription='SV classes relationship. SVProvider and SVAssociation inherit both Security and Procotol Info attributes from the more general classes.', htmlDescription='

SV classes relationship. SVProvider and SVAssociation inherit both Security and Procotol Info attributes from the more general classes.

'], _portrait=true, _kind=LOGICAL]], _classes=6 +2024-09-08 08:26:26,829 [main] INFO PackageBuilder - processing package GSE (5) ... +2024-09-08 08:26:26,848 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=GSE, _objData=UmlObjectData [id=44, uuid={80FA056A-3318-4339-86E8-7D464BD53A85}, since=null, name=GSE, alias=, stereotype=, visibility=public, txtDescription='GSE classes relationship. GSEProvider and GSEAssociation inherit both Security and Procotol Info attributes from the more general classes.', htmlDescription='

GSE classes relationship. GSEProvider and GSEAssociation inherit both Security and Procotol Info attributes from the more general classes.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 08:26:26,996 [main] TRACE ClassBuilder - Class GSESubscriberAssociation (3 in package GSE) +2024-09-08 08:26:27,284 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=3750, uuid={AFDD17DA-6B2F-4bc7-8F89-0E63A9B7D1D7}, since=null, name=ConfRevMis, alias=, stereotype=protocol, visibility=public, txtDescription='True indicates that the expected configuration revision did not match the received number.', htmlDescription='

True indicates that the expected configuration revision did not match the received number.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:27,297 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=3755, uuid={2E11DB8F-06FC-485f-8C56-703E601D8A60}, since=null, name=NdsComm, alias=, stereotype=protocol, visibility=public, txtDescription='Duplicated Message received', htmlDescription='

Duplicated Message received

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:27,308 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4368, uuid={9075FAD9-2CE1-4e5d-907F-DBD0B4B1CC32}, since=null, name=ConfRev, alias=, stereotype=protocol, visibility=public, txtDescription='Last configuration Revision being received.', htmlDescription='

Last configuration Revision being received.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:27,319 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4369, uuid={E4803687-6245-40fd-AB97-A5A553A34C59}, since=null, name=RxConfRev, alias=, stereotype=protocol, visibility=public, txtDescription='True indicates that the expected configuration revision did not match the received number.', htmlDescription='

True indicates that the expected configuration revision did not match the received number.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:27,330 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=3758, uuid={EBC5C199-473E-4859-B0FE-DD1C08CC93AF}, since=null, name=TalExpCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count of the received TAL expirations that have been detected.', htmlDescription='

Count of the received TAL expirations that have been detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:27,343 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4370, uuid={09E69AF6-2C2B-46e9-B274-E5220B53D94D}, since=null, name=OosErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of times out of sequence of GOOSE has been observed.', htmlDescription='

Number of times out of sequence of GOOSE has been observed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:27,355 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4371, uuid={5B152C15-4AC4-421a-87EB-F81484BD2524}, since=null, name=DupMsgRx, alias=, stereotype=protocol, visibility=public, txtDescription='If true, the subscription needs commissioning, i.e., the received message does not conform to the current subscription configuration (either the 'dataSetRef' is wrong, the data set members, the configuration revision number, or no subscription is configured at all).', htmlDescription='

If true, the subscription needs commissioning, i.e., the received message does not conform to the current subscription configuration (either the 'dataSetRef' is wrong, the data set members, the configuration revision number, or no subscription is configured at all).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:27,367 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4372, uuid={313447D4-3710-47a8-85FF-DAA9316F8720}, since=null, name=DatSet, alias=, stereotype=protocol, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:27,380 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4373, uuid={8E3C588A-BEC3-454f-861F-712BADFC92AA}, since=null, name=RxDatSet, alias=, stereotype=protocol, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:27,393 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4374, uuid={C304ABDA-E4BA-4cfc-BAD9-17425F5A0611}, since=null, name=GoID, alias=, stereotype=protocol, visibility=public, txtDescription='GOOSE Identifier being expected.', htmlDescription='

GOOSE Identifier being expected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:27,405 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4375, uuid={985D635D-D095-4282-B40B-8D3F15CDC152}, since=null, name=RxGoID, alias=, stereotype=protocol, visibility=public, txtDescription='Last GOOSE Identifier being received.', htmlDescription='

Last GOOSE Identifier being received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:27,417 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4376, uuid={3BC29513-E13B-40a1-A86D-4B3406FC2CD1}, since=null, name=StNum, alias=, stereotype=protocol, visibility=public, txtDescription='StNum being received from last accepted GOOSE message.', htmlDescription='

StNum being received from last accepted GOOSE message.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:27,428 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4377, uuid={699EF357-D4F5-4445-8F55-446FF895C089}, since=null, name=SqNum, alias=, stereotype=protocol, visibility=public, txtDescription='SqNum being received from last accepted GOOSE message.', htmlDescription='

SqNum being received from last accepted GOOSE message.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:27,439 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4378, uuid={778EF329-63E8-4a88-A172-D2DAD54D972A}, since=null, name=RejectStNum, alias=, stereotype=protocol, visibility=public, txtDescription='Last StNum being rejected.', htmlDescription='

Last StNum being rejected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:27,450 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4379, uuid={A699C155-79DE-4187-BDF5-AFD122DAD7CA}, since=null, name=RejectSqNum, alias=, stereotype=protocol, visibility=public, txtDescription='Last SqNum being rejected.', htmlDescription='

Last SqNum being rejected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:27,461 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4494, uuid={98542797-3D0F-4f54-96D7-B2BEBEAF605A}, since=null, name=RxT, alias=, stereotype=protocol, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:27,461 [main] ERROR ClassBuilder - [+++ EA problem: attr count on GSESubscriberAssociation = 16 +, +++ attr ConfRevMis: pos = 0 +, +++ attr NdsComm: pos = 2 +, +++ attr ConfRev: pos = 3 +, +++ attr RxConfRev: pos = 4 +, +++ attr TalExpCnt: pos = 4 DUPLICATE +, +++ attr OosErrCnt: pos = 5 +, +++ attr DupMsgRx: pos = 6 +, +++ attr DatSet: pos = 7 +, +++ attr RxDatSet: pos = 8 +, +++ attr GoID: pos = 9 +, +++ attr RxGoID: pos = 10 +, +++ attr StNum: pos = 11 +, +++ attr SqNum: pos = 12 +, +++ attr RejectStNum: pos = 13 +, +++ attr RejectSqNum: pos = 14 +, +++ attr RxT: pos = 15 +] +2024-09-08 08:26:27,502 [main] DEBUG ClassBuilder - Adding GSESubscriberAssociation as subclass of GSEandSVSubscriberAssociation +2024-09-08 08:26:27,502 [main] TRACE ClassBuilder - read from EA: GSE::GSESubscriberAssociation +2024-09-08 08:26:27,507 [main] TRACE ClassBuilder - Class GSEProvider (4 in package GSE) +2024-09-08 08:26:27,704 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3243, uuid={71555478-FCAD-4dae-B530-6956D1B5D475}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:27,715 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=4053, uuid={A432D351-022A-4b49-AA3D-61CBB91067FC}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of PDUs received that could not be decrypted', htmlDescription='

Number of PDUs received that could not be decrypted

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:27,727 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3773, uuid={4B58CE58-88E3-4e07-9FF3-FE0181F95942}, since=null, name=InErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of PDUs received that were in error due to malformed content, parity errors or configuration mismatch.', htmlDescription='

Number of PDUs received that were in error due to malformed content, parity errors or configuration mismatch.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:27,737 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=4121, uuid={D727F0F0-5C88-4fc4-83C5-D69614BE4ED8}, since=null, name=InUnexpectedMulticast, alias=, stereotype=protocol, visibility=public, txtDescription='Count of unexpected multicast received PDUs. This apply to GOOSE only.', htmlDescription='

Count of unexpected multicast received PDUs. This apply to GOOSE only.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:27,752 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3744, uuid={8BC8E8B9-0BA6-4277-B1B1-23F48CD0FD30}, since=null, name=PIP, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed GSE information can be obtained for each IP publisher connection.', htmlDescription='

Provides a table through which more detailed GSE information can be obtained for each IP publisher connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=796, _eaTypeName=GSEPublisherAssociationIP, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}] +2024-09-08 08:26:27,767 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3745, uuid={10373ECE-DF59-4995-BA92-240A3CC2D94B}, since=null, name=PL2, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed GSE information can be obtained for each L2 (Ethernet) publisher connection.', htmlDescription='

Provides a table through which more detailed GSE information can be obtained for each L2 (Ethernet) publisher connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=984, _eaTypeName=GSEPublisherAssociationL2, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}] +2024-09-08 08:26:27,779 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3618, uuid={BF431EAB-1B49-4c5a-8BC3-171FED573957}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=930, _eaTypeName=GSENotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=1}] +2024-09-08 08:26:27,795 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3046, uuid={AA8FC433-0ACC-4dcf-9B1C-59469C28FCA5}, since=null, name=SIP, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed GSE information can be obtained for each IP subscriber connection.', htmlDescription='

Provides a table through which more detailed GSE information can be obtained for each IP subscriber connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=979, _eaTypeName=GSESubcriberAssociationIP, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}] +2024-09-08 08:26:27,811 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3746, uuid={F6A461DF-31BD-4546-8B62-BE2A79D53F41}, since=null, name=SL2, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed GSE information can be obtained for each L2 (Ethernet) subscriber connection.', htmlDescription='

Provides a table through which more detailed GSE information can be obtained for each L2 (Ethernet) subscriber connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=977, _eaTypeName=GSESubcriberAssociationL2, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}] +2024-09-08 08:26:27,826 [main] DEBUG ClassBuilder - Adding GSEProvider as subclass of GSEandSVCommon +2024-09-08 08:26:27,826 [main] TRACE ClassBuilder - read from EA: GSE::GSEProvider +2024-09-08 08:26:27,830 [main] TRACE ClassBuilder - Class GSEPublisherAssociationIP (5 in package GSE) +2024-09-08 08:26:27,887 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEPublisherAssociationIP, _objData=UmlObjectData [id=3803, uuid={9C513452-9437-4849-894C-B2C33952D4F0}, since=null, name=DestIpAddr, alias=, stereotype=protocol, visibility=public, txtDescription='Destination IP address.', htmlDescription='

Destination IP address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-08 08:26:27,898 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEPublisherAssociationIP, _objData=UmlObjectData [id=3802, uuid={03D1AF7D-F2B5-425c-8FD2-63B09E3887F9}, since=null, name=DestIpAddrType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:27,912 [main] DEBUG ClassBuilder - Adding GSEPublisherAssociationIP as subclass of GSEandSVPublisherAssociation +2024-09-08 08:26:27,912 [main] TRACE ClassBuilder - read from EA: GSE::GSEPublisherAssociationIP +2024-09-08 08:26:27,917 [main] TRACE ClassBuilder - Class GSEPublisherAssociationL2 (6 in package GSE) +2024-09-08 08:26:27,978 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEPublisherAssociationL2, _objData=UmlObjectData [id=3801, uuid={53A15D60-889F-4c5a-BCF1-89AF1D539B97}, since=null, name=DestMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-08 08:26:27,994 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSEPublisherAssociationL2, _objData=UmlObjectData [id=4362, uuid={1EF8C591-A06A-43cb-8FBF-95E679E109F8}, since=null, name=SrcMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=no, Version=1}] +2024-09-08 08:26:28,010 [main] DEBUG ClassBuilder - Adding GSEPublisherAssociationL2 as subclass of GSEandSVPublisherAssociation +2024-09-08 08:26:28,010 [main] TRACE ClassBuilder - read from EA: GSE::GSEPublisherAssociationL2 +2024-09-08 08:26:28,015 [main] TRACE ClassBuilder - Class GSESubcriberAssociationIP (7 in package GSE) +2024-09-08 08:26:28,090 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubcriberAssociationIP, _objData=UmlObjectData [id=3740, uuid={FFD24620-C094-400d-8BD1-F48524198222}, since=null, name=SrcIpAddr, alias=, stereotype=protocol, visibility=public, txtDescription='Source IP address. .', htmlDescription='

Source IP address. .

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-08 08:26:28,102 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubcriberAssociationIP, _objData=UmlObjectData [id=3739, uuid={B418786B-EB08-4581-8037-B7C3A6E0311A}, since=null, name=SrcIpAddrType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:28,116 [main] DEBUG ClassBuilder - Adding GSESubcriberAssociationIP as subclass of GSESubscriberAssociation +2024-09-08 08:26:28,117 [main] TRACE ClassBuilder - read from EA: GSE::GSESubcriberAssociationIP +2024-09-08 08:26:28,122 [main] TRACE ClassBuilder - Class GSESubcriberAssociationL2 (8 in package GSE) +2024-09-08 08:26:28,181 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubcriberAssociationL2, _objData=UmlObjectData [id=3742, uuid={556B251D-88A4-4ac8-855E-D537776F059A}, since=null, name=SrcMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP Profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP Profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-08 08:26:28,194 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GSE::GSESubcriberAssociationL2, _objData=UmlObjectData [id=4361, uuid={5024F7E1-FEC6-4125-AF1E-FFC7C29B18D8}, since=null, name=DstMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP Profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP Profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=no, Version=1}] +2024-09-08 08:26:28,209 [main] DEBUG ClassBuilder - Adding GSESubcriberAssociationL2 as subclass of GSESubscriberAssociation +2024-09-08 08:26:28,209 [main] TRACE ClassBuilder - read from EA: GSE::GSESubcriberAssociationL2 +2024-09-08 08:26:28,213 [main] TRACE ClassBuilder - Class GSENotification (9 in package GSE) +2024-09-08 08:26:28,241 [main] DEBUG ClassBuilder - Adding GSENotification as subclass of GSEandSVCommon +2024-09-08 08:26:28,241 [main] TRACE ClassBuilder - read from EA: GSE::GSENotification +2024-09-08 08:26:28,243 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850 Agent, _depth=5, _eaElementID=612, _objData=UmlObjectData [id=213, uuid={82435997-4AFF-4079-AAE7-9E673726C85A}, since=null, name=GSE, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 26, the GSE package includes the IEC 61850 Generic Substation Events (GSE) classes. GSEprovider and GSEAssociation inherit both Security and Protocol Info attributes from the more general classes.', htmlDescription='

As shown in Figure 26, the GSE package includes the IEC 61850 Generic Substation Events (GSE) classes. GSEprovider and GSEAssociation inherit both Security and Protocol Info attributes from the more general classes.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=gse-agent, mibName=IEC-62351-IEC61850-GSE-MIB, mibPrefix=gSE, objectBranchId=4, objectIdentity=gse-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=GSE, _objData=UmlObjectData [id=44, uuid={80FA056A-3318-4339-86E8-7D464BD53A85}, since=null, name=GSE, alias=, stereotype=, visibility=public, txtDescription='GSE classes relationship. GSEProvider and GSEAssociation inherit both Security and Procotol Info attributes from the more general classes.', htmlDescription='

GSE classes relationship. GSEProvider and GSEAssociation inherit both Security and Procotol Info attributes from the more general classes.

'], _portrait=true, _kind=LOGICAL]], _classes=7 +2024-09-08 08:26:28,243 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Application Protocols Agents, _depth=4, _eaElementID=143, _objData=UmlObjectData [id=42, uuid={AD259188-13EE-4de8-ACE5-B251CBE161AE}, since=null, name=IEC61850 Agent, alias=, stereotype=, visibility=public, txtDescription='The IEC 61850 Agent package includes the collection of IEC 61850 protocols monitoring information. It is structured into the following sub-packages: +- ACSI (Abstract communication service interface) +- MMS (Manufacturing Message Specification) +- SV (Sampled Value) +- GSE (Generic Substation Events).', htmlDescription='

The IEC 61850 Agent package includes the collection of IEC 61850 protocols monitoring information. It is structured into the following sub-packages:

  • ACSI (Abstract communication service interface)
  • MMS (Manufacturing Message Specification)
  • SV (Sampled Value)
  • GSE (Generic Substation Events).
'], _modelId=362, _selfDependent=false, 2_taggedValues{objectBranchId=2, objectIdentity=iec61850}, _childPackages=5] +2024-09-08 08:26:28,243 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=604, _objData=UmlObjectData [id=210, uuid={79D95A5F-8421-4ee5-89EC-51F26A20BCDC}, since=null, name=Application Protocols Agents, alias=, stereotype=, visibility=public, txtDescription='This Application Protocols Agents package contains the object descriptions to be provided in order to monitor the behaviour of the application protocols and any possible security information related to application communication layer. +Each protocol package is structured with the goal of exposing summary information on the overall application stack protocol statistics and information, but also of providing specialized statistics and information for each association with remote entities (the application level connections). This is done by reusing the same common or protocol-related objects with the goal of obtaining more coherent structure and semantics of variables.', htmlDescription='

This Application Protocols Agents package contains the object descriptions to be provided in order to monitor the behaviour of the application protocols and any possible security information related to application communication layer.

Each protocol package is structured with the goal of exposing summary information on the overall application stack protocol statistics and information, but also of providing specialized statistics and information for each association with remote entities (the application level connections). This is done by reusing the same common or protocol-related objects with the goal of obtaining more coherent structure and semantics of variables.

'], _modelId=362, _selfDependent=false, 2_taggedValues{objectBranchId=3, objectIdentity=application}, _childPackages=5] +2024-09-08 08:26:28,247 [main] INFO PackageBuilder - processing package Clocks Agent (10) ... +2024-09-08 08:26:28,266 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Clocks Agent, _objData=UmlObjectData [id=46, uuid={9DE08B60-19E1-4c7c-B3D6-82731BE2066A}, since=null, name=Clocks Agent, alias=, stereotype=, visibility=public, txtDescription='Clocks Agent classes', htmlDescription='

Clocks Agent classes

'], _portrait=true, _kind=LOGICAL] +2024-09-08 08:26:28,329 [main] TRACE ClassBuilder - Class Clock (0 in package Clocks Agent) +2024-09-08 08:26:28,455 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=2651, uuid={219E72A9-5B41-4365-A90E-491097F96C10}, since=null, name=clockTamperDetected, alias=, stereotype=security, visibility=public, txtDescription='Timestamp of when a tamper of a clock has been detected', htmlDescription='

Timestamp of when a tamper of a clock has been detected

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:28,466 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=2656, uuid={C95F5CA0-6663-41c7-BAE9-BB32F924F8F1}, since=null, name=LastClockHoldover, alias=, stereotype=health, visibility=public, txtDescription='Indicates the timestamp at which the last Holdover was detected.', htmlDescription='

Indicates the timestamp at which the last Holdover was detected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:28,478 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=2657, uuid={FF50E5F4-F0FB-48b1-B605-B025F27CA0DD}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='When written True, the statistics of clockTamperDetected and LastClockHoldover are set back to a value of zero. The values in the clocks table are not impacted by this reset.', htmlDescription='

When written True, the statistics of clockTamperDetected and LastClockHoldover are set back to a value of zero. The values in the clocks table are not impacted by this reset.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:28,494 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=2650, uuid={106DFE8D-727B-42bf-84CA-4C8E484CB760}, since=null, name=Clocks, alias=, stereotype=table, visibility=public, txtDescription='Table of information regarding the clock sources that are in use.', htmlDescription='

Table of information regarding the clock sources that are in use.

'], _isConst=false, _isStatic=false, _multiplicity=[0..n], _initValue=, _eaTypeId=608, _eaTypeName=ClockEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=cLK, objectIdentity=cLKclockEntry, Version=0}] +2024-09-08 08:26:28,504 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=3631, uuid={31D800F0-35C2-4312-95B7-E3A890982D86}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=944, _eaTypeName=SecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:28,518 [main] DEBUG ClassBuilder - Adding Clock as subclass of AbstractAgent +2024-09-08 08:26:28,519 [main] TRACE ClassBuilder - read from EA: Clocks Agent::Clock +2024-09-08 08:26:28,523 [main] TRACE ClassBuilder - Class ClockEntry (0 in package Clocks Agent) +2024-09-08 08:26:28,712 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2646, uuid={E98C8059-D343-41c5-A9FD-C45F4FA62052}, since=null, name=ClockAccuracy, alias=, stereotype=health, visibility=public, txtDescription='Reports the current expected accuracy of this clock in nanoseconds. A value of -1 indicates that the accuracy is unknown or estimated to be larger than 2147483647 ns.', htmlDescription='

Reports the current expected accuracy of this clock in nanoseconds. A value of -1 indicates that the accuracy is unknown or estimated to be larger than 2147483647 ns.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:28,725 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=3085, uuid={50EFFF08-CB85-4033-8EB9-8FC29AACD6DC}, since=null, name=ClockIndex, alias=, stereotype=index, visibility=public, txtDescription='Clock Index', htmlDescription='

Clock Index

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-08 08:26:28,736 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=3729, uuid={E0CAC256-AD0A-4515-9F48-63353DA71841}, since=null, name=ClockIssue, alias=, stereotype=performance, visibility=public, txtDescription='Reports the presence of any clock issue.', htmlDescription='

Reports the presence of any clock issue.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=776, _eaTypeName=TimSyncIssueType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:28,747 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2649, uuid={1591A4AF-7AD8-4720-B04E-7C389735450F}, since=null, name=ClockTamperDetected, alias=, stereotype=security, visibility=public, txtDescription='Clock tamper have been detected.', htmlDescription='

Clock tamper have been detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:28,758 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2645, uuid={F98377B8-808A-4705-81F9-99E14B733B97}, since=null, name=TmSrc, alias=, stereotype=performance, visibility=public, txtDescription='Reports the clock sync method.', htmlDescription='

Reports the clock sync method.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=777, _eaTypeName=TimSyncSrcType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:28,769 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2655, uuid={EFB862ED-119C-4441-AD7D-3F382A7C0C92}, since=null, name=HoldOver, alias=, stereotype=health, visibility=public, txtDescription='The Holdover flag shall be set True whenever the Time Traceable flag is True and the IED is not receiving a qualified signal from a recognized standard time source. It shall be set False otherwise. Therefore, this flag gives an immediate indication of loss of the time reference signal.', htmlDescription='

The Holdover flag shall be set True whenever the Time Traceable flag is True and the IED is not receiving a qualified signal from a recognized standard time source. It shall be set False otherwise. Therefore, this flag gives an immediate indication of loss of the time reference signal.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:28,781 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2648, uuid={A8CB6533-B21C-4986-941B-F8F32BD739E3}, since=null, name=LastSyncOffset, alias=, stereotype=health, visibility=public, txtDescription='Reports the time offset (in seconds) computed from the last qualified synchronization signal received by this clock. This value is used by the clock servo to gradually adjust the clock.', htmlDescription='

Reports the time offset (in seconds) computed from the last qualified synchronization signal received by this clock. This value is used by the clock servo to gradually adjust the clock.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:28,793 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2653, uuid={AAB46675-D113-417c-8AB8-E4E268247EF8}, since=null, name=TimeSourceAvailable, alias=, stereotype=health, visibility=public, txtDescription='The Time Source Available flag shall be set True whenever the IED is receiving a qualified signal from a recognized standard time source. If it loses this signal, then after an appropriate period (during which the additional holdover uncertainty is not a significant impairment to performance), the Time Source Available flag shall be set False. The duration of the period after loss of the time signal and negation of the Time Source Available flag depends on the quality of the holdover oscillator and the required time quality, and may be a configurable IED parameter. +This flag may not immediately be set False, because momentary loss of the time signal may not adversely affect IED time quality. The Holdover flag provides an immediate indication of this condition.', htmlDescription='

The Time Source Available flag shall be set True whenever the IED is receiving a qualified signal from a recognized standard time source. If it loses this signal, then after an appropriate period (during which the additional holdover uncertainty is not a significant impairment to performance), the Time Source Available flag shall be set False. The duration of the period after loss of the time signal and negation of the Time Source Available flag depends on the quality of the holdover oscillator and the required time quality, and may be a configurable IED parameter.

This flag may not immediately be set False, because momentary loss of the time signal may not adversely affect IED time quality. The Holdover flag provides an immediate indication of this condition.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:28,804 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2652, uuid={ECD9FD6B-5168-426a-BF8F-D2B9B57110B0}, since=null, name=TimeTraceable, alias=, stereotype=health, visibility=public, txtDescription='The Time Traceable flag shall be set False before the IED has received and qualified a signal from a recognized standard time source. Once it has locked to the recognized standard time source and stabilized, the Time Traceable flag shall be set True. The Time Traceable flag shall not be set False again, so long as the IED can estimate its holdover uncertainty. If at some point, perhaps due to an extended holdover interval, the IED no longer can estimate its holdover uncertainty, then the Time Traceable flag shall be set False.', htmlDescription='

The Time Traceable flag shall be set False before the IED has received and qualified a signal from a recognized standard time source. Once it has locked to the recognized standard time source and stabilized, the Time Traceable flag shall be set True. The Time Traceable flag shall not be set False again, so long as the IED can estimate its holdover uncertainty. If at some point, perhaps due to an extended holdover interval, the IED no longer can estimate its holdover uncertainty, then the Time Traceable flag shall be set False.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:28,818 [main] DEBUG ClassBuilder - Adding ClockEntry as subclass of AbstractAgent +2024-09-08 08:26:28,818 [main] TRACE ClassBuilder - read from EA: Clocks Agent::ClockEntry +2024-09-08 08:26:28,823 [main] TRACE ClassBuilder - Class SecurityNotification (6 in package Clocks Agent) +2024-09-08 08:26:28,864 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Clocks Agent::SecurityNotification, _objData=UmlObjectData [id=3632, uuid={04B87A68-22D2-4882-A4A5-D62CF502F233}, since=null, name=clockTamperDetected, alias=, stereotype=security, visibility=public, txtDescription='Timestamp of when a tamper of a clock has been detected', htmlDescription='

Timestamp of when a tamper of a clock has been detected

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:28,881 [main] DEBUG ClassBuilder - Adding SecurityNotification as subclass of AbstractAgent +2024-09-08 08:26:28,881 [main] TRACE ClassBuilder - read from EA: Clocks Agent::SecurityNotification +2024-09-08 08:26:28,883 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=605, _objData=UmlObjectData [id=211, uuid={E6C708DE-BB97-4b5d-94A9-6AD67FCE234E}, since=null, name=Clocks Agent, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 28, the Clocks Agent package includes the clock monitoring classes.', htmlDescription='

As shown in Figure 28, the Clocks Agent package includes the clock monitoring classes.

'], _modelId=362, _selfDependent=false, 6_taggedValues{isAgent=yes, mibIdentity=clock-agent, mibName=IEC-62351-CLK-MIB, mibPrefix=cLK, objectBranchId=4, objectIdentity=clock-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=Clocks Agent, _objData=UmlObjectData [id=46, uuid={9DE08B60-19E1-4c7c-B3D6-82731BE2066A}, since=null, name=Clocks Agent, alias=, stereotype=, visibility=public, txtDescription='Clocks Agent classes', htmlDescription='

Clocks Agent classes

'], _portrait=true, _kind=LOGICAL]], _classes=3 +2024-09-08 08:26:28,887 [main] INFO PackageBuilder - processing package Interfaces Agent (11) ... +2024-09-08 08:26:28,905 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Interfaces Agent, _objData=UmlObjectData [id=24, uuid={1B416A08-A236-4e2a-9A9E-6A48912EF05F}, since=null, name=Interfaces, alias=, stereotype=, visibility=public, txtDescription='The IED interfaces are depicted.', htmlDescription='

The IED interfaces are depicted.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 08:26:29,055 [main] TRACE ClassBuilder - Class Interface (1 in package Interfaces Agent) +2024-09-08 08:26:29,202 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3319, uuid={6FD1D092-9094-4f03-8B24-7DCD8E2358AD}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='Interface number', htmlDescription='

Interface number

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{mibIndex=yes, Version=0}] +2024-09-08 08:26:29,213 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3320, uuid={6EB13B61-C6AA-4e12-9BC2-177D8DB73982}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the CPU.', htmlDescription='

Description of the CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:29,225 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3415, uuid={2252ED03-8326-4d40-957F-9921BA0D74BE}, since=null, name=IntType, alias=, stereotype=identity, visibility=public, txtDescription='Interface type (Wired or Wireless)', htmlDescription='

Interface type (Wired or Wireless)

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=866, _eaTypeName=IntType, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:29,236 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3323, uuid={5B1D4273-C6BF-44d8-93A8-EE46A1AEBA45}, since=null, name=Operable, alias=, stereotype=health, visibility=public, txtDescription='Indicates that CPU is operable (it can be either online or offline)', htmlDescription='

Indicates that CPU is operable (it can be either online or offline)

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:29,248 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3318, uuid={C6769525-A8F5-4599-84AB-E17EB20458CD}, since=null, name=Online, alias=, stereotype=health, visibility=public, txtDescription='Indicate that CPU is online and active', htmlDescription='

Indicate that CPU is online and active

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:29,259 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3322, uuid={CF6212A6-1358-4cd8-AC00-7BE9C09A5BFE}, since=null, name=Faulty, alias=, stereotype=health, visibility=public, txtDescription='CPU generated errors', htmlDescription='

CPU generated errors

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:29,269 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3321, uuid={AE8F0410-796C-42ec-BA19-BA8D3B558380}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:29,343 [main] DEBUG ClassBuilder - Adding Interface as subclass of AbstractAgent +2024-09-08 08:26:29,343 [main] TRACE ClassBuilder - read from EA: Interfaces Agent::Interface +2024-09-08 08:26:29,348 [main] TRACE ClassBuilder - Class Interfaces (2 in package Interfaces Agent) +2024-09-08 08:26:29,754 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3652, uuid={F38DE40F-DC22-441d-BD42-E3990926DFB1}, since=null, name=serAvail, alias=, stereotype=performance, visibility=public, txtDescription='Number of serial interfaces installed on the device', htmlDescription='

Number of serial interfaces installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:29,765 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3657, uuid={4E66DA97-6D8F-450a-A00B-ADE0FEE47CE4}, since=null, name=serActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of serial interfaces active on the device', htmlDescription='

Number of serial interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:29,776 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3662, uuid={6F91E49F-3A68-4208-A29A-512F23CC10B0}, since=null, name=serFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing serial Interfaces on the device', htmlDescription='

Number of failing serial Interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:29,787 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3653, uuid={B23510B0-5513-4f80-9792-63DED4A16F44}, since=null, name=ethAvail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of ethernet Interfaces installed on the device', htmlDescription='

Number of ethernet Interfaces installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:29,799 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3658, uuid={6B6B3BCD-0AE0-4c6f-9FB3-472BEC079B13}, since=null, name=ethActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of ethernet interfaces active on the device', htmlDescription='

Number of ethernet interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:29,809 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3663, uuid={536CCD9F-B77E-465a-8898-FCD7644820AD}, since=null, name=ethFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing ethernet interfaces on the device', htmlDescription='

Number of failing ethernet interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:29,821 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3654, uuid={1C804DCB-08CB-41f0-B6F7-384A70C8C3C8}, since=null, name=algAvail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of analogue Interfaces installed on the device', htmlDescription='

Number of analogue Interfaces installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:29,832 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3659, uuid={29FE15BB-45B5-47c2-A74E-3EF574575434}, since=null, name=algActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of analogue interfaces Active on the device', htmlDescription='

Number of analogue interfaces Active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:29,844 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3664, uuid={54797821-2674-4526-B44A-9F87D01A6991}, since=null, name=algFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing analogue interfaces on the device', htmlDescription='

Number of failing analogue interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:29,858 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3655, uuid={74214291-7A17-4b83-AA3C-A305991D037A}, since=null, name=keyAvail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of keyboard Interface installed on the device', htmlDescription='

Number of keyboard Interface installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:29,870 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3660, uuid={AB6E018D-82C3-4524-8D58-58164F10E51B}, since=null, name=keyActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of keyboard interface active on the device', htmlDescription='

Number of keyboard interface active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:29,883 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3665, uuid={5F0D156E-80E6-401b-9854-FCA4DCA132BB}, since=null, name=keyFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing keyboard interface on the device', htmlDescription='

Number of failing keyboard interface on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:29,896 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3656, uuid={4C0A881D-B242-49b2-A9F8-DF5C3DF79322}, since=null, name=usbAvail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of Universal Serial Bus Interface installed on the device', htmlDescription='

Number of Universal Serial Bus Interface installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:29,908 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3661, uuid={6078BDD9-2E54-4b6b-A1B3-CCDBFE46E859}, since=null, name=usbActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of Universal Serial Bus interface active on the device', htmlDescription='

Number of Universal Serial Bus interface active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:29,921 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3666, uuid={64E92266-4098-47ce-9874-DBF194F6A4D1}, since=null, name=usbFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing Universal Serial Bus interface on the device', htmlDescription='

Number of failing Universal Serial Bus interface on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:29,939 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3283, uuid={6E4426CC-406A-429e-AD6D-1EECA102F2FC}, since=null, name=SER, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of serial interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of serial interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=836, _eaTypeName=SEREntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=sER, objectIdentity=intSERIALEntry, Version=0}] +2024-09-08 08:26:29,955 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3297, uuid={4C6CDBC0-62B0-4881-A810-A6CE56DACD81}, since=null, name=ETH, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of Ethernet interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of Ethernet interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=838, _eaTypeName=ETHEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=eTH, objectIdentity=intETHEntry, Version=0}] +2024-09-08 08:26:29,970 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3298, uuid={8794992C-DE7F-4bf7-83EC-5592356A181C}, since=null, name=USB, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of USB interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of USB interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=840, _eaTypeName=USBEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=uSB, objectIdentity=intUSBEntry, Version=0}] +2024-09-08 08:26:29,986 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3299, uuid={B0761727-4B75-4eb5-82B3-0BB613618FC7}, since=null, name=KEY, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of keyboard interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of keyboard interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=842, _eaTypeName=KEYEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=kEY, objectIdentity=intKEYEntry, Version=0}] +2024-09-08 08:26:30,001 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3328, uuid={D97ACC7A-DBFA-4c92-BC5C-FF187AF4C4EF}, since=null, name=ALG, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of analogue interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of analogue interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=847, _eaTypeName=ALGEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 3_taggedValues{mibPrefix=aLG, objectIdentity=intALGEntry, Version=0}] +2024-09-08 08:26:30,011 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3678, uuid={B5CE0636-5BE9-4566-8B6A-2103E2769BA9}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object', htmlDescription='

State events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=946, _eaTypeName=Notification, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:30,025 [main] DEBUG ClassBuilder - Adding Interfaces as subclass of AbstractAgent +2024-09-08 08:26:30,025 [main] TRACE ClassBuilder - read from EA: Interfaces Agent::Interfaces +2024-09-08 08:26:30,030 [main] TRACE ClassBuilder - Class ETHEntry (3 in package Interfaces Agent) +2024-09-08 08:26:30,059 [main] DEBUG ClassBuilder - Adding ETHEntry as subclass of Interface +2024-09-08 08:26:30,060 [main] TRACE ClassBuilder - read from EA: Interfaces Agent::ETHEntry +2024-09-08 08:26:30,064 [main] TRACE ClassBuilder - Class KEYEntry (4 in package Interfaces Agent) +2024-09-08 08:26:30,111 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::KEYEntry, _objData=UmlObjectData [id=3327, uuid={6A06B961-6E51-4f13-B73C-32E26BB4F831}, since=null, name=Locked, alias=, stereotype=health, visibility=public, txtDescription='Indicate a locked status for the device keyboard', htmlDescription='

Indicate a locked status for the device keyboard

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:30,126 [main] DEBUG ClassBuilder - Adding KEYEntry as subclass of Interface +2024-09-08 08:26:30,126 [main] TRACE ClassBuilder - read from EA: Interfaces Agent::KEYEntry +2024-09-08 08:26:30,131 [main] TRACE ClassBuilder - Class SEREntry (5 in package Interfaces Agent) +2024-09-08 08:26:30,194 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::SEREntry, _objData=UmlObjectData [id=3325, uuid={BD2A2516-013B-4f4c-83C4-6D873D08A614}, since=null, name=ByteIn, alias=, stereotype=protocol, visibility=public, txtDescription='Inbound Byte counter', htmlDescription='

Inbound Byte counter

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:30,205 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::SEREntry, _objData=UmlObjectData [id=3326, uuid={DB538A18-009B-4f5a-B7CD-6FDE73E706B1}, since=null, name=ByteOut, alias=, stereotype=protocol, visibility=public, txtDescription='Outbound Byte counter', htmlDescription='

Outbound Byte counter

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:30,220 [main] DEBUG ClassBuilder - Adding SEREntry as subclass of Interface +2024-09-08 08:26:30,220 [main] TRACE ClassBuilder - read from EA: Interfaces Agent::SEREntry +2024-09-08 08:26:30,225 [main] TRACE ClassBuilder - Class ALGEntry (6 in package Interfaces Agent) +2024-09-08 08:26:30,253 [main] DEBUG ClassBuilder - Adding ALGEntry as subclass of Interface +2024-09-08 08:26:30,253 [main] TRACE ClassBuilder - read from EA: Interfaces Agent::ALGEntry +2024-09-08 08:26:30,258 [main] TRACE ClassBuilder - Class USBEntry (7 in package Interfaces Agent) +2024-09-08 08:26:30,287 [main] DEBUG ClassBuilder - Adding USBEntry as subclass of Interface +2024-09-08 08:26:30,287 [main] TRACE ClassBuilder - read from EA: Interfaces Agent::USBEntry +2024-09-08 08:26:30,291 [main] TRACE ClassBuilder - Class Notification (8 in package Interfaces Agent) +2024-09-08 08:26:30,489 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3668, uuid={51550105-54C1-4ba6-BC2E-E028F066BD90}, since=null, name=serActive, alias=, stereotype=health, visibility=public, txtDescription='Number of serial Interfaces active on the device', htmlDescription='

Number of serial Interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:30,499 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3669, uuid={BE46F414-6E9C-412e-9E70-29513A7DAA18}, since=null, name=serFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing serial Interfaces on the device', htmlDescription='

Number of failing serial Interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:30,511 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3670, uuid={78956E09-8F39-4f86-A5CE-B8DBF44C7D6E}, since=null, name=ethActive, alias=, stereotype=health, visibility=public, txtDescription='Number of ethernet interfaces active on the device', htmlDescription='

Number of ethernet interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:30,522 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3671, uuid={101FCB6C-9867-4262-8E50-6F057EEAF643}, since=null, name=ethFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing ethernet interfaces on the device', htmlDescription='

Number of failing ethernet interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:30,534 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3672, uuid={5171FAC8-436F-42e9-B8E2-0C31C19FAC68}, since=null, name=algActive, alias=, stereotype=health, visibility=public, txtDescription='Number of analogue interfaces active on the device', htmlDescription='

Number of analogue interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:30,545 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3673, uuid={9711AA3F-E429-4304-960A-AA9CF2BCC003}, since=null, name=algFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing analogue interfaces on the device', htmlDescription='

Number of failing analogue interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:30,556 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3667, uuid={D523B290-8CF4-4630-ADC0-AA4FF4336A1B}, since=null, name=keyActive, alias=, stereotype=health, visibility=public, txtDescription='Number of keyboard interfaces active on the device', htmlDescription='

Number of keyboard interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:30,567 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3674, uuid={367C987D-D473-46cd-A5B1-6B3A1D275D36}, since=null, name=keyFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing keyboard interfaces on the device', htmlDescription='

Number of failing keyboard interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:30,578 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3675, uuid={0F833AFE-832E-4673-99D3-42CDEFDDF7E0}, since=null, name=usbActive, alias=, stereotype=health, visibility=public, txtDescription='Number of Universal Serial Bus interfaces active on the device', htmlDescription='

Number of Universal Serial Bus interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:30,589 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3676, uuid={E957BF40-9F27-4a63-B2DD-16F525F01FA1}, since=null, name=usbFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing Universal Serial Bus interfaces on the device', htmlDescription='

Number of failing Universal Serial Bus interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{Version=0}] +2024-09-08 08:26:30,604 [main] DEBUG ClassBuilder - Adding Notification as subclass of AbstractAgent +2024-09-08 08:26:30,604 [main] TRACE ClassBuilder - read from EA: Interfaces Agent::Notification +2024-09-08 08:26:30,607 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=part7, _depth=3, _eaElementID=130, _objData=UmlObjectData [id=40, uuid={971EA18E-FACB-4b68-BAB7-76613251FB91}, since=null, name=Interfaces Agent, alias=, stereotype=, visibility=public, txtDescription='As shown in Figure 27, the Interfaces Agent package contains the object descriptions to be provided in order to monitor the IED Interfaces state and behaviour.', htmlDescription='

As shown in Figure 27, the Interfaces Agent package contains the object descriptions to be provided in order to monitor the IED Interfaces state and behaviour.

'], _modelId=362, _selfDependent=false, 5_taggedValues{mibIdentity=interfaces-agent, mibName=IEC-62351-INT-MIB, mibPrefix=int, objectBranchId=5, objectIdentity=interfaces-agent}, 1_diagrams=[DiagramBuilder [_containingPackage=Interfaces Agent, _objData=UmlObjectData [id=24, uuid={1B416A08-A236-4e2a-9A9E-6A48912EF05F}, since=null, name=Interfaces, alias=, stereotype=, visibility=public, txtDescription='The IED interfaces are depicted.', htmlDescription='

The IED interfaces are depicted.

'], _portrait=true, _kind=LOGICAL]], _classes=8 +2024-09-08 08:26:30,607 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=iec62351, _depth=2, _eaElementID=122, _objData=UmlObjectData [id=36, uuid={6739D61A-8BB1-4a90-AC8E-98287558CD65}, since=null, name=part7, alias=, stereotype=, visibility=public, txtDescription='IEC 62351-7 Network Management objects', htmlDescription='

IEC 62351-7 Network Management objects

'], _modelId=362, _selfDependent=false, 4_taggedValues{mibHeaderDescription=Copyright (C) IEC. This version of this MIB module is part + of IEC 57-62351-7-Ed2. + See the IEC 57-62351-7-Ed2 for full legal notices., mibHeaderRevision=202409010900Z, objectBranchId=7, objectIdentity=part7}, _childPackages=10] +2024-09-08 08:26:30,607 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=standard, _depth=1, _eaElementID=982, _objData=UmlObjectData [id=364, uuid={C0098415-D52F-4c38-9D2D-A6B872F36F1B}, since=null, name=iec62351, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=362, _selfDependent=false, 2_taggedValues{objectBranchId=62351, objectIdentity=iec62351}, _childPackages=1] +2024-09-08 08:26:30,607 [main] TRACE PackageBuilder - read PackageBuilder [_kind=TOP, _containingPackage=iso, _depth=0, _eaElementID=981, _objData=UmlObjectData [id=363, uuid={92B28419-A0C7-4a2d-8D51-D7A95DF4FBF7}, since=null, name=standard, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=362, _selfDependent=false, 2_taggedValues{objectBranchId=0, objectIdentity=standard}, _childPackages=1] +2024-09-08 08:26:30,607 [main] TRACE PackageBuilder - read PackageBuilder [_kind=MODEL, _depth=-1, _eaElementID=980, _objData=UmlObjectData [id=362, uuid={3328AB0D-72D5-404d-9405-042619AAC66A}, since=null, name=iso, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=362, _selfDependent=false, _childPackages=1] +2024-09-08 08:26:30,607 [main] INFO Util - time=[0:00:36.095] read model from EA with iteration API +2024-09-08 08:26:30,607 [main] INFO Util - +2024-09-08 08:26:30,607 [main] INFO Util - +2024-09-08 08:26:30,607 [main] INFO Util - ------------------------------------------------ +2024-09-08 08:26:30,607 [main] INFO Util - linking builders... +2024-09-08 08:26:30,607 [main] INFO EaModelBuilder - assigning type to attributes ... +2024-09-08 08:26:30,608 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::BooleanValue, _objData=UmlObjectData [id=2987, uuid={AD4E7F12-52BE-4498-9D56-489F0D36E706}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Represents a boolean value.', htmlDescription='

Represents a boolean value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=636, _eaTypeName=TruthValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1e8b406]. +2024-09-08 08:26:30,608 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::BooleanValueTs, _objData=UmlObjectData [id=2915, uuid={3DFAA603-DD4F-4fb0-B38D-E41B9F5976AD}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-08 08:26:30,608 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::BooleanValueTs, _objData=UmlObjectData [id=2916, uuid={3EDE9EA6-FA52-457e-9F52-95B08337CC6C}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Represents a boolean value.', htmlDescription='

Represents a boolean value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=636, _eaTypeName=TruthValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1e8b406]. +2024-09-08 08:26:30,609 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::CounterTs, _objData=UmlObjectData [id=2921, uuid={41F902F6-723F-4b04-A87D-8CFABFCB21DE}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-08 08:26:30,609 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::CounterTs, _objData=UmlObjectData [id=2922, uuid={CD1BCCAD-7FF8-4fd1-A24D-07EEC8C393A6}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='According to SMI v2, used to specify a value which represents a count. The range is 0 to 4294967295.', htmlDescription='

According to SMI v2, used to specify a value which represents a count. The range is 0 to 4294967295.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=624, _eaTypeName=Counter32 , _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@13f2bb1]. +2024-09-08 08:26:30,609 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::CntRs, _objData=UmlObjectData [id=3004, uuid={CBFD6F89-8B72-4d52-BB3D-1F897706A12D}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-08 08:26:30,609 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::CntRs, _objData=UmlObjectData [id=3003, uuid={8CAFD2C5-0DE7-4308-93B7-D49D6E8065AD}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Boolean', htmlDescription='

Boolean

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=636, _eaTypeName=TruthValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1e8b406]. +2024-09-08 08:26:30,609 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::Floating, _objData=UmlObjectData [id=2937, uuid={C1ACEE33-E3BF-408c-AA52-21345E91BD5B}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='IEEE Standard for Floating-Point Arithmetic, Standard 754-2008', htmlDescription='

IEEE Standard for Floating-Point Arithmetic, Standard 754-2008

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=630, _eaTypeName=Float32TC, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@18a00e3]. +2024-09-08 08:26:30,609 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::FloatingTs, _objData=UmlObjectData [id=2939, uuid={DFBCD799-E7D8-4865-988A-FB02011B6B88}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-08 08:26:30,609 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::FloatingTs, _objData=UmlObjectData [id=2940, uuid={111399D4-DEC9-4f43-A8B9-0E3848228A09}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='IEEE Standard for Floating-Point Arithmetic, Standard 754-2008', htmlDescription='

IEEE Standard for Floating-Point Arithmetic, Standard 754-2008

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=630, _eaTypeName=Float32TC, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@18a00e3]. +2024-09-08 08:26:30,609 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::EntityIndex, _objData=UmlObjectData [id=3724, uuid={5A44C892-8691-42d1-B0D8-D8DE77225CA8}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Integer value 1..2147483647 index', htmlDescription='

Integer value 1..2147483647 index

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=968, _eaTypeName=Unsigned32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@178f375]. +2024-09-08 08:26:30,609 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::Integer, _objData=UmlObjectData [id=2928, uuid={A4296952-0928-44e2-8560-C6B0DC4466A7}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Integer value -2147483648..2147483647 (inclusive) according to SMI v2', htmlDescription='

Integer value -2147483648..2147483647 (inclusive) according to SMI v2

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=173, _eaTypeName=Integer32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1375618]. +2024-09-08 08:26:30,609 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::IntegerTs, _objData=UmlObjectData [id=2930, uuid={B1DF3BAC-B146-48d1-B242-E0EE779A9B56}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-08 08:26:30,609 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::IntegerTs, _objData=UmlObjectData [id=2931, uuid={D8B8C3AD-4B33-445e-9393-31D5B1982D4A}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Integer value -2147483648..2147483647 (inclusive) according to SMI v2', htmlDescription='

Integer value -2147483648..2147483647 (inclusive) according to SMI v2

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=173, _eaTypeName=Integer32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1375618]. +2024-09-08 08:26:30,609 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::InetAddress, _objData=UmlObjectData [id=3017, uuid={8A787CF9-BA07-4486-A4DF-1CF9BA7A3A41}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='A value that represents an Internet address according to IETF RFC 4001.', htmlDescription='

A value that represents an Internet address according to IETF RFC 4001.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=952, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@15be6bb]. +2024-09-08 08:26:30,610 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::InetAddressType, _objData=UmlObjectData [id=3690, uuid={117C0501-377C-4bf4-90D9-77F084F0628D}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Address Type', htmlDescription='

Address Type

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=954, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1fcfece]. +2024-09-08 08:26:30,610 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::MacAddress, _objData=UmlObjectData [id=3019, uuid={212F7F94-30C7-4296-9560-DDE128B43ABE}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='OCTET STRING (SIZE (6)), DISPLAY-HINT "1x:"', htmlDescription='

OCTET STRING (SIZE (6)), DISPLAY-HINT "1x:"

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=966, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@15eef3d]. +2024-09-08 08:26:30,610 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::Selector, _objData=UmlObjectData [id=3015, uuid={2B45785E-70C4-45d5-B68C-37E64794195C}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='For Transport Selector, max length is 8. For Session and Presentation Selector max length is 16.', htmlDescription='

For Transport Selector, max length is 8. For Session and Presentation Selector max length is 16.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=632, _eaTypeName=DisplayString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c4c815]. +2024-09-08 08:26:30,610 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::Timestamp, _objData=UmlObjectData [id=3083, uuid={1090CB92-2A2F-4fef-8659-3BD00578C467}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='The value of year is in network-byte order, fractions of second is as defined in RFC 5905, epoch is defined as Midnight January 1, 1970.', htmlDescription='

The value of year is in network-byte order, fractions of second is as defined in RFC 5905, epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-08 08:26:30,610 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::CharString, _objData=UmlObjectData [id=2989, uuid={E34DC27C-7282-4663-B1EF-D2B160F31A39}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Represents a String.', htmlDescription='

Represents a String.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=632, _eaTypeName=DisplayString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c4c815]. +2024-09-08 08:26:30,610 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::CharStringTs, _objData=UmlObjectData [id=3380, uuid={AF16BFAF-FF80-4499-9DAD-A58391568338}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.', htmlDescription='

Timestamp. The value of year is in network-byte order fractions of second is as defined in RFC 5905 epoch is defined as Midnight January 1, 1970.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-08 08:26:30,610 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Abstract Types::CharStringTs, _objData=UmlObjectData [id=3379, uuid={2E8EFCAA-307D-4001-97ED-98DC7A6FCC62}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='Represents a String.', htmlDescription='

Represents a String.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=632, _eaTypeName=DisplayString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c4c815]. +2024-09-08 08:26:30,610 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::AppDatStType, _objData=UmlObjectData [id=2991, uuid={20C199C1-6505-4e87-AA5E-7761159CD7E3}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp.', htmlDescription='

Timestamp.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-08 08:26:30,610 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::AppDatStType, _objData=UmlObjectData [id=2992, uuid={A150447F-47CA-40a3-A3E4-20675ECB8425}, since=null, name=Value, alias=, stereotype=enum, visibility=public, txtDescription='AppDatStKind enumeration.', htmlDescription='

AppDatStKind enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=292, _eaTypeName=AppDatStKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@100a15d]. +2024-09-08 08:26:30,610 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::PhyHealthType, _objData=UmlObjectData [id=4116, uuid={BAC3158A-D258-496a-83A5-0E64DFD67679}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp.', htmlDescription='

Timestamp.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-08 08:26:30,610 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::PhyHealthType, _objData=UmlObjectData [id=4117, uuid={D2C2C044-39BB-4b98-BC2D-E3B53A97EDAE}, since=null, name=Value, alias=, stereotype=enum, visibility=public, txtDescription='PhyHealthKind enumeration.', htmlDescription='

PhyHealthKind enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1034, _eaTypeName=PhyHealthKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@34c75a]. +2024-09-08 08:26:30,611 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::ExtType, _objData=UmlObjectData [id=3367, uuid={1245D715-EBD7-4730-A6F9-04F33AE0CF28}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='ExtKind enumeration.', htmlDescription='

ExtKind enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=856, _eaTypeName=ExtKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@16a51ab]. +2024-09-08 08:26:30,611 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::IntType, _objData=UmlObjectData [id=3395, uuid={0A1710BD-B405-499c-8631-29D2BA1F37C0}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='IntKind enumeration', htmlDescription='

IntKind enumeration

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=864, _eaTypeName=IntKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@19a81e8]. +2024-09-08 08:26:30,611 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::EventType, _objData=UmlObjectData [id=3705, uuid={CF22855C-E347-4873-AD54-398449D71764}, since=null, name=TimeStamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp.', htmlDescription='

Timestamp.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-08 08:26:30,611 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::EventType, _objData=UmlObjectData [id=3704, uuid={B8CA2998-8D74-4277-B68D-01EC12299F89}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='EventKind enumeration.', htmlDescription='

EventKind enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=958, _eaTypeName=EventKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@15b5592]. +2024-09-08 08:26:30,611 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::PSPAccType, _objData=UmlObjectData [id=3378, uuid={2DC1C237-EFE6-4e97-A76B-58AA500A8F7B}, since=null, name=Timestamp, alias=, stereotype=, visibility=public, txtDescription='Timestamp.', htmlDescription='

Timestamp.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=628, _eaTypeName=DateAndTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2abd]. +2024-09-08 08:26:30,611 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::PSPAccType, _objData=UmlObjectData [id=3377, uuid={018C1C51-9C40-4e91-A95B-3878F4DD9BD9}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='PSPAccKind Enumeration.', htmlDescription='

PSPAccKind Enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=293, _eaTypeName=PSPAccKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@120ebad]. +2024-09-08 08:26:30,611 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::ProtIdType, _objData=UmlObjectData [id=3011, uuid={7F5D7A4B-5851-45b9-9F48-5C8F08A97218}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='ProtIdKind Enumeration.', htmlDescription='

ProtIdKind Enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=829, _eaTypeName=ProtIdKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@19f379]. +2024-09-08 08:26:30,611 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncIssueType, _objData=UmlObjectData [id=3006, uuid={A23195C8-D6B6-4033-B7CC-798A866B84FA}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='TimSyncIssueKind Enumeration.', htmlDescription='

TimSyncIssueKind Enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=113, _eaTypeName=TimSyncIssueKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@12cc05a]. +2024-09-08 08:26:30,611 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::SecurityProfileType, _objData=UmlObjectData [id=3929, uuid={62BF7B27-EFA1-466c-AED9-06307DBA6999}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='SecurityProfile Enumeration', htmlDescription='

SecurityProfile Enumeration

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1011, _eaTypeName=SecurityProfileKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8a9f61]. +2024-09-08 08:26:30,611 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::TimSyncSrcType, _objData=UmlObjectData [id=3008, uuid={7D7258A7-E193-49cd-AA63-6F1E9EECA15D}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='TimSyncSrcKind Enumeration', htmlDescription='

TimSyncSrcKind Enumeration

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=117, _eaTypeName=TimSyncSrcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@16905e]. +2024-09-08 08:26:30,611 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=EnumeratedTypes::LnkType, _objData=UmlObjectData [id=3010, uuid={9322D17D-875C-49ca-B9CF-0F43B6E41A52}, since=null, name=Value, alias=, stereotype=, visibility=public, txtDescription='LnkType Enumeration.', htmlDescription='

LnkType Enumeration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=644, _eaTypeName=LnkKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@5ca609]. +2024-09-08 08:26:30,611 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2673, uuid={B7336AC3-3490-4d18-9C0A-633A3375B799}, since=null, name=AppDatSt, alias=, stereotype=health, visibility=public, txtDescription='Status of the environment where the device is operated (e.g. Power Supply, Physical Access)', htmlDescription='

Status of the environment where the device is operated (e.g. Power Supply, Physical Access)

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=766, _eaTypeName=AppDatStType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@16d4b5c, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,611 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=596, uuid={F437BD0A-FA9A-4244-BD21-213EDEE71F93}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Attribute that allows a reset of the statistical information.', htmlDescription='

Attribute that allows a reset of the statistical information.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,613 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=3707, uuid={CC877A95-C652-4fe2-AD1D-655296F78214}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,613 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2257, uuid={A7F35D26-4B23-4015-AD0D-EBEFA191D4F4}, since=null, name=PSPBld, alias=, stereotype=security, visibility=public, txtDescription='Building access occurred.', htmlDescription='

Building access occurred.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,614 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2255, uuid={AE5A5B25-3635-4d4e-BB6F-3F373B37D7F7}, since=null, name=PSPIed, alias=, stereotype=security, visibility=public, txtDescription='Indicates that direct access to the IED is in process.', htmlDescription='

Indicates that direct access to the IED is in process.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,614 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2256, uuid={B58DB9CE-5D6A-4836-8A52-322BC774BC87}, since=null, name=PSPPanel, alias=, stereotype=security, visibility=public, txtDescription='Indicates that panel access is occurring to the IED.', htmlDescription='

Indicates that panel access is occurring to the IED.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,614 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2258, uuid={5330F087-530C-45ed-97CC-9AAA63252BF8}, since=null, name=PSPPerimeter, alias=, stereotype=security, visibility=public, txtDescription='Physical perimeter access occurred (e.g. door open), where available.', htmlDescription='

Physical perimeter access occurred (e.g. door open), where available.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,614 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=152, uuid={77B56447-B1AC-4c57-B772-2A438F32F38B}, since=null, name=PSUP, alias=, stereotype=table, visibility=public, txtDescription='A list of power supply entries.', htmlDescription='

A list of power supply entries.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=616, _eaTypeName=PSUPEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@feb3fa, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,614 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2260, uuid={0ABF14FE-A7EB-447e-9066-271C644F8B1A}, since=null, name=PSUPLos, alias=, stereotype=health, visibility=public, txtDescription='Power supply table entry index of the last power supply that was detected as lost.', htmlDescription='

Power supply table entry index of the last power supply that was detected as lost.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,614 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=2259, uuid={ECCB9B5A-C082-4a31-BCA7-B115A8600DA0}, since=null, name=PSUPOn, alias=, stereotype=health, visibility=public, txtDescription='Index of the power supply that was the last to come on.', htmlDescription='

Index of the power supply that was the last to come on.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,614 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=3622, uuid={96BB2987-191F-4e60-BCB6-102571495093}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=874, _eaTypeName=SecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@15d3402, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,614 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=3621, uuid={75ECAF5C-210D-48b8-90F9-82576506744C}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object.', htmlDescription='

State events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=903, _eaTypeName=Notification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1565ec2, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,614 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Environmental, _objData=UmlObjectData [id=4501, uuid={7FB27A25-45C1-42c1-9B72-BD8FC786A10A}, since=null, name=PSPRemote, alias=, stereotype=security, visibility=public, txtDescription='Indicates that a current remote access is occurring to the IED.', htmlDescription='

Indicates that a current remote access is occurring to the IED.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,614 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2663, uuid={82D58AB7-4A2D-4041-B53A-D00E492C6C11}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,615 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2671, uuid={6A6A7DC3-B5BB-4553-84C2-44318B449579}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the power supply.', htmlDescription='

Description of the power supply.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,615 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=3725, uuid={27FE83CA-F363-47cc-8B97-92F4711DDAAF}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='Id of the power supply.', htmlDescription='

Id of the power supply.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-08 08:26:30,615 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2670, uuid={40DB5D25-5E33-4ad3-BB26-D2E165FEBA1F}, since=null, name=Name, alias=, stereotype=identity, visibility=public, txtDescription='Name of the power supply.', htmlDescription='

Name of the power supply.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-08 08:26:30,615 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2669, uuid={87F74A2E-D615-4bb8-A54D-B421846C7542}, since=null, name=PSUPLos, alias=, stereotype=health, visibility=public, txtDescription='Timestamp of the last detected power loss.', htmlDescription='

Timestamp of the last detected power loss.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,615 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2661, uuid={3F81B85E-2C71-4d22-8767-ADB07D4305CC}, since=null, name=PwrLosCnt, alias=, stereotype=health, visibility=public, txtDescription='Attribute that provides a count of number power losses. Power loss indicates primary supply power loss not shutdown.', htmlDescription='

Attribute that provides a count of number power losses. Power loss indicates primary supply power loss not shutdown.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,615 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::PSUPEntry, _objData=UmlObjectData [id=2728, uuid={0A17570B-860F-49a1-8208-A78149EDC279}, since=null, name=PwrOn, alias=, stereotype=health, visibility=public, txtDescription='Indicates if the power supply state is currently on and operating appropriately.', htmlDescription='

Indicates if the power supply state is currently on and operating appropriately.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,615 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Notification, _objData=UmlObjectData [id=3463, uuid={99A52BA7-C37A-4d5a-9AF2-69F868DCA056}, since=null, name=PSUPLos, alias=, stereotype=health, visibility=public, txtDescription='Power supply Table Entry Index of the last power supply that was detected as lost.', htmlDescription='

Power supply Table Entry Index of the last power supply that was detected as lost.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e]. +2024-09-08 08:26:30,615 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::Notification, _objData=UmlObjectData [id=3462, uuid={CF8ECE95-A139-4efa-B7E5-5EBCC29D609C}, since=null, name=PSUPOn, alias=, stereotype=health, visibility=public, txtDescription='Index of the power supply that was the last to come on.', htmlDescription='

Index of the power supply that was the last to come on.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2]. +2024-09-08 08:26:30,615 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=4039, uuid={F551C4F9-AD27-4ef4-B8FA-5DBAC7238912}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,615 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=3432, uuid={04CE81A5-8629-43c0-8F3E-D93C55B63D0B}, since=null, name=PSPBld, alias=, stereotype=security, visibility=public, txtDescription='Building Access occurred.', htmlDescription='

Building Access occurred.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@fc185]. +2024-09-08 08:26:30,616 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=3430, uuid={8AA6C984-EF4B-41bb-B433-665F0793B107}, since=null, name=PSPIed, alias=, stereotype=security, visibility=public, txtDescription='Indicates that direct access to the IED is in process.', htmlDescription='

Indicates that direct access to the IED is in process.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@fc185]. +2024-09-08 08:26:30,616 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=3431, uuid={CBC52337-714E-4296-BD4F-B152E72DF029}, since=null, name=PSPPanel, alias=, stereotype=security, visibility=public, txtDescription='Indicates that panel access is occurring to the IED.', htmlDescription='

Indicates that panel access is occurring to the IED.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@fc185]. +2024-09-08 08:26:30,616 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Environmental Agent::SecurityNotification, _objData=UmlObjectData [id=3433, uuid={165E406E-AC48-43d3-A163-7401119B36B9}, since=null, name=PSPPerimeter, alias=, stereotype=security, visibility=public, txtDescription='Perimeter Access occurred.', htmlDescription='

Perimeter Access occurred.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@fc185]. +2024-09-08 08:26:30,616 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=159, uuid={1405DC0D-6A4E-4f7e-AF8C-5E21E5C79F3C}, since=null, name=AtkCnt, alias=, stereotype=security, visibility=public, txtDescription='Attribute that provides the number of cyber- attacks that have been detected.', htmlDescription='

Attribute that provides the number of cyber- attacks that have been detected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,616 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=593, uuid={D7F266B3-90FC-434c-850B-A67888D5FF8C}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,616 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3365, uuid={4F170B51-C2F3-496d-A921-71158D5FAAD4}, since=null, name=ConfigurationCRC, alias=, stereotype=identity, visibility=public, txtDescription='CRC of the last update.', htmlDescription='

CRC of the last update.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,616 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3364, uuid={70C845C3-72FA-4ee2-8C82-B541DEA6F1A6}, since=null, name=ConfigurationVersion, alias=, stereotype=identity, visibility=public, txtDescription='Version of the last uploaded configuration.', htmlDescription='

Version of the last uploaded configuration.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f5e5e3, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,616 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3264, uuid={B2181BC5-C543-4352-AF8C-CF45A0CC6715}, since=null, name=CPU, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of CPU inside the IED.', htmlDescription='

This entry defer to possible multiple instances of CPU inside the IED.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=832, _eaTypeName=CPUEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@193948d, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,616 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=164, uuid={27E657EB-F5E0-46ac-9D03-B88771E3C03E}, since=null, name=CpuUsage, alias=, stereotype=health, visibility=public, txtDescription='Provides an attribute that indicates the percentage of processing resources that is in use. Range is 0 to 100', htmlDescription='

Provides an attribute that indicates the percentage of processing resources that is in use. Range is 0 to 100

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,616 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=165, uuid={331F6C40-DC4F-47e4-A1E7-D03E91A9BAB7}, since=null, name=DataInv, alias=, stereotype=security, visibility=public, txtDescription='Provides a count of the number of attempts to write invalid data, for instance out-of-range data.', htmlDescription='

Provides a count of the number of attempts to write invalid data, for instance out-of-range data.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,616 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=1904, uuid={6044B2D8-9605-461e-A2D5-AF9EF801D394}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='This entry provides a textual description of the IED.', htmlDescription='

This entry provides a textual description of the IED.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,617 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=174, uuid={84B44E91-B83B-48bc-95EB-FCE87A7F7BC1}, since=null, name=ExpCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of expired certificates that are in the certificate storage configured for local use.', htmlDescription='

Indicates the number of expired certificates that are in the certificate storage configured for local use.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,617 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3332, uuid={609144A0-BD56-43ff-AEA6-E96829144EC8}, since=null, name=EXT, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of extension modules inside the IED.', htmlDescription='

This entry defer to possible multiple instances of extension modules inside the IED.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=850, _eaTypeName=EXTEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1604f19, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,617 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3357, uuid={40D5B796-07CF-4261-BF72-7AC36DC3E5C5}, since=null, name=FirmwareVersion, alias=, stereotype=identity, visibility=public, txtDescription='Version of the last uploaded Firmware. Timestamp refers to upload time.', htmlDescription='

Version of the last uploaded Firmware. Timestamp refers to upload time.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f5e5e3, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,617 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=1908, uuid={6FD1E9BC-3801-4721-BC75-1500D754A5F4}, since=null, name=InternalTemp, alias=, stereotype=health, visibility=public, txtDescription='Degree Centigrade measurement of the internal IED Temperature.', htmlDescription='

Degree Centigrade measurement of the internal IED Temperature.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,617 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3493, uuid={A2E2F01C-9202-4d14-B2FC-EE99FA25D64D}, since=null, name=LastCPUFail, alias=, stereotype=health, visibility=public, txtDescription='Index of last failing CPU.', htmlDescription='

Index of last failing CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,617 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3706, uuid={21041DB8-C542-4137-AADE-3D1E8DD5E1D5}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,617 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3494, uuid={7A6C77E3-9BB2-4834-8C72-DAE268A5A789}, since=null, name=LastEXTFail, alias=, stereotype=health, visibility=public, txtDescription='Index of last failing Extension.', htmlDescription='

Index of last failing Extension.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,617 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3492, uuid={4ACA1571-DB99-4447-9A06-033F9EE4348B}, since=null, name=LastSTOREFail, alias=, stereotype=health, visibility=public, txtDescription='Index of last failing Storage.', htmlDescription='

Index of last failing Storage.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,617 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3256, uuid={A9D75A03-5288-48d7-BA55-09F388369D28}, since=null, name=Location, alias=, stereotype=identity, visibility=public, txtDescription='Physical Installation coordinates (geographical and plant location).', htmlDescription='

Physical Installation coordinates (geographical and plant location).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,617 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3257, uuid={B4CF9E53-369A-47de-B31C-9255617C59E5}, since=null, name=Maintainer, alias=, stereotype=identity, visibility=public, txtDescription='Organizational reference for device maintenance.', htmlDescription='

Organizational reference for device maintenance.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,617 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3388, uuid={B008E2FB-21B8-4e33-B720-B440E4B1F49D}, since=null, name=MemTotal, alias=, stereotype=health, visibility=public, txtDescription='Provides an attribute that report the total RAM available in KBytes.', htmlDescription='

Provides an attribute that report the total RAM available in KBytes.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,617 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=1910, uuid={F6C9C372-CCF6-49b4-B39B-B7C633D0987A}, since=null, name=MemUsage, alias=, stereotype=health, visibility=public, txtDescription='Provides an attribute that indicates the percentage of memory that is in use.Range is 0 to 100.', htmlDescription='

Provides an attribute that indicates the percentage of memory that is in use.Range is 0 to 100.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,618 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3255, uuid={E81796A9-2AC8-45d5-A00C-A8FF43E2E704}, since=null, name=MIBVersion, alias=, stereotype=identity, visibility=public, txtDescription='Version of the Management Information Base.', htmlDescription='

Version of the Management Information Base.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,618 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=167, uuid={E0D67C9A-2A09-4694-B58C-55AB9281E1BA}, since=null, name=MisEvCnt, alias=, stereotype=health, visibility=public, txtDescription='Provides an attribute that represents the count of missed events or data.', htmlDescription='

Provides an attribute that represents the count of missed events or data.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,618 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=1913, uuid={FBF2BE7D-376E-477d-BEA6-8FBF4467B076}, since=null, name=Name, alias=, stereotype=identity, visibility=public, txtDescription='Name of IED.', htmlDescription='

Name of IED.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,618 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3718, uuid={472EB367-3A8B-4a9a-82E6-AD7C1825366F}, since=null, name=NearToExpCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of certificates in the certificate storage configured for local use that have exceeded the 70% of validity period.', htmlDescription='

Indicates the number of certificates in the certificate storage configured for local use that have exceeded the 70% of validity period.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,618 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=177, uuid={813425EE-45D4-449f-A1BA-5E8BDECC6309}, since=null, name=NvStore, alias=, stereotype=health, visibility=public, txtDescription='Indicates the global number of kilobytes of storage allocated for local use in all storage areas.', htmlDescription='

Indicates the global number of kilobytes of storage allocated for local use in all storage areas.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,618 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=178, uuid={82009203-F55E-466e-9B62-1933D717E9E0}, since=null, name=NvStoreRem, alias=, stereotype=health, visibility=public, txtDescription='Indicates the percentage of NvStore available for storage.', htmlDescription='

Indicates the percentage of NvStore available for storage.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,618 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=157, uuid={BE9FD31C-2E94-434f-8D2A-69F9BBC26FFD}, since=null, name=PhyHealth, alias=, stereotype=health, visibility=public, txtDescription='General health status of IED hardware and software.', htmlDescription='

General health status of IED hardware and software.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1036, _eaTypeName=PhyHealthType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1efea79, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,618 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=158, uuid={D980F3DA-CEDB-4402-837B-C8480047FB4F}, since=null, name=PhyHealthChgCnt, alias=, stereotype=health, visibility=public, txtDescription='Provides a count of the number of transitions state of PhyHealth Attribute.', htmlDescription='

Provides a count of the number of transitions state of PhyHealth Attribute.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,618 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3437, uuid={DF896F75-F02E-4195-9E06-0E9BB719136B}, since=null, name=RBACDbUpdate, alias=, stereotype=security, visibility=public, txtDescription='Version of the last uploaded RBAC Database.', htmlDescription='

Version of the last uploaded RBAC Database.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f5e5e3, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,618 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=176, uuid={BF4C520F-2A9F-434f-A442-25072A5C8B6B}, since=null, name=RevCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of revoked certificates that are still configured for local use.', htmlDescription='

Indicates the number of revoked certificates that are still configured for local use.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,618 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3479, uuid={8DA6CCEB-ED0C-41ec-B476-C7F33C86B499}, since=null, name=RevCheckFail, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number revocation check failures.', htmlDescription='

Indicates the number revocation check failures.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,618 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3620, uuid={93F9F190-837F-4def-9AE7-693E1E609256}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=912, _eaTypeName=SecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@23a2f9, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,619 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3619, uuid={167D9C3F-D113-4dd9-8CD1-62228F439DF9}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object.', htmlDescription='

State events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=911, _eaTypeName=Notification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c0edeb, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,619 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3387, uuid={2CF43DE1-E31F-4743-B645-CC6617CC65E9}, since=null, name=STORE, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of storage modules inside the IED.', htmlDescription='

This entry defer to possible multiple instances of storage modules inside the IED.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=862, _eaTypeName=STOREEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@17e2f02, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,619 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=4118, uuid={A000D652-2899-4b1e-A269-5B0E74D9612D}, since=null, name=SvcViol, alias=, stereotype=security, visibility=public, txtDescription='Number of service privilege violations (i.e., when the data object that the client wanted to access exists in the access view for the association with that client, but the requested service is not allowed).', htmlDescription='

Number of service privilege violations (i.e., when the data object that the client wanted to access exists in the access view for the association with that client, but the requested service is not allowed).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,619 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=3964, uuid={8C00B0E5-5F91-4e94-AAA3-B08EFBB15D6C}, since=null, name=Watchdog, alias=, stereotype=health, visibility=public, txtDescription='This attribute report the count of Watchdog intervention on any component of the IED.', htmlDescription='

This attribute report the count of Watchdog intervention on any component of the IED.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,619 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::IED, _objData=UmlObjectData [id=2217, uuid={FA50F248-F688-4b0f-B343-E8626A859677}, since=null, name=WrmStrCnt, alias=, stereotype=health, visibility=public, txtDescription='Number of warm starts detected.', htmlDescription='

Number of warm starts detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,619 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3261, uuid={F7E2552A-9E40-4498-9B35-80E4DC7388F3}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,619 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3260, uuid={2A8CCA5F-B153-4fa8-8801-52859B51BF8A}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the CPU.', htmlDescription='

Description of the CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,619 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3262, uuid={6C624EF6-19CC-45c7-8B22-52C6EB105C3F}, since=null, name=Faulty, alias=, stereotype=health, visibility=public, txtDescription='CPU generated errors.', htmlDescription='

CPU generated errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,619 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3259, uuid={18120B8F-8761-4f72-A364-9015D0229D9F}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='CPU number.', htmlDescription='

CPU number.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-08 08:26:30,619 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3258, uuid={5BACDAAA-B8BD-4635-B1F3-7E2C4CB93292}, since=null, name=Online, alias=, stereotype=health, visibility=public, txtDescription='Indicate that CPU is online and active.', htmlDescription='

Indicate that CPU is online and active.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,619 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3263, uuid={404E8337-84BD-4e87-888C-BC40C8FDFD3D}, since=null, name=Operable, alias=, stereotype=health, visibility=public, txtDescription='Indicates that CPU is operable (it can be either online or offline).', htmlDescription='

Indicates that CPU is operable (it can be either online or offline).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,619 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3389, uuid={D6BA8CB3-C883-4924-9F0F-3E0D3BF3FE2D}, since=null, name=Temperature, alias=, stereotype=health, visibility=public, txtDescription='Temperature of this CPU.', htmlDescription='

Temperature of this CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,620 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::CPUEntry, _objData=UmlObjectData [id=3965, uuid={2C004DAE-5C35-4b32-8046-95848FB39988}, since=null, name=Watchdog, alias=, stereotype=health, visibility=public, txtDescription='This attribute report the count of Watchdog intervention on this CPU.', htmlDescription='

This attribute report the count of Watchdog intervention on this CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,620 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3334, uuid={5449D06F-D84C-4247-BFF2-855283FE546B}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='Software PLC ID.', htmlDescription='

Software PLC ID.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-08 08:26:30,620 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3335, uuid={1FA00718-1A03-4856-BE17-E4C968E2303B}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the Software PLC.', htmlDescription='

Description of the Software PLC.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,620 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3366, uuid={26FC08E1-AE06-447a-A63C-A464EF3B6C5A}, since=null, name=ExtensionType, alias=, stereotype=identity, visibility=public, txtDescription='This attribute defines the type of the extension module.', htmlDescription='

This attribute defines the type of the extension module.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=854, _eaTypeName=ExtType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1081592, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,620 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3416, uuid={25484747-00E6-4e15-9F70-84DADE0F1C1C}, since=null, name=CodeVersion, alias=, stereotype=identity, visibility=public, txtDescription='Version of the last uploaded code.', htmlDescription='

Version of the last uploaded code.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f5e5e3, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,620 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3338, uuid={582D62C0-D628-4ccb-8BBD-32D4EE3B63BD}, since=null, name=Running, alias=, stereotype=health, visibility=public, txtDescription='Indicates that CPU is operable (it can be either online or offline).', htmlDescription='

Indicates that CPU is operable (it can be either online or offline).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,620 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3390, uuid={4838CC42-4D04-48d4-B5E0-73AC845722FF}, since=null, name=Temperature, alias=, stereotype=health, visibility=public, txtDescription='Temperature of this extension.', htmlDescription='

Temperature of this extension.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,620 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3333, uuid={884C8693-44E5-4b48-BBA4-E016ABF8B3C1}, since=null, name=Watchdog, alias=, stereotype=health, visibility=public, txtDescription='This attribute report the count of Watchdog intervention on this IED extension (e.g. software PLC).', htmlDescription='

This attribute report the count of Watchdog intervention on this IED extension (e.g. software PLC).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,620 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3337, uuid={A88DDBF9-7D12-4096-A713-D46EF92F2788}, since=null, name=Errors, alias=, stereotype=health, visibility=public, txtDescription='This attribute reports the PLC software detected errors.', htmlDescription='

This attribute reports the PLC software detected errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,620 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::EXTEntry, _objData=UmlObjectData [id=3336, uuid={A600A488-A1C0-4de3-BA57-148F100FC3F6}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,620 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3382, uuid={51E473C6-FD18-455e-AED3-59F394443C8D}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='Storage area ID number.', htmlDescription='

Storage area ID number.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-08 08:26:30,620 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3383, uuid={064A1F24-744B-46ad-AD7C-A95961E97B13}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the storage area.', htmlDescription='

Description of the storage area.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,621 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3386, uuid={F81C3EA0-A881-4cf8-981C-6AAA51137320}, since=null, name=NvStore, alias=, stereotype=health, visibility=public, txtDescription='Indicates the amount of storage.', htmlDescription='

Indicates the amount of storage.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,621 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3381, uuid={9C3D8C6F-12FE-4f73-AF1F-DE108934866D}, since=null, name=NvStoreRem, alias=, stereotype=health, visibility=public, txtDescription='Indicate remaining storage in this area.', htmlDescription='

Indicate remaining storage in this area.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,622 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3385, uuid={D8309CF9-DAF0-4ee7-A381-888D751BA0AA}, since=null, name=Faulty, alias=, stereotype=health, visibility=public, txtDescription='Storage area fault generated errors.', htmlDescription='

Storage area fault generated errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,622 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::STOREEntry, _objData=UmlObjectData [id=3732, uuid={39256EA1-992F-4aca-AF28-01BF33E5DF73}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,622 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3486, uuid={B5FF53A1-E8B9-46ec-BE1B-75F6EC7C48F5}, since=null, name=PhyHealthChgCnt, alias=, stereotype=health, visibility=public, txtDescription='Provides a count of the number of transitions state of PhyHealth Attribute.', htmlDescription='

Provides a count of the number of transitions state of PhyHealth Attribute.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,622 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3497, uuid={C24EC3BA-E07C-4a47-9FC1-D975C6DF5FA9}, since=null, name=InternalTemp, alias=, stereotype=health, visibility=public, txtDescription='Degree Centigrade measurement of the internal IED Temperature.', htmlDescription='

Degree Centigrade measurement of the internal IED Temperature.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,622 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3495, uuid={11B98054-C537-42a0-938C-380F69A2A3F5}, since=null, name=NvStore, alias=, stereotype=health, visibility=public, txtDescription='Indicates the global number of kilobytes of storage allocated for local use in all storage areas.', htmlDescription='

Indicates the global number of kilobytes of storage allocated for local use in all storage areas.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,622 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3496, uuid={5E3EA7C8-15A7-42f6-9FBC-0C995489AB43}, since=null, name=NvStoreRem, alias=, stereotype=health, visibility=public, txtDescription='Indicates the percentage of NvStore available for storage.', htmlDescription='

Indicates the percentage of NvStore available for storage.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,622 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3480, uuid={8334F7D0-DA9C-4f85-8A96-1ACB87744C5B}, since=null, name=PhyHealth, alias=, stereotype=health, visibility=public, txtDescription='General health status of IED hardware and software.', htmlDescription='

General health status of IED hardware and software.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1036, _eaTypeName=PhyHealthType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1efea79, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,622 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::Notification, _objData=UmlObjectData [id=3489, uuid={37E2129D-71C5-4030-8530-00D04FA20DDF}, since=null, name=WrmStrCnt, alias=, stereotype=health, visibility=public, txtDescription='Number of warm starts detected.', htmlDescription='

Number of warm starts detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,622 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3502, uuid={E2312704-4F51-465e-8B02-4DFC37D2286B}, since=null, name=AtkCnt, alias=, stereotype=security, visibility=public, txtDescription='Attribute that provides the number of cyber- attacks that have been detected.', htmlDescription='

Attribute that provides the number of cyber- attacks that have been detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,623 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3499, uuid={7B741BD7-BDA8-4148-BDA0-6667E98C3102}, since=null, name=ExpCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of expired certificates that are in the certificate storage configured for local use.', htmlDescription='

Indicates the number of expired certificates that are in the certificate storage configured for local use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,623 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3730, uuid={7029DE89-300D-43cb-B94F-49317EE26061}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,623 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3731, uuid={554C03A1-C7D0-43ea-8541-46609B5191C2}, since=null, name=NearToExpCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of certificates in the certificate storage configured for local use that have exceeded the 70% of validity period.', htmlDescription='

Indicates the number of certificates in the certificate storage configured for local use that have exceeded the 70% of validity period.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,623 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3498, uuid={16D2AFD2-62AE-4dfe-BA94-32B996B33302}, since=null, name=RevCerts, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number of revoked certificates that are still configured for local use.', htmlDescription='

Indicates the number of revoked certificates that are still configured for local use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,623 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IED Agent::SecurityNotification, _objData=UmlObjectData [id=3500, uuid={406910CA-F346-4649-99A2-5A215611BD7D}, since=null, name=RevCheckFail, alias=, stereotype=security, visibility=public, txtDescription='Indicates the number revocation check failures.', htmlDescription='

Indicates the number revocation check failures.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,623 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4079, uuid={CCA64890-32AD-4a39-BD2E-B115DB6259D5}, since=null, name=IEC62351part3, alias=, stereotype=security, visibility=public, txtDescription='True is security profile in use for this association (IEC 62351-3).', htmlDescription='

True is security profile in use for this association (IEC 62351-3).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@756e4d, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,623 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4087, uuid={0CDF636C-287B-44bf-AF3B-83CBAEB3791B}, since=null, name=Part3ConnectionId, alias=, stereotype=protocol, visibility=public, txtDescription='IEC 62351-3 Transport layer connection id in use for this Association. Meaningful only if IEC62351Part3 is true.', htmlDescription='

IEC 62351-3 Transport layer connection id in use for this Association. Meaningful only if IEC62351Part3 is true.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,623 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4099, uuid={18DFBDB7-B849-4a22-AEBA-4B62D877531D}, since=null, name=TCPHndShTime, alias=, stereotype=performance, visibility=public, txtDescription='Duration of the TCP handshake. Only applicable when the when the application layer has access to the TLS layer.', htmlDescription='

Duration of the TCP handshake. Only applicable when the when the application layer has access to the TLS layer.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,623 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4107, uuid={A9F9F05C-681E-480a-B663-D8EB1E1FE300}, since=null, name=TLSHndTime, alias=, stereotype=performance, visibility=public, txtDescription='TLS Handshake time. Only applicable when the when the application layer has access to the TLS layer.', htmlDescription='

TLS Handshake time. Only applicable when the when the application layer has access to the TLS layer.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,623 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4109, uuid={F7CBA04D-7FEA-47c7-A560-EA06B30C3056}, since=null, name=TLSRenegotiationTime, alias=, stereotype=performance, visibility=public, txtDescription='TLS Renegotiation time. Only applicable when the when the application layer has access to the TLS layer.', htmlDescription='

TLS Renegotiation time. Only applicable when the when the application layer has access to the TLS layer.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,624 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4108, uuid={CBC69A2E-FFEA-4612-9907-B3E519FB4E3F}, since=null, name=TLSResumptionTime, alias=, stereotype=performance, visibility=public, txtDescription='TLS Resumption time. Only applicable when the when the application layer has access to the TLS layer.', htmlDescription='

TLS Resumption time. Only applicable when the when the application layer has access to the TLS layer.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,624 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4106, uuid={EF9560F0-0EC3-4417-883D-96C32AE7803C}, since=null, name=TotalHndTime, alias=, stereotype=performance, visibility=public, txtDescription='Transport + Application Handshake time.', htmlDescription='

Transport + Application Handshake time.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,624 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Common objects::CommonProtocolInfo, _objData=UmlObjectData [id=4105, uuid={BCBEF3C5-946E-42cf-8D1D-CAAC2679E795}, since=null, name=TransportHndTime, alias=, stereotype=performance, visibility=public, txtDescription='Transport layer handshake time. It is equal to TCPHndTime if IEC62351part3 is false, it is equal to TCPHndTime + TLSHndTime if IEC62351part3 is true.', htmlDescription='

Transport layer handshake time. It is equal to TCPHndTime if IEC62351part3 is false, it is equal to TCPHndTime + TLSHndTime if IEC62351part3 is true.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,624 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4460, uuid={7510EED9-2C7E-480d-BD60-571DDC732128}, since=null, name=tlsEarlyDataCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: counts early data in handshake detected but neglected.', htmlDescription='

TLSv1.3: counts early data in handshake detected but neglected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,624 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4454, uuid={4FA3487F-4B3B-477e-99E8-2F5D24C013EF}, since=null, name=tlsDisallowedCipherCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts disallowed cipher suite proposed.', htmlDescription='

Counts disallowed cipher suite proposed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,624 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4461, uuid={F6A6964F-1010-4fc3-9112-0BBBF8244593}, since=null, name=tlsCertSizeMismatchCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts occurrences of endpoint certificate size exceeds limits', htmlDescription='

Counts occurrences of endpoint certificate size exceeds limits

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,624 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4463, uuid={89576E04-2176-4454-8207-BA0A305B9547}, since=null, name=tlsNoCaMatchCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts events of matching RootCA certificate for endpoint certificate validation not available.', htmlDescription='

Counts events of matching RootCA certificate for endpoint certificate validation not available.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,624 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4464, uuid={E1FBC1A2-6D0C-437e-95D2-873497AF44C6}, since=null, name=tlsNoSigAlgoExtCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: Counts events of no signature-algorithm extension included. Fallback to deprecated signature algorithm', htmlDescription='

TLSv1.2: Counts events of no signature-algorithm extension included. Fallback to deprecated signature algorithm

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,624 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4465, uuid={0A95DFE0-8624-4b8a-814E-A12605F19B07}, since=null, name=tlsDepDigAlgCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: Deprecated signature algorithm combination detected counter.', htmlDescription='

TLSv1.2: Deprecated signature algorithm combination detected counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,625 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4466, uuid={B68E613E-EEC5-4696-A841-9EE87D237582}, since=null, name=tlsNoTrustedCertMatchCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times Endpoint certificate not in certificate trust list', htmlDescription='

Counts the times Endpoint certificate not in certificate trust list

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,625 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4467, uuid={614E4EB0-BAA2-4b19-B00A-EA1FF0D8A3BD}, since=null, name=tlsCertRevokedCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times when endpoint certificate not in certificate trust list', htmlDescription='

Counts the times when endpoint certificate not in certificate trust list

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,625 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4468, uuid={1E2A987C-A48F-4eb7-A3BA-2C77F4A68216}, since=null, name=tlsNoCrlCnt, alias=, stereotype=security, visibility=public, txtDescription='Local CRL not accessible counter.', htmlDescription='

Local CRL not accessible counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,625 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4469, uuid={4A915807-5D1C-40af-9AA5-A745061F5DED}, since=null, name=tlsCrlExpCnt, alias=, stereotype=security, visibility=public, txtDescription='CRL expired.counter.', htmlDescription='

CRL expired.counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,625 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4470, uuid={AE06F05B-3CA8-44d1-9A20-5F4997A319FF}, since=null, name=tlsNoEpskModeCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: no support for encrypt-then-MAC counter', htmlDescription='

TLSv1.2: no support for encrypt-then-MAC counter

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,625 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4471, uuid={3E766604-E835-4b5a-A853-08A031D9FE22}, since=null, name=tlsNoEncryptThenMacCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: support of non-ephemeral PSK mode only counter.', htmlDescription='

TLSv1.3: support of non-ephemeral PSK mode only counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,625 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4472, uuid={C8F076B9-538C-423c-BC24-3756EAB54AEE}, since=null, name=tlsOcspResExpCnt, alias=, stereotype=security, visibility=public, txtDescription='OCSP response expired counter.', htmlDescription='

OCSP response expired counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,625 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4473, uuid={808D4C4A-240F-40a2-A84B-7EB7FAF41461}, since=null, name=tlsCertExpCnt, alias=, stereotype=security, visibility=public, txtDescription='Endpoint certificate expired counter.', htmlDescription='

Endpoint certificate expired counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,625 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4474, uuid={03D6BEA0-3F60-4e5b-BB2A-9126ABD1750F}, since=null, name=tlsNoSkUpdateCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: Peer does not perform session key update counter.', htmlDescription='

TLSv1.3: Peer does not perform session key update counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,625 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4475, uuid={264129C9-891C-4677-A001-B283CE215402}, since=null, name=tlsSigAlgMismatchCnt, alias=, stereotype=security, visibility=public, txtDescription='Signature algorithms in received endpoint certificate not supported counter.', htmlDescription='

Signature algorithms in received endpoint certificate not supported counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,625 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4476, uuid={A460A30B-5686-4f92-AFDC-C53C056A3309}, since=null, name=tlsSigVFailedCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times certificate signature could not be verified.', htmlDescription='

Counts the times certificate signature could not be verified.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,625 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4477, uuid={0FF962F9-BFB0-4683-96B5-09E38C57E324}, since=null, name=tlsShortRsaKeyCnt, alias=, stereotype=security, visibility=public, txtDescription='RSA key with key length of less than 2048 bit detected counter.', htmlDescription='

RSA key with key length of less than 2048 bit detected counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,626 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4478, uuid={39629ED0-372D-4c6f-B89B-4C13BA7374C6}, since=null, name=tlsMinKeyCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times RSA key with minimum key length of 1024 bit detected and allowed by configuration', htmlDescription='

Counts the times RSA key with minimum key length of 1024 bit detected and allowed by configuration

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,626 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4479, uuid={947A8F86-CF55-46c2-B517-3D4FA76FBA27}, since=null, name=tlsShortKeyCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times RSA key with insufficient key length (less than 1024 bit) detected..', htmlDescription='

Counts the times RSA key with insufficient key length (less than 1024 bit) detected..

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,626 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4480, uuid={560E07AC-D31D-4807-B518-20E83C9DD1A3}, since=null, name=tlsDepHashCnt, alias=, stereotype=security, visibility=public, txtDescription='Use of deprecated hash algorithm detected counter', htmlDescription='

Use of deprecated hash algorithm detected counter

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,626 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4462, uuid={6EDD77BB-4D13-4937-96A5-231A8441C74A}, since=null, name=tlsNoTrCaMatchSCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: No support of peer signalled trusted CA counter.', htmlDescription='

TLSv1.3: No support of peer signalled trusted CA counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,626 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4455, uuid={15470B2B-1EDC-41c5-AD3A-2E3583BF3A65}, since=null, name=tlsSessionidExpiredFullHsCnt, alias=, stereotype=security, visibility=public, txtDescription='Counter of sessionID expired, Resumption not possible, full TLS handshake done.', htmlDescription='

Counter of sessionID expired, Resumption not possible, full TLS handshake done.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,626 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4458, uuid={2B104C3D-3F3F-4c1a-812A-DC170DBA1CA2}, since=null, name=tlsNoRenegTicket, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: Number of times peer does not use secure renegotiation (session tickets) capability in renegotiated handshake.', htmlDescription='

TLSv1.2: Number of times peer does not use secure renegotiation (session tickets) capability in renegotiated handshake.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,626 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4457, uuid={D1BA2BD4-A79C-4617-9538-493A2956FC91}, since=null, name=tlsNoRenegSigCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.2: Number of times peer does not signal secure renegotiation support (session tickets) in initial handshake.', htmlDescription='

TLSv1.2: Number of times peer does not signal secure renegotiation support (session tickets) in initial handshake.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,627 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4453, uuid={E290CB99-A7B9-4ee1-AC49-29234D78A42C}, since=null, name=tlsSessionClosedRevCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the TLS session closure due to received revoked endpoint certificate.', htmlDescription='

Counts the TLS session closure due to received revoked endpoint certificate.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,627 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4459, uuid={854B3699-1B9D-4f64-B8B6-56CB2FD90FBB}, since=null, name=tlsNoTrCaMatchScCnt, alias=, stereotype=security, visibility=public, txtDescription='TLSv1.3: No support of peer signalled trusted CA counter.', htmlDescription='

TLSv1.3: No support of peer signalled trusted CA counter.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,627 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4450, uuid={8D2D94D8-3C6F-4bda-878C-F54D750FFD27}, since=null, name=tlsHsSuccessCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the TLS session successfully established.', htmlDescription='

Counts the TLS session successfully established.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,627 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4456, uuid={D19394DC-2DE1-403e-9C38-01EE35A0DDFD}, since=null, name=tlsNoReneg, alias=, stereotype=security, visibility=public, txtDescription='Number of times renegotiation interval is exceeded. TLSv1.2 peer does not renegotiate.', htmlDescription='

Number of times renegotiation interval is exceeded. TLSv1.2 peer does not renegotiate.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,627 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4452, uuid={B1BA2AF1-A523-4ca2-979A-38272AF41E2B}, since=null, name=tlsNoLocalCertCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times local endpoint certificate is not available.', htmlDescription='

Number of times local endpoint certificate is not available.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,627 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4447, uuid={3D255C0C-5B4C-4589-A304-5D6FAF7E69A2}, since=null, name=tlsWeakVersionCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times when deprecated TLS version proposed and support of TLS versions prior to TLSv1.2 enabled', htmlDescription='

Counts the times when deprecated TLS version proposed and support of TLS versions prior to TLSv1.2 enabled

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,627 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4449, uuid={4B8CCA5B-77FF-4b70-98D5-168DA947FE99}, since=null, name=tlsVersionChangeCnt, alias=, stereotype=security, visibility=public, txtDescription='Count the TLS version change (potential downgrade) in ongoing session detected.', htmlDescription='

Count the TLS version change (potential downgrade) in ongoing session detected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,627 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4446, uuid={C75A400F-5B38-4bc5-BE6A-48FB4977B686}, since=null, name=tlsDeprecatedVersionCnT, alias=, stereotype=security, visibility=public, txtDescription='Counts the times when a deprecated TLS version is proposed and support of TLS versions prior to TLSv1.2 is disabled.', htmlDescription='

Counts the times when a deprecated TLS version is proposed and support of TLS versions prior to TLSv1.2 is disabled.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,628 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4451, uuid={ACB5D4CD-DBF9-4e86-892D-469DB0082C7E}, since=null, name=tlsNoPeerCertCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times peer did not provide endpoint certificate during the TLS handshake.', htmlDescription='

Number of times peer did not provide endpoint certificate during the TLS handshake.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,628 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351-3ed2security, _objData=UmlObjectData [id=4448, uuid={A02762E7-1235-453b-8BB2-6D4E8F705EA1}, since=null, name=tlsDisallowedVersionCnt, alias=, stereotype=security, visibility=public, txtDescription='Counts the times when disallowed TLS version (prior to TLSv1.0) proposed', htmlDescription='

Counts the times when disallowed TLS version (prior to TLSv1.0) proposed

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,628 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4488, uuid={851472EB-C0E1-4464-B067-F650659846CF}, since=null, name=SessionId, alias=, stereotype=index, visibility=public, txtDescription='Id of the TLS session.', htmlDescription='

Id of the TLS session.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 2_taggedValues{mibindex=yes, Version=1}]. +2024-09-08 08:26:30,628 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4489, uuid={B226702B-AC3E-4f8c-BF07-E3347944EA3A}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,628 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4490, uuid={69D938D2-D561-48eb-8BCF-FA2CFA350C07}, since=null, name=LocAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Local address.', htmlDescription='

Local address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,628 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4491, uuid={6C3E2D7A-F0C0-424b-A05C-4A96E29F65E7}, since=null, name=LocAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Local address type.', htmlDescription='

Local address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,628 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4492, uuid={5C777986-F9FD-4fbf-AAFB-2E087F0B21F7}, since=null, name=RemAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address.', htmlDescription='

Remote address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,629 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::TLSSession, _objData=UmlObjectData [id=4493, uuid={7AB71D12-EB91-421a-B172-48B97B758080}, since=null, name=RemAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address type.', htmlDescription='

Remote address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,629 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4481, uuid={8E8A2B77-DF1B-4f33-B823-499F2C569AB8}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,629 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4482, uuid={CBC3AD5A-6EDA-4a33-95FA-37A565CEA2C1}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered (security or health).', htmlDescription='

Provides the last known event encountered (security or health).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,629 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4483, uuid={4669B65B-F448-43b1-9BB7-DD9A5FEFA04B}, since=null, name=Server, alias=, stereotype=table, visibility=public, txtDescription='Client session (when applicable)', htmlDescription='

Client session (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=1077, _eaTypeName=ServerTLS, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@167c1fc, 2_taggedValues{MIBPrefix=tC, Version=1}]. +2024-09-08 08:26:30,629 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4484, uuid={C3E6C81C-3F3D-4c3b-BABC-8573CD333CF5}, since=null, name=Client, alias=, stereotype=table, visibility=public, txtDescription='Server session (when applicable)', htmlDescription='

Server session (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=1079, _eaTypeName=ClientTLS, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ee9faa, 2_taggedValues{MIBPrefix=tC, Version=1}]. +2024-09-08 08:26:30,629 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::Summary, _objData=UmlObjectData [id=4485, uuid={36BE9868-D051-429a-8C15-ADEDE8C4F60A}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object', htmlDescription='

Security events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1078, _eaTypeName=IEC62351part3ed2SecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@38203, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,629 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification, _objData=UmlObjectData [id=4487, uuid={6943E7EC-3F67-43a9-90B0-9BCF7DB4D056}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Description of last event reported', htmlDescription='

Description of last event reported

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,629 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3991, uuid={E3FE31B6-2024-4e98-99E9-12CFAC8AEC6F}, since=null, name=AuthFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Count of the number of authorization failures.', htmlDescription='

Count of the number of authorization failures.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,629 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3992, uuid={F6B00869-D41C-44b6-B4FF-FA092ED078AE}, since=null, name=CtrlPrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of control actions attempted that did not have the correct privilege.', htmlDescription='

Number of control actions attempted that did not have the correct privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,629 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3993, uuid={2CBA5468-91CA-4cf0-BAC3-55AC2EC54FC8}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted.', htmlDescription='

Number PDUs received that could not be decrypted.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,629 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3405, uuid={66AB8F6D-0721-44fb-861C-C607A8498C6F}, since=null, name=ExT0Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T0 (connection establishment).', htmlDescription='

Count the expirations of the 104 time-out T0 (connection establishment).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,629 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3406, uuid={F62CF6E4-A1AF-476b-B35E-F4DE2A4E0591}, since=null, name=ExT1Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T1 (PDU).', htmlDescription='

Count the expirations of the 104 time-out T1 (PDU).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,630 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3407, uuid={8099C0E4-518A-434c-BF60-73BC878C2238}, since=null, name=ExT2Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T2 (ACK).', htmlDescription='

Count the expirations of the 104 time-out T2 (ACK).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,631 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3408, uuid={439C3366-994E-4fbc-A804-80CA3D745D68}, since=null, name=ExT3Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T3 (TEST).', htmlDescription='

Count the expirations of the 104 time-out T3 (TEST).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,631 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3124, uuid={B8936537-E883-4ab6-8A65-47CF971C5BB4}, since=null, name=InDisc, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDUs that were discarded.', htmlDescription='

Number of received PDUs that were discarded.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,631 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3994, uuid={9A232ABD-C751-45bb-8278-552FEB934C4E}, since=null, name=InErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of PDUs received that were in error.', htmlDescription='

Number of PDUs received that were in error.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,631 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3995, uuid={A4886E74-D4DE-4163-BBF4-BFB4DA9AA818}, since=null, name=InOvCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer overflows detected due to incoming communication.', htmlDescription='

Number of buffer overflows detected due to incoming communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,631 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3996, uuid={34EAD965-3EEE-42ae-9A33-371405C3B4A8}, since=null, name=InterPDUTime, alias=, stereotype=protocol, visibility=public, txtDescription='Time between two consecutives PDUs.', htmlDescription='

Time between two consecutives PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,631 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3997, uuid={E65434B6-333B-4677-9DB7-2689202D1C31}, since=null, name=MisPDUCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Provides an attribute that represents the count of missed PDU.', htmlDescription='

Provides an attribute that represents the count of missed PDU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,631 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3141, uuid={3DEDE5E8-C46A-4627-A2B8-FA7B2651B388}, since=null, name=OutErr, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmission errors.', htmlDescription='

Number of transmission errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,631 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3990, uuid={4B336F22-0DBB-425c-9CE9-8A2B3968C18C}, since=null, name=OutUv, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer underflows detected due to outgoing serial communication.', htmlDescription='

Number of buffer underflows detected due to outgoing serial communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,631 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3998, uuid={56C57887-C03F-430b-A3CC-47993296C81A}, since=null, name=PDURTT, alias=, stereotype=protocol, visibility=public, txtDescription='PDU round trip time.', htmlDescription='

PDU round trip time.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,631 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3999, uuid={F9A50D40-7721-4f2f-B450-70B42C8159B7}, since=null, name=PDUSizeFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDU with wrong size.', htmlDescription='

Number of received PDU with wrong size.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,632 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4000, uuid={C3639D7C-0EF8-4ffb-912C-24F7FA06CBA6}, since=null, name=PduTampCnt, alias=, stereotype=security, visibility=public, txtDescription='Provides an attribute that indicates the count of the number of PDUs that have been detected to be tampered with.', htmlDescription='

Provides an attribute that indicates the count of the number of PDUs that have been detected to be tampered with.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,632 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4001, uuid={AD2C395F-15DF-4e49-A4EF-1C8758015811}, since=null, name=PrimaryInterface, alias=, stereotype=protocol, visibility=public, txtDescription='True if the Protocol is running on primary interface (false when backup interface is in use).', htmlDescription='

True if the Protocol is running on primary interface (false when backup interface is in use).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,632 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4002, uuid={15035EBB-A53C-4c7d-BEA7-D6AF668B9A81}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,632 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3403, uuid={D5E66B05-319E-467b-9B20-4D0021DE5B43}, since=null, name=RtxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the number of retransmissions.', htmlDescription='

Count the number of retransmissions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,632 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3123, uuid={5F22267E-6104-41c7-A2B6-BBFFCE828B94}, since=null, name=RxCritical, alias=, stereotype=protocol, visibility=public, txtDescription='Number of critical requests received (according to IEC 62351-5).', htmlDescription='

Number of critical requests received (according to IEC 62351-5).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,632 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4003, uuid={37C50A09-5C52-4612-ACD2-3CA5076E832A}, since=null, name=RxPdu, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDUs (including in error PDUs).', htmlDescription='

Number of received PDUs (including in error PDUs).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,632 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3135, uuid={51629B5F-2B79-4aa4-A704-E8D4D467D6E2}, since=null, name=RxSolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Number of solicited requests received. Only for DNP.', htmlDescription='

Number of solicited requests received. Only for DNP.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,632 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3145, uuid={546FFA93-9BFB-40fc-8F59-570F9FA50834}, since=null, name=RxUnsolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Contains the count of number of unsolicited requests that have been transmitted since the last reset.', htmlDescription='

Contains the count of number of unsolicited requests that have been transmitted since the last reset.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,632 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4004, uuid={219E7530-12EB-4a52-AE1A-536554F0ED28}, since=null, name=SessKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of session key negotiations that failed.', htmlDescription='

Number of session key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,632 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3122, uuid={9760193C-146A-427a-88DE-4FA2BBC2EA9E}, since=null, name=TxCritical, alias=, stereotype=protocol, visibility=public, txtDescription='Number of critical requests transmitted (according to IEC 62351-5)', htmlDescription='

Number of critical requests transmitted (according to IEC 62351-5)

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,633 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4005, uuid={984B7498-8B61-45e0-BE19-6E17EA80D9D0}, since=null, name=TxPdu, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmitted PDUs.', htmlDescription='

Number of transmitted PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,633 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3120, uuid={7F13ABEF-5E7A-4fc2-BE27-AB2E70B1B97A}, since=null, name=TxSolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Number of solicited requests transmitted. Only for DNP.', htmlDescription='

Number of solicited requests transmitted. Only for DNP.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,633 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=3121, uuid={76A62C46-9C78-48ff-9770-F2A7BE837E1F}, since=null, name=TxUnsolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Contains the count of number of unsolicited requests that have been transmitted since the last reset.', htmlDescription='

Contains the count of number of unsolicited requests that have been transmitted since the last reset.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,633 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, _objData=UmlObjectData [id=4006, uuid={2AAAEC13-D4BB-4d2a-8461-00DBAE43010B}, since=null, name=UpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations that failed.', htmlDescription='

Number of update key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,633 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=3726, uuid={361DD26C-8F48-46fd-BCE9-B6A3787F5FA6}, since=null, name=AssociationId, alias=, stereotype=index, visibility=public, txtDescription='Id of the association.', htmlDescription='

Id of the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,633 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=3241, uuid={87C4526C-4B22-42d3-BFDD-0EBE86166CDA}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,633 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2417, uuid={FF67FCFB-43B0-4a5a-8A33-52E57E2A1E33}, since=null, name=LocAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Local address.', htmlDescription='

Local address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-08 08:26:30,633 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=3715, uuid={857943C5-1917-46b9-BAA2-F6DBBE305DDA}, since=null, name=LocAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Local address type.', htmlDescription='

Local address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-08 08:26:30,633 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2413, uuid={218B44A4-22AA-4a3a-B54C-BC3742A6A951}, since=null, name=ProtID, alias=, stereotype=protocol, visibility=public, txtDescription='Protocol ID in use.', htmlDescription='

Protocol ID in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=780, _eaTypeName=ProtIdType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1c7cbad, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,633 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2412, uuid={2DCFE840-6DFB-49ca-9D60-6F00BBFE9375}, since=null, name=ProviderDesc, alias=, stereotype=identity, visibility=public, txtDescription='Textual description of the provider that is in use.', htmlDescription='

Textual description of the provider that is in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,633 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2411, uuid={739910E5-2234-4d7f-BF07-E2FAC9061548}, since=null, name=ProviderName, alias=, stereotype=identity, visibility=public, txtDescription='Identity of the provider responding as the outstation for this association.', htmlDescription='

Identity of the provider responding as the outstation for this association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,634 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2416, uuid={F1041BDF-E1EE-44c3-B346-5643EFA0E8C7}, since=null, name=RemAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address.', htmlDescription='

Remote address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 3_taggedValues{isIndex=yes, mibIndex=yes, Version=0}]. +2024-09-08 08:26:30,634 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=3714, uuid={25C69ED7-7E01-4316-B15C-28D99CC5FC94}, since=null, name=RemAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address type.', htmlDescription='

Remote address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 3_taggedValues{isIndex=yes, mibIndex=yes, Version=0}]. +2024-09-08 08:26:30,634 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2410, uuid={4F98C052-71F6-44e6-A31C-2A148D61DF91}, since=null, name=TLnkErrCnt, alias=, stereotype=health, visibility=public, txtDescription='Count of communication link errors detected.', htmlDescription='

Count of communication link errors detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,634 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Association, _objData=UmlObjectData [id=2415, uuid={FED824F2-3E50-44cd-A78C-B816071534FB}, since=null, name=TLnkTyp, alias=, stereotype=protocol, visibility=public, txtDescription='Type of transport being utilized.', htmlDescription='

Type of transport being utilized.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=778, _eaTypeName=LnkType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2cbe0, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,634 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=3248, uuid={37A47CAE-5E15-4947-9824-88474381CEB3}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,634 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=3708, uuid={33EEE0D1-CEBA-4f55-8388-E92B798B5827}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered (security or health).', htmlDescription='

Provides the last known event encountered (security or health).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,634 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=2278, uuid={D8685894-627E-4b6f-B670-3C72CC90DF6B}, since=null, name=Master, alias=, stereotype=table, visibility=public, txtDescription='Client association (when applicable)', htmlDescription='

Client association (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=820, _eaTypeName=MasterAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@be83e4, 2_taggedValues{MIBPrefix=tC, Version=0}]. +2024-09-08 08:26:30,634 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=2287, uuid={364CBB2E-460C-46ce-AC40-149F1C18EAC8}, since=null, name=Outstation, alias=, stereotype=table, visibility=public, txtDescription='Server association (when applicable)', htmlDescription='

Server association (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=821, _eaTypeName=OutstationAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@cb5822, 2_taggedValues{MIBPrefix=tC, Version=0}]. +2024-09-08 08:26:30,634 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=3609, uuid={86E71A83-DD23-44dd-AF05-2C4883970DBA}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object', htmlDescription='

Security events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=914, _eaTypeName=60870andDNPSecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@19e13df, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,634 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::Summary, _objData=UmlObjectData [id=3608, uuid={E3191E3F-E629-4bfd-A8E1-64D78A2B9955}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object', htmlDescription='

State events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=915, _eaTypeName=60870andDNPNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@198378d, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,634 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3519, uuid={8EC7A2E6-FA1E-44bf-871A-8E7A12508F3F}, since=null, name=AuthFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Count of the number of authorization failures.', htmlDescription='

Count of the number of authorization failures.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,635 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3518, uuid={F5BEAE2F-4536-4f9c-9478-CF23E2A2D7C5}, since=null, name=CtrlPrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of control actions attempted that did not have the correct privilege.', htmlDescription='

Number of control actions attempted that did not have the correct privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,635 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3522, uuid={9ABAB39B-C8D2-427c-805D-DD74A37B15BD}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted.', htmlDescription='

Number PDUs received that could not be decrypted.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,635 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=4043, uuid={1BC26E95-9659-4250-87C9-365D73AD44BE}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered (security or health).', htmlDescription='

Provides the last known event encountered (security or health).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,635 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3520, uuid={2018A0E6-F948-40c3-98F5-CC50CFBD7527}, since=null, name=PduTampCnt, alias=, stereotype=security, visibility=public, txtDescription='Provides an attribute that indicates the count of the number of PDUs that have been detected to be tampered with.', htmlDescription='

Provides an attribute that indicates the count of the number of PDUs that have been detected to be tampered with.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,635 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3521, uuid={F0F1CF0B-1E15-4c19-ACB3-B4C1D745383F}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,635 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3523, uuid={22ADAAB8-8A4A-49c6-A261-6FC1E02DFEDB}, since=null, name=SessKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of session key negotiations that failed.', htmlDescription='

Number of session key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,635 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, _objData=UmlObjectData [id=3524, uuid={A9AFB691-7A96-43a3-9FDB-B197827A4D8C}, since=null, name=UpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations that failed.', htmlDescription='

Number of update key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,635 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3526, uuid={6936B8C9-BCD0-46a8-B2A7-4423628A89F6}, since=null, name=InErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of PDUs received that were in error.', htmlDescription='

Number of PDUs received that were in error.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,635 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3528, uuid={97175DF9-326B-40f7-B626-D213159A0A56}, since=null, name=InOvCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer overflows detected due to incoming communication.', htmlDescription='

Number of buffer overflows detected due to incoming communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,635 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3529, uuid={47916BBB-21C9-49df-8C8B-3A9375A29441}, since=null, name=OutUv, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer underflows detected due to outgoing serial communication.', htmlDescription='

Number of buffer underflows detected due to outgoing serial communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,636 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3527, uuid={0C1DB352-F31C-4520-B8BB-43E3CB924F8D}, since=null, name=RxPdu, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDUs.', htmlDescription='

Number of received PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,636 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, _objData=UmlObjectData [id=3525, uuid={B77A1C29-3430-40df-AC7F-D1ACC9E6C035}, since=null, name=TxPdu, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmitted PDUs.', htmlDescription='

Number of transmitted PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,636 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4257, uuid={0C0A0A2C-20C0-4ca9-9856-507B3CF40B66}, since=null, name=ExT0Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T0 (connection establishment).', htmlDescription='

Count the expirations of the 104 time-out T0 (connection establishment).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,636 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4258, uuid={C6845E20-7B2D-4978-A35B-D43715366935}, since=null, name=ExT1Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T1 (PDU).', htmlDescription='

Count the expirations of the 104 time-out T1 (PDU).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,636 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4259, uuid={15711ABC-5E51-4c9e-95EB-71E116D1CBC1}, since=null, name=ExT2Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T2 (ACK).', htmlDescription='

Count the expirations of the 104 time-out T2 (ACK).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,636 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4260, uuid={7A191FB8-98E6-4847-930B-90CB4FC6E61E}, since=null, name=ExT3Cnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the expirations of the 104 time-out T3 (TEST).', htmlDescription='

Count the expirations of the 104 time-out T3 (TEST).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,636 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4261, uuid={81B43739-99E7-46b8-BB5A-340970E92A28}, since=null, name=DiscPduCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of discarded messages.', htmlDescription='

Number of discarded messages.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,636 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4262, uuid={8165A5DE-3828-4785-9068-BB9EBEA44FF2}, since=null, name=InErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of PDUs received that were in error.', htmlDescription='

Number of PDUs received that were in error.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,636 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4263, uuid={D90D5B9D-8B9D-454d-83A9-E6715E4783C6}, since=null, name=InOvCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer overflows detected due to incoming communication.', htmlDescription='

Number of buffer overflows detected due to incoming communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,636 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4264, uuid={E8C8E34D-3689-46e8-B001-9DE7609677AC}, since=null, name=InterPDUTime, alias=, stereotype=protocol, visibility=public, txtDescription='Time between two consecutives PDUs.', htmlDescription='

Time between two consecutives PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,636 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4265, uuid={49E9D387-25A4-46e7-8CEB-9C75979FB7AF}, since=null, name=MisPDUCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Provides an attribute that represents the count of missed PDU.', htmlDescription='

Provides an attribute that represents the count of missed PDU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,637 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4266, uuid={8845E947-C91C-4a04-B4FE-3AEDC1029732}, since=null, name=OutErr, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmission errors.', htmlDescription='

Number of transmission errors.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,637 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4267, uuid={CCD6A7C5-F0B4-4402-AE88-B35035615DC3}, since=null, name=OutUv, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer underflows detected due to outgoing serial communication.', htmlDescription='

Number of buffer underflows detected due to outgoing serial communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,637 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4269, uuid={378D6C1B-B55C-457c-BD03-A017415E19C4}, since=null, name=PDUSizeFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDU with wrong size.', htmlDescription='

Number of received PDU with wrong size.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,637 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4273, uuid={8E51A58B-0043-4528-B1BC-BC2B4CC4E59C}, since=null, name=RtxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count the number of retransmissions.', htmlDescription='

Count the number of retransmissions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,637 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4275, uuid={9768D1CC-F452-448b-B8DF-26922CB00ED7}, since=null, name=RxPduCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDUs (including PDUs with errors).', htmlDescription='

Number of received PDUs (including PDUs with errors).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,637 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4276, uuid={00CBF4DB-7CDE-4393-BCCF-90A5601FF89C}, since=null, name=RxSolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Number of solicited requests received. Only for DNP.', htmlDescription='

Number of solicited requests received. Only for DNP.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,637 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4277, uuid={A480B5CE-C799-40b2-9A6C-05A2B643932E}, since=null, name=RxUnsolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Contains the count of number of unsolicited requests that have been transmitted since the last reset.', htmlDescription='

Contains the count of number of unsolicited requests that have been transmitted since the last reset.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,637 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4280, uuid={7A2A5BFA-FCB8-44a4-A4CF-442CC8A9FB0E}, since=null, name=TxPduCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of transmitted PDUs.', htmlDescription='

Number of transmitted PDUs.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,637 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4281, uuid={BF7B41CE-7B62-4a5f-A9F6-D1E8A5A4952E}, since=null, name=TxSolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Number of solicited requests transmitted. Only for DNP.', htmlDescription='

Number of solicited requests transmitted. Only for DNP.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,637 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, _objData=UmlObjectData [id=4282, uuid={BB6FDD4B-6837-4d88-B268-0D09301311FD}, since=null, name=TxUnsolicitedReq, alias=, stereotype=protocol, visibility=public, txtDescription='Contains the count of number of unsolicited requests that have been transmitted since the last reset.', htmlDescription='

Contains the count of number of unsolicited requests that have been transmitted since the last reset.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,637 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4306, uuid={85A6FA13-2677-4c99-BC12-DD878801CFC4}, since=null, name=StAsProcScsCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Station Association procedure has been successfully performed.', htmlDescription='

Number of times the Station Association procedure has been successfully performed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,638 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4307, uuid={F82373BD-CE1D-4a57-B13C-413810F179B0}, since=null, name=StAsProcFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Station Association procedure has failed.', htmlDescription='

Number of times the Station Association procedure has failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,638 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4308, uuid={69BDB5BC-DE98-4195-8110-202AD93E7AFC}, since=null, name=SKeyProcScsCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Session Key was changed successfully.', htmlDescription='

Number of times the Session Key was changed successfully.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,638 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4336, uuid={8BE551FF-4A0A-45b6-A0A0-D051150BF74D}, since=null, name=KeyAutnAlgSupFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Data authentication algorithm support failures. Controlled station only.', htmlDescription='

Number of Data authentication algorithm support failures. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,639 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4337, uuid={60FED222-F3AD-4f4c-A733-DE4950C990C2}, since=null, name=SKeyWrapAlgSupFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of key wrap algorithm support failures. Controlled station only.', htmlDescription='

Number of key wrap algorithm support failures. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,639 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4338, uuid={C2B0C0DF-C9DD-4aef-932E-B016DA2E6276}, since=null, name=DataProtAlgSupFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Data authentication algorithm support failures. Controlled station only.', htmlDescription='

Number of Data authentication algorithm support failures. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,639 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4339, uuid={55BE76A2-DF93-45de-9D84-4EE282ACC41B}, since=null, name=SKeyAutnErrCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Key authentication errors.', htmlDescription='

Number of Key authentication errors.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,639 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4340, uuid={97FE21BE-F20E-4b5f-9E7C-62B9BF57A4C7}, since=null, name=DataAutnErrCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of non-authentic Secure Data messages received.', htmlDescription='

Number of non-authentic Secure Data messages received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,639 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4341, uuid={303256CB-76CD-4b39-8D6B-6B5F7E4718DC}, since=null, name=UnxpMsgErrCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of unexpected messages received.', htmlDescription='

Number of unexpected messages received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,639 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4342, uuid={7B618961-D677-4bf9-83FB-40700B9BA9CC}, since=null, name=MaxReplyToutCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Max Reply Timeouts threshold was reached. Controlling station only.', htmlDescription='

Number of times the Max Reply Timeouts threshold was reached. Controlling station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,640 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4343, uuid={D8D3268F-F4C4-49d7-AB23-7946C1CEA6D1}, since=null, name=NodeAutrFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of unauthorized communication attempts.', htmlDescription='

Number of unauthorized communication attempts.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,640 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4344, uuid={23FA293A-4F87-4c7c-B4E2-6B3955B5ED61}, since=null, name=CtrlOperAutrFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of unauthorized operations. Controlled station only.', htmlDescription='

Number of unauthorized operations. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,640 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4345, uuid={6193E983-C056-491a-B7A3-EBE58355374C}, since=null, name=RemCertCheckFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of invalid certificates received.', htmlDescription='

Number of invalid certificates received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,640 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4346, uuid={46BA0F58-A6A4-4d23-9157-B07A5643B284}, since=null, name=RemCertExpiredCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the remote station's certificate expired.', htmlDescription='

Number of times the remote station's certificate expired.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,640 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4347, uuid={C54FF7FA-520C-4d4f-A4A1-B7E88C041568}, since=null, name=RemCertRevokedCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the remote station's certificate has been revoked.', htmlDescription='

Number of times the remote station's certificate has been revoked.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,640 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4348, uuid={95955856-F76D-4e05-B055-4FF8029E1A9D}, since=null, name=LocCertExpiredCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the local station's certificate expired.', htmlDescription='

Number of times the local station's certificate expired.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,640 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4349, uuid={DE7B5995-13C2-44c8-8579-6CEF37D201AF}, since=null, name=LocCertRevokedCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the local station's certificate has been revoked.', htmlDescription='

Number of times the local station's certificate has been revoked.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,640 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4350, uuid={2223C6EC-FBAE-4b91-8FF2-4407C5DFFF36}, since=null, name=KeysInvRemCertRevCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Cryptographic Keys were invalidated due to remote station's certificate revocation.', htmlDescription='

Number of times the Cryptographic Keys were invalidated due to remote station's certificate revocation.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,640 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4351, uuid={5DCACFEC-13BF-47c0-88D7-950B26D9DBBB}, since=null, name=KeysInvLocCertRevCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Cryptographic Keys were invalidated due to local station's certificate revocation.', htmlDescription='

Number of times the Cryptographic Keys were invalidated due to local station's certificate revocation.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,641 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4352, uuid={4A474D59-99BF-495e-BB9D-C3E096F5F83B}, since=null, name=DataAutnScsCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of authentic Secure Data messages received.', htmlDescription='

Number of authentic Secure Data messages received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,641 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4353, uuid={7F7D3F88-910D-4dae-B5B1-DED2E46A51C7}, since=null, name=ReplyToutCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Reply Timeouts. Controlling station only.', htmlDescription='

Number of Reply Timeouts. Controlling station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,641 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4354, uuid={E6FD44A6-C9CE-45d6-BA4A-3EF7DECB1691}, since=null, name=RequestToutCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Request Timeouts. Controlled station only.', htmlDescription='

Number of Request Timeouts. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,641 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4355, uuid={65E3DDC2-B3AC-4c86-8AF6-39C43114EC3C}, since=null, name=SKeyInvUseCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Session Key was invalidated due to Max Session Key Usage Count. Controlled station only.', htmlDescription='

Number of times the Session Key was invalidated due to Max Session Key Usage Count. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,641 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4356, uuid={3C26B695-A1A0-44c3-BE08-C75CA78940DA}, since=null, name=SKeyInvToutCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of times the Session Keys were invalidated due to Max Session Key Usage Timeout. Controlled station only.', htmlDescription='

Number of times the Session Keys were invalidated due to Max Session Key Usage Timeout. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,641 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4357, uuid={B3A60D84-37C0-40f2-9019-17B8C45C778E}, since=null, name=SKeyProcFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of Session Key Change failures.', htmlDescription='

Number of Session Key Change failures.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,641 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, _objData=UmlObjectData [id=4335, uuid={90633EE5-94E7-44d3-B98C-08140BCBFCF1}, since=null, name=ProtInfoErrCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of protocol information errors. Controlled station only.', htmlDescription='

Number of protocol information errors. Controlled station only.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,641 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4284, uuid={D3B5EC3D-3991-40b8-85B6-2AFB3206637A}, since=null, name=AssociationId, alias=, stereotype=index, visibility=public, txtDescription='Id of the association.', htmlDescription='

Id of the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,641 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4285, uuid={DB5A65D6-2349-4a56-A200-129882572A95}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,641 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4286, uuid={FABF76A8-43C1-4be2-89C5-4C3B7F18604B}, since=null, name=LocAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Local address.', htmlDescription='

Local address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-08 08:26:30,642 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4287, uuid={F933B36B-EE52-4922-9AA4-F0CB5A55F9CE}, since=null, name=LocAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Local address type.', htmlDescription='

Local address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-08 08:26:30,642 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4288, uuid={4EDE24F7-C4DB-4078-926A-3518CCBB1D8F}, since=null, name=ProtID, alias=, stereotype=protocol, visibility=public, txtDescription='Protocol ID in use.', htmlDescription='

Protocol ID in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=780, _eaTypeName=ProtIdType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1c7cbad, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,642 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4289, uuid={8CE59398-E353-464a-9B25-03588802C32E}, since=null, name=ProviderDesc, alias=, stereotype=identity, visibility=public, txtDescription='Textual description of the provider that is in use.', htmlDescription='

Textual description of the provider that is in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,642 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4290, uuid={BD1C65C9-07DF-4192-8713-A93BC3E1C050}, since=null, name=ProviderName, alias=, stereotype=identity, visibility=public, txtDescription='Identity of the provider responding as the outstation for this association.', htmlDescription='

Identity of the provider responding as the outstation for this association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,642 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4291, uuid={BEB1F3A7-96E9-4a7f-B4CE-78A311245A60}, since=null, name=RemAddress, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address.', htmlDescription='

Remote address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 3_taggedValues{isIndex=yes, mibIndex=yes, Version=0}]. +2024-09-08 08:26:30,642 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4292, uuid={59810D47-4220-40e1-A018-FE80613740BC}, since=null, name=RemAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Remote address type.', htmlDescription='

Remote address type.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 3_taggedValues{isIndex=yes, mibIndex=yes, Version=0}]. +2024-09-08 08:26:30,642 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4293, uuid={9AE7823D-F26B-48f8-A955-DA056C8C0F32}, since=null, name=TLnkErrCnt, alias=, stereotype=health, visibility=public, txtDescription='Count of communication link errors detected.', htmlDescription='

Count of communication link errors detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,642 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Association, _objData=UmlObjectData [id=4294, uuid={FFAF85C1-58F9-4330-80FE-18A5100B3EE7}, since=null, name=TLnkTyp, alias=, stereotype=protocol, visibility=public, txtDescription='Type of transport being utilized.', htmlDescription='

Type of transport being utilized.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=778, _eaTypeName=LnkType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e2cbe0, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,642 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4295, uuid={E543F5FE-D414-4517-9CFA-17AF02358984}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,642 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4296, uuid={A601B46C-5CB2-4663-BBDD-6B075EA07FE8}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered (security or health).', htmlDescription='

Provides the last known event encountered (security or health).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,642 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4297, uuid={DD17EC1E-C1D2-444e-BC3B-65A68EB1768E}, since=null, name=Master, alias=, stereotype=table, visibility=public, txtDescription='Client association (when applicable)', htmlDescription='

Client association (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=1057, _eaTypeName=MasterAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@4edc67, 2_taggedValues{MIBPrefix=tC, Version=0}]. +2024-09-08 08:26:30,642 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4298, uuid={927B1068-7146-4ea9-B50A-FD00B14D1747}, since=null, name=Outstation, alias=, stereotype=table, visibility=public, txtDescription='Server association (when applicable)', htmlDescription='

Server association (when applicable)

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=1056, _eaTypeName=OutstationAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@acaea5, 2_taggedValues{MIBPrefix=tC, Version=0}]. +2024-09-08 08:26:30,642 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4299, uuid={E4361517-7300-4db5-A392-69EAD372A4E2}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object', htmlDescription='

Security events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1055, _eaTypeName=60870andDNPSecurityNotificationEd2, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d56d67, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,643 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, _objData=UmlObjectData [id=4300, uuid={240DF754-7E5E-4226-B4F4-F1DDBE6652EB}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object', htmlDescription='

State events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1061, _eaTypeName=60870andDNPNotificationEd2, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@18355a8, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,643 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2, _objData=UmlObjectData [id=4358, uuid={6AA445FA-BC7C-4384-8725-306C37B37564}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,643 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2, _objData=UmlObjectData [id=4360, uuid={60B53F7E-A6F1-449b-8917-E860F3F35ECB}, since=null, name=LastEvent, alias=, stereotype=protocol, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,643 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1254, uuid={60676AFB-06AF-480c-86DC-DDF92723390B}, since=null, name=assocPoolMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number of client/server associations.', htmlDescription='

Maximum number of client/server associations.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,643 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1255, uuid={B21687C2-9C22-4c8f-A435-15A69F7147D6}, since=null, name=assocPoolUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of client/server associations active.', htmlDescription='

Number of client/server associations active.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,643 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1278, uuid={6CA26B83-F728-4e94-9E7E-89E5998C3308}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,643 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=3931, uuid={75069142-E376-4865-9020-9924B1C82527}, since=null, name=CtrlPrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of control actions attempted that did not have the correct privilege.', htmlDescription='

Number of control actions attempted that did not have the correct privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,643 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1262, uuid={44D0F3A5-606C-4650-ABCB-FE16EEE777E3}, since=null, name=gsePubMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number GSE Publications supported.', htmlDescription='

Maximum number GSE Publications supported.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,643 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=2263, uuid={1C2B216E-5A48-41c9-8A95-E49BCC60C316}, since=null, name=gsePubUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of active GSE Publications.', htmlDescription='

Number of active GSE Publications.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,643 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1264, uuid={B2FDE11B-6BA3-4051-B3BD-15152FB16FED}, since=null, name=gseSubMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number of GSE Subscriptions.', htmlDescription='

Maximum number of GSE Subscriptions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,643 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1263, uuid={1842AD96-E339-455f-9BC0-7F98C8F31CEC}, since=null, name=gseSubUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of active GSE Subscriptions.', htmlDescription='

Number of active GSE Subscriptions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,644 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=3709, uuid={014B3324-A84F-455f-957B-1420E50D5C59}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,644 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=3930, uuid={F5A04750-F784-4c0c-AB12-2298DE62BB99}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,644 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1271, uuid={A10D2F0C-3A4C-4aa4-B832-655CEBF8F43C}, since=null, name=RemoteEstAssocCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count of the number of currently active associations that were established through the ACSI associate response.', htmlDescription='

Count of the number of currently active associations that were established through the ACSI associate response.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,644 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=3932, uuid={7EF57F32-F44A-4126-9201-8EFAD41F12D4}, since=null, name=AcsCtlFail, alias=, stereotype=security, visibility=public, txtDescription='Number of access control failures detected (i.e., when a data object that the client wanted to access exists in the server, but based on the access view of the association with that client, an access to the data object was refused).', htmlDescription='

Number of access control failures detected (i.e., when a data object that the client wanted to access exists in the server, but based on the access view of the association with that client, an access to the data object was refused).

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,644 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1282, uuid={2E06924F-F7EB-44a7-A1D2-2428322A0892}, since=null, name=svPubMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number SV publications supported.', htmlDescription='

Maximum number SV publications supported.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,644 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1281, uuid={D6CCDFE9-6558-4cd0-B508-8BA15852D950}, since=null, name=svPubUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of active SV publications.', htmlDescription='

Number of active SV publications.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,644 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1284, uuid={769A7A31-DA16-43a0-A340-14FF723B8636}, since=null, name=svSubMax, alias=, stereotype=protocol, visibility=public, txtDescription='Maximum number SV subscriptions supported.', htmlDescription='

Maximum number SV subscriptions supported.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,644 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ACSI::ACSISummary, _objData=UmlObjectData [id=1283, uuid={40270792-85F3-4361-850B-A5F29E1B75C0}, since=null, name=svSubUsed, alias=, stereotype=protocol, visibility=public, txtDescription='Number of active SV subscriptions.', htmlDescription='

Number of active SV subscriptions.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,644 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=4122, uuid={B070617B-7900-42b1-8DA7-F591BA2099FA}, since=null, name=ErrorRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of error PDU that have been received including: +- Confirmed-ErrorPDU (only for client) +- Cancel-ErrorPDU (only for client) +- Initiate-ErrorPDU +- Conclude-ErrorPDU.', htmlDescription='

Number of error PDU that have been received including:

  • Confirmed-ErrorPDU (only for client)
  • Cancel-ErrorPDU (only for client)
  • Initiate-ErrorPDU
  • Conclude-ErrorPDU.
'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,644 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=4123, uuid={650B0D6F-9766-4bae-9182-5EC830CB64E3}, since=null, name=ErrorTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of error PDU that have been sent including: +- Confirmed-ErrorPDU (only for server) +- Cancel-ErrorPDU (only for server) +- Initiate-ErrorPDU +- Conclude-ErrorPDU.', htmlDescription='

Number of error PDU that have been sent including:

  • Confirmed-ErrorPDU (only for server)
  • Cancel-ErrorPDU (only for server)
  • Initiate-ErrorPDU
  • Conclude-ErrorPDU.
'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,645 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3214, uuid={30ED064F-399A-4e3a-97D2-D106F082CF4F}, since=null, name=InfoRptRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of MMS Information Reports that have been received.', htmlDescription='

Number of MMS Information Reports that have been received.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,645 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=4120, uuid={CEC51410-D5D9-4150-B1C4-AA691F453D23}, since=null, name=InfoRptTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of MMS Information Reports that have been sent.', htmlDescription='

Number of MMS Information Reports that have been sent.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,645 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3969, uuid={94722C63-A68B-4460-A0BA-93F19272E206}, since=null, name=MisCmdAckCnt, alias=, stereotype=security, visibility=public, txtDescription='Provides an attribute that indicates the count of the number of MMS request that have not been acknowledged.', htmlDescription='

Provides an attribute that indicates the count of the number of MMS request that have not been acknowledged.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,645 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3414, uuid={8F4B6AF1-5A4A-47a1-A365-8963A1FAE78F}, since=null, name=MMSProExchTime, alias=, stereotype=performance, visibility=public, txtDescription='MMS Profile exchange duration (seconds). MMS profile is meant as Logical Devices, Logical Nodes and Dataset definition are exchanged.', htmlDescription='

MMS Profile exchange duration (seconds). MMS profile is meant as Logical Devices, Logical Nodes and Dataset definition are exchanged.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,645 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3211, uuid={6C0EA55B-1ACA-4a3a-9068-E9C2CEC96B9D}, since=null, name=RejectRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of RejectPDU received.', htmlDescription='

Number of RejectPDU received.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,645 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3212, uuid={C8554D1E-C163-4286-96BB-E26046672513}, since=null, name=RejectTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of RejectPDU sent.', htmlDescription='

Number of RejectPDU sent.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,645 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3208, uuid={C94BBBC3-1104-42b0-B156-E80FE61CBDB8}, since=null, name=ReqRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of request PDU that have been received including: +- Confirmed-RequestPDU (only for server) +- Cancel-RequestPDU (only for server) +- Initiate-RequestPDU +- Conclude-RequestPDU.', htmlDescription='

Number of request PDU that have been received including:

  • Confirmed-RequestPDU (only for server)
  • Cancel-RequestPDU (only for server)
  • Initiate-RequestPDU
  • Conclude-RequestPDU.
'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,645 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3206, uuid={023D9D84-38BC-4c86-B9CC-78085AC2F869}, since=null, name=ReqTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of request PDU that have been sent including: +- Confirmed-RequestPDU (only for client) +- Cancel-RequestPDU (only for client) +- Initiate-RequestPDU +- Conclude-RequestPDU.', htmlDescription='

Number of request PDU that have been sent including:

  • Confirmed-RequestPDU (only for client)
  • Cancel-RequestPDU (only for client)
  • Initiate-RequestPDU
  • Conclude-RequestPDU.
'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,645 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3210, uuid={B07FEDC7-72A1-43b4-9CA9-AEDC8CE77EAF}, since=null, name=RespRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of response PDU that have been received including: +- Confirmed-ResponsePDU (only for client) +- Cancel-ResponsePDU (only for client) +- Initiate-ResponsePDU +- Conclude-ResponsePDU +.', htmlDescription='

Number of response PDU that have been received including:

  • Confirmed-ResponsePDU (only for client)
  • Cancel-ResponsePDU (only for client)
  • Initiate-ResponsePDU
  • Conclude-ResponsePDU

.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,645 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3209, uuid={06689B60-CBF2-4d45-8B5A-FB998997F62F}, since=null, name=RespTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of response PDU that have been sent including: +- Confirmed-ResponsePDU (only for server) +- Cancel-ResponsePDU (only for server) +- Initiate-ResponsePDU +- Conclude-ResponsePDU..', htmlDescription='

Number of response PDU that have been sent including:

  • Confirmed-ResponsePDU (only for server)
  • Cancel-ResponsePDU (only for server)
  • Initiate-ResponsePDU
  • Conclude-ResponsePDU..
'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,646 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProtocolInfo, _objData=UmlObjectData [id=3935, uuid={1F695097-A4ED-4e85-94FE-44B50CFE99F1}, since=null, name=SessKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of session key negotiations that failed.', htmlDescription='

Number of session key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,646 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3918, uuid={7DB85E2A-0EB8-4226-BEBB-924AB496EB36}, since=null, name=AProfileDecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted within A-Profile session.', htmlDescription='

Number PDUs received that could not be decrypted within A-Profile session.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,646 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3938, uuid={A3E432FD-BDD0-4ccf-9233-0A226162B425}, since=null, name=AuthFail, alias=, stereotype=security, visibility=public, txtDescription='Count of the number of authorization failures.', htmlDescription='

Count of the number of authorization failures.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,646 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3245, uuid={D1866C6F-051F-404e-9A2B-AC1D6D44D3FC}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,646 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2831, uuid={2F166DD9-DE35-44b6-91DE-78EA3A9D0652}, since=null, name=ConnFailInCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of incoming Initiate-requests that have been refused.', htmlDescription='

Number of incoming Initiate-requests that have been refused.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,646 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2832, uuid={BA3D3302-5D14-40f7-9AA3-145CCB5F1361}, since=null, name=ConnFailOutCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of outgoing Initiate-requests that have been refused.', htmlDescription='

Number of outgoing Initiate-requests that have been refused.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,646 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3936, uuid={86BF3330-EB9C-4633-AB27-D7612CE8D05C}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted.', htmlDescription='

Number PDUs received that could not be decrypted.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,647 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3710, uuid={0163C656-8AA1-4c67-82E4-258002A53DDE}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,648 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2803, uuid={DEAB3F8B-E3E4-4664-B8B6-2D0C07019F7B}, since=null, name=MMS, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed MMS information can be obtained for each connection.', htmlDescription='

Provides a table through which more detailed MMS information can be obtained for each connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=693, _eaTypeName=MMSAssociation, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3884b2, 3_taggedValues{mibPrefix=mMS, objectIdentity=mMSMMSEntry, Version=0}]. +2024-09-08 08:26:30,648 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3915, uuid={294CE46B-D0B5-49f5-BF02-E0988430AD45}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,648 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2810, uuid={22C7C42F-8D14-493c-A2EA-CCD76245D0BE}, since=null, name=ProviderDesc, alias=, stereotype=identity, visibility=public, txtDescription='Description of provider.', htmlDescription='

Description of provider.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,648 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=2811, uuid={D38418EB-A105-4a60-8D61-BB360D9237B5}, since=null, name=ProviderName, alias=, stereotype=identity, visibility=public, txtDescription='Name of the provider.', htmlDescription='

Name of the provider.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,648 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3614, uuid={A048CDB1-2C04-4ec3-B2B0-2F9ACEE80E4F}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=920, _eaTypeName=MMSSecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1275dab, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,648 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=4030, uuid={354E6408-AAF1-42b2-B717-205A592C81BE}, since=null, name=SessionEstablishmentRate, alias=, stereotype=performance, visibility=public, txtDescription='The number of times any Association has been restablished after a disconnection within 15 minutes.', htmlDescription='

The number of times any Association has been restablished after a disconnection within 15 minutes.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,648 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=4031, uuid={F68354BD-DA88-4aca-B25F-9C06F7BEFBB9}, since=null, name=SessionRestartCnt, alias=, stereotype=security, visibility=public, txtDescription='Provides an attribute that indicates the count of the number of times the session has been restablished.', htmlDescription='

Provides an attribute that indicates the count of the number of times the session has been restablished.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,649 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3613, uuid={0233C10F-B173-4f99-A4E9-A79E7500E3B0}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object.', htmlDescription='

State events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=921, _eaTypeName=MMSNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1832929, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,649 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3919, uuid={575C57A8-200D-4db3-B297-AE2635C01BC3}, since=null, name=TProfileDecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number PDUs received that could not be decrypted within T-Profile session.', htmlDescription='

Number PDUs received that could not be decrypted within T-Profile session.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,649 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3921, uuid={D87795A0-A0B4-4126-9015-DBEBDD79CA50}, since=null, name=TProfileSessKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of session key negotiations that failed. This applies only to T-Profile.', htmlDescription='

Number of session key negotiations that failed. This applies only to T-Profile.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,649 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSProvider, _objData=UmlObjectData [id=3975, uuid={5C2EA464-4FB4-4413-90B5-E3451373A966}, since=null, name=UpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations that failed.', htmlDescription='

Number of update key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,649 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2820, uuid={3D4B3729-146B-4ed2-976D-D539FFAAAE40}, since=null, name=Active, alias=, stereotype=protocol, visibility=public, txtDescription='True if association is in use.', htmlDescription='

True if association is in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,649 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3727, uuid={9E3D1B59-980F-4217-B141-1C353C1D4E72}, since=null, name=AssociationId, alias=, stereotype=index, visibility=public, txtDescription='Id of the association.', htmlDescription='

Id of the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,649 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=4119, uuid={8717A248-6228-4974-9285-1B96BBEDF420}, since=null, name=Client, alias=, stereotype=protocol, visibility=public, txtDescription='True if role is client, false if role is server', htmlDescription='

True if role is client, false if role is server

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@756e4d, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,650 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3246, uuid={2C472C21-D2BB-4a4b-8D93-5C0E3346AA95}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,650 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3939, uuid={EBEAECC3-8BE4-4469-B891-4898C2954EE5}, since=null, name=HndShTime, alias=, stereotype=performance, visibility=public, txtDescription='Duration of the MMS session handshake. This apply to the sender only.', htmlDescription='

Duration of the MMS session handshake. This apply to the sender only.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,650 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2844, uuid={C34BBC7F-ACC5-4172-B430-081B10B49819}, since=null, name=RemoteEstAssos, alias=, stereotype=protocol, visibility=public, txtDescription='True if the association was established due to an incoming Initiate-Request.', htmlDescription='

True if the association was established due to an incoming Initiate-Request.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@756e4d, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,650 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2876, uuid={BF20C38C-E4DE-439e-A7C3-2D9FCB7CA1C2}, since=null, name=RemoteIP, alias=, stereotype=protocol, visibility=public, txtDescription='Remote entity IP network address.', htmlDescription='

Remote entity IP network address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-08 08:26:30,650 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3692, uuid={5EA2A0D0-6DA8-427e-ADEB-2CC19FDBB143}, since=null, name=RemoteIPAddressType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,650 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2873, uuid={14DA2F03-EFD1-4b98-A66F-EFD6046F1025}, since=null, name=RemotePSEL, alias=, stereotype=protocol, visibility=public, txtDescription='Remote entity presentation selector.', htmlDescription='

Remote entity presentation selector.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=782, _eaTypeName=Selector, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@82f6ef, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-08 08:26:30,650 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2874, uuid={C4E19558-A5AA-43ce-A203-6E7BACDD96C7}, since=null, name=RemoteSSEL, alias=, stereotype=protocol, visibility=public, txtDescription='Remote entity session selector.', htmlDescription='

Remote entity session selector.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=782, _eaTypeName=Selector, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@82f6ef, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-08 08:26:30,650 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=2875, uuid={C5BC70EE-7E84-4822-95B3-1EA00D57E252}, since=null, name=RemoteTSEL, alias=, stereotype=protocol, visibility=public, txtDescription='Remote entity transport selector.', htmlDescription='

Remote entity transport selector.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=782, _eaTypeName=Selector, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@82f6ef, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-08 08:26:30,650 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3972, uuid={47D3343F-E927-48ec-8558-54CC13AEC30E}, since=null, name=ReportPer100Seconds, alias=, stereotype=performance, visibility=public, txtDescription='Number of Reports received/transmitted during the last 100 seconds.', htmlDescription='

Number of Reports received/transmitted during the last 100 seconds.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,650 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3968, uuid={D1802DDE-FE54-49d6-9EBB-1A5DE0464F3A}, since=null, name=RptReceptionDelay, alias=, stereotype=performance, visibility=public, txtDescription='The time required to receive the last Report. This time is the difference between the reception time and the emission timestamp stored inside the report. If not synchronized this value shall be set to -1.', htmlDescription='

The time required to receive the last Report. This time is the difference between the reception time and the emission timestamp stored inside the report. If not synchronized this value shall be set to -1.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,650 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSAssociation, _objData=UmlObjectData [id=3913, uuid={B94A45CC-7384-41ee-9821-F77D634C675F}, since=null, name=SecurityProfile, alias=, stereotype=protocol, visibility=public, txtDescription='This is the security profile in use for this association (no security, integrity A profile, A+, AE+).', htmlDescription='

This is the security profile in use for this association (no security, integrity A profile, A+, AE+).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1013, _eaTypeName=SecurityProfileType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@153acfe, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,650 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSSecurityNotification, _objData=UmlObjectData [id=3582, uuid={ED76E952-B3FD-4bbd-B4F7-7F695D6C14B6}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of PDUs received that could not be decrypted.', htmlDescription='

Number of PDUs received that could not be decrypted.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,650 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSSecurityNotification, _objData=UmlObjectData [id=4036, uuid={6D84220E-9E6E-4b52-8843-92394244A0F5}, since=null, name=LastEvent, alias=, stereotype=security, visibility=public, txtDescription='Provides the last known event encountered.', htmlDescription='

Provides the last known event encountered.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=960, _eaTypeName=EventType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@ee68d8, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,651 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSSecurityNotification, _objData=UmlObjectData [id=3581, uuid={52A9B9D0-58D5-4d7d-A396-A7788A41EB89}, since=null, name=PrivFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of received PDUs for which action was not taken due to insufficient privilege.', htmlDescription='

Number of received PDUs for which action was not taken due to insufficient privilege.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,651 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSSecurityNotification, _objData=UmlObjectData [id=3584, uuid={4F8B7D7A-78C6-4ac7-A43C-8B06E8D829E0}, since=null, name=UpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations that failed.', htmlDescription='

Number of update key negotiations that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,651 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSNotification, _objData=UmlObjectData [id=3573, uuid={6F0A08FF-024D-4919-99B5-B68C203679AA}, since=null, name=ConnFailInCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of incoming Initiate-requests that have been refused.', htmlDescription='

Number of incoming Initiate-requests that have been refused.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,651 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSNotification, _objData=UmlObjectData [id=3574, uuid={F172E26F-F99A-4ca4-BBF3-4759B78D18F3}, since=null, name=ConnFailOutCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of outgoing Initiate-requests that have been refused.', htmlDescription='

Number of outgoing Initiate-requests that have been refused.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,651 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSNotification, _objData=UmlObjectData [id=3575, uuid={5F493EBC-63E7-480b-B344-66194892E87B}, since=null, name=RejectRxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of reject issued in reception.', htmlDescription='

Number of reject issued in reception.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,651 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MMS::MMSNotification, _objData=UmlObjectData [id=3576, uuid={0D61F583-C436-4314-A1B5-C6FA04940FD7}, since=null, name=RejectTxCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received Reject on transmission.', htmlDescription='

Number of received Reject on transmission.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,651 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVCommon, _objData=UmlObjectData [id=4054, uuid={8F7CBDDF-5309-4c57-A3E5-B0C820FEC605}, since=null, name=GroupUpKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of update key negotiations at KDC that failed.', htmlDescription='

Number of update key negotiations at KDC that failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,651 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVCommon, _objData=UmlObjectData [id=4055, uuid={72C144FE-7138-4153-8C18-0FC5BC1E8998}, since=null, name=KDCAuthFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Count of the number of authorization failures against KDC.', htmlDescription='

Count of the number of authorization failures against KDC.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,651 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVCommon, _objData=UmlObjectData [id=4056, uuid={10AD71AC-8E2C-4afb-88B0-4CAAF7C06C47}, since=null, name=KDCSessionKeyFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Session Key establishment between peer and KDC failed.', htmlDescription='

Session Key establishment between peer and KDC failed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,651 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=4057, uuid={C97C7E95-F1A3-49a6-84CD-F37F54D4DCAA}, since=null, name=CBRef, alias=, stereotype=index, visibility=public, txtDescription='Reference of the GSE/SV Control block being supervised.', htmlDescription='

Reference of the GSE/SV Control block being supervised.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,651 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=4058, uuid={A3300C61-0405-4178-AA24-56139902DFD1}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,651 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=4059, uuid={B346F0EE-81BD-4f02-BD05-3DEB6C966B08}, since=null, name=OutUv, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer underflows detected due to outgoing serial communication.', htmlDescription='

Number of buffer underflows detected due to outgoing serial communication.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,651 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=4366, uuid={10164DB8-AB84-46a3-9325-B0D817803F9A}, since=null, name=APPID, alias=, stereotype=protocol, visibility=public, txtDescription='Application Identifier being expected.', htmlDescription='

Application Identifier being expected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,652 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVPublisherAssociation, _objData=UmlObjectData [id=3829, uuid={F6725CAA-C95B-431e-BCC4-6877D34082A8}, since=null, name=TxPduPerSecond, alias=, stereotype=protocol, visibility=public, txtDescription='Count of the number of SV telegrams sent within a second on the association.', htmlDescription='

Count of the number of SV telegrams sent within a second on the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,652 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4061, uuid={E70C3857-A774-4635-9A52-713A3189C31C}, since=null, name=CBRef, alias=, stereotype=index, visibility=public, txtDescription='Reference of the GSE/SV Control block being supervised.', htmlDescription='

Reference of the GSE/SV Control block being supervised.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,652 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4062, uuid={2E060239-4EB9-4a8a-A7C3-AED6EDA8C5A3}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,652 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4063, uuid={B4825E20-07C1-4cde-94AD-CFE37852AE7F}, since=null, name=InOvCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of buffer overflows detected due to incoming communication. This counter is incremented each time the buffer space is insufficient to receive an incoming message.', htmlDescription='

Number of buffer overflows detected due to incoming communication. This counter is incremented each time the buffer space is insufficient to receive an incoming message.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,652 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4064, uuid={BA2766B5-6FA2-4c9b-85EA-7353D0790FDF}, since=null, name=MessageIntegrityFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number messages that were not using the proper Group Key.', htmlDescription='

Number messages that were not using the proper Group Key.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,652 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4067, uuid={85138267-8516-4911-9D4D-D78674944F2D}, since=null, name=RxPduPerSecond, alias=, stereotype=protocol, visibility=public, txtDescription='Count of the number of SV telegrams received within a second on the association.', htmlDescription='

Count of the number of SV telegrams received within a second on the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=739, _eaTypeName=Floating, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@8b7f67, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,652 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4365, uuid={7955A1E1-9F67-46da-A434-8EA5BA1C0BE2}, since=null, name=APPID, alias=, stereotype=protocol, visibility=public, txtDescription='Application identified being expected.', htmlDescription='

Application identified being expected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,652 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV and GSE common objects::GSEandSVSubscriberAssociation, _objData=UmlObjectData [id=4367, uuid={2B5045AC-99BD-4941-BCD5-36ABDDCAC2FF}, since=null, name=RxAPPID, alias=, stereotype=protocol, visibility=public, txtDescription='Last Application Identifier being received.', htmlDescription='

Last Application Identifier being received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f5e5e3, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,652 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3844, uuid={C24FF010-3527-40b6-A143-3CBD3C95FC45}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,652 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=4052, uuid={4D212643-73E9-4b01-B3E4-1419141F7F5C}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of PDUs received that could not be decrypted', htmlDescription='

Number of PDUs received that could not be decrypted

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,652 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3845, uuid={62E2AB60-AB61-489b-9B09-FC14A0BF4694}, since=null, name=PDUSizeFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of received PDU with wrong size. This is meaningful only for IP telegrams.', htmlDescription='

Number of received PDU with wrong size. This is meaningful only for IP telegrams.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,652 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3846, uuid={A6C46361-5561-43d2-8B67-6DAC7566C062}, since=null, name=PIP, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed SV information can be obtained for each IP publisher connection.', htmlDescription='

Provides a table through which more detailed SV information can be obtained for each IP publisher connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=994, _eaTypeName=SVPublisherAssociationIP, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@132ec19, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}]. +2024-09-08 08:26:30,652 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3847, uuid={1C5E81A0-3007-4221-BBCF-B4538CDCD068}, since=null, name=PL2, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed SV information can be obtained for each L2 (Ethernet) publisher connection.', htmlDescription='

Provides a table through which more detailed SV information can be obtained for each L2 (Ethernet) publisher connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=995, _eaTypeName=SVPublisherAssociationL2, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c4039c, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}]. +2024-09-08 08:26:30,653 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3848, uuid={F24AD27F-DE3D-4d47-BF82-D81306D727FD}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=997, _eaTypeName=SVNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e45eb6, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,653 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3849, uuid={E61DCB59-D671-4e3e-AF63-7A7934A7139B}, since=null, name=SIP, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed SV information can be obtained for each IP subscriber connection.', htmlDescription='

Provides a table through which more detailed SV information can be obtained for each IP subscriber connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=998, _eaTypeName=SVSubcriberAssociationIP, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@19f99ea, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}]. +2024-09-08 08:26:30,653 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVProvider, _objData=UmlObjectData [id=3850, uuid={3A8AA373-DF4D-4203-9E17-D1A556AE4626}, since=null, name=SL2, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed SV information can be obtained for each L2 (Ethernet) subscriber connection.', htmlDescription='

Provides a table through which more detailed SV information can be obtained for each L2 (Ethernet) subscriber connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=999, _eaTypeName=SVSubcriberAssociationL2, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1efef64, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}]. +2024-09-08 08:26:30,653 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVPublisherAssociationIP, _objData=UmlObjectData [id=3817, uuid={3EC59ACA-14AB-4adf-823D-4EF3DBBA4715}, since=null, name=DestIpAddr, alias=, stereotype=protocol, visibility=public, txtDescription='Destination IP address.', htmlDescription='

Destination IP address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-08 08:26:30,653 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVPublisherAssociationIP, _objData=UmlObjectData [id=3818, uuid={3B41797D-66B7-473b-A47C-92A5B0C6DB2C}, since=null, name=DestIpAddrType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,653 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVPublisherAssociationL2, _objData=UmlObjectData [id=3819, uuid={2E77B17F-D224-4764-9C29-36CD379797D7}, since=null, name=DestMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f4468b, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-08 08:26:30,653 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVSubcriberAssociationIP, _objData=UmlObjectData [id=3823, uuid={CF21D44F-A555-48cc-99A1-D49E20097B5D}, since=null, name=SrcIpAddr, alias=, stereotype=protocol, visibility=public, txtDescription='Source IP address.', htmlDescription='

Source IP address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-08 08:26:30,653 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVSubcriberAssociationIP, _objData=UmlObjectData [id=3824, uuid={3AB68377-764F-4314-851D-FEE4B40FC99E}, since=null, name=SrcIpAddrType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,653 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=SV::SVSubcriberAssociationL2, _objData=UmlObjectData [id=3825, uuid={A6F5F486-2B40-4620-ADA1-3CBA7408C0D8}, since=null, name=SrcMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f4468b, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-08 08:26:30,653 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=3750, uuid={AFDD17DA-6B2F-4bc7-8F89-0E63A9B7D1D7}, since=null, name=ConfRevMis, alias=, stereotype=protocol, visibility=public, txtDescription='True indicates that the expected configuration revision did not match the received number.', htmlDescription='

True indicates that the expected configuration revision did not match the received number.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@756e4d, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,653 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=3755, uuid={2E11DB8F-06FC-485f-8C56-703E601D8A60}, since=null, name=NdsComm, alias=, stereotype=protocol, visibility=public, txtDescription='Duplicated Message received', htmlDescription='

Duplicated Message received

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@756e4d, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,653 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4368, uuid={9075FAD9-2CE1-4e5d-907F-DBD0B4B1CC32}, since=null, name=ConfRev, alias=, stereotype=protocol, visibility=public, txtDescription='Last configuration Revision being received.', htmlDescription='

Last configuration Revision being received.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,653 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4369, uuid={E4803687-6245-40fd-AB97-A5A553A34C59}, since=null, name=RxConfRev, alias=, stereotype=protocol, visibility=public, txtDescription='True indicates that the expected configuration revision did not match the received number.', htmlDescription='

True indicates that the expected configuration revision did not match the received number.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,653 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=3758, uuid={EBC5C199-473E-4859-B0FE-DD1C08CC93AF}, since=null, name=TalExpCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Count of the received TAL expirations that have been detected.', htmlDescription='

Count of the received TAL expirations that have been detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,654 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4370, uuid={09E69AF6-2C2B-46e9-B274-E5220B53D94D}, since=null, name=OosErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of times out of sequence of GOOSE has been observed.', htmlDescription='

Number of times out of sequence of GOOSE has been observed.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,654 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4371, uuid={5B152C15-4AC4-421a-87EB-F81484BD2524}, since=null, name=DupMsgRx, alias=, stereotype=protocol, visibility=public, txtDescription='If true, the subscription needs commissioning, i.e., the received message does not conform to the current subscription configuration (either the 'dataSetRef' is wrong, the data set members, the configuration revision number, or no subscription is configured at all).', htmlDescription='

If true, the subscription needs commissioning, i.e., the received message does not conform to the current subscription configuration (either the 'dataSetRef' is wrong, the data set members, the configuration revision number, or no subscription is configured at all).

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,654 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4372, uuid={313447D4-3710-47a8-85FF-DAA9316F8720}, since=null, name=DatSet, alias=, stereotype=protocol, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,654 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4373, uuid={8E3C588A-BEC3-454f-861F-712BADFC92AA}, since=null, name=RxDatSet, alias=, stereotype=protocol, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f5e5e3, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,654 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4374, uuid={C304ABDA-E4BA-4cfc-BAD9-17425F5A0611}, since=null, name=GoID, alias=, stereotype=protocol, visibility=public, txtDescription='GOOSE Identifier being expected.', htmlDescription='

GOOSE Identifier being expected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,654 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4375, uuid={985D635D-D095-4282-B40B-8D3F15CDC152}, since=null, name=RxGoID, alias=, stereotype=protocol, visibility=public, txtDescription='Last GOOSE Identifier being received.', htmlDescription='

Last GOOSE Identifier being received.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=860, _eaTypeName=CharStringTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f5e5e3, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,654 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4376, uuid={3BC29513-E13B-40a1-A86D-4B3406FC2CD1}, since=null, name=StNum, alias=, stereotype=protocol, visibility=public, txtDescription='StNum being received from last accepted GOOSE message.', htmlDescription='

StNum being received from last accepted GOOSE message.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,654 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4377, uuid={699EF357-D4F5-4445-8F55-446FF895C089}, since=null, name=SqNum, alias=, stereotype=protocol, visibility=public, txtDescription='SqNum being received from last accepted GOOSE message.', htmlDescription='

SqNum being received from last accepted GOOSE message.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,654 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4378, uuid={778EF329-63E8-4a88-A172-D2DAD54D972A}, since=null, name=RejectStNum, alias=, stereotype=protocol, visibility=public, txtDescription='Last StNum being rejected.', htmlDescription='

Last StNum being rejected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,654 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4379, uuid={A699C155-79DE-4187-BDF5-AFD122DAD7CA}, since=null, name=RejectSqNum, alias=, stereotype=protocol, visibility=public, txtDescription='Last SqNum being rejected.', htmlDescription='

Last SqNum being rejected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,654 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubscriberAssociation, _objData=UmlObjectData [id=4494, uuid={98542797-3D0F-4f54-96D7-B2BEBEAF605A}, since=null, name=RxT, alias=, stereotype=protocol, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@fc185, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,655 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3243, uuid={71555478-FCAD-4dae-B530-6956D1B5D475}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,655 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=4053, uuid={A432D351-022A-4b49-AA3D-61CBB91067FC}, since=null, name=DecryptFailCnt, alias=, stereotype=security, visibility=public, txtDescription='Number of PDUs received that could not be decrypted', htmlDescription='

Number of PDUs received that could not be decrypted

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,656 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3773, uuid={4B58CE58-88E3-4e07-9FF3-FE0181F95942}, since=null, name=InErrCnt, alias=, stereotype=protocol, visibility=public, txtDescription='Number of PDUs received that were in error due to malformed content, parity errors or configuration mismatch.', htmlDescription='

Number of PDUs received that were in error due to malformed content, parity errors or configuration mismatch.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,656 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=4121, uuid={D727F0F0-5C88-4fc4-83C5-D69614BE4ED8}, since=null, name=InUnexpectedMulticast, alias=, stereotype=protocol, visibility=public, txtDescription='Count of unexpected multicast received PDUs. This apply to GOOSE only.', htmlDescription='

Count of unexpected multicast received PDUs. This apply to GOOSE only.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,656 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3744, uuid={8BC8E8B9-0BA6-4277-B1B1-23F48CD0FD30}, since=null, name=PIP, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed GSE information can be obtained for each IP publisher connection.', htmlDescription='

Provides a table through which more detailed GSE information can be obtained for each IP publisher connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=796, _eaTypeName=GSEPublisherAssociationIP, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@6fa38a, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}]. +2024-09-08 08:26:30,656 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3745, uuid={10373ECE-DF59-4995-BA92-240A3CC2D94B}, since=null, name=PL2, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed GSE information can be obtained for each L2 (Ethernet) publisher connection.', htmlDescription='

Provides a table through which more detailed GSE information can be obtained for each L2 (Ethernet) publisher connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=984, _eaTypeName=GSEPublisherAssociationL2, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@a3ffec, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}]. +2024-09-08 08:26:30,656 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3618, uuid={BF431EAB-1B49-4c5a-8BC3-171FED573957}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=930, _eaTypeName=GSENotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1caeb3e, 1_taggedValues{Version=1}]. +2024-09-08 08:26:30,656 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3046, uuid={AA8FC433-0ACC-4dcf-9B1C-59469C28FCA5}, since=null, name=SIP, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed GSE information can be obtained for each IP subscriber connection.', htmlDescription='

Provides a table through which more detailed GSE information can be obtained for each IP subscriber connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=979, _eaTypeName=GSESubcriberAssociationIP, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1e88b3c, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}]. +2024-09-08 08:26:30,656 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEProvider, _objData=UmlObjectData [id=3746, uuid={F6A461DF-31BD-4546-8B62-BE2A79D53F41}, since=null, name=SL2, alias=, stereotype=table, visibility=public, txtDescription='Provides a table through which more detailed GSE information can be obtained for each L2 (Ethernet) subscriber connection.', htmlDescription='

Provides a table through which more detailed GSE information can be obtained for each L2 (Ethernet) subscriber connection.

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=977, _eaTypeName=GSESubcriberAssociationL2, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d80b78, 3_taggedValues{mibPrefix=sVE, objectIdentity=sVSVEntry, Version=1}]. +2024-09-08 08:26:30,656 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEPublisherAssociationIP, _objData=UmlObjectData [id=3803, uuid={9C513452-9437-4849-894C-B2C33952D4F0}, since=null, name=DestIpAddr, alias=, stereotype=protocol, visibility=public, txtDescription='Destination IP address.', htmlDescription='

Destination IP address.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-08 08:26:30,656 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEPublisherAssociationIP, _objData=UmlObjectData [id=3802, uuid={03D1AF7D-F2B5-425c-8FD2-63B09E3887F9}, since=null, name=DestIpAddrType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,656 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEPublisherAssociationL2, _objData=UmlObjectData [id=3801, uuid={53A15D60-889F-4c5a-BCF1-89AF1D539B97}, since=null, name=DestMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f4468b, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-08 08:26:30,656 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSEPublisherAssociationL2, _objData=UmlObjectData [id=4362, uuid={1EF8C591-A06A-43cb-8FBF-95E679E109F8}, since=null, name=SrcMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f4468b, 2_taggedValues{mibIndex=no, Version=1}]. +2024-09-08 08:26:30,656 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubcriberAssociationIP, _objData=UmlObjectData [id=3740, uuid={FFD24620-C094-400d-8BD1-F48524198222}, since=null, name=SrcIpAddr, alias=, stereotype=protocol, visibility=public, txtDescription='Source IP address. .', htmlDescription='

Source IP address. .

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=784, _eaTypeName=InetAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@39f31e, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-08 08:26:30,656 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubcriberAssociationIP, _objData=UmlObjectData [id=3739, uuid={B418786B-EB08-4581-8037-B7C3A6E0311A}, since=null, name=SrcIpAddrType, alias=, stereotype=protocol, visibility=public, txtDescription='Type of IP address in use.', htmlDescription='

Type of IP address in use.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=956, _eaTypeName=InetAddressType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ceabc1, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,656 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubcriberAssociationL2, _objData=UmlObjectData [id=3742, uuid={556B251D-88A4-4ac8-855E-D537776F059A}, since=null, name=SrcMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP Profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP Profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f4468b, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-08 08:26:30,656 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GSE::GSESubcriberAssociationL2, _objData=UmlObjectData [id=4361, uuid={5024F7E1-FEC6-4125-AF1E-FFC7C29B18D8}, since=null, name=DstMacAddr, alias=, stereotype=protocol, visibility=public, txtDescription='MAC Address. Will be a zero value if IP Profile is in use for the association.', htmlDescription='

MAC Address. Will be a zero value if IP Profile is in use for the association.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=786, _eaTypeName=MacAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@f4468b, 2_taggedValues{mibIndex=no, Version=1}]. +2024-09-08 08:26:30,657 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=2651, uuid={219E72A9-5B41-4365-A90E-491097F96C10}, since=null, name=clockTamperDetected, alias=, stereotype=security, visibility=public, txtDescription='Timestamp of when a tamper of a clock has been detected', htmlDescription='

Timestamp of when a tamper of a clock has been detected

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@fc185, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,657 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=2656, uuid={C95F5CA0-6663-41c7-BAE9-BB32F924F8F1}, since=null, name=LastClockHoldover, alias=, stereotype=health, visibility=public, txtDescription='Indicates the timestamp at which the last Holdover was detected.', htmlDescription='

Indicates the timestamp at which the last Holdover was detected.

'], _isConst=true, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@fc185, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,657 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=2657, uuid={FF50E5F4-F0FB-48b1-B605-B025F27CA0DD}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='When written True, the statistics of clockTamperDetected and LastClockHoldover are set back to a value of zero. The values in the clocks table are not impacted by this reset.', htmlDescription='

When written True, the statistics of clockTamperDetected and LastClockHoldover are set back to a value of zero. The values in the clocks table are not impacted by this reset.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,657 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=2650, uuid={106DFE8D-727B-42bf-84CA-4C8E484CB760}, since=null, name=Clocks, alias=, stereotype=table, visibility=public, txtDescription='Table of information regarding the clock sources that are in use.', htmlDescription='

Table of information regarding the clock sources that are in use.

'], _isConst=false, _isStatic=false, _multiplicity=[0..n], _initValue=, _eaTypeId=608, _eaTypeName=ClockEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1ce4f0a, 3_taggedValues{mibPrefix=cLK, objectIdentity=cLKclockEntry, Version=0}]. +2024-09-08 08:26:30,657 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::Clock, _objData=UmlObjectData [id=3631, uuid={31D800F0-35C2-4312-95B7-E3A890982D86}, since=null, name=SecurityNotification, alias=, stereotype=trap, visibility=public, txtDescription='Security events notification object.', htmlDescription='

Security events notification object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=944, _eaTypeName=SecurityNotification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3a8624, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,657 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2646, uuid={E98C8059-D343-41c5-A9FD-C45F4FA62052}, since=null, name=ClockAccuracy, alias=, stereotype=health, visibility=public, txtDescription='Reports the current expected accuracy of this clock in nanoseconds. A value of -1 indicates that the accuracy is unknown or estimated to be larger than 2147483647 ns.', htmlDescription='

Reports the current expected accuracy of this clock in nanoseconds. A value of -1 indicates that the accuracy is unknown or estimated to be larger than 2147483647 ns.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,657 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=3085, uuid={50EFFF08-CB85-4033-8EB9-8FC29AACD6DC}, since=null, name=ClockIndex, alias=, stereotype=index, visibility=public, txtDescription='Clock Index', htmlDescription='

Clock Index

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-08 08:26:30,657 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=3729, uuid={E0CAC256-AD0A-4515-9F48-63353DA71841}, since=null, name=ClockIssue, alias=, stereotype=performance, visibility=public, txtDescription='Reports the presence of any clock issue.', htmlDescription='

Reports the presence of any clock issue.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=776, _eaTypeName=TimSyncIssueType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1933fd1, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,657 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2649, uuid={1591A4AF-7AD8-4720-B04E-7C389735450F}, since=null, name=ClockTamperDetected, alias=, stereotype=security, visibility=public, txtDescription='Clock tamper have been detected.', htmlDescription='

Clock tamper have been detected.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@756e4d, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,657 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2645, uuid={F98377B8-808A-4705-81F9-99E14B733B97}, since=null, name=TmSrc, alias=, stereotype=performance, visibility=public, txtDescription='Reports the clock sync method.', htmlDescription='

Reports the clock sync method.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=777, _eaTypeName=TimSyncSrcType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2d45ba, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,657 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2655, uuid={EFB862ED-119C-4441-AD7D-3F382A7C0C92}, since=null, name=HoldOver, alias=, stereotype=health, visibility=public, txtDescription='The Holdover flag shall be set True whenever the Time Traceable flag is True and the IED is not receiving a qualified signal from a recognized standard time source. It shall be set False otherwise. Therefore, this flag gives an immediate indication of loss of the time reference signal.', htmlDescription='

The Holdover flag shall be set True whenever the Time Traceable flag is True and the IED is not receiving a qualified signal from a recognized standard time source. It shall be set False otherwise. Therefore, this flag gives an immediate indication of loss of the time reference signal.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@756e4d, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,657 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2648, uuid={A8CB6533-B21C-4986-941B-F8F32BD739E3}, since=null, name=LastSyncOffset, alias=, stereotype=health, visibility=public, txtDescription='Reports the time offset (in seconds) computed from the last qualified synchronization signal received by this clock. This value is used by the clock servo to gradually adjust the clock.', htmlDescription='

Reports the time offset (in seconds) computed from the last qualified synchronization signal received by this clock. This value is used by the clock servo to gradually adjust the clock.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=740, _eaTypeName=FloatingTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c7a4e4, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,657 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2653, uuid={AAB46675-D113-417c-8AB8-E4E268247EF8}, since=null, name=TimeSourceAvailable, alias=, stereotype=health, visibility=public, txtDescription='The Time Source Available flag shall be set True whenever the IED is receiving a qualified signal from a recognized standard time source. If it loses this signal, then after an appropriate period (during which the additional holdover uncertainty is not a significant impairment to performance), the Time Source Available flag shall be set False. The duration of the period after loss of the time signal and negation of the Time Source Available flag depends on the quality of the holdover oscillator and the required time quality, and may be a configurable IED parameter. +This flag may not immediately be set False, because momentary loss of the time signal may not adversely affect IED time quality. The Holdover flag provides an immediate indication of this condition.', htmlDescription='

The Time Source Available flag shall be set True whenever the IED is receiving a qualified signal from a recognized standard time source. If it loses this signal, then after an appropriate period (during which the additional holdover uncertainty is not a significant impairment to performance), the Time Source Available flag shall be set False. The duration of the period after loss of the time signal and negation of the Time Source Available flag depends on the quality of the holdover oscillator and the required time quality, and may be a configurable IED parameter.

This flag may not immediately be set False, because momentary loss of the time signal may not adversely affect IED time quality. The Holdover flag provides an immediate indication of this condition.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@756e4d, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,657 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::ClockEntry, _objData=UmlObjectData [id=2652, uuid={ECD9FD6B-5168-426a-BF8F-D2B9B57110B0}, since=null, name=TimeTraceable, alias=, stereotype=health, visibility=public, txtDescription='The Time Traceable flag shall be set False before the IED has received and qualified a signal from a recognized standard time source. Once it has locked to the recognized standard time source and stabilized, the Time Traceable flag shall be set True. The Time Traceable flag shall not be set False again, so long as the IED can estimate its holdover uncertainty. If at some point, perhaps due to an extended holdover interval, the IED no longer can estimate its holdover uncertainty, then the Time Traceable flag shall be set False.', htmlDescription='

The Time Traceable flag shall be set False before the IED has received and qualified a signal from a recognized standard time source. Once it has locked to the recognized standard time source and stabilized, the Time Traceable flag shall be set True. The Time Traceable flag shall not be set False again, so long as the IED can estimate its holdover uncertainty. If at some point, perhaps due to an extended holdover interval, the IED no longer can estimate its holdover uncertainty, then the Time Traceable flag shall be set False.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=760, _eaTypeName=BooleanValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@756e4d, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,657 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Clocks Agent::SecurityNotification, _objData=UmlObjectData [id=3632, uuid={04B87A68-22D2-4882-A4A5-D62CF502F233}, since=null, name=clockTamperDetected, alias=, stereotype=security, visibility=public, txtDescription='Timestamp of when a tamper of a clock has been detected', htmlDescription='

Timestamp of when a tamper of a clock has been detected

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=804, _eaTypeName=Timestamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@fc185, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,657 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3319, uuid={6FD1D092-9094-4f03-8B24-7DCD8E2358AD}, since=null, name=ID, alias=, stereotype=index, visibility=public, txtDescription='Interface number', htmlDescription='

Interface number

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=974, _eaTypeName=EntityIndex, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@c87b21, 2_taggedValues{mibIndex=yes, Version=0}]. +2024-09-08 08:26:30,657 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3320, uuid={6EB13B61-C6AA-4e12-9BC2-177D8DB73982}, since=null, name=Descr, alias=, stereotype=identity, visibility=public, txtDescription='Description of the CPU.', htmlDescription='

Description of the CPU.

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=764, _eaTypeName=CharString, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@3b1d11, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,657 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3415, uuid={2252ED03-8326-4d40-957F-9921BA0D74BE}, since=null, name=IntType, alias=, stereotype=identity, visibility=public, txtDescription='Interface type (Wired or Wireless)', htmlDescription='

Interface type (Wired or Wireless)

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=866, _eaTypeName=IntType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@1629756, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,657 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3323, uuid={5B1D4273-C6BF-44d8-93A8-EE46A1AEBA45}, since=null, name=Operable, alias=, stereotype=health, visibility=public, txtDescription='Indicates that CPU is operable (it can be either online or offline)', htmlDescription='

Indicates that CPU is operable (it can be either online or offline)

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,657 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3318, uuid={C6769525-A8F5-4599-84AB-E17EB20458CD}, since=null, name=Online, alias=, stereotype=health, visibility=public, txtDescription='Indicate that CPU is online and active', htmlDescription='

Indicate that CPU is online and active

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,657 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3322, uuid={CF6212A6-1358-4cd8-AC00-7BE9C09A5BFE}, since=null, name=Faulty, alias=, stereotype=health, visibility=public, txtDescription='CPU generated errors', htmlDescription='

CPU generated errors

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,658 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interface, _objData=UmlObjectData [id=3321, uuid={AE8F0410-796C-42ec-BA19-BA8D3B558380}, since=null, name=CntRs, alias=, stereotype=setvalue, visibility=public, txtDescription='Counters reset control object.', htmlDescription='

Counters reset control object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=774, _eaTypeName=CntRs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@e9a829, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,658 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3652, uuid={F38DE40F-DC22-441d-BD42-E3990926DFB1}, since=null, name=serAvail, alias=, stereotype=performance, visibility=public, txtDescription='Number of serial interfaces installed on the device', htmlDescription='

Number of serial interfaces installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,658 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3657, uuid={4E66DA97-6D8F-450a-A00B-ADE0FEE47CE4}, since=null, name=serActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of serial interfaces active on the device', htmlDescription='

Number of serial interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,658 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3662, uuid={6F91E49F-3A68-4208-A29A-512F23CC10B0}, since=null, name=serFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing serial Interfaces on the device', htmlDescription='

Number of failing serial Interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,658 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3653, uuid={B23510B0-5513-4f80-9792-63DED4A16F44}, since=null, name=ethAvail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of ethernet Interfaces installed on the device', htmlDescription='

Number of ethernet Interfaces installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,658 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3658, uuid={6B6B3BCD-0AE0-4c6f-9FB3-472BEC079B13}, since=null, name=ethActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of ethernet interfaces active on the device', htmlDescription='

Number of ethernet interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,658 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3663, uuid={536CCD9F-B77E-465a-8898-FCD7644820AD}, since=null, name=ethFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing ethernet interfaces on the device', htmlDescription='

Number of failing ethernet interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,658 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3654, uuid={1C804DCB-08CB-41f0-B6F7-384A70C8C3C8}, since=null, name=algAvail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of analogue Interfaces installed on the device', htmlDescription='

Number of analogue Interfaces installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,658 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3659, uuid={29FE15BB-45B5-47c2-A74E-3EF574575434}, since=null, name=algActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of analogue interfaces Active on the device', htmlDescription='

Number of analogue interfaces Active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,658 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3664, uuid={54797821-2674-4526-B44A-9F87D01A6991}, since=null, name=algFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing analogue interfaces on the device', htmlDescription='

Number of failing analogue interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,658 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3655, uuid={74214291-7A17-4b83-AA3C-A305991D037A}, since=null, name=keyAvail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of keyboard Interface installed on the device', htmlDescription='

Number of keyboard Interface installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,658 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3660, uuid={AB6E018D-82C3-4524-8D58-58164F10E51B}, since=null, name=keyActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of keyboard interface active on the device', htmlDescription='

Number of keyboard interface active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,658 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3665, uuid={5F0D156E-80E6-401b-9854-FCA4DCA132BB}, since=null, name=keyFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing keyboard interface on the device', htmlDescription='

Number of failing keyboard interface on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,658 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3656, uuid={4C0A881D-B242-49b2-A9F8-DF5C3DF79322}, since=null, name=usbAvail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of Universal Serial Bus Interface installed on the device', htmlDescription='

Number of Universal Serial Bus Interface installed on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=734, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@10399e, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,658 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3661, uuid={6078BDD9-2E54-4b6b-A1B3-CCDBFE46E859}, since=null, name=usbActive, alias=, stereotype=protocol, visibility=public, txtDescription='Number of Universal Serial Bus interface active on the device', htmlDescription='

Number of Universal Serial Bus interface active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,658 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3666, uuid={64E92266-4098-47ce-9874-DBF194F6A4D1}, since=null, name=usbFail, alias=, stereotype=protocol, visibility=public, txtDescription='Number of failing Universal Serial Bus interface on the device', htmlDescription='

Number of failing Universal Serial Bus interface on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,658 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3283, uuid={6E4426CC-406A-429e-AD6D-1EECA102F2FC}, since=null, name=SER, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of serial interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of serial interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=836, _eaTypeName=SEREntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@4ed9f0, 3_taggedValues{mibPrefix=sER, objectIdentity=intSERIALEntry, Version=0}]. +2024-09-08 08:26:30,658 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3297, uuid={4C6CDBC0-62B0-4881-A810-A6CE56DACD81}, since=null, name=ETH, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of Ethernet interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of Ethernet interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=838, _eaTypeName=ETHEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@4f787b, 3_taggedValues{mibPrefix=eTH, objectIdentity=intETHEntry, Version=0}]. +2024-09-08 08:26:30,658 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3298, uuid={8794992C-DE7F-4bf7-83EC-5592356A181C}, since=null, name=USB, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of USB interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of USB interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=840, _eaTypeName=USBEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@5cb137, 3_taggedValues{mibPrefix=uSB, objectIdentity=intUSBEntry, Version=0}]. +2024-09-08 08:26:30,658 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3299, uuid={B0761727-4B75-4eb5-82B3-0BB613618FC7}, since=null, name=KEY, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of keyboard interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of keyboard interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=842, _eaTypeName=KEYEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@41eaa2, 3_taggedValues{mibPrefix=kEY, objectIdentity=intKEYEntry, Version=0}]. +2024-09-08 08:26:30,658 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3328, uuid={D97ACC7A-DBFA-4c92-BC5C-FF187AF4C4EF}, since=null, name=ALG, alias=, stereotype=table, visibility=public, txtDescription='This entry defer to possible multiple instances of analogue interfaces inside the IED', htmlDescription='

This entry defer to possible multiple instances of analogue interfaces inside the IED

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=847, _eaTypeName=ALGEntry, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d62f43, 3_taggedValues{mibPrefix=aLG, objectIdentity=intALGEntry, Version=0}]. +2024-09-08 08:26:30,658 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Interfaces, _objData=UmlObjectData [id=3678, uuid={B5CE0636-5BE9-4566-8B6A-2103E2769BA9}, since=null, name=StateNotification, alias=, stereotype=trap, visibility=public, txtDescription='State events notification object', htmlDescription='

State events notification object

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=946, _eaTypeName=Notification, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@14b1c02, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,659 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::KEYEntry, _objData=UmlObjectData [id=3327, uuid={6A06B961-6E51-4f13-B73C-32E26BB4F831}, since=null, name=Locked, alias=, stereotype=health, visibility=public, txtDescription='Indicate a locked status for the device keyboard', htmlDescription='

Indicate a locked status for the device keyboard

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=728, _eaTypeName=BooleanValueTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@eff760, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,659 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::SEREntry, _objData=UmlObjectData [id=3325, uuid={BD2A2516-013B-4f4c-83C4-6D873D08A614}, since=null, name=ByteIn, alias=, stereotype=protocol, visibility=public, txtDescription='Inbound Byte counter', htmlDescription='

Inbound Byte counter

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,659 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::SEREntry, _objData=UmlObjectData [id=3326, uuid={DB538A18-009B-4f5a-B7CD-6FDE73E706B1}, since=null, name=ByteOut, alias=, stereotype=protocol, visibility=public, txtDescription='Outbound Byte counter', htmlDescription='

Outbound Byte counter

'], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=731, _eaTypeName=CounterTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@2f32ff, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,659 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3668, uuid={51550105-54C1-4ba6-BC2E-E028F066BD90}, since=null, name=serActive, alias=, stereotype=health, visibility=public, txtDescription='Number of serial Interfaces active on the device', htmlDescription='

Number of serial Interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,659 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3669, uuid={BE46F414-6E9C-412e-9E70-29513A7DAA18}, since=null, name=serFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing serial Interfaces on the device', htmlDescription='

Number of failing serial Interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,659 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3670, uuid={78956E09-8F39-4f86-A5CE-B8DBF44C7D6E}, since=null, name=ethActive, alias=, stereotype=health, visibility=public, txtDescription='Number of ethernet interfaces active on the device', htmlDescription='

Number of ethernet interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,659 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3671, uuid={101FCB6C-9867-4262-8E50-6F057EEAF643}, since=null, name=ethFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing ethernet interfaces on the device', htmlDescription='

Number of failing ethernet interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,659 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3672, uuid={5171FAC8-436F-42e9-B8E2-0C31C19FAC68}, since=null, name=algActive, alias=, stereotype=health, visibility=public, txtDescription='Number of analogue interfaces active on the device', htmlDescription='

Number of analogue interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,659 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3673, uuid={9711AA3F-E429-4304-960A-AA9CF2BCC003}, since=null, name=algFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing analogue interfaces on the device', htmlDescription='

Number of failing analogue interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,659 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3667, uuid={D523B290-8CF4-4630-ADC0-AA4FF4336A1B}, since=null, name=keyActive, alias=, stereotype=health, visibility=public, txtDescription='Number of keyboard interfaces active on the device', htmlDescription='

Number of keyboard interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,659 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3674, uuid={367C987D-D473-46cd-A5B1-6B3A1D275D36}, since=null, name=keyFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing keyboard interfaces on the device', htmlDescription='

Number of failing keyboard interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,659 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3675, uuid={0F833AFE-832E-4673-99D3-42CDEFDDF7E0}, since=null, name=usbActive, alias=, stereotype=health, visibility=public, txtDescription='Number of Universal Serial Bus interfaces active on the device', htmlDescription='

Number of Universal Serial Bus interfaces active on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,660 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Interfaces Agent::Notification, _objData=UmlObjectData [id=3676, uuid={E957BF40-9F27-4a63-B2DD-16F525F01FA1}, since=null, name=usbFail, alias=, stereotype=health, visibility=public, txtDescription='Number of failing Universal Serial Bus interfaces on the device', htmlDescription='

Number of failing Universal Serial Bus interfaces on the device

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=735, _eaTypeName=IntegerTs, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.japi.JapiClassBuilder@d992b2, 1_taggedValues{Version=0}]. +2024-09-08 08:26:30,660 [main] INFO EaModelBuilder - assigning type for operations' parameters and exceptions ... +2024-09-08 08:26:30,660 [main] INFO EaModelBuilder - cross-checking dependencies ... +2024-09-08 08:26:30,660 [main] INFO EaModelBuilder - cross-checking associations ... +2024-09-08 08:26:30,660 [main] INFO Util - time=[0:00:00.053] linked builders. +2024-09-08 08:26:30,660 [main] INFO Util - +2024-09-08 08:26:30,660 [main] INFO Util - +2024-09-08 08:26:30,660 [main] INFO Util - ------------------------------------------------ +2024-09-08 08:26:30,660 [main] INFO Util - creating in-memory model and exporting normative diagrams... +2024-09-08 08:26:32,322 [main] TRACE UmlPackage - ---- created null model package NullCIM +2024-09-08 08:26:32,325 [main] TRACE UmlClass - created (826) OTHER_CIM CIM null CIM class NullCIM::NullCIM +2024-09-08 08:26:32,325 [main] TRACE UmlPackage - ---- created null model package NullIEC61850 +2024-09-08 08:26:32,326 [main] TRACE UmlClass - created (830) OTHER_IEC61850 IEC61850 null 61850 class NullIEC61850::NullIEC61850 +2024-09-08 08:26:32,326 [main] INFO EaModelBuilder - creating in-memory package structure ... +2024-09-08 08:26:32,326 [main] TRACE UmlPackage - ---- created model package iso +2024-09-08 08:26:32,326 [main] TRACE UmlPackage - ---- created top package standard +2024-09-08 08:26:32,326 [main] TRACE UmlPackage - ---- created package iec62351 +2024-09-08 08:26:32,326 [main] TRACE UmlPackage - ---- created package part7 +2024-09-08 08:26:32,327 [main] TRACE UmlPackage - ---- created package Profiles +2024-09-08 08:26:32,336 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{4642A2B9-A297-45be-A2B5-28C4F1A2B373}.png924528658483833730.png. +2024-09-08 08:26:32,992 [main] DEBUG JapiDiagramExporter - ... saved in 657 ms +2024-09-08 08:26:32,994 [main] TRACE UmlDiagram - created (51) OTHER_CIM CIM class Profiles::Part7Profiles +2024-09-08 08:26:32,994 [main] TRACE UmlPackage - ---- created package nsmAgent +2024-09-08 08:26:32,995 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{8F3F8B93-6E15-4fcf-9C40-83EB793F28A5}.png6406164283641576274.png. +2024-09-08 08:26:33,818 [main] DEBUG JapiDiagramExporter - ... saved in 824 ms +2024-09-08 08:26:33,818 [main] TRACE UmlDiagram - created (52) OTHER_CIM CIM class nsmAgent::nsmAgent +2024-09-08 08:26:33,818 [main] TRACE UmlPackage - ---- created package Overview +2024-09-08 08:26:33,821 [main] TRACE UmlSkipped - created (941) OTHER_CIM CIM boundary Overview::IEC 60870, DNP and IEC 62351 +2024-09-08 08:26:33,821 [main] TRACE UmlSkipped - created (939) OTHER_CIM CIM boundary Overview::IEC 61850 +2024-09-08 08:26:33,822 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{1EC9B9AC-962E-4b2c-A2A8-EFB524CF896E}.png9129888844276828478.png. +2024-09-08 08:26:34,594 [main] DEBUG JapiDiagramExporter - ... saved in 772 ms +2024-09-08 08:26:34,594 [main] TRACE UmlDiagram - created (23) OTHER_CIM CIM class Overview::Part7 Classes Overview +2024-09-08 08:26:34,594 [main] TRACE UmlPackage - ---- created package BaseTypes +2024-09-08 08:26:34,594 [main] TRACE UmlPackage - ---- created package Abstract Types +2024-09-08 08:26:34,594 [main] TRACE UmlPackage - ---- created package EnumeratedTypes +2024-09-08 08:26:34,594 [main] TRACE UmlPackage - ---- created package Environmental Agent +2024-09-08 08:26:34,595 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{DD68DDD1-5EEB-4a23-B16C-1FF759A2EE6A}.png4622404648543503924.png. +2024-09-08 08:26:34,851 [main] DEBUG JapiDiagramExporter - ... saved in 257 ms +2024-09-08 08:26:34,851 [main] TRACE UmlDiagram - created (8) OTHER_CIM CIM class Environmental Agent::Environmental +2024-09-08 08:26:34,851 [main] TRACE UmlPackage - ---- created package IED Agent +2024-09-08 08:26:34,852 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{C3FD1BF6-CB13-4fb3-9C75-D9FACF470ACD}.png1609254674924556100.png. +2024-09-08 08:26:35,257 [main] DEBUG JapiDiagramExporter - ... saved in 405 ms +2024-09-08 08:26:35,257 [main] TRACE UmlDiagram - created (9) OTHER_CIM CIM class IED Agent::IED +2024-09-08 08:26:35,257 [main] TRACE UmlPackage - ---- created package Application Protocols Agents +2024-09-08 08:26:35,257 [main] TRACE UmlPackage - ---- created package Common objects +2024-09-08 08:26:35,257 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{583FFED4-9F6C-420f-88B3-80FF9F387121}.png7156636917111030252.png. +2024-09-08 08:26:35,456 [main] DEBUG JapiDiagramExporter - ... saved in 199 ms +2024-09-08 08:26:35,456 [main] TRACE UmlDiagram - created (64) OTHER_CIM CIM class Common objects::Application Protocol common objects +2024-09-08 08:26:35,456 [main] TRACE UmlPackage - ---- created package IEC62351-3 ed.2 Agent +2024-09-08 08:26:35,457 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{38D28719-1A0B-491f-9010-AF2D3032BB4B}.png7691893997071621200.png. +2024-09-08 08:26:35,835 [main] DEBUG JapiDiagramExporter - ... saved in 379 ms +2024-09-08 08:26:35,835 [main] TRACE UmlDiagram - created (72) OTHER_CIM CIM class IEC62351-3 ed.2 Agent::IEC 62351-3 ed.2 Agent Relationships +2024-09-08 08:26:35,835 [main] TRACE UmlPackage - ---- created package IEEE 1815 and IEC 60870-5 Agent +2024-09-08 08:26:35,836 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{8B1E40BA-BA71-478e-BC81-025DA5A45A35}.png6022639715651352806.png. +2024-09-08 08:26:36,276 [main] DEBUG JapiDiagramExporter - ... saved in 441 ms +2024-09-08 08:26:36,276 [main] TRACE UmlDiagram - created (33) OTHER_CIM CIM class IEEE 1815 and IEC 60870-5 Agent::IEEE 1815 and IEC 60870 Agent Relationships +2024-09-08 08:26:36,276 [main] TRACE UmlPackage - ---- created package IEEE 1815 and IEC 60870-5 Agent - ed2 +2024-09-08 08:26:36,277 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{AA945755-BD47-4be2-A238-6331816DBA4B}.png1512676636099231851.png. +2024-09-08 08:26:36,720 [main] DEBUG JapiDiagramExporter - ... saved in 444 ms +2024-09-08 08:26:36,720 [main] TRACE UmlDiagram - created (70) OTHER_CIM CIM class IEEE 1815 and IEC 60870-5 Agent - ed2::IEEE 1815 and IEC 60870 Agent Relationships +2024-09-08 08:26:36,720 [main] TRACE UmlPackage - ---- created package IEC61850 Agent +2024-09-08 08:26:36,721 [main] TRACE UmlPackage - ---- created package ACSI +2024-09-08 08:26:36,721 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{1B1AAFC2-CBA3-401c-873D-7B6CDCE9CBD6}.png8517482774662602829.png. +2024-09-08 08:26:36,929 [main] DEBUG JapiDiagramExporter - ... saved in 207 ms +2024-09-08 08:26:36,929 [main] TRACE UmlDiagram - created (45) OTHER_CIM CIM class ACSI::ACSI +2024-09-08 08:26:36,929 [main] TRACE UmlPackage - ---- created package MMS +2024-09-08 08:26:36,930 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{C69DADFE-D7C7-45d0-83FC-41012CB3C1CA}.png523595303579739710.png. +2024-09-08 08:26:37,307 [main] DEBUG JapiDiagramExporter - ... saved in 378 ms +2024-09-08 08:26:37,307 [main] TRACE UmlDiagram - created (42) OTHER_CIM CIM class MMS::MMS +2024-09-08 08:26:37,307 [main] TRACE UmlPackage - ---- created package SV and GSE common objects +2024-09-08 08:26:37,309 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{DFEA5E4E-B042-4697-A4BE-C60308616114}.png2932916995439822190.png. +2024-09-08 08:26:37,543 [main] DEBUG JapiDiagramExporter - ... saved in 235 ms +2024-09-08 08:26:37,543 [main] TRACE UmlDiagram - created (63) OTHER_CIM CIM class SV and GSE common objects::SV and GSE common objects +2024-09-08 08:26:37,543 [main] TRACE UmlPackage - ---- created package SV +2024-09-08 08:26:37,544 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{472A38C4-7002-4632-9EB5-EC1C28A2CCA8}.png6746328320507125870.png. +2024-09-08 08:26:37,926 [main] DEBUG JapiDiagramExporter - ... saved in 383 ms +2024-09-08 08:26:37,926 [main] TRACE UmlDiagram - created (60) OTHER_CIM CIM class SV::SV +2024-09-08 08:26:37,926 [main] TRACE UmlPackage - ---- created package GSE +2024-09-08 08:26:37,927 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{80FA056A-3318-4339-86E8-7D464BD53A85}.png5454942884120239545.png. +2024-09-08 08:26:38,353 [main] DEBUG JapiDiagramExporter - ... saved in 427 ms +2024-09-08 08:26:38,354 [main] TRACE UmlDiagram - created (44) OTHER_CIM CIM class GSE::GSE +2024-09-08 08:26:38,354 [main] TRACE UmlPackage - ---- created package Clocks Agent +2024-09-08 08:26:38,354 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{9DE08B60-19E1-4c7c-B3D6-82731BE2066A}.png168233015706680215.png. +2024-09-08 08:26:38,601 [main] DEBUG JapiDiagramExporter - ... saved in 247 ms +2024-09-08 08:26:38,601 [main] TRACE UmlDiagram - created (46) OTHER_CIM CIM class Clocks Agent::Clocks Agent +2024-09-08 08:26:38,601 [main] TRACE UmlPackage - ---- created package Interfaces Agent +2024-09-08 08:26:38,602 [main] INFO JapiDiagramExporter - saving exported image to 'C:\Users\gigi\git\jCleanCim\output\pics\eaDiag-{1B416A08-A236-4e2a-9A9E-6A48912EF05F}.png1584337503134952953.png. +2024-09-08 08:26:38,930 [main] DEBUG JapiDiagramExporter - ... saved in 329 ms +2024-09-08 08:26:38,930 [main] TRACE UmlDiagram - created (24) OTHER_CIM CIM class Interfaces Agent::Interfaces +2024-09-08 08:26:38,930 [main] INFO EaModelBuilder - creating in-memory root classes and enum literals ... +2024-09-08 08:26:38,931 [main] TRACE UmlClass - created (894) OTHER_CIM CIM root class <> nsmAgent::Attribute +2024-09-08 08:26:38,931 [main] TRACE UmlClass - created (886) OTHER_CIM CIM root class <> nsmAgent::Attribute +2024-09-08 08:26:38,931 [main] TRACE UmlClass - created (889) OTHER_CIM CIM root class <> nsmAgent::Attribute +2024-09-08 08:26:38,931 [main] TRACE UmlClass - created (890) OTHER_CIM CIM root class <> nsmAgent::Attribute +2024-09-08 08:26:38,931 [main] TRACE UmlClass - created (892) OTHER_CIM CIM root class <> nsmAgent::Attribute +2024-09-08 08:26:38,931 [main] TRACE UmlClass - created (896) OTHER_CIM CIM root class <> nsmAgent::Attribute +2024-09-08 08:26:38,931 [main] TRACE UmlClass - created (898) OTHER_CIM CIM root class <> nsmAgent::Attribute +2024-09-08 08:26:38,932 [main] TRACE UmlClass - created (938) OTHER_CIM CIM root class <> nsmAgent::Attribute +2024-09-08 08:26:38,932 [main] TRACE UmlClass - created (900) OTHER_CIM CIM root class <> nsmAgent::Attribute +2024-09-08 08:26:38,932 [main] TRACE UmlClass - created (888) OTHER_CIM CIM root class <> nsmAgent::Class +2024-09-08 08:26:38,932 [main] TRACE UmlClass - created (1022) OTHER_CIM CIM root class <> nsmAgent::Class +2024-09-08 08:26:38,932 [main] TRACE UmlClass - created (882) OTHER_CIM CIM root class <> nsmAgent::Class +2024-09-08 08:26:38,932 [main] TRACE UmlClass - created (895) OTHER_CIM CIM root class <> nsmAgent::health +2024-09-08 08:26:38,932 [main] TRACE UmlClass - created (893) OTHER_CIM CIM root class <> nsmAgent::identity +2024-09-08 08:26:38,932 [main] TRACE UmlClass - created (891) OTHER_CIM CIM root class <> nsmAgent::index +2024-09-08 08:26:38,932 [main] TRACE UmlClass - created (887) OTHER_CIM CIM root class <> nsmAgent::nsmAgent +2024-09-08 08:26:38,932 [main] TRACE UmlClass - created (1021) OTHER_CIM CIM root class <> nsmAgent::nsmEntry +2024-09-08 08:26:38,932 [main] TRACE UmlClass - created (883) OTHER_CIM CIM root class <> nsmAgent::nsmEvent +2024-09-08 08:26:38,933 [main] TRACE UmlClass - created (897) OTHER_CIM CIM root class <> nsmAgent::performance +2024-09-08 08:26:38,933 [main] TRACE UmlClass - created (885) OTHER_CIM CIM root class <> nsmAgent::protocol +2024-09-08 08:26:38,933 [main] TRACE UmlClass - created (884) OTHER_CIM CIM root class <> nsmAgent::security +2024-09-08 08:26:38,933 [main] TRACE UmlClass - created (899) OTHER_CIM CIM root class <> nsmAgent::setvalue +2024-09-08 08:26:38,933 [main] TRACE UmlClass - created (901) OTHER_CIM CIM root class <> nsmAgent::table +2024-09-08 08:26:38,933 [main] TRACE UmlClass - created (936) OTHER_CIM CIM root class <> nsmAgent::trap +2024-09-08 08:26:38,933 [main] TRACE UmlClass - created (660) OTHER_CIM CIM root class BaseTypes::AbsoluteDateTime +2024-09-08 08:26:38,933 [main] TRACE UmlClass - created (624) OTHER_CIM CIM root class BaseTypes::Counter32 +2024-09-08 08:26:38,933 [main] TRACE UmlClass - created (628) OTHER_CIM CIM root class BaseTypes::DateAndTime +2024-09-08 08:26:38,933 [main] TRACE UmlClass - created (632) OTHER_CIM CIM root class BaseTypes::DisplayString +2024-09-08 08:26:38,933 [main] TRACE UmlClass - created (630) OTHER_CIM CIM root class BaseTypes::Float32TC +2024-09-08 08:26:38,934 [main] TRACE UmlClass - created (622) OTHER_CIM CIM root class BaseTypes::Gauge32 +2024-09-08 08:26:38,934 [main] TRACE UmlClass - created (952) OTHER_CIM CIM root class BaseTypes::InetAddress +2024-09-08 08:26:38,934 [main] TRACE UmlClass - created (966) OTHER_CIM CIM root class BaseTypes::MacAddress +2024-09-08 08:26:38,934 [main] TRACE UmlClass - created (954) OTHER_CIM CIM enumeration <> BaseTypes::InetAddressType +2024-09-08 08:26:38,941 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-08 08:26:38,941 [main] TRACE UmlAttribute - created (3685) OTHER_CIM CIM literal <> BaseTypes::InetAddressType.unknown = 0 +2024-09-08 08:26:38,941 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 08:26:38,941 [main] TRACE UmlAttribute - created (3686) OTHER_CIM CIM literal <> BaseTypes::InetAddressType.ipv4 = 1 +2024-09-08 08:26:38,941 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-08 08:26:38,941 [main] TRACE UmlAttribute - created (3687) OTHER_CIM CIM literal <> BaseTypes::InetAddressType.ipv6 = 2 +2024-09-08 08:26:38,941 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-08 08:26:38,941 [main] TRACE UmlAttribute - created (3688) OTHER_CIM CIM literal <> BaseTypes::InetAddressType.ipv4z = 3 +2024-09-08 08:26:38,942 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-08 08:26:38,942 [main] TRACE UmlAttribute - created (3689) OTHER_CIM CIM literal <> BaseTypes::InetAddressType.ipv6z = 4 +2024-09-08 08:26:38,942 [main] TRACE ValueRange - '16' has no separator indicating range. +2024-09-08 08:26:38,942 [main] TRACE UmlAttribute - created (3683) OTHER_CIM CIM literal <> BaseTypes::InetAddressType.dns = 16 +2024-09-08 08:26:38,942 [main] TRACE UmlClass - created (972) OTHER_CIM CIM root class BaseTypes::EntityIndex +2024-09-08 08:26:38,942 [main] TRACE UmlClass - created (173) OTHER_CIM CIM root class BaseTypes::Integer32 +2024-09-08 08:26:38,942 [main] TRACE UmlClass - created (968) OTHER_CIM CIM root class BaseTypes::Unsigned32 +2024-09-08 08:26:38,942 [main] TRACE UmlClass - created (626) OTHER_CIM CIM root class BaseTypes::TimeTicks +2024-09-08 08:26:38,942 [main] TRACE UmlClass - created (636) OTHER_CIM CIM root class BaseTypes::TruthValue +2024-09-08 08:26:38,942 [main] TRACE UmlClass - created (712) OTHER_CIM CIM root class Abstract Types::AbstractBaseType +2024-09-08 08:26:38,943 [main] TRACE UmlClass - created (798) OTHER_CIM CIM root class Abstract Types::AbstractAgent +2024-09-08 08:26:38,943 [main] TRACE UmlClass - created (292) OTHER_CIM CIM enumeration <> EnumeratedTypes::AppDatStKind +2024-09-08 08:26:38,943 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-08 08:26:38,943 [main] TRACE UmlAttribute - created (1780) OTHER_CIM CIM literal <> EnumeratedTypes::AppDatStKind.unknown = 0 +2024-09-08 08:26:38,943 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 08:26:38,943 [main] TRACE UmlAttribute - created (1781) OTHER_CIM CIM literal <> EnumeratedTypes::AppDatStKind.good = 1 +2024-09-08 08:26:38,943 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-08 08:26:38,943 [main] TRACE UmlAttribute - created (1782) OTHER_CIM CIM literal <> EnumeratedTypes::AppDatStKind.bad = 2 +2024-09-08 08:26:38,943 [main] TRACE UmlClass - created (1034) OTHER_CIM CIM enumeration <> EnumeratedTypes::PhyHealthKind +2024-09-08 08:26:38,943 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-08 08:26:38,943 [main] TRACE UmlAttribute - created (4113) OTHER_CIM CIM literal <> EnumeratedTypes::PhyHealthKind.ok = 0 +2024-09-08 08:26:38,943 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 08:26:38,943 [main] TRACE UmlAttribute - created (4114) OTHER_CIM CIM literal <> EnumeratedTypes::PhyHealthKind.warning = 1 +2024-09-08 08:26:38,943 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-08 08:26:38,943 [main] TRACE UmlAttribute - created (4115) OTHER_CIM CIM literal <> EnumeratedTypes::PhyHealthKind.alarm = 2 +2024-09-08 08:26:38,944 [main] TRACE UmlClass - created (856) OTHER_CIM CIM enumeration <> EnumeratedTypes::ExtKind +2024-09-08 08:26:38,944 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-08 08:26:38,944 [main] TRACE UmlAttribute - created (3369) OTHER_CIM CIM literal <> EnumeratedTypes::ExtKind.unknown = 0 +2024-09-08 08:26:38,944 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 08:26:38,944 [main] TRACE UmlAttribute - created (3370) OTHER_CIM CIM literal <> EnumeratedTypes::ExtKind.ioModule = 1 +2024-09-08 08:26:38,944 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-08 08:26:38,944 [main] TRACE UmlAttribute - created (3371) OTHER_CIM CIM literal <> EnumeratedTypes::ExtKind.softwarePLC = 2 +2024-09-08 08:26:38,944 [main] TRACE UmlClass - created (864) OTHER_CIM CIM enumeration <> EnumeratedTypes::IntKind +2024-09-08 08:26:38,944 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-08 08:26:38,944 [main] TRACE UmlAttribute - created (3392) OTHER_CIM CIM literal <> EnumeratedTypes::IntKind.wired = 0 +2024-09-08 08:26:38,944 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 08:26:38,944 [main] TRACE UmlAttribute - created (3393) OTHER_CIM CIM literal <> EnumeratedTypes::IntKind.wireless = 1 +2024-09-08 08:26:38,944 [main] TRACE UmlClass - created (644) OTHER_CIM CIM enumeration <> EnumeratedTypes::LnkKind +2024-09-08 08:26:38,945 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-08 08:26:38,945 [main] TRACE UmlAttribute - created (2720) OTHER_CIM CIM literal <> EnumeratedTypes::LnkKind.unknown = 0 +2024-09-08 08:26:38,945 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 08:26:38,945 [main] TRACE UmlAttribute - created (2721) OTHER_CIM CIM literal <> EnumeratedTypes::LnkKind.serial = 1 +2024-09-08 08:26:38,945 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-08 08:26:38,945 [main] TRACE UmlAttribute - created (2722) OTHER_CIM CIM literal <> EnumeratedTypes::LnkKind.tcp = 2 +2024-09-08 08:26:38,945 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-08 08:26:38,945 [main] TRACE UmlAttribute - created (2723) OTHER_CIM CIM literal <> EnumeratedTypes::LnkKind.udp = 3 +2024-09-08 08:26:38,945 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-08 08:26:38,945 [main] TRACE UmlAttribute - created (3391) OTHER_CIM CIM literal <> EnumeratedTypes::LnkKind.eth = 4 +2024-09-08 08:26:38,945 [main] TRACE UmlClass - created (293) OTHER_CIM CIM enumeration <> EnumeratedTypes::PSPAccKind +2024-09-08 08:26:38,945 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-08 08:26:38,946 [main] TRACE UmlAttribute - created (1784) OTHER_CIM CIM literal EnumeratedTypes::PSPAccKind.notBeingAccessed = 0 +2024-09-08 08:26:38,946 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 08:26:38,946 [main] TRACE UmlAttribute - created (1785) OTHER_CIM CIM literal EnumeratedTypes::PSPAccKind.accessOccurring = 1 +2024-09-08 08:26:38,946 [main] TRACE UmlClass - created (829) OTHER_CIM CIM enumeration <> EnumeratedTypes::ProtIdKind +2024-09-08 08:26:38,946 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-08 08:26:38,946 [main] TRACE UmlAttribute - created (3250) OTHER_CIM CIM literal <> EnumeratedTypes::ProtIdKind.unknown = 0 +2024-09-08 08:26:38,946 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 08:26:38,946 [main] TRACE UmlAttribute - created (3249) OTHER_CIM CIM literal <> EnumeratedTypes::ProtIdKind.iEC6185081 = 1 +2024-09-08 08:26:38,946 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-08 08:26:38,946 [main] TRACE UmlAttribute - created (3251) OTHER_CIM CIM literal <> EnumeratedTypes::ProtIdKind.iEC6185081GOOSE = 2 +2024-09-08 08:26:38,946 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-08 08:26:38,946 [main] TRACE UmlAttribute - created (3252) OTHER_CIM CIM literal <> EnumeratedTypes::ProtIdKind.iEC6185092SV = 3 +2024-09-08 08:26:38,946 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-08 08:26:38,946 [main] TRACE UmlAttribute - created (3253) OTHER_CIM CIM literal <> EnumeratedTypes::ProtIdKind.ieee1815DNP = 4 +2024-09-08 08:26:38,947 [main] TRACE ValueRange - '5' has no separator indicating range. +2024-09-08 08:26:38,947 [main] TRACE UmlAttribute - created (3254) OTHER_CIM CIM literal <> EnumeratedTypes::ProtIdKind.iec608705 = 5 +2024-09-08 08:26:38,947 [main] TRACE ValueRange - '6' has no separator indicating range. +2024-09-08 08:26:38,947 [main] TRACE UmlAttribute - created (4503) OTHER_CIM CIM literal <> EnumeratedTypes::ProtIdKind.iEC6185082 = 6 +2024-09-08 08:26:38,947 [main] TRACE UmlClass - created (958) OTHER_CIM CIM enumeration <> EnumeratedTypes::EventKind +2024-09-08 08:26:38,947 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-08 08:26:38,947 [main] TRACE UmlAttribute - created (3694) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.none = 0 +2024-09-08 08:26:38,947 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 08:26:38,947 [main] TRACE UmlAttribute - created (3695) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.unKnown = 1 +2024-09-08 08:26:38,947 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-08 08:26:38,947 [main] TRACE UmlAttribute - created (3696) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.denialOfService = 2 +2024-09-08 08:26:38,947 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-08 08:26:38,947 [main] TRACE UmlAttribute - created (3697) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.malware = 3 +2024-09-08 08:26:38,948 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-08 08:26:38,948 [main] TRACE UmlAttribute - created (3698) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.bufferOverRun = 4 +2024-09-08 08:26:38,948 [main] TRACE ValueRange - '5' has no separator indicating range. +2024-09-08 08:26:38,948 [main] TRACE UmlAttribute - created (3701) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.bufferUnderRun = 5 +2024-09-08 08:26:38,948 [main] TRACE ValueRange - '6' has no separator indicating range. +2024-09-08 08:26:38,948 [main] TRACE UmlAttribute - created (3702) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.badCredential = 6 +2024-09-08 08:26:38,948 [main] TRACE ValueRange - '7' has no separator indicating range. +2024-09-08 08:26:38,948 [main] TRACE UmlAttribute - created (3703) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.badKey = 7 +2024-09-08 08:26:38,948 [main] TRACE ValueRange - '8' has no separator indicating range. +2024-09-08 08:26:38,948 [main] TRACE UmlAttribute - created (3699) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.malformedPDU = 8 +2024-09-08 08:26:38,948 [main] TRACE ValueRange - '9' has no separator indicating range. +2024-09-08 08:26:38,948 [main] TRACE UmlAttribute - created (3693) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.physicalDisruption = 9 +2024-09-08 08:26:38,948 [main] TRACE ValueRange - '10' has no separator indicating range. +2024-09-08 08:26:38,948 [main] TRACE UmlAttribute - created (3700) OTHER_CIM CIM literal <> EnumeratedTypes::EventKind.invalidNetworkAccess = 10 +2024-09-08 08:26:38,949 [main] TRACE UmlClass - created (113) OTHER_CIM CIM enumeration <> EnumeratedTypes::TimSyncIssueKind +2024-09-08 08:26:38,949 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-08 08:26:38,949 [main] TRACE UmlAttribute - created (644) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncIssueKind.synced = 0 +2024-09-08 08:26:38,949 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 08:26:38,949 [main] TRACE UmlAttribute - created (645) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncIssueKind.degradated = 1 +2024-09-08 08:26:38,949 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-08 08:26:38,949 [main] TRACE UmlAttribute - created (646) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncIssueKind.failed = 2 +2024-09-08 08:26:38,949 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-08 08:26:38,949 [main] TRACE UmlAttribute - created (4499) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncIssueKind.syncedGlobal = 3 +2024-09-08 08:26:38,949 [main] TRACE UmlClass - created (1011) OTHER_CIM CIM enumeration <> EnumeratedTypes::SecurityProfileKind +2024-09-08 08:26:38,949 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-08 08:26:38,949 [main] TRACE UmlAttribute - created (3924) OTHER_CIM CIM literal <> EnumeratedTypes::SecurityProfileKind.noSecurity = 0 +2024-09-08 08:26:38,949 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 08:26:38,949 [main] TRACE UmlAttribute - created (3926) OTHER_CIM CIM literal <> EnumeratedTypes::SecurityProfileKind.aProfile = 1 +2024-09-08 08:26:38,950 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-08 08:26:38,950 [main] TRACE UmlAttribute - created (3927) OTHER_CIM CIM literal <> EnumeratedTypes::SecurityProfileKind.e2eProfile = 2 +2024-09-08 08:26:38,950 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-08 08:26:38,950 [main] TRACE UmlAttribute - created (3922) OTHER_CIM CIM literal <> EnumeratedTypes::SecurityProfileKind.ae2eProfile = 3 +2024-09-08 08:26:38,950 [main] TRACE UmlClass - created (117) OTHER_CIM CIM enumeration <> EnumeratedTypes::TimSyncSrcKind +2024-09-08 08:26:38,950 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-08 08:26:38,950 [main] TRACE UmlAttribute - created (665) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.unknown = 0 +2024-09-08 08:26:38,950 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 08:26:38,950 [main] TRACE UmlAttribute - created (666) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.ntp = 1 +2024-09-08 08:26:38,950 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-08 08:26:38,950 [main] TRACE UmlAttribute - created (667) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.sntp = 2 +2024-09-08 08:26:38,950 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-08 08:26:38,950 [main] TRACE UmlAttribute - created (668) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.irig = 3 +2024-09-08 08:26:38,950 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-08 08:26:38,950 [main] TRACE UmlAttribute - created (669) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.gps = 4 +2024-09-08 08:26:38,950 [main] TRACE ValueRange - '5' has no separator indicating range. +2024-09-08 08:26:38,951 [main] TRACE UmlAttribute - created (670) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.ieee1588PTP = 5 +2024-09-08 08:26:38,951 [main] TRACE ValueRange - '6' has no separator indicating range. +2024-09-08 08:26:38,951 [main] TRACE UmlAttribute - created (671) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.ieee1588PTPC37238Profile2011 = 6 +2024-09-08 08:26:38,951 [main] TRACE ValueRange - '7' has no separator indicating range. +2024-09-08 08:26:38,951 [main] TRACE UmlAttribute - created (4110) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.ieee1588PTPIEC6185093 = 7 +2024-09-08 08:26:38,951 [main] TRACE ValueRange - '8' has no separator indicating range. +2024-09-08 08:26:38,951 [main] TRACE UmlAttribute - created (4495) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.ieee1588PTPC37238Profile2017 = 8 +2024-09-08 08:26:38,951 [main] TRACE ValueRange - '9' has no separator indicating range. +2024-09-08 08:26:38,951 [main] TRACE UmlAttribute - created (4496) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.ieee1588PTPIEC6185093Ed20 = 9 +2024-09-08 08:26:38,951 [main] TRACE ValueRange - '7' has no separator indicating range. +2024-09-08 08:26:38,951 [main] TRACE UmlAttribute - created (4497) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.ieee1588PTPIEC6185093Profile2016 = 7 +2024-09-08 08:26:38,951 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-08 08:26:38,951 [main] TRACE UmlAttribute - created (4498) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.gnss = 4 +2024-09-08 08:26:38,951 [main] TRACE ValueRange - '10' has no separator indicating range. +2024-09-08 08:26:38,951 [main] TRACE UmlAttribute - created (4500) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.applicationProtocol = 10 +2024-09-08 08:26:38,951 [main] TRACE ValueRange - '11' has no separator indicating range. +2024-09-08 08:26:38,951 [main] TRACE UmlAttribute - created (4504) OTHER_CIM CIM literal <> EnumeratedTypes::TimSyncSrcKind.ntpOnts = 11 +2024-09-08 08:26:38,951 [main] INFO EaModelBuilder - creating in-memory sub-classes recursively ... +2024-09-08 08:26:38,952 [main] TRACE UmlClass - created (760) OTHER_CIM CIM class Abstract Types::BooleanValue, 1 superclasses=[AbstractBaseType] +2024-09-08 08:26:38,952 [main] TRACE UmlClass - created (734) OTHER_CIM CIM class Abstract Types::Integer, 1 superclasses=[AbstractBaseType] +2024-09-08 08:26:38,952 [main] TRACE UmlClass - created (728) OTHER_CIM CIM class Abstract Types::BooleanValueTs, 1 superclasses=[AbstractBaseType] +2024-09-08 08:26:38,952 [main] TRACE UmlClass - created (731) OTHER_CIM CIM class Abstract Types::CounterTs, 1 superclasses=[AbstractBaseType] +2024-09-08 08:26:38,952 [main] TRACE UmlClass - created (739) OTHER_CIM CIM class Abstract Types::Floating, 1 superclasses=[AbstractBaseType] +2024-09-08 08:26:38,952 [main] TRACE UmlClass - created (740) OTHER_CIM CIM class Abstract Types::FloatingTs, 1 superclasses=[AbstractBaseType] +2024-09-08 08:26:38,952 [main] TRACE UmlClass - created (735) OTHER_CIM CIM class Abstract Types::IntegerTs, 1 superclasses=[AbstractBaseType] +2024-09-08 08:26:38,952 [main] TRACE UmlClass - created (764) OTHER_CIM CIM class Abstract Types::CharString, 1 superclasses=[AbstractBaseType] +2024-09-08 08:26:38,953 [main] TRACE UmlClass - created (860) OTHER_CIM CIM class Abstract Types::CharStringTs, 1 superclasses=[AbstractBaseType] +2024-09-08 08:26:38,953 [main] TRACE UmlClass - created (804) OTHER_CIM CIM class Abstract Types::Timestamp, 1 superclasses=[AbstractBaseType] +2024-09-08 08:26:38,953 [main] TRACE UmlClass - created (782) OTHER_CIM CIM class Abstract Types::Selector, 1 superclasses=[AbstractBaseType] +2024-09-08 08:26:38,953 [main] TRACE UmlClass - created (786) OTHER_CIM CIM class Abstract Types::MacAddress, 1 superclasses=[AbstractBaseType] +2024-09-08 08:26:38,953 [main] TRACE UmlClass - created (956) OTHER_CIM CIM class Abstract Types::InetAddressType, 1 superclasses=[AbstractBaseType] +2024-09-08 08:26:38,953 [main] TRACE UmlClass - created (784) OTHER_CIM CIM class Abstract Types::InetAddress, 1 superclasses=[AbstractBaseType] +2024-09-08 08:26:38,954 [main] TRACE UmlClass - created (974) OTHER_CIM CIM class Abstract Types::EntityIndex, 1 superclasses=[AbstractBaseType] +2024-09-08 08:26:38,954 [main] TRACE UmlClass - created (774) OTHER_CIM CIM class Abstract Types::CntRs, 1 superclasses=[AbstractBaseType] +2024-09-08 08:26:38,954 [main] TRACE UmlClass - created (766) OTHER_CIM CIM class EnumeratedTypes::AppDatStType, 1 superclasses=[AbstractBaseType] +2024-09-08 08:26:38,954 [main] TRACE UmlClass - created (1036) OTHER_CIM CIM class EnumeratedTypes::PhyHealthType, 1 superclasses=[AbstractBaseType] +2024-09-08 08:26:38,954 [main] TRACE UmlClass - created (854) OTHER_CIM CIM class EnumeratedTypes::ExtType, 1 superclasses=[AbstractBaseType] +2024-09-08 08:26:38,954 [main] TRACE UmlClass - created (866) OTHER_CIM CIM class EnumeratedTypes::IntType, 1 superclasses=[AbstractBaseType] +2024-09-08 08:26:38,954 [main] TRACE UmlClass - created (960) OTHER_CIM CIM class EnumeratedTypes::EventType, 1 superclasses=[AbstractBaseType] +2024-09-08 08:26:38,954 [main] TRACE UmlClass - created (858) OTHER_CIM CIM class EnumeratedTypes::PSPAccType, 1 superclasses=[AbstractBaseType] +2024-09-08 08:26:38,955 [main] TRACE UmlClass - created (780) OTHER_CIM CIM class EnumeratedTypes::ProtIdType, 1 superclasses=[AbstractBaseType] +2024-09-08 08:26:38,955 [main] TRACE UmlClass - created (776) OTHER_CIM CIM class EnumeratedTypes::TimSyncIssueType, 1 superclasses=[AbstractBaseType] +2024-09-08 08:26:38,955 [main] TRACE UmlClass - created (1013) OTHER_CIM CIM class EnumeratedTypes::SecurityProfileType, 1 superclasses=[AbstractBaseType] +2024-09-08 08:26:38,955 [main] TRACE UmlClass - created (777) OTHER_CIM CIM class EnumeratedTypes::TimSyncSrcType, 1 superclasses=[AbstractBaseType] +2024-09-08 08:26:38,955 [main] TRACE UmlClass - created (778) OTHER_CIM CIM class EnumeratedTypes::LnkType, 1 superclasses=[AbstractBaseType] +2024-09-08 08:26:38,955 [main] TRACE UmlClass - created (41) OTHER_CIM CIM class <> Environmental Agent::Environmental, 1 superclasses=[AbstractAgent] +2024-09-08 08:26:38,955 [main] TRACE UmlClass - created (616) OTHER_CIM CIM class <> Environmental Agent::PSUPEntry, 1 superclasses=[AbstractAgent] +2024-09-08 08:26:38,955 [main] TRACE UmlClass - created (903) OTHER_CIM CIM class <> Environmental Agent::Notification, 1 superclasses=[AbstractAgent] +2024-09-08 08:26:38,955 [main] TRACE UmlClass - created (874) OTHER_CIM CIM class <> Environmental Agent::SecurityNotification, 1 superclasses=[AbstractAgent] +2024-09-08 08:26:38,956 [main] TRACE UmlClass - created (44) OTHER_CIM CIM class <> IED Agent::IED, 1 superclasses=[AbstractAgent] +2024-09-08 08:26:38,956 [main] TRACE UmlClass - created (832) OTHER_CIM CIM class <> IED Agent::CPUEntry, 1 superclasses=[AbstractAgent] +2024-09-08 08:26:38,956 [main] TRACE UmlClass - created (850) OTHER_CIM CIM class <> IED Agent::EXTEntry, 1 superclasses=[AbstractAgent] +2024-09-08 08:26:38,956 [main] TRACE UmlClass - created (862) OTHER_CIM CIM class <> IED Agent::STOREEntry, 1 superclasses=[AbstractAgent] +2024-09-08 08:26:38,956 [main] TRACE UmlClass - created (911) OTHER_CIM CIM class <> IED Agent::Notification, 1 superclasses=[AbstractAgent] +2024-09-08 08:26:38,956 [main] TRACE UmlClass - created (912) OTHER_CIM CIM class <> IED Agent::SecurityNotification, 1 superclasses=[AbstractAgent] +2024-09-08 08:26:38,956 [main] TRACE UmlClass - created (1032) OTHER_CIM CIM class Common objects::CommonProtocolInfo, 1 superclasses=[AbstractAgent] +2024-09-08 08:26:38,956 [main] TRACE UmlClass - created (1075) OTHER_CIM CIM class IEC62351-3 ed.2 Agent::IEC62351-3ed2security, 1 superclasses=[AbstractAgent] +2024-09-08 08:26:38,956 [main] TRACE UmlClass - created (1080) OTHER_CIM CIM class IEC62351-3 ed.2 Agent::TLSSession, 3 superclasses=[AbstractAgent, CommonProtocolInfo, IEC62351-3ed2security] +2024-09-08 08:26:38,956 [main] TRACE UmlClass - created (1079) OTHER_CIM CIM class <> IEC62351-3 ed.2 Agent::ClientTLS, 1 superclasses=[TLSSession] +2024-09-08 08:26:38,956 [main] TRACE UmlClass - created (1077) OTHER_CIM CIM class <> IEC62351-3 ed.2 Agent::ServerTLS, 1 superclasses=[TLSSession] +2024-09-08 08:26:38,956 [main] TRACE UmlClass - created (808) OTHER_CIM CIM class IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo, 1 superclasses=[AbstractAgent] +2024-09-08 08:26:38,957 [main] TRACE UmlClass - created (584) OTHER_CIM CIM class IEEE 1815 and IEC 60870-5 Agent::Association, 3 superclasses=[AbstractAgent, 60870andDNPProtocolInfo, CommonProtocolInfo] +2024-09-08 08:26:38,957 [main] TRACE UmlClass - created (820) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent::MasterAssociation, 1 superclasses=[Association] +2024-09-08 08:26:38,957 [main] TRACE UmlClass - created (821) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent::OutstationAssociation, 1 superclasses=[Association] +2024-09-08 08:26:38,957 [main] TRACE UmlClass - created (1063) OTHER_CIM CIM class IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5, 1 superclasses=[AbstractAgent] +2024-09-08 08:26:38,957 [main] TRACE UmlClass - created (1058) OTHER_CIM CIM class IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2, 2 superclasses=[AbstractAgent, IEC62351part5] +2024-09-08 08:26:38,957 [main] TRACE UmlClass - created (1059) OTHER_CIM CIM class IEEE 1815 and IEC 60870-5 Agent - ed2::Association, 3 superclasses=[CommonProtocolInfo, AbstractAgent, 60870andDNPProtocolInfoEd2] +2024-09-08 08:26:38,957 [main] TRACE UmlClass - created (1057) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent - ed2::MasterAssociation, 1 superclasses=[Association] +2024-09-08 08:26:38,957 [main] TRACE UmlClass - created (1056) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent - ed2::OutstationAssociation, 1 superclasses=[Association] +2024-09-08 08:26:38,957 [main] TRACE UmlClass - created (818) OTHER_CIM CIM class MMS::MMSProtocolInfo, 1 superclasses=[AbstractAgent] +2024-09-08 08:26:38,957 [main] TRACE UmlClass - created (693) OTHER_CIM CIM class <> MMS::MMSAssociation, 2 superclasses=[MMSProtocolInfo, CommonProtocolInfo] +2024-09-08 08:26:38,957 [main] TRACE UmlClass - created (1076) OTHER_CIM CIM class <> IEC62351-3 ed.2 Agent::Summary, 1 superclasses=[IEC62351-3ed2security] +2024-09-08 08:26:38,957 [main] TRACE UmlClass - created (1078) OTHER_CIM CIM class <> IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification, 1 superclasses=[AbstractAgent] +2024-09-08 08:26:38,957 [main] TRACE UmlClass - created (576) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent::Summary, 1 superclasses=[60870andDNPProtocolInfo] +2024-09-08 08:26:38,958 [main] TRACE UmlClass - created (914) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification, 1 superclasses=[AbstractAgent] +2024-09-08 08:26:38,958 [main] TRACE UmlClass - created (915) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification, 1 superclasses=[AbstractAgent] +2024-09-08 08:26:38,958 [main] TRACE UmlClass - created (1060) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary, 1 superclasses=[60870andDNPProtocolInfoEd2] +2024-09-08 08:26:38,958 [main] TRACE UmlClass - created (1055) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2, 1 superclasses=[AbstractAgent] +2024-09-08 08:26:38,958 [main] TRACE UmlClass - created (1061) OTHER_CIM CIM class <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2, 1 superclasses=[AbstractAgent] +2024-09-08 08:26:38,958 [main] TRACE UmlClass - created (152) OTHER_CIM CIM class <> ACSI::ACSISummary, 1 superclasses=[AbstractAgent] +2024-09-08 08:26:38,958 [main] TRACE UmlClass - created (691) OTHER_CIM CIM class <> MMS::MMSProvider, 1 superclasses=[MMSProtocolInfo] +2024-09-08 08:26:38,958 [main] TRACE UmlClass - created (920) OTHER_CIM CIM class <> MMS::MMSSecurityNotification, 1 superclasses=[AbstractAgent] +2024-09-08 08:26:38,958 [main] TRACE UmlClass - created (921) OTHER_CIM CIM class <> MMS::MMSNotification, 1 superclasses=[AbstractAgent] +2024-09-08 08:26:38,958 [main] TRACE UmlClass - created (1025) OTHER_CIM CIM class SV and GSE common objects::GSEandSVCommon, 1 superclasses=[AbstractAgent] +2024-09-08 08:26:38,958 [main] TRACE UmlClass - created (1026) OTHER_CIM CIM class SV and GSE common objects::GSEandSVPublisherAssociation, 1 superclasses=[GSEandSVCommon] +2024-09-08 08:26:38,958 [main] TRACE UmlClass - created (994) OTHER_CIM CIM class <> SV::SVPublisherAssociationIP, 1 superclasses=[GSEandSVPublisherAssociation] +2024-09-08 08:26:38,958 [main] TRACE UmlClass - created (995) OTHER_CIM CIM class <> SV::SVPublisherAssociationL2, 1 superclasses=[GSEandSVPublisherAssociation] +2024-09-08 08:26:38,958 [main] TRACE UmlClass - created (796) OTHER_CIM CIM class <> GSE::GSEPublisherAssociationIP, 1 superclasses=[GSEandSVPublisherAssociation] +2024-09-08 08:26:38,958 [main] TRACE UmlClass - created (984) OTHER_CIM CIM class <> GSE::GSEPublisherAssociationL2, 1 superclasses=[GSEandSVPublisherAssociation] +2024-09-08 08:26:38,959 [main] TRACE UmlClass - created (1027) OTHER_CIM CIM class SV and GSE common objects::GSEandSVSubscriberAssociation, 1 superclasses=[GSEandSVCommon] +2024-09-08 08:26:38,959 [main] TRACE UmlClass - created (998) OTHER_CIM CIM class <> SV::SVSubcriberAssociationIP, 1 superclasses=[GSEandSVSubscriberAssociation] +2024-09-08 08:26:38,959 [main] TRACE UmlClass - created (999) OTHER_CIM CIM class <> SV::SVSubcriberAssociationL2, 1 superclasses=[GSEandSVSubscriberAssociation] +2024-09-08 08:26:38,959 [main] TRACE UmlClass - created (986) OTHER_CIM CIM class GSE::GSESubscriberAssociation, 1 superclasses=[GSEandSVSubscriberAssociation] +2024-09-08 08:26:38,959 [main] TRACE UmlClass - created (979) OTHER_CIM CIM class <> GSE::GSESubcriberAssociationIP, 1 superclasses=[GSESubscriberAssociation] +2024-09-08 08:26:38,959 [main] TRACE UmlClass - created (977) OTHER_CIM CIM class <> GSE::GSESubcriberAssociationL2, 1 superclasses=[GSESubscriberAssociation] +2024-09-08 08:26:38,959 [main] TRACE UmlClass - created (1002) OTHER_CIM CIM class <> SV::SVProvider, 1 superclasses=[GSEandSVCommon] +2024-09-08 08:26:38,959 [main] TRACE UmlClass - created (997) OTHER_CIM CIM class <> SV::SVNotification, 1 superclasses=[GSEandSVCommon] +2024-09-08 08:26:38,959 [main] TRACE UmlClass - created (794) OTHER_CIM CIM class <> GSE::GSEProvider, 1 superclasses=[GSEandSVCommon] +2024-09-08 08:26:38,959 [main] TRACE UmlClass - created (930) OTHER_CIM CIM class <> GSE::GSENotification, 1 superclasses=[GSEandSVCommon] +2024-09-08 08:26:38,959 [main] TRACE UmlClass - created (609) OTHER_CIM CIM class <> Clocks Agent::Clock, 1 superclasses=[AbstractAgent] +2024-09-08 08:26:38,959 [main] TRACE UmlClass - created (608) OTHER_CIM CIM class <> Clocks Agent::ClockEntry, 1 superclasses=[AbstractAgent] +2024-09-08 08:26:38,960 [main] TRACE UmlClass - created (944) OTHER_CIM CIM class <> Clocks Agent::SecurityNotification, 1 superclasses=[AbstractAgent] +2024-09-08 08:26:38,960 [main] TRACE UmlClass - created (844) OTHER_CIM CIM class Interfaces Agent::Interface, 1 superclasses=[AbstractAgent] +2024-09-08 08:26:38,960 [main] TRACE UmlClass - created (838) OTHER_CIM CIM class <> Interfaces Agent::ETHEntry, 1 superclasses=[Interface] +2024-09-08 08:26:38,960 [main] TRACE UmlClass - created (842) OTHER_CIM CIM class <> Interfaces Agent::KEYEntry, 1 superclasses=[Interface] +2024-09-08 08:26:38,960 [main] TRACE UmlClass - created (836) OTHER_CIM CIM class <> Interfaces Agent::SEREntry, 1 superclasses=[Interface] +2024-09-08 08:26:38,960 [main] TRACE UmlClass - created (847) OTHER_CIM CIM class <> Interfaces Agent::ALGEntry, 1 superclasses=[Interface] +2024-09-08 08:26:38,960 [main] TRACE UmlClass - created (840) OTHER_CIM CIM class <> Interfaces Agent::USBEntry, 1 superclasses=[Interface] +2024-09-08 08:26:38,960 [main] TRACE UmlClass - created (834) OTHER_CIM CIM class <> Interfaces Agent::Interfaces, 1 superclasses=[AbstractAgent] +2024-09-08 08:26:38,960 [main] TRACE UmlClass - created (946) OTHER_CIM CIM class <> Interfaces Agent::Notification, 1 superclasses=[AbstractAgent] +2024-09-08 08:26:38,960 [main] INFO EaModelBuilder - reordering in-memory classes in packages ... +2024-09-08 08:26:38,960 [main] INFO EaModelBuilder - creating in-memory class' attributes, operations and constraints ... +2024-09-08 08:26:38,961 [main] ERROR UmlAttribute - unclassified CIM attribute: (3451) OTHER_CIM CIM [0..1] null nsmAgent::Class.isActive: NullCIM::NullCIM +2024-09-08 08:26:38,961 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,961 [main] TRACE UmlAttribute - created (3451) OTHER_CIM CIM [0..1] attribute nsmAgent::Class.isActive: NullCIM::NullCIM +2024-09-08 08:26:38,961 [main] ERROR UmlAttribute - unclassified CIM attribute: (3982) OTHER_CIM CIM [0..1] null nsmAgent::Class.isActive: NullCIM::NullCIM +2024-09-08 08:26:38,961 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,961 [main] TRACE UmlAttribute - created (3982) OTHER_CIM CIM [0..1] attribute nsmAgent::Class.isActive: NullCIM::NullCIM +2024-09-08 08:26:38,961 [main] ERROR UmlAttribute - unclassified CIM attribute: (3442) OTHER_CIM CIM [0..1] null nsmAgent::Class.isActive: NullCIM::NullCIM +2024-09-08 08:26:38,962 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,962 [main] TRACE UmlAttribute - created (3442) OTHER_CIM CIM [0..1] attribute nsmAgent::Class.isActive: NullCIM::NullCIM +2024-09-08 08:26:38,962 [main] ERROR UmlAttribute - unclassified CIM attribute: (3454) OTHER_CIM CIM [0..1] null nsmAgent::health.Version: NullCIM::NullCIM = 0 +2024-09-08 08:26:38,962 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-08 08:26:38,962 [main] TRACE UmlAttribute - created (3454) OTHER_CIM CIM [0..1] attribute nsmAgent::health.Version: NullCIM::NullCIM = 0 +2024-09-08 08:26:38,962 [main] ERROR UmlAttribute - unclassified CIM attribute: (3453) OTHER_CIM CIM [0..1] null nsmAgent::identity.Version: NullCIM::NullCIM = 0 +2024-09-08 08:26:38,962 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-08 08:26:38,962 [main] TRACE UmlAttribute - created (3453) OTHER_CIM CIM [0..1] attribute nsmAgent::identity.Version: NullCIM::NullCIM = 0 +2024-09-08 08:26:38,962 [main] ERROR UmlAttribute - unclassified CIM attribute: (3452) OTHER_CIM CIM [0..1] null nsmAgent::index.Version: NullCIM::NullCIM = 0 +2024-09-08 08:26:38,962 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-08 08:26:38,962 [main] TRACE UmlAttribute - created (3452) OTHER_CIM CIM [0..1] attribute nsmAgent::index.Version: NullCIM::NullCIM = 0 +2024-09-08 08:26:38,962 [main] ERROR UmlAttribute - unclassified CIM attribute: (3448) OTHER_CIM CIM [0..1] null nsmAgent::nsmAgent.mibPrefix: NullCIM::NullCIM +2024-09-08 08:26:38,963 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,963 [main] TRACE UmlAttribute - created (3448) OTHER_CIM CIM [0..1] attribute nsmAgent::nsmAgent.mibPrefix: NullCIM::NullCIM +2024-09-08 08:26:38,963 [main] ERROR UmlAttribute - unclassified CIM attribute: (3449) OTHER_CIM CIM [0..1] null nsmAgent::nsmAgent.objectIdentity: NullCIM::NullCIM +2024-09-08 08:26:38,963 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,963 [main] TRACE UmlAttribute - created (3449) OTHER_CIM CIM [0..1] attribute nsmAgent::nsmAgent.objectIdentity: NullCIM::NullCIM +2024-09-08 08:26:38,963 [main] ERROR UmlAttribute - unclassified CIM attribute: (3450) OTHER_CIM CIM [0..1] null nsmAgent::nsmAgent.objectBranchId: NullCIM::NullCIM +2024-09-08 08:26:38,963 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,964 [main] TRACE UmlAttribute - created (3450) OTHER_CIM CIM [0..1] attribute nsmAgent::nsmAgent.objectBranchId: NullCIM::NullCIM +2024-09-08 08:26:38,964 [main] ERROR UmlAttribute - unclassified CIM attribute: (3979) OTHER_CIM CIM [0..1] null nsmAgent::nsmEntry.mibPrefix: NullCIM::NullCIM +2024-09-08 08:26:38,964 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,964 [main] TRACE UmlAttribute - created (3979) OTHER_CIM CIM [0..1] attribute nsmAgent::nsmEntry.mibPrefix: NullCIM::NullCIM +2024-09-08 08:26:38,964 [main] ERROR UmlAttribute - unclassified CIM attribute: (3980) OTHER_CIM CIM [0..1] null nsmAgent::nsmEntry.objectIdentity: NullCIM::NullCIM +2024-09-08 08:26:38,964 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,964 [main] TRACE UmlAttribute - created (3980) OTHER_CIM CIM [0..1] attribute nsmAgent::nsmEntry.objectIdentity: NullCIM::NullCIM +2024-09-08 08:26:38,965 [main] ERROR UmlAttribute - unclassified CIM attribute: (3981) OTHER_CIM CIM [0..1] null nsmAgent::nsmEntry.objectBranchId: NullCIM::NullCIM +2024-09-08 08:26:38,965 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,965 [main] TRACE UmlAttribute - created (3981) OTHER_CIM CIM [0..1] attribute nsmAgent::nsmEntry.objectBranchId: NullCIM::NullCIM +2024-09-08 08:26:38,965 [main] ERROR UmlAttribute - unclassified CIM attribute: (3443) OTHER_CIM CIM [0..1] null nsmAgent::nsmEvent.mibPrefix: NullCIM::NullCIM +2024-09-08 08:26:38,965 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,965 [main] TRACE UmlAttribute - created (3443) OTHER_CIM CIM [0..1] attribute nsmAgent::nsmEvent.mibPrefix: NullCIM::NullCIM +2024-09-08 08:26:38,965 [main] ERROR UmlAttribute - unclassified CIM attribute: (3444) OTHER_CIM CIM [0..1] null nsmAgent::nsmEvent.objectIdentity: NullCIM::NullCIM +2024-09-08 08:26:38,965 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,965 [main] TRACE UmlAttribute - created (3444) OTHER_CIM CIM [0..1] attribute nsmAgent::nsmEvent.objectIdentity: NullCIM::NullCIM +2024-09-08 08:26:38,966 [main] ERROR UmlAttribute - unclassified CIM attribute: (3445) OTHER_CIM CIM [0..1] null nsmAgent::nsmEvent.objectBranchId: NullCIM::NullCIM +2024-09-08 08:26:38,966 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,966 [main] TRACE UmlAttribute - created (3445) OTHER_CIM CIM [0..1] attribute nsmAgent::nsmEvent.objectBranchId: NullCIM::NullCIM +2024-09-08 08:26:38,966 [main] ERROR UmlAttribute - unclassified CIM attribute: (3455) OTHER_CIM CIM [0..1] null nsmAgent::performance.Version: NullCIM::NullCIM = 0 +2024-09-08 08:26:38,966 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-08 08:26:38,966 [main] TRACE UmlAttribute - created (3455) OTHER_CIM CIM [0..1] attribute nsmAgent::performance.Version: NullCIM::NullCIM = 0 +2024-09-08 08:26:38,966 [main] ERROR UmlAttribute - unclassified CIM attribute: (3447) OTHER_CIM CIM [0..1] null nsmAgent::protocol.Version: NullCIM::NullCIM = 0 +2024-09-08 08:26:38,966 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-08 08:26:38,966 [main] TRACE UmlAttribute - created (3447) OTHER_CIM CIM [0..1] attribute nsmAgent::protocol.Version: NullCIM::NullCIM = 0 +2024-09-08 08:26:38,967 [main] ERROR UmlAttribute - unclassified CIM attribute: (3446) OTHER_CIM CIM [0..1] null nsmAgent::security.Version: NullCIM::NullCIM = 0 +2024-09-08 08:26:38,967 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-08 08:26:38,967 [main] TRACE UmlAttribute - created (3446) OTHER_CIM CIM [0..1] attribute nsmAgent::security.Version: NullCIM::NullCIM = 0 +2024-09-08 08:26:38,967 [main] ERROR UmlAttribute - unclassified CIM attribute: (3456) OTHER_CIM CIM [0..1] null nsmAgent::setvalue.Version: NullCIM::NullCIM = 0 +2024-09-08 08:26:38,967 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-08 08:26:38,967 [main] TRACE UmlAttribute - created (3456) OTHER_CIM CIM [0..1] attribute nsmAgent::setvalue.Version: NullCIM::NullCIM = 0 +2024-09-08 08:26:38,967 [main] ERROR UmlAttribute - unclassified CIM attribute: (3457) OTHER_CIM CIM [0..1] null nsmAgent::table.Version: NullCIM::NullCIM = 0 +2024-09-08 08:26:38,967 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-08 08:26:38,967 [main] TRACE UmlAttribute - created (3457) OTHER_CIM CIM [0..1] attribute nsmAgent::table.Version: NullCIM::NullCIM = 0 +2024-09-08 08:26:38,967 [main] ERROR UmlAttribute - unclassified CIM attribute: (3610) OTHER_CIM CIM [0..1] null nsmAgent::trap.Version: NullCIM::NullCIM = 0 +2024-09-08 08:26:38,968 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-08 08:26:38,968 [main] TRACE UmlAttribute - created (3610) OTHER_CIM CIM [0..1] attribute nsmAgent::trap.Version: NullCIM::NullCIM = 0 +2024-09-08 08:26:38,968 [main] ERROR UmlAttribute - unclassified CIM attribute: (2741) OTHER_CIM CIM [1..1] null BaseTypes::AbsoluteDateTime.value: NullCIM::NullCIM = OCTET STRING (SIZE(8..11)) +2024-09-08 08:26:38,968 [main] TRACE ValueRange - 'OCTET STRING (SIZE(8..11))' has no separator indicating range. +2024-09-08 08:26:38,968 [main] TRACE UmlAttribute - created (2741) OTHER_CIM CIM [1..1] attribute BaseTypes::AbsoluteDateTime.value: NullCIM::NullCIM = OCTET STRING (SIZE(8..11)) +2024-09-08 08:26:38,968 [main] ERROR UmlAttribute - unclassified CIM attribute: (2679) OTHER_CIM CIM [1..1] null BaseTypes::Counter32 .value: NullCIM::NullCIM = Counter32 +2024-09-08 08:26:38,968 [main] TRACE ValueRange - 'Counter32' has no separator indicating range. +2024-09-08 08:26:38,968 [main] TRACE UmlAttribute - created (2679) OTHER_CIM CIM [1..1] attribute BaseTypes::Counter32 .value: NullCIM::NullCIM = Counter32 +2024-09-08 08:26:38,968 [main] ERROR UmlAttribute - unclassified CIM attribute: (2681) OTHER_CIM CIM [1..1] null BaseTypes::DateAndTime.value: NullCIM::NullCIM = OCTET STRING (SIZE(8..11)) +2024-09-08 08:26:38,968 [main] TRACE ValueRange - 'OCTET STRING (SIZE(8..11))' has no separator indicating range. +2024-09-08 08:26:38,969 [main] TRACE UmlAttribute - created (2681) OTHER_CIM CIM [1..1] attribute BaseTypes::DateAndTime.value: NullCIM::NullCIM = OCTET STRING (SIZE(8..11)) +2024-09-08 08:26:38,969 [main] ERROR UmlAttribute - unclassified CIM attribute: (2683) OTHER_CIM CIM [1..1] null BaseTypes::DisplayString.value: NullCIM::NullCIM = DisplayString +2024-09-08 08:26:38,969 [main] TRACE ValueRange - 'DisplayString' has no separator indicating range. +2024-09-08 08:26:38,970 [main] TRACE UmlAttribute - created (2683) OTHER_CIM CIM [1..1] attribute BaseTypes::DisplayString.value: NullCIM::NullCIM = DisplayString +2024-09-08 08:26:38,970 [main] ERROR UmlAttribute - unclassified CIM attribute: (2682) OTHER_CIM CIM [1..1] null BaseTypes::Float32TC.value: NullCIM::NullCIM = OCTET STRING (SIZE(4)) +2024-09-08 08:26:38,970 [main] TRACE ValueRange - 'OCTET STRING (SIZE(4))' has no separator indicating range. +2024-09-08 08:26:38,970 [main] TRACE UmlAttribute - created (2682) OTHER_CIM CIM [1..1] attribute BaseTypes::Float32TC.value: NullCIM::NullCIM = OCTET STRING (SIZE(4)) +2024-09-08 08:26:38,970 [main] ERROR UmlAttribute - unclassified CIM attribute: (2678) OTHER_CIM CIM [1..1] null BaseTypes::Gauge32.value: NullCIM::NullCIM = Gauge32 +2024-09-08 08:26:38,971 [main] TRACE ValueRange - 'Gauge32' has no separator indicating range. +2024-09-08 08:26:38,971 [main] TRACE UmlAttribute - created (2678) OTHER_CIM CIM [1..1] attribute BaseTypes::Gauge32.value: NullCIM::NullCIM = Gauge32 +2024-09-08 08:26:38,971 [main] ERROR UmlAttribute - unclassified CIM attribute: (3682) OTHER_CIM CIM [1..1] null BaseTypes::InetAddress.value: NullCIM::NullCIM = DisplayString (SIZE(0..255)) +2024-09-08 08:26:38,971 [main] TRACE ValueRange - 'DisplayString (SIZE(0..255))' has no separator indicating range. +2024-09-08 08:26:38,971 [main] TRACE UmlAttribute - created (3682) OTHER_CIM CIM [1..1] attribute BaseTypes::InetAddress.value: NullCIM::NullCIM = DisplayString (SIZE(0..255)) +2024-09-08 08:26:38,971 [main] ERROR UmlAttribute - unclassified CIM attribute: (3719) OTHER_CIM CIM [1..1] null BaseTypes::MacAddress.value: NullCIM::NullCIM = DisplayString (SIZE(0..255)) +2024-09-08 08:26:38,971 [main] TRACE ValueRange - 'DisplayString (SIZE(0..255))' has no separator indicating range. +2024-09-08 08:26:38,971 [main] TRACE UmlAttribute - created (3719) OTHER_CIM CIM [1..1] attribute BaseTypes::MacAddress.value: NullCIM::NullCIM = DisplayString (SIZE(0..255)) +2024-09-08 08:26:38,971 [main] ERROR UmlAttribute - unclassified CIM attribute: (3723) OTHER_CIM CIM [1..1] null BaseTypes::EntityIndex.value: NullCIM::NullCIM = Integer32 +2024-09-08 08:26:38,972 [main] TRACE ValueRange - 'Integer32' has no separator indicating range. +2024-09-08 08:26:38,972 [main] TRACE UmlAttribute - created (3723) OTHER_CIM CIM [1..1] attribute BaseTypes::EntityIndex.value: NullCIM::NullCIM = Integer32 +2024-09-08 08:26:38,972 [main] ERROR UmlAttribute - unclassified CIM attribute: (1397) OTHER_CIM CIM [1..1] null BaseTypes::Integer32.value: NullCIM::NullCIM = Integer32 +2024-09-08 08:26:38,972 [main] TRACE ValueRange - 'Integer32' has no separator indicating range. +2024-09-08 08:26:38,972 [main] TRACE UmlAttribute - created (1397) OTHER_CIM CIM [1..1] attribute BaseTypes::Integer32.value: NullCIM::NullCIM = Integer32 +2024-09-08 08:26:38,972 [main] ERROR UmlAttribute - unclassified CIM attribute: (3721) OTHER_CIM CIM [1..1] null BaseTypes::Unsigned32.value: NullCIM::NullCIM = Integer32 +2024-09-08 08:26:38,972 [main] TRACE ValueRange - 'Integer32' has no separator indicating range. +2024-09-08 08:26:38,972 [main] TRACE UmlAttribute - created (3721) OTHER_CIM CIM [1..1] attribute BaseTypes::Unsigned32.value: NullCIM::NullCIM = Integer32 +2024-09-08 08:26:38,973 [main] ERROR UmlAttribute - unclassified CIM attribute: (2680) OTHER_CIM CIM [1..1] null BaseTypes::TimeTicks.value: NullCIM::NullCIM = TimeTicks +2024-09-08 08:26:38,973 [main] TRACE ValueRange - 'TimeTicks' has no separator indicating range. +2024-09-08 08:26:38,973 [main] TRACE UmlAttribute - created (2680) OTHER_CIM CIM [1..1] attribute BaseTypes::TimeTicks.value: NullCIM::NullCIM = TimeTicks +2024-09-08 08:26:38,973 [main] ERROR UmlAttribute - unclassified CIM attribute: (2685) OTHER_CIM CIM [1..1] null BaseTypes::TruthValue.value: NullCIM::NullCIM = TruthValue +2024-09-08 08:26:38,973 [main] TRACE ValueRange - 'TruthValue' has no separator indicating range. +2024-09-08 08:26:38,973 [main] TRACE UmlAttribute - created (2685) OTHER_CIM CIM [1..1] attribute BaseTypes::TruthValue.value: NullCIM::NullCIM = TruthValue +2024-09-08 08:26:38,973 [main] ERROR UmlAttribute - unclassified CIM attribute: (2987) OTHER_CIM CIM [1..1] null Abstract Types::BooleanValue.Value: BaseTypes::TruthValue +2024-09-08 08:26:38,973 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,973 [main] TRACE UmlAttribute - created (2987) OTHER_CIM CIM [1..1] attribute Abstract Types::BooleanValue.Value: BaseTypes::TruthValue +2024-09-08 08:26:38,973 [main] ERROR UmlAttribute - unclassified CIM attribute: (2915) OTHER_CIM CIM [1..1] null Abstract Types::BooleanValueTs.TimeStamp: BaseTypes::DateAndTime +2024-09-08 08:26:38,973 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,974 [main] TRACE UmlAttribute - created (2915) OTHER_CIM CIM [1..1] attribute Abstract Types::BooleanValueTs.TimeStamp: BaseTypes::DateAndTime +2024-09-08 08:26:38,974 [main] ERROR UmlAttribute - unclassified CIM attribute: (2916) OTHER_CIM CIM [1..1] null Abstract Types::BooleanValueTs.Value: BaseTypes::TruthValue +2024-09-08 08:26:38,974 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,974 [main] TRACE UmlAttribute - created (2916) OTHER_CIM CIM [1..1] attribute Abstract Types::BooleanValueTs.Value: BaseTypes::TruthValue +2024-09-08 08:26:38,974 [main] ERROR UmlAttribute - unclassified CIM attribute: (2921) OTHER_CIM CIM [1..1] null Abstract Types::CounterTs.TimeStamp: BaseTypes::DateAndTime +2024-09-08 08:26:38,974 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,974 [main] TRACE UmlAttribute - created (2921) OTHER_CIM CIM [1..1] attribute Abstract Types::CounterTs.TimeStamp: BaseTypes::DateAndTime +2024-09-08 08:26:38,975 [main] ERROR UmlAttribute - unclassified CIM attribute: (2922) OTHER_CIM CIM [1..1] null Abstract Types::CounterTs.Value: BaseTypes::Counter32 +2024-09-08 08:26:38,975 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,975 [main] TRACE UmlAttribute - created (2922) OTHER_CIM CIM [1..1] attribute Abstract Types::CounterTs.Value: BaseTypes::Counter32 +2024-09-08 08:26:38,975 [main] ERROR UmlAttribute - unclassified CIM attribute: (3004) OTHER_CIM CIM [1..1] null Abstract Types::CntRs.TimeStamp: BaseTypes::DateAndTime +2024-09-08 08:26:38,975 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,975 [main] TRACE UmlAttribute - created (3004) OTHER_CIM CIM [1..1] attribute Abstract Types::CntRs.TimeStamp: BaseTypes::DateAndTime +2024-09-08 08:26:38,975 [main] ERROR UmlAttribute - unclassified CIM attribute: (3003) OTHER_CIM CIM [1..1] null Abstract Types::CntRs.Value: BaseTypes::TruthValue +2024-09-08 08:26:38,975 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,975 [main] TRACE UmlAttribute - created (3003) OTHER_CIM CIM [1..1] attribute Abstract Types::CntRs.Value: BaseTypes::TruthValue +2024-09-08 08:26:38,975 [main] ERROR UmlAttribute - unclassified CIM attribute: (2937) OTHER_CIM CIM [1..1] null Abstract Types::Floating.Value: BaseTypes::Float32TC +2024-09-08 08:26:38,976 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,976 [main] TRACE UmlAttribute - created (2937) OTHER_CIM CIM [1..1] attribute Abstract Types::Floating.Value: BaseTypes::Float32TC +2024-09-08 08:26:38,976 [main] ERROR UmlAttribute - unclassified CIM attribute: (2939) OTHER_CIM CIM [1..1] null Abstract Types::FloatingTs.TimeStamp: BaseTypes::DateAndTime +2024-09-08 08:26:38,976 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,976 [main] TRACE UmlAttribute - created (2939) OTHER_CIM CIM [1..1] attribute Abstract Types::FloatingTs.TimeStamp: BaseTypes::DateAndTime +2024-09-08 08:26:38,976 [main] ERROR UmlAttribute - unclassified CIM attribute: (2940) OTHER_CIM CIM [1..1] null Abstract Types::FloatingTs.Value: BaseTypes::Float32TC +2024-09-08 08:26:38,976 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,976 [main] TRACE UmlAttribute - created (2940) OTHER_CIM CIM [1..1] attribute Abstract Types::FloatingTs.Value: BaseTypes::Float32TC +2024-09-08 08:26:38,976 [main] ERROR UmlAttribute - unclassified CIM attribute: (3724) OTHER_CIM CIM [1..1] null Abstract Types::EntityIndex.Value: BaseTypes::Unsigned32 +2024-09-08 08:26:38,977 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,977 [main] TRACE UmlAttribute - created (3724) OTHER_CIM CIM [1..1] attribute Abstract Types::EntityIndex.Value: BaseTypes::Unsigned32 +2024-09-08 08:26:38,977 [main] ERROR UmlAttribute - unclassified CIM attribute: (2928) OTHER_CIM CIM [1..1] null Abstract Types::Integer.Value: BaseTypes::Integer32 +2024-09-08 08:26:38,977 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,977 [main] TRACE UmlAttribute - created (2928) OTHER_CIM CIM [1..1] attribute Abstract Types::Integer.Value: BaseTypes::Integer32 +2024-09-08 08:26:38,978 [main] ERROR UmlAttribute - unclassified CIM attribute: (2930) OTHER_CIM CIM [1..1] null Abstract Types::IntegerTs.TimeStamp: BaseTypes::DateAndTime +2024-09-08 08:26:38,978 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,978 [main] TRACE UmlAttribute - created (2930) OTHER_CIM CIM [1..1] attribute Abstract Types::IntegerTs.TimeStamp: BaseTypes::DateAndTime +2024-09-08 08:26:38,978 [main] ERROR UmlAttribute - unclassified CIM attribute: (2931) OTHER_CIM CIM [1..1] null Abstract Types::IntegerTs.Value: BaseTypes::Integer32 +2024-09-08 08:26:38,978 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,978 [main] TRACE UmlAttribute - created (2931) OTHER_CIM CIM [1..1] attribute Abstract Types::IntegerTs.Value: BaseTypes::Integer32 +2024-09-08 08:26:38,978 [main] ERROR UmlAttribute - unclassified CIM attribute: (3017) OTHER_CIM CIM [1..1] null Abstract Types::InetAddress.Value: BaseTypes::InetAddress +2024-09-08 08:26:38,978 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,978 [main] TRACE UmlAttribute - created (3017) OTHER_CIM CIM [1..1] attribute Abstract Types::InetAddress.Value: BaseTypes::InetAddress +2024-09-08 08:26:38,979 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,979 [main] TRACE UmlAttribute - created (3690) OTHER_CIM CIM [1..1] enumeration attribute Abstract Types::InetAddressType.Value: BaseTypes::InetAddressType +2024-09-08 08:26:38,979 [main] ERROR UmlAttribute - unclassified CIM attribute: (3019) OTHER_CIM CIM [1..1] null Abstract Types::MacAddress.Value: BaseTypes::MacAddress +2024-09-08 08:26:38,979 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,979 [main] TRACE UmlAttribute - created (3019) OTHER_CIM CIM [1..1] attribute Abstract Types::MacAddress.Value: BaseTypes::MacAddress +2024-09-08 08:26:38,979 [main] ERROR UmlAttribute - unclassified CIM attribute: (3015) OTHER_CIM CIM [1..1] null Abstract Types::Selector.Value: BaseTypes::DisplayString +2024-09-08 08:26:38,979 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,979 [main] TRACE UmlAttribute - created (3015) OTHER_CIM CIM [1..1] attribute Abstract Types::Selector.Value: BaseTypes::DisplayString +2024-09-08 08:26:38,979 [main] ERROR UmlAttribute - unclassified CIM attribute: (3083) OTHER_CIM CIM [1..1] null Abstract Types::Timestamp.TimeStamp: BaseTypes::DateAndTime +2024-09-08 08:26:38,980 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,981 [main] TRACE UmlAttribute - created (3083) OTHER_CIM CIM [1..1] attribute Abstract Types::Timestamp.TimeStamp: BaseTypes::DateAndTime +2024-09-08 08:26:38,981 [main] ERROR UmlAttribute - unclassified CIM attribute: (2989) OTHER_CIM CIM [1..1] null Abstract Types::CharString.Value: BaseTypes::DisplayString +2024-09-08 08:26:38,981 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,981 [main] TRACE UmlAttribute - created (2989) OTHER_CIM CIM [1..1] attribute Abstract Types::CharString.Value: BaseTypes::DisplayString +2024-09-08 08:26:38,981 [main] ERROR UmlAttribute - unclassified CIM attribute: (3380) OTHER_CIM CIM [1..1] null Abstract Types::CharStringTs.TimeStamp: BaseTypes::DateAndTime +2024-09-08 08:26:38,981 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,981 [main] TRACE UmlAttribute - created (3380) OTHER_CIM CIM [1..1] attribute Abstract Types::CharStringTs.TimeStamp: BaseTypes::DateAndTime +2024-09-08 08:26:38,981 [main] ERROR UmlAttribute - unclassified CIM attribute: (3379) OTHER_CIM CIM [1..1] null Abstract Types::CharStringTs.Value: BaseTypes::DisplayString +2024-09-08 08:26:38,982 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,982 [main] TRACE UmlAttribute - created (3379) OTHER_CIM CIM [1..1] attribute Abstract Types::CharStringTs.Value: BaseTypes::DisplayString +2024-09-08 08:26:38,982 [main] ERROR UmlAttribute - unclassified CIM attribute: (2991) OTHER_CIM CIM [1..1] null EnumeratedTypes::AppDatStType.TimeStamp: BaseTypes::DateAndTime +2024-09-08 08:26:38,982 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,982 [main] TRACE UmlAttribute - created (2991) OTHER_CIM CIM [1..1] attribute EnumeratedTypes::AppDatStType.TimeStamp: BaseTypes::DateAndTime +2024-09-08 08:26:38,982 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,982 [main] TRACE UmlAttribute - created (2992) OTHER_CIM CIM [1..1] enumeration attribute <> EnumeratedTypes::AppDatStType.Value: EnumeratedTypes::AppDatStKind +2024-09-08 08:26:38,982 [main] ERROR UmlAttribute - unclassified CIM attribute: (4116) OTHER_CIM CIM [1..1] null EnumeratedTypes::PhyHealthType.TimeStamp: BaseTypes::DateAndTime +2024-09-08 08:26:38,982 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,982 [main] TRACE UmlAttribute - created (4116) OTHER_CIM CIM [1..1] attribute EnumeratedTypes::PhyHealthType.TimeStamp: BaseTypes::DateAndTime +2024-09-08 08:26:38,982 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,983 [main] TRACE UmlAttribute - created (4117) OTHER_CIM CIM [1..1] enumeration attribute <> EnumeratedTypes::PhyHealthType.Value: EnumeratedTypes::PhyHealthKind +2024-09-08 08:26:38,983 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,983 [main] TRACE UmlAttribute - created (3367) OTHER_CIM CIM [1..1] enumeration attribute EnumeratedTypes::ExtType.Value: EnumeratedTypes::ExtKind +2024-09-08 08:26:38,983 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,983 [main] TRACE UmlAttribute - created (3395) OTHER_CIM CIM [1..1] enumeration attribute EnumeratedTypes::IntType.Value: EnumeratedTypes::IntKind +2024-09-08 08:26:38,983 [main] ERROR UmlAttribute - unclassified CIM attribute: (3705) OTHER_CIM CIM [1..1] null EnumeratedTypes::EventType.TimeStamp: BaseTypes::DateAndTime +2024-09-08 08:26:38,983 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,983 [main] TRACE UmlAttribute - created (3705) OTHER_CIM CIM [1..1] attribute EnumeratedTypes::EventType.TimeStamp: BaseTypes::DateAndTime +2024-09-08 08:26:38,983 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,983 [main] TRACE UmlAttribute - created (3704) OTHER_CIM CIM [1..1] enumeration attribute EnumeratedTypes::EventType.Value: EnumeratedTypes::EventKind +2024-09-08 08:26:38,983 [main] ERROR UmlAttribute - unclassified CIM attribute: (3378) OTHER_CIM CIM [1..1] null EnumeratedTypes::PSPAccType.Timestamp: BaseTypes::DateAndTime +2024-09-08 08:26:38,983 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,984 [main] TRACE UmlAttribute - created (3378) OTHER_CIM CIM [1..1] attribute EnumeratedTypes::PSPAccType.Timestamp: BaseTypes::DateAndTime +2024-09-08 08:26:38,984 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,984 [main] TRACE UmlAttribute - created (3377) OTHER_CIM CIM [1..1] enumeration attribute EnumeratedTypes::PSPAccType.Value: EnumeratedTypes::PSPAccKind +2024-09-08 08:26:38,984 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,984 [main] TRACE UmlAttribute - created (3011) OTHER_CIM CIM [1..1] enumeration attribute EnumeratedTypes::ProtIdType.Value: EnumeratedTypes::ProtIdKind +2024-09-08 08:26:38,984 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,984 [main] TRACE UmlAttribute - created (3006) OTHER_CIM CIM [1..1] enumeration attribute EnumeratedTypes::TimSyncIssueType.Value: EnumeratedTypes::TimSyncIssueKind +2024-09-08 08:26:38,984 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,984 [main] TRACE UmlAttribute - created (3929) OTHER_CIM CIM [1..1] enumeration attribute EnumeratedTypes::SecurityProfileType.Value: EnumeratedTypes::SecurityProfileKind +2024-09-08 08:26:38,984 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,984 [main] TRACE UmlAttribute - created (3008) OTHER_CIM CIM [1..1] enumeration attribute EnumeratedTypes::TimSyncSrcType.Value: EnumeratedTypes::TimSyncSrcKind +2024-09-08 08:26:38,984 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,985 [main] TRACE UmlAttribute - created (3010) OTHER_CIM CIM [1..1] enumeration attribute EnumeratedTypes::LnkType.Value: EnumeratedTypes::LnkKind +2024-09-08 08:26:38,985 [main] ERROR UmlAttribute - unclassified CIM attribute: (2673) OTHER_CIM CIM const [1..1] null <> Environmental Agent::Environmental.AppDatSt: EnumeratedTypes::AppDatStType +2024-09-08 08:26:38,985 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,985 [main] TRACE UmlAttribute - created (2673) OTHER_CIM CIM const [1..1] attribute <> Environmental Agent::Environmental.AppDatSt: EnumeratedTypes::AppDatStType +2024-09-08 08:26:38,985 [main] ERROR UmlAttribute - unclassified CIM attribute: (596) OTHER_CIM CIM [0..1] null <> Environmental Agent::Environmental.CntRs: Abstract Types::CntRs +2024-09-08 08:26:38,985 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,985 [main] TRACE UmlAttribute - created (596) OTHER_CIM CIM [0..1] attribute <> Environmental Agent::Environmental.CntRs: Abstract Types::CntRs +2024-09-08 08:26:38,985 [main] ERROR UmlAttribute - unclassified CIM attribute: (3707) OTHER_CIM CIM const [1..1] null <> Environmental Agent::Environmental.LastEvent: EnumeratedTypes::EventType +2024-09-08 08:26:38,986 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,986 [main] TRACE UmlAttribute - created (3707) OTHER_CIM CIM const [1..1] attribute <> Environmental Agent::Environmental.LastEvent: EnumeratedTypes::EventType +2024-09-08 08:26:38,986 [main] ERROR UmlAttribute - unclassified CIM attribute: (2257) OTHER_CIM CIM const [0..1] null <> Environmental Agent::Environmental.PSPBld: Abstract Types::BooleanValueTs +2024-09-08 08:26:38,986 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,986 [main] TRACE UmlAttribute - created (2257) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::Environmental.PSPBld: Abstract Types::BooleanValueTs +2024-09-08 08:26:38,986 [main] ERROR UmlAttribute - unclassified CIM attribute: (2255) OTHER_CIM CIM const [1..1] null <> Environmental Agent::Environmental.PSPIed: Abstract Types::BooleanValueTs +2024-09-08 08:26:38,986 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,986 [main] TRACE UmlAttribute - created (2255) OTHER_CIM CIM const [1..1] attribute <> Environmental Agent::Environmental.PSPIed: Abstract Types::BooleanValueTs +2024-09-08 08:26:38,986 [main] ERROR UmlAttribute - unclassified CIM attribute: (2256) OTHER_CIM CIM const [1..1] null <> Environmental Agent::Environmental.PSPPanel: Abstract Types::BooleanValueTs +2024-09-08 08:26:38,987 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,987 [main] TRACE UmlAttribute - created (2256) OTHER_CIM CIM const [1..1] attribute <> Environmental Agent::Environmental.PSPPanel: Abstract Types::BooleanValueTs +2024-09-08 08:26:38,987 [main] ERROR UmlAttribute - unclassified CIM attribute: (2258) OTHER_CIM CIM const [0..1] null <> Environmental Agent::Environmental.PSPPerimeter: Abstract Types::BooleanValueTs +2024-09-08 08:26:38,987 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,987 [main] TRACE UmlAttribute - created (2258) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::Environmental.PSPPerimeter: Abstract Types::BooleanValueTs +2024-09-08 08:26:38,987 [main] ERROR UmlAttribute - unclassified CIM attribute: (152) OTHER_CIM CIM [0..*] null <
> Environmental Agent::Environmental.PSUP: Environmental Agent::PSUPEntry +2024-09-08 08:26:38,987 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,987 [main] TRACE UmlAttribute - created (152) OTHER_CIM CIM [0..*] attribute <
> Environmental Agent::Environmental.PSUP: Environmental Agent::PSUPEntry +2024-09-08 08:26:38,987 [main] ERROR UmlAttribute - unclassified CIM attribute: (2260) OTHER_CIM CIM const [0..1] null <> Environmental Agent::Environmental.PSUPLos: Abstract Types::Integer +2024-09-08 08:26:38,988 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,988 [main] TRACE UmlAttribute - created (2260) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::Environmental.PSUPLos: Abstract Types::Integer +2024-09-08 08:26:38,988 [main] ERROR UmlAttribute - unclassified CIM attribute: (2259) OTHER_CIM CIM const [1..1] null <> Environmental Agent::Environmental.PSUPOn: Abstract Types::IntegerTs +2024-09-08 08:26:38,988 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,988 [main] TRACE UmlAttribute - created (2259) OTHER_CIM CIM const [1..1] attribute <> Environmental Agent::Environmental.PSUPOn: Abstract Types::IntegerTs +2024-09-08 08:26:38,988 [main] ERROR UmlAttribute - unclassified CIM attribute: (3622) OTHER_CIM CIM [0..1] null <> Environmental Agent::Environmental.SecurityNotification: Environmental Agent::SecurityNotification +2024-09-08 08:26:38,988 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,988 [main] TRACE UmlAttribute - created (3622) OTHER_CIM CIM [0..1] attribute <> Environmental Agent::Environmental.SecurityNotification: Environmental Agent::SecurityNotification +2024-09-08 08:26:38,988 [main] ERROR UmlAttribute - unclassified CIM attribute: (3621) OTHER_CIM CIM [0..1] null <> Environmental Agent::Environmental.StateNotification: Environmental Agent::Notification +2024-09-08 08:26:38,988 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,988 [main] TRACE UmlAttribute - created (3621) OTHER_CIM CIM [0..1] attribute <> Environmental Agent::Environmental.StateNotification: Environmental Agent::Notification +2024-09-08 08:26:38,989 [main] ERROR UmlAttribute - unclassified CIM attribute: (4501) OTHER_CIM CIM [1..1] null <> Environmental Agent::Environmental.PSPRemote: Abstract Types::BooleanValueTs +2024-09-08 08:26:38,989 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,989 [main] TRACE UmlAttribute - created (4501) OTHER_CIM CIM [1..1] attribute <> Environmental Agent::Environmental.PSPRemote: Abstract Types::BooleanValueTs +2024-09-08 08:26:38,989 [main] ERROR UmlAttribute - unclassified CIM attribute: (2663) OTHER_CIM CIM [0..1] null <> Environmental Agent::PSUPEntry.CntRs: Abstract Types::CntRs +2024-09-08 08:26:38,989 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,989 [main] TRACE UmlAttribute - created (2663) OTHER_CIM CIM [0..1] attribute <> Environmental Agent::PSUPEntry.CntRs: Abstract Types::CntRs +2024-09-08 08:26:38,989 [main] ERROR UmlAttribute - unclassified CIM attribute: (2671) OTHER_CIM CIM const [0..1] null <> Environmental Agent::PSUPEntry.Descr: Abstract Types::CharString +2024-09-08 08:26:38,989 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,989 [main] TRACE UmlAttribute - created (2671) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::PSUPEntry.Descr: Abstract Types::CharString +2024-09-08 08:26:38,989 [main] ERROR UmlAttribute - unclassified CIM attribute: (3725) OTHER_CIM CIM const [0..1] null <> Environmental Agent::PSUPEntry.ID: Abstract Types::EntityIndex +2024-09-08 08:26:38,989 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,990 [main] TRACE UmlAttribute - created (3725) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::PSUPEntry.ID: Abstract Types::EntityIndex +2024-09-08 08:26:38,990 [main] ERROR UmlAttribute - unclassified CIM attribute: (2670) OTHER_CIM CIM const [0..1] null <> Environmental Agent::PSUPEntry.Name: Abstract Types::CharString +2024-09-08 08:26:38,990 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,990 [main] TRACE UmlAttribute - created (2670) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::PSUPEntry.Name: Abstract Types::CharString +2024-09-08 08:26:38,990 [main] ERROR UmlAttribute - unclassified CIM attribute: (2669) OTHER_CIM CIM const [0..1] null <> Environmental Agent::PSUPEntry.PSUPLos: Abstract Types::BooleanValueTs +2024-09-08 08:26:38,990 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,990 [main] TRACE UmlAttribute - created (2669) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::PSUPEntry.PSUPLos: Abstract Types::BooleanValueTs +2024-09-08 08:26:38,990 [main] ERROR UmlAttribute - unclassified CIM attribute: (2661) OTHER_CIM CIM const [0..1] null <> Environmental Agent::PSUPEntry.PwrLosCnt: Abstract Types::CounterTs +2024-09-08 08:26:38,990 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,990 [main] TRACE UmlAttribute - created (2661) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::PSUPEntry.PwrLosCnt: Abstract Types::CounterTs +2024-09-08 08:26:38,990 [main] ERROR UmlAttribute - unclassified CIM attribute: (2728) OTHER_CIM CIM const [0..1] null <> Environmental Agent::PSUPEntry.PwrOn: Abstract Types::BooleanValueTs +2024-09-08 08:26:38,990 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,991 [main] TRACE UmlAttribute - created (2728) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::PSUPEntry.PwrOn: Abstract Types::BooleanValueTs +2024-09-08 08:26:38,991 [main] ERROR UmlAttribute - unclassified CIM attribute: (3463) OTHER_CIM CIM const [0..1] null <> Environmental Agent::Notification.PSUPLos: Abstract Types::Integer +2024-09-08 08:26:38,991 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,991 [main] TRACE UmlAttribute - created (3463) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::Notification.PSUPLos: Abstract Types::Integer +2024-09-08 08:26:38,991 [main] ERROR UmlAttribute - unclassified CIM attribute: (3462) OTHER_CIM CIM const [0..1] null <> Environmental Agent::Notification.PSUPOn: Abstract Types::IntegerTs +2024-09-08 08:26:38,991 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,991 [main] TRACE UmlAttribute - created (3462) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::Notification.PSUPOn: Abstract Types::IntegerTs +2024-09-08 08:26:38,991 [main] ERROR UmlAttribute - unclassified CIM attribute: (4039) OTHER_CIM CIM const [0..1] null <> Environmental Agent::SecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-08 08:26:38,991 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,991 [main] TRACE UmlAttribute - created (4039) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::SecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-08 08:26:38,991 [main] ERROR UmlAttribute - unclassified CIM attribute: (3432) OTHER_CIM CIM const [0..1] null <> Environmental Agent::SecurityNotification.PSPBld: Abstract Types::Timestamp +2024-09-08 08:26:38,991 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,991 [main] TRACE UmlAttribute - created (3432) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::SecurityNotification.PSPBld: Abstract Types::Timestamp +2024-09-08 08:26:38,992 [main] ERROR UmlAttribute - unclassified CIM attribute: (3430) OTHER_CIM CIM const [0..1] null <> Environmental Agent::SecurityNotification.PSPIed: Abstract Types::Timestamp +2024-09-08 08:26:38,992 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,992 [main] TRACE UmlAttribute - created (3430) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::SecurityNotification.PSPIed: Abstract Types::Timestamp +2024-09-08 08:26:38,992 [main] ERROR UmlAttribute - unclassified CIM attribute: (3431) OTHER_CIM CIM const [0..1] null <> Environmental Agent::SecurityNotification.PSPPanel: Abstract Types::Timestamp +2024-09-08 08:26:38,992 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,992 [main] TRACE UmlAttribute - created (3431) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::SecurityNotification.PSPPanel: Abstract Types::Timestamp +2024-09-08 08:26:38,992 [main] ERROR UmlAttribute - unclassified CIM attribute: (3433) OTHER_CIM CIM const [0..1] null <> Environmental Agent::SecurityNotification.PSPPerimeter: Abstract Types::Timestamp +2024-09-08 08:26:38,992 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,992 [main] TRACE UmlAttribute - created (3433) OTHER_CIM CIM const [0..1] attribute <> Environmental Agent::SecurityNotification.PSPPerimeter: Abstract Types::Timestamp +2024-09-08 08:26:38,992 [main] ERROR UmlAttribute - unclassified CIM attribute: (159) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.AtkCnt: Abstract Types::CounterTs +2024-09-08 08:26:38,992 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,993 [main] TRACE UmlAttribute - created (159) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.AtkCnt: Abstract Types::CounterTs +2024-09-08 08:26:38,993 [main] ERROR UmlAttribute - unclassified CIM attribute: (593) OTHER_CIM CIM [0..1] null <> IED Agent::IED.CntRs: Abstract Types::CntRs +2024-09-08 08:26:38,993 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,993 [main] TRACE UmlAttribute - created (593) OTHER_CIM CIM [0..1] attribute <> IED Agent::IED.CntRs: Abstract Types::CntRs +2024-09-08 08:26:38,993 [main] ERROR UmlAttribute - unclassified CIM attribute: (3365) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.ConfigurationCRC: Abstract Types::IntegerTs +2024-09-08 08:26:38,993 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,993 [main] TRACE UmlAttribute - created (3365) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.ConfigurationCRC: Abstract Types::IntegerTs +2024-09-08 08:26:38,993 [main] ERROR UmlAttribute - unclassified CIM attribute: (3364) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.ConfigurationVersion: Abstract Types::CharStringTs +2024-09-08 08:26:38,993 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,993 [main] TRACE UmlAttribute - created (3364) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.ConfigurationVersion: Abstract Types::CharStringTs +2024-09-08 08:26:38,993 [main] ERROR UmlAttribute - unclassified CIM attribute: (3264) OTHER_CIM CIM [0..*] null <
> IED Agent::IED.CPU: IED Agent::CPUEntry +2024-09-08 08:26:38,993 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,994 [main] TRACE UmlAttribute - created (3264) OTHER_CIM CIM [0..*] attribute <
> IED Agent::IED.CPU: IED Agent::CPUEntry +2024-09-08 08:26:38,994 [main] ERROR UmlAttribute - unclassified CIM attribute: (164) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.CpuUsage: Abstract Types::FloatingTs +2024-09-08 08:26:38,994 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,994 [main] TRACE UmlAttribute - created (164) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.CpuUsage: Abstract Types::FloatingTs +2024-09-08 08:26:38,994 [main] ERROR UmlAttribute - unclassified CIM attribute: (165) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.DataInv: Abstract Types::CounterTs +2024-09-08 08:26:38,994 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,994 [main] TRACE UmlAttribute - created (165) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.DataInv: Abstract Types::CounterTs +2024-09-08 08:26:38,994 [main] ERROR UmlAttribute - unclassified CIM attribute: (1904) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.Descr: Abstract Types::CharString +2024-09-08 08:26:38,994 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,994 [main] TRACE UmlAttribute - created (1904) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.Descr: Abstract Types::CharString +2024-09-08 08:26:38,994 [main] ERROR UmlAttribute - unclassified CIM attribute: (174) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.ExpCerts: Abstract Types::IntegerTs +2024-09-08 08:26:38,994 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,995 [main] TRACE UmlAttribute - created (174) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.ExpCerts: Abstract Types::IntegerTs +2024-09-08 08:26:38,995 [main] ERROR UmlAttribute - unclassified CIM attribute: (3332) OTHER_CIM CIM [0..*] null <
> IED Agent::IED.EXT: IED Agent::EXTEntry +2024-09-08 08:26:38,995 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,995 [main] TRACE UmlAttribute - created (3332) OTHER_CIM CIM [0..*] attribute <
> IED Agent::IED.EXT: IED Agent::EXTEntry +2024-09-08 08:26:38,995 [main] ERROR UmlAttribute - unclassified CIM attribute: (3357) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.FirmwareVersion: Abstract Types::CharStringTs +2024-09-08 08:26:38,995 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,995 [main] TRACE UmlAttribute - created (3357) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.FirmwareVersion: Abstract Types::CharStringTs +2024-09-08 08:26:38,995 [main] ERROR UmlAttribute - unclassified CIM attribute: (1908) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.InternalTemp: Abstract Types::FloatingTs +2024-09-08 08:26:38,995 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,995 [main] TRACE UmlAttribute - created (1908) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.InternalTemp: Abstract Types::FloatingTs +2024-09-08 08:26:38,995 [main] ERROR UmlAttribute - unclassified CIM attribute: (3493) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.LastCPUFail: Abstract Types::IntegerTs +2024-09-08 08:26:38,995 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,996 [main] TRACE UmlAttribute - created (3493) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.LastCPUFail: Abstract Types::IntegerTs +2024-09-08 08:26:38,996 [main] ERROR UmlAttribute - unclassified CIM attribute: (3706) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.LastEvent: EnumeratedTypes::EventType +2024-09-08 08:26:38,996 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,996 [main] TRACE UmlAttribute - created (3706) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.LastEvent: EnumeratedTypes::EventType +2024-09-08 08:26:38,996 [main] ERROR UmlAttribute - unclassified CIM attribute: (3494) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.LastEXTFail: Abstract Types::IntegerTs +2024-09-08 08:26:38,996 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,996 [main] TRACE UmlAttribute - created (3494) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.LastEXTFail: Abstract Types::IntegerTs +2024-09-08 08:26:38,996 [main] ERROR UmlAttribute - unclassified CIM attribute: (3492) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.LastSTOREFail: Abstract Types::IntegerTs +2024-09-08 08:26:38,997 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,997 [main] TRACE UmlAttribute - created (3492) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.LastSTOREFail: Abstract Types::IntegerTs +2024-09-08 08:26:38,997 [main] ERROR UmlAttribute - unclassified CIM attribute: (3256) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.Location: Abstract Types::CharString +2024-09-08 08:26:38,997 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,997 [main] TRACE UmlAttribute - created (3256) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.Location: Abstract Types::CharString +2024-09-08 08:26:38,997 [main] ERROR UmlAttribute - unclassified CIM attribute: (3257) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.Maintainer: Abstract Types::CharString +2024-09-08 08:26:38,997 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,997 [main] TRACE UmlAttribute - created (3257) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.Maintainer: Abstract Types::CharString +2024-09-08 08:26:38,997 [main] ERROR UmlAttribute - unclassified CIM attribute: (3388) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.MemTotal: Abstract Types::Integer +2024-09-08 08:26:38,997 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,997 [main] TRACE UmlAttribute - created (3388) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.MemTotal: Abstract Types::Integer +2024-09-08 08:26:38,997 [main] ERROR UmlAttribute - unclassified CIM attribute: (1910) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.MemUsage: Abstract Types::FloatingTs +2024-09-08 08:26:38,998 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,998 [main] TRACE UmlAttribute - created (1910) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.MemUsage: Abstract Types::FloatingTs +2024-09-08 08:26:38,998 [main] ERROR UmlAttribute - unclassified CIM attribute: (3255) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.MIBVersion: Abstract Types::CharString +2024-09-08 08:26:38,998 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,998 [main] TRACE UmlAttribute - created (3255) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.MIBVersion: Abstract Types::CharString +2024-09-08 08:26:38,998 [main] ERROR UmlAttribute - unclassified CIM attribute: (167) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.MisEvCnt: Abstract Types::CounterTs +2024-09-08 08:26:38,998 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,998 [main] TRACE UmlAttribute - created (167) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.MisEvCnt: Abstract Types::CounterTs +2024-09-08 08:26:38,998 [main] ERROR UmlAttribute - unclassified CIM attribute: (1913) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.Name: Abstract Types::CharString +2024-09-08 08:26:38,999 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,999 [main] TRACE UmlAttribute - created (1913) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.Name: Abstract Types::CharString +2024-09-08 08:26:38,999 [main] ERROR UmlAttribute - unclassified CIM attribute: (3718) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.NearToExpCerts: Abstract Types::IntegerTs +2024-09-08 08:26:38,999 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,999 [main] TRACE UmlAttribute - created (3718) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.NearToExpCerts: Abstract Types::IntegerTs +2024-09-08 08:26:38,999 [main] ERROR UmlAttribute - unclassified CIM attribute: (177) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.NvStore: Abstract Types::FloatingTs +2024-09-08 08:26:38,999 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:38,999 [main] TRACE UmlAttribute - created (177) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.NvStore: Abstract Types::FloatingTs +2024-09-08 08:26:38,999 [main] ERROR UmlAttribute - unclassified CIM attribute: (178) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.NvStoreRem: Abstract Types::FloatingTs +2024-09-08 08:26:39,000 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,000 [main] TRACE UmlAttribute - created (178) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.NvStoreRem: Abstract Types::FloatingTs +2024-09-08 08:26:39,000 [main] ERROR UmlAttribute - unclassified CIM attribute: (157) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.PhyHealth: EnumeratedTypes::PhyHealthType +2024-09-08 08:26:39,000 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,000 [main] TRACE UmlAttribute - created (157) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.PhyHealth: EnumeratedTypes::PhyHealthType +2024-09-08 08:26:39,000 [main] ERROR UmlAttribute - unclassified CIM attribute: (158) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.PhyHealthChgCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,000 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,000 [main] TRACE UmlAttribute - created (158) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.PhyHealthChgCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,001 [main] ERROR UmlAttribute - unclassified CIM attribute: (3437) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.RBACDbUpdate: Abstract Types::CharStringTs +2024-09-08 08:26:39,001 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,001 [main] TRACE UmlAttribute - created (3437) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.RBACDbUpdate: Abstract Types::CharStringTs +2024-09-08 08:26:39,001 [main] ERROR UmlAttribute - unclassified CIM attribute: (176) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.RevCerts: Abstract Types::IntegerTs +2024-09-08 08:26:39,001 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,001 [main] TRACE UmlAttribute - created (176) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.RevCerts: Abstract Types::IntegerTs +2024-09-08 08:26:39,001 [main] ERROR UmlAttribute - unclassified CIM attribute: (3479) OTHER_CIM CIM const [1..1] null <> IED Agent::IED.RevCheckFail: Abstract Types::CounterTs +2024-09-08 08:26:39,001 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,001 [main] TRACE UmlAttribute - created (3479) OTHER_CIM CIM const [1..1] attribute <> IED Agent::IED.RevCheckFail: Abstract Types::CounterTs +2024-09-08 08:26:39,001 [main] ERROR UmlAttribute - unclassified CIM attribute: (3620) OTHER_CIM CIM [0..1] null <> IED Agent::IED.SecurityNotification: IED Agent::SecurityNotification +2024-09-08 08:26:39,001 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,002 [main] TRACE UmlAttribute - created (3620) OTHER_CIM CIM [0..1] attribute <> IED Agent::IED.SecurityNotification: IED Agent::SecurityNotification +2024-09-08 08:26:39,002 [main] ERROR UmlAttribute - unclassified CIM attribute: (3619) OTHER_CIM CIM [0..1] null <> IED Agent::IED.StateNotification: IED Agent::Notification +2024-09-08 08:26:39,002 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,002 [main] TRACE UmlAttribute - created (3619) OTHER_CIM CIM [0..1] attribute <> IED Agent::IED.StateNotification: IED Agent::Notification +2024-09-08 08:26:39,002 [main] ERROR UmlAttribute - unclassified CIM attribute: (3387) OTHER_CIM CIM [0..*] null <
> IED Agent::IED.STORE: IED Agent::STOREEntry +2024-09-08 08:26:39,002 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,002 [main] TRACE UmlAttribute - created (3387) OTHER_CIM CIM [0..*] attribute <
> IED Agent::IED.STORE: IED Agent::STOREEntry +2024-09-08 08:26:39,002 [main] ERROR UmlAttribute - unclassified CIM attribute: (4118) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.SvcViol: Abstract Types::CounterTs +2024-09-08 08:26:39,002 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,002 [main] TRACE UmlAttribute - created (4118) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.SvcViol: Abstract Types::CounterTs +2024-09-08 08:26:39,003 [main] ERROR UmlAttribute - unclassified CIM attribute: (3964) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.Watchdog: Abstract Types::CounterTs +2024-09-08 08:26:39,003 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,003 [main] TRACE UmlAttribute - created (3964) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.Watchdog: Abstract Types::CounterTs +2024-09-08 08:26:39,003 [main] ERROR UmlAttribute - unclassified CIM attribute: (2217) OTHER_CIM CIM const [0..1] null <> IED Agent::IED.WrmStrCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,003 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,003 [main] TRACE UmlAttribute - created (2217) OTHER_CIM CIM const [0..1] attribute <> IED Agent::IED.WrmStrCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,004 [main] ERROR UmlAttribute - unclassified CIM attribute: (3261) OTHER_CIM CIM [0..1] null <> IED Agent::CPUEntry.CntRs: Abstract Types::CntRs +2024-09-08 08:26:39,004 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,004 [main] TRACE UmlAttribute - created (3261) OTHER_CIM CIM [0..1] attribute <> IED Agent::CPUEntry.CntRs: Abstract Types::CntRs +2024-09-08 08:26:39,004 [main] ERROR UmlAttribute - unclassified CIM attribute: (3260) OTHER_CIM CIM const [0..1] null <> IED Agent::CPUEntry.Descr: Abstract Types::CharString +2024-09-08 08:26:39,004 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,004 [main] TRACE UmlAttribute - created (3260) OTHER_CIM CIM const [0..1] attribute <> IED Agent::CPUEntry.Descr: Abstract Types::CharString +2024-09-08 08:26:39,004 [main] ERROR UmlAttribute - unclassified CIM attribute: (3262) OTHER_CIM CIM const [0..1] null <> IED Agent::CPUEntry.Faulty: Abstract Types::BooleanValueTs +2024-09-08 08:26:39,004 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,004 [main] TRACE UmlAttribute - created (3262) OTHER_CIM CIM const [0..1] attribute <> IED Agent::CPUEntry.Faulty: Abstract Types::BooleanValueTs +2024-09-08 08:26:39,004 [main] ERROR UmlAttribute - unclassified CIM attribute: (3259) OTHER_CIM CIM const [0..1] null <> IED Agent::CPUEntry.ID: Abstract Types::EntityIndex +2024-09-08 08:26:39,004 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,004 [main] TRACE UmlAttribute - created (3259) OTHER_CIM CIM const [0..1] attribute <> IED Agent::CPUEntry.ID: Abstract Types::EntityIndex +2024-09-08 08:26:39,005 [main] ERROR UmlAttribute - unclassified CIM attribute: (3258) OTHER_CIM CIM const [0..1] null <> IED Agent::CPUEntry.Online: Abstract Types::BooleanValueTs +2024-09-08 08:26:39,005 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,005 [main] TRACE UmlAttribute - created (3258) OTHER_CIM CIM const [0..1] attribute <> IED Agent::CPUEntry.Online: Abstract Types::BooleanValueTs +2024-09-08 08:26:39,005 [main] ERROR UmlAttribute - unclassified CIM attribute: (3263) OTHER_CIM CIM const [0..1] null <> IED Agent::CPUEntry.Operable: Abstract Types::BooleanValueTs +2024-09-08 08:26:39,005 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,005 [main] TRACE UmlAttribute - created (3263) OTHER_CIM CIM const [0..1] attribute <> IED Agent::CPUEntry.Operable: Abstract Types::BooleanValueTs +2024-09-08 08:26:39,005 [main] ERROR UmlAttribute - unclassified CIM attribute: (3389) OTHER_CIM CIM const [0..1] null <> IED Agent::CPUEntry.Temperature: Abstract Types::FloatingTs +2024-09-08 08:26:39,005 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,005 [main] TRACE UmlAttribute - created (3389) OTHER_CIM CIM const [0..1] attribute <> IED Agent::CPUEntry.Temperature: Abstract Types::FloatingTs +2024-09-08 08:26:39,005 [main] ERROR UmlAttribute - unclassified CIM attribute: (3965) OTHER_CIM CIM const [0..1] null <> IED Agent::CPUEntry.Watchdog: Abstract Types::CounterTs +2024-09-08 08:26:39,005 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,006 [main] TRACE UmlAttribute - created (3965) OTHER_CIM CIM const [0..1] attribute <> IED Agent::CPUEntry.Watchdog: Abstract Types::CounterTs +2024-09-08 08:26:39,006 [main] ERROR UmlAttribute - unclassified CIM attribute: (3334) OTHER_CIM CIM const [0..1] null <> IED Agent::EXTEntry.ID: Abstract Types::EntityIndex +2024-09-08 08:26:39,006 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,006 [main] TRACE UmlAttribute - created (3334) OTHER_CIM CIM const [0..1] attribute <> IED Agent::EXTEntry.ID: Abstract Types::EntityIndex +2024-09-08 08:26:39,006 [main] ERROR UmlAttribute - unclassified CIM attribute: (3335) OTHER_CIM CIM const [0..1] null <> IED Agent::EXTEntry.Descr: Abstract Types::CharString +2024-09-08 08:26:39,006 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,006 [main] TRACE UmlAttribute - created (3335) OTHER_CIM CIM const [0..1] attribute <> IED Agent::EXTEntry.Descr: Abstract Types::CharString +2024-09-08 08:26:39,006 [main] ERROR UmlAttribute - unclassified CIM attribute: (3366) OTHER_CIM CIM const [0..1] null <> IED Agent::EXTEntry.ExtensionType: EnumeratedTypes::ExtType +2024-09-08 08:26:39,006 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,006 [main] TRACE UmlAttribute - created (3366) OTHER_CIM CIM const [0..1] attribute <> IED Agent::EXTEntry.ExtensionType: EnumeratedTypes::ExtType +2024-09-08 08:26:39,007 [main] ERROR UmlAttribute - unclassified CIM attribute: (3416) OTHER_CIM CIM const [0..1] null <> IED Agent::EXTEntry.CodeVersion: Abstract Types::CharStringTs +2024-09-08 08:26:39,007 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,007 [main] TRACE UmlAttribute - created (3416) OTHER_CIM CIM const [0..1] attribute <> IED Agent::EXTEntry.CodeVersion: Abstract Types::CharStringTs +2024-09-08 08:26:39,007 [main] ERROR UmlAttribute - unclassified CIM attribute: (3338) OTHER_CIM CIM const [0..1] null <> IED Agent::EXTEntry.Running: Abstract Types::BooleanValueTs +2024-09-08 08:26:39,007 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,007 [main] TRACE UmlAttribute - created (3338) OTHER_CIM CIM const [0..1] attribute <> IED Agent::EXTEntry.Running: Abstract Types::BooleanValueTs +2024-09-08 08:26:39,007 [main] ERROR UmlAttribute - unclassified CIM attribute: (3390) OTHER_CIM CIM const [0..1] null <> IED Agent::EXTEntry.Temperature: Abstract Types::FloatingTs +2024-09-08 08:26:39,007 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,007 [main] TRACE UmlAttribute - created (3390) OTHER_CIM CIM const [0..1] attribute <> IED Agent::EXTEntry.Temperature: Abstract Types::FloatingTs +2024-09-08 08:26:39,007 [main] ERROR UmlAttribute - unclassified CIM attribute: (3333) OTHER_CIM CIM const [1..1] null <> IED Agent::EXTEntry.Watchdog: Abstract Types::CounterTs +2024-09-08 08:26:39,007 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,007 [main] TRACE UmlAttribute - created (3333) OTHER_CIM CIM const [1..1] attribute <> IED Agent::EXTEntry.Watchdog: Abstract Types::CounterTs +2024-09-08 08:26:39,007 [main] ERROR UmlAttribute - unclassified CIM attribute: (3337) OTHER_CIM CIM const [0..1] null <> IED Agent::EXTEntry.Errors: Abstract Types::CounterTs +2024-09-08 08:26:39,008 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,008 [main] TRACE UmlAttribute - created (3337) OTHER_CIM CIM const [0..1] attribute <> IED Agent::EXTEntry.Errors: Abstract Types::CounterTs +2024-09-08 08:26:39,008 [main] ERROR UmlAttribute - unclassified CIM attribute: (3336) OTHER_CIM CIM [0..1] null <> IED Agent::EXTEntry.CntRs: Abstract Types::CntRs +2024-09-08 08:26:39,008 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,008 [main] TRACE UmlAttribute - created (3336) OTHER_CIM CIM [0..1] attribute <> IED Agent::EXTEntry.CntRs: Abstract Types::CntRs +2024-09-08 08:26:39,008 [main] ERROR UmlAttribute - unclassified CIM attribute: (3382) OTHER_CIM CIM const [0..1] null <> IED Agent::STOREEntry.ID: Abstract Types::EntityIndex +2024-09-08 08:26:39,008 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,008 [main] TRACE UmlAttribute - created (3382) OTHER_CIM CIM const [0..1] attribute <> IED Agent::STOREEntry.ID: Abstract Types::EntityIndex +2024-09-08 08:26:39,008 [main] ERROR UmlAttribute - unclassified CIM attribute: (3383) OTHER_CIM CIM const [0..1] null <> IED Agent::STOREEntry.Descr: Abstract Types::CharString +2024-09-08 08:26:39,008 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,008 [main] TRACE UmlAttribute - created (3383) OTHER_CIM CIM const [0..1] attribute <> IED Agent::STOREEntry.Descr: Abstract Types::CharString +2024-09-08 08:26:39,009 [main] ERROR UmlAttribute - unclassified CIM attribute: (3386) OTHER_CIM CIM const [0..1] null <> IED Agent::STOREEntry.NvStore: Abstract Types::Floating +2024-09-08 08:26:39,009 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,009 [main] TRACE UmlAttribute - created (3386) OTHER_CIM CIM const [0..1] attribute <> IED Agent::STOREEntry.NvStore: Abstract Types::Floating +2024-09-08 08:26:39,009 [main] ERROR UmlAttribute - unclassified CIM attribute: (3381) OTHER_CIM CIM const [0..1] null <> IED Agent::STOREEntry.NvStoreRem: Abstract Types::FloatingTs +2024-09-08 08:26:39,009 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,009 [main] TRACE UmlAttribute - created (3381) OTHER_CIM CIM const [0..1] attribute <> IED Agent::STOREEntry.NvStoreRem: Abstract Types::FloatingTs +2024-09-08 08:26:39,009 [main] ERROR UmlAttribute - unclassified CIM attribute: (3385) OTHER_CIM CIM const [0..1] null <> IED Agent::STOREEntry.Faulty: Abstract Types::BooleanValueTs +2024-09-08 08:26:39,009 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,009 [main] TRACE UmlAttribute - created (3385) OTHER_CIM CIM const [0..1] attribute <> IED Agent::STOREEntry.Faulty: Abstract Types::BooleanValueTs +2024-09-08 08:26:39,010 [main] ERROR UmlAttribute - unclassified CIM attribute: (3732) OTHER_CIM CIM [0..1] null <> IED Agent::STOREEntry.CntRs: Abstract Types::CntRs +2024-09-08 08:26:39,014 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,015 [main] TRACE UmlAttribute - created (3732) OTHER_CIM CIM [0..1] attribute <> IED Agent::STOREEntry.CntRs: Abstract Types::CntRs +2024-09-08 08:26:39,015 [main] ERROR UmlAttribute - unclassified CIM attribute: (3486) OTHER_CIM CIM const [0..1] null <> IED Agent::Notification.PhyHealthChgCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,015 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,015 [main] TRACE UmlAttribute - created (3486) OTHER_CIM CIM const [0..1] attribute <> IED Agent::Notification.PhyHealthChgCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,015 [main] ERROR UmlAttribute - unclassified CIM attribute: (3497) OTHER_CIM CIM const [0..1] null <> IED Agent::Notification.InternalTemp: Abstract Types::FloatingTs +2024-09-08 08:26:39,015 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,015 [main] TRACE UmlAttribute - created (3497) OTHER_CIM CIM const [0..1] attribute <> IED Agent::Notification.InternalTemp: Abstract Types::FloatingTs +2024-09-08 08:26:39,015 [main] ERROR UmlAttribute - unclassified CIM attribute: (3495) OTHER_CIM CIM const [0..1] null <> IED Agent::Notification.NvStore: Abstract Types::FloatingTs +2024-09-08 08:26:39,015 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,015 [main] TRACE UmlAttribute - created (3495) OTHER_CIM CIM const [0..1] attribute <> IED Agent::Notification.NvStore: Abstract Types::FloatingTs +2024-09-08 08:26:39,016 [main] ERROR UmlAttribute - unclassified CIM attribute: (3496) OTHER_CIM CIM const [0..1] null <> IED Agent::Notification.NvStoreRem: Abstract Types::FloatingTs +2024-09-08 08:26:39,016 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,016 [main] TRACE UmlAttribute - created (3496) OTHER_CIM CIM const [0..1] attribute <> IED Agent::Notification.NvStoreRem: Abstract Types::FloatingTs +2024-09-08 08:26:39,016 [main] ERROR UmlAttribute - unclassified CIM attribute: (3480) OTHER_CIM CIM const [0..1] null <> IED Agent::Notification.PhyHealth: EnumeratedTypes::PhyHealthType +2024-09-08 08:26:39,016 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,016 [main] TRACE UmlAttribute - created (3480) OTHER_CIM CIM const [0..1] attribute <> IED Agent::Notification.PhyHealth: EnumeratedTypes::PhyHealthType +2024-09-08 08:26:39,016 [main] ERROR UmlAttribute - unclassified CIM attribute: (3489) OTHER_CIM CIM const [0..1] null <> IED Agent::Notification.WrmStrCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,016 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,017 [main] TRACE UmlAttribute - created (3489) OTHER_CIM CIM const [0..1] attribute <> IED Agent::Notification.WrmStrCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,017 [main] ERROR UmlAttribute - unclassified CIM attribute: (3502) OTHER_CIM CIM const [0..1] null <> IED Agent::SecurityNotification.AtkCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,017 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,017 [main] TRACE UmlAttribute - created (3502) OTHER_CIM CIM const [0..1] attribute <> IED Agent::SecurityNotification.AtkCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,017 [main] ERROR UmlAttribute - unclassified CIM attribute: (3499) OTHER_CIM CIM const [0..1] null <> IED Agent::SecurityNotification.ExpCerts: Abstract Types::IntegerTs +2024-09-08 08:26:39,017 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,017 [main] TRACE UmlAttribute - created (3499) OTHER_CIM CIM const [0..1] attribute <> IED Agent::SecurityNotification.ExpCerts: Abstract Types::IntegerTs +2024-09-08 08:26:39,017 [main] ERROR UmlAttribute - unclassified CIM attribute: (3730) OTHER_CIM CIM const [0..1] null <> IED Agent::SecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-08 08:26:39,017 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,017 [main] TRACE UmlAttribute - created (3730) OTHER_CIM CIM const [0..1] attribute <> IED Agent::SecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-08 08:26:39,017 [main] ERROR UmlAttribute - unclassified CIM attribute: (3731) OTHER_CIM CIM const [0..1] null <> IED Agent::SecurityNotification.NearToExpCerts: Abstract Types::IntegerTs +2024-09-08 08:26:39,018 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,018 [main] TRACE UmlAttribute - created (3731) OTHER_CIM CIM const [0..1] attribute <> IED Agent::SecurityNotification.NearToExpCerts: Abstract Types::IntegerTs +2024-09-08 08:26:39,018 [main] ERROR UmlAttribute - unclassified CIM attribute: (3498) OTHER_CIM CIM const [0..1] null <> IED Agent::SecurityNotification.RevCerts: Abstract Types::IntegerTs +2024-09-08 08:26:39,018 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,018 [main] TRACE UmlAttribute - created (3498) OTHER_CIM CIM const [0..1] attribute <> IED Agent::SecurityNotification.RevCerts: Abstract Types::IntegerTs +2024-09-08 08:26:39,018 [main] ERROR UmlAttribute - unclassified CIM attribute: (3500) OTHER_CIM CIM const [0..1] null <> IED Agent::SecurityNotification.RevCheckFail: Abstract Types::CounterTs +2024-09-08 08:26:39,018 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,018 [main] TRACE UmlAttribute - created (3500) OTHER_CIM CIM const [0..1] attribute <> IED Agent::SecurityNotification.RevCheckFail: Abstract Types::CounterTs +2024-09-08 08:26:39,018 [main] ERROR UmlAttribute - unclassified CIM attribute: (4079) OTHER_CIM CIM const [1..1] null <> Common objects::CommonProtocolInfo.IEC62351part3: Abstract Types::BooleanValue +2024-09-08 08:26:39,018 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,018 [main] TRACE UmlAttribute - created (4079) OTHER_CIM CIM const [1..1] attribute <> Common objects::CommonProtocolInfo.IEC62351part3: Abstract Types::BooleanValue +2024-09-08 08:26:39,018 [main] ERROR UmlAttribute - unclassified CIM attribute: (4087) OTHER_CIM CIM const [0..1] null <> Common objects::CommonProtocolInfo.Part3ConnectionId: Abstract Types::Integer +2024-09-08 08:26:39,019 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,019 [main] TRACE UmlAttribute - created (4087) OTHER_CIM CIM const [0..1] attribute <> Common objects::CommonProtocolInfo.Part3ConnectionId: Abstract Types::Integer +2024-09-08 08:26:39,019 [main] ERROR UmlAttribute - unclassified CIM attribute: (4099) OTHER_CIM CIM const [0..1] null <> Common objects::CommonProtocolInfo.TCPHndShTime: Abstract Types::Floating +2024-09-08 08:26:39,020 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,020 [main] TRACE UmlAttribute - created (4099) OTHER_CIM CIM const [0..1] attribute <> Common objects::CommonProtocolInfo.TCPHndShTime: Abstract Types::Floating +2024-09-08 08:26:39,020 [main] ERROR UmlAttribute - unclassified CIM attribute: (4107) OTHER_CIM CIM const [0..1] null <> Common objects::CommonProtocolInfo.TLSHndTime: Abstract Types::Floating +2024-09-08 08:26:39,020 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,020 [main] TRACE UmlAttribute - created (4107) OTHER_CIM CIM const [0..1] attribute <> Common objects::CommonProtocolInfo.TLSHndTime: Abstract Types::Floating +2024-09-08 08:26:39,020 [main] ERROR UmlAttribute - unclassified CIM attribute: (4109) OTHER_CIM CIM const [0..1] null <> Common objects::CommonProtocolInfo.TLSRenegotiationTime: Abstract Types::Floating +2024-09-08 08:26:39,020 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,020 [main] TRACE UmlAttribute - created (4109) OTHER_CIM CIM const [0..1] attribute <> Common objects::CommonProtocolInfo.TLSRenegotiationTime: Abstract Types::Floating +2024-09-08 08:26:39,021 [main] ERROR UmlAttribute - unclassified CIM attribute: (4108) OTHER_CIM CIM const [0..1] null <> Common objects::CommonProtocolInfo.TLSResumptionTime: Abstract Types::Floating +2024-09-08 08:26:39,021 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,021 [main] TRACE UmlAttribute - created (4108) OTHER_CIM CIM const [0..1] attribute <> Common objects::CommonProtocolInfo.TLSResumptionTime: Abstract Types::Floating +2024-09-08 08:26:39,021 [main] ERROR UmlAttribute - unclassified CIM attribute: (4106) OTHER_CIM CIM const [0..1] null <> Common objects::CommonProtocolInfo.TotalHndTime: Abstract Types::Floating +2024-09-08 08:26:39,021 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,021 [main] TRACE UmlAttribute - created (4106) OTHER_CIM CIM const [0..1] attribute <> Common objects::CommonProtocolInfo.TotalHndTime: Abstract Types::Floating +2024-09-08 08:26:39,021 [main] ERROR UmlAttribute - unclassified CIM attribute: (4105) OTHER_CIM CIM const [0..1] null <> Common objects::CommonProtocolInfo.TransportHndTime: Abstract Types::Floating +2024-09-08 08:26:39,021 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,021 [main] TRACE UmlAttribute - created (4105) OTHER_CIM CIM const [0..1] attribute <> Common objects::CommonProtocolInfo.TransportHndTime: Abstract Types::Floating +2024-09-08 08:26:39,021 [main] ERROR UmlAttribute - unclassified CIM attribute: (4460) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsEarlyDataCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,021 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,021 [main] TRACE UmlAttribute - created (4460) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsEarlyDataCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,022 [main] ERROR UmlAttribute - unclassified CIM attribute: (4454) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDisallowedCipherCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,022 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,022 [main] TRACE UmlAttribute - created (4454) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDisallowedCipherCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,022 [main] ERROR UmlAttribute - unclassified CIM attribute: (4461) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsCertSizeMismatchCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,022 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,022 [main] TRACE UmlAttribute - created (4461) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsCertSizeMismatchCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,022 [main] ERROR UmlAttribute - unclassified CIM attribute: (4463) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoCaMatchCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,022 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,022 [main] TRACE UmlAttribute - created (4463) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoCaMatchCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,022 [main] ERROR UmlAttribute - unclassified CIM attribute: (4464) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoSigAlgoExtCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,022 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,023 [main] TRACE UmlAttribute - created (4464) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoSigAlgoExtCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,023 [main] ERROR UmlAttribute - unclassified CIM attribute: (4465) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDepDigAlgCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,023 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,023 [main] TRACE UmlAttribute - created (4465) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDepDigAlgCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,023 [main] ERROR UmlAttribute - unclassified CIM attribute: (4466) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoTrustedCertMatchCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,023 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,023 [main] TRACE UmlAttribute - created (4466) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoTrustedCertMatchCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,023 [main] ERROR UmlAttribute - unclassified CIM attribute: (4467) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsCertRevokedCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,023 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,023 [main] TRACE UmlAttribute - created (4467) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsCertRevokedCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,024 [main] ERROR UmlAttribute - unclassified CIM attribute: (4468) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoCrlCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,024 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,024 [main] TRACE UmlAttribute - created (4468) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoCrlCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,024 [main] ERROR UmlAttribute - unclassified CIM attribute: (4469) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsCrlExpCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,024 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,024 [main] TRACE UmlAttribute - created (4469) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsCrlExpCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,024 [main] ERROR UmlAttribute - unclassified CIM attribute: (4470) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoEpskModeCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,024 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,024 [main] TRACE UmlAttribute - created (4470) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoEpskModeCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,024 [main] ERROR UmlAttribute - unclassified CIM attribute: (4471) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoEncryptThenMacCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,024 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,024 [main] TRACE UmlAttribute - created (4471) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoEncryptThenMacCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,025 [main] ERROR UmlAttribute - unclassified CIM attribute: (4472) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsOcspResExpCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,025 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,025 [main] TRACE UmlAttribute - created (4472) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsOcspResExpCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,025 [main] ERROR UmlAttribute - unclassified CIM attribute: (4473) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsCertExpCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,025 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,025 [main] TRACE UmlAttribute - created (4473) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsCertExpCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,025 [main] ERROR UmlAttribute - unclassified CIM attribute: (4474) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoSkUpdateCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,025 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,025 [main] TRACE UmlAttribute - created (4474) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoSkUpdateCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,025 [main] ERROR UmlAttribute - unclassified CIM attribute: (4475) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsSigAlgMismatchCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,026 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,026 [main] TRACE UmlAttribute - created (4475) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsSigAlgMismatchCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,026 [main] ERROR UmlAttribute - unclassified CIM attribute: (4476) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsSigVFailedCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,026 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,026 [main] TRACE UmlAttribute - created (4476) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsSigVFailedCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,026 [main] ERROR UmlAttribute - unclassified CIM attribute: (4477) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsShortRsaKeyCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,026 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,026 [main] TRACE UmlAttribute - created (4477) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsShortRsaKeyCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,026 [main] ERROR UmlAttribute - unclassified CIM attribute: (4478) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsMinKeyCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,026 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,026 [main] TRACE UmlAttribute - created (4478) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsMinKeyCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,026 [main] ERROR UmlAttribute - unclassified CIM attribute: (4479) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsShortKeyCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,027 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,027 [main] TRACE UmlAttribute - created (4479) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsShortKeyCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,027 [main] ERROR UmlAttribute - unclassified CIM attribute: (4480) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDepHashCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,027 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,027 [main] TRACE UmlAttribute - created (4480) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDepHashCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,027 [main] ERROR UmlAttribute - unclassified CIM attribute: (4462) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoTrCaMatchSCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,027 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,027 [main] TRACE UmlAttribute - created (4462) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoTrCaMatchSCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,027 [main] ERROR UmlAttribute - unclassified CIM attribute: (4455) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsSessionidExpiredFullHsCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,027 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,028 [main] TRACE UmlAttribute - created (4455) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsSessionidExpiredFullHsCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,028 [main] ERROR UmlAttribute - unclassified CIM attribute: (4458) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoRenegTicket: Abstract Types::CounterTs +2024-09-08 08:26:39,028 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,028 [main] TRACE UmlAttribute - created (4458) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoRenegTicket: Abstract Types::CounterTs +2024-09-08 08:26:39,028 [main] ERROR UmlAttribute - unclassified CIM attribute: (4457) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoRenegSigCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,028 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,028 [main] TRACE UmlAttribute - created (4457) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoRenegSigCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,028 [main] ERROR UmlAttribute - unclassified CIM attribute: (4453) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsSessionClosedRevCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,029 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,029 [main] TRACE UmlAttribute - created (4453) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsSessionClosedRevCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,029 [main] ERROR UmlAttribute - unclassified CIM attribute: (4459) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoTrCaMatchScCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,029 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,029 [main] TRACE UmlAttribute - created (4459) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoTrCaMatchScCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,029 [main] ERROR UmlAttribute - unclassified CIM attribute: (4450) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsHsSuccessCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,029 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,029 [main] TRACE UmlAttribute - created (4450) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsHsSuccessCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,029 [main] ERROR UmlAttribute - unclassified CIM attribute: (4456) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoReneg: Abstract Types::CounterTs +2024-09-08 08:26:39,029 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,029 [main] TRACE UmlAttribute - created (4456) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoReneg: Abstract Types::CounterTs +2024-09-08 08:26:39,030 [main] ERROR UmlAttribute - unclassified CIM attribute: (4452) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoLocalCertCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,030 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,030 [main] TRACE UmlAttribute - created (4452) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoLocalCertCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,030 [main] ERROR UmlAttribute - unclassified CIM attribute: (4447) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsWeakVersionCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,030 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,030 [main] TRACE UmlAttribute - created (4447) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsWeakVersionCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,030 [main] ERROR UmlAttribute - unclassified CIM attribute: (4449) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsVersionChangeCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,030 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,030 [main] TRACE UmlAttribute - created (4449) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsVersionChangeCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,031 [main] ERROR UmlAttribute - unclassified CIM attribute: (4446) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDeprecatedVersionCnT: Abstract Types::CounterTs +2024-09-08 08:26:39,031 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,031 [main] TRACE UmlAttribute - created (4446) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDeprecatedVersionCnT: Abstract Types::CounterTs +2024-09-08 08:26:39,031 [main] ERROR UmlAttribute - unclassified CIM attribute: (4451) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoPeerCertCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,031 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,031 [main] TRACE UmlAttribute - created (4451) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsNoPeerCertCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,031 [main] ERROR UmlAttribute - unclassified CIM attribute: (4448) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDisallowedVersionCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,031 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,031 [main] TRACE UmlAttribute - created (4448) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351-3ed2security.tlsDisallowedVersionCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,031 [main] ERROR UmlAttribute - unclassified CIM attribute: (4488) OTHER_CIM CIM const [0..1] null <> IEC62351-3 ed.2 Agent::TLSSession.SessionId: Abstract Types::EntityIndex +2024-09-08 08:26:39,031 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,031 [main] TRACE UmlAttribute - created (4488) OTHER_CIM CIM const [0..1] attribute <> IEC62351-3 ed.2 Agent::TLSSession.SessionId: Abstract Types::EntityIndex +2024-09-08 08:26:39,032 [main] ERROR UmlAttribute - unclassified CIM attribute: (4489) OTHER_CIM CIM [0..1] null <> IEC62351-3 ed.2 Agent::TLSSession.CntRs: Abstract Types::CntRs +2024-09-08 08:26:39,032 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,032 [main] TRACE UmlAttribute - created (4489) OTHER_CIM CIM [0..1] attribute <> IEC62351-3 ed.2 Agent::TLSSession.CntRs: Abstract Types::CntRs +2024-09-08 08:26:39,032 [main] ERROR UmlAttribute - unclassified CIM attribute: (4490) OTHER_CIM CIM const [0..1] null <> IEC62351-3 ed.2 Agent::TLSSession.LocAddress: Abstract Types::InetAddress +2024-09-08 08:26:39,032 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,032 [main] TRACE UmlAttribute - created (4490) OTHER_CIM CIM const [0..1] attribute <> IEC62351-3 ed.2 Agent::TLSSession.LocAddress: Abstract Types::InetAddress +2024-09-08 08:26:39,032 [main] ERROR UmlAttribute - unclassified CIM attribute: (4491) OTHER_CIM CIM const [0..1] null <> IEC62351-3 ed.2 Agent::TLSSession.LocAddressType: Abstract Types::InetAddressType +2024-09-08 08:26:39,032 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,032 [main] TRACE UmlAttribute - created (4491) OTHER_CIM CIM const [0..1] attribute <> IEC62351-3 ed.2 Agent::TLSSession.LocAddressType: Abstract Types::InetAddressType +2024-09-08 08:26:39,032 [main] ERROR UmlAttribute - unclassified CIM attribute: (4492) OTHER_CIM CIM const [0..1] null <> IEC62351-3 ed.2 Agent::TLSSession.RemAddress: Abstract Types::InetAddress +2024-09-08 08:26:39,032 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,032 [main] TRACE UmlAttribute - created (4492) OTHER_CIM CIM const [0..1] attribute <> IEC62351-3 ed.2 Agent::TLSSession.RemAddress: Abstract Types::InetAddress +2024-09-08 08:26:39,032 [main] ERROR UmlAttribute - unclassified CIM attribute: (4493) OTHER_CIM CIM const [0..1] null <> IEC62351-3 ed.2 Agent::TLSSession.RemAddressType: Abstract Types::InetAddressType +2024-09-08 08:26:39,033 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,033 [main] TRACE UmlAttribute - created (4493) OTHER_CIM CIM const [0..1] attribute <> IEC62351-3 ed.2 Agent::TLSSession.RemAddressType: Abstract Types::InetAddressType +2024-09-08 08:26:39,033 [main] ERROR UmlAttribute - unclassified CIM attribute: (4481) OTHER_CIM CIM [0..1] null <> IEC62351-3 ed.2 Agent::Summary.CntRs: Abstract Types::CntRs +2024-09-08 08:26:39,033 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,033 [main] TRACE UmlAttribute - created (4481) OTHER_CIM CIM [0..1] attribute <> IEC62351-3 ed.2 Agent::Summary.CntRs: Abstract Types::CntRs +2024-09-08 08:26:39,033 [main] ERROR UmlAttribute - unclassified CIM attribute: (4482) OTHER_CIM CIM const [1..1] null <> IEC62351-3 ed.2 Agent::Summary.LastEvent: EnumeratedTypes::EventType +2024-09-08 08:26:39,033 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,033 [main] TRACE UmlAttribute - created (4482) OTHER_CIM CIM const [1..1] attribute <> IEC62351-3 ed.2 Agent::Summary.LastEvent: EnumeratedTypes::EventType +2024-09-08 08:26:39,033 [main] ERROR UmlAttribute - unclassified CIM attribute: (4483) OTHER_CIM CIM [0..*] null <
> IEC62351-3 ed.2 Agent::Summary.Server: IEC62351-3 ed.2 Agent::ServerTLS +2024-09-08 08:26:39,033 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,034 [main] TRACE UmlAttribute - created (4483) OTHER_CIM CIM [0..*] attribute <
> IEC62351-3 ed.2 Agent::Summary.Server: IEC62351-3 ed.2 Agent::ServerTLS +2024-09-08 08:26:39,034 [main] ERROR UmlAttribute - unclassified CIM attribute: (4484) OTHER_CIM CIM [0..*] null <
> IEC62351-3 ed.2 Agent::Summary.Client: IEC62351-3 ed.2 Agent::ClientTLS +2024-09-08 08:26:39,034 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,034 [main] TRACE UmlAttribute - created (4484) OTHER_CIM CIM [0..*] attribute <
> IEC62351-3 ed.2 Agent::Summary.Client: IEC62351-3 ed.2 Agent::ClientTLS +2024-09-08 08:26:39,034 [main] ERROR UmlAttribute - unclassified CIM attribute: (4485) OTHER_CIM CIM [0..1] null <> IEC62351-3 ed.2 Agent::Summary.SecurityNotification: IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification +2024-09-08 08:26:39,034 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,034 [main] TRACE UmlAttribute - created (4485) OTHER_CIM CIM [0..1] attribute <> IEC62351-3 ed.2 Agent::Summary.SecurityNotification: IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification +2024-09-08 08:26:39,034 [main] ERROR UmlAttribute - unclassified CIM attribute: (4486) OTHER_CIM CIM [0..1] null <> IEC62351-3 ed.2 Agent::Summary.StateNotification: NullCIM::NullCIM +2024-09-08 08:26:39,034 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,034 [main] TRACE UmlAttribute - created (4486) OTHER_CIM CIM [0..1] attribute <> IEC62351-3 ed.2 Agent::Summary.StateNotification: NullCIM::NullCIM +2024-09-08 08:26:39,034 [main] ERROR UmlAttribute - unclassified CIM attribute: (4487) OTHER_CIM CIM const [0..1] null <> IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-08 08:26:39,035 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,035 [main] TRACE UmlAttribute - created (4487) OTHER_CIM CIM const [0..1] attribute <> IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-08 08:26:39,035 [main] ERROR UmlAttribute - unclassified CIM attribute: (3991) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.AuthFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,035 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,035 [main] TRACE UmlAttribute - created (3991) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.AuthFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,035 [main] ERROR UmlAttribute - unclassified CIM attribute: (3992) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.CtrlPrivFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,035 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,035 [main] TRACE UmlAttribute - created (3992) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.CtrlPrivFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,036 [main] ERROR UmlAttribute - unclassified CIM attribute: (3993) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.DecryptFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,036 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,036 [main] TRACE UmlAttribute - created (3993) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.DecryptFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,036 [main] ERROR UmlAttribute - unclassified CIM attribute: (3405) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.ExT0Cnt: Abstract Types::CounterTs +2024-09-08 08:26:39,037 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,037 [main] TRACE UmlAttribute - created (3405) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.ExT0Cnt: Abstract Types::CounterTs +2024-09-08 08:26:39,037 [main] ERROR UmlAttribute - unclassified CIM attribute: (3406) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.ExT1Cnt: Abstract Types::CounterTs +2024-09-08 08:26:39,037 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,037 [main] TRACE UmlAttribute - created (3406) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.ExT1Cnt: Abstract Types::CounterTs +2024-09-08 08:26:39,037 [main] ERROR UmlAttribute - unclassified CIM attribute: (3407) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.ExT2Cnt: Abstract Types::CounterTs +2024-09-08 08:26:39,037 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,037 [main] TRACE UmlAttribute - created (3407) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.ExT2Cnt: Abstract Types::CounterTs +2024-09-08 08:26:39,038 [main] ERROR UmlAttribute - unclassified CIM attribute: (3408) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.ExT3Cnt: Abstract Types::CounterTs +2024-09-08 08:26:39,038 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,038 [main] TRACE UmlAttribute - created (3408) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.ExT3Cnt: Abstract Types::CounterTs +2024-09-08 08:26:39,038 [main] ERROR UmlAttribute - unclassified CIM attribute: (3124) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.InDisc: Abstract Types::CounterTs +2024-09-08 08:26:39,038 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,038 [main] TRACE UmlAttribute - created (3124) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.InDisc: Abstract Types::CounterTs +2024-09-08 08:26:39,038 [main] ERROR UmlAttribute - unclassified CIM attribute: (3994) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.InErrCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,038 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,038 [main] TRACE UmlAttribute - created (3994) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.InErrCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,038 [main] ERROR UmlAttribute - unclassified CIM attribute: (3995) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.InOvCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,038 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,039 [main] TRACE UmlAttribute - created (3995) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.InOvCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,039 [main] ERROR UmlAttribute - unclassified CIM attribute: (3996) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.InterPDUTime: Abstract Types::Floating +2024-09-08 08:26:39,039 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,039 [main] TRACE UmlAttribute - created (3996) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.InterPDUTime: Abstract Types::Floating +2024-09-08 08:26:39,039 [main] ERROR UmlAttribute - unclassified CIM attribute: (3997) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.MisPDUCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,040 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,040 [main] TRACE UmlAttribute - created (3997) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.MisPDUCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,040 [main] ERROR UmlAttribute - unclassified CIM attribute: (3141) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.OutErr: Abstract Types::CounterTs +2024-09-08 08:26:39,040 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,040 [main] TRACE UmlAttribute - created (3141) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.OutErr: Abstract Types::CounterTs +2024-09-08 08:26:39,040 [main] ERROR UmlAttribute - unclassified CIM attribute: (3990) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.OutUv: Abstract Types::CounterTs +2024-09-08 08:26:39,041 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,041 [main] TRACE UmlAttribute - created (3990) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.OutUv: Abstract Types::CounterTs +2024-09-08 08:26:39,041 [main] ERROR UmlAttribute - unclassified CIM attribute: (3998) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PDURTT: Abstract Types::Floating +2024-09-08 08:26:39,041 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,041 [main] TRACE UmlAttribute - created (3998) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PDURTT: Abstract Types::Floating +2024-09-08 08:26:39,041 [main] ERROR UmlAttribute - unclassified CIM attribute: (3999) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PDUSizeFail: Abstract Types::CounterTs +2024-09-08 08:26:39,041 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,041 [main] TRACE UmlAttribute - created (3999) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PDUSizeFail: Abstract Types::CounterTs +2024-09-08 08:26:39,041 [main] ERROR UmlAttribute - unclassified CIM attribute: (4000) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PduTampCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,041 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,042 [main] TRACE UmlAttribute - created (4000) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PduTampCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,042 [main] ERROR UmlAttribute - unclassified CIM attribute: (4001) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PrimaryInterface: Abstract Types::BooleanValueTs +2024-09-08 08:26:39,042 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,042 [main] TRACE UmlAttribute - created (4001) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PrimaryInterface: Abstract Types::BooleanValueTs +2024-09-08 08:26:39,042 [main] ERROR UmlAttribute - unclassified CIM attribute: (4002) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PrivFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,042 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,042 [main] TRACE UmlAttribute - created (4002) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.PrivFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,042 [main] ERROR UmlAttribute - unclassified CIM attribute: (3403) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RtxCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,042 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,042 [main] TRACE UmlAttribute - created (3403) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RtxCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,042 [main] ERROR UmlAttribute - unclassified CIM attribute: (3123) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RxCritical: Abstract Types::CounterTs +2024-09-08 08:26:39,043 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,043 [main] TRACE UmlAttribute - created (3123) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RxCritical: Abstract Types::CounterTs +2024-09-08 08:26:39,043 [main] ERROR UmlAttribute - unclassified CIM attribute: (4003) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RxPdu: Abstract Types::CounterTs +2024-09-08 08:26:39,043 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,043 [main] TRACE UmlAttribute - created (4003) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RxPdu: Abstract Types::CounterTs +2024-09-08 08:26:39,043 [main] ERROR UmlAttribute - unclassified CIM attribute: (3135) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RxSolicitedReq: Abstract Types::CounterTs +2024-09-08 08:26:39,043 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,044 [main] TRACE UmlAttribute - created (3135) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RxSolicitedReq: Abstract Types::CounterTs +2024-09-08 08:26:39,044 [main] ERROR UmlAttribute - unclassified CIM attribute: (3145) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RxUnsolicitedReq: Abstract Types::CounterTs +2024-09-08 08:26:39,044 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,045 [main] TRACE UmlAttribute - created (3145) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.RxUnsolicitedReq: Abstract Types::CounterTs +2024-09-08 08:26:39,045 [main] ERROR UmlAttribute - unclassified CIM attribute: (4004) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.SessKeyFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,045 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,045 [main] TRACE UmlAttribute - created (4004) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.SessKeyFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,045 [main] ERROR UmlAttribute - unclassified CIM attribute: (3122) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.TxCritical: Abstract Types::CounterTs +2024-09-08 08:26:39,045 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,045 [main] TRACE UmlAttribute - created (3122) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.TxCritical: Abstract Types::CounterTs +2024-09-08 08:26:39,046 [main] ERROR UmlAttribute - unclassified CIM attribute: (4005) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.TxPdu: Abstract Types::CounterTs +2024-09-08 08:26:39,046 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,046 [main] TRACE UmlAttribute - created (4005) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.TxPdu: Abstract Types::CounterTs +2024-09-08 08:26:39,046 [main] ERROR UmlAttribute - unclassified CIM attribute: (3120) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.TxSolicitedReq: Abstract Types::CounterTs +2024-09-08 08:26:39,046 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,046 [main] TRACE UmlAttribute - created (3120) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.TxSolicitedReq: Abstract Types::CounterTs +2024-09-08 08:26:39,046 [main] ERROR UmlAttribute - unclassified CIM attribute: (3121) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.TxUnsolicitedReq: Abstract Types::CounterTs +2024-09-08 08:26:39,047 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,047 [main] TRACE UmlAttribute - created (3121) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.TxUnsolicitedReq: Abstract Types::CounterTs +2024-09-08 08:26:39,047 [main] ERROR UmlAttribute - unclassified CIM attribute: (4006) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.UpKeyFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,047 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,047 [main] TRACE UmlAttribute - created (4006) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo.UpKeyFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,047 [main] ERROR UmlAttribute - unclassified CIM attribute: (3726) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.AssociationId: Abstract Types::EntityIndex +2024-09-08 08:26:39,048 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,048 [main] TRACE UmlAttribute - created (3726) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.AssociationId: Abstract Types::EntityIndex +2024-09-08 08:26:39,048 [main] ERROR UmlAttribute - unclassified CIM attribute: (3241) OTHER_CIM CIM [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.CntRs: Abstract Types::CntRs +2024-09-08 08:26:39,048 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,048 [main] TRACE UmlAttribute - created (3241) OTHER_CIM CIM [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.CntRs: Abstract Types::CntRs +2024-09-08 08:26:39,048 [main] ERROR UmlAttribute - unclassified CIM attribute: (2417) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.LocAddress: Abstract Types::InetAddress +2024-09-08 08:26:39,048 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,048 [main] TRACE UmlAttribute - created (2417) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.LocAddress: Abstract Types::InetAddress +2024-09-08 08:26:39,048 [main] ERROR UmlAttribute - unclassified CIM attribute: (3715) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.LocAddressType: Abstract Types::InetAddressType +2024-09-08 08:26:39,049 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,049 [main] TRACE UmlAttribute - created (3715) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.LocAddressType: Abstract Types::InetAddressType +2024-09-08 08:26:39,049 [main] ERROR UmlAttribute - unclassified CIM attribute: (2413) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.ProtID: EnumeratedTypes::ProtIdType +2024-09-08 08:26:39,049 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,049 [main] TRACE UmlAttribute - created (2413) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.ProtID: EnumeratedTypes::ProtIdType +2024-09-08 08:26:39,049 [main] ERROR UmlAttribute - unclassified CIM attribute: (2412) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.ProviderDesc: Abstract Types::CharString +2024-09-08 08:26:39,049 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,049 [main] TRACE UmlAttribute - created (2412) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.ProviderDesc: Abstract Types::CharString +2024-09-08 08:26:39,049 [main] ERROR UmlAttribute - unclassified CIM attribute: (2411) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.ProviderName: Abstract Types::CharString +2024-09-08 08:26:39,049 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,049 [main] TRACE UmlAttribute - created (2411) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.ProviderName: Abstract Types::CharString +2024-09-08 08:26:39,049 [main] ERROR UmlAttribute - unclassified CIM attribute: (2416) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.RemAddress: Abstract Types::InetAddress +2024-09-08 08:26:39,049 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,050 [main] TRACE UmlAttribute - created (2416) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.RemAddress: Abstract Types::InetAddress +2024-09-08 08:26:39,050 [main] ERROR UmlAttribute - unclassified CIM attribute: (3714) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.RemAddressType: Abstract Types::InetAddressType +2024-09-08 08:26:39,050 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,050 [main] TRACE UmlAttribute - created (3714) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.RemAddressType: Abstract Types::InetAddressType +2024-09-08 08:26:39,050 [main] ERROR UmlAttribute - unclassified CIM attribute: (2410) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.TLnkErrCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,050 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,050 [main] TRACE UmlAttribute - created (2410) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.TLnkErrCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,050 [main] ERROR UmlAttribute - unclassified CIM attribute: (2415) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Association.TLnkTyp: EnumeratedTypes::LnkType +2024-09-08 08:26:39,050 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,050 [main] TRACE UmlAttribute - created (2415) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Association.TLnkTyp: EnumeratedTypes::LnkType +2024-09-08 08:26:39,050 [main] ERROR UmlAttribute - unclassified CIM attribute: (3248) OTHER_CIM CIM [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Summary.CntRs: Abstract Types::CntRs +2024-09-08 08:26:39,050 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,050 [main] TRACE UmlAttribute - created (3248) OTHER_CIM CIM [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Summary.CntRs: Abstract Types::CntRs +2024-09-08 08:26:39,051 [main] ERROR UmlAttribute - unclassified CIM attribute: (3708) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent::Summary.LastEvent: EnumeratedTypes::EventType +2024-09-08 08:26:39,051 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,051 [main] TRACE UmlAttribute - created (3708) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Summary.LastEvent: EnumeratedTypes::EventType +2024-09-08 08:26:39,051 [main] ERROR UmlAttribute - unclassified CIM attribute: (2278) OTHER_CIM CIM [0..*] null <
> IEEE 1815 and IEC 60870-5 Agent::Summary.Master: IEEE 1815 and IEC 60870-5 Agent::MasterAssociation +2024-09-08 08:26:39,051 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,051 [main] TRACE UmlAttribute - created (2278) OTHER_CIM CIM [0..*] attribute <
> IEEE 1815 and IEC 60870-5 Agent::Summary.Master: IEEE 1815 and IEC 60870-5 Agent::MasterAssociation +2024-09-08 08:26:39,051 [main] ERROR UmlAttribute - unclassified CIM attribute: (2287) OTHER_CIM CIM [0..*] null <
> IEEE 1815 and IEC 60870-5 Agent::Summary.Outstation: IEEE 1815 and IEC 60870-5 Agent::OutstationAssociation +2024-09-08 08:26:39,051 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,051 [main] TRACE UmlAttribute - created (2287) OTHER_CIM CIM [0..*] attribute <
> IEEE 1815 and IEC 60870-5 Agent::Summary.Outstation: IEEE 1815 and IEC 60870-5 Agent::OutstationAssociation +2024-09-08 08:26:39,051 [main] ERROR UmlAttribute - unclassified CIM attribute: (3609) OTHER_CIM CIM [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Summary.SecurityNotification: IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification +2024-09-08 08:26:39,051 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,051 [main] TRACE UmlAttribute - created (3609) OTHER_CIM CIM [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Summary.SecurityNotification: IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification +2024-09-08 08:26:39,051 [main] ERROR UmlAttribute - unclassified CIM attribute: (3608) OTHER_CIM CIM [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::Summary.StateNotification: IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification +2024-09-08 08:26:39,051 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,052 [main] TRACE UmlAttribute - created (3608) OTHER_CIM CIM [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::Summary.StateNotification: IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification +2024-09-08 08:26:39,052 [main] ERROR UmlAttribute - unclassified CIM attribute: (3519) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.AuthFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,052 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,052 [main] TRACE UmlAttribute - created (3519) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.AuthFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,052 [main] ERROR UmlAttribute - unclassified CIM attribute: (3518) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.CtrlPrivFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,052 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,052 [main] TRACE UmlAttribute - created (3518) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.CtrlPrivFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,052 [main] ERROR UmlAttribute - unclassified CIM attribute: (3522) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.DecryptFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,052 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,052 [main] TRACE UmlAttribute - created (3522) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.DecryptFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,052 [main] ERROR UmlAttribute - unclassified CIM attribute: (4043) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-08 08:26:39,053 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,053 [main] TRACE UmlAttribute - created (4043) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-08 08:26:39,053 [main] ERROR UmlAttribute - unclassified CIM attribute: (3520) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.PduTampCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,053 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,053 [main] TRACE UmlAttribute - created (3520) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.PduTampCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,053 [main] ERROR UmlAttribute - unclassified CIM attribute: (3521) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.PrivFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,053 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,053 [main] TRACE UmlAttribute - created (3521) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.PrivFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,053 [main] ERROR UmlAttribute - unclassified CIM attribute: (3523) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.SessKeyFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,054 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,054 [main] TRACE UmlAttribute - created (3523) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.SessKeyFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,054 [main] ERROR UmlAttribute - unclassified CIM attribute: (3524) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.UpKeyFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,054 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,054 [main] TRACE UmlAttribute - created (3524) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification.UpKeyFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,054 [main] ERROR UmlAttribute - unclassified CIM attribute: (3526) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.InErrCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,054 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,054 [main] TRACE UmlAttribute - created (3526) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.InErrCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,054 [main] ERROR UmlAttribute - unclassified CIM attribute: (3528) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.InOvCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,054 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,054 [main] TRACE UmlAttribute - created (3528) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.InOvCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,054 [main] ERROR UmlAttribute - unclassified CIM attribute: (3529) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.OutUv: Abstract Types::CounterTs +2024-09-08 08:26:39,055 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,055 [main] TRACE UmlAttribute - created (3529) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.OutUv: Abstract Types::CounterTs +2024-09-08 08:26:39,055 [main] ERROR UmlAttribute - unclassified CIM attribute: (3527) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.RxPdu: Abstract Types::CounterTs +2024-09-08 08:26:39,055 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,055 [main] TRACE UmlAttribute - created (3527) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.RxPdu: Abstract Types::CounterTs +2024-09-08 08:26:39,055 [main] ERROR UmlAttribute - unclassified CIM attribute: (3525) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.TxPdu: Abstract Types::CounterTs +2024-09-08 08:26:39,055 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,055 [main] TRACE UmlAttribute - created (3525) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification.TxPdu: Abstract Types::CounterTs +2024-09-08 08:26:39,055 [main] ERROR UmlAttribute - unclassified CIM attribute: (4257) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.ExT0Cnt: Abstract Types::CounterTs +2024-09-08 08:26:39,055 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,055 [main] TRACE UmlAttribute - created (4257) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.ExT0Cnt: Abstract Types::CounterTs +2024-09-08 08:26:39,055 [main] ERROR UmlAttribute - unclassified CIM attribute: (4258) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.ExT1Cnt: Abstract Types::CounterTs +2024-09-08 08:26:39,056 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,056 [main] TRACE UmlAttribute - created (4258) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.ExT1Cnt: Abstract Types::CounterTs +2024-09-08 08:26:39,056 [main] ERROR UmlAttribute - unclassified CIM attribute: (4259) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.ExT2Cnt: Abstract Types::CounterTs +2024-09-08 08:26:39,056 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,056 [main] TRACE UmlAttribute - created (4259) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.ExT2Cnt: Abstract Types::CounterTs +2024-09-08 08:26:39,056 [main] ERROR UmlAttribute - unclassified CIM attribute: (4260) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.ExT3Cnt: Abstract Types::CounterTs +2024-09-08 08:26:39,056 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,056 [main] TRACE UmlAttribute - created (4260) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.ExT3Cnt: Abstract Types::CounterTs +2024-09-08 08:26:39,056 [main] ERROR UmlAttribute - unclassified CIM attribute: (4261) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.DiscPduCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,056 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,056 [main] TRACE UmlAttribute - created (4261) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.DiscPduCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,056 [main] ERROR UmlAttribute - unclassified CIM attribute: (4262) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.InErrCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,056 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,057 [main] TRACE UmlAttribute - created (4262) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.InErrCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,057 [main] ERROR UmlAttribute - unclassified CIM attribute: (4263) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.InOvCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,057 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,057 [main] TRACE UmlAttribute - created (4263) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.InOvCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,057 [main] ERROR UmlAttribute - unclassified CIM attribute: (4264) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.InterPDUTime: Abstract Types::Floating +2024-09-08 08:26:39,057 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,057 [main] TRACE UmlAttribute - created (4264) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.InterPDUTime: Abstract Types::Floating +2024-09-08 08:26:39,057 [main] ERROR UmlAttribute - unclassified CIM attribute: (4265) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.MisPDUCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,057 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,057 [main] TRACE UmlAttribute - created (4265) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.MisPDUCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,057 [main] ERROR UmlAttribute - unclassified CIM attribute: (4266) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.OutErr: Abstract Types::CounterTs +2024-09-08 08:26:39,057 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,057 [main] TRACE UmlAttribute - created (4266) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.OutErr: Abstract Types::CounterTs +2024-09-08 08:26:39,058 [main] ERROR UmlAttribute - unclassified CIM attribute: (4267) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.OutUv: Abstract Types::CounterTs +2024-09-08 08:26:39,058 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,058 [main] TRACE UmlAttribute - created (4267) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.OutUv: Abstract Types::CounterTs +2024-09-08 08:26:39,058 [main] ERROR UmlAttribute - unclassified CIM attribute: (4269) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.PDUSizeFail: Abstract Types::CounterTs +2024-09-08 08:26:39,058 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,058 [main] TRACE UmlAttribute - created (4269) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.PDUSizeFail: Abstract Types::CounterTs +2024-09-08 08:26:39,058 [main] ERROR UmlAttribute - unclassified CIM attribute: (4273) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.RtxCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,058 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,058 [main] TRACE UmlAttribute - created (4273) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.RtxCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,058 [main] ERROR UmlAttribute - unclassified CIM attribute: (4275) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.RxPduCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,058 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,058 [main] TRACE UmlAttribute - created (4275) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.RxPduCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,058 [main] ERROR UmlAttribute - unclassified CIM attribute: (4276) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.RxSolicitedReq: Abstract Types::CounterTs +2024-09-08 08:26:39,059 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,059 [main] TRACE UmlAttribute - created (4276) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.RxSolicitedReq: Abstract Types::CounterTs +2024-09-08 08:26:39,059 [main] ERROR UmlAttribute - unclassified CIM attribute: (4277) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.RxUnsolicitedReq: Abstract Types::CounterTs +2024-09-08 08:26:39,059 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,059 [main] TRACE UmlAttribute - created (4277) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.RxUnsolicitedReq: Abstract Types::CounterTs +2024-09-08 08:26:39,059 [main] ERROR UmlAttribute - unclassified CIM attribute: (4280) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.TxPduCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,059 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,059 [main] TRACE UmlAttribute - created (4280) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.TxPduCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,059 [main] ERROR UmlAttribute - unclassified CIM attribute: (4281) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.TxSolicitedReq: Abstract Types::CounterTs +2024-09-08 08:26:39,059 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,059 [main] TRACE UmlAttribute - created (4281) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.TxSolicitedReq: Abstract Types::CounterTs +2024-09-08 08:26:39,059 [main] ERROR UmlAttribute - unclassified CIM attribute: (4282) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.TxUnsolicitedReq: Abstract Types::CounterTs +2024-09-08 08:26:39,060 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,060 [main] TRACE UmlAttribute - created (4282) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2.TxUnsolicitedReq: Abstract Types::CounterTs +2024-09-08 08:26:39,060 [main] ERROR UmlAttribute - unclassified CIM attribute: (4306) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.StAsProcScsCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,060 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,060 [main] TRACE UmlAttribute - created (4306) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.StAsProcScsCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,060 [main] ERROR UmlAttribute - unclassified CIM attribute: (4307) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.StAsProcFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,060 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,060 [main] TRACE UmlAttribute - created (4307) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.StAsProcFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,060 [main] ERROR UmlAttribute - unclassified CIM attribute: (4308) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyProcScsCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,060 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,060 [main] TRACE UmlAttribute - created (4308) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyProcScsCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,061 [main] ERROR UmlAttribute - unclassified CIM attribute: (4336) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.KeyAutnAlgSupFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,061 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,061 [main] TRACE UmlAttribute - created (4336) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.KeyAutnAlgSupFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,061 [main] ERROR UmlAttribute - unclassified CIM attribute: (4337) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyWrapAlgSupFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,061 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,061 [main] TRACE UmlAttribute - created (4337) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyWrapAlgSupFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,061 [main] ERROR UmlAttribute - unclassified CIM attribute: (4338) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.DataProtAlgSupFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,061 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,061 [main] TRACE UmlAttribute - created (4338) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.DataProtAlgSupFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,062 [main] ERROR UmlAttribute - unclassified CIM attribute: (4339) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyAutnErrCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,062 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,062 [main] TRACE UmlAttribute - created (4339) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyAutnErrCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,062 [main] ERROR UmlAttribute - unclassified CIM attribute: (4340) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.DataAutnErrCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,062 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,062 [main] TRACE UmlAttribute - created (4340) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.DataAutnErrCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,062 [main] ERROR UmlAttribute - unclassified CIM attribute: (4341) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.UnxpMsgErrCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,062 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,062 [main] TRACE UmlAttribute - created (4341) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.UnxpMsgErrCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,062 [main] ERROR UmlAttribute - unclassified CIM attribute: (4342) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.MaxReplyToutCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,062 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,062 [main] TRACE UmlAttribute - created (4342) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.MaxReplyToutCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,063 [main] ERROR UmlAttribute - unclassified CIM attribute: (4343) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.NodeAutrFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,063 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,063 [main] TRACE UmlAttribute - created (4343) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.NodeAutrFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,063 [main] ERROR UmlAttribute - unclassified CIM attribute: (4344) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.CtrlOperAutrFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,063 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,063 [main] TRACE UmlAttribute - created (4344) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.CtrlOperAutrFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,063 [main] ERROR UmlAttribute - unclassified CIM attribute: (4345) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.RemCertCheckFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,064 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,064 [main] TRACE UmlAttribute - created (4345) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.RemCertCheckFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,064 [main] ERROR UmlAttribute - unclassified CIM attribute: (4346) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.RemCertExpiredCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,064 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,064 [main] TRACE UmlAttribute - created (4346) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.RemCertExpiredCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,064 [main] ERROR UmlAttribute - unclassified CIM attribute: (4347) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.RemCertRevokedCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,064 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,064 [main] TRACE UmlAttribute - created (4347) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.RemCertRevokedCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,064 [main] ERROR UmlAttribute - unclassified CIM attribute: (4348) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.LocCertExpiredCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,065 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,065 [main] TRACE UmlAttribute - created (4348) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.LocCertExpiredCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,065 [main] ERROR UmlAttribute - unclassified CIM attribute: (4349) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.LocCertRevokedCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,065 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,065 [main] TRACE UmlAttribute - created (4349) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.LocCertRevokedCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,065 [main] ERROR UmlAttribute - unclassified CIM attribute: (4350) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.KeysInvRemCertRevCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,065 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,065 [main] TRACE UmlAttribute - created (4350) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.KeysInvRemCertRevCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,065 [main] ERROR UmlAttribute - unclassified CIM attribute: (4351) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.KeysInvLocCertRevCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,065 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,066 [main] TRACE UmlAttribute - created (4351) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.KeysInvLocCertRevCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,066 [main] ERROR UmlAttribute - unclassified CIM attribute: (4352) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.DataAutnScsCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,066 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,066 [main] TRACE UmlAttribute - created (4352) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.DataAutnScsCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,066 [main] ERROR UmlAttribute - unclassified CIM attribute: (4353) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.ReplyToutCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,067 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,067 [main] TRACE UmlAttribute - created (4353) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.ReplyToutCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,068 [main] ERROR UmlAttribute - unclassified CIM attribute: (4354) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.RequestToutCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,068 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,068 [main] TRACE UmlAttribute - created (4354) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.RequestToutCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,068 [main] ERROR UmlAttribute - unclassified CIM attribute: (4355) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyInvUseCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,068 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,068 [main] TRACE UmlAttribute - created (4355) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyInvUseCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,068 [main] ERROR UmlAttribute - unclassified CIM attribute: (4356) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyInvToutCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,070 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,070 [main] TRACE UmlAttribute - created (4356) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyInvToutCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,071 [main] ERROR UmlAttribute - unclassified CIM attribute: (4357) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyProcFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,071 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,071 [main] TRACE UmlAttribute - created (4357) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.SKeyProcFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,071 [main] ERROR UmlAttribute - unclassified CIM attribute: (4335) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.ProtInfoErrCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,071 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,071 [main] TRACE UmlAttribute - created (4335) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5.ProtInfoErrCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,071 [main] ERROR UmlAttribute - unclassified CIM attribute: (4284) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.AssociationId: Abstract Types::EntityIndex +2024-09-08 08:26:39,072 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,072 [main] TRACE UmlAttribute - created (4284) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.AssociationId: Abstract Types::EntityIndex +2024-09-08 08:26:39,072 [main] ERROR UmlAttribute - unclassified CIM attribute: (4285) OTHER_CIM CIM [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.CntRs: Abstract Types::CntRs +2024-09-08 08:26:39,072 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,072 [main] TRACE UmlAttribute - created (4285) OTHER_CIM CIM [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.CntRs: Abstract Types::CntRs +2024-09-08 08:26:39,073 [main] ERROR UmlAttribute - unclassified CIM attribute: (4286) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.LocAddress: Abstract Types::InetAddress +2024-09-08 08:26:39,073 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,073 [main] TRACE UmlAttribute - created (4286) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.LocAddress: Abstract Types::InetAddress +2024-09-08 08:26:39,073 [main] ERROR UmlAttribute - unclassified CIM attribute: (4287) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.LocAddressType: Abstract Types::InetAddressType +2024-09-08 08:26:39,073 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,073 [main] TRACE UmlAttribute - created (4287) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.LocAddressType: Abstract Types::InetAddressType +2024-09-08 08:26:39,073 [main] ERROR UmlAttribute - unclassified CIM attribute: (4288) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.ProtID: EnumeratedTypes::ProtIdType +2024-09-08 08:26:39,073 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,073 [main] TRACE UmlAttribute - created (4288) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.ProtID: EnumeratedTypes::ProtIdType +2024-09-08 08:26:39,073 [main] ERROR UmlAttribute - unclassified CIM attribute: (4289) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.ProviderDesc: Abstract Types::CharString +2024-09-08 08:26:39,074 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,074 [main] TRACE UmlAttribute - created (4289) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.ProviderDesc: Abstract Types::CharString +2024-09-08 08:26:39,074 [main] ERROR UmlAttribute - unclassified CIM attribute: (4290) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.ProviderName: Abstract Types::CharString +2024-09-08 08:26:39,074 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,074 [main] TRACE UmlAttribute - created (4290) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.ProviderName: Abstract Types::CharString +2024-09-08 08:26:39,074 [main] ERROR UmlAttribute - unclassified CIM attribute: (4291) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.RemAddress: Abstract Types::InetAddress +2024-09-08 08:26:39,074 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,074 [main] TRACE UmlAttribute - created (4291) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.RemAddress: Abstract Types::InetAddress +2024-09-08 08:26:39,074 [main] ERROR UmlAttribute - unclassified CIM attribute: (4292) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.RemAddressType: Abstract Types::InetAddressType +2024-09-08 08:26:39,074 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,075 [main] TRACE UmlAttribute - created (4292) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.RemAddressType: Abstract Types::InetAddressType +2024-09-08 08:26:39,075 [main] ERROR UmlAttribute - unclassified CIM attribute: (4293) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.TLnkErrCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,075 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,075 [main] TRACE UmlAttribute - created (4293) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.TLnkErrCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,075 [main] ERROR UmlAttribute - unclassified CIM attribute: (4294) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.TLnkTyp: EnumeratedTypes::LnkType +2024-09-08 08:26:39,075 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,075 [main] TRACE UmlAttribute - created (4294) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Association.TLnkTyp: EnumeratedTypes::LnkType +2024-09-08 08:26:39,076 [main] ERROR UmlAttribute - unclassified CIM attribute: (4295) OTHER_CIM CIM [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.CntRs: Abstract Types::CntRs +2024-09-08 08:26:39,076 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,076 [main] TRACE UmlAttribute - created (4295) OTHER_CIM CIM [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.CntRs: Abstract Types::CntRs +2024-09-08 08:26:39,076 [main] ERROR UmlAttribute - unclassified CIM attribute: (4296) OTHER_CIM CIM const [1..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.LastEvent: EnumeratedTypes::EventType +2024-09-08 08:26:39,076 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,076 [main] TRACE UmlAttribute - created (4296) OTHER_CIM CIM const [1..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.LastEvent: EnumeratedTypes::EventType +2024-09-08 08:26:39,076 [main] ERROR UmlAttribute - unclassified CIM attribute: (4297) OTHER_CIM CIM [0..*] null <
> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.Master: IEEE 1815 and IEC 60870-5 Agent - ed2::MasterAssociation +2024-09-08 08:26:39,076 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,076 [main] TRACE UmlAttribute - created (4297) OTHER_CIM CIM [0..*] attribute <
> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.Master: IEEE 1815 and IEC 60870-5 Agent - ed2::MasterAssociation +2024-09-08 08:26:39,076 [main] ERROR UmlAttribute - unclassified CIM attribute: (4298) OTHER_CIM CIM [0..*] null <
> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.Outstation: IEEE 1815 and IEC 60870-5 Agent - ed2::OutstationAssociation +2024-09-08 08:26:39,076 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,077 [main] TRACE UmlAttribute - created (4298) OTHER_CIM CIM [0..*] attribute <
> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.Outstation: IEEE 1815 and IEC 60870-5 Agent - ed2::OutstationAssociation +2024-09-08 08:26:39,077 [main] ERROR UmlAttribute - unclassified CIM attribute: (4299) OTHER_CIM CIM [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.SecurityNotification: IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2 +2024-09-08 08:26:39,077 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,077 [main] TRACE UmlAttribute - created (4299) OTHER_CIM CIM [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.SecurityNotification: IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2 +2024-09-08 08:26:39,077 [main] ERROR UmlAttribute - unclassified CIM attribute: (4300) OTHER_CIM CIM [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.StateNotification: IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2 +2024-09-08 08:26:39,077 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,077 [main] TRACE UmlAttribute - created (4300) OTHER_CIM CIM [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::Summary.StateNotification: IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2 +2024-09-08 08:26:39,077 [main] ERROR UmlAttribute - unclassified CIM attribute: (4358) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2.LastEvent: EnumeratedTypes::EventType +2024-09-08 08:26:39,078 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,078 [main] TRACE UmlAttribute - created (4358) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2.LastEvent: EnumeratedTypes::EventType +2024-09-08 08:26:39,078 [main] ERROR UmlAttribute - unclassified CIM attribute: (4360) OTHER_CIM CIM const [0..1] null <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2.LastEvent: EnumeratedTypes::EventType +2024-09-08 08:26:39,078 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,078 [main] TRACE UmlAttribute - created (4360) OTHER_CIM CIM const [0..1] attribute <> IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2.LastEvent: EnumeratedTypes::EventType +2024-09-08 08:26:39,078 [main] ERROR UmlAttribute - unclassified CIM attribute: (1254) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.assocPoolMax: Abstract Types::Integer +2024-09-08 08:26:39,078 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,078 [main] TRACE UmlAttribute - created (1254) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.assocPoolMax: Abstract Types::Integer +2024-09-08 08:26:39,078 [main] ERROR UmlAttribute - unclassified CIM attribute: (1255) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.assocPoolUsed: Abstract Types::Integer +2024-09-08 08:26:39,078 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,079 [main] TRACE UmlAttribute - created (1255) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.assocPoolUsed: Abstract Types::Integer +2024-09-08 08:26:39,079 [main] ERROR UmlAttribute - unclassified CIM attribute: (1278) OTHER_CIM CIM [0..1] null <> ACSI::ACSISummary.CntRs: Abstract Types::CntRs +2024-09-08 08:26:39,079 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,079 [main] TRACE UmlAttribute - created (1278) OTHER_CIM CIM [0..1] attribute <> ACSI::ACSISummary.CntRs: Abstract Types::CntRs +2024-09-08 08:26:39,079 [main] ERROR UmlAttribute - unclassified CIM attribute: (3931) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.CtrlPrivFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,079 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,079 [main] TRACE UmlAttribute - created (3931) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.CtrlPrivFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,079 [main] ERROR UmlAttribute - unclassified CIM attribute: (1262) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.gsePubMax: Abstract Types::Integer +2024-09-08 08:26:39,079 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,079 [main] TRACE UmlAttribute - created (1262) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.gsePubMax: Abstract Types::Integer +2024-09-08 08:26:39,079 [main] ERROR UmlAttribute - unclassified CIM attribute: (2263) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.gsePubUsed: Abstract Types::Integer +2024-09-08 08:26:39,080 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,080 [main] TRACE UmlAttribute - created (2263) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.gsePubUsed: Abstract Types::Integer +2024-09-08 08:26:39,080 [main] ERROR UmlAttribute - unclassified CIM attribute: (1264) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.gseSubMax: Abstract Types::Integer +2024-09-08 08:26:39,080 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,080 [main] TRACE UmlAttribute - created (1264) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.gseSubMax: Abstract Types::Integer +2024-09-08 08:26:39,080 [main] ERROR UmlAttribute - unclassified CIM attribute: (1263) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.gseSubUsed: Abstract Types::Integer +2024-09-08 08:26:39,080 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,080 [main] TRACE UmlAttribute - created (1263) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.gseSubUsed: Abstract Types::Integer +2024-09-08 08:26:39,080 [main] ERROR UmlAttribute - unclassified CIM attribute: (3709) OTHER_CIM CIM const [1..1] null <> ACSI::ACSISummary.LastEvent: EnumeratedTypes::EventType +2024-09-08 08:26:39,080 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,080 [main] TRACE UmlAttribute - created (3709) OTHER_CIM CIM const [1..1] attribute <> ACSI::ACSISummary.LastEvent: EnumeratedTypes::EventType +2024-09-08 08:26:39,081 [main] ERROR UmlAttribute - unclassified CIM attribute: (3930) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.PrivFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,081 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,081 [main] TRACE UmlAttribute - created (3930) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.PrivFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,081 [main] ERROR UmlAttribute - unclassified CIM attribute: (1271) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.RemoteEstAssocCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,081 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,081 [main] TRACE UmlAttribute - created (1271) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.RemoteEstAssocCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,081 [main] ERROR UmlAttribute - unclassified CIM attribute: (3932) OTHER_CIM CIM const [1..1] null <> ACSI::ACSISummary.AcsCtlFail: Abstract Types::CounterTs +2024-09-08 08:26:39,082 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,082 [main] TRACE UmlAttribute - created (3932) OTHER_CIM CIM const [1..1] attribute <> ACSI::ACSISummary.AcsCtlFail: Abstract Types::CounterTs +2024-09-08 08:26:39,082 [main] ERROR UmlAttribute - unclassified CIM attribute: (1282) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.svPubMax: Abstract Types::Integer +2024-09-08 08:26:39,082 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,082 [main] TRACE UmlAttribute - created (1282) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.svPubMax: Abstract Types::Integer +2024-09-08 08:26:39,082 [main] ERROR UmlAttribute - unclassified CIM attribute: (1281) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.svPubUsed: Abstract Types::Integer +2024-09-08 08:26:39,082 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,083 [main] TRACE UmlAttribute - created (1281) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.svPubUsed: Abstract Types::Integer +2024-09-08 08:26:39,083 [main] ERROR UmlAttribute - unclassified CIM attribute: (1284) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.svSubMax: Abstract Types::Integer +2024-09-08 08:26:39,083 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,083 [main] TRACE UmlAttribute - created (1284) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.svSubMax: Abstract Types::Integer +2024-09-08 08:26:39,083 [main] ERROR UmlAttribute - unclassified CIM attribute: (1283) OTHER_CIM CIM const [0..1] null <> ACSI::ACSISummary.svSubUsed: Abstract Types::Integer +2024-09-08 08:26:39,083 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,083 [main] TRACE UmlAttribute - created (1283) OTHER_CIM CIM const [0..1] attribute <> ACSI::ACSISummary.svSubUsed: Abstract Types::Integer +2024-09-08 08:26:39,084 [main] ERROR UmlAttribute - unclassified CIM attribute: (4122) OTHER_CIM CIM const [1..1] null <> MMS::MMSProtocolInfo.ErrorRxCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,084 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,084 [main] TRACE UmlAttribute - created (4122) OTHER_CIM CIM const [1..1] attribute <> MMS::MMSProtocolInfo.ErrorRxCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,084 [main] ERROR UmlAttribute - unclassified CIM attribute: (4123) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.ErrorTxCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,084 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,084 [main] TRACE UmlAttribute - created (4123) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.ErrorTxCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,084 [main] ERROR UmlAttribute - unclassified CIM attribute: (3214) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.InfoRptRxCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,084 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,085 [main] TRACE UmlAttribute - created (3214) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.InfoRptRxCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,085 [main] ERROR UmlAttribute - unclassified CIM attribute: (4120) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.InfoRptTxCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,085 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,085 [main] TRACE UmlAttribute - created (4120) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.InfoRptTxCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,085 [main] ERROR UmlAttribute - unclassified CIM attribute: (3969) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.MisCmdAckCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,086 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,086 [main] TRACE UmlAttribute - created (3969) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.MisCmdAckCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,086 [main] ERROR UmlAttribute - unclassified CIM attribute: (3414) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.MMSProExchTime: Abstract Types::Floating +2024-09-08 08:26:39,087 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,087 [main] TRACE UmlAttribute - created (3414) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.MMSProExchTime: Abstract Types::Floating +2024-09-08 08:26:39,087 [main] ERROR UmlAttribute - unclassified CIM attribute: (3211) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.RejectRxCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,087 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,087 [main] TRACE UmlAttribute - created (3211) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.RejectRxCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,087 [main] ERROR UmlAttribute - unclassified CIM attribute: (3212) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.RejectTxCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,087 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,087 [main] TRACE UmlAttribute - created (3212) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.RejectTxCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,087 [main] ERROR UmlAttribute - unclassified CIM attribute: (3208) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.ReqRxCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,087 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,087 [main] TRACE UmlAttribute - created (3208) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.ReqRxCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,087 [main] ERROR UmlAttribute - unclassified CIM attribute: (3206) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.ReqTxCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,088 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,088 [main] TRACE UmlAttribute - created (3206) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.ReqTxCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,088 [main] ERROR UmlAttribute - unclassified CIM attribute: (3210) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.RespRxCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,088 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,088 [main] TRACE UmlAttribute - created (3210) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.RespRxCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,088 [main] ERROR UmlAttribute - unclassified CIM attribute: (3209) OTHER_CIM CIM const [0..1] null <> MMS::MMSProtocolInfo.RespTxCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,088 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,088 [main] TRACE UmlAttribute - created (3209) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProtocolInfo.RespTxCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,088 [main] ERROR UmlAttribute - unclassified CIM attribute: (3935) OTHER_CIM CIM const [1..1] null <> MMS::MMSProtocolInfo.SessKeyFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,088 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,089 [main] TRACE UmlAttribute - created (3935) OTHER_CIM CIM const [1..1] attribute <> MMS::MMSProtocolInfo.SessKeyFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,089 [main] ERROR UmlAttribute - unclassified CIM attribute: (3918) OTHER_CIM CIM const [1..1] null <> MMS::MMSProvider.AProfileDecryptFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,089 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,089 [main] TRACE UmlAttribute - created (3918) OTHER_CIM CIM const [1..1] attribute <> MMS::MMSProvider.AProfileDecryptFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,089 [main] ERROR UmlAttribute - unclassified CIM attribute: (3938) OTHER_CIM CIM const [1..1] null <> MMS::MMSProvider.AuthFail: Abstract Types::CounterTs +2024-09-08 08:26:39,089 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,089 [main] TRACE UmlAttribute - created (3938) OTHER_CIM CIM const [1..1] attribute <> MMS::MMSProvider.AuthFail: Abstract Types::CounterTs +2024-09-08 08:26:39,089 [main] ERROR UmlAttribute - unclassified CIM attribute: (3245) OTHER_CIM CIM [0..1] null <> MMS::MMSProvider.CntRs: Abstract Types::CntRs +2024-09-08 08:26:39,089 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,090 [main] TRACE UmlAttribute - created (3245) OTHER_CIM CIM [0..1] attribute <> MMS::MMSProvider.CntRs: Abstract Types::CntRs +2024-09-08 08:26:39,090 [main] ERROR UmlAttribute - unclassified CIM attribute: (2831) OTHER_CIM CIM const [1..1] null <> MMS::MMSProvider.ConnFailInCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,090 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,090 [main] TRACE UmlAttribute - created (2831) OTHER_CIM CIM const [1..1] attribute <> MMS::MMSProvider.ConnFailInCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,090 [main] ERROR UmlAttribute - unclassified CIM attribute: (2832) OTHER_CIM CIM const [1..1] null <> MMS::MMSProvider.ConnFailOutCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,090 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,090 [main] TRACE UmlAttribute - created (2832) OTHER_CIM CIM const [1..1] attribute <> MMS::MMSProvider.ConnFailOutCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,090 [main] ERROR UmlAttribute - unclassified CIM attribute: (3936) OTHER_CIM CIM const [0..1] null <> MMS::MMSProvider.DecryptFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,090 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,090 [main] TRACE UmlAttribute - created (3936) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProvider.DecryptFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,090 [main] ERROR UmlAttribute - unclassified CIM attribute: (3710) OTHER_CIM CIM const [1..1] null <> MMS::MMSProvider.LastEvent: EnumeratedTypes::EventType +2024-09-08 08:26:39,090 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,091 [main] TRACE UmlAttribute - created (3710) OTHER_CIM CIM const [1..1] attribute <> MMS::MMSProvider.LastEvent: EnumeratedTypes::EventType +2024-09-08 08:26:39,091 [main] ERROR UmlAttribute - unclassified CIM attribute: (2803) OTHER_CIM CIM [0..*] null <
> MMS::MMSProvider.MMS: MMS::MMSAssociation +2024-09-08 08:26:39,091 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,091 [main] TRACE UmlAttribute - created (2803) OTHER_CIM CIM [0..*] attribute <
> MMS::MMSProvider.MMS: MMS::MMSAssociation +2024-09-08 08:26:39,091 [main] ERROR UmlAttribute - unclassified CIM attribute: (3915) OTHER_CIM CIM const [0..1] null <> MMS::MMSProvider.PrivFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,091 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,095 [main] TRACE UmlAttribute - created (3915) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProvider.PrivFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,096 [main] ERROR UmlAttribute - unclassified CIM attribute: (2810) OTHER_CIM CIM const [0..1] null <> MMS::MMSProvider.ProviderDesc: Abstract Types::CharString +2024-09-08 08:26:39,097 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,100 [main] TRACE UmlAttribute - created (2810) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProvider.ProviderDesc: Abstract Types::CharString +2024-09-08 08:26:39,100 [main] ERROR UmlAttribute - unclassified CIM attribute: (2811) OTHER_CIM CIM const [0..1] null <> MMS::MMSProvider.ProviderName: Abstract Types::CharString +2024-09-08 08:26:39,100 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,101 [main] TRACE UmlAttribute - created (2811) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProvider.ProviderName: Abstract Types::CharString +2024-09-08 08:26:39,101 [main] ERROR UmlAttribute - unclassified CIM attribute: (3614) OTHER_CIM CIM [0..1] null <> MMS::MMSProvider.SecurityNotification: MMS::MMSSecurityNotification +2024-09-08 08:26:39,101 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,101 [main] TRACE UmlAttribute - created (3614) OTHER_CIM CIM [0..1] attribute <> MMS::MMSProvider.SecurityNotification: MMS::MMSSecurityNotification +2024-09-08 08:26:39,101 [main] ERROR UmlAttribute - unclassified CIM attribute: (4030) OTHER_CIM CIM const [0..1] null <> MMS::MMSProvider.SessionEstablishmentRate: Abstract Types::Integer +2024-09-08 08:26:39,101 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,101 [main] TRACE UmlAttribute - created (4030) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProvider.SessionEstablishmentRate: Abstract Types::Integer +2024-09-08 08:26:39,101 [main] ERROR UmlAttribute - unclassified CIM attribute: (4031) OTHER_CIM CIM const [0..1] null <> MMS::MMSProvider.SessionRestartCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,102 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,103 [main] TRACE UmlAttribute - created (4031) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProvider.SessionRestartCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,103 [main] ERROR UmlAttribute - unclassified CIM attribute: (3613) OTHER_CIM CIM [0..1] null <> MMS::MMSProvider.StateNotification: MMS::MMSNotification +2024-09-08 08:26:39,104 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,104 [main] TRACE UmlAttribute - created (3613) OTHER_CIM CIM [0..1] attribute <> MMS::MMSProvider.StateNotification: MMS::MMSNotification +2024-09-08 08:26:39,104 [main] ERROR UmlAttribute - unclassified CIM attribute: (3919) OTHER_CIM CIM const [1..1] null <> MMS::MMSProvider.TProfileDecryptFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,104 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,104 [main] TRACE UmlAttribute - created (3919) OTHER_CIM CIM const [1..1] attribute <> MMS::MMSProvider.TProfileDecryptFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,104 [main] ERROR UmlAttribute - unclassified CIM attribute: (3921) OTHER_CIM CIM const [0..1] null <> MMS::MMSProvider.TProfileSessKeyFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,104 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,105 [main] TRACE UmlAttribute - created (3921) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSProvider.TProfileSessKeyFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,105 [main] ERROR UmlAttribute - unclassified CIM attribute: (3975) OTHER_CIM CIM const [1..1] null <> MMS::MMSProvider.UpKeyFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,105 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,105 [main] TRACE UmlAttribute - created (3975) OTHER_CIM CIM const [1..1] attribute <> MMS::MMSProvider.UpKeyFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,105 [main] ERROR UmlAttribute - unclassified CIM attribute: (2820) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.Active: Abstract Types::BooleanValueTs +2024-09-08 08:26:39,105 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,106 [main] TRACE UmlAttribute - created (2820) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.Active: Abstract Types::BooleanValueTs +2024-09-08 08:26:39,106 [main] ERROR UmlAttribute - unclassified CIM attribute: (3727) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.AssociationId: Abstract Types::EntityIndex +2024-09-08 08:26:39,106 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,106 [main] TRACE UmlAttribute - created (3727) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.AssociationId: Abstract Types::EntityIndex +2024-09-08 08:26:39,106 [main] ERROR UmlAttribute - unclassified CIM attribute: (4119) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.Client: Abstract Types::BooleanValue +2024-09-08 08:26:39,106 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,106 [main] TRACE UmlAttribute - created (4119) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.Client: Abstract Types::BooleanValue +2024-09-08 08:26:39,106 [main] ERROR UmlAttribute - unclassified CIM attribute: (3246) OTHER_CIM CIM [0..1] null <> MMS::MMSAssociation.CntRs: Abstract Types::CntRs +2024-09-08 08:26:39,107 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,107 [main] TRACE UmlAttribute - created (3246) OTHER_CIM CIM [0..1] attribute <> MMS::MMSAssociation.CntRs: Abstract Types::CntRs +2024-09-08 08:26:39,107 [main] ERROR UmlAttribute - unclassified CIM attribute: (3939) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.HndShTime: Abstract Types::Floating +2024-09-08 08:26:39,107 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,107 [main] TRACE UmlAttribute - created (3939) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.HndShTime: Abstract Types::Floating +2024-09-08 08:26:39,107 [main] ERROR UmlAttribute - unclassified CIM attribute: (2844) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.RemoteEstAssos: Abstract Types::BooleanValue +2024-09-08 08:26:39,108 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,108 [main] TRACE UmlAttribute - created (2844) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.RemoteEstAssos: Abstract Types::BooleanValue +2024-09-08 08:26:39,109 [main] ERROR UmlAttribute - unclassified CIM attribute: (2876) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.RemoteIP: Abstract Types::InetAddress +2024-09-08 08:26:39,109 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,109 [main] TRACE UmlAttribute - created (2876) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.RemoteIP: Abstract Types::InetAddress +2024-09-08 08:26:39,109 [main] ERROR UmlAttribute - unclassified CIM attribute: (3692) OTHER_CIM CIM [0..1] null <> MMS::MMSAssociation.RemoteIPAddressType: Abstract Types::InetAddressType +2024-09-08 08:26:39,109 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,110 [main] TRACE UmlAttribute - created (3692) OTHER_CIM CIM [0..1] attribute <> MMS::MMSAssociation.RemoteIPAddressType: Abstract Types::InetAddressType +2024-09-08 08:26:39,110 [main] ERROR UmlAttribute - unclassified CIM attribute: (2873) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.RemotePSEL: Abstract Types::Selector +2024-09-08 08:26:39,110 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,111 [main] TRACE UmlAttribute - created (2873) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.RemotePSEL: Abstract Types::Selector +2024-09-08 08:26:39,111 [main] ERROR UmlAttribute - unclassified CIM attribute: (2874) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.RemoteSSEL: Abstract Types::Selector +2024-09-08 08:26:39,111 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,111 [main] TRACE UmlAttribute - created (2874) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.RemoteSSEL: Abstract Types::Selector +2024-09-08 08:26:39,111 [main] ERROR UmlAttribute - unclassified CIM attribute: (2875) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.RemoteTSEL: Abstract Types::Selector +2024-09-08 08:26:39,111 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,111 [main] TRACE UmlAttribute - created (2875) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.RemoteTSEL: Abstract Types::Selector +2024-09-08 08:26:39,112 [main] ERROR UmlAttribute - unclassified CIM attribute: (3972) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.ReportPer100Seconds: Abstract Types::Integer +2024-09-08 08:26:39,112 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,112 [main] TRACE UmlAttribute - created (3972) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.ReportPer100Seconds: Abstract Types::Integer +2024-09-08 08:26:39,112 [main] ERROR UmlAttribute - unclassified CIM attribute: (3968) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.RptReceptionDelay: Abstract Types::FloatingTs +2024-09-08 08:26:39,112 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,112 [main] TRACE UmlAttribute - created (3968) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.RptReceptionDelay: Abstract Types::FloatingTs +2024-09-08 08:26:39,112 [main] ERROR UmlAttribute - unclassified CIM attribute: (3913) OTHER_CIM CIM const [0..1] null <> MMS::MMSAssociation.SecurityProfile: EnumeratedTypes::SecurityProfileType +2024-09-08 08:26:39,113 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,113 [main] TRACE UmlAttribute - created (3913) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSAssociation.SecurityProfile: EnumeratedTypes::SecurityProfileType +2024-09-08 08:26:39,113 [main] ERROR UmlAttribute - unclassified CIM attribute: (3582) OTHER_CIM CIM const [0..1] null <> MMS::MMSSecurityNotification.DecryptFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,113 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,113 [main] TRACE UmlAttribute - created (3582) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSSecurityNotification.DecryptFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,113 [main] ERROR UmlAttribute - unclassified CIM attribute: (4036) OTHER_CIM CIM const [0..1] null <> MMS::MMSSecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-08 08:26:39,113 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,113 [main] TRACE UmlAttribute - created (4036) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSSecurityNotification.LastEvent: EnumeratedTypes::EventType +2024-09-08 08:26:39,114 [main] ERROR UmlAttribute - unclassified CIM attribute: (3581) OTHER_CIM CIM const [0..1] null <> MMS::MMSSecurityNotification.PrivFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,114 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,114 [main] TRACE UmlAttribute - created (3581) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSSecurityNotification.PrivFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,114 [main] ERROR UmlAttribute - unclassified CIM attribute: (3584) OTHER_CIM CIM const [0..1] null <> MMS::MMSSecurityNotification.UpKeyFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,114 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,114 [main] TRACE UmlAttribute - created (3584) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSSecurityNotification.UpKeyFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,114 [main] ERROR UmlAttribute - unclassified CIM attribute: (3573) OTHER_CIM CIM const [0..1] null <> MMS::MMSNotification.ConnFailInCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,114 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,115 [main] TRACE UmlAttribute - created (3573) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSNotification.ConnFailInCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,115 [main] ERROR UmlAttribute - unclassified CIM attribute: (3574) OTHER_CIM CIM const [0..1] null <> MMS::MMSNotification.ConnFailOutCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,115 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,115 [main] TRACE UmlAttribute - created (3574) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSNotification.ConnFailOutCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,115 [main] ERROR UmlAttribute - unclassified CIM attribute: (3575) OTHER_CIM CIM const [0..1] null <> MMS::MMSNotification.RejectRxCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,116 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,116 [main] TRACE UmlAttribute - created (3575) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSNotification.RejectRxCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,116 [main] ERROR UmlAttribute - unclassified CIM attribute: (3576) OTHER_CIM CIM const [0..1] null <> MMS::MMSNotification.RejectTxCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,117 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,118 [main] TRACE UmlAttribute - created (3576) OTHER_CIM CIM const [0..1] attribute <> MMS::MMSNotification.RejectTxCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,118 [main] ERROR UmlAttribute - unclassified CIM attribute: (4054) OTHER_CIM CIM const [0..1] null <> SV and GSE common objects::GSEandSVCommon.GroupUpKeyFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,118 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,118 [main] TRACE UmlAttribute - created (4054) OTHER_CIM CIM const [0..1] attribute <> SV and GSE common objects::GSEandSVCommon.GroupUpKeyFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,118 [main] ERROR UmlAttribute - unclassified CIM attribute: (4055) OTHER_CIM CIM const [1..1] null <> SV and GSE common objects::GSEandSVCommon.KDCAuthFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,118 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,118 [main] TRACE UmlAttribute - created (4055) OTHER_CIM CIM const [1..1] attribute <> SV and GSE common objects::GSEandSVCommon.KDCAuthFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,118 [main] ERROR UmlAttribute - unclassified CIM attribute: (4056) OTHER_CIM CIM const [0..1] null <> SV and GSE common objects::GSEandSVCommon.KDCSessionKeyFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,120 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,120 [main] TRACE UmlAttribute - created (4056) OTHER_CIM CIM const [0..1] attribute <> SV and GSE common objects::GSEandSVCommon.KDCSessionKeyFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,120 [main] ERROR UmlAttribute - unclassified CIM attribute: (4057) OTHER_CIM CIM const [0..1] null <> SV and GSE common objects::GSEandSVPublisherAssociation.CBRef: Abstract Types::CharString +2024-09-08 08:26:39,120 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,121 [main] TRACE UmlAttribute - created (4057) OTHER_CIM CIM const [0..1] attribute <> SV and GSE common objects::GSEandSVPublisherAssociation.CBRef: Abstract Types::CharString +2024-09-08 08:26:39,121 [main] ERROR UmlAttribute - unclassified CIM attribute: (4058) OTHER_CIM CIM [0..1] null <> SV and GSE common objects::GSEandSVPublisherAssociation.CntRs: Abstract Types::CntRs +2024-09-08 08:26:39,121 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,121 [main] TRACE UmlAttribute - created (4058) OTHER_CIM CIM [0..1] attribute <> SV and GSE common objects::GSEandSVPublisherAssociation.CntRs: Abstract Types::CntRs +2024-09-08 08:26:39,121 [main] ERROR UmlAttribute - unclassified CIM attribute: (4059) OTHER_CIM CIM const [0..1] null <> SV and GSE common objects::GSEandSVPublisherAssociation.OutUv: Abstract Types::CounterTs +2024-09-08 08:26:39,122 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,122 [main] TRACE UmlAttribute - created (4059) OTHER_CIM CIM const [0..1] attribute <> SV and GSE common objects::GSEandSVPublisherAssociation.OutUv: Abstract Types::CounterTs +2024-09-08 08:26:39,122 [main] ERROR UmlAttribute - unclassified CIM attribute: (4366) OTHER_CIM CIM const [1..1] null <> SV and GSE common objects::GSEandSVPublisherAssociation.APPID: Abstract Types::CharString +2024-09-08 08:26:39,122 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,122 [main] TRACE UmlAttribute - created (4366) OTHER_CIM CIM const [1..1] attribute <> SV and GSE common objects::GSEandSVPublisherAssociation.APPID: Abstract Types::CharString +2024-09-08 08:26:39,122 [main] ERROR UmlAttribute - unclassified CIM attribute: (3829) OTHER_CIM CIM const [0..1] null <> SV and GSE common objects::GSEandSVPublisherAssociation.TxPduPerSecond: Abstract Types::Floating +2024-09-08 08:26:39,122 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,123 [main] TRACE UmlAttribute - created (3829) OTHER_CIM CIM const [0..1] attribute <> SV and GSE common objects::GSEandSVPublisherAssociation.TxPduPerSecond: Abstract Types::Floating +2024-09-08 08:26:39,123 [main] ERROR UmlAttribute - unclassified CIM attribute: (4061) OTHER_CIM CIM const [0..1] null <> SV and GSE common objects::GSEandSVSubscriberAssociation.CBRef: Abstract Types::CharString +2024-09-08 08:26:39,123 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,123 [main] TRACE UmlAttribute - created (4061) OTHER_CIM CIM const [0..1] attribute <> SV and GSE common objects::GSEandSVSubscriberAssociation.CBRef: Abstract Types::CharString +2024-09-08 08:26:39,123 [main] ERROR UmlAttribute - unclassified CIM attribute: (4062) OTHER_CIM CIM [0..1] null <> SV and GSE common objects::GSEandSVSubscriberAssociation.CntRs: Abstract Types::CntRs +2024-09-08 08:26:39,123 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,123 [main] TRACE UmlAttribute - created (4062) OTHER_CIM CIM [0..1] attribute <> SV and GSE common objects::GSEandSVSubscriberAssociation.CntRs: Abstract Types::CntRs +2024-09-08 08:26:39,123 [main] ERROR UmlAttribute - unclassified CIM attribute: (4063) OTHER_CIM CIM const [0..1] null <> SV and GSE common objects::GSEandSVSubscriberAssociation.InOvCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,123 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,123 [main] TRACE UmlAttribute - created (4063) OTHER_CIM CIM const [0..1] attribute <> SV and GSE common objects::GSEandSVSubscriberAssociation.InOvCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,124 [main] ERROR UmlAttribute - unclassified CIM attribute: (4064) OTHER_CIM CIM const [1..1] null <> SV and GSE common objects::GSEandSVSubscriberAssociation.MessageIntegrityFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,124 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,124 [main] TRACE UmlAttribute - created (4064) OTHER_CIM CIM const [1..1] attribute <> SV and GSE common objects::GSEandSVSubscriberAssociation.MessageIntegrityFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,128 [main] ERROR UmlAttribute - unclassified CIM attribute: (4067) OTHER_CIM CIM const [0..1] null <> SV and GSE common objects::GSEandSVSubscriberAssociation.RxPduPerSecond: Abstract Types::Floating +2024-09-08 08:26:39,128 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,128 [main] TRACE UmlAttribute - created (4067) OTHER_CIM CIM const [0..1] attribute <> SV and GSE common objects::GSEandSVSubscriberAssociation.RxPduPerSecond: Abstract Types::Floating +2024-09-08 08:26:39,128 [main] ERROR UmlAttribute - unclassified CIM attribute: (4365) OTHER_CIM CIM const [1..1] null <> SV and GSE common objects::GSEandSVSubscriberAssociation.APPID: Abstract Types::CharString +2024-09-08 08:26:39,128 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,129 [main] TRACE UmlAttribute - created (4365) OTHER_CIM CIM const [1..1] attribute <> SV and GSE common objects::GSEandSVSubscriberAssociation.APPID: Abstract Types::CharString +2024-09-08 08:26:39,129 [main] ERROR UmlAttribute - unclassified CIM attribute: (4367) OTHER_CIM CIM const [1..1] null <> SV and GSE common objects::GSEandSVSubscriberAssociation.RxAPPID: Abstract Types::CharStringTs +2024-09-08 08:26:39,129 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,129 [main] TRACE UmlAttribute - created (4367) OTHER_CIM CIM const [1..1] attribute <> SV and GSE common objects::GSEandSVSubscriberAssociation.RxAPPID: Abstract Types::CharStringTs +2024-09-08 08:26:39,129 [main] ERROR UmlAttribute - unclassified CIM attribute: (3844) OTHER_CIM CIM [0..1] null <> SV::SVProvider.CntRs: Abstract Types::CntRs +2024-09-08 08:26:39,129 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,129 [main] TRACE UmlAttribute - created (3844) OTHER_CIM CIM [0..1] attribute <> SV::SVProvider.CntRs: Abstract Types::CntRs +2024-09-08 08:26:39,129 [main] ERROR UmlAttribute - unclassified CIM attribute: (4052) OTHER_CIM CIM const [0..1] null <> SV::SVProvider.DecryptFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,129 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,129 [main] TRACE UmlAttribute - created (4052) OTHER_CIM CIM const [0..1] attribute <> SV::SVProvider.DecryptFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,129 [main] ERROR UmlAttribute - unclassified CIM attribute: (3845) OTHER_CIM CIM const [0..1] null <> SV::SVProvider.PDUSizeFail: Abstract Types::CounterTs +2024-09-08 08:26:39,130 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,130 [main] TRACE UmlAttribute - created (3845) OTHER_CIM CIM const [0..1] attribute <> SV::SVProvider.PDUSizeFail: Abstract Types::CounterTs +2024-09-08 08:26:39,130 [main] ERROR UmlAttribute - unclassified CIM attribute: (3846) OTHER_CIM CIM [0..*] null <
> SV::SVProvider.PIP: SV::SVPublisherAssociationIP +2024-09-08 08:26:39,130 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,130 [main] TRACE UmlAttribute - created (3846) OTHER_CIM CIM [0..*] attribute <
> SV::SVProvider.PIP: SV::SVPublisherAssociationIP +2024-09-08 08:26:39,130 [main] ERROR UmlAttribute - unclassified CIM attribute: (3847) OTHER_CIM CIM [0..*] null <
> SV::SVProvider.PL2: SV::SVPublisherAssociationL2 +2024-09-08 08:26:39,131 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,131 [main] TRACE UmlAttribute - created (3847) OTHER_CIM CIM [0..*] attribute <
> SV::SVProvider.PL2: SV::SVPublisherAssociationL2 +2024-09-08 08:26:39,131 [main] ERROR UmlAttribute - unclassified CIM attribute: (3848) OTHER_CIM CIM [0..1] null <> SV::SVProvider.SecurityNotification: SV::SVNotification +2024-09-08 08:26:39,131 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,131 [main] TRACE UmlAttribute - created (3848) OTHER_CIM CIM [0..1] attribute <> SV::SVProvider.SecurityNotification: SV::SVNotification +2024-09-08 08:26:39,131 [main] ERROR UmlAttribute - unclassified CIM attribute: (3849) OTHER_CIM CIM [0..*] null <
> SV::SVProvider.SIP: SV::SVSubcriberAssociationIP +2024-09-08 08:26:39,132 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,132 [main] TRACE UmlAttribute - created (3849) OTHER_CIM CIM [0..*] attribute <
> SV::SVProvider.SIP: SV::SVSubcriberAssociationIP +2024-09-08 08:26:39,132 [main] ERROR UmlAttribute - unclassified CIM attribute: (3850) OTHER_CIM CIM [0..*] null <
> SV::SVProvider.SL2: SV::SVSubcriberAssociationL2 +2024-09-08 08:26:39,132 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,132 [main] TRACE UmlAttribute - created (3850) OTHER_CIM CIM [0..*] attribute <
> SV::SVProvider.SL2: SV::SVSubcriberAssociationL2 +2024-09-08 08:26:39,132 [main] ERROR UmlAttribute - unclassified CIM attribute: (3817) OTHER_CIM CIM const [0..1] null <> SV::SVPublisherAssociationIP.DestIpAddr: Abstract Types::InetAddress +2024-09-08 08:26:39,132 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,132 [main] TRACE UmlAttribute - created (3817) OTHER_CIM CIM const [0..1] attribute <> SV::SVPublisherAssociationIP.DestIpAddr: Abstract Types::InetAddress +2024-09-08 08:26:39,132 [main] ERROR UmlAttribute - unclassified CIM attribute: (3818) OTHER_CIM CIM const [0..1] null <> SV::SVPublisherAssociationIP.DestIpAddrType: Abstract Types::InetAddressType +2024-09-08 08:26:39,132 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,133 [main] TRACE UmlAttribute - created (3818) OTHER_CIM CIM const [0..1] attribute <> SV::SVPublisherAssociationIP.DestIpAddrType: Abstract Types::InetAddressType +2024-09-08 08:26:39,133 [main] ERROR UmlAttribute - unclassified CIM attribute: (3819) OTHER_CIM CIM const [0..1] null <> SV::SVPublisherAssociationL2.DestMacAddr: Abstract Types::MacAddress +2024-09-08 08:26:39,133 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,133 [main] TRACE UmlAttribute - created (3819) OTHER_CIM CIM const [0..1] attribute <> SV::SVPublisherAssociationL2.DestMacAddr: Abstract Types::MacAddress +2024-09-08 08:26:39,133 [main] ERROR UmlAttribute - unclassified CIM attribute: (3823) OTHER_CIM CIM const [0..1] null <> SV::SVSubcriberAssociationIP.SrcIpAddr: Abstract Types::InetAddress +2024-09-08 08:26:39,133 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,133 [main] TRACE UmlAttribute - created (3823) OTHER_CIM CIM const [0..1] attribute <> SV::SVSubcriberAssociationIP.SrcIpAddr: Abstract Types::InetAddress +2024-09-08 08:26:39,133 [main] ERROR UmlAttribute - unclassified CIM attribute: (3824) OTHER_CIM CIM const [0..1] null <> SV::SVSubcriberAssociationIP.SrcIpAddrType: Abstract Types::InetAddressType +2024-09-08 08:26:39,134 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,134 [main] TRACE UmlAttribute - created (3824) OTHER_CIM CIM const [0..1] attribute <> SV::SVSubcriberAssociationIP.SrcIpAddrType: Abstract Types::InetAddressType +2024-09-08 08:26:39,134 [main] ERROR UmlAttribute - unclassified CIM attribute: (3825) OTHER_CIM CIM const [0..1] null <> SV::SVSubcriberAssociationL2.SrcMacAddr: Abstract Types::MacAddress +2024-09-08 08:26:39,134 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,134 [main] TRACE UmlAttribute - created (3825) OTHER_CIM CIM const [0..1] attribute <> SV::SVSubcriberAssociationL2.SrcMacAddr: Abstract Types::MacAddress +2024-09-08 08:26:39,134 [main] ERROR UmlAttribute - unclassified CIM attribute: (3750) OTHER_CIM CIM const [0..1] null <> GSE::GSESubscriberAssociation.ConfRevMis: Abstract Types::BooleanValue +2024-09-08 08:26:39,134 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,134 [main] TRACE UmlAttribute - created (3750) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubscriberAssociation.ConfRevMis: Abstract Types::BooleanValue +2024-09-08 08:26:39,134 [main] ERROR UmlAttribute - unclassified CIM attribute: (3755) OTHER_CIM CIM const [0..1] null <> GSE::GSESubscriberAssociation.NdsComm: Abstract Types::BooleanValue +2024-09-08 08:26:39,134 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,134 [main] TRACE UmlAttribute - created (3755) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubscriberAssociation.NdsComm: Abstract Types::BooleanValue +2024-09-08 08:26:39,134 [main] ERROR UmlAttribute - unclassified CIM attribute: (4368) OTHER_CIM CIM const [0..1] null <> GSE::GSESubscriberAssociation.ConfRev: Abstract Types::Integer +2024-09-08 08:26:39,134 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,135 [main] TRACE UmlAttribute - created (4368) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubscriberAssociation.ConfRev: Abstract Types::Integer +2024-09-08 08:26:39,135 [main] ERROR UmlAttribute - unclassified CIM attribute: (4369) OTHER_CIM CIM const [0..1] null <> GSE::GSESubscriberAssociation.RxConfRev: Abstract Types::IntegerTs +2024-09-08 08:26:39,135 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,135 [main] TRACE UmlAttribute - created (4369) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubscriberAssociation.RxConfRev: Abstract Types::IntegerTs +2024-09-08 08:26:39,135 [main] ERROR UmlAttribute - unclassified CIM attribute: (3758) OTHER_CIM CIM const [0..1] null <> GSE::GSESubscriberAssociation.TalExpCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,135 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,135 [main] TRACE UmlAttribute - created (3758) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubscriberAssociation.TalExpCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,136 [main] ERROR UmlAttribute - unclassified CIM attribute: (4370) OTHER_CIM CIM const [0..1] null <> GSE::GSESubscriberAssociation.OosErrCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,136 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,136 [main] TRACE UmlAttribute - created (4370) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubscriberAssociation.OosErrCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,136 [main] ERROR UmlAttribute - unclassified CIM attribute: (4371) OTHER_CIM CIM const [0..1] null <> GSE::GSESubscriberAssociation.DupMsgRx: Abstract Types::BooleanValueTs +2024-09-08 08:26:39,137 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,137 [main] TRACE UmlAttribute - created (4371) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubscriberAssociation.DupMsgRx: Abstract Types::BooleanValueTs +2024-09-08 08:26:39,137 [main] ERROR UmlAttribute - unclassified CIM attribute: (4372) OTHER_CIM CIM const [1..1] null <> GSE::GSESubscriberAssociation.DatSet: Abstract Types::CharString +2024-09-08 08:26:39,137 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,137 [main] TRACE UmlAttribute - created (4372) OTHER_CIM CIM const [1..1] attribute <> GSE::GSESubscriberAssociation.DatSet: Abstract Types::CharString +2024-09-08 08:26:39,137 [main] ERROR UmlAttribute - unclassified CIM attribute: (4373) OTHER_CIM CIM const [1..1] null <> GSE::GSESubscriberAssociation.RxDatSet: Abstract Types::CharStringTs +2024-09-08 08:26:39,137 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,137 [main] TRACE UmlAttribute - created (4373) OTHER_CIM CIM const [1..1] attribute <> GSE::GSESubscriberAssociation.RxDatSet: Abstract Types::CharStringTs +2024-09-08 08:26:39,138 [main] ERROR UmlAttribute - unclassified CIM attribute: (4374) OTHER_CIM CIM const [1..1] null <> GSE::GSESubscriberAssociation.GoID: Abstract Types::CharString +2024-09-08 08:26:39,138 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,138 [main] TRACE UmlAttribute - created (4374) OTHER_CIM CIM const [1..1] attribute <> GSE::GSESubscriberAssociation.GoID: Abstract Types::CharString +2024-09-08 08:26:39,138 [main] ERROR UmlAttribute - unclassified CIM attribute: (4375) OTHER_CIM CIM const [1..1] null <> GSE::GSESubscriberAssociation.RxGoID: Abstract Types::CharStringTs +2024-09-08 08:26:39,138 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,138 [main] TRACE UmlAttribute - created (4375) OTHER_CIM CIM const [1..1] attribute <> GSE::GSESubscriberAssociation.RxGoID: Abstract Types::CharStringTs +2024-09-08 08:26:39,138 [main] ERROR UmlAttribute - unclassified CIM attribute: (4376) OTHER_CIM CIM const [1..1] null <> GSE::GSESubscriberAssociation.StNum: Abstract Types::IntegerTs +2024-09-08 08:26:39,138 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,138 [main] TRACE UmlAttribute - created (4376) OTHER_CIM CIM const [1..1] attribute <> GSE::GSESubscriberAssociation.StNum: Abstract Types::IntegerTs +2024-09-08 08:26:39,138 [main] ERROR UmlAttribute - unclassified CIM attribute: (4377) OTHER_CIM CIM const [1..1] null <> GSE::GSESubscriberAssociation.SqNum: Abstract Types::IntegerTs +2024-09-08 08:26:39,139 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,139 [main] TRACE UmlAttribute - created (4377) OTHER_CIM CIM const [1..1] attribute <> GSE::GSESubscriberAssociation.SqNum: Abstract Types::IntegerTs +2024-09-08 08:26:39,139 [main] ERROR UmlAttribute - unclassified CIM attribute: (4378) OTHER_CIM CIM const [1..1] null <> GSE::GSESubscriberAssociation.RejectStNum: Abstract Types::IntegerTs +2024-09-08 08:26:39,139 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,139 [main] TRACE UmlAttribute - created (4378) OTHER_CIM CIM const [1..1] attribute <> GSE::GSESubscriberAssociation.RejectStNum: Abstract Types::IntegerTs +2024-09-08 08:26:39,139 [main] ERROR UmlAttribute - unclassified CIM attribute: (4379) OTHER_CIM CIM const [1..1] null <> GSE::GSESubscriberAssociation.RejectSqNum: Abstract Types::IntegerTs +2024-09-08 08:26:39,139 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,139 [main] TRACE UmlAttribute - created (4379) OTHER_CIM CIM const [1..1] attribute <> GSE::GSESubscriberAssociation.RejectSqNum: Abstract Types::IntegerTs +2024-09-08 08:26:39,139 [main] ERROR UmlAttribute - unclassified CIM attribute: (4494) OTHER_CIM CIM const [1..1] null <> GSE::GSESubscriberAssociation.RxT: Abstract Types::Timestamp +2024-09-08 08:26:39,139 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,140 [main] TRACE UmlAttribute - created (4494) OTHER_CIM CIM const [1..1] attribute <> GSE::GSESubscriberAssociation.RxT: Abstract Types::Timestamp +2024-09-08 08:26:39,140 [main] ERROR UmlAttribute - unclassified CIM attribute: (3243) OTHER_CIM CIM [0..1] null <> GSE::GSEProvider.CntRs: Abstract Types::CntRs +2024-09-08 08:26:39,140 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,140 [main] TRACE UmlAttribute - created (3243) OTHER_CIM CIM [0..1] attribute <> GSE::GSEProvider.CntRs: Abstract Types::CntRs +2024-09-08 08:26:39,140 [main] ERROR UmlAttribute - unclassified CIM attribute: (4053) OTHER_CIM CIM const [1..1] null <> GSE::GSEProvider.DecryptFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,140 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,140 [main] TRACE UmlAttribute - created (4053) OTHER_CIM CIM const [1..1] attribute <> GSE::GSEProvider.DecryptFailCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,140 [main] ERROR UmlAttribute - unclassified CIM attribute: (3773) OTHER_CIM CIM const [0..1] null <> GSE::GSEProvider.InErrCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,140 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,141 [main] TRACE UmlAttribute - created (3773) OTHER_CIM CIM const [0..1] attribute <> GSE::GSEProvider.InErrCnt: Abstract Types::CounterTs +2024-09-08 08:26:39,141 [main] ERROR UmlAttribute - unclassified CIM attribute: (4121) OTHER_CIM CIM const [0..1] null <> GSE::GSEProvider.InUnexpectedMulticast: Abstract Types::CounterTs +2024-09-08 08:26:39,141 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,141 [main] TRACE UmlAttribute - created (4121) OTHER_CIM CIM const [0..1] attribute <> GSE::GSEProvider.InUnexpectedMulticast: Abstract Types::CounterTs +2024-09-08 08:26:39,141 [main] ERROR UmlAttribute - unclassified CIM attribute: (3744) OTHER_CIM CIM [0..*] null <
> GSE::GSEProvider.PIP: GSE::GSEPublisherAssociationIP +2024-09-08 08:26:39,141 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,141 [main] TRACE UmlAttribute - created (3744) OTHER_CIM CIM [0..*] attribute <
> GSE::GSEProvider.PIP: GSE::GSEPublisherAssociationIP +2024-09-08 08:26:39,141 [main] ERROR UmlAttribute - unclassified CIM attribute: (3745) OTHER_CIM CIM [0..*] null <
> GSE::GSEProvider.PL2: GSE::GSEPublisherAssociationL2 +2024-09-08 08:26:39,141 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,142 [main] TRACE UmlAttribute - created (3745) OTHER_CIM CIM [0..*] attribute <
> GSE::GSEProvider.PL2: GSE::GSEPublisherAssociationL2 +2024-09-08 08:26:39,142 [main] ERROR UmlAttribute - unclassified CIM attribute: (3618) OTHER_CIM CIM [0..1] null <> GSE::GSEProvider.SecurityNotification: GSE::GSENotification +2024-09-08 08:26:39,142 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,142 [main] TRACE UmlAttribute - created (3618) OTHER_CIM CIM [0..1] attribute <> GSE::GSEProvider.SecurityNotification: GSE::GSENotification +2024-09-08 08:26:39,142 [main] ERROR UmlAttribute - unclassified CIM attribute: (3046) OTHER_CIM CIM [0..*] null <
> GSE::GSEProvider.SIP: GSE::GSESubcriberAssociationIP +2024-09-08 08:26:39,142 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,142 [main] TRACE UmlAttribute - created (3046) OTHER_CIM CIM [0..*] attribute <
> GSE::GSEProvider.SIP: GSE::GSESubcriberAssociationIP +2024-09-08 08:26:39,142 [main] ERROR UmlAttribute - unclassified CIM attribute: (3746) OTHER_CIM CIM [0..*] null <
> GSE::GSEProvider.SL2: GSE::GSESubcriberAssociationL2 +2024-09-08 08:26:39,142 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,142 [main] TRACE UmlAttribute - created (3746) OTHER_CIM CIM [0..*] attribute <
> GSE::GSEProvider.SL2: GSE::GSESubcriberAssociationL2 +2024-09-08 08:26:39,142 [main] ERROR UmlAttribute - unclassified CIM attribute: (3803) OTHER_CIM CIM const [0..1] null <> GSE::GSEPublisherAssociationIP.DestIpAddr: Abstract Types::InetAddress +2024-09-08 08:26:39,142 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,143 [main] TRACE UmlAttribute - created (3803) OTHER_CIM CIM const [0..1] attribute <> GSE::GSEPublisherAssociationIP.DestIpAddr: Abstract Types::InetAddress +2024-09-08 08:26:39,143 [main] ERROR UmlAttribute - unclassified CIM attribute: (3802) OTHER_CIM CIM const [0..1] null <> GSE::GSEPublisherAssociationIP.DestIpAddrType: Abstract Types::InetAddressType +2024-09-08 08:26:39,143 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,143 [main] TRACE UmlAttribute - created (3802) OTHER_CIM CIM const [0..1] attribute <> GSE::GSEPublisherAssociationIP.DestIpAddrType: Abstract Types::InetAddressType +2024-09-08 08:26:39,143 [main] ERROR UmlAttribute - unclassified CIM attribute: (3801) OTHER_CIM CIM const [0..1] null <> GSE::GSEPublisherAssociationL2.DestMacAddr: Abstract Types::MacAddress +2024-09-08 08:26:39,143 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,143 [main] TRACE UmlAttribute - created (3801) OTHER_CIM CIM const [0..1] attribute <> GSE::GSEPublisherAssociationL2.DestMacAddr: Abstract Types::MacAddress +2024-09-08 08:26:39,143 [main] ERROR UmlAttribute - unclassified CIM attribute: (4362) OTHER_CIM CIM const [0..1] null <> GSE::GSEPublisherAssociationL2.SrcMacAddr: Abstract Types::MacAddress +2024-09-08 08:26:39,143 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,143 [main] TRACE UmlAttribute - created (4362) OTHER_CIM CIM const [0..1] attribute <> GSE::GSEPublisherAssociationL2.SrcMacAddr: Abstract Types::MacAddress +2024-09-08 08:26:39,143 [main] ERROR UmlAttribute - unclassified CIM attribute: (3740) OTHER_CIM CIM const [0..1] null <> GSE::GSESubcriberAssociationIP.SrcIpAddr: Abstract Types::InetAddress +2024-09-08 08:26:39,144 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,144 [main] TRACE UmlAttribute - created (3740) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubcriberAssociationIP.SrcIpAddr: Abstract Types::InetAddress +2024-09-08 08:26:39,144 [main] ERROR UmlAttribute - unclassified CIM attribute: (3739) OTHER_CIM CIM const [0..1] null <> GSE::GSESubcriberAssociationIP.SrcIpAddrType: Abstract Types::InetAddressType +2024-09-08 08:26:39,144 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,144 [main] TRACE UmlAttribute - created (3739) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubcriberAssociationIP.SrcIpAddrType: Abstract Types::InetAddressType +2024-09-08 08:26:39,144 [main] ERROR UmlAttribute - unclassified CIM attribute: (3742) OTHER_CIM CIM const [0..1] null <> GSE::GSESubcriberAssociationL2.SrcMacAddr: Abstract Types::MacAddress +2024-09-08 08:26:39,144 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,144 [main] TRACE UmlAttribute - created (3742) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubcriberAssociationL2.SrcMacAddr: Abstract Types::MacAddress +2024-09-08 08:26:39,144 [main] ERROR UmlAttribute - unclassified CIM attribute: (4361) OTHER_CIM CIM const [0..1] null <> GSE::GSESubcriberAssociationL2.DstMacAddr: Abstract Types::MacAddress +2024-09-08 08:26:39,145 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,145 [main] TRACE UmlAttribute - created (4361) OTHER_CIM CIM const [0..1] attribute <> GSE::GSESubcriberAssociationL2.DstMacAddr: Abstract Types::MacAddress +2024-09-08 08:26:39,145 [main] ERROR UmlAttribute - unclassified CIM attribute: (2651) OTHER_CIM CIM const [1..1] null <> Clocks Agent::Clock.clockTamperDetected: Abstract Types::Timestamp +2024-09-08 08:26:39,145 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,145 [main] TRACE UmlAttribute - created (2651) OTHER_CIM CIM const [1..1] attribute <> Clocks Agent::Clock.clockTamperDetected: Abstract Types::Timestamp +2024-09-08 08:26:39,145 [main] ERROR UmlAttribute - unclassified CIM attribute: (2656) OTHER_CIM CIM const [1..1] null <> Clocks Agent::Clock.LastClockHoldover: Abstract Types::Timestamp +2024-09-08 08:26:39,145 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,145 [main] TRACE UmlAttribute - created (2656) OTHER_CIM CIM const [1..1] attribute <> Clocks Agent::Clock.LastClockHoldover: Abstract Types::Timestamp +2024-09-08 08:26:39,145 [main] ERROR UmlAttribute - unclassified CIM attribute: (2657) OTHER_CIM CIM [0..1] null <> Clocks Agent::Clock.CntRs: Abstract Types::CntRs +2024-09-08 08:26:39,145 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,145 [main] TRACE UmlAttribute - created (2657) OTHER_CIM CIM [0..1] attribute <> Clocks Agent::Clock.CntRs: Abstract Types::CntRs +2024-09-08 08:26:39,146 [main] ERROR UmlAttribute - unclassified CIM attribute: (2650) OTHER_CIM CIM [0..n] null <
> Clocks Agent::Clock.Clocks: Clocks Agent::ClockEntry +2024-09-08 08:26:39,146 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,146 [main] TRACE UmlAttribute - created (2650) OTHER_CIM CIM [0..n] attribute <
> Clocks Agent::Clock.Clocks: Clocks Agent::ClockEntry +2024-09-08 08:26:39,146 [main] ERROR UmlAttribute - unclassified CIM attribute: (3631) OTHER_CIM CIM [0..1] null <> Clocks Agent::Clock.SecurityNotification: Clocks Agent::SecurityNotification +2024-09-08 08:26:39,146 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,146 [main] TRACE UmlAttribute - created (3631) OTHER_CIM CIM [0..1] attribute <> Clocks Agent::Clock.SecurityNotification: Clocks Agent::SecurityNotification +2024-09-08 08:26:39,146 [main] ERROR UmlAttribute - unclassified CIM attribute: (2646) OTHER_CIM CIM const [0..1] null <> Clocks Agent::ClockEntry.ClockAccuracy: Abstract Types::Integer +2024-09-08 08:26:39,146 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,146 [main] TRACE UmlAttribute - created (2646) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::ClockEntry.ClockAccuracy: Abstract Types::Integer +2024-09-08 08:26:39,146 [main] ERROR UmlAttribute - unclassified CIM attribute: (3085) OTHER_CIM CIM const [0..1] null <> Clocks Agent::ClockEntry.ClockIndex: Abstract Types::EntityIndex +2024-09-08 08:26:39,146 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,146 [main] TRACE UmlAttribute - created (3085) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::ClockEntry.ClockIndex: Abstract Types::EntityIndex +2024-09-08 08:26:39,146 [main] ERROR UmlAttribute - unclassified CIM attribute: (3729) OTHER_CIM CIM const [0..1] null <> Clocks Agent::ClockEntry.ClockIssue: EnumeratedTypes::TimSyncIssueType +2024-09-08 08:26:39,147 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,147 [main] TRACE UmlAttribute - created (3729) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::ClockEntry.ClockIssue: EnumeratedTypes::TimSyncIssueType +2024-09-08 08:26:39,147 [main] ERROR UmlAttribute - unclassified CIM attribute: (2649) OTHER_CIM CIM const [0..1] null <> Clocks Agent::ClockEntry.ClockTamperDetected: Abstract Types::BooleanValue +2024-09-08 08:26:39,147 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,147 [main] TRACE UmlAttribute - created (2649) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::ClockEntry.ClockTamperDetected: Abstract Types::BooleanValue +2024-09-08 08:26:39,147 [main] ERROR UmlAttribute - unclassified CIM attribute: (2645) OTHER_CIM CIM const [0..1] null <> Clocks Agent::ClockEntry.TmSrc: EnumeratedTypes::TimSyncSrcType +2024-09-08 08:26:39,147 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,147 [main] TRACE UmlAttribute - created (2645) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::ClockEntry.TmSrc: EnumeratedTypes::TimSyncSrcType +2024-09-08 08:26:39,147 [main] ERROR UmlAttribute - unclassified CIM attribute: (2655) OTHER_CIM CIM const [0..1] null <> Clocks Agent::ClockEntry.HoldOver: Abstract Types::BooleanValue +2024-09-08 08:26:39,147 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,147 [main] TRACE UmlAttribute - created (2655) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::ClockEntry.HoldOver: Abstract Types::BooleanValue +2024-09-08 08:26:39,147 [main] ERROR UmlAttribute - unclassified CIM attribute: (2648) OTHER_CIM CIM const [0..1] null <> Clocks Agent::ClockEntry.LastSyncOffset: Abstract Types::FloatingTs +2024-09-08 08:26:39,147 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,148 [main] TRACE UmlAttribute - created (2648) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::ClockEntry.LastSyncOffset: Abstract Types::FloatingTs +2024-09-08 08:26:39,148 [main] ERROR UmlAttribute - unclassified CIM attribute: (2653) OTHER_CIM CIM const [0..1] null <> Clocks Agent::ClockEntry.TimeSourceAvailable: Abstract Types::BooleanValue +2024-09-08 08:26:39,148 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,148 [main] TRACE UmlAttribute - created (2653) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::ClockEntry.TimeSourceAvailable: Abstract Types::BooleanValue +2024-09-08 08:26:39,148 [main] ERROR UmlAttribute - unclassified CIM attribute: (2652) OTHER_CIM CIM const [0..1] null <> Clocks Agent::ClockEntry.TimeTraceable: Abstract Types::BooleanValue +2024-09-08 08:26:39,148 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,148 [main] TRACE UmlAttribute - created (2652) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::ClockEntry.TimeTraceable: Abstract Types::BooleanValue +2024-09-08 08:26:39,148 [main] ERROR UmlAttribute - unclassified CIM attribute: (3632) OTHER_CIM CIM const [0..1] null <> Clocks Agent::SecurityNotification.clockTamperDetected: Abstract Types::Timestamp +2024-09-08 08:26:39,148 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,148 [main] TRACE UmlAttribute - created (3632) OTHER_CIM CIM const [0..1] attribute <> Clocks Agent::SecurityNotification.clockTamperDetected: Abstract Types::Timestamp +2024-09-08 08:26:39,149 [main] ERROR UmlAttribute - unclassified CIM attribute: (3319) OTHER_CIM CIM const [0..1] null <> Interfaces Agent::Interface.ID: Abstract Types::EntityIndex +2024-09-08 08:26:39,149 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,149 [main] TRACE UmlAttribute - created (3319) OTHER_CIM CIM const [0..1] attribute <> Interfaces Agent::Interface.ID: Abstract Types::EntityIndex +2024-09-08 08:26:39,149 [main] ERROR UmlAttribute - unclassified CIM attribute: (3320) OTHER_CIM CIM const [0..1] null <> Interfaces Agent::Interface.Descr: Abstract Types::CharString +2024-09-08 08:26:39,149 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,149 [main] TRACE UmlAttribute - created (3320) OTHER_CIM CIM const [0..1] attribute <> Interfaces Agent::Interface.Descr: Abstract Types::CharString +2024-09-08 08:26:39,149 [main] ERROR UmlAttribute - unclassified CIM attribute: (3415) OTHER_CIM CIM const [0..1] null <> Interfaces Agent::Interface.IntType: EnumeratedTypes::IntType +2024-09-08 08:26:39,149 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,149 [main] TRACE UmlAttribute - created (3415) OTHER_CIM CIM const [0..1] attribute <> Interfaces Agent::Interface.IntType: EnumeratedTypes::IntType +2024-09-08 08:26:39,149 [main] ERROR UmlAttribute - unclassified CIM attribute: (3323) OTHER_CIM CIM const [0..1] null <> Interfaces Agent::Interface.Operable: Abstract Types::BooleanValueTs +2024-09-08 08:26:39,150 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,150 [main] TRACE UmlAttribute - created (3323) OTHER_CIM CIM const [0..1] attribute <> Interfaces Agent::Interface.Operable: Abstract Types::BooleanValueTs +2024-09-08 08:26:39,150 [main] ERROR UmlAttribute - unclassified CIM attribute: (3318) OTHER_CIM CIM const [0..1] null <> Interfaces Agent::Interface.Online: Abstract Types::BooleanValueTs +2024-09-08 08:26:39,150 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,150 [main] TRACE UmlAttribute - created (3318) OTHER_CIM CIM const [0..1] attribute <> Interfaces Agent::Interface.Online: Abstract Types::BooleanValueTs +2024-09-08 08:26:39,150 [main] ERROR UmlAttribute - unclassified CIM attribute: (3322) OTHER_CIM CIM const [0..1] null <> Interfaces Agent::Interface.Faulty: Abstract Types::BooleanValueTs +2024-09-08 08:26:39,150 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,151 [main] TRACE UmlAttribute - created (3322) OTHER_CIM CIM const [0..1] attribute <> Interfaces Agent::Interface.Faulty: Abstract Types::BooleanValueTs +2024-09-08 08:26:39,151 [main] ERROR UmlAttribute - unclassified CIM attribute: (3321) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interface.CntRs: Abstract Types::CntRs +2024-09-08 08:26:39,151 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,152 [main] TRACE UmlAttribute - created (3321) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interface.CntRs: Abstract Types::CntRs +2024-09-08 08:26:39,153 [main] ERROR UmlAttribute - unclassified CIM attribute: (3652) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.serAvail: Abstract Types::Integer +2024-09-08 08:26:39,153 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,153 [main] TRACE UmlAttribute - created (3652) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.serAvail: Abstract Types::Integer +2024-09-08 08:26:39,153 [main] ERROR UmlAttribute - unclassified CIM attribute: (3657) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.serActive: Abstract Types::IntegerTs +2024-09-08 08:26:39,154 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,154 [main] TRACE UmlAttribute - created (3657) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.serActive: Abstract Types::IntegerTs +2024-09-08 08:26:39,154 [main] ERROR UmlAttribute - unclassified CIM attribute: (3662) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.serFail: Abstract Types::IntegerTs +2024-09-08 08:26:39,154 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,154 [main] TRACE UmlAttribute - created (3662) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.serFail: Abstract Types::IntegerTs +2024-09-08 08:26:39,154 [main] ERROR UmlAttribute - unclassified CIM attribute: (3653) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.ethAvail: Abstract Types::Integer +2024-09-08 08:26:39,154 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,155 [main] TRACE UmlAttribute - created (3653) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.ethAvail: Abstract Types::Integer +2024-09-08 08:26:39,155 [main] ERROR UmlAttribute - unclassified CIM attribute: (3658) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.ethActive: Abstract Types::IntegerTs +2024-09-08 08:26:39,155 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,155 [main] TRACE UmlAttribute - created (3658) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.ethActive: Abstract Types::IntegerTs +2024-09-08 08:26:39,155 [main] ERROR UmlAttribute - unclassified CIM attribute: (3663) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.ethFail: Abstract Types::IntegerTs +2024-09-08 08:26:39,155 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,155 [main] TRACE UmlAttribute - created (3663) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.ethFail: Abstract Types::IntegerTs +2024-09-08 08:26:39,155 [main] ERROR UmlAttribute - unclassified CIM attribute: (3654) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.algAvail: Abstract Types::Integer +2024-09-08 08:26:39,155 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,155 [main] TRACE UmlAttribute - created (3654) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.algAvail: Abstract Types::Integer +2024-09-08 08:26:39,155 [main] ERROR UmlAttribute - unclassified CIM attribute: (3659) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.algActive: Abstract Types::IntegerTs +2024-09-08 08:26:39,155 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,156 [main] TRACE UmlAttribute - created (3659) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.algActive: Abstract Types::IntegerTs +2024-09-08 08:26:39,156 [main] ERROR UmlAttribute - unclassified CIM attribute: (3664) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.algFail: Abstract Types::IntegerTs +2024-09-08 08:26:39,156 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,156 [main] TRACE UmlAttribute - created (3664) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.algFail: Abstract Types::IntegerTs +2024-09-08 08:26:39,156 [main] ERROR UmlAttribute - unclassified CIM attribute: (3655) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.keyAvail: Abstract Types::Integer +2024-09-08 08:26:39,156 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,156 [main] TRACE UmlAttribute - created (3655) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.keyAvail: Abstract Types::Integer +2024-09-08 08:26:39,156 [main] ERROR UmlAttribute - unclassified CIM attribute: (3660) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.keyActive: Abstract Types::IntegerTs +2024-09-08 08:26:39,156 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,157 [main] TRACE UmlAttribute - created (3660) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.keyActive: Abstract Types::IntegerTs +2024-09-08 08:26:39,157 [main] ERROR UmlAttribute - unclassified CIM attribute: (3665) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.keyFail: Abstract Types::IntegerTs +2024-09-08 08:26:39,157 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,157 [main] TRACE UmlAttribute - created (3665) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.keyFail: Abstract Types::IntegerTs +2024-09-08 08:26:39,157 [main] ERROR UmlAttribute - unclassified CIM attribute: (3656) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.usbAvail: Abstract Types::Integer +2024-09-08 08:26:39,157 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,158 [main] TRACE UmlAttribute - created (3656) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.usbAvail: Abstract Types::Integer +2024-09-08 08:26:39,158 [main] ERROR UmlAttribute - unclassified CIM attribute: (3661) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.usbActive: Abstract Types::IntegerTs +2024-09-08 08:26:39,158 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,158 [main] TRACE UmlAttribute - created (3661) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.usbActive: Abstract Types::IntegerTs +2024-09-08 08:26:39,158 [main] ERROR UmlAttribute - unclassified CIM attribute: (3666) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.usbFail: Abstract Types::IntegerTs +2024-09-08 08:26:39,158 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,158 [main] TRACE UmlAttribute - created (3666) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.usbFail: Abstract Types::IntegerTs +2024-09-08 08:26:39,158 [main] ERROR UmlAttribute - unclassified CIM attribute: (3283) OTHER_CIM CIM [0..*] null <
> Interfaces Agent::Interfaces.SER: Interfaces Agent::SEREntry +2024-09-08 08:26:39,158 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,158 [main] TRACE UmlAttribute - created (3283) OTHER_CIM CIM [0..*] attribute <
> Interfaces Agent::Interfaces.SER: Interfaces Agent::SEREntry +2024-09-08 08:26:39,158 [main] ERROR UmlAttribute - unclassified CIM attribute: (3297) OTHER_CIM CIM [0..*] null <
> Interfaces Agent::Interfaces.ETH: Interfaces Agent::ETHEntry +2024-09-08 08:26:39,159 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,159 [main] TRACE UmlAttribute - created (3297) OTHER_CIM CIM [0..*] attribute <
> Interfaces Agent::Interfaces.ETH: Interfaces Agent::ETHEntry +2024-09-08 08:26:39,159 [main] ERROR UmlAttribute - unclassified CIM attribute: (3298) OTHER_CIM CIM [0..*] null <
> Interfaces Agent::Interfaces.USB: Interfaces Agent::USBEntry +2024-09-08 08:26:39,159 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,159 [main] TRACE UmlAttribute - created (3298) OTHER_CIM CIM [0..*] attribute <
> Interfaces Agent::Interfaces.USB: Interfaces Agent::USBEntry +2024-09-08 08:26:39,159 [main] ERROR UmlAttribute - unclassified CIM attribute: (3299) OTHER_CIM CIM [0..*] null <
> Interfaces Agent::Interfaces.KEY: Interfaces Agent::KEYEntry +2024-09-08 08:26:39,159 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,159 [main] TRACE UmlAttribute - created (3299) OTHER_CIM CIM [0..*] attribute <
> Interfaces Agent::Interfaces.KEY: Interfaces Agent::KEYEntry +2024-09-08 08:26:39,159 [main] ERROR UmlAttribute - unclassified CIM attribute: (3328) OTHER_CIM CIM [0..*] null <
> Interfaces Agent::Interfaces.ALG: Interfaces Agent::ALGEntry +2024-09-08 08:26:39,159 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,159 [main] TRACE UmlAttribute - created (3328) OTHER_CIM CIM [0..*] attribute <
> Interfaces Agent::Interfaces.ALG: Interfaces Agent::ALGEntry +2024-09-08 08:26:39,159 [main] ERROR UmlAttribute - unclassified CIM attribute: (3678) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Interfaces.StateNotification: Interfaces Agent::Notification +2024-09-08 08:26:39,159 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,160 [main] TRACE UmlAttribute - created (3678) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Interfaces.StateNotification: Interfaces Agent::Notification +2024-09-08 08:26:39,160 [main] ERROR UmlAttribute - unclassified CIM attribute: (3327) OTHER_CIM CIM const [0..1] null <> Interfaces Agent::KEYEntry.Locked: Abstract Types::BooleanValueTs +2024-09-08 08:26:39,160 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,160 [main] TRACE UmlAttribute - created (3327) OTHER_CIM CIM const [0..1] attribute <> Interfaces Agent::KEYEntry.Locked: Abstract Types::BooleanValueTs +2024-09-08 08:26:39,160 [main] ERROR UmlAttribute - unclassified CIM attribute: (3325) OTHER_CIM CIM const [0..1] null <> Interfaces Agent::SEREntry.ByteIn: Abstract Types::CounterTs +2024-09-08 08:26:39,160 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,160 [main] TRACE UmlAttribute - created (3325) OTHER_CIM CIM const [0..1] attribute <> Interfaces Agent::SEREntry.ByteIn: Abstract Types::CounterTs +2024-09-08 08:26:39,161 [main] ERROR UmlAttribute - unclassified CIM attribute: (3326) OTHER_CIM CIM const [0..1] null <> Interfaces Agent::SEREntry.ByteOut: Abstract Types::CounterTs +2024-09-08 08:26:39,161 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,161 [main] TRACE UmlAttribute - created (3326) OTHER_CIM CIM const [0..1] attribute <> Interfaces Agent::SEREntry.ByteOut: Abstract Types::CounterTs +2024-09-08 08:26:39,161 [main] ERROR UmlAttribute - unclassified CIM attribute: (3668) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.serActive: Abstract Types::IntegerTs +2024-09-08 08:26:39,161 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,161 [main] TRACE UmlAttribute - created (3668) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.serActive: Abstract Types::IntegerTs +2024-09-08 08:26:39,161 [main] ERROR UmlAttribute - unclassified CIM attribute: (3669) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.serFail: Abstract Types::IntegerTs +2024-09-08 08:26:39,161 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,161 [main] TRACE UmlAttribute - created (3669) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.serFail: Abstract Types::IntegerTs +2024-09-08 08:26:39,161 [main] ERROR UmlAttribute - unclassified CIM attribute: (3670) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.ethActive: Abstract Types::IntegerTs +2024-09-08 08:26:39,162 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,162 [main] TRACE UmlAttribute - created (3670) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.ethActive: Abstract Types::IntegerTs +2024-09-08 08:26:39,162 [main] ERROR UmlAttribute - unclassified CIM attribute: (3671) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.ethFail: Abstract Types::IntegerTs +2024-09-08 08:26:39,162 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,162 [main] TRACE UmlAttribute - created (3671) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.ethFail: Abstract Types::IntegerTs +2024-09-08 08:26:39,162 [main] ERROR UmlAttribute - unclassified CIM attribute: (3672) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.algActive: Abstract Types::IntegerTs +2024-09-08 08:26:39,162 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,162 [main] TRACE UmlAttribute - created (3672) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.algActive: Abstract Types::IntegerTs +2024-09-08 08:26:39,162 [main] ERROR UmlAttribute - unclassified CIM attribute: (3673) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.algFail: Abstract Types::IntegerTs +2024-09-08 08:26:39,162 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,162 [main] TRACE UmlAttribute - created (3673) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.algFail: Abstract Types::IntegerTs +2024-09-08 08:26:39,163 [main] ERROR UmlAttribute - unclassified CIM attribute: (3667) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.keyActive: Abstract Types::IntegerTs +2024-09-08 08:26:39,163 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,163 [main] TRACE UmlAttribute - created (3667) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.keyActive: Abstract Types::IntegerTs +2024-09-08 08:26:39,163 [main] ERROR UmlAttribute - unclassified CIM attribute: (3674) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.keyFail: Abstract Types::IntegerTs +2024-09-08 08:26:39,163 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,163 [main] TRACE UmlAttribute - created (3674) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.keyFail: Abstract Types::IntegerTs +2024-09-08 08:26:39,163 [main] ERROR UmlAttribute - unclassified CIM attribute: (3675) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.usbActive: Abstract Types::IntegerTs +2024-09-08 08:26:39,163 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,164 [main] TRACE UmlAttribute - created (3675) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.usbActive: Abstract Types::IntegerTs +2024-09-08 08:26:39,164 [main] ERROR UmlAttribute - unclassified CIM attribute: (3676) OTHER_CIM CIM [0..1] null <> Interfaces Agent::Notification.usbFail: Abstract Types::IntegerTs +2024-09-08 08:26:39,164 [main] TRACE ValueRange - '' has no values. +2024-09-08 08:26:39,164 [main] TRACE UmlAttribute - created (3676) OTHER_CIM CIM [0..1] attribute <> Interfaces Agent::Notification.usbFail: Abstract Types::IntegerTs +2024-09-08 08:26:39,164 [main] INFO EaModelBuilder - creating in-memory associations ... +2024-09-08 08:26:39,167 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-08 08:26:39,167 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-08 08:26:39,172 [main] TRACE UmlAssociation - created (185) OTHER_CIM CIM association <>, qname='health.<> - Attribute.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable); otherEnd: OTHER_CIM [?..?] health.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] health.<> (navigable); otherEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable) +2024-09-08 08:26:39,172 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-08 08:26:39,172 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-08 08:26:39,172 [main] TRACE UmlAssociation - created (179) OTHER_CIM CIM association <>, qname='protocol.<> - Attribute.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable); otherEnd: OTHER_CIM [?..?] protocol.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] protocol.<> (navigable); otherEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable) +2024-09-08 08:26:39,172 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-08 08:26:39,172 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-08 08:26:39,173 [main] TRACE UmlAssociation - created (180) OTHER_CIM CIM association <>, qname='security.<> - Attribute.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable); otherEnd: OTHER_CIM [?..?] security.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] security.<> (navigable); otherEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable) +2024-09-08 08:26:39,173 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-08 08:26:39,173 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-08 08:26:39,173 [main] TRACE UmlAssociation - created (183) OTHER_CIM CIM association <>, qname='index.<> - Attribute.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable); otherEnd: OTHER_CIM [?..?] index.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] index.<> (navigable); otherEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable) +2024-09-08 08:26:39,173 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-08 08:26:39,173 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-08 08:26:39,173 [main] TRACE UmlAssociation - created (184) OTHER_CIM CIM association <>, qname='identity.<> - Attribute.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable); otherEnd: OTHER_CIM [?..?] identity.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] identity.<> (navigable); otherEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable) +2024-09-08 08:26:39,173 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-08 08:26:39,173 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-08 08:26:39,173 [main] TRACE UmlAssociation - created (186) OTHER_CIM CIM association <>, qname='performance.<> - Attribute.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable); otherEnd: OTHER_CIM [?..?] performance.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] performance.<> (navigable); otherEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable) +2024-09-08 08:26:39,173 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-08 08:26:39,173 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-08 08:26:39,173 [main] TRACE UmlAssociation - created (187) OTHER_CIM CIM association <>, qname='setvalue.<> - Attribute.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable); otherEnd: OTHER_CIM [?..?] setvalue.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] setvalue.<> (navigable); otherEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable) +2024-09-08 08:26:39,173 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-08 08:26:39,173 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-08 08:26:39,173 [main] TRACE UmlAssociation - created (207) OTHER_CIM CIM association <>, qname='trap.<> - Attribute.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable); otherEnd: OTHER_CIM [?..?] trap.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] trap.<> (navigable); otherEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable) +2024-09-08 08:26:39,173 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-08 08:26:39,174 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-08 08:26:39,174 [main] TRACE UmlAssociation - created (188) OTHER_CIM CIM association <>, qname='table.<> - Attribute.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable); otherEnd: OTHER_CIM [?..?] table.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] table.<> (navigable); otherEnd: OTHER_CIM [?..?] Attribute.<> (non-navigable) +2024-09-08 08:26:39,174 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-08 08:26:39,174 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-08 08:26:39,174 [main] TRACE UmlAssociation - created (181) OTHER_CIM CIM association <>, qname='nsmEvent.<> - Class.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Class.<> (non-navigable); otherEnd: OTHER_CIM [?..?] nsmEvent.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] nsmEvent.<> (navigable); otherEnd: OTHER_CIM [?..?] Class.<> (non-navigable) +2024-09-08 08:26:39,174 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-08 08:26:39,174 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-08 08:26:39,174 [main] TRACE UmlAssociation - created (226) OTHER_CIM CIM association <>, qname='nsmEntry.<> - Class.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Class.<> (non-navigable); otherEnd: OTHER_CIM [?..?] nsmEntry.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] nsmEntry.<> (navigable); otherEnd: OTHER_CIM [?..?] Class.<> (non-navigable) +2024-09-08 08:26:39,174 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (non-navigable) +2024-09-08 08:26:39,174 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> (navigable) +2024-09-08 08:26:39,174 [main] TRACE UmlAssociation - created (182) OTHER_CIM CIM association <>, qname='nsmAgent.<> - Class.<>', endAsSrc: myEnd: OTHER_CIM [?..?] Class.<> (non-navigable); otherEnd: OTHER_CIM [?..?] nsmAgent.<> (navigable), endAsTgt: myEnd: OTHER_CIM [?..?] nsmAgent.<> (navigable); otherEnd: OTHER_CIM [?..?] Class.<> (non-navigable) +2024-09-08 08:26:39,174 [main] INFO EaModelBuilder - creating in-memory dependencies ... +2024-09-08 08:26:39,174 [main] INFO Util - time=[0:00:08.513] created in-memory model and exported normative diagrams +2024-09-08 08:26:39,174 [main] INFO Util - +2024-09-08 08:26:39,174 [main] INFO Util - +2024-09-08 08:26:39,175 [main] INFO Util - ------------------------------------------------ +2024-09-08 08:26:39,175 [main] INFO Util - closing EA file 'C:\Users\gigi\git\jCleanCim\input\IEC62351-7-Ed2-FDIS-20240901.eap'... +2024-09-08 08:26:39,898 [main] INFO Util - time=[0:00:00.723] closed EA file. +2024-09-08 08:26:39,898 [main] INFO Util - +2024-09-08 08:26:39,899 [main] INFO Util - time=[0:01:07.648] built model from 'iso (CIM)' +2024-09-08 08:26:39,899 [main] INFO Util - +2024-09-08 08:26:39,899 [main] INFO Util - +2024-09-08 08:26:39,899 [main] INFO Util - ================================================ +2024-09-08 08:26:39,899 [main] INFO Util - generating MIBs from iso (CIM) +2024-09-08 08:26:39,899 [main] INFO Util - ================================================ +2024-09-08 08:26:39,899 [main] INFO Util - +2024-09-08 08:26:39,899 [main] INFO Util - ------------------------------------------------ +2024-09-08 08:26:39,899 [main] INFO Util - full MIBs ... +2024-09-08 08:26:40,239 [main] INFO Util - +2024-09-08 08:26:40,239 [main] INFO Util - ------------------------------------------------ +2024-09-08 08:26:40,239 [main] INFO Util - light MIBs ... +2024-09-08 08:26:40,497 [main] INFO Util - time=[0:00:00.597] generated MIBs in: C:\Users\gigi\git\jCleanCim\output\mibs +2024-09-08 08:26:40,497 [main] INFO Util - +2024-09-08 08:26:40,497 [main] INFO Util - +2024-09-08 08:26:40,497 [main] INFO Util - ================================================ +2024-09-08 08:26:40,497 [main] INFO Util - generating doc from iso (CIM) +2024-09-08 08:26:40,497 [main] INFO Util - ================================================ +2024-09-08 08:26:40,497 [main] INFO Util - +2024-09-08 08:26:40,498 [main] INFO Util - ------------------------------------------------ +2024-09-08 08:26:40,498 [main] INFO Util - collecting documentation content ... +2024-09-08 08:26:40,502 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Attribute': UML1 +2024-09-08 08:26:40,502 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Attribute': UML2 +2024-09-08 08:26:40,502 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Attribute': UML3 +2024-09-08 08:26:40,502 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Attribute': UML4 +2024-09-08 08:26:40,502 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Attribute': UML5 +2024-09-08 08:26:40,502 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Attribute': UML6 +2024-09-08 08:26:40,502 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Attribute': UML7 +2024-09-08 08:26:40,502 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Attribute': UML8 +2024-09-08 08:26:40,502 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Attribute': UML9 +2024-09-08 08:26:40,502 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Class': UML10 +2024-09-08 08:26:40,502 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Class': UML11 +2024-09-08 08:26:40,502 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::Class': UML12 +2024-09-08 08:26:40,502 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::health': UML13 +2024-09-08 08:26:40,502 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::identity': UML14 +2024-09-08 08:26:40,502 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::index': UML15 +2024-09-08 08:26:40,503 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::nsmAgent': UML16 +2024-09-08 08:26:40,503 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::nsmEntry': UML17 +2024-09-08 08:26:40,503 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::nsmEvent': UML18 +2024-09-08 08:26:40,503 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::performance': UML19 +2024-09-08 08:26:40,503 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::protocol': UML20 +2024-09-08 08:26:40,503 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::security': UML21 +2024-09-08 08:26:40,503 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::setvalue': UML22 +2024-09-08 08:26:40,503 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::table': UML23 +2024-09-08 08:26:40,503 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'nsmAgent::trap': UML24 +2024-09-08 08:26:40,503 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::AbsoluteDateTime': UML25 +2024-09-08 08:26:40,503 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::Counter32 ': UML26 +2024-09-08 08:26:40,503 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::DateAndTime': UML27 +2024-09-08 08:26:40,503 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::DisplayString': UML28 +2024-09-08 08:26:40,503 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::Float32TC': UML29 +2024-09-08 08:26:40,503 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::Gauge32': UML30 +2024-09-08 08:26:40,503 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::InetAddress': UML31 +2024-09-08 08:26:40,503 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::MacAddress': UML32 +2024-09-08 08:26:40,503 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::InetAddressType': UML33 +2024-09-08 08:26:40,503 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::EntityIndex': UML34 +2024-09-08 08:26:40,503 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::Integer32': UML35 +2024-09-08 08:26:40,503 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::Unsigned32': UML36 +2024-09-08 08:26:40,503 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::TimeTicks': UML37 +2024-09-08 08:26:40,503 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::TruthValue': UML38 +2024-09-08 08:26:40,503 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::AbstractBaseType': UML39 +2024-09-08 08:26:40,503 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::AbstractAgent': UML40 +2024-09-08 08:26:40,503 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::AppDatStKind': UML41 +2024-09-08 08:26:40,503 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::PhyHealthKind': UML42 +2024-09-08 08:26:40,503 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ExtKind': UML43 +2024-09-08 08:26:40,503 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::IntKind': UML44 +2024-09-08 08:26:40,503 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::LnkKind': UML45 +2024-09-08 08:26:40,504 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::PSPAccKind': UML46 +2024-09-08 08:26:40,504 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ProtIdKind': UML47 +2024-09-08 08:26:40,504 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind': UML48 +2024-09-08 08:26:40,504 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncIssueKind': UML49 +2024-09-08 08:26:40,504 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::SecurityProfileKind': UML50 +2024-09-08 08:26:40,504 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind': UML51 +2024-09-08 08:26:40,504 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::BooleanValue': UML52 +2024-09-08 08:26:40,504 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::Integer': UML53 +2024-09-08 08:26:40,504 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::BooleanValueTs': UML54 +2024-09-08 08:26:40,504 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::CounterTs': UML55 +2024-09-08 08:26:40,504 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::Floating': UML56 +2024-09-08 08:26:40,504 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::FloatingTs': UML57 +2024-09-08 08:26:40,504 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::IntegerTs': UML58 +2024-09-08 08:26:40,504 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::CharString': UML59 +2024-09-08 08:26:40,504 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::CharStringTs': UML60 +2024-09-08 08:26:40,504 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::Timestamp': UML61 +2024-09-08 08:26:40,504 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::Selector': UML62 +2024-09-08 08:26:40,504 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::MacAddress': UML63 +2024-09-08 08:26:40,504 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::InetAddressType': UML64 +2024-09-08 08:26:40,504 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::InetAddress': UML65 +2024-09-08 08:26:40,504 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::EntityIndex': UML66 +2024-09-08 08:26:40,504 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abstract Types::CntRs': UML67 +2024-09-08 08:26:40,504 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::AppDatStType': UML68 +2024-09-08 08:26:40,504 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::PhyHealthType': UML69 +2024-09-08 08:26:40,504 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ExtType': UML70 +2024-09-08 08:26:40,505 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::IntType': UML71 +2024-09-08 08:26:40,505 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventType': UML72 +2024-09-08 08:26:40,505 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::PSPAccType': UML73 +2024-09-08 08:26:40,505 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ProtIdType': UML74 +2024-09-08 08:26:40,505 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncIssueType': UML75 +2024-09-08 08:26:40,505 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::SecurityProfileType': UML76 +2024-09-08 08:26:40,505 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcType': UML77 +2024-09-08 08:26:40,505 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::LnkType': UML78 +2024-09-08 08:26:40,505 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Environmental Agent::Environmental': UML79 +2024-09-08 08:26:40,505 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Environmental Agent::PSUPEntry': UML80 +2024-09-08 08:26:40,505 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Environmental Agent::Notification': UML81 +2024-09-08 08:26:40,505 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Environmental Agent::SecurityNotification': UML82 +2024-09-08 08:26:40,505 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IED Agent::IED': UML83 +2024-09-08 08:26:40,505 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IED Agent::CPUEntry': UML84 +2024-09-08 08:26:40,505 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IED Agent::EXTEntry': UML85 +2024-09-08 08:26:40,505 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IED Agent::STOREEntry': UML86 +2024-09-08 08:26:40,505 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IED Agent::Notification': UML87 +2024-09-08 08:26:40,505 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IED Agent::SecurityNotification': UML88 +2024-09-08 08:26:40,505 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Common objects::CommonProtocolInfo': UML89 +2024-09-08 08:26:40,506 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEC62351-3 ed.2 Agent::IEC62351-3ed2security': UML90 +2024-09-08 08:26:40,506 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEC62351-3 ed.2 Agent::TLSSession': UML91 +2024-09-08 08:26:40,506 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEC62351-3 ed.2 Agent::ClientTLS': UML92 +2024-09-08 08:26:40,506 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEC62351-3 ed.2 Agent::ServerTLS': UML93 +2024-09-08 08:26:40,506 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo': UML94 +2024-09-08 08:26:40,506 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent::Association': UML95 +2024-09-08 08:26:40,506 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent::MasterAssociation': UML96 +2024-09-08 08:26:40,506 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent::OutstationAssociation': UML97 +2024-09-08 08:26:40,506 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5': UML98 +2024-09-08 08:26:40,506 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2': UML99 +2024-09-08 08:26:40,506 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent - ed2::Association': UML100 +2024-09-08 08:26:40,506 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent - ed2::MasterAssociation': UML101 +2024-09-08 08:26:40,506 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent - ed2::OutstationAssociation': UML102 +2024-09-08 08:26:40,506 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MMS::MMSProtocolInfo': UML103 +2024-09-08 08:26:40,506 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MMS::MMSAssociation': UML104 +2024-09-08 08:26:40,506 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEC62351-3 ed.2 Agent::Summary': UML105 +2024-09-08 08:26:40,507 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification': UML106 +2024-09-08 08:26:40,507 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent::Summary': UML107 +2024-09-08 08:26:40,507 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification': UML108 +2024-09-08 08:26:40,507 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification': UML109 +2024-09-08 08:26:40,507 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent - ed2::Summary': UML110 +2024-09-08 08:26:40,507 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2': UML111 +2024-09-08 08:26:40,507 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2': UML112 +2024-09-08 08:26:40,507 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ACSI::ACSISummary': UML113 +2024-09-08 08:26:40,507 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MMS::MMSProvider': UML114 +2024-09-08 08:26:40,507 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MMS::MMSSecurityNotification': UML115 +2024-09-08 08:26:40,507 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MMS::MMSNotification': UML116 +2024-09-08 08:26:40,507 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'SV and GSE common objects::GSEandSVCommon': UML117 +2024-09-08 08:26:40,507 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'SV and GSE common objects::GSEandSVPublisherAssociation': UML118 +2024-09-08 08:26:40,507 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'SV::SVPublisherAssociationIP': UML119 +2024-09-08 08:26:40,507 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'SV::SVPublisherAssociationL2': UML120 +2024-09-08 08:26:40,507 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GSE::GSEPublisherAssociationIP': UML121 +2024-09-08 08:26:40,507 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GSE::GSEPublisherAssociationL2': UML122 +2024-09-08 08:26:40,507 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'SV and GSE common objects::GSEandSVSubscriberAssociation': UML123 +2024-09-08 08:26:40,507 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'SV::SVSubcriberAssociationIP': UML124 +2024-09-08 08:26:40,507 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'SV::SVSubcriberAssociationL2': UML125 +2024-09-08 08:26:40,507 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GSE::GSESubscriberAssociation': UML126 +2024-09-08 08:26:40,507 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GSE::GSESubcriberAssociationIP': UML127 +2024-09-08 08:26:40,507 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GSE::GSESubcriberAssociationL2': UML128 +2024-09-08 08:26:40,507 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'SV::SVProvider': UML129 +2024-09-08 08:26:40,507 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'SV::SVNotification': UML130 +2024-09-08 08:26:40,507 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GSE::GSEProvider': UML131 +2024-09-08 08:26:40,508 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GSE::GSENotification': UML132 +2024-09-08 08:26:40,508 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Clocks Agent::Clock': UML133 +2024-09-08 08:26:40,508 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Clocks Agent::ClockEntry': UML134 +2024-09-08 08:26:40,508 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Clocks Agent::SecurityNotification': UML135 +2024-09-08 08:26:40,508 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Interfaces Agent::Interface': UML136 +2024-09-08 08:26:40,508 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Interfaces Agent::ETHEntry': UML137 +2024-09-08 08:26:40,508 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Interfaces Agent::KEYEntry': UML138 +2024-09-08 08:26:40,508 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Interfaces Agent::SEREntry': UML139 +2024-09-08 08:26:40,508 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Interfaces Agent::ALGEntry': UML140 +2024-09-08 08:26:40,508 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Interfaces Agent::USBEntry': UML141 +2024-09-08 08:26:40,508 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Interfaces Agent::Interfaces': UML142 +2024-09-08 08:26:40,508 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Interfaces Agent::Notification': UML143 +2024-09-08 08:26:40,508 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::InetAddressType.unknown': UML144 +2024-09-08 08:26:40,508 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::InetAddressType.ipv4': UML145 +2024-09-08 08:26:40,508 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::InetAddressType.ipv6': UML146 +2024-09-08 08:26:40,508 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::InetAddressType.ipv4z': UML147 +2024-09-08 08:26:40,508 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::InetAddressType.ipv6z': UML148 +2024-09-08 08:26:40,508 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BaseTypes::InetAddressType.dns': UML149 +2024-09-08 08:26:40,508 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::AppDatStKind.unknown': UML150 +2024-09-08 08:26:40,508 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::AppDatStKind.good': UML151 +2024-09-08 08:26:40,508 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::AppDatStKind.bad': UML152 +2024-09-08 08:26:40,508 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::PhyHealthKind.ok': UML153 +2024-09-08 08:26:40,508 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::PhyHealthKind.warning': UML154 +2024-09-08 08:26:40,508 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::PhyHealthKind.alarm': UML155 +2024-09-08 08:26:40,508 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ExtKind.unknown': UML156 +2024-09-08 08:26:40,508 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ExtKind.ioModule': UML157 +2024-09-08 08:26:40,509 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ExtKind.softwarePLC': UML158 +2024-09-08 08:26:40,509 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::IntKind.wired': UML159 +2024-09-08 08:26:40,509 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::IntKind.wireless': UML160 +2024-09-08 08:26:40,509 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::LnkKind.unknown': UML161 +2024-09-08 08:26:40,509 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::LnkKind.serial': UML162 +2024-09-08 08:26:40,509 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::LnkKind.tcp': UML163 +2024-09-08 08:26:40,509 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::LnkKind.udp': UML164 +2024-09-08 08:26:40,509 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::LnkKind.eth': UML165 +2024-09-08 08:26:40,509 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::PSPAccKind.notBeingAccessed': UML166 +2024-09-08 08:26:40,509 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::PSPAccKind.accessOccurring': UML167 +2024-09-08 08:26:40,509 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ProtIdKind.unknown': UML168 +2024-09-08 08:26:40,509 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ProtIdKind.iEC6185081': UML169 +2024-09-08 08:26:40,509 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ProtIdKind.iEC6185081GOOSE': UML170 +2024-09-08 08:26:40,509 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ProtIdKind.iEC6185092SV': UML171 +2024-09-08 08:26:40,509 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ProtIdKind.ieee1815DNP': UML172 +2024-09-08 08:26:40,509 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ProtIdKind.iec608705': UML173 +2024-09-08 08:26:40,509 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::ProtIdKind.iEC6185082': UML174 +2024-09-08 08:26:40,509 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind.none': UML175 +2024-09-08 08:26:40,509 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind.unKnown': UML176 +2024-09-08 08:26:40,509 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind.denialOfService': UML177 +2024-09-08 08:26:40,509 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind.malware': UML178 +2024-09-08 08:26:40,510 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind.bufferOverRun': UML179 +2024-09-08 08:26:40,510 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind.bufferUnderRun': UML180 +2024-09-08 08:26:40,510 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind.badCredential': UML181 +2024-09-08 08:26:40,510 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind.badKey': UML182 +2024-09-08 08:26:40,510 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind.malformedPDU': UML183 +2024-09-08 08:26:40,510 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind.physicalDisruption': UML184 +2024-09-08 08:26:40,510 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::EventKind.invalidNetworkAccess': UML185 +2024-09-08 08:26:40,510 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncIssueKind.synced': UML186 +2024-09-08 08:26:40,510 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncIssueKind.degradated': UML187 +2024-09-08 08:26:40,510 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncIssueKind.failed': UML188 +2024-09-08 08:26:40,510 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncIssueKind.syncedGlobal': UML189 +2024-09-08 08:26:40,510 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::SecurityProfileKind.noSecurity': UML190 +2024-09-08 08:26:40,510 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::SecurityProfileKind.aProfile': UML191 +2024-09-08 08:26:40,510 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::SecurityProfileKind.e2eProfile': UML192 +2024-09-08 08:26:40,510 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::SecurityProfileKind.ae2eProfile': UML193 +2024-09-08 08:26:40,510 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.unknown': UML194 +2024-09-08 08:26:40,510 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.ntp': UML195 +2024-09-08 08:26:40,510 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.sntp': UML196 +2024-09-08 08:26:40,510 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.irig': UML197 +2024-09-08 08:26:40,510 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.gps': UML198 +2024-09-08 08:26:40,510 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.ieee1588PTP': UML199 +2024-09-08 08:26:40,510 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.ieee1588PTPC37238Profile2011': UML200 +2024-09-08 08:26:40,510 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.ieee1588PTPIEC6185093': UML201 +2024-09-08 08:26:40,510 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.ieee1588PTPC37238Profile2017': UML202 +2024-09-08 08:26:40,510 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.ieee1588PTPIEC6185093Ed20': UML203 +2024-09-08 08:26:40,510 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.ieee1588PTPIEC6185093Profile2016': UML204 +2024-09-08 08:26:40,510 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.gnss': UML205 +2024-09-08 08:26:40,510 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.applicationProtocol': UML206 +2024-09-08 08:26:40,510 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'EnumeratedTypes::TimSyncSrcKind.ntpOnts': UML207 +2024-09-08 08:26:40,526 [main] INFO PackageDocImpl - collecting doc for package iso ... +2024-09-08 08:26:40,529 [main] INFO PackageDocImpl - collecting doc for package standard ... +2024-09-08 08:26:40,529 [main] INFO PackageDocImpl - collecting doc for package iec62351 ... +2024-09-08 08:26:40,530 [main] INFO PackageDocImpl - collecting doc for package part7 ... +2024-09-08 08:26:40,530 [main] INFO PackageDocImpl - collecting doc for package Profiles ... +2024-09-08 08:26:40,534 [main] INFO PackageDocImpl - collecting doc for package nsmAgent ... +2024-09-08 08:26:40,568 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Attribute, hphSpec = 'aaùAttributeùUML1ùdd' +2024-09-08 08:26:40,569 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Attribute, hphSpec = 'aaùAttributeùUML5ùdd' +2024-09-08 08:26:40,569 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Attribute, hphSpec = 'aaùAttributeùUML4ùdd' +2024-09-08 08:26:40,571 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Class, hphSpec = 'aaùClassùUML12ùdd' +2024-09-08 08:26:40,572 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Class, hphSpec = 'aaùClassùUML11ùdd' +2024-09-08 08:26:40,573 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Class, hphSpec = 'aaùClassùUML10ùdd' +2024-09-08 08:26:40,573 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Attribute, hphSpec = 'aaùAttributeùUML6ùdd' +2024-09-08 08:26:40,574 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Attribute, hphSpec = 'aaùAttributeùUML2ùdd' +2024-09-08 08:26:40,575 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Attribute, hphSpec = 'aaùAttributeùUML3ùdd' +2024-09-08 08:26:40,576 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Attribute, hphSpec = 'aaùAttributeùUML7ùdd' +2024-09-08 08:26:40,577 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Attribute, hphSpec = 'aaùAttributeùUML9ùdd' +2024-09-08 08:26:40,578 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Attribute, hphSpec = 'aaùAttributeùUML8ùdd' +2024-09-08 08:26:40,578 [main] INFO PackageDocImpl - collecting doc for package Overview ... +2024-09-08 08:26:40,579 [main] INFO PackageDocImpl - collecting doc for package BaseTypes ... +2024-09-08 08:26:40,597 [main] INFO PackageDocImpl - collecting doc for package Abstract Types ... +2024-09-08 08:26:40,597 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-08 08:26:40,598 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TruthValue, hphSpec = 'aaùTruthValueùUML38ùdd' +2024-09-08 08:26:40,600 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-08 08:26:40,600 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DateAndTime, hphSpec = 'aaùDateAndTimeùUML27ùdd' +2024-09-08 08:26:40,600 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TruthValue, hphSpec = 'aaùTruthValueùUML38ùdd' +2024-09-08 08:26:40,601 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-08 08:26:40,601 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DateAndTime, hphSpec = 'aaùDateAndTimeùUML27ùdd' +2024-09-08 08:26:40,601 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Counter32 , hphSpec = 'aaùCounter32 ùUML26ùdd' +2024-09-08 08:26:40,602 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-08 08:26:40,602 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DateAndTime, hphSpec = 'aaùDateAndTimeùUML27ùdd' +2024-09-08 08:26:40,602 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TruthValue, hphSpec = 'aaùTruthValueùUML38ùdd' +2024-09-08 08:26:40,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-08 08:26:40,603 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Float32TC, hphSpec = 'aaùFloat32TCùUML29ùdd' +2024-09-08 08:26:40,604 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-08 08:26:40,604 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DateAndTime, hphSpec = 'aaùDateAndTimeùUML27ùdd' +2024-09-08 08:26:40,604 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Float32TC, hphSpec = 'aaùFloat32TCùUML29ùdd' +2024-09-08 08:26:40,605 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-08 08:26:40,605 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Unsigned32, hphSpec = 'aaùUnsigned32ùUML36ùdd' +2024-09-08 08:26:40,606 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-08 08:26:40,606 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer32, hphSpec = 'aaùInteger32ùUML35ùdd' +2024-09-08 08:26:40,606 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-08 08:26:40,606 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DateAndTime, hphSpec = 'aaùDateAndTimeùUML27ùdd' +2024-09-08 08:26:40,606 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer32, hphSpec = 'aaùInteger32ùUML35ùdd' +2024-09-08 08:26:40,607 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-08 08:26:40,607 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML31ùdd' +2024-09-08 08:26:40,607 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-08 08:26:40,607 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML33ùdd' +2024-09-08 08:26:40,608 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-08 08:26:40,608 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MacAddress, hphSpec = 'aaùMacAddressùUML32ùdd' +2024-09-08 08:26:40,608 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-08 08:26:40,608 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DisplayString, hphSpec = 'aaùDisplayStringùUML28ùdd' +2024-09-08 08:26:40,609 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-08 08:26:40,609 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DateAndTime, hphSpec = 'aaùDateAndTimeùUML27ùdd' +2024-09-08 08:26:40,609 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-08 08:26:40,609 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DisplayString, hphSpec = 'aaùDisplayStringùUML28ùdd' +2024-09-08 08:26:40,610 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-08 08:26:40,610 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DateAndTime, hphSpec = 'aaùDateAndTimeùUML27ùdd' +2024-09-08 08:26:40,610 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DisplayString, hphSpec = 'aaùDisplayStringùUML28ùdd' +2024-09-08 08:26:40,611 [main] INFO PackageDocImpl - collecting doc for package EnumeratedTypes ... +2024-09-08 08:26:40,622 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-08 08:26:40,622 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DateAndTime, hphSpec = 'aaùDateAndTimeùUML27ùdd' +2024-09-08 08:26:40,622 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AppDatStKind, hphSpec = 'aaùAppDatStKindùUML41ùdd' +2024-09-08 08:26:40,622 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-08 08:26:40,623 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DateAndTime, hphSpec = 'aaùDateAndTimeùUML27ùdd' +2024-09-08 08:26:40,623 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PhyHealthKind, hphSpec = 'aaùPhyHealthKindùUML42ùdd' +2024-09-08 08:26:40,624 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-08 08:26:40,624 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ExtKind, hphSpec = 'aaùExtKindùUML43ùdd' +2024-09-08 08:26:40,624 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-08 08:26:40,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntKind, hphSpec = 'aaùIntKindùUML44ùdd' +2024-09-08 08:26:40,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-08 08:26:40,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DateAndTime, hphSpec = 'aaùDateAndTimeùUML27ùdd' +2024-09-08 08:26:40,625 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventKind, hphSpec = 'aaùEventKindùUML48ùdd' +2024-09-08 08:26:40,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-08 08:26:40,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DateAndTime, hphSpec = 'aaùDateAndTimeùUML27ùdd' +2024-09-08 08:26:40,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PSPAccKind, hphSpec = 'aaùPSPAccKindùUML46ùdd' +2024-09-08 08:26:40,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-08 08:26:40,626 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ProtIdKind, hphSpec = 'aaùProtIdKindùUML47ùdd' +2024-09-08 08:26:40,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-08 08:26:40,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimSyncIssueKind, hphSpec = 'aaùTimSyncIssueKindùUML49ùdd' +2024-09-08 08:26:40,627 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-08 08:26:40,628 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SecurityProfileKind, hphSpec = 'aaùSecurityProfileKindùUML50ùdd' +2024-09-08 08:26:40,628 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-08 08:26:40,628 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimSyncSrcKind, hphSpec = 'aaùTimSyncSrcKindùUML51ùdd' +2024-09-08 08:26:40,629 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractBaseType, hphSpec = 'aaùAbstractBaseTypeùUML39ùdd' +2024-09-08 08:26:40,629 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LnkKind, hphSpec = 'aaùLnkKindùUML45ùdd' +2024-09-08 08:26:40,629 [main] INFO PackageDocImpl - collecting doc for package Environmental Agent ... +2024-09-08 08:26:40,630 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,630 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AppDatStType, hphSpec = 'aaùAppDatStTypeùUML68ùdd' +2024-09-08 08:26:40,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-08 08:26:40,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-08 08:26:40,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-08 08:26:40,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-08 08:26:40,631 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-08 08:26:40,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-08 08:26:40,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PSUPEntry, hphSpec = 'aaùPSUPEntryùUML80ùdd' +2024-09-08 08:26:40,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-08 08:26:40,633 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-08 08:26:40,634 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SecurityNotification, hphSpec = 'aaùSecurityNotificationùUML82ùdd' +2024-09-08 08:26:40,634 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Notification, hphSpec = 'aaùNotificationùUML81ùdd' +2024-09-08 08:26:40,634 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-08 08:26:40,635 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-08 08:26:40,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-08 08:26:40,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,636 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-08 08:26:40,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-08 08:26:40,637 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-08 08:26:40,638 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-08 08:26:40,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,639 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-08 08:26:40,640 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Timestamp, hphSpec = 'aaùTimestampùUML61ùdd' +2024-09-08 08:26:40,640 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Timestamp, hphSpec = 'aaùTimestampùUML61ùdd' +2024-09-08 08:26:40,640 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Timestamp, hphSpec = 'aaùTimestampùUML61ùdd' +2024-09-08 08:26:40,640 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Timestamp, hphSpec = 'aaùTimestampùUML61ùdd' +2024-09-08 08:26:40,641 [main] INFO PackageDocImpl - collecting doc for package IED Agent ... +2024-09-08 08:26:40,642 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,642 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,642 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-08 08:26:40,643 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-08 08:26:40,643 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-08 08:26:40,643 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CPUEntry, hphSpec = 'aaùCPUEntryùUML84ùdd' +2024-09-08 08:26:40,643 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-08 08:26:40,643 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,643 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,643 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-08 08:26:40,643 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EXTEntry, hphSpec = 'aaùEXTEntryùUML85ùdd' +2024-09-08 08:26:40,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-08 08:26:40,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-08 08:26:40,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-08 08:26:40,644 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-08 08:26:40,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-08 08:26:40,645 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-08 08:26:40,646 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,646 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,646 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-08 08:26:40,646 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-08 08:26:40,646 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,650 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,651 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,651 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-08 08:26:40,651 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-08 08:26:40,651 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-08 08:26:40,651 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PhyHealthType, hphSpec = 'aaùPhyHealthTypeùUML69ùdd' +2024-09-08 08:26:40,651 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,651 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-08 08:26:40,651 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-08 08:26:40,652 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,652 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SecurityNotification, hphSpec = 'aaùSecurityNotificationùUML88ùdd' +2024-09-08 08:26:40,652 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Notification, hphSpec = 'aaùNotificationùUML87ùdd' +2024-09-08 08:26:40,652 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = STOREEntry, hphSpec = 'aaùSTOREEntryùUML86ùdd' +2024-09-08 08:26:40,652 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,652 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,652 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,652 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,653 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-08 08:26:40,653 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,653 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-08 08:26:40,653 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-08 08:26:40,653 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-08 08:26:40,653 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-08 08:26:40,653 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-08 08:26:40,653 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,654 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,654 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-08 08:26:40,654 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,654 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ExtType, hphSpec = 'aaùExtTypeùUML70ùdd' +2024-09-08 08:26:40,654 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-08 08:26:40,654 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-08 08:26:40,655 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-08 08:26:40,655 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,655 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,655 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-08 08:26:40,655 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,656 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-08 08:26:40,656 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,656 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,656 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-08 08:26:40,656 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-08 08:26:40,656 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-08 08:26:40,656 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,656 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,657 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-08 08:26:40,657 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-08 08:26:40,657 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-08 08:26:40,657 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PhyHealthType, hphSpec = 'aaùPhyHealthTypeùUML69ùdd' +2024-09-08 08:26:40,657 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,657 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,657 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,657 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-08 08:26:40,658 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-08 08:26:40,658 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-08 08:26:40,658 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-08 08:26:40,658 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,658 [main] INFO PackageDocImpl - collecting doc for package Application Protocols Agents ... +2024-09-08 08:26:40,658 [main] INFO PackageDocImpl - collecting doc for package Common objects ... +2024-09-08 08:26:40,659 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,659 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-08 08:26:40,659 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-08 08:26:40,659 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,660 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,660 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,660 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,660 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,660 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,661 [main] INFO PackageDocImpl - collecting doc for package IEC62351-3 ed.2 Agent ... +2024-09-08 08:26:40,662 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,662 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,663 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,664 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,664 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,664 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,666 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,666 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,666 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,666 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,667 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,667 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,668 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,668 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,668 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,668 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,668 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,669 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,669 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,669 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,669 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,669 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,669 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,669 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,669 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,670 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,670 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,670 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,670 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,670 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,670 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,670 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,670 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,670 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,671 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,671 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,671 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,671 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,671 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,671 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,671 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,674 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-08 08:26:40,674 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-08 08:26:40,674 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-08 08:26:40,674 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-08 08:26:40,674 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-08 08:26:40,674 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-08 08:26:40,674 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-08 08:26:40,674 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,674 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-08 08:26:40,674 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,675 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,675 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,675 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,675 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,675 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,675 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,675 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,675 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,675 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,675 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,675 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,675 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,675 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,675 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,675 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,675 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,676 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,676 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,676 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,676 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,676 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,676 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,676 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,676 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,676 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,676 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,676 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,676 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,676 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,676 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,676 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,676 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,676 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,676 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,677 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,677 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,677 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,677 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,677 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,677 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,677 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,677 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,677 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,677 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,677 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,677 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,677 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,677 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,677 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,677 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,677 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,677 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,677 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,678 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,678 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,678 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,678 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,678 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,678 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,678 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,678 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,678 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,678 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,678 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,678 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,678 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,678 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,678 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,678 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,678 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,678 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,678 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,679 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,679 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,679 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,679 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,679 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,679 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,679 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,679 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,679 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,679 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,680 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,680 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,680 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-08 08:26:40,680 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-08 08:26:40,680 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ServerTLS, hphSpec = 'aaùServerTLSùUML93ùdd' +2024-09-08 08:26:40,681 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ClientTLS, hphSpec = 'aaùClientTLSùUML92ùdd' +2024-09-08 08:26:40,681 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part3ed2SecurityNotification, hphSpec = 'aaùIEC62351part3ed2SecurityNotificationùUML106ùdd' +2024-09-08 08:26:40,681 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,681 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,681 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,681 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,681 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,681 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,682 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,682 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,682 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,682 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,682 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,682 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,683 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,683 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,683 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,683 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,683 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,683 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,683 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,683 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,684 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,684 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,684 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,684 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,684 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,684 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,684 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,684 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,684 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,684 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,684 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,684 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,684 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,684 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,684 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,684 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,684 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,684 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,684 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,684 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,684 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,684 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,685 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,685 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,685 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,685 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,685 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,685 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,685 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,685 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,685 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,685 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,685 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,685 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,685 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,685 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,685 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,685 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,685 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,685 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,685 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,685 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,685 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,685 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,686 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,686 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,686 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,686 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,686 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,686 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,686 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,686 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-08 08:26:40,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-08 08:26:40,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-08 08:26:40,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-08 08:26:40,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-08 08:26:40,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-08 08:26:40,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-08 08:26:40,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-08 08:26:40,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-08 08:26:40,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-08 08:26:40,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-08 08:26:40,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-08 08:26:40,687 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-08 08:26:40,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-08 08:26:40,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-08 08:26:40,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-08 08:26:40,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,689 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,690 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-08 08:26:40,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-08 08:26:40,693 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-08 08:26:40,693 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-08 08:26:40,693 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-08 08:26:40,693 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-08 08:26:40,693 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-08 08:26:40,693 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-08 08:26:40,693 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-08 08:26:40,693 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-08 08:26:40,693 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-08 08:26:40,693 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-08 08:26:40,693 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TLSSession, hphSpec = 'aaùTLSSessionùUML91ùdd' +2024-09-08 08:26:40,693 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-08 08:26:40,693 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,693 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-08 08:26:40,693 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,693 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,693 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,693 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,693 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,693 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,693 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,694 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,694 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,694 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,694 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,694 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,694 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,694 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,694 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,694 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,694 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,694 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,694 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,694 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,694 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,694 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,694 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,694 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,694 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,694 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,694 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,696 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,696 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,696 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,696 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,696 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,696 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,696 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,696 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,696 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,696 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,696 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,696 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,696 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,696 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,696 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,696 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,696 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,696 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,697 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,697 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,697 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,697 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,697 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,697 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,697 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,697 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,697 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,697 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,697 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,697 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,697 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,697 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,697 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,697 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,697 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,697 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,697 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,697 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,697 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351-3ed2security, hphSpec = 'aaùIEC62351-3ed2securityùUML90ùdd' +2024-09-08 08:26:40,698 [main] INFO PackageDocImpl - collecting doc for package IEEE 1815 and IEC 60870-5 Agent ... +2024-09-08 08:26:40,699 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,700 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,700 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,700 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,700 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,700 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,701 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,701 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,701 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,701 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,701 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,701 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,701 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,701 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,701 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,701 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,701 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-08 08:26:40,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,705 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,705 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-08 08:26:40,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-08 08:26:40,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-08 08:26:40,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-08 08:26:40,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ProtIdType, hphSpec = 'aaùProtIdTypeùUML74ùdd' +2024-09-08 08:26:40,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-08 08:26:40,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-08 08:26:40,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LnkType, hphSpec = 'aaùLnkTypeùUML78ùdd' +2024-09-08 08:26:40,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-08 08:26:40,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-08 08:26:40,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-08 08:26:40,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,711 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,711 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,711 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,711 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,711 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,711 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,711 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,711 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,711 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,712 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,712 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,712 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-08 08:26:40,712 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-08 08:26:40,712 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MasterAssociation, hphSpec = 'aaùMasterAssociationùUML96ùdd' +2024-09-08 08:26:40,712 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OutstationAssociation, hphSpec = 'aaùOutstationAssociationùUML97ùdd' +2024-09-08 08:26:40,712 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPSecurityNotification, hphSpec = 'aaù60870andDNPSecurityNotificationùUML108ùdd' +2024-09-08 08:26:40,712 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPNotification, hphSpec = 'aaù60870andDNPNotificationùUML109ùdd' +2024-09-08 08:26:40,712 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,712 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-08 08:26:40,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,715 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,715 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,715 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,715 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,716 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,716 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,716 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,716 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,716 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,716 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,716 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,716 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,716 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,716 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,716 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,716 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,716 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,716 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,717 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,717 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,717 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,717 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,717 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,717 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,717 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-08 08:26:40,718 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,718 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,718 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,718 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,718 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,719 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,719 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,719 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,719 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,719 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,719 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-08 08:26:40,719 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,719 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,719 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,719 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,719 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,720 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-08 08:26:40,720 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-08 08:26:40,720 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-08 08:26:40,720 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-08 08:26:40,720 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-08 08:26:40,720 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-08 08:26:40,720 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-08 08:26:40,720 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-08 08:26:40,720 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ProtIdType, hphSpec = 'aaùProtIdTypeùUML74ùdd' +2024-09-08 08:26:40,720 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-08 08:26:40,720 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,720 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-08 08:26:40,720 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,720 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-08 08:26:40,720 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-08 08:26:40,720 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-08 08:26:40,720 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-08 08:26:40,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-08 08:26:40,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-08 08:26:40,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LnkType, hphSpec = 'aaùLnkTypeùUML78ùdd' +2024-09-08 08:26:40,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-08 08:26:40,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-08 08:26:40,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,724 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,724 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,724 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-08 08:26:40,724 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,724 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-08 08:26:40,724 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,724 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,724 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,724 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,724 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,724 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,724 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,724 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,724 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,724 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,724 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,725 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,725 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,725 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-08 08:26:40,725 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,725 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,725 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,725 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,725 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,726 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-08 08:26:40,726 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-08 08:26:40,726 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-08 08:26:40,726 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-08 08:26:40,726 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-08 08:26:40,726 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-08 08:26:40,726 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-08 08:26:40,726 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-08 08:26:40,726 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ProtIdType, hphSpec = 'aaùProtIdTypeùUML74ùdd' +2024-09-08 08:26:40,726 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-08 08:26:40,726 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,726 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-08 08:26:40,726 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,726 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-08 08:26:40,726 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-08 08:26:40,726 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-08 08:26:40,726 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-08 08:26:40,726 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-08 08:26:40,726 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,726 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-08 08:26:40,727 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LnkType, hphSpec = 'aaùLnkTypeùUML78ùdd' +2024-09-08 08:26:40,727 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML95ùdd' +2024-09-08 08:26:40,727 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,727 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,727 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,727 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,727 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,727 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,727 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,727 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,727 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,727 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,727 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,727 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,727 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,727 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,727 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,727 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,727 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,727 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,728 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,728 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,728 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,728 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,728 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,728 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,728 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,728 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,728 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,728 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,728 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,728 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,728 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,728 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,728 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,728 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,728 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-08 08:26:40,728 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,728 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,729 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,729 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,729 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,729 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,729 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,729 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,729 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,729 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,729 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,729 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,729 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,729 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,729 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,729 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,729 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,729 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,729 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,729 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,729 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,729 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,729 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,729 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,729 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfo, hphSpec = 'aaù60870andDNPProtocolInfoùUML94ùdd' +2024-09-08 08:26:40,730 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-08 08:26:40,730 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,730 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-08 08:26:40,730 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,730 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,730 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,730 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,730 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,730 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,730 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,730 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,730 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,730 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,730 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,730 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,730 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,732 [main] INFO PackageDocImpl - collecting doc for package IEEE 1815 and IEC 60870-5 Agent - ed2 ... +2024-09-08 08:26:40,733 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,733 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,733 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,733 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,733 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,734 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,734 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,734 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,734 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,734 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,734 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,734 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,734 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,734 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,735 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,735 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,735 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,735 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,735 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,735 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,735 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,735 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,735 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,737 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,737 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,737 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,737 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,737 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,738 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,738 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,738 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,738 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,738 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,738 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,738 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,738 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,738 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,738 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,738 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,738 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,738 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,738 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,738 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,738 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,738 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,738 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,738 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,738 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,739 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,739 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,739 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,739 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,739 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,739 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,739 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,739 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,739 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,739 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,739 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,739 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,739 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,739 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,739 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,739 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,739 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,739 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,739 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,740 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,740 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,740 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,740 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,740 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,740 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,740 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,740 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,741 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,741 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,741 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,741 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,741 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,741 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,741 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,741 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,741 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,742 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,742 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,742 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,742 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,742 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,742 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,742 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,742 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,742 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,743 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,743 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,743 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,743 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,743 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,743 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,743 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,743 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,744 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,744 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,744 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,744 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,744 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,744 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,744 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,745 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-08 08:26:40,745 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-08 08:26:40,745 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-08 08:26:40,745 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-08 08:26:40,746 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ProtIdType, hphSpec = 'aaùProtIdTypeùUML74ùdd' +2024-09-08 08:26:40,746 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,746 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,746 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-08 08:26:40,746 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-08 08:26:40,746 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,746 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LnkType, hphSpec = 'aaùLnkTypeùUML78ùdd' +2024-09-08 08:26:40,746 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-08 08:26:40,746 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,747 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-08 08:26:40,747 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,747 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,747 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,747 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,747 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,747 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,747 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,747 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,747 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,747 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,747 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,747 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,747 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,747 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,747 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,747 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,747 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,747 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,747 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,747 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,748 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,748 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,748 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,748 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,748 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,748 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,748 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,748 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,748 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,749 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,749 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,749 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,749 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,749 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,749 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,749 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,749 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,749 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,749 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,749 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,749 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,749 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,749 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,749 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,749 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,749 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,749 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,749 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,749 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,750 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,750 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,750 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,750 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,750 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,750 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,750 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,750 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,750 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,750 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,750 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,750 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,750 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,750 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,750 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,750 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,750 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,750 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,750 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,750 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,750 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,750 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,750 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,751 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,751 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,751 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,751 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,751 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,751 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,751 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,751 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,751 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,751 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,751 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,751 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,751 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,751 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,751 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,751 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,751 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,751 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,751 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,751 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,751 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,751 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,751 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,751 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,751 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,752 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,752 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,752 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,752 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,752 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,752 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,755 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,755 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,756 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,756 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,756 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-08 08:26:40,756 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-08 08:26:40,756 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MasterAssociation, hphSpec = 'aaùMasterAssociationùUML101ùdd' +2024-09-08 08:26:40,756 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OutstationAssociation, hphSpec = 'aaùOutstationAssociationùUML102ùdd' +2024-09-08 08:26:40,756 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPSecurityNotificationEd2, hphSpec = 'aaù60870andDNPSecurityNotificationEd2ùUML111ùdd' +2024-09-08 08:26:40,756 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPNotificationEd2, hphSpec = 'aaù60870andDNPNotificationEd2ùUML112ùdd' +2024-09-08 08:26:40,756 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,756 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,756 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,756 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,756 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,756 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,759 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,759 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,759 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,759 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,759 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,759 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,759 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,759 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,759 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,759 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,759 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,759 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,759 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,759 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,759 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,759 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,759 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,759 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,759 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,759 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,759 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,759 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,759 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,759 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,760 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,760 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,760 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,760 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,760 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,760 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,760 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,760 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-08 08:26:40,761 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,761 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-08 08:26:40,761 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-08 08:26:40,761 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,761 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,761 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,761 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,761 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,761 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,761 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,762 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-08 08:26:40,762 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-08 08:26:40,762 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-08 08:26:40,762 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-08 08:26:40,762 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-08 08:26:40,762 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-08 08:26:40,762 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-08 08:26:40,762 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-08 08:26:40,762 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ProtIdType, hphSpec = 'aaùProtIdTypeùUML74ùdd' +2024-09-08 08:26:40,762 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-08 08:26:40,762 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,762 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-08 08:26:40,762 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,762 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-08 08:26:40,762 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-08 08:26:40,762 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-08 08:26:40,762 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-08 08:26:40,762 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-08 08:26:40,762 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,762 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-08 08:26:40,762 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LnkType, hphSpec = 'aaùLnkTypeùUML78ùdd' +2024-09-08 08:26:40,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-08 08:26:40,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-08 08:26:40,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-08 08:26:40,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,763 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,764 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,764 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,764 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,764 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,764 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,764 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,764 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,764 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,764 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,764 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,764 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,764 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,764 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,764 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,764 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,764 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,764 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,764 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,764 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,764 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,764 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,765 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,765 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,765 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,765 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,765 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,766 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,766 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,766 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,766 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,766 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,766 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,767 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,767 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,767 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,767 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,767 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,767 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,767 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,767 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,767 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,767 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,767 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,767 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,767 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,767 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,767 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,767 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,767 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,767 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,767 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,767 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,767 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,767 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,768 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,768 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,768 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,768 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,768 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,768 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,768 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,768 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,768 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,768 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,768 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,768 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,768 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,768 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,768 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,768 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,769 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,769 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,769 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,769 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,769 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,769 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,769 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,769 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,769 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,769 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,769 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,769 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,769 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,770 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-08 08:26:40,770 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,770 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,770 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,770 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,770 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,770 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,770 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,771 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-08 08:26:40,771 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-08 08:26:40,771 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-08 08:26:40,771 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-08 08:26:40,771 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-08 08:26:40,771 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-08 08:26:40,771 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-08 08:26:40,771 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-08 08:26:40,771 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ProtIdType, hphSpec = 'aaùProtIdTypeùUML74ùdd' +2024-09-08 08:26:40,771 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-08 08:26:40,771 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,771 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-08 08:26:40,771 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,771 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-08 08:26:40,771 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-08 08:26:40,771 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-08 08:26:40,771 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-08 08:26:40,771 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-08 08:26:40,771 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,771 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-08 08:26:40,771 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LnkType, hphSpec = 'aaùLnkTypeùUML78ùdd' +2024-09-08 08:26:40,772 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Association, hphSpec = 'aaùAssociationùUML100ùdd' +2024-09-08 08:26:40,772 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-08 08:26:40,772 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,772 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-08 08:26:40,772 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,772 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,772 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,772 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,772 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,772 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,772 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,772 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,772 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,772 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,772 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,772 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,772 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,772 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,772 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,772 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,772 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,772 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,772 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,772 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,772 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,774 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,774 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = 60870andDNPProtocolInfoEd2, hphSpec = 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' +2024-09-08 08:26:40,774 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,774 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,774 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,774 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,774 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,774 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,774 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,774 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,774 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,774 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,774 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,774 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,774 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,774 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,774 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,774 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,774 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,774 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,774 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,774 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,774 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,774 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,774 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,774 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,774 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,774 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,775 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,775 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,775 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,775 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,775 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,775 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,775 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,775 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,775 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,775 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,775 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,775 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,775 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,775 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,775 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,775 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,775 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,775 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,775 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,775 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,775 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,776 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,776 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,776 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,776 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,776 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC62351part5, hphSpec = 'aaùIEC62351part5ùUML98ùdd' +2024-09-08 08:26:40,776 [main] INFO PackageDocImpl - collecting doc for package IEC61850 Agent ... +2024-09-08 08:26:40,776 [main] INFO PackageDocImpl - collecting doc for package ACSI ... +2024-09-08 08:26:40,777 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,777 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-08 08:26:40,777 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-08 08:26:40,777 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-08 08:26:40,777 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,777 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-08 08:26:40,778 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-08 08:26:40,778 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-08 08:26:40,778 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-08 08:26:40,778 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-08 08:26:40,778 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,778 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,778 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,778 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-08 08:26:40,779 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-08 08:26:40,779 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-08 08:26:40,779 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-08 08:26:40,780 [main] INFO PackageDocImpl - collecting doc for package MMS ... +2024-09-08 08:26:40,781 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,783 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,783 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,783 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,783 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,783 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,783 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,783 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,783 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,784 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,784 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,784 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,785 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,785 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,785 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-08 08:26:40,785 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,786 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,786 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,786 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-08 08:26:40,786 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,786 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,787 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,787 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-08 08:26:40,787 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSAssociation, hphSpec = 'aaùMMSAssociationùUML104ùdd' +2024-09-08 08:26:40,787 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,787 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,787 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,787 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSSecurityNotification, hphSpec = 'aaùMMSSecurityNotificationùUML115ùdd' +2024-09-08 08:26:40,787 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-08 08:26:40,787 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,787 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSNotification, hphSpec = 'aaùMMSNotificationùUML116ùdd' +2024-09-08 08:26:40,787 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,787 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,787 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,787 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,788 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-08 08:26:40,788 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,788 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-08 08:26:40,788 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,788 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-08 08:26:40,788 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,788 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-08 08:26:40,788 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,788 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-08 08:26:40,788 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,788 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-08 08:26:40,788 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,788 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-08 08:26:40,788 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,788 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-08 08:26:40,788 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,788 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-08 08:26:40,788 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,788 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-08 08:26:40,788 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,788 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-08 08:26:40,788 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,788 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-08 08:26:40,788 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,788 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-08 08:26:40,789 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-08 08:26:40,789 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,789 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,789 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,789 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-08 08:26:40,789 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-08 08:26:40,789 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-08 08:26:40,789 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-08 08:26:40,789 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,789 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-08 08:26:40,790 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-08 08:26:40,790 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-08 08:26:40,790 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Selector, hphSpec = 'aaùSelectorùUML62ùdd' +2024-09-08 08:26:40,790 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Selector, hphSpec = 'aaùSelectorùUML62ùdd' +2024-09-08 08:26:40,790 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Selector, hphSpec = 'aaùSelectorùUML62ùdd' +2024-09-08 08:26:40,790 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-08 08:26:40,790 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-08 08:26:40,790 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SecurityProfileType, hphSpec = 'aaùSecurityProfileTypeùUML76ùdd' +2024-09-08 08:26:40,791 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,791 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-08 08:26:40,791 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,791 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-08 08:26:40,791 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,791 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-08 08:26:40,791 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,791 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-08 08:26:40,791 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,791 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-08 08:26:40,791 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,791 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-08 08:26:40,791 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,791 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-08 08:26:40,791 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,791 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-08 08:26:40,791 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,791 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-08 08:26:40,791 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,791 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-08 08:26:40,791 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,791 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-08 08:26:40,791 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,791 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-08 08:26:40,792 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,792 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMSProtocolInfo, hphSpec = 'aaùMMSProtocolInfoùUML103ùdd' +2024-09-08 08:26:40,792 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-08 08:26:40,792 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,792 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-08 08:26:40,792 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,792 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,792 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,792 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,792 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,792 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,792 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,792 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,792 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,792 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,792 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,792 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,792 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommonProtocolInfo, hphSpec = 'aaùCommonProtocolInfoùUML89ùdd' +2024-09-08 08:26:40,793 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,793 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,793 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EventType, hphSpec = 'aaùEventTypeùUML72ùdd' +2024-09-08 08:26:40,793 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,794 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,794 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,794 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,794 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,794 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,794 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,795 [main] INFO PackageDocImpl - collecting doc for package SV and GSE common objects ... +2024-09-08 08:26:40,796 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,797 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,799 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,800 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,801 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,801 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,801 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,801 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-08 08:26:40,801 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,802 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,802 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,802 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,802 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,802 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,802 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,802 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,802 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,805 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,805 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,806 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,806 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-08 08:26:40,806 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,806 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,806 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,806 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,806 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-08 08:26:40,806 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,806 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,806 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,806 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,806 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,806 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,807 [main] INFO PackageDocImpl - collecting doc for package SV ... +2024-09-08 08:26:40,807 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,807 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,807 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-08 08:26:40,808 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,808 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,808 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SVPublisherAssociationIP, hphSpec = 'aaùSVPublisherAssociationIPùUML119ùdd' +2024-09-08 08:26:40,808 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SVPublisherAssociationL2, hphSpec = 'aaùSVPublisherAssociationL2ùUML120ùdd' +2024-09-08 08:26:40,808 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SVNotification, hphSpec = 'aaùSVNotificationùUML130ùdd' +2024-09-08 08:26:40,808 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SVSubcriberAssociationIP, hphSpec = 'aaùSVSubcriberAssociationIPùUML124ùdd' +2024-09-08 08:26:40,808 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SVSubcriberAssociationL2, hphSpec = 'aaùSVSubcriberAssociationL2ùUML125ùdd' +2024-09-08 08:26:40,808 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,808 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,808 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,808 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,808 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,808 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,809 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-08 08:26:40,809 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,809 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,809 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-08 08:26:40,809 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-08 08:26:40,809 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,809 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-08 08:26:40,809 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-08 08:26:40,809 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-08 08:26:40,809 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,809 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-08 08:26:40,809 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,809 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-08 08:26:40,809 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,809 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-08 08:26:40,810 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,810 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,810 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,810 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,810 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,810 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,810 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-08 08:26:40,810 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,811 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,811 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MacAddress, hphSpec = 'aaùMacAddressùUML63ùdd' +2024-09-08 08:26:40,811 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,811 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-08 08:26:40,811 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-08 08:26:40,811 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-08 08:26:40,811 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,811 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-08 08:26:40,811 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,811 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-08 08:26:40,812 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,812 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-08 08:26:40,812 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,812 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,812 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,812 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,812 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,812 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,812 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-08 08:26:40,812 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,812 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,813 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-08 08:26:40,813 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-08 08:26:40,813 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,813 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-08 08:26:40,813 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-08 08:26:40,813 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-08 08:26:40,813 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,813 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-08 08:26:40,813 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,813 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-08 08:26:40,813 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,813 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-08 08:26:40,813 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,813 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-08 08:26:40,813 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-08 08:26:40,813 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-08 08:26:40,813 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,813 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,813 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,813 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,814 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,814 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,814 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-08 08:26:40,814 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,814 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,815 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MacAddress, hphSpec = 'aaùMacAddressùUML63ùdd' +2024-09-08 08:26:40,815 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,815 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-08 08:26:40,815 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-08 08:26:40,815 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-08 08:26:40,815 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,815 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-08 08:26:40,815 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,816 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-08 08:26:40,816 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,816 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-08 08:26:40,816 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,816 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-08 08:26:40,816 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-08 08:26:40,816 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-08 08:26:40,816 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,816 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,816 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,816 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,816 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,816 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,818 [main] INFO PackageDocImpl - collecting doc for package GSE ... +2024-09-08 08:26:40,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-08 08:26:40,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-08 08:26:40,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-08 08:26:40,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-08 08:26:40,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-08 08:26:40,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-08 08:26:40,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-08 08:26:40,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-08 08:26:40,820 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-08 08:26:40,820 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-08 08:26:40,820 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-08 08:26:40,820 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-08 08:26:40,820 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Timestamp, hphSpec = 'aaùTimestampùUML61ùdd' +2024-09-08 08:26:40,820 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,820 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-08 08:26:40,820 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-08 08:26:40,821 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-08 08:26:40,821 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,821 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-08 08:26:40,821 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,821 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-08 08:26:40,821 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,821 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-08 08:26:40,821 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,821 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-08 08:26:40,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-08 08:26:40,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-08 08:26:40,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-08 08:26:40,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEPublisherAssociationIP, hphSpec = 'aaùGSEPublisherAssociationIPùUML121ùdd' +2024-09-08 08:26:40,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEPublisherAssociationL2, hphSpec = 'aaùGSEPublisherAssociationL2ùUML122ùdd' +2024-09-08 08:26:40,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSENotification, hphSpec = 'aaùGSENotificationùUML132ùdd' +2024-09-08 08:26:40,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubcriberAssociationIP, hphSpec = 'aaùGSESubcriberAssociationIPùUML127ùdd' +2024-09-08 08:26:40,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubcriberAssociationL2, hphSpec = 'aaùGSESubcriberAssociationL2ùUML128ùdd' +2024-09-08 08:26:40,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-08 08:26:40,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-08 08:26:40,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-08 08:26:40,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-08 08:26:40,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-08 08:26:40,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-08 08:26:40,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-08 08:26:40,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-08 08:26:40,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-08 08:26:40,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-08 08:26:40,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,826 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MacAddress, hphSpec = 'aaùMacAddressùUML63ùdd' +2024-09-08 08:26:40,826 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MacAddress, hphSpec = 'aaùMacAddressùUML63ùdd' +2024-09-08 08:26:40,826 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,826 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-08 08:26:40,826 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-08 08:26:40,826 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-08 08:26:40,826 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,826 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-08 08:26:40,826 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,826 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-08 08:26:40,826 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,826 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVPublisherAssociation, hphSpec = 'aaùGSEandSVPublisherAssociationùUML118ùdd' +2024-09-08 08:26:40,826 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,826 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,826 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,826 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,826 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,826 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,827 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-08 08:26:40,827 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-08 08:26:40,827 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,827 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,827 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddress, hphSpec = 'aaùInetAddressùUML65ùdd' +2024-09-08 08:26:40,827 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = InetAddressType, hphSpec = 'aaùInetAddressTypeùUML64ùdd' +2024-09-08 08:26:40,827 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-08 08:26:40,827 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-08 08:26:40,827 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-08 08:26:40,827 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-08 08:26:40,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-08 08:26:40,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-08 08:26:40,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-08 08:26:40,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-08 08:26:40,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-08 08:26:40,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-08 08:26:40,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-08 08:26:40,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-08 08:26:40,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-08 08:26:40,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-08 08:26:40,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-08 08:26:40,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-08 08:26:40,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-08 08:26:40,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-08 08:26:40,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-08 08:26:40,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-08 08:26:40,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-08 08:26:40,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-08 08:26:40,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-08 08:26:40,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-08 08:26:40,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-08 08:26:40,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-08 08:26:40,829 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Timestamp, hphSpec = 'aaùTimestampùUML61ùdd' +2024-09-08 08:26:40,829 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-08 08:26:40,829 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,829 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-08 08:26:40,829 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-08 08:26:40,829 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-08 08:26:40,829 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,829 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-08 08:26:40,829 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,829 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-08 08:26:40,829 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,829 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-08 08:26:40,829 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,829 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-08 08:26:40,829 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-08 08:26:40,829 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-08 08:26:40,829 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,829 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,829 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,829 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,830 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,830 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,830 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-08 08:26:40,830 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-08 08:26:40,830 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,830 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,831 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MacAddress, hphSpec = 'aaùMacAddressùUML63ùdd' +2024-09-08 08:26:40,832 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MacAddress, hphSpec = 'aaùMacAddressùUML63ùdd' +2024-09-08 08:26:40,832 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-08 08:26:40,833 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-08 08:26:40,833 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-08 08:26:40,833 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-08 08:26:40,833 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-08 08:26:40,833 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-08 08:26:40,833 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-08 08:26:40,833 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-08 08:26:40,833 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,833 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-08 08:26:40,833 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,833 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-08 08:26:40,833 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-08 08:26:40,833 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-08 08:26:40,833 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,833 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-08 08:26:40,833 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-08 08:26:40,833 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-08 08:26:40,833 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,834 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-08 08:26:40,834 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-08 08:26:40,834 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-08 08:26:40,834 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-08 08:26:40,834 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-08 08:26:40,834 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-08 08:26:40,834 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-08 08:26:40,834 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-08 08:26:40,834 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-08 08:26:40,834 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-08 08:26:40,834 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-08 08:26:40,834 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Timestamp, hphSpec = 'aaùTimestampùUML61ùdd' +2024-09-08 08:26:40,834 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSESubscriberAssociation, hphSpec = 'aaùGSESubscriberAssociationùUML126ùdd' +2024-09-08 08:26:40,834 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,835 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-08 08:26:40,835 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-08 08:26:40,835 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-08 08:26:40,835 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,835 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-08 08:26:40,835 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,835 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-08 08:26:40,835 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Floating, hphSpec = 'aaùFloatingùUML56ùdd' +2024-09-08 08:26:40,835 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-08 08:26:40,835 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,835 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-08 08:26:40,835 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharStringTs, hphSpec = 'aaùCharStringTsùUML60ùdd' +2024-09-08 08:26:40,835 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVSubscriberAssociation, hphSpec = 'aaùGSEandSVSubscriberAssociationùUML123ùdd' +2024-09-08 08:26:40,835 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,835 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,835 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,835 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,835 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,835 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,836 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,836 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,836 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,836 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,836 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,837 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,837 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,837 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GSEandSVCommon, hphSpec = 'aaùGSEandSVCommonùUML117ùdd' +2024-09-08 08:26:40,837 [main] INFO PackageDocImpl - collecting doc for package Clocks Agent ... +2024-09-08 08:26:40,838 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,838 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Timestamp, hphSpec = 'aaùTimestampùUML61ùdd' +2024-09-08 08:26:40,838 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Timestamp, hphSpec = 'aaùTimestampùUML61ùdd' +2024-09-08 08:26:40,838 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-08 08:26:40,838 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ClockEntry, hphSpec = 'aaùClockEntryùUML134ùdd' +2024-09-08 08:26:40,838 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SecurityNotification, hphSpec = 'aaùSecurityNotificationùUML135ùdd' +2024-09-08 08:26:40,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-08 08:26:40,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-08 08:26:40,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimSyncIssueType, hphSpec = 'aaùTimSyncIssueTypeùUML75ùdd' +2024-09-08 08:26:40,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-08 08:26:40,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimSyncSrcType, hphSpec = 'aaùTimSyncSrcTypeùUML77ùdd' +2024-09-08 08:26:40,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-08 08:26:40,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FloatingTs, hphSpec = 'aaùFloatingTsùUML57ùdd' +2024-09-08 08:26:40,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-08 08:26:40,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValue, hphSpec = 'aaùBooleanValueùUML52ùdd' +2024-09-08 08:26:40,842 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,842 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Timestamp, hphSpec = 'aaùTimestampùUML61ùdd' +2024-09-08 08:26:40,842 [main] INFO PackageDocImpl - collecting doc for package Interfaces Agent ... +2024-09-08 08:26:40,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,844 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-08 08:26:40,844 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,845 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntType, hphSpec = 'aaùIntTypeùUML71ùdd' +2024-09-08 08:26:40,845 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-08 08:26:40,845 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-08 08:26:40,845 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-08 08:26:40,845 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-08 08:26:40,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-08 08:26:40,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-08 08:26:40,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-08 08:26:40,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-08 08:26:40,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-08 08:26:40,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-08 08:26:40,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-08 08:26:40,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-08 08:26:40,850 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-08 08:26:40,850 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-08 08:26:40,850 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-08 08:26:40,850 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-08 08:26:40,850 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML53ùdd' +2024-09-08 08:26:40,850 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-08 08:26:40,850 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-08 08:26:40,850 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SEREntry, hphSpec = 'aaùSEREntryùUML139ùdd' +2024-09-08 08:26:40,850 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ETHEntry, hphSpec = 'aaùETHEntryùUML137ùdd' +2024-09-08 08:26:40,850 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = USBEntry, hphSpec = 'aaùUSBEntryùUML141ùdd' +2024-09-08 08:26:40,850 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = KEYEntry, hphSpec = 'aaùKEYEntryùUML138ùdd' +2024-09-08 08:26:40,850 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ALGEntry, hphSpec = 'aaùALGEntryùUML140ùdd' +2024-09-08 08:26:40,850 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Notification, hphSpec = 'aaùNotificationùUML143ùdd' +2024-09-08 08:26:40,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-08 08:26:40,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-08 08:26:40,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-08 08:26:40,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-08 08:26:40,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntType, hphSpec = 'aaùIntTypeùUML71ùdd' +2024-09-08 08:26:40,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-08 08:26:40,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-08 08:26:40,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-08 08:26:40,852 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-08 08:26:40,852 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-08 08:26:40,852 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-08 08:26:40,852 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-08 08:26:40,852 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-08 08:26:40,852 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-08 08:26:40,852 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-08 08:26:40,852 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,852 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-08 08:26:40,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-08 08:26:40,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-08 08:26:40,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-08 08:26:40,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntType, hphSpec = 'aaùIntTypeùUML71ùdd' +2024-09-08 08:26:40,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-08 08:26:40,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-08 08:26:40,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-08 08:26:40,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-08 08:26:40,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-08 08:26:40,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-08 08:26:40,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-08 08:26:40,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-08 08:26:40,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-08 08:26:40,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-08 08:26:40,853 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CounterTs, hphSpec = 'aaùCounterTsùUML55ùdd' +2024-09-08 08:26:40,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-08 08:26:40,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-08 08:26:40,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-08 08:26:40,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntType, hphSpec = 'aaùIntTypeùUML71ùdd' +2024-09-08 08:26:40,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-08 08:26:40,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-08 08:26:40,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-08 08:26:40,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-08 08:26:40,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-08 08:26:40,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-08 08:26:40,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-08 08:26:40,856 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-08 08:26:40,857 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-08 08:26:40,860 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-08 08:26:40,860 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,860 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-08 08:26:40,860 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-08 08:26:40,860 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,860 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-08 08:26:40,860 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntType, hphSpec = 'aaùIntTypeùUML71ùdd' +2024-09-08 08:26:40,860 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-08 08:26:40,860 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-08 08:26:40,860 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-08 08:26:40,860 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-08 08:26:40,860 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-08 08:26:40,861 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-08 08:26:40,861 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-08 08:26:40,861 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-08 08:26:40,861 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-08 08:26:40,861 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-08 08:26:40,861 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,861 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntityIndex, hphSpec = 'aaùEntityIndexùUML66ùdd' +2024-09-08 08:26:40,861 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-08 08:26:40,861 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CharString, hphSpec = 'aaùCharStringùUML59ùdd' +2024-09-08 08:26:40,861 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-08 08:26:40,861 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntType, hphSpec = 'aaùIntTypeùUML71ùdd' +2024-09-08 08:26:40,861 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-08 08:26:40,862 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-08 08:26:40,862 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-08 08:26:40,862 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-08 08:26:40,862 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-08 08:26:40,862 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BooleanValueTs, hphSpec = 'aaùBooleanValueTsùUML54ùdd' +2024-09-08 08:26:40,862 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-08 08:26:40,862 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CntRs, hphSpec = 'aaùCntRsùUML67ùdd' +2024-09-08 08:26:40,862 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Interface, hphSpec = 'aaùInterfaceùUML136ùdd' +2024-09-08 08:26:40,862 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbstractAgent, hphSpec = 'aaùAbstractAgentùUML40ùdd' +2024-09-08 08:26:40,862 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-08 08:26:40,862 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-08 08:26:40,863 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-08 08:26:40,863 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-08 08:26:40,863 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-08 08:26:40,863 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-08 08:26:40,863 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-08 08:26:40,863 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-08 08:26:40,863 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-08 08:26:40,863 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IntegerTs, hphSpec = 'aaùIntegerTsùUML58ùdd' +2024-09-08 08:26:40,864 [main] INFO Util - time=[0:00:00.367] collected documentation content for 'model packages=[iso]; retained=[iso, standard, iec62351, part7, Profiles, nsmAgent, Overview, BaseTypes, Abstract Types, EnumeratedTypes, Environmental Agent, IED Agent, Application Protocols Agents, Common objects, IEC62351-3 ed.2 Agent, IEEE 1815 and IEC 60870-5 Agent, IEEE 1815 and IEC 60870-5 Agent - ed2, IEC61850 Agent, ACSI, MMS, SV and GSE common objects, SV, GSE, Clocks Agent, Interfaces Agent]; skipped=[]'. +2024-09-08 08:26:40,864 [main] INFO Util - +2024-09-08 08:26:40,864 [main] INFO Util - +2024-09-08 08:26:40,865 [main] INFO Util - ------------------------------------------------ +2024-09-08 08:26:40,865 [main] INFO Util - writing documentation ... +2024-09-08 08:26:40,870 [main] WARN DocCollectorImpl - Multiple classes with Qname 'startUmlClass.nsmAgent.Attribute.endUml' - retaining first one in case you use its placeholder. +2024-09-08 08:26:40,870 [main] WARN DocCollectorImpl - Multiple classes with Qname 'startUmlClass.nsmAgent.Class.endUml' - retaining first one in case you use its placeholder. +2024-09-08 08:26:40,940 [main] INFO AbstractWriter - creating DocWordWriter +2024-09-08 08:26:40,943 [main] TRACE Style - === before para.addPreferredStyles([PARAGRAPH, Normal, Standard, Normal]): +Style.para=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 08:26:40,943 [main] TRACE Style - === after +Style.para=null; cfg-preferred names=[PARAGRAPH, Normal, Standard]; doc-usable styles={}; all recognised names=[PARAGRAPH, Standard, Normal] + +2024-09-08 08:26:40,943 [main] TRACE Style - === before fig.addPreferredStyles([FIGURE, Picture, Normal, Standard, Normal]): +Style.fig=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 08:26:40,943 [main] TRACE Style - === after +Style.fig=null; cfg-preferred names=[FIGURE, Picture, Normal, Standard]; doc-usable styles={}; all recognised names=[Picture, Standard, Normal, FIGURE] + +2024-09-08 08:26:40,943 [main] TRACE Style - === before tabhead.addPreferredStyles([TABLE-col-heading, Normal, Standard, Normal]): +Style.tabhead=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 08:26:40,943 [main] TRACE Style - === after +Style.tabhead=null; cfg-preferred names=[TABLE-col-heading, Normal, Standard]; doc-usable styles={}; all recognised names=[TABLE-col-heading, Standard, Normal] + +2024-09-08 08:26:40,943 [main] TRACE Style - === before tabcell.addPreferredStyles([TABLE-cell, Normal, Standard, Normal]): +Style.tabcell=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 08:26:40,943 [main] TRACE Style - === after +Style.tabcell=null; cfg-preferred names=[TABLE-cell, Normal, Standard]; doc-usable styles={}; all recognised names=[TABLE-cell, Standard, Normal] + +2024-09-08 08:26:40,943 [main] TRACE Style - === before figcapt.addPreferredStyles([FIGURE-title, Caption, Beschriftung, Légende]): +Style.figcapt=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 08:26:40,944 [main] TRACE Style - === after +Style.figcapt=null; cfg-preferred names=[FIGURE-title, Caption, Beschriftung, Légende]; doc-usable styles={}; all recognised names=[FIGURE-title, Beschriftung, Légende, Caption] + +2024-09-08 08:26:40,944 [main] TRACE Style - === before tabcapt.addPreferredStyles([TABLE-title, Caption, Beschriftung, Légende]): +Style.tabcapt=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 08:26:40,944 [main] TRACE Style - === after +Style.tabcapt=null; cfg-preferred names=[TABLE-title, Caption, Beschriftung, Légende]; doc-usable styles={}; all recognised names=[TABLE-title, Beschriftung, Légende, Caption] + +2024-09-08 08:26:40,944 [main] TRACE Style - === before toc1.addPreferredStyles([TOC]): +Style.toc1=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 08:26:40,944 [main] TRACE Style - === after +Style.toc1=null; cfg-preferred names=[TOC 1]; doc-usable styles={}; all recognised names=[TOC 1] + +2024-09-08 08:26:40,944 [main] TRACE Style - === before toc2.addPreferredStyles([TOC]): +Style.toc2=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 08:26:40,944 [main] TRACE Style - === after +Style.toc2=null; cfg-preferred names=[TOC 2]; doc-usable styles={}; all recognised names=[TOC 2] + +2024-09-08 08:26:40,944 [main] TRACE Style - === before toc3.addPreferredStyles([TOC]): +Style.toc3=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 08:26:40,944 [main] TRACE Style - === after +Style.toc3=null; cfg-preferred names=[TOC 3]; doc-usable styles={}; all recognised names=[TOC 3] + +2024-09-08 08:26:40,944 [main] TRACE Style - === before toc4.addPreferredStyles([TOC]): +Style.toc4=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 08:26:40,944 [main] TRACE Style - === after +Style.toc4=null; cfg-preferred names=[TOC 4]; doc-usable styles={}; all recognised names=[TOC 4] + +2024-09-08 08:26:40,944 [main] TRACE Style - === before toc5.addPreferredStyles([TOC]): +Style.toc5=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 08:26:40,944 [main] TRACE Style - === after +Style.toc5=null; cfg-preferred names=[TOC 5]; doc-usable styles={}; all recognised names=[TOC 5] + +2024-09-08 08:26:40,945 [main] TRACE Style - === before toc6.addPreferredStyles([TOC]): +Style.toc6=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 08:26:40,945 [main] TRACE Style - === after +Style.toc6=null; cfg-preferred names=[TOC 6]; doc-usable styles={}; all recognised names=[TOC 6] + +2024-09-08 08:26:40,945 [main] TRACE Style - === before toc7.addPreferredStyles([TOC]): +Style.toc7=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 08:26:40,945 [main] TRACE Style - === after +Style.toc7=null; cfg-preferred names=[TOC 7]; doc-usable styles={}; all recognised names=[TOC 7] + +2024-09-08 08:26:40,945 [main] TRACE Style - === before toc8.addPreferredStyles([TOC]): +Style.toc8=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 08:26:40,945 [main] TRACE Style - === after +Style.toc8=null; cfg-preferred names=[TOC 8]; doc-usable styles={}; all recognised names=[TOC 8] + +2024-09-08 08:26:40,945 [main] TRACE Style - === before toc9.addPreferredStyles([TOC]): +Style.toc9=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 08:26:40,945 [main] TRACE Style - === after +Style.toc9=null; cfg-preferred names=[TOC 9]; doc-usable styles={}; all recognised names=[TOC 9] + +2024-09-08 08:26:40,945 [main] TRACE Style - === before h1.addPreferredStyles([Heading]): +Style.h1=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 08:26:40,945 [main] TRACE Style - === after +Style.h1=null; cfg-preferred names=[Heading 1]; doc-usable styles={}; all recognised names=[Heading 1] + +2024-09-08 08:26:40,945 [main] TRACE Style - === before h2.addPreferredStyles([Heading]): +Style.h2=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 08:26:40,945 [main] TRACE Style - === after +Style.h2=null; cfg-preferred names=[Heading 2]; doc-usable styles={}; all recognised names=[Heading 2] + +2024-09-08 08:26:40,945 [main] TRACE Style - === before h3.addPreferredStyles([Heading]): +Style.h3=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 08:26:40,945 [main] TRACE Style - === after +Style.h3=null; cfg-preferred names=[Heading 3]; doc-usable styles={}; all recognised names=[Heading 3] + +2024-09-08 08:26:40,945 [main] TRACE Style - === before h4.addPreferredStyles([Heading]): +Style.h4=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 08:26:40,945 [main] TRACE Style - === after +Style.h4=null; cfg-preferred names=[Heading 4]; doc-usable styles={}; all recognised names=[Heading 4] + +2024-09-08 08:26:40,945 [main] TRACE Style - === before h5.addPreferredStyles([Heading]): +Style.h5=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 08:26:40,945 [main] TRACE Style - === after +Style.h5=null; cfg-preferred names=[Heading 5]; doc-usable styles={}; all recognised names=[Heading 5] + +2024-09-08 08:26:40,946 [main] TRACE Style - === before h6.addPreferredStyles([Heading]): +Style.h6=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 08:26:40,946 [main] TRACE Style - === after +Style.h6=null; cfg-preferred names=[Heading 6]; doc-usable styles={}; all recognised names=[Heading 6] + +2024-09-08 08:26:40,946 [main] TRACE Style - === before h7.addPreferredStyles([Heading]): +Style.h7=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 08:26:40,946 [main] TRACE Style - === after +Style.h7=null; cfg-preferred names=[Heading 7]; doc-usable styles={}; all recognised names=[Heading 7] + +2024-09-08 08:26:40,946 [main] TRACE Style - === before h8.addPreferredStyles([Heading]): +Style.h8=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 08:26:40,946 [main] TRACE Style - === after +Style.h8=null; cfg-preferred names=[Heading 8]; doc-usable styles={}; all recognised names=[Heading 8] + +2024-09-08 08:26:40,946 [main] TRACE Style - === before h9.addPreferredStyles([Heading]): +Style.h9=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 08:26:40,946 [main] TRACE Style - === after +Style.h9=null; cfg-preferred names=[Heading 9]; doc-usable styles={}; all recognised names=[Heading 9] + +2024-09-08 08:26:41,314 [main] INFO AbstractWordWriter - Created DocWordWriter. +2024-09-08 08:26:41,314 [main] INFO JCleanCim - from C:\Users\gigi\git\jCleanCim\input\57-62351-7-Ed2-FDIS-template_20240901.docx +2024-09-08 08:26:41,315 [main] INFO JCleanCim - into C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx +2024-09-08 08:26:41,315 [main] INFO DocWordWriter - creating MSWord application +2024-09-08 08:26:45,637 [main] INFO DocWordWriter - opening MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-08 08:26:46,810 [main] INFO AbstractWordWriter - Microsoft Word version: 15.0 + +2024-09-08 08:26:46,894 [main] DEBUG DocWordWriter - original(_initialOptions): OptimOptions [viewId=3, normView=false, paginate=true, updFld=true, updScr=true, fastSave=false, spelling=false, grammar=false] +2024-09-08 08:26:46,905 [main] DEBUG DocWordWriter - setting existing custom property: uml = IEC62351-7-Ed2-FDIS-20240901.eap +2024-09-08 08:26:46,918 [main] DEBUG DocWordWriter - setting existing custom property: jCleanCim = 02v03 +2024-09-08 08:26:46,929 [main] INFO OptimOptions - setting view to normal +2024-09-08 08:26:46,977 [main] INFO OptimOptions - disabling pagination +2024-09-08 08:26:47,173 [main] INFO OptimOptions - disabling field update +2024-09-08 08:26:47,225 [main] INFO OptimOptions - disabling screen updating +2024-09-08 08:26:47,235 [main] DEBUG DocWordWriter - current(_optimisedOptions): OptimOptions [viewId=1, normView=true, paginate=false, updFld=false, updScr=false, fastSave=false, spelling=false, grammar=false] +2024-09-08 08:26:47,235 [main] INFO Util - +2024-09-08 08:26:47,235 [main] INFO Util - ------------------------------------------------ +2024-09-08 08:26:47,235 [main] INFO Util - collecting existing and retaining usable styles from open MS Word document.... +2024-09-08 08:26:47,258 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Normal, id=-1, outline = 0, kind=normal +2024-09-08 08:26:47,264 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 1, id=-2, outline = 1, kind=heading +2024-09-08 08:26:47,269 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 2, id=-3, outline = 2, kind=heading +2024-09-08 08:26:47,274 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 3, id=-4, outline = 3, kind=heading +2024-09-08 08:26:47,280 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 4, id=-5, outline = 4, kind=heading +2024-09-08 08:26:47,286 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 5, id=-6, outline = 5, kind=heading +2024-09-08 08:26:47,291 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 6, id=-7, outline = 6, kind=heading +2024-09-08 08:26:47,296 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 7, id=-8, outline = 7, kind=heading +2024-09-08 08:26:47,301 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 8, id=-9, outline = 8, kind=heading +2024-09-08 08:26:47,306 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 9, id=-10, outline = 9, kind=heading +2024-09-08 08:26:47,312 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 1;?????????1?, id=-20, outline = 1, kind=toc +2024-09-08 08:26:47,317 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 2, id=-21, outline = 2, kind=toc +2024-09-08 08:26:47,321 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 3, id=-22, outline = 3, kind=toc +2024-09-08 08:26:47,326 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 4, id=-23, outline = 4, kind=toc +2024-09-08 08:26:47,331 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 5, id=-24, outline = 5, kind=toc +2024-09-08 08:26:47,335 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 6, id=-25, outline = 6, kind=toc +2024-09-08 08:26:47,340 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 7, id=-26, outline = 7, kind=toc +2024-09-08 08:26:47,350 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 8, id=-27, outline = 8, kind=toc +2024-09-08 08:26:47,355 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 9, id=-28, outline = 9, kind=toc +2024-09-08 08:26:47,361 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Caption, id=-35, outline = 0, kind=caption +2024-09-08 08:26:53,546 [main] INFO DocWordWriter - AMD-Heading1 (custom, id=0: OTHER) +2024-09-08 08:26:53,546 [main] INFO DocWordWriter - AMD-Heading2... (custom, id=0: OTHER) +2024-09-08 08:26:53,546 [main] INFO DocWordWriter - ANNEX_title (custom, id=0: OTHER) +2024-09-08 08:26:53,547 [main] INFO DocWordWriter - Annexes (custom, id=0: OTHER) +2024-09-08 08:26:53,547 [main] INFO DocWordWriter - ANNEX-heading1 (custom, id=0: OTHER) +2024-09-08 08:26:53,547 [main] INFO DocWordWriter - ANNEX-heading2 (custom, id=0: OTHER) +2024-09-08 08:26:53,547 [main] INFO DocWordWriter - ANNEX-heading2... (custom, id=0: OTHER) +2024-09-08 08:26:53,547 [main] INFO DocWordWriter - ANNEX-heading3 (custom, id=0: OTHER) +2024-09-08 08:26:53,547 [main] INFO DocWordWriter - ANNEX-heading4 (custom, id=0: OTHER) +2024-09-08 08:26:53,547 [main] INFO DocWordWriter - ANNEX-heading5 (custom, id=0: OTHER) +2024-09-08 08:26:53,547 [main] INFO DocWordWriter - ANNEX-title (custom, id=0: OTHER) +2024-09-08 08:26:53,547 [main] INFO DocWordWriter - BIBLIOGRAPHY-numbered (custom, id=0: OTHER) +2024-09-08 08:26:53,547 [main] INFO DocWordWriter - Body Drawing (custom, id=0: OTHER) +2024-09-08 08:26:53,547 [main] INFO DocWordWriter - Body Small (custom, id=0: OTHER) +2024-09-08 08:26:53,547 [main] INFO DocWordWriter - Body Text Bold (custom, id=0: OTHER) +2024-09-08 08:26:53,547 [main] INFO DocWordWriter - Body Text Hanging (custom, id=0: OTHER) +2024-09-08 08:26:53,547 [main] INFO DocWordWriter - Body Text Single (custom, id=0: OTHER) +2024-09-08 08:26:53,547 [main] INFO DocWordWriter - Caption (builtIn, id=-35: CAPT) +2024-09-08 08:26:53,547 [main] INFO DocWordWriter - CODE (custom, id=0: OTHER) +2024-09-08 08:26:53,548 [main] INFO DocWordWriter - CODE-TableCell (custom, id=0: OTHER) +2024-09-08 08:26:53,548 [main] INFO DocWordWriter - Colorful Grid - Accent 11 (custom, id=0: OTHER) +2024-09-08 08:26:53,548 [main] INFO DocWordWriter - Colorful List - Accent 11 (custom, id=0: OTHER) +2024-09-08 08:26:53,548 [main] INFO DocWordWriter - Confidential Page # Date (custom, id=0: OTHER) +2024-09-08 08:26:53,548 [main] INFO DocWordWriter - Cover Subtitle (custom, id=0: OTHER) +2024-09-08 08:26:53,548 [main] INFO DocWordWriter - Cover Title (custom, id=0: OTHER) +2024-09-08 08:26:53,548 [main] INFO DocWordWriter - Disclaimer (custom, id=0: OTHER) +2024-09-08 08:26:53,548 [main] INFO DocWordWriter - DisclaimerInsert (custom, id=0: OTHER) +2024-09-08 08:26:53,548 [main] INFO DocWordWriter - EPRI Address (custom, id=0: OTHER) +2024-09-08 08:26:53,548 [main] INFO DocWordWriter - EPRI Block Quote (custom, id=0: OTHER) +2024-09-08 08:26:53,548 [main] INFO DocWordWriter - EPRI Bulleted List (custom, id=0: OTHER) +2024-09-08 08:26:53,548 [main] INFO DocWordWriter - EPRI Citations (custom, id=0: OTHER) +2024-09-08 08:26:53,548 [main] INFO DocWordWriter - EPRI Citations NEPO FY01-02 (custom, id=0: OTHER) +2024-09-08 08:26:53,548 [main] INFO DocWordWriter - EPRI Citations NEPO FY03 (custom, id=0: OTHER) +2024-09-08 08:26:53,548 [main] INFO DocWordWriter - EPRI Copyright Text (custom, id=0: OTHER) +2024-09-08 08:26:53,548 [main] INFO DocWordWriter - EPRI Copyright Title (custom, id=0: OTHER) +2024-09-08 08:26:53,548 [main] INFO DocWordWriter - EPRI Cosponsor Text (custom, id=0: OTHER) +2024-09-08 08:26:53,549 [main] INFO DocWordWriter - EPRI Disclaimer (custom, id=0: OTHER) +2024-09-08 08:26:53,549 [main] INFO DocWordWriter - EPRI Disclaimer Insert (custom, id=0: OTHER) +2024-09-08 08:26:53,549 [main] INFO DocWordWriter - EPRI Disclaimer Title (custom, id=0: OTHER) +2024-09-08 08:26:53,549 [main] INFO DocWordWriter - EPRI Executable Box (custom, id=0: OTHER) +2024-09-08 08:26:53,549 [main] INFO DocWordWriter - EPRI Figure (custom, id=0: OTHER) +2024-09-08 08:26:53,549 [main] INFO DocWordWriter - EPRI Footnote Text (custom, id=0: OTHER) +2024-09-08 08:26:53,549 [main] INFO DocWordWriter - EPRI Front Matter Bullet (custom, id=0: OTHER) +2024-09-08 08:26:53,549 [main] INFO DocWordWriter - EPRI Front Matter Text First Paragraph (custom, id=0: OTHER) +2024-09-08 08:26:53,549 [main] INFO DocWordWriter - EPRI Heading 2;First Level Head (custom, id=0: OTHER) +2024-09-08 08:26:53,549 [main] INFO DocWordWriter - EPRI Heading 3;Second Level Head (custom, id=0: OTHER) +2024-09-08 08:26:53,549 [main] INFO DocWordWriter - EPRI Heading 8;Appendix 2nd Level Head (custom, id=0: OTHER) +2024-09-08 08:26:53,549 [main] INFO DocWordWriter - EPRI Heading 9;Appendix 3rd Level Head (custom, id=0: OTHER) +2024-09-08 08:26:53,549 [main] INFO DocWordWriter - EPRI Key Point (custom, id=0: OTHER) +2024-09-08 08:26:53,549 [main] INFO DocWordWriter - EPRI Licensed (custom, id=0: OTHER) +2024-09-08 08:26:53,549 [main] INFO DocWordWriter - EPRI Licensed 1st pg (custom, id=0: OTHER) +2024-09-08 08:26:53,549 [main] INFO DocWordWriter - EPRI Licensed Header (custom, id=0: OTHER) +2024-09-08 08:26:53,549 [main] INFO DocWordWriter - EPRI Normal (custom, id=0: OTHER) +2024-09-08 08:26:53,549 [main] INFO DocWordWriter - EPRI Numbered List (custom, id=0: OTHER) +2024-09-08 08:26:53,549 [main] INFO DocWordWriter - EPRI Ordering (custom, id=0: OTHER) +2024-09-08 08:26:53,550 [main] INFO DocWordWriter - EPRI Popout (custom, id=0: OTHER) +2024-09-08 08:26:53,550 [main] INFO DocWordWriter - EPRI Product ID# (custom, id=0: OTHER) +2024-09-08 08:26:53,550 [main] INFO DocWordWriter - EPRI Project Manager (custom, id=0: OTHER) +2024-09-08 08:26:53,550 [main] INFO DocWordWriter - EPRI RS Bulleted List (custom, id=0: OTHER) +2024-09-08 08:26:53,550 [main] INFO DocWordWriter - EPRI RS Subtitle (custom, id=0: OTHER) +2024-09-08 08:26:53,550 [main] INFO DocWordWriter - EPRI RS Text (custom, id=0: OTHER) +2024-09-08 08:26:53,550 [main] INFO DocWordWriter - EPRI Section Number (custom, id=0: OTHER) +2024-09-08 08:26:53,550 [main] INFO DocWordWriter - EPRI Section Style (custom, id=0: OTHER) +2024-09-08 08:26:53,550 [main] INFO DocWordWriter - EPRI Section Title (custom, id=0: OTHER) +2024-09-08 08:26:53,550 [main] INFO DocWordWriter - EPRI Sub Bulleted List (custom, id=0: OTHER) +2024-09-08 08:26:53,550 [main] INFO DocWordWriter - EPRI Sub Bulleted List 2 (custom, id=0: OTHER) +2024-09-08 08:26:53,551 [main] INFO DocWordWriter - EPRI Subheadings (custom, id=0: OTHER) +2024-09-08 08:26:53,551 [main] INFO DocWordWriter - EPRI Subtitle (custom, id=0: OTHER) +2024-09-08 08:26:53,551 [main] INFO DocWordWriter - EPRI Table Header (custom, id=0: OTHER) +2024-09-08 08:26:53,551 [main] INFO DocWordWriter - EPRI Table Text (custom, id=0: OTHER) +2024-09-08 08:26:53,551 [main] INFO DocWordWriter - EPRI Table Text Left (custom, id=0: OTHER) +2024-09-08 08:26:53,551 [main] INFO DocWordWriter - EPRI Title (custom, id=0: OTHER) +2024-09-08 08:26:53,551 [main] INFO DocWordWriter - EPRI Title Text (custom, id=0: OTHER) +2024-09-08 08:26:53,551 [main] INFO DocWordWriter - EPRI TOC 1 (custom, id=0: OTHER) +2024-09-08 08:26:53,551 [main] INFO DocWordWriter - EPRI TOC 2 (custom, id=0: OTHER) +2024-09-08 08:26:53,551 [main] INFO DocWordWriter - EPRI TOC 3 (custom, id=0: OTHER) +2024-09-08 08:26:53,551 [main] INFO DocWordWriter - EPRI TOC 4 (custom, id=0: OTHER) +2024-09-08 08:26:53,551 [main] INFO DocWordWriter - EPRI TOC 5 (custom, id=0: OTHER) +2024-09-08 08:26:53,551 [main] INFO DocWordWriter - eprinormal (custom, id=0: OTHER) +2024-09-08 08:26:53,551 [main] INFO DocWordWriter - EXAMPLE (custom, id=0: OTHER) +2024-09-08 08:26:53,551 [main] INFO DocWordWriter - FIGURE (custom, id=0: OTHER) +2024-09-08 08:26:53,551 [main] INFO DocWordWriter - FIGURE-title (custom, id=0: OTHER) +2024-09-08 08:26:53,552 [main] INFO DocWordWriter - FOREWORD (custom, id=0: OTHER) +2024-09-08 08:26:53,552 [main] INFO DocWordWriter - FORM-admin (custom, id=0: OTHER) +2024-09-08 08:26:53,552 [main] INFO DocWordWriter - Front Matter Footnote Text (custom, id=0: OTHER) +2024-09-08 08:26:53,552 [main] INFO DocWordWriter - head1 (custom, id=0: OTHER) +2024-09-08 08:26:53,552 [main] INFO DocWordWriter - Heading 1 (builtIn, id=-2: HEAD) +2024-09-08 08:26:53,552 [main] INFO DocWordWriter - Heading 2 (builtIn, id=-3: HEAD) +2024-09-08 08:26:53,552 [main] INFO DocWordWriter - Heading 3 (builtIn, id=-4: HEAD) +2024-09-08 08:26:53,552 [main] INFO DocWordWriter - Heading 4 (builtIn, id=-5: HEAD) +2024-09-08 08:26:53,552 [main] INFO DocWordWriter - Heading 5 (builtIn, id=-6: HEAD) +2024-09-08 08:26:53,552 [main] INFO DocWordWriter - Heading 6 (builtIn, id=-7: HEAD) +2024-09-08 08:26:53,552 [main] INFO DocWordWriter - Heading 7 (builtIn, id=-8: HEAD) +2024-09-08 08:26:53,552 [main] INFO DocWordWriter - Heading 8 (builtIn, id=-9: HEAD) +2024-09-08 08:26:53,552 [main] INFO DocWordWriter - Heading 9 (builtIn, id=-10: HEAD) +2024-09-08 08:26:53,552 [main] INFO DocWordWriter - HEADING(Nonumber) (custom, id=0: OTHER) +2024-09-08 08:26:53,552 [main] INFO DocWordWriter - Headings (custom, id=0: OTHER) +2024-09-08 08:26:53,552 [main] INFO DocWordWriter - IEC_INSTRUCTIONS (custom, id=0: OTHER) +2024-09-08 08:26:53,553 [main] INFO DocWordWriter - ISO_Change (custom, id=0: OTHER) +2024-09-08 08:26:53,553 [main] INFO DocWordWriter - ISO_Secret_Observations (custom, id=0: OTHER) +2024-09-08 08:26:53,553 [main] INFO DocWordWriter - List Bullet 6 (custom, id=0: OTHER) +2024-09-08 08:26:53,553 [main] INFO DocWordWriter - List Dash (custom, id=0: OTHER) +2024-09-08 08:26:53,553 [main] INFO DocWordWriter - List Dash 2 (custom, id=0: OTHER) +2024-09-08 08:26:53,553 [main] INFO DocWordWriter - List Dash 3 (custom, id=0: OTHER) +2024-09-08 08:26:53,553 [main] INFO DocWordWriter - List Dash 4 (custom, id=0: OTHER) +2024-09-08 08:26:53,553 [main] INFO DocWordWriter - List Number alt (custom, id=0: OTHER) +2024-09-08 08:26:53,553 [main] INFO DocWordWriter - List Number alt 2 (custom, id=0: OTHER) +2024-09-08 08:26:53,553 [main] INFO DocWordWriter - List Number alt 3 (custom, id=0: OTHER) +2024-09-08 08:26:53,553 [main] INFO DocWordWriter - MAIN-TITLE (custom, id=0: OTHER) +2024-09-08 08:26:53,553 [main] INFO DocWordWriter - MAIN-TITLE12 (custom, id=0: OTHER) +2024-09-08 08:26:53,553 [main] INFO DocWordWriter - Normal (builtIn, id=-1: NORM) +2024-09-08 08:26:53,553 [main] INFO DocWordWriter - Normal Hang (custom, id=0: OTHER) +2024-09-08 08:26:53,553 [main] INFO DocWordWriter - NOTE (custom, id=0: OTHER) +2024-09-08 08:26:53,553 [main] INFO DocWordWriter - Numbered PARA (level 2) (custom, id=0: OTHER) +2024-09-08 08:26:53,553 [main] INFO DocWordWriter - Numbered PARA (level 3) (custom, id=0: OTHER) +2024-09-08 08:26:53,554 [main] INFO DocWordWriter - Numbered PARA (level 4) (custom, id=0: OTHER) +2024-09-08 08:26:53,554 [main] INFO DocWordWriter - Outline (custom, id=0: OTHER) +2024-09-08 08:26:53,554 [main] INFO DocWordWriter - PARAEQUATION (custom, id=0: OTHER) +2024-09-08 08:26:53,554 [main] INFO DocWordWriter - PARAGRAPH (custom, id=0: OTHER) +2024-09-08 08:26:53,554 [main] INFO DocWordWriter - Picture (custom, id=0: OTHER) +2024-09-08 08:26:53,554 [main] INFO DocWordWriter - Product ID# (custom, id=0: OTHER) +2024-09-08 08:26:53,554 [main] INFO DocWordWriter - Section Title Only (custom, id=0: OTHER) +2024-09-08 08:26:53,554 [main] INFO DocWordWriter - SMALL-BLOCKS12 (custom, id=0: OTHER) +2024-09-08 08:26:53,554 [main] INFO DocWordWriter - Style Outline numbered (custom, id=0: OTHER) +2024-09-08 08:26:53,554 [main] INFO DocWordWriter - TAB_FIG_footnote (custom, id=0: OTHER) +2024-09-08 08:26:53,554 [main] INFO DocWordWriter - Table Bullet (custom, id=0: OTHER) +2024-09-08 08:26:53,554 [main] INFO DocWordWriter - Table Dash (custom, id=0: OTHER) +2024-09-08 08:26:53,554 [main] INFO DocWordWriter - Table Style (custom, id=0: OTHER) +2024-09-08 08:26:53,554 [main] INFO DocWordWriter - TABLE-cell (custom, id=0: OTHER) +2024-09-08 08:26:53,554 [main] INFO DocWordWriter - TABLE-centered (custom, id=0: OTHER) +2024-09-08 08:26:53,554 [main] INFO DocWordWriter - TABLE-col-heading (custom, id=0: OTHER) +2024-09-08 08:26:53,555 [main] INFO DocWordWriter - TABLE-title (custom, id=0: OTHER) +2024-09-08 08:26:53,555 [main] INFO DocWordWriter - TERM (custom, id=0: OTHER) +2024-09-08 08:26:53,555 [main] INFO DocWordWriter - TERM-admitted (custom, id=0: OTHER) +2024-09-08 08:26:53,555 [main] INFO DocWordWriter - TERM-definition (custom, id=0: OTHER) +2024-09-08 08:26:53,555 [main] INFO DocWordWriter - TERM-deprecated (custom, id=0: OTHER) +2024-09-08 08:26:53,555 [main] INFO DocWordWriter - TERM-example (custom, id=0: OTHER) +2024-09-08 08:26:53,555 [main] INFO DocWordWriter - TERM-note (custom, id=0: OTHER) +2024-09-08 08:26:53,555 [main] INFO DocWordWriter - TERM-number (custom, id=0: OTHER) +2024-09-08 08:26:53,555 [main] INFO DocWordWriter - TERM-number 3 (custom, id=0: OTHER) +2024-09-08 08:26:53,555 [main] INFO DocWordWriter - TERM-number 4 (custom, id=0: OTHER) +2024-09-08 08:26:53,555 [main] INFO DocWordWriter - TERM-source (custom, id=0: OTHER) +2024-09-08 08:26:53,555 [main] INFO DocWordWriter - Title Page Text (custom, id=0: OTHER) +2024-09-08 08:26:53,555 [main] INFO DocWordWriter - Title1 (custom, id=0: OTHER) +2024-09-08 08:26:53,555 [main] INFO DocWordWriter - TOC 1;?????????1? (builtIn, id=-20: TOC) +2024-09-08 08:26:53,556 [main] INFO DocWordWriter - TOC 2 (builtIn, id=-21: TOC) +2024-09-08 08:26:53,556 [main] INFO DocWordWriter - TOC 3 (builtIn, id=-22: TOC) +2024-09-08 08:26:53,556 [main] INFO DocWordWriter - TOC 4 (builtIn, id=-23: TOC) +2024-09-08 08:26:53,556 [main] INFO DocWordWriter - TOC 5 (builtIn, id=-24: TOC) +2024-09-08 08:26:53,556 [main] INFO DocWordWriter - TOC 6 (builtIn, id=-25: TOC) +2024-09-08 08:26:53,556 [main] INFO DocWordWriter - TOC 7 (builtIn, id=-26: TOC) +2024-09-08 08:26:53,556 [main] INFO DocWordWriter - TOC 8 (builtIn, id=-27: TOC) +2024-09-08 08:26:53,556 [main] INFO DocWordWriter - TOC 9 (builtIn, id=-28: TOC) +2024-09-08 08:26:53,556 [main] INFO DocWordWriter - UCI List (custom, id=0: OTHER) +2024-09-08 08:26:53,556 [main] INFO Util - time=[0:00:06.321] collected existing and retained usable styles +2024-09-08 08:26:53,556 [main] INFO Util - +2024-09-08 08:26:53,556 [main] TRACE Style - === before para.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.para=null; cfg-preferred names=[PARAGRAPH, Normal, Standard]; doc-usable styles={}; all recognised names=[PARAGRAPH, Standard, Normal] +2024-09-08 08:26:53,557 [main] INFO Style - Assigned from preferred names [full match]: Style.para=PARAGRAPH; cfg-preferred names=[PARAGRAPH, Normal, Standard] +2024-09-08 08:26:53,557 [main] TRACE Style - === after +Style.para=PARAGRAPH; cfg-preferred names=[PARAGRAPH, Normal, Standard]; doc-usable styles={PARAGRAPH=PARAGRAPH (custom, id=0: PARA), Normal=Normal (builtIn, id=-1: NORM)}; all recognised names=[PARAGRAPH, Standard, Normal] + +2024-09-08 08:26:53,557 [main] TRACE Style - === before fig.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.fig=null; cfg-preferred names=[FIGURE, Picture, Normal, Standard]; doc-usable styles={}; all recognised names=[Picture, Standard, Normal, FIGURE] +2024-09-08 08:26:53,557 [main] INFO Style - Assigned from preferred names [full match]: Style.fig=FIGURE; cfg-preferred names=[FIGURE, Picture, Normal, Standard] +2024-09-08 08:26:53,557 [main] TRACE Style - === after +Style.fig=FIGURE; cfg-preferred names=[FIGURE, Picture, Normal, Standard]; doc-usable styles={FIGURE=FIGURE (custom, id=0: FIG), Picture=Picture (custom, id=0: OTHER), Normal=Normal (builtIn, id=-1: NORM)}; all recognised names=[Picture, Standard, Normal, FIGURE] + +2024-09-08 08:26:53,557 [main] TRACE Style - === before tabhead.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.tabhead=null; cfg-preferred names=[TABLE-col-heading, Normal, Standard]; doc-usable styles={}; all recognised names=[TABLE-col-heading, Standard, Normal] +2024-09-08 08:26:53,557 [main] INFO Style - Assigned from preferred names [full match]: Style.tabhead=TABLE-col-heading; cfg-preferred names=[TABLE-col-heading, Normal, Standard] +2024-09-08 08:26:53,558 [main] TRACE Style - === after +Style.tabhead=TABLE-col-heading; cfg-preferred names=[TABLE-col-heading, Normal, Standard]; doc-usable styles={TABLE-col-heading=TABLE-col-heading (custom, id=0: TABHEAD), Normal=Normal (builtIn, id=-1: NORM)}; all recognised names=[TABLE-col-heading, Standard, Normal] + +2024-09-08 08:26:53,558 [main] TRACE Style - === before tabcell.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.tabcell=null; cfg-preferred names=[TABLE-cell, Normal, Standard]; doc-usable styles={}; all recognised names=[TABLE-cell, Standard, Normal] +2024-09-08 08:26:53,558 [main] INFO Style - Assigned from preferred names [full match]: Style.tabcell=TABLE-cell; cfg-preferred names=[TABLE-cell, Normal, Standard] +2024-09-08 08:26:53,558 [main] TRACE Style - === after +Style.tabcell=TABLE-cell; cfg-preferred names=[TABLE-cell, Normal, Standard]; doc-usable styles={TABLE-cell=TABLE-cell (custom, id=0: TABCELL), Normal=Normal (builtIn, id=-1: NORM)}; all recognised names=[TABLE-cell, Standard, Normal] + +2024-09-08 08:26:53,558 [main] TRACE Style - === before figcapt.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.figcapt=null; cfg-preferred names=[FIGURE-title, Caption, Beschriftung, Légende]; doc-usable styles={}; all recognised names=[FIGURE-title, Beschriftung, Légende, Caption] +2024-09-08 08:26:53,558 [main] INFO Style - Assigned from preferred names [full match]: Style.figcapt=FIGURE-title; cfg-preferred names=[FIGURE-title, Caption, Beschriftung, Légende] +2024-09-08 08:26:53,558 [main] TRACE Style - === after +Style.figcapt=FIGURE-title; cfg-preferred names=[FIGURE-title, Caption, Beschriftung, Légende]; doc-usable styles={FIGURE-title=FIGURE-title (custom, id=0: FIGCAPT), Caption=Caption (builtIn, id=-35: CAPT)}; all recognised names=[FIGURE-title, Beschriftung, Légende, Caption] + +2024-09-08 08:26:53,558 [main] TRACE Style - === before tabcapt.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.tabcapt=null; cfg-preferred names=[TABLE-title, Caption, Beschriftung, Légende]; doc-usable styles={}; all recognised names=[TABLE-title, Beschriftung, Légende, Caption] +2024-09-08 08:26:53,558 [main] INFO Style - Assigned from preferred names [full match]: Style.tabcapt=TABLE-title; cfg-preferred names=[TABLE-title, Caption, Beschriftung, Légende] +2024-09-08 08:26:53,559 [main] TRACE Style - === after +Style.tabcapt=TABLE-title; cfg-preferred names=[TABLE-title, Caption, Beschriftung, Légende]; doc-usable styles={TABLE-title=TABLE-title (custom, id=0: TABCAPT), Caption=Caption (builtIn, id=-35: CAPT)}; all recognised names=[TABLE-title, Beschriftung, Légende, Caption] + +2024-09-08 08:26:53,559 [main] TRACE Style - === before toc1.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.toc1=null; cfg-preferred names=[TOC 1]; doc-usable styles={}; all recognised names=[TOC 1] +2024-09-08 08:26:53,559 [main] INFO Style - Assigned from preferred names [matching start with preferred] :Style.toc1=TOC 1;?????????1?; cfg-preferred names=[TOC 1]; doc-usable styles={TOC 1=TOC 1;?????????1? (builtIn, id=-20: TOC)}; all recognised names=[TOC 1] +2024-09-08 08:26:53,559 [main] INFO Style - NOTE: If not happy with this assignment, add custom style(s) to your document manually. +2024-09-08 08:26:53,559 [main] TRACE Style - === after +Style.toc1=TOC 1;?????????1?; cfg-preferred names=[TOC 1]; doc-usable styles={TOC 1=TOC 1;?????????1? (builtIn, id=-20: TOC)}; all recognised names=[TOC 1] + +2024-09-08 08:26:53,560 [main] TRACE Style - === before toc2.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.toc2=null; cfg-preferred names=[TOC 2]; doc-usable styles={}; all recognised names=[TOC 2] +2024-09-08 08:26:53,560 [main] INFO Style - Assigned from preferred names [full match]: Style.toc2=TOC 2; cfg-preferred names=[TOC 2] +2024-09-08 08:26:53,560 [main] TRACE Style - === after +Style.toc2=TOC 2; cfg-preferred names=[TOC 2]; doc-usable styles={TOC 2=TOC 2 (builtIn, id=-21: TOC)}; all recognised names=[TOC 2] + +2024-09-08 08:26:53,560 [main] TRACE Style - === before toc3.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.toc3=null; cfg-preferred names=[TOC 3]; doc-usable styles={}; all recognised names=[TOC 3] +2024-09-08 08:26:53,560 [main] INFO Style - Assigned from preferred names [full match]: Style.toc3=TOC 3; cfg-preferred names=[TOC 3] +2024-09-08 08:26:53,560 [main] TRACE Style - === after +Style.toc3=TOC 3; cfg-preferred names=[TOC 3]; doc-usable styles={TOC 3=TOC 3 (builtIn, id=-22: TOC)}; all recognised names=[TOC 3] + +2024-09-08 08:26:53,560 [main] TRACE Style - === before toc4.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.toc4=null; cfg-preferred names=[TOC 4]; doc-usable styles={}; all recognised names=[TOC 4] +2024-09-08 08:26:53,561 [main] INFO Style - Assigned from preferred names [full match]: Style.toc4=TOC 4; cfg-preferred names=[TOC 4] +2024-09-08 08:26:53,561 [main] TRACE Style - === after +Style.toc4=TOC 4; cfg-preferred names=[TOC 4]; doc-usable styles={TOC 4=TOC 4 (builtIn, id=-23: TOC)}; all recognised names=[TOC 4] + +2024-09-08 08:26:53,561 [main] TRACE Style - === before toc5.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.toc5=null; cfg-preferred names=[TOC 5]; doc-usable styles={}; all recognised names=[TOC 5] +2024-09-08 08:26:53,561 [main] INFO Style - Assigned from preferred names [full match]: Style.toc5=TOC 5; cfg-preferred names=[TOC 5] +2024-09-08 08:26:53,561 [main] TRACE Style - === after +Style.toc5=TOC 5; cfg-preferred names=[TOC 5]; doc-usable styles={TOC 5=TOC 5 (builtIn, id=-24: TOC)}; all recognised names=[TOC 5] + +2024-09-08 08:26:53,561 [main] TRACE Style - === before toc6.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.toc6=null; cfg-preferred names=[TOC 6]; doc-usable styles={}; all recognised names=[TOC 6] +2024-09-08 08:26:53,561 [main] INFO Style - Assigned from preferred names [full match]: Style.toc6=TOC 6; cfg-preferred names=[TOC 6] +2024-09-08 08:26:53,561 [main] TRACE Style - === after +Style.toc6=TOC 6; cfg-preferred names=[TOC 6]; doc-usable styles={TOC 6=TOC 6 (builtIn, id=-25: TOC)}; all recognised names=[TOC 6] + +2024-09-08 08:26:53,561 [main] TRACE Style - === before toc7.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.toc7=null; cfg-preferred names=[TOC 7]; doc-usable styles={}; all recognised names=[TOC 7] +2024-09-08 08:26:53,561 [main] INFO Style - Assigned from preferred names [full match]: Style.toc7=TOC 7; cfg-preferred names=[TOC 7] +2024-09-08 08:26:53,561 [main] TRACE Style - === after +Style.toc7=TOC 7; cfg-preferred names=[TOC 7]; doc-usable styles={TOC 7=TOC 7 (builtIn, id=-26: TOC)}; all recognised names=[TOC 7] + +2024-09-08 08:26:53,562 [main] TRACE Style - === before toc8.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.toc8=null; cfg-preferred names=[TOC 8]; doc-usable styles={}; all recognised names=[TOC 8] +2024-09-08 08:26:53,562 [main] INFO Style - Assigned from preferred names [full match]: Style.toc8=TOC 8; cfg-preferred names=[TOC 8] +2024-09-08 08:26:53,562 [main] TRACE Style - === after +Style.toc8=TOC 8; cfg-preferred names=[TOC 8]; doc-usable styles={TOC 8=TOC 8 (builtIn, id=-27: TOC)}; all recognised names=[TOC 8] + +2024-09-08 08:26:53,562 [main] TRACE Style - === before toc9.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.toc9=null; cfg-preferred names=[TOC 9]; doc-usable styles={}; all recognised names=[TOC 9] +2024-09-08 08:26:53,562 [main] INFO Style - Assigned from preferred names [full match]: Style.toc9=TOC 9; cfg-preferred names=[TOC 9] +2024-09-08 08:26:53,562 [main] TRACE Style - === after +Style.toc9=TOC 9; cfg-preferred names=[TOC 9]; doc-usable styles={TOC 9=TOC 9 (builtIn, id=-28: TOC)}; all recognised names=[TOC 9] + +2024-09-08 08:26:53,562 [main] TRACE Style - === before h1.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.h1=null; cfg-preferred names=[Heading 1]; doc-usable styles={}; all recognised names=[Heading 1] +2024-09-08 08:26:53,562 [main] INFO Style - Assigned from preferred names [full match]: Style.h1=Heading 1; cfg-preferred names=[Heading 1] +2024-09-08 08:26:53,562 [main] TRACE Style - === after +Style.h1=Heading 1; cfg-preferred names=[Heading 1]; doc-usable styles={Heading 1=Heading 1 (builtIn, id=-2: HEAD)}; all recognised names=[Heading 1] + +2024-09-08 08:26:53,562 [main] TRACE Style - === before h2.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.h2=null; cfg-preferred names=[Heading 2]; doc-usable styles={}; all recognised names=[Heading 2] +2024-09-08 08:26:53,562 [main] INFO Style - Assigned from preferred names [full match]: Style.h2=Heading 2; cfg-preferred names=[Heading 2] +2024-09-08 08:26:53,562 [main] TRACE Style - === after +Style.h2=Heading 2; cfg-preferred names=[Heading 2]; doc-usable styles={Heading 2=Heading 2 (builtIn, id=-3: HEAD)}; all recognised names=[Heading 2] + +2024-09-08 08:26:53,563 [main] TRACE Style - === before h3.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.h3=null; cfg-preferred names=[Heading 3]; doc-usable styles={}; all recognised names=[Heading 3] +2024-09-08 08:26:53,563 [main] INFO Style - Assigned from preferred names [full match]: Style.h3=Heading 3; cfg-preferred names=[Heading 3] +2024-09-08 08:26:53,563 [main] TRACE Style - === after +Style.h3=Heading 3; cfg-preferred names=[Heading 3]; doc-usable styles={Heading 3=Heading 3 (builtIn, id=-4: HEAD)}; all recognised names=[Heading 3] + +2024-09-08 08:26:53,563 [main] TRACE Style - === before h4.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.h4=null; cfg-preferred names=[Heading 4]; doc-usable styles={}; all recognised names=[Heading 4] +2024-09-08 08:26:53,563 [main] INFO Style - Assigned from preferred names [full match]: Style.h4=Heading 4; cfg-preferred names=[Heading 4] +2024-09-08 08:26:53,563 [main] TRACE Style - === after +Style.h4=Heading 4; cfg-preferred names=[Heading 4]; doc-usable styles={Heading 4=Heading 4 (builtIn, id=-5: HEAD)}; all recognised names=[Heading 4] + +2024-09-08 08:26:53,563 [main] TRACE Style - === before h5.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.h5=null; cfg-preferred names=[Heading 5]; doc-usable styles={}; all recognised names=[Heading 5] +2024-09-08 08:26:53,563 [main] INFO Style - Assigned from preferred names [full match]: Style.h5=Heading 5; cfg-preferred names=[Heading 5] +2024-09-08 08:26:53,563 [main] TRACE Style - === after +Style.h5=Heading 5; cfg-preferred names=[Heading 5]; doc-usable styles={Heading 5=Heading 5 (builtIn, id=-6: HEAD)}; all recognised names=[Heading 5] + +2024-09-08 08:26:53,563 [main] TRACE Style - === before h6.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.h6=null; cfg-preferred names=[Heading 6]; doc-usable styles={}; all recognised names=[Heading 6] +2024-09-08 08:26:53,564 [main] INFO Style - Assigned from preferred names [full match]: Style.h6=Heading 6; cfg-preferred names=[Heading 6] +2024-09-08 08:26:53,564 [main] TRACE Style - === after +Style.h6=Heading 6; cfg-preferred names=[Heading 6]; doc-usable styles={Heading 6=Heading 6 (builtIn, id=-7: HEAD)}; all recognised names=[Heading 6] + +2024-09-08 08:26:53,564 [main] TRACE Style - === before h7.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.h7=null; cfg-preferred names=[Heading 7]; doc-usable styles={}; all recognised names=[Heading 7] +2024-09-08 08:26:53,564 [main] INFO Style - Assigned from preferred names [full match]: Style.h7=Heading 7; cfg-preferred names=[Heading 7] +2024-09-08 08:26:53,564 [main] TRACE Style - === after +Style.h7=Heading 7; cfg-preferred names=[Heading 7]; doc-usable styles={Heading 7=Heading 7 (builtIn, id=-8: HEAD)}; all recognised names=[Heading 7] + +2024-09-08 08:26:53,569 [main] TRACE Style - === before h8.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.h8=null; cfg-preferred names=[Heading 8]; doc-usable styles={}; all recognised names=[Heading 8] +2024-09-08 08:26:53,569 [main] INFO Style - Assigned from preferred names [full match]: Style.h8=Heading 8; cfg-preferred names=[Heading 8] +2024-09-08 08:26:53,569 [main] TRACE Style - === after +Style.h8=Heading 8; cfg-preferred names=[Heading 8]; doc-usable styles={Heading 8=Heading 8 (builtIn, id=-9: HEAD)}; all recognised names=[Heading 8] + +2024-09-08 08:26:53,569 [main] TRACE Style - === before h9.assignTheStyleFromExistingAccordingToPreferred([AMD-Heading1, AMD-Heading2..., ANNEX_title, Annexes, ANNEX-heading1, ANNEX-heading2, ANNEX-heading2..., ANNEX-heading3, ANNEX-heading4, ANNEX-heading5, ANNEX-title, BIBLIOGRAPHY-numbered, Body Drawing, Body Small, Body Text Bold, Body Text Hanging, Body Text Single, Caption, CODE, CODE-TableCell, Colorful Grid - Accent 11, Colorful List - Accent 11, Confidential Page # Date, Cover Subtitle, Cover Title, Disclaimer, DisclaimerInsert, EPRI Address, EPRI Block Quote, EPRI Bulleted List, EPRI Citations, EPRI Citations NEPO FY01-02, EPRI Citations NEPO FY03, EPRI Copyright Text, EPRI Copyright Title, EPRI Cosponsor Text, EPRI Disclaimer, EPRI Disclaimer Insert, EPRI Disclaimer Title, EPRI Executable Box, EPRI Figure, EPRI Footnote Text, EPRI Front Matter Bullet, EPRI Front Matter Text First Paragraph, EPRI Heading 2;First Level Head, EPRI Heading 3;Second Level Head, EPRI Heading 8;Appendix 2nd Level Head, EPRI Heading 9;Appendix 3rd Level Head, EPRI Key Point, EPRI Licensed, EPRI Licensed 1st pg, EPRI Licensed Header, EPRI Normal, EPRI Numbered List, EPRI Ordering, EPRI Popout, EPRI Product ID#, EPRI Project Manager, EPRI RS Bulleted List, EPRI RS Subtitle, EPRI RS Text, EPRI Section Number, EPRI Section Style, EPRI Section Title, EPRI Sub Bulleted List, EPRI Sub Bulleted List 2, EPRI Subheadings, EPRI Subtitle, EPRI Table Header, EPRI Table Text, EPRI Table Text Left, EPRI Title, EPRI Title Text, EPRI TOC 1, EPRI TOC 2, EPRI TOC 3, EPRI TOC 4, EPRI TOC 5, eprinormal, EXAMPLE, FIGURE, FIGURE-title, FOREWORD, FORM-admin, Front Matter Footnote Text, head1, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, HEADING(Nonumber), Headings, IEC_INSTRUCTIONS, ISO_Change, ISO_Secret_Observations, List Bullet 6, List Dash, List Dash 2, List Dash 3, List Dash 4, List Number alt, List Number alt 2, List Number alt 3, MAIN-TITLE, MAIN-TITLE12, Normal, Normal Hang, NOTE, Numbered PARA (level 2), Numbered PARA (level 3), Numbered PARA (level 4), Outline, PARAEQUATION, PARAGRAPH, Picture, Product ID#, Section Title Only, SMALL-BLOCKS12, Style Outline numbered, TAB_FIG_footnote, Table Bullet, Table Dash, Table Style, TABLE-cell, TABLE-centered, TABLE-col-heading, TABLE-title, TERM, TERM-admitted, TERM-definition, TERM-deprecated, TERM-example, TERM-note, TERM-number, TERM-number 3, TERM-number 4, TERM-source, Title Page Text, Title1, TOC 1;?????????1?, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9, UCI List]): +Style.h9=null; cfg-preferred names=[Heading 9]; doc-usable styles={}; all recognised names=[Heading 9] +2024-09-08 08:26:53,569 [main] INFO Style - Assigned from preferred names [full match]: Style.h9=Heading 9; cfg-preferred names=[Heading 9] +2024-09-08 08:26:53,569 [main] TRACE Style - === after +Style.h9=Heading 9; cfg-preferred names=[Heading 9]; doc-usable styles={Heading 9=Heading 9 (builtIn, id=-10: HEAD)}; all recognised names=[Heading 9] + +2024-09-08 08:26:53,569 [main] INFO Util - +2024-09-08 08:26:53,569 [main] INFO Util - ------------------------------------------------ +2024-09-08 08:26:53,569 [main] INFO Util - collecting used existing figure/table caption ranges from template... +2024-09-08 08:26:59,160 [main] INFO DocWordWriter - found paragraph [Figure 1 – Example of a power system SCADA architecture extended with NSM Data Objects ] with caption style [FIGURE-title] +2024-09-08 08:27:00,357 [main] INFO DocWordWriter - found paragraph [Figure 2 – IDS Information exchange between applications: generic communication topology ] with caption style [FIGURE-title] +2024-09-08 08:27:00,733 [main] INFO DocWordWriter - found paragraph [Figure 3 – Active security monitoring architecture with NSM data objects ] with caption style [FIGURE-title] +2024-09-08 08:27:01,107 [main] INFO DocWordWriter - found paragraph [Figure 4 – Comparison of NSM data objects with IEC 61850 objects ] with caption style [FIGURE-title] +2024-09-08 08:27:01,136 [main] INFO DocWordWriter - found paragraph [Figure 5 – Management of both the power system infrastructure and the information infrastructure ] with caption style [FIGURE-title] +2024-09-08 08:27:02,052 [main] INFO DocWordWriter - found paragraph [Figure 6 – Abstract types ] with caption style [FIGURE-title] +2024-09-08 08:27:02,153 [main] INFO DocWordWriter - found paragraph [Figure 7 – Enumerated types ] with caption style [FIGURE-title] +2024-09-08 08:27:02,355 [main] INFO DocWordWriter - found paragraph [Figure 8 – Subagents ] with caption style [FIGURE-title] +2024-09-08 08:27:02,467 [main] INFO DocWordWriter - found paragraph [Figure 9 – Environmental agent ] with caption style [FIGURE-title] +2024-09-08 08:27:02,517 [main] INFO DocWordWriter - found paragraph [Figure 10 – Model stereotypes ] with caption style [FIGURE-title] +2024-09-08 08:27:02,839 [main] INFO DocWordWriter - found paragraph [Figure 11 – Object identifier structure ] with caption style [FIGURE-title] +2024-09-08 08:27:03,165 [main] INFO DocWordWriter - found paragraph [Figure 12 – SNMP table ] with caption style [FIGURE-title] +2024-09-08 08:27:03,305 [main] INFO DocWordWriter - found paragraph [Figure 13 – SNMP RFCs map and security ] with caption style [FIGURE-title] +2024-09-08 08:27:03,439 [main] INFO DocWordWriter - found paragraph [Figure 14 – SNMP Entity ] with caption style [FIGURE-title] +2024-09-08 08:27:04,256 [main] INFO DocWordWriter - found paragraph [Table B.1 – IEC 61850-7-4 objects mapping ] with caption style [TABLE-title] +2024-09-08 08:27:05,304 [main] INFO Util - time=[0:00:11.735] collected used figure/table caption ranges from template. +2024-09-08 08:27:05,304 [main] INFO Util - +2024-09-08 08:27:05,304 [main] INFO Util - +2024-09-08 08:27:05,305 [main] INFO Util - ------------------------------------------------ +2024-09-08 08:27:05,305 [main] INFO Util - scanning placeholders... +2024-09-08 08:27:06,042 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.Abstract Types.endUml' PACKAGE Abstract Types, figures (14 before ) +2024-09-08 08:27:06,126 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.EnumeratedTypes.endUml' PACKAGE EnumeratedTypes, figures (14 before ) +2024-09-08 08:27:06,209 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.Overview.endUml' PACKAGE Overview, figures (14 before ) +2024-09-08 08:27:06,291 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.Environmental Agent.endUml' PACKAGE Environmental Agent, figures (14 before ) +2024-09-08 08:27:06,376 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.IED Agent.endUml' PACKAGE IED Agent, figures (14 before ) +2024-09-08 08:27:06,458 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.Application Protocols Agents.endUml' PACKAGE Application Protocols Agents, figures (14 before ) +2024-09-08 08:27:06,546 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.Interfaces Agent.endUml' PACKAGE Interfaces Agent, figures (14 before ) +2024-09-08 08:27:06,628 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.Clocks Agent.endUml' PACKAGE Clocks Agent, figures (14 before ) +2024-09-08 08:27:06,644 [main] INFO AbstractWordWriter - 8 placeholders found. +2024-09-08 08:27:06,644 [main] INFO Util - time=[0:00:01.339] scanned placeholders. +2024-09-08 08:27:06,644 [main] INFO Util - +2024-09-08 08:27:06,644 [main] INFO Util - +2024-09-08 08:27:06,644 [main] INFO Util - ------------------------------------------------ +2024-09-08 08:27:06,644 [main] INFO Util - inserting documentation into placeholders +2024-09-08 08:27:06,652 [main] INFO AbstractWordWriter - replacing [99221 - 99258] PACKAGE Abstract Types, figures (14 before )... +2024-09-08 08:27:06,681 [main] INFO AbstractWordWriter - writing doc for package Abstract Types ... +2024-09-08 08:27:06,761 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML52' to Word document and to used list. +2024-09-08 08:27:06,824 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of Abstract Types::BooleanValue +2024-09-08 08:27:06,847 [main] DEBUG DocWordWriter - ... 23 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:06,860 [main] DEBUG DocWordWriter - ... 13 ms for createTable() +2024-09-08 08:27:06,926 [main] DEBUG DocWordWriter - ... 66 ms for fillValues() +2024-09-08 08:27:06,942 [main] DEBUG DocWordWriter - ... 16 ms for widths (table) +2024-09-08 08:27:07,026 [main] DEBUG DocWordWriter - ... 84 ms for widths (columns) +2024-09-08 08:27:07,047 [main] DEBUG DocWordWriter - ... 21 ms for shadding/merging/styling (rows) +2024-09-08 08:27:07,074 [main] DEBUG DocWordWriter - ... 27 ms for borders +2024-09-08 08:27:07,074 [main] DEBUG DocWordWriter - ... 148 ms for formatTable() +2024-09-08 08:27:07,082 [main] INFO DocWordWriter - ... 250 ms total for insertTable() +2024-09-08 08:27:07,125 [main] INFO DocWordWriter - ... 35 ms for insertCaption(): Table 1 – Attributes of Abstract Types::BooleanValue +2024-09-08 08:27:07,164 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of BooleanValue.', [99813 - 99850] +2024-09-08 08:27:07,173 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of BooleanValue.', [99813 - 99851] +2024-09-08 08:27:07,180 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [99813 - 99813] +2024-09-08 08:27:07,196 [main] INFO DocWordWriter - ... 39 ms for insertCaptionRef() +2024-09-08 08:27:07,196 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:07,227 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML54' to Word document and to used list. +2024-09-08 08:27:07,287 [main] INFO DocWordWriter - --- insertTable() 3 rows: Attributes of Abstract Types::BooleanValueTs +2024-09-08 08:27:07,313 [main] DEBUG DocWordWriter - ... 26 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:07,328 [main] DEBUG DocWordWriter - ... 15 ms for createTable() +2024-09-08 08:27:07,423 [main] DEBUG DocWordWriter - ... 95 ms for fillValues() +2024-09-08 08:27:07,440 [main] DEBUG DocWordWriter - ... 17 ms for widths (table) +2024-09-08 08:27:07,523 [main] DEBUG DocWordWriter - ... 83 ms for widths (columns) +2024-09-08 08:27:07,544 [main] DEBUG DocWordWriter - ... 21 ms for shadding/merging/styling (rows) +2024-09-08 08:27:07,575 [main] DEBUG DocWordWriter - ... 31 ms for borders +2024-09-08 08:27:07,575 [main] DEBUG DocWordWriter - ... 152 ms for formatTable() +2024-09-08 08:27:07,583 [main] INFO DocWordWriter - ... 288 ms total for insertTable() +2024-09-08 08:27:07,629 [main] INFO DocWordWriter - ... 37 ms for insertCaption(): Table 2 – Attributes of Abstract Types::BooleanValueTs +2024-09-08 08:27:07,671 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of BooleanValueTs.', [100241 - 100280] +2024-09-08 08:27:07,680 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of BooleanValueTs.', [100241 - 100281] +2024-09-08 08:27:07,687 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [100241 - 100241] +2024-09-08 08:27:07,703 [main] INFO DocWordWriter - ... 40 ms for insertCaptionRef() +2024-09-08 08:27:07,703 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:07,734 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML55' to Word document and to used list. +2024-09-08 08:27:07,795 [main] INFO DocWordWriter - --- insertTable() 3 rows: Attributes of Abstract Types::CounterTs +2024-09-08 08:27:07,819 [main] DEBUG DocWordWriter - ... 24 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:07,832 [main] DEBUG DocWordWriter - ... 13 ms for createTable() +2024-09-08 08:27:07,923 [main] DEBUG DocWordWriter - ... 91 ms for fillValues() +2024-09-08 08:27:07,941 [main] DEBUG DocWordWriter - ... 18 ms for widths (table) +2024-09-08 08:27:08,030 [main] DEBUG DocWordWriter - ... 88 ms for widths (columns) +2024-09-08 08:27:08,051 [main] DEBUG DocWordWriter - ... 22 ms for shadding/merging/styling (rows) +2024-09-08 08:27:08,079 [main] DEBUG DocWordWriter - ... 28 ms for borders +2024-09-08 08:27:08,079 [main] DEBUG DocWordWriter - ... 156 ms for formatTable() +2024-09-08 08:27:08,088 [main] INFO DocWordWriter - ... 284 ms total for insertTable() +2024-09-08 08:27:08,140 [main] INFO DocWordWriter - ... 44 ms for insertCaption(): Table 3 – Attributes of Abstract Types::CounterTs +2024-09-08 08:27:08,181 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of CounterTs.', [100827 - 100861] +2024-09-08 08:27:08,190 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of CounterTs.', [100827 - 100862] +2024-09-08 08:27:08,196 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [100827 - 100827] +2024-09-08 08:27:08,214 [main] INFO DocWordWriter - ... 41 ms for insertCaptionRef() +2024-09-08 08:27:08,214 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:08,249 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML67' to Word document and to used list. +2024-09-08 08:27:08,313 [main] INFO DocWordWriter - --- insertTable() 3 rows: Attributes of Abstract Types::CntRs +2024-09-08 08:27:08,337 [main] DEBUG DocWordWriter - ... 24 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:08,352 [main] DEBUG DocWordWriter - ... 15 ms for createTable() +2024-09-08 08:27:08,442 [main] DEBUG DocWordWriter - ... 90 ms for fillValues() +2024-09-08 08:27:08,459 [main] DEBUG DocWordWriter - ... 17 ms for widths (table) +2024-09-08 08:27:08,538 [main] DEBUG DocWordWriter - ... 79 ms for widths (columns) +2024-09-08 08:27:08,560 [main] DEBUG DocWordWriter - ... 22 ms for shadding/merging/styling (rows) +2024-09-08 08:27:08,586 [main] DEBUG DocWordWriter - ... 26 ms for borders +2024-09-08 08:27:08,586 [main] DEBUG DocWordWriter - ... 144 ms for formatTable() +2024-09-08 08:27:08,594 [main] INFO DocWordWriter - ... 273 ms total for insertTable() +2024-09-08 08:27:08,656 [main] INFO DocWordWriter - ... 54 ms for insertCaption(): Table 4 – Attributes of Abstract Types::CntRs +2024-09-08 08:27:08,699 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of CntRs.', [101399 - 101429] +2024-09-08 08:27:08,709 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of CntRs.', [101399 - 101430] +2024-09-08 08:27:08,719 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [101399 - 101399] +2024-09-08 08:27:08,736 [main] INFO DocWordWriter - ... 47 ms for insertCaptionRef() +2024-09-08 08:27:08,736 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:08,770 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML56' to Word document and to used list. +2024-09-08 08:27:08,863 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of Abstract Types::Floating +2024-09-08 08:27:08,886 [main] DEBUG DocWordWriter - ... 23 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:08,896 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-08 08:27:08,960 [main] DEBUG DocWordWriter - ... 64 ms for fillValues() +2024-09-08 08:27:08,977 [main] DEBUG DocWordWriter - ... 17 ms for widths (table) +2024-09-08 08:27:09,056 [main] DEBUG DocWordWriter - ... 79 ms for widths (columns) +2024-09-08 08:27:09,077 [main] DEBUG DocWordWriter - ... 21 ms for shadding/merging/styling (rows) +2024-09-08 08:27:09,104 [main] DEBUG DocWordWriter - ... 27 ms for borders +2024-09-08 08:27:09,104 [main] DEBUG DocWordWriter - ... 144 ms for formatTable() +2024-09-08 08:27:09,111 [main] INFO DocWordWriter - ... 241 ms total for insertTable() +2024-09-08 08:27:09,175 [main] INFO DocWordWriter - ... 54 ms for insertCaption(): Table 5 – Attributes of Abstract Types::Floating +2024-09-08 08:27:09,218 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Floating.', [101937 - 101970] +2024-09-08 08:27:09,227 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Floating.', [101937 - 101971] +2024-09-08 08:27:09,236 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [101937 - 101937] +2024-09-08 08:27:09,249 [main] INFO DocWordWriter - ... 40 ms for insertCaptionRef() +2024-09-08 08:27:09,249 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:09,282 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML57' to Word document and to used list. +2024-09-08 08:27:09,341 [main] INFO DocWordWriter - --- insertTable() 3 rows: Attributes of Abstract Types::FloatingTs +2024-09-08 08:27:09,367 [main] DEBUG DocWordWriter - ... 26 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:09,381 [main] DEBUG DocWordWriter - ... 14 ms for createTable() +2024-09-08 08:27:09,472 [main] DEBUG DocWordWriter - ... 91 ms for fillValues() +2024-09-08 08:27:09,491 [main] DEBUG DocWordWriter - ... 19 ms for widths (table) +2024-09-08 08:27:09,580 [main] DEBUG DocWordWriter - ... 89 ms for widths (columns) +2024-09-08 08:27:09,605 [main] DEBUG DocWordWriter - ... 25 ms for shadding/merging/styling (rows) +2024-09-08 08:27:09,639 [main] DEBUG DocWordWriter - ... 34 ms for borders +2024-09-08 08:27:09,639 [main] DEBUG DocWordWriter - ... 167 ms for formatTable() +2024-09-08 08:27:09,649 [main] INFO DocWordWriter - ... 298 ms total for insertTable() +2024-09-08 08:27:09,723 [main] INFO DocWordWriter - ... 66 ms for insertCaption(): Table 6 – Attributes of Abstract Types::FloatingTs +2024-09-08 08:27:09,770 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of FloatingTs.', [102373 - 102408] +2024-09-08 08:27:09,781 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of FloatingTs.', [102373 - 102409] +2024-09-08 08:27:09,788 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [102373 - 102373] +2024-09-08 08:27:09,809 [main] INFO DocWordWriter - ... 50 ms for insertCaptionRef() +2024-09-08 08:27:09,809 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:09,845 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML66' to Word document and to used list. +2024-09-08 08:27:09,912 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of Abstract Types::EntityIndex +2024-09-08 08:27:09,943 [main] DEBUG DocWordWriter - ... 31 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:09,958 [main] DEBUG DocWordWriter - ... 15 ms for createTable() +2024-09-08 08:27:10,042 [main] DEBUG DocWordWriter - ... 84 ms for fillValues() +2024-09-08 08:27:10,063 [main] DEBUG DocWordWriter - ... 21 ms for widths (table) +2024-09-08 08:27:10,152 [main] DEBUG DocWordWriter - ... 89 ms for widths (columns) +2024-09-08 08:27:10,176 [main] DEBUG DocWordWriter - ... 24 ms for shadding/merging/styling (rows) +2024-09-08 08:27:10,204 [main] DEBUG DocWordWriter - ... 28 ms for borders +2024-09-08 08:27:10,204 [main] DEBUG DocWordWriter - ... 162 ms for formatTable() +2024-09-08 08:27:10,213 [main] INFO DocWordWriter - ... 292 ms total for insertTable() +2024-09-08 08:27:10,287 [main] INFO DocWordWriter - ... 66 ms for insertCaption(): Table 7 – Attributes of Abstract Types::EntityIndex +2024-09-08 08:27:10,332 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of EntityIndex.', [102981 - 103017] +2024-09-08 08:27:10,341 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of EntityIndex.', [102981 - 103018] +2024-09-08 08:27:10,350 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [102981 - 102981] +2024-09-08 08:27:10,368 [main] INFO DocWordWriter - ... 46 ms for insertCaptionRef() +2024-09-08 08:27:10,369 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:10,403 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML53' to Word document and to used list. +2024-09-08 08:27:10,469 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of Abstract Types::Integer +2024-09-08 08:27:10,497 [main] DEBUG DocWordWriter - ... 28 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:10,510 [main] DEBUG DocWordWriter - ... 13 ms for createTable() +2024-09-08 08:27:10,581 [main] DEBUG DocWordWriter - ... 71 ms for fillValues() +2024-09-08 08:27:10,600 [main] DEBUG DocWordWriter - ... 19 ms for widths (table) +2024-09-08 08:27:10,679 [main] DEBUG DocWordWriter - ... 79 ms for widths (columns) +2024-09-08 08:27:10,702 [main] DEBUG DocWordWriter - ... 23 ms for shadding/merging/styling (rows) +2024-09-08 08:27:10,729 [main] DEBUG DocWordWriter - ... 27 ms for borders +2024-09-08 08:27:10,729 [main] DEBUG DocWordWriter - ... 148 ms for formatTable() +2024-09-08 08:27:10,738 [main] INFO DocWordWriter - ... 260 ms total for insertTable() +2024-09-08 08:27:10,833 [main] INFO DocWordWriter - ... 86 ms for insertCaption(): Table 8 – Attributes of Abstract Types::Integer +2024-09-08 08:27:10,887 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Integer.', [103312 - 103344] +2024-09-08 08:27:10,899 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Integer.', [103312 - 103345] +2024-09-08 08:27:10,908 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [103312 - 103312] +2024-09-08 08:27:10,924 [main] INFO DocWordWriter - ... 48 ms for insertCaptionRef() +2024-09-08 08:27:10,924 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:10,961 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML58' to Word document and to used list. +2024-09-08 08:27:11,029 [main] INFO DocWordWriter - --- insertTable() 3 rows: Attributes of Abstract Types::IntegerTs +2024-09-08 08:27:11,055 [main] DEBUG DocWordWriter - ... 26 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:11,070 [main] DEBUG DocWordWriter - ... 15 ms for createTable() +2024-09-08 08:27:11,181 [main] DEBUG DocWordWriter - ... 111 ms for fillValues() +2024-09-08 08:27:11,202 [main] DEBUG DocWordWriter - ... 20 ms for widths (table) +2024-09-08 08:27:11,289 [main] DEBUG DocWordWriter - ... 87 ms for widths (columns) +2024-09-08 08:27:11,317 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-08 08:27:11,346 [main] DEBUG DocWordWriter - ... 29 ms for borders +2024-09-08 08:27:11,346 [main] DEBUG DocWordWriter - ... 165 ms for formatTable() +2024-09-08 08:27:11,357 [main] INFO DocWordWriter - ... 317 ms total for insertTable() +2024-09-08 08:27:11,448 [main] INFO DocWordWriter - ... 81 ms for insertCaption(): Table 9 – Attributes of Abstract Types::IntegerTs +2024-09-08 08:27:11,492 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of IntegerTs.', [103754 - 103788] +2024-09-08 08:27:11,503 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of IntegerTs.', [103754 - 103789] +2024-09-08 08:27:11,510 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [103754 - 103754] +2024-09-08 08:27:11,531 [main] INFO DocWordWriter - ... 48 ms for insertCaptionRef() +2024-09-08 08:27:11,531 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:11,567 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML65' to Word document and to used list. +2024-09-08 08:27:11,637 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of Abstract Types::InetAddress +2024-09-08 08:27:11,664 [main] DEBUG DocWordWriter - ... 27 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:11,676 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-08 08:27:11,754 [main] DEBUG DocWordWriter - ... 78 ms for fillValues() +2024-09-08 08:27:11,773 [main] DEBUG DocWordWriter - ... 19 ms for widths (table) +2024-09-08 08:27:11,857 [main] DEBUG DocWordWriter - ... 84 ms for widths (columns) +2024-09-08 08:27:11,881 [main] DEBUG DocWordWriter - ... 24 ms for shadding/merging/styling (rows) +2024-09-08 08:27:11,916 [main] DEBUG DocWordWriter - ... 35 ms for borders +2024-09-08 08:27:11,916 [main] DEBUG DocWordWriter - ... 162 ms for formatTable() +2024-09-08 08:27:11,927 [main] INFO DocWordWriter - ... 279 ms total for insertTable() +2024-09-08 08:27:12,024 [main] INFO DocWordWriter - ... 88 ms for insertCaption(): Table 10 – Attributes of Abstract Types::InetAddress +2024-09-08 08:27:12,072 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of InetAddress.', [104943 - 104979] +2024-09-08 08:27:12,082 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of InetAddress.', [104943 - 104980] +2024-09-08 08:27:12,089 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [104943 - 104943] +2024-09-08 08:27:12,105 [main] INFO DocWordWriter - ... 43 ms for insertCaptionRef() +2024-09-08 08:27:12,105 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:12,140 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML64' to Word document and to used list. +2024-09-08 08:27:12,230 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of Abstract Types::InetAddressType +2024-09-08 08:27:12,263 [main] DEBUG DocWordWriter - ... 33 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:12,280 [main] DEBUG DocWordWriter - ... 17 ms for createTable() +2024-09-08 08:27:12,377 [main] DEBUG DocWordWriter - ... 97 ms for fillValues() +2024-09-08 08:27:12,398 [main] DEBUG DocWordWriter - ... 21 ms for widths (table) +2024-09-08 08:27:12,481 [main] DEBUG DocWordWriter - ... 83 ms for widths (columns) +2024-09-08 08:27:12,505 [main] DEBUG DocWordWriter - ... 24 ms for shadding/merging/styling (rows) +2024-09-08 08:27:12,532 [main] DEBUG DocWordWriter - ... 27 ms for borders +2024-09-08 08:27:12,532 [main] DEBUG DocWordWriter - ... 155 ms for formatTable() +2024-09-08 08:27:12,541 [main] INFO DocWordWriter - ... 302 ms total for insertTable() +2024-09-08 08:27:12,647 [main] INFO DocWordWriter - ... 97 ms for insertCaption(): Table 11 – Attributes of Abstract Types::InetAddressType +2024-09-08 08:27:12,691 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of InetAddressType.', [105363 - 105403] +2024-09-08 08:27:12,702 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of InetAddressType.', [105363 - 105404] +2024-09-08 08:27:12,708 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [105363 - 105363] +2024-09-08 08:27:12,724 [main] INFO DocWordWriter - ... 43 ms for insertCaptionRef() +2024-09-08 08:27:12,724 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:12,763 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML63' to Word document and to used list. +2024-09-08 08:27:12,837 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of Abstract Types::MacAddress +2024-09-08 08:27:12,863 [main] DEBUG DocWordWriter - ... 26 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:12,875 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-08 08:27:12,955 [main] DEBUG DocWordWriter - ... 80 ms for fillValues() +2024-09-08 08:27:12,974 [main] DEBUG DocWordWriter - ... 19 ms for widths (table) +2024-09-08 08:27:13,062 [main] DEBUG DocWordWriter - ... 88 ms for widths (columns) +2024-09-08 08:27:13,085 [main] DEBUG DocWordWriter - ... 23 ms for shadding/merging/styling (rows) +2024-09-08 08:27:13,112 [main] DEBUG DocWordWriter - ... 27 ms for borders +2024-09-08 08:27:13,112 [main] DEBUG DocWordWriter - ... 157 ms for formatTable() +2024-09-08 08:27:13,123 [main] INFO DocWordWriter - ... 275 ms total for insertTable() +2024-09-08 08:27:13,240 [main] INFO DocWordWriter - ... 109 ms for insertCaption(): Table 12 – Attributes of Abstract Types::MacAddress +2024-09-08 08:27:13,284 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of MacAddress.', [105938 - 105973] +2024-09-08 08:27:13,296 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of MacAddress.', [105938 - 105974] +2024-09-08 08:27:13,302 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [105938 - 105938] +2024-09-08 08:27:13,320 [main] INFO DocWordWriter - ... 45 ms for insertCaptionRef() +2024-09-08 08:27:13,320 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:13,357 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML62' to Word document and to used list. +2024-09-08 08:27:13,422 [main] INFO DocWordWriter - closing MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-08 08:27:15,111 [main] INFO DocWordWriter - opening MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-08 08:27:16,051 [main] INFO OptimOptions - setting view to normal +2024-09-08 08:27:16,104 [main] INFO OptimOptions - disabling pagination +2024-09-08 08:27:16,150 [main] INFO OptimOptions - disabling field update +2024-09-08 08:27:16,251 [main] INFO OptimOptions - disabling screen updating +2024-09-08 08:27:16,268 [main] DEBUG DocWordWriter - current(_optimisedOptions): OptimOptions [viewId=1, normView=true, paginate=false, updFld=false, updScr=false, fastSave=false, spelling=false, grammar=false] +2024-09-08 08:27:16,368 [main] INFO Util - time=[0:00:02.973] closed and reopened document. +2024-09-08 08:27:16,368 [main] INFO Util - +2024-09-08 08:27:16,452 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of Abstract Types::Selector +2024-09-08 08:27:16,483 [main] DEBUG DocWordWriter - ... 31 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:16,491 [main] DEBUG DocWordWriter - ... 8 ms for createTable() +2024-09-08 08:27:16,570 [main] DEBUG DocWordWriter - ... 79 ms for fillValues() +2024-09-08 08:27:16,592 [main] DEBUG DocWordWriter - ... 22 ms for widths (table) +2024-09-08 08:27:16,674 [main] DEBUG DocWordWriter - ... 82 ms for widths (columns) +2024-09-08 08:27:16,698 [main] DEBUG DocWordWriter - ... 24 ms for shadding/merging/styling (rows) +2024-09-08 08:27:16,724 [main] DEBUG DocWordWriter - ... 26 ms for borders +2024-09-08 08:27:16,724 [main] DEBUG DocWordWriter - ... 154 ms for formatTable() +2024-09-08 08:27:16,735 [main] INFO DocWordWriter - ... 272 ms total for insertTable() +2024-09-08 08:27:16,757 [main] INFO DocWordWriter - ... 14 ms for insertCaption(): Table 13 – Attributes of Abstract Types::Selector +2024-09-08 08:27:16,804 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Selector.', [106465 - 106498] +2024-09-08 08:27:16,814 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Selector.', [106465 - 106499] +2024-09-08 08:27:16,820 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [106465 - 106465] +2024-09-08 08:27:16,831 [main] INFO DocWordWriter - ... 37 ms for insertCaptionRef() +2024-09-08 08:27:16,831 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:16,864 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML61' to Word document and to used list. +2024-09-08 08:27:16,928 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of Abstract Types::Timestamp +2024-09-08 08:27:16,952 [main] DEBUG DocWordWriter - ... 24 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:16,962 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-08 08:27:17,026 [main] DEBUG DocWordWriter - ... 64 ms for fillValues() +2024-09-08 08:27:17,047 [main] DEBUG DocWordWriter - ... 21 ms for widths (table) +2024-09-08 08:27:17,124 [main] DEBUG DocWordWriter - ... 77 ms for widths (columns) +2024-09-08 08:27:17,149 [main] DEBUG DocWordWriter - ... 25 ms for shadding/merging/styling (rows) +2024-09-08 08:27:17,173 [main] DEBUG DocWordWriter - ... 24 ms for borders +2024-09-08 08:27:17,174 [main] DEBUG DocWordWriter - ... 148 ms for formatTable() +2024-09-08 08:27:17,184 [main] INFO DocWordWriter - ... 246 ms total for insertTable() +2024-09-08 08:27:17,211 [main] INFO DocWordWriter - ... 19 ms for insertCaption(): Table 14 – Attributes of Abstract Types::Timestamp +2024-09-08 08:27:17,253 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Timestamp.', [106832 - 106866] +2024-09-08 08:27:17,263 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Timestamp.', [106832 - 106867] +2024-09-08 08:27:17,269 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [106832 - 106832] +2024-09-08 08:27:17,279 [main] INFO DocWordWriter - ... 34 ms for insertCaptionRef() +2024-09-08 08:27:17,279 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:17,311 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML59' to Word document and to used list. +2024-09-08 08:27:17,374 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of Abstract Types::CharString +2024-09-08 08:27:17,405 [main] DEBUG DocWordWriter - ... 31 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:17,415 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-08 08:27:17,485 [main] DEBUG DocWordWriter - ... 70 ms for fillValues() +2024-09-08 08:27:17,505 [main] DEBUG DocWordWriter - ... 20 ms for widths (table) +2024-09-08 08:27:17,584 [main] DEBUG DocWordWriter - ... 79 ms for widths (columns) +2024-09-08 08:27:17,607 [main] DEBUG DocWordWriter - ... 23 ms for shadding/merging/styling (rows) +2024-09-08 08:27:17,633 [main] DEBUG DocWordWriter - ... 26 ms for borders +2024-09-08 08:27:17,633 [main] DEBUG DocWordWriter - ... 148 ms for formatTable() +2024-09-08 08:27:17,644 [main] INFO DocWordWriter - ... 259 ms total for insertTable() +2024-09-08 08:27:17,670 [main] INFO DocWordWriter - ... 18 ms for insertCaption(): Table 15 – Attributes of Abstract Types::CharString +2024-09-08 08:27:17,714 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of CharString.', [107266 - 107301] +2024-09-08 08:27:17,724 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of CharString.', [107266 - 107302] +2024-09-08 08:27:17,730 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [107266 - 107266] +2024-09-08 08:27:17,741 [main] INFO DocWordWriter - ... 37 ms for insertCaptionRef() +2024-09-08 08:27:17,741 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:17,775 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML60' to Word document and to used list. +2024-09-08 08:27:17,839 [main] INFO DocWordWriter - --- insertTable() 3 rows: Attributes of Abstract Types::CharStringTs +2024-09-08 08:27:17,865 [main] DEBUG DocWordWriter - ... 26 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:17,874 [main] DEBUG DocWordWriter - ... 9 ms for createTable() +2024-09-08 08:27:17,972 [main] DEBUG DocWordWriter - ... 98 ms for fillValues() +2024-09-08 08:27:17,994 [main] DEBUG DocWordWriter - ... 22 ms for widths (table) +2024-09-08 08:27:18,078 [main] DEBUG DocWordWriter - ... 84 ms for widths (columns) +2024-09-08 08:27:18,102 [main] DEBUG DocWordWriter - ... 24 ms for shadding/merging/styling (rows) +2024-09-08 08:27:18,132 [main] DEBUG DocWordWriter - ... 30 ms for borders +2024-09-08 08:27:18,132 [main] DEBUG DocWordWriter - ... 160 ms for formatTable() +2024-09-08 08:27:18,142 [main] INFO DocWordWriter - ... 293 ms total for insertTable() +2024-09-08 08:27:18,177 [main] INFO DocWordWriter - ... 28 ms for insertCaption(): Table 16 – Attributes of Abstract Types::CharStringTs +2024-09-08 08:27:18,224 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of CharStringTs.', [107670 - 107707] +2024-09-08 08:27:18,235 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of CharStringTs.', [107670 - 107708] +2024-09-08 08:27:18,243 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [107670 - 107670] +2024-09-08 08:27:18,254 [main] INFO DocWordWriter - ... 41 ms for insertCaptionRef() +2024-09-08 08:27:18,254 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:18,298 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML39' to Word document and to used list. +2024-09-08 08:27:18,369 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML40' to Word document and to used list. +2024-09-08 08:27:18,409 [main] INFO Util - time=[0:00:11.765] replaced [108232 - 108292] PACKAGE Abstract Types, figures (14 before ), tables (16 mine)... +2024-09-08 08:27:18,409 [main] INFO Util - +2024-09-08 08:27:18,416 [main] INFO AbstractWordWriter - replacing [108330 - 108368] PACKAGE EnumeratedTypes, figures (14 before ), tables (16 before )... +2024-09-08 08:27:18,448 [main] INFO AbstractWordWriter - writing doc for package EnumeratedTypes ... +2024-09-08 08:27:18,554 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML41' to Word document and to used list. +2024-09-08 08:27:18,619 [main] INFO DocWordWriter - --- insertTable() 4 rows: Literals of EnumeratedTypes::AppDatStKind +2024-09-08 08:27:18,644 [main] DEBUG DocWordWriter - ... 25 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:18,652 [main] DEBUG DocWordWriter - ... 8 ms for createTable() +2024-09-08 08:27:18,697 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML150' to Word document and to used list. +2024-09-08 08:27:18,737 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML151' to Word document and to used list. +2024-09-08 08:27:18,765 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML152' to Word document and to used list. +2024-09-08 08:27:18,782 [main] DEBUG DocWordWriter - ... 130 ms for fillValues() +2024-09-08 08:27:18,801 [main] DEBUG DocWordWriter - ... 19 ms for widths (table) +2024-09-08 08:27:18,869 [main] DEBUG DocWordWriter - ... 68 ms for widths (columns) +2024-09-08 08:27:18,898 [main] DEBUG DocWordWriter - ... 29 ms for shadding/merging/styling (rows) +2024-09-08 08:27:18,929 [main] DEBUG DocWordWriter - ... 31 ms for borders +2024-09-08 08:27:18,929 [main] DEBUG DocWordWriter - ... 147 ms for formatTable() +2024-09-08 08:27:18,941 [main] INFO DocWordWriter - ... 310 ms total for insertTable() +2024-09-08 08:27:18,973 [main] INFO DocWordWriter - ... 24 ms for insertCaption(): Table 17 – Literals of EnumeratedTypes::AppDatStKind +2024-09-08 08:27:19,017 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all literals of AppDatStKind.', [108948 - 108983] +2024-09-08 08:27:19,028 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all literals of AppDatStKind.', [108948 - 108984] +2024-09-08 08:27:19,036 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [108948 - 108948] +2024-09-08 08:27:19,046 [main] INFO DocWordWriter - ... 39 ms for insertCaptionRef() +2024-09-08 08:27:19,046 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:19,084 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML42' to Word document and to used list. +2024-09-08 08:27:19,146 [main] INFO DocWordWriter - --- insertTable() 4 rows: Literals of EnumeratedTypes::PhyHealthKind +2024-09-08 08:27:19,171 [main] DEBUG DocWordWriter - ... 25 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:19,181 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-08 08:27:19,228 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML153' to Word document and to used list. +2024-09-08 08:27:19,256 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML154' to Word document and to used list. +2024-09-08 08:27:19,283 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML155' to Word document and to used list. +2024-09-08 08:27:19,298 [main] DEBUG DocWordWriter - ... 117 ms for fillValues() +2024-09-08 08:27:19,316 [main] DEBUG DocWordWriter - ... 18 ms for widths (table) +2024-09-08 08:27:19,383 [main] DEBUG DocWordWriter - ... 67 ms for widths (columns) +2024-09-08 08:27:19,412 [main] DEBUG DocWordWriter - ... 29 ms for shadding/merging/styling (rows) +2024-09-08 08:27:19,441 [main] DEBUG DocWordWriter - ... 29 ms for borders +2024-09-08 08:27:19,441 [main] DEBUG DocWordWriter - ... 143 ms for formatTable() +2024-09-08 08:27:19,451 [main] INFO DocWordWriter - ... 295 ms total for insertTable() +2024-09-08 08:27:19,492 [main] INFO DocWordWriter - ... 33 ms for insertCaption(): Table 18 – Literals of EnumeratedTypes::PhyHealthKind +2024-09-08 08:27:19,535 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all literals of PhyHealthKind.', [109347 - 109383] +2024-09-08 08:27:19,546 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all literals of PhyHealthKind.', [109347 - 109384] +2024-09-08 08:27:19,554 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [109347 - 109347] +2024-09-08 08:27:19,565 [main] INFO DocWordWriter - ... 39 ms for insertCaptionRef() +2024-09-08 08:27:19,566 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:19,604 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML43' to Word document and to used list. +2024-09-08 08:27:19,666 [main] INFO DocWordWriter - --- insertTable() 4 rows: Literals of EnumeratedTypes::ExtKind +2024-09-08 08:27:19,694 [main] DEBUG DocWordWriter - ... 28 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:19,704 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-08 08:27:19,749 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML156' to Word document and to used list. +2024-09-08 08:27:19,777 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML157' to Word document and to used list. +2024-09-08 08:27:19,806 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML158' to Word document and to used list. +2024-09-08 08:27:19,821 [main] DEBUG DocWordWriter - ... 117 ms for fillValues() +2024-09-08 08:27:19,841 [main] DEBUG DocWordWriter - ... 20 ms for widths (table) +2024-09-08 08:27:19,913 [main] DEBUG DocWordWriter - ... 72 ms for widths (columns) +2024-09-08 08:27:19,937 [main] DEBUG DocWordWriter - ... 24 ms for shadding/merging/styling (rows) +2024-09-08 08:27:19,969 [main] DEBUG DocWordWriter - ... 32 ms for borders +2024-09-08 08:27:19,969 [main] DEBUG DocWordWriter - ... 148 ms for formatTable() +2024-09-08 08:27:19,978 [main] INFO DocWordWriter - ... 303 ms total for insertTable() +2024-09-08 08:27:20,024 [main] INFO DocWordWriter - ... 37 ms for insertCaption(): Table 19 – Literals of EnumeratedTypes::ExtKind +2024-09-08 08:27:20,099 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all literals of ExtKind.', [109744 - 109774] +2024-09-08 08:27:20,110 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all literals of ExtKind.', [109744 - 109775] +2024-09-08 08:27:20,117 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [109744 - 109744] +2024-09-08 08:27:20,129 [main] INFO DocWordWriter - ... 39 ms for insertCaptionRef() +2024-09-08 08:27:20,129 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:20,166 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML44' to Word document and to used list. +2024-09-08 08:27:20,235 [main] INFO DocWordWriter - --- insertTable() 3 rows: Literals of EnumeratedTypes::IntKind +2024-09-08 08:27:20,259 [main] DEBUG DocWordWriter - ... 24 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:20,269 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-08 08:27:20,312 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML159' to Word document and to used list. +2024-09-08 08:27:20,340 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML160' to Word document and to used list. +2024-09-08 08:27:20,355 [main] DEBUG DocWordWriter - ... 86 ms for fillValues() +2024-09-08 08:27:20,375 [main] DEBUG DocWordWriter - ... 20 ms for widths (table) +2024-09-08 08:27:20,438 [main] DEBUG DocWordWriter - ... 63 ms for widths (columns) +2024-09-08 08:27:20,462 [main] DEBUG DocWordWriter - ... 24 ms for shadding/merging/styling (rows) +2024-09-08 08:27:20,496 [main] DEBUG DocWordWriter - ... 34 ms for borders +2024-09-08 08:27:20,496 [main] DEBUG DocWordWriter - ... 141 ms for formatTable() +2024-09-08 08:27:20,506 [main] INFO DocWordWriter - ... 261 ms total for insertTable() +2024-09-08 08:27:20,552 [main] INFO DocWordWriter - ... 39 ms for insertCaption(): Table 20 – Literals of EnumeratedTypes::IntKind +2024-09-08 08:27:20,595 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all literals of IntKind.', [110077 - 110107] +2024-09-08 08:27:20,604 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all literals of IntKind.', [110077 - 110108] +2024-09-08 08:27:20,611 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [110077 - 110077] +2024-09-08 08:27:20,623 [main] INFO DocWordWriter - ... 38 ms for insertCaptionRef() +2024-09-08 08:27:20,623 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:20,662 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML45' to Word document and to used list. +2024-09-08 08:27:20,731 [main] INFO DocWordWriter - --- insertTable() 6 rows: Literals of EnumeratedTypes::LnkKind +2024-09-08 08:27:20,757 [main] DEBUG DocWordWriter - ... 26 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:20,768 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-08 08:27:20,814 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML161' to Word document and to used list. +2024-09-08 08:27:20,843 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML162' to Word document and to used list. +2024-09-08 08:27:20,872 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML163' to Word document and to used list. +2024-09-08 08:27:20,901 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML164' to Word document and to used list. +2024-09-08 08:27:20,929 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML165' to Word document and to used list. +2024-09-08 08:27:20,944 [main] DEBUG DocWordWriter - ... 176 ms for fillValues() +2024-09-08 08:27:20,964 [main] DEBUG DocWordWriter - ... 20 ms for widths (table) +2024-09-08 08:27:21,037 [main] DEBUG DocWordWriter - ... 73 ms for widths (columns) +2024-09-08 08:27:21,060 [main] DEBUG DocWordWriter - ... 23 ms for shadding/merging/styling (rows) +2024-09-08 08:27:21,101 [main] DEBUG DocWordWriter - ... 41 ms for borders +2024-09-08 08:27:21,101 [main] DEBUG DocWordWriter - ... 157 ms for formatTable() +2024-09-08 08:27:21,111 [main] INFO DocWordWriter - ... 370 ms total for insertTable() +2024-09-08 08:27:21,159 [main] INFO DocWordWriter - ... 39 ms for insertCaption(): Table 21 – Literals of EnumeratedTypes::LnkKind +2024-09-08 08:27:21,204 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all literals of LnkKind.', [110357 - 110387] +2024-09-08 08:27:21,214 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all literals of LnkKind.', [110357 - 110388] +2024-09-08 08:27:21,220 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [110357 - 110357] +2024-09-08 08:27:21,232 [main] INFO DocWordWriter - ... 38 ms for insertCaptionRef() +2024-09-08 08:27:21,232 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:21,269 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML46' to Word document and to used list. +2024-09-08 08:27:21,338 [main] INFO DocWordWriter - --- insertTable() 3 rows: Literals of EnumeratedTypes::PSPAccKind +2024-09-08 08:27:21,363 [main] DEBUG DocWordWriter - ... 25 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:21,374 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-08 08:27:21,423 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML166' to Word document and to used list. +2024-09-08 08:27:21,452 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML167' to Word document and to used list. +2024-09-08 08:27:21,467 [main] DEBUG DocWordWriter - ... 93 ms for fillValues() +2024-09-08 08:27:21,488 [main] DEBUG DocWordWriter - ... 21 ms for widths (table) +2024-09-08 08:27:21,553 [main] DEBUG DocWordWriter - ... 65 ms for widths (columns) +2024-09-08 08:27:21,577 [main] DEBUG DocWordWriter - ... 24 ms for shadding/merging/styling (rows) +2024-09-08 08:27:21,607 [main] DEBUG DocWordWriter - ... 30 ms for borders +2024-09-08 08:27:21,607 [main] DEBUG DocWordWriter - ... 140 ms for formatTable() +2024-09-08 08:27:21,619 [main] INFO DocWordWriter - ... 269 ms total for insertTable() +2024-09-08 08:27:21,674 [main] INFO DocWordWriter - ... 47 ms for insertCaption(): Table 22 – Literals of EnumeratedTypes::PSPAccKind +2024-09-08 08:27:21,721 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all literals of PSPAccKind.', [110743 - 110776] +2024-09-08 08:27:21,732 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all literals of PSPAccKind.', [110743 - 110777] +2024-09-08 08:27:21,739 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [110743 - 110743] +2024-09-08 08:27:21,750 [main] INFO DocWordWriter - ... 40 ms for insertCaptionRef() +2024-09-08 08:27:21,750 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:21,790 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML47' to Word document and to used list. +2024-09-08 08:27:21,859 [main] INFO DocWordWriter - --- insertTable() 8 rows: Literals of EnumeratedTypes::ProtIdKind +2024-09-08 08:27:21,887 [main] DEBUG DocWordWriter - ... 28 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:21,899 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-08 08:27:21,946 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML168' to Word document and to used list. +2024-09-08 08:27:21,976 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML169' to Word document and to used list. +2024-09-08 08:27:22,007 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML170' to Word document and to used list. +2024-09-08 08:27:22,034 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML171' to Word document and to used list. +2024-09-08 08:27:22,063 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML172' to Word document and to used list. +2024-09-08 08:27:22,090 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML173' to Word document and to used list. +2024-09-08 08:27:22,117 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML174' to Word document and to used list. +2024-09-08 08:27:22,134 [main] DEBUG DocWordWriter - ... 234 ms for fillValues() +2024-09-08 08:27:22,157 [main] DEBUG DocWordWriter - ... 23 ms for widths (table) +2024-09-08 08:27:22,244 [main] DEBUG DocWordWriter - ... 87 ms for widths (columns) +2024-09-08 08:27:22,272 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-08 08:27:22,316 [main] DEBUG DocWordWriter - ... 44 ms for borders +2024-09-08 08:27:22,316 [main] DEBUG DocWordWriter - ... 183 ms for formatTable() +2024-09-08 08:27:22,326 [main] INFO DocWordWriter - ... 457 ms total for insertTable() +2024-09-08 08:27:22,382 [main] INFO DocWordWriter - ... 49 ms for insertCaption(): Table 23 – Literals of EnumeratedTypes::ProtIdKind +2024-09-08 08:27:22,431 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all literals of ProtIdKind.', [111140 - 111173] +2024-09-08 08:27:22,442 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all literals of ProtIdKind.', [111140 - 111174] +2024-09-08 08:27:22,449 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [111140 - 111140] +2024-09-08 08:27:22,460 [main] INFO DocWordWriter - ... 38 ms for insertCaptionRef() +2024-09-08 08:27:22,460 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:22,495 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML48' to Word document and to used list. +2024-09-08 08:27:22,568 [main] INFO DocWordWriter - --- insertTable() 12 rows: Literals of EnumeratedTypes::EventKind +2024-09-08 08:27:22,594 [main] DEBUG DocWordWriter - ... 26 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:22,610 [main] DEBUG DocWordWriter - ... 16 ms for createTable() +2024-09-08 08:27:22,657 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML175' to Word document and to used list. +2024-09-08 08:27:22,686 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML176' to Word document and to used list. +2024-09-08 08:27:22,714 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML177' to Word document and to used list. +2024-09-08 08:27:22,742 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML178' to Word document and to used list. +2024-09-08 08:27:22,771 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML179' to Word document and to used list. +2024-09-08 08:27:22,803 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML180' to Word document and to used list. +2024-09-08 08:27:22,836 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML181' to Word document and to used list. +2024-09-08 08:27:22,867 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML182' to Word document and to used list. +2024-09-08 08:27:22,896 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML183' to Word document and to used list. +2024-09-08 08:27:22,925 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML184' to Word document and to used list. +2024-09-08 08:27:22,953 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML185' to Word document and to used list. +2024-09-08 08:27:22,970 [main] DEBUG DocWordWriter - ... 360 ms for fillValues() +2024-09-08 08:27:22,997 [main] DEBUG DocWordWriter - ... 27 ms for widths (table) +2024-09-08 08:27:23,104 [main] DEBUG DocWordWriter - ... 107 ms for widths (columns) +2024-09-08 08:27:23,132 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-08 08:27:23,180 [main] DEBUG DocWordWriter - ... 48 ms for borders +2024-09-08 08:27:23,180 [main] DEBUG DocWordWriter - ... 210 ms for formatTable() +2024-09-08 08:27:23,192 [main] INFO DocWordWriter - ... 612 ms total for insertTable() +2024-09-08 08:27:23,252 [main] INFO DocWordWriter - ... 53 ms for insertCaption(): Table 24 – Literals of EnumeratedTypes::EventKind +2024-09-08 08:27:23,299 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all literals of EventKind.', [111868 - 111900] +2024-09-08 08:27:23,310 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all literals of EventKind.', [111868 - 111901] +2024-09-08 08:27:23,316 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [111868 - 111868] +2024-09-08 08:27:23,328 [main] INFO DocWordWriter - ... 40 ms for insertCaptionRef() +2024-09-08 08:27:23,328 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:23,367 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML49' to Word document and to used list. +2024-09-08 08:27:23,428 [main] INFO DocWordWriter - closing MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-08 08:27:24,899 [main] INFO DocWordWriter - opening MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-08 08:27:25,989 [main] INFO OptimOptions - setting view to normal +2024-09-08 08:27:26,028 [main] INFO OptimOptions - disabling pagination +2024-09-08 08:27:26,068 [main] INFO OptimOptions - disabling field update +2024-09-08 08:27:26,182 [main] INFO OptimOptions - disabling screen updating +2024-09-08 08:27:26,193 [main] DEBUG DocWordWriter - current(_optimisedOptions): OptimOptions [viewId=1, normView=true, paginate=false, updFld=false, updScr=false, fastSave=false, spelling=false, grammar=false] +2024-09-08 08:27:26,312 [main] INFO Util - time=[0:00:02.911] closed and reopened document. +2024-09-08 08:27:26,312 [main] INFO Util - +2024-09-08 08:27:26,371 [main] INFO DocWordWriter - --- insertTable() 5 rows: Literals of EnumeratedTypes::TimSyncIssueKind +2024-09-08 08:27:26,396 [main] DEBUG DocWordWriter - ... 25 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:26,406 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-08 08:27:26,456 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML186' to Word document and to used list. +2024-09-08 08:27:26,501 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML187' to Word document and to used list. +2024-09-08 08:27:26,527 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML188' to Word document and to used list. +2024-09-08 08:27:26,555 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML189' to Word document and to used list. +2024-09-08 08:27:26,571 [main] DEBUG DocWordWriter - ... 165 ms for fillValues() +2024-09-08 08:27:26,593 [main] DEBUG DocWordWriter - ... 22 ms for widths (table) +2024-09-08 08:27:26,659 [main] DEBUG DocWordWriter - ... 66 ms for widths (columns) +2024-09-08 08:27:26,683 [main] DEBUG DocWordWriter - ... 24 ms for shadding/merging/styling (rows) +2024-09-08 08:27:26,715 [main] DEBUG DocWordWriter - ... 32 ms for borders +2024-09-08 08:27:26,715 [main] DEBUG DocWordWriter - ... 144 ms for formatTable() +2024-09-08 08:27:26,726 [main] INFO DocWordWriter - ... 344 ms total for insertTable() +2024-09-08 08:27:26,750 [main] INFO DocWordWriter - ... 16 ms for insertCaption(): Table 25 – Literals of EnumeratedTypes::TimSyncIssueKind +2024-09-08 08:27:26,795 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all literals of TimSyncIssueKind.', [112631 - 112670] +2024-09-08 08:27:26,805 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all literals of TimSyncIssueKind.', [112631 - 112671] +2024-09-08 08:27:26,812 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [112631 - 112631] +2024-09-08 08:27:26,823 [main] INFO DocWordWriter - ... 39 ms for insertCaptionRef() +2024-09-08 08:27:26,823 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:26,859 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML50' to Word document and to used list. +2024-09-08 08:27:26,925 [main] INFO DocWordWriter - --- insertTable() 5 rows: Literals of EnumeratedTypes::SecurityProfileKind +2024-09-08 08:27:26,951 [main] DEBUG DocWordWriter - ... 26 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:26,960 [main] DEBUG DocWordWriter - ... 9 ms for createTable() +2024-09-08 08:27:27,006 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML190' to Word document and to used list. +2024-09-08 08:27:27,035 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML191' to Word document and to used list. +2024-09-08 08:27:27,066 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML192' to Word document and to used list. +2024-09-08 08:27:27,096 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML193' to Word document and to used list. +2024-09-08 08:27:27,111 [main] DEBUG DocWordWriter - ... 151 ms for fillValues() +2024-09-08 08:27:27,132 [main] DEBUG DocWordWriter - ... 21 ms for widths (table) +2024-09-08 08:27:27,201 [main] DEBUG DocWordWriter - ... 69 ms for widths (columns) +2024-09-08 08:27:27,225 [main] DEBUG DocWordWriter - ... 24 ms for shadding/merging/styling (rows) +2024-09-08 08:27:27,257 [main] DEBUG DocWordWriter - ... 32 ms for borders +2024-09-08 08:27:27,257 [main] DEBUG DocWordWriter - ... 146 ms for formatTable() +2024-09-08 08:27:27,267 [main] INFO DocWordWriter - ... 332 ms total for insertTable() +2024-09-08 08:27:27,298 [main] INFO DocWordWriter - ... 23 ms for insertCaption(): Table 26 – Literals of EnumeratedTypes::SecurityProfileKind +2024-09-08 08:27:27,348 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all literals of SecurityProfileKind.', [113502 - 113544] +2024-09-08 08:27:27,357 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all literals of SecurityProfileKind.', [113502 - 113545] +2024-09-08 08:27:27,365 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [113502 - 113502] +2024-09-08 08:27:27,374 [main] INFO DocWordWriter - ... 38 ms for insertCaptionRef() +2024-09-08 08:27:27,374 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:27,410 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML51' to Word document and to used list. +2024-09-08 08:27:27,476 [main] INFO DocWordWriter - --- insertTable() 15 rows: Literals of EnumeratedTypes::TimSyncSrcKind +2024-09-08 08:27:27,503 [main] DEBUG DocWordWriter - ... 27 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:27,513 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-08 08:27:27,560 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML194' to Word document and to used list. +2024-09-08 08:27:27,589 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML195' to Word document and to used list. +2024-09-08 08:27:27,618 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML196' to Word document and to used list. +2024-09-08 08:27:27,644 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML197' to Word document and to used list. +2024-09-08 08:27:27,673 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML198' to Word document and to used list. +2024-09-08 08:27:27,703 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML199' to Word document and to used list. +2024-09-08 08:27:27,733 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML200' to Word document and to used list. +2024-09-08 08:27:27,761 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML201' to Word document and to used list. +2024-09-08 08:27:27,789 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML202' to Word document and to used list. +2024-09-08 08:27:27,818 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML203' to Word document and to used list. +2024-09-08 08:27:27,846 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML204' to Word document and to used list. +2024-09-08 08:27:27,875 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML205' to Word document and to used list. +2024-09-08 08:27:27,904 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML206' to Word document and to used list. +2024-09-08 08:27:27,935 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML207' to Word document and to used list. +2024-09-08 08:27:27,952 [main] DEBUG DocWordWriter - ... 439 ms for fillValues() +2024-09-08 08:27:27,979 [main] DEBUG DocWordWriter - ... 26 ms for widths (table) +2024-09-08 08:27:28,091 [main] DEBUG DocWordWriter - ... 113 ms for widths (columns) +2024-09-08 08:27:28,118 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-08 08:27:28,177 [main] DEBUG DocWordWriter - ... 59 ms for borders +2024-09-08 08:27:28,177 [main] DEBUG DocWordWriter - ... 225 ms for formatTable() +2024-09-08 08:27:28,187 [main] INFO DocWordWriter - ... 701 ms total for insertTable() +2024-09-08 08:27:28,221 [main] INFO DocWordWriter - ... 27 ms for insertCaption(): Table 27 – Literals of EnumeratedTypes::TimSyncSrcKind +2024-09-08 08:27:28,269 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all literals of TimSyncSrcKind.', [114261 - 114298] +2024-09-08 08:27:28,279 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all literals of TimSyncSrcKind.', [114261 - 114299] +2024-09-08 08:27:28,286 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [114261 - 114261] +2024-09-08 08:27:28,298 [main] INFO DocWordWriter - ... 39 ms for insertCaptionRef() +2024-09-08 08:27:28,298 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:28,333 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML68' to Word document and to used list. +2024-09-08 08:27:28,407 [main] INFO DocWordWriter - --- insertTable() 3 rows: Attributes of EnumeratedTypes::AppDatStType +2024-09-08 08:27:28,434 [main] DEBUG DocWordWriter - ... 27 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:28,443 [main] DEBUG DocWordWriter - ... 9 ms for createTable() +2024-09-08 08:27:28,551 [main] DEBUG DocWordWriter - ... 107 ms for fillValues() +2024-09-08 08:27:28,571 [main] DEBUG DocWordWriter - ... 20 ms for widths (table) +2024-09-08 08:27:28,656 [main] DEBUG DocWordWriter - ... 85 ms for widths (columns) +2024-09-08 08:27:28,679 [main] DEBUG DocWordWriter - ... 23 ms for shadding/merging/styling (rows) +2024-09-08 08:27:28,709 [main] DEBUG DocWordWriter - ... 30 ms for borders +2024-09-08 08:27:28,709 [main] DEBUG DocWordWriter - ... 159 ms for formatTable() +2024-09-08 08:27:28,719 [main] INFO DocWordWriter - ... 302 ms total for insertTable() +2024-09-08 08:27:28,757 [main] INFO DocWordWriter - ... 30 ms for insertCaption(): Table 28 – Attributes of EnumeratedTypes::AppDatStType +2024-09-08 08:27:28,805 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of AppDatStType.', [116062 - 116099] +2024-09-08 08:27:28,815 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of AppDatStType.', [116062 - 116100] +2024-09-08 08:27:28,821 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [116062 - 116062] +2024-09-08 08:27:28,832 [main] INFO DocWordWriter - ... 36 ms for insertCaptionRef() +2024-09-08 08:27:28,832 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:28,868 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML69' to Word document and to used list. +2024-09-08 08:27:28,931 [main] INFO DocWordWriter - --- insertTable() 3 rows: Attributes of EnumeratedTypes::PhyHealthType +2024-09-08 08:27:28,961 [main] DEBUG DocWordWriter - ... 30 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:28,971 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-08 08:27:29,075 [main] DEBUG DocWordWriter - ... 104 ms for fillValues() +2024-09-08 08:27:29,097 [main] DEBUG DocWordWriter - ... 22 ms for widths (table) +2024-09-08 08:27:29,189 [main] DEBUG DocWordWriter - ... 92 ms for widths (columns) +2024-09-08 08:27:29,213 [main] DEBUG DocWordWriter - ... 24 ms for shadding/merging/styling (rows) +2024-09-08 08:27:29,242 [main] DEBUG DocWordWriter - ... 29 ms for borders +2024-09-08 08:27:29,242 [main] DEBUG DocWordWriter - ... 167 ms for formatTable() +2024-09-08 08:27:29,252 [main] INFO DocWordWriter - ... 311 ms total for insertTable() +2024-09-08 08:27:29,285 [main] INFO DocWordWriter - ... 25 ms for insertCaption(): Table 29 – Attributes of EnumeratedTypes::PhyHealthType +2024-09-08 08:27:29,331 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of PhyHealthType.', [116452 - 116490] +2024-09-08 08:27:29,342 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of PhyHealthType.', [116452 - 116491] +2024-09-08 08:27:29,349 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [116452 - 116452] +2024-09-08 08:27:29,360 [main] INFO DocWordWriter - ... 38 ms for insertCaptionRef() +2024-09-08 08:27:29,360 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:29,398 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML70' to Word document and to used list. +2024-09-08 08:27:29,469 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of EnumeratedTypes::ExtType +2024-09-08 08:27:29,498 [main] DEBUG DocWordWriter - ... 29 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:29,508 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-08 08:27:29,581 [main] DEBUG DocWordWriter - ... 73 ms for fillValues() +2024-09-08 08:27:29,602 [main] DEBUG DocWordWriter - ... 21 ms for widths (table) +2024-09-08 08:27:29,685 [main] DEBUG DocWordWriter - ... 83 ms for widths (columns) +2024-09-08 08:27:29,708 [main] DEBUG DocWordWriter - ... 23 ms for shadding/merging/styling (rows) +2024-09-08 08:27:29,734 [main] DEBUG DocWordWriter - ... 26 ms for borders +2024-09-08 08:27:29,734 [main] DEBUG DocWordWriter - ... 153 ms for formatTable() +2024-09-08 08:27:29,744 [main] INFO DocWordWriter - ... 265 ms total for insertTable() +2024-09-08 08:27:29,782 [main] INFO DocWordWriter - ... 30 ms for insertCaption(): Table 30 – Attributes of EnumeratedTypes::ExtType +2024-09-08 08:27:29,826 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of ExtType.', [116848 - 116880] +2024-09-08 08:27:29,836 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of ExtType.', [116848 - 116881] +2024-09-08 08:27:29,842 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [116848 - 116848] +2024-09-08 08:27:29,854 [main] INFO DocWordWriter - ... 37 ms for insertCaptionRef() +2024-09-08 08:27:29,854 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:29,891 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML71' to Word document and to used list. +2024-09-08 08:27:29,960 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of EnumeratedTypes::IntType +2024-09-08 08:27:29,987 [main] DEBUG DocWordWriter - ... 27 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:29,997 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-08 08:27:30,068 [main] DEBUG DocWordWriter - ... 71 ms for fillValues() +2024-09-08 08:27:30,089 [main] DEBUG DocWordWriter - ... 21 ms for widths (table) +2024-09-08 08:27:30,178 [main] DEBUG DocWordWriter - ... 89 ms for widths (columns) +2024-09-08 08:27:30,204 [main] DEBUG DocWordWriter - ... 26 ms for shadding/merging/styling (rows) +2024-09-08 08:27:30,230 [main] DEBUG DocWordWriter - ... 26 ms for borders +2024-09-08 08:27:30,230 [main] DEBUG DocWordWriter - ... 162 ms for formatTable() +2024-09-08 08:27:30,239 [main] INFO DocWordWriter - ... 270 ms total for insertTable() +2024-09-08 08:27:30,284 [main] INFO DocWordWriter - ... 36 ms for insertCaption(): Table 31 – Attributes of EnumeratedTypes::IntType +2024-09-08 08:27:30,330 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of IntType.', [117195 - 117227] +2024-09-08 08:27:30,339 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of IntType.', [117195 - 117228] +2024-09-08 08:27:30,349 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [117195 - 117195] +2024-09-08 08:27:30,361 [main] INFO DocWordWriter - ... 42 ms for insertCaptionRef() +2024-09-08 08:27:30,361 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:30,397 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML72' to Word document and to used list. +2024-09-08 08:27:30,468 [main] INFO DocWordWriter - --- insertTable() 3 rows: Attributes of EnumeratedTypes::EventType +2024-09-08 08:27:30,500 [main] DEBUG DocWordWriter - ... 32 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:30,511 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-08 08:27:30,624 [main] DEBUG DocWordWriter - ... 113 ms for fillValues() +2024-09-08 08:27:30,645 [main] DEBUG DocWordWriter - ... 21 ms for widths (table) +2024-09-08 08:27:30,730 [main] DEBUG DocWordWriter - ... 85 ms for widths (columns) +2024-09-08 08:27:30,754 [main] DEBUG DocWordWriter - ... 24 ms for shadding/merging/styling (rows) +2024-09-08 08:27:30,788 [main] DEBUG DocWordWriter - ... 34 ms for borders +2024-09-08 08:27:30,788 [main] DEBUG DocWordWriter - ... 164 ms for formatTable() +2024-09-08 08:27:30,798 [main] INFO DocWordWriter - ... 320 ms total for insertTable() +2024-09-08 08:27:30,848 [main] INFO DocWordWriter - ... 42 ms for insertCaption(): Table 32 – Attributes of EnumeratedTypes::EventType +2024-09-08 08:27:30,894 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of EventType.', [117535 - 117569] +2024-09-08 08:27:30,904 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of EventType.', [117535 - 117570] +2024-09-08 08:27:30,912 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [117535 - 117535] +2024-09-08 08:27:30,923 [main] INFO DocWordWriter - ... 38 ms for insertCaptionRef() +2024-09-08 08:27:30,924 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:30,963 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML73' to Word document and to used list. +2024-09-08 08:27:31,036 [main] INFO DocWordWriter - --- insertTable() 3 rows: Attributes of EnumeratedTypes::PSPAccType +2024-09-08 08:27:31,065 [main] DEBUG DocWordWriter - ... 29 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:31,075 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-08 08:27:31,190 [main] DEBUG DocWordWriter - ... 115 ms for fillValues() +2024-09-08 08:27:31,212 [main] DEBUG DocWordWriter - ... 22 ms for widths (table) +2024-09-08 08:27:31,297 [main] DEBUG DocWordWriter - ... 85 ms for widths (columns) +2024-09-08 08:27:31,323 [main] DEBUG DocWordWriter - ... 26 ms for shadding/merging/styling (rows) +2024-09-08 08:27:31,354 [main] DEBUG DocWordWriter - ... 31 ms for borders +2024-09-08 08:27:31,354 [main] DEBUG DocWordWriter - ... 164 ms for formatTable() +2024-09-08 08:27:31,367 [main] INFO DocWordWriter - ... 318 ms total for insertTable() +2024-09-08 08:27:31,429 [main] INFO DocWordWriter - ... 54 ms for insertCaption(): Table 33 – Attributes of EnumeratedTypes::PSPAccType +2024-09-08 08:27:31,476 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of PSPAccType.', [117925 - 117960] +2024-09-08 08:27:31,486 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of PSPAccType.', [117925 - 117961] +2024-09-08 08:27:31,493 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [117925 - 117925] +2024-09-08 08:27:31,503 [main] INFO DocWordWriter - ... 37 ms for insertCaptionRef() +2024-09-08 08:27:31,503 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:31,538 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML74' to Word document and to used list. +2024-09-08 08:27:31,615 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of EnumeratedTypes::ProtIdType +2024-09-08 08:27:31,645 [main] DEBUG DocWordWriter - ... 30 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:31,657 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-08 08:27:31,734 [main] DEBUG DocWordWriter - ... 77 ms for fillValues() +2024-09-08 08:27:31,755 [main] DEBUG DocWordWriter - ... 21 ms for widths (table) +2024-09-08 08:27:31,842 [main] DEBUG DocWordWriter - ... 87 ms for widths (columns) +2024-09-08 08:27:31,867 [main] DEBUG DocWordWriter - ... 25 ms for shadding/merging/styling (rows) +2024-09-08 08:27:31,895 [main] DEBUG DocWordWriter - ... 28 ms for borders +2024-09-08 08:27:31,895 [main] DEBUG DocWordWriter - ... 161 ms for formatTable() +2024-09-08 08:27:31,904 [main] INFO DocWordWriter - ... 280 ms total for insertTable() +2024-09-08 08:27:31,964 [main] INFO DocWordWriter - ... 51 ms for insertCaption(): Table 34 – Attributes of EnumeratedTypes::ProtIdType +2024-09-08 08:27:32,012 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of ProtIdType.', [118396 - 118431] +2024-09-08 08:27:32,023 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of ProtIdType.', [118396 - 118432] +2024-09-08 08:27:32,029 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [118396 - 118396] +2024-09-08 08:27:32,042 [main] INFO DocWordWriter - ... 41 ms for insertCaptionRef() +2024-09-08 08:27:32,042 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:32,081 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML75' to Word document and to used list. +2024-09-08 08:27:32,153 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of EnumeratedTypes::TimSyncIssueType +2024-09-08 08:27:32,181 [main] DEBUG DocWordWriter - ... 28 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:32,192 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-08 08:27:32,273 [main] DEBUG DocWordWriter - ... 81 ms for fillValues() +2024-09-08 08:27:32,296 [main] DEBUG DocWordWriter - ... 23 ms for widths (table) +2024-09-08 08:27:32,380 [main] DEBUG DocWordWriter - ... 84 ms for widths (columns) +2024-09-08 08:27:32,405 [main] DEBUG DocWordWriter - ... 25 ms for shadding/merging/styling (rows) +2024-09-08 08:27:32,435 [main] DEBUG DocWordWriter - ... 30 ms for borders +2024-09-08 08:27:32,435 [main] DEBUG DocWordWriter - ... 162 ms for formatTable() +2024-09-08 08:27:32,446 [main] INFO DocWordWriter - ... 282 ms total for insertTable() +2024-09-08 08:27:32,511 [main] INFO DocWordWriter - ... 57 ms for insertCaption(): Table 35 – Attributes of EnumeratedTypes::TimSyncIssueType +2024-09-08 08:27:32,559 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of TimSyncIssueType.', [118775 - 118816] +2024-09-08 08:27:32,570 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of TimSyncIssueType.', [118775 - 118817] +2024-09-08 08:27:32,576 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [118775 - 118775] +2024-09-08 08:27:32,587 [main] INFO DocWordWriter - ... 38 ms for insertCaptionRef() +2024-09-08 08:27:32,588 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:32,627 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML76' to Word document and to used list. +2024-09-08 08:27:32,705 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of EnumeratedTypes::SecurityProfileType +2024-09-08 08:27:32,738 [main] DEBUG DocWordWriter - ... 33 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:32,749 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-08 08:27:32,825 [main] DEBUG DocWordWriter - ... 76 ms for fillValues() +2024-09-08 08:27:32,846 [main] DEBUG DocWordWriter - ... 21 ms for widths (table) +2024-09-08 08:27:32,936 [main] DEBUG DocWordWriter - ... 90 ms for widths (columns) +2024-09-08 08:27:32,962 [main] DEBUG DocWordWriter - ... 26 ms for shadding/merging/styling (rows) +2024-09-08 08:27:32,989 [main] DEBUG DocWordWriter - ... 27 ms for borders +2024-09-08 08:27:32,989 [main] DEBUG DocWordWriter - ... 164 ms for formatTable() +2024-09-08 08:27:32,998 [main] INFO DocWordWriter - ... 284 ms total for insertTable() +2024-09-08 08:27:33,077 [main] INFO DocWordWriter - ... 70 ms for insertCaption(): Table 36 – Attributes of EnumeratedTypes::SecurityProfileType +2024-09-08 08:27:33,125 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of SecurityProfileType.', [119378 - 119422] +2024-09-08 08:27:33,136 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of SecurityProfileType.', [119378 - 119423] +2024-09-08 08:27:33,143 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [119378 - 119378] +2024-09-08 08:27:33,153 [main] INFO DocWordWriter - ... 38 ms for insertCaptionRef() +2024-09-08 08:27:33,153 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:33,189 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML77' to Word document and to used list. +2024-09-08 08:27:33,257 [main] INFO DocWordWriter - closing MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-08 08:27:34,800 [main] INFO DocWordWriter - opening MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-08 08:27:35,920 [main] INFO OptimOptions - setting view to normal +2024-09-08 08:27:35,970 [main] INFO OptimOptions - disabling pagination +2024-09-08 08:27:36,043 [main] INFO OptimOptions - disabling field update +2024-09-08 08:27:36,134 [main] INFO OptimOptions - disabling screen updating +2024-09-08 08:27:36,144 [main] DEBUG DocWordWriter - current(_optimisedOptions): OptimOptions [viewId=1, normView=true, paginate=false, updFld=false, updScr=false, fastSave=false, spelling=false, grammar=false] +2024-09-08 08:27:36,240 [main] INFO Util - time=[0:00:03.010] closed and reopened document. +2024-09-08 08:27:36,241 [main] INFO Util - +2024-09-08 08:27:36,319 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of EnumeratedTypes::TimSyncSrcType +2024-09-08 08:27:36,348 [main] DEBUG DocWordWriter - ... 29 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:36,356 [main] DEBUG DocWordWriter - ... 8 ms for createTable() +2024-09-08 08:27:36,427 [main] DEBUG DocWordWriter - ... 71 ms for fillValues() +2024-09-08 08:27:36,449 [main] DEBUG DocWordWriter - ... 21 ms for widths (table) +2024-09-08 08:27:36,527 [main] DEBUG DocWordWriter - ... 78 ms for widths (columns) +2024-09-08 08:27:36,552 [main] DEBUG DocWordWriter - ... 25 ms for shadding/merging/styling (rows) +2024-09-08 08:27:36,580 [main] DEBUG DocWordWriter - ... 28 ms for borders +2024-09-08 08:27:36,580 [main] DEBUG DocWordWriter - ... 153 ms for formatTable() +2024-09-08 08:27:36,589 [main] INFO DocWordWriter - ... 261 ms total for insertTable() +2024-09-08 08:27:36,619 [main] INFO DocWordWriter - ... 20 ms for insertCaption(): Table 37 – Attributes of EnumeratedTypes::TimSyncSrcType +2024-09-08 08:27:36,665 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of TimSyncSrcType.', [119800 - 119839] +2024-09-08 08:27:36,675 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of TimSyncSrcType.', [119800 - 119840] +2024-09-08 08:27:36,682 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [119800 - 119800] +2024-09-08 08:27:36,692 [main] INFO DocWordWriter - ... 37 ms for insertCaptionRef() +2024-09-08 08:27:36,692 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:36,731 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML78' to Word document and to used list. +2024-09-08 08:27:36,801 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of EnumeratedTypes::LnkType +2024-09-08 08:27:36,828 [main] DEBUG DocWordWriter - ... 27 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:36,837 [main] DEBUG DocWordWriter - ... 9 ms for createTable() +2024-09-08 08:27:36,908 [main] DEBUG DocWordWriter - ... 71 ms for fillValues() +2024-09-08 08:27:36,928 [main] DEBUG DocWordWriter - ... 20 ms for widths (table) +2024-09-08 08:27:37,011 [main] DEBUG DocWordWriter - ... 83 ms for widths (columns) +2024-09-08 08:27:37,037 [main] DEBUG DocWordWriter - ... 26 ms for shadding/merging/styling (rows) +2024-09-08 08:27:37,064 [main] DEBUG DocWordWriter - ... 27 ms for borders +2024-09-08 08:27:37,064 [main] DEBUG DocWordWriter - ... 156 ms for formatTable() +2024-09-08 08:27:37,074 [main] INFO DocWordWriter - ... 263 ms total for insertTable() +2024-09-08 08:27:37,104 [main] INFO DocWordWriter - ... 22 ms for insertCaption(): Table 38 – Attributes of EnumeratedTypes::LnkType +2024-09-08 08:27:37,152 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of LnkType.', [120221 - 120253] +2024-09-08 08:27:37,162 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of LnkType.', [120221 - 120254] +2024-09-08 08:27:37,169 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [120221 - 120221] +2024-09-08 08:27:37,180 [main] INFO DocWordWriter - ... 38 ms for insertCaptionRef() +2024-09-08 08:27:37,180 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:37,190 [main] INFO Util - time=[0:00:18.781] replaced [120453 - 120453] PACKAGE EnumeratedTypes, figures (14 before ), tables (16 before 22 mine)... +2024-09-08 08:27:37,190 [main] INFO Util - +2024-09-08 08:27:37,196 [main] INFO AbstractWordWriter - replacing [120499 - 120530] PACKAGE Overview, figures (14 before ), tables (38 before )... +2024-09-08 08:27:37,223 [main] INFO AbstractWordWriter - writing doc for package Overview ... +2024-09-08 08:27:37,382 [main] INFO DocWordWriter - ... 18 ms for insertCaption(): Figure 15 – Class diagram Overview::Part7 Classes Overview +2024-09-08 08:27:37,456 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': IEC 62351-7 Objects overview', [121118 - 121148] +2024-09-08 08:27:37,464 [main] TRACE DocWordWriter - prepend : range.txt = ': IEC 62351-7 Objects overview', [121118 - 121148] +2024-09-08 08:27:37,470 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [121118 - 121118] +2024-09-08 08:27:37,480 [main] INFO DocWordWriter - ... 29 ms for insertCaptionRef() +2024-09-08 08:27:37,480 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:37,492 [main] INFO Util - time=[0:00:00.302] replaced [121032 - 121183] PACKAGE Overview, figures (14 before 1 mine), tables (38 before )... +2024-09-08 08:27:37,492 [main] INFO Util - +2024-09-08 08:27:37,497 [main] INFO AbstractWordWriter - replacing [121216 - 121258] PACKAGE Environmental Agent, figures (15 before ), tables (38 before )... +2024-09-08 08:27:37,524 [main] INFO AbstractWordWriter - writing doc for package Environmental Agent ... +2024-09-08 08:27:37,681 [main] INFO DocWordWriter - ... 21 ms for insertCaption(): Figure 16 – Class diagram Environmental Agent::Environmental +2024-09-08 08:27:37,749 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': The Environmental agent class.', [121554 - 121586] +2024-09-08 08:27:37,756 [main] TRACE DocWordWriter - prepend : range.txt = ': The Environmental agent class.', [121554 - 121586] +2024-09-08 08:27:37,763 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [121554 - 121554] +2024-09-08 08:27:37,772 [main] INFO DocWordWriter - ... 28 ms for insertCaptionRef() +2024-09-08 08:27:37,773 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:37,814 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML79' to Word document and to used list. +2024-09-08 08:27:37,883 [main] INFO DocWordWriter - --- insertTable() 14 rows: Attributes of Environmental Agent::Environmental +2024-09-08 08:27:37,911 [main] DEBUG DocWordWriter - ... 28 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:37,922 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-08 08:27:38,399 [main] DEBUG DocWordWriter - ... 477 ms for fillValues() +2024-09-08 08:27:38,431 [main] DEBUG DocWordWriter - ... 32 ms for widths (table) +2024-09-08 08:27:38,579 [main] DEBUG DocWordWriter - ... 148 ms for widths (columns) +2024-09-08 08:27:38,607 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-08 08:27:38,664 [main] DEBUG DocWordWriter - ... 57 ms for borders +2024-09-08 08:27:38,664 [main] DEBUG DocWordWriter - ... 265 ms for formatTable() +2024-09-08 08:27:38,675 [main] INFO DocWordWriter - ... 781 ms total for insertTable() +2024-09-08 08:27:38,716 [main] INFO DocWordWriter - ... 33 ms for insertCaption(): Table 39 – Attributes of Environmental Agent::Environmental +2024-09-08 08:27:38,762 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Environmental.', [121937 - 121975] +2024-09-08 08:27:38,774 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Environmental.', [121937 - 121976] +2024-09-08 08:27:38,781 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [121937 - 121937] +2024-09-08 08:27:38,791 [main] INFO DocWordWriter - ... 40 ms for insertCaptionRef() +2024-09-08 08:27:38,791 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:38,828 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML80' to Word document and to used list. +2024-09-08 08:27:38,897 [main] INFO DocWordWriter - --- insertTable() 8 rows: Attributes of Environmental Agent::PSUPEntry +2024-09-08 08:27:38,923 [main] DEBUG DocWordWriter - ... 26 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:38,934 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-08 08:27:39,205 [main] DEBUG DocWordWriter - ... 271 ms for fillValues() +2024-09-08 08:27:39,234 [main] DEBUG DocWordWriter - ... 29 ms for widths (table) +2024-09-08 08:27:39,358 [main] DEBUG DocWordWriter - ... 124 ms for widths (columns) +2024-09-08 08:27:39,386 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-08 08:27:39,429 [main] DEBUG DocWordWriter - ... 43 ms for borders +2024-09-08 08:27:39,429 [main] DEBUG DocWordWriter - ... 224 ms for formatTable() +2024-09-08 08:27:39,439 [main] INFO DocWordWriter - ... 532 ms total for insertTable() +2024-09-08 08:27:39,489 [main] INFO DocWordWriter - ... 42 ms for insertCaption(): Table 40 – Attributes of Environmental Agent::PSUPEntry +2024-09-08 08:27:39,534 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of PSUPEntry.', [123579 - 123613] +2024-09-08 08:27:39,545 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of PSUPEntry.', [123579 - 123614] +2024-09-08 08:27:39,552 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [123579 - 123579] +2024-09-08 08:27:39,564 [main] INFO DocWordWriter - ... 39 ms for insertCaptionRef() +2024-09-08 08:27:39,564 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:39,601 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML81' to Word document and to used list. +2024-09-08 08:27:39,672 [main] INFO DocWordWriter - --- insertTable() 3 rows: Attributes of Environmental Agent::Notification +2024-09-08 08:27:39,699 [main] DEBUG DocWordWriter - ... 27 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:39,709 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-08 08:27:39,819 [main] DEBUG DocWordWriter - ... 110 ms for fillValues() +2024-09-08 08:27:39,842 [main] DEBUG DocWordWriter - ... 23 ms for widths (table) +2024-09-08 08:27:39,929 [main] DEBUG DocWordWriter - ... 87 ms for widths (columns) +2024-09-08 08:27:39,954 [main] DEBUG DocWordWriter - ... 25 ms for shadding/merging/styling (rows) +2024-09-08 08:27:39,985 [main] DEBUG DocWordWriter - ... 31 ms for borders +2024-09-08 08:27:39,985 [main] DEBUG DocWordWriter - ... 166 ms for formatTable() +2024-09-08 08:27:39,995 [main] INFO DocWordWriter - ... 313 ms total for insertTable() +2024-09-08 08:27:40,046 [main] INFO DocWordWriter - ... 43 ms for insertCaption(): Table 41 – Attributes of Environmental Agent::Notification +2024-09-08 08:27:40,094 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Notification.', [124574 - 124611] +2024-09-08 08:27:40,104 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Notification.', [124574 - 124612] +2024-09-08 08:27:40,110 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [124574 - 124574] +2024-09-08 08:27:40,122 [main] INFO DocWordWriter - ... 39 ms for insertCaptionRef() +2024-09-08 08:27:40,122 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:40,161 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML82' to Word document and to used list. +2024-09-08 08:27:40,230 [main] INFO DocWordWriter - --- insertTable() 6 rows: Attributes of Environmental Agent::SecurityNotification +2024-09-08 08:27:40,260 [main] DEBUG DocWordWriter - ... 30 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:40,271 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-08 08:27:40,499 [main] DEBUG DocWordWriter - ... 228 ms for fillValues() +2024-09-08 08:27:40,523 [main] DEBUG DocWordWriter - ... 23 ms for widths (table) +2024-09-08 08:27:40,620 [main] DEBUG DocWordWriter - ... 97 ms for widths (columns) +2024-09-08 08:27:40,645 [main] DEBUG DocWordWriter - ... 25 ms for shadding/merging/styling (rows) +2024-09-08 08:27:40,682 [main] DEBUG DocWordWriter - ... 37 ms for borders +2024-09-08 08:27:40,682 [main] DEBUG DocWordWriter - ... 183 ms for formatTable() +2024-09-08 08:27:40,694 [main] INFO DocWordWriter - ... 452 ms total for insertTable() +2024-09-08 08:27:40,751 [main] INFO DocWordWriter - ... 49 ms for insertCaption(): Table 42 – Attributes of Environmental Agent::SecurityNotification +2024-09-08 08:27:40,801 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of SecurityNotification.', [125160 - 125205] +2024-09-08 08:27:40,813 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of SecurityNotification.', [125160 - 125206] +2024-09-08 08:27:40,819 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [125160 - 125160] +2024-09-08 08:27:40,831 [main] INFO DocWordWriter - ... 41 ms for insertCaptionRef() +2024-09-08 08:27:40,831 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:40,840 [main] INFO Util - time=[0:00:03.348] replaced [125802 - 125802] PACKAGE Environmental Agent, figures (15 before 1 mine), tables (38 before 4 mine)... +2024-09-08 08:27:40,841 [main] INFO Util - +2024-09-08 08:27:40,845 [main] INFO AbstractWordWriter - replacing [125846 - 125878] PACKAGE IED Agent, figures (16 before ), tables (42 before )... +2024-09-08 08:27:40,875 [main] INFO AbstractWordWriter - writing doc for package IED Agent ... +2024-09-08 08:27:41,082 [main] INFO DocWordWriter - ... 37 ms for insertCaption(): Figure 17 – Class diagram IED Agent::IED +2024-09-08 08:27:41,158 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': The Intelligent Electronic Device class attributes', [126164 - 126216] +2024-09-08 08:27:41,165 [main] TRACE DocWordWriter - prepend : range.txt = ': The Intelligent Electronic Device class attributes', [126164 - 126216] +2024-09-08 08:27:41,172 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [126164 - 126164] +2024-09-08 08:27:41,184 [main] INFO DocWordWriter - ... 31 ms for insertCaptionRef() +2024-09-08 08:27:41,184 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:41,222 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML83' to Word document and to used list. +2024-09-08 08:27:41,293 [main] INFO DocWordWriter - --- insertTable() 38 rows: Attributes of IED Agent::IED +2024-09-08 08:27:41,320 [main] DEBUG DocWordWriter - ... 27 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:41,338 [main] DEBUG DocWordWriter - ... 18 ms for createTable() +2024-09-08 08:27:42,698 [main] DEBUG DocWordWriter - ... 1360 ms for fillValues() +2024-09-08 08:27:42,754 [main] DEBUG DocWordWriter - ... 56 ms for widths (table) +2024-09-08 08:27:43,030 [main] DEBUG DocWordWriter - ... 276 ms for widths (columns) +2024-09-08 08:27:43,058 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-08 08:27:43,173 [main] DEBUG DocWordWriter - ... 115 ms for borders +2024-09-08 08:27:43,173 [main] DEBUG DocWordWriter - ... 475 ms for formatTable() +2024-09-08 08:27:43,184 [main] INFO DocWordWriter - ... 1880 ms total for insertTable() +2024-09-08 08:27:43,263 [main] INFO DocWordWriter - ... 71 ms for insertCaption(): Table 43 – Attributes of IED Agent::IED +2024-09-08 08:27:43,311 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of IED.', [126556 - 126584] +2024-09-08 08:27:43,324 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of IED.', [126556 - 126585] +2024-09-08 08:27:43,332 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [126556 - 126556] +2024-09-08 08:27:43,347 [main] INFO DocWordWriter - ... 46 ms for insertCaptionRef() +2024-09-08 08:27:43,347 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:43,386 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML84' to Word document and to used list. +2024-09-08 08:27:43,458 [main] INFO DocWordWriter - --- insertTable() 9 rows: Attributes of IED Agent::CPUEntry +2024-09-08 08:27:43,486 [main] DEBUG DocWordWriter - ... 28 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:43,498 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-08 08:27:43,835 [main] DEBUG DocWordWriter - ... 337 ms for fillValues() +2024-09-08 08:27:43,862 [main] DEBUG DocWordWriter - ... 27 ms for widths (table) +2024-09-08 08:27:43,986 [main] DEBUG DocWordWriter - ... 124 ms for widths (columns) +2024-09-08 08:27:44,013 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-08 08:27:44,057 [main] DEBUG DocWordWriter - ... 44 ms for borders +2024-09-08 08:27:44,057 [main] DEBUG DocWordWriter - ... 222 ms for formatTable() +2024-09-08 08:27:44,068 [main] INFO DocWordWriter - ... 599 ms total for insertTable() +2024-09-08 08:27:44,142 [main] INFO DocWordWriter - ... 66 ms for insertCaption(): Table 44 – Attributes of IED Agent::CPUEntry +2024-09-08 08:27:44,194 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of CPUEntry.', [131017 - 131050] +2024-09-08 08:27:44,205 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of CPUEntry.', [131017 - 131051] +2024-09-08 08:27:44,212 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [131017 - 131017] +2024-09-08 08:27:44,224 [main] INFO DocWordWriter - ... 41 ms for insertCaptionRef() +2024-09-08 08:27:44,224 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:44,262 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML85' to Word document and to used list. +2024-09-08 08:27:44,338 [main] INFO DocWordWriter - --- insertTable() 10 rows: Attributes of IED Agent::EXTEntry +2024-09-08 08:27:44,368 [main] DEBUG DocWordWriter - ... 30 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:44,382 [main] DEBUG DocWordWriter - ... 14 ms for createTable() +2024-09-08 08:27:44,750 [main] DEBUG DocWordWriter - ... 368 ms for fillValues() +2024-09-08 08:27:44,779 [main] DEBUG DocWordWriter - ... 29 ms for widths (table) +2024-09-08 08:27:44,907 [main] DEBUG DocWordWriter - ... 128 ms for widths (columns) +2024-09-08 08:27:44,935 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-08 08:27:44,982 [main] DEBUG DocWordWriter - ... 47 ms for borders +2024-09-08 08:27:44,982 [main] DEBUG DocWordWriter - ... 232 ms for formatTable() +2024-09-08 08:27:44,995 [main] INFO DocWordWriter - ... 644 ms total for insertTable() +2024-09-08 08:27:45,087 [main] INFO DocWordWriter - ... 84 ms for insertCaption(): Table 45 – Attributes of IED Agent::EXTEntry +2024-09-08 08:27:45,136 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of EXTEntry.', [131980 - 132013] +2024-09-08 08:27:45,147 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of EXTEntry.', [131980 - 132014] +2024-09-08 08:27:45,153 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [131980 - 131980] +2024-09-08 08:27:45,164 [main] INFO DocWordWriter - ... 39 ms for insertCaptionRef() +2024-09-08 08:27:45,164 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:45,205 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML86' to Word document and to used list. +2024-09-08 08:27:45,280 [main] INFO DocWordWriter - --- insertTable() 7 rows: Attributes of IED Agent::STOREEntry +2024-09-08 08:27:45,311 [main] DEBUG DocWordWriter - ... 31 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:45,323 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-08 08:27:45,594 [main] DEBUG DocWordWriter - ... 271 ms for fillValues() +2024-09-08 08:27:45,621 [main] DEBUG DocWordWriter - ... 27 ms for widths (table) +2024-09-08 08:27:45,727 [main] DEBUG DocWordWriter - ... 106 ms for widths (columns) +2024-09-08 08:27:45,752 [main] DEBUG DocWordWriter - ... 25 ms for shadding/merging/styling (rows) +2024-09-08 08:27:45,794 [main] DEBUG DocWordWriter - ... 42 ms for borders +2024-09-08 08:27:45,794 [main] DEBUG DocWordWriter - ... 200 ms for formatTable() +2024-09-08 08:27:45,807 [main] INFO DocWordWriter - ... 514 ms total for insertTable() +2024-09-08 08:27:45,899 [main] INFO DocWordWriter - ... 84 ms for insertCaption(): Table 46 – Attributes of IED Agent::STOREEntry +2024-09-08 08:27:45,949 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of STOREEntry.', [133094 - 133129] +2024-09-08 08:27:45,959 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of STOREEntry.', [133094 - 133130] +2024-09-08 08:27:45,965 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [133094 - 133094] +2024-09-08 08:27:45,981 [main] INFO DocWordWriter - ... 44 ms for insertCaptionRef() +2024-09-08 08:27:45,981 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:46,020 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML87' to Word document and to used list. +2024-09-08 08:27:46,096 [main] INFO DocWordWriter - --- insertTable() 7 rows: Attributes of IED Agent::Notification +2024-09-08 08:27:46,124 [main] DEBUG DocWordWriter - ... 28 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:46,137 [main] DEBUG DocWordWriter - ... 13 ms for createTable() +2024-09-08 08:27:46,398 [main] DEBUG DocWordWriter - ... 261 ms for fillValues() +2024-09-08 08:27:46,424 [main] DEBUG DocWordWriter - ... 26 ms for widths (table) +2024-09-08 08:27:46,526 [main] DEBUG DocWordWriter - ... 102 ms for widths (columns) +2024-09-08 08:27:46,552 [main] DEBUG DocWordWriter - ... 26 ms for shadding/merging/styling (rows) +2024-09-08 08:27:46,607 [main] DEBUG DocWordWriter - ... 55 ms for borders +2024-09-08 08:27:46,607 [main] DEBUG DocWordWriter - ... 209 ms for formatTable() +2024-09-08 08:27:46,618 [main] INFO DocWordWriter - ... 511 ms total for insertTable() +2024-09-08 08:27:46,728 [main] INFO DocWordWriter - ... 102 ms for insertCaption(): Table 47 – Attributes of IED Agent::Notification +2024-09-08 08:27:46,779 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Notification.', [133880 - 133917] +2024-09-08 08:27:46,792 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Notification.', [133880 - 133918] +2024-09-08 08:27:46,799 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [133880 - 133880] +2024-09-08 08:27:46,814 [main] INFO DocWordWriter - ... 47 ms for insertCaptionRef() +2024-09-08 08:27:46,815 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:46,853 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML88' to Word document and to used list. +2024-09-08 08:27:46,934 [main] INFO DocWordWriter - --- insertTable() 7 rows: Attributes of IED Agent::SecurityNotification +2024-09-08 08:27:46,962 [main] DEBUG DocWordWriter - ... 28 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:46,977 [main] DEBUG DocWordWriter - ... 15 ms for createTable() +2024-09-08 08:27:47,248 [main] DEBUG DocWordWriter - ... 271 ms for fillValues() +2024-09-08 08:27:47,274 [main] DEBUG DocWordWriter - ... 26 ms for widths (table) +2024-09-08 08:27:47,375 [main] DEBUG DocWordWriter - ... 101 ms for widths (columns) +2024-09-08 08:27:47,403 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-08 08:27:47,443 [main] DEBUG DocWordWriter - ... 40 ms for borders +2024-09-08 08:27:47,443 [main] DEBUG DocWordWriter - ... 195 ms for formatTable() +2024-09-08 08:27:47,453 [main] INFO DocWordWriter - ... 509 ms total for insertTable() +2024-09-08 08:27:47,558 [main] INFO DocWordWriter - ... 97 ms for insertCaption(): Table 48 – Attributes of IED Agent::SecurityNotification +2024-09-08 08:27:47,608 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of SecurityNotification.', [134893 - 134938] +2024-09-08 08:27:47,620 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of SecurityNotification.', [134893 - 134939] +2024-09-08 08:27:47,626 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [134893 - 134893] +2024-09-08 08:27:47,640 [main] INFO DocWordWriter - ... 43 ms for insertCaptionRef() +2024-09-08 08:27:47,641 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:47,651 [main] INFO Util - time=[0:00:06.810] replaced [135872 - 135872] PACKAGE IED Agent, figures (16 before 1 mine), tables (42 before 6 mine)... +2024-09-08 08:27:47,651 [main] INFO Util - +2024-09-08 08:27:47,656 [main] INFO AbstractWordWriter - replacing [135906 - 135957] PACKAGE Application Protocols Agents, figures (17 before ), tables (48 before )... +2024-09-08 08:27:47,687 [main] INFO AbstractWordWriter - writing doc for package Application Protocols Agents ... +2024-09-08 08:27:47,791 [main] INFO AbstractWordWriter - writing doc for package Common objects ... +2024-09-08 08:27:47,954 [main] INFO DocWordWriter - ... 41 ms for insertCaption(): Figure 18 – Class diagram Common objects::Application Protocol common objects +2024-09-08 08:27:48,032 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': Application Protocol common objects', [136854 - 136891] +2024-09-08 08:27:48,039 [main] TRACE DocWordWriter - prepend : range.txt = ': Application Protocol common objects', [136854 - 136891] +2024-09-08 08:27:48,046 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [136854 - 136854] +2024-09-08 08:27:48,063 [main] INFO DocWordWriter - ... 36 ms for insertCaptionRef() +2024-09-08 08:27:48,063 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:48,103 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML89' to Word document and to used list. +2024-09-08 08:27:48,170 [main] INFO DocWordWriter - closing MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-08 08:27:49,834 [main] INFO DocWordWriter - opening MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-08 08:27:51,041 [main] INFO OptimOptions - setting view to normal +2024-09-08 08:27:51,084 [main] INFO OptimOptions - disabling pagination +2024-09-08 08:27:51,125 [main] INFO OptimOptions - disabling field update +2024-09-08 08:27:51,213 [main] INFO OptimOptions - disabling screen updating +2024-09-08 08:27:51,260 [main] DEBUG DocWordWriter - current(_optimisedOptions): OptimOptions [viewId=1, normView=true, paginate=false, updFld=false, updScr=false, fastSave=false, spelling=false, grammar=false] +2024-09-08 08:27:51,425 [main] INFO Util - time=[0:00:03.282] closed and reopened document. +2024-09-08 08:27:51,425 [main] INFO Util - +2024-09-08 08:27:51,466 [main] INFO DocWordWriter - --- insertTable() 9 rows: Attributes of Common objects::CommonProtocolInfo +2024-09-08 08:27:51,493 [main] DEBUG DocWordWriter - ... 27 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:51,503 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-08 08:27:51,819 [main] DEBUG DocWordWriter - ... 316 ms for fillValues() +2024-09-08 08:27:51,849 [main] DEBUG DocWordWriter - ... 30 ms for widths (table) +2024-09-08 08:27:51,975 [main] DEBUG DocWordWriter - ... 126 ms for widths (columns) +2024-09-08 08:27:52,003 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-08 08:27:52,049 [main] DEBUG DocWordWriter - ... 46 ms for borders +2024-09-08 08:27:52,049 [main] DEBUG DocWordWriter - ... 230 ms for formatTable() +2024-09-08 08:27:52,060 [main] INFO DocWordWriter - ... 583 ms total for insertTable() +2024-09-08 08:27:52,097 [main] INFO DocWordWriter - ... 29 ms for insertCaption(): Table 49 – Attributes of Common objects::CommonProtocolInfo +2024-09-08 08:27:52,148 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of CommonProtocolInfo.', [137366 - 137409] +2024-09-08 08:27:52,159 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of CommonProtocolInfo.', [137366 - 137410] +2024-09-08 08:27:52,166 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [137366 - 137366] +2024-09-08 08:27:52,176 [main] INFO DocWordWriter - ... 40 ms for insertCaptionRef() +2024-09-08 08:27:52,176 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:52,248 [main] INFO AbstractWordWriter - writing doc for package IEC62351-3 ed.2 Agent ... +2024-09-08 08:27:52,467 [main] INFO DocWordWriter - ... 27 ms for insertCaption(): Figure 19 – Class diagram IEC62351-3 ed.2 Agent::IEC 62351-3 ed.2 Agent Relationships +2024-09-08 08:27:52,540 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': This picture depicts the relationship between IEC 62351-3 ed.2 objects', [139058 - 139130] +2024-09-08 08:27:52,547 [main] TRACE DocWordWriter - prepend : range.txt = ': This picture depicts the relationship between IEC 62351-3 ed.2 objects', [139058 - 139130] +2024-09-08 08:27:52,554 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [139058 - 139058] +2024-09-08 08:27:52,564 [main] INFO DocWordWriter - ... 29 ms for insertCaptionRef() +2024-09-08 08:27:52,564 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:52,609 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML90' to Word document and to used list. +2024-09-08 08:27:52,685 [main] INFO DocWordWriter - --- insertTable() 36 rows: Attributes of IEC62351-3 ed.2 Agent::IEC62351-3ed2security +2024-09-08 08:27:52,713 [main] DEBUG DocWordWriter - ... 28 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:52,727 [main] DEBUG DocWordWriter - ... 14 ms for createTable() +2024-09-08 08:27:54,059 [main] DEBUG DocWordWriter - ... 1332 ms for fillValues() +2024-09-08 08:27:54,143 [main] DEBUG DocWordWriter - ... 84 ms for widths (table) +2024-09-08 08:27:54,413 [main] DEBUG DocWordWriter - ... 270 ms for widths (columns) +2024-09-08 08:27:54,441 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-08 08:27:54,547 [main] DEBUG DocWordWriter - ... 106 ms for borders +2024-09-08 08:27:54,547 [main] DEBUG DocWordWriter - ... 488 ms for formatTable() +2024-09-08 08:27:54,560 [main] INFO DocWordWriter - ... 1862 ms total for insertTable() +2024-09-08 08:27:54,611 [main] INFO DocWordWriter - ... 43 ms for insertCaption(): Table 50 – Attributes of IEC62351-3 ed.2 Agent::IEC62351-3ed2security +2024-09-08 08:27:54,668 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of IEC62351-3ed2security.', [139267 - 139313] +2024-09-08 08:27:54,679 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of IEC62351-3ed2security.', [139267 - 139314] +2024-09-08 08:27:54,685 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [139267 - 139267] +2024-09-08 08:27:54,697 [main] INFO DocWordWriter - ... 42 ms for insertCaptionRef() +2024-09-08 08:27:54,697 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:54,733 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML91' to Word document and to used list. +2024-09-08 08:27:54,809 [main] INFO DocWordWriter - --- insertTable() 50 rows: Attributes of IEC62351-3 ed.2 Agent::TLSSession +2024-09-08 08:27:54,839 [main] DEBUG DocWordWriter - ... 30 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:54,866 [main] DEBUG DocWordWriter - ... 27 ms for createTable() +2024-09-08 08:27:56,722 [main] DEBUG DocWordWriter - ... 1856 ms for fillValues() +2024-09-08 08:27:56,790 [main] DEBUG DocWordWriter - ... 68 ms for widths (table) +2024-09-08 08:27:57,126 [main] DEBUG DocWordWriter - ... 336 ms for widths (columns) +2024-09-08 08:27:57,158 [main] DEBUG DocWordWriter - ... 32 ms for shadding/merging/styling (rows) +2024-09-08 08:27:57,304 [main] DEBUG DocWordWriter - ... 146 ms for borders +2024-09-08 08:27:57,304 [main] DEBUG DocWordWriter - ... 582 ms for formatTable() +2024-09-08 08:27:57,315 [main] INFO DocWordWriter - ... 2495 ms total for insertTable() +2024-09-08 08:27:57,377 [main] INFO DocWordWriter - ... 54 ms for insertCaption(): Table 51 – Attributes of IEC62351-3 ed.2 Agent::TLSSession +2024-09-08 08:27:57,427 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of TLSSession.', [144097 - 144132] +2024-09-08 08:27:57,438 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of TLSSession.', [144097 - 144133] +2024-09-08 08:27:57,444 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [144097 - 144097] +2024-09-08 08:27:57,459 [main] INFO DocWordWriter - ... 43 ms for insertCaptionRef() +2024-09-08 08:27:57,459 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:57,497 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML105' to Word document and to used list. +2024-09-08 08:27:57,575 [main] INFO DocWordWriter - --- insertTable() 42 rows: Attributes of IEC62351-3 ed.2 Agent::Summary +2024-09-08 08:27:57,602 [main] DEBUG DocWordWriter - ... 27 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:27:57,625 [main] DEBUG DocWordWriter - ... 23 ms for createTable() +2024-09-08 08:27:59,235 [main] DEBUG DocWordWriter - ... 1610 ms for fillValues() +2024-09-08 08:27:59,296 [main] DEBUG DocWordWriter - ... 61 ms for widths (table) +2024-09-08 08:27:59,597 [main] DEBUG DocWordWriter - ... 301 ms for widths (columns) +2024-09-08 08:27:59,630 [main] DEBUG DocWordWriter - ... 33 ms for shadding/merging/styling (rows) +2024-09-08 08:27:59,750 [main] DEBUG DocWordWriter - ... 120 ms for borders +2024-09-08 08:27:59,750 [main] DEBUG DocWordWriter - ... 515 ms for formatTable() +2024-09-08 08:27:59,762 [main] INFO DocWordWriter - ... 2175 ms total for insertTable() +2024-09-08 08:27:59,833 [main] INFO DocWordWriter - ... 62 ms for insertCaption(): Table 52 – Attributes of IEC62351-3 ed.2 Agent::Summary +2024-09-08 08:27:59,885 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Summary.', [149299 - 149331] +2024-09-08 08:27:59,895 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Summary.', [149299 - 149332] +2024-09-08 08:27:59,902 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [149299 - 149299] +2024-09-08 08:27:59,919 [main] INFO DocWordWriter - ... 45 ms for insertCaptionRef() +2024-09-08 08:27:59,919 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:27:59,964 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML106' to Word document and to used list. +2024-09-08 08:28:00,046 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification +2024-09-08 08:28:00,079 [main] DEBUG DocWordWriter - ... 33 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:28:00,091 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-08 08:28:00,183 [main] DEBUG DocWordWriter - ... 92 ms for fillValues() +2024-09-08 08:28:00,204 [main] DEBUG DocWordWriter - ... 21 ms for widths (table) +2024-09-08 08:28:00,292 [main] DEBUG DocWordWriter - ... 88 ms for widths (columns) +2024-09-08 08:28:00,319 [main] DEBUG DocWordWriter - ... 27 ms for shadding/merging/styling (rows) +2024-09-08 08:28:00,347 [main] DEBUG DocWordWriter - ... 28 ms for borders +2024-09-08 08:28:00,347 [main] DEBUG DocWordWriter - ... 164 ms for formatTable() +2024-09-08 08:28:00,361 [main] INFO DocWordWriter - ... 301 ms total for insertTable() +2024-09-08 08:28:00,425 [main] INFO DocWordWriter - ... 55 ms for insertCaption(): Table 53 – Attributes of IEC62351-3 ed.2 Agent::IEC62351part3ed2SecurityNotification +2024-09-08 08:28:00,473 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of IEC62351part3ed2SecurityNotification.', [153856 - 153917] +2024-09-08 08:28:00,484 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of IEC62351part3ed2SecurityNotification.', [153856 - 153918] +2024-09-08 08:28:00,491 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [153856 - 153856] +2024-09-08 08:28:00,507 [main] INFO DocWordWriter - ... 43 ms for insertCaptionRef() +2024-09-08 08:28:00,507 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:28:00,548 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML92' to Word document and to used list. +2024-09-08 08:28:00,627 [main] INFO DocWordWriter - --- insertTable() 50 rows: Attributes of IEC62351-3 ed.2 Agent::ClientTLS +2024-09-08 08:28:00,656 [main] DEBUG DocWordWriter - ... 29 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:28:00,691 [main] DEBUG DocWordWriter - ... 35 ms for createTable() +2024-09-08 08:28:02,664 [main] DEBUG DocWordWriter - ... 1973 ms for fillValues() +2024-09-08 08:28:02,727 [main] DEBUG DocWordWriter - ... 63 ms for widths (table) +2024-09-08 08:28:03,041 [main] DEBUG DocWordWriter - ... 314 ms for widths (columns) +2024-09-08 08:28:03,075 [main] DEBUG DocWordWriter - ... 34 ms for shadding/merging/styling (rows) +2024-09-08 08:28:03,233 [main] DEBUG DocWordWriter - ... 158 ms for borders +2024-09-08 08:28:03,233 [main] DEBUG DocWordWriter - ... 569 ms for formatTable() +2024-09-08 08:28:03,244 [main] INFO DocWordWriter - ... 2606 ms total for insertTable() +2024-09-08 08:28:03,353 [main] INFO DocWordWriter - ... 99 ms for insertCaption(): Table 54 – Attributes of IEC62351-3 ed.2 Agent::ClientTLS +2024-09-08 08:28:03,404 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of ClientTLS.', [154281 - 154315] +2024-09-08 08:28:03,415 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of ClientTLS.', [154281 - 154316] +2024-09-08 08:28:03,421 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [154281 - 154281] +2024-09-08 08:28:03,435 [main] INFO DocWordWriter - ... 42 ms for insertCaptionRef() +2024-09-08 08:28:03,435 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:28:03,477 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML93' to Word document and to used list. +2024-09-08 08:28:03,555 [main] INFO DocWordWriter - --- insertTable() 50 rows: Attributes of IEC62351-3 ed.2 Agent::ServerTLS +2024-09-08 08:28:03,583 [main] DEBUG DocWordWriter - ... 28 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:28:03,632 [main] DEBUG DocWordWriter - ... 49 ms for createTable() +2024-09-08 08:28:05,657 [main] DEBUG DocWordWriter - ... 2025 ms for fillValues() +2024-09-08 08:28:05,724 [main] DEBUG DocWordWriter - ... 67 ms for widths (table) +2024-09-08 08:28:06,065 [main] DEBUG DocWordWriter - ... 341 ms for widths (columns) +2024-09-08 08:28:06,097 [main] DEBUG DocWordWriter - ... 32 ms for shadding/merging/styling (rows) +2024-09-08 08:28:06,234 [main] DEBUG DocWordWriter - ... 137 ms for borders +2024-09-08 08:28:06,234 [main] DEBUG DocWordWriter - ... 577 ms for formatTable() +2024-09-08 08:28:06,245 [main] INFO DocWordWriter - ... 2679 ms total for insertTable() +2024-09-08 08:28:06,364 [main] INFO DocWordWriter - ... 110 ms for insertCaption(): Table 55 – Attributes of IEC62351-3 ed.2 Agent::ServerTLS +2024-09-08 08:28:06,424 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of ServerTLS.', [159551 - 159585] +2024-09-08 08:28:06,438 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of ServerTLS.', [159551 - 159586] +2024-09-08 08:28:06,444 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [159551 - 159551] +2024-09-08 08:28:06,459 [main] INFO DocWordWriter - ... 47 ms for insertCaptionRef() +2024-09-08 08:28:06,459 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:28:06,511 [main] INFO AbstractWordWriter - writing doc for package IEEE 1815 and IEC 60870-5 Agent ... +2024-09-08 08:28:06,752 [main] INFO DocWordWriter - ... 44 ms for insertCaption(): Figure 20 – Class diagram IEEE 1815 and IEC 60870-5 Agent::IEEE 1815 and IEC 60870 Agent Relationships +2024-09-08 08:28:06,838 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes. Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.', [166011 - 166292] +2024-09-08 08:28:06,845 [main] TRACE DocWordWriter - prepend : range.txt = ': This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes. Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.', [166011 - 166292] +2024-09-08 08:28:06,852 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [166011 - 166011] +2024-09-08 08:28:06,867 [main] INFO DocWordWriter - ... 35 ms for insertCaptionRef() +2024-09-08 08:28:06,867 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:28:06,914 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML94' to Word document and to used list. +2024-09-08 08:28:06,994 [main] INFO DocWordWriter - --- insertTable() 31 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo +2024-09-08 08:28:07,026 [main] DEBUG DocWordWriter - ... 32 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:28:07,065 [main] DEBUG DocWordWriter - ... 39 ms for createTable() +2024-09-08 08:28:08,362 [main] DEBUG DocWordWriter - ... 1297 ms for fillValues() +2024-09-08 08:28:08,415 [main] DEBUG DocWordWriter - ... 53 ms for widths (table) +2024-09-08 08:28:08,677 [main] DEBUG DocWordWriter - ... 262 ms for widths (columns) +2024-09-08 08:28:08,707 [main] DEBUG DocWordWriter - ... 30 ms for shadding/merging/styling (rows) +2024-09-08 08:28:08,806 [main] DEBUG DocWordWriter - ... 99 ms for borders +2024-09-08 08:28:08,806 [main] DEBUG DocWordWriter - ... 444 ms for formatTable() +2024-09-08 08:28:08,817 [main] INFO DocWordWriter - ... 1812 ms total for insertTable() +2024-09-08 08:28:08,942 [main] INFO DocWordWriter - ... 118 ms for insertCaption(): Table 56 – Attributes of IEEE 1815 and IEC 60870-5 Agent::60870andDNPProtocolInfo +2024-09-08 08:28:08,994 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of 60870andDNPProtocolInfo.', [166566 - 166614] +2024-09-08 08:28:09,006 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of 60870andDNPProtocolInfo.', [166566 - 166615] +2024-09-08 08:28:09,012 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [166566 - 166566] +2024-09-08 08:28:09,032 [main] INFO DocWordWriter - ... 48 ms for insertCaptionRef() +2024-09-08 08:28:09,032 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:28:09,077 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML95' to Word document and to used list. +2024-09-08 08:28:09,163 [main] INFO DocWordWriter - --- insertTable() 50 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent::Association +2024-09-08 08:28:09,193 [main] DEBUG DocWordWriter - ... 30 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:28:09,266 [main] DEBUG DocWordWriter - ... 73 ms for createTable() +2024-09-08 08:28:11,369 [main] DEBUG DocWordWriter - ... 2103 ms for fillValues() +2024-09-08 08:28:11,437 [main] DEBUG DocWordWriter - ... 68 ms for widths (table) +2024-09-08 08:28:11,782 [main] DEBUG DocWordWriter - ... 345 ms for widths (columns) +2024-09-08 08:28:11,816 [main] DEBUG DocWordWriter - ... 34 ms for shadding/merging/styling (rows) +2024-09-08 08:28:11,949 [main] DEBUG DocWordWriter - ... 133 ms for borders +2024-09-08 08:28:11,949 [main] DEBUG DocWordWriter - ... 580 ms for formatTable() +2024-09-08 08:28:11,962 [main] INFO DocWordWriter - ... 2786 ms total for insertTable() +2024-09-08 08:28:12,111 [main] INFO DocWordWriter - ... 139 ms for insertCaption(): Table 57 – Attributes of IEEE 1815 and IEC 60870-5 Agent::Association +2024-09-08 08:28:12,165 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Association.', [170244 - 170280] +2024-09-08 08:28:12,180 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Association.', [170244 - 170281] +2024-09-08 08:28:12,187 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [170244 - 170244] +2024-09-08 08:28:12,210 [main] INFO DocWordWriter - ... 56 ms for insertCaptionRef() +2024-09-08 08:28:12,210 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:28:12,256 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML107' to Word document and to used list. +2024-09-08 08:28:12,351 [main] INFO DocWordWriter - --- insertTable() 37 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent::Summary +2024-09-08 08:28:12,385 [main] DEBUG DocWordWriter - ... 34 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:28:12,453 [main] DEBUG DocWordWriter - ... 68 ms for createTable() +2024-09-08 08:28:14,053 [main] DEBUG DocWordWriter - ... 1600 ms for fillValues() +2024-09-08 08:28:14,108 [main] DEBUG DocWordWriter - ... 55 ms for widths (table) +2024-09-08 08:28:14,390 [main] DEBUG DocWordWriter - ... 282 ms for widths (columns) +2024-09-08 08:28:14,423 [main] DEBUG DocWordWriter - ... 33 ms for shadding/merging/styling (rows) +2024-09-08 08:28:14,531 [main] DEBUG DocWordWriter - ... 108 ms for borders +2024-09-08 08:28:14,531 [main] DEBUG DocWordWriter - ... 478 ms for formatTable() +2024-09-08 08:28:14,544 [main] INFO DocWordWriter - ... 2180 ms total for insertTable() +2024-09-08 08:28:14,700 [main] INFO DocWordWriter - ... 148 ms for insertCaption(): Table 58 – Attributes of IEEE 1815 and IEC 60870-5 Agent::Summary +2024-09-08 08:28:14,760 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Summary.', [175290 - 175322] +2024-09-08 08:28:14,772 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Summary.', [175290 - 175323] +2024-09-08 08:28:14,779 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [175290 - 175290] +2024-09-08 08:28:14,798 [main] INFO DocWordWriter - ... 43 ms for insertCaptionRef() +2024-09-08 08:28:14,798 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:28:14,845 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML108' to Word document and to used list. +2024-09-08 08:28:14,938 [main] INFO DocWordWriter - --- insertTable() 9 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification +2024-09-08 08:28:14,974 [main] DEBUG DocWordWriter - ... 36 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:28:15,001 [main] DEBUG DocWordWriter - ... 27 ms for createTable() +2024-09-08 08:28:15,392 [main] DEBUG DocWordWriter - ... 391 ms for fillValues() +2024-09-08 08:28:15,427 [main] DEBUG DocWordWriter - ... 35 ms for widths (table) +2024-09-08 08:28:15,563 [main] DEBUG DocWordWriter - ... 136 ms for widths (columns) +2024-09-08 08:28:15,594 [main] DEBUG DocWordWriter - ... 31 ms for shadding/merging/styling (rows) +2024-09-08 08:28:15,646 [main] DEBUG DocWordWriter - ... 52 ms for borders +2024-09-08 08:28:15,646 [main] DEBUG DocWordWriter - ... 254 ms for formatTable() +2024-09-08 08:28:15,658 [main] INFO DocWordWriter - ... 708 ms total for insertTable() +2024-09-08 08:28:15,815 [main] INFO DocWordWriter - ... 148 ms for insertCaption(): Table 59 – Attributes of IEEE 1815 and IEC 60870-5 Agent::60870andDNPSecurityNotification +2024-09-08 08:28:15,865 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of 60870andDNPSecurityNotification.', [179223 - 179279] +2024-09-08 08:28:15,878 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of 60870andDNPSecurityNotification.', [179223 - 179280] +2024-09-08 08:28:15,884 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [179223 - 179223] +2024-09-08 08:28:15,903 [main] INFO DocWordWriter - ... 48 ms for insertCaptionRef() +2024-09-08 08:28:15,903 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:28:15,949 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML109' to Word document and to used list. +2024-09-08 08:28:16,042 [main] INFO DocWordWriter - --- insertTable() 6 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification +2024-09-08 08:28:16,074 [main] DEBUG DocWordWriter - ... 32 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:28:16,098 [main] DEBUG DocWordWriter - ... 24 ms for createTable() +2024-09-08 08:28:16,374 [main] DEBUG DocWordWriter - ... 276 ms for fillValues() +2024-09-08 08:28:16,400 [main] DEBUG DocWordWriter - ... 26 ms for widths (table) +2024-09-08 08:28:16,511 [main] DEBUG DocWordWriter - ... 111 ms for widths (columns) +2024-09-08 08:28:16,539 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-08 08:28:16,580 [main] DEBUG DocWordWriter - ... 41 ms for borders +2024-09-08 08:28:16,581 [main] DEBUG DocWordWriter - ... 207 ms for formatTable() +2024-09-08 08:28:16,591 [main] INFO DocWordWriter - ... 539 ms total for insertTable() +2024-09-08 08:28:16,762 [main] INFO DocWordWriter - ... 162 ms for insertCaption(): Table 60 – Attributes of IEEE 1815 and IEC 60870-5 Agent::60870andDNPNotification +2024-09-08 08:28:16,818 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of 60870andDNPNotification.', [180568 - 180616] +2024-09-08 08:28:16,832 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of 60870andDNPNotification.', [180568 - 180617] +2024-09-08 08:28:16,839 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [180568 - 180568] +2024-09-08 08:28:16,858 [main] INFO DocWordWriter - ... 51 ms for insertCaptionRef() +2024-09-08 08:28:16,858 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:28:16,909 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML96' to Word document and to used list. +2024-09-08 08:28:16,980 [main] INFO DocWordWriter - closing MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-08 08:28:19,084 [main] INFO DocWordWriter - opening MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-08 08:28:20,507 [main] INFO OptimOptions - setting view to normal +2024-09-08 08:28:20,546 [main] INFO OptimOptions - disabling pagination +2024-09-08 08:28:20,581 [main] INFO OptimOptions - disabling field update +2024-09-08 08:28:20,662 [main] INFO OptimOptions - disabling screen updating +2024-09-08 08:28:20,672 [main] DEBUG DocWordWriter - current(_optimisedOptions): OptimOptions [viewId=1, normView=true, paginate=false, updFld=false, updScr=false, fastSave=false, spelling=false, grammar=false] +2024-09-08 08:28:20,818 [main] INFO Util - time=[0:00:03.865] closed and reopened document. +2024-09-08 08:28:20,818 [main] INFO Util - +2024-09-08 08:28:20,863 [main] INFO DocWordWriter - --- insertTable() 50 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent::MasterAssociation +2024-09-08 08:28:20,893 [main] DEBUG DocWordWriter - ... 30 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:28:20,907 [main] DEBUG DocWordWriter - ... 14 ms for createTable() +2024-09-08 08:28:22,785 [main] DEBUG DocWordWriter - ... 1878 ms for fillValues() +2024-09-08 08:28:22,849 [main] DEBUG DocWordWriter - ... 64 ms for widths (table) +2024-09-08 08:28:23,182 [main] DEBUG DocWordWriter - ... 333 ms for widths (columns) +2024-09-08 08:28:23,216 [main] DEBUG DocWordWriter - ... 34 ms for shadding/merging/styling (rows) +2024-09-08 08:28:23,354 [main] DEBUG DocWordWriter - ... 138 ms for borders +2024-09-08 08:28:23,354 [main] DEBUG DocWordWriter - ... 569 ms for formatTable() +2024-09-08 08:28:23,367 [main] INFO DocWordWriter - ... 2491 ms total for insertTable() +2024-09-08 08:28:23,420 [main] INFO DocWordWriter - ... 45 ms for insertCaption(): Table 61 – Attributes of IEEE 1815 and IEC 60870-5 Agent::MasterAssociation +2024-09-08 08:28:23,475 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of MasterAssociation.', [181358 - 181400] +2024-09-08 08:28:23,486 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of MasterAssociation.', [181358 - 181401] +2024-09-08 08:28:23,492 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [181358 - 181358] +2024-09-08 08:28:23,503 [main] INFO DocWordWriter - ... 41 ms for insertCaptionRef() +2024-09-08 08:28:23,503 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:28:23,628 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML97' to Word document and to used list. +2024-09-08 08:28:23,704 [main] INFO DocWordWriter - --- insertTable() 50 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent::OutstationAssociation +2024-09-08 08:28:23,734 [main] DEBUG DocWordWriter - ... 30 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:28:23,752 [main] DEBUG DocWordWriter - ... 18 ms for createTable() +2024-09-08 08:28:25,691 [main] DEBUG DocWordWriter - ... 1939 ms for fillValues() +2024-09-08 08:28:25,768 [main] DEBUG DocWordWriter - ... 77 ms for widths (table) +2024-09-08 08:28:26,104 [main] DEBUG DocWordWriter - ... 336 ms for widths (columns) +2024-09-08 08:28:26,140 [main] DEBUG DocWordWriter - ... 36 ms for shadding/merging/styling (rows) +2024-09-08 08:28:26,276 [main] DEBUG DocWordWriter - ... 136 ms for borders +2024-09-08 08:28:26,276 [main] DEBUG DocWordWriter - ... 585 ms for formatTable() +2024-09-08 08:28:26,290 [main] INFO DocWordWriter - ... 2572 ms total for insertTable() +2024-09-08 08:28:26,357 [main] INFO DocWordWriter - ... 59 ms for insertCaption(): Table 62 – Attributes of IEEE 1815 and IEC 60870-5 Agent::OutstationAssociation +2024-09-08 08:28:26,409 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of OutstationAssociation.', [186436 - 186482] +2024-09-08 08:28:26,423 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of OutstationAssociation.', [186436 - 186483] +2024-09-08 08:28:26,429 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [186436 - 186436] +2024-09-08 08:28:26,444 [main] INFO DocWordWriter - ... 46 ms for insertCaptionRef() +2024-09-08 08:28:26,444 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:28:26,495 [main] INFO AbstractWordWriter - writing doc for package IEEE 1815 and IEC 60870-5 Agent - ed2 ... +2024-09-08 08:28:26,731 [main] INFO DocWordWriter - ... 27 ms for insertCaption(): Figure 21 – Class diagram IEEE 1815 and IEC 60870-5 Agent - ed2::IEEE 1815 and IEC 60870 Agent Relationships +2024-09-08 08:28:26,818 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes. Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.', [192740 - 193021] +2024-09-08 08:28:26,826 [main] TRACE DocWordWriter - prepend : range.txt = ': This picture depicts the relationship between the IEEE 1815 DNP and IEC 60870-5-104 classes. Summary and Association class inherits the specific IEEE 1815 DNP and IEC 60870-5-104 Protocol Info and Protocol Info and Security objects, and therefore the more general class as well.', [192740 - 193021] +2024-09-08 08:28:26,832 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [192740 - 192740] +2024-09-08 08:28:26,846 [main] INFO DocWordWriter - ... 33 ms for insertCaptionRef() +2024-09-08 08:28:26,846 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:28:26,889 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML99' to Word document and to used list. +2024-09-08 08:28:26,969 [main] INFO DocWordWriter - --- insertTable() 46 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2 +2024-09-08 08:28:26,998 [main] DEBUG DocWordWriter - ... 29 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:28:27,022 [main] DEBUG DocWordWriter - ... 24 ms for createTable() +2024-09-08 08:28:28,888 [main] DEBUG DocWordWriter - ... 1866 ms for fillValues() +2024-09-08 08:28:28,950 [main] DEBUG DocWordWriter - ... 62 ms for widths (table) +2024-09-08 08:28:29,263 [main] DEBUG DocWordWriter - ... 313 ms for widths (columns) +2024-09-08 08:28:29,295 [main] DEBUG DocWordWriter - ... 32 ms for shadding/merging/styling (rows) +2024-09-08 08:28:29,424 [main] DEBUG DocWordWriter - ... 129 ms for borders +2024-09-08 08:28:29,425 [main] DEBUG DocWordWriter - ... 537 ms for formatTable() +2024-09-08 08:28:29,436 [main] INFO DocWordWriter - ... 2456 ms total for insertTable() +2024-09-08 08:28:29,506 [main] INFO DocWordWriter - ... 62 ms for insertCaption(): Table 63 – Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPProtocolInfoEd2 +2024-09-08 08:28:29,558 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of 60870andDNPProtocolInfoEd2.', [193298 - 193349] +2024-09-08 08:28:29,571 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of 60870andDNPProtocolInfoEd2.', [193298 - 193350] +2024-09-08 08:28:29,578 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [193298 - 193298] +2024-09-08 08:28:29,594 [main] INFO DocWordWriter - ... 48 ms for insertCaptionRef() +2024-09-08 08:28:29,594 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:28:29,635 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML98' to Word document and to used list. +2024-09-08 08:28:29,718 [main] INFO DocWordWriter - --- insertTable() 27 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5 +2024-09-08 08:28:29,749 [main] DEBUG DocWordWriter - ... 31 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:28:29,770 [main] DEBUG DocWordWriter - ... 21 ms for createTable() +2024-09-08 08:28:30,887 [main] DEBUG DocWordWriter - ... 1117 ms for fillValues() +2024-09-08 08:28:30,938 [main] DEBUG DocWordWriter - ... 51 ms for widths (table) +2024-09-08 08:28:31,167 [main] DEBUG DocWordWriter - ... 229 ms for widths (columns) +2024-09-08 08:28:31,197 [main] DEBUG DocWordWriter - ... 30 ms for shadding/merging/styling (rows) +2024-09-08 08:28:31,283 [main] DEBUG DocWordWriter - ... 86 ms for borders +2024-09-08 08:28:31,283 [main] DEBUG DocWordWriter - ... 396 ms for formatTable() +2024-09-08 08:28:31,294 [main] INFO DocWordWriter - ... 1565 ms total for insertTable() +2024-09-08 08:28:31,365 [main] INFO DocWordWriter - ... 63 ms for insertCaption(): Table 64 – Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::IEC62351part5 +2024-09-08 08:28:31,423 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of IEC62351part5.', [198090 - 198128] +2024-09-08 08:28:31,435 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of IEC62351part5.', [198090 - 198129] +2024-09-08 08:28:31,443 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [198090 - 198090] +2024-09-08 08:28:31,460 [main] INFO DocWordWriter - ... 50 ms for insertCaptionRef() +2024-09-08 08:28:31,460 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:28:31,505 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML100' to Word document and to used list. +2024-09-08 08:28:31,586 [main] INFO DocWordWriter - --- insertTable() 65 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::Association +2024-09-08 08:28:31,616 [main] DEBUG DocWordWriter - ... 30 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:28:31,664 [main] DEBUG DocWordWriter - ... 48 ms for createTable() +2024-09-08 08:28:34,434 [main] DEBUG DocWordWriter - ... 2770 ms for fillValues() +2024-09-08 08:28:34,510 [main] DEBUG DocWordWriter - ... 76 ms for widths (table) +2024-09-08 08:28:34,920 [main] DEBUG DocWordWriter - ... 410 ms for widths (columns) +2024-09-08 08:28:34,953 [main] DEBUG DocWordWriter - ... 33 ms for shadding/merging/styling (rows) +2024-09-08 08:28:35,119 [main] DEBUG DocWordWriter - ... 166 ms for borders +2024-09-08 08:28:35,119 [main] DEBUG DocWordWriter - ... 685 ms for formatTable() +2024-09-08 08:28:35,131 [main] INFO DocWordWriter - ... 3533 ms total for insertTable() +2024-09-08 08:28:35,252 [main] INFO DocWordWriter - ... 112 ms for insertCaption(): Table 65 – Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::Association +2024-09-08 08:28:35,307 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Association.', [201693 - 201729] +2024-09-08 08:28:35,319 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Association.', [201693 - 201730] +2024-09-08 08:28:35,326 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [201693 - 201693] +2024-09-08 08:28:35,346 [main] INFO DocWordWriter - ... 49 ms for insertCaptionRef() +2024-09-08 08:28:35,347 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:28:35,396 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML110' to Word document and to used list. +2024-09-08 08:28:35,484 [main] INFO DocWordWriter - --- insertTable() 52 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::Summary +2024-09-08 08:28:35,520 [main] DEBUG DocWordWriter - ... 36 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:28:35,574 [main] DEBUG DocWordWriter - ... 54 ms for createTable() +2024-09-08 08:28:37,815 [main] DEBUG DocWordWriter - ... 2241 ms for fillValues() +2024-09-08 08:28:37,885 [main] DEBUG DocWordWriter - ... 70 ms for widths (table) +2024-09-08 08:28:38,240 [main] DEBUG DocWordWriter - ... 355 ms for widths (columns) +2024-09-08 08:28:38,274 [main] DEBUG DocWordWriter - ... 34 ms for shadding/merging/styling (rows) +2024-09-08 08:28:38,428 [main] DEBUG DocWordWriter - ... 154 ms for borders +2024-09-08 08:28:38,428 [main] DEBUG DocWordWriter - ... 613 ms for formatTable() +2024-09-08 08:28:38,440 [main] INFO DocWordWriter - ... 2944 ms total for insertTable() +2024-09-08 08:28:38,557 [main] INFO DocWordWriter - ... 108 ms for insertCaption(): Table 66 – Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::Summary +2024-09-08 08:28:38,617 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Summary.', [208172 - 208204] +2024-09-08 08:28:38,631 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Summary.', [208172 - 208205] +2024-09-08 08:28:38,639 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [208172 - 208172] +2024-09-08 08:28:38,661 [main] INFO DocWordWriter - ... 58 ms for insertCaptionRef() +2024-09-08 08:28:38,661 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:28:38,707 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML111' to Word document and to used list. +2024-09-08 08:28:38,803 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2 +2024-09-08 08:28:38,834 [main] DEBUG DocWordWriter - ... 31 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:28:38,849 [main] DEBUG DocWordWriter - ... 15 ms for createTable() +2024-09-08 08:28:38,945 [main] DEBUG DocWordWriter - ... 96 ms for fillValues() +2024-09-08 08:28:38,972 [main] DEBUG DocWordWriter - ... 27 ms for widths (table) +2024-09-08 08:28:39,061 [main] DEBUG DocWordWriter - ... 89 ms for widths (columns) +2024-09-08 08:28:39,089 [main] DEBUG DocWordWriter - ... 28 ms for shadding/merging/styling (rows) +2024-09-08 08:28:39,122 [main] DEBUG DocWordWriter - ... 33 ms for borders +2024-09-08 08:28:39,122 [main] DEBUG DocWordWriter - ... 177 ms for formatTable() +2024-09-08 08:28:39,133 [main] INFO DocWordWriter - ... 319 ms total for insertTable() +2024-09-08 08:28:39,248 [main] INFO DocWordWriter - ... 106 ms for insertCaption(): Table 67 – Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPSecurityNotificationEd2 +2024-09-08 08:28:39,299 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of 60870andDNPSecurityNotificationEd2.', [213549 - 213608] +2024-09-08 08:28:39,314 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of 60870andDNPSecurityNotificationEd2.', [213549 - 213609] +2024-09-08 08:28:39,321 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [213549 - 213549] +2024-09-08 08:28:39,337 [main] INFO DocWordWriter - ... 49 ms for insertCaptionRef() +2024-09-08 08:28:39,337 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:28:39,389 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML112' to Word document and to used list. +2024-09-08 08:28:39,473 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2 +2024-09-08 08:28:39,503 [main] DEBUG DocWordWriter - ... 30 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:28:39,518 [main] DEBUG DocWordWriter - ... 15 ms for createTable() +2024-09-08 08:28:39,610 [main] DEBUG DocWordWriter - ... 92 ms for fillValues() +2024-09-08 08:28:39,634 [main] DEBUG DocWordWriter - ... 24 ms for widths (table) +2024-09-08 08:28:39,725 [main] DEBUG DocWordWriter - ... 91 ms for widths (columns) +2024-09-08 08:28:39,754 [main] DEBUG DocWordWriter - ... 29 ms for shadding/merging/styling (rows) +2024-09-08 08:28:39,786 [main] DEBUG DocWordWriter - ... 32 ms for borders +2024-09-08 08:28:39,786 [main] DEBUG DocWordWriter - ... 176 ms for formatTable() +2024-09-08 08:28:39,798 [main] INFO DocWordWriter - ... 313 ms total for insertTable() +2024-09-08 08:28:39,910 [main] INFO DocWordWriter - ... 103 ms for insertCaption(): Table 68 – Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::60870andDNPNotificationEd2 +2024-09-08 08:28:39,962 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of 60870andDNPNotificationEd2.', [214030 - 214081] +2024-09-08 08:28:39,974 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of 60870andDNPNotificationEd2.', [214030 - 214082] +2024-09-08 08:28:39,980 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [214030 - 214030] +2024-09-08 08:28:40,002 [main] INFO DocWordWriter - ... 52 ms for insertCaptionRef() +2024-09-08 08:28:40,002 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:28:40,055 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML101' to Word document and to used list. +2024-09-08 08:28:40,142 [main] INFO DocWordWriter - --- insertTable() 65 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::MasterAssociation +2024-09-08 08:28:40,174 [main] DEBUG DocWordWriter - ... 32 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:28:40,259 [main] DEBUG DocWordWriter - ... 85 ms for createTable() +2024-09-08 08:28:43,160 [main] DEBUG DocWordWriter - ... 2901 ms for fillValues() +2024-09-08 08:28:43,244 [main] DEBUG DocWordWriter - ... 84 ms for widths (table) +2024-09-08 08:28:43,671 [main] DEBUG DocWordWriter - ... 427 ms for widths (columns) +2024-09-08 08:28:43,706 [main] DEBUG DocWordWriter - ... 35 ms for shadding/merging/styling (rows) +2024-09-08 08:28:43,894 [main] DEBUG DocWordWriter - ... 188 ms for borders +2024-09-08 08:28:43,894 [main] DEBUG DocWordWriter - ... 734 ms for formatTable() +2024-09-08 08:28:43,905 [main] INFO DocWordWriter - ... 3752 ms total for insertTable() +2024-09-08 08:28:44,079 [main] INFO DocWordWriter - ... 165 ms for insertCaption(): Table 69 – Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::MasterAssociation +2024-09-08 08:28:44,141 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of MasterAssociation.', [214424 - 214466] +2024-09-08 08:28:44,153 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of MasterAssociation.', [214424 - 214467] +2024-09-08 08:28:44,160 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [214424 - 214424] +2024-09-08 08:28:44,182 [main] INFO DocWordWriter - ... 54 ms for insertCaptionRef() +2024-09-08 08:28:44,182 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:28:44,230 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML102' to Word document and to used list. +2024-09-08 08:28:44,323 [main] INFO DocWordWriter - --- insertTable() 65 rows: Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::OutstationAssociation +2024-09-08 08:28:44,359 [main] DEBUG DocWordWriter - ... 36 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:28:44,464 [main] DEBUG DocWordWriter - ... 105 ms for createTable() +2024-09-08 08:28:47,449 [main] DEBUG DocWordWriter - ... 2985 ms for fillValues() +2024-09-08 08:28:47,531 [main] DEBUG DocWordWriter - ... 82 ms for widths (table) +2024-09-08 08:28:47,958 [main] DEBUG DocWordWriter - ... 427 ms for widths (columns) +2024-09-08 08:28:47,995 [main] DEBUG DocWordWriter - ... 37 ms for shadding/merging/styling (rows) +2024-09-08 08:28:48,205 [main] DEBUG DocWordWriter - ... 210 ms for borders +2024-09-08 08:28:48,205 [main] DEBUG DocWordWriter - ... 756 ms for formatTable() +2024-09-08 08:28:48,217 [main] INFO DocWordWriter - ... 3882 ms total for insertTable() +2024-09-08 08:28:48,456 [main] INFO DocWordWriter - ... 231 ms for insertCaption(): Table 70 – Attributes of IEEE 1815 and IEC 60870-5 Agent - ed2::OutstationAssociation +2024-09-08 08:28:48,514 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of OutstationAssociation.', [220946 - 220992] +2024-09-08 08:28:48,527 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of OutstationAssociation.', [220946 - 220993] +2024-09-08 08:28:48,534 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [220946 - 220946] +2024-09-08 08:28:48,563 [main] INFO DocWordWriter - ... 59 ms for insertCaptionRef() +2024-09-08 08:28:48,563 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:28:48,620 [main] INFO AbstractWordWriter - writing doc for package IEC61850 Agent ... +2024-09-08 08:28:48,764 [main] INFO AbstractWordWriter - writing doc for package ACSI ... +2024-09-08 08:28:48,989 [main] INFO DocWordWriter - ... 67 ms for insertCaption(): Figure 22 – Class diagram ACSI::ACSI +2024-09-08 08:28:49,078 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': ACSI classes relationship. ACSI Summary inherit Security attributes from the more general classes.', [227895 - 227995] +2024-09-08 08:28:49,085 [main] TRACE DocWordWriter - prepend : range.txt = ': ACSI classes relationship. ACSI Summary inherit Security attributes from the more general classes.', [227895 - 227995] +2024-09-08 08:28:49,093 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [227895 - 227895] +2024-09-08 08:28:49,119 [main] INFO DocWordWriter - ... 47 ms for insertCaptionRef() +2024-09-08 08:28:49,119 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:28:49,171 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML113' to Word document and to used list. +2024-09-08 08:28:49,259 [main] INFO DocWordWriter - --- insertTable() 17 rows: Attributes of ACSI::ACSISummary +2024-09-08 08:28:49,293 [main] DEBUG DocWordWriter - ... 34 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:28:49,340 [main] DEBUG DocWordWriter - ... 47 ms for createTable() +2024-09-08 08:28:50,143 [main] DEBUG DocWordWriter - ... 803 ms for fillValues() +2024-09-08 08:28:50,185 [main] DEBUG DocWordWriter - ... 42 ms for widths (table) +2024-09-08 08:28:50,372 [main] DEBUG DocWordWriter - ... 187 ms for widths (columns) +2024-09-08 08:28:50,401 [main] DEBUG DocWordWriter - ... 29 ms for shadding/merging/styling (rows) +2024-09-08 08:28:50,478 [main] DEBUG DocWordWriter - ... 77 ms for borders +2024-09-08 08:28:50,478 [main] DEBUG DocWordWriter - ... 335 ms for formatTable() +2024-09-08 08:28:50,492 [main] INFO DocWordWriter - ... 1219 ms total for insertTable() +2024-09-08 08:28:50,678 [main] INFO DocWordWriter - ... 177 ms for insertCaption(): Table 71 – Attributes of ACSI::ACSISummary +2024-09-08 08:28:50,731 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of ACSISummary.', [228191 - 228227] +2024-09-08 08:28:50,745 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of ACSISummary.', [228191 - 228228] +2024-09-08 08:28:50,752 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [228191 - 228191] +2024-09-08 08:28:50,777 [main] INFO DocWordWriter - ... 57 ms for insertCaptionRef() +2024-09-08 08:28:50,777 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:28:50,835 [main] INFO AbstractWordWriter - writing doc for package MMS ... +2024-09-08 08:28:51,131 [main] INFO DocWordWriter - ... 82 ms for insertCaption(): Figure 23 – Class diagram MMS::MMS +2024-09-08 08:28:51,223 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': MMS classes relationship. MMS Provider and MMS Association inherit both Security and Procotol Info attributes from the more general classes.', [230392 - 230534] +2024-09-08 08:28:51,230 [main] TRACE DocWordWriter - prepend : range.txt = ': MMS classes relationship. MMS Provider and MMS Association inherit both Security and Procotol Info attributes from the more general classes.', [230392 - 230534] +2024-09-08 08:28:51,237 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [230392 - 230392] +2024-09-08 08:28:51,274 [main] INFO DocWordWriter - ... 56 ms for insertCaptionRef() +2024-09-08 08:28:51,274 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:28:51,329 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML103' to Word document and to used list. +2024-09-08 08:28:51,425 [main] INFO DocWordWriter - --- insertTable() 14 rows: Attributes of MMS::MMSProtocolInfo +2024-09-08 08:28:51,459 [main] DEBUG DocWordWriter - ... 34 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:28:51,505 [main] DEBUG DocWordWriter - ... 46 ms for createTable() +2024-09-08 08:28:52,228 [main] DEBUG DocWordWriter - ... 723 ms for fillValues() +2024-09-08 08:28:52,262 [main] DEBUG DocWordWriter - ... 34 ms for widths (table) +2024-09-08 08:28:52,441 [main] DEBUG DocWordWriter - ... 179 ms for widths (columns) +2024-09-08 08:28:52,472 [main] DEBUG DocWordWriter - ... 31 ms for shadding/merging/styling (rows) +2024-09-08 08:28:52,541 [main] DEBUG DocWordWriter - ... 69 ms for borders +2024-09-08 08:28:52,541 [main] DEBUG DocWordWriter - ... 313 ms for formatTable() +2024-09-08 08:28:52,552 [main] INFO DocWordWriter - ... 1116 ms total for insertTable() +2024-09-08 08:28:52,774 [main] INFO DocWordWriter - ... 211 ms for insertCaption(): Table 72 – Attributes of MMS::MMSProtocolInfo +2024-09-08 08:28:52,828 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of MMSProtocolInfo.', [230724 - 230764] +2024-09-08 08:28:52,841 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of MMSProtocolInfo.', [230724 - 230765] +2024-09-08 08:28:52,847 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [230724 - 230724] +2024-09-08 08:28:52,875 [main] INFO DocWordWriter - ... 57 ms for insertCaptionRef() +2024-09-08 08:28:52,875 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:28:52,927 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML114' to Word document and to used list. +2024-09-08 08:28:53,006 [main] INFO DocWordWriter - closing MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-08 08:28:55,773 [main] INFO DocWordWriter - opening MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-08 08:28:57,435 [main] INFO OptimOptions - setting view to normal +2024-09-08 08:28:57,485 [main] INFO OptimOptions - disabling pagination +2024-09-08 08:28:57,516 [main] INFO OptimOptions - disabling field update +2024-09-08 08:28:57,623 [main] INFO OptimOptions - disabling screen updating +2024-09-08 08:28:57,647 [main] DEBUG DocWordWriter - current(_optimisedOptions): OptimOptions [viewId=1, normView=true, paginate=false, updFld=false, updScr=false, fastSave=false, spelling=false, grammar=false] +2024-09-08 08:28:57,762 [main] INFO Util - time=[0:00:04.786] closed and reopened document. +2024-09-08 08:28:57,762 [main] INFO Util - +2024-09-08 08:28:57,813 [main] INFO DocWordWriter - --- insertTable() 32 rows: Attributes of MMS::MMSProvider +2024-09-08 08:28:57,847 [main] DEBUG DocWordWriter - ... 34 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:28:57,861 [main] DEBUG DocWordWriter - ... 14 ms for createTable() +2024-09-08 08:28:59,140 [main] DEBUG DocWordWriter - ... 1279 ms for fillValues() +2024-09-08 08:28:59,192 [main] DEBUG DocWordWriter - ... 52 ms for widths (table) +2024-09-08 08:28:59,437 [main] DEBUG DocWordWriter - ... 245 ms for widths (columns) +2024-09-08 08:28:59,470 [main] DEBUG DocWordWriter - ... 33 ms for shadding/merging/styling (rows) +2024-09-08 08:28:59,572 [main] DEBUG DocWordWriter - ... 101 ms for borders +2024-09-08 08:28:59,572 [main] DEBUG DocWordWriter - ... 432 ms for formatTable() +2024-09-08 08:28:59,585 [main] INFO DocWordWriter - ... 1759 ms total for insertTable() +2024-09-08 08:28:59,631 [main] INFO DocWordWriter - ... 38 ms for insertCaption(): Table 73 – Attributes of MMS::MMSProvider +2024-09-08 08:28:59,684 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of MMSProvider.', [233231 - 233267] +2024-09-08 08:28:59,695 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of MMSProvider.', [233231 - 233268] +2024-09-08 08:28:59,702 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [233231 - 233231] +2024-09-08 08:28:59,716 [main] INFO DocWordWriter - ... 43 ms for insertCaptionRef() +2024-09-08 08:28:59,716 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:28:59,861 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML104' to Word document and to used list. +2024-09-08 08:28:59,943 [main] INFO DocWordWriter - --- insertTable() 36 rows: Attributes of MMS::MMSAssociation +2024-09-08 08:28:59,974 [main] DEBUG DocWordWriter - ... 32 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:28:59,989 [main] DEBUG DocWordWriter - ... 15 ms for createTable() +2024-09-08 08:29:01,469 [main] DEBUG DocWordWriter - ... 1480 ms for fillValues() +2024-09-08 08:29:01,520 [main] DEBUG DocWordWriter - ... 51 ms for widths (table) +2024-09-08 08:29:01,783 [main] DEBUG DocWordWriter - ... 263 ms for widths (columns) +2024-09-08 08:29:01,814 [main] DEBUG DocWordWriter - ... 31 ms for shadding/merging/styling (rows) +2024-09-08 08:29:01,921 [main] DEBUG DocWordWriter - ... 107 ms for borders +2024-09-08 08:29:01,921 [main] DEBUG DocWordWriter - ... 452 ms for formatTable() +2024-09-08 08:29:01,933 [main] INFO DocWordWriter - ... 1979 ms total for insertTable() +2024-09-08 08:29:01,987 [main] INFO DocWordWriter - ... 46 ms for insertCaption(): Table 74 – Attributes of MMS::MMSAssociation +2024-09-08 08:29:02,043 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of MMSAssociation.', [236849 - 236888] +2024-09-08 08:29:02,054 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of MMSAssociation.', [236849 - 236889] +2024-09-08 08:29:02,061 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [236849 - 236849] +2024-09-08 08:29:02,074 [main] INFO DocWordWriter - ... 44 ms for insertCaptionRef() +2024-09-08 08:29:02,074 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:29:02,118 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML115' to Word document and to used list. +2024-09-08 08:29:02,198 [main] INFO DocWordWriter - --- insertTable() 5 rows: Attributes of MMS::MMSSecurityNotification +2024-09-08 08:29:02,231 [main] DEBUG DocWordWriter - ... 33 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:29:02,243 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-08 08:29:02,476 [main] DEBUG DocWordWriter - ... 233 ms for fillValues() +2024-09-08 08:29:02,506 [main] DEBUG DocWordWriter - ... 30 ms for widths (table) +2024-09-08 08:29:02,608 [main] DEBUG DocWordWriter - ... 102 ms for widths (columns) +2024-09-08 08:29:02,640 [main] DEBUG DocWordWriter - ... 32 ms for shadding/merging/styling (rows) +2024-09-08 08:29:02,679 [main] DEBUG DocWordWriter - ... 39 ms for borders +2024-09-08 08:29:02,679 [main] DEBUG DocWordWriter - ... 203 ms for formatTable() +2024-09-08 08:29:02,691 [main] INFO DocWordWriter - ... 481 ms total for insertTable() +2024-09-08 08:29:02,744 [main] INFO DocWordWriter - ... 44 ms for insertCaption(): Table 75 – Attributes of MMS::MMSSecurityNotification +2024-09-08 08:29:02,795 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of MMSSecurityNotification.', [240744 - 240792] +2024-09-08 08:29:02,808 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of MMSSecurityNotification.', [240744 - 240793] +2024-09-08 08:29:02,814 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [240744 - 240744] +2024-09-08 08:29:02,827 [main] INFO DocWordWriter - ... 43 ms for insertCaptionRef() +2024-09-08 08:29:02,827 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:29:02,871 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML116' to Word document and to used list. +2024-09-08 08:29:02,953 [main] INFO DocWordWriter - --- insertTable() 5 rows: Attributes of MMS::MMSNotification +2024-09-08 08:29:02,985 [main] DEBUG DocWordWriter - ... 32 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:29:02,996 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-08 08:29:03,224 [main] DEBUG DocWordWriter - ... 228 ms for fillValues() +2024-09-08 08:29:03,253 [main] DEBUG DocWordWriter - ... 29 ms for widths (table) +2024-09-08 08:29:03,356 [main] DEBUG DocWordWriter - ... 103 ms for widths (columns) +2024-09-08 08:29:03,385 [main] DEBUG DocWordWriter - ... 29 ms for shadding/merging/styling (rows) +2024-09-08 08:29:03,425 [main] DEBUG DocWordWriter - ... 40 ms for borders +2024-09-08 08:29:03,425 [main] DEBUG DocWordWriter - ... 201 ms for formatTable() +2024-09-08 08:29:03,440 [main] INFO DocWordWriter - ... 472 ms total for insertTable() +2024-09-08 08:29:03,497 [main] INFO DocWordWriter - ... 49 ms for insertCaption(): Table 76 – Attributes of MMS::MMSNotification +2024-09-08 08:29:03,548 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of MMSNotification.', [241527 - 241567] +2024-09-08 08:29:03,560 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of MMSNotification.', [241527 - 241568] +2024-09-08 08:29:03,567 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [241527 - 241527] +2024-09-08 08:29:03,580 [main] INFO DocWordWriter - ... 43 ms for insertCaptionRef() +2024-09-08 08:29:03,580 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:29:03,634 [main] INFO AbstractWordWriter - writing doc for package SV and GSE common objects ... +2024-09-08 08:29:03,830 [main] INFO DocWordWriter - ... 39 ms for insertCaption(): Figure 24 – Class diagram SV and GSE common objects::SV and GSE common objects +2024-09-08 08:29:03,912 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': GSE/SV common classes relationship.', [242418 - 242455] +2024-09-08 08:29:03,921 [main] TRACE DocWordWriter - prepend : range.txt = ': GSE/SV common classes relationship.', [242418 - 242455] +2024-09-08 08:29:03,930 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [242418 - 242418] +2024-09-08 08:29:03,950 [main] INFO DocWordWriter - ... 43 ms for insertCaptionRef() +2024-09-08 08:29:03,950 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:29:03,994 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML117' to Word document and to used list. +2024-09-08 08:29:04,083 [main] INFO DocWordWriter - --- insertTable() 4 rows: Attributes of SV and GSE common objects::GSEandSVCommon +2024-09-08 08:29:04,114 [main] DEBUG DocWordWriter - ... 31 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:29:04,126 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-08 08:29:04,309 [main] DEBUG DocWordWriter - ... 183 ms for fillValues() +2024-09-08 08:29:04,336 [main] DEBUG DocWordWriter - ... 27 ms for widths (table) +2024-09-08 08:29:04,443 [main] DEBUG DocWordWriter - ... 107 ms for widths (columns) +2024-09-08 08:29:04,474 [main] DEBUG DocWordWriter - ... 31 ms for shadding/merging/styling (rows) +2024-09-08 08:29:04,517 [main] DEBUG DocWordWriter - ... 43 ms for borders +2024-09-08 08:29:04,517 [main] DEBUG DocWordWriter - ... 208 ms for formatTable() +2024-09-08 08:29:04,531 [main] INFO DocWordWriter - ... 434 ms total for insertTable() +2024-09-08 08:29:04,597 [main] INFO DocWordWriter - ... 57 ms for insertCaption(): Table 77 – Attributes of SV and GSE common objects::GSEandSVCommon +2024-09-08 08:29:04,651 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of GSEandSVCommon.', [242625 - 242664] +2024-09-08 08:29:04,662 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of GSEandSVCommon.', [242625 - 242665] +2024-09-08 08:29:04,670 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [242625 - 242625] +2024-09-08 08:29:04,685 [main] INFO DocWordWriter - ... 45 ms for insertCaptionRef() +2024-09-08 08:29:04,685 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:29:04,732 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML118' to Word document and to used list. +2024-09-08 08:29:04,817 [main] INFO DocWordWriter - --- insertTable() 9 rows: Attributes of SV and GSE common objects::GSEandSVPublisherAssociation +2024-09-08 08:29:04,851 [main] DEBUG DocWordWriter - ... 34 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:29:04,864 [main] DEBUG DocWordWriter - ... 13 ms for createTable() +2024-09-08 08:29:05,248 [main] DEBUG DocWordWriter - ... 384 ms for fillValues() +2024-09-08 08:29:05,277 [main] DEBUG DocWordWriter - ... 29 ms for widths (table) +2024-09-08 08:29:05,409 [main] DEBUG DocWordWriter - ... 132 ms for widths (columns) +2024-09-08 08:29:05,441 [main] DEBUG DocWordWriter - ... 32 ms for shadding/merging/styling (rows) +2024-09-08 08:29:05,490 [main] DEBUG DocWordWriter - ... 49 ms for borders +2024-09-08 08:29:05,490 [main] DEBUG DocWordWriter - ... 242 ms for formatTable() +2024-09-08 08:29:05,503 [main] INFO DocWordWriter - ... 673 ms total for insertTable() +2024-09-08 08:29:05,589 [main] INFO DocWordWriter - ... 77 ms for insertCaption(): Table 78 – Attributes of SV and GSE common objects::GSEandSVPublisherAssociation +2024-09-08 08:29:05,644 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of GSEandSVPublisherAssociation.', [243342 - 243395] +2024-09-08 08:29:05,655 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of GSEandSVPublisherAssociation.', [243342 - 243396] +2024-09-08 08:29:05,662 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [243342 - 243342] +2024-09-08 08:29:05,674 [main] INFO DocWordWriter - ... 42 ms for insertCaptionRef() +2024-09-08 08:29:05,674 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:29:05,717 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML123' to Word document and to used list. +2024-09-08 08:29:05,801 [main] INFO DocWordWriter - --- insertTable() 11 rows: Attributes of SV and GSE common objects::GSEandSVSubscriberAssociation +2024-09-08 08:29:05,832 [main] DEBUG DocWordWriter - ... 31 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:29:05,848 [main] DEBUG DocWordWriter - ... 16 ms for createTable() +2024-09-08 08:29:06,324 [main] DEBUG DocWordWriter - ... 476 ms for fillValues() +2024-09-08 08:29:06,359 [main] DEBUG DocWordWriter - ... 35 ms for widths (table) +2024-09-08 08:29:06,503 [main] DEBUG DocWordWriter - ... 144 ms for widths (columns) +2024-09-08 08:29:06,533 [main] DEBUG DocWordWriter - ... 30 ms for shadding/merging/styling (rows) +2024-09-08 08:29:06,590 [main] DEBUG DocWordWriter - ... 57 ms for borders +2024-09-08 08:29:06,590 [main] DEBUG DocWordWriter - ... 266 ms for formatTable() +2024-09-08 08:29:06,602 [main] INFO DocWordWriter - ... 789 ms total for insertTable() +2024-09-08 08:29:06,701 [main] INFO DocWordWriter - ... 91 ms for insertCaption(): Table 79 – Attributes of SV and GSE common objects::GSEandSVSubscriberAssociation +2024-09-08 08:29:06,752 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of GSEandSVSubscriberAssociation.', [244540 - 244594] +2024-09-08 08:29:06,766 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of GSEandSVSubscriberAssociation.', [244540 - 244595] +2024-09-08 08:29:06,773 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [244540 - 244540] +2024-09-08 08:29:06,790 [main] INFO DocWordWriter - ... 49 ms for insertCaptionRef() +2024-09-08 08:29:06,790 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:29:06,852 [main] INFO AbstractWordWriter - writing doc for package SV ... +2024-09-08 08:29:07,073 [main] INFO DocWordWriter - ... 38 ms for insertCaption(): Figure 25 – Class diagram SV::SV +2024-09-08 08:29:07,155 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': SV classes relationship. SVProvider and SVAssociation inherit both Security and Procotol Info attributes from the more general classes.', [246153 - 246290] +2024-09-08 08:29:07,162 [main] TRACE DocWordWriter - prepend : range.txt = ': SV classes relationship. SVProvider and SVAssociation inherit both Security and Procotol Info attributes from the more general classes.', [246153 - 246290] +2024-09-08 08:29:07,169 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [246153 - 246153] +2024-09-08 08:29:07,186 [main] INFO DocWordWriter - ... 37 ms for insertCaptionRef() +2024-09-08 08:29:07,186 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:29:07,233 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML129' to Word document and to used list. +2024-09-08 08:29:07,320 [main] INFO DocWordWriter - --- insertTable() 12 rows: Attributes of SV::SVProvider +2024-09-08 08:29:07,353 [main] DEBUG DocWordWriter - ... 33 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:29:07,372 [main] DEBUG DocWordWriter - ... 19 ms for createTable() +2024-09-08 08:29:07,915 [main] DEBUG DocWordWriter - ... 543 ms for fillValues() +2024-09-08 08:29:07,953 [main] DEBUG DocWordWriter - ... 38 ms for widths (table) +2024-09-08 08:29:08,111 [main] DEBUG DocWordWriter - ... 158 ms for widths (columns) +2024-09-08 08:29:08,143 [main] DEBUG DocWordWriter - ... 32 ms for shadding/merging/styling (rows) +2024-09-08 08:29:08,200 [main] DEBUG DocWordWriter - ... 57 ms for borders +2024-09-08 08:29:08,200 [main] DEBUG DocWordWriter - ... 285 ms for formatTable() +2024-09-08 08:29:08,211 [main] INFO DocWordWriter - ... 880 ms total for insertTable() +2024-09-08 08:29:08,307 [main] INFO DocWordWriter - ... 87 ms for insertCaption(): Table 80 – Attributes of SV::SVProvider +2024-09-08 08:29:08,363 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of SVProvider.', [246491 - 246526] +2024-09-08 08:29:08,375 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of SVProvider.', [246491 - 246527] +2024-09-08 08:29:08,381 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [246491 - 246491] +2024-09-08 08:29:08,396 [main] INFO DocWordWriter - ... 46 ms for insertCaptionRef() +2024-09-08 08:29:08,396 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:29:08,444 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML119' to Word document and to used list. +2024-09-08 08:29:08,528 [main] INFO DocWordWriter - --- insertTable() 11 rows: Attributes of SV::SVPublisherAssociationIP +2024-09-08 08:29:08,559 [main] DEBUG DocWordWriter - ... 31 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:29:08,579 [main] DEBUG DocWordWriter - ... 20 ms for createTable() +2024-09-08 08:29:09,068 [main] DEBUG DocWordWriter - ... 489 ms for fillValues() +2024-09-08 08:29:09,103 [main] DEBUG DocWordWriter - ... 35 ms for widths (table) +2024-09-08 08:29:09,244 [main] DEBUG DocWordWriter - ... 141 ms for widths (columns) +2024-09-08 08:29:09,275 [main] DEBUG DocWordWriter - ... 31 ms for shadding/merging/styling (rows) +2024-09-08 08:29:09,331 [main] DEBUG DocWordWriter - ... 56 ms for borders +2024-09-08 08:29:09,331 [main] DEBUG DocWordWriter - ... 263 ms for formatTable() +2024-09-08 08:29:09,346 [main] INFO DocWordWriter - ... 803 ms total for insertTable() +2024-09-08 08:29:09,448 [main] INFO DocWordWriter - ... 94 ms for insertCaption(): Table 81 – Attributes of SV::SVPublisherAssociationIP +2024-09-08 08:29:09,503 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of SVPublisherAssociationIP.', [248341 - 248390] +2024-09-08 08:29:09,514 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of SVPublisherAssociationIP.', [248341 - 248391] +2024-09-08 08:29:09,521 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [248341 - 248341] +2024-09-08 08:29:09,539 [main] INFO DocWordWriter - ... 47 ms for insertCaptionRef() +2024-09-08 08:29:09,539 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:29:09,593 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML120' to Word document and to used list. +2024-09-08 08:29:09,687 [main] INFO DocWordWriter - --- insertTable() 10 rows: Attributes of SV::SVPublisherAssociationL2 +2024-09-08 08:29:09,720 [main] DEBUG DocWordWriter - ... 33 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:29:09,737 [main] DEBUG DocWordWriter - ... 17 ms for createTable() +2024-09-08 08:29:10,180 [main] DEBUG DocWordWriter - ... 443 ms for fillValues() +2024-09-08 08:29:10,212 [main] DEBUG DocWordWriter - ... 32 ms for widths (table) +2024-09-08 08:29:10,358 [main] DEBUG DocWordWriter - ... 146 ms for widths (columns) +2024-09-08 08:29:10,390 [main] DEBUG DocWordWriter - ... 32 ms for shadding/merging/styling (rows) +2024-09-08 08:29:10,446 [main] DEBUG DocWordWriter - ... 56 ms for borders +2024-09-08 08:29:10,446 [main] DEBUG DocWordWriter - ... 266 ms for formatTable() +2024-09-08 08:29:10,458 [main] INFO DocWordWriter - ... 759 ms total for insertTable() +2024-09-08 08:29:10,573 [main] INFO DocWordWriter - ... 107 ms for insertCaption(): Table 82 – Attributes of SV::SVPublisherAssociationL2 +2024-09-08 08:29:10,627 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of SVPublisherAssociationL2.', [249799 - 249848] +2024-09-08 08:29:10,640 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of SVPublisherAssociationL2.', [249799 - 249849] +2024-09-08 08:29:10,647 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [249799 - 249799] +2024-09-08 08:29:10,665 [main] INFO DocWordWriter - ... 51 ms for insertCaptionRef() +2024-09-08 08:29:10,665 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:29:10,711 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML124' to Word document and to used list. +2024-09-08 08:29:10,797 [main] INFO DocWordWriter - --- insertTable() 13 rows: Attributes of SV::SVSubcriberAssociationIP +2024-09-08 08:29:10,829 [main] DEBUG DocWordWriter - ... 32 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:29:10,849 [main] DEBUG DocWordWriter - ... 20 ms for createTable() +2024-09-08 08:29:11,442 [main] DEBUG DocWordWriter - ... 593 ms for fillValues() +2024-09-08 08:29:11,476 [main] DEBUG DocWordWriter - ... 34 ms for widths (table) +2024-09-08 08:29:11,637 [main] DEBUG DocWordWriter - ... 161 ms for widths (columns) +2024-09-08 08:29:11,669 [main] DEBUG DocWordWriter - ... 32 ms for shadding/merging/styling (rows) +2024-09-08 08:29:11,731 [main] DEBUG DocWordWriter - ... 62 ms for borders +2024-09-08 08:29:11,731 [main] DEBUG DocWordWriter - ... 289 ms for formatTable() +2024-09-08 08:29:11,746 [main] INFO DocWordWriter - ... 934 ms total for insertTable() +2024-09-08 08:29:11,877 [main] INFO DocWordWriter - ... 123 ms for insertCaption(): Table 83 – Attributes of SV::SVSubcriberAssociationIP +2024-09-08 08:29:11,931 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of SVSubcriberAssociationIP.', [251221 - 251270] +2024-09-08 08:29:11,944 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of SVSubcriberAssociationIP.', [251221 - 251271] +2024-09-08 08:29:11,951 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [251221 - 251221] +2024-09-08 08:29:11,967 [main] INFO DocWordWriter - ... 48 ms for insertCaptionRef() +2024-09-08 08:29:11,967 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:29:12,019 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML125' to Word document and to used list. +2024-09-08 08:29:12,117 [main] INFO DocWordWriter - --- insertTable() 12 rows: Attributes of SV::SVSubcriberAssociationL2 +2024-09-08 08:29:12,150 [main] DEBUG DocWordWriter - ... 33 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:29:12,170 [main] DEBUG DocWordWriter - ... 20 ms for createTable() +2024-09-08 08:29:12,718 [main] DEBUG DocWordWriter - ... 548 ms for fillValues() +2024-09-08 08:29:12,758 [main] DEBUG DocWordWriter - ... 40 ms for widths (table) +2024-09-08 08:29:12,916 [main] DEBUG DocWordWriter - ... 158 ms for widths (columns) +2024-09-08 08:29:12,949 [main] DEBUG DocWordWriter - ... 33 ms for shadding/merging/styling (rows) +2024-09-08 08:29:13,008 [main] DEBUG DocWordWriter - ... 59 ms for borders +2024-09-08 08:29:13,008 [main] DEBUG DocWordWriter - ... 290 ms for formatTable() +2024-09-08 08:29:13,020 [main] INFO DocWordWriter - ... 891 ms total for insertTable() +2024-09-08 08:29:13,169 [main] INFO DocWordWriter - ... 141 ms for insertCaption(): Table 84 – Attributes of SV::SVSubcriberAssociationL2 +2024-09-08 08:29:13,225 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of SVSubcriberAssociationL2.', [252904 - 252953] +2024-09-08 08:29:13,238 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of SVSubcriberAssociationL2.', [252904 - 252954] +2024-09-08 08:29:13,244 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [252904 - 252904] +2024-09-08 08:29:13,264 [main] INFO DocWordWriter - ... 51 ms for insertCaptionRef() +2024-09-08 08:29:13,265 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:29:13,314 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML130' to Word document and to used list. +2024-09-08 08:29:13,387 [main] INFO DocWordWriter - closing MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-08 08:29:16,155 [main] INFO DocWordWriter - opening MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-08 08:29:17,947 [main] INFO OptimOptions - setting view to normal +2024-09-08 08:29:17,986 [main] INFO OptimOptions - disabling pagination +2024-09-08 08:29:18,024 [main] INFO OptimOptions - disabling field update +2024-09-08 08:29:18,126 [main] INFO OptimOptions - disabling screen updating +2024-09-08 08:29:18,142 [main] DEBUG DocWordWriter - current(_optimisedOptions): OptimOptions [viewId=1, normView=true, paginate=false, updFld=false, updScr=false, fastSave=false, spelling=false, grammar=false] +2024-09-08 08:29:18,260 [main] INFO Util - time=[0:00:04.900] closed and reopened document. +2024-09-08 08:29:18,261 [main] INFO Util - +2024-09-08 08:29:18,319 [main] INFO DocWordWriter - --- insertTable() 4 rows: Attributes of SV::SVNotification +2024-09-08 08:29:18,361 [main] DEBUG DocWordWriter - ... 42 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:29:18,373 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-08 08:29:18,565 [main] DEBUG DocWordWriter - ... 192 ms for fillValues() +2024-09-08 08:29:18,591 [main] DEBUG DocWordWriter - ... 26 ms for widths (table) +2024-09-08 08:29:18,684 [main] DEBUG DocWordWriter - ... 93 ms for widths (columns) +2024-09-08 08:29:18,713 [main] DEBUG DocWordWriter - ... 29 ms for shadding/merging/styling (rows) +2024-09-08 08:29:18,751 [main] DEBUG DocWordWriter - ... 38 ms for borders +2024-09-08 08:29:18,751 [main] DEBUG DocWordWriter - ... 186 ms for formatTable() +2024-09-08 08:29:18,763 [main] INFO DocWordWriter - ... 432 ms total for insertTable() +2024-09-08 08:29:18,797 [main] INFO DocWordWriter - ... 26 ms for insertCaption(): Table 85 – Attributes of SV::SVNotification +2024-09-08 08:29:18,852 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of SVNotification.', [254420 - 254459] +2024-09-08 08:29:18,865 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of SVNotification.', [254420 - 254460] +2024-09-08 08:29:18,872 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [254420 - 254420] +2024-09-08 08:29:18,886 [main] INFO DocWordWriter - ... 47 ms for insertCaptionRef() +2024-09-08 08:29:18,886 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:29:19,055 [main] INFO AbstractWordWriter - writing doc for package GSE ... +2024-09-08 08:29:19,268 [main] INFO DocWordWriter - ... 27 ms for insertCaption(): Figure 26 – Class diagram GSE::GSE +2024-09-08 08:29:19,346 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': GSE classes relationship. GSEProvider and GSEAssociation inherit both Security and Procotol Info attributes from the more general classes.', [255196 - 255336] +2024-09-08 08:29:19,355 [main] TRACE DocWordWriter - prepend : range.txt = ': GSE classes relationship. GSEProvider and GSEAssociation inherit both Security and Procotol Info attributes from the more general classes.', [255196 - 255336] +2024-09-08 08:29:19,376 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [255196 - 255196] +2024-09-08 08:29:19,388 [main] INFO DocWordWriter - ... 48 ms for insertCaptionRef() +2024-09-08 08:29:19,388 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:29:19,437 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML126' to Word document and to used list. +2024-09-08 08:29:19,522 [main] INFO DocWordWriter - --- insertTable() 27 rows: Attributes of GSE::GSESubscriberAssociation +2024-09-08 08:29:19,555 [main] DEBUG DocWordWriter - ... 33 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:29:19,571 [main] DEBUG DocWordWriter - ... 16 ms for createTable() +2024-09-08 08:29:20,732 [main] DEBUG DocWordWriter - ... 1161 ms for fillValues() +2024-09-08 08:29:20,780 [main] DEBUG DocWordWriter - ... 48 ms for widths (table) +2024-09-08 08:29:21,004 [main] DEBUG DocWordWriter - ... 224 ms for widths (columns) +2024-09-08 08:29:21,039 [main] DEBUG DocWordWriter - ... 34 ms for shadding/merging/styling (rows) +2024-09-08 08:29:21,127 [main] DEBUG DocWordWriter - ... 89 ms for borders +2024-09-08 08:29:21,127 [main] DEBUG DocWordWriter - ... 395 ms for formatTable() +2024-09-08 08:29:21,140 [main] INFO DocWordWriter - ... 1605 ms total for insertTable() +2024-09-08 08:29:21,198 [main] INFO DocWordWriter - ... 50 ms for insertCaption(): Table 86 – Attributes of GSE::GSESubscriberAssociation +2024-09-08 08:29:21,255 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of GSESubscriberAssociation.', [255523 - 255572] +2024-09-08 08:29:21,266 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of GSESubscriberAssociation.', [255523 - 255573] +2024-09-08 08:29:21,273 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [255523 - 255523] +2024-09-08 08:29:21,287 [main] INFO DocWordWriter - ... 44 ms for insertCaptionRef() +2024-09-08 08:29:21,287 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:29:21,334 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML131' to Word document and to used list. +2024-09-08 08:29:21,421 [main] INFO DocWordWriter - --- insertTable() 13 rows: Attributes of GSE::GSEProvider +2024-09-08 08:29:21,455 [main] DEBUG DocWordWriter - ... 34 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:29:21,468 [main] DEBUG DocWordWriter - ... 13 ms for createTable() +2024-09-08 08:29:22,050 [main] DEBUG DocWordWriter - ... 582 ms for fillValues() +2024-09-08 08:29:22,086 [main] DEBUG DocWordWriter - ... 36 ms for widths (table) +2024-09-08 08:29:22,244 [main] DEBUG DocWordWriter - ... 158 ms for widths (columns) +2024-09-08 08:29:22,277 [main] DEBUG DocWordWriter - ... 33 ms for shadding/merging/styling (rows) +2024-09-08 08:29:22,335 [main] DEBUG DocWordWriter - ... 57 ms for borders +2024-09-08 08:29:22,335 [main] DEBUG DocWordWriter - ... 285 ms for formatTable() +2024-09-08 08:29:22,347 [main] INFO DocWordWriter - ... 914 ms total for insertTable() +2024-09-08 08:29:22,409 [main] INFO DocWordWriter - ... 53 ms for insertCaption(): Table 87 – Attributes of GSE::GSEProvider +2024-09-08 08:29:22,464 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of GSEProvider.', [258531 - 258567] +2024-09-08 08:29:22,476 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of GSEProvider.', [258531 - 258568] +2024-09-08 08:29:22,483 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [258531 - 258531] +2024-09-08 08:29:22,498 [main] INFO DocWordWriter - ... 47 ms for insertCaptionRef() +2024-09-08 08:29:22,498 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:29:22,544 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML121' to Word document and to used list. +2024-09-08 08:29:22,628 [main] INFO DocWordWriter - --- insertTable() 11 rows: Attributes of GSE::GSEPublisherAssociationIP +2024-09-08 08:29:22,659 [main] DEBUG DocWordWriter - ... 31 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:29:22,672 [main] DEBUG DocWordWriter - ... 13 ms for createTable() +2024-09-08 08:29:23,177 [main] DEBUG DocWordWriter - ... 505 ms for fillValues() +2024-09-08 08:29:23,208 [main] DEBUG DocWordWriter - ... 31 ms for widths (table) +2024-09-08 08:29:23,354 [main] DEBUG DocWordWriter - ... 146 ms for widths (columns) +2024-09-08 08:29:23,385 [main] DEBUG DocWordWriter - ... 31 ms for shadding/merging/styling (rows) +2024-09-08 08:29:23,437 [main] DEBUG DocWordWriter - ... 52 ms for borders +2024-09-08 08:29:23,437 [main] DEBUG DocWordWriter - ... 260 ms for formatTable() +2024-09-08 08:29:23,450 [main] INFO DocWordWriter - ... 809 ms total for insertTable() +2024-09-08 08:29:23,521 [main] INFO DocWordWriter - ... 62 ms for insertCaption(): Table 88 – Attributes of GSE::GSEPublisherAssociationIP +2024-09-08 08:29:23,577 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of GSEPublisherAssociationIP.', [260550 - 260600] +2024-09-08 08:29:23,591 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of GSEPublisherAssociationIP.', [260550 - 260601] +2024-09-08 08:29:23,598 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [260550 - 260550] +2024-09-08 08:29:23,614 [main] INFO DocWordWriter - ... 49 ms for insertCaptionRef() +2024-09-08 08:29:23,614 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:29:23,666 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML122' to Word document and to used list. +2024-09-08 08:29:23,751 [main] INFO DocWordWriter - --- insertTable() 11 rows: Attributes of GSE::GSEPublisherAssociationL2 +2024-09-08 08:29:23,784 [main] DEBUG DocWordWriter - ... 33 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:29:23,797 [main] DEBUG DocWordWriter - ... 13 ms for createTable() +2024-09-08 08:29:24,304 [main] DEBUG DocWordWriter - ... 507 ms for fillValues() +2024-09-08 08:29:24,336 [main] DEBUG DocWordWriter - ... 31 ms for widths (table) +2024-09-08 08:29:24,484 [main] DEBUG DocWordWriter - ... 148 ms for widths (columns) +2024-09-08 08:29:24,519 [main] DEBUG DocWordWriter - ... 35 ms for shadding/merging/styling (rows) +2024-09-08 08:29:24,574 [main] DEBUG DocWordWriter - ... 55 ms for borders +2024-09-08 08:29:24,574 [main] DEBUG DocWordWriter - ... 270 ms for formatTable() +2024-09-08 08:29:24,586 [main] INFO DocWordWriter - ... 823 ms total for insertTable() +2024-09-08 08:29:24,661 [main] INFO DocWordWriter - ... 65 ms for insertCaption(): Table 89 – Attributes of GSE::GSEPublisherAssociationL2 +2024-09-08 08:29:24,717 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of GSEPublisherAssociationL2.', [262013 - 262063] +2024-09-08 08:29:24,732 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of GSEPublisherAssociationL2.', [262013 - 262064] +2024-09-08 08:29:24,739 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [262013 - 262013] +2024-09-08 08:29:24,753 [main] INFO DocWordWriter - ... 48 ms for insertCaptionRef() +2024-09-08 08:29:24,753 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:29:24,798 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML127' to Word document and to used list. +2024-09-08 08:29:24,889 [main] INFO DocWordWriter - --- insertTable() 29 rows: Attributes of GSE::GSESubcriberAssociationIP +2024-09-08 08:29:24,922 [main] DEBUG DocWordWriter - ... 33 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:29:24,945 [main] DEBUG DocWordWriter - ... 23 ms for createTable() +2024-09-08 08:29:26,261 [main] DEBUG DocWordWriter - ... 1316 ms for fillValues() +2024-09-08 08:29:26,311 [main] DEBUG DocWordWriter - ... 50 ms for widths (table) +2024-09-08 08:29:26,558 [main] DEBUG DocWordWriter - ... 247 ms for widths (columns) +2024-09-08 08:29:26,594 [main] DEBUG DocWordWriter - ... 36 ms for shadding/merging/styling (rows) +2024-09-08 08:29:26,681 [main] DEBUG DocWordWriter - ... 87 ms for borders +2024-09-08 08:29:26,681 [main] DEBUG DocWordWriter - ... 420 ms for formatTable() +2024-09-08 08:29:26,693 [main] INFO DocWordWriter - ... 1792 ms total for insertTable() +2024-09-08 08:29:26,798 [main] INFO DocWordWriter - ... 97 ms for insertCaption(): Table 90 – Attributes of GSE::GSESubcriberAssociationIP +2024-09-08 08:29:26,851 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of GSESubcriberAssociationIP.', [263567 - 263617] +2024-09-08 08:29:26,865 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of GSESubcriberAssociationIP.', [263567 - 263618] +2024-09-08 08:29:26,872 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [263567 - 263567] +2024-09-08 08:29:26,888 [main] INFO DocWordWriter - ... 49 ms for insertCaptionRef() +2024-09-08 08:29:26,889 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:29:26,937 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML128' to Word document and to used list. +2024-09-08 08:29:27,025 [main] INFO DocWordWriter - --- insertTable() 29 rows: Attributes of GSE::GSESubcriberAssociationL2 +2024-09-08 08:29:27,060 [main] DEBUG DocWordWriter - ... 35 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:29:27,087 [main] DEBUG DocWordWriter - ... 27 ms for createTable() +2024-09-08 08:29:28,430 [main] DEBUG DocWordWriter - ... 1343 ms for fillValues() +2024-09-08 08:29:28,484 [main] DEBUG DocWordWriter - ... 54 ms for widths (table) +2024-09-08 08:29:28,721 [main] DEBUG DocWordWriter - ... 237 ms for widths (columns) +2024-09-08 08:29:28,754 [main] DEBUG DocWordWriter - ... 33 ms for shadding/merging/styling (rows) +2024-09-08 08:29:28,851 [main] DEBUG DocWordWriter - ... 97 ms for borders +2024-09-08 08:29:28,851 [main] DEBUG DocWordWriter - ... 421 ms for formatTable() +2024-09-08 08:29:28,863 [main] INFO DocWordWriter - ... 1826 ms total for insertTable() +2024-09-08 08:29:28,965 [main] INFO DocWordWriter - ... 94 ms for insertCaption(): Table 91 – Attributes of GSE::GSESubcriberAssociationL2 +2024-09-08 08:29:29,020 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of GSESubcriberAssociationL2.', [266848 - 266898] +2024-09-08 08:29:29,033 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of GSESubcriberAssociationL2.', [266848 - 266899] +2024-09-08 08:29:29,041 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [266848 - 266848] +2024-09-08 08:29:29,058 [main] INFO DocWordWriter - ... 52 ms for insertCaptionRef() +2024-09-08 08:29:29,058 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:29:29,108 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML132' to Word document and to used list. +2024-09-08 08:29:29,204 [main] INFO DocWordWriter - --- insertTable() 4 rows: Attributes of GSE::GSENotification +2024-09-08 08:29:29,238 [main] DEBUG DocWordWriter - ... 34 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:29:29,252 [main] DEBUG DocWordWriter - ... 14 ms for createTable() +2024-09-08 08:29:29,442 [main] DEBUG DocWordWriter - ... 190 ms for fillValues() +2024-09-08 08:29:29,469 [main] DEBUG DocWordWriter - ... 27 ms for widths (table) +2024-09-08 08:29:29,569 [main] DEBUG DocWordWriter - ... 100 ms for widths (columns) +2024-09-08 08:29:29,602 [main] DEBUG DocWordWriter - ... 33 ms for shadding/merging/styling (rows) +2024-09-08 08:29:29,637 [main] DEBUG DocWordWriter - ... 35 ms for borders +2024-09-08 08:29:29,637 [main] DEBUG DocWordWriter - ... 195 ms for formatTable() +2024-09-08 08:29:29,652 [main] INFO DocWordWriter - ... 433 ms total for insertTable() +2024-09-08 08:29:29,751 [main] INFO DocWordWriter - ... 91 ms for insertCaption(): Table 92 – Attributes of GSE::GSENotification +2024-09-08 08:29:29,809 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of GSENotification.', [270086 - 270126] +2024-09-08 08:29:29,824 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of GSENotification.', [270086 - 270127] +2024-09-08 08:29:29,831 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [270086 - 270086] +2024-09-08 08:29:29,845 [main] INFO DocWordWriter - ... 50 ms for insertCaptionRef() +2024-09-08 08:29:29,845 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:29:29,856 [main] INFO Util - time=[0:01:42.205] replaced [270566 - 270566] PACKAGE Application Protocols Agents, figures (17 before 9 mine), tables (48 before 44 mine)... +2024-09-08 08:29:29,856 [main] INFO Util - +2024-09-08 08:29:29,860 [main] INFO AbstractWordWriter - replacing [270619 - 270658] PACKAGE Interfaces Agent, figures (26 before ), tables (92 before )... +2024-09-08 08:29:29,894 [main] INFO AbstractWordWriter - writing doc for package Interfaces Agent ... +2024-09-08 08:29:30,102 [main] INFO DocWordWriter - ... 36 ms for insertCaption(): Figure 27 – Class diagram Interfaces Agent::Interfaces +2024-09-08 08:29:30,189 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': The IED interfaces are depicted.', [270894 - 270928] +2024-09-08 08:29:30,197 [main] TRACE DocWordWriter - prepend : range.txt = ': The IED interfaces are depicted.', [270894 - 270928] +2024-09-08 08:29:30,204 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [270894 - 270894] +2024-09-08 08:29:30,219 [main] INFO DocWordWriter - ... 35 ms for insertCaptionRef() +2024-09-08 08:29:30,219 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:29:30,266 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML136' to Word document and to used list. +2024-09-08 08:29:30,356 [main] INFO DocWordWriter - --- insertTable() 8 rows: Attributes of Interfaces Agent::Interface +2024-09-08 08:29:30,385 [main] DEBUG DocWordWriter - ... 29 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:29:30,402 [main] DEBUG DocWordWriter - ... 17 ms for createTable() +2024-09-08 08:29:30,776 [main] DEBUG DocWordWriter - ... 374 ms for fillValues() +2024-09-08 08:29:30,806 [main] DEBUG DocWordWriter - ... 30 ms for widths (table) +2024-09-08 08:29:30,938 [main] DEBUG DocWordWriter - ... 132 ms for widths (columns) +2024-09-08 08:29:30,969 [main] DEBUG DocWordWriter - ... 31 ms for shadding/merging/styling (rows) +2024-09-08 08:29:31,023 [main] DEBUG DocWordWriter - ... 54 ms for borders +2024-09-08 08:29:31,023 [main] DEBUG DocWordWriter - ... 247 ms for formatTable() +2024-09-08 08:29:31,037 [main] INFO DocWordWriter - ... 667 ms total for insertTable() +2024-09-08 08:29:31,174 [main] INFO DocWordWriter - ... 129 ms for insertCaption(): Table 93 – Attributes of Interfaces Agent::Interface +2024-09-08 08:29:31,230 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Interface.', [271078 - 271112] +2024-09-08 08:29:31,245 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Interface.', [271078 - 271113] +2024-09-08 08:29:31,252 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [271078 - 271078] +2024-09-08 08:29:31,270 [main] INFO DocWordWriter - ... 52 ms for insertCaptionRef() +2024-09-08 08:29:31,270 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:29:31,315 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML142' to Word document and to used list. +2024-09-08 08:29:31,406 [main] INFO DocWordWriter - --- insertTable() 22 rows: Attributes of Interfaces Agent::Interfaces +2024-09-08 08:29:31,440 [main] DEBUG DocWordWriter - ... 34 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:29:31,468 [main] DEBUG DocWordWriter - ... 28 ms for createTable() +2024-09-08 08:29:32,504 [main] DEBUG DocWordWriter - ... 1036 ms for fillValues() +2024-09-08 08:29:32,551 [main] DEBUG DocWordWriter - ... 47 ms for widths (table) +2024-09-08 08:29:32,765 [main] DEBUG DocWordWriter - ... 214 ms for widths (columns) +2024-09-08 08:29:32,797 [main] DEBUG DocWordWriter - ... 32 ms for shadding/merging/styling (rows) +2024-09-08 08:29:32,878 [main] DEBUG DocWordWriter - ... 81 ms for borders +2024-09-08 08:29:32,878 [main] DEBUG DocWordWriter - ... 374 ms for formatTable() +2024-09-08 08:29:32,893 [main] INFO DocWordWriter - ... 1472 ms total for insertTable() +2024-09-08 08:29:33,038 [main] INFO DocWordWriter - ... 136 ms for insertCaption(): Table 94 – Attributes of Interfaces Agent::Interfaces +2024-09-08 08:29:33,095 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Interfaces.', [271919 - 271954] +2024-09-08 08:29:33,111 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Interfaces.', [271919 - 271955] +2024-09-08 08:29:33,117 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [271919 - 271919] +2024-09-08 08:29:33,134 [main] INFO DocWordWriter - ... 55 ms for insertCaptionRef() +2024-09-08 08:29:33,134 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:29:33,185 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML137' to Word document and to used list. +2024-09-08 08:29:33,275 [main] INFO DocWordWriter - --- insertTable() 8 rows: Attributes of Interfaces Agent::ETHEntry +2024-09-08 08:29:33,309 [main] DEBUG DocWordWriter - ... 34 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:29:33,327 [main] DEBUG DocWordWriter - ... 18 ms for createTable() +2024-09-08 08:29:33,705 [main] DEBUG DocWordWriter - ... 378 ms for fillValues() +2024-09-08 08:29:33,737 [main] DEBUG DocWordWriter - ... 32 ms for widths (table) +2024-09-08 08:29:33,866 [main] DEBUG DocWordWriter - ... 128 ms for widths (columns) +2024-09-08 08:29:33,898 [main] DEBUG DocWordWriter - ... 33 ms for shadding/merging/styling (rows) +2024-09-08 08:29:33,948 [main] DEBUG DocWordWriter - ... 50 ms for borders +2024-09-08 08:29:33,948 [main] DEBUG DocWordWriter - ... 243 ms for formatTable() +2024-09-08 08:29:33,962 [main] INFO DocWordWriter - ... 673 ms total for insertTable() +2024-09-08 08:29:34,117 [main] INFO DocWordWriter - ... 146 ms for insertCaption(): Table 95 – Attributes of Interfaces Agent::ETHEntry +2024-09-08 08:29:34,173 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of ETHEntry.', [274405 - 274438] +2024-09-08 08:29:34,189 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of ETHEntry.', [274405 - 274439] +2024-09-08 08:29:34,197 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [274405 - 274405] +2024-09-08 08:29:34,213 [main] INFO DocWordWriter - ... 52 ms for insertCaptionRef() +2024-09-08 08:29:34,213 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:29:34,260 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML138' to Word document and to used list. +2024-09-08 08:29:34,351 [main] INFO DocWordWriter - --- insertTable() 9 rows: Attributes of Interfaces Agent::KEYEntry +2024-09-08 08:29:34,387 [main] DEBUG DocWordWriter - ... 36 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:29:34,403 [main] DEBUG DocWordWriter - ... 16 ms for createTable() +2024-09-08 08:29:34,839 [main] DEBUG DocWordWriter - ... 436 ms for fillValues() +2024-09-08 08:29:34,875 [main] DEBUG DocWordWriter - ... 36 ms for widths (table) +2024-09-08 08:29:35,012 [main] DEBUG DocWordWriter - ... 137 ms for widths (columns) +2024-09-08 08:29:35,044 [main] DEBUG DocWordWriter - ... 32 ms for shadding/merging/styling (rows) +2024-09-08 08:29:35,095 [main] DEBUG DocWordWriter - ... 51 ms for borders +2024-09-08 08:29:35,095 [main] DEBUG DocWordWriter - ... 256 ms for formatTable() +2024-09-08 08:29:35,108 [main] INFO DocWordWriter - ... 744 ms total for insertTable() +2024-09-08 08:29:35,286 [main] INFO DocWordWriter - ... 170 ms for insertCaption(): Table 96 – Attributes of Interfaces Agent::KEYEntry +2024-09-08 08:29:35,342 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of KEYEntry.', [275275 - 275308] +2024-09-08 08:29:35,354 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of KEYEntry.', [275275 - 275309] +2024-09-08 08:29:35,361 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [275275 - 275275] +2024-09-08 08:29:35,377 [main] INFO DocWordWriter - ... 50 ms for insertCaptionRef() +2024-09-08 08:29:35,377 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:29:35,422 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML139' to Word document and to used list. +2024-09-08 08:29:35,495 [main] INFO DocWordWriter - closing MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-08 08:29:38,377 [main] INFO DocWordWriter - opening MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-08 08:29:40,326 [main] INFO OptimOptions - setting view to normal +2024-09-08 08:29:40,365 [main] INFO OptimOptions - disabling pagination +2024-09-08 08:29:40,403 [main] INFO OptimOptions - disabling field update +2024-09-08 08:29:40,506 [main] INFO OptimOptions - disabling screen updating +2024-09-08 08:29:40,516 [main] DEBUG DocWordWriter - current(_optimisedOptions): OptimOptions [viewId=1, normView=true, paginate=false, updFld=false, updScr=false, fastSave=false, spelling=false, grammar=false] +2024-09-08 08:29:40,632 [main] INFO Util - time=[0:00:05.164] closed and reopened document. +2024-09-08 08:29:40,632 [main] INFO Util - +2024-09-08 08:29:40,686 [main] INFO DocWordWriter - --- insertTable() 10 rows: Attributes of Interfaces Agent::SEREntry +2024-09-08 08:29:40,722 [main] DEBUG DocWordWriter - ... 36 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:29:40,735 [main] DEBUG DocWordWriter - ... 13 ms for createTable() +2024-09-08 08:29:41,171 [main] DEBUG DocWordWriter - ... 436 ms for fillValues() +2024-09-08 08:29:41,205 [main] DEBUG DocWordWriter - ... 34 ms for widths (table) +2024-09-08 08:29:41,342 [main] DEBUG DocWordWriter - ... 137 ms for widths (columns) +2024-09-08 08:29:41,375 [main] DEBUG DocWordWriter - ... 33 ms for shadding/merging/styling (rows) +2024-09-08 08:29:41,425 [main] DEBUG DocWordWriter - ... 50 ms for borders +2024-09-08 08:29:41,425 [main] DEBUG DocWordWriter - ... 254 ms for formatTable() +2024-09-08 08:29:41,440 [main] INFO DocWordWriter - ... 739 ms total for insertTable() +2024-09-08 08:29:41,485 [main] INFO DocWordWriter - ... 36 ms for insertCaption(): Table 97 – Attributes of Interfaces Agent::SEREntry +2024-09-08 08:29:41,542 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of SEREntry.', [276232 - 276265] +2024-09-08 08:29:41,555 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of SEREntry.', [276232 - 276266] +2024-09-08 08:29:41,562 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [276232 - 276232] +2024-09-08 08:29:41,573 [main] INFO DocWordWriter - ... 46 ms for insertCaptionRef() +2024-09-08 08:29:41,573 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:29:41,747 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML140' to Word document and to used list. +2024-09-08 08:29:41,836 [main] INFO DocWordWriter - --- insertTable() 8 rows: Attributes of Interfaces Agent::ALGEntry +2024-09-08 08:29:41,866 [main] DEBUG DocWordWriter - ... 30 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:29:41,878 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-08 08:29:42,251 [main] DEBUG DocWordWriter - ... 373 ms for fillValues() +2024-09-08 08:29:42,284 [main] DEBUG DocWordWriter - ... 33 ms for widths (table) +2024-09-08 08:29:42,411 [main] DEBUG DocWordWriter - ... 127 ms for widths (columns) +2024-09-08 08:29:42,446 [main] DEBUG DocWordWriter - ... 35 ms for shadding/merging/styling (rows) +2024-09-08 08:29:42,494 [main] DEBUG DocWordWriter - ... 48 ms for borders +2024-09-08 08:29:42,494 [main] DEBUG DocWordWriter - ... 243 ms for formatTable() +2024-09-08 08:29:42,507 [main] INFO DocWordWriter - ... 658 ms total for insertTable() +2024-09-08 08:29:42,557 [main] INFO DocWordWriter - ... 42 ms for insertCaption(): Table 98 – Attributes of Interfaces Agent::ALGEntry +2024-09-08 08:29:42,608 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of ALGEntry.', [277228 - 277261] +2024-09-08 08:29:42,620 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of ALGEntry.', [277228 - 277262] +2024-09-08 08:29:42,627 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [277228 - 277228] +2024-09-08 08:29:42,642 [main] INFO DocWordWriter - ... 46 ms for insertCaptionRef() +2024-09-08 08:29:42,642 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:29:42,691 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML141' to Word document and to used list. +2024-09-08 08:29:42,775 [main] INFO DocWordWriter - --- insertTable() 8 rows: Attributes of Interfaces Agent::USBEntry +2024-09-08 08:29:42,804 [main] DEBUG DocWordWriter - ... 29 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:29:42,817 [main] DEBUG DocWordWriter - ... 13 ms for createTable() +2024-09-08 08:29:43,180 [main] DEBUG DocWordWriter - ... 363 ms for fillValues() +2024-09-08 08:29:43,211 [main] DEBUG DocWordWriter - ... 31 ms for widths (table) +2024-09-08 08:29:43,338 [main] DEBUG DocWordWriter - ... 127 ms for widths (columns) +2024-09-08 08:29:43,369 [main] DEBUG DocWordWriter - ... 31 ms for shadding/merging/styling (rows) +2024-09-08 08:29:43,418 [main] DEBUG DocWordWriter - ... 49 ms for borders +2024-09-08 08:29:43,418 [main] DEBUG DocWordWriter - ... 238 ms for formatTable() +2024-09-08 08:29:43,430 [main] INFO DocWordWriter - ... 643 ms total for insertTable() +2024-09-08 08:29:43,490 [main] INFO DocWordWriter - ... 50 ms for insertCaption(): Table 99 – Attributes of Interfaces Agent::USBEntry +2024-09-08 08:29:43,544 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of USBEntry.', [278090 - 278123] +2024-09-08 08:29:43,556 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of USBEntry.', [278090 - 278124] +2024-09-08 08:29:43,562 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [278090 - 278090] +2024-09-08 08:29:43,578 [main] INFO DocWordWriter - ... 46 ms for insertCaptionRef() +2024-09-08 08:29:43,578 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:29:43,624 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML143' to Word document and to used list. +2024-09-08 08:29:43,735 [main] INFO DocWordWriter - --- insertTable() 11 rows: Attributes of Interfaces Agent::Notification +2024-09-08 08:29:43,774 [main] DEBUG DocWordWriter - ... 39 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:29:43,789 [main] DEBUG DocWordWriter - ... 15 ms for createTable() +2024-09-08 08:29:44,337 [main] DEBUG DocWordWriter - ... 548 ms for fillValues() +2024-09-08 08:29:44,372 [main] DEBUG DocWordWriter - ... 35 ms for widths (table) +2024-09-08 08:29:44,518 [main] DEBUG DocWordWriter - ... 146 ms for widths (columns) +2024-09-08 08:29:44,548 [main] DEBUG DocWordWriter - ... 30 ms for shadding/merging/styling (rows) +2024-09-08 08:29:44,601 [main] DEBUG DocWordWriter - ... 53 ms for borders +2024-09-08 08:29:44,601 [main] DEBUG DocWordWriter - ... 264 ms for formatTable() +2024-09-08 08:29:44,613 [main] INFO DocWordWriter - ... 866 ms total for insertTable() +2024-09-08 08:29:44,673 [main] INFO DocWordWriter - ... 51 ms for insertCaption(): Table 100 – Attributes of Interfaces Agent::Notification +2024-09-08 08:29:44,730 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Notification.', [279002 - 279039] +2024-09-08 08:29:44,745 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Notification.', [279002 - 279040] +2024-09-08 08:29:44,752 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [279002 - 279002] +2024-09-08 08:29:44,764 [main] INFO DocWordWriter - ... 47 ms for insertCaptionRef() +2024-09-08 08:29:44,765 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:29:44,775 [main] INFO Util - time=[0:00:14.919] replaced [280164 - 280164] PACKAGE Interfaces Agent, figures (26 before 1 mine), tables (92 before 8 mine)... +2024-09-08 08:29:44,775 [main] INFO Util - +2024-09-08 08:29:44,780 [main] INFO AbstractWordWriter - replacing [280205 - 280240] PACKAGE Clocks Agent, figures (27 before ), tables (100 before )... +2024-09-08 08:29:44,816 [main] INFO AbstractWordWriter - writing doc for package Clocks Agent ... +2024-09-08 08:29:45,000 [main] INFO DocWordWriter - ... 25 ms for insertCaption(): Figure 28 – Class diagram Clocks Agent::Clocks Agent +2024-09-08 08:29:45,078 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = ': Clocks Agent classes', [280402 - 280424] +2024-09-08 08:29:45,085 [main] TRACE DocWordWriter - prepend : range.txt = ': Clocks Agent classes', [280402 - 280424] +2024-09-08 08:29:45,092 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [280402 - 280402] +2024-09-08 08:29:45,108 [main] INFO DocWordWriter - ... 35 ms for insertCaptionRef() +2024-09-08 08:29:45,108 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:29:45,157 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML133' to Word document and to used list. +2024-09-08 08:29:45,240 [main] INFO DocWordWriter - --- insertTable() 6 rows: Attributes of Clocks Agent::Clock +2024-09-08 08:29:45,272 [main] DEBUG DocWordWriter - ... 32 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:29:45,284 [main] DEBUG DocWordWriter - ... 12 ms for createTable() +2024-09-08 08:29:45,578 [main] DEBUG DocWordWriter - ... 294 ms for fillValues() +2024-09-08 08:29:45,607 [main] DEBUG DocWordWriter - ... 29 ms for widths (table) +2024-09-08 08:29:45,715 [main] DEBUG DocWordWriter - ... 108 ms for widths (columns) +2024-09-08 08:29:45,746 [main] DEBUG DocWordWriter - ... 31 ms for shadding/merging/styling (rows) +2024-09-08 08:29:45,786 [main] DEBUG DocWordWriter - ... 40 ms for borders +2024-09-08 08:29:45,786 [main] DEBUG DocWordWriter - ... 208 ms for formatTable() +2024-09-08 08:29:45,799 [main] INFO DocWordWriter - ... 546 ms total for insertTable() +2024-09-08 08:29:45,875 [main] INFO DocWordWriter - ... 68 ms for insertCaption(): Table 101 – Attributes of Clocks Agent::Clock +2024-09-08 08:29:45,931 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of Clock.', [280536 - 280566] +2024-09-08 08:29:45,950 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of Clock.', [280536 - 280567] +2024-09-08 08:29:45,977 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [280536 - 280536] +2024-09-08 08:29:45,999 [main] INFO DocWordWriter - ... 81 ms for insertCaptionRef() +2024-09-08 08:29:45,999 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:29:46,072 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML134' to Word document and to used list. +2024-09-08 08:29:46,189 [main] INFO DocWordWriter - --- insertTable() 10 rows: Attributes of Clocks Agent::ClockEntry +2024-09-08 08:29:46,230 [main] DEBUG DocWordWriter - ... 41 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:29:46,248 [main] DEBUG DocWordWriter - ... 18 ms for createTable() +2024-09-08 08:29:46,755 [main] DEBUG DocWordWriter - ... 507 ms for fillValues() +2024-09-08 08:29:46,791 [main] DEBUG DocWordWriter - ... 36 ms for widths (table) +2024-09-08 08:29:46,933 [main] DEBUG DocWordWriter - ... 142 ms for widths (columns) +2024-09-08 08:29:46,964 [main] DEBUG DocWordWriter - ... 31 ms for shadding/merging/styling (rows) +2024-09-08 08:29:47,020 [main] DEBUG DocWordWriter - ... 56 ms for borders +2024-09-08 08:29:47,020 [main] DEBUG DocWordWriter - ... 265 ms for formatTable() +2024-09-08 08:29:47,033 [main] INFO DocWordWriter - ... 831 ms total for insertTable() +2024-09-08 08:29:47,115 [main] INFO DocWordWriter - ... 73 ms for insertCaption(): Table 102 – Attributes of Clocks Agent::ClockEntry +2024-09-08 08:29:47,170 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of ClockEntry.', [281463 - 281498] +2024-09-08 08:29:47,182 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of ClockEntry.', [281463 - 281499] +2024-09-08 08:29:47,189 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [281463 - 281463] +2024-09-08 08:29:47,205 [main] INFO DocWordWriter - ... 48 ms for insertCaptionRef() +2024-09-08 08:29:47,205 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:29:47,250 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML135' to Word document and to used list. +2024-09-08 08:29:47,335 [main] INFO DocWordWriter - --- insertTable() 2 rows: Attributes of Clocks Agent::SecurityNotification +2024-09-08 08:29:47,371 [main] DEBUG DocWordWriter - ... 36 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 08:29:47,382 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-08 08:29:47,493 [main] DEBUG DocWordWriter - ... 111 ms for fillValues() +2024-09-08 08:29:47,520 [main] DEBUG DocWordWriter - ... 27 ms for widths (table) +2024-09-08 08:29:47,614 [main] DEBUG DocWordWriter - ... 94 ms for widths (columns) +2024-09-08 08:29:47,645 [main] DEBUG DocWordWriter - ... 31 ms for shadding/merging/styling (rows) +2024-09-08 08:29:47,678 [main] DEBUG DocWordWriter - ... 33 ms for borders +2024-09-08 08:29:47,678 [main] DEBUG DocWordWriter - ... 185 ms for formatTable() +2024-09-08 08:29:47,691 [main] INFO DocWordWriter - ... 343 ms total for insertTable() +2024-09-08 08:29:47,778 [main] INFO DocWordWriter - ... 78 ms for insertCaption(): Table 103 – Attributes of Clocks Agent::SecurityNotification +2024-09-08 08:29:47,837 [main] TRACE DocWordWriter - ^^ in insertCaptionRef: range.txt = 'shows all attributes of SecurityNotification.', [284343 - 284388] +2024-09-08 08:29:47,853 [main] TRACE DocWordWriter - prepend : range.txt = ' shows all attributes of SecurityNotification.', [284343 - 284389] +2024-09-08 08:29:47,860 [main] TRACE DocWordWriter - collapseStart : range.txt = '', [284343 - 284343] +2024-09-08 08:29:47,874 [main] INFO DocWordWriter - ... 50 ms for insertCaptionRef() +2024-09-08 08:29:47,874 [main] INFO DocWordWriter - -------------------------------------------------- +2024-09-08 08:29:47,885 [main] INFO Util - time=[0:00:03.109] replaced [284662 - 284662] PACKAGE Clocks Agent, figures (27 before 1 mine), tables (100 before 3 mine)... +2024-09-08 08:29:47,885 [main] INFO Util - +2024-09-08 08:29:47,885 [main] INFO Util - +2024-09-08 08:29:47,885 [main] INFO Util - ------------------------------------------------ +2024-09-08 08:29:47,885 [main] INFO Util - scanning placeholders... +2024-09-08 08:29:48,568 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTruthValueùUML38ùdd' HYPERLINK TruthValue, UML38 +2024-09-08 08:29:48,584 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDateAndTimeùUML27ùdd' HYPERLINK DateAndTime, UML27 +2024-09-08 08:29:48,600 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTruthValueùUML38ùdd' HYPERLINK TruthValue, UML38 +2024-09-08 08:29:48,616 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDateAndTimeùUML27ùdd' HYPERLINK DateAndTime, UML27 +2024-09-08 08:29:48,632 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounter32 ùUML26ùdd' HYPERLINK Counter32 , UML26 +2024-09-08 08:29:48,648 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDateAndTimeùUML27ùdd' HYPERLINK DateAndTime, UML27 +2024-09-08 08:29:48,663 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTruthValueùUML38ùdd' HYPERLINK TruthValue, UML38 +2024-09-08 08:29:48,679 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloat32TCùUML29ùdd' HYPERLINK Float32TC, UML29 +2024-09-08 08:29:48,695 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDateAndTimeùUML27ùdd' HYPERLINK DateAndTime, UML27 +2024-09-08 08:29:48,713 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloat32TCùUML29ùdd' HYPERLINK Float32TC, UML29 +2024-09-08 08:29:48,731 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùUnsigned32ùUML36ùdd' HYPERLINK Unsigned32, UML36 +2024-09-08 08:29:48,746 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInteger32ùUML35ùdd' HYPERLINK Integer32, UML35 +2024-09-08 08:29:48,761 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDateAndTimeùUML27ùdd' HYPERLINK DateAndTime, UML27 +2024-09-08 08:29:48,777 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInteger32ùUML35ùdd' HYPERLINK Integer32, UML35 +2024-09-08 08:29:48,793 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML31ùdd' HYPERLINK InetAddress, UML31 +2024-09-08 08:29:48,809 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML33ùdd' HYPERLINK InetAddressType, UML33 +2024-09-08 08:29:48,825 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMacAddressùUML32ùdd' HYPERLINK MacAddress, UML32 +2024-09-08 08:29:48,841 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDisplayStringùUML28ùdd' HYPERLINK DisplayString, UML28 +2024-09-08 08:29:48,861 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDateAndTimeùUML27ùdd' HYPERLINK DateAndTime, UML27 +2024-09-08 08:29:48,876 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDisplayStringùUML28ùdd' HYPERLINK DisplayString, UML28 +2024-09-08 08:29:48,892 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDateAndTimeùUML27ùdd' HYPERLINK DateAndTime, UML27 +2024-09-08 08:29:48,910 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDisplayStringùUML28ùdd' HYPERLINK DisplayString, UML28 +2024-09-08 08:29:48,928 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDateAndTimeùUML27ùdd' HYPERLINK DateAndTime, UML27 +2024-09-08 08:29:48,944 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAppDatStKindùUML41ùdd' HYPERLINK AppDatStKind, UML41 +2024-09-08 08:29:48,959 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDateAndTimeùUML27ùdd' HYPERLINK DateAndTime, UML27 +2024-09-08 08:29:48,977 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùPhyHealthKindùUML42ùdd' HYPERLINK PhyHealthKind, UML42 +2024-09-08 08:29:48,993 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùExtKindùUML43ùdd' HYPERLINK ExtKind, UML43 +2024-09-08 08:29:49,009 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntKindùUML44ùdd' HYPERLINK IntKind, UML44 +2024-09-08 08:29:49,024 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDateAndTimeùUML27ùdd' HYPERLINK DateAndTime, UML27 +2024-09-08 08:29:49,043 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventKindùUML48ùdd' HYPERLINK EventKind, UML48 +2024-09-08 08:29:49,059 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDateAndTimeùUML27ùdd' HYPERLINK DateAndTime, UML27 +2024-09-08 08:29:49,074 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùPSPAccKindùUML46ùdd' HYPERLINK PSPAccKind, UML46 +2024-09-08 08:29:49,090 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùProtIdKindùUML47ùdd' HYPERLINK ProtIdKind, UML47 +2024-09-08 08:29:49,106 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimSyncIssueKindùUML49ùdd' HYPERLINK TimSyncIssueKind, UML49 +2024-09-08 08:29:49,122 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSecurityProfileKindùUML50ùdd' HYPERLINK SecurityProfileKind, UML50 +2024-09-08 08:29:49,139 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimSyncSrcKindùUML51ùdd' HYPERLINK TimSyncSrcKind, UML51 +2024-09-08 08:29:49,154 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùLnkKindùUML45ùdd' HYPERLINK LnkKind, UML45 +2024-09-08 08:29:49,173 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAppDatStTypeùUML68ùdd' HYPERLINK AppDatStType, UML68 +2024-09-08 08:29:49,190 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-08 08:29:49,206 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-08 08:29:49,220 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-08 08:29:49,236 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-08 08:29:49,250 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-08 08:29:49,265 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-08 08:29:49,280 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùPSUPEntryùUML80ùdd' HYPERLINK PSUPEntry, UML80 +2024-09-08 08:29:49,295 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-08 08:29:49,310 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-08 08:29:49,326 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSecurityNotificationùUML82ùdd' HYPERLINK SecurityNotification, UML82 +2024-09-08 08:29:49,342 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùNotificationùUML81ùdd' HYPERLINK Notification, UML81 +2024-09-08 08:29:49,359 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-08 08:29:49,375 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-08 08:29:49,390 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:29:49,405 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-08 08:29:49,420 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:29:49,436 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-08 08:29:49,452 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:49,468 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-08 08:29:49,485 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-08 08:29:49,502 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-08 08:29:49,517 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-08 08:29:49,532 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimestampùUML61ùdd' HYPERLINK Timestamp, UML61 +2024-09-08 08:29:49,547 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimestampùUML61ùdd' HYPERLINK Timestamp, UML61 +2024-09-08 08:29:49,563 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimestampùUML61ùdd' HYPERLINK Timestamp, UML61 +2024-09-08 08:29:49,578 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimestampùUML61ùdd' HYPERLINK Timestamp, UML61 +2024-09-08 08:29:49,593 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:49,609 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-08 08:29:49,624 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-08 08:29:49,641 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-08 08:29:49,656 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCPUEntryùUML84ùdd' HYPERLINK CPUEntry, UML84 +2024-09-08 08:29:49,672 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-08 08:29:49,688 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:49,704 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:29:49,720 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-08 08:29:49,736 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEXTEntryùUML85ùdd' HYPERLINK EXTEntry, UML85 +2024-09-08 08:29:49,751 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-08 08:29:49,768 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-08 08:29:49,782 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-08 08:29:49,798 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-08 08:29:49,813 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-08 08:29:49,829 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-08 08:29:49,843 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:29:49,858 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:29:49,874 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-08 08:29:49,889 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-08 08:29:49,905 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:29:49,920 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:49,936 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:29:49,951 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-08 08:29:49,966 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-08 08:29:49,981 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-08 08:29:49,997 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùPhyHealthTypeùUML69ùdd' HYPERLINK PhyHealthType, UML69 +2024-09-08 08:29:50,013 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:50,028 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-08 08:29:50,042 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-08 08:29:50,058 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:50,073 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSecurityNotificationùUML88ùdd' HYPERLINK SecurityNotification, UML88 +2024-09-08 08:29:50,089 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùNotificationùUML87ùdd' HYPERLINK Notification, UML87 +2024-09-08 08:29:50,104 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSTOREEntryùUML86ùdd' HYPERLINK STOREEntry, UML86 +2024-09-08 08:29:50,120 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:50,136 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:50,150 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:50,166 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-08 08:29:50,181 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:29:50,196 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-08 08:29:50,211 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-08 08:29:50,226 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-08 08:29:50,241 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-08 08:29:50,256 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-08 08:29:50,271 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:50,290 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-08 08:29:50,305 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:29:50,321 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùExtTypeùUML70ùdd' HYPERLINK ExtType, UML70 +2024-09-08 08:29:50,337 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-08 08:29:50,352 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-08 08:29:50,368 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-08 08:29:50,384 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:50,398 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:50,413 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-08 08:29:50,428 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-08 08:29:50,443 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:29:50,458 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:29:50,473 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-08 08:29:50,489 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-08 08:29:50,504 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-08 08:29:50,521 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:50,537 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-08 08:29:50,552 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-08 08:29:50,567 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-08 08:29:50,581 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùPhyHealthTypeùUML69ùdd' HYPERLINK PhyHealthType, UML69 +2024-09-08 08:29:50,596 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:50,612 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:50,627 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-08 08:29:50,642 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-08 08:29:50,657 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-08 08:29:50,673 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-08 08:29:50,690 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:50,706 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-08 08:29:50,721 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-08 08:29:50,736 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:29:50,752 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:29:50,768 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:29:50,784 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:29:50,800 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:29:50,817 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:29:50,834 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:50,849 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:50,865 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:50,879 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:50,894 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:50,910 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:50,924 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:50,939 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:50,955 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:50,970 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:50,988 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:51,004 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:51,020 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:51,037 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:51,055 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:51,071 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:51,086 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:51,102 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:51,118 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:51,134 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:51,149 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:51,164 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:51,180 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:51,196 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:51,211 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:51,227 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:51,241 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:51,256 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:51,271 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:51,286 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:51,304 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:51,320 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:51,335 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:51,351 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:51,365 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:51,383 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-08 08:29:51,400 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-08 08:29:51,416 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-08 08:29:51,431 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-08 08:29:51,445 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-08 08:29:51,461 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-08 08:29:51,475 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-08 08:29:51,490 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:29:51,505 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-08 08:29:51,521 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:29:51,538 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:29:51,554 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:29:51,569 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:29:51,585 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:29:51,600 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:29:51,615 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:29:51,631 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:29:51,646 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:29:51,661 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:29:51,676 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:29:51,691 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:29:51,706 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:29:51,721 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:51,736 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:51,752 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:51,767 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:51,782 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:51,797 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:51,813 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:51,827 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:51,843 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:51,860 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:51,876 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:51,891 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:51,907 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:51,921 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:51,936 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:51,951 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:51,967 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:51,982 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:51,998 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:52,013 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:52,028 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:52,043 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:52,060 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:52,075 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:52,091 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:52,106 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:52,121 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:52,137 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:52,168 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:52,183 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:52,199 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:52,214 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:52,229 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:52,243 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:52,258 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:52,273 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:52,288 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:52,303 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:52,318 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:52,334 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:52,350 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:52,365 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:52,380 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:52,395 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:52,412 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:52,428 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:52,442 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:52,458 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:52,472 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:52,486 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:52,502 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:52,517 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:52,532 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:52,547 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:52,564 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:52,579 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:52,594 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:52,608 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:52,623 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:52,638 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:52,653 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:52,668 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:52,684 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:52,699 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:52,715 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:52,730 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:52,745 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:52,760 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:52,775 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:52,789 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:52,804 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-08 08:29:52,819 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-08 08:29:52,834 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùServerTLSùUML93ùdd' HYPERLINK ServerTLS, UML93 +2024-09-08 08:29:52,850 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùClientTLSùUML92ùdd' HYPERLINK ClientTLS, UML92 +2024-09-08 08:29:52,867 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part3ed2SecurityNotificationùUML106ùdd' HYPERLINK IEC62351part3ed2SecurityNotification, UML106 +2024-09-08 08:29:52,882 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:52,897 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:52,911 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:52,927 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:52,943 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:52,960 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:52,975 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:52,991 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:53,006 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:53,021 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:53,037 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:53,052 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:53,069 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:53,085 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:53,100 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:53,116 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:53,131 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:53,147 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:53,162 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:53,178 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:53,193 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:53,208 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:53,223 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:53,237 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:53,252 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:53,267 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:53,282 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:53,299 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:53,314 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:53,330 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:53,346 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:53,360 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:53,375 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:53,390 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:53,405 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:53,420 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:53,436 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:53,451 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:53,466 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:53,483 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:53,499 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:53,514 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:53,529 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:53,546 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:53,564 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:53,580 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:53,595 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:53,613 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:53,629 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:53,644 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:53,660 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:53,675 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:53,691 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:53,706 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:53,722 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:53,736 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:53,751 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:53,766 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:53,782 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:53,798 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:53,813 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:53,828 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:53,845 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:53,860 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:53,876 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:53,891 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:53,906 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:53,921 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:53,935 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:53,950 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:53,965 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-08 08:29:53,981 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-08 08:29:53,996 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-08 08:29:54,012 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-08 08:29:54,028 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-08 08:29:54,044 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-08 08:29:54,060 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-08 08:29:54,076 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-08 08:29:54,093 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-08 08:29:54,135 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-08 08:29:54,155 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-08 08:29:54,172 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-08 08:29:54,189 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-08 08:29:54,206 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-08 08:29:54,222 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:29:54,237 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-08 08:29:54,252 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:29:54,267 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:29:54,281 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:29:54,297 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:29:54,312 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:29:54,327 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:29:54,343 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:29:54,358 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:29:54,374 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:29:54,387 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:29:54,402 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:29:54,417 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:29:54,431 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:29:54,446 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:54,461 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:54,476 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:54,492 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:54,507 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:54,523 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:54,538 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:54,553 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:54,568 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:54,586 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:54,605 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:54,620 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:54,634 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:54,649 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:54,664 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:54,679 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:54,695 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:54,713 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:54,729 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:54,744 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:54,759 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:54,774 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:54,789 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:54,804 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:54,820 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:54,835 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:54,850 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:54,864 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:54,879 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:54,895 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:54,911 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:54,926 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:54,941 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:54,956 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:54,971 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:54,986 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:55,001 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:55,015 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:55,031 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:55,045 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:55,061 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:55,078 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:55,094 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:55,112 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:55,128 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:55,144 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:55,161 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:55,176 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:55,191 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:55,205 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:55,221 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:55,236 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:55,253 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:55,267 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:55,281 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:55,297 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:55,311 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:55,327 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:55,342 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:55,357 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:55,372 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:55,386 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:55,401 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:55,416 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:55,431 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:55,446 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:55,460 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:55,476 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:55,491 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:55,506 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:55,523 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-08 08:29:55,538 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-08 08:29:55,552 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-08 08:29:55,566 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-08 08:29:55,581 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-08 08:29:55,595 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-08 08:29:55,610 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-08 08:29:55,626 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-08 08:29:55,641 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-08 08:29:55,656 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-08 08:29:55,672 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-08 08:29:55,687 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTLSSessionùUML91ùdd' HYPERLINK TLSSession, UML91 +2024-09-08 08:29:55,702 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-08 08:29:55,716 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:29:55,731 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-08 08:29:55,745 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:29:55,761 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:29:55,776 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:29:55,790 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:29:55,807 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:29:55,823 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:29:55,838 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:29:55,853 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:29:55,867 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:29:55,882 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:29:55,897 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:29:55,911 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:29:55,926 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:29:55,941 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:55,956 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:55,972 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:55,987 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:56,003 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:56,018 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:56,033 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:56,048 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:56,063 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:56,078 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:56,093 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:56,109 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:56,127 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:56,143 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:56,158 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:56,176 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:56,192 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:56,208 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:56,225 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:56,242 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:56,257 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:56,273 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:56,289 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:56,303 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:56,318 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:56,332 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:56,348 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:56,363 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:56,378 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:56,392 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:56,407 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:56,423 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:56,438 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:56,452 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:56,468 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:56,483 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:56,498 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:56,514 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:56,530 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:56,545 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:56,560 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:56,575 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:56,591 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:56,606 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:56,624 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:56,641 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:56,655 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:56,670 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:56,686 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:56,701 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:56,718 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:56,732 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:56,747 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:56,761 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:56,775 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:56,793 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:56,808 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:56,823 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:56,838 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:56,853 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:56,868 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:56,883 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:56,898 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:56,914 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:56,928 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:56,943 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:56,957 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:56,972 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:56,986 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:57,001 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351-3ed2securityùUML90ùdd' HYPERLINK IEC62351-3ed2security, UML90 +2024-09-08 08:29:57,018 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:57,035 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:57,050 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:57,065 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:57,080 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:57,095 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:57,110 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:57,126 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:57,141 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:57,157 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:57,188 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:29:57,204 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:57,219 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:57,234 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:57,250 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:29:57,266 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:57,282 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:57,298 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-08 08:29:57,314 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:57,332 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:57,349 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:57,364 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:57,379 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:57,395 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:57,409 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:57,424 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:57,439 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:57,455 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:57,470 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:57,485 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:57,502 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-08 08:29:57,518 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-08 08:29:57,534 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-08 08:29:57,550 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-08 08:29:57,565 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùProtIdTypeùUML74ùdd' HYPERLINK ProtIdType, UML74 +2024-09-08 08:29:57,580 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:29:57,596 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:29:57,612 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-08 08:29:57,626 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-08 08:29:57,642 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:57,656 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùLnkTypeùUML78ùdd' HYPERLINK LnkType, UML78 +2024-09-08 08:29:57,673 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:57,688 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:57,703 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:57,719 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:57,735 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:57,750 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:57,765 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:57,779 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:57,794 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:57,809 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:57,824 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:57,839 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:57,855 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:57,871 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:57,886 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:57,902 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:57,918 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:57,933 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:57,948 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:57,963 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:57,978 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:29:57,993 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:58,009 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:58,023 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:58,038 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:58,054 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:58,069 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:58,085 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:58,100 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:29:58,114 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:58,129 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:58,144 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:58,160 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:58,175 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:58,190 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-08 08:29:58,205 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:58,220 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:58,236 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:58,251 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:58,267 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:58,282 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:58,296 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:58,311 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:58,326 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:58,341 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:58,358 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:58,374 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:58,390 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:58,406 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:58,420 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:58,435 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:58,450 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:58,466 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:58,480 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:58,495 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:58,510 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:58,525 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:58,540 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:58,555 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:58,571 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:58,586 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-08 08:29:58,602 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:29:58,618 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-08 08:29:58,633 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:29:58,649 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:29:58,664 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:29:58,680 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:29:58,695 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:29:58,710 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:29:58,723 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:29:58,738 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:29:58,753 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:29:58,769 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:29:58,784 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:29:58,799 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:29:58,814 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:29:58,830 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-08 08:29:58,845 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-08 08:29:58,860 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMasterAssociationùUML96ùdd' HYPERLINK MasterAssociation, UML96 +2024-09-08 08:29:58,875 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùOutstationAssociationùUML97ùdd' HYPERLINK OutstationAssociation, UML97 +2024-09-08 08:29:58,890 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPSecurityNotificationùUML108ùdd' HYPERLINK 60870andDNPSecurityNotification, UML108 +2024-09-08 08:29:58,905 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPNotificationùUML109ùdd' HYPERLINK 60870andDNPNotification, UML109 +2024-09-08 08:29:58,920 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:58,935 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:58,951 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:58,965 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:58,981 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:58,997 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:59,012 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:59,026 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:59,042 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:59,058 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:59,072 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:59,087 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:59,103 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:59,118 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:59,133 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:59,148 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:59,163 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:59,179 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:59,196 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:59,211 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:59,227 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:29:59,244 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:59,263 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:59,282 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:59,297 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:59,312 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:59,327 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:59,342 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:59,358 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:29:59,372 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:59,387 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:59,402 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:59,417 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:59,433 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:59,449 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-08 08:29:59,465 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:59,481 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:59,497 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:59,512 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:59,527 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:59,542 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:59,558 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:59,572 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:59,587 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:59,603 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:59,618 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:59,633 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:59,648 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:59,664 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:59,683 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:59,698 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:59,714 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:59,730 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:59,745 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:59,760 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:59,776 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:59,791 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:59,806 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:59,821 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:59,836 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:29:59,851 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:59,866 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:59,881 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:59,896 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-08 08:29:59,912 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:59,928 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:59,943 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:59,957 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:59,973 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:29:59,988 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:00,003 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:00,021 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:00,038 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:00,054 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-08 08:30:00,068 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-08 08:30:00,083 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-08 08:30:00,101 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-08 08:30:00,116 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-08 08:30:00,132 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-08 08:30:00,147 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-08 08:30:00,163 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-08 08:30:00,178 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùProtIdTypeùUML74ùdd' HYPERLINK ProtIdType, UML74 +2024-09-08 08:30:00,193 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-08 08:30:00,209 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:30:00,226 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-08 08:30:00,241 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:30:00,256 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-08 08:30:00,272 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-08 08:30:00,286 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-08 08:30:00,301 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-08 08:30:00,316 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-08 08:30:00,344 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:00,391 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-08 08:30:00,405 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùLnkTypeùUML78ùdd' HYPERLINK LnkType, UML78 +2024-09-08 08:30:00,421 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-08 08:30:00,436 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:00,451 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:00,466 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:00,481 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:00,496 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:00,511 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:00,528 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:00,546 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:00,562 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:00,578 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:00,594 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:00,611 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:00,627 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:00,642 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:00,657 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:00,672 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:00,687 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:00,702 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:00,718 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:00,734 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:00,749 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:00,765 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:00,781 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:00,796 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:00,811 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:00,826 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:00,842 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:00,858 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:00,872 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:00,887 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:00,903 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:00,918 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:00,933 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:00,947 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:00,963 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-08 08:30:00,978 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:00,993 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:01,008 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:01,023 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:01,038 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:01,054 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:01,068 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:01,083 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:01,098 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:01,113 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:01,140 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:01,173 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:01,191 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:01,206 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:01,220 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:01,236 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:01,251 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:01,266 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:01,280 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:01,297 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:01,311 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:01,326 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:01,341 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:01,356 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:01,371 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:01,385 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-08 08:30:01,400 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:01,415 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-08 08:30:01,430 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:01,444 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:01,459 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:01,475 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:01,491 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:01,506 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:01,521 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:01,536 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:01,551 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:01,566 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:01,581 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:01,597 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:01,612 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:01,629 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-08 08:30:01,645 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-08 08:30:01,662 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-08 08:30:01,677 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-08 08:30:01,693 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-08 08:30:01,707 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-08 08:30:01,723 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-08 08:30:01,737 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-08 08:30:01,752 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùProtIdTypeùUML74ùdd' HYPERLINK ProtIdType, UML74 +2024-09-08 08:30:01,768 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-08 08:30:01,783 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:30:01,799 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-08 08:30:01,814 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:30:01,829 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-08 08:30:01,845 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-08 08:30:01,861 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-08 08:30:01,876 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-08 08:30:01,891 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-08 08:30:01,907 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:01,922 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-08 08:30:01,937 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùLnkTypeùUML78ùdd' HYPERLINK LnkType, UML78 +2024-09-08 08:30:01,952 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML95ùdd' HYPERLINK Association, UML95 +2024-09-08 08:30:01,968 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:01,982 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:01,996 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:02,011 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:02,027 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:02,043 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:02,058 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:02,073 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:02,088 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:02,102 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:02,118 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:02,133 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:02,150 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:02,166 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:02,181 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:02,196 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:02,211 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:02,225 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:02,243 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:02,258 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:02,274 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:02,289 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:02,306 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:02,321 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:02,335 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:02,351 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:02,368 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:02,382 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:02,397 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:02,412 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:02,429 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:02,444 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:02,460 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:02,475 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:02,490 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-08 08:30:02,505 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:02,522 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:02,537 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:02,553 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:02,568 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:02,583 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:02,597 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:02,611 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:02,627 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:02,642 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:02,659 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:02,675 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:02,691 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:02,708 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:02,771 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:02,788 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:02,803 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:02,818 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:02,833 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:02,848 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:02,863 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:02,878 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:02,893 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:02,908 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:02,923 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoùUML94ùdd' HYPERLINK 60870andDNPProtocolInfo, UML94 +2024-09-08 08:30:02,938 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-08 08:30:02,954 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:02,970 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-08 08:30:02,985 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:03,000 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:03,016 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:03,031 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:03,045 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:03,060 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:03,076 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:03,091 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:03,106 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:03,122 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:03,138 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:03,153 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:03,168 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:03,185 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:03,200 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:03,215 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:03,231 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:03,245 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:03,260 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:03,275 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:03,292 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:03,308 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:03,324 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:03,340 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:03,356 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:03,371 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:03,386 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:03,402 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:03,417 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:03,432 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:03,448 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:03,463 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:03,478 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:03,493 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:03,508 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:03,523 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:03,538 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:03,553 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:03,568 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:03,583 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:03,598 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:03,614 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:03,630 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:03,645 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:03,660 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:03,675 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:03,691 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:03,706 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:03,722 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:03,738 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:03,754 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:03,770 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:03,786 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:03,803 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:03,819 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:03,835 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:03,850 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:03,865 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:03,881 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:03,896 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:03,911 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:03,927 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:03,943 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:03,960 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:03,974 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:03,990 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:04,006 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:04,021 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:04,037 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:04,053 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:04,069 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:04,083 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:04,098 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:04,113 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:04,129 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:04,144 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:04,159 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:04,174 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:04,190 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:04,205 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:04,220 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:04,235 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:04,250 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:04,265 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:04,281 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:04,296 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:04,313 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:04,328 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:04,343 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:04,360 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:04,377 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:04,393 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:04,408 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:04,424 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:04,439 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:04,455 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:04,470 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:04,485 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:04,500 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:04,516 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:04,532 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:04,547 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:04,562 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:04,578 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:04,593 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:04,608 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:04,622 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:04,638 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:04,653 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:04,668 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:04,684 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-08 08:30:04,700 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-08 08:30:04,715 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-08 08:30:04,730 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-08 08:30:04,745 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùProtIdTypeùUML74ùdd' HYPERLINK ProtIdType, UML74 +2024-09-08 08:30:04,760 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:30:04,774 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:30:04,803 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-08 08:30:04,819 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-08 08:30:04,835 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:04,850 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùLnkTypeùUML78ùdd' HYPERLINK LnkType, UML78 +2024-09-08 08:30:04,866 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-08 08:30:04,882 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:04,899 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-08 08:30:04,914 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:04,929 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:04,944 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:04,959 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:04,974 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:04,989 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:05,004 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:05,020 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:05,035 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:05,051 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:05,066 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:05,081 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:05,097 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:05,111 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:05,127 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:05,142 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:05,157 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:05,172 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:05,187 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:05,204 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:05,219 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:05,234 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:05,250 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:05,265 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:05,281 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:05,297 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:05,311 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:05,327 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:05,342 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:05,357 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:05,372 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:05,387 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:05,402 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:05,417 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:05,433 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:05,451 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:05,469 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:05,488 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:05,507 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:05,525 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:05,542 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:05,563 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:05,577 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:05,593 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:05,609 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:05,624 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:05,638 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:05,653 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:05,668 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:05,684 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:05,700 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:05,716 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:05,731 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:05,746 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:05,761 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:05,776 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:05,791 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:05,806 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:05,820 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:05,835 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:05,851 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:05,867 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:05,882 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:05,898 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:05,913 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:05,929 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:05,946 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:05,962 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:05,978 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:05,993 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:06,008 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:06,024 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:06,039 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:06,054 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:06,069 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:06,084 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:06,100 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:06,114 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:06,130 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:06,145 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:06,160 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:06,175 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:06,191 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:06,206 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:06,221 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:06,236 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:06,252 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:06,267 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:06,282 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:06,298 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:06,312 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:06,328 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:06,342 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:06,387 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:06,407 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:06,422 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:06,438 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:06,452 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:06,468 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:06,483 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:06,497 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:06,513 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:06,529 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:06,546 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-08 08:30:06,561 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-08 08:30:06,577 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMasterAssociationùUML101ùdd' HYPERLINK MasterAssociation, UML101 +2024-09-08 08:30:06,592 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùOutstationAssociationùUML102ùdd' HYPERLINK OutstationAssociation, UML102 +2024-09-08 08:30:06,607 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPSecurityNotificationEd2ùUML111ùdd' HYPERLINK 60870andDNPSecurityNotificationEd2, UML111 +2024-09-08 08:30:06,622 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPNotificationEd2ùUML112ùdd' HYPERLINK 60870andDNPNotificationEd2, UML112 +2024-09-08 08:30:06,637 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:06,651 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:06,666 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:06,683 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:06,698 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:06,713 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:06,728 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:06,743 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:06,758 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:06,773 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:06,790 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:06,805 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:06,819 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:06,834 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:06,849 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:06,867 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:06,882 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:06,897 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:06,912 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:06,928 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:06,943 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:06,959 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:06,974 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:06,990 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:07,006 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:07,022 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:07,039 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:07,055 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:07,071 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:07,086 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:07,101 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:07,117 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:07,131 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:07,147 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:07,163 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:07,178 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:07,194 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:07,210 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:07,225 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:07,241 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:07,260 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:07,276 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:07,291 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:07,306 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:07,321 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:07,337 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:07,363 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:07,382 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:07,398 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:07,413 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:07,429 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:07,444 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:07,460 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:07,474 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:07,489 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:07,504 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:07,518 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:07,534 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:07,550 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:07,565 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:07,580 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:07,595 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:07,610 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:07,625 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:07,640 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:07,655 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:07,670 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:07,684 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:07,699 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:07,714 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:07,730 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:07,747 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:07,761 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:07,777 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:07,792 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:07,806 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:07,821 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:07,836 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:07,850 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:07,865 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:07,882 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:07,897 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:07,912 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:07,929 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:07,945 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:07,960 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:07,975 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:07,991 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:08,006 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:08,021 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:08,037 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-08 08:30:08,053 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-08 08:30:08,069 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-08 08:30:08,083 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-08 08:30:08,100 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-08 08:30:08,116 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-08 08:30:08,132 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-08 08:30:08,148 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-08 08:30:08,163 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-08 08:30:08,178 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-08 08:30:08,194 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùProtIdTypeùUML74ùdd' HYPERLINK ProtIdType, UML74 +2024-09-08 08:30:08,210 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-08 08:30:08,225 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:30:08,240 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-08 08:30:08,256 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:30:08,271 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-08 08:30:08,288 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-08 08:30:08,303 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-08 08:30:08,318 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-08 08:30:08,333 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-08 08:30:08,348 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:08,363 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-08 08:30:08,378 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùLnkTypeùUML78ùdd' HYPERLINK LnkType, UML78 +2024-09-08 08:30:08,394 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-08 08:30:08,410 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-08 08:30:08,425 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:08,442 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-08 08:30:08,457 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:08,471 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:08,486 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:08,501 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:08,516 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:08,531 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:08,547 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:08,562 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:08,577 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:08,592 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:08,607 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:08,623 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:08,639 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:08,654 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:08,669 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:08,684 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:08,699 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:08,714 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:08,729 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:08,744 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:08,760 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:08,775 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:08,790 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:08,806 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:08,821 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:08,836 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:08,850 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:08,866 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:08,881 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:08,897 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:08,911 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:08,927 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:08,942 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:08,957 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:08,973 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:08,989 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:09,004 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:09,020 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:09,037 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:09,053 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:09,068 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:09,084 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:09,099 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:09,114 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:09,129 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:09,145 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:09,160 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:09,178 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:09,194 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:09,210 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:09,228 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:09,244 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:09,259 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:09,275 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:09,289 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:09,305 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:09,320 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:09,334 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:09,349 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:09,364 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:09,379 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:09,394 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:09,413 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:09,429 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:09,444 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:09,459 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:09,474 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:09,489 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:09,505 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:09,519 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:09,535 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:09,551 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:09,566 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:09,581 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:09,595 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:09,610 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:09,625 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:09,640 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:09,655 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:09,671 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:09,686 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:09,701 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:09,715 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:09,731 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:09,747 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:09,763 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:09,777 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:09,792 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:09,807 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:09,823 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:09,838 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:09,857 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:09,873 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:09,888 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:09,902 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:09,918 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:09,933 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:09,948 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:09,963 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:09,978 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:09,993 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:10,008 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:10,023 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:10,038 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-08 08:30:10,053 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-08 08:30:10,068 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-08 08:30:10,082 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-08 08:30:10,097 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-08 08:30:10,112 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-08 08:30:10,128 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-08 08:30:10,142 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-08 08:30:10,157 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùProtIdTypeùUML74ùdd' HYPERLINK ProtIdType, UML74 +2024-09-08 08:30:10,172 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-08 08:30:10,188 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:30:10,203 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-08 08:30:10,219 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:30:10,234 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-08 08:30:10,251 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-08 08:30:10,267 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-08 08:30:10,284 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-08 08:30:10,301 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-08 08:30:10,315 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:10,331 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-08 08:30:10,347 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùLnkTypeùUML78ùdd' HYPERLINK LnkType, UML78 +2024-09-08 08:30:10,363 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAssociationùUML100ùdd' HYPERLINK Association, UML100 +2024-09-08 08:30:10,378 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-08 08:30:10,393 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:10,408 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-08 08:30:10,425 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:10,440 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:10,455 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:10,470 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:10,485 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:10,500 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:10,515 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:10,530 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:10,546 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:10,562 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:10,576 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:10,591 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:10,606 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:10,622 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:10,637 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:10,652 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:10,667 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:10,682 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:10,696 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:10,712 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:10,728 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:10,743 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:10,758 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:10,773 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:10,789 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:10,805 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:10,819 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:10,836 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:10,851 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:10,866 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:10,881 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:10,896 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:10,911 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:10,927 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:10,943 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:10,958 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:10,974 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:10,989 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:11,003 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:11,019 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:11,034 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:11,050 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:11,065 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:11,080 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:11,095 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:11,110 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:11,126 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:11,141 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:11,156 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:11,172 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:11,187 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaù60870andDNPProtocolInfoEd2ùUML99ùdd' HYPERLINK 60870andDNPProtocolInfoEd2, UML99 +2024-09-08 08:30:11,203 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:11,218 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:11,234 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:11,250 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:11,268 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:11,283 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:11,298 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:11,313 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:11,330 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:11,346 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:11,364 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:11,381 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:11,399 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:11,415 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:11,430 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:11,446 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:11,461 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:11,476 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:11,491 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:11,506 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:11,521 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:11,538 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:11,553 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:11,569 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:11,583 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:11,599 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:11,614 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:11,629 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:11,644 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:11,658 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:11,673 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:11,688 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:11,703 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:11,720 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:11,736 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:11,752 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:11,768 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:11,783 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:11,799 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:11,814 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:11,830 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:11,844 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:11,859 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:11,873 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:11,889 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:11,903 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:11,918 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:11,934 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:11,952 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:11,966 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:11,981 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:11,996 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC62351part5ùUML98ùdd' HYPERLINK IEC62351part5, UML98 +2024-09-08 08:30:12,013 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-08 08:30:12,027 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-08 08:30:12,043 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-08 08:30:12,058 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:12,073 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-08 08:30:12,088 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-08 08:30:12,103 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-08 08:30:12,119 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-08 08:30:12,135 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-08 08:30:12,150 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:12,165 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:12,181 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:12,197 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-08 08:30:12,211 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-08 08:30:12,225 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-08 08:30:12,240 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-08 08:30:12,257 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:12,272 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:12,287 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:12,302 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:12,317 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:12,333 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:12,351 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:12,367 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:12,383 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:12,398 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:12,414 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:12,434 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:12,450 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:12,468 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:12,483 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:12,498 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-08 08:30:12,513 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:12,528 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:12,543 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:12,559 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-08 08:30:12,574 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSAssociationùUML104ùdd' HYPERLINK MMSAssociation, UML104 +2024-09-08 08:30:12,589 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:12,604 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:30:12,620 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:30:12,635 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSSecurityNotificationùUML115ùdd' HYPERLINK MMSSecurityNotification, UML115 +2024-09-08 08:30:12,650 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-08 08:30:12,668 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:12,683 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSNotificationùUML116ùdd' HYPERLINK MMSNotification, UML116 +2024-09-08 08:30:12,699 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:12,714 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:12,730 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:12,746 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:12,759 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-08 08:30:12,775 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:12,789 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-08 08:30:12,804 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:12,819 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-08 08:30:12,834 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:12,851 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-08 08:30:12,866 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:12,881 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-08 08:30:12,897 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:12,912 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-08 08:30:12,928 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:12,943 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-08 08:30:12,958 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:12,974 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-08 08:30:12,989 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:13,004 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-08 08:30:13,019 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:13,034 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-08 08:30:13,050 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:13,065 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-08 08:30:13,080 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:13,095 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-08 08:30:13,110 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:13,126 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-08 08:30:13,142 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-08 08:30:13,157 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-08 08:30:13,172 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-08 08:30:13,188 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-08 08:30:13,202 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:13,217 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-08 08:30:13,233 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-08 08:30:13,248 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-08 08:30:13,264 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSelectorùUML62ùdd' HYPERLINK Selector, UML62 +2024-09-08 08:30:13,279 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSelectorùUML62ùdd' HYPERLINK Selector, UML62 +2024-09-08 08:30:13,295 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSelectorùUML62ùdd' HYPERLINK Selector, UML62 +2024-09-08 08:30:13,310 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-08 08:30:13,325 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-08 08:30:13,340 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSecurityProfileTypeùUML76ùdd' HYPERLINK SecurityProfileType, UML76 +2024-09-08 08:30:13,355 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:13,369 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-08 08:30:13,385 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:13,400 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-08 08:30:13,415 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:13,430 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-08 08:30:13,446 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:13,461 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-08 08:30:13,478 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:13,494 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-08 08:30:13,511 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:13,527 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-08 08:30:13,544 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:13,558 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-08 08:30:13,573 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:13,588 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-08 08:30:13,602 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:13,618 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-08 08:30:13,633 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:13,650 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-08 08:30:13,665 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:13,680 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-08 08:30:13,696 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:13,710 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-08 08:30:13,725 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:13,740 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMSProtocolInfoùUML103ùdd' HYPERLINK MMSProtocolInfo, UML103 +2024-09-08 08:30:13,756 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-08 08:30:13,772 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:13,786 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-08 08:30:13,801 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:13,817 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:13,832 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:13,847 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:13,862 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:13,878 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:13,893 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:13,908 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:13,923 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:13,938 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:13,953 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:13,967 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:13,982 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCommonProtocolInfoùUML89ùdd' HYPERLINK CommonProtocolInfo, UML89 +2024-09-08 08:30:13,999 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:14,015 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEventTypeùUML72ùdd' HYPERLINK EventType, UML72 +2024-09-08 08:30:14,030 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:14,045 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:14,060 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:14,076 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:14,091 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:14,106 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:14,123 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:14,139 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:14,153 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:14,169 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:30:14,184 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-08 08:30:14,199 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:14,214 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:30:14,229 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:14,245 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:14,259 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-08 08:30:14,275 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:14,290 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-08 08:30:14,306 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:14,321 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-08 08:30:14,336 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:30:14,352 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-08 08:30:14,367 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:14,381 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:14,397 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:14,412 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:30:14,427 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-08 08:30:14,442 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:14,458 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-08 08:30:14,473 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:14,488 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-08 08:30:14,504 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:14,519 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-08 08:30:14,535 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-08 08:30:14,551 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:14,567 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:14,584 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSVPublisherAssociationIPùUML119ùdd' HYPERLINK SVPublisherAssociationIP, UML119 +2024-09-08 08:30:14,600 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSVPublisherAssociationL2ùUML120ùdd' HYPERLINK SVPublisherAssociationL2, UML120 +2024-09-08 08:30:14,617 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSVNotificationùUML130ùdd' HYPERLINK SVNotification, UML130 +2024-09-08 08:30:14,633 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSVSubcriberAssociationIPùUML124ùdd' HYPERLINK SVSubcriberAssociationIP, UML124 +2024-09-08 08:30:14,648 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSVSubcriberAssociationL2ùUML125ùdd' HYPERLINK SVSubcriberAssociationL2, UML125 +2024-09-08 08:30:14,664 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:14,679 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-08 08:30:14,694 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:14,709 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-08 08:30:14,724 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:14,739 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-08 08:30:14,754 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-08 08:30:14,769 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-08 08:30:14,784 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:30:14,799 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-08 08:30:14,814 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-08 08:30:14,830 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-08 08:30:14,845 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:14,860 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-08 08:30:14,876 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:30:14,891 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-08 08:30:14,907 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:14,922 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-08 08:30:14,937 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:14,952 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-08 08:30:14,967 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:14,981 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-08 08:30:14,995 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:15,013 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-08 08:30:15,028 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMacAddressùUML63ùdd' HYPERLINK MacAddress, UML63 +2024-09-08 08:30:15,044 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:30:15,058 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-08 08:30:15,074 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-08 08:30:15,089 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-08 08:30:15,104 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:15,120 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-08 08:30:15,135 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:30:15,150 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-08 08:30:15,165 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:15,180 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-08 08:30:15,195 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:15,211 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-08 08:30:15,227 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:15,242 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-08 08:30:15,258 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:15,272 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-08 08:30:15,287 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-08 08:30:15,302 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-08 08:30:15,319 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:30:15,335 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-08 08:30:15,350 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-08 08:30:15,365 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-08 08:30:15,380 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:15,395 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-08 08:30:15,411 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:15,426 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-08 08:30:15,442 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:15,457 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-08 08:30:15,472 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:30:15,487 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-08 08:30:15,502 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-08 08:30:15,518 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-08 08:30:15,532 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:15,547 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-08 08:30:15,562 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:15,578 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-08 08:30:15,593 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:15,608 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-08 08:30:15,624 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMacAddressùUML63ùdd' HYPERLINK MacAddress, UML63 +2024-09-08 08:30:15,641 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:30:15,657 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-08 08:30:15,674 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-08 08:30:15,690 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-08 08:30:15,706 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:15,721 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-08 08:30:15,735 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:15,751 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-08 08:30:15,767 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:15,781 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-08 08:30:15,796 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:30:15,811 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-08 08:30:15,826 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-08 08:30:15,841 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-08 08:30:15,856 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:15,872 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-08 08:30:15,888 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:15,902 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-08 08:30:15,917 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:15,932 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-08 08:30:15,948 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:15,963 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-08 08:30:15,977 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:15,993 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-08 08:30:16,008 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:16,025 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-08 08:30:16,041 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-08 08:30:16,057 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-08 08:30:16,072 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-08 08:30:16,087 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-08 08:30:16,102 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:16,118 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:16,134 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-08 08:30:16,149 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:30:16,165 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-08 08:30:16,182 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:30:16,198 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-08 08:30:16,213 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-08 08:30:16,228 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-08 08:30:16,244 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-08 08:30:16,259 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-08 08:30:16,274 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimestampùUML61ùdd' HYPERLINK Timestamp, UML61 +2024-09-08 08:30:16,291 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:30:16,306 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-08 08:30:16,324 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-08 08:30:16,340 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-08 08:30:16,355 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:16,370 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-08 08:30:16,386 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:16,401 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-08 08:30:16,416 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:16,431 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-08 08:30:16,447 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:30:16,461 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-08 08:30:16,477 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-08 08:30:16,492 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-08 08:30:16,507 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:16,522 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-08 08:30:16,539 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:16,554 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-08 08:30:16,569 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:16,583 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-08 08:30:16,599 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-08 08:30:16,614 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:16,629 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:16,645 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:16,660 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEPublisherAssociationIPùUML121ùdd' HYPERLINK GSEPublisherAssociationIP, UML121 +2024-09-08 08:30:16,676 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEPublisherAssociationL2ùUML122ùdd' HYPERLINK GSEPublisherAssociationL2, UML122 +2024-09-08 08:30:16,692 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSENotificationùUML132ùdd' HYPERLINK GSENotification, UML132 +2024-09-08 08:30:16,707 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubcriberAssociationIPùUML127ùdd' HYPERLINK GSESubcriberAssociationIP, UML127 +2024-09-08 08:30:16,723 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubcriberAssociationL2ùUML128ùdd' HYPERLINK GSESubcriberAssociationL2, UML128 +2024-09-08 08:30:16,739 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:16,755 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-08 08:30:16,771 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:16,789 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-08 08:30:16,806 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:16,822 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-08 08:30:16,837 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-08 08:30:16,852 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-08 08:30:16,867 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:30:16,882 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-08 08:30:16,897 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-08 08:30:16,911 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-08 08:30:16,926 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:16,942 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-08 08:30:16,957 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:30:16,973 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-08 08:30:16,989 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:17,004 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-08 08:30:17,020 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:17,035 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-08 08:30:17,052 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:17,067 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-08 08:30:17,083 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:17,097 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-08 08:30:17,113 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMacAddressùUML63ùdd' HYPERLINK MacAddress, UML63 +2024-09-08 08:30:17,128 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMacAddressùUML63ùdd' HYPERLINK MacAddress, UML63 +2024-09-08 08:30:17,143 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:30:17,158 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-08 08:30:17,174 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-08 08:30:17,191 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-08 08:30:17,206 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:17,221 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-08 08:30:17,236 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:30:17,251 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-08 08:30:17,266 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:17,281 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVPublisherAssociationùUML118ùdd' HYPERLINK GSEandSVPublisherAssociation, UML118 +2024-09-08 08:30:17,296 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:17,312 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-08 08:30:17,326 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:17,356 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-08 08:30:17,371 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:17,386 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-08 08:30:17,402 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressùUML65ùdd' HYPERLINK InetAddress, UML65 +2024-09-08 08:30:17,417 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInetAddressTypeùUML64ùdd' HYPERLINK InetAddressType, UML64 +2024-09-08 08:30:17,432 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-08 08:30:17,447 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-08 08:30:17,462 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-08 08:30:17,477 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-08 08:30:17,491 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-08 08:30:17,506 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-08 08:30:17,521 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-08 08:30:17,538 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-08 08:30:17,554 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:17,570 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-08 08:30:17,585 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:17,600 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-08 08:30:17,615 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-08 08:30:17,631 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-08 08:30:17,646 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:30:17,661 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-08 08:30:17,676 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-08 08:30:17,692 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-08 08:30:17,707 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:30:17,722 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-08 08:30:17,738 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-08 08:30:17,754 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-08 08:30:17,770 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-08 08:30:17,785 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-08 08:30:17,801 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-08 08:30:17,817 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-08 08:30:17,833 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-08 08:30:17,850 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-08 08:30:17,865 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-08 08:30:17,880 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-08 08:30:17,896 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimestampùUML61ùdd' HYPERLINK Timestamp, UML61 +2024-09-08 08:30:17,911 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-08 08:30:17,926 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:30:17,941 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-08 08:30:17,956 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-08 08:30:17,971 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-08 08:30:17,987 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:18,001 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-08 08:30:18,017 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:18,032 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-08 08:30:18,047 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:18,064 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-08 08:30:18,079 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:30:18,094 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-08 08:30:18,109 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-08 08:30:18,125 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-08 08:30:18,140 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:18,155 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-08 08:30:18,170 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:18,186 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-08 08:30:18,201 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:18,216 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-08 08:30:18,232 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMacAddressùUML63ùdd' HYPERLINK MacAddress, UML63 +2024-09-08 08:30:18,247 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMacAddressùUML63ùdd' HYPERLINK MacAddress, UML63 +2024-09-08 08:30:18,262 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-08 08:30:18,278 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-08 08:30:18,295 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-08 08:30:18,312 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-08 08:30:18,328 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-08 08:30:18,344 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-08 08:30:18,361 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-08 08:30:18,382 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-08 08:30:18,401 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:18,421 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-08 08:30:18,439 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:18,459 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-08 08:30:18,478 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-08 08:30:18,497 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-08 08:30:18,517 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:30:18,535 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-08 08:30:18,553 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-08 08:30:18,569 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-08 08:30:18,585 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:30:18,601 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-08 08:30:18,617 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-08 08:30:18,632 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-08 08:30:18,647 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-08 08:30:18,662 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-08 08:30:18,677 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-08 08:30:18,692 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-08 08:30:18,707 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-08 08:30:18,721 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-08 08:30:18,737 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-08 08:30:18,752 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-08 08:30:18,767 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimestampùUML61ùdd' HYPERLINK Timestamp, UML61 +2024-09-08 08:30:18,782 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSESubscriberAssociationùUML126ùdd' HYPERLINK GSESubscriberAssociation, UML126 +2024-09-08 08:30:18,798 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:30:18,814 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-08 08:30:18,829 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-08 08:30:18,844 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-08 08:30:18,858 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:18,874 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-08 08:30:18,889 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:18,905 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-08 08:30:18,921 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingùUML56ùdd' HYPERLINK Floating, UML56 +2024-09-08 08:30:18,937 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-08 08:30:18,953 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:30:18,969 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-08 08:30:18,986 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringTsùUML60ùdd' HYPERLINK CharStringTs, UML60 +2024-09-08 08:30:19,001 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVSubscriberAssociationùUML123ùdd' HYPERLINK GSEandSVSubscriberAssociation, UML123 +2024-09-08 08:30:19,016 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:19,031 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-08 08:30:19,046 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:19,062 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-08 08:30:19,076 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:19,091 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-08 08:30:19,106 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:19,121 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-08 08:30:19,136 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:19,151 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-08 08:30:19,169 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:19,185 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGSEandSVCommonùUML117ùdd' HYPERLINK GSEandSVCommon, UML117 +2024-09-08 08:30:19,201 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-08 08:30:19,216 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:30:19,232 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntTypeùUML71ùdd' HYPERLINK IntType, UML71 +2024-09-08 08:30:19,247 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-08 08:30:19,262 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-08 08:30:19,278 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-08 08:30:19,293 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-08 08:30:19,307 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-08 08:30:19,323 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-08 08:30:19,337 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-08 08:30:19,353 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-08 08:30:19,368 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-08 08:30:19,384 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-08 08:30:19,400 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-08 08:30:19,415 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-08 08:30:19,431 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-08 08:30:19,447 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-08 08:30:19,462 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-08 08:30:19,477 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-08 08:30:19,492 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-08 08:30:19,508 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-08 08:30:19,523 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-08 08:30:19,538 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSEREntryùUML139ùdd' HYPERLINK SEREntry, UML139 +2024-09-08 08:30:19,554 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùETHEntryùUML137ùdd' HYPERLINK ETHEntry, UML137 +2024-09-08 08:30:19,571 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùUSBEntryùUML141ùdd' HYPERLINK USBEntry, UML141 +2024-09-08 08:30:19,589 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùKEYEntryùUML138ùdd' HYPERLINK KEYEntry, UML138 +2024-09-08 08:30:19,605 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùALGEntryùUML140ùdd' HYPERLINK ALGEntry, UML140 +2024-09-08 08:30:19,620 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùNotificationùUML143ùdd' HYPERLINK Notification, UML143 +2024-09-08 08:30:19,636 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-08 08:30:19,651 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-08 08:30:19,665 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:30:19,680 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-08 08:30:19,695 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntTypeùUML71ùdd' HYPERLINK IntType, UML71 +2024-09-08 08:30:19,710 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-08 08:30:19,725 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-08 08:30:19,740 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-08 08:30:19,755 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-08 08:30:19,770 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-08 08:30:19,785 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-08 08:30:19,800 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-08 08:30:19,816 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-08 08:30:19,831 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-08 08:30:19,847 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-08 08:30:19,862 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-08 08:30:19,876 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-08 08:30:19,899 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:30:19,914 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-08 08:30:19,930 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntTypeùUML71ùdd' HYPERLINK IntType, UML71 +2024-09-08 08:30:19,945 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-08 08:30:19,961 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-08 08:30:19,975 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-08 08:30:19,991 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-08 08:30:20,007 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-08 08:30:20,022 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-08 08:30:20,039 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-08 08:30:20,053 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-08 08:30:20,068 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-08 08:30:20,084 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:20,100 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCounterTsùUML55ùdd' HYPERLINK CounterTs, UML55 +2024-09-08 08:30:20,116 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-08 08:30:20,131 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-08 08:30:20,146 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:30:20,161 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-08 08:30:20,176 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntTypeùUML71ùdd' HYPERLINK IntType, UML71 +2024-09-08 08:30:20,191 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-08 08:30:20,206 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-08 08:30:20,221 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-08 08:30:20,236 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-08 08:30:20,250 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-08 08:30:20,265 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-08 08:30:20,279 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-08 08:30:20,294 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-08 08:30:20,308 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-08 08:30:20,324 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-08 08:30:20,339 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-08 08:30:20,354 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:30:20,369 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-08 08:30:20,383 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntTypeùUML71ùdd' HYPERLINK IntType, UML71 +2024-09-08 08:30:20,399 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-08 08:30:20,414 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-08 08:30:20,428 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-08 08:30:20,444 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-08 08:30:20,459 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-08 08:30:20,474 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-08 08:30:20,489 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-08 08:30:20,504 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-08 08:30:20,519 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-08 08:30:20,533 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-08 08:30:20,549 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-08 08:30:20,564 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCharStringùUML59ùdd' HYPERLINK CharString, UML59 +2024-09-08 08:30:20,579 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-08 08:30:20,594 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntTypeùUML71ùdd' HYPERLINK IntType, UML71 +2024-09-08 08:30:20,609 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-08 08:30:20,624 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-08 08:30:20,639 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-08 08:30:20,653 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-08 08:30:20,667 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-08 08:30:20,682 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueTsùUML54ùdd' HYPERLINK BooleanValueTs, UML54 +2024-09-08 08:30:20,697 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-08 08:30:20,713 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-08 08:30:20,727 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùInterfaceùUML136ùdd' HYPERLINK Interface, UML136 +2024-09-08 08:30:20,742 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-08 08:30:20,757 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-08 08:30:20,772 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-08 08:30:20,786 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-08 08:30:20,801 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-08 08:30:20,816 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-08 08:30:20,832 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-08 08:30:20,846 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-08 08:30:20,861 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-08 08:30:20,875 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerTsùUML58ùdd' HYPERLINK IntegerTs, UML58 +2024-09-08 08:30:20,892 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimestampùUML61ùdd' HYPERLINK Timestamp, UML61 +2024-09-08 08:30:20,906 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimestampùUML61ùdd' HYPERLINK Timestamp, UML61 +2024-09-08 08:30:20,921 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCntRsùUML67ùdd' HYPERLINK CntRs, UML67 +2024-09-08 08:30:20,935 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùClockEntryùUML134ùdd' HYPERLINK ClockEntry, UML134 +2024-09-08 08:30:20,950 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSecurityNotificationùUML135ùdd' HYPERLINK SecurityNotification, UML135 +2024-09-08 08:30:20,965 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML53ùdd' HYPERLINK Integer, UML53 +2024-09-08 08:30:20,981 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEntityIndexùUML66ùdd' HYPERLINK EntityIndex, UML66 +2024-09-08 08:30:20,995 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimSyncIssueTypeùUML75ùdd' HYPERLINK TimSyncIssueType, UML75 +2024-09-08 08:30:21,010 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-08 08:30:21,025 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimSyncSrcTypeùUML77ùdd' HYPERLINK TimSyncSrcType, UML77 +2024-09-08 08:30:21,041 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-08 08:30:21,057 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùFloatingTsùUML57ùdd' HYPERLINK FloatingTs, UML57 +2024-09-08 08:30:21,074 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-08 08:30:21,090 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanValueùUML52ùdd' HYPERLINK BooleanValue, UML52 +2024-09-08 08:30:21,106 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimestampùUML61ùdd' HYPERLINK Timestamp, UML61 +2024-09-08 08:30:21,120 [main] INFO AbstractWordWriter - 2092 hyperlink placeholders found. +2024-09-08 08:30:21,121 [main] INFO Util - time=[0:00:33.235] scanned hyperlink placeholders. +2024-09-08 08:30:21,121 [main] INFO Util - +2024-09-08 08:30:21,122 [main] INFO Util - +2024-09-08 08:30:21,122 [main] INFO Util - ------------------------------------------------ +2024-09-08 08:30:21,122 [main] INFO Util - inserting 2092 hyperlinks (or text only) into hyperlink placeholders +2024-09-08 08:30:21,130 [main] TRACE AbstractWordWriter - replacing hyperlink [100010 - 100032] HYPERLINK TruthValue, UML38... +2024-09-08 08:30:21,146 [main] TRACE AbstractWordWriter - No hyperlink added: 'TruthValue' for bookmark 'UML38' not in this document. +2024-09-08 08:30:21,151 [main] TRACE AbstractWordWriter - replacing hyperlink [100434 - 100457] HYPERLINK DateAndTime, UML27... +2024-09-08 08:30:21,167 [main] TRACE AbstractWordWriter - No hyperlink added: 'DateAndTime' for bookmark 'UML27' not in this document. +2024-09-08 08:30:21,171 [main] TRACE AbstractWordWriter - replacing hyperlink [100601 - 100623] HYPERLINK TruthValue, UML38... +2024-09-08 08:30:21,186 [main] TRACE AbstractWordWriter - No hyperlink added: 'TruthValue' for bookmark 'UML38' not in this document. +2024-09-08 08:30:21,190 [main] TRACE AbstractWordWriter - replacing hyperlink [100986 - 101009] HYPERLINK DateAndTime, UML27... +2024-09-08 08:30:21,207 [main] TRACE AbstractWordWriter - No hyperlink added: 'DateAndTime' for bookmark 'UML27' not in this document. +2024-09-08 08:30:21,210 [main] TRACE AbstractWordWriter - replacing hyperlink [101153 - 101175] HYPERLINK Counter32 , UML26... +2024-09-08 08:30:21,225 [main] TRACE AbstractWordWriter - No hyperlink added: 'Counter32 ' for bookmark 'UML26' not in this document. +2024-09-08 08:30:21,230 [main] TRACE AbstractWordWriter - replacing hyperlink [101526 - 101549] HYPERLINK DateAndTime, UML27... +2024-09-08 08:30:21,249 [main] TRACE AbstractWordWriter - No hyperlink added: 'DateAndTime' for bookmark 'UML27' not in this document. +2024-09-08 08:30:21,252 [main] TRACE AbstractWordWriter - replacing hyperlink [101693 - 101715] HYPERLINK TruthValue, UML38... +2024-09-08 08:30:21,270 [main] TRACE AbstractWordWriter - No hyperlink added: 'TruthValue' for bookmark 'UML38' not in this document. +2024-09-08 08:30:21,274 [main] TRACE AbstractWordWriter - replacing hyperlink [102042 - 102063] HYPERLINK Float32TC, UML29... +2024-09-08 08:30:21,289 [main] TRACE AbstractWordWriter - No hyperlink added: 'Float32TC' for bookmark 'UML29' not in this document. +2024-09-08 08:30:21,293 [main] TRACE AbstractWordWriter - replacing hyperlink [102474 - 102497] HYPERLINK DateAndTime, UML27... +2024-09-08 08:30:21,309 [main] TRACE AbstractWordWriter - No hyperlink added: 'DateAndTime' for bookmark 'UML27' not in this document. +2024-09-08 08:30:21,312 [main] TRACE AbstractWordWriter - replacing hyperlink [102641 - 102662] HYPERLINK Float32TC, UML29... +2024-09-08 08:30:21,330 [main] TRACE AbstractWordWriter - No hyperlink added: 'Float32TC' for bookmark 'UML29' not in this document. +2024-09-08 08:30:21,334 [main] TRACE AbstractWordWriter - replacing hyperlink [103056 - 103078] HYPERLINK Unsigned32, UML36... +2024-09-08 08:30:21,349 [main] TRACE AbstractWordWriter - No hyperlink added: 'Unsigned32' for bookmark 'UML36' not in this document. +2024-09-08 08:30:21,353 [main] TRACE AbstractWordWriter - replacing hyperlink [103367 - 103388] HYPERLINK Integer32, UML35... +2024-09-08 08:30:21,368 [main] TRACE AbstractWordWriter - No hyperlink added: 'Integer32' for bookmark 'UML35' not in this document. +2024-09-08 08:30:21,372 [main] TRACE AbstractWordWriter - replacing hyperlink [103805 - 103828] HYPERLINK DateAndTime, UML27... +2024-09-08 08:30:21,389 [main] TRACE AbstractWordWriter - No hyperlink added: 'DateAndTime' for bookmark 'UML27' not in this document. +2024-09-08 08:30:21,392 [main] TRACE AbstractWordWriter - replacing hyperlink [103972 - 103993] HYPERLINK Integer32, UML35... +2024-09-08 08:30:21,401 [main] TRACE AbstractWordWriter - No hyperlink added: 'Integer32' for bookmark 'UML35' not in this document. +2024-09-08 08:30:21,414 [main] TRACE AbstractWordWriter - replacing hyperlink [104972 - 104995] HYPERLINK InetAddress, UML31... +2024-09-08 08:30:21,432 [main] TRACE AbstractWordWriter - No hyperlink added: 'InetAddress' for bookmark 'UML31' not in this document. +2024-09-08 08:30:21,436 [main] TRACE AbstractWordWriter - replacing hyperlink [105388 - 105415] HYPERLINK InetAddressType, UML33... +2024-09-08 08:30:21,454 [main] TRACE AbstractWordWriter - No hyperlink added: 'InetAddressType' for bookmark 'UML33' not in this document. +2024-09-08 08:30:21,458 [main] TRACE AbstractWordWriter - replacing hyperlink [105941 - 105963] HYPERLINK MacAddress, UML32... +2024-09-08 08:30:21,473 [main] TRACE AbstractWordWriter - No hyperlink added: 'MacAddress' for bookmark 'UML32' not in this document. +2024-09-08 08:30:21,477 [main] TRACE AbstractWordWriter - replacing hyperlink [106452 - 106477] HYPERLINK DisplayString, UML28... +2024-09-08 08:30:21,494 [main] TRACE AbstractWordWriter - No hyperlink added: 'DisplayString' for bookmark 'UML28' not in this document. +2024-09-08 08:30:21,497 [main] TRACE AbstractWordWriter - replacing hyperlink [106813 - 106836] HYPERLINK DateAndTime, UML27... +2024-09-08 08:30:21,512 [main] TRACE AbstractWordWriter - No hyperlink added: 'DateAndTime' for bookmark 'UML27' not in this document. +2024-09-08 08:30:21,516 [main] TRACE AbstractWordWriter - replacing hyperlink [107233 - 107258] HYPERLINK DisplayString, UML28... +2024-09-08 08:30:21,534 [main] TRACE AbstractWordWriter - No hyperlink added: 'DisplayString' for bookmark 'UML28' not in this document. +2024-09-08 08:30:21,538 [main] TRACE AbstractWordWriter - replacing hyperlink [107633 - 107656] HYPERLINK DateAndTime, UML27... +2024-09-08 08:30:21,555 [main] TRACE AbstractWordWriter - No hyperlink added: 'DateAndTime' for bookmark 'UML27' not in this document. +2024-09-08 08:30:21,559 [main] TRACE AbstractWordWriter - replacing hyperlink [107800 - 107825] HYPERLINK DisplayString, UML28... +2024-09-08 08:30:21,575 [main] TRACE AbstractWordWriter - No hyperlink added: 'DisplayString' for bookmark 'UML28' not in this document. +2024-09-08 08:30:21,578 [main] TRACE AbstractWordWriter - replacing hyperlink [116002 - 116025] HYPERLINK DateAndTime, UML27... +2024-09-08 08:30:21,594 [main] TRACE AbstractWordWriter - No hyperlink added: 'DateAndTime' for bookmark 'UML27' not in this document. +2024-09-08 08:30:21,598 [main] TRACE AbstractWordWriter - replacing hyperlink [116034 - 116058] HYPERLINK AppDatStKind, UML41... +2024-09-08 08:30:21,652 [main] TRACE AbstractWordWriter - replacing hyperlink [116412 - 116435] HYPERLINK DateAndTime, UML27... +2024-09-08 08:30:21,667 [main] TRACE AbstractWordWriter - No hyperlink added: 'DateAndTime' for bookmark 'UML27' not in this document. +2024-09-08 08:30:21,671 [main] TRACE AbstractWordWriter - replacing hyperlink [116444 - 116469] HYPERLINK PhyHealthKind, UML42... +2024-09-08 08:30:21,724 [main] TRACE AbstractWordWriter - replacing hyperlink [116811 - 116830] HYPERLINK ExtKind, UML43... +2024-09-08 08:30:21,777 [main] TRACE AbstractWordWriter - replacing hyperlink [117183 - 117202] HYPERLINK IntKind, UML44... +2024-09-08 08:30:21,835 [main] TRACE AbstractWordWriter - replacing hyperlink [117556 - 117579] HYPERLINK DateAndTime, UML27... +2024-09-08 08:30:21,854 [main] TRACE AbstractWordWriter - No hyperlink added: 'DateAndTime' for bookmark 'UML27' not in this document. +2024-09-08 08:30:21,857 [main] TRACE AbstractWordWriter - replacing hyperlink [117588 - 117609] HYPERLINK EventKind, UML48... +2024-09-08 08:30:21,913 [main] TRACE AbstractWordWriter - replacing hyperlink [117963 - 117986] HYPERLINK DateAndTime, UML27... +2024-09-08 08:30:21,927 [main] TRACE AbstractWordWriter - No hyperlink added: 'DateAndTime' for bookmark 'UML27' not in this document. +2024-09-08 08:30:21,931 [main] TRACE AbstractWordWriter - replacing hyperlink [117995 - 118017] HYPERLINK PSPAccKind, UML46... +2024-09-08 08:30:21,984 [main] TRACE AbstractWordWriter - replacing hyperlink [118446 - 118468] HYPERLINK ProtIdKind, UML47... +2024-09-08 08:30:22,040 [main] TRACE AbstractWordWriter - replacing hyperlink [118865 - 118893] HYPERLINK TimSyncIssueKind, UML49... +2024-09-08 08:30:22,093 [main] TRACE AbstractWordWriter - replacing hyperlink [119508 - 119539] HYPERLINK SecurityProfileKind, UML50... +2024-09-08 08:30:22,154 [main] TRACE AbstractWordWriter - replacing hyperlink [119957 - 119983] HYPERLINK TimSyncSrcKind, UML51... +2024-09-08 08:30:22,216 [main] TRACE AbstractWordWriter - replacing hyperlink [120396 - 120415] HYPERLINK LnkKind, UML45... +2024-09-08 08:30:22,273 [main] TRACE AbstractWordWriter - replacing hyperlink [122156 - 122180] HYPERLINK AppDatStType, UML68... +2024-09-08 08:30:22,326 [main] TRACE AbstractWordWriter - replacing hyperlink [122321 - 122338] HYPERLINK CntRs, UML67... +2024-09-08 08:30:22,386 [main] TRACE AbstractWordWriter - replacing hyperlink [122448 - 122469] HYPERLINK EventType, UML72... +2024-09-08 08:30:22,445 [main] TRACE AbstractWordWriter - replacing hyperlink [122561 - 122587] HYPERLINK BooleanValueTs, UML54... +2024-09-08 08:30:22,498 [main] TRACE AbstractWordWriter - replacing hyperlink [122667 - 122693] HYPERLINK BooleanValueTs, UML54... +2024-09-08 08:30:22,554 [main] TRACE AbstractWordWriter - replacing hyperlink [122804 - 122830] HYPERLINK BooleanValueTs, UML54... +2024-09-08 08:30:22,612 [main] TRACE AbstractWordWriter - replacing hyperlink [122943 - 122969] HYPERLINK BooleanValueTs, UML54... +2024-09-08 08:30:22,673 [main] TRACE AbstractWordWriter - replacing hyperlink [123094 - 123115] HYPERLINK PSUPEntry, UML80... +2024-09-08 08:30:22,729 [main] TRACE AbstractWordWriter - replacing hyperlink [123194 - 123213] HYPERLINK Integer, UML53... +2024-09-08 08:30:22,792 [main] TRACE AbstractWordWriter - replacing hyperlink [123341 - 123362] HYPERLINK IntegerTs, UML58... +2024-09-08 08:30:22,852 [main] TRACE AbstractWordWriter - replacing hyperlink [123479 - 123511] HYPERLINK SecurityNotification, UML82... +2024-09-08 08:30:22,911 [main] TRACE AbstractWordWriter - replacing hyperlink [123615 - 123639] HYPERLINK Notification, UML81... +2024-09-08 08:30:22,964 [main] TRACE AbstractWordWriter - replacing hyperlink [123724 - 123750] HYPERLINK BooleanValueTs, UML54... +2024-09-08 08:30:23,017 [main] TRACE AbstractWordWriter - replacing hyperlink [124174 - 124191] HYPERLINK CntRs, UML67... +2024-09-08 08:30:23,069 [main] TRACE AbstractWordWriter - replacing hyperlink [124267 - 124289] HYPERLINK CharString, UML59... +2024-09-08 08:30:23,128 [main] TRACE AbstractWordWriter - replacing hyperlink [124368 - 124391] HYPERLINK EntityIndex, UML66... +2024-09-08 08:30:23,181 [main] TRACE AbstractWordWriter - replacing hyperlink [124461 - 124483] HYPERLINK CharString, UML59... +2024-09-08 08:30:23,237 [main] TRACE AbstractWordWriter - replacing hyperlink [124560 - 124586] HYPERLINK BooleanValueTs, UML54... +2024-09-08 08:30:23,292 [main] TRACE AbstractWordWriter - replacing hyperlink [124684 - 124705] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:23,346 [main] TRACE AbstractWordWriter - replacing hyperlink [124868 - 124894] HYPERLINK BooleanValueTs, UML54... +2024-09-08 08:30:23,408 [main] TRACE AbstractWordWriter - replacing hyperlink [125376 - 125395] HYPERLINK Integer, UML53... +2024-09-08 08:30:23,469 [main] TRACE AbstractWordWriter - replacing hyperlink [125523 - 125544] HYPERLINK IntegerTs, UML58... +2024-09-08 08:30:23,523 [main] TRACE AbstractWordWriter - replacing hyperlink [126032 - 126053] HYPERLINK EventType, UML72... +2024-09-08 08:30:23,584 [main] TRACE AbstractWordWriter - replacing hyperlink [126145 - 126166] HYPERLINK Timestamp, UML61... +2024-09-08 08:30:23,641 [main] TRACE AbstractWordWriter - replacing hyperlink [126241 - 126262] HYPERLINK Timestamp, UML61... +2024-09-08 08:30:23,696 [main] TRACE AbstractWordWriter - replacing hyperlink [126368 - 126389] HYPERLINK Timestamp, UML61... +2024-09-08 08:30:23,751 [main] TRACE AbstractWordWriter - replacing hyperlink [126497 - 126518] HYPERLINK Timestamp, UML61... +2024-09-08 08:30:23,807 [main] TRACE AbstractWordWriter - replacing hyperlink [127516 - 127537] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:23,871 [main] TRACE AbstractWordWriter - replacing hyperlink [127663 - 127680] HYPERLINK CntRs, UML67... +2024-09-08 08:30:23,927 [main] TRACE AbstractWordWriter - replacing hyperlink [127767 - 127788] HYPERLINK IntegerTs, UML58... +2024-09-08 08:30:23,981 [main] TRACE AbstractWordWriter - replacing hyperlink [127875 - 127899] HYPERLINK CharStringTs, UML60... +2024-09-08 08:30:24,045 [main] TRACE AbstractWordWriter - replacing hyperlink [127995 - 128015] HYPERLINK CPUEntry, UML84... +2024-09-08 08:30:24,102 [main] TRACE AbstractWordWriter - replacing hyperlink [128133 - 128155] HYPERLINK FloatingTs, UML57... +2024-09-08 08:30:24,155 [main] TRACE AbstractWordWriter - replacing hyperlink [128314 - 128335] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:24,214 [main] TRACE AbstractWordWriter - replacing hyperlink [128481 - 128503] HYPERLINK CharString, UML59... +2024-09-08 08:30:24,274 [main] TRACE AbstractWordWriter - replacing hyperlink [128609 - 128630] HYPERLINK IntegerTs, UML58... +2024-09-08 08:30:24,341 [main] TRACE AbstractWordWriter - replacing hyperlink [128786 - 128806] HYPERLINK EXTEntry, UML85... +2024-09-08 08:30:24,397 [main] TRACE AbstractWordWriter - replacing hyperlink [128945 - 128969] HYPERLINK CharStringTs, UML60... +2024-09-08 08:30:24,461 [main] TRACE AbstractWordWriter - replacing hyperlink [129099 - 129121] HYPERLINK FloatingTs, UML57... +2024-09-08 08:30:24,517 [main] TRACE AbstractWordWriter - replacing hyperlink [129237 - 129258] HYPERLINK IntegerTs, UML58... +2024-09-08 08:30:24,572 [main] TRACE AbstractWordWriter - replacing hyperlink [129335 - 129356] HYPERLINK EventType, UML72... +2024-09-08 08:30:24,633 [main] TRACE AbstractWordWriter - replacing hyperlink [129453 - 129474] HYPERLINK IntegerTs, UML58... +2024-09-08 08:30:24,690 [main] TRACE AbstractWordWriter - replacing hyperlink [129561 - 129582] HYPERLINK IntegerTs, UML58... +2024-09-08 08:30:24,745 [main] TRACE AbstractWordWriter - replacing hyperlink [129662 - 129684] HYPERLINK CharString, UML59... +2024-09-08 08:30:24,804 [main] TRACE AbstractWordWriter - replacing hyperlink [129807 - 129829] HYPERLINK CharString, UML59... +2024-09-08 08:30:24,865 [main] TRACE AbstractWordWriter - replacing hyperlink [129930 - 129949] HYPERLINK Integer, UML53... +2024-09-08 08:30:24,923 [main] TRACE AbstractWordWriter - replacing hyperlink [130065 - 130087] HYPERLINK FloatingTs, UML57... +2024-09-08 08:30:24,986 [main] TRACE AbstractWordWriter - replacing hyperlink [130235 - 130257] HYPERLINK CharString, UML59... +2024-09-08 08:30:25,041 [main] TRACE AbstractWordWriter - replacing hyperlink [130353 - 130374] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:25,097 [main] TRACE AbstractWordWriter - replacing hyperlink [130493 - 130515] HYPERLINK CharString, UML59... +2024-09-08 08:30:25,151 [main] TRACE AbstractWordWriter - replacing hyperlink [130586 - 130607] HYPERLINK IntegerTs, UML58... +2024-09-08 08:30:25,208 [main] TRACE AbstractWordWriter - replacing hyperlink [130793 - 130815] HYPERLINK FloatingTs, UML57... +2024-09-08 08:30:25,263 [main] TRACE AbstractWordWriter - replacing hyperlink [130965 - 130987] HYPERLINK FloatingTs, UML57... +2024-09-08 08:30:25,319 [main] TRACE AbstractWordWriter - replacing hyperlink [131097 - 131122] HYPERLINK PhyHealthType, UML69... +2024-09-08 08:30:25,386 [main] TRACE AbstractWordWriter - replacing hyperlink [131234 - 131255] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:25,446 [main] TRACE AbstractWordWriter - replacing hyperlink [131384 - 131408] HYPERLINK CharStringTs, UML60... +2024-09-08 08:30:25,507 [main] TRACE AbstractWordWriter - replacing hyperlink [131506 - 131527] HYPERLINK IntegerTs, UML58... +2024-09-08 08:30:25,567 [main] TRACE AbstractWordWriter - replacing hyperlink [131668 - 131689] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:25,623 [main] TRACE AbstractWordWriter - replacing hyperlink [131800 - 131832] HYPERLINK SecurityNotification, UML88... +2024-09-08 08:30:25,676 [main] TRACE AbstractWordWriter - replacing hyperlink [131936 - 131960] HYPERLINK Notification, UML87... +2024-09-08 08:30:25,734 [main] TRACE AbstractWordWriter - replacing hyperlink [132044 - 132066] HYPERLINK STOREEntry, UML86... +2024-09-08 08:30:25,795 [main] TRACE AbstractWordWriter - replacing hyperlink [132197 - 132218] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:25,850 [main] TRACE AbstractWordWriter - replacing hyperlink [132476 - 132497] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:25,904 [main] TRACE AbstractWordWriter - replacing hyperlink [132633 - 132654] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:25,961 [main] TRACE AbstractWordWriter - replacing hyperlink [133015 - 133032] HYPERLINK CntRs, UML67... +2024-09-08 08:30:26,013 [main] TRACE AbstractWordWriter - replacing hyperlink [133108 - 133130] HYPERLINK CharString, UML59... +2024-09-08 08:30:26,072 [main] TRACE AbstractWordWriter - replacing hyperlink [133204 - 133230] HYPERLINK BooleanValueTs, UML54... +2024-09-08 08:30:26,137 [main] TRACE AbstractWordWriter - replacing hyperlink [133300 - 133323] HYPERLINK EntityIndex, UML66... +2024-09-08 08:30:26,193 [main] TRACE AbstractWordWriter - replacing hyperlink [133383 - 133409] HYPERLINK BooleanValueTs, UML54... +2024-09-08 08:30:26,255 [main] TRACE AbstractWordWriter - replacing hyperlink [133503 - 133529] HYPERLINK BooleanValueTs, UML54... +2024-09-08 08:30:26,316 [main] TRACE AbstractWordWriter - replacing hyperlink [133655 - 133677] HYPERLINK FloatingTs, UML57... +2024-09-08 08:30:26,382 [main] TRACE AbstractWordWriter - replacing hyperlink [133752 - 133773] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:26,449 [main] TRACE AbstractWordWriter - replacing hyperlink [134206 - 134229] HYPERLINK EntityIndex, UML66... +2024-09-08 08:30:26,508 [main] TRACE AbstractWordWriter - replacing hyperlink [134293 - 134315] HYPERLINK CharString, UML59... +2024-09-08 08:30:26,571 [main] TRACE AbstractWordWriter - replacing hyperlink [134405 - 134424] HYPERLINK ExtType, UML70... +2024-09-08 08:30:26,626 [main] TRACE AbstractWordWriter - replacing hyperlink [134533 - 134557] HYPERLINK CharStringTs, UML60... +2024-09-08 08:30:26,682 [main] TRACE AbstractWordWriter - replacing hyperlink [134645 - 134671] HYPERLINK BooleanValueTs, UML54... +2024-09-08 08:30:26,735 [main] TRACE AbstractWordWriter - replacing hyperlink [134797 - 134819] HYPERLINK FloatingTs, UML57... +2024-09-08 08:30:26,794 [main] TRACE AbstractWordWriter - replacing hyperlink [134900 - 134921] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:26,851 [main] TRACE AbstractWordWriter - replacing hyperlink [135068 - 135089] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:26,906 [main] TRACE AbstractWordWriter - replacing hyperlink [135192 - 135209] HYPERLINK CntRs, UML67... +2024-09-08 08:30:26,963 [main] TRACE AbstractWordWriter - replacing hyperlink [135573 - 135596] HYPERLINK EntityIndex, UML66... +2024-09-08 08:30:27,022 [main] TRACE AbstractWordWriter - replacing hyperlink [135667 - 135689] HYPERLINK CharString, UML59... +2024-09-08 08:30:27,077 [main] TRACE AbstractWordWriter - replacing hyperlink [135773 - 135793] HYPERLINK Floating, UML56... +2024-09-08 08:30:27,134 [main] TRACE AbstractWordWriter - replacing hyperlink [135876 - 135898] HYPERLINK FloatingTs, UML57... +2024-09-08 08:30:27,194 [main] TRACE AbstractWordWriter - replacing hyperlink [135987 - 136013] HYPERLINK BooleanValueTs, UML54... +2024-09-08 08:30:27,249 [main] TRACE AbstractWordWriter - replacing hyperlink [136101 - 136118] HYPERLINK CntRs, UML67... +2024-09-08 08:30:27,306 [main] TRACE AbstractWordWriter - replacing hyperlink [136542 - 136563] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:27,363 [main] TRACE AbstractWordWriter - replacing hyperlink [136692 - 136714] HYPERLINK FloatingTs, UML57... +2024-09-08 08:30:27,417 [main] TRACE AbstractWordWriter - replacing hyperlink [136826 - 136848] HYPERLINK FloatingTs, UML57... +2024-09-08 08:30:27,470 [main] TRACE AbstractWordWriter - replacing hyperlink [136998 - 137020] HYPERLINK FloatingTs, UML57... +2024-09-08 08:30:27,534 [main] TRACE AbstractWordWriter - replacing hyperlink [137130 - 137155] HYPERLINK PhyHealthType, UML69... +2024-09-08 08:30:27,596 [main] TRACE AbstractWordWriter - replacing hyperlink [137261 - 137282] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:27,652 [main] TRACE AbstractWordWriter - replacing hyperlink [137731 - 137752] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:27,717 [main] TRACE AbstractWordWriter - replacing hyperlink [137881 - 137902] HYPERLINK IntegerTs, UML58... +2024-09-08 08:30:27,775 [main] TRACE AbstractWordWriter - replacing hyperlink [138061 - 138082] HYPERLINK EventType, UML72... +2024-09-08 08:30:27,828 [main] TRACE AbstractWordWriter - replacing hyperlink [138182 - 138203] HYPERLINK IntegerTs, UML58... +2024-09-08 08:30:27,881 [main] TRACE AbstractWordWriter - replacing hyperlink [138390 - 138411] HYPERLINK IntegerTs, UML58... +2024-09-08 08:30:27,935 [main] TRACE AbstractWordWriter - replacing hyperlink [138552 - 138573] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:27,990 [main] TRACE AbstractWordWriter - replacing hyperlink [140374 - 140398] HYPERLINK BooleanValue, UML52... +2024-09-08 08:30:28,049 [main] TRACE AbstractWordWriter - replacing hyperlink [140529 - 140548] HYPERLINK Integer, UML53... +2024-09-08 08:30:28,110 [main] TRACE AbstractWordWriter - replacing hyperlink [140714 - 140734] HYPERLINK Floating, UML56... +2024-09-08 08:30:28,168 [main] TRACE AbstractWordWriter - replacing hyperlink [140901 - 140921] HYPERLINK Floating, UML56... +2024-09-08 08:30:28,220 [main] TRACE AbstractWordWriter - replacing hyperlink [141087 - 141107] HYPERLINK Floating, UML56... +2024-09-08 08:30:28,279 [main] TRACE AbstractWordWriter - replacing hyperlink [141274 - 141294] HYPERLINK Floating, UML56... +2024-09-08 08:30:28,335 [main] TRACE AbstractWordWriter - replacing hyperlink [141453 - 141473] HYPERLINK Floating, UML56... +2024-09-08 08:30:28,393 [main] TRACE AbstractWordWriter - replacing hyperlink [141574 - 141594] HYPERLINK Floating, UML56... +2024-09-08 08:30:28,451 [main] TRACE AbstractWordWriter - replacing hyperlink [142501 - 142522] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:28,509 [main] TRACE AbstractWordWriter - replacing hyperlink [142651 - 142672] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:28,563 [main] TRACE AbstractWordWriter - replacing hyperlink [142778 - 142799] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:28,626 [main] TRACE AbstractWordWriter - replacing hyperlink [142920 - 142941] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:28,684 [main] TRACE AbstractWordWriter - replacing hyperlink [143098 - 143119] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:28,749 [main] TRACE AbstractWordWriter - replacing hyperlink [143289 - 143310] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:28,805 [main] TRACE AbstractWordWriter - replacing hyperlink [143447 - 143468] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:28,865 [main] TRACE AbstractWordWriter - replacing hyperlink [143596 - 143617] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:28,922 [main] TRACE AbstractWordWriter - replacing hyperlink [143744 - 143765] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:28,976 [main] TRACE AbstractWordWriter - replacing hyperlink [143854 - 143875] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:29,034 [main] TRACE AbstractWordWriter - replacing hyperlink [143955 - 143976] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:29,089 [main] TRACE AbstractWordWriter - replacing hyperlink [144090 - 144111] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:29,148 [main] TRACE AbstractWordWriter - replacing hyperlink [144227 - 144248] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:29,207 [main] TRACE AbstractWordWriter - replacing hyperlink [144335 - 144356] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:29,263 [main] TRACE AbstractWordWriter - replacing hyperlink [144453 - 144474] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:29,325 [main] TRACE AbstractWordWriter - replacing hyperlink [144596 - 144617] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:29,386 [main] TRACE AbstractWordWriter - replacing hyperlink [144753 - 144774] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:29,441 [main] TRACE AbstractWordWriter - replacing hyperlink [144896 - 144917] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:29,501 [main] TRACE AbstractWordWriter - replacing hyperlink [145037 - 145058] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:29,562 [main] TRACE AbstractWordWriter - replacing hyperlink [145214 - 145235] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:29,620 [main] TRACE AbstractWordWriter - replacing hyperlink [145377 - 145398] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:29,676 [main] TRACE AbstractWordWriter - replacing hyperlink [145509 - 145530] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:29,736 [main] TRACE AbstractWordWriter - replacing hyperlink [145659 - 145680] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:29,805 [main] TRACE AbstractWordWriter - replacing hyperlink [145819 - 145840] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:29,864 [main] TRACE AbstractWordWriter - replacing hyperlink [146019 - 146040] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:29,924 [main] TRACE AbstractWordWriter - replacing hyperlink [146221 - 146242] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:29,980 [main] TRACE AbstractWordWriter - replacing hyperlink [146381 - 146402] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:30,041 [main] TRACE AbstractWordWriter - replacing hyperlink [146518 - 146539] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:30,094 [main] TRACE AbstractWordWriter - replacing hyperlink [146641 - 146662] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:30,152 [main] TRACE AbstractWordWriter - replacing hyperlink [146809 - 146830] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:30,233 [main] TRACE AbstractWordWriter - replacing hyperlink [146951 - 146972] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:30,317 [main] TRACE AbstractWordWriter - replacing hyperlink [147141 - 147162] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:30,398 [main] TRACE AbstractWordWriter - replacing hyperlink [147308 - 147329] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:30,494 [main] TRACE AbstractWordWriter - replacing hyperlink [147505 - 147526] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:30,586 [main] TRACE AbstractWordWriter - replacing hyperlink [147676 - 147697] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:30,681 [main] TRACE AbstractWordWriter - replacing hyperlink [148248 - 148271] HYPERLINK EntityIndex, UML66... +2024-09-08 08:30:30,763 [main] TRACE AbstractWordWriter - replacing hyperlink [148341 - 148358] HYPERLINK CntRs, UML67... +2024-09-08 08:30:30,840 [main] TRACE AbstractWordWriter - replacing hyperlink [148439 - 148462] HYPERLINK InetAddress, UML65... +2024-09-08 08:30:30,909 [main] TRACE AbstractWordWriter - replacing hyperlink [148536 - 148563] HYPERLINK InetAddressType, UML64... +2024-09-08 08:30:31,025 [main] TRACE AbstractWordWriter - replacing hyperlink [148642 - 148665] HYPERLINK InetAddress, UML65... +2024-09-08 08:30:31,124 [main] TRACE AbstractWordWriter - replacing hyperlink [148740 - 148767] HYPERLINK InetAddressType, UML64... +2024-09-08 08:30:31,205 [main] TRACE AbstractWordWriter - replacing hyperlink [148850 - 148874] HYPERLINK BooleanValue, UML52... +2024-09-08 08:30:31,274 [main] TRACE AbstractWordWriter - replacing hyperlink [148932 - 148962] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:30:31,353 [main] TRACE AbstractWordWriter - replacing hyperlink [149020 - 149039] HYPERLINK Integer, UML53... +2024-09-08 08:30:31,428 [main] TRACE AbstractWordWriter - replacing hyperlink [149092 - 149122] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:30:31,508 [main] TRACE AbstractWordWriter - replacing hyperlink [149175 - 149195] HYPERLINK Floating, UML56... +2024-09-08 08:30:31,593 [main] TRACE AbstractWordWriter - replacing hyperlink [149252 - 149282] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:30:31,664 [main] TRACE AbstractWordWriter - replacing hyperlink [149333 - 149353] HYPERLINK Floating, UML56... +2024-09-08 08:30:31,730 [main] TRACE AbstractWordWriter - replacing hyperlink [149410 - 149440] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:30:31,807 [main] TRACE AbstractWordWriter - replacing hyperlink [149501 - 149521] HYPERLINK Floating, UML56... +2024-09-08 08:30:31,889 [main] TRACE AbstractWordWriter - replacing hyperlink [149578 - 149608] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:30:31,972 [main] TRACE AbstractWordWriter - replacing hyperlink [149666 - 149686] HYPERLINK Floating, UML56... +2024-09-08 08:30:32,044 [main] TRACE AbstractWordWriter - replacing hyperlink [149743 - 149773] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:30:32,115 [main] TRACE AbstractWordWriter - replacing hyperlink [149826 - 149846] HYPERLINK Floating, UML56... +2024-09-08 08:30:32,174 [main] TRACE AbstractWordWriter - replacing hyperlink [149903 - 149933] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:30:32,240 [main] TRACE AbstractWordWriter - replacing hyperlink [149990 - 150010] HYPERLINK Floating, UML56... +2024-09-08 08:30:32,293 [main] TRACE AbstractWordWriter - replacing hyperlink [150067 - 150097] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:30:32,357 [main] TRACE AbstractWordWriter - replacing hyperlink [150153 - 150174] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:32,415 [main] TRACE AbstractWordWriter - replacing hyperlink [150229 - 150262] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:32,474 [main] TRACE AbstractWordWriter - replacing hyperlink [150328 - 150349] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:32,533 [main] TRACE AbstractWordWriter - replacing hyperlink [150404 - 150437] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:32,597 [main] TRACE AbstractWordWriter - replacing hyperlink [150503 - 150524] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:32,659 [main] TRACE AbstractWordWriter - replacing hyperlink [150579 - 150612] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:32,720 [main] TRACE AbstractWordWriter - replacing hyperlink [150671 - 150692] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:32,776 [main] TRACE AbstractWordWriter - replacing hyperlink [150747 - 150780] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:32,837 [main] TRACE AbstractWordWriter - replacing hyperlink [150842 - 150863] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:32,904 [main] TRACE AbstractWordWriter - replacing hyperlink [150918 - 150951] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:32,963 [main] TRACE AbstractWordWriter - replacing hyperlink [151010 - 151031] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:33,020 [main] TRACE AbstractWordWriter - replacing hyperlink [151086 - 151119] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:33,074 [main] TRACE AbstractWordWriter - replacing hyperlink [151187 - 151208] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:33,137 [main] TRACE AbstractWordWriter - replacing hyperlink [151263 - 151296] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:33,195 [main] TRACE AbstractWordWriter - replacing hyperlink [151357 - 151378] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:33,256 [main] TRACE AbstractWordWriter - replacing hyperlink [151433 - 151466] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:33,312 [main] TRACE AbstractWordWriter - replacing hyperlink [151521 - 151542] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:33,367 [main] TRACE AbstractWordWriter - replacing hyperlink [151597 - 151630] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:33,433 [main] TRACE AbstractWordWriter - replacing hyperlink [151686 - 151707] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:33,493 [main] TRACE AbstractWordWriter - replacing hyperlink [151762 - 151795] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:33,557 [main] TRACE AbstractWordWriter - replacing hyperlink [151855 - 151876] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:33,616 [main] TRACE AbstractWordWriter - replacing hyperlink [151931 - 151964] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:33,678 [main] TRACE AbstractWordWriter - replacing hyperlink [152030 - 152051] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:33,732 [main] TRACE AbstractWordWriter - replacing hyperlink [152106 - 152139] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:33,798 [main] TRACE AbstractWordWriter - replacing hyperlink [152199 - 152220] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:33,859 [main] TRACE AbstractWordWriter - replacing hyperlink [152275 - 152308] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:33,917 [main] TRACE AbstractWordWriter - replacing hyperlink [152365 - 152386] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:33,979 [main] TRACE AbstractWordWriter - replacing hyperlink [152441 - 152474] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:34,038 [main] TRACE AbstractWordWriter - replacing hyperlink [152534 - 152555] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:34,098 [main] TRACE AbstractWordWriter - replacing hyperlink [152610 - 152643] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:34,160 [main] TRACE AbstractWordWriter - replacing hyperlink [152707 - 152728] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:34,215 [main] TRACE AbstractWordWriter - replacing hyperlink [152783 - 152816] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:34,281 [main] TRACE AbstractWordWriter - replacing hyperlink [152876 - 152897] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:34,345 [main] TRACE AbstractWordWriter - replacing hyperlink [152952 - 152985] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:34,407 [main] TRACE AbstractWordWriter - replacing hyperlink [153046 - 153067] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:34,465 [main] TRACE AbstractWordWriter - replacing hyperlink [153122 - 153155] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:34,523 [main] TRACE AbstractWordWriter - replacing hyperlink [153211 - 153232] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:34,584 [main] TRACE AbstractWordWriter - replacing hyperlink [153287 - 153320] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:34,641 [main] TRACE AbstractWordWriter - replacing hyperlink [153378 - 153399] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:34,712 [main] TRACE AbstractWordWriter - replacing hyperlink [153454 - 153487] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:34,782 [main] TRACE AbstractWordWriter - replacing hyperlink [153544 - 153565] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:34,864 [main] TRACE AbstractWordWriter - replacing hyperlink [153620 - 153653] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:34,951 [main] TRACE AbstractWordWriter - replacing hyperlink [153715 - 153736] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:35,033 [main] TRACE AbstractWordWriter - replacing hyperlink [153791 - 153824] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:35,104 [main] TRACE AbstractWordWriter - replacing hyperlink [153896 - 153917] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:35,184 [main] TRACE AbstractWordWriter - replacing hyperlink [153972 - 154005] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:35,264 [main] TRACE AbstractWordWriter - replacing hyperlink [154065 - 154086] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:35,350 [main] TRACE AbstractWordWriter - replacing hyperlink [154141 - 154174] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:35,429 [main] TRACE AbstractWordWriter - replacing hyperlink [154234 - 154255] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:35,525 [main] TRACE AbstractWordWriter - replacing hyperlink [154310 - 154343] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:35,619 [main] TRACE AbstractWordWriter - replacing hyperlink [154409 - 154430] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:35,707 [main] TRACE AbstractWordWriter - replacing hyperlink [154485 - 154518] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:35,799 [main] TRACE AbstractWordWriter - replacing hyperlink [154581 - 154602] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:35,889 [main] TRACE AbstractWordWriter - replacing hyperlink [154657 - 154690] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:35,983 [main] TRACE AbstractWordWriter - replacing hyperlink [154749 - 154770] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:36,067 [main] TRACE AbstractWordWriter - replacing hyperlink [154825 - 154858] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:36,161 [main] TRACE AbstractWordWriter - replacing hyperlink [154912 - 154933] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:36,249 [main] TRACE AbstractWordWriter - replacing hyperlink [154988 - 155021] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:36,355 [main] TRACE AbstractWordWriter - replacing hyperlink [155082 - 155103] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:36,444 [main] TRACE AbstractWordWriter - replacing hyperlink [155158 - 155191] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:36,528 [main] TRACE AbstractWordWriter - replacing hyperlink [155252 - 155273] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:36,633 [main] TRACE AbstractWordWriter - replacing hyperlink [155328 - 155361] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:36,728 [main] TRACE AbstractWordWriter - replacing hyperlink [155424 - 155445] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:36,819 [main] TRACE AbstractWordWriter - replacing hyperlink [155500 - 155533] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:36,912 [main] TRACE AbstractWordWriter - replacing hyperlink [155600 - 155621] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:37,004 [main] TRACE AbstractWordWriter - replacing hyperlink [155676 - 155709] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:37,106 [main] TRACE AbstractWordWriter - replacing hyperlink [155769 - 155790] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:37,211 [main] TRACE AbstractWordWriter - replacing hyperlink [155845 - 155878] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:37,294 [main] TRACE AbstractWordWriter - replacing hyperlink [155945 - 155966] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:37,399 [main] TRACE AbstractWordWriter - replacing hyperlink [156021 - 156054] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:37,488 [main] TRACE AbstractWordWriter - replacing hyperlink [156425 - 156442] HYPERLINK CntRs, UML67... +2024-09-08 08:30:37,585 [main] TRACE AbstractWordWriter - replacing hyperlink [156522 - 156543] HYPERLINK EventType, UML72... +2024-09-08 08:30:37,679 [main] TRACE AbstractWordWriter - replacing hyperlink [156659 - 156680] HYPERLINK ServerTLS, UML93... +2024-09-08 08:30:37,784 [main] TRACE AbstractWordWriter - replacing hyperlink [156762 - 156783] HYPERLINK ClientTLS, UML92... +2024-09-08 08:30:37,880 [main] TRACE AbstractWordWriter - replacing hyperlink [156876 - 156925] HYPERLINK IEC62351part3ed2SecurityNotification, UML106... +2024-09-08 08:30:37,975 [main] TRACE AbstractWordWriter - replacing hyperlink [157111 - 157132] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:38,063 [main] TRACE AbstractWordWriter - replacing hyperlink [157187 - 157220] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:38,151 [main] TRACE AbstractWordWriter - replacing hyperlink [157286 - 157307] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:38,239 [main] TRACE AbstractWordWriter - replacing hyperlink [157362 - 157395] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:38,328 [main] TRACE AbstractWordWriter - replacing hyperlink [157461 - 157482] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:38,410 [main] TRACE AbstractWordWriter - replacing hyperlink [157537 - 157570] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:38,493 [main] TRACE AbstractWordWriter - replacing hyperlink [157629 - 157650] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:38,582 [main] TRACE AbstractWordWriter - replacing hyperlink [157705 - 157738] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:38,685 [main] TRACE AbstractWordWriter - replacing hyperlink [157800 - 157821] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:38,769 [main] TRACE AbstractWordWriter - replacing hyperlink [157876 - 157909] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:38,858 [main] TRACE AbstractWordWriter - replacing hyperlink [157968 - 157989] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:38,946 [main] TRACE AbstractWordWriter - replacing hyperlink [158044 - 158077] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:39,034 [main] TRACE AbstractWordWriter - replacing hyperlink [158145 - 158166] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:39,112 [main] TRACE AbstractWordWriter - replacing hyperlink [158221 - 158254] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:39,196 [main] TRACE AbstractWordWriter - replacing hyperlink [158315 - 158336] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:39,275 [main] TRACE AbstractWordWriter - replacing hyperlink [158391 - 158424] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:39,361 [main] TRACE AbstractWordWriter - replacing hyperlink [158479 - 158500] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:39,458 [main] TRACE AbstractWordWriter - replacing hyperlink [158555 - 158588] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:39,544 [main] TRACE AbstractWordWriter - replacing hyperlink [158644 - 158665] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:39,632 [main] TRACE AbstractWordWriter - replacing hyperlink [158720 - 158753] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:39,716 [main] TRACE AbstractWordWriter - replacing hyperlink [158813 - 158834] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:39,797 [main] TRACE AbstractWordWriter - replacing hyperlink [158889 - 158922] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:39,883 [main] TRACE AbstractWordWriter - replacing hyperlink [158988 - 159009] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:39,968 [main] TRACE AbstractWordWriter - replacing hyperlink [159064 - 159097] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:40,052 [main] TRACE AbstractWordWriter - replacing hyperlink [159157 - 159178] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:40,139 [main] TRACE AbstractWordWriter - replacing hyperlink [159233 - 159266] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:40,230 [main] TRACE AbstractWordWriter - replacing hyperlink [159323 - 159344] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:40,310 [main] TRACE AbstractWordWriter - replacing hyperlink [159399 - 159432] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:40,399 [main] TRACE AbstractWordWriter - replacing hyperlink [159492 - 159513] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:40,493 [main] TRACE AbstractWordWriter - replacing hyperlink [159568 - 159601] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:40,578 [main] TRACE AbstractWordWriter - replacing hyperlink [159665 - 159686] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:40,666 [main] TRACE AbstractWordWriter - replacing hyperlink [159741 - 159774] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:40,756 [main] TRACE AbstractWordWriter - replacing hyperlink [159834 - 159855] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:40,845 [main] TRACE AbstractWordWriter - replacing hyperlink [159910 - 159943] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:40,926 [main] TRACE AbstractWordWriter - replacing hyperlink [160004 - 160025] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:41,010 [main] TRACE AbstractWordWriter - replacing hyperlink [160080 - 160113] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:41,096 [main] TRACE AbstractWordWriter - replacing hyperlink [160169 - 160190] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:41,183 [main] TRACE AbstractWordWriter - replacing hyperlink [160245 - 160278] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:41,268 [main] TRACE AbstractWordWriter - replacing hyperlink [160336 - 160357] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:41,355 [main] TRACE AbstractWordWriter - replacing hyperlink [160412 - 160445] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:41,442 [main] TRACE AbstractWordWriter - replacing hyperlink [160502 - 160523] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:41,530 [main] TRACE AbstractWordWriter - replacing hyperlink [160578 - 160611] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:41,616 [main] TRACE AbstractWordWriter - replacing hyperlink [160673 - 160694] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:41,703 [main] TRACE AbstractWordWriter - replacing hyperlink [160749 - 160782] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:41,790 [main] TRACE AbstractWordWriter - replacing hyperlink [160854 - 160875] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:41,882 [main] TRACE AbstractWordWriter - replacing hyperlink [160930 - 160963] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:41,972 [main] TRACE AbstractWordWriter - replacing hyperlink [161023 - 161044] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:42,054 [main] TRACE AbstractWordWriter - replacing hyperlink [161099 - 161132] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:42,141 [main] TRACE AbstractWordWriter - replacing hyperlink [161192 - 161213] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:42,228 [main] TRACE AbstractWordWriter - replacing hyperlink [161268 - 161301] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:42,308 [main] TRACE AbstractWordWriter - replacing hyperlink [161367 - 161388] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:42,397 [main] TRACE AbstractWordWriter - replacing hyperlink [161443 - 161476] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:42,484 [main] TRACE AbstractWordWriter - replacing hyperlink [161539 - 161560] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:42,578 [main] TRACE AbstractWordWriter - replacing hyperlink [161615 - 161648] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:42,669 [main] TRACE AbstractWordWriter - replacing hyperlink [161707 - 161728] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:42,746 [main] TRACE AbstractWordWriter - replacing hyperlink [161783 - 161816] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:42,829 [main] TRACE AbstractWordWriter - replacing hyperlink [161870 - 161891] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:42,914 [main] TRACE AbstractWordWriter - replacing hyperlink [161946 - 161979] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:42,997 [main] TRACE AbstractWordWriter - replacing hyperlink [162040 - 162061] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:43,074 [main] TRACE AbstractWordWriter - replacing hyperlink [162116 - 162149] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:43,151 [main] TRACE AbstractWordWriter - replacing hyperlink [162210 - 162231] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:43,236 [main] TRACE AbstractWordWriter - replacing hyperlink [162286 - 162319] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:43,316 [main] TRACE AbstractWordWriter - replacing hyperlink [162382 - 162403] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:43,401 [main] TRACE AbstractWordWriter - replacing hyperlink [162458 - 162491] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:43,478 [main] TRACE AbstractWordWriter - replacing hyperlink [162558 - 162579] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:43,561 [main] TRACE AbstractWordWriter - replacing hyperlink [162634 - 162667] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:43,642 [main] TRACE AbstractWordWriter - replacing hyperlink [162727 - 162748] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:43,727 [main] TRACE AbstractWordWriter - replacing hyperlink [162803 - 162836] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:43,809 [main] TRACE AbstractWordWriter - replacing hyperlink [162903 - 162924] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:43,890 [main] TRACE AbstractWordWriter - replacing hyperlink [162979 - 163012] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:43,977 [main] TRACE AbstractWordWriter - replacing hyperlink [163512 - 163533] HYPERLINK EventType, UML72... +2024-09-08 08:30:44,060 [main] TRACE AbstractWordWriter - replacing hyperlink [163910 - 163933] HYPERLINK EntityIndex, UML66... +2024-09-08 08:30:44,148 [main] TRACE AbstractWordWriter - replacing hyperlink [163987 - 164009] HYPERLINK TLSSession, UML91... +2024-09-08 08:30:44,230 [main] TRACE AbstractWordWriter - replacing hyperlink [164047 - 164064] HYPERLINK CntRs, UML67... +2024-09-08 08:30:44,319 [main] TRACE AbstractWordWriter - replacing hyperlink [164115 - 164137] HYPERLINK TLSSession, UML91... +2024-09-08 08:30:44,410 [main] TRACE AbstractWordWriter - replacing hyperlink [164180 - 164203] HYPERLINK InetAddress, UML65... +2024-09-08 08:30:44,503 [main] TRACE AbstractWordWriter - replacing hyperlink [164260 - 164282] HYPERLINK TLSSession, UML91... +2024-09-08 08:30:44,593 [main] TRACE AbstractWordWriter - replacing hyperlink [164329 - 164356] HYPERLINK InetAddressType, UML64... +2024-09-08 08:30:44,684 [main] TRACE AbstractWordWriter - replacing hyperlink [164417 - 164439] HYPERLINK TLSSession, UML91... +2024-09-08 08:30:44,773 [main] TRACE AbstractWordWriter - replacing hyperlink [164482 - 164505] HYPERLINK InetAddress, UML65... +2024-09-08 08:30:44,880 [main] TRACE AbstractWordWriter - replacing hyperlink [164562 - 164584] HYPERLINK TLSSession, UML91... +2024-09-08 08:30:44,969 [main] TRACE AbstractWordWriter - replacing hyperlink [164631 - 164658] HYPERLINK InetAddressType, UML64... +2024-09-08 08:30:45,058 [main] TRACE AbstractWordWriter - replacing hyperlink [164719 - 164741] HYPERLINK TLSSession, UML91... +2024-09-08 08:30:45,146 [main] TRACE AbstractWordWriter - replacing hyperlink [164787 - 164811] HYPERLINK BooleanValue, UML52... +2024-09-08 08:30:45,226 [main] TRACE AbstractWordWriter - replacing hyperlink [164869 - 164899] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:30:45,302 [main] TRACE AbstractWordWriter - replacing hyperlink [164957 - 164976] HYPERLINK Integer, UML53... +2024-09-08 08:30:45,380 [main] TRACE AbstractWordWriter - replacing hyperlink [165029 - 165059] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:30:45,460 [main] TRACE AbstractWordWriter - replacing hyperlink [165112 - 165132] HYPERLINK Floating, UML56... +2024-09-08 08:30:45,532 [main] TRACE AbstractWordWriter - replacing hyperlink [165189 - 165219] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:30:45,609 [main] TRACE AbstractWordWriter - replacing hyperlink [165270 - 165290] HYPERLINK Floating, UML56... +2024-09-08 08:30:45,688 [main] TRACE AbstractWordWriter - replacing hyperlink [165347 - 165377] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:30:45,766 [main] TRACE AbstractWordWriter - replacing hyperlink [165438 - 165458] HYPERLINK Floating, UML56... +2024-09-08 08:30:45,847 [main] TRACE AbstractWordWriter - replacing hyperlink [165515 - 165545] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:30:45,933 [main] TRACE AbstractWordWriter - replacing hyperlink [165603 - 165623] HYPERLINK Floating, UML56... +2024-09-08 08:30:46,017 [main] TRACE AbstractWordWriter - replacing hyperlink [165680 - 165710] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:30:46,101 [main] TRACE AbstractWordWriter - replacing hyperlink [165763 - 165783] HYPERLINK Floating, UML56... +2024-09-08 08:30:46,181 [main] TRACE AbstractWordWriter - replacing hyperlink [165840 - 165870] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:30:46,251 [main] TRACE AbstractWordWriter - replacing hyperlink [165927 - 165947] HYPERLINK Floating, UML56... +2024-09-08 08:30:46,343 [main] TRACE AbstractWordWriter - replacing hyperlink [166004 - 166034] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:30:46,446 [main] TRACE AbstractWordWriter - replacing hyperlink [166090 - 166111] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:46,525 [main] TRACE AbstractWordWriter - replacing hyperlink [166166 - 166199] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:46,584 [main] TRACE AbstractWordWriter - replacing hyperlink [166265 - 166286] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:46,650 [main] TRACE AbstractWordWriter - replacing hyperlink [166341 - 166374] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:46,714 [main] TRACE AbstractWordWriter - replacing hyperlink [166440 - 166461] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:46,771 [main] TRACE AbstractWordWriter - replacing hyperlink [166516 - 166549] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:46,829 [main] TRACE AbstractWordWriter - replacing hyperlink [166608 - 166629] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:46,899 [main] TRACE AbstractWordWriter - replacing hyperlink [166684 - 166717] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:46,974 [main] TRACE AbstractWordWriter - replacing hyperlink [166779 - 166800] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:47,039 [main] TRACE AbstractWordWriter - replacing hyperlink [166855 - 166888] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:47,103 [main] TRACE AbstractWordWriter - replacing hyperlink [166947 - 166968] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:47,173 [main] TRACE AbstractWordWriter - replacing hyperlink [167023 - 167056] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:47,233 [main] TRACE AbstractWordWriter - replacing hyperlink [167124 - 167145] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:47,288 [main] TRACE AbstractWordWriter - replacing hyperlink [167200 - 167233] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:47,341 [main] TRACE AbstractWordWriter - replacing hyperlink [167294 - 167315] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:47,400 [main] TRACE AbstractWordWriter - replacing hyperlink [167370 - 167403] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:47,455 [main] TRACE AbstractWordWriter - replacing hyperlink [167458 - 167479] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:47,517 [main] TRACE AbstractWordWriter - replacing hyperlink [167534 - 167567] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:47,578 [main] TRACE AbstractWordWriter - replacing hyperlink [167623 - 167644] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:47,637 [main] TRACE AbstractWordWriter - replacing hyperlink [167699 - 167732] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:47,693 [main] TRACE AbstractWordWriter - replacing hyperlink [167792 - 167813] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:47,749 [main] TRACE AbstractWordWriter - replacing hyperlink [167868 - 167901] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:47,809 [main] TRACE AbstractWordWriter - replacing hyperlink [167967 - 167988] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:47,866 [main] TRACE AbstractWordWriter - replacing hyperlink [168043 - 168076] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:47,922 [main] TRACE AbstractWordWriter - replacing hyperlink [168136 - 168157] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:47,981 [main] TRACE AbstractWordWriter - replacing hyperlink [168212 - 168245] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:48,041 [main] TRACE AbstractWordWriter - replacing hyperlink [168302 - 168323] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:48,105 [main] TRACE AbstractWordWriter - replacing hyperlink [168378 - 168411] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:48,176 [main] TRACE AbstractWordWriter - replacing hyperlink [168471 - 168492] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:48,242 [main] TRACE AbstractWordWriter - replacing hyperlink [168547 - 168580] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:48,311 [main] TRACE AbstractWordWriter - replacing hyperlink [168644 - 168665] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:48,379 [main] TRACE AbstractWordWriter - replacing hyperlink [168720 - 168753] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:48,451 [main] TRACE AbstractWordWriter - replacing hyperlink [168813 - 168834] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:48,512 [main] TRACE AbstractWordWriter - replacing hyperlink [168889 - 168922] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:48,572 [main] TRACE AbstractWordWriter - replacing hyperlink [168983 - 169004] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:48,636 [main] TRACE AbstractWordWriter - replacing hyperlink [169059 - 169092] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:48,697 [main] TRACE AbstractWordWriter - replacing hyperlink [169148 - 169169] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:48,752 [main] TRACE AbstractWordWriter - replacing hyperlink [169224 - 169257] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:48,809 [main] TRACE AbstractWordWriter - replacing hyperlink [169315 - 169336] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:48,873 [main] TRACE AbstractWordWriter - replacing hyperlink [169391 - 169424] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:48,936 [main] TRACE AbstractWordWriter - replacing hyperlink [169481 - 169502] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:49,000 [main] TRACE AbstractWordWriter - replacing hyperlink [169557 - 169590] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:49,056 [main] TRACE AbstractWordWriter - replacing hyperlink [169652 - 169673] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:49,116 [main] TRACE AbstractWordWriter - replacing hyperlink [169728 - 169761] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:49,173 [main] TRACE AbstractWordWriter - replacing hyperlink [169833 - 169854] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:49,244 [main] TRACE AbstractWordWriter - replacing hyperlink [169909 - 169942] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:49,303 [main] TRACE AbstractWordWriter - replacing hyperlink [170002 - 170023] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:49,361 [main] TRACE AbstractWordWriter - replacing hyperlink [170078 - 170111] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:49,418 [main] TRACE AbstractWordWriter - replacing hyperlink [170171 - 170192] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:49,476 [main] TRACE AbstractWordWriter - replacing hyperlink [170247 - 170280] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:49,540 [main] TRACE AbstractWordWriter - replacing hyperlink [170346 - 170367] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:49,596 [main] TRACE AbstractWordWriter - replacing hyperlink [170422 - 170455] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:49,660 [main] TRACE AbstractWordWriter - replacing hyperlink [170518 - 170539] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:49,719 [main] TRACE AbstractWordWriter - replacing hyperlink [170594 - 170627] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:49,777 [main] TRACE AbstractWordWriter - replacing hyperlink [170686 - 170707] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:49,838 [main] TRACE AbstractWordWriter - replacing hyperlink [170762 - 170795] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:49,898 [main] TRACE AbstractWordWriter - replacing hyperlink [170849 - 170870] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:49,957 [main] TRACE AbstractWordWriter - replacing hyperlink [170925 - 170958] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:50,020 [main] TRACE AbstractWordWriter - replacing hyperlink [171019 - 171040] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:50,076 [main] TRACE AbstractWordWriter - replacing hyperlink [171095 - 171128] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:50,139 [main] TRACE AbstractWordWriter - replacing hyperlink [171189 - 171210] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:50,199 [main] TRACE AbstractWordWriter - replacing hyperlink [171265 - 171298] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:50,255 [main] TRACE AbstractWordWriter - replacing hyperlink [171361 - 171382] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:50,327 [main] TRACE AbstractWordWriter - replacing hyperlink [171437 - 171470] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:50,389 [main] TRACE AbstractWordWriter - replacing hyperlink [171537 - 171558] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:50,446 [main] TRACE AbstractWordWriter - replacing hyperlink [171613 - 171646] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:50,509 [main] TRACE AbstractWordWriter - replacing hyperlink [171706 - 171727] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:50,566 [main] TRACE AbstractWordWriter - replacing hyperlink [171782 - 171815] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:50,625 [main] TRACE AbstractWordWriter - replacing hyperlink [171882 - 171903] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:50,679 [main] TRACE AbstractWordWriter - replacing hyperlink [171958 - 171991] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:50,748 [main] TRACE AbstractWordWriter - replacing hyperlink [172333 - 172356] HYPERLINK EntityIndex, UML66... +2024-09-08 08:30:50,813 [main] TRACE AbstractWordWriter - replacing hyperlink [172410 - 172432] HYPERLINK TLSSession, UML91... +2024-09-08 08:30:50,875 [main] TRACE AbstractWordWriter - replacing hyperlink [172470 - 172487] HYPERLINK CntRs, UML67... +2024-09-08 08:30:50,932 [main] TRACE AbstractWordWriter - replacing hyperlink [172538 - 172560] HYPERLINK TLSSession, UML91... +2024-09-08 08:30:50,994 [main] TRACE AbstractWordWriter - replacing hyperlink [172603 - 172626] HYPERLINK InetAddress, UML65... +2024-09-08 08:30:51,057 [main] TRACE AbstractWordWriter - replacing hyperlink [172683 - 172705] HYPERLINK TLSSession, UML91... +2024-09-08 08:30:51,118 [main] TRACE AbstractWordWriter - replacing hyperlink [172752 - 172779] HYPERLINK InetAddressType, UML64... +2024-09-08 08:30:51,181 [main] TRACE AbstractWordWriter - replacing hyperlink [172840 - 172862] HYPERLINK TLSSession, UML91... +2024-09-08 08:30:51,236 [main] TRACE AbstractWordWriter - replacing hyperlink [172905 - 172928] HYPERLINK InetAddress, UML65... +2024-09-08 08:30:51,291 [main] TRACE AbstractWordWriter - replacing hyperlink [172985 - 173007] HYPERLINK TLSSession, UML91... +2024-09-08 08:30:51,357 [main] TRACE AbstractWordWriter - replacing hyperlink [173054 - 173081] HYPERLINK InetAddressType, UML64... +2024-09-08 08:30:51,427 [main] TRACE AbstractWordWriter - replacing hyperlink [173142 - 173164] HYPERLINK TLSSession, UML91... +2024-09-08 08:30:51,491 [main] TRACE AbstractWordWriter - replacing hyperlink [173210 - 173234] HYPERLINK BooleanValue, UML52... +2024-09-08 08:30:51,556 [main] TRACE AbstractWordWriter - replacing hyperlink [173292 - 173322] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:30:51,613 [main] TRACE AbstractWordWriter - replacing hyperlink [173380 - 173399] HYPERLINK Integer, UML53... +2024-09-08 08:30:51,676 [main] TRACE AbstractWordWriter - replacing hyperlink [173452 - 173482] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:30:51,735 [main] TRACE AbstractWordWriter - replacing hyperlink [173535 - 173555] HYPERLINK Floating, UML56... +2024-09-08 08:30:51,800 [main] TRACE AbstractWordWriter - replacing hyperlink [173612 - 173642] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:30:51,856 [main] TRACE AbstractWordWriter - replacing hyperlink [173693 - 173713] HYPERLINK Floating, UML56... +2024-09-08 08:30:51,913 [main] TRACE AbstractWordWriter - replacing hyperlink [173770 - 173800] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:30:51,976 [main] TRACE AbstractWordWriter - replacing hyperlink [173861 - 173881] HYPERLINK Floating, UML56... +2024-09-08 08:30:52,037 [main] TRACE AbstractWordWriter - replacing hyperlink [173938 - 173968] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:30:52,105 [main] TRACE AbstractWordWriter - replacing hyperlink [174026 - 174046] HYPERLINK Floating, UML56... +2024-09-08 08:30:52,157 [main] TRACE AbstractWordWriter - replacing hyperlink [174103 - 174133] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:30:52,212 [main] TRACE AbstractWordWriter - replacing hyperlink [174186 - 174206] HYPERLINK Floating, UML56... +2024-09-08 08:30:52,268 [main] TRACE AbstractWordWriter - replacing hyperlink [174263 - 174293] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:30:52,335 [main] TRACE AbstractWordWriter - replacing hyperlink [174350 - 174370] HYPERLINK Floating, UML56... +2024-09-08 08:30:52,399 [main] TRACE AbstractWordWriter - replacing hyperlink [174427 - 174457] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:30:52,463 [main] TRACE AbstractWordWriter - replacing hyperlink [174513 - 174534] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:52,526 [main] TRACE AbstractWordWriter - replacing hyperlink [174589 - 174622] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:52,588 [main] TRACE AbstractWordWriter - replacing hyperlink [174688 - 174709] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:52,648 [main] TRACE AbstractWordWriter - replacing hyperlink [174764 - 174797] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:52,705 [main] TRACE AbstractWordWriter - replacing hyperlink [174863 - 174884] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:52,766 [main] TRACE AbstractWordWriter - replacing hyperlink [174939 - 174972] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:52,823 [main] TRACE AbstractWordWriter - replacing hyperlink [175031 - 175052] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:52,883 [main] TRACE AbstractWordWriter - replacing hyperlink [175107 - 175140] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:52,941 [main] TRACE AbstractWordWriter - replacing hyperlink [175202 - 175223] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:52,999 [main] TRACE AbstractWordWriter - replacing hyperlink [175278 - 175311] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:53,053 [main] TRACE AbstractWordWriter - replacing hyperlink [175370 - 175391] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:53,115 [main] TRACE AbstractWordWriter - replacing hyperlink [175446 - 175479] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:53,173 [main] TRACE AbstractWordWriter - replacing hyperlink [175547 - 175568] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:53,232 [main] TRACE AbstractWordWriter - replacing hyperlink [175623 - 175656] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:53,289 [main] TRACE AbstractWordWriter - replacing hyperlink [175717 - 175738] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:53,344 [main] TRACE AbstractWordWriter - replacing hyperlink [175793 - 175826] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:53,401 [main] TRACE AbstractWordWriter - replacing hyperlink [175881 - 175902] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:53,459 [main] TRACE AbstractWordWriter - replacing hyperlink [175957 - 175990] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:53,523 [main] TRACE AbstractWordWriter - replacing hyperlink [176046 - 176067] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:53,584 [main] TRACE AbstractWordWriter - replacing hyperlink [176122 - 176155] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:53,648 [main] TRACE AbstractWordWriter - replacing hyperlink [176215 - 176236] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:53,707 [main] TRACE AbstractWordWriter - replacing hyperlink [176291 - 176324] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:53,765 [main] TRACE AbstractWordWriter - replacing hyperlink [176390 - 176411] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:53,830 [main] TRACE AbstractWordWriter - replacing hyperlink [176466 - 176499] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:53,891 [main] TRACE AbstractWordWriter - replacing hyperlink [176559 - 176580] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:53,951 [main] TRACE AbstractWordWriter - replacing hyperlink [176635 - 176668] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:54,008 [main] TRACE AbstractWordWriter - replacing hyperlink [176725 - 176746] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:54,064 [main] TRACE AbstractWordWriter - replacing hyperlink [176801 - 176834] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:54,148 [main] TRACE AbstractWordWriter - replacing hyperlink [176894 - 176915] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:54,216 [main] TRACE AbstractWordWriter - replacing hyperlink [176970 - 177003] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:54,273 [main] TRACE AbstractWordWriter - replacing hyperlink [177067 - 177088] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:54,336 [main] TRACE AbstractWordWriter - replacing hyperlink [177143 - 177176] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:54,399 [main] TRACE AbstractWordWriter - replacing hyperlink [177236 - 177257] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:54,457 [main] TRACE AbstractWordWriter - replacing hyperlink [177312 - 177345] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:54,519 [main] TRACE AbstractWordWriter - replacing hyperlink [177406 - 177427] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:54,585 [main] TRACE AbstractWordWriter - replacing hyperlink [177482 - 177515] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:54,642 [main] TRACE AbstractWordWriter - replacing hyperlink [177571 - 177592] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:54,696 [main] TRACE AbstractWordWriter - replacing hyperlink [177647 - 177680] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:54,752 [main] TRACE AbstractWordWriter - replacing hyperlink [177738 - 177759] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:54,809 [main] TRACE AbstractWordWriter - replacing hyperlink [177814 - 177847] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:54,876 [main] TRACE AbstractWordWriter - replacing hyperlink [177904 - 177925] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:54,939 [main] TRACE AbstractWordWriter - replacing hyperlink [177980 - 178013] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:55,002 [main] TRACE AbstractWordWriter - replacing hyperlink [178075 - 178096] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:55,060 [main] TRACE AbstractWordWriter - replacing hyperlink [178151 - 178184] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:55,116 [main] TRACE AbstractWordWriter - replacing hyperlink [178256 - 178277] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:55,174 [main] TRACE AbstractWordWriter - replacing hyperlink [178332 - 178365] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:55,234 [main] TRACE AbstractWordWriter - replacing hyperlink [178425 - 178446] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:55,298 [main] TRACE AbstractWordWriter - replacing hyperlink [178501 - 178534] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:55,359 [main] TRACE AbstractWordWriter - replacing hyperlink [178594 - 178615] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:55,424 [main] TRACE AbstractWordWriter - replacing hyperlink [178670 - 178703] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:55,481 [main] TRACE AbstractWordWriter - replacing hyperlink [178769 - 178790] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:55,543 [main] TRACE AbstractWordWriter - replacing hyperlink [178845 - 178878] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:55,605 [main] TRACE AbstractWordWriter - replacing hyperlink [178941 - 178962] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:55,672 [main] TRACE AbstractWordWriter - replacing hyperlink [179017 - 179050] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:55,736 [main] TRACE AbstractWordWriter - replacing hyperlink [179109 - 179130] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:55,794 [main] TRACE AbstractWordWriter - replacing hyperlink [179185 - 179218] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:55,850 [main] TRACE AbstractWordWriter - replacing hyperlink [179272 - 179293] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:55,903 [main] TRACE AbstractWordWriter - replacing hyperlink [179348 - 179381] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:55,968 [main] TRACE AbstractWordWriter - replacing hyperlink [179442 - 179463] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:56,037 [main] TRACE AbstractWordWriter - replacing hyperlink [179518 - 179551] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:56,106 [main] TRACE AbstractWordWriter - replacing hyperlink [179612 - 179633] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:56,161 [main] TRACE AbstractWordWriter - replacing hyperlink [179688 - 179721] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:56,219 [main] TRACE AbstractWordWriter - replacing hyperlink [179784 - 179805] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:56,281 [main] TRACE AbstractWordWriter - replacing hyperlink [179860 - 179893] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:56,341 [main] TRACE AbstractWordWriter - replacing hyperlink [179960 - 179981] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:56,400 [main] TRACE AbstractWordWriter - replacing hyperlink [180036 - 180069] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:56,458 [main] TRACE AbstractWordWriter - replacing hyperlink [180129 - 180150] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:56,515 [main] TRACE AbstractWordWriter - replacing hyperlink [180205 - 180238] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:56,580 [main] TRACE AbstractWordWriter - replacing hyperlink [180305 - 180326] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:56,641 [main] TRACE AbstractWordWriter - replacing hyperlink [180381 - 180414] HYPERLINK IEC62351-3ed2security, UML90... +2024-09-08 08:30:56,704 [main] TRACE AbstractWordWriter - replacing hyperlink [182541 - 182562] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:56,770 [main] TRACE AbstractWordWriter - replacing hyperlink [182667 - 182688] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:56,827 [main] TRACE AbstractWordWriter - replacing hyperlink [182822 - 182843] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:56,891 [main] TRACE AbstractWordWriter - replacing hyperlink [182943 - 182964] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:56,956 [main] TRACE AbstractWordWriter - replacing hyperlink [183087 - 183108] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:57,012 [main] TRACE AbstractWordWriter - replacing hyperlink [183210 - 183231] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:57,069 [main] TRACE AbstractWordWriter - replacing hyperlink [183333 - 183354] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:57,124 [main] TRACE AbstractWordWriter - replacing hyperlink [183456 - 183477] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:57,183 [main] TRACE AbstractWordWriter - replacing hyperlink [183573 - 183594] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:57,246 [main] TRACE AbstractWordWriter - replacing hyperlink [183688 - 183709] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:57,307 [main] TRACE AbstractWordWriter - replacing hyperlink [183831 - 183851] HYPERLINK Floating, UML56... +2024-09-08 08:30:57,365 [main] TRACE AbstractWordWriter - replacing hyperlink [183938 - 183959] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:57,428 [main] TRACE AbstractWordWriter - replacing hyperlink [184071 - 184092] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:57,486 [main] TRACE AbstractWordWriter - replacing hyperlink [184171 - 184192] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:57,554 [main] TRACE AbstractWordWriter - replacing hyperlink [184316 - 184336] HYPERLINK Floating, UML56... +2024-09-08 08:30:57,612 [main] TRACE AbstractWordWriter - replacing hyperlink [184410 - 184431] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:57,673 [main] TRACE AbstractWordWriter - replacing hyperlink [184524 - 184545] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:57,739 [main] TRACE AbstractWordWriter - replacing hyperlink [184718 - 184744] HYPERLINK BooleanValueTs, UML54... +2024-09-08 08:30:57,805 [main] TRACE AbstractWordWriter - replacing hyperlink [184897 - 184918] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:57,864 [main] TRACE AbstractWordWriter - replacing hyperlink [185053 - 185074] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:57,924 [main] TRACE AbstractWordWriter - replacing hyperlink [185165 - 185186] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:57,987 [main] TRACE AbstractWordWriter - replacing hyperlink [185299 - 185320] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:58,051 [main] TRACE AbstractWordWriter - replacing hyperlink [185428 - 185449] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:58,113 [main] TRACE AbstractWordWriter - replacing hyperlink [185561 - 185582] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:58,171 [main] TRACE AbstractWordWriter - replacing hyperlink [185741 - 185762] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:58,230 [main] TRACE AbstractWordWriter - replacing hyperlink [185863 - 185884] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:58,289 [main] TRACE AbstractWordWriter - replacing hyperlink [185999 - 186020] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:58,343 [main] TRACE AbstractWordWriter - replacing hyperlink [186105 - 186126] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:58,412 [main] TRACE AbstractWordWriter - replacing hyperlink [186241 - 186262] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:58,468 [main] TRACE AbstractWordWriter - replacing hyperlink [186419 - 186440] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:58,524 [main] TRACE AbstractWordWriter - replacing hyperlink [187010 - 187033] HYPERLINK EntityIndex, UML66... +2024-09-08 08:30:58,583 [main] TRACE AbstractWordWriter - replacing hyperlink [187103 - 187120] HYPERLINK CntRs, UML67... +2024-09-08 08:30:58,639 [main] TRACE AbstractWordWriter - replacing hyperlink [187201 - 187224] HYPERLINK InetAddress, UML65... +2024-09-08 08:30:58,699 [main] TRACE AbstractWordWriter - replacing hyperlink [187298 - 187325] HYPERLINK InetAddressType, UML64... +2024-09-08 08:30:58,762 [main] TRACE AbstractWordWriter - replacing hyperlink [187400 - 187422] HYPERLINK ProtIdType, UML74... +2024-09-08 08:30:58,830 [main] TRACE AbstractWordWriter - replacing hyperlink [187498 - 187520] HYPERLINK CharString, UML59... +2024-09-08 08:30:58,891 [main] TRACE AbstractWordWriter - replacing hyperlink [187628 - 187650] HYPERLINK CharString, UML59... +2024-09-08 08:30:58,955 [main] TRACE AbstractWordWriter - replacing hyperlink [187780 - 187803] HYPERLINK InetAddress, UML65... +2024-09-08 08:30:59,017 [main] TRACE AbstractWordWriter - replacing hyperlink [187878 - 187905] HYPERLINK InetAddressType, UML64... +2024-09-08 08:30:59,074 [main] TRACE AbstractWordWriter - replacing hyperlink [187985 - 188006] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:59,137 [main] TRACE AbstractWordWriter - replacing hyperlink [188099 - 188118] HYPERLINK LnkType, UML78... +2024-09-08 08:30:59,191 [main] TRACE AbstractWordWriter - replacing hyperlink [188204 - 188225] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:59,253 [main] TRACE AbstractWordWriter - replacing hyperlink [188280 - 188315] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:30:59,318 [main] TRACE AbstractWordWriter - replacing hyperlink [188376 - 188397] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:59,378 [main] TRACE AbstractWordWriter - replacing hyperlink [188452 - 188487] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:30:59,441 [main] TRACE AbstractWordWriter - replacing hyperlink [188547 - 188568] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:59,505 [main] TRACE AbstractWordWriter - replacing hyperlink [188623 - 188658] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:30:59,571 [main] TRACE AbstractWordWriter - replacing hyperlink [188711 - 188732] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:59,637 [main] TRACE AbstractWordWriter - replacing hyperlink [188787 - 188822] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:30:59,703 [main] TRACE AbstractWordWriter - replacing hyperlink [188875 - 188896] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:59,766 [main] TRACE AbstractWordWriter - replacing hyperlink [188951 - 188986] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:30:59,827 [main] TRACE AbstractWordWriter - replacing hyperlink [189039 - 189060] HYPERLINK CounterTs, UML55... +2024-09-08 08:30:59,900 [main] TRACE AbstractWordWriter - replacing hyperlink [189115 - 189150] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:30:59,964 [main] TRACE AbstractWordWriter - replacing hyperlink [189203 - 189224] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:00,034 [main] TRACE AbstractWordWriter - replacing hyperlink [189279 - 189314] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:00,093 [main] TRACE AbstractWordWriter - replacing hyperlink [189366 - 189387] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:00,155 [main] TRACE AbstractWordWriter - replacing hyperlink [189442 - 189477] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:00,218 [main] TRACE AbstractWordWriter - replacing hyperlink [189531 - 189552] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:00,279 [main] TRACE AbstractWordWriter - replacing hyperlink [189607 - 189642] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:00,342 [main] TRACE AbstractWordWriter - replacing hyperlink [189695 - 189716] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:00,401 [main] TRACE AbstractWordWriter - replacing hyperlink [189771 - 189806] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:00,470 [main] TRACE AbstractWordWriter - replacing hyperlink [189864 - 189884] HYPERLINK Floating, UML56... +2024-09-08 08:31:00,525 [main] TRACE AbstractWordWriter - replacing hyperlink [189938 - 189973] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:00,595 [main] TRACE AbstractWordWriter - replacing hyperlink [190028 - 190049] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:00,652 [main] TRACE AbstractWordWriter - replacing hyperlink [190104 - 190139] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:00,713 [main] TRACE AbstractWordWriter - replacing hyperlink [190191 - 190212] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:00,774 [main] TRACE AbstractWordWriter - replacing hyperlink [190267 - 190302] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:00,838 [main] TRACE AbstractWordWriter - replacing hyperlink [190353 - 190374] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:00,896 [main] TRACE AbstractWordWriter - replacing hyperlink [190429 - 190464] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:00,962 [main] TRACE AbstractWordWriter - replacing hyperlink [190516 - 190536] HYPERLINK Floating, UML56... +2024-09-08 08:31:01,028 [main] TRACE AbstractWordWriter - replacing hyperlink [190590 - 190625] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:01,096 [main] TRACE AbstractWordWriter - replacing hyperlink [190682 - 190703] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:01,153 [main] TRACE AbstractWordWriter - replacing hyperlink [190758 - 190793] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:01,213 [main] TRACE AbstractWordWriter - replacing hyperlink [190849 - 190870] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:01,273 [main] TRACE AbstractWordWriter - replacing hyperlink [190925 - 190960] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:01,338 [main] TRACE AbstractWordWriter - replacing hyperlink [191022 - 191048] HYPERLINK BooleanValueTs, UML54... +2024-09-08 08:31:01,395 [main] TRACE AbstractWordWriter - replacing hyperlink [191108 - 191143] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:01,454 [main] TRACE AbstractWordWriter - replacing hyperlink [191200 - 191221] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:01,523 [main] TRACE AbstractWordWriter - replacing hyperlink [191276 - 191311] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:01,584 [main] TRACE AbstractWordWriter - replacing hyperlink [191363 - 191384] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:01,650 [main] TRACE AbstractWordWriter - replacing hyperlink [191439 - 191474] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:01,707 [main] TRACE AbstractWordWriter - replacing hyperlink [191530 - 191551] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:01,771 [main] TRACE AbstractWordWriter - replacing hyperlink [191606 - 191641] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:01,830 [main] TRACE AbstractWordWriter - replacing hyperlink [191692 - 191713] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:01,890 [main] TRACE AbstractWordWriter - replacing hyperlink [191768 - 191803] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:01,953 [main] TRACE AbstractWordWriter - replacing hyperlink [191863 - 191884] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:02,023 [main] TRACE AbstractWordWriter - replacing hyperlink [191939 - 191974] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:02,098 [main] TRACE AbstractWordWriter - replacing hyperlink [192036 - 192057] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:02,162 [main] TRACE AbstractWordWriter - replacing hyperlink [192112 - 192147] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:02,222 [main] TRACE AbstractWordWriter - replacing hyperlink [192207 - 192228] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:02,283 [main] TRACE AbstractWordWriter - replacing hyperlink [192283 - 192318] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:02,346 [main] TRACE AbstractWordWriter - replacing hyperlink [192374 - 192395] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:02,401 [main] TRACE AbstractWordWriter - replacing hyperlink [192450 - 192485] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:02,469 [main] TRACE AbstractWordWriter - replacing hyperlink [192536 - 192557] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:02,532 [main] TRACE AbstractWordWriter - replacing hyperlink [192612 - 192647] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:02,589 [main] TRACE AbstractWordWriter - replacing hyperlink [192707 - 192728] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:02,651 [main] TRACE AbstractWordWriter - replacing hyperlink [192783 - 192818] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:02,717 [main] TRACE AbstractWordWriter - replacing hyperlink [192880 - 192901] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:02,782 [main] TRACE AbstractWordWriter - replacing hyperlink [192956 - 192991] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:02,851 [main] TRACE AbstractWordWriter - replacing hyperlink [193049 - 193070] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:02,911 [main] TRACE AbstractWordWriter - replacing hyperlink [193125 - 193160] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:02,980 [main] TRACE AbstractWordWriter - replacing hyperlink [193219 - 193243] HYPERLINK BooleanValue, UML52... +2024-09-08 08:31:03,038 [main] TRACE AbstractWordWriter - replacing hyperlink [193301 - 193331] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:03,103 [main] TRACE AbstractWordWriter - replacing hyperlink [193389 - 193408] HYPERLINK Integer, UML53... +2024-09-08 08:31:03,163 [main] TRACE AbstractWordWriter - replacing hyperlink [193461 - 193491] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:03,222 [main] TRACE AbstractWordWriter - replacing hyperlink [193544 - 193564] HYPERLINK Floating, UML56... +2024-09-08 08:31:03,281 [main] TRACE AbstractWordWriter - replacing hyperlink [193621 - 193651] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:03,354 [main] TRACE AbstractWordWriter - replacing hyperlink [193702 - 193722] HYPERLINK Floating, UML56... +2024-09-08 08:31:03,417 [main] TRACE AbstractWordWriter - replacing hyperlink [193779 - 193809] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:03,476 [main] TRACE AbstractWordWriter - replacing hyperlink [193870 - 193890] HYPERLINK Floating, UML56... +2024-09-08 08:31:03,536 [main] TRACE AbstractWordWriter - replacing hyperlink [193947 - 193977] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:03,591 [main] TRACE AbstractWordWriter - replacing hyperlink [194035 - 194055] HYPERLINK Floating, UML56... +2024-09-08 08:31:03,653 [main] TRACE AbstractWordWriter - replacing hyperlink [194112 - 194142] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:03,711 [main] TRACE AbstractWordWriter - replacing hyperlink [194195 - 194215] HYPERLINK Floating, UML56... +2024-09-08 08:31:03,771 [main] TRACE AbstractWordWriter - replacing hyperlink [194272 - 194302] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:03,841 [main] TRACE AbstractWordWriter - replacing hyperlink [194359 - 194379] HYPERLINK Floating, UML56... +2024-09-08 08:31:03,904 [main] TRACE AbstractWordWriter - replacing hyperlink [194436 - 194466] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:03,968 [main] TRACE AbstractWordWriter - replacing hyperlink [194894 - 194911] HYPERLINK CntRs, UML67... +2024-09-08 08:31:04,035 [main] TRACE AbstractWordWriter - replacing hyperlink [194991 - 195012] HYPERLINK EventType, UML72... +2024-09-08 08:31:04,100 [main] TRACE AbstractWordWriter - replacing hyperlink [195128 - 195157] HYPERLINK MasterAssociation, UML96... +2024-09-08 08:31:04,167 [main] TRACE AbstractWordWriter - replacing hyperlink [195255 - 195288] HYPERLINK OutstationAssociation, UML97... +2024-09-08 08:31:04,226 [main] TRACE AbstractWordWriter - replacing hyperlink [195397 - 195441] HYPERLINK 60870andDNPSecurityNotification, UML108... +2024-09-08 08:31:04,284 [main] TRACE AbstractWordWriter - replacing hyperlink [195555 - 195591] HYPERLINK 60870andDNPNotification, UML109... +2024-09-08 08:31:04,348 [main] TRACE AbstractWordWriter - replacing hyperlink [195688 - 195709] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:04,416 [main] TRACE AbstractWordWriter - replacing hyperlink [195764 - 195799] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:04,485 [main] TRACE AbstractWordWriter - replacing hyperlink [195860 - 195881] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:04,550 [main] TRACE AbstractWordWriter - replacing hyperlink [195936 - 195971] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:04,611 [main] TRACE AbstractWordWriter - replacing hyperlink [196031 - 196052] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:04,667 [main] TRACE AbstractWordWriter - replacing hyperlink [196107 - 196142] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:04,726 [main] TRACE AbstractWordWriter - replacing hyperlink [196195 - 196216] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:04,792 [main] TRACE AbstractWordWriter - replacing hyperlink [196271 - 196306] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:04,858 [main] TRACE AbstractWordWriter - replacing hyperlink [196359 - 196380] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:04,920 [main] TRACE AbstractWordWriter - replacing hyperlink [196435 - 196470] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:04,983 [main] TRACE AbstractWordWriter - replacing hyperlink [196523 - 196544] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:05,046 [main] TRACE AbstractWordWriter - replacing hyperlink [196599 - 196634] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:05,102 [main] TRACE AbstractWordWriter - replacing hyperlink [196687 - 196708] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:05,159 [main] TRACE AbstractWordWriter - replacing hyperlink [196763 - 196798] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:05,222 [main] TRACE AbstractWordWriter - replacing hyperlink [196850 - 196871] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:05,287 [main] TRACE AbstractWordWriter - replacing hyperlink [196926 - 196961] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:05,346 [main] TRACE AbstractWordWriter - replacing hyperlink [197015 - 197036] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:05,418 [main] TRACE AbstractWordWriter - replacing hyperlink [197091 - 197126] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:05,480 [main] TRACE AbstractWordWriter - replacing hyperlink [197179 - 197200] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:05,543 [main] TRACE AbstractWordWriter - replacing hyperlink [197255 - 197290] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:05,602 [main] TRACE AbstractWordWriter - replacing hyperlink [197348 - 197368] HYPERLINK Floating, UML56... +2024-09-08 08:31:05,667 [main] TRACE AbstractWordWriter - replacing hyperlink [197422 - 197457] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:05,728 [main] TRACE AbstractWordWriter - replacing hyperlink [197512 - 197533] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:05,788 [main] TRACE AbstractWordWriter - replacing hyperlink [197588 - 197623] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:05,849 [main] TRACE AbstractWordWriter - replacing hyperlink [197675 - 197696] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:05,908 [main] TRACE AbstractWordWriter - replacing hyperlink [197751 - 197786] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:05,970 [main] TRACE AbstractWordWriter - replacing hyperlink [197837 - 197858] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:06,031 [main] TRACE AbstractWordWriter - replacing hyperlink [197913 - 197948] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:06,090 [main] TRACE AbstractWordWriter - replacing hyperlink [198000 - 198020] HYPERLINK Floating, UML56... +2024-09-08 08:31:06,150 [main] TRACE AbstractWordWriter - replacing hyperlink [198074 - 198109] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:06,214 [main] TRACE AbstractWordWriter - replacing hyperlink [198166 - 198187] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:06,277 [main] TRACE AbstractWordWriter - replacing hyperlink [198242 - 198277] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:06,347 [main] TRACE AbstractWordWriter - replacing hyperlink [198333 - 198354] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:06,414 [main] TRACE AbstractWordWriter - replacing hyperlink [198409 - 198444] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:06,482 [main] TRACE AbstractWordWriter - replacing hyperlink [198506 - 198532] HYPERLINK BooleanValueTs, UML54... +2024-09-08 08:31:06,543 [main] TRACE AbstractWordWriter - replacing hyperlink [198592 - 198627] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:06,602 [main] TRACE AbstractWordWriter - replacing hyperlink [198684 - 198705] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:06,665 [main] TRACE AbstractWordWriter - replacing hyperlink [198760 - 198795] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:06,728 [main] TRACE AbstractWordWriter - replacing hyperlink [198847 - 198868] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:06,790 [main] TRACE AbstractWordWriter - replacing hyperlink [198923 - 198958] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:06,855 [main] TRACE AbstractWordWriter - replacing hyperlink [199014 - 199035] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:06,917 [main] TRACE AbstractWordWriter - replacing hyperlink [199090 - 199125] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:06,978 [main] TRACE AbstractWordWriter - replacing hyperlink [199176 - 199197] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:07,042 [main] TRACE AbstractWordWriter - replacing hyperlink [199252 - 199287] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:07,101 [main] TRACE AbstractWordWriter - replacing hyperlink [199347 - 199368] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:07,166 [main] TRACE AbstractWordWriter - replacing hyperlink [199423 - 199458] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:07,230 [main] TRACE AbstractWordWriter - replacing hyperlink [199520 - 199541] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:07,295 [main] TRACE AbstractWordWriter - replacing hyperlink [199596 - 199631] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:07,359 [main] TRACE AbstractWordWriter - replacing hyperlink [199691 - 199712] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:07,428 [main] TRACE AbstractWordWriter - replacing hyperlink [199767 - 199802] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:07,494 [main] TRACE AbstractWordWriter - replacing hyperlink [199858 - 199879] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:07,561 [main] TRACE AbstractWordWriter - replacing hyperlink [199934 - 199969] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:07,620 [main] TRACE AbstractWordWriter - replacing hyperlink [200020 - 200041] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:07,679 [main] TRACE AbstractWordWriter - replacing hyperlink [200096 - 200131] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:07,744 [main] TRACE AbstractWordWriter - replacing hyperlink [200191 - 200212] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:07,805 [main] TRACE AbstractWordWriter - replacing hyperlink [200267 - 200302] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:07,872 [main] TRACE AbstractWordWriter - replacing hyperlink [200364 - 200385] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:07,938 [main] TRACE AbstractWordWriter - replacing hyperlink [200440 - 200475] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:07,997 [main] TRACE AbstractWordWriter - replacing hyperlink [200533 - 200554] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:08,059 [main] TRACE AbstractWordWriter - replacing hyperlink [200609 - 200644] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:08,120 [main] TRACE AbstractWordWriter - replacing hyperlink [201138 - 201159] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:08,181 [main] TRACE AbstractWordWriter - replacing hyperlink [201264 - 201285] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:08,241 [main] TRACE AbstractWordWriter - replacing hyperlink [201419 - 201440] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:08,305 [main] TRACE AbstractWordWriter - replacing hyperlink [201542 - 201563] HYPERLINK EventType, UML72... +2024-09-08 08:31:08,370 [main] TRACE AbstractWordWriter - replacing hyperlink [201680 - 201701] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:08,428 [main] TRACE AbstractWordWriter - replacing hyperlink [201869 - 201890] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:08,498 [main] TRACE AbstractWordWriter - replacing hyperlink [202033 - 202054] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:08,560 [main] TRACE AbstractWordWriter - replacing hyperlink [202157 - 202178] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:08,628 [main] TRACE AbstractWordWriter - replacing hyperlink [202680 - 202701] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:08,692 [main] TRACE AbstractWordWriter - replacing hyperlink [202795 - 202816] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:08,752 [main] TRACE AbstractWordWriter - replacing hyperlink [202931 - 202952] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:08,813 [main] TRACE AbstractWordWriter - replacing hyperlink [203075 - 203096] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:08,878 [main] TRACE AbstractWordWriter - replacing hyperlink [203169 - 203190] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:08,940 [main] TRACE AbstractWordWriter - replacing hyperlink [203598 - 203621] HYPERLINK EntityIndex, UML66... +2024-09-08 08:31:09,007 [main] TRACE AbstractWordWriter - replacing hyperlink [203675 - 203698] HYPERLINK Association, UML95... +2024-09-08 08:31:09,068 [main] TRACE AbstractWordWriter - replacing hyperlink [203737 - 203754] HYPERLINK CntRs, UML67... +2024-09-08 08:31:09,142 [main] TRACE AbstractWordWriter - replacing hyperlink [203805 - 203828] HYPERLINK Association, UML95... +2024-09-08 08:31:09,207 [main] TRACE AbstractWordWriter - replacing hyperlink [203872 - 203895] HYPERLINK InetAddress, UML65... +2024-09-08 08:31:09,265 [main] TRACE AbstractWordWriter - replacing hyperlink [203952 - 203975] HYPERLINK Association, UML95... +2024-09-08 08:31:09,322 [main] TRACE AbstractWordWriter - replacing hyperlink [204023 - 204050] HYPERLINK InetAddressType, UML64... +2024-09-08 08:31:09,384 [main] TRACE AbstractWordWriter - replacing hyperlink [204111 - 204134] HYPERLINK Association, UML95... +2024-09-08 08:31:09,443 [main] TRACE AbstractWordWriter - replacing hyperlink [204174 - 204196] HYPERLINK ProtIdType, UML74... +2024-09-08 08:31:09,501 [main] TRACE AbstractWordWriter - replacing hyperlink [204252 - 204275] HYPERLINK Association, UML95... +2024-09-08 08:31:09,568 [main] TRACE AbstractWordWriter - replacing hyperlink [204321 - 204343] HYPERLINK CharString, UML59... +2024-09-08 08:31:09,634 [main] TRACE AbstractWordWriter - replacing hyperlink [204399 - 204422] HYPERLINK Association, UML95... +2024-09-08 08:31:09,692 [main] TRACE AbstractWordWriter - replacing hyperlink [204468 - 204490] HYPERLINK CharString, UML59... +2024-09-08 08:31:09,756 [main] TRACE AbstractWordWriter - replacing hyperlink [204546 - 204569] HYPERLINK Association, UML95... +2024-09-08 08:31:09,815 [main] TRACE AbstractWordWriter - replacing hyperlink [204613 - 204636] HYPERLINK InetAddress, UML65... +2024-09-08 08:31:09,873 [main] TRACE AbstractWordWriter - replacing hyperlink [204693 - 204716] HYPERLINK Association, UML95... +2024-09-08 08:31:09,931 [main] TRACE AbstractWordWriter - replacing hyperlink [204764 - 204791] HYPERLINK InetAddressType, UML64... +2024-09-08 08:31:09,991 [main] TRACE AbstractWordWriter - replacing hyperlink [204852 - 204875] HYPERLINK Association, UML95... +2024-09-08 08:31:10,060 [main] TRACE AbstractWordWriter - replacing hyperlink [204919 - 204940] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:10,126 [main] TRACE AbstractWordWriter - replacing hyperlink [204993 - 205016] HYPERLINK Association, UML95... +2024-09-08 08:31:10,187 [main] TRACE AbstractWordWriter - replacing hyperlink [205057 - 205076] HYPERLINK LnkType, UML78... +2024-09-08 08:31:10,247 [main] TRACE AbstractWordWriter - replacing hyperlink [205129 - 205152] HYPERLINK Association, UML95... +2024-09-08 08:31:10,313 [main] TRACE AbstractWordWriter - replacing hyperlink [205197 - 205218] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:10,370 [main] TRACE AbstractWordWriter - replacing hyperlink [205273 - 205308] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:10,433 [main] TRACE AbstractWordWriter - replacing hyperlink [205369 - 205390] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:10,497 [main] TRACE AbstractWordWriter - replacing hyperlink [205445 - 205480] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:10,559 [main] TRACE AbstractWordWriter - replacing hyperlink [205540 - 205561] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:10,628 [main] TRACE AbstractWordWriter - replacing hyperlink [205616 - 205651] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:10,694 [main] TRACE AbstractWordWriter - replacing hyperlink [205704 - 205725] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:10,752 [main] TRACE AbstractWordWriter - replacing hyperlink [205780 - 205815] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:10,814 [main] TRACE AbstractWordWriter - replacing hyperlink [205868 - 205889] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:10,883 [main] TRACE AbstractWordWriter - replacing hyperlink [205944 - 205979] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:10,946 [main] TRACE AbstractWordWriter - replacing hyperlink [206032 - 206053] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:11,012 [main] TRACE AbstractWordWriter - replacing hyperlink [206108 - 206143] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:11,073 [main] TRACE AbstractWordWriter - replacing hyperlink [206196 - 206217] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:11,142 [main] TRACE AbstractWordWriter - replacing hyperlink [206272 - 206307] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:11,211 [main] TRACE AbstractWordWriter - replacing hyperlink [206359 - 206380] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:11,272 [main] TRACE AbstractWordWriter - replacing hyperlink [206435 - 206470] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:11,333 [main] TRACE AbstractWordWriter - replacing hyperlink [206524 - 206545] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:11,399 [main] TRACE AbstractWordWriter - replacing hyperlink [206600 - 206635] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:11,462 [main] TRACE AbstractWordWriter - replacing hyperlink [206688 - 206709] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:11,521 [main] TRACE AbstractWordWriter - replacing hyperlink [206764 - 206799] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:11,578 [main] TRACE AbstractWordWriter - replacing hyperlink [206857 - 206877] HYPERLINK Floating, UML56... +2024-09-08 08:31:11,640 [main] TRACE AbstractWordWriter - replacing hyperlink [206931 - 206966] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:11,708 [main] TRACE AbstractWordWriter - replacing hyperlink [207021 - 207042] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:11,768 [main] TRACE AbstractWordWriter - replacing hyperlink [207097 - 207132] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:11,832 [main] TRACE AbstractWordWriter - replacing hyperlink [207184 - 207205] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:11,895 [main] TRACE AbstractWordWriter - replacing hyperlink [207260 - 207295] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:11,953 [main] TRACE AbstractWordWriter - replacing hyperlink [207346 - 207367] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:12,017 [main] TRACE AbstractWordWriter - replacing hyperlink [207422 - 207457] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:12,079 [main] TRACE AbstractWordWriter - replacing hyperlink [207509 - 207529] HYPERLINK Floating, UML56... +2024-09-08 08:31:12,142 [main] TRACE AbstractWordWriter - replacing hyperlink [207583 - 207618] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:12,202 [main] TRACE AbstractWordWriter - replacing hyperlink [207675 - 207696] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:12,262 [main] TRACE AbstractWordWriter - replacing hyperlink [207751 - 207786] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:12,325 [main] TRACE AbstractWordWriter - replacing hyperlink [207842 - 207863] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:12,393 [main] TRACE AbstractWordWriter - replacing hyperlink [207918 - 207953] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:12,455 [main] TRACE AbstractWordWriter - replacing hyperlink [208015 - 208041] HYPERLINK BooleanValueTs, UML54... +2024-09-08 08:31:12,527 [main] TRACE AbstractWordWriter - replacing hyperlink [208101 - 208136] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:12,586 [main] TRACE AbstractWordWriter - replacing hyperlink [208193 - 208214] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:12,641 [main] TRACE AbstractWordWriter - replacing hyperlink [208269 - 208304] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:12,705 [main] TRACE AbstractWordWriter - replacing hyperlink [208356 - 208377] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:12,769 [main] TRACE AbstractWordWriter - replacing hyperlink [208432 - 208467] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:12,834 [main] TRACE AbstractWordWriter - replacing hyperlink [208523 - 208544] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:12,896 [main] TRACE AbstractWordWriter - replacing hyperlink [208599 - 208634] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:12,952 [main] TRACE AbstractWordWriter - replacing hyperlink [208685 - 208706] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:13,015 [main] TRACE AbstractWordWriter - replacing hyperlink [208761 - 208796] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:13,073 [main] TRACE AbstractWordWriter - replacing hyperlink [208856 - 208877] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:13,143 [main] TRACE AbstractWordWriter - replacing hyperlink [208932 - 208967] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:13,205 [main] TRACE AbstractWordWriter - replacing hyperlink [209029 - 209050] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:13,275 [main] TRACE AbstractWordWriter - replacing hyperlink [209105 - 209140] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:13,331 [main] TRACE AbstractWordWriter - replacing hyperlink [209200 - 209221] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:13,392 [main] TRACE AbstractWordWriter - replacing hyperlink [209276 - 209311] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:13,453 [main] TRACE AbstractWordWriter - replacing hyperlink [209367 - 209388] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:13,513 [main] TRACE AbstractWordWriter - replacing hyperlink [209443 - 209478] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:13,570 [main] TRACE AbstractWordWriter - replacing hyperlink [209529 - 209550] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:13,631 [main] TRACE AbstractWordWriter - replacing hyperlink [209605 - 209640] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:13,698 [main] TRACE AbstractWordWriter - replacing hyperlink [209700 - 209721] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:13,768 [main] TRACE AbstractWordWriter - replacing hyperlink [209776 - 209811] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:13,832 [main] TRACE AbstractWordWriter - replacing hyperlink [209873 - 209894] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:13,897 [main] TRACE AbstractWordWriter - replacing hyperlink [209949 - 209984] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:13,962 [main] TRACE AbstractWordWriter - replacing hyperlink [210042 - 210063] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:14,031 [main] TRACE AbstractWordWriter - replacing hyperlink [210118 - 210153] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:14,096 [main] TRACE AbstractWordWriter - replacing hyperlink [210212 - 210236] HYPERLINK BooleanValue, UML52... +2024-09-08 08:31:14,174 [main] TRACE AbstractWordWriter - replacing hyperlink [210294 - 210324] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:14,240 [main] TRACE AbstractWordWriter - replacing hyperlink [210382 - 210401] HYPERLINK Integer, UML53... +2024-09-08 08:31:14,303 [main] TRACE AbstractWordWriter - replacing hyperlink [210454 - 210484] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:14,363 [main] TRACE AbstractWordWriter - replacing hyperlink [210537 - 210557] HYPERLINK Floating, UML56... +2024-09-08 08:31:14,425 [main] TRACE AbstractWordWriter - replacing hyperlink [210614 - 210644] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:14,490 [main] TRACE AbstractWordWriter - replacing hyperlink [210695 - 210715] HYPERLINK Floating, UML56... +2024-09-08 08:31:14,554 [main] TRACE AbstractWordWriter - replacing hyperlink [210772 - 210802] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:14,614 [main] TRACE AbstractWordWriter - replacing hyperlink [210863 - 210883] HYPERLINK Floating, UML56... +2024-09-08 08:31:14,680 [main] TRACE AbstractWordWriter - replacing hyperlink [210940 - 210970] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:14,749 [main] TRACE AbstractWordWriter - replacing hyperlink [211028 - 211048] HYPERLINK Floating, UML56... +2024-09-08 08:31:14,811 [main] TRACE AbstractWordWriter - replacing hyperlink [211105 - 211135] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:14,873 [main] TRACE AbstractWordWriter - replacing hyperlink [211188 - 211208] HYPERLINK Floating, UML56... +2024-09-08 08:31:14,944 [main] TRACE AbstractWordWriter - replacing hyperlink [211265 - 211295] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:15,002 [main] TRACE AbstractWordWriter - replacing hyperlink [211352 - 211372] HYPERLINK Floating, UML56... +2024-09-08 08:31:15,062 [main] TRACE AbstractWordWriter - replacing hyperlink [211429 - 211459] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:15,125 [main] TRACE AbstractWordWriter - replacing hyperlink [211857 - 211880] HYPERLINK EntityIndex, UML66... +2024-09-08 08:31:15,192 [main] TRACE AbstractWordWriter - replacing hyperlink [211934 - 211957] HYPERLINK Association, UML95... +2024-09-08 08:31:15,254 [main] TRACE AbstractWordWriter - replacing hyperlink [211996 - 212013] HYPERLINK CntRs, UML67... +2024-09-08 08:31:15,317 [main] TRACE AbstractWordWriter - replacing hyperlink [212064 - 212087] HYPERLINK Association, UML95... +2024-09-08 08:31:15,385 [main] TRACE AbstractWordWriter - replacing hyperlink [212131 - 212154] HYPERLINK InetAddress, UML65... +2024-09-08 08:31:15,445 [main] TRACE AbstractWordWriter - replacing hyperlink [212211 - 212234] HYPERLINK Association, UML95... +2024-09-08 08:31:15,509 [main] TRACE AbstractWordWriter - replacing hyperlink [212282 - 212309] HYPERLINK InetAddressType, UML64... +2024-09-08 08:31:15,566 [main] TRACE AbstractWordWriter - replacing hyperlink [212370 - 212393] HYPERLINK Association, UML95... +2024-09-08 08:31:15,626 [main] TRACE AbstractWordWriter - replacing hyperlink [212433 - 212455] HYPERLINK ProtIdType, UML74... +2024-09-08 08:31:15,687 [main] TRACE AbstractWordWriter - replacing hyperlink [212511 - 212534] HYPERLINK Association, UML95... +2024-09-08 08:31:15,752 [main] TRACE AbstractWordWriter - replacing hyperlink [212580 - 212602] HYPERLINK CharString, UML59... +2024-09-08 08:31:15,822 [main] TRACE AbstractWordWriter - replacing hyperlink [212658 - 212681] HYPERLINK Association, UML95... +2024-09-08 08:31:15,887 [main] TRACE AbstractWordWriter - replacing hyperlink [212727 - 212749] HYPERLINK CharString, UML59... +2024-09-08 08:31:15,949 [main] TRACE AbstractWordWriter - replacing hyperlink [212805 - 212828] HYPERLINK Association, UML95... +2024-09-08 08:31:16,023 [main] TRACE AbstractWordWriter - replacing hyperlink [212872 - 212895] HYPERLINK InetAddress, UML65... +2024-09-08 08:31:16,085 [main] TRACE AbstractWordWriter - replacing hyperlink [212952 - 212975] HYPERLINK Association, UML95... +2024-09-08 08:31:16,152 [main] TRACE AbstractWordWriter - replacing hyperlink [213023 - 213050] HYPERLINK InetAddressType, UML64... +2024-09-08 08:31:16,215 [main] TRACE AbstractWordWriter - replacing hyperlink [213111 - 213134] HYPERLINK Association, UML95... +2024-09-08 08:31:16,280 [main] TRACE AbstractWordWriter - replacing hyperlink [213178 - 213199] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:16,343 [main] TRACE AbstractWordWriter - replacing hyperlink [213252 - 213275] HYPERLINK Association, UML95... +2024-09-08 08:31:16,410 [main] TRACE AbstractWordWriter - replacing hyperlink [213316 - 213335] HYPERLINK LnkType, UML78... +2024-09-08 08:31:16,475 [main] TRACE AbstractWordWriter - replacing hyperlink [213388 - 213411] HYPERLINK Association, UML95... +2024-09-08 08:31:16,539 [main] TRACE AbstractWordWriter - replacing hyperlink [213456 - 213477] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:16,595 [main] TRACE AbstractWordWriter - replacing hyperlink [213532 - 213567] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:16,657 [main] TRACE AbstractWordWriter - replacing hyperlink [213628 - 213649] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:16,723 [main] TRACE AbstractWordWriter - replacing hyperlink [213704 - 213739] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:16,781 [main] TRACE AbstractWordWriter - replacing hyperlink [213799 - 213820] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:16,842 [main] TRACE AbstractWordWriter - replacing hyperlink [213875 - 213910] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:16,912 [main] TRACE AbstractWordWriter - replacing hyperlink [213963 - 213984] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:16,978 [main] TRACE AbstractWordWriter - replacing hyperlink [214039 - 214074] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:17,040 [main] TRACE AbstractWordWriter - replacing hyperlink [214127 - 214148] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:17,110 [main] TRACE AbstractWordWriter - replacing hyperlink [214203 - 214238] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:17,171 [main] TRACE AbstractWordWriter - replacing hyperlink [214291 - 214312] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:17,229 [main] TRACE AbstractWordWriter - replacing hyperlink [214367 - 214402] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:17,289 [main] TRACE AbstractWordWriter - replacing hyperlink [214455 - 214476] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:17,352 [main] TRACE AbstractWordWriter - replacing hyperlink [214531 - 214566] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:17,413 [main] TRACE AbstractWordWriter - replacing hyperlink [214618 - 214639] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:17,473 [main] TRACE AbstractWordWriter - replacing hyperlink [214694 - 214729] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:17,533 [main] TRACE AbstractWordWriter - replacing hyperlink [214783 - 214804] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:17,598 [main] TRACE AbstractWordWriter - replacing hyperlink [214859 - 214894] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:17,662 [main] TRACE AbstractWordWriter - replacing hyperlink [214947 - 214968] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:17,724 [main] TRACE AbstractWordWriter - replacing hyperlink [215023 - 215058] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:17,787 [main] TRACE AbstractWordWriter - replacing hyperlink [215116 - 215136] HYPERLINK Floating, UML56... +2024-09-08 08:31:17,852 [main] TRACE AbstractWordWriter - replacing hyperlink [215190 - 215225] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:17,910 [main] TRACE AbstractWordWriter - replacing hyperlink [215280 - 215301] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:17,975 [main] TRACE AbstractWordWriter - replacing hyperlink [215356 - 215391] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:18,037 [main] TRACE AbstractWordWriter - replacing hyperlink [215443 - 215464] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:18,105 [main] TRACE AbstractWordWriter - replacing hyperlink [215519 - 215554] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:18,177 [main] TRACE AbstractWordWriter - replacing hyperlink [215605 - 215626] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:18,246 [main] TRACE AbstractWordWriter - replacing hyperlink [215681 - 215716] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:18,319 [main] TRACE AbstractWordWriter - replacing hyperlink [215768 - 215788] HYPERLINK Floating, UML56... +2024-09-08 08:31:18,397 [main] TRACE AbstractWordWriter - replacing hyperlink [215842 - 215877] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:18,474 [main] TRACE AbstractWordWriter - replacing hyperlink [215934 - 215955] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:18,549 [main] TRACE AbstractWordWriter - replacing hyperlink [216010 - 216045] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:18,605 [main] TRACE AbstractWordWriter - replacing hyperlink [216101 - 216122] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:18,669 [main] TRACE AbstractWordWriter - replacing hyperlink [216177 - 216212] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:18,734 [main] TRACE AbstractWordWriter - replacing hyperlink [216274 - 216300] HYPERLINK BooleanValueTs, UML54... +2024-09-08 08:31:18,793 [main] TRACE AbstractWordWriter - replacing hyperlink [216360 - 216395] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:18,856 [main] TRACE AbstractWordWriter - replacing hyperlink [216452 - 216473] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:18,922 [main] TRACE AbstractWordWriter - replacing hyperlink [216528 - 216563] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:18,989 [main] TRACE AbstractWordWriter - replacing hyperlink [216615 - 216636] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:19,049 [main] TRACE AbstractWordWriter - replacing hyperlink [216691 - 216726] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:19,105 [main] TRACE AbstractWordWriter - replacing hyperlink [216782 - 216803] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:19,171 [main] TRACE AbstractWordWriter - replacing hyperlink [216858 - 216893] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:19,239 [main] TRACE AbstractWordWriter - replacing hyperlink [216944 - 216965] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:19,306 [main] TRACE AbstractWordWriter - replacing hyperlink [217020 - 217055] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:19,369 [main] TRACE AbstractWordWriter - replacing hyperlink [217115 - 217136] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:19,432 [main] TRACE AbstractWordWriter - replacing hyperlink [217191 - 217226] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:19,526 [main] TRACE AbstractWordWriter - replacing hyperlink [217288 - 217309] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:19,590 [main] TRACE AbstractWordWriter - replacing hyperlink [217364 - 217399] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:19,649 [main] TRACE AbstractWordWriter - replacing hyperlink [217459 - 217480] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:19,710 [main] TRACE AbstractWordWriter - replacing hyperlink [217535 - 217570] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:19,775 [main] TRACE AbstractWordWriter - replacing hyperlink [217626 - 217647] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:19,838 [main] TRACE AbstractWordWriter - replacing hyperlink [217702 - 217737] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:19,904 [main] TRACE AbstractWordWriter - replacing hyperlink [217788 - 217809] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:19,960 [main] TRACE AbstractWordWriter - replacing hyperlink [217864 - 217899] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:20,020 [main] TRACE AbstractWordWriter - replacing hyperlink [217959 - 217980] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:20,079 [main] TRACE AbstractWordWriter - replacing hyperlink [218035 - 218070] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:20,142 [main] TRACE AbstractWordWriter - replacing hyperlink [218132 - 218153] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:20,202 [main] TRACE AbstractWordWriter - replacing hyperlink [218208 - 218243] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:20,270 [main] TRACE AbstractWordWriter - replacing hyperlink [218301 - 218322] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:20,334 [main] TRACE AbstractWordWriter - replacing hyperlink [218377 - 218412] HYPERLINK 60870andDNPProtocolInfo, UML94... +2024-09-08 08:31:20,399 [main] TRACE AbstractWordWriter - replacing hyperlink [218471 - 218495] HYPERLINK BooleanValue, UML52... +2024-09-08 08:31:20,460 [main] TRACE AbstractWordWriter - replacing hyperlink [218553 - 218583] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:20,530 [main] TRACE AbstractWordWriter - replacing hyperlink [218641 - 218660] HYPERLINK Integer, UML53... +2024-09-08 08:31:20,593 [main] TRACE AbstractWordWriter - replacing hyperlink [218713 - 218743] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:20,658 [main] TRACE AbstractWordWriter - replacing hyperlink [218796 - 218816] HYPERLINK Floating, UML56... +2024-09-08 08:31:20,717 [main] TRACE AbstractWordWriter - replacing hyperlink [218873 - 218903] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:20,777 [main] TRACE AbstractWordWriter - replacing hyperlink [218954 - 218974] HYPERLINK Floating, UML56... +2024-09-08 08:31:20,843 [main] TRACE AbstractWordWriter - replacing hyperlink [219031 - 219061] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:20,911 [main] TRACE AbstractWordWriter - replacing hyperlink [219122 - 219142] HYPERLINK Floating, UML56... +2024-09-08 08:31:20,972 [main] TRACE AbstractWordWriter - replacing hyperlink [219199 - 219229] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:21,037 [main] TRACE AbstractWordWriter - replacing hyperlink [219287 - 219307] HYPERLINK Floating, UML56... +2024-09-08 08:31:21,101 [main] TRACE AbstractWordWriter - replacing hyperlink [219364 - 219394] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:21,164 [main] TRACE AbstractWordWriter - replacing hyperlink [219447 - 219467] HYPERLINK Floating, UML56... +2024-09-08 08:31:21,221 [main] TRACE AbstractWordWriter - replacing hyperlink [219524 - 219554] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:21,288 [main] TRACE AbstractWordWriter - replacing hyperlink [219611 - 219631] HYPERLINK Floating, UML56... +2024-09-08 08:31:21,358 [main] TRACE AbstractWordWriter - replacing hyperlink [219688 - 219718] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:21,418 [main] TRACE AbstractWordWriter - replacing hyperlink [221902 - 221923] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:21,479 [main] TRACE AbstractWordWriter - replacing hyperlink [222046 - 222067] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:21,545 [main] TRACE AbstractWordWriter - replacing hyperlink [222169 - 222190] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:21,610 [main] TRACE AbstractWordWriter - replacing hyperlink [222292 - 222313] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:21,675 [main] TRACE AbstractWordWriter - replacing hyperlink [222419 - 222440] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:21,736 [main] TRACE AbstractWordWriter - replacing hyperlink [222521 - 222542] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:21,800 [main] TRACE AbstractWordWriter - replacing hyperlink [222636 - 222657] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:21,863 [main] TRACE AbstractWordWriter - replacing hyperlink [222779 - 222799] HYPERLINK Floating, UML56... +2024-09-08 08:31:21,927 [main] TRACE AbstractWordWriter - replacing hyperlink [222886 - 222907] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:21,985 [main] TRACE AbstractWordWriter - replacing hyperlink [223019 - 223040] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:22,048 [main] TRACE AbstractWordWriter - replacing hyperlink [223119 - 223140] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:22,114 [main] TRACE AbstractWordWriter - replacing hyperlink [223269 - 223290] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:22,174 [main] TRACE AbstractWordWriter - replacing hyperlink [223379 - 223400] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:22,235 [main] TRACE AbstractWordWriter - replacing hyperlink [223489 - 223510] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:22,298 [main] TRACE AbstractWordWriter - replacing hyperlink [223621 - 223642] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:22,362 [main] TRACE AbstractWordWriter - replacing hyperlink [223754 - 223775] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:22,430 [main] TRACE AbstractWordWriter - replacing hyperlink [223928 - 223949] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:22,494 [main] TRACE AbstractWordWriter - replacing hyperlink [224034 - 224055] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:22,559 [main] TRACE AbstractWordWriter - replacing hyperlink [224170 - 224191] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:22,620 [main] TRACE AbstractWordWriter - replacing hyperlink [224350 - 224371] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:22,681 [main] TRACE AbstractWordWriter - replacing hyperlink [224426 - 224451] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:22,748 [main] TRACE AbstractWordWriter - replacing hyperlink [224502 - 224523] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:22,808 [main] TRACE AbstractWordWriter - replacing hyperlink [224578 - 224603] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:22,871 [main] TRACE AbstractWordWriter - replacing hyperlink [224653 - 224674] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:22,939 [main] TRACE AbstractWordWriter - replacing hyperlink [224729 - 224754] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:23,005 [main] TRACE AbstractWordWriter - replacing hyperlink [224810 - 224831] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:23,063 [main] TRACE AbstractWordWriter - replacing hyperlink [224886 - 224911] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:23,121 [main] TRACE AbstractWordWriter - replacing hyperlink [224968 - 224989] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:23,185 [main] TRACE AbstractWordWriter - replacing hyperlink [225044 - 225069] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:23,245 [main] TRACE AbstractWordWriter - replacing hyperlink [225126 - 225147] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:23,311 [main] TRACE AbstractWordWriter - replacing hyperlink [225202 - 225227] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:23,373 [main] TRACE AbstractWordWriter - replacing hyperlink [225277 - 225298] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:23,439 [main] TRACE AbstractWordWriter - replacing hyperlink [225353 - 225378] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:23,508 [main] TRACE AbstractWordWriter - replacing hyperlink [225428 - 225449] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:23,576 [main] TRACE AbstractWordWriter - replacing hyperlink [225504 - 225529] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:23,647 [main] TRACE AbstractWordWriter - replacing hyperlink [225578 - 225599] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:23,721 [main] TRACE AbstractWordWriter - replacing hyperlink [225654 - 225679] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:23,786 [main] TRACE AbstractWordWriter - replacing hyperlink [225730 - 225751] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:23,854 [main] TRACE AbstractWordWriter - replacing hyperlink [225806 - 225831] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:23,923 [main] TRACE AbstractWordWriter - replacing hyperlink [225882 - 225903] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:23,990 [main] TRACE AbstractWordWriter - replacing hyperlink [225958 - 225983] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:24,050 [main] TRACE AbstractWordWriter - replacing hyperlink [226038 - 226059] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:24,118 [main] TRACE AbstractWordWriter - replacing hyperlink [226114 - 226139] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:24,178 [main] TRACE AbstractWordWriter - replacing hyperlink [226194 - 226215] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:24,242 [main] TRACE AbstractWordWriter - replacing hyperlink [226270 - 226295] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:24,307 [main] TRACE AbstractWordWriter - replacing hyperlink [226348 - 226369] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:24,367 [main] TRACE AbstractWordWriter - replacing hyperlink [226424 - 226449] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:24,432 [main] TRACE AbstractWordWriter - replacing hyperlink [226502 - 226523] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:24,489 [main] TRACE AbstractWordWriter - replacing hyperlink [226578 - 226603] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:24,558 [main] TRACE AbstractWordWriter - replacing hyperlink [226656 - 226677] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:24,622 [main] TRACE AbstractWordWriter - replacing hyperlink [226732 - 226757] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:24,684 [main] TRACE AbstractWordWriter - replacing hyperlink [226810 - 226831] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:24,751 [main] TRACE AbstractWordWriter - replacing hyperlink [226886 - 226911] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:24,820 [main] TRACE AbstractWordWriter - replacing hyperlink [226967 - 226988] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:24,884 [main] TRACE AbstractWordWriter - replacing hyperlink [227043 - 227068] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:24,943 [main] TRACE AbstractWordWriter - replacing hyperlink [227124 - 227145] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:25,010 [main] TRACE AbstractWordWriter - replacing hyperlink [227200 - 227225] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:25,071 [main] TRACE AbstractWordWriter - replacing hyperlink [227275 - 227296] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:25,135 [main] TRACE AbstractWordWriter - replacing hyperlink [227351 - 227376] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:25,198 [main] TRACE AbstractWordWriter - replacing hyperlink [227424 - 227445] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:25,264 [main] TRACE AbstractWordWriter - replacing hyperlink [227500 - 227525] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:25,329 [main] TRACE AbstractWordWriter - replacing hyperlink [227575 - 227596] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:25,396 [main] TRACE AbstractWordWriter - replacing hyperlink [227651 - 227676] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:25,457 [main] TRACE AbstractWordWriter - replacing hyperlink [227725 - 227746] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:25,531 [main] TRACE AbstractWordWriter - replacing hyperlink [227801 - 227826] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:25,604 [main] TRACE AbstractWordWriter - replacing hyperlink [227876 - 227897] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:25,672 [main] TRACE AbstractWordWriter - replacing hyperlink [227952 - 227977] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:25,735 [main] TRACE AbstractWordWriter - replacing hyperlink [228028 - 228049] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:25,801 [main] TRACE AbstractWordWriter - replacing hyperlink [228104 - 228129] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:25,867 [main] TRACE AbstractWordWriter - replacing hyperlink [228179 - 228200] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:25,938 [main] TRACE AbstractWordWriter - replacing hyperlink [228255 - 228280] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:26,004 [main] TRACE AbstractWordWriter - replacing hyperlink [228695 - 228716] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:26,068 [main] TRACE AbstractWordWriter - replacing hyperlink [228857 - 228878] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:26,127 [main] TRACE AbstractWordWriter - replacing hyperlink [228997 - 229018] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:26,198 [main] TRACE AbstractWordWriter - replacing hyperlink [229139 - 229160] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:26,261 [main] TRACE AbstractWordWriter - replacing hyperlink [229307 - 229328] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:26,325 [main] TRACE AbstractWordWriter - replacing hyperlink [229464 - 229485] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:26,391 [main] TRACE AbstractWordWriter - replacing hyperlink [229625 - 229646] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:26,455 [main] TRACE AbstractWordWriter - replacing hyperlink [229740 - 229761] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:26,515 [main] TRACE AbstractWordWriter - replacing hyperlink [229872 - 229893] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:26,579 [main] TRACE AbstractWordWriter - replacing hyperlink [229991 - 230012] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:26,641 [main] TRACE AbstractWordWriter - replacing hyperlink [230158 - 230179] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:26,704 [main] TRACE AbstractWordWriter - replacing hyperlink [230288 - 230309] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:26,768 [main] TRACE AbstractWordWriter - replacing hyperlink [230431 - 230452] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:26,836 [main] TRACE AbstractWordWriter - replacing hyperlink [230553 - 230574] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:26,901 [main] TRACE AbstractWordWriter - replacing hyperlink [230692 - 230713] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:26,961 [main] TRACE AbstractWordWriter - replacing hyperlink [230840 - 230861] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:27,024 [main] TRACE AbstractWordWriter - replacing hyperlink [230978 - 230999] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:27,085 [main] TRACE AbstractWordWriter - replacing hyperlink [231128 - 231149] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:27,151 [main] TRACE AbstractWordWriter - replacing hyperlink [231316 - 231337] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:27,221 [main] TRACE AbstractWordWriter - replacing hyperlink [231497 - 231518] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:27,280 [main] TRACE AbstractWordWriter - replacing hyperlink [231624 - 231645] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:27,340 [main] TRACE AbstractWordWriter - replacing hyperlink [231754 - 231775] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:27,404 [main] TRACE AbstractWordWriter - replacing hyperlink [231884 - 231905] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:27,462 [main] TRACE AbstractWordWriter - replacing hyperlink [232071 - 232092] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:27,533 [main] TRACE AbstractWordWriter - replacing hyperlink [232263 - 232284] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:27,598 [main] TRACE AbstractWordWriter - replacing hyperlink [232380 - 232401] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:27,661 [main] TRACE AbstractWordWriter - replacing hyperlink [232995 - 233018] HYPERLINK EntityIndex, UML66... +2024-09-08 08:31:27,728 [main] TRACE AbstractWordWriter - replacing hyperlink [233088 - 233105] HYPERLINK CntRs, UML67... +2024-09-08 08:31:27,797 [main] TRACE AbstractWordWriter - replacing hyperlink [233186 - 233209] HYPERLINK InetAddress, UML65... +2024-09-08 08:31:27,862 [main] TRACE AbstractWordWriter - replacing hyperlink [233283 - 233310] HYPERLINK InetAddressType, UML64... +2024-09-08 08:31:27,930 [main] TRACE AbstractWordWriter - replacing hyperlink [233385 - 233407] HYPERLINK ProtIdType, UML74... +2024-09-08 08:31:28,001 [main] TRACE AbstractWordWriter - replacing hyperlink [233483 - 233505] HYPERLINK CharString, UML59... +2024-09-08 08:31:28,065 [main] TRACE AbstractWordWriter - replacing hyperlink [233613 - 233635] HYPERLINK CharString, UML59... +2024-09-08 08:31:28,130 [main] TRACE AbstractWordWriter - replacing hyperlink [233765 - 233788] HYPERLINK InetAddress, UML65... +2024-09-08 08:31:28,195 [main] TRACE AbstractWordWriter - replacing hyperlink [233863 - 233890] HYPERLINK InetAddressType, UML64... +2024-09-08 08:31:28,257 [main] TRACE AbstractWordWriter - replacing hyperlink [233970 - 233991] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:28,320 [main] TRACE AbstractWordWriter - replacing hyperlink [234084 - 234103] HYPERLINK LnkType, UML78... +2024-09-08 08:31:28,378 [main] TRACE AbstractWordWriter - replacing hyperlink [234191 - 234215] HYPERLINK BooleanValue, UML52... +2024-09-08 08:31:28,450 [main] TRACE AbstractWordWriter - replacing hyperlink [234273 - 234303] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:28,515 [main] TRACE AbstractWordWriter - replacing hyperlink [234361 - 234380] HYPERLINK Integer, UML53... +2024-09-08 08:31:28,585 [main] TRACE AbstractWordWriter - replacing hyperlink [234433 - 234463] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:28,650 [main] TRACE AbstractWordWriter - replacing hyperlink [234516 - 234536] HYPERLINK Floating, UML56... +2024-09-08 08:31:28,712 [main] TRACE AbstractWordWriter - replacing hyperlink [234593 - 234623] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:28,776 [main] TRACE AbstractWordWriter - replacing hyperlink [234674 - 234694] HYPERLINK Floating, UML56... +2024-09-08 08:31:28,854 [main] TRACE AbstractWordWriter - replacing hyperlink [234751 - 234781] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:28,918 [main] TRACE AbstractWordWriter - replacing hyperlink [234842 - 234862] HYPERLINK Floating, UML56... +2024-09-08 08:31:28,984 [main] TRACE AbstractWordWriter - replacing hyperlink [234919 - 234949] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:29,051 [main] TRACE AbstractWordWriter - replacing hyperlink [235007 - 235027] HYPERLINK Floating, UML56... +2024-09-08 08:31:29,120 [main] TRACE AbstractWordWriter - replacing hyperlink [235084 - 235114] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:29,187 [main] TRACE AbstractWordWriter - replacing hyperlink [235167 - 235187] HYPERLINK Floating, UML56... +2024-09-08 08:31:29,249 [main] TRACE AbstractWordWriter - replacing hyperlink [235244 - 235274] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:29,317 [main] TRACE AbstractWordWriter - replacing hyperlink [235331 - 235351] HYPERLINK Floating, UML56... +2024-09-08 08:31:29,382 [main] TRACE AbstractWordWriter - replacing hyperlink [235408 - 235438] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:29,445 [main] TRACE AbstractWordWriter - replacing hyperlink [235486 - 235507] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:29,508 [main] TRACE AbstractWordWriter - replacing hyperlink [235562 - 235600] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:29,573 [main] TRACE AbstractWordWriter - replacing hyperlink [235656 - 235677] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:29,639 [main] TRACE AbstractWordWriter - replacing hyperlink [235732 - 235770] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:29,709 [main] TRACE AbstractWordWriter - replacing hyperlink [235826 - 235847] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:29,777 [main] TRACE AbstractWordWriter - replacing hyperlink [235902 - 235940] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:29,843 [main] TRACE AbstractWordWriter - replacing hyperlink [235996 - 236017] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:29,912 [main] TRACE AbstractWordWriter - replacing hyperlink [236072 - 236110] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:29,980 [main] TRACE AbstractWordWriter - replacing hyperlink [236169 - 236190] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:30,045 [main] TRACE AbstractWordWriter - replacing hyperlink [236245 - 236283] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:30,115 [main] TRACE AbstractWordWriter - replacing hyperlink [236340 - 236361] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:30,184 [main] TRACE AbstractWordWriter - replacing hyperlink [236416 - 236454] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:30,250 [main] TRACE AbstractWordWriter - replacing hyperlink [236510 - 236531] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:30,317 [main] TRACE AbstractWordWriter - replacing hyperlink [236586 - 236624] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:30,382 [main] TRACE AbstractWordWriter - replacing hyperlink [236685 - 236705] HYPERLINK Floating, UML56... +2024-09-08 08:31:30,454 [main] TRACE AbstractWordWriter - replacing hyperlink [236759 - 236797] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:30,526 [main] TRACE AbstractWordWriter - replacing hyperlink [236855 - 236876] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:30,584 [main] TRACE AbstractWordWriter - replacing hyperlink [236931 - 236969] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:30,646 [main] TRACE AbstractWordWriter - replacing hyperlink [237024 - 237045] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:30,709 [main] TRACE AbstractWordWriter - replacing hyperlink [237100 - 237138] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:30,772 [main] TRACE AbstractWordWriter - replacing hyperlink [237192 - 237213] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:30,841 [main] TRACE AbstractWordWriter - replacing hyperlink [237268 - 237306] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:30,901 [main] TRACE AbstractWordWriter - replacing hyperlink [237366 - 237387] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:30,972 [main] TRACE AbstractWordWriter - replacing hyperlink [237442 - 237480] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:31,041 [main] TRACE AbstractWordWriter - replacing hyperlink [237535 - 237556] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:31,101 [main] TRACE AbstractWordWriter - replacing hyperlink [237611 - 237649] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:31,161 [main] TRACE AbstractWordWriter - replacing hyperlink [237706 - 237727] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:31,226 [main] TRACE AbstractWordWriter - replacing hyperlink [237782 - 237820] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:31,298 [main] TRACE AbstractWordWriter - replacing hyperlink [237883 - 237904] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:31,370 [main] TRACE AbstractWordWriter - replacing hyperlink [237959 - 237997] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:31,435 [main] TRACE AbstractWordWriter - replacing hyperlink [238062 - 238083] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:31,504 [main] TRACE AbstractWordWriter - replacing hyperlink [238138 - 238176] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:31,569 [main] TRACE AbstractWordWriter - replacing hyperlink [238233 - 238254] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:31,634 [main] TRACE AbstractWordWriter - replacing hyperlink [238309 - 238347] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:31,695 [main] TRACE AbstractWordWriter - replacing hyperlink [238410 - 238431] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:31,759 [main] TRACE AbstractWordWriter - replacing hyperlink [238486 - 238524] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:31,832 [main] TRACE AbstractWordWriter - replacing hyperlink [238589 - 238610] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:31,894 [main] TRACE AbstractWordWriter - replacing hyperlink [238665 - 238703] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:31,959 [main] TRACE AbstractWordWriter - replacing hyperlink [238766 - 238787] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:32,025 [main] TRACE AbstractWordWriter - replacing hyperlink [238842 - 238867] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:32,095 [main] TRACE AbstractWordWriter - replacing hyperlink [238918 - 238939] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:32,159 [main] TRACE AbstractWordWriter - replacing hyperlink [238994 - 239019] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:32,225 [main] TRACE AbstractWordWriter - replacing hyperlink [239069 - 239090] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:32,299 [main] TRACE AbstractWordWriter - replacing hyperlink [239145 - 239170] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:32,368 [main] TRACE AbstractWordWriter - replacing hyperlink [239226 - 239247] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:32,439 [main] TRACE AbstractWordWriter - replacing hyperlink [239302 - 239327] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:32,504 [main] TRACE AbstractWordWriter - replacing hyperlink [239384 - 239405] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:32,565 [main] TRACE AbstractWordWriter - replacing hyperlink [239460 - 239485] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:32,626 [main] TRACE AbstractWordWriter - replacing hyperlink [239542 - 239563] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:32,694 [main] TRACE AbstractWordWriter - replacing hyperlink [239618 - 239643] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:32,758 [main] TRACE AbstractWordWriter - replacing hyperlink [239693 - 239714] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:32,819 [main] TRACE AbstractWordWriter - replacing hyperlink [239769 - 239794] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:32,879 [main] TRACE AbstractWordWriter - replacing hyperlink [239844 - 239865] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:32,948 [main] TRACE AbstractWordWriter - replacing hyperlink [239920 - 239945] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:33,013 [main] TRACE AbstractWordWriter - replacing hyperlink [239994 - 240015] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:33,078 [main] TRACE AbstractWordWriter - replacing hyperlink [240070 - 240095] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:33,147 [main] TRACE AbstractWordWriter - replacing hyperlink [240146 - 240167] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:33,214 [main] TRACE AbstractWordWriter - replacing hyperlink [240222 - 240247] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:33,275 [main] TRACE AbstractWordWriter - replacing hyperlink [240298 - 240319] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:33,337 [main] TRACE AbstractWordWriter - replacing hyperlink [240374 - 240399] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:33,394 [main] TRACE AbstractWordWriter - replacing hyperlink [240454 - 240475] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:33,456 [main] TRACE AbstractWordWriter - replacing hyperlink [240530 - 240555] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:33,522 [main] TRACE AbstractWordWriter - replacing hyperlink [240610 - 240631] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:33,583 [main] TRACE AbstractWordWriter - replacing hyperlink [240686 - 240711] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:33,650 [main] TRACE AbstractWordWriter - replacing hyperlink [240764 - 240785] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:33,716 [main] TRACE AbstractWordWriter - replacing hyperlink [240840 - 240865] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:33,783 [main] TRACE AbstractWordWriter - replacing hyperlink [240918 - 240939] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:33,845 [main] TRACE AbstractWordWriter - replacing hyperlink [240994 - 241019] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:33,905 [main] TRACE AbstractWordWriter - replacing hyperlink [241072 - 241093] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:33,963 [main] TRACE AbstractWordWriter - replacing hyperlink [241148 - 241173] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:34,035 [main] TRACE AbstractWordWriter - replacing hyperlink [241226 - 241247] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:34,103 [main] TRACE AbstractWordWriter - replacing hyperlink [241302 - 241327] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:34,165 [main] TRACE AbstractWordWriter - replacing hyperlink [241383 - 241404] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:34,240 [main] TRACE AbstractWordWriter - replacing hyperlink [241459 - 241484] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:34,309 [main] TRACE AbstractWordWriter - replacing hyperlink [241540 - 241561] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:34,373 [main] TRACE AbstractWordWriter - replacing hyperlink [241616 - 241641] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:34,437 [main] TRACE AbstractWordWriter - replacing hyperlink [241691 - 241712] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:34,502 [main] TRACE AbstractWordWriter - replacing hyperlink [241767 - 241792] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:34,565 [main] TRACE AbstractWordWriter - replacing hyperlink [241840 - 241861] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:34,636 [main] TRACE AbstractWordWriter - replacing hyperlink [241916 - 241941] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:34,701 [main] TRACE AbstractWordWriter - replacing hyperlink [241991 - 242012] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:34,772 [main] TRACE AbstractWordWriter - replacing hyperlink [242067 - 242092] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:34,843 [main] TRACE AbstractWordWriter - replacing hyperlink [242141 - 242162] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:34,909 [main] TRACE AbstractWordWriter - replacing hyperlink [242217 - 242242] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:34,982 [main] TRACE AbstractWordWriter - replacing hyperlink [242292 - 242313] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:35,054 [main] TRACE AbstractWordWriter - replacing hyperlink [242368 - 242393] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:35,127 [main] TRACE AbstractWordWriter - replacing hyperlink [242444 - 242465] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:35,222 [main] TRACE AbstractWordWriter - replacing hyperlink [242520 - 242545] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:35,295 [main] TRACE AbstractWordWriter - replacing hyperlink [242595 - 242616] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:35,356 [main] TRACE AbstractWordWriter - replacing hyperlink [242671 - 242696] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:35,424 [main] TRACE AbstractWordWriter - replacing hyperlink [243125 - 243142] HYPERLINK CntRs, UML67... +2024-09-08 08:31:35,484 [main] TRACE AbstractWordWriter - replacing hyperlink [243222 - 243243] HYPERLINK EventType, UML72... +2024-09-08 08:31:35,547 [main] TRACE AbstractWordWriter - replacing hyperlink [243359 - 243389] HYPERLINK MasterAssociation, UML101... +2024-09-08 08:31:35,613 [main] TRACE AbstractWordWriter - replacing hyperlink [243487 - 243521] HYPERLINK OutstationAssociation, UML102... +2024-09-08 08:31:35,676 [main] TRACE AbstractWordWriter - replacing hyperlink [243630 - 243677] HYPERLINK 60870andDNPSecurityNotificationEd2, UML111... +2024-09-08 08:31:35,745 [main] TRACE AbstractWordWriter - replacing hyperlink [243794 - 243833] HYPERLINK 60870andDNPNotificationEd2, UML112... +2024-09-08 08:31:35,812 [main] TRACE AbstractWordWriter - replacing hyperlink [243929 - 243950] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:35,881 [main] TRACE AbstractWordWriter - replacing hyperlink [244005 - 244043] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:35,947 [main] TRACE AbstractWordWriter - replacing hyperlink [244099 - 244120] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:36,010 [main] TRACE AbstractWordWriter - replacing hyperlink [244175 - 244213] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:36,080 [main] TRACE AbstractWordWriter - replacing hyperlink [244269 - 244290] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:36,151 [main] TRACE AbstractWordWriter - replacing hyperlink [244345 - 244383] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:36,222 [main] TRACE AbstractWordWriter - replacing hyperlink [244439 - 244460] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:36,290 [main] TRACE AbstractWordWriter - replacing hyperlink [244515 - 244553] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:36,362 [main] TRACE AbstractWordWriter - replacing hyperlink [244612 - 244633] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:36,427 [main] TRACE AbstractWordWriter - replacing hyperlink [244688 - 244726] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:36,500 [main] TRACE AbstractWordWriter - replacing hyperlink [244783 - 244804] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:36,566 [main] TRACE AbstractWordWriter - replacing hyperlink [244859 - 244897] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:36,637 [main] TRACE AbstractWordWriter - replacing hyperlink [244953 - 244974] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:36,703 [main] TRACE AbstractWordWriter - replacing hyperlink [245029 - 245067] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:36,767 [main] TRACE AbstractWordWriter - replacing hyperlink [245128 - 245148] HYPERLINK Floating, UML56... +2024-09-08 08:31:36,844 [main] TRACE AbstractWordWriter - replacing hyperlink [245202 - 245240] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:36,909 [main] TRACE AbstractWordWriter - replacing hyperlink [245298 - 245319] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:36,975 [main] TRACE AbstractWordWriter - replacing hyperlink [245374 - 245412] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:37,041 [main] TRACE AbstractWordWriter - replacing hyperlink [245467 - 245488] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:37,109 [main] TRACE AbstractWordWriter - replacing hyperlink [245543 - 245581] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:37,179 [main] TRACE AbstractWordWriter - replacing hyperlink [245635 - 245656] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:37,242 [main] TRACE AbstractWordWriter - replacing hyperlink [245711 - 245749] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:37,306 [main] TRACE AbstractWordWriter - replacing hyperlink [245809 - 245830] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:37,374 [main] TRACE AbstractWordWriter - replacing hyperlink [245885 - 245923] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:37,455 [main] TRACE AbstractWordWriter - replacing hyperlink [245978 - 245999] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:37,520 [main] TRACE AbstractWordWriter - replacing hyperlink [246054 - 246092] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:37,588 [main] TRACE AbstractWordWriter - replacing hyperlink [246149 - 246170] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:37,658 [main] TRACE AbstractWordWriter - replacing hyperlink [246225 - 246263] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:37,725 [main] TRACE AbstractWordWriter - replacing hyperlink [246326 - 246347] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:37,787 [main] TRACE AbstractWordWriter - replacing hyperlink [246402 - 246440] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:37,850 [main] TRACE AbstractWordWriter - replacing hyperlink [246505 - 246526] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:37,908 [main] TRACE AbstractWordWriter - replacing hyperlink [246581 - 246619] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:37,970 [main] TRACE AbstractWordWriter - replacing hyperlink [246676 - 246697] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:38,041 [main] TRACE AbstractWordWriter - replacing hyperlink [246752 - 246790] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:38,106 [main] TRACE AbstractWordWriter - replacing hyperlink [246853 - 246874] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:38,171 [main] TRACE AbstractWordWriter - replacing hyperlink [246929 - 246967] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:38,234 [main] TRACE AbstractWordWriter - replacing hyperlink [247032 - 247053] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:38,297 [main] TRACE AbstractWordWriter - replacing hyperlink [247108 - 247146] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:38,362 [main] TRACE AbstractWordWriter - replacing hyperlink [247209 - 247230] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:38,429 [main] TRACE AbstractWordWriter - replacing hyperlink [247285 - 247310] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:38,498 [main] TRACE AbstractWordWriter - replacing hyperlink [247361 - 247382] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:38,562 [main] TRACE AbstractWordWriter - replacing hyperlink [247437 - 247462] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:38,629 [main] TRACE AbstractWordWriter - replacing hyperlink [247512 - 247533] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:38,695 [main] TRACE AbstractWordWriter - replacing hyperlink [247588 - 247613] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:38,757 [main] TRACE AbstractWordWriter - replacing hyperlink [247669 - 247690] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:38,823 [main] TRACE AbstractWordWriter - replacing hyperlink [247745 - 247770] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:38,885 [main] TRACE AbstractWordWriter - replacing hyperlink [247827 - 247848] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:38,955 [main] TRACE AbstractWordWriter - replacing hyperlink [247903 - 247928] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:39,015 [main] TRACE AbstractWordWriter - replacing hyperlink [247985 - 248006] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:39,077 [main] TRACE AbstractWordWriter - replacing hyperlink [248061 - 248086] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:39,145 [main] TRACE AbstractWordWriter - replacing hyperlink [248136 - 248157] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:39,213 [main] TRACE AbstractWordWriter - replacing hyperlink [248212 - 248237] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:39,277 [main] TRACE AbstractWordWriter - replacing hyperlink [248287 - 248308] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:39,346 [main] TRACE AbstractWordWriter - replacing hyperlink [248363 - 248388] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:39,406 [main] TRACE AbstractWordWriter - replacing hyperlink [248437 - 248458] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:39,468 [main] TRACE AbstractWordWriter - replacing hyperlink [248513 - 248538] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:39,539 [main] TRACE AbstractWordWriter - replacing hyperlink [248589 - 248610] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:39,611 [main] TRACE AbstractWordWriter - replacing hyperlink [248665 - 248690] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:39,681 [main] TRACE AbstractWordWriter - replacing hyperlink [248741 - 248762] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:39,748 [main] TRACE AbstractWordWriter - replacing hyperlink [248817 - 248842] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:39,811 [main] TRACE AbstractWordWriter - replacing hyperlink [248897 - 248918] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:39,875 [main] TRACE AbstractWordWriter - replacing hyperlink [248973 - 248998] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:39,935 [main] TRACE AbstractWordWriter - replacing hyperlink [249053 - 249074] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:39,994 [main] TRACE AbstractWordWriter - replacing hyperlink [249129 - 249154] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:40,059 [main] TRACE AbstractWordWriter - replacing hyperlink [249207 - 249228] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:40,129 [main] TRACE AbstractWordWriter - replacing hyperlink [249283 - 249308] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:40,197 [main] TRACE AbstractWordWriter - replacing hyperlink [249361 - 249382] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:40,257 [main] TRACE AbstractWordWriter - replacing hyperlink [249437 - 249462] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:40,318 [main] TRACE AbstractWordWriter - replacing hyperlink [249515 - 249536] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:40,379 [main] TRACE AbstractWordWriter - replacing hyperlink [249591 - 249616] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:40,445 [main] TRACE AbstractWordWriter - replacing hyperlink [249669 - 249690] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:40,522 [main] TRACE AbstractWordWriter - replacing hyperlink [249745 - 249770] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:40,584 [main] TRACE AbstractWordWriter - replacing hyperlink [249826 - 249847] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:40,664 [main] TRACE AbstractWordWriter - replacing hyperlink [249902 - 249927] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:40,733 [main] TRACE AbstractWordWriter - replacing hyperlink [249983 - 250004] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:40,801 [main] TRACE AbstractWordWriter - replacing hyperlink [250059 - 250084] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:40,862 [main] TRACE AbstractWordWriter - replacing hyperlink [250134 - 250155] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:40,927 [main] TRACE AbstractWordWriter - replacing hyperlink [250210 - 250235] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:40,990 [main] TRACE AbstractWordWriter - replacing hyperlink [250283 - 250304] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:41,053 [main] TRACE AbstractWordWriter - replacing hyperlink [250359 - 250384] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:41,117 [main] TRACE AbstractWordWriter - replacing hyperlink [250434 - 250455] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:41,181 [main] TRACE AbstractWordWriter - replacing hyperlink [250510 - 250535] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:41,249 [main] TRACE AbstractWordWriter - replacing hyperlink [250584 - 250605] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:41,318 [main] TRACE AbstractWordWriter - replacing hyperlink [250660 - 250685] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:41,381 [main] TRACE AbstractWordWriter - replacing hyperlink [250735 - 250756] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:41,449 [main] TRACE AbstractWordWriter - replacing hyperlink [250811 - 250836] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:41,510 [main] TRACE AbstractWordWriter - replacing hyperlink [250887 - 250908] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:41,577 [main] TRACE AbstractWordWriter - replacing hyperlink [250963 - 250988] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:41,641 [main] TRACE AbstractWordWriter - replacing hyperlink [251038 - 251059] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:41,718 [main] TRACE AbstractWordWriter - replacing hyperlink [251114 - 251139] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:41,786 [main] TRACE AbstractWordWriter - replacing hyperlink [251636 - 251657] HYPERLINK EventType, UML72... +2024-09-08 08:31:41,850 [main] TRACE AbstractWordWriter - replacing hyperlink [252128 - 252149] HYPERLINK EventType, UML72... +2024-09-08 08:31:41,913 [main] TRACE AbstractWordWriter - replacing hyperlink [252535 - 252558] HYPERLINK EntityIndex, UML66... +2024-09-08 08:31:41,981 [main] TRACE AbstractWordWriter - replacing hyperlink [252612 - 252636] HYPERLINK Association, UML100... +2024-09-08 08:31:42,045 [main] TRACE AbstractWordWriter - replacing hyperlink [252675 - 252692] HYPERLINK CntRs, UML67... +2024-09-08 08:31:42,109 [main] TRACE AbstractWordWriter - replacing hyperlink [252743 - 252767] HYPERLINK Association, UML100... +2024-09-08 08:31:42,176 [main] TRACE AbstractWordWriter - replacing hyperlink [252811 - 252834] HYPERLINK InetAddress, UML65... +2024-09-08 08:31:42,247 [main] TRACE AbstractWordWriter - replacing hyperlink [252891 - 252915] HYPERLINK Association, UML100... +2024-09-08 08:31:42,310 [main] TRACE AbstractWordWriter - replacing hyperlink [252963 - 252990] HYPERLINK InetAddressType, UML64... +2024-09-08 08:31:42,373 [main] TRACE AbstractWordWriter - replacing hyperlink [253051 - 253075] HYPERLINK Association, UML100... +2024-09-08 08:31:42,440 [main] TRACE AbstractWordWriter - replacing hyperlink [253115 - 253137] HYPERLINK ProtIdType, UML74... +2024-09-08 08:31:42,516 [main] TRACE AbstractWordWriter - replacing hyperlink [253193 - 253217] HYPERLINK Association, UML100... +2024-09-08 08:31:42,581 [main] TRACE AbstractWordWriter - replacing hyperlink [253263 - 253285] HYPERLINK CharString, UML59... +2024-09-08 08:31:42,646 [main] TRACE AbstractWordWriter - replacing hyperlink [253341 - 253365] HYPERLINK Association, UML100... +2024-09-08 08:31:42,710 [main] TRACE AbstractWordWriter - replacing hyperlink [253411 - 253433] HYPERLINK CharString, UML59... +2024-09-08 08:31:42,784 [main] TRACE AbstractWordWriter - replacing hyperlink [253489 - 253513] HYPERLINK Association, UML100... +2024-09-08 08:31:42,852 [main] TRACE AbstractWordWriter - replacing hyperlink [253557 - 253580] HYPERLINK InetAddress, UML65... +2024-09-08 08:31:42,913 [main] TRACE AbstractWordWriter - replacing hyperlink [253637 - 253661] HYPERLINK Association, UML100... +2024-09-08 08:31:42,981 [main] TRACE AbstractWordWriter - replacing hyperlink [253709 - 253736] HYPERLINK InetAddressType, UML64... +2024-09-08 08:31:43,053 [main] TRACE AbstractWordWriter - replacing hyperlink [253797 - 253821] HYPERLINK Association, UML100... +2024-09-08 08:31:43,117 [main] TRACE AbstractWordWriter - replacing hyperlink [253865 - 253886] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:43,190 [main] TRACE AbstractWordWriter - replacing hyperlink [253939 - 253963] HYPERLINK Association, UML100... +2024-09-08 08:31:43,261 [main] TRACE AbstractWordWriter - replacing hyperlink [254004 - 254023] HYPERLINK LnkType, UML78... +2024-09-08 08:31:43,327 [main] TRACE AbstractWordWriter - replacing hyperlink [254076 - 254100] HYPERLINK Association, UML100... +2024-09-08 08:31:43,394 [main] TRACE AbstractWordWriter - replacing hyperlink [254147 - 254171] HYPERLINK BooleanValue, UML52... +2024-09-08 08:31:43,468 [main] TRACE AbstractWordWriter - replacing hyperlink [254229 - 254259] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:43,529 [main] TRACE AbstractWordWriter - replacing hyperlink [254317 - 254336] HYPERLINK Integer, UML53... +2024-09-08 08:31:43,596 [main] TRACE AbstractWordWriter - replacing hyperlink [254389 - 254419] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:43,661 [main] TRACE AbstractWordWriter - replacing hyperlink [254472 - 254492] HYPERLINK Floating, UML56... +2024-09-08 08:31:43,732 [main] TRACE AbstractWordWriter - replacing hyperlink [254549 - 254579] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:43,802 [main] TRACE AbstractWordWriter - replacing hyperlink [254630 - 254650] HYPERLINK Floating, UML56... +2024-09-08 08:31:43,872 [main] TRACE AbstractWordWriter - replacing hyperlink [254707 - 254737] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:43,936 [main] TRACE AbstractWordWriter - replacing hyperlink [254798 - 254818] HYPERLINK Floating, UML56... +2024-09-08 08:31:44,002 [main] TRACE AbstractWordWriter - replacing hyperlink [254875 - 254905] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:44,072 [main] TRACE AbstractWordWriter - replacing hyperlink [254963 - 254983] HYPERLINK Floating, UML56... +2024-09-08 08:31:44,141 [main] TRACE AbstractWordWriter - replacing hyperlink [255040 - 255070] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:44,211 [main] TRACE AbstractWordWriter - replacing hyperlink [255123 - 255143] HYPERLINK Floating, UML56... +2024-09-08 08:31:44,276 [main] TRACE AbstractWordWriter - replacing hyperlink [255200 - 255230] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:44,337 [main] TRACE AbstractWordWriter - replacing hyperlink [255287 - 255307] HYPERLINK Floating, UML56... +2024-09-08 08:31:44,402 [main] TRACE AbstractWordWriter - replacing hyperlink [255364 - 255394] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:44,465 [main] TRACE AbstractWordWriter - replacing hyperlink [255442 - 255463] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:44,531 [main] TRACE AbstractWordWriter - replacing hyperlink [255518 - 255556] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:44,595 [main] TRACE AbstractWordWriter - replacing hyperlink [255612 - 255633] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:44,656 [main] TRACE AbstractWordWriter - replacing hyperlink [255688 - 255726] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:44,718 [main] TRACE AbstractWordWriter - replacing hyperlink [255782 - 255803] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:44,785 [main] TRACE AbstractWordWriter - replacing hyperlink [255858 - 255896] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:44,846 [main] TRACE AbstractWordWriter - replacing hyperlink [255952 - 255973] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:44,917 [main] TRACE AbstractWordWriter - replacing hyperlink [256028 - 256066] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:44,988 [main] TRACE AbstractWordWriter - replacing hyperlink [256125 - 256146] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:45,055 [main] TRACE AbstractWordWriter - replacing hyperlink [256201 - 256239] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:45,116 [main] TRACE AbstractWordWriter - replacing hyperlink [256296 - 256317] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:45,188 [main] TRACE AbstractWordWriter - replacing hyperlink [256372 - 256410] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:45,266 [main] TRACE AbstractWordWriter - replacing hyperlink [256466 - 256487] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:45,331 [main] TRACE AbstractWordWriter - replacing hyperlink [256542 - 256580] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:45,397 [main] TRACE AbstractWordWriter - replacing hyperlink [256641 - 256661] HYPERLINK Floating, UML56... +2024-09-08 08:31:45,461 [main] TRACE AbstractWordWriter - replacing hyperlink [256715 - 256753] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:45,523 [main] TRACE AbstractWordWriter - replacing hyperlink [256811 - 256832] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:45,657 [main] TRACE AbstractWordWriter - replacing hyperlink [256887 - 256925] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:45,726 [main] TRACE AbstractWordWriter - replacing hyperlink [256980 - 257001] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:45,796 [main] TRACE AbstractWordWriter - replacing hyperlink [257056 - 257094] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:45,871 [main] TRACE AbstractWordWriter - replacing hyperlink [257148 - 257169] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:45,936 [main] TRACE AbstractWordWriter - replacing hyperlink [257224 - 257262] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:46,006 [main] TRACE AbstractWordWriter - replacing hyperlink [257322 - 257343] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:46,068 [main] TRACE AbstractWordWriter - replacing hyperlink [257398 - 257436] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:46,136 [main] TRACE AbstractWordWriter - replacing hyperlink [257491 - 257512] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:46,208 [main] TRACE AbstractWordWriter - replacing hyperlink [257567 - 257605] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:46,276 [main] TRACE AbstractWordWriter - replacing hyperlink [257662 - 257683] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:46,340 [main] TRACE AbstractWordWriter - replacing hyperlink [257738 - 257776] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:46,410 [main] TRACE AbstractWordWriter - replacing hyperlink [257839 - 257860] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:46,474 [main] TRACE AbstractWordWriter - replacing hyperlink [257915 - 257953] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:46,543 [main] TRACE AbstractWordWriter - replacing hyperlink [258018 - 258039] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:46,610 [main] TRACE AbstractWordWriter - replacing hyperlink [258094 - 258132] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:46,678 [main] TRACE AbstractWordWriter - replacing hyperlink [258189 - 258210] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:46,744 [main] TRACE AbstractWordWriter - replacing hyperlink [258265 - 258303] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:46,813 [main] TRACE AbstractWordWriter - replacing hyperlink [258366 - 258387] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:46,875 [main] TRACE AbstractWordWriter - replacing hyperlink [258442 - 258480] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:46,947 [main] TRACE AbstractWordWriter - replacing hyperlink [258545 - 258566] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:47,009 [main] TRACE AbstractWordWriter - replacing hyperlink [258621 - 258659] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:47,085 [main] TRACE AbstractWordWriter - replacing hyperlink [258722 - 258743] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:47,157 [main] TRACE AbstractWordWriter - replacing hyperlink [258798 - 258823] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:47,234 [main] TRACE AbstractWordWriter - replacing hyperlink [258874 - 258895] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:47,301 [main] TRACE AbstractWordWriter - replacing hyperlink [258950 - 258975] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:47,371 [main] TRACE AbstractWordWriter - replacing hyperlink [259025 - 259046] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:47,433 [main] TRACE AbstractWordWriter - replacing hyperlink [259101 - 259126] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:47,499 [main] TRACE AbstractWordWriter - replacing hyperlink [259182 - 259203] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:47,567 [main] TRACE AbstractWordWriter - replacing hyperlink [259258 - 259283] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:47,632 [main] TRACE AbstractWordWriter - replacing hyperlink [259340 - 259361] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:47,700 [main] TRACE AbstractWordWriter - replacing hyperlink [259416 - 259441] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:47,767 [main] TRACE AbstractWordWriter - replacing hyperlink [259498 - 259519] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:47,833 [main] TRACE AbstractWordWriter - replacing hyperlink [259574 - 259599] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:47,902 [main] TRACE AbstractWordWriter - replacing hyperlink [259649 - 259670] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:47,966 [main] TRACE AbstractWordWriter - replacing hyperlink [259725 - 259750] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:48,031 [main] TRACE AbstractWordWriter - replacing hyperlink [259800 - 259821] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:48,095 [main] TRACE AbstractWordWriter - replacing hyperlink [259876 - 259901] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:48,176 [main] TRACE AbstractWordWriter - replacing hyperlink [259950 - 259971] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:48,242 [main] TRACE AbstractWordWriter - replacing hyperlink [260026 - 260051] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:48,312 [main] TRACE AbstractWordWriter - replacing hyperlink [260102 - 260123] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:48,387 [main] TRACE AbstractWordWriter - replacing hyperlink [260178 - 260203] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:48,465 [main] TRACE AbstractWordWriter - replacing hyperlink [260254 - 260275] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:48,544 [main] TRACE AbstractWordWriter - replacing hyperlink [260330 - 260355] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:48,611 [main] TRACE AbstractWordWriter - replacing hyperlink [260410 - 260431] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:48,685 [main] TRACE AbstractWordWriter - replacing hyperlink [260486 - 260511] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:48,750 [main] TRACE AbstractWordWriter - replacing hyperlink [260566 - 260587] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:48,815 [main] TRACE AbstractWordWriter - replacing hyperlink [260642 - 260667] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:48,881 [main] TRACE AbstractWordWriter - replacing hyperlink [260720 - 260741] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:48,947 [main] TRACE AbstractWordWriter - replacing hyperlink [260796 - 260821] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:49,015 [main] TRACE AbstractWordWriter - replacing hyperlink [260874 - 260895] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:49,080 [main] TRACE AbstractWordWriter - replacing hyperlink [260950 - 260975] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:49,145 [main] TRACE AbstractWordWriter - replacing hyperlink [261028 - 261049] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:49,216 [main] TRACE AbstractWordWriter - replacing hyperlink [261104 - 261129] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:49,281 [main] TRACE AbstractWordWriter - replacing hyperlink [261182 - 261203] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:49,352 [main] TRACE AbstractWordWriter - replacing hyperlink [261258 - 261283] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:49,414 [main] TRACE AbstractWordWriter - replacing hyperlink [261339 - 261360] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:49,479 [main] TRACE AbstractWordWriter - replacing hyperlink [261415 - 261440] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:49,544 [main] TRACE AbstractWordWriter - replacing hyperlink [261496 - 261517] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:49,611 [main] TRACE AbstractWordWriter - replacing hyperlink [261572 - 261597] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:49,681 [main] TRACE AbstractWordWriter - replacing hyperlink [261647 - 261668] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:49,745 [main] TRACE AbstractWordWriter - replacing hyperlink [261723 - 261748] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:49,814 [main] TRACE AbstractWordWriter - replacing hyperlink [261796 - 261817] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:49,881 [main] TRACE AbstractWordWriter - replacing hyperlink [261872 - 261897] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:49,947 [main] TRACE AbstractWordWriter - replacing hyperlink [261947 - 261968] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:50,014 [main] TRACE AbstractWordWriter - replacing hyperlink [262023 - 262048] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:50,083 [main] TRACE AbstractWordWriter - replacing hyperlink [262097 - 262118] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:50,146 [main] TRACE AbstractWordWriter - replacing hyperlink [262173 - 262198] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:50,213 [main] TRACE AbstractWordWriter - replacing hyperlink [262248 - 262269] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:50,289 [main] TRACE AbstractWordWriter - replacing hyperlink [262324 - 262349] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:50,360 [main] TRACE AbstractWordWriter - replacing hyperlink [262400 - 262421] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:50,428 [main] TRACE AbstractWordWriter - replacing hyperlink [262476 - 262501] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:50,494 [main] TRACE AbstractWordWriter - replacing hyperlink [262551 - 262572] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:50,559 [main] TRACE AbstractWordWriter - replacing hyperlink [262627 - 262652] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:50,625 [main] TRACE AbstractWordWriter - replacing hyperlink [263051 - 263074] HYPERLINK EntityIndex, UML66... +2024-09-08 08:31:50,701 [main] TRACE AbstractWordWriter - replacing hyperlink [263128 - 263152] HYPERLINK Association, UML100... +2024-09-08 08:31:50,774 [main] TRACE AbstractWordWriter - replacing hyperlink [263191 - 263208] HYPERLINK CntRs, UML67... +2024-09-08 08:31:50,864 [main] TRACE AbstractWordWriter - replacing hyperlink [263259 - 263283] HYPERLINK Association, UML100... +2024-09-08 08:31:50,933 [main] TRACE AbstractWordWriter - replacing hyperlink [263327 - 263350] HYPERLINK InetAddress, UML65... +2024-09-08 08:31:51,004 [main] TRACE AbstractWordWriter - replacing hyperlink [263407 - 263431] HYPERLINK Association, UML100... +2024-09-08 08:31:51,079 [main] TRACE AbstractWordWriter - replacing hyperlink [263479 - 263506] HYPERLINK InetAddressType, UML64... +2024-09-08 08:31:51,142 [main] TRACE AbstractWordWriter - replacing hyperlink [263567 - 263591] HYPERLINK Association, UML100... +2024-09-08 08:31:51,210 [main] TRACE AbstractWordWriter - replacing hyperlink [263631 - 263653] HYPERLINK ProtIdType, UML74... +2024-09-08 08:31:51,273 [main] TRACE AbstractWordWriter - replacing hyperlink [263709 - 263733] HYPERLINK Association, UML100... +2024-09-08 08:31:51,352 [main] TRACE AbstractWordWriter - replacing hyperlink [263779 - 263801] HYPERLINK CharString, UML59... +2024-09-08 08:31:51,421 [main] TRACE AbstractWordWriter - replacing hyperlink [263857 - 263881] HYPERLINK Association, UML100... +2024-09-08 08:31:51,486 [main] TRACE AbstractWordWriter - replacing hyperlink [263927 - 263949] HYPERLINK CharString, UML59... +2024-09-08 08:31:51,553 [main] TRACE AbstractWordWriter - replacing hyperlink [264005 - 264029] HYPERLINK Association, UML100... +2024-09-08 08:31:51,623 [main] TRACE AbstractWordWriter - replacing hyperlink [264073 - 264096] HYPERLINK InetAddress, UML65... +2024-09-08 08:31:51,698 [main] TRACE AbstractWordWriter - replacing hyperlink [264153 - 264177] HYPERLINK Association, UML100... +2024-09-08 08:31:51,762 [main] TRACE AbstractWordWriter - replacing hyperlink [264225 - 264252] HYPERLINK InetAddressType, UML64... +2024-09-08 08:31:51,837 [main] TRACE AbstractWordWriter - replacing hyperlink [264313 - 264337] HYPERLINK Association, UML100... +2024-09-08 08:31:51,903 [main] TRACE AbstractWordWriter - replacing hyperlink [264381 - 264402] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:51,975 [main] TRACE AbstractWordWriter - replacing hyperlink [264455 - 264479] HYPERLINK Association, UML100... +2024-09-08 08:31:52,041 [main] TRACE AbstractWordWriter - replacing hyperlink [264520 - 264539] HYPERLINK LnkType, UML78... +2024-09-08 08:31:52,103 [main] TRACE AbstractWordWriter - replacing hyperlink [264592 - 264616] HYPERLINK Association, UML100... +2024-09-08 08:31:52,172 [main] TRACE AbstractWordWriter - replacing hyperlink [264663 - 264687] HYPERLINK BooleanValue, UML52... +2024-09-08 08:31:52,241 [main] TRACE AbstractWordWriter - replacing hyperlink [264745 - 264775] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:52,309 [main] TRACE AbstractWordWriter - replacing hyperlink [264833 - 264852] HYPERLINK Integer, UML53... +2024-09-08 08:31:52,387 [main] TRACE AbstractWordWriter - replacing hyperlink [264905 - 264935] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:52,458 [main] TRACE AbstractWordWriter - replacing hyperlink [264988 - 265008] HYPERLINK Floating, UML56... +2024-09-08 08:31:52,523 [main] TRACE AbstractWordWriter - replacing hyperlink [265065 - 265095] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:52,587 [main] TRACE AbstractWordWriter - replacing hyperlink [265146 - 265166] HYPERLINK Floating, UML56... +2024-09-08 08:31:52,651 [main] TRACE AbstractWordWriter - replacing hyperlink [265223 - 265253] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:52,719 [main] TRACE AbstractWordWriter - replacing hyperlink [265314 - 265334] HYPERLINK Floating, UML56... +2024-09-08 08:31:52,780 [main] TRACE AbstractWordWriter - replacing hyperlink [265391 - 265421] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:52,850 [main] TRACE AbstractWordWriter - replacing hyperlink [265479 - 265499] HYPERLINK Floating, UML56... +2024-09-08 08:31:52,920 [main] TRACE AbstractWordWriter - replacing hyperlink [265556 - 265586] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:52,986 [main] TRACE AbstractWordWriter - replacing hyperlink [265639 - 265659] HYPERLINK Floating, UML56... +2024-09-08 08:31:53,052 [main] TRACE AbstractWordWriter - replacing hyperlink [265716 - 265746] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:53,117 [main] TRACE AbstractWordWriter - replacing hyperlink [265803 - 265823] HYPERLINK Floating, UML56... +2024-09-08 08:31:53,189 [main] TRACE AbstractWordWriter - replacing hyperlink [265880 - 265910] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:31:53,255 [main] TRACE AbstractWordWriter - replacing hyperlink [265958 - 265979] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:53,319 [main] TRACE AbstractWordWriter - replacing hyperlink [266034 - 266072] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:53,387 [main] TRACE AbstractWordWriter - replacing hyperlink [266128 - 266149] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:53,461 [main] TRACE AbstractWordWriter - replacing hyperlink [266204 - 266242] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:53,533 [main] TRACE AbstractWordWriter - replacing hyperlink [266298 - 266319] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:53,601 [main] TRACE AbstractWordWriter - replacing hyperlink [266374 - 266412] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:53,673 [main] TRACE AbstractWordWriter - replacing hyperlink [266468 - 266489] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:53,746 [main] TRACE AbstractWordWriter - replacing hyperlink [266544 - 266582] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:53,809 [main] TRACE AbstractWordWriter - replacing hyperlink [266641 - 266662] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:53,876 [main] TRACE AbstractWordWriter - replacing hyperlink [266717 - 266755] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:53,951 [main] TRACE AbstractWordWriter - replacing hyperlink [266812 - 266833] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:54,018 [main] TRACE AbstractWordWriter - replacing hyperlink [266888 - 266926] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:54,089 [main] TRACE AbstractWordWriter - replacing hyperlink [266982 - 267003] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:54,180 [main] TRACE AbstractWordWriter - replacing hyperlink [267058 - 267096] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:54,261 [main] TRACE AbstractWordWriter - replacing hyperlink [267157 - 267177] HYPERLINK Floating, UML56... +2024-09-08 08:31:54,325 [main] TRACE AbstractWordWriter - replacing hyperlink [267231 - 267269] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:54,394 [main] TRACE AbstractWordWriter - replacing hyperlink [267327 - 267348] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:54,462 [main] TRACE AbstractWordWriter - replacing hyperlink [267403 - 267441] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:54,537 [main] TRACE AbstractWordWriter - replacing hyperlink [267496 - 267517] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:54,600 [main] TRACE AbstractWordWriter - replacing hyperlink [267572 - 267610] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:54,661 [main] TRACE AbstractWordWriter - replacing hyperlink [267664 - 267685] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:54,731 [main] TRACE AbstractWordWriter - replacing hyperlink [267740 - 267778] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:54,798 [main] TRACE AbstractWordWriter - replacing hyperlink [267838 - 267859] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:54,865 [main] TRACE AbstractWordWriter - replacing hyperlink [267914 - 267952] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:54,933 [main] TRACE AbstractWordWriter - replacing hyperlink [268007 - 268028] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:55,002 [main] TRACE AbstractWordWriter - replacing hyperlink [268083 - 268121] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:55,068 [main] TRACE AbstractWordWriter - replacing hyperlink [268178 - 268199] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:55,134 [main] TRACE AbstractWordWriter - replacing hyperlink [268254 - 268292] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:55,197 [main] TRACE AbstractWordWriter - replacing hyperlink [268355 - 268376] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:55,263 [main] TRACE AbstractWordWriter - replacing hyperlink [268431 - 268469] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:55,332 [main] TRACE AbstractWordWriter - replacing hyperlink [268534 - 268555] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:55,396 [main] TRACE AbstractWordWriter - replacing hyperlink [268610 - 268648] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:55,469 [main] TRACE AbstractWordWriter - replacing hyperlink [268705 - 268726] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:55,539 [main] TRACE AbstractWordWriter - replacing hyperlink [268781 - 268819] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:55,617 [main] TRACE AbstractWordWriter - replacing hyperlink [268882 - 268903] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:55,681 [main] TRACE AbstractWordWriter - replacing hyperlink [268958 - 268996] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:55,748 [main] TRACE AbstractWordWriter - replacing hyperlink [269061 - 269082] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:55,819 [main] TRACE AbstractWordWriter - replacing hyperlink [269137 - 269175] HYPERLINK 60870andDNPProtocolInfoEd2, UML99... +2024-09-08 08:31:55,883 [main] TRACE AbstractWordWriter - replacing hyperlink [269238 - 269259] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:55,952 [main] TRACE AbstractWordWriter - replacing hyperlink [269314 - 269339] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:56,024 [main] TRACE AbstractWordWriter - replacing hyperlink [269390 - 269411] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:56,090 [main] TRACE AbstractWordWriter - replacing hyperlink [269466 - 269491] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:56,162 [main] TRACE AbstractWordWriter - replacing hyperlink [269541 - 269562] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:56,232 [main] TRACE AbstractWordWriter - replacing hyperlink [269617 - 269642] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:56,301 [main] TRACE AbstractWordWriter - replacing hyperlink [269698 - 269719] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:56,373 [main] TRACE AbstractWordWriter - replacing hyperlink [269774 - 269799] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:56,437 [main] TRACE AbstractWordWriter - replacing hyperlink [269856 - 269877] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:56,496 [main] TRACE AbstractWordWriter - replacing hyperlink [269932 - 269957] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:56,562 [main] TRACE AbstractWordWriter - replacing hyperlink [270014 - 270035] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:56,634 [main] TRACE AbstractWordWriter - replacing hyperlink [270090 - 270115] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:56,705 [main] TRACE AbstractWordWriter - replacing hyperlink [270165 - 270186] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:56,780 [main] TRACE AbstractWordWriter - replacing hyperlink [270241 - 270266] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:56,847 [main] TRACE AbstractWordWriter - replacing hyperlink [270316 - 270337] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:56,923 [main] TRACE AbstractWordWriter - replacing hyperlink [270392 - 270417] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:56,988 [main] TRACE AbstractWordWriter - replacing hyperlink [270466 - 270487] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:57,059 [main] TRACE AbstractWordWriter - replacing hyperlink [270542 - 270567] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:57,127 [main] TRACE AbstractWordWriter - replacing hyperlink [270618 - 270639] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:57,197 [main] TRACE AbstractWordWriter - replacing hyperlink [270694 - 270719] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:57,261 [main] TRACE AbstractWordWriter - replacing hyperlink [270770 - 270791] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:57,328 [main] TRACE AbstractWordWriter - replacing hyperlink [270846 - 270871] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:57,396 [main] TRACE AbstractWordWriter - replacing hyperlink [270926 - 270947] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:57,461 [main] TRACE AbstractWordWriter - replacing hyperlink [271002 - 271027] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:57,533 [main] TRACE AbstractWordWriter - replacing hyperlink [271082 - 271103] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:57,602 [main] TRACE AbstractWordWriter - replacing hyperlink [271158 - 271183] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:57,665 [main] TRACE AbstractWordWriter - replacing hyperlink [271236 - 271257] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:57,739 [main] TRACE AbstractWordWriter - replacing hyperlink [271312 - 271337] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:57,800 [main] TRACE AbstractWordWriter - replacing hyperlink [271390 - 271411] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:57,870 [main] TRACE AbstractWordWriter - replacing hyperlink [271466 - 271491] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:57,936 [main] TRACE AbstractWordWriter - replacing hyperlink [271544 - 271565] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:57,998 [main] TRACE AbstractWordWriter - replacing hyperlink [271620 - 271645] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:58,066 [main] TRACE AbstractWordWriter - replacing hyperlink [271698 - 271719] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:58,132 [main] TRACE AbstractWordWriter - replacing hyperlink [271774 - 271799] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:58,195 [main] TRACE AbstractWordWriter - replacing hyperlink [271855 - 271876] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:58,261 [main] TRACE AbstractWordWriter - replacing hyperlink [271931 - 271956] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:58,325 [main] TRACE AbstractWordWriter - replacing hyperlink [272012 - 272033] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:58,390 [main] TRACE AbstractWordWriter - replacing hyperlink [272088 - 272113] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:58,456 [main] TRACE AbstractWordWriter - replacing hyperlink [272163 - 272184] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:58,521 [main] TRACE AbstractWordWriter - replacing hyperlink [272239 - 272264] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:58,594 [main] TRACE AbstractWordWriter - replacing hyperlink [272312 - 272333] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:58,661 [main] TRACE AbstractWordWriter - replacing hyperlink [272388 - 272413] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:58,728 [main] TRACE AbstractWordWriter - replacing hyperlink [272463 - 272484] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:58,800 [main] TRACE AbstractWordWriter - replacing hyperlink [272539 - 272564] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:58,871 [main] TRACE AbstractWordWriter - replacing hyperlink [272613 - 272634] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:58,937 [main] TRACE AbstractWordWriter - replacing hyperlink [272689 - 272714] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:59,003 [main] TRACE AbstractWordWriter - replacing hyperlink [272764 - 272785] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:59,070 [main] TRACE AbstractWordWriter - replacing hyperlink [272840 - 272865] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:59,142 [main] TRACE AbstractWordWriter - replacing hyperlink [272916 - 272937] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:59,211 [main] TRACE AbstractWordWriter - replacing hyperlink [272992 - 273017] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:59,287 [main] TRACE AbstractWordWriter - replacing hyperlink [273067 - 273088] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:59,353 [main] TRACE AbstractWordWriter - replacing hyperlink [273143 - 273168] HYPERLINK IEC62351part5, UML98... +2024-09-08 08:31:59,420 [main] TRACE AbstractWordWriter - replacing hyperlink [274228 - 274247] HYPERLINK Integer, UML53... +2024-09-08 08:31:59,487 [main] TRACE AbstractWordWriter - replacing hyperlink [274347 - 274366] HYPERLINK Integer, UML53... +2024-09-08 08:31:59,554 [main] TRACE AbstractWordWriter - replacing hyperlink [274457 - 274474] HYPERLINK CntRs, UML67... +2024-09-08 08:31:59,625 [main] TRACE AbstractWordWriter - replacing hyperlink [274560 - 274581] HYPERLINK CounterTs, UML55... +2024-09-08 08:31:59,696 [main] TRACE AbstractWordWriter - replacing hyperlink [274710 - 274729] HYPERLINK Integer, UML53... +2024-09-08 08:31:59,764 [main] TRACE AbstractWordWriter - replacing hyperlink [274823 - 274842] HYPERLINK Integer, UML53... +2024-09-08 08:31:59,832 [main] TRACE AbstractWordWriter - replacing hyperlink [274927 - 274946] HYPERLINK Integer, UML53... +2024-09-08 08:31:59,907 [main] TRACE AbstractWordWriter - replacing hyperlink [275034 - 275053] HYPERLINK Integer, UML53... +2024-09-08 08:31:59,978 [main] TRACE AbstractWordWriter - replacing hyperlink [275139 - 275160] HYPERLINK EventType, UML72... +2024-09-08 08:32:00,052 [main] TRACE AbstractWordWriter - replacing hyperlink [275257 - 275278] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:00,118 [main] TRACE AbstractWordWriter - replacing hyperlink [275424 - 275445] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:00,189 [main] TRACE AbstractWordWriter - replacing hyperlink [275610 - 275631] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:00,262 [main] TRACE AbstractWordWriter - replacing hyperlink [275915 - 275934] HYPERLINK Integer, UML53... +2024-09-08 08:32:00,331 [main] TRACE AbstractWordWriter - replacing hyperlink [276026 - 276045] HYPERLINK Integer, UML53... +2024-09-08 08:32:00,395 [main] TRACE AbstractWordWriter - replacing hyperlink [276128 - 276147] HYPERLINK Integer, UML53... +2024-09-08 08:32:00,463 [main] TRACE AbstractWordWriter - replacing hyperlink [276240 - 276259] HYPERLINK Integer, UML53... +2024-09-08 08:32:00,530 [main] TRACE AbstractWordWriter - replacing hyperlink [277174 - 277195] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:00,597 [main] TRACE AbstractWordWriter - replacing hyperlink [277419 - 277440] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:00,667 [main] TRACE AbstractWordWriter - replacing hyperlink [277662 - 277683] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:00,738 [main] TRACE AbstractWordWriter - replacing hyperlink [277797 - 277818] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:00,803 [main] TRACE AbstractWordWriter - replacing hyperlink [277928 - 277949] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:00,879 [main] TRACE AbstractWordWriter - replacing hyperlink [278115 - 278135] HYPERLINK Floating, UML56... +2024-09-08 08:32:00,950 [main] TRACE AbstractWordWriter - replacing hyperlink [278325 - 278346] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:01,024 [main] TRACE AbstractWordWriter - replacing hyperlink [278431 - 278452] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:01,091 [main] TRACE AbstractWordWriter - replacing hyperlink [278529 - 278550] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:01,160 [main] TRACE AbstractWordWriter - replacing hyperlink [278782 - 278803] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:01,224 [main] TRACE AbstractWordWriter - replacing hyperlink [279033 - 279054] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:01,303 [main] TRACE AbstractWordWriter - replacing hyperlink [279293 - 279314] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:01,366 [main] TRACE AbstractWordWriter - replacing hyperlink [279554 - 279575] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:01,434 [main] TRACE AbstractWordWriter - replacing hyperlink [280035 - 280056] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:01,504 [main] TRACE AbstractWordWriter - replacing hyperlink [280182 - 280203] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:01,575 [main] TRACE AbstractWordWriter - replacing hyperlink [280298 - 280315] HYPERLINK CntRs, UML67... +2024-09-08 08:32:01,653 [main] TRACE AbstractWordWriter - replacing hyperlink [280399 - 280420] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:01,718 [main] TRACE AbstractWordWriter - replacing hyperlink [280538 - 280559] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:01,789 [main] TRACE AbstractWordWriter - replacing hyperlink [280677 - 280698] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:01,860 [main] TRACE AbstractWordWriter - replacing hyperlink [280800 - 280821] HYPERLINK EventType, UML72... +2024-09-08 08:32:01,933 [main] TRACE AbstractWordWriter - replacing hyperlink [280913 - 280940] HYPERLINK MMSAssociation, UML104... +2024-09-08 08:32:01,998 [main] TRACE AbstractWordWriter - replacing hyperlink [281094 - 281115] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:02,068 [main] TRACE AbstractWordWriter - replacing hyperlink [281256 - 281278] HYPERLINK CharString, UML59... +2024-09-08 08:32:02,132 [main] TRACE AbstractWordWriter - replacing hyperlink [281359 - 281381] HYPERLINK CharString, UML59... +2024-09-08 08:32:02,197 [main] TRACE AbstractWordWriter - replacing hyperlink [281467 - 281503] HYPERLINK MMSSecurityNotification, UML115... +2024-09-08 08:32:02,266 [main] TRACE AbstractWordWriter - replacing hyperlink [281617 - 281636] HYPERLINK Integer, UML53... +2024-09-08 08:32:02,330 [main] TRACE AbstractWordWriter - replacing hyperlink [281796 - 281817] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:02,395 [main] TRACE AbstractWordWriter - replacing hyperlink [281982 - 282010] HYPERLINK MMSNotification, UML116... +2024-09-08 08:32:02,462 [main] TRACE AbstractWordWriter - replacing hyperlink [282111 - 282132] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:02,527 [main] TRACE AbstractWordWriter - replacing hyperlink [282272 - 282293] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:02,600 [main] TRACE AbstractWordWriter - replacing hyperlink [282428 - 282449] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:02,674 [main] TRACE AbstractWordWriter - replacing hyperlink [282549 - 282570] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:02,751 [main] TRACE AbstractWordWriter - replacing hyperlink [282625 - 282653] HYPERLINK MMSProtocolInfo, UML103... +2024-09-08 08:32:02,818 [main] TRACE AbstractWordWriter - replacing hyperlink [282701 - 282722] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:02,887 [main] TRACE AbstractWordWriter - replacing hyperlink [282777 - 282805] HYPERLINK MMSProtocolInfo, UML103... +2024-09-08 08:32:02,953 [main] TRACE AbstractWordWriter - replacing hyperlink [282855 - 282876] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:03,016 [main] TRACE AbstractWordWriter - replacing hyperlink [282931 - 282959] HYPERLINK MMSProtocolInfo, UML103... +2024-09-08 08:32:03,089 [main] TRACE AbstractWordWriter - replacing hyperlink [283009 - 283030] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:03,159 [main] TRACE AbstractWordWriter - replacing hyperlink [283085 - 283113] HYPERLINK MMSProtocolInfo, UML103... +2024-09-08 08:32:03,233 [main] TRACE AbstractWordWriter - replacing hyperlink [283163 - 283184] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:03,295 [main] TRACE AbstractWordWriter - replacing hyperlink [283239 - 283267] HYPERLINK MMSProtocolInfo, UML103... +2024-09-08 08:32:03,368 [main] TRACE AbstractWordWriter - replacing hyperlink [283319 - 283339] HYPERLINK Floating, UML56... +2024-09-08 08:32:03,437 [main] TRACE AbstractWordWriter - replacing hyperlink [283396 - 283424] HYPERLINK MMSProtocolInfo, UML103... +2024-09-08 08:32:03,503 [main] TRACE AbstractWordWriter - replacing hyperlink [283473 - 283494] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:03,575 [main] TRACE AbstractWordWriter - replacing hyperlink [283549 - 283577] HYPERLINK MMSProtocolInfo, UML103... +2024-09-08 08:32:03,641 [main] TRACE AbstractWordWriter - replacing hyperlink [283626 - 283647] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:03,708 [main] TRACE AbstractWordWriter - replacing hyperlink [283702 - 283730] HYPERLINK MMSProtocolInfo, UML103... +2024-09-08 08:32:03,780 [main] TRACE AbstractWordWriter - replacing hyperlink [283776 - 283797] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:03,844 [main] TRACE AbstractWordWriter - replacing hyperlink [283852 - 283880] HYPERLINK MMSProtocolInfo, UML103... +2024-09-08 08:32:03,906 [main] TRACE AbstractWordWriter - replacing hyperlink [283926 - 283947] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:03,972 [main] TRACE AbstractWordWriter - replacing hyperlink [284002 - 284030] HYPERLINK MMSProtocolInfo, UML103... +2024-09-08 08:32:04,042 [main] TRACE AbstractWordWriter - replacing hyperlink [284077 - 284098] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:04,104 [main] TRACE AbstractWordWriter - replacing hyperlink [284153 - 284181] HYPERLINK MMSProtocolInfo, UML103... +2024-09-08 08:32:04,178 [main] TRACE AbstractWordWriter - replacing hyperlink [284228 - 284249] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:04,252 [main] TRACE AbstractWordWriter - replacing hyperlink [284304 - 284332] HYPERLINK MMSProtocolInfo, UML103... +2024-09-08 08:32:04,321 [main] TRACE AbstractWordWriter - replacing hyperlink [284384 - 284405] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:04,387 [main] TRACE AbstractWordWriter - replacing hyperlink [284460 - 284488] HYPERLINK MMSProtocolInfo, UML103... +2024-09-08 08:32:04,449 [main] TRACE AbstractWordWriter - replacing hyperlink [284929 - 284955] HYPERLINK BooleanValueTs, UML54... +2024-09-08 08:32:04,518 [main] TRACE AbstractWordWriter - replacing hyperlink [285047 - 285070] HYPERLINK EntityIndex, UML66... +2024-09-08 08:32:04,582 [main] TRACE AbstractWordWriter - replacing hyperlink [285141 - 285165] HYPERLINK BooleanValue, UML52... +2024-09-08 08:32:04,648 [main] TRACE AbstractWordWriter - replacing hyperlink [285264 - 285281] HYPERLINK CntRs, UML67... +2024-09-08 08:32:04,723 [main] TRACE AbstractWordWriter - replacing hyperlink [285361 - 285381] HYPERLINK Floating, UML56... +2024-09-08 08:32:04,790 [main] TRACE AbstractWordWriter - replacing hyperlink [285510 - 285534] HYPERLINK BooleanValue, UML52... +2024-09-08 08:32:04,860 [main] TRACE AbstractWordWriter - replacing hyperlink [285665 - 285688] HYPERLINK InetAddress, UML65... +2024-09-08 08:32:04,932 [main] TRACE AbstractWordWriter - replacing hyperlink [285786 - 285813] HYPERLINK InetAddressType, UML64... +2024-09-08 08:32:04,999 [main] TRACE AbstractWordWriter - replacing hyperlink [285899 - 285919] HYPERLINK Selector, UML62... +2024-09-08 08:32:05,067 [main] TRACE AbstractWordWriter - replacing hyperlink [286008 - 286028] HYPERLINK Selector, UML62... +2024-09-08 08:32:05,139 [main] TRACE AbstractWordWriter - replacing hyperlink [286112 - 286132] HYPERLINK Selector, UML62... +2024-09-08 08:32:05,207 [main] TRACE AbstractWordWriter - replacing hyperlink [286227 - 286246] HYPERLINK Integer, UML53... +2024-09-08 08:32:05,277 [main] TRACE AbstractWordWriter - replacing hyperlink [286375 - 286397] HYPERLINK FloatingTs, UML57... +2024-09-08 08:32:05,345 [main] TRACE AbstractWordWriter - replacing hyperlink [286664 - 286695] HYPERLINK SecurityProfileType, UML76... +2024-09-08 08:32:05,409 [main] TRACE AbstractWordWriter - replacing hyperlink [286860 - 286881] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:05,485 [main] TRACE AbstractWordWriter - replacing hyperlink [286936 - 286964] HYPERLINK MMSProtocolInfo, UML103... +2024-09-08 08:32:05,552 [main] TRACE AbstractWordWriter - replacing hyperlink [287012 - 287033] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:05,613 [main] TRACE AbstractWordWriter - replacing hyperlink [287088 - 287116] HYPERLINK MMSProtocolInfo, UML103... +2024-09-08 08:32:05,679 [main] TRACE AbstractWordWriter - replacing hyperlink [287166 - 287187] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:05,743 [main] TRACE AbstractWordWriter - replacing hyperlink [287242 - 287270] HYPERLINK MMSProtocolInfo, UML103... +2024-09-08 08:32:05,810 [main] TRACE AbstractWordWriter - replacing hyperlink [287320 - 287341] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:05,872 [main] TRACE AbstractWordWriter - replacing hyperlink [287396 - 287424] HYPERLINK MMSProtocolInfo, UML103... +2024-09-08 08:32:05,940 [main] TRACE AbstractWordWriter - replacing hyperlink [287474 - 287495] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:06,012 [main] TRACE AbstractWordWriter - replacing hyperlink [287550 - 287578] HYPERLINK MMSProtocolInfo, UML103... +2024-09-08 08:32:06,081 [main] TRACE AbstractWordWriter - replacing hyperlink [287630 - 287650] HYPERLINK Floating, UML56... +2024-09-08 08:32:06,149 [main] TRACE AbstractWordWriter - replacing hyperlink [287707 - 287735] HYPERLINK MMSProtocolInfo, UML103... +2024-09-08 08:32:06,226 [main] TRACE AbstractWordWriter - replacing hyperlink [287784 - 287805] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:06,295 [main] TRACE AbstractWordWriter - replacing hyperlink [287860 - 287888] HYPERLINK MMSProtocolInfo, UML103... +2024-09-08 08:32:06,369 [main] TRACE AbstractWordWriter - replacing hyperlink [287937 - 287958] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:06,439 [main] TRACE AbstractWordWriter - replacing hyperlink [288013 - 288041] HYPERLINK MMSProtocolInfo, UML103... +2024-09-08 08:32:06,506 [main] TRACE AbstractWordWriter - replacing hyperlink [288087 - 288108] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:06,571 [main] TRACE AbstractWordWriter - replacing hyperlink [288163 - 288191] HYPERLINK MMSProtocolInfo, UML103... +2024-09-08 08:32:06,633 [main] TRACE AbstractWordWriter - replacing hyperlink [288237 - 288258] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:06,700 [main] TRACE AbstractWordWriter - replacing hyperlink [288313 - 288341] HYPERLINK MMSProtocolInfo, UML103... +2024-09-08 08:32:06,768 [main] TRACE AbstractWordWriter - replacing hyperlink [288388 - 288409] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:06,836 [main] TRACE AbstractWordWriter - replacing hyperlink [288464 - 288492] HYPERLINK MMSProtocolInfo, UML103... +2024-09-08 08:32:06,907 [main] TRACE AbstractWordWriter - replacing hyperlink [288539 - 288560] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:06,983 [main] TRACE AbstractWordWriter - replacing hyperlink [288615 - 288643] HYPERLINK MMSProtocolInfo, UML103... +2024-09-08 08:32:07,051 [main] TRACE AbstractWordWriter - replacing hyperlink [288695 - 288716] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:07,125 [main] TRACE AbstractWordWriter - replacing hyperlink [288771 - 288799] HYPERLINK MMSProtocolInfo, UML103... +2024-09-08 08:32:07,205 [main] TRACE AbstractWordWriter - replacing hyperlink [288850 - 288874] HYPERLINK BooleanValue, UML52... +2024-09-08 08:32:07,279 [main] TRACE AbstractWordWriter - replacing hyperlink [288932 - 288962] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:32:07,349 [main] TRACE AbstractWordWriter - replacing hyperlink [289020 - 289039] HYPERLINK Integer, UML53... +2024-09-08 08:32:07,419 [main] TRACE AbstractWordWriter - replacing hyperlink [289092 - 289122] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:32:07,486 [main] TRACE AbstractWordWriter - replacing hyperlink [289175 - 289195] HYPERLINK Floating, UML56... +2024-09-08 08:32:07,550 [main] TRACE AbstractWordWriter - replacing hyperlink [289252 - 289282] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:32:07,617 [main] TRACE AbstractWordWriter - replacing hyperlink [289333 - 289353] HYPERLINK Floating, UML56... +2024-09-08 08:32:07,690 [main] TRACE AbstractWordWriter - replacing hyperlink [289410 - 289440] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:32:07,763 [main] TRACE AbstractWordWriter - replacing hyperlink [289501 - 289521] HYPERLINK Floating, UML56... +2024-09-08 08:32:07,833 [main] TRACE AbstractWordWriter - replacing hyperlink [289578 - 289608] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:32:07,902 [main] TRACE AbstractWordWriter - replacing hyperlink [289666 - 289686] HYPERLINK Floating, UML56... +2024-09-08 08:32:07,973 [main] TRACE AbstractWordWriter - replacing hyperlink [289743 - 289773] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:32:08,038 [main] TRACE AbstractWordWriter - replacing hyperlink [289826 - 289846] HYPERLINK Floating, UML56... +2024-09-08 08:32:08,103 [main] TRACE AbstractWordWriter - replacing hyperlink [289903 - 289933] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:32:08,169 [main] TRACE AbstractWordWriter - replacing hyperlink [289990 - 290010] HYPERLINK Floating, UML56... +2024-09-08 08:32:08,237 [main] TRACE AbstractWordWriter - replacing hyperlink [290067 - 290097] HYPERLINK CommonProtocolInfo, UML89... +2024-09-08 08:32:08,304 [main] TRACE AbstractWordWriter - replacing hyperlink [290528 - 290549] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:08,365 [main] TRACE AbstractWordWriter - replacing hyperlink [290654 - 290675] HYPERLINK EventType, UML72... +2024-09-08 08:32:08,434 [main] TRACE AbstractWordWriter - replacing hyperlink [290772 - 290793] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:08,501 [main] TRACE AbstractWordWriter - replacing hyperlink [290934 - 290955] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:08,570 [main] TRACE AbstractWordWriter - replacing hyperlink [291402 - 291423] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:08,644 [main] TRACE AbstractWordWriter - replacing hyperlink [291541 - 291562] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:08,714 [main] TRACE AbstractWordWriter - replacing hyperlink [291677 - 291698] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:08,783 [main] TRACE AbstractWordWriter - replacing hyperlink [291790 - 291811] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:08,852 [main] TRACE AbstractWordWriter - replacing hyperlink [292632 - 292653] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:08,919 [main] TRACE AbstractWordWriter - replacing hyperlink [292764 - 292785] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:08,985 [main] TRACE AbstractWordWriter - replacing hyperlink [292907 - 292928] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:09,055 [main] TRACE AbstractWordWriter - replacing hyperlink [293446 - 293468] HYPERLINK CharString, UML59... +2024-09-08 08:32:09,131 [main] TRACE AbstractWordWriter - replacing hyperlink [293570 - 293587] HYPERLINK CntRs, UML67... +2024-09-08 08:32:09,200 [main] TRACE AbstractWordWriter - replacing hyperlink [293663 - 293684] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:09,270 [main] TRACE AbstractWordWriter - replacing hyperlink [293807 - 293829] HYPERLINK CharString, UML59... +2024-09-08 08:32:09,341 [main] TRACE AbstractWordWriter - replacing hyperlink [293926 - 293946] HYPERLINK Floating, UML56... +2024-09-08 08:32:09,407 [main] TRACE AbstractWordWriter - replacing hyperlink [294083 - 294104] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:09,471 [main] TRACE AbstractWordWriter - replacing hyperlink [294159 - 294186] HYPERLINK GSEandSVCommon, UML117... +2024-09-08 08:32:09,547 [main] TRACE AbstractWordWriter - replacing hyperlink [294237 - 294258] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:09,616 [main] TRACE AbstractWordWriter - replacing hyperlink [294313 - 294340] HYPERLINK GSEandSVCommon, UML117... +2024-09-08 08:32:09,681 [main] TRACE AbstractWordWriter - replacing hyperlink [294397 - 294418] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:09,749 [main] TRACE AbstractWordWriter - replacing hyperlink [294473 - 294500] HYPERLINK GSEandSVCommon, UML117... +2024-09-08 08:32:09,814 [main] TRACE AbstractWordWriter - replacing hyperlink [294955 - 294977] HYPERLINK CharString, UML59... +2024-09-08 08:32:09,879 [main] TRACE AbstractWordWriter - replacing hyperlink [295079 - 295096] HYPERLINK CntRs, UML67... +2024-09-08 08:32:09,949 [main] TRACE AbstractWordWriter - replacing hyperlink [295174 - 295195] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:10,018 [main] TRACE AbstractWordWriter - replacing hyperlink [295431 - 295452] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:10,090 [main] TRACE AbstractWordWriter - replacing hyperlink [295567 - 295587] HYPERLINK Floating, UML56... +2024-09-08 08:32:10,161 [main] TRACE AbstractWordWriter - replacing hyperlink [295716 - 295738] HYPERLINK CharString, UML59... +2024-09-08 08:32:10,233 [main] TRACE AbstractWordWriter - replacing hyperlink [295828 - 295852] HYPERLINK CharStringTs, UML60... +2024-09-08 08:32:10,298 [main] TRACE AbstractWordWriter - replacing hyperlink [295959 - 295980] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:10,368 [main] TRACE AbstractWordWriter - replacing hyperlink [296035 - 296062] HYPERLINK GSEandSVCommon, UML117... +2024-09-08 08:32:10,445 [main] TRACE AbstractWordWriter - replacing hyperlink [296113 - 296134] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:10,512 [main] TRACE AbstractWordWriter - replacing hyperlink [296189 - 296216] HYPERLINK GSEandSVCommon, UML117... +2024-09-08 08:32:10,585 [main] TRACE AbstractWordWriter - replacing hyperlink [296273 - 296294] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:10,663 [main] TRACE AbstractWordWriter - replacing hyperlink [296349 - 296376] HYPERLINK GSEandSVCommon, UML117... +2024-09-08 08:32:10,728 [main] TRACE AbstractWordWriter - replacing hyperlink [297211 - 297228] HYPERLINK CntRs, UML67... +2024-09-08 08:32:10,804 [main] TRACE AbstractWordWriter - replacing hyperlink [297313 - 297334] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:10,871 [main] TRACE AbstractWordWriter - replacing hyperlink [297440 - 297461] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:10,940 [main] TRACE AbstractWordWriter - replacing hyperlink [297592 - 297629] HYPERLINK SVPublisherAssociationIP, UML119... +2024-09-08 08:32:11,001 [main] TRACE AbstractWordWriter - replacing hyperlink [297800 - 297837] HYPERLINK SVPublisherAssociationL2, UML120... +2024-09-08 08:32:11,071 [main] TRACE AbstractWordWriter - replacing hyperlink [298033 - 298060] HYPERLINK SVNotification, UML130... +2024-09-08 08:32:11,140 [main] TRACE AbstractWordWriter - replacing hyperlink [298147 - 298184] HYPERLINK SVSubcriberAssociationIP, UML124... +2024-09-08 08:32:11,211 [main] TRACE AbstractWordWriter - replacing hyperlink [298356 - 298393] HYPERLINK SVSubcriberAssociationL2, UML125... +2024-09-08 08:32:11,279 [main] TRACE AbstractWordWriter - replacing hyperlink [298587 - 298608] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:11,354 [main] TRACE AbstractWordWriter - replacing hyperlink [298663 - 298690] HYPERLINK GSEandSVCommon, UML117... +2024-09-08 08:32:11,428 [main] TRACE AbstractWordWriter - replacing hyperlink [298741 - 298762] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:11,497 [main] TRACE AbstractWordWriter - replacing hyperlink [298817 - 298844] HYPERLINK GSEandSVCommon, UML117... +2024-09-08 08:32:11,562 [main] TRACE AbstractWordWriter - replacing hyperlink [298901 - 298922] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:11,628 [main] TRACE AbstractWordWriter - replacing hyperlink [298977 - 299004] HYPERLINK GSEandSVCommon, UML117... +2024-09-08 08:32:11,703 [main] TRACE AbstractWordWriter - replacing hyperlink [299548 - 299571] HYPERLINK InetAddress, UML65... +2024-09-08 08:32:11,775 [main] TRACE AbstractWordWriter - replacing hyperlink [299654 - 299681] HYPERLINK InetAddressType, UML64... +2024-09-08 08:32:11,842 [main] TRACE AbstractWordWriter - replacing hyperlink [299762 - 299784] HYPERLINK CharString, UML59... +2024-09-08 08:32:11,907 [main] TRACE AbstractWordWriter - replacing hyperlink [299837 - 299878] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-08 08:32:11,978 [main] TRACE AbstractWordWriter - replacing hyperlink [299934 - 299951] HYPERLINK CntRs, UML67... +2024-09-08 08:32:12,040 [main] TRACE AbstractWordWriter - replacing hyperlink [300002 - 300043] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-08 08:32:12,109 [main] TRACE AbstractWordWriter - replacing hyperlink [300099 - 300120] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:12,180 [main] TRACE AbstractWordWriter - replacing hyperlink [300175 - 300216] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-08 08:32:12,250 [main] TRACE AbstractWordWriter - replacing hyperlink [300272 - 300294] HYPERLINK CharString, UML59... +2024-09-08 08:32:12,320 [main] TRACE AbstractWordWriter - replacing hyperlink [300350 - 300391] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-08 08:32:12,393 [main] TRACE AbstractWordWriter - replacing hyperlink [300456 - 300476] HYPERLINK Floating, UML56... +2024-09-08 08:32:12,470 [main] TRACE AbstractWordWriter - replacing hyperlink [300530 - 300571] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-08 08:32:12,539 [main] TRACE AbstractWordWriter - replacing hyperlink [300639 - 300660] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:12,607 [main] TRACE AbstractWordWriter - replacing hyperlink [300715 - 300742] HYPERLINK GSEandSVCommon, UML117... +2024-09-08 08:32:12,674 [main] TRACE AbstractWordWriter - replacing hyperlink [300793 - 300814] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:12,752 [main] TRACE AbstractWordWriter - replacing hyperlink [300869 - 300896] HYPERLINK GSEandSVCommon, UML117... +2024-09-08 08:32:12,816 [main] TRACE AbstractWordWriter - replacing hyperlink [300953 - 300974] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:12,882 [main] TRACE AbstractWordWriter - replacing hyperlink [301029 - 301056] HYPERLINK GSEandSVCommon, UML117... +2024-09-08 08:32:12,950 [main] TRACE AbstractWordWriter - replacing hyperlink [301608 - 301630] HYPERLINK MacAddress, UML63... +2024-09-08 08:32:13,021 [main] TRACE AbstractWordWriter - replacing hyperlink [301758 - 301780] HYPERLINK CharString, UML59... +2024-09-08 08:32:13,088 [main] TRACE AbstractWordWriter - replacing hyperlink [301833 - 301874] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-08 08:32:13,151 [main] TRACE AbstractWordWriter - replacing hyperlink [301930 - 301947] HYPERLINK CntRs, UML67... +2024-09-08 08:32:13,224 [main] TRACE AbstractWordWriter - replacing hyperlink [301998 - 302039] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-08 08:32:13,291 [main] TRACE AbstractWordWriter - replacing hyperlink [302095 - 302116] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:13,359 [main] TRACE AbstractWordWriter - replacing hyperlink [302171 - 302212] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-08 08:32:13,432 [main] TRACE AbstractWordWriter - replacing hyperlink [302268 - 302290] HYPERLINK CharString, UML59... +2024-09-08 08:32:13,500 [main] TRACE AbstractWordWriter - replacing hyperlink [302346 - 302387] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-08 08:32:13,566 [main] TRACE AbstractWordWriter - replacing hyperlink [302452 - 302472] HYPERLINK Floating, UML56... +2024-09-08 08:32:13,632 [main] TRACE AbstractWordWriter - replacing hyperlink [302526 - 302567] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-08 08:32:13,697 [main] TRACE AbstractWordWriter - replacing hyperlink [302635 - 302656] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:13,767 [main] TRACE AbstractWordWriter - replacing hyperlink [302711 - 302738] HYPERLINK GSEandSVCommon, UML117... +2024-09-08 08:32:13,840 [main] TRACE AbstractWordWriter - replacing hyperlink [302789 - 302810] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:13,908 [main] TRACE AbstractWordWriter - replacing hyperlink [302865 - 302892] HYPERLINK GSEandSVCommon, UML117... +2024-09-08 08:32:13,973 [main] TRACE AbstractWordWriter - replacing hyperlink [302949 - 302970] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:14,038 [main] TRACE AbstractWordWriter - replacing hyperlink [303025 - 303052] HYPERLINK GSEandSVCommon, UML117... +2024-09-08 08:32:14,108 [main] TRACE AbstractWordWriter - replacing hyperlink [303595 - 303618] HYPERLINK InetAddress, UML65... +2024-09-08 08:32:14,174 [main] TRACE AbstractWordWriter - replacing hyperlink [303695 - 303722] HYPERLINK InetAddressType, UML64... +2024-09-08 08:32:14,248 [main] TRACE AbstractWordWriter - replacing hyperlink [303803 - 303825] HYPERLINK CharString, UML59... +2024-09-08 08:32:14,318 [main] TRACE AbstractWordWriter - replacing hyperlink [303878 - 303920] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-08 08:32:14,390 [main] TRACE AbstractWordWriter - replacing hyperlink [303977 - 303994] HYPERLINK CntRs, UML67... +2024-09-08 08:32:14,466 [main] TRACE AbstractWordWriter - replacing hyperlink [304045 - 304087] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-08 08:32:14,534 [main] TRACE AbstractWordWriter - replacing hyperlink [304146 - 304167] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:14,604 [main] TRACE AbstractWordWriter - replacing hyperlink [304222 - 304264] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-08 08:32:14,670 [main] TRACE AbstractWordWriter - replacing hyperlink [304339 - 304360] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:14,736 [main] TRACE AbstractWordWriter - replacing hyperlink [304415 - 304457] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-08 08:32:14,807 [main] TRACE AbstractWordWriter - replacing hyperlink [304523 - 304543] HYPERLINK Floating, UML56... +2024-09-08 08:32:14,881 [main] TRACE AbstractWordWriter - replacing hyperlink [304597 - 304639] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-08 08:32:14,953 [main] TRACE AbstractWordWriter - replacing hyperlink [304696 - 304718] HYPERLINK CharString, UML59... +2024-09-08 08:32:15,022 [main] TRACE AbstractWordWriter - replacing hyperlink [304774 - 304816] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-08 08:32:15,090 [main] TRACE AbstractWordWriter - replacing hyperlink [304875 - 304899] HYPERLINK CharStringTs, UML60... +2024-09-08 08:32:15,160 [main] TRACE AbstractWordWriter - replacing hyperlink [304957 - 304999] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-08 08:32:15,228 [main] TRACE AbstractWordWriter - replacing hyperlink [305068 - 305089] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:15,298 [main] TRACE AbstractWordWriter - replacing hyperlink [305144 - 305171] HYPERLINK GSEandSVCommon, UML117... +2024-09-08 08:32:15,370 [main] TRACE AbstractWordWriter - replacing hyperlink [305222 - 305243] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:15,444 [main] TRACE AbstractWordWriter - replacing hyperlink [305298 - 305325] HYPERLINK GSEandSVCommon, UML117... +2024-09-08 08:32:15,511 [main] TRACE AbstractWordWriter - replacing hyperlink [305382 - 305403] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:15,582 [main] TRACE AbstractWordWriter - replacing hyperlink [305458 - 305485] HYPERLINK GSEandSVCommon, UML117... +2024-09-08 08:32:15,648 [main] TRACE AbstractWordWriter - replacing hyperlink [306036 - 306058] HYPERLINK MacAddress, UML63... +2024-09-08 08:32:15,713 [main] TRACE AbstractWordWriter - replacing hyperlink [306186 - 306208] HYPERLINK CharString, UML59... +2024-09-08 08:32:15,791 [main] TRACE AbstractWordWriter - replacing hyperlink [306261 - 306303] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-08 08:32:15,866 [main] TRACE AbstractWordWriter - replacing hyperlink [306360 - 306377] HYPERLINK CntRs, UML67... +2024-09-08 08:32:15,937 [main] TRACE AbstractWordWriter - replacing hyperlink [306428 - 306470] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-08 08:32:16,010 [main] TRACE AbstractWordWriter - replacing hyperlink [306529 - 306550] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:16,075 [main] TRACE AbstractWordWriter - replacing hyperlink [306605 - 306647] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-08 08:32:16,148 [main] TRACE AbstractWordWriter - replacing hyperlink [306722 - 306743] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:16,216 [main] TRACE AbstractWordWriter - replacing hyperlink [306798 - 306840] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-08 08:32:16,282 [main] TRACE AbstractWordWriter - replacing hyperlink [306906 - 306926] HYPERLINK Floating, UML56... +2024-09-08 08:32:16,347 [main] TRACE AbstractWordWriter - replacing hyperlink [306980 - 307022] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-08 08:32:16,412 [main] TRACE AbstractWordWriter - replacing hyperlink [307079 - 307101] HYPERLINK CharString, UML59... +2024-09-08 08:32:16,478 [main] TRACE AbstractWordWriter - replacing hyperlink [307157 - 307199] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-08 08:32:16,553 [main] TRACE AbstractWordWriter - replacing hyperlink [307258 - 307282] HYPERLINK CharStringTs, UML60... +2024-09-08 08:32:16,625 [main] TRACE AbstractWordWriter - replacing hyperlink [307340 - 307382] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-08 08:32:16,702 [main] TRACE AbstractWordWriter - replacing hyperlink [307451 - 307472] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:16,765 [main] TRACE AbstractWordWriter - replacing hyperlink [307527 - 307554] HYPERLINK GSEandSVCommon, UML117... +2024-09-08 08:32:16,834 [main] TRACE AbstractWordWriter - replacing hyperlink [307605 - 307626] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:16,900 [main] TRACE AbstractWordWriter - replacing hyperlink [307681 - 307708] HYPERLINK GSEandSVCommon, UML117... +2024-09-08 08:32:16,972 [main] TRACE AbstractWordWriter - replacing hyperlink [307765 - 307786] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:17,048 [main] TRACE AbstractWordWriter - replacing hyperlink [307841 - 307868] HYPERLINK GSEandSVCommon, UML117... +2024-09-08 08:32:17,113 [main] TRACE AbstractWordWriter - replacing hyperlink [308262 - 308283] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:17,177 [main] TRACE AbstractWordWriter - replacing hyperlink [308338 - 308365] HYPERLINK GSEandSVCommon, UML117... +2024-09-08 08:32:17,241 [main] TRACE AbstractWordWriter - replacing hyperlink [308416 - 308437] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:17,309 [main] TRACE AbstractWordWriter - replacing hyperlink [308492 - 308519] HYPERLINK GSEandSVCommon, UML117... +2024-09-08 08:32:17,378 [main] TRACE AbstractWordWriter - replacing hyperlink [308576 - 308597] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:17,453 [main] TRACE AbstractWordWriter - replacing hyperlink [308652 - 308679] HYPERLINK GSEandSVCommon, UML117... +2024-09-08 08:32:17,527 [main] TRACE AbstractWordWriter - replacing hyperlink [309556 - 309580] HYPERLINK BooleanValue, UML52... +2024-09-08 08:32:17,594 [main] TRACE AbstractWordWriter - replacing hyperlink [309724 - 309748] HYPERLINK BooleanValue, UML52... +2024-09-08 08:32:17,663 [main] TRACE AbstractWordWriter - replacing hyperlink [309829 - 309848] HYPERLINK Integer, UML53... +2024-09-08 08:32:17,734 [main] TRACE AbstractWordWriter - replacing hyperlink [309942 - 309963] HYPERLINK IntegerTs, UML58... +2024-09-08 08:32:17,803 [main] TRACE AbstractWordWriter - replacing hyperlink [310106 - 310127] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:17,878 [main] TRACE AbstractWordWriter - replacing hyperlink [310242 - 310263] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:17,949 [main] TRACE AbstractWordWriter - replacing hyperlink [310374 - 310400] HYPERLINK BooleanValueTs, UML54... +2024-09-08 08:32:18,024 [main] TRACE AbstractWordWriter - replacing hyperlink [310721 - 310743] HYPERLINK CharString, UML59... +2024-09-08 08:32:18,104 [main] TRACE AbstractWordWriter - replacing hyperlink [310795 - 310819] HYPERLINK CharStringTs, UML60... +2024-09-08 08:32:18,175 [main] TRACE AbstractWordWriter - replacing hyperlink [310869 - 310891] HYPERLINK CharString, UML59... +2024-09-08 08:32:18,241 [main] TRACE AbstractWordWriter - replacing hyperlink [310974 - 310998] HYPERLINK CharStringTs, UML60... +2024-09-08 08:32:18,318 [main] TRACE AbstractWordWriter - replacing hyperlink [311087 - 311108] HYPERLINK IntegerTs, UML58... +2024-09-08 08:32:18,397 [main] TRACE AbstractWordWriter - replacing hyperlink [311211 - 311232] HYPERLINK IntegerTs, UML58... +2024-09-08 08:32:18,482 [main] TRACE AbstractWordWriter - replacing hyperlink [311341 - 311362] HYPERLINK IntegerTs, UML58... +2024-09-08 08:32:18,557 [main] TRACE AbstractWordWriter - replacing hyperlink [311443 - 311464] HYPERLINK IntegerTs, UML58... +2024-09-08 08:32:18,625 [main] TRACE AbstractWordWriter - replacing hyperlink [311537 - 311558] HYPERLINK Timestamp, UML61... +2024-09-08 08:32:18,692 [main] TRACE AbstractWordWriter - replacing hyperlink [311606 - 311628] HYPERLINK CharString, UML59... +2024-09-08 08:32:18,756 [main] TRACE AbstractWordWriter - replacing hyperlink [311681 - 311723] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-08 08:32:18,821 [main] TRACE AbstractWordWriter - replacing hyperlink [311780 - 311797] HYPERLINK CntRs, UML67... +2024-09-08 08:32:18,890 [main] TRACE AbstractWordWriter - replacing hyperlink [311848 - 311890] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-08 08:32:18,963 [main] TRACE AbstractWordWriter - replacing hyperlink [311949 - 311970] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:19,034 [main] TRACE AbstractWordWriter - replacing hyperlink [312025 - 312067] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-08 08:32:19,110 [main] TRACE AbstractWordWriter - replacing hyperlink [312142 - 312163] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:19,188 [main] TRACE AbstractWordWriter - replacing hyperlink [312218 - 312260] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-08 08:32:19,259 [main] TRACE AbstractWordWriter - replacing hyperlink [312326 - 312346] HYPERLINK Floating, UML56... +2024-09-08 08:32:19,324 [main] TRACE AbstractWordWriter - replacing hyperlink [312400 - 312442] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-08 08:32:19,390 [main] TRACE AbstractWordWriter - replacing hyperlink [312499 - 312521] HYPERLINK CharString, UML59... +2024-09-08 08:32:19,458 [main] TRACE AbstractWordWriter - replacing hyperlink [312577 - 312619] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-08 08:32:19,527 [main] TRACE AbstractWordWriter - replacing hyperlink [312678 - 312702] HYPERLINK CharStringTs, UML60... +2024-09-08 08:32:19,595 [main] TRACE AbstractWordWriter - replacing hyperlink [312760 - 312802] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-08 08:32:19,661 [main] TRACE AbstractWordWriter - replacing hyperlink [312871 - 312892] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:19,730 [main] TRACE AbstractWordWriter - replacing hyperlink [312947 - 312974] HYPERLINK GSEandSVCommon, UML117... +2024-09-08 08:32:19,800 [main] TRACE AbstractWordWriter - replacing hyperlink [313025 - 313046] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:19,864 [main] TRACE AbstractWordWriter - replacing hyperlink [313101 - 313128] HYPERLINK GSEandSVCommon, UML117... +2024-09-08 08:32:19,930 [main] TRACE AbstractWordWriter - replacing hyperlink [313185 - 313206] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:20,003 [main] TRACE AbstractWordWriter - replacing hyperlink [313261 - 313288] HYPERLINK GSEandSVCommon, UML117... +2024-09-08 08:32:20,067 [main] TRACE AbstractWordWriter - replacing hyperlink [313677 - 313694] HYPERLINK CntRs, UML67... +2024-09-08 08:32:20,140 [main] TRACE AbstractWordWriter - replacing hyperlink [313779 - 313800] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:20,215 [main] TRACE AbstractWordWriter - replacing hyperlink [313903 - 313924] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:20,288 [main] TRACE AbstractWordWriter - replacing hyperlink [314099 - 314120] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:20,356 [main] TRACE AbstractWordWriter - replacing hyperlink [314240 - 314278] HYPERLINK GSEPublisherAssociationIP, UML121... +2024-09-08 08:32:20,426 [main] TRACE AbstractWordWriter - replacing hyperlink [314451 - 314489] HYPERLINK GSEPublisherAssociationL2, UML122... +2024-09-08 08:32:20,500 [main] TRACE AbstractWordWriter - replacing hyperlink [314687 - 314715] HYPERLINK GSENotification, UML132... +2024-09-08 08:32:20,568 [main] TRACE AbstractWordWriter - replacing hyperlink [314803 - 314841] HYPERLINK GSESubcriberAssociationIP, UML127... +2024-09-08 08:32:20,637 [main] TRACE AbstractWordWriter - replacing hyperlink [315015 - 315053] HYPERLINK GSESubcriberAssociationL2, UML128... +2024-09-08 08:32:20,703 [main] TRACE AbstractWordWriter - replacing hyperlink [315249 - 315270] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:20,768 [main] TRACE AbstractWordWriter - replacing hyperlink [315325 - 315352] HYPERLINK GSEandSVCommon, UML117... +2024-09-08 08:32:20,841 [main] TRACE AbstractWordWriter - replacing hyperlink [315403 - 315424] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:20,908 [main] TRACE AbstractWordWriter - replacing hyperlink [315479 - 315506] HYPERLINK GSEandSVCommon, UML117... +2024-09-08 08:32:20,979 [main] TRACE AbstractWordWriter - replacing hyperlink [315563 - 315584] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:21,052 [main] TRACE AbstractWordWriter - replacing hyperlink [315639 - 315666] HYPERLINK GSEandSVCommon, UML117... +2024-09-08 08:32:21,119 [main] TRACE AbstractWordWriter - replacing hyperlink [316215 - 316238] HYPERLINK InetAddress, UML65... +2024-09-08 08:32:21,187 [main] TRACE AbstractWordWriter - replacing hyperlink [316321 - 316348] HYPERLINK InetAddressType, UML64... +2024-09-08 08:32:21,260 [main] TRACE AbstractWordWriter - replacing hyperlink [316429 - 316451] HYPERLINK CharString, UML59... +2024-09-08 08:32:21,327 [main] TRACE AbstractWordWriter - replacing hyperlink [316504 - 316545] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-08 08:32:21,399 [main] TRACE AbstractWordWriter - replacing hyperlink [316601 - 316618] HYPERLINK CntRs, UML67... +2024-09-08 08:32:21,467 [main] TRACE AbstractWordWriter - replacing hyperlink [316669 - 316710] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-08 08:32:21,540 [main] TRACE AbstractWordWriter - replacing hyperlink [316766 - 316787] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:21,610 [main] TRACE AbstractWordWriter - replacing hyperlink [316842 - 316883] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-08 08:32:21,679 [main] TRACE AbstractWordWriter - replacing hyperlink [316939 - 316961] HYPERLINK CharString, UML59... +2024-09-08 08:32:21,757 [main] TRACE AbstractWordWriter - replacing hyperlink [317017 - 317058] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-08 08:32:21,822 [main] TRACE AbstractWordWriter - replacing hyperlink [317123 - 317143] HYPERLINK Floating, UML56... +2024-09-08 08:32:21,894 [main] TRACE AbstractWordWriter - replacing hyperlink [317197 - 317238] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-08 08:32:21,962 [main] TRACE AbstractWordWriter - replacing hyperlink [317306 - 317327] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:22,036 [main] TRACE AbstractWordWriter - replacing hyperlink [317382 - 317409] HYPERLINK GSEandSVCommon, UML117... +2024-09-08 08:32:22,109 [main] TRACE AbstractWordWriter - replacing hyperlink [317460 - 317481] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:22,186 [main] TRACE AbstractWordWriter - replacing hyperlink [317536 - 317563] HYPERLINK GSEandSVCommon, UML117... +2024-09-08 08:32:22,257 [main] TRACE AbstractWordWriter - replacing hyperlink [317620 - 317641] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:22,328 [main] TRACE AbstractWordWriter - replacing hyperlink [317696 - 317723] HYPERLINK GSEandSVCommon, UML117... +2024-09-08 08:32:22,404 [main] TRACE AbstractWordWriter - replacing hyperlink [318280 - 318302] HYPERLINK MacAddress, UML63... +2024-09-08 08:32:22,473 [main] TRACE AbstractWordWriter - replacing hyperlink [318435 - 318457] HYPERLINK MacAddress, UML63... +2024-09-08 08:32:22,549 [main] TRACE AbstractWordWriter - replacing hyperlink [318585 - 318607] HYPERLINK CharString, UML59... +2024-09-08 08:32:22,613 [main] TRACE AbstractWordWriter - replacing hyperlink [318660 - 318701] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-08 08:32:22,680 [main] TRACE AbstractWordWriter - replacing hyperlink [318757 - 318774] HYPERLINK CntRs, UML67... +2024-09-08 08:32:22,750 [main] TRACE AbstractWordWriter - replacing hyperlink [318825 - 318866] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-08 08:32:22,816 [main] TRACE AbstractWordWriter - replacing hyperlink [318922 - 318943] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:22,881 [main] TRACE AbstractWordWriter - replacing hyperlink [318998 - 319039] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-08 08:32:22,959 [main] TRACE AbstractWordWriter - replacing hyperlink [319095 - 319117] HYPERLINK CharString, UML59... +2024-09-08 08:32:23,027 [main] TRACE AbstractWordWriter - replacing hyperlink [319173 - 319214] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-08 08:32:23,095 [main] TRACE AbstractWordWriter - replacing hyperlink [319279 - 319299] HYPERLINK Floating, UML56... +2024-09-08 08:32:23,167 [main] TRACE AbstractWordWriter - replacing hyperlink [319353 - 319394] HYPERLINK GSEandSVPublisherAssociation, UML118... +2024-09-08 08:32:23,235 [main] TRACE AbstractWordWriter - replacing hyperlink [319462 - 319483] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:23,307 [main] TRACE AbstractWordWriter - replacing hyperlink [319538 - 319565] HYPERLINK GSEandSVCommon, UML117... +2024-09-08 08:32:23,383 [main] TRACE AbstractWordWriter - replacing hyperlink [319616 - 319637] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:23,456 [main] TRACE AbstractWordWriter - replacing hyperlink [319692 - 319719] HYPERLINK GSEandSVCommon, UML117... +2024-09-08 08:32:23,526 [main] TRACE AbstractWordWriter - replacing hyperlink [319776 - 319797] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:23,596 [main] TRACE AbstractWordWriter - replacing hyperlink [319852 - 319879] HYPERLINK GSEandSVCommon, UML117... +2024-09-08 08:32:23,667 [main] TRACE AbstractWordWriter - replacing hyperlink [320427 - 320450] HYPERLINK InetAddress, UML65... +2024-09-08 08:32:23,741 [main] TRACE AbstractWordWriter - replacing hyperlink [320529 - 320556] HYPERLINK InetAddressType, UML64... +2024-09-08 08:32:23,809 [main] TRACE AbstractWordWriter - replacing hyperlink [320642 - 320666] HYPERLINK BooleanValue, UML52... +2024-09-08 08:32:23,876 [main] TRACE AbstractWordWriter - replacing hyperlink [320724 - 320761] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-08 08:32:23,952 [main] TRACE AbstractWordWriter - replacing hyperlink [320815 - 320839] HYPERLINK BooleanValue, UML52... +2024-09-08 08:32:24,026 [main] TRACE AbstractWordWriter - replacing hyperlink [320897 - 320934] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-08 08:32:24,094 [main] TRACE AbstractWordWriter - replacing hyperlink [320988 - 321007] HYPERLINK Integer, UML53... +2024-09-08 08:32:24,167 [main] TRACE AbstractWordWriter - replacing hyperlink [321060 - 321097] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-08 08:32:24,243 [main] TRACE AbstractWordWriter - replacing hyperlink [321153 - 321174] HYPERLINK IntegerTs, UML58... +2024-09-08 08:32:24,309 [main] TRACE AbstractWordWriter - replacing hyperlink [321229 - 321266] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-08 08:32:24,375 [main] TRACE AbstractWordWriter - replacing hyperlink [321322 - 321343] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:24,442 [main] TRACE AbstractWordWriter - replacing hyperlink [321398 - 321435] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-08 08:32:24,521 [main] TRACE AbstractWordWriter - replacing hyperlink [321491 - 321512] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:24,588 [main] TRACE AbstractWordWriter - replacing hyperlink [321567 - 321604] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-08 08:32:24,659 [main] TRACE AbstractWordWriter - replacing hyperlink [321659 - 321685] HYPERLINK BooleanValueTs, UML54... +2024-09-08 08:32:24,733 [main] TRACE AbstractWordWriter - replacing hyperlink [321745 - 321782] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-08 08:32:24,802 [main] TRACE AbstractWordWriter - replacing hyperlink [321835 - 321857] HYPERLINK CharString, UML59... +2024-09-08 08:32:24,869 [main] TRACE AbstractWordWriter - replacing hyperlink [321913 - 321950] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-08 08:32:24,935 [main] TRACE AbstractWordWriter - replacing hyperlink [322005 - 322029] HYPERLINK CharStringTs, UML60... +2024-09-08 08:32:25,007 [main] TRACE AbstractWordWriter - replacing hyperlink [322087 - 322124] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-08 08:32:25,077 [main] TRACE AbstractWordWriter - replacing hyperlink [322175 - 322197] HYPERLINK CharString, UML59... +2024-09-08 08:32:25,146 [main] TRACE AbstractWordWriter - replacing hyperlink [322253 - 322290] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-08 08:32:25,209 [main] TRACE AbstractWordWriter - replacing hyperlink [322343 - 322367] HYPERLINK CharStringTs, UML60... +2024-09-08 08:32:25,276 [main] TRACE AbstractWordWriter - replacing hyperlink [322425 - 322462] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-08 08:32:25,351 [main] TRACE AbstractWordWriter - replacing hyperlink [322514 - 322535] HYPERLINK IntegerTs, UML58... +2024-09-08 08:32:25,420 [main] TRACE AbstractWordWriter - replacing hyperlink [322590 - 322627] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-08 08:32:25,488 [main] TRACE AbstractWordWriter - replacing hyperlink [322679 - 322700] HYPERLINK IntegerTs, UML58... +2024-09-08 08:32:25,567 [main] TRACE AbstractWordWriter - replacing hyperlink [322755 - 322792] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-08 08:32:25,637 [main] TRACE AbstractWordWriter - replacing hyperlink [322850 - 322871] HYPERLINK IntegerTs, UML58... +2024-09-08 08:32:25,706 [main] TRACE AbstractWordWriter - replacing hyperlink [322926 - 322963] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-08 08:32:25,783 [main] TRACE AbstractWordWriter - replacing hyperlink [323021 - 323042] HYPERLINK IntegerTs, UML58... +2024-09-08 08:32:25,856 [main] TRACE AbstractWordWriter - replacing hyperlink [323097 - 323134] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-08 08:32:25,930 [main] TRACE AbstractWordWriter - replacing hyperlink [323184 - 323205] HYPERLINK Timestamp, UML61... +2024-09-08 08:32:25,996 [main] TRACE AbstractWordWriter - replacing hyperlink [323260 - 323297] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-08 08:32:26,066 [main] TRACE AbstractWordWriter - replacing hyperlink [323349 - 323371] HYPERLINK CharString, UML59... +2024-09-08 08:32:26,140 [main] TRACE AbstractWordWriter - replacing hyperlink [323424 - 323466] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-08 08:32:26,205 [main] TRACE AbstractWordWriter - replacing hyperlink [323523 - 323540] HYPERLINK CntRs, UML67... +2024-09-08 08:32:26,271 [main] TRACE AbstractWordWriter - replacing hyperlink [323591 - 323633] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-08 08:32:26,339 [main] TRACE AbstractWordWriter - replacing hyperlink [323692 - 323713] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:26,405 [main] TRACE AbstractWordWriter - replacing hyperlink [323768 - 323810] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-08 08:32:26,470 [main] TRACE AbstractWordWriter - replacing hyperlink [323885 - 323906] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:26,535 [main] TRACE AbstractWordWriter - replacing hyperlink [323961 - 324003] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-08 08:32:26,608 [main] TRACE AbstractWordWriter - replacing hyperlink [324069 - 324089] HYPERLINK Floating, UML56... +2024-09-08 08:32:26,681 [main] TRACE AbstractWordWriter - replacing hyperlink [324143 - 324185] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-08 08:32:26,753 [main] TRACE AbstractWordWriter - replacing hyperlink [324242 - 324264] HYPERLINK CharString, UML59... +2024-09-08 08:32:26,822 [main] TRACE AbstractWordWriter - replacing hyperlink [324320 - 324362] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-08 08:32:26,893 [main] TRACE AbstractWordWriter - replacing hyperlink [324421 - 324445] HYPERLINK CharStringTs, UML60... +2024-09-08 08:32:26,958 [main] TRACE AbstractWordWriter - replacing hyperlink [324503 - 324545] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-08 08:32:27,023 [main] TRACE AbstractWordWriter - replacing hyperlink [324614 - 324635] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:27,101 [main] TRACE AbstractWordWriter - replacing hyperlink [324690 - 324717] HYPERLINK GSEandSVCommon, UML117... +2024-09-08 08:32:27,169 [main] TRACE AbstractWordWriter - replacing hyperlink [324768 - 324789] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:27,238 [main] TRACE AbstractWordWriter - replacing hyperlink [324844 - 324871] HYPERLINK GSEandSVCommon, UML117... +2024-09-08 08:32:27,304 [main] TRACE AbstractWordWriter - replacing hyperlink [324928 - 324949] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:27,384 [main] TRACE AbstractWordWriter - replacing hyperlink [325004 - 325031] HYPERLINK GSEandSVCommon, UML117... +2024-09-08 08:32:27,459 [main] TRACE AbstractWordWriter - replacing hyperlink [325587 - 325609] HYPERLINK MacAddress, UML63... +2024-09-08 08:32:27,531 [main] TRACE AbstractWordWriter - replacing hyperlink [325742 - 325764] HYPERLINK MacAddress, UML63... +2024-09-08 08:32:27,598 [main] TRACE AbstractWordWriter - replacing hyperlink [325897 - 325921] HYPERLINK BooleanValue, UML52... +2024-09-08 08:32:27,663 [main] TRACE AbstractWordWriter - replacing hyperlink [325979 - 326016] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-08 08:32:27,735 [main] TRACE AbstractWordWriter - replacing hyperlink [326070 - 326094] HYPERLINK BooleanValue, UML52... +2024-09-08 08:32:27,804 [main] TRACE AbstractWordWriter - replacing hyperlink [326152 - 326189] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-08 08:32:27,871 [main] TRACE AbstractWordWriter - replacing hyperlink [326243 - 326262] HYPERLINK Integer, UML53... +2024-09-08 08:32:27,941 [main] TRACE AbstractWordWriter - replacing hyperlink [326315 - 326352] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-08 08:32:28,006 [main] TRACE AbstractWordWriter - replacing hyperlink [326408 - 326429] HYPERLINK IntegerTs, UML58... +2024-09-08 08:32:28,073 [main] TRACE AbstractWordWriter - replacing hyperlink [326484 - 326521] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-08 08:32:28,149 [main] TRACE AbstractWordWriter - replacing hyperlink [326577 - 326598] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:28,222 [main] TRACE AbstractWordWriter - replacing hyperlink [326653 - 326690] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-08 08:32:28,290 [main] TRACE AbstractWordWriter - replacing hyperlink [326746 - 326767] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:28,360 [main] TRACE AbstractWordWriter - replacing hyperlink [326822 - 326859] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-08 08:32:28,431 [main] TRACE AbstractWordWriter - replacing hyperlink [326914 - 326940] HYPERLINK BooleanValueTs, UML54... +2024-09-08 08:32:28,510 [main] TRACE AbstractWordWriter - replacing hyperlink [327000 - 327037] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-08 08:32:28,581 [main] TRACE AbstractWordWriter - replacing hyperlink [327090 - 327112] HYPERLINK CharString, UML59... +2024-09-08 08:32:28,654 [main] TRACE AbstractWordWriter - replacing hyperlink [327168 - 327205] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-08 08:32:28,722 [main] TRACE AbstractWordWriter - replacing hyperlink [327260 - 327284] HYPERLINK CharStringTs, UML60... +2024-09-08 08:32:28,799 [main] TRACE AbstractWordWriter - replacing hyperlink [327342 - 327379] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-08 08:32:28,873 [main] TRACE AbstractWordWriter - replacing hyperlink [327430 - 327452] HYPERLINK CharString, UML59... +2024-09-08 08:32:28,949 [main] TRACE AbstractWordWriter - replacing hyperlink [327508 - 327545] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-08 08:32:29,022 [main] TRACE AbstractWordWriter - replacing hyperlink [327598 - 327622] HYPERLINK CharStringTs, UML60... +2024-09-08 08:32:29,090 [main] TRACE AbstractWordWriter - replacing hyperlink [327680 - 327717] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-08 08:32:29,166 [main] TRACE AbstractWordWriter - replacing hyperlink [327769 - 327790] HYPERLINK IntegerTs, UML58... +2024-09-08 08:32:29,240 [main] TRACE AbstractWordWriter - replacing hyperlink [327845 - 327882] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-08 08:32:29,307 [main] TRACE AbstractWordWriter - replacing hyperlink [327934 - 327955] HYPERLINK IntegerTs, UML58... +2024-09-08 08:32:29,380 [main] TRACE AbstractWordWriter - replacing hyperlink [328010 - 328047] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-08 08:32:29,460 [main] TRACE AbstractWordWriter - replacing hyperlink [328105 - 328126] HYPERLINK IntegerTs, UML58... +2024-09-08 08:32:29,529 [main] TRACE AbstractWordWriter - replacing hyperlink [328181 - 328218] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-08 08:32:29,598 [main] TRACE AbstractWordWriter - replacing hyperlink [328276 - 328297] HYPERLINK IntegerTs, UML58... +2024-09-08 08:32:29,670 [main] TRACE AbstractWordWriter - replacing hyperlink [328352 - 328389] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-08 08:32:29,738 [main] TRACE AbstractWordWriter - replacing hyperlink [328439 - 328460] HYPERLINK Timestamp, UML61... +2024-09-08 08:32:29,810 [main] TRACE AbstractWordWriter - replacing hyperlink [328515 - 328552] HYPERLINK GSESubscriberAssociation, UML126... +2024-09-08 08:32:29,883 [main] TRACE AbstractWordWriter - replacing hyperlink [328604 - 328626] HYPERLINK CharString, UML59... +2024-09-08 08:32:29,953 [main] TRACE AbstractWordWriter - replacing hyperlink [328679 - 328721] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-08 08:32:30,027 [main] TRACE AbstractWordWriter - replacing hyperlink [328778 - 328795] HYPERLINK CntRs, UML67... +2024-09-08 08:32:30,097 [main] TRACE AbstractWordWriter - replacing hyperlink [328846 - 328888] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-08 08:32:30,165 [main] TRACE AbstractWordWriter - replacing hyperlink [328947 - 328968] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:30,232 [main] TRACE AbstractWordWriter - replacing hyperlink [329023 - 329065] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-08 08:32:30,308 [main] TRACE AbstractWordWriter - replacing hyperlink [329140 - 329161] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:30,382 [main] TRACE AbstractWordWriter - replacing hyperlink [329216 - 329258] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-08 08:32:30,451 [main] TRACE AbstractWordWriter - replacing hyperlink [329324 - 329344] HYPERLINK Floating, UML56... +2024-09-08 08:32:30,523 [main] TRACE AbstractWordWriter - replacing hyperlink [329398 - 329440] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-08 08:32:30,596 [main] TRACE AbstractWordWriter - replacing hyperlink [329497 - 329519] HYPERLINK CharString, UML59... +2024-09-08 08:32:30,667 [main] TRACE AbstractWordWriter - replacing hyperlink [329575 - 329617] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-08 08:32:30,742 [main] TRACE AbstractWordWriter - replacing hyperlink [329676 - 329700] HYPERLINK CharStringTs, UML60... +2024-09-08 08:32:30,812 [main] TRACE AbstractWordWriter - replacing hyperlink [329758 - 329800] HYPERLINK GSEandSVSubscriberAssociation, UML123... +2024-09-08 08:32:30,891 [main] TRACE AbstractWordWriter - replacing hyperlink [329869 - 329890] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:30,966 [main] TRACE AbstractWordWriter - replacing hyperlink [329945 - 329972] HYPERLINK GSEandSVCommon, UML117... +2024-09-08 08:32:31,049 [main] TRACE AbstractWordWriter - replacing hyperlink [330023 - 330044] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:31,115 [main] TRACE AbstractWordWriter - replacing hyperlink [330099 - 330126] HYPERLINK GSEandSVCommon, UML117... +2024-09-08 08:32:31,185 [main] TRACE AbstractWordWriter - replacing hyperlink [330183 - 330204] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:31,248 [main] TRACE AbstractWordWriter - replacing hyperlink [330259 - 330286] HYPERLINK GSEandSVCommon, UML117... +2024-09-08 08:32:31,320 [main] TRACE AbstractWordWriter - replacing hyperlink [330684 - 330705] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:31,393 [main] TRACE AbstractWordWriter - replacing hyperlink [330760 - 330787] HYPERLINK GSEandSVCommon, UML117... +2024-09-08 08:32:31,459 [main] TRACE AbstractWordWriter - replacing hyperlink [330838 - 330859] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:31,526 [main] TRACE AbstractWordWriter - replacing hyperlink [330914 - 330941] HYPERLINK GSEandSVCommon, UML117... +2024-09-08 08:32:31,599 [main] TRACE AbstractWordWriter - replacing hyperlink [330998 - 331019] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:31,674 [main] TRACE AbstractWordWriter - replacing hyperlink [331074 - 331101] HYPERLINK GSEandSVCommon, UML117... +2024-09-08 08:32:31,745 [main] TRACE AbstractWordWriter - replacing hyperlink [331839 - 331862] HYPERLINK EntityIndex, UML66... +2024-09-08 08:32:31,818 [main] TRACE AbstractWordWriter - replacing hyperlink [331926 - 331948] HYPERLINK CharString, UML59... +2024-09-08 08:32:31,889 [main] TRACE AbstractWordWriter - replacing hyperlink [332023 - 332042] HYPERLINK IntType, UML71... +2024-09-08 08:32:31,963 [main] TRACE AbstractWordWriter - replacing hyperlink [332126 - 332152] HYPERLINK BooleanValueTs, UML54... +2024-09-08 08:32:32,030 [main] TRACE AbstractWordWriter - replacing hyperlink [332272 - 332298] HYPERLINK BooleanValueTs, UML54... +2024-09-08 08:32:32,100 [main] TRACE AbstractWordWriter - replacing hyperlink [332389 - 332415] HYPERLINK BooleanValueTs, UML54... +2024-09-08 08:32:32,166 [main] TRACE AbstractWordWriter - replacing hyperlink [332487 - 332504] HYPERLINK CntRs, UML67... +2024-09-08 08:32:32,241 [main] TRACE AbstractWordWriter - replacing hyperlink [332889 - 332908] HYPERLINK Integer, UML53... +2024-09-08 08:32:32,313 [main] TRACE AbstractWordWriter - replacing hyperlink [333013 - 333034] HYPERLINK IntegerTs, UML58... +2024-09-08 08:32:32,386 [main] TRACE AbstractWordWriter - replacing hyperlink [333133 - 333154] HYPERLINK IntegerTs, UML58... +2024-09-08 08:32:32,453 [main] TRACE AbstractWordWriter - replacing hyperlink [333255 - 333274] HYPERLINK Integer, UML53... +2024-09-08 08:32:32,523 [main] TRACE AbstractWordWriter - replacing hyperlink [333378 - 333399] HYPERLINK IntegerTs, UML58... +2024-09-08 08:32:32,593 [main] TRACE AbstractWordWriter - replacing hyperlink [333500 - 333521] HYPERLINK IntegerTs, UML58... +2024-09-08 08:32:32,672 [main] TRACE AbstractWordWriter - replacing hyperlink [333625 - 333644] HYPERLINK Integer, UML53... +2024-09-08 08:32:32,739 [main] TRACE AbstractWordWriter - replacing hyperlink [333748 - 333769] HYPERLINK IntegerTs, UML58... +2024-09-08 08:32:32,807 [main] TRACE AbstractWordWriter - replacing hyperlink [333870 - 333891] HYPERLINK IntegerTs, UML58... +2024-09-08 08:32:32,875 [main] TRACE AbstractWordWriter - replacing hyperlink [333995 - 334014] HYPERLINK Integer, UML53... +2024-09-08 08:32:32,942 [main] TRACE AbstractWordWriter - replacing hyperlink [334117 - 334138] HYPERLINK IntegerTs, UML58... +2024-09-08 08:32:33,018 [main] TRACE AbstractWordWriter - replacing hyperlink [334238 - 334259] HYPERLINK IntegerTs, UML58... +2024-09-08 08:32:33,090 [main] TRACE AbstractWordWriter - replacing hyperlink [334361 - 334380] HYPERLINK Integer, UML53... +2024-09-08 08:32:33,165 [main] TRACE AbstractWordWriter - replacing hyperlink [334495 - 334516] HYPERLINK IntegerTs, UML58... +2024-09-08 08:32:33,232 [main] TRACE AbstractWordWriter - replacing hyperlink [334628 - 334649] HYPERLINK IntegerTs, UML58... +2024-09-08 08:32:33,299 [main] TRACE AbstractWordWriter - replacing hyperlink [334761 - 334782] HYPERLINK SEREntry, UML139... +2024-09-08 08:32:33,367 [main] TRACE AbstractWordWriter - replacing hyperlink [334911 - 334932] HYPERLINK ETHEntry, UML137... +2024-09-08 08:32:33,430 [main] TRACE AbstractWordWriter - replacing hyperlink [335063 - 335084] HYPERLINK USBEntry, UML141... +2024-09-08 08:32:33,497 [main] TRACE AbstractWordWriter - replacing hyperlink [335210 - 335231] HYPERLINK KEYEntry, UML138... +2024-09-08 08:32:33,569 [main] TRACE AbstractWordWriter - replacing hyperlink [335362 - 335383] HYPERLINK ALGEntry, UML140... +2024-09-08 08:32:33,640 [main] TRACE AbstractWordWriter - replacing hyperlink [335525 - 335550] HYPERLINK Notification, UML143... +2024-09-08 08:32:33,712 [main] TRACE AbstractWordWriter - replacing hyperlink [335920 - 335943] HYPERLINK EntityIndex, UML66... +2024-09-08 08:32:33,777 [main] TRACE AbstractWordWriter - replacing hyperlink [335997 - 336019] HYPERLINK Interface, UML136... +2024-09-08 08:32:33,844 [main] TRACE AbstractWordWriter - replacing hyperlink [336056 - 336078] HYPERLINK CharString, UML59... +2024-09-08 08:32:33,918 [main] TRACE AbstractWordWriter - replacing hyperlink [336134 - 336156] HYPERLINK Interface, UML136... +2024-09-08 08:32:33,990 [main] TRACE AbstractWordWriter - replacing hyperlink [336195 - 336214] HYPERLINK IntType, UML71... +2024-09-08 08:32:34,063 [main] TRACE AbstractWordWriter - replacing hyperlink [336267 - 336289] HYPERLINK Interface, UML136... +2024-09-08 08:32:34,138 [main] TRACE AbstractWordWriter - replacing hyperlink [336329 - 336355] HYPERLINK BooleanValueTs, UML54... +2024-09-08 08:32:34,206 [main] TRACE AbstractWordWriter - replacing hyperlink [336413 - 336435] HYPERLINK Interface, UML136... +2024-09-08 08:32:34,275 [main] TRACE AbstractWordWriter - replacing hyperlink [336473 - 336499] HYPERLINK BooleanValueTs, UML54... +2024-09-08 08:32:34,344 [main] TRACE AbstractWordWriter - replacing hyperlink [336557 - 336579] HYPERLINK Interface, UML136... +2024-09-08 08:32:34,412 [main] TRACE AbstractWordWriter - replacing hyperlink [336617 - 336643] HYPERLINK BooleanValueTs, UML54... +2024-09-08 08:32:34,482 [main] TRACE AbstractWordWriter - replacing hyperlink [336701 - 336723] HYPERLINK Interface, UML136... +2024-09-08 08:32:34,555 [main] TRACE AbstractWordWriter - replacing hyperlink [336760 - 336777] HYPERLINK CntRs, UML67... +2024-09-08 08:32:34,631 [main] TRACE AbstractWordWriter - replacing hyperlink [336828 - 336850] HYPERLINK Interface, UML136... +2024-09-08 08:32:34,697 [main] TRACE AbstractWordWriter - replacing hyperlink [337184 - 337210] HYPERLINK BooleanValueTs, UML54... +2024-09-08 08:32:34,768 [main] TRACE AbstractWordWriter - replacing hyperlink [337307 - 337330] HYPERLINK EntityIndex, UML66... +2024-09-08 08:32:34,836 [main] TRACE AbstractWordWriter - replacing hyperlink [337384 - 337406] HYPERLINK Interface, UML136... +2024-09-08 08:32:34,903 [main] TRACE AbstractWordWriter - replacing hyperlink [337443 - 337465] HYPERLINK CharString, UML59... +2024-09-08 08:32:34,971 [main] TRACE AbstractWordWriter - replacing hyperlink [337521 - 337543] HYPERLINK Interface, UML136... +2024-09-08 08:32:35,042 [main] TRACE AbstractWordWriter - replacing hyperlink [337582 - 337601] HYPERLINK IntType, UML71... +2024-09-08 08:32:35,113 [main] TRACE AbstractWordWriter - replacing hyperlink [337654 - 337676] HYPERLINK Interface, UML136... +2024-09-08 08:32:35,193 [main] TRACE AbstractWordWriter - replacing hyperlink [337716 - 337742] HYPERLINK BooleanValueTs, UML54... +2024-09-08 08:32:35,260 [main] TRACE AbstractWordWriter - replacing hyperlink [337800 - 337822] HYPERLINK Interface, UML136... +2024-09-08 08:32:35,336 [main] TRACE AbstractWordWriter - replacing hyperlink [337860 - 337886] HYPERLINK BooleanValueTs, UML54... +2024-09-08 08:32:35,406 [main] TRACE AbstractWordWriter - replacing hyperlink [337944 - 337966] HYPERLINK Interface, UML136... +2024-09-08 08:32:35,476 [main] TRACE AbstractWordWriter - replacing hyperlink [338004 - 338030] HYPERLINK BooleanValueTs, UML54... +2024-09-08 08:32:35,545 [main] TRACE AbstractWordWriter - replacing hyperlink [338088 - 338110] HYPERLINK Interface, UML136... +2024-09-08 08:32:35,613 [main] TRACE AbstractWordWriter - replacing hyperlink [338147 - 338164] HYPERLINK CntRs, UML67... +2024-09-08 08:32:35,688 [main] TRACE AbstractWordWriter - replacing hyperlink [338215 - 338237] HYPERLINK Interface, UML136... +2024-09-08 08:32:35,762 [main] TRACE AbstractWordWriter - replacing hyperlink [338563 - 338584] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:35,836 [main] TRACE AbstractWordWriter - replacing hyperlink [338655 - 338676] HYPERLINK CounterTs, UML55... +2024-09-08 08:32:35,905 [main] TRACE AbstractWordWriter - replacing hyperlink [338743 - 338766] HYPERLINK EntityIndex, UML66... +2024-09-08 08:32:35,977 [main] TRACE AbstractWordWriter - replacing hyperlink [338820 - 338842] HYPERLINK Interface, UML136... +2024-09-08 08:32:36,047 [main] TRACE AbstractWordWriter - replacing hyperlink [338879 - 338901] HYPERLINK CharString, UML59... +2024-09-08 08:32:36,122 [main] TRACE AbstractWordWriter - replacing hyperlink [338957 - 338979] HYPERLINK Interface, UML136... +2024-09-08 08:32:36,200 [main] TRACE AbstractWordWriter - replacing hyperlink [339018 - 339037] HYPERLINK IntType, UML71... +2024-09-08 08:32:36,273 [main] TRACE AbstractWordWriter - replacing hyperlink [339090 - 339112] HYPERLINK Interface, UML136... +2024-09-08 08:32:36,335 [main] TRACE AbstractWordWriter - replacing hyperlink [339152 - 339178] HYPERLINK BooleanValueTs, UML54... +2024-09-08 08:32:36,403 [main] TRACE AbstractWordWriter - replacing hyperlink [339236 - 339258] HYPERLINK Interface, UML136... +2024-09-08 08:32:36,484 [main] TRACE AbstractWordWriter - replacing hyperlink [339296 - 339322] HYPERLINK BooleanValueTs, UML54... +2024-09-08 08:32:36,550 [main] TRACE AbstractWordWriter - replacing hyperlink [339380 - 339402] HYPERLINK Interface, UML136... +2024-09-08 08:32:36,621 [main] TRACE AbstractWordWriter - replacing hyperlink [339440 - 339466] HYPERLINK BooleanValueTs, UML54... +2024-09-08 08:32:36,697 [main] TRACE AbstractWordWriter - replacing hyperlink [339524 - 339546] HYPERLINK Interface, UML136... +2024-09-08 08:32:36,768 [main] TRACE AbstractWordWriter - replacing hyperlink [339583 - 339600] HYPERLINK CntRs, UML67... +2024-09-08 08:32:36,839 [main] TRACE AbstractWordWriter - replacing hyperlink [339651 - 339673] HYPERLINK Interface, UML136... +2024-09-08 08:32:36,909 [main] TRACE AbstractWordWriter - replacing hyperlink [339999 - 340022] HYPERLINK EntityIndex, UML66... +2024-09-08 08:32:36,979 [main] TRACE AbstractWordWriter - replacing hyperlink [340076 - 340098] HYPERLINK Interface, UML136... +2024-09-08 08:32:37,048 [main] TRACE AbstractWordWriter - replacing hyperlink [340135 - 340157] HYPERLINK CharString, UML59... +2024-09-08 08:32:37,113 [main] TRACE AbstractWordWriter - replacing hyperlink [340213 - 340235] HYPERLINK Interface, UML136... +2024-09-08 08:32:37,182 [main] TRACE AbstractWordWriter - replacing hyperlink [340274 - 340293] HYPERLINK IntType, UML71... +2024-09-08 08:32:37,250 [main] TRACE AbstractWordWriter - replacing hyperlink [340346 - 340368] HYPERLINK Interface, UML136... +2024-09-08 08:32:37,331 [main] TRACE AbstractWordWriter - replacing hyperlink [340408 - 340434] HYPERLINK BooleanValueTs, UML54... +2024-09-08 08:32:37,402 [main] TRACE AbstractWordWriter - replacing hyperlink [340492 - 340514] HYPERLINK Interface, UML136... +2024-09-08 08:32:37,481 [main] TRACE AbstractWordWriter - replacing hyperlink [340552 - 340578] HYPERLINK BooleanValueTs, UML54... +2024-09-08 08:32:37,555 [main] TRACE AbstractWordWriter - replacing hyperlink [340636 - 340658] HYPERLINK Interface, UML136... +2024-09-08 08:32:37,624 [main] TRACE AbstractWordWriter - replacing hyperlink [340696 - 340722] HYPERLINK BooleanValueTs, UML54... +2024-09-08 08:32:37,698 [main] TRACE AbstractWordWriter - replacing hyperlink [340780 - 340802] HYPERLINK Interface, UML136... +2024-09-08 08:32:37,776 [main] TRACE AbstractWordWriter - replacing hyperlink [340839 - 340856] HYPERLINK CntRs, UML67... +2024-09-08 08:32:37,843 [main] TRACE AbstractWordWriter - replacing hyperlink [340907 - 340929] HYPERLINK Interface, UML136... +2024-09-08 08:32:37,914 [main] TRACE AbstractWordWriter - replacing hyperlink [341251 - 341274] HYPERLINK EntityIndex, UML66... +2024-09-08 08:32:37,987 [main] TRACE AbstractWordWriter - replacing hyperlink [341328 - 341350] HYPERLINK Interface, UML136... +2024-09-08 08:32:38,059 [main] TRACE AbstractWordWriter - replacing hyperlink [341387 - 341409] HYPERLINK CharString, UML59... +2024-09-08 08:32:38,130 [main] TRACE AbstractWordWriter - replacing hyperlink [341465 - 341487] HYPERLINK Interface, UML136... +2024-09-08 08:32:38,195 [main] TRACE AbstractWordWriter - replacing hyperlink [341526 - 341545] HYPERLINK IntType, UML71... +2024-09-08 08:32:38,269 [main] TRACE AbstractWordWriter - replacing hyperlink [341598 - 341620] HYPERLINK Interface, UML136... +2024-09-08 08:32:38,339 [main] TRACE AbstractWordWriter - replacing hyperlink [341660 - 341686] HYPERLINK BooleanValueTs, UML54... +2024-09-08 08:32:38,417 [main] TRACE AbstractWordWriter - replacing hyperlink [341744 - 341766] HYPERLINK Interface, UML136... +2024-09-08 08:32:38,488 [main] TRACE AbstractWordWriter - replacing hyperlink [341804 - 341830] HYPERLINK BooleanValueTs, UML54... +2024-09-08 08:32:38,560 [main] TRACE AbstractWordWriter - replacing hyperlink [341888 - 341910] HYPERLINK Interface, UML136... +2024-09-08 08:32:38,633 [main] TRACE AbstractWordWriter - replacing hyperlink [341948 - 341974] HYPERLINK BooleanValueTs, UML54... +2024-09-08 08:32:38,699 [main] TRACE AbstractWordWriter - replacing hyperlink [342032 - 342054] HYPERLINK Interface, UML136... +2024-09-08 08:32:38,773 [main] TRACE AbstractWordWriter - replacing hyperlink [342091 - 342108] HYPERLINK CntRs, UML67... +2024-09-08 08:32:38,842 [main] TRACE AbstractWordWriter - replacing hyperlink [342159 - 342181] HYPERLINK Interface, UML136... +2024-09-08 08:32:38,908 [main] TRACE AbstractWordWriter - replacing hyperlink [342570 - 342591] HYPERLINK IntegerTs, UML58... +2024-09-08 08:32:38,986 [main] TRACE AbstractWordWriter - replacing hyperlink [342688 - 342709] HYPERLINK IntegerTs, UML58... +2024-09-08 08:32:39,051 [main] TRACE AbstractWordWriter - replacing hyperlink [342809 - 342830] HYPERLINK IntegerTs, UML58... +2024-09-08 08:32:39,123 [main] TRACE AbstractWordWriter - replacing hyperlink [342929 - 342950] HYPERLINK IntegerTs, UML58... +2024-09-08 08:32:39,200 [main] TRACE AbstractWordWriter - replacing hyperlink [343053 - 343074] HYPERLINK IntegerTs, UML58... +2024-09-08 08:32:39,271 [main] TRACE AbstractWordWriter - replacing hyperlink [343173 - 343194] HYPERLINK IntegerTs, UML58... +2024-09-08 08:32:39,339 [main] TRACE AbstractWordWriter - replacing hyperlink [343297 - 343318] HYPERLINK IntegerTs, UML58... +2024-09-08 08:32:39,413 [main] TRACE AbstractWordWriter - replacing hyperlink [343417 - 343438] HYPERLINK IntegerTs, UML58... +2024-09-08 08:32:39,491 [main] TRACE AbstractWordWriter - replacing hyperlink [343540 - 343561] HYPERLINK IntegerTs, UML58... +2024-09-08 08:32:39,566 [main] TRACE AbstractWordWriter - replacing hyperlink [343672 - 343693] HYPERLINK IntegerTs, UML58... +2024-09-08 08:32:39,638 [main] TRACE AbstractWordWriter - replacing hyperlink [344366 - 344387] HYPERLINK Timestamp, UML61... +2024-09-08 08:32:39,710 [main] TRACE AbstractWordWriter - replacing hyperlink [344503 - 344524] HYPERLINK Timestamp, UML61... +2024-09-08 08:32:39,784 [main] TRACE AbstractWordWriter - replacing hyperlink [344635 - 344652] HYPERLINK CntRs, UML67... +2024-09-08 08:32:39,851 [main] TRACE AbstractWordWriter - replacing hyperlink [344876 - 344899] HYPERLINK ClockEntry, UML134... +2024-09-08 08:32:39,915 [main] TRACE AbstractWordWriter - replacing hyperlink [345026 - 345059] HYPERLINK SecurityNotification, UML135... +2024-09-08 08:32:39,994 [main] TRACE AbstractWordWriter - replacing hyperlink [345440 - 345459] HYPERLINK Integer, UML53... +2024-09-08 08:32:40,059 [main] TRACE AbstractWordWriter - replacing hyperlink [345676 - 345699] HYPERLINK EntityIndex, UML66... +2024-09-08 08:32:40,133 [main] TRACE AbstractWordWriter - replacing hyperlink [345763 - 345791] HYPERLINK TimSyncIssueType, UML75... +2024-09-08 08:32:40,202 [main] TRACE AbstractWordWriter - replacing hyperlink [345904 - 345928] HYPERLINK BooleanValue, UML52... +2024-09-08 08:32:40,271 [main] TRACE AbstractWordWriter - replacing hyperlink [346012 - 346038] HYPERLINK TimSyncSrcType, UML77... +2024-09-08 08:32:40,338 [main] TRACE AbstractWordWriter - replacing hyperlink [346128 - 346152] HYPERLINK BooleanValue, UML52... +2024-09-08 08:32:40,406 [main] TRACE AbstractWordWriter - replacing hyperlink [346497 - 346519] HYPERLINK FloatingTs, UML57... +2024-09-08 08:32:40,472 [main] TRACE AbstractWordWriter - replacing hyperlink [346767 - 346791] HYPERLINK BooleanValue, UML52... +2024-09-08 08:32:40,549 [main] TRACE AbstractWordWriter - replacing hyperlink [347619 - 347643] HYPERLINK BooleanValue, UML52... +2024-09-08 08:32:40,618 [main] TRACE AbstractWordWriter - replacing hyperlink [348614 - 348635] HYPERLINK Timestamp, UML61... +2024-09-08 08:32:40,692 [main] INFO Util - time=[0:02:19.569] replaced 2092 hyperlink placeholders +2024-09-08 08:32:40,692 [main] INFO Util - +2024-09-08 08:32:40,692 [main] DEBUG DocWordWriter - restoring original options +2024-09-08 08:32:40,692 [main] INFO OptimOptions - bringing back original view +2024-09-08 08:32:40,768 [main] INFO OptimOptions - enabling pagination +2024-09-08 08:32:40,809 [main] INFO OptimOptions - enabling field updates +2024-09-08 08:32:40,944 [main] INFO OptimOptions - enabling screen updating +2024-09-08 08:32:40,949 [main] DEBUG DocWordWriter - >> current/restored : OptimOptions [viewId=3, normView=false, paginate=true, updFld=true, updScr=true, fastSave=false, spelling=false, grammar=false] +2024-09-08 08:32:40,949 [main] INFO AbstractWordWriter - updating document fields (takes a while)... +2024-09-08 08:33:00,282 [main] INFO DocWordWriter - updateFields: 19333 ms +2024-09-08 08:33:09,374 [main] INFO DocWordWriter - updateTablesOfContents: 9092 ms +2024-09-08 08:33:19,083 [main] INFO DocWordWriter - updateTablesOfFigures: 9709 ms +2024-09-08 08:33:19,084 [main] INFO Util - time=[0:00:38.135] updated document fields +2024-09-08 08:33:19,084 [main] INFO Util - +2024-09-08 08:33:19,084 [main] INFO DocWordWriter - closing MSWord file 'C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx' +2024-09-08 08:33:23,805 [main] INFO DocWordWriter - exiting MSWord application +2024-09-08 08:33:23,808 [main] INFO Util - time=[0:06:42.943] written documentation to C:\Users\gigi\git\jCleanCim\output\57-62351-7-Ed2-FDIS_20240901.docx +2024-09-08 08:33:23,808 [main] INFO Util - +2024-09-08 08:33:23,808 [main] INFO Util - time=[0:07:51.650] completed all configured steps - exiting +2024-09-08 08:33:23,809 [main] INFO Util - +2024-09-08 08:33:23,810 [main] INFO JCleanCim - completed at: Sun Sep 08 08:33:23 CEST 2024 +2024-09-08 08:33:23,810 [main] INFO JCleanCim - exiting +2024-09-08 09:26:06,075 [main] INFO JCleanCim - started at: Sun Sep 08 09:26:06 CEST 2024 +2024-09-08 09:26:06,076 [main] INFO JCleanCim - execution environment: +2024-09-08 09:26:06,076 [main] INFO JCleanCim - os.name = Windows 10 +2024-09-08 09:26:06,077 [main] INFO JCleanCim - java.version = 1.8.0_351 +2024-09-08 09:26:06,077 [main] INFO JCleanCim - java.home = C:\Program Files (x86)\Java\jre1.8.0_351 +2024-09-08 09:26:06,077 [main] INFO JCleanCim - java.class.path = C:\Users\gigi\git\jCleanCim\build\prod\classes;C:\Users\gigi\git\jCleanCim\lib\eaapi.jar;C:\Users\gigi\git\jCleanCim\dlls;C:\Users\gigi\git\jCleanCim\lib\commons-cli-1.2.jar;C:\Users\gigi\git\jCleanCim\config;C:\Users\gigi\git\jCleanCim\input;C:\Users\gigi\git\jCleanCim\lib\jacob.jar;C:\Users\gigi\git\jCleanCim\test\config;C:\Users\gigi\git\jCleanCim\test\input;C:\Users\gigi\git\jCleanCim\lib\commons-logging-1.1.1.jar;C:\Users\gigi\git\jCleanCim\lib\log4j-1.2.17.jar;C:\Users\gigi\git\jCleanCim\lib\commons-lang-2.6.jar;C:\Users\gigi\git\jCleanCim\lib\junit-4.8.2.jar;C:\Users\gigi\git\jCleanCim\lib\jackcess-2.1.0.jar;C:\Users\gigi\git\jCleanCim\lib\poi-ooxml-3.15-beta2.jar +2024-09-08 09:26:06,089 [main] INFO Util - loaded properties from resource build.properties +2024-09-08 09:26:06,090 [main] INFO JCleanCim - jCleanCim version: 02v03 +2024-09-08 09:26:06,091 [main] INFO JCleanCim - +2024-09-08 09:26:06,110 [main] INFO Util - loaded properties from resource config.properties +2024-09-08 09:26:06,112 [main] INFO Util - loaded properties from resource config61850.properties +2024-09-08 09:26:06,113 [main] INFO Util - loaded properties from resource build.properties +2024-09-08 09:28:13,024 [main] INFO JCleanCim - started at: Sun Sep 08 09:28:13 CEST 2024 +2024-09-08 09:28:13,026 [main] INFO JCleanCim - execution environment: +2024-09-08 09:28:13,026 [main] INFO JCleanCim - os.name = Windows 10 +2024-09-08 09:28:13,026 [main] INFO JCleanCim - java.version = 1.8.0_351 +2024-09-08 09:28:13,027 [main] INFO JCleanCim - java.home = C:\Program Files (x86)\Java\jre1.8.0_351 +2024-09-08 09:28:13,027 [main] INFO JCleanCim - java.class.path = C:\Users\gigi\git\jCleanCim\build\prod\classes;C:\Users\gigi\git\jCleanCim\lib\eaapi.jar;C:\Users\gigi\git\jCleanCim\dlls;C:\Users\gigi\git\jCleanCim\lib\commons-cli-1.2.jar;C:\Users\gigi\git\jCleanCim\config;C:\Users\gigi\git\jCleanCim\input;C:\Users\gigi\git\jCleanCim\lib\jacob.jar;C:\Users\gigi\git\jCleanCim\test\config;C:\Users\gigi\git\jCleanCim\test\input;C:\Users\gigi\git\jCleanCim\lib\commons-logging-1.1.1.jar;C:\Users\gigi\git\jCleanCim\lib\log4j-1.2.17.jar;C:\Users\gigi\git\jCleanCim\lib\commons-lang-2.6.jar;C:\Users\gigi\git\jCleanCim\lib\junit-4.8.2.jar;C:\Users\gigi\git\jCleanCim\lib\jackcess-2.1.0.jar;C:\Users\gigi\git\jCleanCim\lib\poi-ooxml-3.15-beta2.jar +2024-09-08 09:28:13,043 [main] INFO Util - loaded properties from resource build.properties +2024-09-08 09:28:13,044 [main] INFO JCleanCim - jCleanCim version: 02v03 +2024-09-08 09:28:13,044 [main] INFO JCleanCim - +2024-09-08 09:28:13,064 [main] INFO Util - loaded properties from resource config.properties +2024-09-08 09:28:13,066 [main] INFO Util - loaded properties from resource config61850.properties +2024-09-08 09:28:13,067 [main] INFO Util - loaded properties from resource build.properties +2024-09-08 09:29:40,386 [main] INFO JCleanCim - started at: Sun Sep 08 09:29:40 CEST 2024 +2024-09-08 09:29:40,387 [main] INFO JCleanCim - execution environment: +2024-09-08 09:29:40,387 [main] INFO JCleanCim - os.name = Windows 10 +2024-09-08 09:29:40,387 [main] INFO JCleanCim - java.version = 1.8.0_351 +2024-09-08 09:29:40,388 [main] INFO JCleanCim - java.home = C:\Program Files (x86)\Java\jre1.8.0_351 +2024-09-08 09:29:40,388 [main] INFO JCleanCim - java.class.path = C:\Users\gigi\git\jCleanCim\build\prod\classes;C:\Users\gigi\git\jCleanCim\lib\eaapi.jar;C:\Users\gigi\git\jCleanCim\dlls;C:\Users\gigi\git\jCleanCim\lib\commons-cli-1.2.jar;C:\Users\gigi\git\jCleanCim\config;C:\Users\gigi\git\jCleanCim\input;C:\Users\gigi\git\jCleanCim\lib\jacob.jar;C:\Users\gigi\git\jCleanCim\test\config;C:\Users\gigi\git\jCleanCim\test\input;C:\Users\gigi\git\jCleanCim\lib\commons-logging-1.1.1.jar;C:\Users\gigi\git\jCleanCim\lib\log4j-1.2.17.jar;C:\Users\gigi\git\jCleanCim\lib\commons-lang-2.6.jar;C:\Users\gigi\git\jCleanCim\lib\junit-4.8.2.jar;C:\Users\gigi\git\jCleanCim\lib\jackcess-2.1.0.jar;C:\Users\gigi\git\jCleanCim\lib\poi-ooxml-3.15-beta2.jar +2024-09-08 09:29:40,401 [main] INFO Util - loaded properties from resource build.properties +2024-09-08 09:29:40,401 [main] INFO JCleanCim - jCleanCim version: 02v03 +2024-09-08 09:29:40,402 [main] INFO JCleanCim - +2024-09-08 09:29:40,422 [main] INFO Util - loaded properties from resource config.properties +2024-09-08 09:29:40,424 [main] INFO Util - loaded properties from resource config61850.properties +2024-09-08 09:29:40,425 [main] INFO Util - loaded properties from resource build.properties +2024-09-08 09:33:01,708 [main] INFO JCleanCim - started at: Sun Sep 08 09:33:01 CEST 2024 +2024-09-08 09:33:01,709 [main] INFO JCleanCim - execution environment: +2024-09-08 09:33:01,710 [main] INFO JCleanCim - os.name = Windows 10 +2024-09-08 09:33:01,710 [main] INFO JCleanCim - java.version = 1.8.0_351 +2024-09-08 09:33:01,710 [main] INFO JCleanCim - java.home = C:\Program Files (x86)\Java\jre1.8.0_351 +2024-09-08 09:33:01,710 [main] INFO JCleanCim - java.class.path = C:\Users\gigi\git\jCleanCim\build\prod\classes;C:\Users\gigi\git\jCleanCim\lib\eaapi.jar;C:\Users\gigi\git\jCleanCim\dlls;C:\Users\gigi\git\jCleanCim\lib\commons-cli-1.2.jar;C:\Users\gigi\git\jCleanCim\config;C:\Users\gigi\git\jCleanCim\input;C:\Users\gigi\git\jCleanCim\lib\jacob.jar;C:\Users\gigi\git\jCleanCim\test\config;C:\Users\gigi\git\jCleanCim\test\input;C:\Users\gigi\git\jCleanCim\lib\commons-logging-1.1.1.jar;C:\Users\gigi\git\jCleanCim\lib\log4j-1.2.17.jar;C:\Users\gigi\git\jCleanCim\lib\commons-lang-2.6.jar;C:\Users\gigi\git\jCleanCim\lib\junit-4.8.2.jar;C:\Users\gigi\git\jCleanCim\lib\jackcess-2.1.0.jar;C:\Users\gigi\git\jCleanCim\lib\poi-ooxml-3.15-beta2.jar +2024-09-08 09:33:01,720 [main] INFO Util - loaded properties from resource build.properties +2024-09-08 09:33:01,720 [main] INFO JCleanCim - jCleanCim version: 02v03 +2024-09-08 09:33:01,721 [main] INFO JCleanCim - +2024-09-08 09:33:01,739 [main] INFO Util - loaded properties from resource config.properties +2024-09-08 09:33:01,740 [main] INFO Util - loaded properties from resource config61850.properties +2024-09-08 09:33:01,741 [main] INFO Util - loaded properties from resource build.properties +2024-09-08 09:38:23,387 [main] INFO JCleanCim - started at: Sun Sep 08 09:38:23 CEST 2024 +2024-09-08 09:38:23,388 [main] INFO JCleanCim - execution environment: +2024-09-08 09:38:23,388 [main] INFO JCleanCim - os.name = Windows 10 +2024-09-08 09:38:23,389 [main] INFO JCleanCim - java.version = 1.8.0_351 +2024-09-08 09:38:23,389 [main] INFO JCleanCim - java.home = C:\Program Files (x86)\Java\jre1.8.0_351 +2024-09-08 09:38:23,389 [main] INFO JCleanCim - java.class.path = C:\Users\gigi\git\jCleanCim\build\prod\classes;C:\Users\gigi\git\jCleanCim\lib\eaapi.jar;C:\Users\gigi\git\jCleanCim\dlls;C:\Users\gigi\git\jCleanCim\lib\commons-cli-1.2.jar;C:\Users\gigi\git\jCleanCim\config;C:\Users\gigi\git\jCleanCim\input;C:\Users\gigi\git\jCleanCim\lib\jacob.jar;C:\Users\gigi\git\jCleanCim\test\config;C:\Users\gigi\git\jCleanCim\test\input;C:\Users\gigi\git\jCleanCim\lib\commons-logging-1.1.1.jar;C:\Users\gigi\git\jCleanCim\lib\log4j-1.2.17.jar;C:\Users\gigi\git\jCleanCim\lib\commons-lang-2.6.jar;C:\Users\gigi\git\jCleanCim\lib\junit-4.8.2.jar;C:\Users\gigi\git\jCleanCim\lib\jackcess-2.1.0.jar;C:\Users\gigi\git\jCleanCim\lib\poi-ooxml-3.15-beta2.jar +2024-09-08 09:38:23,402 [main] INFO Util - loaded properties from resource build.properties +2024-09-08 09:38:23,403 [main] INFO JCleanCim - jCleanCim version: 02v03 +2024-09-08 09:38:23,403 [main] INFO JCleanCim - +2024-09-08 09:38:23,421 [main] INFO Util - loaded properties from resource config.properties +2024-09-08 09:38:23,423 [main] INFO Util - loaded properties from resource config61850.properties +2024-09-08 09:38:23,424 [main] INFO Util - loaded properties from resource build.properties +2024-09-08 11:58:32,716 [main] INFO JCleanCim - started at: Sun Sep 08 11:58:32 CEST 2024 +2024-09-08 11:58:32,717 [main] INFO JCleanCim - execution environment: +2024-09-08 11:58:32,717 [main] INFO JCleanCim - os.name = Windows 10 +2024-09-08 11:58:32,717 [main] INFO JCleanCim - java.version = 1.8.0_351 +2024-09-08 11:58:32,718 [main] INFO JCleanCim - java.home = C:\Program Files (x86)\Java\jre1.8.0_351 +2024-09-08 11:58:32,718 [main] INFO JCleanCim - java.class.path = C:\Users\gigi\git\jCleanCim\build\prod\classes;C:\Users\gigi\git\jCleanCim\lib\eaapi.jar;C:\Users\gigi\git\jCleanCim\dlls;C:\Users\gigi\git\jCleanCim\lib\commons-cli-1.2.jar;C:\Users\gigi\git\jCleanCim\config;C:\Users\gigi\git\jCleanCim\input;C:\Users\gigi\git\jCleanCim\lib\jacob.jar;C:\Users\gigi\git\jCleanCim\test\config;C:\Users\gigi\git\jCleanCim\test\input;C:\Users\gigi\git\jCleanCim\lib\commons-logging-1.1.1.jar;C:\Users\gigi\git\jCleanCim\lib\log4j-1.2.17.jar;C:\Users\gigi\git\jCleanCim\lib\commons-lang-2.6.jar;C:\Users\gigi\git\jCleanCim\lib\junit-4.8.2.jar;C:\Users\gigi\git\jCleanCim\lib\jackcess-2.1.0.jar;C:\Users\gigi\git\jCleanCim\lib\poi-ooxml-3.15-beta2.jar +2024-09-08 11:58:32,730 [main] INFO Util - loaded properties from resource build.properties +2024-09-08 11:58:32,730 [main] INFO JCleanCim - jCleanCim version: 02v03 +2024-09-08 11:58:32,730 [main] INFO JCleanCim - +2024-09-08 11:58:32,746 [main] INFO Util - loaded properties from resource config.properties +2024-09-08 11:58:32,747 [main] INFO Util - loaded properties from resource config61850.properties +2024-09-08 11:58:32,748 [main] INFO Util - loaded properties from resource build.properties +2024-09-08 11:59:04,070 [main] INFO JCleanCim - started at: Sun Sep 08 11:59:04 CEST 2024 +2024-09-08 11:59:04,071 [main] INFO JCleanCim - execution environment: +2024-09-08 11:59:04,072 [main] INFO JCleanCim - os.name = Windows 10 +2024-09-08 11:59:04,072 [main] INFO JCleanCim - java.version = 1.8.0_351 +2024-09-08 11:59:04,072 [main] INFO JCleanCim - java.home = C:\Program Files (x86)\Java\jre1.8.0_351 +2024-09-08 11:59:04,072 [main] INFO JCleanCim - java.class.path = C:\Users\gigi\git\jCleanCim\build\prod\classes;C:\Users\gigi\git\jCleanCim\lib\eaapi.jar;C:\Users\gigi\git\jCleanCim\dlls;C:\Users\gigi\git\jCleanCim\lib\commons-cli-1.2.jar;C:\Users\gigi\git\jCleanCim\config;C:\Users\gigi\git\jCleanCim\input;C:\Users\gigi\git\jCleanCim\lib\jacob.jar;C:\Users\gigi\git\jCleanCim\test\config;C:\Users\gigi\git\jCleanCim\test\input;C:\Users\gigi\git\jCleanCim\lib\commons-logging-1.1.1.jar;C:\Users\gigi\git\jCleanCim\lib\log4j-1.2.17.jar;C:\Users\gigi\git\jCleanCim\lib\commons-lang-2.6.jar;C:\Users\gigi\git\jCleanCim\lib\junit-4.8.2.jar;C:\Users\gigi\git\jCleanCim\lib\jackcess-2.1.0.jar;C:\Users\gigi\git\jCleanCim\lib\poi-ooxml-3.15-beta2.jar +2024-09-08 11:59:04,088 [main] INFO Util - loaded properties from resource build.properties +2024-09-08 11:59:04,088 [main] INFO JCleanCim - jCleanCim version: 02v03 +2024-09-08 11:59:04,088 [main] INFO JCleanCim - +2024-09-08 11:59:04,106 [main] INFO Util - loaded properties from resource config.properties +2024-09-08 11:59:04,108 [main] INFO Util - loaded properties from resource config61850.properties +2024-09-08 11:59:04,109 [main] INFO Util - loaded properties from resource build.properties +2024-09-08 11:59:28,212 [main] INFO JCleanCim - started at: Sun Sep 08 11:59:28 CEST 2024 +2024-09-08 11:59:28,213 [main] INFO JCleanCim - execution environment: +2024-09-08 11:59:28,213 [main] INFO JCleanCim - os.name = Windows 10 +2024-09-08 11:59:28,213 [main] INFO JCleanCim - java.version = 1.8.0_351 +2024-09-08 11:59:28,214 [main] INFO JCleanCim - java.home = C:\Program Files (x86)\Java\jre1.8.0_351 +2024-09-08 11:59:28,214 [main] INFO JCleanCim - java.class.path = C:\Users\gigi\git\jCleanCim\build\prod\classes;C:\Users\gigi\git\jCleanCim\lib\eaapi.jar;C:\Users\gigi\git\jCleanCim\dlls;C:\Users\gigi\git\jCleanCim\lib\commons-cli-1.2.jar;C:\Users\gigi\git\jCleanCim\config;C:\Users\gigi\git\jCleanCim\input;C:\Users\gigi\git\jCleanCim\lib\jacob.jar;C:\Users\gigi\git\jCleanCim\test\config;C:\Users\gigi\git\jCleanCim\test\input;C:\Users\gigi\git\jCleanCim\lib\commons-logging-1.1.1.jar;C:\Users\gigi\git\jCleanCim\lib\log4j-1.2.17.jar;C:\Users\gigi\git\jCleanCim\lib\commons-lang-2.6.jar;C:\Users\gigi\git\jCleanCim\lib\junit-4.8.2.jar;C:\Users\gigi\git\jCleanCim\lib\jackcess-2.1.0.jar;C:\Users\gigi\git\jCleanCim\lib\poi-ooxml-3.15-beta2.jar +2024-09-08 11:59:28,228 [main] INFO Util - loaded properties from resource build.properties +2024-09-08 11:59:28,228 [main] INFO JCleanCim - jCleanCim version: 02v03 +2024-09-08 11:59:28,228 [main] INFO JCleanCim - +2024-09-08 11:59:28,247 [main] INFO Util - loaded properties from resource config.properties +2024-09-08 11:59:28,249 [main] INFO Util - loaded properties from resource config61850.properties +2024-09-08 11:59:28,250 [main] INFO Util - loaded properties from resource build.properties +2024-09-08 12:00:03,898 [main] INFO JCleanCim - started at: Sun Sep 08 12:00:03 CEST 2024 +2024-09-08 12:00:03,899 [main] INFO JCleanCim - execution environment: +2024-09-08 12:00:03,900 [main] INFO JCleanCim - os.name = Windows 10 +2024-09-08 12:00:03,900 [main] INFO JCleanCim - java.version = 1.8.0_351 +2024-09-08 12:00:03,901 [main] INFO JCleanCim - java.home = C:\Program Files (x86)\Java\jre1.8.0_351 +2024-09-08 12:00:03,901 [main] INFO JCleanCim - java.class.path = C:\Users\gigi\git\jCleanCim\build\prod\classes;C:\Users\gigi\git\jCleanCim\lib\eaapi.jar;C:\Users\gigi\git\jCleanCim\dlls;C:\Users\gigi\git\jCleanCim\lib\commons-cli-1.2.jar;C:\Users\gigi\git\jCleanCim\config;C:\Users\gigi\git\jCleanCim\input;C:\Users\gigi\git\jCleanCim\lib\jacob.jar;C:\Users\gigi\git\jCleanCim\test\config;C:\Users\gigi\git\jCleanCim\test\input;C:\Users\gigi\git\jCleanCim\lib\commons-logging-1.1.1.jar;C:\Users\gigi\git\jCleanCim\lib\log4j-1.2.17.jar;C:\Users\gigi\git\jCleanCim\lib\commons-lang-2.6.jar;C:\Users\gigi\git\jCleanCim\lib\junit-4.8.2.jar;C:\Users\gigi\git\jCleanCim\lib\jackcess-2.1.0.jar;C:\Users\gigi\git\jCleanCim\lib\poi-ooxml-3.15-beta2.jar +2024-09-08 12:00:03,916 [main] INFO Util - loaded properties from resource build.properties +2024-09-08 12:00:03,916 [main] INFO JCleanCim - jCleanCim version: 02v03 +2024-09-08 12:00:03,917 [main] INFO JCleanCim - +2024-09-08 12:00:03,932 [main] INFO Util - loaded properties from resource config.properties +2024-09-08 12:00:03,933 [main] INFO Util - loaded properties from resource config61850.properties +2024-09-08 12:00:03,936 [main] INFO Util - loaded properties from resource build.properties +2024-09-08 12:00:43,306 [main] INFO JCleanCim - started at: Sun Sep 08 12:00:43 CEST 2024 +2024-09-08 12:00:43,307 [main] INFO JCleanCim - execution environment: +2024-09-08 12:00:43,308 [main] INFO JCleanCim - os.name = Windows 10 +2024-09-08 12:00:43,308 [main] INFO JCleanCim - java.version = 1.8.0_351 +2024-09-08 12:00:43,309 [main] INFO JCleanCim - java.home = C:\Program Files (x86)\Java\jre1.8.0_351 +2024-09-08 12:00:43,309 [main] INFO JCleanCim - java.class.path = C:\Users\gigi\git\jCleanCim\build\prod\classes;C:\Users\gigi\git\jCleanCim\lib\eaapi.jar;C:\Users\gigi\git\jCleanCim\dlls;C:\Users\gigi\git\jCleanCim\lib\commons-cli-1.2.jar;C:\Users\gigi\git\jCleanCim\config;C:\Users\gigi\git\jCleanCim\input;C:\Users\gigi\git\jCleanCim\lib\jacob.jar;C:\Users\gigi\git\jCleanCim\test\config;C:\Users\gigi\git\jCleanCim\test\input;C:\Users\gigi\git\jCleanCim\lib\commons-logging-1.1.1.jar;C:\Users\gigi\git\jCleanCim\lib\log4j-1.2.17.jar;C:\Users\gigi\git\jCleanCim\lib\commons-lang-2.6.jar;C:\Users\gigi\git\jCleanCim\lib\junit-4.8.2.jar;C:\Users\gigi\git\jCleanCim\lib\jackcess-2.1.0.jar;C:\Users\gigi\git\jCleanCim\lib\poi-ooxml-3.15-beta2.jar +2024-09-08 12:00:43,324 [main] INFO Util - loaded properties from resource build.properties +2024-09-08 12:00:43,324 [main] INFO JCleanCim - jCleanCim version: 02v03 +2024-09-08 12:00:43,324 [main] INFO JCleanCim - +2024-09-08 12:00:43,343 [main] INFO Util - loaded properties from resource config.properties +2024-09-08 12:00:43,344 [main] INFO Util - loaded properties from resource config61850.properties +2024-09-08 12:00:43,346 [main] INFO Util - loaded properties from resource build.properties +2024-09-08 12:01:01,902 [main] INFO JCleanCim - started at: Sun Sep 08 12:01:01 CEST 2024 +2024-09-08 12:01:01,903 [main] INFO JCleanCim - execution environment: +2024-09-08 12:01:01,904 [main] INFO JCleanCim - os.name = Windows 10 +2024-09-08 12:01:01,904 [main] INFO JCleanCim - java.version = 1.8.0_351 +2024-09-08 12:01:01,905 [main] INFO JCleanCim - java.home = C:\Program Files (x86)\Java\jre1.8.0_351 +2024-09-08 12:01:01,905 [main] INFO JCleanCim - java.class.path = C:\Users\gigi\git\jCleanCim\build\prod\classes;C:\Users\gigi\git\jCleanCim\lib\eaapi.jar;C:\Users\gigi\git\jCleanCim\dlls;C:\Users\gigi\git\jCleanCim\lib\commons-cli-1.2.jar;C:\Users\gigi\git\jCleanCim\config;C:\Users\gigi\git\jCleanCim\input;C:\Users\gigi\git\jCleanCim\lib\jacob.jar;C:\Users\gigi\git\jCleanCim\test\config;C:\Users\gigi\git\jCleanCim\test\input;C:\Users\gigi\git\jCleanCim\lib\commons-logging-1.1.1.jar;C:\Users\gigi\git\jCleanCim\lib\log4j-1.2.17.jar;C:\Users\gigi\git\jCleanCim\lib\commons-lang-2.6.jar;C:\Users\gigi\git\jCleanCim\lib\junit-4.8.2.jar;C:\Users\gigi\git\jCleanCim\lib\jackcess-2.1.0.jar;C:\Users\gigi\git\jCleanCim\lib\poi-ooxml-3.15-beta2.jar +2024-09-08 12:01:01,921 [main] INFO Util - loaded properties from resource build.properties +2024-09-08 12:01:01,921 [main] INFO JCleanCim - jCleanCim version: 02v03 +2024-09-08 12:01:01,922 [main] INFO JCleanCim - +2024-09-08 12:01:01,942 [main] INFO Util - loaded properties from resource config.properties +2024-09-08 12:01:01,944 [main] INFO Util - loaded properties from resource config61850.properties +2024-09-08 12:01:01,945 [main] INFO Util - loaded properties from resource build.properties +2024-09-08 12:19:36,610 [main] INFO JCleanCim - started at: Sun Sep 08 12:19:36 CEST 2024 +2024-09-08 12:19:36,611 [main] INFO JCleanCim - execution environment: +2024-09-08 12:19:36,612 [main] INFO JCleanCim - os.name = Windows 10 +2024-09-08 12:19:36,612 [main] INFO JCleanCim - java.version = 1.8.0_351 +2024-09-08 12:19:36,612 [main] INFO JCleanCim - java.home = C:\Program Files (x86)\Java\jre1.8.0_351 +2024-09-08 12:19:36,612 [main] INFO JCleanCim - java.class.path = C:\Users\gigi\git\jCleanCim\build\prod\classes;C:\Users\gigi\git\jCleanCim\lib\eaapi.jar;C:\Users\gigi\git\jCleanCim\dlls;C:\Users\gigi\git\jCleanCim\lib\commons-cli-1.2.jar;C:\Users\gigi\git\jCleanCim\config;C:\Users\gigi\git\jCleanCim\input;C:\Users\gigi\git\jCleanCim\lib\jacob.jar;C:\Users\gigi\git\jCleanCim\test\config;C:\Users\gigi\git\jCleanCim\test\input;C:\Users\gigi\git\jCleanCim\lib\commons-logging-1.1.1.jar;C:\Users\gigi\git\jCleanCim\lib\log4j-1.2.17.jar;C:\Users\gigi\git\jCleanCim\lib\commons-lang-2.6.jar;C:\Users\gigi\git\jCleanCim\lib\junit-4.8.2.jar;C:\Users\gigi\git\jCleanCim\lib\jackcess-2.1.0.jar;C:\Users\gigi\git\jCleanCim\lib\poi-ooxml-3.15-beta2.jar;C:\Users\gigi\eclipse\java-2024-06\eclipse\configuration\org.eclipse.osgi\251\0\.cp\lib\javaagent-shaded.jar +2024-09-08 12:19:36,668 [main] INFO Util - loaded properties from resource build.properties +2024-09-08 12:19:36,668 [main] INFO JCleanCim - jCleanCim version: 02v03 +2024-09-08 12:19:36,669 [main] INFO JCleanCim - +2024-09-08 12:19:36,684 [main] INFO Util - loaded properties from resource config.properties +2024-09-08 12:19:36,686 [main] INFO Util - loaded properties from resource config61850.properties +2024-09-08 12:19:36,687 [main] INFO Util - loaded properties from resource build.properties +2024-09-08 15:08:34,316 [main] INFO JCleanCim - started at: Sun Sep 08 15:08:34 CEST 2024 +2024-09-08 15:08:34,317 [main] INFO JCleanCim - execution environment: +2024-09-08 15:08:34,317 [main] INFO JCleanCim - os.name = Windows 10 +2024-09-08 15:08:34,318 [main] INFO JCleanCim - java.version = 1.8.0_351 +2024-09-08 15:08:34,318 [main] INFO JCleanCim - java.home = C:\Program Files (x86)\Java\jre1.8.0_351 +2024-09-08 15:08:34,318 [main] INFO JCleanCim - java.class.path = C:\Users\gigi\git\jCleanCim\build\prod\classes;C:\Users\gigi\git\jCleanCim\lib\eaapi.jar;C:\Users\gigi\git\jCleanCim\dlls;C:\Users\gigi\git\jCleanCim\lib\commons-cli-1.2.jar;C:\Users\gigi\git\jCleanCim\config;C:\Users\gigi\git\jCleanCim\input;C:\Users\gigi\git\jCleanCim\lib\jacob.jar;C:\Users\gigi\git\jCleanCim\test\config;C:\Users\gigi\git\jCleanCim\test\input;C:\Users\gigi\git\jCleanCim\lib\commons-logging-1.1.1.jar;C:\Users\gigi\git\jCleanCim\lib\log4j-1.2.17.jar;C:\Users\gigi\git\jCleanCim\lib\commons-lang-2.6.jar;C:\Users\gigi\git\jCleanCim\lib\junit-4.8.2.jar;C:\Users\gigi\git\jCleanCim\lib\jackcess-2.1.0.jar;C:\Users\gigi\git\jCleanCim\lib\poi-ooxml-3.15-beta2.jar +2024-09-08 15:08:34,328 [main] INFO Util - loaded properties from resource build.properties +2024-09-08 15:08:34,328 [main] INFO JCleanCim - jCleanCim version: 02v03 +2024-09-08 15:08:34,328 [main] INFO JCleanCim - +2024-09-08 15:08:34,347 [main] INFO Util - loaded properties from resource config.properties +2024-09-08 15:08:34,350 [main] INFO Util - loaded properties from resource config61850.properties +2024-09-08 15:08:34,352 [main] INFO Util - loaded properties from resource build.properties +2024-09-08 15:09:59,254 [main] INFO JCleanCim - started at: Sun Sep 08 15:09:59 CEST 2024 +2024-09-08 15:09:59,256 [main] INFO JCleanCim - execution environment: +2024-09-08 15:09:59,256 [main] INFO JCleanCim - os.name = Windows 10 +2024-09-08 15:09:59,256 [main] INFO JCleanCim - java.version = 1.8.0_351 +2024-09-08 15:09:59,257 [main] INFO JCleanCim - java.home = C:\Program Files (x86)\Java\jre1.8.0_351 +2024-09-08 15:09:59,257 [main] INFO JCleanCim - java.class.path = C:\Users\gigi\git\jCleanCim\build\prod\classes;C:\Users\gigi\git\jCleanCim\lib\eaapi.jar;C:\Users\gigi\git\jCleanCim\dlls;C:\Users\gigi\git\jCleanCim\lib\commons-cli-1.2.jar;C:\Users\gigi\git\jCleanCim\config;C:\Users\gigi\git\jCleanCim\input;C:\Users\gigi\git\jCleanCim\lib\jacob.jar;C:\Users\gigi\git\jCleanCim\test\config;C:\Users\gigi\git\jCleanCim\test\input;C:\Users\gigi\git\jCleanCim\lib\commons-logging-1.1.1.jar;C:\Users\gigi\git\jCleanCim\lib\log4j-1.2.17.jar;C:\Users\gigi\git\jCleanCim\lib\commons-lang-2.6.jar;C:\Users\gigi\git\jCleanCim\lib\junit-4.8.2.jar;C:\Users\gigi\git\jCleanCim\lib\jackcess-2.1.0.jar;C:\Users\gigi\git\jCleanCim\lib\poi-ooxml-3.15-beta2.jar +2024-09-08 15:09:59,266 [main] INFO Util - loaded properties from resource build.properties +2024-09-08 15:09:59,266 [main] INFO JCleanCim - jCleanCim version: 02v03 +2024-09-08 15:09:59,266 [main] INFO JCleanCim - +2024-09-08 15:09:59,280 [main] INFO Util - loaded properties from resource config.properties +2024-09-08 15:09:59,281 [main] INFO Util - loaded properties from resource config61850.properties +2024-09-08 15:09:59,282 [main] INFO Util - loaded properties from resource build.properties +2024-09-08 15:09:59,284 [main] INFO Config - Unknown model builder value '', using default 'db' (you can use one of [db, sqlxml, japi]). +2024-09-08 15:09:59,287 [main] INFO Config - EA model specified in config.properties: 'C:\Users\gigi\git\jCleanCim\input\base-small.eap' +2024-09-08 15:09:59,287 [main] INFO Config - blank image file: 'C:\Users\gigi\git\jCleanCim\input\blank.png' +2024-09-08 15:09:59,292 [main] DEBUG Config - Property validation.rules.off not found in config.properties. +2024-09-08 15:09:59,293 [main] INFO Util - Creating backup of existing file: C:\Users\gigi\git\jCleanCim\output\pics.100074966617900 +2024-09-08 15:09:59,294 [main] INFO Config - pics output directory: 'C:\Users\gigi\git\jCleanCim\output\pics' +2024-09-08 15:09:59,295 [main] INFO Config - input MS Word template: 'C:\Users\gigi\git\jCleanCim\input\base-small-template.docx' +2024-09-08 15:09:59,297 [main] INFO Config - output MS Word file: 'C:\Users\gigi\git\jCleanCim\output\base-small-tool02v03.docx' +2024-09-08 15:09:59,297 [main] DEBUG Config - Property mibgen.on not found in config.properties. +2024-09-08 15:09:59,297 [main] DEBUG Config - Property docgen.word.styles.prefix.toc not found in config.properties. +2024-09-08 15:09:59,297 [main] DEBUG Config - Property docgen.word.styles.prefix.head not found in config.properties. +2024-09-08 15:09:59,298 [main] DEBUG Config - Property docgen.skipForCustomStereotypes not found in config.properties. +2024-09-08 15:09:59,298 [main] INFO JCleanCim - Config: +app.skipTiming = +docgen.iec61850.includeMetamodelInheritance = +docgen.iec61850.writeUmlTypes = +docgen.includeInformative = +docgen.includeNonPublic = +docgen.on = true +docgen.printHtml = +docgen.showCustomStereotypes = true +docgen.showNamespacePackages = Base, Dynamics, ExtEuBase, Ext1 +docgen.word.analysePlaceholders = +docgen.word.inTemplate = base-small-template.docx +docgen.word.includeInheritancePath = true +docgen.word.introToFigureBefore = +docgen.word.outDocument = base-small-tool02v03.docx +docgen.word.saveReopenEvery = 12 +docgen.word.styles.fig = FIGURE, Picture, Normal, Standard, Normal +docgen.word.styles.figcapt = FIGURE-title, Caption, Beschriftung, Légende +docgen.word.styles.para = PARAGRAPH, Normal, Standard, Normal +docgen.word.styles.tabcapt = TABLE-title, Caption, Beschriftung, Légende +docgen.word.styles.tabcell = TABLE-cell, Normal, Standard, Normal +docgen.word.styles.tabhead = TABLE-col-heading, Normal, Standard, Normal +docgen.word.useDocFormat = true +docgen.word.useHyperlinks = true +docgen.xml.scope = +model.builder = +model.filename = base-small.eap +model.nature.iec61850 = IEC61850Domain, My61850Extensions, NonCIM, IEC61850_SCL_mappings, MyNonCimExtensions +model.picsRelpath = +profiles.crosscheck.on = +profiles.dirnames = +profiles.docgen.on = +profiles.relpath = +project.version = 02v03 +statistics.cim.ignoreDomainClassAttributes = true +statistics.cim.ignoreIdObjectInheritance = true +statistics.on = true +statistics.tagsToIgnore = GUIDBasedOn +validation.associations.off = +validation.attributes.off = +validation.classes.off = +validation.dependencies.off = +validation.diagrams.off = +validation.iec61850.package72Top = IEC61850_7_2 +validation.iec61850.packageFC = FunctionalConstraints +validation.iec61850.packageLnMaps = Functions +validation.iec61850.packageMetaModel = MetaModel +validation.iec61850.packagePresCond = PresenceConditions +validation.iec61850.packageTrgOp = TriggerOptions +validation.iec61850.packages72 = FunctionalConstraints, TriggerOptions, ACSIEnums, CoreTypes, MetaModel +validation.iec61850.packages73 = PresenceConditions, ConstructedDAs, CommonDataClasses, DAEnums,CommonDataClasses_90_3, DAEnums_90_3,CommonDataClasses_90_4, DAEnums_90_4,CommonDataClasses_90_6, DAEnums_90_6,CommonDataClasses_90_8, DAEnums_90_8,CommonDataClasses_90_10, DAEnums_90_10,CommonDataClasses_90_17, DAEnums_90_17,CommonDataClasses_7_410, DAEnums_7_410,CommonDataClasses_7_420, DAEnums_7_420,CommonDataClasses_25_2, DAEnums_25_2 +validation.iec61850.packages74 = Functions, Abbreviations, LogicalNodes, DOEnums,Abbreviations_90_3, LogicalNodes_90_3, DOEnums_90_3,Abbreviations_90_4, LogicalNodes_90_4, DOEnums_90_4,Abbreviations_90_6, LogicalNodes_90_6, DOEnums_90_6,Abbreviations_90_8, LogicalNodes_90_8, DOEnums_90_8,Abbreviations_90_9, LogicalNodes_90_9, DOEnums_90_9,Abbreviations_90_10, LogicalNodes_90_10, DOEnums_90_10,Abbreviations_90_11, LogicalNodes_90_11, DOEnums_90_11,Abbreviations_90_17, LogicalNodes_90_17, DOEnums_90_17,Abbreviations_7_410, LogicalNodes_7_410, DOEnums_7_410,Abbreviations_7_420, LogicalNodes_7_420, DOEnums_7_420,Abbreviations_7_499, LogicalNodes_7_499, DOEnums_7_499,Abbreviations_61869-9, LogicalNodes_61869-9, Abbreviations_62271-3, LogicalNodes_62271-3, Abbreviations_25_2, LogicalNodes_25_2, DOEnums_25_2 +validation.iec61850.packagesBasic = CoreTypes +validation.iec61850.packagesCdc = CommonDataClasses, CommonDataClasses_90_3, CommonDataClasses_90_4, CommonDataClasses_90_6, CommonDataClasses_90_8, CommonDataClasses_90_9, CommonDataClasses_90_10, CommonDataClasses_90_17, CommonDataClasses_7_410, CommonDataClasses_7_420, CommonDataClasses_25_2 +validation.iec61850.packagesDa = ConstructedDAs +validation.iec61850.packagesDoAbbr = Abbreviations, Abbreviations_90_3, Abbreviations_90_4, Abbreviations_90_6, Abbreviations_90_8, Abbreviations_90_9, Abbreviations_90_10, Abbreviations_90_11, Abbreviations_90_17, Abbreviations_7_410, Abbreviations_7_420, Abbreviations_7_499, Abbreviations_61869-9, Abbreviations_62271-3, Abbreviations_25_2 +validation.iec61850.packagesEnumsXml = DomainTypesEnums, DOEnums, DAEnums, DOEnums_90_3, DAEnums_90_3, DOEnums_90_4, DAEnums_90_4, DOEnums_90_6, DAEnums_90_6, DOEnums_90_8, DAEnums_90_8, DOEnums_90_9, DAEnums_90_9, DOEnums_90_10, DAEnums_90_10, DOEnums_90_11, DAEnums_90_11, DOEnums_90_17, DAEnums_90_17, DOEnums_7_410, DAEnums_7_410, DOEnums_7_420, DAEnums_7_420, DOEnums_7_499, DAEnums_7_499, DOEnums_25_2, DAEnums_25_2 +validation.iec61850.packagesLn = LogicalNodes, LogicalNodes_90_3, LogicalNodes_90_4, LogicalNodes_90_6, LogicalNodes_90_8, LogicalNodes_90_9, LogicalNodes_90_10, LogicalNodes_90_11, LogicalNodes_90_17, LogicalNodes_7_410, LogicalNodes_7_420, LogicalNodes_7_499, LogicalNodes_61869-9, LogicalNodes_62271-3, LogicalNodes_7_420, LogicalNodes_25_2 +validation.logging.verbose = +validation.on = true +validation.operations.off = +validation.packages.off = +validation.packagesDataIndex = Core, LogicalNodes, CommonDataClasses, LogicalNodes_90_3, CommonDataClasses_90_3, LogicalNodes_90_4, CommonDataClasses_90_4, LogicalNodes_90_6, CommonDataClasses_90_6, LogicalNodes_90_8, CommonDataClasses_90_8, LogicalNodes_90_9, CommonDataClasses_90_9, LogicalNodes_90_10, CommonDataClasses_90_10, LogicalNodes_90_11, CommonDataClasses_90_11, LogicalNodes_90_17, CommonDataClasses_90_17, LogicalNodes_7_410, CommonDataClasses_7_410, LogicalNodes_7_420, LogicalNodes_7_499, CommonDataClasses_7_420, LogicalNodes_61869-9, LogicalNodes_62271-3, LogicalNodes_25_2, CommonDataClasses_25_2 +validation.scope = +xmiexport.dialects = +xmiexport.on = + +2024-09-08 15:09:59,310 [main] INFO Util - +2024-09-08 15:09:59,310 [main] INFO Util - ================================================ +2024-09-08 15:09:59,310 [main] INFO Util - building model from EA Access DB... +2024-09-08 15:09:59,310 [main] INFO Util - ================================================ +2024-09-08 15:09:59,318 [main] INFO Util - +2024-09-08 15:09:59,318 [main] INFO Util - ------------------------------------------------ +2024-09-08 15:09:59,318 [main] INFO Util - initialising EA builder... +2024-09-08 15:09:59,321 [main] INFO EaModelBuilder - EA version: build n/a +2024-09-08 15:09:59,340 [main] INFO Util - time=[0:00:00.004] initialised EA builder. +2024-09-08 15:09:59,340 [main] INFO Util - +2024-09-08 15:09:59,340 [main] INFO Util - +2024-09-08 15:09:59,340 [main] INFO Util - ------------------------------------------------ +2024-09-08 15:09:59,341 [main] INFO Util - opening EA file 'C:\Users\gigi\git\jCleanCim\input\base-small.eap'... +2024-09-08 15:09:59,572 [main] INFO Util - time=[0:00:00.231] opened EA file. +2024-09-08 15:09:59,572 [main] INFO Util - +2024-09-08 15:09:59,575 [main] INFO Util - +2024-09-08 15:09:59,575 [main] INFO Util - ------------------------------------------------ +2024-09-08 15:09:59,576 [main] INFO Util - running bulk queries... +2024-09-08 15:09:59,577 [main] INFO DbSelector - loading table t_xref +2024-09-08 15:09:59,684 [main] INFO DbSelector - 107 ms: populated 1240 items with tags: [Type, Description, Client, Name] +2024-09-08 15:09:59,684 [main] INFO DbSelector - .......... +2024-09-08 15:09:59,691 [main] INFO DbSelector - loading table t_package +2024-09-08 15:09:59,703 [main] INFO DbSelector - 12 ms: populated 84 items with tags: [Package_ID, TPos, Parent_ID, ea_guid, Notes, Name] +2024-09-08 15:09:59,704 [main] INFO DbSelector - .......... +2024-09-08 15:09:59,704 [main] INFO DbSelector - loading table t_diagram +2024-09-08 15:09:59,722 [main] INFO DbSelector - 18 ms: populated 104 items with tags: [ParentID, Package_ID, TPos, Stereotype, Diagram_Type, ea_guid, Orientation, Diagram_ID, Notes, Name] +2024-09-08 15:09:59,722 [main] INFO DbSelector - .......... +2024-09-08 15:09:59,722 [main] INFO DbSelector - loading table t_object +2024-09-08 15:09:59,766 [main] INFO DbSelector - 44 ms: populated 697 items with tags: [ParentID, Object_Type, IsRoot, IsLeaf, Package_ID, Abstract, TPos, ea_guid, Name, Persistence, Object_ID, Scope, Alias, Note, NType] +2024-09-08 15:09:59,766 [main] INFO DbSelector - .......... +2024-09-08 15:09:59,771 [main] INFO DbSelector - loading table t_objectconstraint +2024-09-08 15:09:59,774 [main] INFO DbSelector - 3 ms: populated 55 items with tags: [Object_ID, Constraint, Notes] +2024-09-08 15:09:59,774 [main] INFO DbSelector - .......... +2024-09-08 15:09:59,774 [main] INFO DbSelector - loading table t_objectproperties +2024-09-08 15:09:59,775 [main] INFO DbSelector - 1 ms: populated 50 items with tags: [Object_ID, Value, Property] +2024-09-08 15:09:59,776 [main] INFO DbSelector - .......... +2024-09-08 15:09:59,776 [main] INFO DbSelector - loading table t_attribute +2024-09-08 15:09:59,801 [main] INFO DbSelector - 25 ms: populated 762 items with tags: [LowerBound, Const, ea_guid, Classifier, IsStatic, Default, Name, Type, Object_ID, Scope, Pos, UpperBound, Style, ID, Notes] +2024-09-08 15:09:59,801 [main] INFO DbSelector - .......... +2024-09-08 15:09:59,803 [main] INFO DbSelector - loading table t_attributeconstraints +2024-09-08 15:09:59,805 [main] INFO DbSelector - 2 ms: populated 9 items with tags: [Constraint, ID, Notes] +2024-09-08 15:09:59,805 [main] INFO DbSelector - .......... +2024-09-08 15:09:59,805 [main] INFO DbSelector - loading table t_attributetag +2024-09-08 15:09:59,806 [main] INFO DbSelector - 1 ms: populated 12 items with tags: [VALUE, Property, ElementID] +2024-09-08 15:09:59,807 [main] INFO DbSelector - .......... +2024-09-08 15:09:59,807 [main] INFO DbSelector - loading table t_operation +2024-09-08 15:09:59,809 [main] INFO DbSelector - 2 ms: populated 17 items with tags: [ReturnArray, IsLeaf, OperationID, Abstract, ea_guid, Classifier, IsStatic, Name, Type, Object_ID, Scope, Pos, Style, Notes] +2024-09-08 15:09:59,809 [main] INFO DbSelector - .......... +2024-09-08 15:09:59,810 [main] INFO DbSelector - loading table t_operationtag +2024-09-08 15:09:59,811 [main] INFO DbSelector - 1 ms: populated 5 items with tags: [VALUE, Property, ElementID] +2024-09-08 15:09:59,811 [main] INFO DbSelector - .......... +2024-09-08 15:09:59,812 [main] INFO DbSelector - loading table t_operationparams +2024-09-08 15:09:59,814 [main] INFO DbSelector - 2 ms: populated 10 items with tags: [Type, Pos, OperationID, StyleEx, ea_guid, Classifier, Notes, Name] +2024-09-08 15:09:59,814 [main] INFO DbSelector - .......... +2024-09-08 15:09:59,814 [main] INFO DbSelector - loading table t_connector +2024-09-08 15:09:59,843 [main] INFO DbSelector - 29 ms: populated 501 items with tags: [SourceRole, Connector_Type, SourceCard, SourceStyle, DestStyle, DestIsAggregate, ea_guid, Connector_ID, Direction, SourceIsAggregate, DestAccess, Name, Start_Object_ID, End_Object_ID, DestRole, DestRoleNote, StyleEx, DestCard, SourceRoleNote, SourceAccess, Notes] +2024-09-08 15:09:59,843 [main] INFO DbSelector - .......... +2024-09-08 15:09:59,849 [main] INFO DbSelector - loading table t_connectortag +2024-09-08 15:09:59,850 [main] INFO DbSelector - 1 ms: populated 7 items with tags: [VALUE, Property, ElementID] +2024-09-08 15:09:59,850 [main] INFO DbSelector - .......... +2024-09-08 15:09:59,851 [main] INFO DbSelector - loading table t_taggedvalue +2024-09-08 15:09:59,853 [main] INFO DbSelector - 2 ms: populated 10 items with tags: [BaseClass, TagValue, ElementID, Notes] +2024-09-08 15:09:59,853 [main] INFO DbSelector - .......... +2024-09-08 15:09:59,855 [main] DEBUG EaTables - +++ no connRow for connGuid = {7D6344F7-A5AB-43fe-A844-BA70EA5BDFF9} +2024-09-08 15:09:59,855 [main] INFO Util - time=[0:00:00.279] done bulk queries. +2024-09-08 15:09:59,855 [main] INFO Util - +2024-09-08 15:09:59,855 [main] INFO Util - +2024-09-08 15:09:59,855 [main] INFO Util - ------------------------------------------------ +2024-09-08 15:09:59,856 [main] INFO Util - building model from EA tables (as EAP DB)... +2024-09-08 15:09:59,891 [main] INFO PackageBuilder - processing model package TC57CIMProfiles (0) ... +2024-09-08 15:09:59,897 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=TC57CIMProfiles, _objData=UmlObjectData [id=332, uuid={1F44F334-CECE-43de-BA4C-15818B04F849}, since=null, name=TC57CIMProfiles, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=PACKAGE] +2024-09-08 15:09:59,899 [main] TRACE PackageBuilder - read PackageBuilder [_kind=MODEL, _depth=-1, _eaElementID=3095, _objData=UmlObjectData [id=177, uuid={F1BAE623-69C8-4115-BD68-C48157E7637C}, since=null, name=TC57CIMProfiles, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=177, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=TC57CIMProfiles, _objData=UmlObjectData [id=332, uuid={1F44F334-CECE-43de-BA4C-15818B04F849}, since=null, name=TC57CIMProfiles, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=PACKAGE]] +2024-09-08 15:09:59,899 [main] INFO PackageBuilder - processing model package TC57CIM (1) ... +2024-09-08 15:09:59,915 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=TC57CIM, _objData=UmlObjectData [id=1, uuid={7ECA7523-5E2A-40a0-A7B1-BE02958F3D9C}, since=null, name=Main, alias=, stereotype=diagStereotype, oneMoreDiagStereo, visibility=public, txtDescription='This diagram shows all Packages included in this CIM model.', htmlDescription='

This diagram shows all Packages included in this CIM model.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:09:59,917 [main] INFO PackageBuilder - processing top package Informative (1) ... +2024-09-08 15:09:59,918 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Informative, _objData=UmlObjectData [id=171, uuid={42D53082-F199-4c03-89A0-15308EF3019C}, since=null, name=Informative, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 15:09:59,921 [main] ERROR EaTables - [+++ EA ordering problem for 6 class(s) in Informative (manually move back/forth a class to initiate EA internal ordering update!): +, +++ class Class1: pos = 0 +, +++ class End1ForAssocClass: pos = 0 DUPLICATE +, +++ class End2ForAssocClass: pos = 0 DUPLICATE +, +++ class AssocClass: pos = 0 DUPLICATE +, +++ class HasIllegalTypeForAttr: pos = 0 DUPLICATE +, +++ class SomeSimpleType: pos = 0 DUPLICATE +] +2024-09-08 15:09:59,927 [main] TRACE ClassBuilder - Class Class1 (0 in package Informative) +2024-09-08 15:09:59,941 [main] DEBUG AssociationEndBuilder - Updated target type to Class1 +2024-09-08 15:09:59,941 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=9, uuid=d9bbaaab-88c8-37ca-b324-ef05c8e21d9f, since=null, name=MyClass, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=10, uuid=eae8cb7a-f8f8-3531-a271-d09a8cc84d5c, since=null, name=Class1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class1, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2130, uuid={06ABE750-E688-496b-A200-8708982212FA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:09:59,941 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=9, uuid=d9bbaaab-88c8-37ca-b324-ef05c8e21d9f, since=null, name=MyClass, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=10, uuid=eae8cb7a-f8f8-3531-a271-d09a8cc84d5c, since=null, name=Class1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class1, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2130, uuid={06ABE750-E688-496b-A200-8708982212FA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Informative::Class1 +2024-09-08 15:09:59,941 [main] TRACE ClassBuilder - read from EA: Informative::Class1 +2024-09-08 15:09:59,941 [main] TRACE ClassBuilder - Class End1ForAssocClass (0 in package Informative) +2024-09-08 15:09:59,942 [main] DEBUG AssociationEndBuilder - Updated source type to End1ForAssocClass +2024-09-08 15:09:59,942 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=13, uuid=c51ce410-c124-310e-8db5-e4b97fc2af39, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=End1ForAssocClass, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=14, uuid=aab32389-22bc-325a-af60-6eb525ffdc56, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=unspecified], _objData=UmlObjectData [id=2133, uuid={175AA1AC-B15C-4ccc-8BE5-A8951025FF94}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:09:59,942 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=13, uuid=c51ce410-c124-310e-8db5-e4b97fc2af39, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=End1ForAssocClass, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=14, uuid=aab32389-22bc-325a-af60-6eb525ffdc56, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=unspecified], _objData=UmlObjectData [id=2133, uuid={175AA1AC-B15C-4ccc-8BE5-A8951025FF94}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Informative::End1ForAssocClass +2024-09-08 15:09:59,942 [main] TRACE ClassBuilder - read from EA: Informative::End1ForAssocClass +2024-09-08 15:09:59,942 [main] TRACE ClassBuilder - Class End2ForAssocClass (0 in package Informative) +2024-09-08 15:09:59,943 [main] DEBUG AssociationEndBuilder - Updated target type to End2ForAssocClass +2024-09-08 15:09:59,943 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=13, uuid=c51ce410-c124-310e-8db5-e4b97fc2af39, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=End1ForAssocClass, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=14, uuid=aab32389-22bc-325a-af60-6eb525ffdc56, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=End2ForAssocClass, _multiplicity=[?..?], _navigable=unspecified], _objData=UmlObjectData [id=2133, uuid={175AA1AC-B15C-4ccc-8BE5-A8951025FF94}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Informative::End2ForAssocClass +2024-09-08 15:09:59,943 [main] TRACE ClassBuilder - read from EA: Informative::End2ForAssocClass +2024-09-08 15:09:59,943 [main] TRACE ClassBuilder - Class AssocClass (0 in package Informative) +2024-09-08 15:09:59,943 [main] TRACE ClassBuilder - read from EA: Informative::AssocClass +2024-09-08 15:09:59,943 [main] TRACE ClassBuilder - Class HasIllegalTypeForAttr (0 in package Informative) +2024-09-08 15:09:59,944 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Informative::HasIllegalTypeForAttr, _objData=UmlObjectData [id=3284, uuid={37EE993E-B7A3-4940-8707-E8C0C720D620}, since=null, name=dummy, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=860, _eaTypeName=Bay, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,944 [main] TRACE ClassBuilder - read from EA: Informative::HasIllegalTypeForAttr +2024-09-08 15:09:59,944 [main] TRACE ClassBuilder - Class SomeSimpleType (0 in package Informative) +2024-09-08 15:09:59,945 [main] TRACE ClassBuilder - read from EA: Informative::SomeSimpleType +2024-09-08 15:09:59,945 [main] TRACE PackageBuilder - read PackageBuilder [_kind=TOP, _containingPackage=TC57CIM, _depth=0, _eaElementID=1494, _objData=UmlObjectData [id=71, uuid={00408437-C182-4d22-989A-93854EC27FFF}, since=null, name=Informative, alias=, stereotype=TempPckStereo, SecondPckStereo, visibility=public, txtDescription='', htmlDescription=''], _modelId=2, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=Informative, _objData=UmlObjectData [id=171, uuid={42D53082-F199-4c03-89A0-15308EF3019C}, since=null, name=Informative, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _classes=6 +2024-09-08 15:09:59,945 [main] INFO PackageBuilder - processing top package IEC61970 (2) ... +2024-09-08 15:09:59,945 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=IEC61970, _objData=UmlObjectData [id=111, uuid={FB07D92D-5F4D-4fdc-AD82-2376FAF51037}, since=null, name=Main, alias=, stereotype=, visibility=public, txtDescription=''This diagram shows all 61970 packages and their logical dependencies. +Test bold ignored.', htmlDescription='

'This diagram shows all 61970 packages and their logical dependencies.

Test bold ignored.

'], _portrait=false, _kind=LOGICAL] +2024-09-08 15:09:59,947 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->TC57CIM::IEC61970, _objData=UmlObjectData [id=3446, uuid={814038F7-206E-42aa-8183-AE2E302175F9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:09:59,947 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->TC57CIM::IEC61970, _objData=UmlObjectData [id=3447, uuid={78B6C7F1-FC16-4b0c-A685-CD6711DBB0A3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:09:59,947 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->TC57CIM::IEC61970, _objData=UmlObjectData [id=3449, uuid={51951675-AE25-4ac7-AA97-9DF3741A7BB9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:09:59,950 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=STATE, _isConnector=false, _objData=UmlObjectData [id=1497, uuid={5D5CC973-30B7-4d45-8CF7-92688076EFE3}, since=null, name=StateInPackage, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=IEC61970, _otherEndName=] +2024-09-08 15:09:59,950 [main] TRACE ClassBuilder - Class IEC61970CIMVersion (0 in package IEC61970) +2024-09-08 15:09:59,950 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61970::IEC61970CIMVersion, _objData=UmlObjectData [id=1271, uuid={8DADB97F-283D-40c7-A25A-D75E4C0D8507}, since=null, name=date, alias=, stereotype=, visibility=public, txtDescription='Form is YYYY-MM-DD for example for January 5, 2009 it is 2009-01-05. +Note: Bad date format on purpose.', htmlDescription='

Form is YYYY-MM-DD for example for January 5, 2009 it is 2009-01-05.

Note: Bad date format on purpose.

'], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=20119-08-01, _eaTypeId=640, _eaTypeName=AbsoluteDateTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,951 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61970::IEC61970CIMVersion, _objData=UmlObjectData [id=1272, uuid={B4E0B1B6-8794-406a-A4C6-CBB395E37A52}, since=null, name=version, alias=, stereotype=, visibility=public, txtDescription='Form is IEC61970CIMXXvYY where XX is the major CIM package version and the YY is the minor version. For ecample IEC61970CIM13v18.', htmlDescription='

Form is IEC61970CIMXXvYY where XX is the major CIM package version and the YY is the minor version. For ecample IEC61970CIM13v18.

'], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=IEC61970CIM14v12, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,951 [main] TRACE ClassBuilder - read from EA: IEC61970::IEC61970CIMVersion +2024-09-08 15:09:59,951 [main] INFO PackageBuilder - processing package InformativeAndPrivate (1) ... +2024-09-08 15:09:59,952 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=InformativeAndPrivate, _objData=UmlObjectData [id=157, uuid={92D3B208-D121-484b-A06A-60F4509332B7}, since=null, name=Informative, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 15:09:59,952 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=2102, uuid={6D2E1FAD-19CA-4e94-8EF5-ED52FEBE9A83}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=InformativeAndPrivate, _otherEndName=Package 'Other'] +2024-09-08 15:09:59,953 [main] TRACE ClassBuilder - Class InfClass2 (1 in package InformativeAndPrivate) +2024-09-08 15:09:59,954 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=InformativeAndPrivate::InfClass2, _objData=UmlObjectData [id=6709, uuid={2BFC1914-ECFF-49b5-8F28-BF20BD1E1FE3}, since=null, name=isToto, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,955 [main] DEBUG AssociationEndBuilder - Updated target type to InfClass2 +2024-09-08 15:09:59,955 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=35, uuid=2f9290f0-d27a-3d97-ae39-5fb8a74e9bfd, since=null, name=C1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified, 1_taggedValues{srcTag=a2}], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=36, uuid=085b8b1d-ca40-3c55-9182-189f9ca828d4, since=null, name=C2, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=InfClass2, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2096, uuid={5145D6E8-2DF0-42c7-9CB4-FF75741DBBFA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false, 1_taggedValues{assocTag=a1}] +2024-09-08 15:09:59,955 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=35, uuid=2f9290f0-d27a-3d97-ae39-5fb8a74e9bfd, since=null, name=C1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified, 1_taggedValues{srcTag=a2}], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=36, uuid=085b8b1d-ca40-3c55-9182-189f9ca828d4, since=null, name=C2, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=InfClass2, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2096, uuid={5145D6E8-2DF0-42c7-9CB4-FF75741DBBFA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false, 1_taggedValues{assocTag=a1}] as target to InformativeAndPrivate::InfClass2 +2024-09-08 15:09:59,955 [main] TRACE ClassBuilder - read from EA: InformativeAndPrivate::InfClass2 +2024-09-08 15:09:59,955 [main] TRACE ClassBuilder - Class InfClassContainingEmbeddedClass (2 in package InformativeAndPrivate) +2024-09-08 15:09:59,955 [main] TRACE ClassBuilder - Class EmbeddedClass (0 in package InformativeAndPrivate) +2024-09-08 15:09:59,956 [main] TRACE ClassBuilder - read from EA: InformativeAndPrivate::EmbeddedClass +2024-09-08 15:09:59,956 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=false, _objData=UmlObjectData [id=1496, uuid={A7ED1A2C-8304-40f4-8CF5-D03A18C789CF}, since=null, name=EmbeddedClass, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=InfClassContainingEmbeddedClass, _otherEndName=] +2024-09-08 15:09:59,956 [main] DEBUG AssociationEndBuilder - Updated source type to InfClassContainingEmbeddedClass +2024-09-08 15:09:59,956 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=35, uuid=2f9290f0-d27a-3d97-ae39-5fb8a74e9bfd, since=null, name=C1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=InfClassContainingEmbeddedClass, _multiplicity=[0..1], _navigable=unspecified, 1_taggedValues{srcTag=a2}], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=36, uuid=085b8b1d-ca40-3c55-9182-189f9ca828d4, since=null, name=C2, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=InfClass2, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2096, uuid={5145D6E8-2DF0-42c7-9CB4-FF75741DBBFA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false, 1_taggedValues{assocTag=a1}] as source to InformativeAndPrivate::InfClassContainingEmbeddedClass +2024-09-08 15:09:59,956 [main] TRACE ClassBuilder - read from EA: InformativeAndPrivate::InfClassContainingEmbeddedClass +2024-09-08 15:09:59,957 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61970, _depth=1, _eaElementID=1448, _objData=UmlObjectData [id=55, uuid={D77F6B2A-FE65-4b60-9074-2C6AE2A60EC4}, since=null, name=InformativeAndPrivate, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _modelId=2, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=2102, uuid={6D2E1FAD-19CA-4e94-8EF5-ED52FEBE9A83}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=InformativeAndPrivate, _otherEndName=Package 'Other']], 1_diagrams=[DiagramBuilder [_containingPackage=InformativeAndPrivate, _objData=UmlObjectData [id=157, uuid={92D3B208-D121-484b-A06A-60F4509332B7}, since=null, name=Informative, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _classes=2 +2024-09-08 15:09:59,957 [main] INFO PackageBuilder - processing package DocIEC61970 (2) ... +2024-09-08 15:09:59,957 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=DocIEC61970, _objData=UmlObjectData [id=321, uuid={0BB28151-6215-4b7c-B4B8-991AF32678BA}, since=null, name=MyDocFigure, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 15:09:59,958 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3028, uuid={FCA86298-2230-4142-B759-5A340015A28D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Documentation diagram: Although within an informative package, it should always be exported if generating doc enabled.', htmlDescription='

Documentation diagram: Although within an informative package, it should always be exported if generating doc enabled.

'], _containingPackage=DocIEC61970, _otherEndName=] +2024-09-08 15:09:59,959 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61970, _depth=1, _eaElementID=3027, _objData=UmlObjectData [id=166, uuid={295EC851-E939-47e6-AD36-5B756D64E8A3}, since=null, name=DocIEC61970, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=2, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3028, uuid={FCA86298-2230-4142-B759-5A340015A28D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Documentation diagram: Although within an informative package, it should always be exported if generating doc enabled.', htmlDescription='

Documentation diagram: Although within an informative package, it should always be exported if generating doc enabled.

'], _containingPackage=DocIEC61970, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=DocIEC61970, _objData=UmlObjectData [id=321, uuid={0BB28151-6215-4b7c-B4B8-991AF32678BA}, since=null, name=MyDocFigure, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]] +2024-09-08 15:09:59,959 [main] INFO PackageBuilder - processing package Domain (3) ... +2024-09-08 15:09:59,960 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Domain, _objData=UmlObjectData [id=119, uuid={DB3006EC-40EF-48f9-AE0B-54A4590505A4}, since=null, name=BasicDatatypes, alias=, stereotype=oneDiaStero, secondDiaStereo, visibility=public, txtDescription='This diagram shows basic datatypes that are the basis for all other datatypes.', htmlDescription='

This diagram shows basic datatypes that are the basis for all other datatypes.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:09:59,960 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Domain, _objData=UmlObjectData [id=117, uuid={83A53C50-B2DB-4b88-B1DB-E520708685BF}, since=null, name=TimeDatatypes, alias=, stereotype=docStero, visibility=public, txtDescription='This diagram show time related data types', htmlDescription='

This diagram show time related data types

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:09:59,960 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61970::Domain, _objData=UmlObjectData [id=485, uuid={0FBB1D80-1C4A-4f3f-9812-CD22581D58B6}, since=null, name=, alias=, stereotype=deprecated, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:09:59,963 [main] TRACE ClassBuilder - Class AbsoluteDateTime (1 in package Domain) +2024-09-08 15:09:59,963 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::AbsoluteDateTime, _objData=UmlObjectData [id=1440, uuid={CFF950F8-C337-424c-97FF-B8A4168598B5}, since=null, name=protectedAttribute, alias=, stereotype=, visibility=protected, txtDescription='String representation of date and time, refer to description of the class.', htmlDescription='

String representation of date and time, refer to description of the class.

'], _isConst=false, _isStatic=false, _multiplicity=[2..5], _initValue=, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,963 [main] TRACE ClassBuilder - read from EA: Domain::AbsoluteDateTime +2024-09-08 15:09:59,963 [main] TRACE ClassBuilder - Class ActivePower (2 in package Domain) +2024-09-08 15:09:59,964 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::ActivePower, _objData=UmlObjectData [id=1434, uuid={A3961E95-7DD0-4d68-A41A-FDC07295CD2B}, since=null, name=multiplier, alias=, stereotype=European, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=634, _eaTypeName=UnitMultiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,964 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::ActivePower, _objData=UmlObjectData [id=1435, uuid={8C27ACD4-E6D7-407f-B0AF-B545966B9337}, since=null, name=unit, alias=, stereotype=deprecated, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=W, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,964 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::ActivePower, _objData=UmlObjectData [id=1436, uuid={133597D7-9050-4335-B968-86AF7E16558C}, since=null, name=value, alias=, stereotype=custom, invalid, European, deprecated, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,965 [main] TRACE ClassBuilder - read from EA: Domain::ActivePower +2024-09-08 15:09:59,965 [main] TRACE ClassBuilder - Class ActivePowerChangeRate (3 in package Domain) +2024-09-08 15:09:59,965 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::ActivePowerChangeRate, _objData=UmlObjectData [id=1402, uuid={127E7AD6-A19D-4a00-84C2-6DE69D31A319}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=634, _eaTypeName=UnitMultiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,965 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::ActivePowerChangeRate, _objData=UmlObjectData [id=1403, uuid={D89B1C84-0EB0-4ea0-ACD8-F59965B01026}, since=null, name=unit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=true, _multiplicity=[0..1], _initValue=W/s, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,965 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::ActivePowerChangeRate, _objData=UmlObjectData [id=1404, uuid={9AC71195-FE05-4022-805D-524DFF496593}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=dummy, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,966 [main] TRACE ClassBuilder - read from EA: Domain::ActivePowerChangeRate +2024-09-08 15:09:59,966 [main] TRACE ClassBuilder - Class ApparentPower (4 in package Domain) +2024-09-08 15:09:59,966 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::ApparentPower, _objData=UmlObjectData [id=1368, uuid={C363463C-85C7-487f-BE31-B6444DAB07DD}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=634, _eaTypeName=UnitMultiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,966 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::ApparentPower, _objData=UmlObjectData [id=1369, uuid={C93DE952-5AF9-40cc-9792-4D2372DC5EEF}, since=null, name=unit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=VA, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,967 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::ApparentPower, _objData=UmlObjectData [id=1370, uuid={FEE24CD4-5876-4e4c-B179-AEAA3E11B738}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{tag=val}] +2024-09-08 15:09:59,967 [main] TRACE ClassBuilder - read from EA: Domain::ApparentPower +2024-09-08 15:09:59,967 [main] TRACE ClassBuilder - Class Boolean (5 in package Domain) +2024-09-08 15:09:59,971 [main] TRACE ClassBuilder - read from EA: Domain::Boolean +2024-09-08 15:09:59,971 [main] TRACE ClassBuilder - Class Currency (6 in package Domain) +2024-09-08 15:09:59,971 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Currency, _objData=UmlObjectData [id=1287, uuid={BD7715AD-8607-429e-905E-CA26C170ECBF}, since=null, name=USD, alias=, stereotype=enum, visibility=public, txtDescription='US dollar', htmlDescription='

US dollar

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,971 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Currency, _objData=UmlObjectData [id=1288, uuid={F9D2BF52-65C4-45f2-91C7-F0990AF9B19F}, since=null, name=EUR, alias=, stereotype=enum, visibility=public, txtDescription='European euro', htmlDescription='

European euro

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,971 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Currency, _objData=UmlObjectData [id=1289, uuid={B68ED9D0-E666-4c95-B4C8-3A2C8760C838}, since=null, name=AUD, alias=, stereotype=enum, visibility=public, txtDescription='Australian dollar', htmlDescription='

Australian dollar

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,971 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Currency, _objData=UmlObjectData [id=1290, uuid={911D1995-C80E-4d3e-914F-A68C43786DDB}, since=null, name=CAD, alias=, stereotype=enum, visibility=public, txtDescription='Canadian dollar', htmlDescription='

Canadian dollar

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,972 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Currency, _objData=UmlObjectData [id=1291, uuid={5EFD5A2E-31B9-4aea-84D5-914F1C0A31DC}, since=null, name=CHF, alias=, stereotype=enum, visibility=public, txtDescription='Swiss francs', htmlDescription='

Swiss francs

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,972 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Currency, _objData=UmlObjectData [id=1292, uuid={FE84795F-1D80-4a7f-B2FC-E502533890BD}, since=null, name=CNY, alias=, stereotype=enum, visibility=public, txtDescription='Chinese yuan renminbi', htmlDescription='

Chinese yuan renminbi

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,972 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Currency, _objData=UmlObjectData [id=1293, uuid={2B725900-37D7-430e-A696-95A9DE1853F5}, since=null, name=DKK, alias=, stereotype=enum, visibility=public, txtDescription='Danish crown', htmlDescription='

Danish crown

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,972 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Currency, _objData=UmlObjectData [id=1294, uuid={5284C310-CFA9-4f8c-9FC1-89878D959008}, since=null, name=GBP, alias=, stereotype=enum, visibility=public, txtDescription='British pound', htmlDescription='

British pound

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,972 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Currency, _objData=UmlObjectData [id=1295, uuid={D6821076-1C19-4116-9141-1E3B66B12E37}, since=null, name=JPY, alias=, stereotype=enum, visibility=public, txtDescription='Japanese yen', htmlDescription='

Japanese yen

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,973 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Currency, _objData=UmlObjectData [id=1296, uuid={C8641234-DC52-4a27-84B0-840661758085}, since=null, name=NOK, alias=, stereotype=enum, visibility=public, txtDescription='Norwegian crown', htmlDescription='

Norwegian crown

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,973 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Currency, _objData=UmlObjectData [id=1297, uuid={4EA192E2-0BD3-4085-8CE4-6078AEA30D97}, since=null, name=RUR, alias=, stereotype=enum, visibility=public, txtDescription='Russian ruble', htmlDescription='

Russian ruble

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,973 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Currency, _objData=UmlObjectData [id=1298, uuid={52FEE14B-6D80-4799-97EE-C8B3734C7B0F}, since=null, name=SEK, alias=, stereotype=enum, visibility=public, txtDescription='Swedish crown', htmlDescription='

Swedish crown

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,973 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Currency, _objData=UmlObjectData [id=1299, uuid={ABB74D98-5437-40d9-AB9B-575FF2F27A53}, since=null, name=INR, alias=, stereotype=enum, visibility=public, txtDescription='India rupees', htmlDescription='

India rupees

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,973 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Currency, _objData=UmlObjectData [id=1300, uuid={3D3DF56A-8E85-4f34-AD5D-C16CB7171783}, since=null, name=other, alias=, stereotype=enum, deprecated, visibility=public, txtDescription='Another type of currency.', htmlDescription='

Another type of currency.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,974 [main] TRACE ClassBuilder - read from EA: Domain::Currency +2024-09-08 15:09:59,974 [main] TRACE ClassBuilder - Class Float (7 in package Domain) +2024-09-08 15:09:59,974 [main] TRACE ClassBuilder - read from EA: Domain::Float +2024-09-08 15:09:59,974 [main] TRACE ClassBuilder - Class Integer (8 in package Domain) +2024-09-08 15:09:59,974 [main] TRACE ClassBuilder - read from EA: Domain::Integer +2024-09-08 15:09:59,974 [main] TRACE ClassBuilder - Class Money (9 in package Domain) +2024-09-08 15:09:59,975 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Money, _objData=UmlObjectData [id=1323, uuid={86CC9B3D-6DFC-4a34-9152-1BD808FBDD41}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=634, _eaTypeName=UnitMultiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,975 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Money, _objData=UmlObjectData [id=1324, uuid={FA0E49C2-B5F3-4084-948C-2A553D874695}, since=null, name=unit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=600, _eaTypeName=Currency, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,975 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Money, _objData=UmlObjectData [id=1325, uuid={FD1C5A68-05E0-448a-9515-88FB188D1A41}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,975 [main] TRACE ClassBuilder - read from EA: Domain::Money +2024-09-08 15:09:59,975 [main] TRACE ClassBuilder - Class PerCent (10 in package Domain) +2024-09-08 15:09:59,975 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::PerCent, _objData=UmlObjectData [id=1365, uuid={A2810EB7-9B4B-4386-9EE5-CAE5AB1E6E2C}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=none, _eaTypeId=634, _eaTypeName=UnitMultiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,975 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::PerCent, _objData=UmlObjectData [id=1366, uuid={A1336F58-9A3A-462d-A932-4C80CE9A24AB}, since=null, name=unit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=none, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,976 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::PerCent, _objData=UmlObjectData [id=1367, uuid={3F3F1095-2284-438d-89FF-699BCA187532}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='Normally 0 - 100 on a defined base', htmlDescription='

Normally 0 - 100 on a defined base

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,976 [main] TRACE ClassBuilder - read from EA: Domain::PerCent +2024-09-08 15:09:59,976 [main] TRACE ClassBuilder - Class Seconds (11 in package Domain) +2024-09-08 15:09:59,976 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Seconds, _objData=UmlObjectData [id=1377, uuid={DF58DF5F-F450-4b71-A1A9-1BBA5C696E5C}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=none, _eaTypeId=634, _eaTypeName=UnitMultiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,976 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Seconds, _objData=UmlObjectData [id=1378, uuid={383E0AEB-B11C-4c02-8C56-5E84FCDA0D3B}, since=null, name=unit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=s, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,976 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Seconds, _objData=UmlObjectData [id=1379, uuid={EC69405D-C44E-4c12-BAD5-58A3C1375649}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='Time, in seconds', htmlDescription='

Time, in seconds

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,977 [main] TRACE ClassBuilder - read from EA: Domain::Seconds +2024-09-08 15:09:59,977 [main] TRACE ClassBuilder - Class String (12 in package Domain) +2024-09-08 15:09:59,977 [main] TRACE ClassBuilder - read from EA: Domain::String +2024-09-08 15:09:59,977 [main] TRACE ClassBuilder - Class UnitMultiplier (13 in package Domain) +2024-09-08 15:09:59,977 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitMultiplier, _objData=UmlObjectData [id=1417, uuid={90F83546-DD55-4cf8-9E01-DD8F69D74A8D}, since=null, name=p, alias=, stereotype=enum, visibility=public, txtDescription='Pico 10-12', htmlDescription='

Pico 10-12

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,977 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitMultiplier, _objData=UmlObjectData [id=1418, uuid={EA61DA27-05DF-41c7-B459-F1194928062C}, since=null, name=n, alias=, stereotype=enum, visibility=public, txtDescription='Nano 10-9', htmlDescription='

Nano 10-9

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,978 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitMultiplier, _objData=UmlObjectData [id=1419, uuid={FF8E9CD6-A459-47ab-A71E-E69857742CE1}, since=null, name=micro, alias=, stereotype=enum, visibility=public, txtDescription='Micro 10**-6', htmlDescription='

Micro 10**-6

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,978 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitMultiplier, _objData=UmlObjectData [id=1420, uuid={E7A60C22-3D12-49c5-8F18-870B1A39A1AA}, since=null, name=m, alias=, stereotype=enum, visibility=public, txtDescription='Milli 10**-3', htmlDescription='

Milli 10**-3

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,978 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitMultiplier, _objData=UmlObjectData [id=1421, uuid={1219082C-9AED-439c-B862-8CA874195BA0}, since=null, name=c, alias=, stereotype=enum, visibility=public, txtDescription='Centi 10**-2', htmlDescription='

Centi 10**-2

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,978 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitMultiplier, _objData=UmlObjectData [id=1422, uuid={4E630955-DF5D-403d-A377-7ED5FF85978D}, since=null, name=d, alias=, stereotype=enum, visibility=public, txtDescription='Deci 10**-1', htmlDescription='

Deci 10**-1

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,978 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitMultiplier, _objData=UmlObjectData [id=1423, uuid={C868627C-3B72-4bc8-879D-E177E9059A22}, since=null, name=k, alias=, stereotype=enum, visibility=public, txtDescription='Kilo 10**3', htmlDescription='

Kilo 10**3

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,978 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitMultiplier, _objData=UmlObjectData [id=1424, uuid={F956FDD6-8C6E-427d-A51A-22A1D75BE1C3}, since=null, name=M, alias=, stereotype=enum, visibility=public, txtDescription='Mega 10**6', htmlDescription='

Mega 10**6

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,978 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitMultiplier, _objData=UmlObjectData [id=1425, uuid={351B5D79-6203-48e5-9D9E-ECD7FB7CA8A6}, since=null, name=G, alias=, stereotype=enum, visibility=public, txtDescription='Giga 10**9', htmlDescription='

Giga 10**9

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,979 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitMultiplier, _objData=UmlObjectData [id=1426, uuid={F5185FB9-24E6-47c6-BB4D-259FDF678329}, since=null, name=T, alias=, stereotype=enum, visibility=public, txtDescription='Tera 10**12', htmlDescription='

Tera 10**12

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,979 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitMultiplier, _objData=UmlObjectData [id=1427, uuid={C352D73C-B9DC-4e7d-B1DB-5BE6D4BAE868}, since=null, name=none, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,979 [main] TRACE ClassBuilder - read from EA: Domain::UnitMultiplier +2024-09-08 15:09:59,979 [main] TRACE ClassBuilder - Class UnitSymbol (14 in package Domain) +2024-09-08 15:09:59,979 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1344, uuid={F3C2C2B7-88D3-4144-A993-6BB01538909F}, since=null, name=min, alias=, stereotype=enum, visibility=public, txtDescription='Time in minutes', htmlDescription='

Time in minutes

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,980 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1345, uuid={8D5395D7-20D2-4d16-8AA0-46BE6B3A4905}, since=null, name=h, alias=, stereotype=enum, visibility=public, txtDescription='Time in hours', htmlDescription='

Time in hours

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,980 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1346, uuid={6F295BE4-CF54-4781-AE65-554D3DA58236}, since=null, name=deg, alias=, stereotype=enum, visibility=public, txtDescription='Plane angle in degrees', htmlDescription='

Plane angle in degrees

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,980 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1347, uuid={C45DCC7F-FD4A-4359-84C6-D740C56234E9}, since=null, name=rad, alias=, stereotype=enum, visibility=public, txtDescription='Plane angle in radians', htmlDescription='

Plane angle in radians

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,980 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1348, uuid={54E72D74-D283-4720-94FB-A411C9888D14}, since=null, name=J, alias=, stereotype=enum, visibility=public, txtDescription='Energy in joule', htmlDescription='

Energy in joule

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,981 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1349, uuid={B4811904-31E9-4915-A3CB-432E4AF2C744}, since=null, name=N, alias=, stereotype=enum, visibility=public, txtDescription='Force in newton', htmlDescription='

Force in newton

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,981 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1350, uuid={910795B5-E8CB-467a-B6DA-FCEB7F9C5AE0}, since=null, name=S, alias=, stereotype=enum, visibility=public, txtDescription='Conductance in siemens', htmlDescription='

Conductance in siemens

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,981 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1351, uuid={BBC06058-30E3-4851-A905-93E9B23F32D5}, since=null, name=none, alias=, stereotype=enum, visibility=public, txtDescription='Dimension less quantity, e.g. count, per unit, etc.', htmlDescription='

Dimension less quantity, e.g. count, per unit, etc.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,981 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1352, uuid={FEEB3794-F2F0-4f0e-AD18-3C217F641EE5}, since=null, name=Hz, alias=, stereotype=enum, visibility=public, txtDescription='Frequency in hertz', htmlDescription='

Frequency in hertz

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,981 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1353, uuid={8CB1FDE2-DF64-4bb1-AF2F-DF8025D92EAA}, since=null, name=g, alias=, stereotype=enum, visibility=public, txtDescription='Mass in gram', htmlDescription='

Mass in gram

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=4, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,981 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1354, uuid={23A2B824-9DCE-4fde-A626-A1D9C9F60C28}, since=null, name=Pa, alias=, stereotype=enum, visibility=public, txtDescription='Pressure in pascal (n/m2)', htmlDescription='

Pressure in pascal (n/m2)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,981 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1355, uuid={12DEDC13-8E22-481f-8DBE-977C82791D07}, since=null, name=m, alias=, stereotype=enum, visibility=public, txtDescription='Length in meter', htmlDescription='

Length in meter

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,982 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1356, uuid={38241F8A-C4AF-4a92-96AD-D80010BDCEC6}, since=null, name=m2, alias=, stereotype=enum, visibility=public, txtDescription='Area in square meters', htmlDescription='

Area in square meters

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,982 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1357, uuid={24D5EF94-21EB-4d21-9651-E1D865EEC09D}, since=null, name=m3, alias=, stereotype=enum, visibility=public, txtDescription='Volume in cubic meters', htmlDescription='

Volume in cubic meters

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,982 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1358, uuid={31446F6F-8A9C-4aa2-BFBA-C1B6E30C6F39}, since=null, name=V/VAr, alias=, stereotype=enum, visibility=public, txtDescription='Volt per volt ampere reactive', htmlDescription='

Volt per volt ampere reactive

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,982 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1359, uuid={FCF2F195-D0A1-421a-8210-46757087B50C}, since=null, name=W/Hz, alias=, stereotype=enum, visibility=public, txtDescription='Watt per hertz', htmlDescription='

Watt per hertz

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,982 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1360, uuid={2365E502-B3DD-4499-B7B5-3B888E047BC9}, since=null, name=J/s, alias=, stereotype=enum, visibility=public, txtDescription='Joule per second', htmlDescription='

Joule per second

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,982 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1361, uuid={203D16EC-F37B-4a03-8423-D8519C75B46F}, since=null, name=s-1, alias=, stereotype=enum, visibility=public, txtDescription='per second', htmlDescription='

per second

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,982 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1362, uuid={029189EA-27B3-48cd-BA61-6825B3E0679E}, since=null, name=kg/J, alias=, stereotype=enum, visibility=public, txtDescription='Mass per energy', htmlDescription='

Mass per energy

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,982 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1363, uuid={4C8D790D-7499-43cb-A78C-CCAAA0812F03}, since=null, name=W/s, alias=, stereotype=enum, visibility=public, txtDescription='Watt per second', htmlDescription='

Watt per second

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,983 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1364, uuid={EBC50519-2749-4d98-887C-A3BB259AA6D4}, since=null, name=Hz-1, alias=, stereotype=enum, visibility=public, txtDescription='per Hertz', htmlDescription='

per Hertz

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,983 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1331, uuid={2A6C639B-07EF-4ec1-90FE-7F3B55FEC466}, since=null, name=VA, alias=, stereotype=enum, visibility=public, txtDescription='Apparent power in volt ampere', htmlDescription='

Apparent power in volt ampere

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,983 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1332, uuid={0C6FC879-3330-40c5-840B-FA4D11DD92CA}, since=null, name=W, alias=, stereotype=enum, visibility=public, txtDescription='Active power in watt', htmlDescription='

Active power in watt

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,983 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1333, uuid={EB818682-FB29-4a83-ADDD-7D9A42DF05FA}, since=null, name=VAr, alias=, stereotype=enum, visibility=public, txtDescription='Reactive power in volt ampere reactive', htmlDescription='

Reactive power in volt ampere reactive

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,983 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1334, uuid={BC16CD17-F133-46fc-BA52-A3568AE7389E}, since=null, name=VAh, alias=, stereotype=enum, visibility=public, txtDescription='Apparent energy in volt ampere hours', htmlDescription='

Apparent energy in volt ampere hours

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=true, _type=null] +2024-09-08 15:09:59,983 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1335, uuid={7069D1E3-C2D9-4a10-8B91-0D9AC394F38F}, since=null, name=Wh, alias=, stereotype=, visibility=public, txtDescription='Real energy in what hours', htmlDescription='

Real energy in what hours

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,983 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1336, uuid={D0851FC4-83F3-4911-B874-CE37B0104941}, since=null, name=VArh, alias=, stereotype=enum, visibility=public, txtDescription='Reactive energy in volt ampere reactive hours', htmlDescription='

Reactive energy in volt ampere reactive hours

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,984 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1337, uuid={7B623DFC-A240-4023-AC11-C8A279608CFE}, since=null, name=V, alias=, stereotype=enum, visibility=public, txtDescription='Voltage in volt', htmlDescription='

Voltage in volt

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,985 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1338, uuid={4A304014-4EC4-4c01-AC1C-E1C9D68AF390}, since=null, name=ohm, alias=, stereotype=enum, visibility=public, txtDescription='Resistance in ohm', htmlDescription='

Resistance in ohm

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,986 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1339, uuid={B9C0CD6C-435E-4dbc-9613-BB1EF4A950C1}, since=null, name=A, alias=, stereotype=enum, visibility=public, txtDescription='Current in ampere', htmlDescription='

Current in ampere

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,986 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1340, uuid={DE960AB5-4C9B-4079-8BD4-F158F1785B5C}, since=null, name=F, alias=, stereotype=enum, visibility=public, txtDescription='Capacitance in farad', htmlDescription='

Capacitance in farad

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,986 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1341, uuid={7B87ECEA-CB89-4395-9C1A-BF342DBB00A7}, since=null, name=H, alias=, stereotype=enum, visibility=public, txtDescription='Inductance in henry', htmlDescription='

Inductance in henry

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,986 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1342, uuid={3D791F1B-3826-43c9-8B95-384A2CEC6B1D}, since=null, name=ºC, alias=, stereotype=enum, visibility=public, txtDescription='Relative temperature in degrees Celsius', htmlDescription='

Relative temperature in degrees Celsius

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,986 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1343, uuid={173DF248-0E38-42af-A33E-460F413D5C35}, since=null, name=s, alias=, stereotype=enum, visibility=public, txtDescription='Time in seconds', htmlDescription='

Time in seconds

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,987 [main] TRACE ClassBuilder - read from EA: Domain::UnitSymbol +2024-09-08 15:09:59,987 [main] TRACE ClassBuilder - Class Voltage (15 in package Domain) +2024-09-08 15:09:59,987 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Voltage, _objData=UmlObjectData [id=1304, uuid={5CFD034E-D7E1-4d20-BE0B-BB9E4F9D2D4B}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=634, _eaTypeName=UnitMultiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,987 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Voltage, _objData=UmlObjectData [id=1305, uuid={6E959BD4-0ACC-4884-99F5-0B158661A3D9}, since=null, name=unit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=V, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,988 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Voltage, _objData=UmlObjectData [id=1306, uuid={C86122FF-94E1-4244-975A-BA865D8135BC}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,988 [main] TRACE ClassBuilder - read from EA: Domain::Voltage +2024-09-08 15:09:59,988 [main] TRACE ClassBuilder - Class WithSingleLiteral (16 in package Domain) +2024-09-08 15:09:59,988 [main] DEBUG DbAttributeBuilder - fixing lower bound '' to 1 for enum:UmlObjectData [id=3289, uuid={121A7175-5FA9-45a6-81BF-B7266809B519}, since=null, name=singleLiteral, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''] +2024-09-08 15:09:59,988 [main] DEBUG DbAttributeBuilder - fixing upper bound '' to 1 for enum:UmlObjectData [id=3289, uuid={121A7175-5FA9-45a6-81BF-B7266809B519}, since=null, name=singleLiteral, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''] +2024-09-08 15:09:59,988 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::WithSingleLiteral, _objData=UmlObjectData [id=3289, uuid={121A7175-5FA9-45a6-81BF-B7266809B519}, since=null, name=singleLiteral, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,988 [main] TRACE ClassBuilder - read from EA: Domain::WithSingleLiteral +2024-09-08 15:09:59,988 [main] TRACE ClassBuilder - Class YesNo (17 in package Domain) +2024-09-08 15:09:59,989 [main] DEBUG DbAttributeBuilder - fixing lower bound '' to 1 for enum:UmlObjectData [id=3299, uuid={5F23052B-650E-405e-9FB0-71CD876FB873}, since=null, name=Yes, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''] +2024-09-08 15:09:59,989 [main] DEBUG DbAttributeBuilder - fixing upper bound '' to 1 for enum:UmlObjectData [id=3299, uuid={5F23052B-650E-405e-9FB0-71CD876FB873}, since=null, name=Yes, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''] +2024-09-08 15:09:59,989 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::YesNo, _objData=UmlObjectData [id=3299, uuid={5F23052B-650E-405e-9FB0-71CD876FB873}, since=null, name=Yes, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,989 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::YesNo, _objData=UmlObjectData [id=3300, uuid={3B880AE1-415A-482b-A5C8-B5FFF8D15CDF}, since=null, name=No, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,989 [main] TRACE ClassBuilder - read from EA: Domain::YesNo +2024-09-08 15:09:59,989 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61970, _depth=1, _eaElementID=573, _objData=UmlObjectData [id=41, uuid={0134E45C-F32A-4522-A725-E07B0AE4CB57}, since=null, name=Domain, alias=Example alias name, stereotype=Global, visibility=public, txtDescription='the domain package is a data dictionary of quantities and units that define datatypes for attributes (properties) that may be used by any class in any other package. +This package contains the definition of primitive datatypes, including units of measure and permissible values. Each datatype contains a value attribute and an optional unit of measure, which is specified as a static variable initialized to the textual description of the unit of measure. The value of the "units" string may be country or customer specific. Typical values are given. Permissible values for enumerations are listed in the documentation for the attribute using UML constraint syntax inside curly braces. Lengths of variable strings are listed in the descriptive text where required.', htmlDescription='

the domain package is a data dictionary of quantities and units that define datatypes for attributes (properties) that may be used by any class in any other package.

This package contains the definition of primitive datatypes, including units of measure and permissible values. Each datatype contains a value attribute and an optional unit of measure, which is specified as a static variable initialized to the textual description of the unit of measure. The value of the "units" string may be country or customer specific. Typical values are given. Permissible values for enumerations are listed in the documentation for the attribute using UML constraint syntax inside curly braces. Lengths of variable strings are listed in the descriptive text where required.

'], _modelId=2, _selfDependent=false, 2_diagrams=[DiagramBuilder [_containingPackage=Domain, _objData=UmlObjectData [id=119, uuid={DB3006EC-40EF-48f9-AE0B-54A4590505A4}, since=null, name=BasicDatatypes, alias=, stereotype=oneDiaStero, secondDiaStereo, visibility=public, txtDescription='This diagram shows basic datatypes that are the basis for all other datatypes.', htmlDescription='

This diagram shows basic datatypes that are the basis for all other datatypes.

'], _portrait=true, _kind=LOGICAL], DiagramBuilder [_containingPackage=Domain, _objData=UmlObjectData [id=117, uuid={83A53C50-B2DB-4b88-B1DB-E520708685BF}, since=null, name=TimeDatatypes, alias=, stereotype=docStero, visibility=public, txtDescription='This diagram show time related data types', htmlDescription='

This diagram show time related data types

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsTarget=1, _classes=17 +2024-09-08 15:09:59,989 [main] INFO PackageBuilder - processing package Core (4) ... +2024-09-08 15:09:59,990 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Core, _objData=UmlObjectData [id=153, uuid={F791662C-7488-4578-88E1-21352F9799CF}, since=null, name=Main, alias=, stereotype=, visibility=public, txtDescription='"This diagram is intended to show all classes needed for any application of the CIM for modeling transmission and generation systems. +Test bold ignored.', htmlDescription='

"This diagram is intended to show all classes needed for any application of the CIM for modeling transmission and generation systems.

Test bold ignored.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:09:59,990 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Core, _objData=UmlObjectData [id=155, uuid={88289F74-ECDD-42e8-A693-6744785B1A0C}, since=null, name=Ownership, alias=, stereotype=Deprecated, visibility=public, txtDescription='doc present (but missing "." at its end) and starting with lower case letter', htmlDescription='

doc present (but missing "." at its end) and starting with lower case letter

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:09:59,990 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61970::Core, _objData=UmlObjectData [id=480, uuid={285C8813-D098-4165-89FE-151394F8B419}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], 1_taggedValues{depTag=value}] +2024-09-08 15:09:59,990 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61970::Core->IEC61970::Domain, _objData=UmlObjectData [id=485, uuid={0FBB1D80-1C4A-4f3f-9812-CD22581D58B6}, since=null, name=, alias=, stereotype=deprecated, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:09:59,992 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3029, uuid={F8743013-1839-4100-8A7A-A8F62B12BF60}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Note: Diagram does have <> stereotype, but I don't seem to find the means to display that anywhere in EA: neither diagram itself nor Project Browser (in contrast to other UML elements, such as class, package, etc.).', htmlDescription='

Note: Diagram does have <<deprecated>> stereotype, but I don't seem to find the means to display that anywhere in EA: neither diagram itself nor Project Browser (in contrast to other UML elements, such as class, package, etc.).

'], _containingPackage=Core, _otherEndName=] +2024-09-08 15:09:59,993 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3082, uuid={597FAD1D-4901-4aae-9B6F-EA32A226A6A2}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Both class and attribute (here: literal 'singleBreaker') have constraints, we can visualise only those on class.', htmlDescription='

Both class and attribute (here: literal 'singleBreaker') have constraints, we can visualise only those on class.

'], _containingPackage=Core, _otherEndName=] +2024-09-08 15:09:59,993 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3083, uuid={C037F9C1-53F1-43ae-BBF4-92F9C66EE3D7}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='attribute has constraint, but it cannot be displayed...', htmlDescription='

attribute has constraint, but it cannot be displayed...

'], _containingPackage=Core, _otherEndName=] +2024-09-08 15:09:59,993 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3084, uuid={E1C2884E-0577-41a7-ACBD-0C789F87546C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='constraint on generalisation can be specified. seems to be always displayed - cannot be hidden.', htmlDescription='

constraint on generalisation can be specified. seems to be always displayed - cannot be hidden.

'], _containingPackage=Core, _otherEndName=] +2024-09-08 15:09:59,993 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3085, uuid={9A93B88B-4383-4d6a-8BB3-9ABEAB06A27B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Core, _otherEndName=] +2024-09-08 15:09:59,993 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3086, uuid={FE9DCCF0-64F8-47d0-95BE-6D22F3B70814}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Need to enable Diagram option to show constraints, and optionally (if desired) inherited constraints.', htmlDescription='

Need to enable Diagram option to show constraints, and optionally (if desired) inherited constraints.

'], _containingPackage=Core, _otherEndName=] +2024-09-08 15:09:59,993 [main] TRACE ClassBuilder - Class BasePower (1 in package Core) +2024-09-08 15:09:59,994 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::BasePower, _objData=UmlObjectData [id=2100, uuid={9F2DC83B-B801-4b29-BD57-4781BD53A50A}, since=null, name=basePower, alias=, stereotype=, visibility=public, txtDescription='definition of base power.', htmlDescription='

definition of base power.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=616, _eaTypeName=ApparentPower, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,994 [main] TRACE ClassBuilder - read from EA: Core::BasePower +2024-09-08 15:09:59,994 [main] TRACE ClassBuilder - Class BaseVoltage (2 in package Core) +2024-09-08 15:09:59,994 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::BaseVoltage, _objData=UmlObjectData [id=2053, uuid={D37DA22A-916B-4a33-88AB-B77C229DB882}, since=null, name=protectedNominalVoltage, alias=, stereotype=, visibility=protected, txtDescription=''the' PowerSystemResource's base voltage.', htmlDescription='

'the' PowerSystemResource's base voltage.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=602, _eaTypeName=Voltage, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,995 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::BaseVoltage, _objData=UmlObjectData [id=2981, uuid={9451DDA7-F7F4-4efe-A373-99B36F51A8C5}, since=null, name=packagePrivateIsDC, alias=, stereotype=, visibility=package, txtDescription='"if true", this is a direct current base voltage and items assigned to this base voltage are also associated with a direct current capabilities. False indicates alternating current.', htmlDescription='

"if true", this is a direct current base voltage and items assigned to this base voltage are also associated with a direct current capabilities. False indicates alternating current.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,995 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::BaseVoltage, _objData=UmlObjectData [id=3249, uuid={48F97F30-E8FD-4e3d-85E1-6009E26B1435}, since=null, name=basePower, alias=, stereotype=, visibility=public, txtDescription='This is to test whether we print correctly multiple attributes of the same name (defined on different classes) within the data index table.', htmlDescription='

This is to test whether we print correctly multiple attributes of the same name (defined on different classes) within the data index table.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,995 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::BaseVoltage, _objData=UmlObjectData [id=3317, uuid={B3B2A77F-3967-4163-917F-7EC3BC0EF50C}, since=null, name=privateDummy, alias=, stereotype=, visibility=private, txtDescription='This is to test whether we print correctly multiple attributes of the same name (defined on different classes) within the data index table.', htmlDescription='

This is to test whether we print correctly multiple attributes of the same name (defined on different classes) within the data index table.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,995 [main] DEBUG AssociationEndBuilder - Updated target type to BaseVoltage +2024-09-08 15:09:59,996 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=166, uuid=2df96825-3bf0-3160-a555-a54fda61527c, since=null, name=VoltageLevel, alias=, stereotype=, visibility=public, txtDescription='The VoltageLevels having this BaseVoltage.', htmlDescription='

The VoltageLevels having this BaseVoltage.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=167, uuid=7e385884-ee3f-3d72-af09-7657d3ecd905, since=null, name=BaseVoltage, alias=, stereotype=, visibility=public, txtDescription='The base voltage used for all equipment within the VoltageLevel.', htmlDescription='

The base voltage used for all equipment within the VoltageLevel.

'], _type=BaseVoltage, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=120, uuid={F610FDC8-D98D-4367-99A9-E9CA1C8A8CC5}, since=null, name=, alias=, stereotype=deprecated, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:09:59,996 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=166, uuid=2df96825-3bf0-3160-a555-a54fda61527c, since=null, name=VoltageLevel, alias=, stereotype=, visibility=public, txtDescription='The VoltageLevels having this BaseVoltage.', htmlDescription='

The VoltageLevels having this BaseVoltage.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=167, uuid=7e385884-ee3f-3d72-af09-7657d3ecd905, since=null, name=BaseVoltage, alias=, stereotype=, visibility=public, txtDescription='The base voltage used for all equipment within the VoltageLevel.', htmlDescription='

The base voltage used for all equipment within the VoltageLevel.

'], _type=BaseVoltage, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=120, uuid={F610FDC8-D98D-4367-99A9-E9CA1C8A8CC5}, since=null, name=, alias=, stereotype=deprecated, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Core::BaseVoltage +2024-09-08 15:09:59,997 [main] DEBUG AssociationEndBuilder - Updated source type to BaseVoltage +2024-09-08 15:09:59,997 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=169, uuid=a7c02e37-c767-3d25-b98f-fef014267b5e, since=null, name=ProtectedBaseVoltage, alias=, stereotype=, visibility=protected, txtDescription='Use association to ConductingEquipment only when there is no VoltageLevel container used.', htmlDescription='

Use association to ConductingEquipment only when there is no VoltageLevel container used.

'], _type=BaseVoltage, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=170, uuid=4ff0bdbf-dba0-3daa-9eee-87a1d4811557, since=null, name=ConductingEquipment, alias=, stereotype=, visibility=public, txtDescription='Use association to ConductingEquipment only when there is no VoltageLevel container used.', htmlDescription='

Use association to ConductingEquipment only when there is no VoltageLevel container used.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=121, uuid={B21687D9-2B46-4880-B016-06CCFA215EC3}, since=null, name=, alias=, stereotype=builds, visibility=public, txtDescription='Use association to ConductingEquipment only when there is no VoltageLevel container used.', htmlDescription='

Use association to ConductingEquipment only when there is no VoltageLevel container used.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:09:59,997 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=169, uuid=a7c02e37-c767-3d25-b98f-fef014267b5e, since=null, name=ProtectedBaseVoltage, alias=, stereotype=, visibility=protected, txtDescription='Use association to ConductingEquipment only when there is no VoltageLevel container used.', htmlDescription='

Use association to ConductingEquipment only when there is no VoltageLevel container used.

'], _type=BaseVoltage, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=170, uuid=4ff0bdbf-dba0-3daa-9eee-87a1d4811557, since=null, name=ConductingEquipment, alias=, stereotype=, visibility=public, txtDescription='Use association to ConductingEquipment only when there is no VoltageLevel container used.', htmlDescription='

Use association to ConductingEquipment only when there is no VoltageLevel container used.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=121, uuid={B21687D9-2B46-4880-B016-06CCFA215EC3}, since=null, name=, alias=, stereotype=builds, visibility=public, txtDescription='Use association to ConductingEquipment only when there is no VoltageLevel container used.', htmlDescription='

Use association to ConductingEquipment only when there is no VoltageLevel container used.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Core::BaseVoltage +2024-09-08 15:09:59,997 [main] DEBUG AssociationEndBuilder - Updated target type to BaseVoltage +2024-09-08 15:09:59,997 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=172, uuid=ddf38257-ed75-3694-81a7-e984049e0ecf, since=null, name=TopologicalNode, alias=, stereotype=, visibility=public, txtDescription='The topological nodes at the base voltage.', htmlDescription='

The topological nodes at the base voltage.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=173, uuid=56be42a8-abee-3a0d-ab13-c23730a949e3, since=null, name=BaseVoltage, alias=, stereotype=, visibility=public, txtDescription='The base voltage of the topologocial node.', htmlDescription='

The base voltage of the topologocial node.

'], _type=BaseVoltage, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2092, uuid={6F37A2BE-FB37-4a6c-8BB1-CFC6690C1867}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:09:59,998 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=172, uuid=ddf38257-ed75-3694-81a7-e984049e0ecf, since=null, name=TopologicalNode, alias=, stereotype=, visibility=public, txtDescription='The topological nodes at the base voltage.', htmlDescription='

The topological nodes at the base voltage.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=173, uuid=56be42a8-abee-3a0d-ab13-c23730a949e3, since=null, name=BaseVoltage, alias=, stereotype=, visibility=public, txtDescription='The base voltage of the topologocial node.', htmlDescription='

The base voltage of the topologocial node.

'], _type=BaseVoltage, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2092, uuid={6F37A2BE-FB37-4a6c-8BB1-CFC6690C1867}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Core::BaseVoltage +2024-09-08 15:09:59,998 [main] TRACE ClassBuilder - read from EA: Core::BaseVoltage +2024-09-08 15:09:59,998 [main] TRACE ClassBuilder - Class Bay (3 in package Core) +2024-09-08 15:09:59,998 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::Bay, _objData=UmlObjectData [id=2077, uuid={26D3924E-0222-4e9a-9373-CD7D256E9B19}, since=null, name=bayEnergyMeasFlag, alias=, stereotype=, visibility=public, txtDescription='Indicates the presence/absence of energy measurements.', htmlDescription='

Indicates the presence/absence of energy measurements.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,998 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::Bay, _objData=UmlObjectData [id=2078, uuid={B5F9E0A2-7BE7-4bb1-A035-0F5F849847F0}, since=null, name=bayPowerMeasFlag, alias=, stereotype=, visibility=public, txtDescription='Indicates the presence/absence of active/reactive power measurements.', htmlDescription='

Indicates the presence/absence of active/reactive power measurements.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,998 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::Bay, _objData=UmlObjectData [id=2079, uuid={94BB9838-29AB-4afe-853A-3BD683EF6B09}, since=null, name=breakerConfiguration, alias=, stereotype=, visibility=public, txtDescription='Breaker configuration.', htmlDescription='

Breaker configuration.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=858, _eaTypeName=BreakerConfiguration, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,998 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::Bay, _objData=UmlObjectData [id=2080, uuid={696CC695-DE24-423a-9CD6-A9FED27803F8}, since=null, name=busBarConfiguration, alias=, stereotype=, visibility=public, txtDescription='Bus bar configuration.', htmlDescription='

Bus bar configuration.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=878, _eaTypeName=BusbarConfiguration, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,998 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::Bay, _objData=UmlObjectData [id=3301, uuid={E893BA26-F5FD-49d7-94E0-CF2CC775E76D}, since=null, name=TestYesNo1, alias=, stereotype=, visibility=public, txtDescription='Indicates the presence/absence of energy measurements.', htmlDescription='

Indicates the presence/absence of energy measurements.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1540, _eaTypeName=YesNo, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,999 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::Bay, _objData=UmlObjectData [id=3302, uuid={57D31F0C-D03A-424d-AF4C-358109CC5473}, since=null, name=testYesNo2, alias=, stereotype=, visibility=public, txtDescription='Indicates the presence/absence of energy measurements.', htmlDescription='

Indicates the presence/absence of energy measurements.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1540, _eaTypeName=YesNo, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:09:59,999 [main] DEBUG AssociationEndBuilder - Updated target type to Bay +2024-09-08 15:09:59,999 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=true, _objData=UmlObjectData [id=182, uuid=da543f3e-ced1-3dc8-93da-d53ef6d9b078, since=null, name=VoltageLevel, alias=, stereotype=endStereo1, deprecated, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=183, uuid=ac2c3369-c00d-3e2e-b4b5-51330068bc70, since=null, name=Bays, alias=, stereotype=deprecated, endStereo2, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=Bay, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=115, uuid={5E328091-5BC1-4fa8-9BA3-F087A215492A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:09:59,999 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=true, _objData=UmlObjectData [id=182, uuid=da543f3e-ced1-3dc8-93da-d53ef6d9b078, since=null, name=VoltageLevel, alias=, stereotype=endStereo1, deprecated, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=183, uuid=ac2c3369-c00d-3e2e-b4b5-51330068bc70, since=null, name=Bays, alias=, stereotype=deprecated, endStereo2, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=Bay, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=115, uuid={5E328091-5BC1-4fa8-9BA3-F087A215492A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Core::Bay +2024-09-08 15:09:59,999 [main] DEBUG AssociationEndBuilder - Updated source type to Bay +2024-09-08 15:10:00,000 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=185, uuid=b3b3f64f-0f2d-3934-8f26-f0508da2c3ec, since=null, name=bays, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=Bay, _multiplicity=[0..*], _navigable=yes], _targetEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=false, _objData=UmlObjectData [id=186, uuid=b5299d65-7a4d-3948-9041-95c7efec55f6, since=null, name=Substation, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=null, _multiplicity=[0..1], _navigable=yes], _objData=UmlObjectData [id=116, uuid={51152F4A-1B03-451f-BA84-6A05A6AE1630}, since=null, name=, alias=, stereotype=European, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Bi-Directional, _directionUnspecified=false, _biDirectional=true] +2024-09-08 15:10:00,000 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=185, uuid=b3b3f64f-0f2d-3934-8f26-f0508da2c3ec, since=null, name=bays, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=Bay, _multiplicity=[0..*], _navigable=yes], _targetEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=false, _objData=UmlObjectData [id=186, uuid=b5299d65-7a4d-3948-9041-95c7efec55f6, since=null, name=Substation, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=null, _multiplicity=[0..1], _navigable=yes], _objData=UmlObjectData [id=116, uuid={51152F4A-1B03-451f-BA84-6A05A6AE1630}, since=null, name=, alias=, stereotype=European, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Bi-Directional, _directionUnspecified=false, _biDirectional=true] as source to Core::Bay +2024-09-08 15:10:00,001 [main] TRACE ClassBuilder - read from EA: Core::Bay +2024-09-08 15:10:00,001 [main] TRACE ClassBuilder - Class BreakerConfiguration (4 in package Core) +2024-09-08 15:10:00,003 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::BreakerConfiguration, _objData=UmlObjectData [id=2073, uuid={44DB9F68-B210-48a4-9625-F25A2CB91A8C}, since=null, name=singleBreaker, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null, 2 _constraints[ConstraintBuilder [_objData=UmlObjectData [id=190, uuid=ce702525-165b-3d51-83b2-ee47df3a8f89, since=null, name=singleBreakerConstraintNoType, alias=, stereotype=, visibility=public, txtDescription='text', htmlDescription='

text

'], _containingAttribute=singleBreaker, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=text], ConstraintBuilder [_objData=UmlObjectData [id=191, uuid=5b5b7544-e9ee-39ca-bd9e-409e9ffefff9, since=null, name=processContstraint, alias=, stereotype=, visibility=public, txtDescription='process constraint text', htmlDescription='

process constraint text

'], _containingAttribute=singleBreaker, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=process constraint text]]] +2024-09-08 15:10:00,004 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::BreakerConfiguration, _objData=UmlObjectData [id=2074, uuid={0B0C09C4-66E5-48db-85B5-7BBCB3FB2759}, since=null, name=breakerAndAHalf, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,004 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::BreakerConfiguration, _objData=UmlObjectData [id=2075, uuid={8D041086-6214-4bc0-8351-D8A680FEC6E3}, since=null, name=doubleBreaker, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,004 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::BreakerConfiguration, _objData=UmlObjectData [id=2076, uuid={00F5D8BD-3E07-4371-B7A3-29276B241276}, since=null, name=noBreaker, alias=, stereotype=enum, European, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,004 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3467, uuid={BAC620E2-FBB8-4f97-9C0D-E83963303215}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=BreakerConfiguration, _otherEndName=?] +2024-09-08 15:10:00,004 [main] TRACE ClassBuilder - read from EA: Core::BreakerConfiguration +2024-09-08 15:10:00,005 [main] TRACE ClassBuilder - Class BusbarConfiguration (5 in package Core) +2024-09-08 15:10:00,006 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::BusbarConfiguration, _objData=UmlObjectData [id=2110, uuid={C252873E-93AB-4837-BFA2-72F7ED949063}, since=null, name=singleBus, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,006 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::BusbarConfiguration, _objData=UmlObjectData [id=2111, uuid={4818CA4D-1A75-4e80-9364-CF5DF7873944}, since=null, name=doubleBus, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,006 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::BusbarConfiguration, _objData=UmlObjectData [id=2112, uuid={8DC02787-5BEC-4701-A919-193EEB5A6656}, since=null, name=mainWithTransfer, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,006 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::BusbarConfiguration, _objData=UmlObjectData [id=2113, uuid={51ADB6A4-ED54-49e2-95C0-85BF285C3C8F}, since=null, name=ringBus, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,006 [main] TRACE ClassBuilder - read from EA: Core::BusbarConfiguration +2024-09-08 15:10:00,006 [main] TRACE ClassBuilder - Class ConductingEquipment (6 in package Core) +2024-09-08 15:10:00,007 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::ConductingEquipment, _objData=UmlObjectData [id=2091, uuid={2A7C5A94-34E1-49c7-8E1C-A84F411EE17C}, since=null, name=phases, alias=, stereotype=, visibility=public, txtDescription='Describes the phases carried by a conducting equipment.', htmlDescription='

Describes the phases carried by a conducting equipment.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=856, _eaTypeName=PhaseCode, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,007 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3470, uuid={C18A7F11-DBB2-4114-AE38-3EE7922E092E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=ConductingEquipment, _otherEndName=?] +2024-09-08 15:10:00,007 [main] DEBUG AssociationEndBuilder - Updated target type to ConductingEquipment +2024-09-08 15:10:00,007 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=169, uuid=a7c02e37-c767-3d25-b98f-fef014267b5e, since=null, name=ProtectedBaseVoltage, alias=, stereotype=, visibility=protected, txtDescription='Use association to ConductingEquipment only when there is no VoltageLevel container used.', htmlDescription='

Use association to ConductingEquipment only when there is no VoltageLevel container used.

'], _type=BaseVoltage, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=170, uuid=4ff0bdbf-dba0-3daa-9eee-87a1d4811557, since=null, name=ConductingEquipment, alias=, stereotype=, visibility=public, txtDescription='Use association to ConductingEquipment only when there is no VoltageLevel container used.', htmlDescription='

Use association to ConductingEquipment only when there is no VoltageLevel container used.

'], _type=ConductingEquipment, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=121, uuid={B21687D9-2B46-4880-B016-06CCFA215EC3}, since=null, name=, alias=, stereotype=builds, visibility=public, txtDescription='Use association to ConductingEquipment only when there is no VoltageLevel container used.', htmlDescription='

Use association to ConductingEquipment only when there is no VoltageLevel container used.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Core::ConductingEquipment +2024-09-08 15:10:00,007 [main] DEBUG AssociationEndBuilder - Updated target type to ConductingEquipment +2024-09-08 15:10:00,007 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=205, uuid=3020dda1-bf9e-3f5b-9056-790543c07a77, since=null, name=Terminals, alias=Alias for terminal, stereotype=, visibility=public, txtDescription='ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes', htmlDescription='

ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes

'], _type=null, _multiplicity=[0..*], _navigable=unspecified, 1_taggedValues{Role1=abc}], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=206, uuid=87a7d63b-bff7-34ea-a364-5adbc3812350, since=null, name=ConductingEquipment, alias=Alias for conducting equipment, stereotype=, visibility=public, txtDescription='ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes', htmlDescription='

ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes

'], _type=ConductingEquipment, _multiplicity=[1..1], _navigable=unspecified, 3_taggedValues{AnotherRole2=abc, targetEndTag=blah, Role2=xyz}], _objData=UmlObjectData [id=123, uuid={5FEF5186-7804-4dad-8E18-8C5DB7FCE6B2}, since=null, name=NamedWithTagsEverywhere, alias=Alias for NamedWithTagsEverywhere, stereotype=, visibility=public, txtDescription='ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes', htmlDescription='

ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false, 2_taggedValues{CE-TermAssoc=1, MoreAssoc=}] +2024-09-08 15:10:00,008 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=205, uuid=3020dda1-bf9e-3f5b-9056-790543c07a77, since=null, name=Terminals, alias=Alias for terminal, stereotype=, visibility=public, txtDescription='ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes', htmlDescription='

ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes

'], _type=null, _multiplicity=[0..*], _navigable=unspecified, 1_taggedValues{Role1=abc}], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=206, uuid=87a7d63b-bff7-34ea-a364-5adbc3812350, since=null, name=ConductingEquipment, alias=Alias for conducting equipment, stereotype=, visibility=public, txtDescription='ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes', htmlDescription='

ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes

'], _type=ConductingEquipment, _multiplicity=[1..1], _navigable=unspecified, 3_taggedValues{AnotherRole2=abc, targetEndTag=blah, Role2=xyz}], _objData=UmlObjectData [id=123, uuid={5FEF5186-7804-4dad-8E18-8C5DB7FCE6B2}, since=null, name=NamedWithTagsEverywhere, alias=Alias for NamedWithTagsEverywhere, stereotype=, visibility=public, txtDescription='ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes', htmlDescription='

ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false, 2_taggedValues{CE-TermAssoc=1, MoreAssoc=}] as target to Core::ConductingEquipment +2024-09-08 15:10:00,008 [main] TRACE ClassBuilder - read from EA: Core::ConductingEquipment +2024-09-08 15:10:00,008 [main] TRACE ClassBuilder - Class ConnectivityNodeContainer (7 in package Core) +2024-09-08 15:10:00,008 [main] DEBUG AssociationEndBuilder - Updated target type to ConnectivityNodeContainer +2024-09-08 15:10:00,008 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=209, uuid=10ccce83-a67a-3505-a530-f2e7cdbc675c, since=null, name=ConnectivityNodes, alias=, stereotype=, visibility=public, txtDescription='Connectivity nodes contained by this container.', htmlDescription='

Connectivity nodes contained by this container.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=210, uuid=d334a62d-c53a-37a2-856c-81d5fe2c2186, since=null, name=ConnectivityNodeContainer, alias=, stereotype=, visibility=public, txtDescription='Container of this connectivity node.', htmlDescription='

Container of this connectivity node.

'], _type=ConnectivityNodeContainer, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=234, uuid={08EEABA6-269C-44a7-8F82-7BBEFE71ADD6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,008 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=209, uuid=10ccce83-a67a-3505-a530-f2e7cdbc675c, since=null, name=ConnectivityNodes, alias=, stereotype=, visibility=public, txtDescription='Connectivity nodes contained by this container.', htmlDescription='

Connectivity nodes contained by this container.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=210, uuid=d334a62d-c53a-37a2-856c-81d5fe2c2186, since=null, name=ConnectivityNodeContainer, alias=, stereotype=, visibility=public, txtDescription='Container of this connectivity node.', htmlDescription='

Container of this connectivity node.

'], _type=ConnectivityNodeContainer, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=234, uuid={08EEABA6-269C-44a7-8F82-7BBEFE71ADD6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Core::ConnectivityNodeContainer +2024-09-08 15:10:00,009 [main] DEBUG AssociationEndBuilder - Updated target type to ConnectivityNodeContainer +2024-09-08 15:10:00,009 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=212, uuid=273458f0-8dc9-3b97-8d72-736bec7303fd, since=null, name=TopologicalNode, alias=, stereotype=, visibility=public, txtDescription='The topological nodes which belong to this connectivity node container.', htmlDescription='

The topological nodes which belong to this connectivity node container.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=213, uuid=069cc4c5-6982-3d6a-b143-1664cb457595, since=null, name=ConnectivityNodeContainer, alias=, stereotype=, visibility=public, txtDescription='The connectivity node container to which the toplogical node belongs.', htmlDescription='

The connectivity node container to which the toplogical node belongs.

'], _type=ConnectivityNodeContainer, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=1974, uuid={88BD0C47-4CB3-44db-9A6B-20C783A24478}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,009 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=212, uuid=273458f0-8dc9-3b97-8d72-736bec7303fd, since=null, name=TopologicalNode, alias=, stereotype=, visibility=public, txtDescription='The topological nodes which belong to this connectivity node container.', htmlDescription='

The topological nodes which belong to this connectivity node container.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=213, uuid=069cc4c5-6982-3d6a-b143-1664cb457595, since=null, name=ConnectivityNodeContainer, alias=, stereotype=, visibility=public, txtDescription='The connectivity node container to which the toplogical node belongs.', htmlDescription='

The connectivity node container to which the toplogical node belongs.

'], _type=ConnectivityNodeContainer, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=1974, uuid={88BD0C47-4CB3-44db-9A6B-20C783A24478}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Core::ConnectivityNodeContainer +2024-09-08 15:10:00,009 [main] TRACE ClassBuilder - read from EA: Core::ConnectivityNodeContainer +2024-09-08 15:10:00,009 [main] TRACE ClassBuilder - Class Equipment (8 in package Core) +2024-09-08 15:10:00,009 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::Equipment, _objData=UmlObjectData [id=2117, uuid={410CEA04-CA77-46d9-A093-019230A2DE17}, since=null, name=normaIlyInService, alias=, stereotype=, visibility=public, txtDescription='The equipment is normally in service.', htmlDescription='

The equipment is normally in service.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,010 [main] DEBUG AssociationEndBuilder - Updated target type to Equipment +2024-09-08 15:10:00,010 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=true, _objData=UmlObjectData [id=217, uuid=0a5e7271-1477-3b5b-9d36-820d4b5102d3, since=null, name=EquipmentContainer, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=218, uuid=1b6ed2c9-b08a-3f97-b5b9-d68882a9511d, since=null, name=Equipments, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=Equipment, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=88, uuid={68BA73EF-8533-48ba-964A-DE0F722292D2}, since=null, name=, alias=, stereotype=European, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,010 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=true, _objData=UmlObjectData [id=217, uuid=0a5e7271-1477-3b5b-9d36-820d4b5102d3, since=null, name=EquipmentContainer, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=218, uuid=1b6ed2c9-b08a-3f97-b5b9-d68882a9511d, since=null, name=Equipments, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=Equipment, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=88, uuid={68BA73EF-8533-48ba-964A-DE0F722292D2}, since=null, name=, alias=, stereotype=European, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Core::Equipment +2024-09-08 15:10:00,010 [main] DEBUG ClassBuilder - Adding Equipment as superclass of ConductingEquipment +2024-09-08 15:10:00,010 [main] TRACE ClassBuilder - read from EA: Core::Equipment +2024-09-08 15:10:00,011 [main] TRACE ClassBuilder - Class EquipmentContainer (9 in package Core) +2024-09-08 15:10:00,011 [main] DEBUG AssociationEndBuilder - Updated source type to EquipmentContainer +2024-09-08 15:10:00,011 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=true, _objData=UmlObjectData [id=217, uuid=0a5e7271-1477-3b5b-9d36-820d4b5102d3, since=null, name=EquipmentContainer, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=EquipmentContainer, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=218, uuid=1b6ed2c9-b08a-3f97-b5b9-d68882a9511d, since=null, name=Equipments, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=Equipment, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=88, uuid={68BA73EF-8533-48ba-964A-DE0F722292D2}, since=null, name=, alias=, stereotype=European, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Core::EquipmentContainer +2024-09-08 15:10:00,011 [main] DEBUG ClassBuilder - Adding EquipmentContainer as subclass of ConnectivityNodeContainer +2024-09-08 15:10:00,011 [main] DEBUG ClassBuilder - Adding EquipmentContainer as superclass of Bay +2024-09-08 15:10:00,011 [main] TRACE ClassBuilder - read from EA: Core::EquipmentContainer +2024-09-08 15:10:00,011 [main] TRACE ClassBuilder - Class geographicalRegion (10 in package Core) +2024-09-08 15:10:00,012 [main] DEBUG AssociationEndBuilder - Updated source type to geographicalRegion +2024-09-08 15:10:00,013 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=true, _objData=UmlObjectData [id=222, uuid=c3a8465e-2594-3d17-92e7-b52af2b5181d, since=null, name=Region, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=geographicalRegion, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=223, uuid=920f4ca0-a433-3fb0-8721-59cbe7afeae0, since=null, name=Regions, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=90, uuid={023E20DF-DF02-4ffb-A047-E5BBDB18AB59}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,013 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=true, _objData=UmlObjectData [id=222, uuid=c3a8465e-2594-3d17-92e7-b52af2b5181d, since=null, name=Region, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=geographicalRegion, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=223, uuid=920f4ca0-a433-3fb0-8721-59cbe7afeae0, since=null, name=Regions, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=90, uuid={023E20DF-DF02-4ffb-A047-E5BBDB18AB59}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Core::geographicalRegion +2024-09-08 15:10:00,013 [main] TRACE ClassBuilder - read from EA: Core::geographicalRegion +2024-09-08 15:10:00,013 [main] TRACE ClassBuilder - Class OperatingParticipant (12 in package Core) +2024-09-08 15:10:00,014 [main] DEBUG AssociationEndBuilder - Updated target type to OperatingParticipant +2024-09-08 15:10:00,015 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=226, uuid=5288b2e1-b413-38f9-b1d7-feb5ade8564b, since=null, name=OperatingShare, alias=, stereotype=, visibility=public, txtDescription='the operating shares of an operating participant. An operating participant can be reused for any number of PSR's', htmlDescription='

the operating shares of an operating participant. An operating participant can be reused for any number of PSR's

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=227, uuid=082fce23-d7aa-3fe6-9bb0-de01cf50b285, since=null, name=OperatingParticipant, alias=, stereotype=, visibility=public, txtDescription='The linkage to a owners and its linkage attributes like percentage ownership. The ownership percentage should add to 100% for all owners of a PowerSystemResource, but a PSROwner may own any percentage of any number of PowerSystemResource objects.', htmlDescription='

The linkage to a owners and its linkage attributes like percentage ownership. The ownership percentage should add to 100% for all owners of a PowerSystemResource, but a PSROwner may own any percentage of any number of PowerSystemResource objects.

'], _type=OperatingParticipant, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=157, uuid={C8C2BA26-2410-41d8-9E77-EC3873BDCE5B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,015 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=226, uuid=5288b2e1-b413-38f9-b1d7-feb5ade8564b, since=null, name=OperatingShare, alias=, stereotype=, visibility=public, txtDescription='the operating shares of an operating participant. An operating participant can be reused for any number of PSR's', htmlDescription='

the operating shares of an operating participant. An operating participant can be reused for any number of PSR's

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=227, uuid=082fce23-d7aa-3fe6-9bb0-de01cf50b285, since=null, name=OperatingParticipant, alias=, stereotype=, visibility=public, txtDescription='The linkage to a owners and its linkage attributes like percentage ownership. The ownership percentage should add to 100% for all owners of a PowerSystemResource, but a PSROwner may own any percentage of any number of PowerSystemResource objects.', htmlDescription='

The linkage to a owners and its linkage attributes like percentage ownership. The ownership percentage should add to 100% for all owners of a PowerSystemResource, but a PSROwner may own any percentage of any number of PowerSystemResource objects.

'], _type=OperatingParticipant, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=157, uuid={C8C2BA26-2410-41d8-9E77-EC3873BDCE5B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Core::OperatingParticipant +2024-09-08 15:10:00,015 [main] TRACE ClassBuilder - read from EA: Core::OperatingParticipant +2024-09-08 15:10:00,015 [main] TRACE ClassBuilder - Class OperatingShare (13 in package Core) +2024-09-08 15:10:00,016 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::OperatingShare, _objData=UmlObjectData [id=2109, uuid={91E1E9AB-B240-4b98-9917-82000F0A4CFB}, since=null, name=percentage, alias=, stereotype=, visibility=public, txtDescription='Percentage ownership for this device. The percentage indicates the percentage ownership of the PSROwner for the PowerSystemResource. The total percentage ownership for a PowerSystemResource should add to 100%.', htmlDescription='

Percentage ownership for this device. The percentage indicates the percentage ownership of the PSROwner for the PowerSystemResource. The total percentage ownership for a PowerSystemResource should add to 100%.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=614, _eaTypeName=PerCent, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1 _constraints[ConstraintBuilder [_objData=UmlObjectData [id=230, uuid=5efb2328-1c5c-36d9-8c41-790fcb5a5558, since=null, name=constraintProcess, alias=, stereotype=, visibility=public, txtDescription='constraint description', htmlDescription='

constraint description

'], _containingAttribute=percentage, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=constraint description]]] +2024-09-08 15:10:00,016 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3468, uuid={D04C91E1-5D26-4805-9682-897D9D13D5B5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=OperatingShare, _otherEndName=?] +2024-09-08 15:10:00,016 [main] DEBUG AssociationEndBuilder - Updated source type to OperatingShare +2024-09-08 15:10:00,016 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=226, uuid=5288b2e1-b413-38f9-b1d7-feb5ade8564b, since=null, name=OperatingShare, alias=, stereotype=, visibility=public, txtDescription='the operating shares of an operating participant. An operating participant can be reused for any number of PSR's', htmlDescription='

the operating shares of an operating participant. An operating participant can be reused for any number of PSR's

'], _type=OperatingShare, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=227, uuid=082fce23-d7aa-3fe6-9bb0-de01cf50b285, since=null, name=OperatingParticipant, alias=, stereotype=, visibility=public, txtDescription='The linkage to a owners and its linkage attributes like percentage ownership. The ownership percentage should add to 100% for all owners of a PowerSystemResource, but a PSROwner may own any percentage of any number of PowerSystemResource objects.', htmlDescription='

The linkage to a owners and its linkage attributes like percentage ownership. The ownership percentage should add to 100% for all owners of a PowerSystemResource, but a PSROwner may own any percentage of any number of PowerSystemResource objects.

'], _type=OperatingParticipant, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=157, uuid={C8C2BA26-2410-41d8-9E77-EC3873BDCE5B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Core::OperatingShare +2024-09-08 15:10:00,017 [main] DEBUG AssociationEndBuilder - Updated source type to OperatingShare +2024-09-08 15:10:00,017 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=233, uuid=c6782162-e08a-3fc8-a4f3-3edb4cbcbaed, since=null, name=OperatingShare, alias=, stereotype=, visibility=public, txtDescription='"the linkage to any number of operating share objects.', htmlDescription='

"the linkage to any number of operating share objects.

'], _type=OperatingShare, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=234, uuid=ee60c1dd-309d-3dcc-9d34-e0b3493b0e8a, since=null, name=PowerSystemResource, alias=, stereotype=, visibility=public, txtDescription=''the PowerSystemResource to which the attribues apply. The percentage ownership of all owners of a PowerSystemResource should add to 100%.', htmlDescription='

'the PowerSystemResource to which the attribues apply. The percentage ownership of all owners of a PowerSystemResource should add to 100%.

'], _type=null, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=163, uuid={343B3487-FA8E-4906-A8F1-4D6E3B27F4AF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,017 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=233, uuid=c6782162-e08a-3fc8-a4f3-3edb4cbcbaed, since=null, name=OperatingShare, alias=, stereotype=, visibility=public, txtDescription='"the linkage to any number of operating share objects.', htmlDescription='

"the linkage to any number of operating share objects.

'], _type=OperatingShare, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=234, uuid=ee60c1dd-309d-3dcc-9d34-e0b3493b0e8a, since=null, name=PowerSystemResource, alias=, stereotype=, visibility=public, txtDescription=''the PowerSystemResource to which the attribues apply. The percentage ownership of all owners of a PowerSystemResource should add to 100%.', htmlDescription='

'the PowerSystemResource to which the attribues apply. The percentage ownership of all owners of a PowerSystemResource should add to 100%.

'], _type=null, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=163, uuid={343B3487-FA8E-4906-A8F1-4D6E3B27F4AF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Core::OperatingShare +2024-09-08 15:10:00,017 [main] TRACE ClassBuilder - read from EA: Core::OperatingShare +2024-09-08 15:10:00,017 [main] TRACE ClassBuilder - Class PhaseCode (14 in package Core) +2024-09-08 15:10:00,018 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=2054, uuid={8E38EE25-FD5C-4b01-938C-008998EDA526}, since=null, name=ABCN, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,018 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=2055, uuid={5A6F7D82-6A2C-4eb3-90BC-8F77AAD9D50F}, since=null, name=ABC, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,018 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=2056, uuid={C5F9ED62-CB15-4c15-98DB-6593686F63E2}, since=null, name=ABN, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,018 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=2057, uuid={0396E7F5-6112-49e7-A7C8-7B7FA0214AA7}, since=null, name=ACN, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,019 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=2058, uuid={F494A423-E865-4c3d-8C83-180728F30A66}, since=null, name=BCN, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,019 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=2059, uuid={77216F5E-3863-424c-91CD-4597AE97B61E}, since=null, name=AB, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,019 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=2060, uuid={598C4480-5C39-4889-8BD1-D1D2BCEB4DEA}, since=null, name=AC, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,019 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=2061, uuid={8124AC36-FD4D-4b64-A414-6F9B8D350469}, since=null, name=BC, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,019 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=2062, uuid={9B41A289-EDF6-4728-AABE-B11D2E617549}, since=null, name=AN, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,019 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=2063, uuid={2780D899-5467-4920-8DAA-117051620D3A}, since=null, name=BN, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,020 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=2064, uuid={DEB66611-AEAD-4b57-8CBD-65D1931709CE}, since=null, name=CN, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,020 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=2065, uuid={EA5174F8-A73C-4f4b-96AA-54EAFB16BC9F}, since=null, name=A, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,020 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=2066, uuid={DF516C67-D4FE-4a6b-9FE7-54E54036C7CA}, since=null, name=B, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,020 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=2067, uuid={8E5E8952-BD3F-4b06-A218-7A1EE85598D0}, since=null, name=C, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,021 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=2068, uuid={177D92A8-237D-4ec7-99BF-6BBE2AA2CE9E}, since=null, name=N, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,021 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=3246, uuid={7CBBF307-75C0-4255-B181-0BB16E0B4A23}, since=null, name=splitSecondary1N, alias=, stereotype=enum, visibility=public, txtDescription='Split-secondary phase 1 and Neutral.', htmlDescription='

Split-secondary phase 1 and Neutral.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,021 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=3247, uuid={16119B57-3431-4045-A8EB-1618E844A397}, since=null, name=splitSecondary2N, alias=, stereotype=enum, visibility=public, txtDescription='Split-secondary phase 2 and Neutral.', htmlDescription='

Split-secondary phase 2 and Neutral.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,021 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=3248, uuid={2E31EA79-AFF2-45bf-82E3-DD2DD070FDB6}, since=null, name=splitSecondary12N, alias=, stereotype=enum, visibility=public, txtDescription='Split-secondary phases 1 and 2, with Neutral.', htmlDescription='

Split-secondary phases 1 and 2, with Neutral.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,022 [main] TRACE ClassBuilder - read from EA: Core::PhaseCode +2024-09-08 15:10:00,023 [main] TRACE ClassBuilder - Class PowerSystemResource (15 in package Core) +2024-09-08 15:10:00,024 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [, _containingClass=PowerSystemResource, _objData=UmlObjectData [id=156, uuid={DCBCF26F-D99A-47b9-98AE-0086B1B9ED0A}, since=null, name=PSR-statechart, alias=, stereotype=, visibility=public, txtDescription='Added for testing only.', htmlDescription='

Added for testing only.

'], _portrait=true, _kind=STATECHART] +2024-09-08 15:10:00,025 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=STATE, _isConnector=false, _objData=UmlObjectData [id=1444, uuid={B4264243-743C-4b04-BDA6-3627169218AB}, since=null, name=DummyState, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=PowerSystemResource, _otherEndName=] +2024-09-08 15:10:00,025 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PowerSystemResource, _objData=UmlObjectData [id=6708, uuid={DB23468D-32C9-44cf-9032-193304520B0A}, since=null, name=attr, alias=, stereotype=deprecated, visibility=public, txtDescription='This is to test whether deprecated attribute gets its (deprecated) printed in Word.', htmlDescription='

This is to test whether deprecated attribute gets its (deprecated) printed in Word.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,032 [main] TRACE OperationBuilder - read from EA: OperationBuilder [_containingClass=PowerSystemResource, _objData=UmlObjectData [id=1, uuid={9AD2158A-F617-4a1b-8CFF-EDCB93CA91B6}, since=null, name=GetWhatevers, alias=get whatevers operation alias, stereotype=, visibility=public, txtDescription='dummy operation - will be inherited by many, so we can test doc generation. This doc also misses "." at its end and starts with lowe case', htmlDescription='

dummy operation - will be inherited by many, so we can test doc generation. This doc also misses "." at its end and starts with lowe case

'], _abstract=true, _static=false, _final=false, _kind=OP_RET_ARRAY, _returnType=null, _eaReturnTypeId=0, _eaReturnTypeName=void, 3_exceptionNames[Dummy, PSRType, Dummy2], 2_taggedValues{throws=Dummy,PSRType,Dummy2, dummyCimTag=on operation}, 1_parameters[ParameterBuilder [_containingOperation=GetWhatevers, _position=0, _kind=ARRAY, _objData=UmlObjectData [id=262, uuid={D8176E9D-04E7-4fae-871C-213740261833}, since=null, name=multiples, alias=parAlias, stereotype=parStereo1, parStereo2, visibility=public, txtDescription='Doc is present (but does not end with ".")', htmlDescription='

Doc is present (but does not end with ".")

'], _type=null, _eaTypeName=BasePower[], _eaTypeIdAsString=0]]] +2024-09-08 15:10:00,032 [main] TRACE OperationBuilder - read from EA: OperationBuilder [_containingClass=PowerSystemResource, _objData=UmlObjectData [id=2, uuid={9953ABA5-65EC-4f38-A180-776FECE065FC}, since=null, name=setSomething, alias=, stereotype=someStereotype, visibility=public, txtDescription='"This one will have an "exception" - again to test doc generation.', htmlDescription='

"This one will have an "exception" - again to test doc generation.

'], _abstract=false, _static=false, _final=false, _kind=OP_RET_VOID, _returnType=null, _eaReturnTypeId=0, _eaReturnTypeName=void, 1_exceptionNames[Unit], 1_taggedValues{throws=Unit}, 1_parameters[ParameterBuilder [_containingOperation=setSomething, _position=0, _kind=SIMPLE, _objData=UmlObjectData [id=264, uuid={568C59BD-0A22-4219-A56C-793C82CCD0B3}, since=null, name=name, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _eaTypeName=String, _eaTypeIdAsString=637]]] +2024-09-08 15:10:00,033 [main] TRACE OperationBuilder - read from EA: OperationBuilder [_containingClass=PowerSystemResource, _objData=UmlObjectData [id=4, uuid={05EA558B-9FDB-4094-B4EE-CAFD70F8E07E}, since=null, name=foo, alias=, stereotype=, visibility=public, txtDescription=''some doc.', htmlDescription='

'some doc.

'], _abstract=false, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=null, _eaReturnTypeId=0, _eaReturnTypeName=Dumb, 1_taggedValues{someTag=value}, 3_parameters[ParameterBuilder [_containingOperation=foo, _position=0, _kind=SIMPLE, _objData=UmlObjectData [id=266, uuid={859C2123-0BBB-4124-B4F4-E3EC8808A2B3}, since=null, name=par3, alias=, stereotype=, visibility=public, txtDescription=''doc OK.', htmlDescription='

'doc OK.

'], _type=null, _eaTypeName=NonExisting, _eaTypeIdAsString=0], ParameterBuilder [_containingOperation=foo, _position=1, _kind=SIMPLE, _objData=UmlObjectData [id=267, uuid={6BD64A42-70E1-49ed-8B76-8D80ECDB74DD}, since=null, name=par2, alias=, stereotype=deprecated, visibility=public, txtDescription='Doc OK.', htmlDescription='

Doc OK.

'], _type=null, _eaTypeName=float, _eaTypeIdAsString=615], ParameterBuilder [_containingOperation=foo, _position=2, _kind=SIMPLE, _objData=UmlObjectData [id=268, uuid={44BC9203-AC20-49b9-A650-F211CB06958A}, since=null, name=par, alias=, stereotype=, visibility=public, txtDescription='"Doc OK.', htmlDescription='

"Doc OK.

'], _type=null, _eaTypeName=Par, _eaTypeIdAsString=0]]] +2024-09-08 15:10:00,033 [main] TRACE OperationBuilder - read from EA: OperationBuilder [_containingClass=PowerSystemResource, _objData=UmlObjectData [id=5, uuid={B6F10C35-6FE6-4e7e-8669-D4C1E1085C3E}, since=null, name=bar, alias=, stereotype=deprecated, visibility=public, txtDescription='', htmlDescription=''], _abstract=false, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=null, _eaReturnTypeId=0, _eaReturnTypeName=Dumb, 1_taggedValues{someTag=value}, 3_parameters[ParameterBuilder [_containingOperation=bar, _position=0, _kind=SIMPLE, _objData=UmlObjectData [id=270, uuid={5720BF71-FF81-4ac8-9EED-4CA747418672}, since=null, name=par3, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _eaTypeName=NonExisting, _eaTypeIdAsString=0], ParameterBuilder [_containingOperation=bar, _position=1, _kind=SIMPLE, _objData=UmlObjectData [id=271, uuid={E8047328-87C3-481b-998B-FBFFE7B4CFD0}, since=null, name=par2, alias=, stereotype=, visibility=public, txtDescription='starting with lower case, missing "." at the end', htmlDescription='

starting with lower case, missing "." at the end

'], _type=null, _eaTypeName=float, _eaTypeIdAsString=615], ParameterBuilder [_containingOperation=bar, _position=2, _kind=SIMPLE, _objData=UmlObjectData [id=272, uuid={7D6344F7-A5AB-43fe-A844-BA70EA5BDFF9}, since=null, name=par, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _eaTypeName=Par, _eaTypeIdAsString=0]]] +2024-09-08 15:10:00,033 [main] DEBUG AssociationEndBuilder - Updated target type to PowerSystemResource +2024-09-08 15:10:00,033 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=233, uuid=c6782162-e08a-3fc8-a4f3-3edb4cbcbaed, since=null, name=OperatingShare, alias=, stereotype=, visibility=public, txtDescription='"the linkage to any number of operating share objects.', htmlDescription='

"the linkage to any number of operating share objects.

'], _type=OperatingShare, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=234, uuid=ee60c1dd-309d-3dcc-9d34-e0b3493b0e8a, since=null, name=PowerSystemResource, alias=, stereotype=, visibility=public, txtDescription=''the PowerSystemResource to which the attribues apply. The percentage ownership of all owners of a PowerSystemResource should add to 100%.', htmlDescription='

'the PowerSystemResource to which the attribues apply. The percentage ownership of all owners of a PowerSystemResource should add to 100%.

'], _type=PowerSystemResource, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=163, uuid={343B3487-FA8E-4906-A8F1-4D6E3B27F4AF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Core::PowerSystemResource +2024-09-08 15:10:00,034 [main] DEBUG AssociationEndBuilder - Updated target type to PowerSystemResource +2024-09-08 15:10:00,034 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=274, uuid=95687635-5e2c-38e8-a9f7-3fcbd94f561c, since=null, name=AssetInfos, alias=, stereotype=, visibility=public, txtDescription='FooBar', htmlDescription='

FooBar

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=275, uuid=1892b331-bca4-3a23-9fd8-dccf941cd095, since=null, name=PSRs, alias=, stereotype=, visibility=public, txtDescription='Blah', htmlDescription='

Blah

'], _type=PowerSystemResource, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=2148, uuid={D93167F8-2A16-4fbc-BC07-353D141C8E50}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,034 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=274, uuid=95687635-5e2c-38e8-a9f7-3fcbd94f561c, since=null, name=AssetInfos, alias=, stereotype=, visibility=public, txtDescription='FooBar', htmlDescription='

FooBar

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=275, uuid=1892b331-bca4-3a23-9fd8-dccf941cd095, since=null, name=PSRs, alias=, stereotype=, visibility=public, txtDescription='Blah', htmlDescription='

Blah

'], _type=PowerSystemResource, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=2148, uuid={D93167F8-2A16-4fbc-BC07-353D141C8E50}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Core::PowerSystemResource +2024-09-08 15:10:00,034 [main] DEBUG AssociationEndBuilder - Updated source type to PowerSystemResource +2024-09-08 15:10:00,034 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=277, uuid=85817ea6-b142-3397-946f-27d595f4836c, since=null, name=PSR, alias=, stereotype=, visibility=public, txtDescription='My assoc with Terminal is navigable, deprecated and as inherited should also be navigable and have deprecation.', htmlDescription='

My assoc with Terminal is navigable, deprecated and as inherited should also be navigable and have deprecation.

'], _type=PowerSystemResource, _multiplicity=[0..1], _navigable=yes], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=278, uuid=9551ee09-b70f-351e-920c-f63f92025740, since=null, name=Terminal, alias=, stereotype=, visibility=public, txtDescription='My association with PSR is deprecated and as inherited should also have deprecation.', htmlDescription='

My association with PSR is deprecated and as inherited should also have deprecation.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3463, uuid={78E829D4-34BC-4740-8E95-42DBBF386677}, since=null, name=, alias=, stereotype=deprecated, visibility=public, txtDescription='', htmlDescription=''], _direction=Destination -> Source, _directionUnspecified=false, _biDirectional=false] +2024-09-08 15:10:00,035 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=277, uuid=85817ea6-b142-3397-946f-27d595f4836c, since=null, name=PSR, alias=, stereotype=, visibility=public, txtDescription='My assoc with Terminal is navigable, deprecated and as inherited should also be navigable and have deprecation.', htmlDescription='

My assoc with Terminal is navigable, deprecated and as inherited should also be navigable and have deprecation.

'], _type=PowerSystemResource, _multiplicity=[0..1], _navigable=yes], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=278, uuid=9551ee09-b70f-351e-920c-f63f92025740, since=null, name=Terminal, alias=, stereotype=, visibility=public, txtDescription='My association with PSR is deprecated and as inherited should also have deprecation.', htmlDescription='

My association with PSR is deprecated and as inherited should also have deprecation.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3463, uuid={78E829D4-34BC-4740-8E95-42DBBF386677}, since=null, name=, alias=, stereotype=deprecated, visibility=public, txtDescription='', htmlDescription=''], _direction=Destination -> Source, _directionUnspecified=false, _biDirectional=false] as source to Core::PowerSystemResource +2024-09-08 15:10:00,035 [main] DEBUG ClassBuilder - Adding PowerSystemResource as superclass of ConnectivityNodeContainer +2024-09-08 15:10:00,035 [main] DEBUG ClassBuilder - Adding PowerSystemResource as superclass of Equipment +2024-09-08 15:10:00,035 [main] TRACE ClassBuilder - read from EA: Core::PowerSystemResource +2024-09-08 15:10:00,035 [main] TRACE ClassBuilder - Class SubGeographicalRegion (16 in package Core) +2024-09-08 15:10:00,035 [main] DEBUG AssociationEndBuilder - Updated target type to SubGeographicalRegion +2024-09-08 15:10:00,035 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=true, _objData=UmlObjectData [id=222, uuid=c3a8465e-2594-3d17-92e7-b52af2b5181d, since=null, name=Region, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=geographicalRegion, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=223, uuid=920f4ca0-a433-3fb0-8721-59cbe7afeae0, since=null, name=Regions, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=SubGeographicalRegion, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=90, uuid={023E20DF-DF02-4ffb-A047-E5BBDB18AB59}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Core::SubGeographicalRegion +2024-09-08 15:10:00,035 [main] DEBUG AssociationEndBuilder - Updated source type to SubGeographicalRegion +2024-09-08 15:10:00,036 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=true, _objData=UmlObjectData [id=281, uuid=5d9d12f6-3391-3f75-91fb-cc4617d58cde, since=null, name=Region, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=SubGeographicalRegion, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=282, uuid=c16eec64-cddc-309c-9ca5-ecb70b7b1f7d, since=null, name=Substations, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=91, uuid={66E7D72B-2889-483c-80A2-2E51B283F2B1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,036 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=true, _objData=UmlObjectData [id=281, uuid=5d9d12f6-3391-3f75-91fb-cc4617d58cde, since=null, name=Region, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=SubGeographicalRegion, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=282, uuid=c16eec64-cddc-309c-9ca5-ecb70b7b1f7d, since=null, name=Substations, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=91, uuid={66E7D72B-2889-483c-80A2-2E51B283F2B1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Core::SubGeographicalRegion +2024-09-08 15:10:00,036 [main] TRACE ClassBuilder - read from EA: Core::SubGeographicalRegion +2024-09-08 15:10:00,036 [main] TRACE ClassBuilder - Class Substation (17 in package Core) +2024-09-08 15:10:00,036 [main] DEBUG AssociationEndBuilder - Updated target type to Substation +2024-09-08 15:10:00,036 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=true, _objData=UmlObjectData [id=281, uuid=5d9d12f6-3391-3f75-91fb-cc4617d58cde, since=null, name=Region, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=SubGeographicalRegion, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=282, uuid=c16eec64-cddc-309c-9ca5-ecb70b7b1f7d, since=null, name=Substations, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=Substation, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=91, uuid={66E7D72B-2889-483c-80A2-2E51B283F2B1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Core::Substation +2024-09-08 15:10:00,037 [main] DEBUG AssociationEndBuilder - Updated source type to Substation +2024-09-08 15:10:00,037 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=true, _objData=UmlObjectData [id=285, uuid=760199e4-27b3-34be-97f9-49ff48b35cfe, since=null, name=Substation, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=Substation, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=286, uuid=732c1677-4a79-34a8-a236-a0a8e0fcd7ca, since=null, name=VoltageLevels, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=94, uuid={0E9E9E28-C575-47c5-BF01-7F4EB8B36D16}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,037 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=true, _objData=UmlObjectData [id=285, uuid=760199e4-27b3-34be-97f9-49ff48b35cfe, since=null, name=Substation, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=Substation, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=286, uuid=732c1677-4a79-34a8-a236-a0a8e0fcd7ca, since=null, name=VoltageLevels, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=94, uuid={0E9E9E28-C575-47c5-BF01-7F4EB8B36D16}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Core::Substation +2024-09-08 15:10:00,037 [main] DEBUG AssociationEndBuilder - Updated target type to Substation +2024-09-08 15:10:00,037 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=185, uuid=b3b3f64f-0f2d-3934-8f26-f0508da2c3ec, since=null, name=bays, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=Bay, _multiplicity=[0..*], _navigable=yes], _targetEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=false, _objData=UmlObjectData [id=186, uuid=b5299d65-7a4d-3948-9041-95c7efec55f6, since=null, name=Substation, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=Substation, _multiplicity=[0..1], _navigable=yes], _objData=UmlObjectData [id=116, uuid={51152F4A-1B03-451f-BA84-6A05A6AE1630}, since=null, name=, alias=, stereotype=European, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Bi-Directional, _directionUnspecified=false, _biDirectional=true] as target to Core::Substation +2024-09-08 15:10:00,037 [main] DEBUG ClassBuilder - Adding Substation as subclass of EquipmentContainer +2024-09-08 15:10:00,037 [main] TRACE ClassBuilder - read from EA: Core::Substation +2024-09-08 15:10:00,037 [main] TRACE ClassBuilder - Class Terminal (18 in package Core) +2024-09-08 15:10:00,037 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::Terminal, _objData=UmlObjectData [id=3125, uuid={C97C0B38-C62F-4f03-A3DE-A67F29A6C6DB}, since=null, name=connected, alias=, stereotype=, visibility=public, txtDescription='The terminal connection status. True implies the terminal is connected, and false implies the terminal is not connected. This is the result of topoplogical processing of a detailed Connectivity node and Switch model whether present in the model or not. A terminal that is not connected cannot support a current flow. A terminal that is connected may have flow. In general a multi-terminal device may simultaneously have connected and disconnected terminals. No other aspect of the algorithm', htmlDescription='

The terminal connection status. True implies the terminal is connected, and false implies the terminal is not connected. This is the result of topoplogical processing of a detailed Connectivity node and Switch model whether present in the model or not. A terminal that is not connected cannot support a current flow. A terminal that is connected may have flow. In general a multi-terminal device may simultaneously have connected and disconnected terminals. No other aspect of the algorithm

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,038 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::Terminal, _objData=UmlObjectData [id=3188, uuid={7C7195D3-DFCD-487f-BF92-F359BBE7AFD0}, since=null, name=sequenceNumber, alias=, stereotype=, visibility=public, txtDescription='The orientation of the terminal connections for a multiple terminal conducting equipment. The sequence numbering starts with 1 and additional terminals should follow in increasing order. The first terminal is the "starting point" for a two terminal branch. In the case of class TransformerWinding only one terminal is used so its sequenceNumber must be 1.', htmlDescription='

The orientation of the terminal connections for a multiple terminal conducting equipment. The sequence numbering starts with 1 and additional terminals should follow in increasing order. The first terminal is the "starting point" for a two terminal branch. In the case of class TransformerWinding only one terminal is used so its sequenceNumber must be 1.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,038 [main] DEBUG AssociationEndBuilder - Updated source type to Terminal +2024-09-08 15:10:00,038 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=205, uuid=3020dda1-bf9e-3f5b-9056-790543c07a77, since=null, name=Terminals, alias=Alias for terminal, stereotype=, visibility=public, txtDescription='ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes', htmlDescription='

ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes

'], _type=Terminal, _multiplicity=[0..*], _navigable=unspecified, 1_taggedValues{Role1=abc}], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=206, uuid=87a7d63b-bff7-34ea-a364-5adbc3812350, since=null, name=ConductingEquipment, alias=Alias for conducting equipment, stereotype=, visibility=public, txtDescription='ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes', htmlDescription='

ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes

'], _type=ConductingEquipment, _multiplicity=[1..1], _navigable=unspecified, 3_taggedValues{AnotherRole2=abc, targetEndTag=blah, Role2=xyz}], _objData=UmlObjectData [id=123, uuid={5FEF5186-7804-4dad-8E18-8C5DB7FCE6B2}, since=null, name=NamedWithTagsEverywhere, alias=Alias for NamedWithTagsEverywhere, stereotype=, visibility=public, txtDescription='ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes', htmlDescription='

ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false, 2_taggedValues{CE-TermAssoc=1, MoreAssoc=}] as source to Core::Terminal +2024-09-08 15:10:00,038 [main] DEBUG AssociationEndBuilder - Updated source type to Terminal +2024-09-08 15:10:00,038 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=291, uuid=90cbfea3-4fcc-3b34-8a4d-19b078519a40, since=null, name=Terminals, alias=, stereotype=, visibility=public, txtDescription='Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.', htmlDescription='

Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.

'], _type=Terminal, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=292, uuid=82cf9a85-6ff2-3238-844b-b1eb670bffb2, since=null, name=ConnectivityNode, alias=, stereotype=, visibility=public, txtDescription='Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.', htmlDescription='

Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=229, uuid={C7E01609-F4E6-4a6e-8ACF-BDD413E62DE3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.', htmlDescription='

Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,038 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=291, uuid=90cbfea3-4fcc-3b34-8a4d-19b078519a40, since=null, name=Terminals, alias=, stereotype=, visibility=public, txtDescription='Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.', htmlDescription='

Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.

'], _type=Terminal, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=292, uuid=82cf9a85-6ff2-3238-844b-b1eb670bffb2, since=null, name=ConnectivityNode, alias=, stereotype=, visibility=public, txtDescription='Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.', htmlDescription='

Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=229, uuid={C7E01609-F4E6-4a6e-8ACF-BDD413E62DE3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.', htmlDescription='

Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Core::Terminal +2024-09-08 15:10:00,039 [main] DEBUG AssociationEndBuilder - Updated source type to Terminal +2024-09-08 15:10:00,039 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=294, uuid=156aeee5-edcf-3620-8689-98f66c084af5, since=null, name=Terminal, alias=, stereotype=, visibility=public, txtDescription='The terminals associated with the topological node. This can be used as an alternative to the connectivity node path to terminal, thus making it unneccesary to model connedtivity nodes in some cases. Note that the if connectivity nodes are in the model, this association would proably not be used.', htmlDescription='

The terminals associated with the topological node. This can be used as an alternative to the connectivity node path to terminal, thus making it unneccesary to model connedtivity nodes in some cases. Note that the if connectivity nodes are in the model, this association would proably not be used.

'], _type=Terminal, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=false, _objData=UmlObjectData [id=295, uuid=347bba3d-4267-3d35-8f14-3bf34cfb435d, since=null, name=TopologicalNode, alias=, stereotype=, visibility=public, txtDescription='The topological node associated with the terminal. This can be used as an alternative to the connectivity node path to topological node, thus making it unneccesary to model connedtivity nodes in some cases. Note that the if connectivity nodes are in the model, this association would proably not be used.', htmlDescription='

The topological node associated with the terminal. This can be used as an alternative to the connectivity node path to topological node, thus making it unneccesary to model connedtivity nodes in some cases. Note that the if connectivity nodes are in the model, this association would proably not be used.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=1961, uuid={F490BFCA-36A8-4fe2-B28B-66466134B41E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,039 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=294, uuid=156aeee5-edcf-3620-8689-98f66c084af5, since=null, name=Terminal, alias=, stereotype=, visibility=public, txtDescription='The terminals associated with the topological node. This can be used as an alternative to the connectivity node path to terminal, thus making it unneccesary to model connedtivity nodes in some cases. Note that the if connectivity nodes are in the model, this association would proably not be used.', htmlDescription='

The terminals associated with the topological node. This can be used as an alternative to the connectivity node path to terminal, thus making it unneccesary to model connedtivity nodes in some cases. Note that the if connectivity nodes are in the model, this association would proably not be used.

'], _type=Terminal, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=false, _objData=UmlObjectData [id=295, uuid=347bba3d-4267-3d35-8f14-3bf34cfb435d, since=null, name=TopologicalNode, alias=, stereotype=, visibility=public, txtDescription='The topological node associated with the terminal. This can be used as an alternative to the connectivity node path to topological node, thus making it unneccesary to model connedtivity nodes in some cases. Note that the if connectivity nodes are in the model, this association would proably not be used.', htmlDescription='

The topological node associated with the terminal. This can be used as an alternative to the connectivity node path to topological node, thus making it unneccesary to model connedtivity nodes in some cases. Note that the if connectivity nodes are in the model, this association would proably not be used.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=1961, uuid={F490BFCA-36A8-4fe2-B28B-66466134B41E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Core::Terminal +2024-09-08 15:10:00,039 [main] DEBUG AssociationEndBuilder - Updated target type to Terminal +2024-09-08 15:10:00,039 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=277, uuid=85817ea6-b142-3397-946f-27d595f4836c, since=null, name=PSR, alias=, stereotype=, visibility=public, txtDescription='My assoc with Terminal is navigable, deprecated and as inherited should also be navigable and have deprecation.', htmlDescription='

My assoc with Terminal is navigable, deprecated and as inherited should also be navigable and have deprecation.

'], _type=PowerSystemResource, _multiplicity=[0..1], _navigable=yes], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=278, uuid=9551ee09-b70f-351e-920c-f63f92025740, since=null, name=Terminal, alias=, stereotype=, visibility=public, txtDescription='My association with PSR is deprecated and as inherited should also have deprecation.', htmlDescription='

My association with PSR is deprecated and as inherited should also have deprecation.

'], _type=Terminal, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3463, uuid={78E829D4-34BC-4740-8E95-42DBBF386677}, since=null, name=, alias=, stereotype=deprecated, visibility=public, txtDescription='', htmlDescription=''], _direction=Destination -> Source, _directionUnspecified=false, _biDirectional=false] as target to Core::Terminal +2024-09-08 15:10:00,039 [main] TRACE ClassBuilder - read from EA: Core::Terminal +2024-09-08 15:10:00,039 [main] TRACE ClassBuilder - Class VoltageLevel (19 in package Core) +2024-09-08 15:10:00,039 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::VoltageLevel, _objData=UmlObjectData [id=2106, uuid={D1BAD493-B22A-497f-B6A6-CDFDF46EA012}, since=null, name=highVoltageLimit, alias=, stereotype=, visibility=public, txtDescription='The bus bar's high voltage limit', htmlDescription='

The bus bar's high voltage limit

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=602, _eaTypeName=Voltage, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,039 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::VoltageLevel, _objData=UmlObjectData [id=2107, uuid={EB17FEAC-CDBA-4bbd-B45E-86D3EA333C08}, since=null, name=lowVoltageLimit, alias=, stereotype=, visibility=public, txtDescription='The bus bar's low voltage limit', htmlDescription='

The bus bar's low voltage limit

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=602, _eaTypeName=Voltage, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,040 [main] TRACE OperationBuilder - read from EA: OperationBuilder [_containingClass=VoltageLevel, _objData=UmlObjectData [id=3, uuid={4334506A-A0EC-4e66-AD2B-2DBEBB2B1561}, since=null, name=getVoltage, alias=, stereotype=, visibility=public, txtDescription='Third and last dumb operation for doc generation testing.', htmlDescription='

Third and last dumb operation for doc generation testing.

'], _abstract=false, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=null, _eaReturnTypeId=602, _eaReturnTypeName=Voltage] +2024-09-08 15:10:00,040 [main] DEBUG AssociationEndBuilder - Updated target type to VoltageLevel +2024-09-08 15:10:00,041 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=true, _objData=UmlObjectData [id=285, uuid=760199e4-27b3-34be-97f9-49ff48b35cfe, since=null, name=Substation, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=Substation, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=286, uuid=732c1677-4a79-34a8-a236-a0a8e0fcd7ca, since=null, name=VoltageLevels, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=VoltageLevel, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=94, uuid={0E9E9E28-C575-47c5-BF01-7F4EB8B36D16}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Core::VoltageLevel +2024-09-08 15:10:00,041 [main] DEBUG AssociationEndBuilder - Updated source type to VoltageLevel +2024-09-08 15:10:00,041 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=true, _objData=UmlObjectData [id=182, uuid=da543f3e-ced1-3dc8-93da-d53ef6d9b078, since=null, name=VoltageLevel, alias=, stereotype=endStereo1, deprecated, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=VoltageLevel, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=183, uuid=ac2c3369-c00d-3e2e-b4b5-51330068bc70, since=null, name=Bays, alias=, stereotype=deprecated, endStereo2, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=Bay, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=115, uuid={5E328091-5BC1-4fa8-9BA3-F087A215492A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Core::VoltageLevel +2024-09-08 15:10:00,041 [main] DEBUG AssociationEndBuilder - Updated source type to VoltageLevel +2024-09-08 15:10:00,041 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=166, uuid=2df96825-3bf0-3160-a555-a54fda61527c, since=null, name=VoltageLevel, alias=, stereotype=, visibility=public, txtDescription='The VoltageLevels having this BaseVoltage.', htmlDescription='

The VoltageLevels having this BaseVoltage.

'], _type=VoltageLevel, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=167, uuid=7e385884-ee3f-3d72-af09-7657d3ecd905, since=null, name=BaseVoltage, alias=, stereotype=, visibility=public, txtDescription='The base voltage used for all equipment within the VoltageLevel.', htmlDescription='

The base voltage used for all equipment within the VoltageLevel.

'], _type=BaseVoltage, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=120, uuid={F610FDC8-D98D-4367-99A9-E9CA1C8A8CC5}, since=null, name=, alias=, stereotype=deprecated, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Core::VoltageLevel +2024-09-08 15:10:00,041 [main] DEBUG ClassBuilder - Adding VoltageLevel as subclass of EquipmentContainer +2024-09-08 15:10:00,042 [main] TRACE ClassBuilder - read from EA: Core::VoltageLevel +2024-09-08 15:10:00,042 [main] TRACE ClassBuilder - Class IdentifiedObject (20 in package Core) +2024-09-08 15:10:00,042 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::IdentifiedObject, _objData=UmlObjectData [id=6646, uuid={D4F8B75D-CDAD-4440-8092-1425101E5ABC}, since=null, name=aliasName, alias=, stereotype=, visibility=public, txtDescription='The aliasName is free text human readable name of the object alternative to IdentifiedObject.name. It may be non unique and may not correlate to a naming hierarchy. +The attribute aliasName is retained because of backwards compatibility between CIM relases. It is however recommended to replace aliasName with the Name class as aliasName is planned for retirement at a future time.', htmlDescription='

The aliasName is free text human readable name of the object alternative to IdentifiedObject.name. It may be non unique and may not correlate to a naming hierarchy.

The attribute aliasName is retained because of backwards compatibility between CIM relases. It is however recommended to replace aliasName with the Name class as aliasName is planned for retirement at a future time.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,042 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::IdentifiedObject, _objData=UmlObjectData [id=6647, uuid={C775F80A-A23D-4f38-AB9D-49D1FA882337}, since=null, name=mRID, alias=, stereotype=, visibility=public, txtDescription='Master resource identifier issued by a model authority. The mRID must semantically be a UUID as specified in RFC 4122. The mRID is globally unique. +For CIMXML data files in RDF syntax, the mRID is mapped to rdf:ID or rdf:about attributes that identify CIM object elements.', htmlDescription='

Master resource identifier issued by a model authority. The mRID must semantically be a UUID as specified in RFC 4122. The mRID is globally unique.

For CIMXML data files in RDF syntax, the mRID is mapped to rdf:ID or rdf:about attributes that identify CIM object elements.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,042 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::IdentifiedObject, _objData=UmlObjectData [id=6648, uuid={870F033B-EDA6-4a32-A5AD-47DCBBFE2997}, since=null, name=name, alias=, stereotype=, visibility=public, txtDescription='The name is any free human readable and possibly non unique text naming the object.', htmlDescription='

The name is any free human readable and possibly non unique text naming the object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,043 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::IdentifiedObject, _objData=UmlObjectData [id=6649, uuid={870F033B-EDA6-4a32-A5AD-47DCBBFE2997}, since=null, name=description, alias=, stereotype=, visibility=public, txtDescription='The description is a free human readable text describing or naming the object. It may be non unique and may not correlate to a naming hierarchy.', htmlDescription='

The description is a free human readable text describing or naming the object. It may be non unique and may not correlate to a naming hierarchy.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,043 [main] DEBUG ClassBuilder - Adding IdentifiedObject as superclass of Terminal +2024-09-08 15:10:00,043 [main] DEBUG ClassBuilder - Adding IdentifiedObject as superclass of BaseVoltage +2024-09-08 15:10:00,043 [main] DEBUG ClassBuilder - Adding IdentifiedObject as superclass of BasePower +2024-09-08 15:10:00,043 [main] DEBUG ClassBuilder - Adding IdentifiedObject as superclass of SubGeographicalRegion +2024-09-08 15:10:00,043 [main] DEBUG ClassBuilder - Adding IdentifiedObject as superclass of geographicalRegion +2024-09-08 15:10:00,043 [main] DEBUG ClassBuilder - Adding IdentifiedObject as superclass of OperatingParticipant +2024-09-08 15:10:00,043 [main] DEBUG ClassBuilder - Adding IdentifiedObject as superclass of PowerSystemResource +2024-09-08 15:10:00,043 [main] TRACE ClassBuilder - read from EA: Core::IdentifiedObject +2024-09-08 15:10:00,043 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61970, _depth=1, _eaElementID=579, _objData=UmlObjectData [id=54, uuid={6A503B72-6E15-4cd1-B92D-DDF6D14DBE29}, since=null, name=Core, alias=, stereotype=, visibility=public, txtDescription='"Contains the core PowerSystemResource and ConductingEquipment entities shared by all applications plus common collections of those entities. Not all applications require all the Core entities. This package does not depend on any other package except the Domain package, but most of the other packages have associations and generalizations that depend on it. +Test bold ignored.', htmlDescription='

"Contains the core PowerSystemResource and ConductingEquipment entities shared by all applications plus common collections of those entities. Not all applications require all the Core entities. This package does not depend on any other package except the Domain package, but most of the other packages have associations and generalizations that depend on it.

Test bold ignored.

'], _modelId=2, _selfDependent=false, 6_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3029, uuid={F8743013-1839-4100-8A7A-A8F62B12BF60}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Note: Diagram does have <> stereotype, but I don't seem to find the means to display that anywhere in EA: neither diagram itself nor Project Browser (in contrast to other UML elements, such as class, package, etc.).', htmlDescription='

Note: Diagram does have <<deprecated>> stereotype, but I don't seem to find the means to display that anywhere in EA: neither diagram itself nor Project Browser (in contrast to other UML elements, such as class, package, etc.).

'], _containingPackage=Core, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3082, uuid={597FAD1D-4901-4aae-9B6F-EA32A226A6A2}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Both class and attribute (here: literal 'singleBreaker') have constraints, we can visualise only those on class.', htmlDescription='

Both class and attribute (here: literal 'singleBreaker') have constraints, we can visualise only those on class.

'], _containingPackage=Core, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3083, uuid={C037F9C1-53F1-43ae-BBF4-92F9C66EE3D7}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='attribute has constraint, but it cannot be displayed...', htmlDescription='

attribute has constraint, but it cannot be displayed...

'], _containingPackage=Core, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3084, uuid={E1C2884E-0577-41a7-ACBD-0C789F87546C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='constraint on generalisation can be specified. seems to be always displayed - cannot be hidden.', htmlDescription='

constraint on generalisation can be specified. seems to be always displayed - cannot be hidden.

'], _containingPackage=Core, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3085, uuid={9A93B88B-4383-4d6a-8BB3-9ABEAB06A27B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Core, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3086, uuid={FE9DCCF0-64F8-47d0-95BE-6D22F3B70814}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Need to enable Diagram option to show constraints, and optionally (if desired) inherited constraints.', htmlDescription='

Need to enable Diagram option to show constraints, and optionally (if desired) inherited constraints.

'], _containingPackage=Core, _otherEndName=]], 2_diagrams=[DiagramBuilder [_containingPackage=Core, _objData=UmlObjectData [id=153, uuid={F791662C-7488-4578-88E1-21352F9799CF}, since=null, name=Main, alias=, stereotype=, visibility=public, txtDescription='"This diagram is intended to show all classes needed for any application of the CIM for modeling transmission and generation systems. +Test bold ignored.', htmlDescription='

"This diagram is intended to show all classes needed for any application of the CIM for modeling transmission and generation systems.

Test bold ignored.

'], _portrait=true, _kind=LOGICAL], DiagramBuilder [_containingPackage=Core, _objData=UmlObjectData [id=155, uuid={88289F74-ECDD-42e8-A693-6744785B1A0C}, since=null, name=Ownership, alias=, stereotype=Deprecated, visibility=public, txtDescription='doc present (but missing "." at its end) and starting with lower case letter', htmlDescription='

doc present (but missing "." at its end) and starting with lower case letter

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=1, _dependenciesAsTarget=1, _classes=19 +2024-09-08 15:10:00,043 [main] INFO PackageBuilder - processing package Topology (5) ... +2024-09-08 15:10:00,044 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Topology, _objData=UmlObjectData [id=142, uuid={BED90F47-24EF-4af0-A8CD-1DB3BE1E6A2E}, since=null, name=Main, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all classes included in the Topology package as well as the key external classes that have associations with Topology classes.', htmlDescription='

This diagram shows all classes included in the Topology package as well as the key external classes that have associations with Topology classes.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,044 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Topology, _objData=UmlObjectData [id=175, uuid={812B4853-1CF3-409f-A123-486DC421E542}, since=null, name=DiagramWithoutComment, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,045 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61970::Topology->IEC61970::Core, _objData=UmlObjectData [id=480, uuid={285C8813-D098-4165-89FE-151394F8B419}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], 1_taggedValues{depTag=value}] +2024-09-08 15:10:00,045 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = IEC61970::Topology->null, _objData=UmlObjectData [id=2132, uuid={FE9A0E08-9542-4980-B6A9-7CFE59DFDF87}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,046 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=792, uuid={28BA82FD-7570-4c86-9A3A-050C731746F5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Bus/Branch bus naming specificaiton static model.', htmlDescription='

Bus/Branch bus naming specificaiton static model.

'], _containingPackage=Topology, _otherEndName=] +2024-09-08 15:10:00,046 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=793, uuid={3080379F-A230-42b0-B079-E64E9C2C4C0E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Bus/Branch calculated Model', htmlDescription='

Bus/Branch calculated Model

'], _containingPackage=Topology, _otherEndName=] +2024-09-08 15:10:00,046 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=798, uuid={F181AA99-3812-4aea-BBD5-6AFFAC73C51E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Switch/Node static Model', htmlDescription='

Switch/Node static Model

'], _containingPackage=Topology, _otherEndName=] +2024-09-08 15:10:00,047 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1445, uuid={7A16D86A-89E8-448d-9921-85B3C3F84B61}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='C2_1: {constrained1, constrained2: all present or all absent}', htmlDescription='

C2_1: {constrained1, constrained2: all present or all absent}

'], _containingPackage=Topology, _otherEndName=] +2024-09-08 15:10:00,047 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1446, uuid={99D566C7-C1FF-4a61-8F98-9BF57F54E99C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='C2_2: {constrained3, constrained4: all present or all absent}', htmlDescription='

C2_2: {constrained3, constrained4: all present or all absent}

'], _containingPackage=Topology, _otherEndName=] +2024-09-08 15:10:00,047 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1447, uuid={30E75C31-A0AF-4889-9B1B-86955E51DB15}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='PICS_SUBST: {constrained5, if substitution defined}', htmlDescription='

PICS_SUBST: {constrained5, if substitution defined}

'], _containingPackage=Topology, _otherEndName=] +2024-09-08 15:10:00,047 [main] TRACE ClassBuilder - Class DumbSubterminal (0 in package Topology) +2024-09-08 15:10:00,048 [main] DEBUG ClassBuilder - Adding DumbSubterminal as subclass of Terminal +2024-09-08 15:10:00,048 [main] TRACE ClassBuilder - read from EA: Topology::DumbSubterminal +2024-09-08 15:10:00,048 [main] TRACE ClassBuilder - Class BusNameMarker (1 in package Topology) +2024-09-08 15:10:00,049 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Topology::BusNameMarker, _objData=UmlObjectData [id=3250, uuid={C375C88C-1BD9-4f29-874F-85F591975EEE}, since=null, name=constrained1, alias=, stereotype=, visibility=public, txtDescription='Added to test parsing and assigning constraints.', htmlDescription='

Added to test parsing and assigning constraints.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2 _constraints[ConstraintBuilder [_objData=UmlObjectData [id=322, uuid=e7838b89-c1f1-3846-82c2-b51c40441fcd, since=null, name=maxIdx, alias=, stereotype=, visibility=public, txtDescription='count+1', htmlDescription='

count+1

'], _containingAttribute=constrained1, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=count+1], ConstraintBuilder [_objData=UmlObjectData [id=323, uuid=504022e1-a42d-3d7e-a7ab-50f48306f4f8, since=null, name=minIdx, alias=, stereotype=, visibility=public, txtDescription='0', htmlDescription='

0

'], _containingAttribute=constrained1, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=0]]] +2024-09-08 15:10:00,049 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Topology::BusNameMarker, _objData=UmlObjectData [id=3251, uuid={6EA50EAF-292F-4f17-A3F5-EB732279F805}, since=null, name=constrained2, alias=, stereotype=, visibility=public, txtDescription='Added to test parsing and assigning constraints.', htmlDescription='

Added to test parsing and assigning constraints.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,050 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Topology::BusNameMarker, _objData=UmlObjectData [id=3252, uuid={31FC9762-65CA-42b7-ABCB-83EFD97D28CE}, since=null, name=constrained3, alias=, stereotype=, visibility=public, txtDescription='Added to test parsing and assigning constraints.', htmlDescription='

Added to test parsing and assigning constraints.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,050 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Topology::BusNameMarker, _objData=UmlObjectData [id=3253, uuid={96BA1CD3-C66C-4ea0-9D8F-B6776C6C49AE}, since=null, name=constrained4, alias=, stereotype=, visibility=public, txtDescription='Added to test parsing and assigning constraints.', htmlDescription='

Added to test parsing and assigning constraints.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,050 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3, uuid={590BBDE0-69DD-4470-B132-44CEC789B123}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=BusNameMarker, _otherEndName=?] +2024-09-08 15:10:00,050 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2093, uuid={96400D51-E956-4b4e-B06B-7F9CBA5E04C2}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=BusNameMarker, _otherEndName=?] +2024-09-08 15:10:00,050 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2094, uuid={70FC92E4-E2D8-4b16-8737-2A47F81F86AF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=BusNameMarker, _otherEndName=?] +2024-09-08 15:10:00,050 [main] DEBUG AssociationEndBuilder - Updated source type to BusNameMarker +2024-09-08 15:10:00,051 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=331, uuid=2167dbf0-972a-3c64-9926-ceb9eb42028e, since=null, name=BusNameMarker, alias=, stereotype=srcStereo1, srcStereo2, visibility=public, txtDescription='The associated name of the bus (TopologicalNode) containing the ConnectivityNode is derived by an algorithm that uses the bus name marker.', htmlDescription='

The associated name of the bus (TopologicalNode) containing the ConnectivityNode is derived by an algorithm that uses the bus name marker.

'], _type=BusNameMarker, _multiplicity=[0..1], _navigable=unspecified, 1_taggedValues{srcTag=valueSrcTag}], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=332, uuid=1135f63d-8caf-3807-b40b-8c38abc7f979, since=null, name=PrivateConnectivityNode, alias=, stereotype=endStereo1, endStereo2, visibility=private, txtDescription='The list of nodes which have the same bus name in the normal topology. Note that this list of ConnectivityNodes should be connected by objects derived from Switch that are normally closed.', htmlDescription='

The list of nodes which have the same bus name in the normal topology. Note that this list of ConnectivityNodes should be connected by objects derived from Switch that are normally closed.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified, 1_taggedValues{endTag=valueEndTag}], _objData=UmlObjectData [id=228, uuid={EE3B8B0F-5740-4380-91F9-563BFD5783D7}, since=null, name=, alias=, stereotype=otherStereo, deprecated, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false, 1_taggedValues{assocTag=val}] +2024-09-08 15:10:00,051 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=331, uuid=2167dbf0-972a-3c64-9926-ceb9eb42028e, since=null, name=BusNameMarker, alias=, stereotype=srcStereo1, srcStereo2, visibility=public, txtDescription='The associated name of the bus (TopologicalNode) containing the ConnectivityNode is derived by an algorithm that uses the bus name marker.', htmlDescription='

The associated name of the bus (TopologicalNode) containing the ConnectivityNode is derived by an algorithm that uses the bus name marker.

'], _type=BusNameMarker, _multiplicity=[0..1], _navigable=unspecified, 1_taggedValues{srcTag=valueSrcTag}], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=332, uuid=1135f63d-8caf-3807-b40b-8c38abc7f979, since=null, name=PrivateConnectivityNode, alias=, stereotype=endStereo1, endStereo2, visibility=private, txtDescription='The list of nodes which have the same bus name in the normal topology. Note that this list of ConnectivityNodes should be connected by objects derived from Switch that are normally closed.', htmlDescription='

The list of nodes which have the same bus name in the normal topology. Note that this list of ConnectivityNodes should be connected by objects derived from Switch that are normally closed.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified, 1_taggedValues{endTag=valueEndTag}], _objData=UmlObjectData [id=228, uuid={EE3B8B0F-5740-4380-91F9-563BFD5783D7}, since=null, name=, alias=, stereotype=otherStereo, deprecated, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false, 1_taggedValues{assocTag=val}] as source to Topology::BusNameMarker +2024-09-08 15:10:00,051 [main] DEBUG ClassBuilder - Adding BusNameMarker as subclass of IdentifiedObject +2024-09-08 15:10:00,051 [main] DEBUG ClassBuilder - Adding BusNameMarker as subclass of InfClass2 +2024-09-08 15:10:00,051 [main] TRACE ClassBuilder - read from EA: Topology::BusNameMarker +2024-09-08 15:10:00,051 [main] TRACE ClassBuilder - Class ConnectivityNode (2 in package Topology) +2024-09-08 15:10:00,052 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=1, uuid={88A0C200-EEC6-4046-94D0-E55191619276}, since=null, name=Switch/Node static Model, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=ConnectivityNode, _otherEndName=?] +2024-09-08 15:10:00,052 [main] DEBUG AssociationEndBuilder - Updated target type to ConnectivityNode +2024-09-08 15:10:00,052 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=331, uuid=2167dbf0-972a-3c64-9926-ceb9eb42028e, since=null, name=BusNameMarker, alias=, stereotype=srcStereo1, srcStereo2, visibility=public, txtDescription='The associated name of the bus (TopologicalNode) containing the ConnectivityNode is derived by an algorithm that uses the bus name marker.', htmlDescription='

The associated name of the bus (TopologicalNode) containing the ConnectivityNode is derived by an algorithm that uses the bus name marker.

'], _type=BusNameMarker, _multiplicity=[0..1], _navigable=unspecified, 1_taggedValues{srcTag=valueSrcTag}], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=332, uuid=1135f63d-8caf-3807-b40b-8c38abc7f979, since=null, name=PrivateConnectivityNode, alias=, stereotype=endStereo1, endStereo2, visibility=private, txtDescription='The list of nodes which have the same bus name in the normal topology. Note that this list of ConnectivityNodes should be connected by objects derived from Switch that are normally closed.', htmlDescription='

The list of nodes which have the same bus name in the normal topology. Note that this list of ConnectivityNodes should be connected by objects derived from Switch that are normally closed.

'], _type=ConnectivityNode, _multiplicity=[0..*], _navigable=unspecified, 1_taggedValues{endTag=valueEndTag}], _objData=UmlObjectData [id=228, uuid={EE3B8B0F-5740-4380-91F9-563BFD5783D7}, since=null, name=, alias=, stereotype=otherStereo, deprecated, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false, 1_taggedValues{assocTag=val}] as target to Topology::ConnectivityNode +2024-09-08 15:10:00,052 [main] DEBUG AssociationEndBuilder - Updated target type to ConnectivityNode +2024-09-08 15:10:00,052 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=291, uuid=90cbfea3-4fcc-3b34-8a4d-19b078519a40, since=null, name=Terminals, alias=, stereotype=, visibility=public, txtDescription='Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.', htmlDescription='

Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.

'], _type=Terminal, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=292, uuid=82cf9a85-6ff2-3238-844b-b1eb670bffb2, since=null, name=ConnectivityNode, alias=, stereotype=, visibility=public, txtDescription='Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.', htmlDescription='

Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.

'], _type=ConnectivityNode, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=229, uuid={C7E01609-F4E6-4a6e-8ACF-BDD413E62DE3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.', htmlDescription='

Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Topology::ConnectivityNode +2024-09-08 15:10:00,052 [main] DEBUG AssociationEndBuilder - Updated source type to ConnectivityNode +2024-09-08 15:10:00,052 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=209, uuid=10ccce83-a67a-3505-a530-f2e7cdbc675c, since=null, name=ConnectivityNodes, alias=, stereotype=, visibility=public, txtDescription='Connectivity nodes contained by this container.', htmlDescription='

Connectivity nodes contained by this container.

'], _type=ConnectivityNode, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=210, uuid=d334a62d-c53a-37a2-856c-81d5fe2c2186, since=null, name=ConnectivityNodeContainer, alias=, stereotype=, visibility=public, txtDescription='Container of this connectivity node.', htmlDescription='

Container of this connectivity node.

'], _type=ConnectivityNodeContainer, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=234, uuid={08EEABA6-269C-44a7-8F82-7BBEFE71ADD6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Topology::ConnectivityNode +2024-09-08 15:10:00,052 [main] DEBUG AssociationEndBuilder - Updated source type to ConnectivityNode +2024-09-08 15:10:00,052 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=336, uuid=9982ac3a-53c9-35df-b268-40e8edd622bf, since=null, name=ConnectivityNodes, alias=, stereotype=, visibility=public, txtDescription='Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.', htmlDescription='

Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.

'], _type=ConnectivityNode, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=false, _objData=UmlObjectData [id=337, uuid=8d0d5545-4ebe-371a-9bc8-3b3ad0fe2ba2, since=null, name=TopologicalNode, alias=, stereotype=, visibility=public, txtDescription='Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.', htmlDescription='

Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=235, uuid={ACD76E10-125A-4f7a-A20A-475AC4334414}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.', htmlDescription='

Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,053 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=336, uuid=9982ac3a-53c9-35df-b268-40e8edd622bf, since=null, name=ConnectivityNodes, alias=, stereotype=, visibility=public, txtDescription='Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.', htmlDescription='

Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.

'], _type=ConnectivityNode, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=false, _objData=UmlObjectData [id=337, uuid=8d0d5545-4ebe-371a-9bc8-3b3ad0fe2ba2, since=null, name=TopologicalNode, alias=, stereotype=, visibility=public, txtDescription='Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.', htmlDescription='

Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=235, uuid={ACD76E10-125A-4f7a-A20A-475AC4334414}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.', htmlDescription='

Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Topology::ConnectivityNode +2024-09-08 15:10:00,053 [main] DEBUG ClassBuilder - Adding ConnectivityNode as subclass of IdentifiedObject +2024-09-08 15:10:00,053 [main] TRACE ClassBuilder - read from EA: Topology::ConnectivityNode +2024-09-08 15:10:00,053 [main] TRACE ClassBuilder - Class TestEnum (3 in package Topology) +2024-09-08 15:10:00,053 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Topology::TestEnum, _objData=UmlObjectData [id=3282, uuid={448B9ABD-3F52-4aec-9426-7C21A75B18F6}, since=null, name=J/m², alias=alias J/m², stereotype=enum, visibility=public, txtDescription='(note) J/m².', htmlDescription='

(note) J/.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=initial J/m², _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,053 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Topology::TestEnum, _objData=UmlObjectData [id=3283, uuid={56A57775-5935-4c7a-B94E-C28F50A063F0}, since=null, name=µ, alias=alias µ, stereotype=enum, visibility=public, txtDescription='(note) bold µ', htmlDescription='

(note) bold µ

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=initial µ, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,054 [main] TRACE ClassBuilder - read from EA: Topology::TestEnum +2024-09-08 15:10:00,054 [main] TRACE ClassBuilder - Class TopologicalIsland (4 in package Topology) +2024-09-08 15:10:00,054 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Topology::TopologicalIsland, _objData=UmlObjectData [id=3254, uuid={71F47E96-66A9-469f-9B94-D81BAECFCBD5}, since=null, name=constrained5, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,054 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Topology::TopologicalIsland, _objData=UmlObjectData [id=3255, uuid={DCE02A31-C635-4cf0-AB24-4C475CEDCC93}, since=null, name=nonConstrained, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,055 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2095, uuid={CCC3E00F-0EDA-4c10-9ECD-2D3218F35E39}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=TopologicalIsland, _otherEndName=?] +2024-09-08 15:10:00,055 [main] DEBUG AssociationEndBuilder - Updated target type to TopologicalIsland +2024-09-08 15:10:00,055 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=347, uuid=b0a14ef2-f9f4-3b4b-a0d5-07cacaf1f168, since=null, name=TopologicalNodes, alias=, stereotype=, visibility=public, txtDescription='A topological node belongs to a topological island', htmlDescription='

A topological node belongs to a topological island

'], _type=null, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=false, _objData=UmlObjectData [id=348, uuid=024ca73f-724b-35af-9fee-7352265f18ed, since=null, name=TopologicalIsland, alias=, stereotype=, visibility=public, txtDescription='A topological node belongs to a topological island', htmlDescription='

A topological node belongs to a topological island

'], _type=TopologicalIsland, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=237, uuid={C890568A-2C06-4a80-B381-F84EBB81CE0A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='A topological node belongs to a topological island', htmlDescription='

A topological node belongs to a topological island

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,055 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=347, uuid=b0a14ef2-f9f4-3b4b-a0d5-07cacaf1f168, since=null, name=TopologicalNodes, alias=, stereotype=, visibility=public, txtDescription='A topological node belongs to a topological island', htmlDescription='

A topological node belongs to a topological island

'], _type=null, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=false, _objData=UmlObjectData [id=348, uuid=024ca73f-724b-35af-9fee-7352265f18ed, since=null, name=TopologicalIsland, alias=, stereotype=, visibility=public, txtDescription='A topological node belongs to a topological island', htmlDescription='

A topological node belongs to a topological island

'], _type=TopologicalIsland, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=237, uuid={C890568A-2C06-4a80-B381-F84EBB81CE0A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='A topological node belongs to a topological island', htmlDescription='

A topological node belongs to a topological island

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Topology::TopologicalIsland +2024-09-08 15:10:00,055 [main] DEBUG AssociationEndBuilder - Updated source type to TopologicalIsland +2024-09-08 15:10:00,057 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=350, uuid=fcdfa1af-63f6-3e94-93b3-1876ca1e670b, since=null, name=AngleRef_TopologicalIsland, alias=, stereotype=, visibility=public, txtDescription='The island for which the node is an angle reference. Normally there is one angle reference node for each island.', htmlDescription='

The island for which the node is an angle reference. Normally there is one angle reference node for each island.

'], _type=TopologicalIsland, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=351, uuid=1a38743d-3df1-3b3d-883a-b2ed5775c465, since=null, name=AngleRef_TopologicalNode, alias=, stereotype=, visibility=public, txtDescription='The angle reference for the island. Normally there is one TopologicalNode that is selected as the angle reference for each island. Other reference schemes exist, so the association is optional.', htmlDescription='

The angle reference for the island. Normally there is one TopologicalNode that is selected as the angle reference for each island. Other reference schemes exist, so the association is optional.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=1947, uuid={7537BE85-0F89-40e3-89A0-C8C7F534F430}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,057 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=350, uuid=fcdfa1af-63f6-3e94-93b3-1876ca1e670b, since=null, name=AngleRef_TopologicalIsland, alias=, stereotype=, visibility=public, txtDescription='The island for which the node is an angle reference. Normally there is one angle reference node for each island.', htmlDescription='

The island for which the node is an angle reference. Normally there is one angle reference node for each island.

'], _type=TopologicalIsland, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=351, uuid=1a38743d-3df1-3b3d-883a-b2ed5775c465, since=null, name=AngleRef_TopologicalNode, alias=, stereotype=, visibility=public, txtDescription='The angle reference for the island. Normally there is one TopologicalNode that is selected as the angle reference for each island. Other reference schemes exist, so the association is optional.', htmlDescription='

The angle reference for the island. Normally there is one TopologicalNode that is selected as the angle reference for each island. Other reference schemes exist, so the association is optional.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=1947, uuid={7537BE85-0F89-40e3-89A0-C8C7F534F430}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Topology::TopologicalIsland +2024-09-08 15:10:00,057 [main] DEBUG ClassBuilder - Adding TopologicalIsland as subclass of IdentifiedObject +2024-09-08 15:10:00,057 [main] TRACE ClassBuilder - read from EA: Topology::TopologicalIsland +2024-09-08 15:10:00,057 [main] TRACE ClassBuilder - Class TopologicalNode (5 in package Topology) +2024-09-08 15:10:00,057 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2, uuid={9F62C0A5-1313-44e0-B47D-FC9F1A31ADD0}, since=null, name=Bus/Branch calculated Model, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=TopologicalNode, _otherEndName=?] +2024-09-08 15:10:00,057 [main] DEBUG AssociationEndBuilder - Updated target type to TopologicalNode +2024-09-08 15:10:00,058 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=336, uuid=9982ac3a-53c9-35df-b268-40e8edd622bf, since=null, name=ConnectivityNodes, alias=, stereotype=, visibility=public, txtDescription='Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.', htmlDescription='

Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.

'], _type=ConnectivityNode, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=false, _objData=UmlObjectData [id=337, uuid=8d0d5545-4ebe-371a-9bc8-3b3ad0fe2ba2, since=null, name=TopologicalNode, alias=, stereotype=, visibility=public, txtDescription='Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.', htmlDescription='

Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.

'], _type=TopologicalNode, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=235, uuid={ACD76E10-125A-4f7a-A20A-475AC4334414}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.', htmlDescription='

Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Topology::TopologicalNode +2024-09-08 15:10:00,058 [main] DEBUG AssociationEndBuilder - Updated source type to TopologicalNode +2024-09-08 15:10:00,058 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=347, uuid=b0a14ef2-f9f4-3b4b-a0d5-07cacaf1f168, since=null, name=TopologicalNodes, alias=, stereotype=, visibility=public, txtDescription='A topological node belongs to a topological island', htmlDescription='

A topological node belongs to a topological island

'], _type=TopologicalNode, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=false, _objData=UmlObjectData [id=348, uuid=024ca73f-724b-35af-9fee-7352265f18ed, since=null, name=TopologicalIsland, alias=, stereotype=, visibility=public, txtDescription='A topological node belongs to a topological island', htmlDescription='

A topological node belongs to a topological island

'], _type=TopologicalIsland, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=237, uuid={C890568A-2C06-4a80-B381-F84EBB81CE0A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='A topological node belongs to a topological island', htmlDescription='

A topological node belongs to a topological island

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Topology::TopologicalNode +2024-09-08 15:10:00,058 [main] DEBUG AssociationEndBuilder - Updated target type to TopologicalNode +2024-09-08 15:10:00,058 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=350, uuid=fcdfa1af-63f6-3e94-93b3-1876ca1e670b, since=null, name=AngleRef_TopologicalIsland, alias=, stereotype=, visibility=public, txtDescription='The island for which the node is an angle reference. Normally there is one angle reference node for each island.', htmlDescription='

The island for which the node is an angle reference. Normally there is one angle reference node for each island.

'], _type=TopologicalIsland, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=351, uuid=1a38743d-3df1-3b3d-883a-b2ed5775c465, since=null, name=AngleRef_TopologicalNode, alias=, stereotype=, visibility=public, txtDescription='The angle reference for the island. Normally there is one TopologicalNode that is selected as the angle reference for each island. Other reference schemes exist, so the association is optional.', htmlDescription='

The angle reference for the island. Normally there is one TopologicalNode that is selected as the angle reference for each island. Other reference schemes exist, so the association is optional.

'], _type=TopologicalNode, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=1947, uuid={7537BE85-0F89-40e3-89A0-C8C7F534F430}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Topology::TopologicalNode +2024-09-08 15:10:00,058 [main] DEBUG AssociationEndBuilder - Updated target type to TopologicalNode +2024-09-08 15:10:00,058 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=294, uuid=156aeee5-edcf-3620-8689-98f66c084af5, since=null, name=Terminal, alias=, stereotype=, visibility=public, txtDescription='The terminals associated with the topological node. This can be used as an alternative to the connectivity node path to terminal, thus making it unneccesary to model connedtivity nodes in some cases. Note that the if connectivity nodes are in the model, this association would proably not be used.', htmlDescription='

The terminals associated with the topological node. This can be used as an alternative to the connectivity node path to terminal, thus making it unneccesary to model connedtivity nodes in some cases. Note that the if connectivity nodes are in the model, this association would proably not be used.

'], _type=Terminal, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=false, _objData=UmlObjectData [id=295, uuid=347bba3d-4267-3d35-8f14-3bf34cfb435d, since=null, name=TopologicalNode, alias=, stereotype=, visibility=public, txtDescription='The topological node associated with the terminal. This can be used as an alternative to the connectivity node path to topological node, thus making it unneccesary to model connedtivity nodes in some cases. Note that the if connectivity nodes are in the model, this association would proably not be used.', htmlDescription='

The topological node associated with the terminal. This can be used as an alternative to the connectivity node path to topological node, thus making it unneccesary to model connedtivity nodes in some cases. Note that the if connectivity nodes are in the model, this association would proably not be used.

'], _type=TopologicalNode, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=1961, uuid={F490BFCA-36A8-4fe2-B28B-66466134B41E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Topology::TopologicalNode +2024-09-08 15:10:00,058 [main] DEBUG AssociationEndBuilder - Updated source type to TopologicalNode +2024-09-08 15:10:00,058 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=212, uuid=273458f0-8dc9-3b97-8d72-736bec7303fd, since=null, name=TopologicalNode, alias=, stereotype=, visibility=public, txtDescription='The topological nodes which belong to this connectivity node container.', htmlDescription='

The topological nodes which belong to this connectivity node container.

'], _type=TopologicalNode, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=213, uuid=069cc4c5-6982-3d6a-b143-1664cb457595, since=null, name=ConnectivityNodeContainer, alias=, stereotype=, visibility=public, txtDescription='The connectivity node container to which the toplogical node belongs.', htmlDescription='

The connectivity node container to which the toplogical node belongs.

'], _type=ConnectivityNodeContainer, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=1974, uuid={88BD0C47-4CB3-44db-9A6B-20C783A24478}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Topology::TopologicalNode +2024-09-08 15:10:00,058 [main] DEBUG AssociationEndBuilder - Updated source type to TopologicalNode +2024-09-08 15:10:00,058 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=172, uuid=ddf38257-ed75-3694-81a7-e984049e0ecf, since=null, name=TopologicalNode, alias=, stereotype=, visibility=public, txtDescription='The topological nodes at the base voltage.', htmlDescription='

The topological nodes at the base voltage.

'], _type=TopologicalNode, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=173, uuid=56be42a8-abee-3a0d-ab13-c23730a949e3, since=null, name=BaseVoltage, alias=, stereotype=, visibility=public, txtDescription='The base voltage of the topologocial node.', htmlDescription='

The base voltage of the topologocial node.

'], _type=BaseVoltage, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2092, uuid={6F37A2BE-FB37-4a6c-8BB1-CFC6690C1867}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Topology::TopologicalNode +2024-09-08 15:10:00,058 [main] DEBUG ClassBuilder - Adding TopologicalNode as subclass of IdentifiedObject +2024-09-08 15:10:00,058 [main] TRACE ClassBuilder - read from EA: Topology::TopologicalNode +2024-09-08 15:10:00,058 [main] INFO PackageBuilder - processing package TestEnums (0) ... +2024-09-08 15:10:00,059 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=TestEnums, _objData=UmlObjectData [id=322, uuid={EB85622E-6F55-437f-8452-4BC5F0CD56EA}, since=null, name=TestEnums, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,059 [main] ERROR EaTables - [+++ EA ordering problem for 3 class(s) in TestEnums (manually move back/forth a class to initiate EA internal ordering update!): +, +++ class EnumWithSomeIntCodes: pos = 0 +, +++ class EnumWithStringCodes: pos = 0 DUPLICATE +, +++ class EnumWithNonUniqueCodes: pos = 0 DUPLICATE +] +2024-09-08 15:10:00,060 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3046, uuid={9C4E5333-2EF4-4e2a-896D-5483E24C814F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='to test missing codes; and also number codes.', htmlDescription='

to test missing codes; and also number codes.

'], _containingPackage=TestEnums, _otherEndName=] +2024-09-08 15:10:00,060 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3048, uuid={74B8B3CB-8367-40f8-85C6-B3069AC1558A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='(will be picked for missing codes) +also to test that we correctly conclude 'type=string' and not integer (type is useful when sorting values and finding the "free" ones for integers)', htmlDescription='

(will be picked for missing codes)

also to test that we correctly conclude 'type=string' and not integer (type is useful when sorting values and finding the "free" ones for integers)

'], _containingPackage=TestEnums, _otherEndName=] +2024-09-08 15:10:00,060 [main] TRACE ClassBuilder - Class EnumWithSomeIntCodes (0 in package TestEnums) +2024-09-08 15:10:00,060 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithSomeIntCodes, _objData=UmlObjectData [id=6663, uuid={97764136-F1CA-4ee2-AA97-54F873C39045}, since=null, name=lit10, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=10, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,060 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithSomeIntCodes, _objData=UmlObjectData [id=6664, uuid={B65824BB-92BD-45a3-8F03-50001545F733}, since=null, name=lit20noCode, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,060 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithSomeIntCodes, _objData=UmlObjectData [id=6665, uuid={F5F0C134-4646-431c-98A0-7D365357DAF0}, since=null, name=lit30, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,061 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithSomeIntCodes, _objData=UmlObjectData [id=6666, uuid={A50E49A0-5BA7-4ed5-B3C5-7B55938B0EB6}, since=null, name=lit40, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,061 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithSomeIntCodes, _objData=UmlObjectData [id=6667, uuid={FD887BC2-C8C7-45c3-9E46-87FA1FA16E37}, since=null, name=lit50, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,061 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithSomeIntCodes, _objData=UmlObjectData [id=6668, uuid={57C382A8-48C8-4296-9B79-DE5AFE8BF6B6}, since=null, name=lit60noCode, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,061 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithSomeIntCodes, _objData=UmlObjectData [id=6669, uuid={8A457DE1-5D50-4034-8F5F-11A64BBFD2D8}, since=null, name=lit70, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,061 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3428, uuid={E99F9C5D-7CCC-4a92-9042-F3B035F5A21B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=EnumWithSomeIntCodes, _otherEndName=?] +2024-09-08 15:10:00,061 [main] TRACE ClassBuilder - read from EA: TestEnums::EnumWithSomeIntCodes +2024-09-08 15:10:00,061 [main] TRACE ClassBuilder - Class EnumWithStringCodes (0 in package TestEnums) +2024-09-08 15:10:00,061 [main] DEBUG DbAttributeBuilder - fixing lower bound '' to 1 for enum:UmlObjectData [id=6670, uuid={BC79B050-3201-4100-9EE4-8B07DAD5B090}, since=null, name=str1, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''] +2024-09-08 15:10:00,062 [main] DEBUG DbAttributeBuilder - fixing upper bound '' to 1 for enum:UmlObjectData [id=6670, uuid={BC79B050-3201-4100-9EE4-8B07DAD5B090}, since=null, name=str1, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''] +2024-09-08 15:10:00,062 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithStringCodes, _objData=UmlObjectData [id=6670, uuid={BC79B050-3201-4100-9EE4-8B07DAD5B090}, since=null, name=str1, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,062 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithStringCodes, _objData=UmlObjectData [id=6671, uuid={26D63869-DE55-4cd8-B09C-9BC6640C5FCC}, since=null, name=str2, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=some string, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,062 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithStringCodes, _objData=UmlObjectData [id=6672, uuid={4EEBA555-6530-4b24-83E9-B9778D9F8865}, since=null, name=str3noCode, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,062 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithStringCodes, _objData=UmlObjectData [id=6673, uuid={C8F2DAE7-B3EA-435f-B32B-9ACD7F6D4A89}, since=null, name=str4, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3.14, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,062 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithStringCodes, _objData=UmlObjectData [id=6674, uuid={E860CE78-27BE-453d-A09A-F3648DB49F54}, since=null, name=str5, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=another string, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,063 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3429, uuid={40539FAF-0122-4915-8114-EA11C771BB8F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=EnumWithStringCodes, _otherEndName=?] +2024-09-08 15:10:00,063 [main] TRACE ClassBuilder - read from EA: TestEnums::EnumWithStringCodes +2024-09-08 15:10:00,063 [main] TRACE ClassBuilder - Class EnumWithNonUniqueCodes (0 in package TestEnums) +2024-09-08 15:10:00,063 [main] DEBUG DbAttributeBuilder - fixing lower bound '' to 1 for enum:UmlObjectData [id=6675, uuid={AF9195CE-3B58-49bd-AAFF-5096B17E7CC3}, since=null, name=c1, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''] +2024-09-08 15:10:00,064 [main] DEBUG DbAttributeBuilder - fixing upper bound '' to 1 for enum:UmlObjectData [id=6675, uuid={AF9195CE-3B58-49bd-AAFF-5096B17E7CC3}, since=null, name=c1, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''] +2024-09-08 15:10:00,064 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithNonUniqueCodes, _objData=UmlObjectData [id=6675, uuid={AF9195CE-3B58-49bd-AAFF-5096B17E7CC3}, since=null, name=c1, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,064 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithNonUniqueCodes, _objData=UmlObjectData [id=6676, uuid={6EAFF992-8224-4275-8BDC-F4AF84806841}, since=null, name=c2, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,064 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithNonUniqueCodes, _objData=UmlObjectData [id=6677, uuid={50FA5150-C952-4da4-8B39-BFCB3A0AE516}, since=null, name=c3, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,064 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithNonUniqueCodes, _objData=UmlObjectData [id=6678, uuid={EB583897-4EF4-4540-ABD7-AE37AEE8A545}, since=null, name=c4, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,064 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithNonUniqueCodes, _objData=UmlObjectData [id=6679, uuid={AD689D8B-2CA4-4e25-8827-4E946E5577D6}, since=null, name=c5, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,065 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithNonUniqueCodes, _objData=UmlObjectData [id=6680, uuid={91464270-40F1-4f40-BE47-ACFFFD42962C}, since=null, name=c6, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=6, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,065 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithNonUniqueCodes, _objData=UmlObjectData [id=6681, uuid={43B6F39E-662B-4646-B1DF-C63F8E6306D5}, since=null, name=c7, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,065 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithNonUniqueCodes, _objData=UmlObjectData [id=6682, uuid={4E9F146E-EF05-4d8f-8488-9CC79243CD2A}, since=null, name=c8, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=8, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,065 [main] TRACE ClassBuilder - read from EA: TestEnums::EnumWithNonUniqueCodes +2024-09-08 15:10:00,066 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Topology, _depth=2, _eaElementID=3044, _objData=UmlObjectData [id=168, uuid={985DB921-A357-472b-AA9D-8533D25EB928}, since=null, name=TestEnums, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=2, _selfDependent=false, 2_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3046, uuid={9C4E5333-2EF4-4e2a-896D-5483E24C814F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='to test missing codes; and also number codes.', htmlDescription='

to test missing codes; and also number codes.

'], _containingPackage=TestEnums, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3048, uuid={74B8B3CB-8367-40f8-85C6-B3069AC1558A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='(will be picked for missing codes) +also to test that we correctly conclude 'type=string' and not integer (type is useful when sorting values and finding the "free" ones for integers)', htmlDescription='

(will be picked for missing codes)

also to test that we correctly conclude 'type=string' and not integer (type is useful when sorting values and finding the "free" ones for integers)

'], _containingPackage=TestEnums, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=TestEnums, _objData=UmlObjectData [id=322, uuid={EB85622E-6F55-437f-8452-4BC5F0CD56EA}, since=null, name=TestEnums, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _classes=3 +2024-09-08 15:10:00,066 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61970, _depth=1, _eaElementID=586, _objData=UmlObjectData [id=52, uuid={E44AA599-D1DD-4d0c-8487-AE8BE9E6FEEB}, since=null, name=Topology, alias=, stereotype=deprecated, visibility=public, txtDescription=''An extension to the Core Package that in association with the Terminal class models Connectivity, that is the physical definition of how equipment is connected together. In addition it models Topology, that is the logical definition of how equipment is connected via closed switches. The Topology definition is independent of the other electrical characteristics.', htmlDescription='

'An extension to the Core Package that in association with the Terminal class models Connectivity, that is the physical definition of how equipment is connected together. In addition it models Topology, that is the logical definition of how equipment is connected via closed switches. The Topology definition is independent of the other electrical characteristics.

'], _modelId=2, _selfDependent=false, 6_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=792, uuid={28BA82FD-7570-4c86-9A3A-050C731746F5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Bus/Branch bus naming specificaiton static model.', htmlDescription='

Bus/Branch bus naming specificaiton static model.

'], _containingPackage=Topology, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=793, uuid={3080379F-A230-42b0-B079-E64E9C2C4C0E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Bus/Branch calculated Model', htmlDescription='

Bus/Branch calculated Model

'], _containingPackage=Topology, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=798, uuid={F181AA99-3812-4aea-BBD5-6AFFAC73C51E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Switch/Node static Model', htmlDescription='

Switch/Node static Model

'], _containingPackage=Topology, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1445, uuid={7A16D86A-89E8-448d-9921-85B3C3F84B61}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='C2_1: {constrained1, constrained2: all present or all absent}', htmlDescription='

C2_1: {constrained1, constrained2: all present or all absent}

'], _containingPackage=Topology, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1446, uuid={99D566C7-C1FF-4a61-8F98-9BF57F54E99C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='C2_2: {constrained3, constrained4: all present or all absent}', htmlDescription='

C2_2: {constrained3, constrained4: all present or all absent}

'], _containingPackage=Topology, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1447, uuid={30E75C31-A0AF-4889-9B1B-86955E51DB15}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='PICS_SUBST: {constrained5, if substitution defined}', htmlDescription='

PICS_SUBST: {constrained5, if substitution defined}

'], _containingPackage=Topology, _otherEndName=]], 2_diagrams=[DiagramBuilder [_containingPackage=Topology, _objData=UmlObjectData [id=142, uuid={BED90F47-24EF-4af0-A8CD-1DB3BE1E6A2E}, since=null, name=Main, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all classes included in the Topology package as well as the key external classes that have associations with Topology classes.', htmlDescription='

This diagram shows all classes included in the Topology package as well as the key external classes that have associations with Topology classes.

'], _portrait=true, _kind=LOGICAL], DiagramBuilder [_containingPackage=Topology, _objData=UmlObjectData [id=175, uuid={812B4853-1CF3-409f-A123-486DC421E542}, since=null, name=DiagramWithoutComment, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=2, _classes=6, _childPackages=1] +2024-09-08 15:10:00,066 [main] TRACE PackageBuilder - read PackageBuilder [_kind=TOP, _containingPackage=TC57CIM, _depth=0, _eaElementID=16, _objData=UmlObjectData [id=39, uuid={21D32832-FF64-4213-B81C-55ACE35EEBFF}, since=null, name=IEC61970, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=2, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=STATE, _isConnector=false, _objData=UmlObjectData [id=1497, uuid={5D5CC973-30B7-4d45-8CF7-92688076EFE3}, since=null, name=StateInPackage, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=IEC61970, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=IEC61970, _objData=UmlObjectData [id=111, uuid={FB07D92D-5F4D-4fdc-AD82-2376FAF51037}, since=null, name=Main, alias=, stereotype=, visibility=public, txtDescription=''This diagram shows all 61970 packages and their logical dependencies. +Test bold ignored.', htmlDescription='

'This diagram shows all 61970 packages and their logical dependencies.

Test bold ignored.

'], _portrait=false, _kind=LOGICAL]], _dependenciesAsTarget=3, _classes=1, _childPackages=5] +2024-09-08 15:10:00,066 [main] INFO PackageBuilder - processing top package IEC61968 (3) ... +2024-09-08 15:10:00,066 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=IEC61968, _objData=UmlObjectData [id=158, uuid={B3B5E06E-B00E-4cb6-B697-39D4D8476DC2}, since=null, name=IEC61968, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,067 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = TC57CIM::IEC61968->TC57CIM::IEC61970, _objData=UmlObjectData [id=3447, uuid={78B6C7F1-FC16-4b0c-A685-CD6711DBB0A3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,067 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->TC57CIM::IEC61968, _objData=UmlObjectData [id=3448, uuid={BEB08626-C0F2-4a9d-860D-F205594F0FE9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,067 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1478, uuid={5081A538-2556-474f-88ED-7C7DF4A5AFC6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='duplicate name in same parent package', htmlDescription='

duplicate name in same parent package

'], _containingPackage=IEC61968, _otherEndName=] +2024-09-08 15:10:00,068 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1479, uuid={9D7409F2-ED2C-4db6-8F47-491CE2A1844E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='duplicate name with other parent package', htmlDescription='

duplicate name with other parent package

'], _containingPackage=IEC61968, _otherEndName=] +2024-09-08 15:10:00,068 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1499, uuid={15CB1C37-5F9F-43ea-BD54-22E99CD16F24}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='wrong dependency direction', htmlDescription='

wrong dependency direction

'], _containingPackage=IEC61968, _otherEndName=] +2024-09-08 15:10:00,068 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3075, uuid={4E5B9BC5-C441-4553-80A7-70B7D074D066}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='- extension tags with namespaces', htmlDescription='

- extension tags with namespaces

'], _containingPackage=IEC61968, _otherEndName=] +2024-09-08 15:10:00,068 [main] TRACE ClassBuilder - Class IEC61968Version (0 in package IEC61968) +2024-09-08 15:10:00,068 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61968::IEC61968Version, _objData=UmlObjectData [id=3256, uuid={9FE72A7E-8CF0-40a9-A6CF-4F41D1B5BF82}, since=null, name=date, alias=, stereotype=, visibility=public, txtDescription='Form is YYYY-MM-DD for example for January 5, 2009 it is 2009-01-05 (not ending with dot)', htmlDescription='

Form is YYYY-MM-DD for example for January 5, 2009 it is 2009-01-05 (not ending with dot)

'], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=2010-05-07, _eaTypeId=640, _eaTypeName=AbsoluteDateTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,069 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61968::IEC61968Version, _objData=UmlObjectData [id=3257, uuid={CB9E6808-E556-4c14-AB7D-D4245FA445B6}, since=null, name=version, alias=, stereotype=, visibility=public, txtDescription='Form is IEC61970CIMXXvYY where XX is the major CIM package version and the YY is the minor version. For ecample IEC61970CIM13v18.', htmlDescription='

Form is IEC61970CIMXXvYY where XX is the major CIM package version and the YY is the minor version. For ecample IEC61970CIM13v18.

'], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=IEC62325CIM01v02, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,069 [main] TRACE ClassBuilder - read from EA: IEC61968::IEC61968Version +2024-09-08 15:10:00,069 [main] INFO PackageBuilder - processing package EmbeddedExtension (0) ... +2024-09-08 15:10:00,070 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=EmbeddedExtension, _objData=UmlObjectData [id=328, uuid={9E98C833-9774-4ea6-A2CF-95D39952B4EB}, since=null, name=EmbeddedExtension, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=PACKAGE] +2024-09-08 15:10:00,070 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3457, uuid={87BB5BD5-B379-4ea5-AE8F-4EAD0B5884E4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=EmbeddedExtension, _otherEndName=Note ''] +2024-09-08 15:10:00,071 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61968, _depth=1, _eaElementID=3074, _objData=UmlObjectData [id=173, uuid={FFD756A8-FFD9-477f-86B1-77DCB78D7FF1}, since=null, name=EmbeddedExtension, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=2, _selfDependent=false, 2_taggedValues{nsuri=http://embeddedExt, nsprefix=eext}, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3457, uuid={87BB5BD5-B379-4ea5-AE8F-4EAD0B5884E4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=EmbeddedExtension, _otherEndName=Note '']], 1_diagrams=[DiagramBuilder [_containingPackage=EmbeddedExtension, _objData=UmlObjectData [id=328, uuid={9E98C833-9774-4ea6-A2CF-95D39952B4EB}, since=null, name=EmbeddedExtension, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=PACKAGE]] +2024-09-08 15:10:00,071 [main] INFO PackageBuilder - processing package Assets (2) ... +2024-09-08 15:10:00,071 [main] ERROR EaTables - [+++ EA ordering problem for 2 diagram(s) in Assets (manually move back/forth a diagram to initiate EA internal ordering update!): +, +++ diagram Assets: pos = 0 +, +++ diagram AssetsObjDia: pos = 0 DUPLICATE +] +2024-09-08 15:10:00,071 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Assets, _objData=UmlObjectData [id=184, uuid={F773A826-B339-4839-9D00-9F1FECC8C458}, since=null, name=Assets, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,071 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Assets, _objData=UmlObjectData [id=326, uuid={669D2D40-80CD-42ed-AC0A-EC34B7B214AD}, since=null, name=AssetsObjDia, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=OBJECT] +2024-09-08 15:10:00,072 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=false, _objData=UmlObjectData [id=3064, uuid={E11F1530-D301-48de-9638-0D6673F15252}, since=null, name=Object1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Assets, _otherEndName=] +2024-09-08 15:10:00,072 [main] TRACE ClassBuilder - Class AssetInfo (0 in package Assets) +2024-09-08 15:10:00,072 [main] DEBUG AssociationEndBuilder - Updated source type to AssetInfo +2024-09-08 15:10:00,072 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=274, uuid=95687635-5e2c-38e8-a9f7-3fcbd94f561c, since=null, name=AssetInfos, alias=, stereotype=, visibility=public, txtDescription='FooBar', htmlDescription='

FooBar

'], _type=AssetInfo, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=275, uuid=1892b331-bca4-3a23-9fd8-dccf941cd095, since=null, name=PSRs, alias=, stereotype=, visibility=public, txtDescription='Blah', htmlDescription='

Blah

'], _type=PowerSystemResource, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=2148, uuid={D93167F8-2A16-4fbc-BC07-353D141C8E50}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Assets::AssetInfo +2024-09-08 15:10:00,073 [main] TRACE ClassBuilder - read from EA: Assets::AssetInfo +2024-09-08 15:10:00,073 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61968, _depth=1, _eaElementID=1545, _objData=UmlObjectData [id=83, uuid={516376C4-BBFB-448f-8E87-F13D9134F402}, since=null, name=Assets, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=2, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=OTHER, _isConnector=false, _objData=UmlObjectData [id=3064, uuid={E11F1530-D301-48de-9638-0D6673F15252}, since=null, name=Object1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Assets, _otherEndName=]], 2_diagrams=[DiagramBuilder [_containingPackage=Assets, _objData=UmlObjectData [id=184, uuid={F773A826-B339-4839-9D00-9F1FECC8C458}, since=null, name=Assets, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL], DiagramBuilder [_containingPackage=Assets, _objData=UmlObjectData [id=326, uuid={669D2D40-80CD-42ed-AC0A-EC34B7B214AD}, since=null, name=AssetsObjDia, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=OBJECT]], _classes=1 +2024-09-08 15:10:00,073 [main] INFO PackageBuilder - processing package Core (3) ... +2024-09-08 15:10:00,073 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2117, uuid={B4428907-2937-498f-B1F3-851FBB0EB26C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Core, _otherEndName=Note ''] +2024-09-08 15:10:00,073 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61968, _depth=1, _eaElementID=1477, _objData=UmlObjectData [id=67, uuid={C35E89DD-6049-4d6a-99CA-1ABA9173925F}, since=null, name=Core, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=2, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2117, uuid={B4428907-2937-498f-B1F3-851FBB0EB26C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Core, _otherEndName=Note '']] +2024-09-08 15:10:00,074 [main] INFO PackageBuilder - processing package Other (4) ... +2024-09-08 15:10:00,074 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2115, uuid={7C673B7E-956E-4fc2-A092-AAA82B46AFA0}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Other, _otherEndName=Note ''] +2024-09-08 15:10:00,075 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61968, _depth=1, _eaElementID=1476, _objData=UmlObjectData [id=66, uuid={EE65731A-B398-425a-8EC6-8E983569A255}, since=null, name=Other, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=2, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2115, uuid={7C673B7E-956E-4fc2-A092-AAA82B46AFA0}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Other, _otherEndName=Note '']] +2024-09-08 15:10:00,075 [main] INFO PackageBuilder - processing package Other (5) ... +2024-09-08 15:10:00,075 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Other, _objData=UmlObjectData [id=159, uuid={59EDD10A-D974-45e0-A31F-52E31C9E72E2}, since=null, name=Other, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,077 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2116, uuid={8DAFD989-CBA3-41d5-983A-7F645DDC20FF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Other, _otherEndName=Note ''] +2024-09-08 15:10:00,077 [main] DEBUG PackageBuilder - Updated target of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61970::Topology->IEC61968::Other, _objData=UmlObjectData [id=2132, uuid={FE9A0E08-9542-4980-B6A9-7CFE59DFDF87}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,077 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61968::Other->TC57CIM::IEC61970, _objData=UmlObjectData [id=3446, uuid={814038F7-206E-42aa-8183-AE2E302175F9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,078 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=2102, uuid={6D2E1FAD-19CA-4e94-8EF5-ED52FEBE9A83}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Other, _otherEndName=Package 'InformativeAndPrivate'] +2024-09-08 15:10:00,080 [main] ERROR EaTables - [+++ EA ordering problem for 9 class(s) in Other (manually move back/forth a class to initiate EA internal ordering update!): +, +++ class MyClass: pos = 0 +, +++ class BadDatatypes: pos = 0 DUPLICATE +, +++ class Equipment: pos = 0 DUPLICATE +, +++ class MyClass: pos = 0 DUPLICATE +, +++ class EmptyEnum: pos = 0 DUPLICATE +, +++ class NonEmptyPrimitive: pos = 0 DUPLICATE +, +++ class AttrDuplication: pos = 0 DUPLICATE +, +++ class AnotherBadDatatype: pos = 0 DUPLICATE +, +++ class EmptyCompound: pos = 0 DUPLICATE +] +2024-09-08 15:10:00,082 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1473, uuid={FA571FE9-EE28-49a6-9207-B35052E0F3B7}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='duplicate name in different package', htmlDescription='

duplicate name in different package

'], _containingPackage=Other, _otherEndName=] +2024-09-08 15:10:00,082 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1475, uuid={F36DC8B7-9274-4ebb-8686-5098D1637616}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='duplicate name in same package', htmlDescription='

duplicate name in same package

'], _containingPackage=Other, _otherEndName=] +2024-09-08 15:10:00,082 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1483, uuid={37C5FA4D-63DF-47b7-8A7C-DB93FE2C2D71}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='inherits 'value' and defines own one', htmlDescription='

inherits 'value' and defines own one

'], _containingPackage=Other, _otherEndName=] +2024-09-08 15:10:00,082 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1484, uuid={B97F5679-D419-49de-BD30-AFDE18E7E84E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='inherits 'curveStyle' and 'normallyInService' and defines own ones', htmlDescription='

inherits 'curveStyle' and 'normallyInService' and defines own ones

'], _containingPackage=Other, _otherEndName=] +2024-09-08 15:10:00,083 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1498, uuid={016D0725-554C-4993-855A-7606A90A1838}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='illegal relationship direction', htmlDescription='

illegal relationship direction

'], _containingPackage=Other, _otherEndName=] +2024-09-08 15:10:00,083 [main] TRACE ClassBuilder - Class MyClass (0 in package Other) +2024-09-08 15:10:00,083 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Other::MyClass, _objData=UmlObjectData [id=3263, uuid={A1BFCA1B-0A22-4a7c-B2A1-A31E2F46493F}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,083 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Other::MyClass, _objData=UmlObjectData [id=3264, uuid={B3F14AC4-4719-4d52-9C16-348079C67ADC}, since=null, name=normaIlyInService, alias=, stereotype=, visibility=public, txtDescription='The equipment is normally in service.', htmlDescription='

The equipment is normally in service.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,083 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Other::MyClass, _objData=UmlObjectData [id=3265, uuid={9A619402-AE3F-4dcd-B272-F500DB9A42A4}, since=null, name=curveStyle, alias=, stereotype=, visibility=public, txtDescription='The style or shape of the curve.', htmlDescription='

The style or shape of the curve.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=857, _eaTypeName=CurveStyle, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,083 [main] ERROR ClassBuilder - [+++ EA problem: attr count on MyClass = 3 +, +++ attr value: pos = 0 +, +++ attr normaIlyInService: pos = 1 +, +++ attr curveStyle: pos = 0 DUPLICATE +] +2024-09-08 15:10:00,084 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2114, uuid={2D8EFA65-B348-4b41-99AE-85B5659C4446}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=MyClass, _otherEndName=?] +2024-09-08 15:10:00,085 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2119, uuid={865200D2-0483-4458-A233-940669D18204}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=MyClass, _otherEndName=?] +2024-09-08 15:10:00,085 [main] DEBUG AssociationEndBuilder - Updated target type to MyClass +2024-09-08 15:10:00,086 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=421, uuid=6c544e13-4bed-30e6-9c43-414c284b3d34, since=null, name=T1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=422, uuid=e9deedbb-e28d-30fa-9873-205f58f0a25c, since=null, name=T2, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=MyClass, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2110, uuid={FD1E09B1-75C2-4b94-9C2A-F115B67BC95F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,088 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=421, uuid=6c544e13-4bed-30e6-9c43-414c284b3d34, since=null, name=T1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=422, uuid=e9deedbb-e28d-30fa-9873-205f58f0a25c, since=null, name=T2, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=MyClass, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2110, uuid={FD1E09B1-75C2-4b94-9C2A-F115B67BC95F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Other::MyClass +2024-09-08 15:10:00,088 [main] DEBUG AssociationEndBuilder - Updated source type to MyClass +2024-09-08 15:10:00,088 [main] DEBUG AssociationEndBuilder - Updated target type to MyClass +2024-09-08 15:10:00,088 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=424, uuid=90bbb497-40a1-36db-869f-50041f00062b, since=null, name=From, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=MyClass, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=425, uuid=accbcada-0ecc-3dcb-abd1-03a1d88469ad, since=null, name=To, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=MyClass, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2124, uuid={533F71BE-C7E0-4a3d-B55E-3A0FF93A34CA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,088 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = null->Other::MyClass, _objData=UmlObjectData [id=2111, uuid={4DC88475-280C-4309-A943-F5283967A111}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,088 [main] TRACE ClassBuilder - read from EA: Other::MyClass +2024-09-08 15:10:00,089 [main] TRACE ClassBuilder - Class BadDatatypes (0 in package Other) +2024-09-08 15:10:00,089 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Other::BadDatatypes, _objData=UmlObjectData [id=3261, uuid={5401BAC7-97BF-4c99-BF58-3352B0F67F23}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='text', htmlDescription='

text

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1467, _eaTypeName=BadDatatypes, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,089 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Other::BadDatatypes, _objData=UmlObjectData [id=3268, uuid={5074CED7-7500-4ea1-A49F-4FF08173FA21}, since=null, name=unit, alias=, stereotype=, visibility=public, txtDescription='text', htmlDescription='

text

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=badEnumVal, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,089 [main] DEBUG AssociationEndBuilder - Updated source type to BadDatatypes +2024-09-08 15:10:00,089 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=421, uuid=6c544e13-4bed-30e6-9c43-414c284b3d34, since=null, name=T1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=BadDatatypes, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=422, uuid=e9deedbb-e28d-30fa-9873-205f58f0a25c, since=null, name=T2, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=MyClass, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2110, uuid={FD1E09B1-75C2-4b94-9C2A-F115B67BC95F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Other::BadDatatypes +2024-09-08 15:10:00,089 [main] DEBUG AssociationEndBuilder - Updated target type to BadDatatypes +2024-09-08 15:10:00,090 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=431, uuid=edb86b54-fcfe-3390-ba3e-ccaf323dcccb, since=null, name=Something, alias=, stereotype=, visibility=public, txtDescription='Same doc at both ends of association.', htmlDescription='

Same doc at both ends of association.

'], _type=null, _multiplicity=[0..1], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=432, uuid=c73a853f-cbeb-365d-8380-53e86e51c996, since=null, name=T1, alias=, stereotype=, visibility=public, txtDescription='Same doc at both ends of association.', htmlDescription='

Same doc at both ends of association.

'], _type=BadDatatypes, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2122, uuid={A4CF1EA0-A25A-4e76-991E-231C452748F5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,090 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=431, uuid=edb86b54-fcfe-3390-ba3e-ccaf323dcccb, since=null, name=Something, alias=, stereotype=, visibility=public, txtDescription='Same doc at both ends of association.', htmlDescription='

Same doc at both ends of association.

'], _type=null, _multiplicity=[0..1], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=432, uuid=c73a853f-cbeb-365d-8380-53e86e51c996, since=null, name=T1, alias=, stereotype=, visibility=public, txtDescription='Same doc at both ends of association.', htmlDescription='

Same doc at both ends of association.

'], _type=BadDatatypes, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2122, uuid={A4CF1EA0-A25A-4e76-991E-231C452748F5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Other::BadDatatypes +2024-09-08 15:10:00,090 [main] DEBUG ClassBuilder - Adding BadDatatypes as superclass of MyClass +2024-09-08 15:10:00,090 [main] DEBUG ClassBuilder - Adding BadDatatypes as superclass of BaseVoltage +2024-09-08 15:10:00,090 [main] DEBUG ClassBuilder - Updated source of class dependency DependencyBuilder [_kind=CLASS, qName = Other::BadDatatypes->Other::MyClass, _objData=UmlObjectData [id=2111, uuid={4DC88475-280C-4309-A943-F5283967A111}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,090 [main] TRACE ClassBuilder - read from EA: Other::BadDatatypes +2024-09-08 15:10:00,090 [main] TRACE ClassBuilder - Class Equipment (0 in package Other) +2024-09-08 15:10:00,090 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Other::Equipment, _objData=UmlObjectData [id=3303, uuid={B4BA5ED2-2B91-44fc-993D-3097CF99F899}, since=null, name=testYesNo1, alias=, stereotype=, visibility=public, txtDescription='Indicates the presence/absence of energy measurements.', htmlDescription='

Indicates the presence/absence of energy measurements.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1540, _eaTypeName=YesNo, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,090 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Other::Equipment, _objData=UmlObjectData [id=6707, uuid={11C51946-4599-4acb-B5AF-2B8F0CD45996}, since=null, name=myExtension, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{nsuri=http://extensions, nsprefix=eext}] +2024-09-08 15:10:00,091 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2112, uuid={DD8A2F85-66BE-4d24-A560-A9D3748E755D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=Equipment, _otherEndName=?] +2024-09-08 15:10:00,091 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3456, uuid={B41914F1-0549-4ba6-B050-78DC32FB9514}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=Equipment, _otherEndName=?] +2024-09-08 15:10:00,091 [main] TRACE ClassBuilder - read from EA: Other::Equipment +2024-09-08 15:10:00,091 [main] TRACE ClassBuilder - Class MyClass (0 in package Other) +2024-09-08 15:10:00,091 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2113, uuid={2532D99C-9B37-40c2-B38B-6C7EE08B9273}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=MyClass, _otherEndName=?] +2024-09-08 15:10:00,091 [main] DEBUG AssociationEndBuilder - Updated source type to MyClass +2024-09-08 15:10:00,091 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=9, uuid=d9bbaaab-88c8-37ca-b324-ef05c8e21d9f, since=null, name=MyClass, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=MyClass, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=10, uuid=eae8cb7a-f8f8-3531-a271-d09a8cc84d5c, since=null, name=Class1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class1, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2130, uuid={06ABE750-E688-496b-A200-8708982212FA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Other::MyClass +2024-09-08 15:10:00,091 [main] TRACE ClassBuilder - read from EA: Other::MyClass +2024-09-08 15:10:00,091 [main] TRACE ClassBuilder - Class EmptyEnum (0 in package Other) +2024-09-08 15:10:00,092 [main] TRACE ClassBuilder - read from EA: Other::EmptyEnum +2024-09-08 15:10:00,092 [main] TRACE ClassBuilder - Class NonEmptyPrimitive (0 in package Other) +2024-09-08 15:10:00,092 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Other::NonEmptyPrimitive, _objData=UmlObjectData [id=3262, uuid={D496D1A8-C362-435f-83E4-B2247E25C84D}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,092 [main] TRACE ClassBuilder - read from EA: Other::NonEmptyPrimitive +2024-09-08 15:10:00,092 [main] TRACE ClassBuilder - Class AttrDuplication (0 in package Other) +2024-09-08 15:10:00,092 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Other::AttrDuplication, _objData=UmlObjectData [id=3266, uuid={0A43D4DB-192A-4274-95BC-F8772D4CF23B}, since=null, name=curveStyle, alias=, stereotype=, visibility=public, txtDescription='The style or shape of the curve.', htmlDescription='

The style or shape of the curve.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=857, _eaTypeName=CurveStyle, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,093 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Other::AttrDuplication, _objData=UmlObjectData [id=3267, uuid={D6C73EE7-83B0-45e6-BDC8-B0E3F46D8DE2}, since=null, name=normaIlyInService, alias=, stereotype=, visibility=public, txtDescription='The equipment is normally in service.', htmlDescription='

The equipment is normally in service.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,093 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2120, uuid={965A7FC1-9DF2-43a9-8B26-E7FE52309B76}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=AttrDuplication, _otherEndName=?] +2024-09-08 15:10:00,093 [main] DEBUG AssociationEndBuilder - Updated source type to AttrDuplication +2024-09-08 15:10:00,093 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=431, uuid=edb86b54-fcfe-3390-ba3e-ccaf323dcccb, since=null, name=Something, alias=, stereotype=, visibility=public, txtDescription='Same doc at both ends of association.', htmlDescription='

Same doc at both ends of association.

'], _type=AttrDuplication, _multiplicity=[0..1], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=432, uuid=c73a853f-cbeb-365d-8380-53e86e51c996, since=null, name=T1, alias=, stereotype=, visibility=public, txtDescription='Same doc at both ends of association.', htmlDescription='

Same doc at both ends of association.

'], _type=BadDatatypes, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2122, uuid={A4CF1EA0-A25A-4e76-991E-231C452748F5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Other::AttrDuplication +2024-09-08 15:10:00,093 [main] DEBUG AssociationEndBuilder - Updated source type to AttrDuplication +2024-09-08 15:10:00,093 [main] DEBUG AssociationEndBuilder - Updated target type to AttrDuplication +2024-09-08 15:10:00,094 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=448, uuid=2d140b83-084c-3b26-be93-2e7588dad441, since=null, name=From, alias=, stereotype=, visibility=public, txtDescription='Doc (not ending with ".")', htmlDescription='

Doc (not ending with ".")

'], _type=AttrDuplication, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=449, uuid=fa4a781a-b03c-3226-a3ba-f42dc479ab2a, since=null, name=To, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=AttrDuplication, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2123, uuid={A1CCBAF4-F270-46fe-9E5A-B090BAB212D7}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,094 [main] DEBUG AssociationEndBuilder - Updated source type to AttrDuplication +2024-09-08 15:10:00,094 [main] DEBUG AssociationEndBuilder - Updated target type to AttrDuplication +2024-09-08 15:10:00,094 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=451, uuid=d3446429-5444-3540-858e-0f8c1386de5e, since=null, name=From, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=AttrDuplication, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=452, uuid=de1bf03b-1d5b-366e-a262-f23a5ecd7497, since=null, name=To, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=AttrDuplication, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2125, uuid={AB460976-516D-47c3-A895-C3ADCF551734}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,094 [main] DEBUG ClassBuilder - Adding AttrDuplication as subclass of MyClass +2024-09-08 15:10:00,094 [main] TRACE ClassBuilder - read from EA: Other::AttrDuplication +2024-09-08 15:10:00,094 [main] TRACE ClassBuilder - Class AnotherBadDatatype (0 in package Other) +2024-09-08 15:10:00,094 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Other::AnotherBadDatatype, _objData=UmlObjectData [id=3296, uuid={01D99E0F-A7B9-4546-8F76-3E092E9942AE}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,094 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Other::AnotherBadDatatype, _objData=UmlObjectData [id=3297, uuid={415FDB87-B93D-41ca-906E-B88DD94D9F04}, since=null, name=unit, alias=, stereotype=unallowed, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,094 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Other::AnotherBadDatatype, _objData=UmlObjectData [id=3298, uuid={C055FF1A-F57E-4169-A823-AB41EB439A1C}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1538, _eaTypeName=EmptyCompound, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,095 [main] TRACE ClassBuilder - read from EA: Other::AnotherBadDatatype +2024-09-08 15:10:00,095 [main] TRACE ClassBuilder - Class EmptyCompound (0 in package Other) +2024-09-08 15:10:00,095 [main] TRACE ClassBuilder - read from EA: Other::EmptyCompound +2024-09-08 15:10:00,095 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61968, _depth=1, _eaElementID=1453, _objData=UmlObjectData [id=57, uuid={29A1BBDF-45EC-430a-913B-21BB1C8962E3}, since=null, name=Other, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=2, _selfDependent=true, 7_skippedEaItems=[SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2116, uuid={8DAFD989-CBA3-41d5-983A-7F645DDC20FF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Other, _otherEndName=Note ''], SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=2102, uuid={6D2E1FAD-19CA-4e94-8EF5-ED52FEBE9A83}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Other, _otherEndName=Package 'InformativeAndPrivate'], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1473, uuid={FA571FE9-EE28-49a6-9207-B35052E0F3B7}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='duplicate name in different package', htmlDescription='

duplicate name in different package

'], _containingPackage=Other, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1475, uuid={F36DC8B7-9274-4ebb-8686-5098D1637616}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='duplicate name in same package', htmlDescription='

duplicate name in same package

'], _containingPackage=Other, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1483, uuid={37C5FA4D-63DF-47b7-8A7C-DB93FE2C2D71}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='inherits 'value' and defines own one', htmlDescription='

inherits 'value' and defines own one

'], _containingPackage=Other, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1484, uuid={B97F5679-D419-49de-BD30-AFDE18E7E84E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='inherits 'curveStyle' and 'normallyInService' and defines own ones', htmlDescription='

inherits 'curveStyle' and 'normallyInService' and defines own ones

'], _containingPackage=Other, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1498, uuid={016D0725-554C-4993-855A-7606A90A1838}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='illegal relationship direction', htmlDescription='

illegal relationship direction

'], _containingPackage=Other, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=Other, _objData=UmlObjectData [id=159, uuid={59EDD10A-D974-45e0-A31F-52E31C9E72E2}, since=null, name=Other, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=1, _dependenciesAsTarget=1, _classes=9 +2024-09-08 15:10:00,095 [main] TRACE PackageBuilder - read PackageBuilder [_kind=TOP, _containingPackage=TC57CIM, _depth=0, _eaElementID=1451, _objData=UmlObjectData [id=56, uuid={5C322A25-309C-4917-B239-BC81A86E828B}, since=null, name=IEC61968, alias=, stereotype=, visibility=public, txtDescription='Blah (not ending with ".")', htmlDescription='

Blah (not ending with ".")

'], _modelId=2, _selfDependent=false, 2_taggedValues{nsprefix=n14, nsuri=http://wg14/customNamespace}, 4_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1478, uuid={5081A538-2556-474f-88ED-7C7DF4A5AFC6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='duplicate name in same parent package', htmlDescription='

duplicate name in same parent package

'], _containingPackage=IEC61968, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1479, uuid={9D7409F2-ED2C-4db6-8F47-491CE2A1844E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='duplicate name with other parent package', htmlDescription='

duplicate name with other parent package

'], _containingPackage=IEC61968, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1499, uuid={15CB1C37-5F9F-43ea-BD54-22E99CD16F24}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='wrong dependency direction', htmlDescription='

wrong dependency direction

'], _containingPackage=IEC61968, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3075, uuid={4E5B9BC5-C441-4553-80A7-70B7D074D066}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='- extension tags with namespaces', htmlDescription='

- extension tags with namespaces

'], _containingPackage=IEC61968, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=IEC61968, _objData=UmlObjectData [id=158, uuid={B3B5E06E-B00E-4cb6-B697-39D4D8476DC2}, since=null, name=IEC61968, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=1, _dependenciesAsTarget=1, _classes=1, _childPackages=5] +2024-09-08 15:10:00,096 [main] INFO PackageBuilder - processing top package IEC62325 (4) ... +2024-09-08 15:10:00,096 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=IEC62325, _objData=UmlObjectData [id=183, uuid={5F0F9749-799A-479d-8043-53264E198D5A}, since=null, name=IEC62325, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,097 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = TC57CIM::IEC62325->TC57CIM::IEC61968, _objData=UmlObjectData [id=3448, uuid={BEB08626-C0F2-4a9d-860D-F205594F0FE9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,097 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = TC57CIM::IEC62325->TC57CIM::IEC61970, _objData=UmlObjectData [id=3449, uuid={51951675-AE25-4ac7-AA97-9DF3741A7BB9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,098 [main] TRACE PackageBuilder - read PackageBuilder [_kind=TOP, _containingPackage=TC57CIM, _depth=0, _eaElementID=1544, _objData=UmlObjectData [id=82, uuid={7809EE61-C748-4772-9925-330FC1498016}, since=null, name=IEC62325, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=2, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=IEC62325, _objData=UmlObjectData [id=183, uuid={5F0F9749-799A-479d-8043-53264E198D5A}, since=null, name=IEC62325, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=2 +2024-09-08 15:10:00,098 [main] TRACE PackageBuilder - read PackageBuilder [_kind=MODEL, _depth=-1, _eaElementID=1, _objData=UmlObjectData [id=2, uuid={39AA7E64-A03A-4934-AF09-E74943F7E6C0}, since=null, name=TC57CIM, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=2, _selfDependent=false, 2_taggedValues{nsprefix=cim, nsuri=http://cim123}, 1_diagrams=[DiagramBuilder [_containingPackage=TC57CIM, _objData=UmlObjectData [id=1, uuid={7ECA7523-5E2A-40a0-A7B1-BE02958F3D9C}, since=null, name=Main, alias=, stereotype=diagStereotype, oneMoreDiagStereo, visibility=public, txtDescription='This diagram shows all Packages included in this CIM model.', htmlDescription='

This diagram shows all Packages included in this CIM model.

'], _portrait=true, _kind=LOGICAL]], _childPackages=4] +2024-09-08 15:10:00,098 [main] INFO PackageBuilder - processing model package IEC61850Domain (2) ... +2024-09-08 15:10:00,099 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=IEC61850Domain, _objData=UmlObjectData [id=160, uuid={6CF56053-B50F-4cfd-9886-2785DAD0964E}, since=null, name=IEC61850Domain, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,100 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3068, uuid={89AF424B-7761-4043-BDAB-5A10CE7C0549}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Tool should derive from this dependency that "any namespace under WG17 depends on 7-4".', htmlDescription='

Tool should derive from this dependency that "any namespace under WG17 depends on 7-4".

'], _containingPackage=IEC61850Domain, _otherEndName=] +2024-09-08 15:10:00,100 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3069, uuid={BFBF085D-757B-45ee-87C8-AA171DB3EB73}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='7_3 and 7_4 packages: +1. One of (circular) dependencies should be caught as invalid and the search stopped. +2. Both self-dependencies should be also caught as invalid and the search stopped.', htmlDescription='

7_3 and 7_4 packages:

  1. One of (circular) dependencies should be caught as invalid and the search stopped.
  2. Both self-dependencies should be also caught as invalid and the search stopped.
'], _containingPackage=IEC61850Domain, _otherEndName=] +2024-09-08 15:10:00,100 [main] INFO PackageBuilder - processing top package WG10 (1) ... +2024-09-08 15:10:00,101 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=WG10, _objData=UmlObjectData [id=186, uuid={60DE7B56-E18B-4c76-BAE9-F26279C1F965}, since=null, name=WG10, alias=, stereotype=, visibility=public, txtDescription='Sub-packages contained in this IEC61850 model. +UML model of IEC 61850 contains concrete specifications for logical nodes (part 7-4), the whole data type system (part 7-3), and ACSI services (part 7-2), including the meta-model that represents the whole of the standard.', htmlDescription='

Sub-packages contained in this IEC61850 model.

UML model of IEC 61850 contains concrete specifications for logical nodes (part 7-4), the whole data type system (part 7-3), and ACSI services (part 7-2), including the meta-model that represents the whole of the standard.

'], _portrait=true, _kind=PACKAGE] +2024-09-08 15:10:00,101 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=WG10, _objData=UmlObjectData [id=187, uuid={3AD43F3E-BF5F-4d70-B8EB-D0104CA1E17D}, since=null, name=Parts7, alias=, stereotype=, visibility=public, txtDescription='This diagram shows main packages and sub-packages included in this IEC61850-7-x model. +Colours show in which part of the standard the types are originally defined (or deduced from): +- green: IEC 61850-7-2 +- pink: IEC 61850-7-3 +- yellow: IEC 61850-7-4 +Elipses in packages (e.g., CDCs and DomainLNs) indicate that they have more sub-packages, but they are not shown in this diagram.', htmlDescription='

This diagram shows main packages and sub-packages included in this IEC61850-7-x model.

Colours show in which part of the standard the types are originally defined (or deduced from):

- green: IEC 61850-7-2

- pink: IEC 61850-7-3

- yellow: IEC 61850-7-4

Elipses in packages (e.g., CDCs and DomainLNs) indicate that they have more sub-packages, but they are not shown in this diagram.

'], _portrait=true, _kind=PACKAGE] +2024-09-08 15:10:00,101 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=WG10, _objData=UmlObjectData [id=188, uuid={7BD8A88D-424B-4ea2-B24A-F09076F9051B}, since=null, name=DataModelExample, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the most complex example with one concrete subclass for data-related classes of the meta-model, i.e., LNs, CDCs, FCDAs and DAs (classes in colour). On the diagram, we hide all the attributes but those used for the example.', htmlDescription='

This diagram shows the most complex example with one concrete subclass for data-related classes of the meta-model, i.e., LNs, CDCs, FCDAs and DAs (classes in colour). On the diagram, we hide all the attributes but those used for the example.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,102 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1553, uuid={D94F6B33-4624-48cd-AEBC-C0FDE476430F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling notes: +- We have tried to stick to the definition of concepts per Part of IEC61850, by grouping them into corresponding packages. This would allow relatively straight forward generation of IEC word documents directly from this model (this has been successfully done with another UML tool for Part 7, in 2003). For a software, it is certainly possible to think of a better grouping. +- In addition to the objective of documentation generation mentioned above, the design of the model aimed at facilitating initial, skeletal code generation. For that reason, there are many dependency relationships between packages (because UML dependencies are not transitive). If the model is not to be used for code generation, explicit dependencies among sub-packages can be greatly simplified, by replacing them with top-level package dependencies. +- This model has initially been developed from mid-2002 to mid-2004 with Rational Rose CASE tool, then imported into Enterprise Architect CASE tool. Parts of the original version have indeed been successfully used for skeleton code generation (MetaModel, ACSI and DA packages). We cannot guarantee that the present model is absolutely fit for painless code generation, but it should be a good starting point. +- We "order" packages in a bottom-up way, i.e., from the least dependent (most basic) towards the most dependent. In this way, if documentation gets generated, the basic concepts are seen first, then those that use them. However, for presentation purposes, it is probably better to introduce things top-down. +How to browse the model: +- Clicking on any package will automatically open the main diagram of that package. There are many diagrams in the model, and many of them contain hyperlinks to other, related diagrams. Most of the diagram should fit onto an A4 page. +- Domain experts and those who would like to extend the model, will care the most for the content of high level packages (LogicalNodes and CommonDataClasses). +- Implementors will have to start from ACSI package, in particular from its MetaModel sub-package. +Position statement: +- If you find the model complex, please blame the authors of IEC61850, not us :-)', htmlDescription='

Modelling notes:

  • We have tried to stick to the definition of concepts per Part of IEC61850, by grouping them into corresponding packages. This would allow relatively straight forward generation of IEC word documents directly from this model (this has been successfully done with another UML tool for Part 7, in 2003). For a software, it is certainly possible to think of a better grouping.
  • In addition to the objective of documentation generation mentioned above, the design of the model aimed at facilitating initial, skeletal code generation. For that reason, there are many dependency relationships between packages (because UML dependencies are not transitive). If the model is not to be used for code generation, explicit dependencies among sub-packages can be greatly simplified, by replacing them with top-level package dependencies.
  • This model has initially been developed from mid-2002 to mid-2004 with Rational Rose CASE tool, then imported into Enterprise Architect CASE tool. Parts of the original version have indeed been successfully used for skeleton code generation (MetaModel, ACSI and DA packages). We cannot guarantee that the present model is absolutely fit for painless code generation, but it should be a good starting point.
  • We "order" packages in a bottom-up way, i.e., from the least dependent (most basic) towards the most dependent. In this way, if documentation gets generated, the basic concepts are seen first, then those that use them. However, for presentation purposes, it is probably better to introduce things top-down.

How to browse the model:

  • Clicking on any package will automatically open the main diagram of that package. There are many diagrams in the model, and many of them contain hyperlinks to other, related diagrams. Most of the diagram should fit onto an A4 page.
  • Domain experts and those who would like to extend the model, will care the most for the content of high level packages (LogicalNodes and CommonDataClasses).
  • Implementors will have to start from ACSI package, in particular from its MetaModel sub-package.

Position statement:

  • If you find the model complex, please blame the authors of IEC61850, not us :-)
'], _containingPackage=WG10, _otherEndName=] +2024-09-08 15:10:00,103 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1554, uuid={8ECEFF06-BAD2-41e0-B468-9E73B7693BE3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='We describe the meta-model example shown in the bottom-up manner, as follows: +- VISIBLE_STRING255 and FLOAT32 are PrimitiveDAs. In this model, we have explicitly defined primitive types with the prefix 'P_', which can be used as implementation artefacts, and to protect the overall model from any potential implementation language detail. Therefore, VISIBLE_STRING255 and FLOAT32 simply hold an attribute 'val' of the corresponding primitive data type (as would be defined in a particular programming language), and inherit from the meta-model class PrimitiveDA. +- Vector and AnalogueValue are both ComposedDAs. A ComposedDA must contain at least one DA, be it ComposedDA or PrimitiveDA: Vector contains AnalogueValue 'mag', as a ComposedDA, and AnalogueValue contains FLOAT32 'f' as a PrimitiveDA. +- VISIBLE_STRING255_DC, AnalogueValue_MX and Vector_MX_dchg are all FCDAs, i.e., they provide the explicit definition for all the combinations of available functional constraints and triggering options, with DAs. Therefore, each of them simply contains an attribute, 'attr', of the corresponding DA type, either ComposedDA (in the case of AnalogueValue_MX and Vector_MX_dchg) or PrimitiveDA (in the case of VISIBLE_STRING255_DC). +- MV, CMV and WYE are all CDCs. The first two are PrimitiveCDCs and the last one is a ComposedCDC. As CDCs, they must contain one or more FCDAs - all have attribute 'd' of type VISIBLE_STRING255, and MV and CMV have attributes 'mag' and 'cVal', respectively, of types AnalogueValue_MX and Vector_MX_dchg, respectively. A ComposedCDC must additionally contain one or more PrimitiveCDCs - example for WYE is the attribute 'phsA', which is a PrimitiveCDC. +- Finally, MMXU is an LN and must contain one or more CDCs - attribute 'A' is a CDC. +With this meta-model approach, all the complexity of the datatype system is hidden below CDCs, and the essential of the domain is contained in the LNs.', htmlDescription='

We describe the meta-model example shown in the bottom-up manner, as follows:

  • VISIBLE_STRING255 and FLOAT32 are PrimitiveDAs. In this model, we have explicitly defined primitive types with the prefix 'P_', which can be used as implementation artefacts, and to protect the overall model from any potential implementation language detail. Therefore, VISIBLE_STRING255 and FLOAT32 simply hold an attribute 'val' of the corresponding primitive data type (as would be defined in a particular programming language), and inherit from the meta-model class PrimitiveDA.
  • Vector and AnalogueValue are both ComposedDAs. A ComposedDA must contain at least one DA, be it ComposedDA or PrimitiveDA: Vector contains AnalogueValue 'mag', as a ComposedDA, and AnalogueValue contains FLOAT32 'f' as a PrimitiveDA.
  • VISIBLE_STRING255_DC, AnalogueValue_MX and Vector_MX_dchg are all FCDAs, i.e., they provide the explicit definition for all the combinations of available functional constraints and triggering options, with DAs. Therefore, each of them simply contains an attribute, 'attr', of the corresponding DA type, either ComposedDA (in the case of AnalogueValue_MX and Vector_MX_dchg) or PrimitiveDA (in the case of VISIBLE_STRING255_DC).
  • MV, CMV and WYE are all CDCs. The first two are PrimitiveCDCs and the last one is a ComposedCDC. As CDCs, they must contain one or more FCDAs - all have attribute 'd' of type VISIBLE_STRING255, and MV and CMV have attributes 'mag' and 'cVal', respectively, of types AnalogueValue_MX and Vector_MX_dchg, respectively. A ComposedCDC must additionally contain one or more PrimitiveCDCs - example for WYE is the attribute 'phsA', which is a PrimitiveCDC.
  • Finally, MMXU is an LN and must contain one or more CDCs - attribute 'A' is a CDC.

With this meta-model approach, all the complexity of the datatype system is hidden below CDCs, and the essential of the domain is contained in the LNs.

'], _containingPackage=WG10, _otherEndName=] +2024-09-08 15:10:00,103 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1556, uuid={1FE867FD-79B7-464f-8052-435DD1687820}, since=null, name=Parts7 : DataModelExample, alias=, stereotype=, visibility=public, txtDescription='Parts7 : DataModelExample', htmlDescription='

Parts7 : DataModelExample

'], _containingPackage=WG10, _otherEndName=] +2024-09-08 15:10:00,104 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1557, uuid={256FF05A-27ED-4887-B5FE-EDF4614593EB}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='mag', htmlDescription='

mag

'], _containingPackage=WG10, _otherEndName=] +2024-09-08 15:10:00,104 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1558, uuid={26E40582-F186-466d-86B4-F8DD7DBC54F0}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='Part 7-2 (ACSI, meta-model) Parts 7-4, 7-3 (concrete LNs, CDCs, DAs)', htmlDescription='

Part 7-2 (ACSI, meta-model) Parts 7-4, 7-3 (concrete LNs, CDCs, DAs)

'], _containingPackage=WG10, _otherEndName=] +2024-09-08 15:10:00,104 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1559, uuid={2D4E4EBF-44BB-4c48-894D-39CD41A54738}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='...', htmlDescription='

...

'], _containingPackage=WG10, _otherEndName=] +2024-09-08 15:10:00,104 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1560, uuid={3BAA5323-14E0-439f-84A0-1B5952B05C8F}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='A', htmlDescription='

A

'], _containingPackage=WG10, _otherEndName=] +2024-09-08 15:10:00,105 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1561, uuid={3ECBDF79-B2DB-41b1-91F7-ECA45C2F64EB}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='attr', htmlDescription='

attr

'], _containingPackage=WG10, _otherEndName=] +2024-09-08 15:10:00,105 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1562, uuid={4322E030-F287-4017-9D95-2A8AF934BE65}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='attr', htmlDescription='

attr

'], _containingPackage=WG10, _otherEndName=] +2024-09-08 15:10:00,105 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1563, uuid={4A5F30B1-B039-4ef0-BDD6-3F7630BB47ED}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='cVal', htmlDescription='

cVal

'], _containingPackage=WG10, _otherEndName=] +2024-09-08 15:10:00,105 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1564, uuid={581893B5-516E-4999-B0A4-0C8538B87209}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='...', htmlDescription='

...

'], _containingPackage=WG10, _otherEndName=] +2024-09-08 15:10:00,105 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1565, uuid={5FED3E4A-CE83-456a-814C-A684836C1338}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='d', htmlDescription='

d

'], _containingPackage=WG10, _otherEndName=] +2024-09-08 15:10:00,105 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1566, uuid={884347DF-162A-4b48-A9A5-9BBF0523A2E9}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='phsA', htmlDescription='

phsA

'], _containingPackage=WG10, _otherEndName=] +2024-09-08 15:10:00,105 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1567, uuid={952F1499-B3A1-4f4d-A950-5C65655720DD}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='attr', htmlDescription='

attr

'], _containingPackage=WG10, _otherEndName=] +2024-09-08 15:10:00,105 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1568, uuid={9FAF5191-B3F7-48ad-862E-9462DA86C059}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='f', htmlDescription='

f

'], _containingPackage=WG10, _otherEndName=] +2024-09-08 15:10:00,106 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1569, uuid={A48C44FE-7EB4-4639-86A3-953DBE7DDC26}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='mag', htmlDescription='

mag

'], _containingPackage=WG10, _otherEndName=] +2024-09-08 15:10:00,106 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1570, uuid={BC2B22A4-E338-426a-AA6B-13C8C105619C}, since=null, name=IEC61850 : Parts7, alias=, stereotype=, visibility=public, txtDescription='IEC61850 : Parts7', htmlDescription='

IEC61850 : Parts7

'], _containingPackage=WG10, _otherEndName=] +2024-09-08 15:10:00,106 [main] TRACE ClassBuilder - Class WG10UMLVersion (0 in package WG10) +2024-09-08 15:10:00,106 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=WG10::WG10UMLVersion, _objData=UmlObjectData [id=3318, uuid={8E43EF7F-9119-4973-84F0-FE4DF5855943}, since=null, name=version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=IEC61850UML02v07, _eaTypeId=1665, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,106 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=WG10::WG10UMLVersion, _objData=UmlObjectData [id=3319, uuid={8DDEC565-E0D2-4614-9615-D066B409C1D6}, since=null, name=date, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=2011-07-02, _eaTypeId=1665, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,106 [main] TRACE ClassBuilder - read from EA: WG10::WG10UMLVersion +2024-09-08 15:10:00,107 [main] INFO PackageBuilder - processing package NewIEC61850_7_2 (1) ... +2024-09-08 15:10:00,107 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=NewIEC61850_7_2, _objData=UmlObjectData [id=189, uuid={FDB3BD59-D66E-4646-A4E7-B08D4F787BFD}, since=null, name=NewIEC61850_7_2, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=PACKAGE] +2024-09-08 15:10:00,107 [main] INFO PackageBuilder - processing package GenericModel (0) ... +2024-09-08 15:10:00,108 [main] ERROR EaTables - [+++ EA ordering problem for 2 diagram(s) in GenericModel (manually move back/forth a diagram to initiate EA internal ordering update!): +, +++ diagram GenericModel: pos = 0 +, +++ diagram GenericModelTypes: pos = 0 DUPLICATE +] +2024-09-08 15:10:00,108 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=GenericModel, _objData=UmlObjectData [id=190, uuid={741656D9-DFE5-45fb-A169-AC974992B5BE}, since=null, name=GenericModel, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,108 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=GenericModel, _objData=UmlObjectData [id=191, uuid={2A0F8CC2-20D8-47e7-AA5D-1CEE6D0192D2}, since=null, name=GenericModelTypes, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,110 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1573, uuid={E96EFCB6-7CB3-4a02-B716-C76F98A92BF8}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='All from 6.2 CommonACSI types, except for ARRAY and the 3 moved to atomic. +Stereotype: <>', htmlDescription='

All from 6.2 CommonACSI types, except for ARRAY and the 3 moved to atomic.

Stereotype: <<compact>>

'], _containingPackage=GenericModel, _otherEndName=] +2024-09-08 15:10:00,112 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1574, uuid={E36DC6AA-4511-4f84-A9DD-E9B6D5994E58}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Agreement to rename some primitive types in 7-2, to align with SCL names, as follows: +- use actual 7-2 name as alias in UML class (printed as title) +- use SCL type name as class name', htmlDescription='

Agreement to rename some primitive types in 7-2, to align with SCL names, as follows:

- use actual 7-2 name as alias in UML class (printed as title)

- use SCL type name as class name

'], _containingPackage=GenericModel, _otherEndName=] +2024-09-08 15:10:00,112 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1575, uuid={D47037FC-BEA0-47eb-B37B-6E74F8B3D551}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Note: Review classification after addressing 7-2 core type system. +GenBaseType is meant to be used for "pure" primitives, GenCommonACSIType is for all the others.', htmlDescription='

Note: Review classification after addressing 7-2 core type system.

GenBaseType is meant to be used for "pure" primitives, GenCommonACSIType is for all the others.

'], _containingPackage=GenericModel, _otherEndName=] +2024-09-08 15:10:00,112 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1576, uuid={BCAC7CCF-A942-48a4-B258-771D38A021F9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: We'll need to move PresenceConditions from 7-3 into 7-2, to use them in 7-2 as well.', htmlDescription='

TODO: We'll need to move PresenceConditions from 7-3 into 7-2, to use them in 7-2 as well.

'], _containingPackage=GenericModel, _otherEndName=] +2024-09-08 15:10:00,112 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1577, uuid={A60B825D-7A9A-494d-BA42-33219F1893C4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Change "FileName" with "FileRef" wherever it appears. +Do not include FileDirectory.', htmlDescription='

TODO: Change "FileName" with "FileRef" wherever it appears.

Do not include FileDirectory.

'], _containingPackage=GenericModel, _otherEndName=] +2024-09-08 15:10:00,112 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1578, uuid={8528A6C3-CA81-4578-B54F-7A7DE355C9F9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- Andre to see how to express: At least one of FCDMember or FCDAMember. +- Tanja to add DSRef as ObjectReference, similar to existing meta-model. +- Tanja to trace associations similar to existing meta-model, they're ok.', htmlDescription='

TODO:

  • Andre to see how to express: At least one of FCDMember or FCDAMember.
  • Tanja to add DSRef as ObjectReference, similar to existing meta-model.
  • Tanja to trace associations similar to existing meta-model, they're ok.
'], _containingPackage=GenericModel, _otherEndName=] +2024-09-08 15:10:00,113 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1579, uuid={7C7CE85D-2B99-46ed-82E5-2B2F36BDB3B6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Decision: Start with packages that will reflect Clause 6 through Clause 23 (Files).', htmlDescription='

Decision: Start with packages that will reflect Clause 6 through Clause 23 (Files).

'], _containingPackage=GenericModel, _otherEndName=] +2024-09-08 15:10:00,113 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1580, uuid={65AFCFF7-8512-4e11-BCFA-DBF2FD664BE5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Deal with GenClient.', htmlDescription='

TODO: Deal with GenClient.

'], _containingPackage=GenericModel, _otherEndName=] +2024-09-08 15:10:00,113 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1581, uuid={578E5DF8-ED23-4bfe-9A4C-626AA2F125CE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='All from 6.1 Basic types + ObjectReference, ObjectName and ServiceError. +Plus other non-packed/coded types. +Steretypes: <>, <>, <>', htmlDescription='

All from 6.1 Basic types + ObjectReference, ObjectName and ServiceError.

Plus other non-packed/coded types.

Steretypes: <<atomic>>, <<enumeration>>, <<enumeration,coded>>

'], _containingPackage=GenericModel, _otherEndName=] +2024-09-08 15:10:00,113 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1582, uuid={574B78D4-385A-44c8-9038-ACC8AA6D4343}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- Ensure RCB.DatSet etc. are reflected as assoc. end names in the generic model. +OPEN QUESTION: +- Case of RCB.DatSet that should be of type ObjectReference, but in the generic model it is linked to DataSet.', htmlDescription='

TODO:

  • Ensure RCB.DatSet etc. are reflected as assoc. end names in the generic model.

OPEN QUESTION:

  • Case of RCB.DatSet that should be of type ObjectReference, but in the generic model it is linked to DataSet.
'], _containingPackage=GenericModel, _otherEndName=] +2024-09-08 15:10:00,113 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1583, uuid={3E98F8C3-5801-4840-9C6D-489098AD95CC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: We've added "Gen" to types where we already have an existing one - to make it less error-prone to refactor. E.g., GenFCD will in the end be called FCD.', htmlDescription='

Modelling note: We've added "Gen" to types where we already have an existing one - to make it less error-prone to refactor. E.g., GenFCD will in the end be called FCD.

'], _containingPackage=GenericModel, _otherEndName=] +2024-09-08 15:10:00,113 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1584, uuid={3D07741F-191D-47a1-8F4D-01CADA1023F3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- Tanja to add GenAuthenticationParameter type (similar to Authentication in meta-model).', htmlDescription='

TODO:

  • Tanja to add GenAuthenticationParameter type (similar to Authentication in meta-model).
'], _containingPackage=GenericModel, _otherEndName=] +2024-09-08 15:10:00,113 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=false, _objData=UmlObjectData [id=1618, uuid={1DA81ADB-7526-4988-B94A-615589F034CF}, since=null, name=, alias=, stereotype=invariant, visibility=public, txtDescription='xor', htmlDescription='

xor

'], _containingPackage=GenericModel, _otherEndName=] +2024-09-08 15:10:00,113 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=false, _objData=UmlObjectData [id=1619, uuid={46AE4BB9-5995-47bf-B7A2-3500BDA63832}, since=null, name=, alias=, stereotype=invariant, visibility=public, txtDescription='xor', htmlDescription='

xor

'], _containingPackage=GenericModel, _otherEndName=] +2024-09-08 15:10:00,114 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=false, _objData=UmlObjectData [id=1620, uuid={5D9BD1EA-00B1-4644-A7F4-6F0FA14A9F8B}, since=null, name=, alias=, stereotype=invariant, visibility=public, txtDescription='xor', htmlDescription='

xor

'], _containingPackage=GenericModel, _otherEndName=] +2024-09-08 15:10:00,114 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=false, _objData=UmlObjectData [id=1621, uuid={A15F46E8-FDE8-40f1-8D27-9BF33615BDA5}, since=null, name=, alias=, stereotype=invariant, visibility=public, txtDescription='xor', htmlDescription='

xor

'], _containingPackage=GenericModel, _otherEndName=] +2024-09-08 15:10:00,114 [main] TRACE ClassBuilder - Class CommAddress (1 in package GenericModel) +2024-09-08 15:10:00,114 [main] TRACE ClassBuilder - read from EA: GenericModel::CommAddress +2024-09-08 15:10:00,114 [main] TRACE ClassBuilder - Class GenAssociationID (2 in package GenericModel) +2024-09-08 15:10:00,114 [main] TRACE ClassBuilder - read from EA: GenericModel::GenAssociationID +2024-09-08 15:10:00,114 [main] TRACE ClassBuilder - Class GenFC (3 in package GenericModel) +2024-09-08 15:10:00,115 [main] TRACE ClassBuilder - read from EA: GenericModel::GenFC +2024-09-08 15:10:00,115 [main] TRACE ClassBuilder - Class GenPresenceConditions (4 in package GenericModel) +2024-09-08 15:10:00,115 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2173, uuid={841EA8A2-BC21-499e-AE58-48F0BEB2CA88}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=GenPresenceConditions, _otherEndName=?] +2024-09-08 15:10:00,115 [main] TRACE ClassBuilder - read from EA: GenericModel::GenPresenceConditions +2024-09-08 15:10:00,115 [main] TRACE ClassBuilder - Class GenTimeStamp (5 in package GenericModel) +2024-09-08 15:10:00,115 [main] TRACE ClassBuilder - read from EA: GenericModel::GenTimeStamp +2024-09-08 15:10:00,115 [main] TRACE ClassBuilder - Class AccessPoint (6 in package GenericModel) +2024-09-08 15:10:00,115 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::AccessPoint, _objData=UmlObjectData [id=3320, uuid={40D9CE14-376C-43eb-9583-238284A8F3CC}, since=null, name=Address, alias=, stereotype=, visibility=public, txtDescription='Address is optional, e.g. in case of GOOSE subscriber where physical link exists (and no comm link).', htmlDescription='

Address is optional, e.g. in case of GOOSE subscriber where physical link exists (and no comm link).

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=1586, _eaTypeName=CommAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,116 [main] DEBUG AssociationEndBuilder - Updated target type to AccessPoint +2024-09-08 15:10:00,116 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=518, uuid=80bbc98a-7b14-32ed-857c-7ea140eba257, since=null, name=IED, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=519, uuid=af3ad1a5-482a-35af-9cc0-9d827b1e93ad, since=null, name=AP, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=AccessPoint, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3400, uuid={DAE49C76-967F-474e-89A1-F794712D37D6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,116 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=518, uuid=80bbc98a-7b14-32ed-857c-7ea140eba257, since=null, name=IED, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=519, uuid=af3ad1a5-482a-35af-9cc0-9d827b1e93ad, since=null, name=AP, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=AccessPoint, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3400, uuid={DAE49C76-967F-474e-89A1-F794712D37D6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::AccessPoint +2024-09-08 15:10:00,116 [main] TRACE ClassBuilder - read from EA: GenericModel::AccessPoint +2024-09-08 15:10:00,116 [main] TRACE ClassBuilder - Class FileSystem (7 in package GenericModel) +2024-09-08 15:10:00,116 [main] DEBUG AssociationEndBuilder - Updated target type to FileSystem +2024-09-08 15:10:00,116 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=522, uuid=5c265ff5-ecbc-320f-84a3-73adfc3724de, since=null, name=Server, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=523, uuid=ac3325c9-54ef-30e7-a39e-24d3911757c6, since=null, name=FileSystem, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=FileSystem, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3398, uuid={5982398B-EDCC-45cd-A1AA-C9F8D62D2A4A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,116 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=522, uuid=5c265ff5-ecbc-320f-84a3-73adfc3724de, since=null, name=Server, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=523, uuid=ac3325c9-54ef-30e7-a39e-24d3911757c6, since=null, name=FileSystem, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=FileSystem, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3398, uuid={5982398B-EDCC-45cd-A1AA-C9F8D62D2A4A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::FileSystem +2024-09-08 15:10:00,116 [main] DEBUG AssociationEndBuilder - Updated source type to FileSystem +2024-09-08 15:10:00,117 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=525, uuid=158bf549-2e71-324e-b38d-7e4cd827cb19, since=null, name=FileSystem, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=FileSystem, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=526, uuid=13a4997f-10e4-3d32-a1f5-52a90ed16321, since=null, name=Files, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3399, uuid={207F6219-301F-4e30-BD21-E099498AD645}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,117 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=525, uuid=158bf549-2e71-324e-b38d-7e4cd827cb19, since=null, name=FileSystem, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=FileSystem, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=526, uuid=13a4997f-10e4-3d32-a1f5-52a90ed16321, since=null, name=Files, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3399, uuid={207F6219-301F-4e30-BD21-E099498AD645}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::FileSystem +2024-09-08 15:10:00,117 [main] TRACE ClassBuilder - read from EA: GenericModel::FileSystem +2024-09-08 15:10:00,117 [main] TRACE ClassBuilder - Class GenAtomicType (8 in package GenericModel) +2024-09-08 15:10:00,117 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2177, uuid={08379421-292F-4878-A9D7-941924C93BAA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=GenAtomicType, _otherEndName=?] +2024-09-08 15:10:00,117 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = null->GenericModel::GenAtomicType, _objData=UmlObjectData [id=3375, uuid={7804C7F3-3958-4464-9E4D-6125308CB9FF}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,117 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = null->GenericModel::GenAtomicType, _objData=UmlObjectData [id=3393, uuid={CC81D6A1-8E39-4a90-A7C3-B7DF34975EF8}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,117 [main] TRACE ClassBuilder - read from EA: GenericModel::GenAtomicType +2024-09-08 15:10:00,117 [main] TRACE ClassBuilder - Class GenBOOLEAN (9 in package GenericModel) +2024-09-08 15:10:00,117 [main] TRACE ClassBuilder - read from EA: GenericModel::GenBOOLEAN +2024-09-08 15:10:00,117 [main] TRACE ClassBuilder - Class GenCommonDataClass (10 in package GenericModel) +2024-09-08 15:10:00,118 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenCommonDataClass, _objData=UmlObjectData [id=3321, uuid={556405B0-426B-4a24-8F13-B0569BCCB145}, since=null, name=CDC-ID, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,118 [main] DEBUG AssociationEndBuilder - Updated source type to GenCommonDataClass +2024-09-08 15:10:00,118 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=535, uuid=91bf0cdf-215d-3292-9f6b-9c233a225df7, since=null, name=CommonDataClass, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenCommonDataClass, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=536, uuid=8710bb08-2a02-358b-9586-eb781cdcd818, since=null, name=DataAttribute, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3396, uuid={F8919942-6ADD-48fb-BBC0-6A23A34F0D8D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,118 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=535, uuid=91bf0cdf-215d-3292-9f6b-9c233a225df7, since=null, name=CommonDataClass, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenCommonDataClass, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=536, uuid=8710bb08-2a02-358b-9586-eb781cdcd818, since=null, name=DataAttribute, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3396, uuid={F8919942-6ADD-48fb-BBC0-6A23A34F0D8D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenCommonDataClass +2024-09-08 15:10:00,118 [main] DEBUG AssociationEndBuilder - Updated source type to GenCommonDataClass +2024-09-08 15:10:00,118 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=538, uuid=720b4f72-8ffd-31c3-aae1-0bf72487de2b, since=null, name=CommonDataClass, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenCommonDataClass, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=539, uuid=3225b7f5-1129-3f07-a8a8-f676c210cb89, since=null, name=SubDataObject, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3397, uuid={4B987438-5F99-4fad-895C-8F6087C8705B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,118 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=538, uuid=720b4f72-8ffd-31c3-aae1-0bf72487de2b, since=null, name=CommonDataClass, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenCommonDataClass, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=539, uuid=3225b7f5-1129-3f07-a8a8-f676c210cb89, since=null, name=SubDataObject, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3397, uuid={4B987438-5F99-4fad-895C-8F6087C8705B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenCommonDataClass +2024-09-08 15:10:00,118 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = null->GenericModel::GenCommonDataClass, _objData=UmlObjectData [id=3372, uuid={959E91AF-330B-466d-9B20-63A1C6A648DF}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,119 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = null->GenericModel::GenCommonDataClass, _objData=UmlObjectData [id=3390, uuid={3D585BC8-7580-4967-AA20-7FE4307815A5}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,119 [main] TRACE ClassBuilder - read from EA: GenericModel::GenCommonDataClass +2024-09-08 15:10:00,119 [main] TRACE ClassBuilder - Class GenCompactType (11 in package GenericModel) +2024-09-08 15:10:00,119 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2172, uuid={CC9479A4-9DD7-4f7c-A2DD-42B53F5DA3AA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=GenCompactType, _otherEndName=?] +2024-09-08 15:10:00,119 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = null->GenericModel::GenCompactType, _objData=UmlObjectData [id=3374, uuid={8BEF7BE6-3453-4f7b-B1A4-1A0F6CD943B2}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,119 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = null->GenericModel::GenCompactType, _objData=UmlObjectData [id=3394, uuid={79A7DA9F-D786-4132-9D2F-6D10B1E0DD60}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,119 [main] TRACE ClassBuilder - read from EA: GenericModel::GenCompactType +2024-09-08 15:10:00,119 [main] TRACE ClassBuilder - Class GenConstructedType (12 in package GenericModel) +2024-09-08 15:10:00,119 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenConstructedType, _objData=UmlObjectData [id=3322, uuid={3672BC56-9890-4355-861B-45B1B841A9A8}, since=null, name=DA-ID, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,120 [main] DEBUG AssociationEndBuilder - Updated source type to GenConstructedType +2024-09-08 15:10:00,120 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=549, uuid=8da8b7fc-8347-3c95-b7ef-6ec97c09bb62, since=null, name=DataAttribute, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenConstructedType, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=550, uuid=88c87443-8ee9-3acb-8e3a-15b428a73cb3, since=null, name=SubDataAttribute, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3395, uuid={4953EDB6-E8A3-44b8-BA29-DD3366F6B3F1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,120 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=549, uuid=8da8b7fc-8347-3c95-b7ef-6ec97c09bb62, since=null, name=DataAttribute, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenConstructedType, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=550, uuid=88c87443-8ee9-3acb-8e3a-15b428a73cb3, since=null, name=SubDataAttribute, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3395, uuid={4953EDB6-E8A3-44b8-BA29-DD3366F6B3F1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenConstructedType +2024-09-08 15:10:00,120 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = null->GenericModel::GenConstructedType, _objData=UmlObjectData [id=3373, uuid={C583C2FA-340A-40e7-B9E0-E3B2C0F214E4}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,121 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = null->GenericModel::GenConstructedType, _objData=UmlObjectData [id=3392, uuid={E394C333-7434-47f4-8C30-3E48F8FF98FF}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,121 [main] TRACE ClassBuilder - read from EA: GenericModel::GenConstructedType +2024-09-08 15:10:00,121 [main] TRACE ClassBuilder - Class GenDataAttribute (13 in package GenericModel) +2024-09-08 15:10:00,121 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenDataAttribute, _objData=UmlObjectData [id=3323, uuid={FD001E99-4132-4975-B26D-2B9F17395F66}, since=null, name=DAName, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,121 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenDataAttribute, _objData=UmlObjectData [id=3324, uuid={34285ABB-FB3B-404a-ACC4-4709533FA4BF}, since=null, name=DARef, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1607, _eaTypeName=GenObjRef, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,121 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenDataAttribute, _objData=UmlObjectData [id=3325, uuid={6E718A2A-A12C-4100-80D3-84B5550862E0}, since=null, name=FC, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1597, _eaTypeName=GenFC, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,121 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenDataAttribute, _objData=UmlObjectData [id=3326, uuid={4F3B8CEE-ECAE-43cc-ACC9-68F61865042C}, since=null, name=TrgOp, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1615, _eaTypeName=GenTriggerConditions, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,121 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenDataAttribute, _objData=UmlObjectData [id=3327, uuid={807AE164-D149-4d18-9790-FCE87600CD9E}, since=null, name=Presence, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1609, _eaTypeName=GenPresenceConditions, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,121 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenDataAttribute, _objData=UmlObjectData [id=3328, uuid={B8650C5E-BC73-4968-B86C-C84775721C80}, since=null, name=Index, alias=, stereotype=, visibility=public, txtDescription='Index of this data attribute in case it is member of an array.', htmlDescription='

Index of this data attribute in case it is member of an array.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1602, _eaTypeName=GenINT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,122 [main] DEBUG AssociationEndBuilder - Updated target type to GenDataAttribute +2024-09-08 15:10:00,122 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=561, uuid=0283bad7-01c9-3c74-859a-bc73c4a20580, since=null, name=FCDA, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=562, uuid=9bb47694-c8c9-3c6b-8e46-d36d39c9d9e9, since=null, name=DataAttribute, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataAttribute, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3391, uuid={F5615202-FD44-43cf-A5FB-ACEEE58CA690}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,122 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=561, uuid=0283bad7-01c9-3c74-859a-bc73c4a20580, since=null, name=FCDA, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=562, uuid=9bb47694-c8c9-3c6b-8e46-d36d39c9d9e9, since=null, name=DataAttribute, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataAttribute, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3391, uuid={F5615202-FD44-43cf-A5FB-ACEEE58CA690}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenDataAttribute +2024-09-08 15:10:00,122 [main] DEBUG AssociationEndBuilder - Updated target type to GenDataAttribute +2024-09-08 15:10:00,122 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=535, uuid=91bf0cdf-215d-3292-9f6b-9c233a225df7, since=null, name=CommonDataClass, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenCommonDataClass, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=536, uuid=8710bb08-2a02-358b-9586-eb781cdcd818, since=null, name=DataAttribute, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataAttribute, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3396, uuid={F8919942-6ADD-48fb-BBC0-6A23A34F0D8D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenDataAttribute +2024-09-08 15:10:00,122 [main] DEBUG ClassBuilder - Updated source of class dependency DependencyBuilder [_kind=CLASS, qName = GenericModel::GenDataAttribute->GenericModel::GenConstructedType, _objData=UmlObjectData [id=3392, uuid={E394C333-7434-47f4-8C30-3E48F8FF98FF}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,122 [main] DEBUG ClassBuilder - Updated source of class dependency DependencyBuilder [_kind=CLASS, qName = GenericModel::GenDataAttribute->GenericModel::GenAtomicType, _objData=UmlObjectData [id=3393, uuid={CC81D6A1-8E39-4a90-A7C3-B7DF34975EF8}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,122 [main] DEBUG ClassBuilder - Updated source of class dependency DependencyBuilder [_kind=CLASS, qName = GenericModel::GenDataAttribute->GenericModel::GenCompactType, _objData=UmlObjectData [id=3394, uuid={79A7DA9F-D786-4132-9D2F-6D10B1E0DD60}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,122 [main] TRACE ClassBuilder - read from EA: GenericModel::GenDataAttribute +2024-09-08 15:10:00,122 [main] TRACE ClassBuilder - Class GenDataObject (14 in package GenericModel) +2024-09-08 15:10:00,122 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenDataObject, _objData=UmlObjectData [id=3329, uuid={493B8A67-86FF-4718-BA8F-D78707C1FD65}, since=null, name=DOName, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,122 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenDataObject, _objData=UmlObjectData [id=3330, uuid={B926F4CF-F07E-4264-B8E0-B1E7B6A83C0C}, since=null, name=DORef, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1607, _eaTypeName=GenObjRef, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,122 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenDataObject, _objData=UmlObjectData [id=3331, uuid={0100601D-CE5C-477e-9468-C76C14D215E9}, since=null, name=Transient, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1590, _eaTypeName=GenBOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,122 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenDataObject, _objData=UmlObjectData [id=3332, uuid={32D55A3C-F89A-4a1b-B987-40A0A56F35F7}, since=null, name=Presence, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1609, _eaTypeName=GenPresenceConditions, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,123 [main] DEBUG AssociationEndBuilder - Updated target type to GenDataObject +2024-09-08 15:10:00,123 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=569, uuid=96984ad5-0058-3f92-8de1-1b9d9abb7efd, since=null, name=LogicalNode, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=570, uuid=29c429cd-a5a2-375a-bb2f-bcda005a00b6, since=null, name=DataObject, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataObject, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3388, uuid={E7750FB2-2AAD-43fb-B285-DB6600EAB0EB}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,123 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=569, uuid=96984ad5-0058-3f92-8de1-1b9d9abb7efd, since=null, name=LogicalNode, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=570, uuid=29c429cd-a5a2-375a-bb2f-bcda005a00b6, since=null, name=DataObject, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataObject, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3388, uuid={E7750FB2-2AAD-43fb-B285-DB6600EAB0EB}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenDataObject +2024-09-08 15:10:00,123 [main] DEBUG AssociationEndBuilder - Updated target type to GenDataObject +2024-09-08 15:10:00,123 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=572, uuid=bb00dad9-2c30-3ebc-b229-204a8ddb766a, since=null, name=FCD, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=573, uuid=49609e32-471e-3791-82a5-0a36afa7137d, since=null, name=DataObject, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataObject, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3389, uuid={78EB6F05-C9FD-4e65-85A2-6AF87F8A18C4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,123 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=572, uuid=bb00dad9-2c30-3ebc-b229-204a8ddb766a, since=null, name=FCD, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=573, uuid=49609e32-471e-3791-82a5-0a36afa7137d, since=null, name=DataObject, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataObject, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3389, uuid={78EB6F05-C9FD-4e65-85A2-6AF87F8A18C4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenDataObject +2024-09-08 15:10:00,123 [main] DEBUG ClassBuilder - Updated source of class dependency DependencyBuilder [_kind=CLASS, qName = GenericModel::GenDataObject->GenericModel::GenCommonDataClass, _objData=UmlObjectData [id=3390, uuid={3D585BC8-7580-4967-AA20-7FE4307815A5}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,123 [main] TRACE ClassBuilder - read from EA: GenericModel::GenDataObject +2024-09-08 15:10:00,124 [main] TRACE ClassBuilder - Class GenDataSet (15 in package GenericModel) +2024-09-08 15:10:00,124 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenDataSet, _objData=UmlObjectData [id=3333, uuid={17678D76-CE06-4c20-80A5-7682C8099F48}, since=null, name=DSName, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,124 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2175, uuid={4ADC5A0E-73C6-4f94-933A-7BD93D4E55E9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=GenDataSet, _otherEndName=?] +2024-09-08 15:10:00,124 [main] DEBUG AssociationEndBuilder - Updated source type to GenDataSet +2024-09-08 15:10:00,125 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=578, uuid=09587696-3043-308e-a75d-131ab811c497, since=null, name=DataSet, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataSet, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=579, uuid=475e6c6d-6978-3182-aded-86ac1f2bb2e1, since=null, name=FCDMember, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3386, uuid={D623819D-C786-49de-9F8E-98626B2B744B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,125 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=578, uuid=09587696-3043-308e-a75d-131ab811c497, since=null, name=DataSet, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataSet, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=579, uuid=475e6c6d-6978-3182-aded-86ac1f2bb2e1, since=null, name=FCDMember, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3386, uuid={D623819D-C786-49de-9F8E-98626B2B744B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenDataSet +2024-09-08 15:10:00,125 [main] DEBUG AssociationEndBuilder - Updated source type to GenDataSet +2024-09-08 15:10:00,125 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=581, uuid=cdcafc61-7ebc-397c-8f40-c6a7d59a7b76, since=null, name=DataSet, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataSet, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=582, uuid=61df83a8-7948-3eab-83fe-e100cb412dfc, since=null, name=FCDAMember, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3387, uuid={3ABF489F-5EB8-40e8-9A9E-3506943CEB22}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,125 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=581, uuid=cdcafc61-7ebc-397c-8f40-c6a7d59a7b76, since=null, name=DataSet, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataSet, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=582, uuid=61df83a8-7948-3eab-83fe-e100cb412dfc, since=null, name=FCDAMember, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3387, uuid={3ABF489F-5EB8-40e8-9A9E-3506943CEB22}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenDataSet +2024-09-08 15:10:00,125 [main] TRACE ClassBuilder - read from EA: GenericModel::GenDataSet +2024-09-08 15:10:00,125 [main] TRACE ClassBuilder - Class GenFCD (16 in package GenericModel) +2024-09-08 15:10:00,125 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenFCD, _objData=UmlObjectData [id=3334, uuid={B8189F42-4859-4645-8DB8-09B9081EF712}, since=null, name=FC, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1597, _eaTypeName=GenFC, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,126 [main] DEBUG AssociationEndBuilder - Updated source type to GenFCD +2024-09-08 15:10:00,126 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=586, uuid=4091962f-2a68-3a45-b148-a6600433babf, since=null, name=FCD, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenFCD, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=587, uuid=b6c8689e-5c4b-309d-9d9c-3575a5963f92, since=null, name=SubDataObject, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3385, uuid={7CDEE923-AC2B-4918-9C4B-19EDE68B3746}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,126 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=586, uuid=4091962f-2a68-3a45-b148-a6600433babf, since=null, name=FCD, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenFCD, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=587, uuid=b6c8689e-5c4b-309d-9d9c-3575a5963f92, since=null, name=SubDataObject, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3385, uuid={7CDEE923-AC2B-4918-9C4B-19EDE68B3746}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenFCD +2024-09-08 15:10:00,126 [main] DEBUG AssociationEndBuilder - Updated target type to GenFCD +2024-09-08 15:10:00,126 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=578, uuid=09587696-3043-308e-a75d-131ab811c497, since=null, name=DataSet, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataSet, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=579, uuid=475e6c6d-6978-3182-aded-86ac1f2bb2e1, since=null, name=FCDMember, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenFCD, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3386, uuid={D623819D-C786-49de-9F8E-98626B2B744B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenFCD +2024-09-08 15:10:00,126 [main] DEBUG AssociationEndBuilder - Updated source type to GenFCD +2024-09-08 15:10:00,126 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=572, uuid=bb00dad9-2c30-3ebc-b229-204a8ddb766a, since=null, name=FCD, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenFCD, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=573, uuid=49609e32-471e-3791-82a5-0a36afa7137d, since=null, name=DataObject, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataObject, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3389, uuid={78EB6F05-C9FD-4e65-85A2-6AF87F8A18C4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenFCD +2024-09-08 15:10:00,126 [main] TRACE ClassBuilder - read from EA: GenericModel::GenFCD +2024-09-08 15:10:00,126 [main] TRACE ClassBuilder - Class GenFCDA (17 in package GenericModel) +2024-09-08 15:10:00,128 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenFCDA, _objData=UmlObjectData [id=3335, uuid={EA599362-A0A3-4d27-A9F4-915F9082C9B6}, since=null, name=FC, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1597, _eaTypeName=GenFC, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,128 [main] DEBUG AssociationEndBuilder - Updated source type to GenFCDA +2024-09-08 15:10:00,128 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=592, uuid=bb9175b9-bb3f-3d15-aa6a-130c512891ca, since=null, name=FCDA, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenFCDA, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=593, uuid=e1ea2ad5-2229-3293-a9e5-50442f8c10a7, since=null, name=SubDataAttribute, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3384, uuid={0C3230CE-0D7F-4853-B330-F6792DD4AE2F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,129 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=592, uuid=bb9175b9-bb3f-3d15-aa6a-130c512891ca, since=null, name=FCDA, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenFCDA, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=593, uuid=e1ea2ad5-2229-3293-a9e5-50442f8c10a7, since=null, name=SubDataAttribute, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3384, uuid={0C3230CE-0D7F-4853-B330-F6792DD4AE2F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenFCDA +2024-09-08 15:10:00,129 [main] DEBUG AssociationEndBuilder - Updated target type to GenFCDA +2024-09-08 15:10:00,129 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=581, uuid=cdcafc61-7ebc-397c-8f40-c6a7d59a7b76, since=null, name=DataSet, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataSet, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=582, uuid=61df83a8-7948-3eab-83fe-e100cb412dfc, since=null, name=FCDAMember, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenFCDA, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3387, uuid={3ABF489F-5EB8-40e8-9A9E-3506943CEB22}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenFCDA +2024-09-08 15:10:00,129 [main] DEBUG AssociationEndBuilder - Updated source type to GenFCDA +2024-09-08 15:10:00,129 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=561, uuid=0283bad7-01c9-3c74-859a-bc73c4a20580, since=null, name=FCDA, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenFCDA, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=562, uuid=9bb47694-c8c9-3c6b-8e46-d36d39c9d9e9, since=null, name=DataAttribute, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataAttribute, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3391, uuid={F5615202-FD44-43cf-A5FB-ACEEE58CA690}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenFCDA +2024-09-08 15:10:00,129 [main] TRACE ClassBuilder - read from EA: GenericModel::GenFCDA +2024-09-08 15:10:00,129 [main] TRACE ClassBuilder - Class GenFile (18 in package GenericModel) +2024-09-08 15:10:00,129 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenFile, _objData=UmlObjectData [id=3336, uuid={4AD7728F-4A39-4b7e-AC32-D31BDA8E2033}, since=null, name=FileRef, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1616, _eaTypeName=GenVisString255, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,129 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenFile, _objData=UmlObjectData [id=3337, uuid={C372B3E2-9671-4ff3-A6DD-A2322FB8438C}, since=null, name=FileSize, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1602, _eaTypeName=GenINT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,129 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenFile, _objData=UmlObjectData [id=3338, uuid={9A695829-F4E7-45cd-AD65-90CA0669786C}, since=null, name=LastModified, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1614, _eaTypeName=GenTimeStamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,130 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2174, uuid={EFFCA8B9-4A53-4f9d-BD54-FD315EEF6AE0}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=GenFile, _otherEndName=?] +2024-09-08 15:10:00,130 [main] DEBUG AssociationEndBuilder - Updated target type to GenFile +2024-09-08 15:10:00,130 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=525, uuid=158bf549-2e71-324e-b38d-7e4cd827cb19, since=null, name=FileSystem, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=FileSystem, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=526, uuid=13a4997f-10e4-3d32-a1f5-52a90ed16321, since=null, name=Files, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenFile, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3399, uuid={207F6219-301F-4e30-BD21-E099498AD645}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenFile +2024-09-08 15:10:00,130 [main] TRACE ClassBuilder - read from EA: GenericModel::GenFile +2024-09-08 15:10:00,130 [main] TRACE ClassBuilder - Class GenIED (19 in package GenericModel) +2024-09-08 15:10:00,130 [main] DEBUG AssociationEndBuilder - Updated source type to GenIED +2024-09-08 15:10:00,130 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=518, uuid=80bbc98a-7b14-32ed-857c-7ea140eba257, since=null, name=IED, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenIED, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=519, uuid=af3ad1a5-482a-35af-9cc0-9d827b1e93ad, since=null, name=AP, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=AccessPoint, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3400, uuid={DAE49C76-967F-474e-89A1-F794712D37D6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenIED +2024-09-08 15:10:00,130 [main] TRACE ClassBuilder - read from EA: GenericModel::GenIED +2024-09-08 15:10:00,130 [main] TRACE ClassBuilder - Class GenINT32U (20 in package GenericModel) +2024-09-08 15:10:00,130 [main] TRACE ClassBuilder - read from EA: GenericModel::GenINT32U +2024-09-08 15:10:00,130 [main] TRACE ClassBuilder - Class GenLN0 (21 in package GenericModel) +2024-09-08 15:10:00,131 [main] DEBUG AssociationEndBuilder - Updated target type to GenLN0 +2024-09-08 15:10:00,131 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=604, uuid=0160b03b-f1e6-36c7-8c5a-aa3c5e9482d6, since=null, name=LogicalDevice, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=605, uuid=c02aa9e9-0ab9-3cc3-9be2-1d15dc5a673a, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenLN0, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3382, uuid={0FC17B94-D523-4606-865E-FC632787BE10}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,131 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=604, uuid=0160b03b-f1e6-36c7-8c5a-aa3c5e9482d6, since=null, name=LogicalDevice, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=605, uuid=c02aa9e9-0ab9-3cc3-9be2-1d15dc5a673a, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenLN0, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3382, uuid={0FC17B94-D523-4606-865E-FC632787BE10}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenLN0 +2024-09-08 15:10:00,131 [main] TRACE ClassBuilder - read from EA: GenericModel::GenLN0 +2024-09-08 15:10:00,131 [main] TRACE ClassBuilder - Class GenLogicalDevice (22 in package GenericModel) +2024-09-08 15:10:00,131 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenLogicalDevice, _objData=UmlObjectData [id=3339, uuid={132BB1C1-B4D8-4218-941F-B5A60919E81F}, since=null, name=LDName, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,132 [main] DEBUG AssociationEndBuilder - Updated target type to GenLogicalDevice +2024-09-08 15:10:00,132 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=609, uuid=14a2fde0-353c-3b36-88de-6a4a12389d88, since=null, name=Server, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=610, uuid=1b9bc6c2-ddf0-3ccb-b0a2-6df5ed81f74d, since=null, name=LogicalDevice, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenLogicalDevice, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3379, uuid={A9AFC9DC-AA63-41f8-8694-C834EE5ED8AA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,132 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=609, uuid=14a2fde0-353c-3b36-88de-6a4a12389d88, since=null, name=Server, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=610, uuid=1b9bc6c2-ddf0-3ccb-b0a2-6df5ed81f74d, since=null, name=LogicalDevice, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenLogicalDevice, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3379, uuid={A9AFC9DC-AA63-41f8-8694-C834EE5ED8AA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenLogicalDevice +2024-09-08 15:10:00,132 [main] DEBUG AssociationEndBuilder - Updated source type to GenLogicalDevice +2024-09-08 15:10:00,132 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=612, uuid=52746bb8-d69d-3ce4-8651-c0466dab2cd0, since=null, name=LogicalDevice, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenLogicalDevice, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=613, uuid=66414be7-d09b-3778-942c-f13f75da619e, since=null, name=LogicalNode, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3380, uuid={BCBEB4BD-C882-44ab-B862-54FB7A4BC7B4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,132 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=612, uuid=52746bb8-d69d-3ce4-8651-c0466dab2cd0, since=null, name=LogicalDevice, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenLogicalDevice, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=613, uuid=66414be7-d09b-3778-942c-f13f75da619e, since=null, name=LogicalNode, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3380, uuid={BCBEB4BD-C882-44ab-B862-54FB7A4BC7B4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenLogicalDevice +2024-09-08 15:10:00,132 [main] DEBUG AssociationEndBuilder - Updated source type to GenLogicalDevice +2024-09-08 15:10:00,132 [main] DEBUG AssociationEndBuilder - Updated target type to GenLogicalDevice +2024-09-08 15:10:00,132 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=615, uuid=cf75d479-60cd-3cbb-8f0a-f16929a62d5c, since=null, name=ParentLogicalDevice, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenLogicalDevice, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=616, uuid=0a44a3a7-32a3-381c-9ee0-165513bf642d, since=null, name=ChildLogicalDevice, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenLogicalDevice, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3381, uuid={9A42BA8C-41A7-484c-AB6D-5987B2592B5F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,132 [main] DEBUG AssociationEndBuilder - Updated source type to GenLogicalDevice +2024-09-08 15:10:00,133 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=604, uuid=0160b03b-f1e6-36c7-8c5a-aa3c5e9482d6, since=null, name=LogicalDevice, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenLogicalDevice, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=605, uuid=c02aa9e9-0ab9-3cc3-9be2-1d15dc5a673a, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenLN0, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3382, uuid={0FC17B94-D523-4606-865E-FC632787BE10}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenLogicalDevice +2024-09-08 15:10:00,133 [main] TRACE ClassBuilder - read from EA: GenericModel::GenLogicalDevice +2024-09-08 15:10:00,133 [main] TRACE ClassBuilder - Class GenLogicalNode (23 in package GenericModel) +2024-09-08 15:10:00,133 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenLogicalNode, _objData=UmlObjectData [id=3340, uuid={BE685D25-FF44-42ae-805A-D77E32E208B3}, since=null, name=LNName, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,133 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenLogicalNode, _objData=UmlObjectData [id=3341, uuid={7A4CFF68-F4E3-47f5-BD82-708786CBC6E8}, since=null, name=LNRef, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1607, _eaTypeName=GenObjRef, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,133 [main] DEBUG AssociationEndBuilder - Updated target type to GenLogicalNode +2024-09-08 15:10:00,133 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=612, uuid=52746bb8-d69d-3ce4-8651-c0466dab2cd0, since=null, name=LogicalDevice, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenLogicalDevice, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=613, uuid=66414be7-d09b-3778-942c-f13f75da619e, since=null, name=LogicalNode, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenLogicalNode, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3380, uuid={BCBEB4BD-C882-44ab-B862-54FB7A4BC7B4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenLogicalNode +2024-09-08 15:10:00,133 [main] DEBUG AssociationEndBuilder - Updated source type to GenLogicalNode +2024-09-08 15:10:00,133 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=569, uuid=96984ad5-0058-3f92-8de1-1b9d9abb7efd, since=null, name=LogicalNode, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenLogicalNode, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=570, uuid=29c429cd-a5a2-375a-bb2f-bcda005a00b6, since=null, name=DataObject, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataObject, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3388, uuid={E7750FB2-2AAD-43fb-B285-DB6600EAB0EB}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenLogicalNode +2024-09-08 15:10:00,133 [main] DEBUG ClassBuilder - Adding GenLogicalNode as superclass of GenLN0 +2024-09-08 15:10:00,133 [main] TRACE ClassBuilder - read from EA: GenericModel::GenLogicalNode +2024-09-08 15:10:00,133 [main] TRACE ClassBuilder - Class GenMCAA (24 in package GenericModel) +2024-09-08 15:10:00,134 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2179, uuid={77710498-12E5-4036-BCFB-EB971851FBAC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=GenMCAA, _otherEndName=?] +2024-09-08 15:10:00,134 [main] DEBUG AssociationEndBuilder - Updated target type to GenMCAA +2024-09-08 15:10:00,134 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=623, uuid=216d0e04-1ef6-38d2-87ae-f9e96b329ddc, since=null, name=Server, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=624, uuid=93c97c83-b766-3523-b4ce-c000ed12a196, since=null, name=MCAppAssociation, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenMCAA, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3378, uuid={B4BAE755-B235-470d-BF31-155B403538E7}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,134 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=623, uuid=216d0e04-1ef6-38d2-87ae-f9e96b329ddc, since=null, name=Server, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=624, uuid=93c97c83-b766-3523-b4ce-c000ed12a196, since=null, name=MCAppAssociation, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenMCAA, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3378, uuid={B4BAE755-B235-470d-BF31-155B403538E7}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenMCAA +2024-09-08 15:10:00,134 [main] TRACE ClassBuilder - read from EA: GenericModel::GenMCAA +2024-09-08 15:10:00,134 [main] TRACE ClassBuilder - Class GenObjRef (25 in package GenericModel) +2024-09-08 15:10:00,134 [main] TRACE ClassBuilder - read from EA: GenericModel::GenObjRef +2024-09-08 15:10:00,134 [main] TRACE ClassBuilder - Class GenObjectName (26 in package GenericModel) +2024-09-08 15:10:00,134 [main] TRACE ClassBuilder - read from EA: GenericModel::GenObjectName +2024-09-08 15:10:00,135 [main] TRACE ClassBuilder - Class GenServer (27 in package GenericModel) +2024-09-08 15:10:00,135 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2176, uuid={CC75E8C6-70B4-4b01-9024-1EFA47EB1834}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=GenServer, _otherEndName=?] +2024-09-08 15:10:00,135 [main] DEBUG AssociationEndBuilder - Updated target type to GenServer +2024-09-08 15:10:00,135 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=630, uuid=6b4d5eb0-2d7d-305e-8b76-851596229a82, since=null, name=SAP, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=631, uuid=67fdc058-4b48-36a8-a6ac-987f880b7c06, since=null, name=Server, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenServer, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3376, uuid={41FFDF61-37BF-42f1-9E81-E1CB9B834F84}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,135 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=630, uuid=6b4d5eb0-2d7d-305e-8b76-851596229a82, since=null, name=SAP, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=631, uuid=67fdc058-4b48-36a8-a6ac-987f880b7c06, since=null, name=Server, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenServer, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3376, uuid={41FFDF61-37BF-42f1-9E81-E1CB9B834F84}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenServer +2024-09-08 15:10:00,135 [main] DEBUG AssociationEndBuilder - Updated source type to GenServer +2024-09-08 15:10:00,135 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=633, uuid=dd430889-064a-36b2-8756-9b8b51ddef50, since=null, name=Server, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenServer, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=634, uuid=c1acc12f-5221-3984-89ca-8fa76e33b410, since=null, name=TPAppAssociation, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3377, uuid={60020B56-90A7-4deb-9086-9463678D6B57}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,135 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=633, uuid=dd430889-064a-36b2-8756-9b8b51ddef50, since=null, name=Server, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenServer, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=634, uuid=c1acc12f-5221-3984-89ca-8fa76e33b410, since=null, name=TPAppAssociation, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3377, uuid={60020B56-90A7-4deb-9086-9463678D6B57}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenServer +2024-09-08 15:10:00,136 [main] DEBUG AssociationEndBuilder - Updated source type to GenServer +2024-09-08 15:10:00,136 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=623, uuid=216d0e04-1ef6-38d2-87ae-f9e96b329ddc, since=null, name=Server, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenServer, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=624, uuid=93c97c83-b766-3523-b4ce-c000ed12a196, since=null, name=MCAppAssociation, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenMCAA, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3378, uuid={B4BAE755-B235-470d-BF31-155B403538E7}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenServer +2024-09-08 15:10:00,136 [main] DEBUG AssociationEndBuilder - Updated source type to GenServer +2024-09-08 15:10:00,136 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=609, uuid=14a2fde0-353c-3b36-88de-6a4a12389d88, since=null, name=Server, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenServer, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=610, uuid=1b9bc6c2-ddf0-3ccb-b0a2-6df5ed81f74d, since=null, name=LogicalDevice, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenLogicalDevice, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3379, uuid={A9AFC9DC-AA63-41f8-8694-C834EE5ED8AA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenServer +2024-09-08 15:10:00,136 [main] DEBUG AssociationEndBuilder - Updated source type to GenServer +2024-09-08 15:10:00,136 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=522, uuid=5c265ff5-ecbc-320f-84a3-73adfc3724de, since=null, name=Server, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenServer, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=523, uuid=ac3325c9-54ef-30e7-a39e-24d3911757c6, since=null, name=FileSystem, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=FileSystem, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3398, uuid={5982398B-EDCC-45cd-A1AA-C9F8D62D2A4A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenServer +2024-09-08 15:10:00,136 [main] TRACE ClassBuilder - read from EA: GenericModel::GenServer +2024-09-08 15:10:00,136 [main] TRACE ClassBuilder - Class GenSubDataAttribute (28 in package GenericModel) +2024-09-08 15:10:00,136 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenSubDataAttribute, _objData=UmlObjectData [id=3342, uuid={AB7D51A9-8986-4bfc-8BA6-4836DC8814DE}, since=null, name=SubDAName, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,137 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenSubDataAttribute, _objData=UmlObjectData [id=3343, uuid={94A40232-E6EE-4682-B41D-2FCF1207E36B}, since=null, name=SubDARef, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1607, _eaTypeName=GenObjRef, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,137 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenSubDataAttribute, _objData=UmlObjectData [id=3344, uuid={227F3C1B-21E7-46e7-92B5-A36942028DC0}, since=null, name=FC, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1597, _eaTypeName=GenFC, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,137 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenSubDataAttribute, _objData=UmlObjectData [id=3345, uuid={AB4449FC-BDC1-43fe-9AA0-B699FD684B7F}, since=null, name=Presence, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1609, _eaTypeName=GenPresenceConditions, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,137 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenSubDataAttribute, _objData=UmlObjectData [id=3346, uuid={F3DE8E30-A6D7-41b5-B2B6-B3006D7AEBCC}, since=null, name=Index, alias=, stereotype=, visibility=public, txtDescription='Index of this sub-data attribute in case it is member of an array.', htmlDescription='

Index of this sub-data attribute in case it is member of an array.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1602, _eaTypeName=GenINT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,137 [main] DEBUG AssociationEndBuilder - Updated target type to GenSubDataAttribute +2024-09-08 15:10:00,138 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=592, uuid=bb9175b9-bb3f-3d15-aa6a-130c512891ca, since=null, name=FCDA, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenFCDA, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=593, uuid=e1ea2ad5-2229-3293-a9e5-50442f8c10a7, since=null, name=SubDataAttribute, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenSubDataAttribute, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3384, uuid={0C3230CE-0D7F-4853-B330-F6792DD4AE2F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenSubDataAttribute +2024-09-08 15:10:00,138 [main] DEBUG AssociationEndBuilder - Updated target type to GenSubDataAttribute +2024-09-08 15:10:00,138 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=549, uuid=8da8b7fc-8347-3c95-b7ef-6ec97c09bb62, since=null, name=DataAttribute, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenConstructedType, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=550, uuid=88c87443-8ee9-3acb-8e3a-15b428a73cb3, since=null, name=SubDataAttribute, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenSubDataAttribute, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3395, uuid={4953EDB6-E8A3-44b8-BA29-DD3366F6B3F1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenSubDataAttribute +2024-09-08 15:10:00,138 [main] DEBUG ClassBuilder - Updated source of class dependency DependencyBuilder [_kind=CLASS, qName = GenericModel::GenSubDataAttribute->GenericModel::GenConstructedType, _objData=UmlObjectData [id=3373, uuid={C583C2FA-340A-40e7-B9E0-E3B2C0F214E4}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,138 [main] DEBUG ClassBuilder - Updated source of class dependency DependencyBuilder [_kind=CLASS, qName = GenericModel::GenSubDataAttribute->GenericModel::GenCompactType, _objData=UmlObjectData [id=3374, uuid={8BEF7BE6-3453-4f7b-B1A4-1A0F6CD943B2}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,138 [main] DEBUG ClassBuilder - Updated source of class dependency DependencyBuilder [_kind=CLASS, qName = GenericModel::GenSubDataAttribute->GenericModel::GenAtomicType, _objData=UmlObjectData [id=3375, uuid={7804C7F3-3958-4464-9E4D-6125308CB9FF}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,138 [main] TRACE ClassBuilder - read from EA: GenericModel::GenSubDataAttribute +2024-09-08 15:10:00,138 [main] TRACE ClassBuilder - Class GenSubDataObject (29 in package GenericModel) +2024-09-08 15:10:00,138 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenSubDataObject, _objData=UmlObjectData [id=3347, uuid={5336B078-D51A-4310-BFC9-7B4828112B1D}, since=null, name=SDOName, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,138 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenSubDataObject, _objData=UmlObjectData [id=3348, uuid={7314D9C2-528D-4907-A459-ECDA44ADE0E0}, since=null, name=SDORef, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1607, _eaTypeName=GenObjRef, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,138 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenSubDataObject, _objData=UmlObjectData [id=3349, uuid={C1410F0D-BF9E-4f1d-B38F-884B17F8F161}, since=null, name=Presence, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1609, _eaTypeName=GenPresenceConditions, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,138 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenSubDataObject, _objData=UmlObjectData [id=3350, uuid={4276E214-E0D7-476f-BAA6-ED3DF54ABF91}, since=null, name=Index, alias=, stereotype=, visibility=public, txtDescription='Index of this sub data object in case it is member of an array.', htmlDescription='

Index of this sub data object in case it is member of an array.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1602, _eaTypeName=GenINT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,139 [main] DEBUG AssociationEndBuilder - Updated target type to GenSubDataObject +2024-09-08 15:10:00,139 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=586, uuid=4091962f-2a68-3a45-b148-a6600433babf, since=null, name=FCD, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenFCD, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=587, uuid=b6c8689e-5c4b-309d-9d9c-3575a5963f92, since=null, name=SubDataObject, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenSubDataObject, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3385, uuid={7CDEE923-AC2B-4918-9C4B-19EDE68B3746}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenSubDataObject +2024-09-08 15:10:00,139 [main] DEBUG AssociationEndBuilder - Updated target type to GenSubDataObject +2024-09-08 15:10:00,139 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=538, uuid=720b4f72-8ffd-31c3-aae1-0bf72487de2b, since=null, name=CommonDataClass, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenCommonDataClass, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=539, uuid=3225b7f5-1129-3f07-a8a8-f676c210cb89, since=null, name=SubDataObject, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenSubDataObject, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3397, uuid={4B987438-5F99-4fad-895C-8F6087C8705B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenSubDataObject +2024-09-08 15:10:00,139 [main] DEBUG ClassBuilder - Updated source of class dependency DependencyBuilder [_kind=CLASS, qName = GenericModel::GenSubDataObject->GenericModel::GenCommonDataClass, _objData=UmlObjectData [id=3372, uuid={959E91AF-330B-466d-9B20-63A1C6A648DF}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,139 [main] TRACE ClassBuilder - read from EA: GenericModel::GenSubDataObject +2024-09-08 15:10:00,139 [main] TRACE ClassBuilder - Class GenTPAA (30 in package GenericModel) +2024-09-08 15:10:00,139 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenTPAA, _objData=UmlObjectData [id=3351, uuid={24BE7E13-5125-43e0-9D7F-1F75F29C6A19}, since=null, name=AssociationId, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1588, _eaTypeName=GenAssociationID, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,139 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2178, uuid={D4EC38C0-71B1-494a-AED1-A5DCF0AC5CAB}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=GenTPAA, _otherEndName=?] +2024-09-08 15:10:00,139 [main] DEBUG AssociationEndBuilder - Updated target type to GenTPAA +2024-09-08 15:10:00,140 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=633, uuid=dd430889-064a-36b2-8756-9b8b51ddef50, since=null, name=Server, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenServer, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=634, uuid=c1acc12f-5221-3984-89ca-8fa76e33b410, since=null, name=TPAppAssociation, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenTPAA, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3377, uuid={60020B56-90A7-4deb-9086-9463678D6B57}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenTPAA +2024-09-08 15:10:00,140 [main] TRACE ClassBuilder - read from EA: GenericModel::GenTPAA +2024-09-08 15:10:00,140 [main] TRACE ClassBuilder - Class GenTriggerConditions (31 in package GenericModel) +2024-09-08 15:10:00,140 [main] TRACE ClassBuilder - read from EA: GenericModel::GenTriggerConditions +2024-09-08 15:10:00,140 [main] TRACE ClassBuilder - Class GenVisString255 (32 in package GenericModel) +2024-09-08 15:10:00,141 [main] TRACE ClassBuilder - read from EA: GenericModel::GenVisString255 +2024-09-08 15:10:00,141 [main] TRACE ClassBuilder - Class ServiceAccessPoint (33 in package GenericModel) +2024-09-08 15:10:00,141 [main] DEBUG AssociationEndBuilder - Updated source type to ServiceAccessPoint +2024-09-08 15:10:00,141 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=630, uuid=6b4d5eb0-2d7d-305e-8b76-851596229a82, since=null, name=SAP, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=ServiceAccessPoint, _multiplicity=[1..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=631, uuid=67fdc058-4b48-36a8-a6ac-987f880b7c06, since=null, name=Server, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenServer, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3376, uuid={41FFDF61-37BF-42f1-9E81-E1CB9B834F84}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::ServiceAccessPoint +2024-09-08 15:10:00,141 [main] DEBUG ClassBuilder - Adding ServiceAccessPoint as subclass of AccessPoint +2024-09-08 15:10:00,141 [main] TRACE ClassBuilder - read from EA: GenericModel::ServiceAccessPoint +2024-09-08 15:10:00,141 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=NewIEC61850_7_2, _depth=2, _eaElementID=1572, _objData=UmlObjectData [id=87, uuid={40C1B298-2113-4638-AEA1-473E2A94C689}, since=null, name=GenericModel, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=58, _selfDependent=false, 16_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1573, uuid={E96EFCB6-7CB3-4a02-B716-C76F98A92BF8}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='All from 6.2 CommonACSI types, except for ARRAY and the 3 moved to atomic. +Stereotype: <>', htmlDescription='

All from 6.2 CommonACSI types, except for ARRAY and the 3 moved to atomic.

Stereotype: <<compact>>

'], _containingPackage=GenericModel, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1574, uuid={E36DC6AA-4511-4f84-A9DD-E9B6D5994E58}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Agreement to rename some primitive types in 7-2, to align with SCL names, as follows: +- use actual 7-2 name as alias in UML class (printed as title) +- use SCL type name as class name', htmlDescription='

Agreement to rename some primitive types in 7-2, to align with SCL names, as follows:

- use actual 7-2 name as alias in UML class (printed as title)

- use SCL type name as class name

'], _containingPackage=GenericModel, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1575, uuid={D47037FC-BEA0-47eb-B37B-6E74F8B3D551}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Note: Review classification after addressing 7-2 core type system. +GenBaseType is meant to be used for "pure" primitives, GenCommonACSIType is for all the others.', htmlDescription='

Note: Review classification after addressing 7-2 core type system.

GenBaseType is meant to be used for "pure" primitives, GenCommonACSIType is for all the others.

'], _containingPackage=GenericModel, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1576, uuid={BCAC7CCF-A942-48a4-B258-771D38A021F9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: We'll need to move PresenceConditions from 7-3 into 7-2, to use them in 7-2 as well.', htmlDescription='

TODO: We'll need to move PresenceConditions from 7-3 into 7-2, to use them in 7-2 as well.

'], _containingPackage=GenericModel, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1577, uuid={A60B825D-7A9A-494d-BA42-33219F1893C4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Change "FileName" with "FileRef" wherever it appears. +Do not include FileDirectory.', htmlDescription='

TODO: Change "FileName" with "FileRef" wherever it appears.

Do not include FileDirectory.

'], _containingPackage=GenericModel, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1578, uuid={8528A6C3-CA81-4578-B54F-7A7DE355C9F9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- Andre to see how to express: At least one of FCDMember or FCDAMember. +- Tanja to add DSRef as ObjectReference, similar to existing meta-model. +- Tanja to trace associations similar to existing meta-model, they're ok.', htmlDescription='

TODO:

  • Andre to see how to express: At least one of FCDMember or FCDAMember.
  • Tanja to add DSRef as ObjectReference, similar to existing meta-model.
  • Tanja to trace associations similar to existing meta-model, they're ok.
'], _containingPackage=GenericModel, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1579, uuid={7C7CE85D-2B99-46ed-82E5-2B2F36BDB3B6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Decision: Start with packages that will reflect Clause 6 through Clause 23 (Files).', htmlDescription='

Decision: Start with packages that will reflect Clause 6 through Clause 23 (Files).

'], _containingPackage=GenericModel, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1580, uuid={65AFCFF7-8512-4e11-BCFA-DBF2FD664BE5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Deal with GenClient.', htmlDescription='

TODO: Deal with GenClient.

'], _containingPackage=GenericModel, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1581, uuid={578E5DF8-ED23-4bfe-9A4C-626AA2F125CE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='All from 6.1 Basic types + ObjectReference, ObjectName and ServiceError. +Plus other non-packed/coded types. +Steretypes: <>, <>, <>', htmlDescription='

All from 6.1 Basic types + ObjectReference, ObjectName and ServiceError.

Plus other non-packed/coded types.

Steretypes: <<atomic>>, <<enumeration>>, <<enumeration,coded>>

'], _containingPackage=GenericModel, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1582, uuid={574B78D4-385A-44c8-9038-ACC8AA6D4343}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- Ensure RCB.DatSet etc. are reflected as assoc. end names in the generic model. +OPEN QUESTION: +- Case of RCB.DatSet that should be of type ObjectReference, but in the generic model it is linked to DataSet.', htmlDescription='

TODO:

  • Ensure RCB.DatSet etc. are reflected as assoc. end names in the generic model.

OPEN QUESTION:

  • Case of RCB.DatSet that should be of type ObjectReference, but in the generic model it is linked to DataSet.
'], _containingPackage=GenericModel, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1583, uuid={3E98F8C3-5801-4840-9C6D-489098AD95CC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: We've added "Gen" to types where we already have an existing one - to make it less error-prone to refactor. E.g., GenFCD will in the end be called FCD.', htmlDescription='

Modelling note: We've added "Gen" to types where we already have an existing one - to make it less error-prone to refactor. E.g., GenFCD will in the end be called FCD.

'], _containingPackage=GenericModel, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1584, uuid={3D07741F-191D-47a1-8F4D-01CADA1023F3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- Tanja to add GenAuthenticationParameter type (similar to Authentication in meta-model).', htmlDescription='

TODO:

  • Tanja to add GenAuthenticationParameter type (similar to Authentication in meta-model).
'], _containingPackage=GenericModel, _otherEndName=], SkippedBuilder [, _kind=OTHER, _isConnector=false, _objData=UmlObjectData [id=1618, uuid={1DA81ADB-7526-4988-B94A-615589F034CF}, since=null, name=, alias=, stereotype=invariant, visibility=public, txtDescription='xor', htmlDescription='

xor

'], _containingPackage=GenericModel, _otherEndName=], SkippedBuilder [, _kind=OTHER, _isConnector=false, _objData=UmlObjectData [id=1619, uuid={46AE4BB9-5995-47bf-B7A2-3500BDA63832}, since=null, name=, alias=, stereotype=invariant, visibility=public, txtDescription='xor', htmlDescription='

xor

'], _containingPackage=GenericModel, _otherEndName=], SkippedBuilder [, _kind=OTHER, _isConnector=false, _objData=UmlObjectData [id=1620, uuid={5D9BD1EA-00B1-4644-A7F4-6F0FA14A9F8B}, since=null, name=, alias=, stereotype=invariant, visibility=public, txtDescription='xor', htmlDescription='

xor

'], _containingPackage=GenericModel, _otherEndName=], SkippedBuilder [, _kind=OTHER, _isConnector=false, _objData=UmlObjectData [id=1621, uuid={A15F46E8-FDE8-40f1-8D27-9BF33615BDA5}, since=null, name=, alias=, stereotype=invariant, visibility=public, txtDescription='xor', htmlDescription='

xor

'], _containingPackage=GenericModel, _otherEndName=]], 2_diagrams=[DiagramBuilder [_containingPackage=GenericModel, _objData=UmlObjectData [id=190, uuid={741656D9-DFE5-45fb-A169-AC974992B5BE}, since=null, name=GenericModel, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL], DiagramBuilder [_containingPackage=GenericModel, _objData=UmlObjectData [id=191, uuid={2A0F8CC2-20D8-47e7-AA5D-1CEE6D0192D2}, since=null, name=GenericModelTypes, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _classes=33 +2024-09-08 15:10:00,141 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=WG10, _depth=1, _eaElementID=1571, _objData=UmlObjectData [id=86, uuid={10D446D7-D0E6-4c6d-801D-81468949F8F8}, since=null, name=NewIEC61850_7_2, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=NewIEC61850_7_2, _objData=UmlObjectData [id=189, uuid={FDB3BD59-D66E-4646-A4E7-B08D4F787BFD}, since=null, name=NewIEC61850_7_2, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=PACKAGE]], _childPackages=1] +2024-09-08 15:10:00,142 [main] INFO PackageBuilder - processing package IEC61850_7_2 (2) ... +2024-09-08 15:10:00,142 [main] ERROR EaTables - [+++ EA ordering problem for 2 diagram(s) in IEC61850_7_2 (manually move back/forth a diagram to initiate EA internal ordering update!): +, +++ diagram IEC61850_7_2: pos = 0 +, +++ diagram IEC61850_7_2ModellingNotes: pos = 0 DUPLICATE +] +2024-09-08 15:10:00,142 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=IEC61850_7_2, _objData=UmlObjectData [id=192, uuid={90AA6E54-26D6-43d4-94A7-5F7B4B772910}, since=null, name=IEC61850_7_2, alias=, stereotype=, visibility=public, txtDescription='Overview of packages and their dependencies. +Dependencies among sub-packages are not shown on this diagram.', htmlDescription='

Overview of packages and their dependencies.

Dependencies among sub-packages are not shown on this diagram.

'], _portrait=true, _kind=PACKAGE] +2024-09-08 15:10:00,142 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=IEC61850_7_2, _objData=UmlObjectData [id=193, uuid={4F40E7C3-3463-44fe-85FB-8E5B2084B8A6}, since=null, name=IEC61850_7_2ModellingNotes, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,142 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->WG10::IEC61850_7_2, _objData=UmlObjectData [id=2896, uuid={601FCB98-A23F-4bb9-9093-C5EB70806F8B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,142 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->WG10::IEC61850_7_2, _objData=UmlObjectData [id=3104, uuid={3AE23F98-46A7-4956-8947-FA3AD8CE26AC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,143 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1623, uuid={EABD0CB1-194A-4ad7-A014-C0F4FF33A957}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- With tracking CDCs in Part 7-2, we have circular dependency with Part 7-3! (not shown here). Proposed to move these into Part 7-3.', htmlDescription='

TODO:

  • With tracking CDCs in Part 7-2, we have circular dependency with Part 7-3! (not shown here). Proposed to move these into Part 7-3.
'], _containingPackage=IEC61850_7_2, _otherEndName=] +2024-09-08 15:10:00,144 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1624, uuid={70D0C33E-CC65-47c7-9DD8-B1A5DB8EEB7B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Arrange the diagram when we settlle on modelling.', htmlDescription='

TODO: Arrange the diagram when we settlle on modelling.

'], _containingPackage=IEC61850_7_2, _otherEndName=] +2024-09-08 15:10:00,145 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1625, uuid={5D73B6B5-C29B-4bc3-842B-49DA8C366102}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='NOT UPDATED YET! + +How to read this model? +Automatically generated documentation prints the packages and their contents in the order they are defined in the model. And in the model, we took a bottom-up approach, i.e., starting from least-dependent packages and going up to most dependent packages: +- if you need an overview, look first into the packages that depend on others +- if you want the description of items before their first usage, look into the packages upon which the others depend. +Dependencies have been manually drawn (the tool does not do it by itself). +API (operations) conventions: +Packages CoreTypes, CoreEnums and AcsiType contain classes with data only, while AcsiTypes, MetaModel and CoreAcsi have classes (and interfaces) with operations, as well. Conventions for operations are as follows: +- Null argument in operations is by default not allowed, unless specified otherwise. +- When return value is a collection, and it has "nothing" to return, a non-null empty collection must be returned. +UML: +- In the diagrams, the black diamond on associations is on the side of a container, and its implicit multiplicity, as defined by UML, is [0..1], i.e., the contained class may belong to one or no container. For the sake or readability, we do not show the multiplicity on the container side. +- On the side of contained object, mandatory association ([1] or [1..*]) is considered as mandatory once the model is initialised. In other words, while building the model, it is possible to violate this constraint, but the valid completely built model must respect the given cardinalities. +- In the API (AcsiTypes, MetaModel, CoreAcsi), we define only methods that describe the required interface; definition of attributes (and names of association ends) is left to the implementation. +Design rationale: +We have on purpose kept services in CoreAcsi (API) separate from the MetaModel, because: +- CoreAcsi API is meant to be used for communication with a live device. +- CoreAcsi API models communication services, which are not object-oriented with respect to the domain model, as they deal with object references (strings), not with objects themselves (e.g., control blocks). However, the API itself is object oriented. +- CoreAcsi API reflects relatively closely what is specified in Part 7-2, Ed. 1, so those who know Part 7-2 and would like to use the API can easily find their way through the API. If this API is meant to be part of the standard, most of services should be renamed (to have less clumsy names). +- CoreAcsi API can be used without any configuration (SCL), to connect and communicate with the live device. It can be thus useful for simple browsing applications. +In contrast to this: +- MetaModel need not be used with a live device - it can be instantiated from SCL and used for different off-line applications. +- MetaModel is object-oriented - it deals with objects (e.g., control blocks) and as part of the interface provides navigation and object reference information. +- MetaModel enhances what is specified in Part 7-2, Ed. 1 and provides a strict definition of concepts developed in Parts 7-3 and 7-4, which is the must for software or data store designs. +- MetaModel can be used with a live device, as well, provided there is an intermediate implementation layer (not shown here) that will take care of using CoreAcsi API or even a direct MMS access. In that case, the semantics of the methods that influence behaviour on the CoreAcsi API level may not be the same as desired by a particular application using MetaModel (e.g., multiple clients/servers, who "owns" what, invalid names, etc.). Therefore, the MetaModel contains only the necessary minimum of methods (connecting to the server, naming and navigation), and different applications have to extend it for their needs (e.g., control block attributes). +Many useful applications can be developed with just this package, without using details of common data classes and logical nodes, while these latter will enable more advanced ones (as they provide for the semantics of data).', htmlDescription='

NOT UPDATED YET!

How to read this model?

Automatically generated documentation prints the packages and their contents in the order they are defined in the model. And in the model, we took a bottom-up approach, i.e., starting from least-dependent packages and going up to most dependent packages:

  • if you need an overview, look first into the packages that depend on others
  • if you want the description of items before their first usage, look into the packages upon which the others depend.

Dependencies have been manually drawn (the tool does not do it by itself).

API (operations) conventions:

Packages CoreTypes, CoreEnums and AcsiType contain classes with data only, while AcsiTypes, MetaModel and CoreAcsi have classes (and interfaces) with operations, as well. Conventions for operations are as follows:

  • Null argument in operations is by default not allowed, unless specified otherwise.
  • When return value is a collection, and it has "nothing" to return, a non-null empty collection must be returned.

UML:

  • In the diagrams, the black diamond on associations is on the side of a container, and its implicit multiplicity, as defined by UML, is [0..1], i.e., the contained class may belong to one or no container. For the sake or readability, we do not show the multiplicity on the container side.
  • On the side of contained object, mandatory association ([1] or [1..*]) is considered as mandatory once the model is initialised. In other words, while building the model, it is possible to violate this constraint, but the valid completely built model must respect the given cardinalities.
  • In the API (AcsiTypes, MetaModel, CoreAcsi), we define only methods that describe the required interface; definition of attributes (and names of association ends) is left to the implementation.

Design rationale:

We have on purpose kept services in CoreAcsi (API) separate from the MetaModel, because:

  • CoreAcsi API is meant to be used for communication with a live device.
  • CoreAcsi API models communication services, which are not object-oriented with respect to the domain model, as they deal with object references (strings), not with objects themselves (e.g., control blocks). However, the API itself is object oriented.
  • CoreAcsi API reflects relatively closely what is specified in Part 7-2, Ed. 1, so those who know Part 7-2 and would like to use the API can easily find their way through the API. If this API is meant to be part of the standard, most of services should be renamed (to have less clumsy names).
  • CoreAcsi API can be used without any configuration (SCL), to connect and communicate with the live device. It can be thus useful for simple browsing applications.

In contrast to this:

  • MetaModel need not be used with a live device - it can be instantiated from SCL and used for different off-line applications.
  • MetaModel is object-oriented - it deals with objects (e.g., control blocks) and as part of the interface provides navigation and object reference information.
  • MetaModel enhances what is specified in Part 7-2, Ed. 1 and provides a strict definition of concepts developed in Parts 7-3 and 7-4, which is the must for software or data store designs.
  • MetaModel can be used with a live device, as well, provided there is an intermediate implementation layer (not shown here) that will take care of using CoreAcsi API or even a direct MMS access. In that case, the semantics of the methods that influence behaviour on the CoreAcsi API level may not be the same as desired by a particular application using MetaModel (e.g., multiple clients/servers, who "owns" what, invalid names, etc.). Therefore, the MetaModel contains only the necessary minimum of methods (connecting to the server, naming and navigation), and different applications have to extend it for their needs (e.g., control block attributes).

Many useful applications can be developed with just this package, without using details of common data classes and logical nodes, while these latter will enable more advanced ones (as they provide for the semantics of data).

'], _containingPackage=IEC61850_7_2, _otherEndName=] +2024-09-08 15:10:00,145 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1627, uuid={15563EAD-20D1-4edb-BCBF-F3184AF0B515}, since=null, name=IEC61850_7_2 : IEC61850_7_2ModellingNotes, alias=, stereotype=, visibility=public, txtDescription='IEC61850_7_2 : IEC61850_7_2ModellingNotes', htmlDescription='

IEC61850_7_2 : IEC61850_7_2ModellingNotes

'], _containingPackage=IEC61850_7_2, _otherEndName=] +2024-09-08 15:10:00,145 [main] TRACE ClassBuilder - Class IEC61850_7_2Namespace (0 in package IEC61850_7_2) +2024-09-08 15:10:00,145 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61850_7_2::IEC61850_7_2Namespace, _objData=UmlObjectData [id=6701, uuid={312B16B6-CA4B-4093-AD7C-DC9FB8F7CFA0}, since=null, name=name, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=IEC61850-7-2:2007, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,146 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61850_7_2::IEC61850_7_2Namespace, _objData=UmlObjectData [id=3305, uuid={A72EC82F-45EC-45d4-B1A5-81F7A8E24B64}, since=null, name=id, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=IEC61850-7-2, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,146 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61850_7_2::IEC61850_7_2Namespace, _objData=UmlObjectData [id=3306, uuid={78825892-2BE3-4fff-9A89-CA4556B98A10}, since=null, name=version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2007, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,146 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61850_7_2::IEC61850_7_2Namespace, _objData=UmlObjectData [id=3307, uuid={9318F048-1784-4c0c-99F8-5907A8A9FC72}, since=null, name=revision, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,146 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61850_7_2::IEC61850_7_2Namespace, _objData=UmlObjectData [id=3308, uuid={3E48ED76-846C-4664-BEFE-64F6FC7262BE}, since=null, name=date, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2011-08-01, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,146 [main] TRACE ClassBuilder - read from EA: IEC61850_7_2::IEC61850_7_2Namespace +2024-09-08 15:10:00,146 [main] INFO PackageBuilder - processing package FunctionalConstraints (2) ... +2024-09-08 15:10:00,147 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=FunctionalConstraints, _objData=UmlObjectData [id=195, uuid={A27A2F0C-3508-49d0-BE2E-DCD85EACEC54}, since=null, name=FunctionalConstraints, alias=, stereotype=, visibility=public, txtDescription='This diagram shows functional constraints.', htmlDescription='

This diagram shows functional constraints.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,147 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::FunctionalConstraints, _objData=UmlObjectData [id=3175, uuid={24606FEA-EE8B-41c7-B098-E006E81B3F44}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,147 [main] TRACE ClassBuilder - Class FcKind (22 in package FunctionalConstraints) +2024-09-08 15:10:00,147 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FunctionalConstraints::FcKind, _objData=UmlObjectData [id=3356, uuid={745EF837-06B1-4ffb-8713-FF2924758753}, since=null, name=ST, alias=Status information, stereotype=enum, visibility=public, txtDescription='DataAttribute shall represent status information whose value may be read, substituted, reported, and logged but shall not be writeable. +Initial value shall be taken from the process. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- if member of dataset, may be contained in the Report, GOOSEMessage and SVMessage.', htmlDescription='

DataAttribute shall represent status information whose value may be read, substituted, reported, and logged but shall not be writeable.

Initial value shall be taken from the process.

Modelling note: Applicable ACSI services:

  • AcsiCDC.getDataValues()
  • AcsiCDC.getDataDefinition()
  • AcsiCDC.getDataDirectory()
  • AcsiDS.getDataSetValues()
  • if member of dataset, may be contained in the Report, GOOSEMessage and SVMessage.
'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,148 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FunctionalConstraints::FcKind, _objData=UmlObjectData [id=3357, uuid={B4588BCF-2CAE-4204-9971-58128FCC1138}, since=null, name=MX, alias=Measurands (analogue values), stereotype=enum, visibility=public, txtDescription='DataAttribute shall represent measurand information whose value may be read, substituted, reported, and logged but shall not be writeable. +Initial value shall be taken from the process. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- if member of dataset, may be contained in the Report, GOOSEMessage and SVMessage.', htmlDescription='

DataAttribute shall represent measurand information whose value may be read, substituted, reported, and logged but shall not be writeable.

Initial value shall be taken from the process.

Modelling note: Applicable ACSI services:

  • AcsiCDC.getDataValues()
  • AcsiCDC.getDataDefinition()
  • AcsiCDC.getDataDirectory()
  • AcsiDS.getDataSetValues()
  • if member of dataset, may be contained in the Report, GOOSEMessage and SVMessage.
'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,148 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FunctionalConstraints::FcKind, _objData=UmlObjectData [id=3358, uuid={BB95C791-97E6-442c-B5EB-F0BD68C29E7F}, since=null, name=SP, alias=Setting (outside setting group), stereotype=enum, visibility=public, txtDescription='DataAttribute shall represent setting parameter information whose value is read and may be written. Changes of values shall become effective immediately, and may be reported. +Initial value shall be as configured; value shall be non-volatile. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.setDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- if member of dataset, may be contained in the Report, GOOSEMessage.', htmlDescription='

DataAttribute shall represent setting parameter information whose value is read and may be written. Changes of values shall become effective immediately, and may be reported.

Initial value shall be as configured; value shall be non-volatile.

Modelling note: Applicable ACSI services:

  • AcsiCDC.getDataValues()
  • AcsiCDC.setDataValues()
  • AcsiCDC.getDataDefinition()
  • AcsiCDC.getDataDirectory()
  • AcsiDS.getDataSetValues()
  • if member of dataset, may be contained in the Report, GOOSEMessage.
'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,148 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FunctionalConstraints::FcKind, _objData=UmlObjectData [id=3359, uuid={89A38396-2A3C-4c7e-B4D9-2DF5C1244B91}, since=null, name=SV, alias=Substitution, stereotype=enum, visibility=public, txtDescription='DataAttribute shall represent substitution information whose value may be written to substitute the value attribute and read. A value change may be reported. +If the value is volatile then the initial value shall be false, otherwise the value should be as set or configured. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.setDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- AcsiDS.setDataSetValues() +- if member of dataset, may be contained in the Report.', htmlDescription='

DataAttribute shall represent substitution information whose value may be written to substitute the value attribute and read. A value change may be reported.

If the value is volatile then the initial value shall be false, otherwise the value should be as set or configured.

Modelling note: Applicable ACSI services:

  • AcsiCDC.getDataValues()
  • AcsiCDC.setDataValues()
  • AcsiCDC.getDataDefinition()
  • AcsiCDC.getDataDirectory()
  • AcsiDS.getDataSetValues()
  • AcsiDS.setDataSetValues()
  • if member of dataset, may be contained in the Report.
'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,148 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FunctionalConstraints::FcKind, _objData=UmlObjectData [id=3360, uuid={672C8541-F9B3-4f36-B180-158B53453964}, since=null, name=CF, alias=Configuration, stereotype=enum, visibility=public, txtDescription='DataAttribute shall represent configuration information whose value may be written and read. Values written may become effective immediately or deferred by reasons outside the scope of this standard. Value changes may be reported. +Initial value shall be as configured; value shall be non-volatile. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.setDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- AcsiDS.setDataSetValues() +- if member of dataset, may be contained in the Report.', htmlDescription='

DataAttribute shall represent configuration information whose value may be written and read. Values written may become effective immediately or deferred by reasons outside the scope of this standard. Value changes may be reported.

Initial value shall be as configured; value shall be non-volatile.

Modelling note: Applicable ACSI services:

  • AcsiCDC.getDataValues()
  • AcsiCDC.setDataValues()
  • AcsiCDC.getDataDefinition()
  • AcsiCDC.getDataDirectory()
  • AcsiDS.getDataSetValues()
  • AcsiDS.setDataSetValues()
  • if member of dataset, may be contained in the Report.
'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,148 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FunctionalConstraints::FcKind, _objData=UmlObjectData [id=3361, uuid={8A165B36-7064-44f0-AEB1-BE4316E39AB2}, since=null, name=DC, alias=Description, stereotype=enum, visibility=public, txtDescription='DataAttribute shall represent description information whose value may be written and read. +Initial value shall be as configured; value shall be non-volatile. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.setDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- AcsiDS.setDataSetValues() +- if member of dataset, may be contained in the Report.', htmlDescription='

DataAttribute shall represent description information whose value may be written and read.

Initial value shall be as configured; value shall be non-volatile.

Modelling note: Applicable ACSI services:

  • AcsiCDC.getDataValues()
  • AcsiCDC.setDataValues()
  • AcsiCDC.getDataDefinition()
  • AcsiCDC.getDataDirectory()
  • AcsiDS.getDataSetValues()
  • AcsiDS.setDataSetValues()
  • if member of dataset, may be contained in the Report.
'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,149 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FunctionalConstraints::FcKind, _objData=UmlObjectData [id=3362, uuid={BC4A5B29-928D-4dc9-8896-9E43B03529E0}, since=null, name=SG, alias=Setting group, stereotype=enum, visibility=public, txtDescription='Logical devices that implement the SGCB class maintain multiple grouped values of all instances of DataAttributes with functional constraint SG. Each group contains one value for each DataAttribute. DataAttributes with functional constraint SG shall be the current active value. DataAttributes with FC=SG shall not be writeable. +Initial value shall be as configured; value shall be non-volatile. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- AcsiSGCB.getSGValues() +- if member of dataset, may be contained in the Report.', htmlDescription='

Logical devices that implement the SGCB class maintain multiple grouped values of all instances of DataAttributes with functional constraint SG. Each group contains one value for each DataAttribute. DataAttributes with functional constraint SG shall be the current active value. DataAttributes with FC=SG shall not be writeable.

Initial value shall be as configured; value shall be non-volatile.

Modelling note: Applicable ACSI services:

  • AcsiCDC.getDataValues()
  • AcsiCDC.getDataDefinition()
  • AcsiCDC.getDataDirectory()
  • AcsiDS.getDataSetValues()
  • AcsiSGCB.getSGValues()
  • if member of dataset, may be contained in the Report.
'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,149 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FunctionalConstraints::FcKind, _objData=UmlObjectData [id=3363, uuid={DB4C1F49-C8C9-4ee3-A713-437D5F7A9974}, since=null, name=SE, alias=Setting group editable, stereotype=enum, visibility=public, txtDescription='DataAttribute that can be edited by SGCB services. Defines the edit buffer for the value sets belonging to attributes with FC=SG. +Value shall be as resulting from the chain of SGCB services: selectEditSG() -> setSGValues() -> confirmEditSGValues(). +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiSGCB.getSGValues() +- AcsiSGCB.setSGValues()', htmlDescription='

DataAttribute that can be edited by SGCB services. Defines the edit buffer for the value sets belonging to attributes with FC=SG.

Value shall be as resulting from the chain of SGCB services: selectEditSG() -> setSGValues() -> confirmEditSGValues().

Modelling note: Applicable ACSI services:

  • AcsiCDC.getDataDefinition()
  • AcsiCDC.getDataDirectory()
  • AcsiSGCB.getSGValues()
  • AcsiSGCB.setSGValues()
'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,149 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FunctionalConstraints::FcKind, _objData=UmlObjectData [id=3364, uuid={411D4F8E-1B62-4476-A036-284D25D5F896}, since=null, name=SR, alias=Service response, stereotype=enum, visibility=public, txtDescription='DataAttribute shall represent data from different process objects with the same tracking object whose values can be used to be reported and logged; the values shall not be writeable. These attributes are used for service tracking (see 15.3.2). +Initial value of the DataAttribute are a private issue, e.g., all zero (except for times stamp). +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- if member of dataset, may be contained in the Report.', htmlDescription='

DataAttribute shall represent data from different process objects with the same tracking object whose values can be used to be reported and logged; the values shall not be writeable. These attributes are used for service tracking (see 15.3.2).

Initial value of the DataAttribute are a private issue, e.g., all zero (except for times stamp).

Modelling note: Applicable ACSI services:

  • AcsiCDC.getDataValues()
  • AcsiCDC.getDataDefinition()
  • AcsiCDC.getDataDirectory()
  • AcsiDS.getDataSetValues()
  • if member of dataset, may be contained in the Report.
'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,149 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FunctionalConstraints::FcKind, _objData=UmlObjectData [id=3365, uuid={6BC4E2F3-847B-4fae-97FF-AACCDE8CFD7C}, since=null, name=OR, alias=Operate received, stereotype=enum, visibility=public, txtDescription='DataAttribute shall represent the result of an Operate request at the data object receiving the Operate request, even if the execution of the Operate is blocked. +Initial value is irrelevant / arbitrary. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- if member of dataset, may be contained in the Report.', htmlDescription='

DataAttribute shall represent the result of an Operate request at the data object receiving the Operate request, even if the execution of the Operate is blocked.

Initial value is irrelevant / arbitrary.

Modelling note: Applicable ACSI services:

  • AcsiCDC.getDataValues()
  • AcsiCDC.getDataDefinition()
  • AcsiCDC.getDataDirectory()
  • AcsiDS.getDataSetValues()
  • if member of dataset, may be contained in the Report.
'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,149 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FunctionalConstraints::FcKind, _objData=UmlObjectData [id=3366, uuid={A41CC031-1E28-4293-B5BA-DF28D668035F}, since=null, name=BL, alias=Blocking, stereotype=enum, visibility=public, txtDescription='DataAttribute is used for blocking value updates. +If the value of the DataAttribute is volatile then the initial value shall be false, otherwise the value should be as set or configured. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.setDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- AcsiDS.setDataSetValues() +- if member of dataset, may be contained in the Report.', htmlDescription='

DataAttribute is used for blocking value updates.

If the value of the DataAttribute is volatile then the initial value shall be false, otherwise the value should be as set or configured.

Modelling note: Applicable ACSI services:

  • AcsiCDC.getDataValues()
  • AcsiCDC.setDataValues()
  • AcsiCDC.getDataDefinition()
  • AcsiCDC.getDataDirectory()
  • AcsiDS.getDataSetValues()
  • AcsiDS.setDataSetValues()
  • if member of dataset, may be contained in the Report.
'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,150 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FunctionalConstraints::FcKind, _objData=UmlObjectData [id=3367, uuid={8DBED157-424A-4a37-BC94-8C0BDE69431B}, since=null, name=EX, alias=Extended definition (application name space), stereotype=enum, visibility=public, txtDescription='DataAttribute shall represent an application name space. Application name spaces are used to define the semantic definitions of LNs, data object class, and DataAttributes as specified in 61850-7-3 and IEC 61850-7-4. DataAttributes with FC=EX shall not be writeable, +Note that private extensions of control blocks may use the FC EX at SCSM level. +Value of the DataAttribute shall be as configured; value shall be non-volatile. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- if member of dataset, may be contained in the Report.', htmlDescription='

DataAttribute shall represent an application name space. Application name spaces are used to define the semantic definitions of LNs, data object class, and DataAttributes as specified in 61850-7-3 and IEC 61850-7-4. DataAttributes with FC=EX shall not be writeable,

Note that private extensions of control blocks may use the FC EX at SCSM level.

Value of the DataAttribute shall be as configured; value shall be non-volatile.

Modelling note: Applicable ACSI services:

  • AcsiCDC.getDataValues()
  • AcsiCDC.getDataDefinition()
  • AcsiCDC.getDataDirectory()
  • AcsiDS.getDataSetValues()
  • if member of dataset, may be contained in the Report.
'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,150 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FunctionalConstraints::FcKind, _objData=UmlObjectData [id=3368, uuid={1FFA680C-4680-473f-B353-B4FC19ED9F26}, since=null, name=XX, alias=, stereotype=enum, visibility=public, txtDescription='Used as a wildcard in services only, with the semantics: representing DataAttributes of any functional constraint.', htmlDescription='

Used as a wildcard in services only, with the semantics: representing DataAttributes of any functional constraint.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,150 [main] TRACE ClassBuilder - read from EA: FunctionalConstraints::FcKind +2024-09-08 15:10:00,150 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_2, _depth=2, _eaElementID=1630, _objData=UmlObjectData [id=90, uuid={DAAE2E83-BC59-4835-9783-03AD311188B6}, since=null, name=FunctionalConstraints, alias=Functional constraints, stereotype=, visibility=public, txtDescription='From an application point of view, the DataAttributes are classified according to their specific use. Some attributes are used for controlling, other for reporting and logging, or measurements or setting groups, or the description of a specific DataAttribute. +The functional constraint (FC) serves as a data filter in the sense of defining the services applicable to specific DataAttributes of CommonDataClasses (defined in part IEC 61850-7-3). +NOTE: The possibility to write an Attribute or a DataAttribute may be further constrained by a view or an implementation, as discussed in clause 7. +EXAMPLE: The CommonDataClass single point status (SPS) according to IEC 61850-7-3 has the following DataAttributes: stVal (status value), q (quality), and t (time stamp) with the functional constraint ST (status information).', htmlDescription='

From an application point of view, the DataAttributes are classified according to their specific use. Some attributes are used for controlling, other for reporting and logging, or measurements or setting groups, or the description of a specific DataAttribute.

The functional constraint (FC) serves as a data filter in the sense of defining the services applicable to specific DataAttributes of CommonDataClasses (defined in part IEC 61850-7-3).

NOTE: The possibility to write an Attribute or a DataAttribute may be further constrained by a view or an implementation, as discussed in clause 7.

EXAMPLE: The CommonDataClass single point status (SPS) according to IEC 61850-7-3 has the following DataAttributes: stVal (status value), q (quality), and t (time stamp) with the functional constraint ST (status information).

'], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=FunctionalConstraints, _objData=UmlObjectData [id=195, uuid={A27A2F0C-3508-49d0-BE2E-DCD85EACEC54}, since=null, name=FunctionalConstraints, alias=, stereotype=, visibility=public, txtDescription='This diagram shows functional constraints.', htmlDescription='

This diagram shows functional constraints.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsTarget=1, _classes=1 +2024-09-08 15:10:00,150 [main] INFO PackageBuilder - processing package TriggerOptions (3) ... +2024-09-08 15:10:00,150 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=TriggerOptions, _objData=UmlObjectData [id=196, uuid={0BFCB4F3-0E2A-4790-BB7D-934E0D484D9C}, since=null, name=TriggerOptions, alias=, stereotype=, visibility=public, txtDescription='This diagram shows trigger options.', htmlDescription='

This diagram shows trigger options.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,151 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::TriggerOptions, _objData=UmlObjectData [id=3173, uuid={855C6728-1BC9-4283-8A19-59ADC04C72DF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,151 [main] TRACE ClassBuilder - Class TrgOpKind (23 in package TriggerOptions) +2024-09-08 15:10:00,151 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TriggerOptions::TrgOpKind, _objData=UmlObjectData [id=3369, uuid={1A22EF7A-2C16-4726-BCEB-CB30D71E8479}, since=null, name=dchg, alias=data-change, stereotype=enum, visibility=public, txtDescription='The reason for report or log entry generation is the change of the value of a process-related data attribute with trigger option dchg.', htmlDescription='

The reason for report or log entry generation is the change of the value of a process-related data attribute with trigger option dchg.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,151 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TriggerOptions::TrgOpKind, _objData=UmlObjectData [id=3370, uuid={5BCEDA2C-1A76-454c-8F22-6BB56A1B33BF}, since=null, name=qchg, alias=quality-change, stereotype=enum, visibility=public, txtDescription='The reason for report or log entry generation is the change of the value of a quality-related data attribute with trigger option qchg.', htmlDescription='

The reason for report or log entry generation is the change of the value of a quality-related data attribute with trigger option qchg.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,151 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TriggerOptions::TrgOpKind, _objData=UmlObjectData [id=3371, uuid={55E317AA-C068-4b0c-B2A0-D61D7B794819}, since=null, name=dupd, alias=data-update, stereotype=enum, visibility=public, txtDescription='The reason for report or log entry generation is an update of the value of a data attribute with trigger option dupd. The updated value may be the same as the old value. An example is freezing the value of a freezable data attribute updating the value of another data attribute, which could lead to the same value it already has.', htmlDescription='

The reason for report or log entry generation is an update of the value of a data attribute with trigger option dupd. The updated value may be the same as the old value. An example is freezing the value of a freezable data attribute updating the value of another data attribute, which could lead to the same value it already has.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,151 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TriggerOptions::TrgOpKind, _objData=UmlObjectData [id=3372, uuid={1DA88179-4E3F-4338-9FC7-409360696D17}, since=null, name=dchg, dupd, alias=dchg or dupd, stereotype=enum, visibility=public, txtDescription='Either dchg or dupd.', htmlDescription='

Either dchg or dupd.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,152 [main] TRACE ClassBuilder - read from EA: TriggerOptions::TrgOpKind +2024-09-08 15:10:00,152 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_2, _depth=2, _eaElementID=1632, _objData=UmlObjectData [id=91, uuid={4133AFE1-D3E2-4e28-914F-4556B5EB2A7D}, since=null, name=TriggerOptions, alias=Trigger options, stereotype=, visibility=public, txtDescription='To support reporting and logging control logic (see clause 17) related to process data changes, one of these values can be associated as a trigger option, TrgOp, to a data attribute within a data object or sub-data object.', htmlDescription='

To support reporting and logging control logic (see clause 17) related to process data changes, one of these values can be associated as a trigger option, TrgOp, to a data attribute within a data object or sub-data object.

'], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=TriggerOptions, _objData=UmlObjectData [id=196, uuid={0BFCB4F3-0E2A-4790-BB7D-934E0D484D9C}, since=null, name=TriggerOptions, alias=, stereotype=, visibility=public, txtDescription='This diagram shows trigger options.', htmlDescription='

This diagram shows trigger options.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsTarget=1, _classes=1 +2024-09-08 15:10:00,152 [main] INFO PackageBuilder - processing package ACSIEnums (4) ... +2024-09-08 15:10:00,153 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=ACSIEnums, _objData=UmlObjectData [id=197, uuid={95AEB859-896B-4a25-A880-7441C1646A15}, since=null, name=ACSIEnums, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all explicit enumerated types defined in 61850-7-3.', htmlDescription='

This diagram shows all explicit enumerated types defined in 61850-7-3.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,154 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::ACSIEnums, _objData=UmlObjectData [id=3298, uuid={F56ADDA0-372E-4056-B822-00216243BD63}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,154 [main] TRACE ClassBuilder - Class BsControlKind (25 in package ACSIEnums) +2024-09-08 15:10:00,154 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSIEnums::BsControlKind, _objData=UmlObjectData [id=3373, uuid={CA1E7FE8-E979-4eed-A9C0-1DC2F42D98E7}, since=null, name=stop, alias=, stereotype=enum, visibility=public, txtDescription='Deactivate persistent output.', htmlDescription='

Deactivate persistent output.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,155 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSIEnums::BsControlKind, _objData=UmlObjectData [id=3374, uuid={5527E172-7D24-4618-8F0B-D9FEBB3DAE6B}, since=null, name=lower, alias=, stereotype=enum, visibility=public, txtDescription='Decrease the controlled value for one step.', htmlDescription='

Decrease the controlled value for one step.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,155 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSIEnums::BsControlKind, _objData=UmlObjectData [id=3375, uuid={BCFFB99D-0331-4d56-B87B-4F0F796DBDF7}, since=null, name=higher, alias=, stereotype=enum, visibility=public, txtDescription='Increase the controlled value for one step.', htmlDescription='

Increase the controlled value for one step.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,156 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSIEnums::BsControlKind, _objData=UmlObjectData [id=3376, uuid={7232D032-E577-45dd-ADE8-906578AF1EAC}, since=null, name=reserved, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,157 [main] TRACE ClassBuilder - read from EA: ACSIEnums::BsControlKind +2024-09-08 15:10:00,157 [main] TRACE ClassBuilder - Class DpStatusKind (26 in package ACSIEnums) +2024-09-08 15:10:00,157 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSIEnums::DpStatusKind, _objData=UmlObjectData [id=3377, uuid={9DE6568E-7A11-4e23-A50E-0F1E6C4BEEDC}, since=null, name=intermediateState, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,157 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSIEnums::DpStatusKind, _objData=UmlObjectData [id=3378, uuid={14B04D4A-522F-4d16-965B-5007F7B82E36}, since=null, name=offOrFalse, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,157 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSIEnums::DpStatusKind, _objData=UmlObjectData [id=3379, uuid={C137BA8B-F03D-4729-B1E2-2098B6F3A69C}, since=null, name=onOrTrue, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,157 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSIEnums::DpStatusKind, _objData=UmlObjectData [id=3380, uuid={4682DAAD-411E-40b2-8954-EC7AEEA93B42}, since=null, name=badState, alias=, stereotype=enum, visibility=public, txtDescription='The server cannot detect whether the position is open (off), closed (on) or in intermediate state.', htmlDescription='

The server cannot detect whether the position is open (off), closed (on) or in intermediate state.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,157 [main] TRACE ClassBuilder - read from EA: ACSIEnums::DpStatusKind +2024-09-08 15:10:00,158 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_2, _depth=2, _eaElementID=1634, _objData=UmlObjectData [id=92, uuid={90255F83-2BE0-44ac-8B56-6AA33A4B99FF}, since=null, name=ACSIEnums, alias=Enumerated data attribute types, stereotype=, visibility=public, txtDescription='This subclause contains explicit definition of enumerated types used in IEC 61850-7-2; some of them are also used in IEC 61850-7-3.', htmlDescription='

This subclause contains explicit definition of enumerated types used in IEC 61850-7-2; some of them are also used in IEC 61850-7-3.

'], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=ACSIEnums, _objData=UmlObjectData [id=197, uuid={95AEB859-896B-4a25-A880-7441C1646A15}, since=null, name=ACSIEnums, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all explicit enumerated types defined in 61850-7-3.', htmlDescription='

This diagram shows all explicit enumerated types defined in 61850-7-3.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsTarget=1, _classes=2 +2024-09-08 15:10:00,158 [main] INFO PackageBuilder - processing package CoreTypes (5) ... +2024-09-08 15:10:00,158 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=CoreTypes, _objData=UmlObjectData [id=198, uuid={F7AC59CA-0DEA-40c0-9004-81B0EA306E87}, since=null, name=CoreTypes, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the core types, defined in part 7-2. +- white: have their DA counterparts for CDCs in part 7-3 (and in 7-2 Ed.2!). +- blue: used for both services and data model. +Other types (under clause 6 TypeDefinitions) are used for services in 7-2 only, and are defined where used (in other packages under 7-2).', htmlDescription='

This diagram shows the core types, defined in part 7-2.

  • white: have their DA counterparts for CDCs in part 7-3 (and in 7-2 Ed.2!).
  • blue: used for both services and data model.

Other types (under clause 6 TypeDefinitions) are used for services in 7-2 only, and are defined where used (in other packages under 7-2).

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,158 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::CoreTypes, _objData=UmlObjectData [id=3064, uuid={108535CE-A6F8-4674-9586-860C06077B0A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,158 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::CoreTypes, _objData=UmlObjectData [id=3174, uuid={5FE3C8F2-1E89-4705-9543-F7961C8261AE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,158 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::CoreTypes, _objData=UmlObjectData [id=3288, uuid={38E71389-9629-4cc5-9975-FC4214E837B4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,159 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::CoreTypes, _objData=UmlObjectData [id=3297, uuid={FCD42B62-BC4F-4487-B6C7-E7E726D09A02}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,159 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::CoreTypes, _objData=UmlObjectData [id=3301, uuid={58E49D9F-1448-4082-AF53-C39A20175114}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,159 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::CoreTypes, _objData=UmlObjectData [id=3322, uuid={4007F42C-AD2B-4122-ADB0-BE0A33C62F71}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,159 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::CoreTypes, _objData=UmlObjectData [id=3347, uuid={B1DAE8E8-95A2-4465-BBD5-25F52D1CD86F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,160 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1650, uuid={244828C0-55B7-474f-98ED-FAF904B5131B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Missing " " (space) for e.g. +- "[ST] myLD/myXCBR1.Pos.stVal", or, +- "myLD/myXCBR1.Pos.stVal [ST]".', htmlDescription='

TODO: Missing " " (space) for e.g.

  • "[ST] myLD/myXCBR1.Pos.stVal", or,
  • "myLD/myXCBR1.Pos.stVal [ST]".
'], _containingPackage=CoreTypes, _otherEndName=] +2024-09-08 15:10:00,160 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1675, uuid={590D88C4-5102-427a-883A-BD4D95C63509}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='=========================================== +TimeStamp and related types', htmlDescription='

===========================================

TimeStamp and related types

'], _containingPackage=CoreTypes, _otherEndName=] +2024-09-08 15:10:00,160 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1676, uuid={5CD0E8B5-9B88-4098-8E91-7ED55F9E9C10}, since=null, name=CoreTypes : CoreTypesModellingNotes, alias=, stereotype=, visibility=public, txtDescription='CoreTypes : CoreTypesModellingNotes', htmlDescription='

CoreTypes : CoreTypesModellingNotes

'], _containingPackage=CoreTypes, _otherEndName=] +2024-09-08 15:10:00,160 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1677, uuid={82DEAA6D-9304-4b9f-B7F8-248DB8CF30F2}, since=null, name=CoreTypes :ImplementationNote-LanguageMappings, alias=, stereotype=, visibility=public, txtDescription='CoreTypes :ImplementationNote-LanguageMappings', htmlDescription='

CoreTypes :ImplementationNote-LanguageMappings

'], _containingPackage=CoreTypes, _otherEndName=] +2024-09-08 15:10:00,160 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1678, uuid={9A7C4175-6A24-48a2-AF0B-94C9020096B6}, since=null, name=BasicDAs :Relation between trigger conditions, applicable trigger options and reporting, alias=, stereotype=, visibility=public, txtDescription='P_TriggerConditions : Relation between trigger conditions and reporting', htmlDescription='

P_TriggerConditions : Relation between trigger conditions and reporting

'], _containingPackage=CoreTypes, _otherEndName=] +2024-09-08 15:10:00,160 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1679, uuid={CC1FA7BA-2804-418e-B6FD-4333F4794A27}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='=========================================== +Primitive types', htmlDescription='

===========================================

Primitive types

'], _containingPackage=CoreTypes, _otherEndName=] +2024-09-08 15:10:00,160 [main] TRACE ClassBuilder - Class P_BOOLEAN (1 in package CoreTypes) +2024-09-08 15:10:00,161 [main] TRACE ClassBuilder - read from EA: CoreTypes::P_BOOLEAN +2024-09-08 15:10:00,161 [main] TRACE ClassBuilder - Class P_INT16U (2 in package CoreTypes) +2024-09-08 15:10:00,161 [main] TRACE ClassBuilder - read from EA: CoreTypes::P_INT16U +2024-09-08 15:10:00,161 [main] TRACE ClassBuilder - Class P_INT32 (3 in package CoreTypes) +2024-09-08 15:10:00,161 [main] TRACE ClassBuilder - read from EA: CoreTypes::P_INT32 +2024-09-08 15:10:00,161 [main] TRACE ClassBuilder - Class P_INT32U (4 in package CoreTypes) +2024-09-08 15:10:00,162 [main] TRACE ClassBuilder - read from EA: CoreTypes::P_INT32U +2024-09-08 15:10:00,162 [main] TRACE ClassBuilder - Class P_FLOAT32 (5 in package CoreTypes) +2024-09-08 15:10:00,162 [main] TRACE ClassBuilder - read from EA: CoreTypes::P_FLOAT32 +2024-09-08 15:10:00,162 [main] TRACE ClassBuilder - Class P_UNICODE_STRING255 (6 in package CoreTypes) +2024-09-08 15:10:00,162 [main] TRACE ClassBuilder - read from EA: CoreTypes::P_UNICODE_STRING255 +2024-09-08 15:10:00,162 [main] TRACE ClassBuilder - Class P_VISIBLE_STRING255 (7 in package CoreTypes) +2024-09-08 15:10:00,163 [main] TRACE ClassBuilder - read from EA: CoreTypes::P_VISIBLE_STRING255 +2024-09-08 15:10:00,163 [main] TRACE ClassBuilder - Class ObjectName (16 in package CoreTypes) +2024-09-08 15:10:00,163 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::ObjectName, _objData=UmlObjectData [id=3381, uuid={5D6F9BB0-6DB5-412a-A3CE-6BB9F80F9725}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1665, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,163 [main] TRACE ClassBuilder - read from EA: CoreTypes::ObjectName +2024-09-08 15:10:00,163 [main] TRACE ClassBuilder - Class P_ObjectReference (17 in package CoreTypes) +2024-09-08 15:10:00,163 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::P_ObjectReference, _objData=UmlObjectData [id=3382, uuid={48586FE0-4215-4fbf-AD7E-3041B6C594CC}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1666, _eaTypeName=P_VISIBLE_STRING129, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,164 [main] TRACE ClassBuilder - read from EA: CoreTypes::P_ObjectReference +2024-09-08 15:10:00,164 [main] TRACE ClassBuilder - Class P_PHYCOMADDR (18 in package CoreTypes) +2024-09-08 15:10:00,164 [main] TRACE ClassBuilder - read from EA: CoreTypes::P_PHYCOMADDR +2024-09-08 15:10:00,164 [main] TRACE ClassBuilder - Class P_TimeStamp (19 in package CoreTypes) +2024-09-08 15:10:00,164 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::P_TimeStamp, _objData=UmlObjectData [id=3383, uuid={CDA8BF64-6FF8-4ba2-ABBC-382E39C0B24C}, since=null, name=SecondSinceEpoch, alias=, stereotype=, visibility=public, txtDescription='Interval in seconds continuously counted from the epoch 1970-01-01 00:00:00 UTC.', htmlDescription='

Interval in seconds continuously counted from the epoch 1970-01-01 00:00:00 UTC.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1656, _eaTypeName=P_INT32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,164 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::P_TimeStamp, _objData=UmlObjectData [id=3384, uuid={2958A724-7898-4448-9E67-CC2402C4DBBA}, since=null, name=FractionOfSecond, alias=, stereotype=, visibility=public, txtDescription='Fraction of the current second when the value of time stamp has been determined. It shall be calculated as (SUM from i = 0 to 23 of bi*2**–(i+1) [s]). +NOTE 1 The resolution is the smallest unit by which the time stamp is updated. The 24 bits of the integer provide 1 out of 16 777 216 counts as the smallest unit; calculated by 1/2**24 which equals approximately 60 ns. +NOTE 2 The resolution of a time stamp may be 1/2**1 (= 0.5 s) if only the first bit is used; or may be 1/2**2 (= 0.25 s) if the first two bits are used; or may be approximately 60 ns if all 24 bits are used. The resolution provided by an IED is outside the scope of this standard.', htmlDescription='

Fraction of the current second when the value of time stamp has been determined. It shall be calculated as (SUM from i = 0 to 23 of bi*2**–(i+1) [s]).

NOTE 1 The resolution is the smallest unit by which the time stamp is updated. The 24 bits of the integer provide 1 out of 16 777 216 counts as the smallest unit; calculated by 1/2**24 which equals approximately 60 ns.

NOTE 2 The resolution of a time stamp may be 1/2**1 (= 0.5 s) if only the first bit is used; or may be 1/2**2 (= 0.25 s) if the first two bits are used; or may be approximately 60 ns if all 24 bits are used. The resolution provided by an IED is outside the scope of this standard.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1660, _eaTypeName=P_INT24U, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,164 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::P_TimeStamp, _objData=UmlObjectData [id=3385, uuid={1C4E5EB3-6199-4ce6-976E-E81B1E3D3D26}, since=null, name=TimeQuality, alias=, stereotype=, visibility=public, txtDescription='Information about the time source of the sending IED.', htmlDescription='

Information about the time source of the sending IED.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1672, _eaTypeName=TimeQuality, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,164 [main] TRACE ClassBuilder - read from EA: CoreTypes::P_TimeStamp +2024-09-08 15:10:00,165 [main] TRACE ClassBuilder - Class TimeQuality (20 in package CoreTypes) +2024-09-08 15:10:00,165 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::TimeQuality, _objData=UmlObjectData [id=3386, uuid={9C35C39B-81CF-412d-A57E-9706FE60A4E9}, since=null, name=LeapSecondsKnown, alias=, stereotype=, visibility=public, txtDescription='If true, the value in 'P_TimeStamp.SecondSinceEpoch' contains all leap seconds occurred. Otherwise, it does not take into account the leap seconds that occurred before the initialization of the time source of the device. Instead, the seconds since start of the epoch are calculated from the current date assuming a constant day length of 86400 seconds. +Note: If a UTC time master clock is used and accessible, this value should always be true.', htmlDescription='

If true, the value in 'P_TimeStamp.SecondSinceEpoch' contains all leap seconds occurred. Otherwise, it does not take into account the leap seconds that occurred before the initialization of the time source of the device. Instead, the seconds since start of the epoch are calculated from the current date assuming a constant day length of 86400 seconds.

Note: If a UTC time master clock is used and accessible, this value should always be true.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,165 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::TimeQuality, _objData=UmlObjectData [id=3387, uuid={5FDA2BA2-85CD-4f5d-9FC8-AA4C892E9904}, since=null, name=ClockFailure, alias=, stereotype=, visibility=public, txtDescription='If true, the time source of the sending device is unreliable and the value of the time stamp shall be ignored.', htmlDescription='

If true, the time source of the sending device is unreliable and the value of the time stamp shall be ignored.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,165 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::TimeQuality, _objData=UmlObjectData [id=3388, uuid={C371C41F-4D3F-4129-A08C-AA2AB445051F}, since=null, name=ClockNotSynchronized, alias=, stereotype=, visibility=public, txtDescription='If true, the time source of the sending device is not synchronised with the external UTC time.', htmlDescription='

If true, the time source of the sending device is not synchronised with the external UTC time.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,165 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::TimeQuality, _objData=UmlObjectData [id=3389, uuid={4B73DC7D-52D2-4627-A70B-1027E72F218F}, since=null, name=TimeAccuracy, alias=, stereotype=, visibility=public, txtDescription='Class of time accuracy in terms of number of significant bits in 'P_TimeStamp.FractionOfSecond'.', htmlDescription='

Class of time accuracy in terms of number of significant bits in 'P_TimeStamp.FractionOfSecond'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1673, _eaTypeName=TimeAccuracyKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,165 [main] TRACE ClassBuilder - read from EA: CoreTypes::TimeQuality +2024-09-08 15:10:00,165 [main] TRACE ClassBuilder - Class TimeAccuracyKind (21 in package CoreTypes) +2024-09-08 15:10:00,165 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::TimeAccuracyKind, _objData=UmlObjectData [id=3390, uuid={0DF1E1A1-F1B0-474f-A236-87FAA78F7FF3}, since=null, name=T0, alias=, stereotype=enum, visibility=public, txtDescription='Has 7 significant bits => 2**-7 = ~ 7.8 ms, corresponding to performance class 10 ms.', htmlDescription='

Has 7 significant bits => 2**-7 = ~ 7.8 ms, corresponding to performance class 10 ms.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=7, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,166 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::TimeAccuracyKind, _objData=UmlObjectData [id=3391, uuid={AA4952C9-467B-4ccb-8C1D-8F8E960A40F4}, since=null, name=T1, alias=, stereotype=enum, visibility=public, txtDescription='Has 10 significant bits => 2**-10 = ~ 0.9 ms, corresponding to performance class 1 ms.', htmlDescription='

Has 10 significant bits => 2**-10 = ~ 0.9 ms, corresponding to performance class 1 ms.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=10, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,166 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::TimeAccuracyKind, _objData=UmlObjectData [id=3392, uuid={45A0A753-7EEC-41f7-992F-83F9BA70FE16}, since=null, name=T2, alias=, stereotype=enum, visibility=public, txtDescription='Has 14 significant bits => 2**-14 = ~ 61 µs, corresponding to performance class 100 µs.', htmlDescription='

Has 14 significant bits => 2**-14 = ~ 61 µs, corresponding to performance class 100 µs.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=14, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,166 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::TimeAccuracyKind, _objData=UmlObjectData [id=3393, uuid={28ED8D22-B685-456c-A17F-CD2F7BBB78CE}, since=null, name=T3, alias=, stereotype=enum, visibility=public, txtDescription='Has 16 significant bits => 2**-16 = ~ 15 µs, corresponding to performance class 25 µs.', htmlDescription='

Has 16 significant bits => 2**-16 = ~ 15 µs, corresponding to performance class 25 µs.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=16, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,166 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::TimeAccuracyKind, _objData=UmlObjectData [id=3394, uuid={BBC61680-CCA1-4ed5-A53A-AA7917C1C391}, since=null, name=T4, alias=, stereotype=enum, visibility=public, txtDescription='Has 18 significant bits => 2**-18 = ~ 3.8 µs, corresponding to performance class 4 µs.', htmlDescription='

Has 18 significant bits => 2**-18 = ~ 3.8 µs, corresponding to performance class 4 µs.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=18, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,166 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::TimeAccuracyKind, _objData=UmlObjectData [id=3395, uuid={0B1B2383-20B4-413a-9508-6194243A18B1}, since=null, name=T5, alias=, stereotype=enum, visibility=public, txtDescription='Has 20 significant bits => 2**-20 = ~ 0.9 µs, corresponding to performance class 1 µs.', htmlDescription='

Has 20 significant bits => 2**-20 = ~ 0.9 µs, corresponding to performance class 1 µs.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=20, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,166 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::TimeAccuracyKind, _objData=UmlObjectData [id=3396, uuid={1F0511E7-8E96-4ddd-87F8-F75D9D9503D0}, since=null, name=unspecified, alias=, stereotype=enum, visibility=public, txtDescription='Has 31 significant bits.', htmlDescription='

Has 31 significant bits.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=31, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,166 [main] TRACE ClassBuilder - read from EA: CoreTypes::TimeAccuracyKind +2024-09-08 15:10:00,166 [main] TRACE ClassBuilder - Class P_TriggerConditions (24 in package CoreTypes) +2024-09-08 15:10:00,167 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::P_TriggerConditions, _objData=UmlObjectData [id=3397, uuid={A829B7C4-40ED-4e43-A520-BB42588381F0}, since=null, name=data-change, alias=, stereotype=, visibility=public, txtDescription='If true, a value change of a process-related data attribute, tagged with dchg, will trigger the generation of a report or log entry. If false, no entry should be generated on value change.', htmlDescription='

If true, a value change of a process-related data attribute, tagged with dchg, will trigger the generation of a report or log entry. If false, no entry should be generated on value change.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,167 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::P_TriggerConditions, _objData=UmlObjectData [id=3398, uuid={088AE2AE-C484-4fb7-B17D-D9D712044645}, since=null, name=quality-change, alias=, stereotype=, visibility=public, txtDescription='If true, a value change of a quality-related data attribute, tagged with qchg, will trigger the generation of a report or log entry. If false, no entry should be generated on quality change.', htmlDescription='

If true, a value change of a quality-related data attribute, tagged with qchg, will trigger the generation of a report or log entry. If false, no entry should be generated on quality change.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,167 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::P_TriggerConditions, _objData=UmlObjectData [id=3399, uuid={57A3C8E0-5424-4100-90E2-3EFA7B5D1F57}, since=null, name=data-update, alias=, stereotype=, visibility=public, txtDescription='If true, a value freezing of a freezable data attribute (e.g., frozen counters) or a value update of any other data attribute, tagged with dupd, will trigger the generation of a report or log entry. If false, no entry should be generated on value update. +This trigger condition may be used to issue sending a report or storing a log entry into a log when a value has changed or has been "overwritten" with the same value as before. It may then be a trigger for reporting or logging of the statistics values (which may be calculated and updated periodically), independently of whether the value has changed or not.', htmlDescription='

If true, a value freezing of a freezable data attribute (e.g., frozen counters) or a value update of any other data attribute, tagged with dupd, will trigger the generation of a report or log entry. If false, no entry should be generated on value update.

This trigger condition may be used to issue sending a report or storing a log entry into a log when a value has changed or has been "overwritten" with the same value as before. It may then be a trigger for reporting or logging of the statistics values (which may be calculated and updated periodically), independently of whether the value has changed or not.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,167 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::P_TriggerConditions, _objData=UmlObjectData [id=3400, uuid={197A7EEE-CC0C-481d-B006-99BE3C9041A5}, since=null, name=integrity, alias=, stereotype=, visibility=public, txtDescription='If true, the control block in the server shall generate periodical Report or Log entries on every expiration of the integrity timer (period trigger option).', htmlDescription='

If true, the control block in the server shall generate periodical Report or Log entries on every expiration of the integrity timer (period trigger option).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,167 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::P_TriggerConditions, _objData=UmlObjectData [id=3401, uuid={2154CDDF-8F70-47dc-929D-406C98AC6E48}, since=null, name=general-interrogation, alias=, stereotype=, visibility=public, txtDescription='If true, the RCB in the server shall generate general interrogation Report entries on user request.', htmlDescription='

If true, the RCB in the server shall generate general interrogation Report entries on user request.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,167 [main] TRACE ClassBuilder - read from EA: CoreTypes::P_TriggerConditions +2024-09-08 15:10:00,167 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_2, _depth=2, _eaElementID=1637, _objData=UmlObjectData [id=93, uuid={869C1377-AA3A-4b9e-A541-9130C780FF6D}, since=null, name=CoreTypes, alias=Core types, stereotype=, visibility=public, txtDescription='This clause defines core types, mainly primitive, common to the IEC 61850 both data and service models.', htmlDescription='

This clause defines core types, mainly primitive, common to the IEC 61850 both data and service models.

'], _modelId=58, _selfDependent=false, 6_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1650, uuid={244828C0-55B7-474f-98ED-FAF904B5131B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Missing " " (space) for e.g. +- "[ST] myLD/myXCBR1.Pos.stVal", or, +- "myLD/myXCBR1.Pos.stVal [ST]".', htmlDescription='

TODO: Missing " " (space) for e.g.

  • "[ST] myLD/myXCBR1.Pos.stVal", or,
  • "myLD/myXCBR1.Pos.stVal [ST]".
'], _containingPackage=CoreTypes, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1675, uuid={590D88C4-5102-427a-883A-BD4D95C63509}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='=========================================== +TimeStamp and related types', htmlDescription='

===========================================

TimeStamp and related types

'], _containingPackage=CoreTypes, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1676, uuid={5CD0E8B5-9B88-4098-8E91-7ED55F9E9C10}, since=null, name=CoreTypes : CoreTypesModellingNotes, alias=, stereotype=, visibility=public, txtDescription='CoreTypes : CoreTypesModellingNotes', htmlDescription='

CoreTypes : CoreTypesModellingNotes

'], _containingPackage=CoreTypes, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1677, uuid={82DEAA6D-9304-4b9f-B7F8-248DB8CF30F2}, since=null, name=CoreTypes :ImplementationNote-LanguageMappings, alias=, stereotype=, visibility=public, txtDescription='CoreTypes :ImplementationNote-LanguageMappings', htmlDescription='

CoreTypes :ImplementationNote-LanguageMappings

'], _containingPackage=CoreTypes, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1678, uuid={9A7C4175-6A24-48a2-AF0B-94C9020096B6}, since=null, name=BasicDAs :Relation between trigger conditions, applicable trigger options and reporting, alias=, stereotype=, visibility=public, txtDescription='P_TriggerConditions : Relation between trigger conditions and reporting', htmlDescription='

P_TriggerConditions : Relation between trigger conditions and reporting

'], _containingPackage=CoreTypes, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1679, uuid={CC1FA7BA-2804-418e-B6FD-4333F4794A27}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='=========================================== +Primitive types', htmlDescription='

===========================================

Primitive types

'], _containingPackage=CoreTypes, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=CoreTypes, _objData=UmlObjectData [id=198, uuid={F7AC59CA-0DEA-40c0-9004-81B0EA306E87}, since=null, name=CoreTypes, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the core types, defined in part 7-2. +- white: have their DA counterparts for CDCs in part 7-3 (and in 7-2 Ed.2!). +- blue: used for both services and data model. +Other types (under clause 6 TypeDefinitions) are used for services in 7-2 only, and are defined where used (in other packages under 7-2).', htmlDescription='

This diagram shows the core types, defined in part 7-2.

  • white: have their DA counterparts for CDCs in part 7-3 (and in 7-2 Ed.2!).
  • blue: used for both services and data model.

Other types (under clause 6 TypeDefinitions) are used for services in 7-2 only, and are defined where used (in other packages under 7-2).

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsTarget=7, _classes=14 +2024-09-08 15:10:00,168 [main] INFO PackageBuilder - processing package ObjectReferences (6) ... +2024-09-08 15:10:00,168 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=ObjectReferences, _objData=UmlObjectData [id=201, uuid={5DEE7E4C-4C25-4a75-B590-A96364073A9E}, since=null, name=ObjectReferences, alias=, stereotype=, visibility=public, txtDescription='This diagram shows an overview of strongly typed object references, not explicitly specified in the standard.', htmlDescription='

This diagram shows an overview of strongly typed object references, not explicitly specified in the standard.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,168 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::ObjectReferences, _objData=UmlObjectData [id=3172, uuid={C5C582B9-299E-483d-9480-D0C500F8176D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,168 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::ObjectReferences, _objData=UmlObjectData [id=3323, uuid={0B7067BC-EDBC-4ae5-AF55-5FBD1BE1F769}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,168 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::ObjectReferences->IEC61850_7_2::CoreTypes, _objData=UmlObjectData [id=3347, uuid={B1DAE8E8-95A2-4465-BBD5-25F52D1CD86F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,169 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1684, uuid={A20EACAA-52B0-4123-8FE8-AC7004CDFF73}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Implementation note: To identify ComposedCDCs from e.g. MMS strings (to correctly assign dataName and SubDataName), you have to construct the hashmap based on definitions from IEC 61850-7-3, since MMS does not provide information about PrimitiveCDC and ComposedCDC. See diagram ObjectReferences::ImlementationNotes-ComplexCDCs.', htmlDescription='

Implementation note: To identify ComposedCDCs from e.g. MMS strings (to correctly assign dataName and SubDataName), you have to construct the hashmap based on definitions from IEC 61850-7-3, since MMS does not provide information about PrimitiveCDC and ComposedCDC. See diagram ObjectReferences::ImlementationNotes-ComplexCDCs.

'], _containingPackage=ObjectReferences, _otherEndName=] +2024-09-08 15:10:00,171 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1690, uuid={3601A814-6336-4e81-A0C4-605A030114AF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Do have a better name for LNOwnedDSReference (and LNOwnedDS)?', htmlDescription='

TODO: Do have a better name for LNOwnedDSReference (and LNOwnedDS)?

'], _containingPackage=ObjectReferences, _otherEndName=] +2024-09-08 15:10:00,171 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1704, uuid={B91F5E3E-1FE7-42cc-B656-C9B2CCB194E9}, since=null, name=ObjectReferences : ObjectReferencesModellingNotes, alias=, stereotype=, visibility=public, txtDescription='ObjectReferences : ObjectReferencesModellingNotes', htmlDescription='

ObjectReferences : ObjectReferencesModellingNotes

'], _containingPackage=ObjectReferences, _otherEndName=] +2024-09-08 15:10:00,171 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1705, uuid={C0FD65FA-8022-455d-A4A4-9198F69255B4}, since=null, name=ObjectReferences : ImplementationNotes-ComposedCDCs, alias=, stereotype=, visibility=public, txtDescription='ObjectReferences : ImplementationNotes-ComposedCDCs', htmlDescription='

ObjectReferences : ImplementationNotes-ComposedCDCs

'], _containingPackage=ObjectReferences, _otherEndName=] +2024-09-08 15:10:00,172 [main] TRACE ClassBuilder - Class FILEReference (2 in package ObjectReferences) +2024-09-08 15:10:00,172 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::FILEReference, _objData=UmlObjectData [id=3402, uuid={CD8C78D7-23ED-4c5e-95D6-113A8B0CD1D1}, since=null, name=FileRef, alias=, stereotype=, visibility=public, txtDescription='Path-name of the FILE instance (= FileName).', htmlDescription='

Path-name of the FILE instance (= FileName).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1666, _eaTypeName=P_VISIBLE_STRING129, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,172 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::FILEReference, _objData=UmlObjectData [id=3403, uuid={1E88DE78-F248-4982-ACD2-E5FA0516775A}, since=null, name=FileName, alias=, stereotype=, visibility=public, txtDescription='name of a FILE instance, unambiguously identifying the file within the ACSI file store. File names may be structured to differentiate file types, for example, disturbance records, programs, and parameter and configuration data. +Modelling note 1: Corresponds to FileName. Original definition: "FileAttribute: Name of the file in the ACSI file store. File names may be structured to differentiate file types, e.g. disturbance records, programs, and parameter and configuration data." +Modelling note 2: Although this is called "FileName", it should have been called "FileRef" to follow the logic of the whole ACSI naming scheme. Note that the type is not ObjectName, but P_VISIBLE_STRING255.', htmlDescription='

name of a FILE instance, unambiguously identifying the file within the ACSI file store. File names may be structured to differentiate file types, for example, disturbance records, programs, and parameter and configuration data.

Modelling note 1: Corresponds to FileName. Original definition: "FileAttribute: Name of the file in the ACSI file store. File names may be structured to differentiate file types, e.g. disturbance records, programs, and parameter and configuration data."

Modelling note 2: Although this is called "FileName", it should have been called "FileRef" to follow the logic of the whole ACSI naming scheme. Note that the type is not ObjectName, but P_VISIBLE_STRING255.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1666, _eaTypeName=P_VISIBLE_STRING129, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,173 [main] DEBUG ClassBuilder - Adding FILEReference as subclass of P_ObjectReference +2024-09-08 15:10:00,173 [main] TRACE ClassBuilder - read from EA: ObjectReferences::FILEReference +2024-09-08 15:10:00,173 [main] TRACE ClassBuilder - Class LDReference (3 in package ObjectReferences) +2024-09-08 15:10:00,173 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::LDReference, _objData=UmlObjectData [id=3404, uuid={4125604B-3595-465d-92D7-879F9A4352C7}, since=null, name=LDRef, alias=, stereotype=, visibility=public, txtDescription='Path-name of the LD instance (= LDName).', htmlDescription='

Path-name of the LD instance (= LDName).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1666, _eaTypeName=P_VISIBLE_STRING129, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,173 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::LDReference, _objData=UmlObjectData [id=3405, uuid={18337A58-4439-456a-8BCA-A1B7AF8715A1}, since=null, name=LDName, alias=, stereotype=, visibility=public, txtDescription='Name of an LD instance, unambiguously identifying the LD within the system.', htmlDescription='

Name of an LD instance, unambiguously identifying the LD within the system.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,173 [main] DEBUG ClassBuilder - Adding LDReference as subclass of P_ObjectReference +2024-09-08 15:10:00,173 [main] TRACE ClassBuilder - read from EA: ObjectReferences::LDReference +2024-09-08 15:10:00,173 [main] TRACE ClassBuilder - Class NonPersistentDSReference (4 in package ObjectReferences) +2024-09-08 15:10:00,174 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::NonPersistentDSReference, _objData=UmlObjectData [id=3406, uuid={7F5608C0-BE6D-4ac8-9786-C6EF27B7CD6B}, since=null, name=DSRef, alias=, stereotype=, visibility=public, txtDescription='Path-name of the non-persistent dataset instance (= @DSName).', htmlDescription='

Path-name of the non-persistent dataset instance (= @DSName).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1666, _eaTypeName=P_VISIBLE_STRING129, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,174 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::NonPersistentDSReference, _objData=UmlObjectData [id=3407, uuid={4F62D406-E0F0-45ea-9C34-3DB7262EDE88}, since=null, name=DSName, alias=, stereotype=, visibility=public, txtDescription='Name of a dataset instance, unambiguously identifying it within the scope of a two party application association.', htmlDescription='

Name of a dataset instance, unambiguously identifying it within the scope of a two party application association.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,174 [main] DEBUG ClassBuilder - Adding NonPersistentDSReference as subclass of P_ObjectReference +2024-09-08 15:10:00,174 [main] TRACE ClassBuilder - read from EA: ObjectReferences::NonPersistentDSReference +2024-09-08 15:10:00,174 [main] TRACE ClassBuilder - Class LNReference (5 in package ObjectReferences) +2024-09-08 15:10:00,174 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::LNReference, _objData=UmlObjectData [id=3408, uuid={79CF69C4-43F8-45a0-947C-DDF3F0986B34}, since=null, name=LNRef, alias=, stereotype=, visibility=public, txtDescription='Path-name of the LN instance (= LDName/LNName).', htmlDescription='

Path-name of the LN instance (= LDName/LNName).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1666, _eaTypeName=P_VISIBLE_STRING129, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,174 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::LNReference, _objData=UmlObjectData [id=3409, uuid={315FD389-CF79-4476-9221-E8EF466FE456}, since=null, name=LNName, alias=, stereotype=, visibility=public, txtDescription='Name of an LN instance, unambiguously identifying the LN within the scope of an LD.', htmlDescription='

Name of an LN instance, unambiguously identifying the LN within the scope of an LD.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,175 [main] DEBUG ClassBuilder - Adding LNReference as subclass of LDReference +2024-09-08 15:10:00,175 [main] TRACE ClassBuilder - read from EA: ObjectReferences::LNReference +2024-09-08 15:10:00,175 [main] TRACE ClassBuilder - Class CDCReference (6 in package ObjectReferences) +2024-09-08 15:10:00,175 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::CDCReference, _objData=UmlObjectData [id=3410, uuid={D1CFBC9C-966D-4b0b-BA52-A320E5422583}, since=null, name=DataRef, alias=, stereotype=, visibility=public, txtDescription='Path-name of the CDC instance, i.e. data object or sub-data object (= LDName/LNName.DataName for PrimitiveCDC or LDName/LNName.DataName.SubDataName for ComposedCDC, respectively).', htmlDescription='

Path-name of the CDC instance, i.e. data object or sub-data object (= LDName/LNName.DataName for PrimitiveCDC or LDName/LNName.DataName.SubDataName for ComposedCDC, respectively).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1666, _eaTypeName=P_VISIBLE_STRING129, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,175 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::CDCReference, _objData=UmlObjectData [id=3411, uuid={27B4D2D6-7DD0-4a73-8DD4-3E27211B8FE4}, since=null, name=DataName, alias=, stereotype=, visibility=public, txtDescription='Name of a CDC instance (data object) contained in the LN. The CDC may be: +1. PrimitiveCDC: Example is "Auto" from the reference myLD3/RREC1.Auto (where myLD3/RREC1.Auto is of type SPC:PrimitiveCDC). +2. ComposedCDC: example is "PhV" from the reference myLD3/MMXU1.PhV.phsA (where myLD3/MMXU1.PhV is of type WYE:ComposedCDC).', htmlDescription='

Name of a CDC instance (data object) contained in the LN. The CDC may be:

  1. PrimitiveCDC: Example is "Auto" from the reference myLD3/RREC1.Auto (where myLD3/RREC1.Auto is of type SPC:PrimitiveCDC).
  2. ComposedCDC: example is "PhV" from the reference myLD3/MMXU1.PhV.phsA (where myLD3/MMXU1.PhV is of type WYE:ComposedCDC).
'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,176 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::CDCReference, _objData=UmlObjectData [id=3412, uuid={11F81F23-C9EF-4f7e-A783-E4ECC12CB884}, since=null, name=SubDataName, alias=, stereotype=, visibility=public, txtDescription='Empty string in case the PrimitiveCDC is contained in LN, non-empty name of sub-data object if PrimitiveCDC is contained in ComposedCDC. Example of this latter is "phsA" from the reference myLD3/MMXU1.PhV.phsA (where PhV is of type WYE:ComposedCDC, and one level further, PhV.phsA is of type SPC:PrimitiveCDC).', htmlDescription='

Empty string in case the PrimitiveCDC is contained in LN, non-empty name of sub-data object if PrimitiveCDC is contained in ComposedCDC. Example of this latter is "phsA" from the reference myLD3/MMXU1.PhV.phsA (where PhV is of type WYE:ComposedCDC, and one level further, PhV.phsA is of type SPC:PrimitiveCDC).

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,176 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2192, uuid={4500C0CF-C86B-4dd8-B508-9332FFF71356}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=CDCReference, _otherEndName=?] +2024-09-08 15:10:00,176 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2200, uuid={E51AEAD0-DD4C-497d-A091-1B0E68FF4FF4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=CDCReference, _otherEndName=?] +2024-09-08 15:10:00,176 [main] DEBUG ClassBuilder - Adding CDCReference as subclass of LNReference +2024-09-08 15:10:00,176 [main] TRACE ClassBuilder - read from EA: ObjectReferences::CDCReference +2024-09-08 15:10:00,176 [main] TRACE ClassBuilder - Class CBReference (7 in package ObjectReferences) +2024-09-08 15:10:00,176 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::CBReference, _objData=UmlObjectData [id=3413, uuid={A942512C-9018-4df2-B39B-445CC9389B21}, since=null, name=CBRef, alias=, stereotype=, visibility=public, txtDescription='Path-name of the control block (SGCB, BRCB, URCB, LCB, GCB, USVCB, MSVCB) instance. Corresponds to one of the following: +- SGCBRef=LDName/LNName.SGCBName [SP], +- BRCBRef=LDName/LNName.BRCBName [BR], +- URCBRef=LDName/LNName.URCBName [RP], +- LCBRef=LDName/LNName.LCBName [LG], +- GoCBRef=LDName/LNName.GoCBName [GO], +- USVCBRef=LDName/LNName.USVCBName [US], +- MSVCBRef=LDName/LNName.MSVCBName [MS].', htmlDescription='

Path-name of the control block (SGCB, BRCB, URCB, LCB, GCB, USVCB, MSVCB) instance. Corresponds to one of the following:

  • SGCBRef=LDName/LNName.SGCBName [SP],
  • BRCBRef=LDName/LNName.BRCBName [BR],
  • URCBRef=LDName/LNName.URCBName [RP],
  • LCBRef=LDName/LNName.LCBName [LG],
  • GoCBRef=LDName/LNName.GoCBName [GO],
  • USVCBRef=LDName/LNName.USVCBName [US],
  • MSVCBRef=LDName/LNName.MSVCBName [MS].
'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1666, _eaTypeName=P_VISIBLE_STRING129, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,176 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::CBReference, _objData=UmlObjectData [id=3414, uuid={8A834972-A898-4f3a-8CF5-9896102F4C43}, since=null, name=CBName, alias=, stereotype=, visibility=public, txtDescription='Name of a BRCB or URCB instance, unambiguously identifying it within the scope of an LN, or name of an SGCB, LCB, GCB, USVCB or MSVCB instance, unambiguously identifying it within the scope of the LN0. To find out which control block it describes, use FC. Corresponds to one of the following: +- SGCBName = "SGCB", +- BRCBName, +- URCBName, +- LCBName, +- GoCBName, +- USVCBName, +- MSVCBName.', htmlDescription='

Name of a BRCB or URCB instance, unambiguously identifying it within the scope of an LN, or name of an SGCB, LCB, GCB, USVCB or MSVCB instance, unambiguously identifying it within the scope of the LN0. To find out which control block it describes, use FC. Corresponds to one of the following:

  • SGCBName = "SGCB",
  • BRCBName,
  • URCBName,
  • LCBName,
  • GoCBName,
  • USVCBName,
  • MSVCBName.
'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,177 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::CBReference, _objData=UmlObjectData [id=3415, uuid={801D665B-C42E-46a1-91D9-8131A8FA1630}, since=null, name=FC, alias=, stereotype=, visibility=public, txtDescription='Kind of control block described by this reference: +- ServiceFcKind.SP for SGCB, +- ServiceFcKind.BR for BRCB, +- ServiceFcKind.RP for URCB, +- ServiceFcKind.LG for LCB, +- ServiceFcKind.GO for GCB, +- ServiceFcKind.MS for MSVCB, +- ServiceFcKind.US for USVCB.', htmlDescription='

Kind of control block described by this reference:

  • ServiceFcKind.SP for SGCB,
  • ServiceFcKind.BR for BRCB,
  • ServiceFcKind.RP for URCB,
  • ServiceFcKind.LG for LCB,
  • ServiceFcKind.GO for GCB,
  • ServiceFcKind.MS for MSVCB,
  • ServiceFcKind.US for USVCB.
'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1699, _eaTypeName=ServiceFcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,177 [main] DEBUG ClassBuilder - Adding CBReference as subclass of LNReference +2024-09-08 15:10:00,177 [main] TRACE ClassBuilder - read from EA: ObjectReferences::CBReference +2024-09-08 15:10:00,177 [main] TRACE ClassBuilder - Class ServiceFcKind (8 in package ObjectReferences) +2024-09-08 15:10:00,177 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::ServiceFcKind, _objData=UmlObjectData [id=3416, uuid={2F543DEF-F532-436c-9D42-C64E87442953}, since=null, name=SP, alias=, stereotype=enum, visibility=public, txtDescription='Setpoint +Modelling note: This is the only functional constraint used for both DataAttribute (within FcKind) and services (within ServiceFcKind). In the context of services, it identifies an SGCB. +Implementation note: This one must be handled when interacting with MMS for SGCB (hard-coded) to distinguish it from the one used for DataAttributes. Since the name of the SGCB is "SGCB", and its fc=SP, and there will be one (or no) instance of SGCB within the LN, the following MMS reference should designate where the SGCB and its attributes start: "myLD/LLN0$SP$SGCB".', htmlDescription='

Setpoint

Modelling note: This is the only functional constraint used for both DataAttribute (within FcKind) and services (within ServiceFcKind). In the context of services, it identifies an SGCB.

Implementation note: This one must be handled when interacting with MMS for SGCB (hard-coded) to distinguish it from the one used for DataAttributes. Since the name of the SGCB is "SGCB", and its fc=SP, and there will be one (or no) instance of SGCB within the LN, the following MMS reference should designate where the SGCB and its attributes start: "myLD/LLN0$SP$SGCB".

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,177 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::ServiceFcKind, _objData=UmlObjectData [id=3417, uuid={B6D5F0C6-2DCD-4b57-9DF3-5FCC6A43041A}, since=null, name=BR, alias=, stereotype=enum, visibility=public, txtDescription='Buffered report - Attribute shall represent report control information of a BRCB whose value may be written and read. +Initial value shall be as configured; value shall be persistent.', htmlDescription='

Buffered report - Attribute shall represent report control information of a BRCB whose value may be written and read.

Initial value shall be as configured; value shall be persistent.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,177 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::ServiceFcKind, _objData=UmlObjectData [id=3418, uuid={84ECCAD9-38ED-4a56-8764-D3B964636DAA}, since=null, name=RP, alias=, stereotype=enum, visibility=public, txtDescription='Unbuffered report - Attribute shall represent report control information of a URCB whose value may be written and read. +Initial value shall be as configured; value shall be persistent.', htmlDescription='

Unbuffered report - Attribute shall represent report control information of a URCB whose value may be written and read.

Initial value shall be as configured; value shall be persistent.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,178 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::ServiceFcKind, _objData=UmlObjectData [id=3419, uuid={A7789B7A-AFD7-4050-8B89-68AE9943C706}, since=null, name=LG, alias=, stereotype=enum, visibility=public, txtDescription='Logging - Attribute shall represent log control information of a LCB whose value may be written and read. +Initial value shall be as configured; value shall be persistent.', htmlDescription='

Logging - Attribute shall represent log control information of a LCB whose value may be written and read.

Initial value shall be as configured; value shall be persistent.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,178 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::ServiceFcKind, _objData=UmlObjectData [id=3420, uuid={035D0B1A-7719-4ab5-9B93-BC6880629FD2}, since=null, name=GO, alias=, stereotype=enum, visibility=public, txtDescription='GOOSE control - Attribute shall represent goose control information of a GCB whose value may be written and read. +Initial value shall be as configured; value shall be persistent.', htmlDescription='

GOOSE control - Attribute shall represent goose control information of a GCB whose value may be written and read.

Initial value shall be as configured; value shall be persistent.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,178 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::ServiceFcKind, _objData=UmlObjectData [id=3421, uuid={0E8A4639-1A06-44d6-BD78-456F276956D5}, since=null, name=MS, alias=, stereotype=enum, visibility=public, txtDescription='Multicast sampled value control - Attribute shall represent sampled value control information of a MSVCB whose value may be written and read. +Initial value shall be as configured; value shall be persistent.', htmlDescription='

Multicast sampled value control - Attribute shall represent sampled value control information of a MSVCB whose value may be written and read.

Initial value shall be as configured; value shall be persistent.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,178 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::ServiceFcKind, _objData=UmlObjectData [id=3422, uuid={21046EB7-E2E3-44d9-A9D7-9C72DAE1D446}, since=null, name=US, alias=, stereotype=enum, visibility=public, txtDescription='Unicast sampled value control - Attribute shall represent sampled value control information of a USVCB whose value may be written and read. +Initial value shall be as configured; value shall be persistent.', htmlDescription='

Unicast sampled value control - Attribute shall represent sampled value control information of a USVCB whose value may be written and read.

Initial value shall be as configured; value shall be persistent.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,178 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::ServiceFcKind, _objData=UmlObjectData [id=3423, uuid={150A5A6D-9FF2-4148-907F-C231C6CB0EFC}, since=null, name=XX, alias=, stereotype=enum, visibility=public, txtDescription='Used as a wildcard in services, only, with the semantics: representing Attributes of any functional constraint.', htmlDescription='

Used as a wildcard in services, only, with the semantics: representing Attributes of any functional constraint.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,179 [main] TRACE ClassBuilder - read from EA: ObjectReferences::ServiceFcKind +2024-09-08 15:10:00,179 [main] TRACE ClassBuilder - Class LOGReference (9 in package ObjectReferences) +2024-09-08 15:10:00,179 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::LOGReference, _objData=UmlObjectData [id=3424, uuid={F7098AC8-CDAB-441c-AC10-33A78F44FF4A}, since=null, name=LogRef, alias=, stereotype=, visibility=public, txtDescription='Path-name of the LOG instance (= LDName/LNName.LogName).', htmlDescription='

Path-name of the LOG instance (= LDName/LNName.LogName).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1666, _eaTypeName=P_VISIBLE_STRING129, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,179 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::LOGReference, _objData=UmlObjectData [id=3425, uuid={E6AF9494-0CB6-469c-B908-B6EFD9D95BF2}, since=null, name=LogName, alias=, stereotype=, visibility=public, txtDescription='Name of a LOG instance, unambiguously identifying it within the scope of an LN0.', htmlDescription='

Name of a LOG instance, unambiguously identifying it within the scope of an LN0.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,179 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::LOGReference, _objData=UmlObjectData [id=3426, uuid={DA9F9473-FD92-4da5-85D5-D15BE37BADB8}, since=null, name=FC, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=LG, _eaTypeId=1699, _eaTypeName=ServiceFcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,179 [main] DEBUG ClassBuilder - Adding LOGReference as subclass of LNReference +2024-09-08 15:10:00,179 [main] TRACE ClassBuilder - read from EA: ObjectReferences::LOGReference +2024-09-08 15:10:00,179 [main] TRACE ClassBuilder - Class LNOwnedDSReference (10 in package ObjectReferences) +2024-09-08 15:10:00,179 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::LNOwnedDSReference, _objData=UmlObjectData [id=3427, uuid={3116B08C-7D30-4ec7-AC48-8E0C602D1640}, since=null, name=DSRef, alias=, stereotype=, visibility=public, txtDescription='Path-name of the ConfiguredDS or PersistentDS instance (= LDName/LNName.DSName).', htmlDescription='

Path-name of the ConfiguredDS or PersistentDS instance (= LDName/LNName.DSName).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1666, _eaTypeName=P_VISIBLE_STRING129, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,180 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::LNOwnedDSReference, _objData=UmlObjectData [id=3428, uuid={098059FE-54F8-4eef-805F-94F5F8358D6F}, since=null, name=DSName, alias=, stereotype=, visibility=public, txtDescription='Name of a DS instance, unambiguously identifying the DS within the scope of an LN.', htmlDescription='

Name of a DS instance, unambiguously identifying the DS within the scope of an LN.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,180 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2197, uuid={D8DD6FD7-E4C3-4a71-A7A7-6449EE515566}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=LNOwnedDSReference, _otherEndName=?] +2024-09-08 15:10:00,180 [main] DEBUG ClassBuilder - Adding LNOwnedDSReference as subclass of LNReference +2024-09-08 15:10:00,180 [main] TRACE ClassBuilder - read from EA: ObjectReferences::LNOwnedDSReference +2024-09-08 15:10:00,180 [main] TRACE ClassBuilder - Class FCDReference (11 in package ObjectReferences) +2024-09-08 15:10:00,180 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::FCDReference, _objData=UmlObjectData [id=3429, uuid={EAAE1C56-FED7-4d69-BF98-90C0809A9FB1}, since=null, name=FCDRef, alias=, stereotype=, visibility=public, txtDescription='Path-name of the PrimitiveCDC instance (i.e., data object when contained in LN, or sub-data object when contained in ComposedCDC), accompanied with a functional constraint (= [FC] DataRef).', htmlDescription='

Path-name of the PrimitiveCDC instance (i.e., data object when contained in LN, or sub-data object when contained in ComposedCDC), accompanied with a functional constraint (= [FC] DataRef).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1666, _eaTypeName=P_VISIBLE_STRING129, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,180 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::FCDReference, _objData=UmlObjectData [id=3430, uuid={2D72DE98-BB2A-44ad-B44D-45DEE23C6E0C}, since=null, name=FCDRefWithoutFC, alias=, stereotype=, visibility=public, txtDescription='Path-name of the PrimitiveCDC instance (contained in LN or in ComposedCDC) without functional constraint (= DataRef).', htmlDescription='

Path-name of the PrimitiveCDC instance (contained in LN or in ComposedCDC) without functional constraint (= DataRef).

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1666, _eaTypeName=P_VISIBLE_STRING129, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,180 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::FCDReference, _objData=UmlObjectData [id=3431, uuid={F261F75D-C2F6-4b2d-9261-38E92897916A}, since=null, name=FC, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,181 [main] DEBUG ClassBuilder - Adding FCDReference as subclass of CDCReference +2024-09-08 15:10:00,181 [main] TRACE ClassBuilder - read from EA: ObjectReferences::FCDReference +2024-09-08 15:10:00,181 [main] TRACE ClassBuilder - Class FCDAReference (12 in package ObjectReferences) +2024-09-08 15:10:00,181 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::FCDAReference, _objData=UmlObjectData [id=3432, uuid={5B3E1679-F475-4a48-B642-92D8EAC54344}, since=null, name=FCDARef, alias=, stereotype=, visibility=public, txtDescription='Path-name of the PrimitiveDA instance (i.e., leaf attribute contained in CDC or in ComposedDA) accompanied with a functional constraint and (if applicable) index within array (= [FC] DataAttrRef(m)).', htmlDescription='

Path-name of the PrimitiveDA instance (i.e., leaf attribute contained in CDC or in ComposedDA) accompanied with a functional constraint and (if applicable) index within array (= [FC] DataAttrRef(m)).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1666, _eaTypeName=P_VISIBLE_STRING129, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,181 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::FCDAReference, _objData=UmlObjectData [id=3433, uuid={71B22A59-B87D-4866-B0BD-DF359940497E}, since=null, name=FCDARefWithoutFC, alias=, stereotype=, visibility=public, txtDescription='Path-name of the PrimitiveDA instance (i.e., attribute contained in CDC or in ComposedDA) without functional constraint (= DataAttrRef).', htmlDescription='

Path-name of the PrimitiveDA instance (i.e., attribute contained in CDC or in ComposedDA) without functional constraint (= DataAttrRef).

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1667, _eaTypeName=P_VISIBLE_STRING255, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,181 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::FCDAReference, _objData=UmlObjectData [id=3434, uuid={39C98C0B-3EBC-457d-ADB8-6E0955A9AAAC}, since=null, name=LeafAttrName, alias=, stereotype=, visibility=public, txtDescription='Concatenation of one or more names of instances of DA, as follows: +1. For a PrimitiveDA, it is a single name. Example is "stVal" from the reference [ST] myLD3/XCBR1.Pos.stVal (where stVal is of type DpStatus:EnumDA). +2. For a ComposedDA, it is concatenation of two or more names, starting from the ComposedDA down to the PrimitiveDA it contains. One example is "cVal.mag.f" from the reference [MX] myLD3/MMXU1.PhV.phsA.cVal.mag.f. In this example: +- cVal is of type Vector:ComposedDA; one level further, +- cVal.mag is of type AnalogueValue:ComposedDA; one level further, +- cVal.mag.f is of type FLOAT32:PrimitiveDA. +Modelling note: Corresponds to DataAttributeName.[DataAttributeName...]. +Implementation note: After DataName and SubDataName of CDCReference have been correctly parsed, this is the concatenation of all names down to the leaf.', htmlDescription='

Concatenation of one or more names of instances of DA, as follows:

  1. For a PrimitiveDA, it is a single name. Example is "stVal" from the reference [ST] myLD3/XCBR1.Pos.stVal (where stVal is of type DpStatus:EnumDA).
  2. For a ComposedDA, it is concatenation of two or more names, starting from the ComposedDA down to the PrimitiveDA it contains. One example is "cVal.mag.f" from the reference [MX] myLD3/MMXU1.PhV.phsA.cVal.mag.f. In this example:
  • cVal is of type Vector:ComposedDA; one level further,
  • cVal.mag is of type AnalogueValue:ComposedDA; one level further,
  • cVal.mag.f is of type FLOAT32:PrimitiveDA.

Modelling note: Corresponds to DataAttributeName.[DataAttributeName...].

Implementation note: After DataName and SubDataName of CDCReference have been correctly parsed, this is the concatenation of all names down to the leaf.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,183 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::FCDAReference, _objData=UmlObjectData [id=3435, uuid={4358ED41-699C-4b19-A10D-D41877B1B0FF}, since=null, name=NumArrayElement, alias=, stereotype=, visibility=public, txtDescription='If the reference contains an array of DAs or CDCs, this is the index of the array element (e.g., reference [MX] myHWYE1.phsAHar(3).cVal.mag.f references the value of cVal with NumArrayElement=3), ignored otherwise. +Modelling note: Corresponds to NumArrayElement in one of the following: +- LDName/LNName.DataObjectName[.SubDataObjectName(NumArrayElement)[. ...]].DataAttributeName[.SubDataAttributeName[. ...]] +- LDName/LNName.DataObjectName[.SubDataObjectName[. ...]].DataAttributeName[(NumArrayElement)][.SubDataAttributeName[. ...]] +- LDName/LNName.DataObjectName[.SubDataObjectName[. ...]].DataAttributeName(NumArrayElement)', htmlDescription='

If the reference contains an array of DAs or CDCs, this is the index of the array element (e.g., reference [MX] myHWYE1.phsAHar(3).cVal.mag.f references the value of cVal with NumArrayElement=3), ignored otherwise.

Modelling note: Corresponds to NumArrayElement in one of the following:

  • LDName/LNName.DataObjectName[.SubDataObjectName(NumArrayElement)[. ...]].DataAttributeName[.SubDataAttributeName[. ...]]
  • LDName/LNName.DataObjectName[.SubDataObjectName[. ...]].DataAttributeName[(NumArrayElement)][.SubDataAttributeName[. ...]]
  • LDName/LNName.DataObjectName[.SubDataObjectName[. ...]].DataAttributeName(NumArrayElement)
'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1661, _eaTypeName=P_INT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,183 [main] DEBUG ClassBuilder - Adding FCDAReference as subclass of FCDReference +2024-09-08 15:10:00,183 [main] TRACE ClassBuilder - read from EA: ObjectReferences::FCDAReference +2024-09-08 15:10:00,183 [main] INFO PackageBuilder - processing package DetailedDiagrams (0) ... +2024-09-08 15:10:00,183 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=DetailedDiagrams, _objData=UmlObjectData [id=203, uuid={A331E064-B559-441c-A56E-9A7DB01E7188}, since=null, name=ImplementationNotes-ComposedCDCs, alias=, stereotype=, visibility=public, txtDescription='(no doc)', htmlDescription='

(no doc)

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,184 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1707, uuid={676CE2C4-A1DA-47ad-9651-9F449F390614}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='NOT UPDATED TO ED.2 YET! +When communicating with an underlying MMS API and without the detailed CDC/LN model, but only through the MetaModel, there is no automatic way (e.g., through reflection) to distinguish composed from primitive CDCs. +Therefore, one would need to define a resource file holding somehow the three composed CDCs: +- WYE = {phsA, phsB, phsC, neut, net, res} +- DEL = {phsAB, phsBC, phsCA} and +- SEQ = {c1, c2, c3} +as well as triplets like in the right two notes below (either one or the other), and store these as hash maps.', htmlDescription='

NOT UPDATED TO ED.2 YET!

When communicating with an underlying MMS API and without the detailed CDC/LN model, but only through the MetaModel, there is no automatic way (e.g., through reflection) to distinguish composed from primitive CDCs.

Therefore, one would need to define a resource file holding somehow the three composed CDCs:

- WYE = {phsA, phsB, phsC, neut, net, res}

- DEL = {phsAB, phsBC, phsCA} and

- SEQ = {c1, c2, c3}

as well as triplets like in the right two notes below (either one or the other), and store these as hash maps.

'], _containingPackage=DetailedDiagrams, _otherEndName=] +2024-09-08 15:10:00,184 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=ObjectReferences, _depth=3, _eaElementID=1706, _objData=UmlObjectData [id=96, uuid={431DCB78-8654-440e-9A98-54860605771F}, since=null, name=DetailedDiagrams, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=58, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1707, uuid={676CE2C4-A1DA-47ad-9651-9F449F390614}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='NOT UPDATED TO ED.2 YET! +When communicating with an underlying MMS API and without the detailed CDC/LN model, but only through the MetaModel, there is no automatic way (e.g., through reflection) to distinguish composed from primitive CDCs. +Therefore, one would need to define a resource file holding somehow the three composed CDCs: +- WYE = {phsA, phsB, phsC, neut, net, res} +- DEL = {phsAB, phsBC, phsCA} and +- SEQ = {c1, c2, c3} +as well as triplets like in the right two notes below (either one or the other), and store these as hash maps.', htmlDescription='

NOT UPDATED TO ED.2 YET!

When communicating with an underlying MMS API and without the detailed CDC/LN model, but only through the MetaModel, there is no automatic way (e.g., through reflection) to distinguish composed from primitive CDCs.

Therefore, one would need to define a resource file holding somehow the three composed CDCs:

- WYE = {phsA, phsB, phsC, neut, net, res}

- DEL = {phsAB, phsBC, phsCA} and

- SEQ = {c1, c2, c3}

as well as triplets like in the right two notes below (either one or the other), and store these as hash maps.

'], _containingPackage=DetailedDiagrams, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=DetailedDiagrams, _objData=UmlObjectData [id=203, uuid={A331E064-B559-441c-A56E-9A7DB01E7188}, since=null, name=ImplementationNotes-ComposedCDCs, alias=, stereotype=, visibility=public, txtDescription='(no doc)', htmlDescription='

(no doc)

'], _portrait=true, _kind=LOGICAL]] +2024-09-08 15:10:00,184 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_2, _depth=2, _eaElementID=1682, _objData=UmlObjectData [id=95, uuid={C7D34776-13CF-4d1a-A441-C737F9FC7E0F}, since=null, name=ObjectReferences, alias=, stereotype=, visibility=public, txtDescription='Not explicitly defined in the standard. We define subtypes for P_ObjectReference type (which is just a string), so as to allow for validation per type of element. This is useful when there is no detailed LN/CDC/FCDA/DA model, and when an application receives only strings as references from the underlying MMS stack - it allows for easy building of the meta-model objects.', htmlDescription='

Not explicitly defined in the standard. We define subtypes for P_ObjectReference type (which is just a string), so as to allow for validation per type of element. This is useful when there is no detailed LN/CDC/FCDA/DA model, and when an application receives only strings as references from the underlying MMS stack - it allows for easy building of the meta-model objects.

'], _modelId=58, _selfDependent=false, 4_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1684, uuid={A20EACAA-52B0-4123-8FE8-AC7004CDFF73}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Implementation note: To identify ComposedCDCs from e.g. MMS strings (to correctly assign dataName and SubDataName), you have to construct the hashmap based on definitions from IEC 61850-7-3, since MMS does not provide information about PrimitiveCDC and ComposedCDC. See diagram ObjectReferences::ImlementationNotes-ComplexCDCs.', htmlDescription='

Implementation note: To identify ComposedCDCs from e.g. MMS strings (to correctly assign dataName and SubDataName), you have to construct the hashmap based on definitions from IEC 61850-7-3, since MMS does not provide information about PrimitiveCDC and ComposedCDC. See diagram ObjectReferences::ImlementationNotes-ComplexCDCs.

'], _containingPackage=ObjectReferences, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1690, uuid={3601A814-6336-4e81-A0C4-605A030114AF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Do have a better name for LNOwnedDSReference (and LNOwnedDS)?', htmlDescription='

TODO: Do have a better name for LNOwnedDSReference (and LNOwnedDS)?

'], _containingPackage=ObjectReferences, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1704, uuid={B91F5E3E-1FE7-42cc-B656-C9B2CCB194E9}, since=null, name=ObjectReferences : ObjectReferencesModellingNotes, alias=, stereotype=, visibility=public, txtDescription='ObjectReferences : ObjectReferencesModellingNotes', htmlDescription='

ObjectReferences : ObjectReferencesModellingNotes

'], _containingPackage=ObjectReferences, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1705, uuid={C0FD65FA-8022-455d-A4A4-9198F69255B4}, since=null, name=ObjectReferences : ImplementationNotes-ComposedCDCs, alias=, stereotype=, visibility=public, txtDescription='ObjectReferences : ImplementationNotes-ComposedCDCs', htmlDescription='

ObjectReferences : ImplementationNotes-ComposedCDCs

'], _containingPackage=ObjectReferences, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=ObjectReferences, _objData=UmlObjectData [id=201, uuid={5DEE7E4C-4C25-4a75-B590-A96364073A9E}, since=null, name=ObjectReferences, alias=, stereotype=, visibility=public, txtDescription='This diagram shows an overview of strongly typed object references, not explicitly specified in the standard.', htmlDescription='

This diagram shows an overview of strongly typed object references, not explicitly specified in the standard.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=1, _dependenciesAsTarget=2, _classes=11, _childPackages=1] +2024-09-08 15:10:00,184 [main] INFO PackageBuilder - processing package AttrValues (7) ... +2024-09-08 15:10:00,185 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=AttrValues, _objData=UmlObjectData [id=204, uuid={5B6649AF-5F96-4bae-8755-C501F26C4F08}, since=null, name=AttrValues, alias=, stereotype=, visibility=public, txtDescription='Diagram shows AttrValue abstract class and its subclasses, parallelling concrete types defined in the enumeration AttrValueKind. +The package also contains two types used in get services as formal arguments or return values.', htmlDescription='

Diagram shows AttrValue abstract class and its subclasses, parallelling concrete types defined in the enumeration AttrValueKind.

The package also contains two types used in get services as formal arguments or return values.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,185 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::AttrValues, _objData=UmlObjectData [id=3171, uuid={EA333334-32A1-48ab-9F19-ADED674571F6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,185 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::AttrValues, _objData=UmlObjectData [id=3300, uuid={66306DED-57E5-415a-9801-4DB8B70544E8}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,185 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::AttrValues->IEC61850_7_2::CoreTypes, _objData=UmlObjectData [id=3322, uuid={4007F42C-AD2B-4122-ADB0-BE0A33C62F71}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,185 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::AttrValues->IEC61850_7_2::ObjectReferences, _objData=UmlObjectData [id=3323, uuid={0B7067BC-EDBC-4ae5-AF55-5FBD1BE1F769}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,186 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1712, uuid={6B183322-A2BA-4c8c-A524-72DFE3024027}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: We have an option to replace all methods with attributes. This was implementation model and we never had public attributes, only public methods (so to be able to add e.g. events in the code when value changes). Having public attribute in the code is bad OO software design, because it becomes uncontrollable global variable...', htmlDescription='

TODO: We have an option to replace all methods with attributes. This was implementation model and we never had public attributes, only public methods (so to be able to add e.g. events in the code when value changes). Having public attribute in the code is bad OO software design, because it becomes uncontrollable global variable...

'], _containingPackage=AttrValues, _otherEndName=] +2024-09-08 15:10:00,186 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1713, uuid={14891725-B9B9-459d-9CD3-68EA062CCFC9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling notes: +In C/C++, you'll typically use a union, so we could stay with AttrValue class without subclasses. In an OO language, for a value (getVal() method return) type, or an equivalent attribute instead, we need to cast what is received from the underlying protocol stack to a specific primitive type, and continue working with that correctly typed value. We cannot use "void *" here as return value (or alternatively, attribute) type, because that is +This would have been a place to use UML parameterised class (corresponding to e.g., Java generics or C++ templates: AttrValue etc.). Type for return value could be parameter class (). For the implementation, we would not need the AttrValue subclasses, but for modelling still would (in UML: so called bindings, e.g. AttrValue would inherit from AttrValue), in order to explicitly specify applicable types. We cannot work with subtyping of primitives, because they don't have a common superclass. UML parameterised classes wouldn't bring us anything for modelling, so we avoided that somewhat advanced UML construct for the sake of simplicity.', htmlDescription='

Modelling notes:

In C/C++, you'll typically use a union, so we could stay with AttrValue class without subclasses. In an OO language, for a value (getVal() method return) type, or an equivalent attribute instead, we need to cast what is received from the underlying protocol stack to a specific primitive type, and continue working with that correctly typed value. We cannot use "void *" here as return value (or alternatively, attribute) type, because that is

This would have been a place to use UML parameterised class (corresponding to e.g., Java generics or C++ templates: AttrValue<T> etc.). Type for return value could be parameter class (<T>). For the implementation, we would not need the AttrValue subclasses, but for modelling still would (in UML: so called bindings, e.g. AttrValue<P_INT32U> would inherit from AttrValue<T>), in order to explicitly specify applicable types. We cannot work with subtyping of primitives, because they don't have a common superclass. UML parameterised classes wouldn't bring us anything for modelling, so we avoided that somewhat advanced UML construct for the sake of simplicity.

'], _containingPackage=AttrValues, _otherEndName=] +2024-09-08 15:10:00,187 [main] TRACE ClassBuilder - Class AttrValueKind (1 in package AttrValues) +2024-09-08 15:10:00,187 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3436, uuid={0CD618D6-9894-4ff8-BC73-423F6893A6A5}, since=null, name=P_BOOLEAN, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,187 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3437, uuid={6551C5E8-D6E9-49d5-9AF7-A7CB6CFF3B7A}, since=null, name=P_INT8, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,187 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3438, uuid={EADD9C1B-B2F3-4f4d-AE79-24D99E1B9CF3}, since=null, name=P_INT8U, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,187 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3439, uuid={48A227DF-953F-4b3d-A61B-C2F13533F51E}, since=null, name=P_INT16, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,187 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3440, uuid={53AB324D-B98F-4eda-B714-33C0D8546C51}, since=null, name=P_INT16U, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,187 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3441, uuid={A1C5625F-CF14-42eb-89D7-E965C05D4E05}, since=null, name=P_INT24U, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,188 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3442, uuid={41B37AC4-C6E3-4c3c-982E-0748EE076D1D}, since=null, name=P_INT32, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,188 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3443, uuid={DDAD6ABA-D92C-47da-8952-80F1F44B667E}, since=null, name=P_INT32U, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,188 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3444, uuid={C43183EC-848C-4a18-974D-39FAF587D5BB}, since=null, name=P_INT64, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,188 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3445, uuid={88992818-F730-42a6-A4EA-07B399C3B510}, since=null, name=P_FLOAT32, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,188 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3446, uuid={AC9E1A64-778C-4b51-B404-3CEA2673F0B0}, since=null, name=P_OCTET_STRING64, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,188 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3447, uuid={B7E4700E-57CD-471d-A7CB-F8187FAD8581}, since=null, name=P_VISIBLE_STRING64, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,189 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3448, uuid={3AF6EDF2-E22A-4422-B62B-530F48F0FBB6}, since=null, name=P_VISIBLE_STRING255, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,189 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3449, uuid={9658B919-5427-489d-A52B-A60B68BC8902}, since=null, name=P_UNICODE_STRING255, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,189 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3450, uuid={6F88E821-D670-4523-872E-7DDE609D3297}, since=null, name=P_TimeStamp, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,189 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3451, uuid={43CDF85A-8A50-45b9-86BC-B379EA3F8454}, since=null, name=Quality, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,189 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3452, uuid={F5F5EC82-34DD-42b7-8D3E-9E5992F28140}, since=null, name=P_ObjectReference, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,189 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3453, uuid={DCA0A1E1-F5A5-4b5d-80F8-555908D760AA}, since=null, name=P_PHYCOMADDR, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,189 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3454, uuid={F943622C-C2DA-4ce0-A28D-781203285269}, since=null, name=P_TriggerConditions, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,189 [main] TRACE ClassBuilder - read from EA: AttrValues::AttrValueKind +2024-09-08 15:10:00,189 [main] TRACE ClassBuilder - Class AttrValue (2 in package AttrValues) +2024-09-08 15:10:00,190 [main] TRACE OperationBuilder - read from EA: OperationBuilder [_containingClass=AttrValue, _objData=UmlObjectData [id=7, uuid={AE278709-6801-41ab-B747-96509456D69B}, since=null, name=getType, alias=, stereotype=, visibility=public, txtDescription='Returns the type of this value.', htmlDescription='

Returns the type of this value.

'], _abstract=true, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=null, _eaReturnTypeId=1714, _eaReturnTypeName=AttrValueKind] +2024-09-08 15:10:00,190 [main] TRACE ClassBuilder - read from EA: AttrValues::AttrValue +2024-09-08 15:10:00,190 [main] TRACE ClassBuilder - Class AttrDefinition (22 in package AttrValues) +2024-09-08 15:10:00,190 [main] TRACE OperationBuilder - read from EA: OperationBuilder [_containingClass=AttrDefinition, _objData=UmlObjectData [id=46, uuid={C67D899D-E6F2-43a4-A6F8-1ECB42761E65}, since=null, name=getFcdaRef, alias=, stereotype=, visibility=public, txtDescription='Returns attribute's FCDAReference.', htmlDescription='

Returns attribute's FCDAReference.

'], _abstract=false, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=null, _eaReturnTypeId=1703, _eaReturnTypeName=FCDAReference] +2024-09-08 15:10:00,190 [main] TRACE OperationBuilder - read from EA: OperationBuilder [_containingClass=AttrDefinition, _objData=UmlObjectData [id=47, uuid={F41461CE-0224-4867-9FC5-05D412807A13}, since=null, name=getValType, alias=, stereotype=, visibility=public, txtDescription='Returns type of attribute's value.', htmlDescription='

Returns type of attribute's value.

'], _abstract=false, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=null, _eaReturnTypeId=1714, _eaReturnTypeName=AttrValueKind] +2024-09-08 15:10:00,190 [main] TRACE ClassBuilder - read from EA: AttrValues::AttrDefinition +2024-09-08 15:10:00,190 [main] TRACE ClassBuilder - Class NamedAttrValue (23 in package AttrValues) +2024-09-08 15:10:00,190 [main] TRACE OperationBuilder - read from EA: OperationBuilder [_containingClass=NamedAttrValue, _objData=UmlObjectData [id=48, uuid={129BA9AB-F84D-4f61-863F-E9AD33EC1D36}, since=null, name=getFcdaRef, alias=, stereotype=, visibility=public, txtDescription='Returns attribute's FCDAReference.', htmlDescription='

Returns attribute's FCDAReference.

'], _abstract=false, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=null, _eaReturnTypeId=1703, _eaReturnTypeName=FCDAReference] +2024-09-08 15:10:00,190 [main] TRACE OperationBuilder - read from EA: OperationBuilder [_containingClass=NamedAttrValue, _objData=UmlObjectData [id=49, uuid={91C84065-1E39-4d4a-8927-B426FCFEB686}, since=null, name=getVal, alias=, stereotype=, visibility=public, txtDescription='Returns attribute's value.', htmlDescription='

Returns attribute's value.

'], _abstract=false, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=null, _eaReturnTypeId=1715, _eaReturnTypeName=AttrValue] +2024-09-08 15:10:00,191 [main] TRACE ClassBuilder - read from EA: AttrValues::NamedAttrValue +2024-09-08 15:10:00,191 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_2, _depth=2, _eaElementID=1711, _objData=UmlObjectData [id=97, uuid={2BC6E948-C1D9-4e30-9568-7F9E4ECAF602}, since=null, name=AttrValues, alias=, stereotype=, visibility=public, txtDescription='This clause defines classes that hold primitive values with type information. They are all used for different get and set services that operate on leaf data attributes without knowledge of detailed data model (i.e., data attributes, functional constraints, common data classes and logical nodes). In particular, the abstract class AttrValue is also used within the meta-model's BasicDA to hold the actual value. This decoupling allows to instantiate meta-model classes from "raw" services provided by live servers, as well as from SCL instance file.', htmlDescription='

This clause defines classes that hold primitive values with type information. They are all used for different get and set services that operate on leaf data attributes without knowledge of detailed data model (i.e., data attributes, functional constraints, common data classes and logical nodes). In particular, the abstract class AttrValue is also used within the meta-model's BasicDA to hold the actual value. This decoupling allows to instantiate meta-model classes from "raw" services provided by live servers, as well as from SCL instance file.

'], _modelId=58, _selfDependent=false, 2_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1712, uuid={6B183322-A2BA-4c8c-A524-72DFE3024027}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: We have an option to replace all methods with attributes. This was implementation model and we never had public attributes, only public methods (so to be able to add e.g. events in the code when value changes). Having public attribute in the code is bad OO software design, because it becomes uncontrollable global variable...', htmlDescription='

TODO: We have an option to replace all methods with attributes. This was implementation model and we never had public attributes, only public methods (so to be able to add e.g. events in the code when value changes). Having public attribute in the code is bad OO software design, because it becomes uncontrollable global variable...

'], _containingPackage=AttrValues, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1713, uuid={14891725-B9B9-459d-9CD3-68EA062CCFC9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling notes: +In C/C++, you'll typically use a union, so we could stay with AttrValue class without subclasses. In an OO language, for a value (getVal() method return) type, or an equivalent attribute instead, we need to cast what is received from the underlying protocol stack to a specific primitive type, and continue working with that correctly typed value. We cannot use "void *" here as return value (or alternatively, attribute) type, because that is +This would have been a place to use UML parameterised class (corresponding to e.g., Java generics or C++ templates: AttrValue etc.). Type for return value could be parameter class (). For the implementation, we would not need the AttrValue subclasses, but for modelling still would (in UML: so called bindings, e.g. AttrValue would inherit from AttrValue), in order to explicitly specify applicable types. We cannot work with subtyping of primitives, because they don't have a common superclass. UML parameterised classes wouldn't bring us anything for modelling, so we avoided that somewhat advanced UML construct for the sake of simplicity.', htmlDescription='

Modelling notes:

In C/C++, you'll typically use a union, so we could stay with AttrValue class without subclasses. In an OO language, for a value (getVal() method return) type, or an equivalent attribute instead, we need to cast what is received from the underlying protocol stack to a specific primitive type, and continue working with that correctly typed value. We cannot use "void *" here as return value (or alternatively, attribute) type, because that is

This would have been a place to use UML parameterised class (corresponding to e.g., Java generics or C++ templates: AttrValue<T> etc.). Type for return value could be parameter class (<T>). For the implementation, we would not need the AttrValue subclasses, but for modelling still would (in UML: so called bindings, e.g. AttrValue<P_INT32U> would inherit from AttrValue<T>), in order to explicitly specify applicable types. We cannot work with subtyping of primitives, because they don't have a common superclass. UML parameterised classes wouldn't bring us anything for modelling, so we avoided that somewhat advanced UML construct for the sake of simplicity.

'], _containingPackage=AttrValues, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=AttrValues, _objData=UmlObjectData [id=204, uuid={5B6649AF-5F96-4bae-8755-C501F26C4F08}, since=null, name=AttrValues, alias=, stereotype=, visibility=public, txtDescription='Diagram shows AttrValue abstract class and its subclasses, parallelling concrete types defined in the enumeration AttrValueKind. +The package also contains two types used in get services as formal arguments or return values.', htmlDescription='

Diagram shows AttrValue abstract class and its subclasses, parallelling concrete types defined in the enumeration AttrValueKind.

The package also contains two types used in get services as formal arguments or return values.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=2, _dependenciesAsTarget=2, _classes=4 +2024-09-08 15:10:00,191 [main] INFO PackageBuilder - processing package BasicDAs (8) ... +2024-09-08 15:10:00,191 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=BasicDAs, _objData=UmlObjectData [id=205, uuid={E958D99A-04E8-4d71-B3E2-881E285B60E2}, since=null, name=BasicDAs, alias=, stereotype=, visibility=public, txtDescription='Shows all primitive data attributes with superclasses that define services (from Part 7-2).', htmlDescription='

Shows all primitive data attributes with superclasses that define services (from Part 7-2).

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,192 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::BasicDAs, _objData=UmlObjectData [id=2947, uuid={34CA4A5E-1E27-47e9-BA6A-04938395F510}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,192 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::BasicDAs, _objData=UmlObjectData [id=3063, uuid={3A733EFE-40F7-4e54-BAA6-405269B1FDDC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,192 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::BasicDAs->IEC61850_7_2::ACSIEnums, _objData=UmlObjectData [id=3298, uuid={F56ADDA0-372E-4056-B822-00216243BD63}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,192 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::BasicDAs->null, _objData=UmlObjectData [id=3299, uuid={79251C03-047F-49a4-8FBC-DA669F5E0A6A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,192 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::BasicDAs->IEC61850_7_2::AttrValues, _objData=UmlObjectData [id=3300, uuid={66306DED-57E5-415a-9801-4DB8B70544E8}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,192 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::BasicDAs->IEC61850_7_2::CoreTypes, _objData=UmlObjectData [id=3301, uuid={58E49D9F-1448-4082-AF53-C39A20175114}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,193 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1738, uuid={987E6C0E-BF15-4719-B21A-79267A56B63B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: May be more DA types needed (for 7-2 CDCs - not analysed yet).', htmlDescription='

TODO: May be more DA types needed (for 7-2 CDCs - not analysed yet).

'], _containingPackage=BasicDAs, _otherEndName=] +2024-09-08 15:10:00,193 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1739, uuid={7B5436EB-4D27-4e20-AC62-E425926FD970}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: +New types (not in Ed.1) are in green: +- INT24U is required for 61850-7-420 (SCR). +- PHYCOMADDR is new in Ed.2, for tracking CDCs.', htmlDescription='

Modelling note:

New types (not in Ed.1) are in green:

  • INT24U is required for 61850-7-420 (SCR).
  • PHYCOMADDR is new in Ed.2, for tracking CDCs.
'], _containingPackage=BasicDAs, _otherEndName=] +2024-09-08 15:10:00,193 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=1761, uuid={70C484F0-F4C0-481a-8E0A-779A50F8FA2D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=BasicDAs, _otherEndName=] +2024-09-08 15:10:00,193 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1762, uuid={824A4FE4-06C3-4d28-B5D5-E0393B87144C}, since=null, name=ACSIEnums : ACSIEnums, alias=, stereotype=, visibility=public, txtDescription='ACSIEnums : ACSIEnums', htmlDescription='

ACSIEnums : ACSIEnums

'], _containingPackage=BasicDAs, _otherEndName=] +2024-09-08 15:10:00,193 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1763, uuid={96D47867-4801-46a3-9334-C828BB8AB79C}, since=null, name=ObjectReferences : ObjectReferences, alias=, stereotype=, visibility=public, txtDescription='ObjectReferences : ObjectReferences', htmlDescription='

ObjectReferences : ObjectReferences

'], _containingPackage=BasicDAs, _otherEndName=] +2024-09-08 15:10:00,194 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1764, uuid={CDDB2815-C23A-43ef-9CD4-D977BA51D3D0}, since=null, name=CoreTypes : CoreTypes, alias=, stereotype=, visibility=public, txtDescription='CoreTypes : CoreTypes', htmlDescription='

CoreTypes : CoreTypes

'], _containingPackage=BasicDAs, _otherEndName=] +2024-09-08 15:10:00,194 [main] TRACE ClassBuilder - Class BOOLEAN (1 in package BasicDAs) +2024-09-08 15:10:00,194 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BasicDAs::BOOLEAN, _objData=UmlObjectData [id=3455, uuid={26303763-5425-4eb3-9E6B-A0E20714D69E}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,194 [main] TRACE ClassBuilder - read from EA: BasicDAs::BOOLEAN +2024-09-08 15:10:00,194 [main] TRACE ClassBuilder - Class INT16U (2 in package BasicDAs) +2024-09-08 15:10:00,194 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BasicDAs::INT16U, _objData=UmlObjectData [id=3458, uuid={5CAC1927-5377-434f-B9CF-DF014080FF25}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1659, _eaTypeName=P_INT16U, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,194 [main] TRACE ClassBuilder - read from EA: BasicDAs::INT16U +2024-09-08 15:10:00,195 [main] TRACE ClassBuilder - Class INT32 (3 in package BasicDAs) +2024-09-08 15:10:00,195 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BasicDAs::INT32, _objData=UmlObjectData [id=3460, uuid={8AB19364-EBA3-46e8-9A28-836D4BE3184E}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1656, _eaTypeName=P_INT32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,195 [main] TRACE ClassBuilder - read from EA: BasicDAs::INT32 +2024-09-08 15:10:00,195 [main] TRACE ClassBuilder - Class INT32U (4 in package BasicDAs) +2024-09-08 15:10:00,195 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BasicDAs::INT32U, _objData=UmlObjectData [id=3461, uuid={4E98F434-E893-4dd8-A976-1F47F85F096D}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1661, _eaTypeName=P_INT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,195 [main] TRACE ClassBuilder - read from EA: BasicDAs::INT32U +2024-09-08 15:10:00,196 [main] TRACE ClassBuilder - Class FLOAT32 (5 in package BasicDAs) +2024-09-08 15:10:00,196 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BasicDAs::FLOAT32, _objData=UmlObjectData [id=3456, uuid={0C453C24-788C-4b79-936D-F8ED7B6AC349}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1662, _eaTypeName=P_FLOAT32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,196 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2168, uuid={21EDCBE7-7D84-47c0-9FC1-19B43E26586E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=FLOAT32, _otherEndName=?] +2024-09-08 15:10:00,196 [main] TRACE ClassBuilder - read from EA: BasicDAs::FLOAT32 +2024-09-08 15:10:00,196 [main] TRACE ClassBuilder - Class UNICODE_STRING255 (6 in package BasicDAs) +2024-09-08 15:10:00,196 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BasicDAs::UNICODE_STRING255, _objData=UmlObjectData [id=3466, uuid={2D5EC3D2-2D30-4dcd-A716-1DDCC1D03618}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1663, _eaTypeName=P_UNICODE_STRING255, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,196 [main] TRACE ClassBuilder - read from EA: BasicDAs::UNICODE_STRING255 +2024-09-08 15:10:00,196 [main] TRACE ClassBuilder - Class VISIBLE_STRING255 (7 in package BasicDAs) +2024-09-08 15:10:00,197 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BasicDAs::VISIBLE_STRING255, _objData=UmlObjectData [id=3467, uuid={98E04197-6A6E-47dc-9801-656386DF6B28}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1667, _eaTypeName=P_VISIBLE_STRING255, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,197 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2166, uuid={4D18ADD4-1BA8-404b-8D95-DC3AA61AC6AD}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=VISIBLE_STRING255, _otherEndName=?] +2024-09-08 15:10:00,197 [main] TRACE ClassBuilder - read from EA: BasicDAs::VISIBLE_STRING255 +2024-09-08 15:10:00,197 [main] TRACE ClassBuilder - Class ObjectReference (15 in package BasicDAs) +2024-09-08 15:10:00,197 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BasicDAs::ObjectReference, _objData=UmlObjectData [id=3469, uuid={D656053C-0AC9-4b40-B071-8DCD708B0AF0}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1669, _eaTypeName=P_ObjectReference, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,197 [main] TRACE ClassBuilder - read from EA: BasicDAs::ObjectReference +2024-09-08 15:10:00,197 [main] TRACE ClassBuilder - Class PHYCOMADDR (16 in package BasicDAs) +2024-09-08 15:10:00,197 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BasicDAs::PHYCOMADDR, _objData=UmlObjectData [id=3470, uuid={601E9D69-6691-49ad-B034-6C76CA60A811}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1670, _eaTypeName=P_PHYCOMADDR, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,198 [main] TRACE ClassBuilder - read from EA: BasicDAs::PHYCOMADDR +2024-09-08 15:10:00,198 [main] TRACE ClassBuilder - Class TimeStamp (17 in package BasicDAs) +2024-09-08 15:10:00,198 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BasicDAs::TimeStamp, _objData=UmlObjectData [id=3471, uuid={3ABEB6F9-DB10-42c0-BB49-17EA3703AFBC}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1671, _eaTypeName=P_TimeStamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,198 [main] TRACE ClassBuilder - read from EA: BasicDAs::TimeStamp +2024-09-08 15:10:00,198 [main] TRACE ClassBuilder - Class TriggerConditions (18 in package BasicDAs) +2024-09-08 15:10:00,200 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [, _containingClass=TriggerConditions, _objData=UmlObjectData [id=206, uuid={ED500A2B-E7F0-4605-945F-0380F29C01D7}, since=null, name=Relation between trigger conditions, applicable trigger options and reporting, alias=, stereotype=, visibility=public, txtDescription='This diagram illustrates the relation between trigger conditions, applicable trigger options and reporting. The value of a data attribute that provides a specific trigger option (TrgOp) shall be monitored for reporting or logging if the report control block or the log control block, respectively has the specific trigger option (TrgOp) enabled. +In the Report Control Block 1, the TrgOp is dchg; the TrgOp of the first data attribute is dchg, dupd for the second, and qchg for the third data attribute. Reports of the Report Control Block 1 are sent on data changes only, because only dchg is enabled in the report control block. +In the Report Control Block 2, four trigger options are enabled. Therefore, all changes on respective data attributes will be reported (dchg for the first, dupd for the second, qchg for the third). In addition, a report will be sent on the expiration of the integrity period (see clause 17).', htmlDescription='

This diagram illustrates the relation between trigger conditions, applicable trigger options and reporting. The value of a data attribute that provides a specific trigger option (TrgOp) shall be monitored for reporting or logging if the report control block or the log control block, respectively has the specific trigger option (TrgOp) enabled.

In the Report Control Block 1, the TrgOp is dchg; the TrgOp of the first data attribute is dchg, dupd for the second, and qchg for the third data attribute. Reports of the Report Control Block 1 are sent on data changes only, because only dchg is enabled in the report control block.

In the Report Control Block 2, four trigger options are enabled. Therefore, all changes on respective data attributes will be reported (dchg for the first, dupd for the second, qchg for the third). In addition, a report will be sent on the expiration of the integrity period (see clause 17).

'], _portrait=true, _kind=CUSTOM] +2024-09-08 15:10:00,200 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=1758, uuid={69E28EB1-B299-4f6e-8446-73078B0B9916}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=TriggerConditions, _otherEndName=] +2024-09-08 15:10:00,200 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BasicDAs::TriggerConditions, _objData=UmlObjectData [id=3472, uuid={808EC92B-30E6-4882-A08E-64D4B5E48217}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1674, _eaTypeName=P_TriggerConditions, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,200 [main] TRACE ClassBuilder - read from EA: BasicDAs::TriggerConditions +2024-09-08 15:10:00,200 [main] TRACE ClassBuilder - Class DpStatus (19 in package BasicDAs) +2024-09-08 15:10:00,200 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BasicDAs::DpStatus, _objData=UmlObjectData [id=3473, uuid={B1D71CDD-86A6-4d33-A64E-6E6089FFAD0E}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1636, _eaTypeName=DpStatusKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,201 [main] TRACE ClassBuilder - read from EA: BasicDAs::DpStatus +2024-09-08 15:10:00,201 [main] TRACE ClassBuilder - Class BsControl (20 in package BasicDAs) +2024-09-08 15:10:00,201 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BasicDAs::BsControl, _objData=UmlObjectData [id=3474, uuid={5CF376EC-A611-4feb-9E92-1A3A726D9788}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1635, _eaTypeName=BsControlKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,201 [main] TRACE ClassBuilder - read from EA: BasicDAs::BsControl +2024-09-08 15:10:00,201 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_2, _depth=2, _eaElementID=1737, _objData=UmlObjectData [id=98, uuid={FEA6A5F2-17EE-4d01-BBD1-186F04DFE39C}, since=null, name=BasicDAs, alias=Basic data attributes, stereotype=, visibility=public, txtDescription='Part 7-2, sec.5 +Primitive data attribute types.', htmlDescription='

Part 7-2, sec.5

Primitive data attribute types.

'], _modelId=58, _selfDependent=false, 6_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1738, uuid={987E6C0E-BF15-4719-B21A-79267A56B63B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: May be more DA types needed (for 7-2 CDCs - not analysed yet).', htmlDescription='

TODO: May be more DA types needed (for 7-2 CDCs - not analysed yet).

'], _containingPackage=BasicDAs, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1739, uuid={7B5436EB-4D27-4e20-AC62-E425926FD970}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: +New types (not in Ed.1) are in green: +- INT24U is required for 61850-7-420 (SCR). +- PHYCOMADDR is new in Ed.2, for tracking CDCs.', htmlDescription='

Modelling note:

New types (not in Ed.1) are in green:

  • INT24U is required for 61850-7-420 (SCR).
  • PHYCOMADDR is new in Ed.2, for tracking CDCs.
'], _containingPackage=BasicDAs, _otherEndName=], SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=1761, uuid={70C484F0-F4C0-481a-8E0A-779A50F8FA2D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=BasicDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1762, uuid={824A4FE4-06C3-4d28-B5D5-E0393B87144C}, since=null, name=ACSIEnums : ACSIEnums, alias=, stereotype=, visibility=public, txtDescription='ACSIEnums : ACSIEnums', htmlDescription='

ACSIEnums : ACSIEnums

'], _containingPackage=BasicDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1763, uuid={96D47867-4801-46a3-9334-C828BB8AB79C}, since=null, name=ObjectReferences : ObjectReferences, alias=, stereotype=, visibility=public, txtDescription='ObjectReferences : ObjectReferences', htmlDescription='

ObjectReferences : ObjectReferences

'], _containingPackage=BasicDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1764, uuid={CDDB2815-C23A-43ef-9CD4-D977BA51D3D0}, since=null, name=CoreTypes : CoreTypes, alias=, stereotype=, visibility=public, txtDescription='CoreTypes : CoreTypes', htmlDescription='

CoreTypes : CoreTypes

'], _containingPackage=BasicDAs, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=BasicDAs, _objData=UmlObjectData [id=205, uuid={E958D99A-04E8-4d71-B3E2-881E285B60E2}, since=null, name=BasicDAs, alias=, stereotype=, visibility=public, txtDescription='Shows all primitive data attributes with superclasses that define services (from Part 7-2).', htmlDescription='

Shows all primitive data attributes with superclasses that define services (from Part 7-2).

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=4, _dependenciesAsTarget=2, _classes=13 +2024-09-08 15:10:00,201 [main] INFO PackageBuilder - processing package AcsiTypes (9) ... +2024-09-08 15:10:00,202 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=AcsiTypes, _objData=UmlObjectData [id=207, uuid={CA618DB9-D548-4fc1-B2E7-2AE6F2EE786D}, since=null, name=AcsiTypes, alias=, stereotype=, visibility=public, txtDescription='Overview of packages, their contents and dependencies.', htmlDescription='

Overview of packages, their contents and dependencies.

'], _portrait=true, _kind=PACKAGE] +2024-09-08 15:10:00,202 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::AcsiTypes, _objData=UmlObjectData [id=3176, uuid={18113968-8A0F-43a2-8F30-9621210BBB79}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,202 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::AcsiTypes->IEC61850_7_2::CoreTypes, _objData=UmlObjectData [id=3297, uuid={FCD42B62-BC4F-4487-B6C7-E7E726D09A02}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,203 [main] INFO PackageBuilder - processing package CommonAcsiTypes (1) ... +2024-09-08 15:10:00,203 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=CommonAcsiTypes, _objData=UmlObjectData [id=208, uuid={9C0EB421-7334-4ece-ACC5-6C0E720E63B2}, since=null, name=CommonAcsiTypes, alias=, stereotype=, visibility=public, txtDescription='Types used only in CoreAcsi or MetaModel, but not in parts 7-3 and 7-4.', htmlDescription='

Types used only in CoreAcsi or MetaModel, but not in parts 7-3 and 7-4.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,203 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = AcsiTypes::CommonAcsiTypes->IEC61850_7_2::CoreTypes, _objData=UmlObjectData [id=3288, uuid={38E71389-9629-4cc5-9975-FC4214E837B4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,204 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1768, uuid={ED8223CD-9A7C-4260-9BF0-4C8591BFABCE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: We have modelled service errors, originally defined in 6.1.2.6 ServiceError type enumeration, as exceptions (instead of return parameters). Using exceptions allowed us for: +- an OO way of explicitly defining multiple "error" conditions, and, +- explicit specification of all "error" conditions that can apply to any one service. +We need to decide when working on services (CoreAcsi) on how to proceed with this: +- Keeping exceptions, adding enum, and an attribute on exception giving the corresponding enum literal/value? And also explicitly defining which exception(s) may apply to which service. +- Totally removing exceptions, and somehow incorporating negative response into classes used as return values from service formal arguments? +In every case, we must document the enumerated values, because the semantic of many of them is not clear to a (poor) software engineer...', htmlDescription='

TODO: We have modelled service errors, originally defined in 6.1.2.6 ServiceError type enumeration, as exceptions (instead of return parameters). Using exceptions allowed us for:

  • an OO way of explicitly defining multiple "error" conditions, and,
  • explicit specification of all "error" conditions that can apply to any one service.

We need to decide when working on services (CoreAcsi) on how to proceed with this:

  • Keeping exceptions, adding enum, and an attribute on exception giving the corresponding enum literal/value? And also explicitly defining which exception(s) may apply to which service.
  • Totally removing exceptions, and somehow incorporating negative response into classes used as return values from service formal arguments?

In every case, we must document the enumerated values, because the semantic of many of them is not clear to a (poor) software engineer...

'], _containingPackage=CommonAcsiTypes, _otherEndName=] +2024-09-08 15:10:00,204 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1769, uuid={3D82FEF1-77B0-4982-A9B8-0E99C62D3DF5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Update classes in blue to Ed.2. Possibly more to come after detailed analysis.', htmlDescription='

TODO: Update classes in blue to Ed.2. Possibly more to come after detailed analysis.

'], _containingPackage=CommonAcsiTypes, _otherEndName=] +2024-09-08 15:10:00,205 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1778, uuid={8C2A80C7-34D1-4797-977D-C78CF31CDE06}, since=null, name=CoreAcsi : CoreAcsi, alias=, stereotype=, visibility=public, txtDescription='CoreAcsi : CoreAcsi', htmlDescription='

CoreAcsi : CoreAcsi

'], _containingPackage=CommonAcsiTypes, _otherEndName=] +2024-09-08 15:10:00,205 [main] TRACE ClassBuilder - Class P_OCTET_STRING (0 in package CommonAcsiTypes) +2024-09-08 15:10:00,206 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = null->CommonAcsiTypes::P_OCTET_STRING, _objData=UmlObjectData [id=3424, uuid={BE25D6E1-D428-445f-B6CD-81B3E0FC5922}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], 1_taggedValues{dummyDepTag=}] +2024-09-08 15:10:00,206 [main] TRACE ClassBuilder - read from EA: CommonAcsiTypes::P_OCTET_STRING +2024-09-08 15:10:00,206 [main] TRACE ClassBuilder - Class IPAddress (2 in package CommonAcsiTypes) +2024-09-08 15:10:00,206 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CommonAcsiTypes::IPAddress, _objData=UmlObjectData [id=3475, uuid={28C574C1-8CFC-48da-A893-39B865E93E7A}, since=null, name=address, alias=, stereotype=, visibility=public, txtDescription='String value of this address.', htmlDescription='

String value of this address.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1665, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,207 [main] TRACE ClassBuilder - read from EA: CommonAcsiTypes::IPAddress +2024-09-08 15:10:00,207 [main] TRACE ClassBuilder - Class MulticastAddress (3 in package CommonAcsiTypes) +2024-09-08 15:10:00,207 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CommonAcsiTypes::MulticastAddress, _objData=UmlObjectData [id=3476, uuid={C721043C-0E9C-4aab-B84C-CD1963CF8571}, since=null, name=address, alias=, stereotype=, visibility=public, txtDescription='Destination MAC (Media Access Control) address to which a multicast sessage is to be sent. The address shall be an Ethernet address that has the multicast bit set true.', htmlDescription='

Destination MAC (Media Access Control) address to which a multicast sessage is to be sent. The address shall be an Ethernet address that has the multicast bit set true.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1665, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,207 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CommonAcsiTypes::MulticastAddress, _objData=UmlObjectData [id=3477, uuid={E27F3331-52B6-4f2d-B3EB-FADBC5F63EB2}, since=null, name=priority, alias=, stereotype=, visibility=public, txtDescription='Virtual LAN user priority. Shall be a single character from the range [0-7].', htmlDescription='

Virtual LAN user priority. Shall be a single character from the range [0-7].

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1658, _eaTypeName=P_INT8U, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,207 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CommonAcsiTypes::MulticastAddress, _objData=UmlObjectData [id=3478, uuid={E313732A-C2CB-4dbd-B5D6-C20398D08EAA}, since=null, name=vid, alias=, stereotype=, visibility=public, txtDescription='Virtual LAN ID. Shall be 3 characters from the range [0-9] and [A-F].', htmlDescription='

Virtual LAN ID. Shall be 3 characters from the range [0-9] and [A-F].

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1659, _eaTypeName=P_INT16U, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,207 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CommonAcsiTypes::MulticastAddress, _objData=UmlObjectData [id=3479, uuid={DE23C4C9-F440-4437-9F96-B5C3040716E9}, since=null, name=appid, alias=, stereotype=, visibility=public, txtDescription='Application identifier. Shall be 4 characters from the range [0-9] and [A-F].', htmlDescription='

Application identifier. Shall be 4 characters from the range [0-9] and [A-F].

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1659, _eaTypeName=P_INT16U, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,208 [main] DEBUG ClassBuilder - Updated source of class dependency DependencyBuilder [_kind=CLASS, qName = CommonAcsiTypes::MulticastAddress->CommonAcsiTypes::P_OCTET_STRING, _objData=UmlObjectData [id=3424, uuid={BE25D6E1-D428-445f-B6CD-81B3E0FC5922}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], 1_taggedValues{dummyDepTag=}] +2024-09-08 15:10:00,208 [main] TRACE ClassBuilder - read from EA: CommonAcsiTypes::MulticastAddress +2024-09-08 15:10:00,208 [main] TRACE ClassBuilder - Class Authentication (4 in package CommonAcsiTypes) +2024-09-08 15:10:00,208 [main] TRACE OperationBuilder - read from EA: OperationBuilder [_containingClass=Authentication, _objData=UmlObjectData [id=50, uuid={EF56EEFA-4DC1-4ce1-8567-805D0F17603A}, since=null, name=getPassword, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _abstract=false, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=null, _eaReturnTypeId=1665, _eaReturnTypeName=P_VISIBLE_STRING64] +2024-09-08 15:10:00,208 [main] TRACE OperationBuilder - read from EA: OperationBuilder [_containingClass=Authentication, _objData=UmlObjectData [id=51, uuid={2AF0B875-978F-4d0a-BEC1-B2DAA6C215AD}, since=null, name=geUserID, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _abstract=false, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=null, _eaReturnTypeId=1665, _eaReturnTypeName=P_VISIBLE_STRING64] +2024-09-08 15:10:00,208 [main] TRACE OperationBuilder - read from EA: OperationBuilder [_containingClass=Authentication, _objData=UmlObjectData [id=52, uuid={3DD3175C-C019-4f8a-A82F-1641C5702FFD}, since=null, name=getViews, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _abstract=false, _static=false, _final=false, _kind=OP_RET_ARRAY, _returnType=null, _eaReturnTypeId=1774, _eaReturnTypeName=AccessView] +2024-09-08 15:10:00,209 [main] DEBUG AssociationEndBuilder - Updated target type to Authentication +2024-09-08 15:10:00,209 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=911, uuid=b56a18e0-eacd-351a-a2a5-306b0f533204, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=912, uuid=2a9d121c-d9c3-3183-abb6-d2cc6bd7a8a7, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=Authentication, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3289, uuid={CAF47EAD-E095-4308-8875-40BFFEE47E22}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,209 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=911, uuid=b56a18e0-eacd-351a-a2a5-306b0f533204, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=912, uuid=2a9d121c-d9c3-3183-abb6-d2cc6bd7a8a7, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=Authentication, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3289, uuid={CAF47EAD-E095-4308-8875-40BFFEE47E22}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to CommonAcsiTypes::Authentication +2024-09-08 15:10:00,209 [main] DEBUG AssociationEndBuilder - Updated target type to Authentication +2024-09-08 15:10:00,209 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=914, uuid=7634ea65-a4e6-3904-9cfd-3f7de18e334a, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=915, uuid=24896ee4-c652-3356-8c12-7852413ea3b4, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=Authentication, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3290, uuid={31BEB254-DD54-415a-9492-3044318CA98D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,209 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=914, uuid=7634ea65-a4e6-3904-9cfd-3f7de18e334a, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=915, uuid=24896ee4-c652-3356-8c12-7852413ea3b4, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=Authentication, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3290, uuid={31BEB254-DD54-415a-9492-3044318CA98D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to CommonAcsiTypes::Authentication +2024-09-08 15:10:00,209 [main] DEBUG AssociationEndBuilder - Updated source type to Authentication +2024-09-08 15:10:00,209 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=917, uuid=da0d1111-d2dc-3d48-9242-e60ebcbaf988, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=Authentication, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=918, uuid=1e056d2b-0ebd-3c87-8c55-0da6ac5d3724, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..*], _navigable=yes], _objData=UmlObjectData [id=3291, uuid={073AC7A9-A1FE-4209-854E-FCD42DCF7B22}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-08 15:10:00,209 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=917, uuid=da0d1111-d2dc-3d48-9242-e60ebcbaf988, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=Authentication, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=918, uuid=1e056d2b-0ebd-3c87-8c55-0da6ac5d3724, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..*], _navigable=yes], _objData=UmlObjectData [id=3291, uuid={073AC7A9-A1FE-4209-854E-FCD42DCF7B22}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to CommonAcsiTypes::Authentication +2024-09-08 15:10:00,209 [main] DEBUG AssociationEndBuilder - Updated source type to Authentication +2024-09-08 15:10:00,210 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=920, uuid=1283c202-b766-3b73-88cd-d9914d6e38aa, since=null, name=privateAuth, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=Authentication, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=921, uuid=430c3626-b879-3400-9d41-b8a46172e0c0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=unspecified], _objData=UmlObjectData [id=3422, uuid={8E002563-61E8-49cf-87D8-44F188BB906E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,210 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=920, uuid=1283c202-b766-3b73-88cd-d9914d6e38aa, since=null, name=privateAuth, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=Authentication, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=921, uuid=430c3626-b879-3400-9d41-b8a46172e0c0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=unspecified], _objData=UmlObjectData [id=3422, uuid={8E002563-61E8-49cf-87D8-44F188BB906E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to CommonAcsiTypes::Authentication +2024-09-08 15:10:00,210 [main] DEBUG AssociationEndBuilder - Updated source type to Authentication +2024-09-08 15:10:00,210 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=923, uuid=a64baa44-3270-3c92-af89-f369eab89800, since=null, name=publicAuth, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Authentication, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=924, uuid=913fdbc9-c7e8-38b8-84b7-c3492b9bea64, since=null, name=publicEntryID, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=unspecified], _objData=UmlObjectData [id=3423, uuid={0B0CD019-7FF9-4655-A7A2-E9E78FFBE612}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,210 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=923, uuid=a64baa44-3270-3c92-af89-f369eab89800, since=null, name=publicAuth, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Authentication, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=924, uuid=913fdbc9-c7e8-38b8-84b7-c3492b9bea64, since=null, name=publicEntryID, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=unspecified], _objData=UmlObjectData [id=3423, uuid={0B0CD019-7FF9-4655-A7A2-E9E78FFBE612}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to CommonAcsiTypes::Authentication +2024-09-08 15:10:00,210 [main] TRACE ClassBuilder - read from EA: CommonAcsiTypes::Authentication +2024-09-08 15:10:00,210 [main] TRACE ClassBuilder - Class AccessView (5 in package CommonAcsiTypes) +2024-09-08 15:10:00,210 [main] DEBUG AssociationEndBuilder - Updated target type to AccessView +2024-09-08 15:10:00,210 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=917, uuid=da0d1111-d2dc-3d48-9242-e60ebcbaf988, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=Authentication, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=918, uuid=1e056d2b-0ebd-3c87-8c55-0da6ac5d3724, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=AccessView, _multiplicity=[1..*], _navigable=yes], _objData=UmlObjectData [id=3291, uuid={073AC7A9-A1FE-4209-854E-FCD42DCF7B22}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to CommonAcsiTypes::AccessView +2024-09-08 15:10:00,210 [main] TRACE ClassBuilder - read from EA: CommonAcsiTypes::AccessView +2024-09-08 15:10:00,210 [main] TRACE ClassBuilder - Class ReportID (7 in package CommonAcsiTypes) +2024-09-08 15:10:00,211 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CommonAcsiTypes::ReportID, _objData=UmlObjectData [id=3480, uuid={D961FAD3-CB7D-40b4-B627-CE6BEE60B02A}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1666, _eaTypeName=P_VISIBLE_STRING129, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,211 [main] DEBUG AssociationEndBuilder - Updated target type to ReportID +2024-09-08 15:10:00,211 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=920, uuid=1283c202-b766-3b73-88cd-d9914d6e38aa, since=null, name=privateAuth, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=Authentication, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=921, uuid=430c3626-b879-3400-9d41-b8a46172e0c0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=ReportID, _multiplicity=[?..?], _navigable=unspecified], _objData=UmlObjectData [id=3422, uuid={8E002563-61E8-49cf-87D8-44F188BB906E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to CommonAcsiTypes::ReportID +2024-09-08 15:10:00,211 [main] TRACE ClassBuilder - read from EA: CommonAcsiTypes::ReportID +2024-09-08 15:10:00,211 [main] TRACE ClassBuilder - Class EntryID (8 in package CommonAcsiTypes) +2024-09-08 15:10:00,211 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CommonAcsiTypes::EntryID, _objData=UmlObjectData [id=3481, uuid={D3228FA9-B272-4ce2-B085-A15C466C9489}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1770, _eaTypeName=P_OCTET_STRING, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,211 [main] DEBUG AssociationEndBuilder - Updated target type to EntryID +2024-09-08 15:10:00,211 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=923, uuid=a64baa44-3270-3c92-af89-f369eab89800, since=null, name=publicAuth, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Authentication, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=924, uuid=913fdbc9-c7e8-38b8-84b7-c3492b9bea64, since=null, name=publicEntryID, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=EntryID, _multiplicity=[?..?], _navigable=unspecified], _objData=UmlObjectData [id=3423, uuid={0B0CD019-7FF9-4655-A7A2-E9E78FFBE612}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to CommonAcsiTypes::EntryID +2024-09-08 15:10:00,211 [main] TRACE ClassBuilder - read from EA: CommonAcsiTypes::EntryID +2024-09-08 15:10:00,211 [main] TRACE ClassBuilder - Class EntryTime (9 in package CommonAcsiTypes) +2024-09-08 15:10:00,212 [main] TRACE ClassBuilder - read from EA: CommonAcsiTypes::EntryTime +2024-09-08 15:10:00,212 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=AcsiTypes, _depth=3, _eaElementID=1767, _objData=UmlObjectData [id=100, uuid={D453AA70-1C81-4abd-88A9-F861958E6769}, since=null, name=CommonAcsiTypes, alias=, stereotype=, visibility=public, txtDescription='Types implicitly or explicitly defined throughout part 7-2, used only in CoreAcsi or MetaModel, but not in parts 7-3 and 7-4.', htmlDescription='

Types implicitly or explicitly defined throughout part 7-2, used only in CoreAcsi or MetaModel, but not in parts 7-3 and 7-4.

'], _modelId=58, _selfDependent=false, 3_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1768, uuid={ED8223CD-9A7C-4260-9BF0-4C8591BFABCE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: We have modelled service errors, originally defined in 6.1.2.6 ServiceError type enumeration, as exceptions (instead of return parameters). Using exceptions allowed us for: +- an OO way of explicitly defining multiple "error" conditions, and, +- explicit specification of all "error" conditions that can apply to any one service. +We need to decide when working on services (CoreAcsi) on how to proceed with this: +- Keeping exceptions, adding enum, and an attribute on exception giving the corresponding enum literal/value? And also explicitly defining which exception(s) may apply to which service. +- Totally removing exceptions, and somehow incorporating negative response into classes used as return values from service formal arguments? +In every case, we must document the enumerated values, because the semantic of many of them is not clear to a (poor) software engineer...', htmlDescription='

TODO: We have modelled service errors, originally defined in 6.1.2.6 ServiceError type enumeration, as exceptions (instead of return parameters). Using exceptions allowed us for:

  • an OO way of explicitly defining multiple "error" conditions, and,
  • explicit specification of all "error" conditions that can apply to any one service.

We need to decide when working on services (CoreAcsi) on how to proceed with this:

  • Keeping exceptions, adding enum, and an attribute on exception giving the corresponding enum literal/value? And also explicitly defining which exception(s) may apply to which service.
  • Totally removing exceptions, and somehow incorporating negative response into classes used as return values from service formal arguments?

In every case, we must document the enumerated values, because the semantic of many of them is not clear to a (poor) software engineer...

'], _containingPackage=CommonAcsiTypes, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1769, uuid={3D82FEF1-77B0-4982-A9B8-0E99C62D3DF5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Update classes in blue to Ed.2. Possibly more to come after detailed analysis.', htmlDescription='

TODO: Update classes in blue to Ed.2. Possibly more to come after detailed analysis.

'], _containingPackage=CommonAcsiTypes, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1778, uuid={8C2A80C7-34D1-4797-977D-C78CF31CDE06}, since=null, name=CoreAcsi : CoreAcsi, alias=, stereotype=, visibility=public, txtDescription='CoreAcsi : CoreAcsi', htmlDescription='

CoreAcsi : CoreAcsi

'], _containingPackage=CommonAcsiTypes, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=CommonAcsiTypes, _objData=UmlObjectData [id=208, uuid={9C0EB421-7334-4ece-ACC5-6C0E720E63B2}, since=null, name=CommonAcsiTypes, alias=, stereotype=, visibility=public, txtDescription='Types used only in CoreAcsi or MetaModel, but not in parts 7-3 and 7-4.', htmlDescription='

Types used only in CoreAcsi or MetaModel, but not in parts 7-3 and 7-4.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=1, _classes=8 +2024-09-08 15:10:00,212 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_2, _depth=2, _eaElementID=1765, _objData=UmlObjectData [id=99, uuid={25B40E58-28CB-491d-8FD2-AAF5420CAF67}, since=null, name=AcsiTypes, alias=, stereotype=, visibility=public, txtDescription='Types common to several ACSI sub-packages.', htmlDescription='

Types common to several ACSI sub-packages.

'], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=AcsiTypes, _objData=UmlObjectData [id=207, uuid={CA618DB9-D548-4fc1-B2E7-2AE6F2EE786D}, since=null, name=AcsiTypes, alias=, stereotype=, visibility=public, txtDescription='Overview of packages, their contents and dependencies.', htmlDescription='

Overview of packages, their contents and dependencies.

'], _portrait=true, _kind=PACKAGE]], _dependenciesAsSource=1, _dependenciesAsTarget=1, _childPackages=1] +2024-09-08 15:10:00,212 [main] INFO PackageBuilder - processing package MetaModel (10) ... +2024-09-08 15:10:00,212 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=MetaModel, _objData=UmlObjectData [id=218, uuid={EA8FE1C2-3BBB-4b1a-A375-D361A61B8806}, since=null, name=MetaModelClasses, alias=, stereotype=, visibility=public, txtDescription='Overview of meta-model classes. We emphasize two groups of meta-model classes: +- Within the blue frame are those classes that are refined in parts 7-3 and 7-4, i.e., those that represent the data model. +- Within the pink frame are the classes that directly manipulate or refer to the data of logical nodes. +The other classes are control blocks, fully defined in IEC61850-2.', htmlDescription='

Overview of meta-model classes. We emphasize two groups of meta-model classes:

  • Within the blue frame are those classes that are refined in parts 7-3 and 7-4, i.e., those that represent the data model.
  • Within the pink frame are the classes that directly manipulate or refer to the data of logical nodes.

The other classes are control blocks, fully defined in IEC61850-2.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,213 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=MetaModel, _objData=UmlObjectData [id=219, uuid={60A801DD-2905-46a7-AEE1-1F7B4914E50C}, since=null, name=MetaModelRelationships, alias=, stereotype=, visibility=public, txtDescription='The full representation of all ACSI relationships, as defined in Part 7-2.', htmlDescription='

The full representation of all ACSI relationships, as defined in Part 7-2.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,213 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=MetaModel, _objData=UmlObjectData [id=220, uuid={C831274A-F7F7-46d5-8FEC-95178AC6650E}, since=null, name=MetaModelNaming, alias=, stereotype=, visibility=public, txtDescription='Shows naming hierarchy. Highlighted classes are not explicitly defined in the standard.', htmlDescription='

Shows naming hierarchy. Highlighted classes are not explicitly defined in the standard.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,213 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=MetaModel, _objData=UmlObjectData [id=217, uuid={14C7D050-A508-40f5-95B8-5C83BBADB168}, since=null, name=MetaModelDataModel, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the subset of the meta-model with details about LNs and their data. Hyperlinks are provided to an example, and to definitions of concrete classes deriving from the meta-model (in parts 7-4 and 7-3).', htmlDescription='

This diagram shows the subset of the meta-model with details about LNs and their data. Hyperlinks are provided to an example, and to definitions of concrete classes deriving from the meta-model (in parts 7-4 and 7-3).

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,213 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=MetaModel, _objData=UmlObjectData [id=221, uuid={30729B8C-2FAA-41b6-B913-DD00F5E640FC}, since=null, name=MetaModelDataSetsAndControlBlocks, alias=, stereotype=, visibility=public, txtDescription='Shows data sets and control blocks defined in IEC61850-7-2. Highlighted classes are not explicitly defined in the standard.', htmlDescription='

Shows data sets and control blocks defined in IEC61850-7-2. Highlighted classes are not explicitly defined in the standard.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,213 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::MetaModel, _objData=UmlObjectData [id=2549, uuid={8DDA0A46-B4B5-429b-B942-52E274F06ACA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,213 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::MetaModel, _objData=UmlObjectData [id=2612, uuid={22858E00-8E19-47ff-8008-4F59161AEA7F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,213 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::MetaModel, _objData=UmlObjectData [id=2940, uuid={E5F4FF55-D88D-4216-BB8C-AFDA680AADE9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,214 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::MetaModel, _objData=UmlObjectData [id=2948, uuid={2EB94D27-B372-4888-A920-88C823F08BBD}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,214 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::MetaModel, _objData=UmlObjectData [id=3061, uuid={56397421-AB0D-4458-80FC-5FB07F2DD3F2}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,214 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::MetaModel->IEC61850_7_2::AttrValues, _objData=UmlObjectData [id=3171, uuid={EA333334-32A1-48ab-9F19-ADED674571F6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,214 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::MetaModel->IEC61850_7_2::ObjectReferences, _objData=UmlObjectData [id=3172, uuid={C5C582B9-299E-483d-9480-D0C500F8176D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,214 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::MetaModel->IEC61850_7_2::TriggerOptions, _objData=UmlObjectData [id=3173, uuid={855C6728-1BC9-4283-8A19-59ADC04C72DF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,214 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::MetaModel->IEC61850_7_2::CoreTypes, _objData=UmlObjectData [id=3174, uuid={5FE3C8F2-1E89-4705-9543-F7961C8261AE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,214 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::MetaModel->IEC61850_7_2::FunctionalConstraints, _objData=UmlObjectData [id=3175, uuid={24606FEA-EE8B-41c7-B098-E006E81B3F44}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,214 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::MetaModel->IEC61850_7_2::AcsiTypes, _objData=UmlObjectData [id=3176, uuid={18113968-8A0F-43a2-8F30-9621210BBB79}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,214 [main] DEBUG PackageBuilder - Updated target of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::BasicDAs->IEC61850_7_2::MetaModel, _objData=UmlObjectData [id=3299, uuid={79251C03-047F-49a4-8FBC-DA669F5E0A6A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,216 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1830, uuid={D543D4D9-E49F-40ad-B995-3A107B4BD536}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- Directory services should be allowed for FC=SE as well - this is currently not the case according to 61850-7-3, Ed.2.', htmlDescription='

TODO:

  • Directory services should be allowed for FC=SE as well - this is currently not the case according to 61850-7-3, Ed.2.
'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:10:00,216 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1831, uuid={8C76A17B-E8A6-4ec6-8298-D8261FE3C0F4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: Classes *IEC61850Object have been introduced to facilitate instantiation of a meta-model for the use case where no SCL is available (e.g., when connecting directly to one or more IEDs with IEC61850 ACSI SERVERs without any previous configuration).', htmlDescription='

Modelling note: Classes *IEC61850Object have been introduced to facilitate instantiation of a meta-model for the use case where no SCL is available (e.g., when connecting directly to one or more IEDs with IEC61850 ACSI SERVERs without any previous configuration).

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:10:00,216 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1833, uuid={1695C190-3DB9-46c9-B2A3-463C26BEF9DD}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Except for SGCB, control blocks refer to a data set and listen to changes in the values of data set members (i.e., leaf attributes when unfolding logical nodes' data) in order to produce some event: +- RCBs produce reports on data value changes as appropriate for non-time-critical clients +- LCBs produce log entries +- GCBs produce GOOSE messages (similar to RCB reports, but for time-critical clients) +- SVCBs produce messages containing sampled values (also for time-critical clients). +Finally, SGCB models the ability to edit IED settings (e.g., configuration parameters for protection algorithms) - they also work on leaf attributes of logical nodes, but those are not specified in a data set. +Modelling note: Control blocks in this MetaModel provide pure navigation capability, while their configuration by client is available as ACSI service. It is up to applications to extend this MetaModel in the desired way to implement the functionality similar to that provided by ACSI services.', htmlDescription='

Except for SGCB, control blocks refer to a data set and listen to changes in the values of data set members (i.e., leaf attributes when unfolding logical nodes' data) in order to produce some event:

- RCBs produce reports on data value changes as appropriate for non-time-critical clients

- LCBs produce log entries

- GCBs produce GOOSE messages (similar to RCB reports, but for time-critical clients)

- SVCBs produce messages containing sampled values (also for time-critical clients).

Finally, SGCB models the ability to edit IED settings (e.g., configuration parameters for protection algorithms) - they also work on leaf attributes of logical nodes, but those are not specified in a data set.

Modelling note: Control blocks in this MetaModel provide pure navigation capability, while their configuration by client is available as ACSI service. It is up to applications to extend this MetaModel in the desired way to implement the functionality similar to that provided by ACSI services.

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:10:00,217 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1834, uuid={0E537513-A86C-4374-B08C-A61D599461C5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Datasets are list of signal references, used for logging and eventing on data and/or quality change. They allow the application to "read" that list of references once, and then receive value updates as ordered lists of values. In the meta-model, datasets contain thus only information on contained references, as well as the naming-related services. Communication services are defined in CoreAcsi API.', htmlDescription='

Datasets are list of signal references, used for logging and eventing on data and/or quality change. They allow the application to "read" that list of references once, and then receive value updates as ordered lists of values. In the meta-model, datasets contain thus only information on contained references, as well as the naming-related services. Communication services are defined in CoreAcsi API.

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:10:00,218 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1878, uuid={049E7F63-9C87-465e-9BF6-5E03046F685B}, since=null, name=DerivedCDCs : DerivedCDCs, alias=, stereotype=, visibility=public, txtDescription='DerivedCDCs : DerivedCDCs', htmlDescription='

DerivedCDCs : DerivedCDCs

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:10:00,218 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1879, uuid={05AAA379-8620-4bf0-9374-95F42FAFA135}, since=null, name=MetaModel :MetaModelFCsAndTrgOps, alias=, stereotype=, visibility=public, txtDescription='MetaModel : MetaModelFCsAndTrgOps', htmlDescription='

MetaModel : MetaModelFCsAndTrgOps

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:10:00,218 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1880, uuid={112FC848-042A-4696-99ED-8E35A13F87A4}, since=null, name=MetaModel :MetaModelNaming, alias=, stereotype=, visibility=public, txtDescription='MetaModel : MetaModelNaming', htmlDescription='

MetaModel : MetaModelNaming

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:10:00,218 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1881, uuid={2200A07E-E0BC-46ee-B7FB-832A35C51ACB}, since=null, name=LogicalNodeEnums :DOEnums-1, alias=, stereotype=, visibility=public, txtDescription='DOEnums : DOEnums-1', htmlDescription='

DOEnums : DOEnums-1

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:10:00,218 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1882, uuid={3CEEBEF3-65F0-45bf-956A-AAFF0BB39A6E}, since=null, name=BasicDAs : BasicDAs, alias=, stereotype=, visibility=public, txtDescription='BasicDAs : BasicDAs', htmlDescription='

BasicDAs : BasicDAs

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:10:00,218 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1883, uuid={3D42A8E2-6E81-482d-B902-79859AB23652}, since=null, name=LogicalNodes : LogicalNodes, alias=, stereotype=, visibility=public, txtDescription='LogicalNodes : LogicalNodes', htmlDescription='

LogicalNodes : LogicalNodes

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:10:00,229 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1884, uuid={4651CC45-E97C-474c-96E5-E964AEE537AE}, since=null, name=CommonDataClasses : CommonDataClasses, alias=, stereotype=, visibility=public, txtDescription='CommonDataClasses : CommonDataClasses', htmlDescription='

CommonDataClasses : CommonDataClasses

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:10:00,230 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1885, uuid={485DE912-F88A-4727-ABC3-E12BDD3137CA}, since=null, name=IEC61850 : DataModelExample, alias=, stereotype=, visibility=public, txtDescription='IEC61850 : DataModelExample', htmlDescription='

IEC61850 : DataModelExample

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:10:00,230 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1886, uuid={4F5B7A51-D0D5-46eb-9755-D89E38C8D44A}, since=null, name=DerivedDAs : DerivedDAs, alias=, stereotype=, visibility=public, txtDescription='DerivedDAs : DerivedDAs', htmlDescription='

DerivedDAs : DerivedDAs

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:10:00,230 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1887, uuid={7010DA64-6EFF-4ecc-906B-D63D21B68B3D}, since=null, name=LogicalNodeEnums :DOEnums-3, alias=, stereotype=, visibility=public, txtDescription='DOEnums : DOEnums-3', htmlDescription='

DOEnums : DOEnums-3

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:10:00,230 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1888, uuid={77539A0B-E854-4966-82D3-2AC914854572}, since=null, name=DAEnums : DAEnums-1, alias=, stereotype=, visibility=public, txtDescription='DAEnums : DAEnums-1', htmlDescription='

DAEnums : DAEnums-1

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:10:00,230 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1889, uuid={777613E1-5BED-4530-A6C1-909690FCEF4E}, since=null, name=ObjectReferences : ObjectReferences, alias=, stereotype=, visibility=public, txtDescription='ObjectReferences : ObjectReferences', htmlDescription='

ObjectReferences : ObjectReferences

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:10:00,230 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1890, uuid={82D225D9-1F34-4a05-840E-0EA119432E5C}, since=null, name=CoreTypes : CoreTypes, alias=, stereotype=, visibility=public, txtDescription='CoreTypes : CoreTypes', htmlDescription='

CoreTypes : CoreTypes

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:10:00,230 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1891, uuid={86223FF2-1449-43c7-83BA-3DB43365033B}, since=null, name=ConstructedDAs : ConstructedDAs, alias=, stereotype=, visibility=public, txtDescription='ConstructedDAs : ConstructedDAs', htmlDescription='

ConstructedDAs : ConstructedDAs

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:10:00,230 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1892, uuid={A298ABDC-AA9E-4b4b-8B6A-E5C5C539F90F}, since=null, name=LogicalNodeEnums :DOEnums-2, alias=, stereotype=, visibility=public, txtDescription='DOEnums : DOEnums-2', htmlDescription='

DOEnums : DOEnums-2

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:10:00,230 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=1893, uuid={A34DDCC5-BBB7-443d-92EF-22F3B2CADE16}, since=null, name=Data model (logical nodes, common data classes, functionally constrained data attributes and data attributes), alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:10:00,230 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1894, uuid={B2AD30FE-ADAE-495a-8589-272241F89E2F}, since=null, name=FCDAs : FCDAs, alias=, stereotype=, visibility=public, txtDescription='FCDAs : FCDAs', htmlDescription='

FCDAs : FCDAs

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:10:00,230 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1895, uuid={B4020DF2-0ADE-443d-82D1-19018AF93AEE}, since=null, name=ImplicitDAs : ImplicitDAs, alias=, stereotype=, visibility=public, txtDescription='ImplicitDAs : ImplicitDAs', htmlDescription='

ImplicitDAs : ImplicitDAs

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:10:00,230 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1896, uuid={C1318DFD-188F-43f2-9064-60021D23A7AF}, since=null, name=MetaModel :MetaModelDataSetsAndControlBlocks, alias=, stereotype=, visibility=public, txtDescription='MetaModel : MetaModelDataSetsAndControlBlocks', htmlDescription='

MetaModel : MetaModelDataSetsAndControlBlocks

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:10:00,231 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1897, uuid={C39E2CF4-C5E8-4816-8777-01F58112789C}, since=null, name=MetaModel : MetaModelDataModel, alias=, stereotype=, visibility=public, txtDescription='MetaModel : MetaModelDataModel', htmlDescription='

MetaModel : MetaModelDataModel

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:10:00,231 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=1898, uuid={F6822C92-5DD8-48be-A724-A584C56FF7E0}, since=null, name=Directly related to data model, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:10:00,231 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1899, uuid={F6EF86F0-4241-402f-84DB-0F3BACF329BA}, since=null, name=MetaModel :MetaModelRelationships, alias=, stereotype=, visibility=public, txtDescription='MetaModel : MetaModelRelationships', htmlDescription='

MetaModel : MetaModelRelationships

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:10:00,231 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1900, uuid={FFAB6E12-0255-4fed-A1DB-D18F797B7AED}, since=null, name=DAEnums : DAEnums-2, alias=, stereotype=, visibility=public, txtDescription='DAEnums : DAEnums-2', htmlDescription='

DAEnums : DAEnums-2

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:10:00,231 [main] TRACE ClassBuilder - Class IEC61850Object (1 in package MetaModel) +2024-09-08 15:10:00,231 [main] TRACE ClassBuilder - read from EA: MetaModel::IEC61850Object +2024-09-08 15:10:00,231 [main] TRACE ClassBuilder - Class HierarchyIEC61850Object (2 in package MetaModel) +2024-09-08 15:10:00,231 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::HierarchyIEC61850Object, _objData=UmlObjectData [id=3584, uuid={C32A6B6B-F4DC-4498-A469-C006B9625420}, since=null, name=parent, alias=, stereotype=, visibility=public, txtDescription='Parent of this hierarchy object.', htmlDescription='

Parent of this hierarchy object.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1835, _eaTypeName=IEC61850Object, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,232 [main] DEBUG ClassBuilder - Adding HierarchyIEC61850Object as subclass of IEC61850Object +2024-09-08 15:10:00,232 [main] TRACE ClassBuilder - read from EA: MetaModel::HierarchyIEC61850Object +2024-09-08 15:10:00,232 [main] TRACE ClassBuilder - Class NamedIEC61850Object (3 in package MetaModel) +2024-09-08 15:10:00,232 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::NamedIEC61850Object, _objData=UmlObjectData [id=3585, uuid={E8F8F2B7-045C-402f-BA7A-4880C9570B06}, since=null, name=objName, alias=, stereotype=, visibility=public, txtDescription='Object name.', htmlDescription='

Object name.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,232 [main] DEBUG ClassBuilder - Adding NamedIEC61850Object as subclass of HierarchyIEC61850Object +2024-09-08 15:10:00,232 [main] TRACE ClassBuilder - read from EA: MetaModel::NamedIEC61850Object +2024-09-08 15:10:00,232 [main] TRACE ClassBuilder - Class IED (4 in package MetaModel) +2024-09-08 15:10:00,232 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::IED, _objData=UmlObjectData [id=3586, uuid={E22C75AC-F551-4b8c-B5E7-24BE86D31EF0}, since=null, name=name, alias=, stereotype=, visibility=public, txtDescription='Name of this IED, unambiguously identifying it within the substation. +Modelling note: This is not defined in the standard, but is useful in applications that deal with more then one IED.', htmlDescription='

Name of this IED, unambiguously identifying it within the substation.

Modelling note: This is not defined in the standard, but is useful in applications that deal with more then one IED.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1665, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,233 [main] DEBUG AssociationEndBuilder - Updated source type to IED +2024-09-08 15:10:00,233 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=977, uuid=cb169ad4-3224-3879-b41c-caa51a820c58, since=null, name=IED, alias=, stereotype=, visibility=public, txtDescription='IED providing this server.', htmlDescription='

IED providing this server.

'], _type=IED, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=978, uuid=cd79ff9a-2c41-3e45-a4c2-d1f848c67f94, since=null, name=SERVERs, alias=, stereotype=, visibility=public, txtDescription='All servers within this IED.', htmlDescription='

All servers within this IED.

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3249, uuid={7678C3FF-3EEF-4837-A876-DC57EC8A839A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,233 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=977, uuid=cb169ad4-3224-3879-b41c-caa51a820c58, since=null, name=IED, alias=, stereotype=, visibility=public, txtDescription='IED providing this server.', htmlDescription='

IED providing this server.

'], _type=IED, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=978, uuid=cd79ff9a-2c41-3e45-a4c2-d1f848c67f94, since=null, name=SERVERs, alias=, stereotype=, visibility=public, txtDescription='All servers within this IED.', htmlDescription='

All servers within this IED.

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3249, uuid={7678C3FF-3EEF-4837-A876-DC57EC8A839A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::IED +2024-09-08 15:10:00,233 [main] DEBUG ClassBuilder - Adding IED as subclass of HierarchyIEC61850Object +2024-09-08 15:10:00,233 [main] TRACE ClassBuilder - read from EA: MetaModel::IED +2024-09-08 15:10:00,233 [main] TRACE ClassBuilder - Class SERVER (5 in package MetaModel) +2024-09-08 15:10:00,234 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::SERVER, _objData=UmlObjectData [id=3587, uuid={060F6381-464E-42a5-AECB-7413FD53EB45}, since=null, name=name, alias=, stereotype=, visibility=public, txtDescription='Name of this server, unambiguously identifying it within an IED. +Modelling note: This is not defined in the standard, but is useful in applications that deal with more then one SERVER per IED.', htmlDescription='

Name of this server, unambiguously identifying it within an IED.

Modelling note: This is not defined in the standard, but is useful in applications that deal with more then one SERVER per IED.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1665, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,234 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::SERVER, _objData=UmlObjectData [id=3588, uuid={8C8AC9D6-5A54-4110-A15C-61F37484AB7D}, since=null, name=serviceAccessPoints, alias=, stereotype=, visibility=public, txtDescription='All service access points of the server, unambiguously identifying it within a system. +Modelling note 1: Corresponds to SERVER.ServiceAccessPoint. +Modelling note 2: Original documentation reads: "Shall identify a SERVER within the scope of a system. NOTE: The ServiceAccessPoint is an abstraction of an address used to identify the server in the underlying SCSM. The type depends on the SCSM and shall be defined there. Although most services require a specific ServiceAccessPoint to address a server, it has not been included explicitly in the service parameter tables throughout this part of the standard." Currently, here is defined the type IPAddress; see also MulticastAddress.', htmlDescription='

All service access points of the server, unambiguously identifying it within a system.

Modelling note 1: Corresponds to SERVER.ServiceAccessPoint.

Modelling note 2: Original documentation reads: "Shall identify a SERVER within the scope of a system. NOTE: The ServiceAccessPoint is an abstraction of an address used to identify the server in the underlying SCSM. The type depends on the SCSM and shall be defined there. Although most services require a specific ServiceAccessPoint to address a server, it has not been included explicitly in the service parameter tables throughout this part of the standard." Currently, here is defined the type IPAddress; see also MulticastAddress.

'], _isConst=false, _isStatic=false, _multiplicity=[1..*], _initValue=, _eaTypeId=1771, _eaTypeName=IPAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,234 [main] DEBUG AssociationEndBuilder - Updated source type to SERVER +2024-09-08 15:10:00,234 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=983, uuid=6aab1270-668d-3cac-bcef-2566a1c5f569, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=SERVER, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=984, uuid=f05f85ae-88c5-35eb-852e-07f5d4493b43, since=null, name=MCAAs, alias=, stereotype=, visibility=public, txtDescription='All the clients with which the server maintains a multicast application association. +Modelling note: Corresponds to SERVER.MCAppAssociation.', htmlDescription='

All the clients with which the server maintains a multicast application association.

Modelling note: Corresponds to SERVER.MCAppAssociation.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3244, uuid={D04B1B2A-7259-4d38-9B9D-5FA4893DF2CE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,235 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=983, uuid=6aab1270-668d-3cac-bcef-2566a1c5f569, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=SERVER, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=984, uuid=f05f85ae-88c5-35eb-852e-07f5d4493b43, since=null, name=MCAAs, alias=, stereotype=, visibility=public, txtDescription='All the clients with which the server maintains a multicast application association. +Modelling note: Corresponds to SERVER.MCAppAssociation.', htmlDescription='

All the clients with which the server maintains a multicast application association.

Modelling note: Corresponds to SERVER.MCAppAssociation.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3244, uuid={D04B1B2A-7259-4d38-9B9D-5FA4893DF2CE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::SERVER +2024-09-08 15:10:00,235 [main] DEBUG AssociationEndBuilder - Updated source type to SERVER +2024-09-08 15:10:00,235 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=986, uuid=fe7ee8fc-1959-3c72-94fa-21c4840dff0a, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='Server that hosts this file.', htmlDescription='

Server that hosts this file.

'], _type=SERVER, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=987, uuid=3270eb7e-b5b0-39ac-9f02-6f3b15106228, since=null, name=FILEs, alias=, stereotype=, visibility=public, txtDescription='All files within the server. +Modelling note: Corresponds to SERVER.File.', htmlDescription='

All files within the server.

Modelling note: Corresponds to SERVER.File.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3245, uuid={BD48CF11-B1F9-4a40-B020-BE7D3C205E87}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,235 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=986, uuid=fe7ee8fc-1959-3c72-94fa-21c4840dff0a, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='Server that hosts this file.', htmlDescription='

Server that hosts this file.

'], _type=SERVER, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=987, uuid=3270eb7e-b5b0-39ac-9f02-6f3b15106228, since=null, name=FILEs, alias=, stereotype=, visibility=public, txtDescription='All files within the server. +Modelling note: Corresponds to SERVER.File.', htmlDescription='

All files within the server.

Modelling note: Corresponds to SERVER.File.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3245, uuid={BD48CF11-B1F9-4a40-B020-BE7D3C205E87}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::SERVER +2024-09-08 15:10:00,235 [main] DEBUG AssociationEndBuilder - Updated source type to SERVER +2024-09-08 15:10:00,235 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=989, uuid=a1140a3d-0df1-381e-a4ae-954d935e8926, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=SERVER, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=990, uuid=5fa76d69-62a7-33da-9639-4f685ed9cbcc, since=null, name=TPAAs, alias=, stereotype=, visibility=public, txtDescription='All clients with which the server maintains a two party application association. +Modelling note: Corresponds to SERVER.TPAppAssociation.', htmlDescription='

All clients with which the server maintains a two party application association.

Modelling note: Corresponds to SERVER.TPAppAssociation.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3246, uuid={4D043A51-4541-4252-97A5-E280E52416EC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,236 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=989, uuid=a1140a3d-0df1-381e-a4ae-954d935e8926, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=SERVER, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=990, uuid=5fa76d69-62a7-33da-9639-4f685ed9cbcc, since=null, name=TPAAs, alias=, stereotype=, visibility=public, txtDescription='All clients with which the server maintains a two party application association. +Modelling note: Corresponds to SERVER.TPAppAssociation.', htmlDescription='

All clients with which the server maintains a two party application association.

Modelling note: Corresponds to SERVER.TPAppAssociation.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3246, uuid={4D043A51-4541-4252-97A5-E280E52416EC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::SERVER +2024-09-08 15:10:00,236 [main] DEBUG AssociationEndBuilder - Updated source type to SERVER +2024-09-08 15:10:00,236 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=992, uuid=4c73668e-534f-38ce-97a9-1214069d7dc4, since=null, name=SERVER, alias=, stereotype=, visibility=public, txtDescription='Server that contains this logical device.', htmlDescription='

Server that contains this logical device.

'], _type=SERVER, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=993, uuid=61735bea-9856-3d36-bcac-5fb78a87b7c9, since=null, name=LDs, alias=, stereotype=, visibility=public, txtDescription='All logical devices within the server. +Modelling note: Corresponds to SERVER.LogicalDevice.', htmlDescription='

All logical devices within the server.

Modelling note: Corresponds to SERVER.LogicalDevice.

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3247, uuid={222A684C-E024-4d07-A10A-FEB2E101E186}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,237 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=992, uuid=4c73668e-534f-38ce-97a9-1214069d7dc4, since=null, name=SERVER, alias=, stereotype=, visibility=public, txtDescription='Server that contains this logical device.', htmlDescription='

Server that contains this logical device.

'], _type=SERVER, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=993, uuid=61735bea-9856-3d36-bcac-5fb78a87b7c9, since=null, name=LDs, alias=, stereotype=, visibility=public, txtDescription='All logical devices within the server. +Modelling note: Corresponds to SERVER.LogicalDevice.', htmlDescription='

All logical devices within the server.

Modelling note: Corresponds to SERVER.LogicalDevice.

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3247, uuid={222A684C-E024-4d07-A10A-FEB2E101E186}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::SERVER +2024-09-08 15:10:00,237 [main] DEBUG AssociationEndBuilder - Updated target type to SERVER +2024-09-08 15:10:00,237 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=977, uuid=cb169ad4-3224-3879-b41c-caa51a820c58, since=null, name=IED, alias=, stereotype=, visibility=public, txtDescription='IED providing this server.', htmlDescription='

IED providing this server.

'], _type=IED, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=978, uuid=cd79ff9a-2c41-3e45-a4c2-d1f848c67f94, since=null, name=SERVERs, alias=, stereotype=, visibility=public, txtDescription='All servers within this IED.', htmlDescription='

All servers within this IED.

'], _type=SERVER, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3249, uuid={7678C3FF-3EEF-4837-A876-DC57EC8A839A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::SERVER +2024-09-08 15:10:00,237 [main] DEBUG ClassBuilder - Adding SERVER as subclass of HierarchyIEC61850Object +2024-09-08 15:10:00,237 [main] TRACE ClassBuilder - read from EA: MetaModel::SERVER +2024-09-08 15:10:00,237 [main] TRACE ClassBuilder - Class TPAA (6 in package MetaModel) +2024-09-08 15:10:00,238 [main] DEBUG AssociationEndBuilder - Updated source type to TPAA +2024-09-08 15:10:00,238 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=996, uuid=33873e04-2b68-3050-9013-5d6a42a0a6e5, since=null, name=TPAA, alias=, stereotype=, visibility=public, txtDescription='Two-party application association that contains this non-persistent data set.', htmlDescription='

Two-party application association that contains this non-persistent data set.

'], _type=TPAA, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=997, uuid=5880d6da-097a-3fed-aae8-1381cf23315b, since=null, name=NonPersistentDSs, alias=, stereotype=, visibility=public, txtDescription='All non-persistent data sets contained within this two-party application association.', htmlDescription='

All non-persistent data sets contained within this two-party application association.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3242, uuid={B9ECE073-A02C-48da-93A7-2B8F2E8C9059}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,238 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=996, uuid=33873e04-2b68-3050-9013-5d6a42a0a6e5, since=null, name=TPAA, alias=, stereotype=, visibility=public, txtDescription='Two-party application association that contains this non-persistent data set.', htmlDescription='

Two-party application association that contains this non-persistent data set.

'], _type=TPAA, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=997, uuid=5880d6da-097a-3fed-aae8-1381cf23315b, since=null, name=NonPersistentDSs, alias=, stereotype=, visibility=public, txtDescription='All non-persistent data sets contained within this two-party application association.', htmlDescription='

All non-persistent data sets contained within this two-party application association.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3242, uuid={B9ECE073-A02C-48da-93A7-2B8F2E8C9059}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::TPAA +2024-09-08 15:10:00,239 [main] DEBUG AssociationEndBuilder - Updated target type to TPAA +2024-09-08 15:10:00,239 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=989, uuid=a1140a3d-0df1-381e-a4ae-954d935e8926, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=SERVER, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=990, uuid=5fa76d69-62a7-33da-9639-4f685ed9cbcc, since=null, name=TPAAs, alias=, stereotype=, visibility=public, txtDescription='All clients with which the server maintains a two party application association. +Modelling note: Corresponds to SERVER.TPAppAssociation.', htmlDescription='

All clients with which the server maintains a two party application association.

Modelling note: Corresponds to SERVER.TPAppAssociation.

'], _type=TPAA, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3246, uuid={4D043A51-4541-4252-97A5-E280E52416EC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::TPAA +2024-09-08 15:10:00,239 [main] DEBUG AssociationEndBuilder - Updated source type to TPAA +2024-09-08 15:10:00,239 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=914, uuid=7634ea65-a4e6-3904-9cfd-3f7de18e334a, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=TPAA, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=915, uuid=24896ee4-c652-3356-8c12-7852413ea3b4, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=Authentication, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3290, uuid={31BEB254-DD54-415a-9492-3044318CA98D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::TPAA +2024-09-08 15:10:00,239 [main] DEBUG ClassBuilder - Adding TPAA as subclass of IEC61850Object +2024-09-08 15:10:00,239 [main] TRACE ClassBuilder - read from EA: MetaModel::TPAA +2024-09-08 15:10:00,239 [main] TRACE ClassBuilder - Class MCAA (7 in package MetaModel) +2024-09-08 15:10:00,240 [main] DEBUG AssociationEndBuilder - Updated target type to MCAA +2024-09-08 15:10:00,240 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=983, uuid=6aab1270-668d-3cac-bcef-2566a1c5f569, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=SERVER, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=984, uuid=f05f85ae-88c5-35eb-852e-07f5d4493b43, since=null, name=MCAAs, alias=, stereotype=, visibility=public, txtDescription='All the clients with which the server maintains a multicast application association. +Modelling note: Corresponds to SERVER.MCAppAssociation.', htmlDescription='

All the clients with which the server maintains a multicast application association.

Modelling note: Corresponds to SERVER.MCAppAssociation.

'], _type=MCAA, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3244, uuid={D04B1B2A-7259-4d38-9B9D-5FA4893DF2CE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::MCAA +2024-09-08 15:10:00,240 [main] DEBUG AssociationEndBuilder - Updated source type to MCAA +2024-09-08 15:10:00,240 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=911, uuid=b56a18e0-eacd-351a-a2a5-306b0f533204, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=MCAA, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=912, uuid=2a9d121c-d9c3-3183-abb6-d2cc6bd7a8a7, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=Authentication, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3289, uuid={CAF47EAD-E095-4308-8875-40BFFEE47E22}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::MCAA +2024-09-08 15:10:00,240 [main] DEBUG ClassBuilder - Adding MCAA as subclass of IEC61850Object +2024-09-08 15:10:00,240 [main] TRACE ClassBuilder - read from EA: MetaModel::MCAA +2024-09-08 15:10:00,240 [main] TRACE ClassBuilder - Class LD (8 in package MetaModel) +2024-09-08 15:10:00,240 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::LD, _objData=UmlObjectData [id=3589, uuid={877F93ED-1944-4701-A29D-57C6810B68CB}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1694, _eaTypeName=LDReference, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,257 [main] DEBUG AssociationEndBuilder - Updated source type to LD +2024-09-08 15:10:00,257 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1002, uuid=2a2d94c6-5bc5-3b4f-a3eb-8ba85bbf0fda, since=null, name=LD, alias=, stereotype=, visibility=public, txtDescription='Logical device that contains this domain logical node.', htmlDescription='

Logical device that contains this domain logical node.

'], _type=LD, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1003, uuid=88c8ad81-3e70-3bd6-b58d-176b991035bb, since=null, name=LNDOMs, alias=, stereotype=, visibility=public, txtDescription='All domain logical nodes contained within this logical device.', htmlDescription='

All domain logical nodes contained within this logical device.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3237, uuid={EA8D56D0-764A-4bd8-9215-10E541F2BCF3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,257 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1002, uuid=2a2d94c6-5bc5-3b4f-a3eb-8ba85bbf0fda, since=null, name=LD, alias=, stereotype=, visibility=public, txtDescription='Logical device that contains this domain logical node.', htmlDescription='

Logical device that contains this domain logical node.

'], _type=LD, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1003, uuid=88c8ad81-3e70-3bd6-b58d-176b991035bb, since=null, name=LNDOMs, alias=, stereotype=, visibility=public, txtDescription='All domain logical nodes contained within this logical device.', htmlDescription='

All domain logical nodes contained within this logical device.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3237, uuid={EA8D56D0-764A-4bd8-9215-10E541F2BCF3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::LD +2024-09-08 15:10:00,258 [main] DEBUG AssociationEndBuilder - Updated source type to LD +2024-09-08 15:10:00,258 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1005, uuid=80eaa78c-0d7a-3689-a506-56d1057b11a6, since=null, name=LD, alias=, stereotype=, visibility=public, txtDescription='Logical device that contains this device logical node.', htmlDescription='

Logical device that contains this device logical node.

'], _type=LD, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1006, uuid=5b67250a-8925-33fa-aa8a-c97ffc0d9310, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='Device logical node contained within this logical device.', htmlDescription='

Device logical node contained within this logical device.

'], _type=null, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3238, uuid={58088780-AE38-465b-92C6-DF8923DEBADA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,258 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1005, uuid=80eaa78c-0d7a-3689-a506-56d1057b11a6, since=null, name=LD, alias=, stereotype=, visibility=public, txtDescription='Logical device that contains this device logical node.', htmlDescription='

Logical device that contains this device logical node.

'], _type=LD, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1006, uuid=5b67250a-8925-33fa-aa8a-c97ffc0d9310, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='Device logical node contained within this logical device.', htmlDescription='

Device logical node contained within this logical device.

'], _type=null, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3238, uuid={58088780-AE38-465b-92C6-DF8923DEBADA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::LD +2024-09-08 15:10:00,258 [main] DEBUG AssociationEndBuilder - Updated source type to LD +2024-09-08 15:10:00,258 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1008, uuid=f342deb7-6bc7-3383-b781-4619d8d326dc, since=null, name=LD, alias=, stereotype=, visibility=public, txtDescription='Logical device that contains this physical device logical node.', htmlDescription='

Logical device that contains this physical device logical node.

'], _type=LD, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1009, uuid=dc9432da-d9a4-391b-864a-519a2dcd1421, since=null, name=LNPHD, alias=, stereotype=, visibility=public, txtDescription='Physical device logical node contained within this logical device.', htmlDescription='

Physical device logical node contained within this logical device.

'], _type=null, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3239, uuid={351DD042-6AD0-47f6-A9D1-9EA465461A1E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,258 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1008, uuid=f342deb7-6bc7-3383-b781-4619d8d326dc, since=null, name=LD, alias=, stereotype=, visibility=public, txtDescription='Logical device that contains this physical device logical node.', htmlDescription='

Logical device that contains this physical device logical node.

'], _type=LD, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1009, uuid=dc9432da-d9a4-391b-864a-519a2dcd1421, since=null, name=LNPHD, alias=, stereotype=, visibility=public, txtDescription='Physical device logical node contained within this logical device.', htmlDescription='

Physical device logical node contained within this logical device.

'], _type=null, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3239, uuid={351DD042-6AD0-47f6-A9D1-9EA465461A1E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::LD +2024-09-08 15:10:00,258 [main] DEBUG AssociationEndBuilder - Updated target type to LD +2024-09-08 15:10:00,258 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=992, uuid=4c73668e-534f-38ce-97a9-1214069d7dc4, since=null, name=SERVER, alias=, stereotype=, visibility=public, txtDescription='Server that contains this logical device.', htmlDescription='

Server that contains this logical device.

'], _type=SERVER, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=993, uuid=61735bea-9856-3d36-bcac-5fb78a87b7c9, since=null, name=LDs, alias=, stereotype=, visibility=public, txtDescription='All logical devices within the server. +Modelling note: Corresponds to SERVER.LogicalDevice.', htmlDescription='

All logical devices within the server.

Modelling note: Corresponds to SERVER.LogicalDevice.

'], _type=LD, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3247, uuid={222A684C-E024-4d07-A10A-FEB2E101E186}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::LD +2024-09-08 15:10:00,258 [main] DEBUG ClassBuilder - Adding LD as subclass of NamedIEC61850Object +2024-09-08 15:10:00,258 [main] TRACE ClassBuilder - read from EA: MetaModel::LD +2024-09-08 15:10:00,258 [main] TRACE ClassBuilder - Class LN (9 in package MetaModel) +2024-09-08 15:10:00,258 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::LN, _objData=UmlObjectData [id=3590, uuid={B9201E1F-0FBA-4eee-A567-31539F09E245}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1696, _eaTypeName=LNReference, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,259 [main] DEBUG AssociationEndBuilder - Updated source type to LN +2024-09-08 15:10:00,259 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1013, uuid=f02885d1-1972-3e41-a471-a8ae4471db15, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this common data class.', htmlDescription='

Logical node that contains this common data class.

'], _type=LN, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1014, uuid=2a6fc3f6-97e0-3b10-a832-cfe6bb54065c, since=null, name=CDCs, alias=, stereotype=, visibility=public, txtDescription='All common data classes contained within the logical node. +Example of references for an XCBR: +myLD3/XCBR1.Pos +myLD3/XCBR1.Loc +myLD3/XCBR1.CBOpCap +...', htmlDescription='

All common data classes contained within the logical node.

Example of references for an XCBR:

myLD3/XCBR1.Pos

myLD3/XCBR1.Loc

myLD3/XCBR1.CBOpCap

...

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3230, uuid={DA3E0358-0E30-4308-8391-CC6F3D34D501}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,259 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1013, uuid=f02885d1-1972-3e41-a471-a8ae4471db15, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this common data class.', htmlDescription='

Logical node that contains this common data class.

'], _type=LN, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1014, uuid=2a6fc3f6-97e0-3b10-a832-cfe6bb54065c, since=null, name=CDCs, alias=, stereotype=, visibility=public, txtDescription='All common data classes contained within the logical node. +Example of references for an XCBR: +myLD3/XCBR1.Pos +myLD3/XCBR1.Loc +myLD3/XCBR1.CBOpCap +...', htmlDescription='

All common data classes contained within the logical node.

Example of references for an XCBR:

myLD3/XCBR1.Pos

myLD3/XCBR1.Loc

myLD3/XCBR1.CBOpCap

...

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3230, uuid={DA3E0358-0E30-4308-8391-CC6F3D34D501}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::LN +2024-09-08 15:10:00,259 [main] DEBUG AssociationEndBuilder - Updated source type to LN +2024-09-08 15:10:00,259 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1016, uuid=598e95ae-dfa7-39fb-88a4-4b35a32d16a6, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this data set.', htmlDescription='

Logical node that contains this data set.

'], _type=LN, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1017, uuid=ad95f35b-687c-3ff8-8d6f-753ec8310166, since=null, name=LNOwnedDSs, alias=, stereotype=, visibility=public, txtDescription='All datasets contained within the logical node. +Modelling note: To distinguish between data sets effectively contained by LN, and non-persistent data sets (which are owned by the TPAA over which they have been created), we introduced an abstract LNOwnedDS class, which excludes non-persistent DSs.', htmlDescription='

All datasets contained within the logical node.

Modelling note: To distinguish between data sets effectively contained by LN, and non-persistent data sets (which are owned by the TPAA over which they have been created), we introduced an abstract LNOwnedDS class, which excludes non-persistent DSs.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3231, uuid={7F7F081B-F2D6-484c-963B-F44D4FE8F9CC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,259 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1016, uuid=598e95ae-dfa7-39fb-88a4-4b35a32d16a6, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this data set.', htmlDescription='

Logical node that contains this data set.

'], _type=LN, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1017, uuid=ad95f35b-687c-3ff8-8d6f-753ec8310166, since=null, name=LNOwnedDSs, alias=, stereotype=, visibility=public, txtDescription='All datasets contained within the logical node. +Modelling note: To distinguish between data sets effectively contained by LN, and non-persistent data sets (which are owned by the TPAA over which they have been created), we introduced an abstract LNOwnedDS class, which excludes non-persistent DSs.', htmlDescription='

All datasets contained within the logical node.

Modelling note: To distinguish between data sets effectively contained by LN, and non-persistent data sets (which are owned by the TPAA over which they have been created), we introduced an abstract LNOwnedDS class, which excludes non-persistent DSs.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3231, uuid={7F7F081B-F2D6-484c-963B-F44D4FE8F9CC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::LN +2024-09-08 15:10:00,259 [main] DEBUG AssociationEndBuilder - Updated source type to LN +2024-09-08 15:10:00,260 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1019, uuid=91389a73-8253-3920-bb6e-2ca4b6596579, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this log.', htmlDescription='

Logical node that contains this log.

'], _type=LN, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1020, uuid=6dba35d3-b8a8-39a0-96f5-63c3fb0ca786, since=null, name=LOGs, alias=, stereotype=, visibility=public, txtDescription='All logs contained in this device logical node.', htmlDescription='

All logs contained in this device logical node.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3232, uuid={7F440C52-EE5C-4b8b-A1A0-DC7AA86473A0}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,260 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1019, uuid=91389a73-8253-3920-bb6e-2ca4b6596579, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this log.', htmlDescription='

Logical node that contains this log.

'], _type=LN, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1020, uuid=6dba35d3-b8a8-39a0-96f5-63c3fb0ca786, since=null, name=LOGs, alias=, stereotype=, visibility=public, txtDescription='All logs contained in this device logical node.', htmlDescription='

All logs contained in this device logical node.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3232, uuid={7F440C52-EE5C-4b8b-A1A0-DC7AA86473A0}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::LN +2024-09-08 15:10:00,260 [main] DEBUG AssociationEndBuilder - Updated source type to LN +2024-09-08 15:10:00,260 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1022, uuid=87feb7ab-da8f-3ba7-aae0-aa46758eaf0f, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this log control block.', htmlDescription='

Logical node that contains this log control block.

'], _type=LN, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1023, uuid=c7ae4357-23e6-374c-a634-364fe49cda56, since=null, name=LCBs, alias=, stereotype=, visibility=public, txtDescription='All log control blocks contained in this device logical node.', htmlDescription='

All log control blocks contained in this device logical node.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3233, uuid={4EDAC9DF-298C-4398-A217-F8EE4F5B1585}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,260 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1022, uuid=87feb7ab-da8f-3ba7-aae0-aa46758eaf0f, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this log control block.', htmlDescription='

Logical node that contains this log control block.

'], _type=LN, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1023, uuid=c7ae4357-23e6-374c-a634-364fe49cda56, since=null, name=LCBs, alias=, stereotype=, visibility=public, txtDescription='All log control blocks contained in this device logical node.', htmlDescription='

All log control blocks contained in this device logical node.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3233, uuid={4EDAC9DF-298C-4398-A217-F8EE4F5B1585}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::LN +2024-09-08 15:10:00,260 [main] DEBUG AssociationEndBuilder - Updated source type to LN +2024-09-08 15:10:00,260 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1025, uuid=a356009c-e249-3887-a8c2-5efc8b789aeb, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this unbuffered report control block.', htmlDescription='

Logical node that contains this unbuffered report control block.

'], _type=LN, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1026, uuid=a98e6c87-71bd-3819-b3e8-db240e74bd95, since=null, name=URCBs, alias=, stereotype=, visibility=public, txtDescription='All unbuffered report control blocks contained in this logical node.', htmlDescription='

All unbuffered report control blocks contained in this logical node.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3234, uuid={1CDCF8AA-E5B2-490a-AC9E-28949329C1F9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,260 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1025, uuid=a356009c-e249-3887-a8c2-5efc8b789aeb, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this unbuffered report control block.', htmlDescription='

Logical node that contains this unbuffered report control block.

'], _type=LN, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1026, uuid=a98e6c87-71bd-3819-b3e8-db240e74bd95, since=null, name=URCBs, alias=, stereotype=, visibility=public, txtDescription='All unbuffered report control blocks contained in this logical node.', htmlDescription='

All unbuffered report control blocks contained in this logical node.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3234, uuid={1CDCF8AA-E5B2-490a-AC9E-28949329C1F9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::LN +2024-09-08 15:10:00,260 [main] DEBUG AssociationEndBuilder - Updated source type to LN +2024-09-08 15:10:00,261 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1028, uuid=e7603d9e-d7ed-34d2-a8c2-fe57012d3517, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this buffered report control block.', htmlDescription='

Logical node that contains this buffered report control block.

'], _type=LN, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1029, uuid=3e1af449-26b3-33ce-8b0e-bca6ed828fdc, since=null, name=BRCBs, alias=, stereotype=, visibility=public, txtDescription='All buffered report control blocks contained in this logical node.', htmlDescription='

All buffered report control blocks contained in this logical node.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3235, uuid={0F20B431-6EE2-469b-8223-819230E9C43E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,261 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1028, uuid=e7603d9e-d7ed-34d2-a8c2-fe57012d3517, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this buffered report control block.', htmlDescription='

Logical node that contains this buffered report control block.

'], _type=LN, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1029, uuid=3e1af449-26b3-33ce-8b0e-bca6ed828fdc, since=null, name=BRCBs, alias=, stereotype=, visibility=public, txtDescription='All buffered report control blocks contained in this logical node.', htmlDescription='

All buffered report control blocks contained in this logical node.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3235, uuid={0F20B431-6EE2-469b-8223-819230E9C43E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::LN +2024-09-08 15:10:00,261 [main] DEBUG ClassBuilder - Adding LN as subclass of NamedIEC61850Object +2024-09-08 15:10:00,261 [main] TRACE ClassBuilder - read from EA: MetaModel::LN +2024-09-08 15:10:00,261 [main] TRACE ClassBuilder - Class LNPHD (10 in package MetaModel) +2024-09-08 15:10:00,261 [main] DEBUG AssociationEndBuilder - Updated target type to LNPHD +2024-09-08 15:10:00,261 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1008, uuid=f342deb7-6bc7-3383-b781-4619d8d326dc, since=null, name=LD, alias=, stereotype=, visibility=public, txtDescription='Logical device that contains this physical device logical node.', htmlDescription='

Logical device that contains this physical device logical node.

'], _type=LD, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1009, uuid=dc9432da-d9a4-391b-864a-519a2dcd1421, since=null, name=LNPHD, alias=, stereotype=, visibility=public, txtDescription='Physical device logical node contained within this logical device.', htmlDescription='

Physical device logical node contained within this logical device.

'], _type=LNPHD, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3239, uuid={351DD042-6AD0-47f6-A9D1-9EA465461A1E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::LNPHD +2024-09-08 15:10:00,261 [main] DEBUG ClassBuilder - Adding LNPHD as subclass of LN +2024-09-08 15:10:00,261 [main] TRACE ClassBuilder - read from EA: MetaModel::LNPHD +2024-09-08 15:10:00,262 [main] TRACE ClassBuilder - Class LN0 (11 in package MetaModel) +2024-09-08 15:10:00,262 [main] DEBUG AssociationEndBuilder - Updated source type to LN0 +2024-09-08 15:10:00,262 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1033, uuid=b9c7430f-005d-37b1-96f1-0969d56fb74b, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='Device logical node that contains this unicast sampled values control block.', htmlDescription='

Device logical node that contains this unicast sampled values control block.

'], _type=LN0, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1034, uuid=2149586b-93ab-366c-b7d5-585dd8ab2dcb, since=null, name=USVCBs, alias=, stereotype=, visibility=public, txtDescription='All unicast simpled values control blocks contained in this device logical node.', htmlDescription='

All unicast simpled values control blocks contained in this device logical node.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3224, uuid={BA890AF8-70A6-4685-8215-9B7A0C34827D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,263 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1033, uuid=b9c7430f-005d-37b1-96f1-0969d56fb74b, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='Device logical node that contains this unicast sampled values control block.', htmlDescription='

Device logical node that contains this unicast sampled values control block.

'], _type=LN0, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1034, uuid=2149586b-93ab-366c-b7d5-585dd8ab2dcb, since=null, name=USVCBs, alias=, stereotype=, visibility=public, txtDescription='All unicast simpled values control blocks contained in this device logical node.', htmlDescription='

All unicast simpled values control blocks contained in this device logical node.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3224, uuid={BA890AF8-70A6-4685-8215-9B7A0C34827D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::LN0 +2024-09-08 15:10:00,263 [main] DEBUG AssociationEndBuilder - Updated source type to LN0 +2024-09-08 15:10:00,263 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1036, uuid=c18773d5-9ab1-31dd-8e87-e416e5c518dd, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='Device logical node that contains this GOOSE control block.', htmlDescription='

Device logical node that contains this GOOSE control block.

'], _type=LN0, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1037, uuid=43d0dac2-11b5-3602-9cdb-c87fd6c9ed1e, since=null, name=GCBs, alias=, stereotype=, visibility=public, txtDescription='All GOOSE control blocks contained in this device logical node.', htmlDescription='

All GOOSE control blocks contained in this device logical node.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3225, uuid={5B28CB32-75ED-4ce9-970B-A054C0FE6AF2}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,263 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1036, uuid=c18773d5-9ab1-31dd-8e87-e416e5c518dd, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='Device logical node that contains this GOOSE control block.', htmlDescription='

Device logical node that contains this GOOSE control block.

'], _type=LN0, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1037, uuid=43d0dac2-11b5-3602-9cdb-c87fd6c9ed1e, since=null, name=GCBs, alias=, stereotype=, visibility=public, txtDescription='All GOOSE control blocks contained in this device logical node.', htmlDescription='

All GOOSE control blocks contained in this device logical node.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3225, uuid={5B28CB32-75ED-4ce9-970B-A054C0FE6AF2}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::LN0 +2024-09-08 15:10:00,263 [main] DEBUG AssociationEndBuilder - Updated source type to LN0 +2024-09-08 15:10:00,263 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1039, uuid=9322d900-a7a3-35be-a2fc-8dc05f438e73, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='Device logical node that contains this multicast sampled values control block.', htmlDescription='

Device logical node that contains this multicast sampled values control block.

'], _type=LN0, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1040, uuid=1d3ff9d3-58c1-37bd-ae64-3a515789448b, since=null, name=MSVCBs, alias=, stereotype=, visibility=public, txtDescription='All multicast simpled values control blocks contained in this device logical node.', htmlDescription='

All multicast simpled values control blocks contained in this device logical node.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3226, uuid={3FE94B8A-D716-44df-98C2-B7C222CEE5E8}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,264 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1039, uuid=9322d900-a7a3-35be-a2fc-8dc05f438e73, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='Device logical node that contains this multicast sampled values control block.', htmlDescription='

Device logical node that contains this multicast sampled values control block.

'], _type=LN0, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1040, uuid=1d3ff9d3-58c1-37bd-ae64-3a515789448b, since=null, name=MSVCBs, alias=, stereotype=, visibility=public, txtDescription='All multicast simpled values control blocks contained in this device logical node.', htmlDescription='

All multicast simpled values control blocks contained in this device logical node.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3226, uuid={3FE94B8A-D716-44df-98C2-B7C222CEE5E8}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::LN0 +2024-09-08 15:10:00,264 [main] DEBUG AssociationEndBuilder - Updated source type to LN0 +2024-09-08 15:10:00,264 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1042, uuid=c6a9f569-0770-3ffe-bdc0-a645b0387d2f, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='Device logical node that contains this setting group control block.', htmlDescription='

Device logical node that contains this setting group control block.

'], _type=LN0, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1043, uuid=69a2696d-a46f-38f0-a20e-b7cca875605c, since=null, name=SGCB, alias=, stereotype=, visibility=public, txtDescription='Setting group control block contained in this device logical node.', htmlDescription='

Setting group control block contained in this device logical node.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3227, uuid={16912038-2F54-4108-A868-FEDEFD36C7B1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,264 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1042, uuid=c6a9f569-0770-3ffe-bdc0-a645b0387d2f, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='Device logical node that contains this setting group control block.', htmlDescription='

Device logical node that contains this setting group control block.

'], _type=LN0, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1043, uuid=69a2696d-a46f-38f0-a20e-b7cca875605c, since=null, name=SGCB, alias=, stereotype=, visibility=public, txtDescription='Setting group control block contained in this device logical node.', htmlDescription='

Setting group control block contained in this device logical node.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3227, uuid={16912038-2F54-4108-A868-FEDEFD36C7B1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::LN0 +2024-09-08 15:10:00,264 [main] DEBUG AssociationEndBuilder - Updated target type to LN0 +2024-09-08 15:10:00,264 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1005, uuid=80eaa78c-0d7a-3689-a506-56d1057b11a6, since=null, name=LD, alias=, stereotype=, visibility=public, txtDescription='Logical device that contains this device logical node.', htmlDescription='

Logical device that contains this device logical node.

'], _type=LD, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1006, uuid=5b67250a-8925-33fa-aa8a-c97ffc0d9310, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='Device logical node contained within this logical device.', htmlDescription='

Device logical node contained within this logical device.

'], _type=LN0, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3238, uuid={58088780-AE38-465b-92C6-DF8923DEBADA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::LN0 +2024-09-08 15:10:00,264 [main] DEBUG ClassBuilder - Adding LN0 as subclass of LN +2024-09-08 15:10:00,264 [main] TRACE ClassBuilder - read from EA: MetaModel::LN0 +2024-09-08 15:10:00,264 [main] TRACE ClassBuilder - Class LNDOM (12 in package MetaModel) +2024-09-08 15:10:00,265 [main] DEBUG AssociationEndBuilder - Updated target type to LNDOM +2024-09-08 15:10:00,265 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1002, uuid=2a2d94c6-5bc5-3b4f-a3eb-8ba85bbf0fda, since=null, name=LD, alias=, stereotype=, visibility=public, txtDescription='Logical device that contains this domain logical node.', htmlDescription='

Logical device that contains this domain logical node.

'], _type=LD, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1003, uuid=88c8ad81-3e70-3bd6-b58d-176b991035bb, since=null, name=LNDOMs, alias=, stereotype=, visibility=public, txtDescription='All domain logical nodes contained within this logical device.', htmlDescription='

All domain logical nodes contained within this logical device.

'], _type=LNDOM, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3237, uuid={EA8D56D0-764A-4bd8-9215-10E541F2BCF3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::LNDOM +2024-09-08 15:10:00,266 [main] DEBUG ClassBuilder - Adding LNDOM as subclass of LN +2024-09-08 15:10:00,266 [main] TRACE ClassBuilder - read from EA: MetaModel::LNDOM +2024-09-08 15:10:00,266 [main] TRACE ClassBuilder - Class CDC (14 in package MetaModel) +2024-09-08 15:10:00,266 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::CDC, _objData=UmlObjectData [id=3591, uuid={6520578A-E479-4aca-8AD6-7A973E895B9F}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1697, _eaTypeName=CDCReference, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,267 [main] DEBUG AssociationEndBuilder - Updated source type to CDC +2024-09-08 15:10:00,267 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1048, uuid=90ab812d-8564-3c32-80cf-4046e6691d91, since=null, name=CDC, alias=, stereotype=, visibility=public, txtDescription='Common data class containing this functionally constrained data attribute.', htmlDescription='

Common data class containing this functionally constrained data attribute.

'], _type=CDC, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1049, uuid=8dd3979e-5576-34db-99c5-b55e818bdea5, since=null, name=FCDAs, alias=, stereotype=, visibility=public, txtDescription='All functionally constrained data attributes contained within this common data class.', htmlDescription='

All functionally constrained data attributes contained within this common data class.

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3220, uuid={56217EE0-7F5F-4b89-A6EB-C65850A000AB}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,267 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1048, uuid=90ab812d-8564-3c32-80cf-4046e6691d91, since=null, name=CDC, alias=, stereotype=, visibility=public, txtDescription='Common data class containing this functionally constrained data attribute.', htmlDescription='

Common data class containing this functionally constrained data attribute.

'], _type=CDC, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1049, uuid=8dd3979e-5576-34db-99c5-b55e818bdea5, since=null, name=FCDAs, alias=, stereotype=, visibility=public, txtDescription='All functionally constrained data attributes contained within this common data class.', htmlDescription='

All functionally constrained data attributes contained within this common data class.

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3220, uuid={56217EE0-7F5F-4b89-A6EB-C65850A000AB}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::CDC +2024-09-08 15:10:00,267 [main] DEBUG AssociationEndBuilder - Updated source type to CDC +2024-09-08 15:10:00,267 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1051, uuid=db457cb8-fd6e-3808-a5d7-596d1be04931, since=null, name=CDC, alias=, stereotype=, visibility=public, txtDescription='Common data class containing this functionally constrained data.', htmlDescription='

Common data class containing this functionally constrained data.

'], _type=CDC, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1052, uuid=fcd20342-876e-32fc-9adf-8e834b5621bf, since=null, name=FCDs, alias=, stereotype=, visibility=public, txtDescription='All functionally constrained data (groups of data with the same functional constraint) contained within this common data class.', htmlDescription='

All functionally constrained data (groups of data with the same functional constraint) contained within this common data class.

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3221, uuid={025EB020-6F7B-4dbf-A870-ABE4EE81547D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,268 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1051, uuid=db457cb8-fd6e-3808-a5d7-596d1be04931, since=null, name=CDC, alias=, stereotype=, visibility=public, txtDescription='Common data class containing this functionally constrained data.', htmlDescription='

Common data class containing this functionally constrained data.

'], _type=CDC, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1052, uuid=fcd20342-876e-32fc-9adf-8e834b5621bf, since=null, name=FCDs, alias=, stereotype=, visibility=public, txtDescription='All functionally constrained data (groups of data with the same functional constraint) contained within this common data class.', htmlDescription='

All functionally constrained data (groups of data with the same functional constraint) contained within this common data class.

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3221, uuid={025EB020-6F7B-4dbf-A870-ABE4EE81547D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::CDC +2024-09-08 15:10:00,268 [main] DEBUG AssociationEndBuilder - Updated target type to CDC +2024-09-08 15:10:00,268 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1013, uuid=f02885d1-1972-3e41-a471-a8ae4471db15, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this common data class.', htmlDescription='

Logical node that contains this common data class.

'], _type=LN, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1014, uuid=2a6fc3f6-97e0-3b10-a832-cfe6bb54065c, since=null, name=CDCs, alias=, stereotype=, visibility=public, txtDescription='All common data classes contained within the logical node. +Example of references for an XCBR: +myLD3/XCBR1.Pos +myLD3/XCBR1.Loc +myLD3/XCBR1.CBOpCap +...', htmlDescription='

All common data classes contained within the logical node.

Example of references for an XCBR:

myLD3/XCBR1.Pos

myLD3/XCBR1.Loc

myLD3/XCBR1.CBOpCap

...

'], _type=CDC, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3230, uuid={DA3E0358-0E30-4308-8391-CC6F3D34D501}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::CDC +2024-09-08 15:10:00,268 [main] DEBUG ClassBuilder - Adding CDC as subclass of NamedIEC61850Object +2024-09-08 15:10:00,268 [main] TRACE ClassBuilder - read from EA: MetaModel::CDC +2024-09-08 15:10:00,268 [main] TRACE ClassBuilder - Class PrimitiveCDC (15 in package MetaModel) +2024-09-08 15:10:00,269 [main] DEBUG AssociationEndBuilder - Updated target type to PrimitiveCDC +2024-09-08 15:10:00,269 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1055, uuid=085d2cf9-8bab-3abb-9e28-3b952007063e, since=null, name=ComposedCDC, alias=, stereotype=, visibility=public, txtDescription='Common data class that contains this primitive common data class.', htmlDescription='

Common data class that contains this primitive common data class.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1056, uuid=013c3903-15f7-330c-8042-61fff5a34cf0, since=null, name=PrimitiveCDCs, alias=, stereotype=, visibility=public, txtDescription='All common data classes (data objects) contained within this composed common data class.', htmlDescription='

All common data classes (data objects) contained within this composed common data class.

'], _type=PrimitiveCDC, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3217, uuid={0BB1440F-02BC-40ba-9047-E0D8BBFBC02F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,269 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1055, uuid=085d2cf9-8bab-3abb-9e28-3b952007063e, since=null, name=ComposedCDC, alias=, stereotype=, visibility=public, txtDescription='Common data class that contains this primitive common data class.', htmlDescription='

Common data class that contains this primitive common data class.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1056, uuid=013c3903-15f7-330c-8042-61fff5a34cf0, since=null, name=PrimitiveCDCs, alias=, stereotype=, visibility=public, txtDescription='All common data classes (data objects) contained within this composed common data class.', htmlDescription='

All common data classes (data objects) contained within this composed common data class.

'], _type=PrimitiveCDC, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3217, uuid={0BB1440F-02BC-40ba-9047-E0D8BBFBC02F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::PrimitiveCDC +2024-09-08 15:10:00,269 [main] DEBUG AssociationEndBuilder - Updated source type to PrimitiveCDC +2024-09-08 15:10:00,269 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1058, uuid=c04fbe8d-887c-3da6-bd2b-a05c91e01d78, since=null, name=ControlCDC, alias=, stereotype=, visibility=public, txtDescription='Common data class defining this service parameter.', htmlDescription='

Common data class defining this service parameter.

'], _type=PrimitiveCDC, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1059, uuid=025d5e72-45d4-399f-b6e3-77175140acfa, since=null, name=ServiceParameter, alias=, stereotype=, visibility=public, txtDescription='Service parameter defined within this primitive common data class.', htmlDescription='

Service parameter defined within this primitive common data class.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3218, uuid={7238D4C2-55BD-4263-8221-888C7557A666}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,269 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1058, uuid=c04fbe8d-887c-3da6-bd2b-a05c91e01d78, since=null, name=ControlCDC, alias=, stereotype=, visibility=public, txtDescription='Common data class defining this service parameter.', htmlDescription='

Common data class defining this service parameter.

'], _type=PrimitiveCDC, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1059, uuid=025d5e72-45d4-399f-b6e3-77175140acfa, since=null, name=ServiceParameter, alias=, stereotype=, visibility=public, txtDescription='Service parameter defined within this primitive common data class.', htmlDescription='

Service parameter defined within this primitive common data class.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3218, uuid={7238D4C2-55BD-4263-8221-888C7557A666}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::PrimitiveCDC +2024-09-08 15:10:00,269 [main] DEBUG ClassBuilder - Adding PrimitiveCDC as subclass of CDC +2024-09-08 15:10:00,269 [main] TRACE ClassBuilder - read from EA: MetaModel::PrimitiveCDC +2024-09-08 15:10:00,270 [main] TRACE ClassBuilder - Class ComposedCDC (16 in package MetaModel) +2024-09-08 15:10:00,270 [main] DEBUG AssociationEndBuilder - Updated source type to ComposedCDC +2024-09-08 15:10:00,270 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1055, uuid=085d2cf9-8bab-3abb-9e28-3b952007063e, since=null, name=ComposedCDC, alias=, stereotype=, visibility=public, txtDescription='Common data class that contains this primitive common data class.', htmlDescription='

Common data class that contains this primitive common data class.

'], _type=ComposedCDC, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1056, uuid=013c3903-15f7-330c-8042-61fff5a34cf0, since=null, name=PrimitiveCDCs, alias=, stereotype=, visibility=public, txtDescription='All common data classes (data objects) contained within this composed common data class.', htmlDescription='

All common data classes (data objects) contained within this composed common data class.

'], _type=PrimitiveCDC, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3217, uuid={0BB1440F-02BC-40ba-9047-E0D8BBFBC02F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::ComposedCDC +2024-09-08 15:10:00,270 [main] DEBUG ClassBuilder - Adding ComposedCDC as subclass of CDC +2024-09-08 15:10:00,270 [main] TRACE ClassBuilder - read from EA: MetaModel::ComposedCDC +2024-09-08 15:10:00,270 [main] TRACE ClassBuilder - Class FCD (17 in package MetaModel) +2024-09-08 15:10:00,270 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::FCD, _objData=UmlObjectData [id=3592, uuid={71280780-DF48-46ed-94CA-4B5679065AE1}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1702, _eaTypeName=FCDReference, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,270 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::FCD, _objData=UmlObjectData [id=3593, uuid={000364EA-747B-48d9-9EFC-91F8A514AEF3}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,270 [main] DEBUG AssociationEndBuilder - Updated source type to FCD +2024-09-08 15:10:00,271 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1065, uuid=af6863de-3ae1-3883-a3d6-9967fc6b0a46, since=null, name=DataSetFCDMember, alias=, stereotype=, visibility=public, txtDescription='All functionally constrained data (groups of data with the same functional constraint) that this data set refers to. +Modelling note: This is FDC part of the originally defined DSMemberRef.', htmlDescription='

All functionally constrained data (groups of data with the same functional constraint) that this data set refers to.

Modelling note: This is FDC part of the originally defined DSMemberRef.

'], _type=FCD, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1066, uuid=77e6639b-28de-3cd4-bfa8-c57f8a18185d, since=null, name=DSs, alias=, stereotype=, visibility=public, txtDescription='All data sets that hold reference to this FCD. +Modelling note: FCD must maintain the link to DSs that reference it, so that the DSs can get notified before the FCD disappears. This enforces the following part of the DS spec: "The persistent existence of DATA and DataAttribute is expected as long as they are referenced as members of a DS. A system has to take special measures to ensure their persistent existence".', htmlDescription='

All data sets that hold reference to this FCD.

Modelling note: FCD must maintain the link to DSs that reference it, so that the DSs can get notified before the FCD disappears. This enforces the following part of the DS spec: "The persistent existence of DATA and DataAttribute is expected as long as they are referenced as members of a DS. A system has to take special measures to ensure their persistent existence".

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3213, uuid={70E5708A-376A-4ead-A513-A89DD752D037}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,271 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1065, uuid=af6863de-3ae1-3883-a3d6-9967fc6b0a46, since=null, name=DataSetFCDMember, alias=, stereotype=, visibility=public, txtDescription='All functionally constrained data (groups of data with the same functional constraint) that this data set refers to. +Modelling note: This is FDC part of the originally defined DSMemberRef.', htmlDescription='

All functionally constrained data (groups of data with the same functional constraint) that this data set refers to.

Modelling note: This is FDC part of the originally defined DSMemberRef.

'], _type=FCD, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1066, uuid=77e6639b-28de-3cd4-bfa8-c57f8a18185d, since=null, name=DSs, alias=, stereotype=, visibility=public, txtDescription='All data sets that hold reference to this FCD. +Modelling note: FCD must maintain the link to DSs that reference it, so that the DSs can get notified before the FCD disappears. This enforces the following part of the DS spec: "The persistent existence of DATA and DataAttribute is expected as long as they are referenced as members of a DS. A system has to take special measures to ensure their persistent existence".', htmlDescription='

All data sets that hold reference to this FCD.

Modelling note: FCD must maintain the link to DSs that reference it, so that the DSs can get notified before the FCD disappears. This enforces the following part of the DS spec: "The persistent existence of DATA and DataAttribute is expected as long as they are referenced as members of a DS. A system has to take special measures to ensure their persistent existence".

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3213, uuid={70E5708A-376A-4ead-A513-A89DD752D037}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::FCD +2024-09-08 15:10:00,271 [main] DEBUG AssociationEndBuilder - Updated source type to FCD +2024-09-08 15:10:00,271 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1068, uuid=6a604f4f-84f8-335a-b10f-66d33d9869a9, since=null, name=FCD, alias=, stereotype=, visibility=public, txtDescription='Functionally constrained data of the containing common data class, that refers to this instance.', htmlDescription='

Functionally constrained data of the containing common data class, that refers to this instance.

'], _type=FCD, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1069, uuid=e151d1f0-dc6a-388b-ad1b-01b2da6c99da, since=null, name=FCDAs, alias=, stereotype=, visibility=public, txtDescription='All functionally constrained data attributes contained within the owning common data class, that have the functional constraint same as this functionally constrained data.', htmlDescription='

All functionally constrained data attributes contained within the owning common data class, that have the functional constraint same as this functionally constrained data.

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3214, uuid={1717A86E-6CE8-47b8-A41A-A4738DCDF5AE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,271 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1068, uuid=6a604f4f-84f8-335a-b10f-66d33d9869a9, since=null, name=FCD, alias=, stereotype=, visibility=public, txtDescription='Functionally constrained data of the containing common data class, that refers to this instance.', htmlDescription='

Functionally constrained data of the containing common data class, that refers to this instance.

'], _type=FCD, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1069, uuid=e151d1f0-dc6a-388b-ad1b-01b2da6c99da, since=null, name=FCDAs, alias=, stereotype=, visibility=public, txtDescription='All functionally constrained data attributes contained within the owning common data class, that have the functional constraint same as this functionally constrained data.', htmlDescription='

All functionally constrained data attributes contained within the owning common data class, that have the functional constraint same as this functionally constrained data.

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3214, uuid={1717A86E-6CE8-47b8-A41A-A4738DCDF5AE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::FCD +2024-09-08 15:10:00,271 [main] DEBUG AssociationEndBuilder - Updated target type to FCD +2024-09-08 15:10:00,271 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1051, uuid=db457cb8-fd6e-3808-a5d7-596d1be04931, since=null, name=CDC, alias=, stereotype=, visibility=public, txtDescription='Common data class containing this functionally constrained data.', htmlDescription='

Common data class containing this functionally constrained data.

'], _type=CDC, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1052, uuid=fcd20342-876e-32fc-9adf-8e834b5621bf, since=null, name=FCDs, alias=, stereotype=, visibility=public, txtDescription='All functionally constrained data (groups of data with the same functional constraint) contained within this common data class.', htmlDescription='

All functionally constrained data (groups of data with the same functional constraint) contained within this common data class.

'], _type=FCD, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3221, uuid={025EB020-6F7B-4dbf-A870-ABE4EE81547D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::FCD +2024-09-08 15:10:00,271 [main] DEBUG ClassBuilder - Adding FCD as subclass of HierarchyIEC61850Object +2024-09-08 15:10:00,271 [main] TRACE ClassBuilder - read from EA: MetaModel::FCD +2024-09-08 15:10:00,271 [main] TRACE ClassBuilder - Class FCDA (18 in package MetaModel) +2024-09-08 15:10:00,272 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::FCDA, _objData=UmlObjectData [id=3594, uuid={B87818BA-192E-4a1d-8AD7-0549A1C7944B}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1703, _eaTypeName=FCDAReference, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,272 [main] DEBUG AssociationEndBuilder - Updated source type to FCDA +2024-09-08 15:10:00,272 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1073, uuid=023c4245-5b20-33ca-9d0c-fef9777c4177, since=null, name=FCDA, alias=, stereotype=, visibility=public, txtDescription='FCDA constraining this data attribute; in case the parent is another (composed) data attribute, this is the FCDA of the parent.', htmlDescription='

FCDA constraining this data attribute; in case the parent is another (composed) data attribute, this is the FCDA of the parent.

'], _type=FCDA, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1074, uuid=835dfdc9-b932-364d-9142-830ef629df67, since=null, name=DA, alias=, stereotype=, visibility=public, txtDescription='Data attribute constrained by this instance.', htmlDescription='

Data attribute constrained by this instance.

'], _type=null, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3210, uuid={92EADAAE-DAF5-4c4a-9F54-A165DADB3054}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,272 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1073, uuid=023c4245-5b20-33ca-9d0c-fef9777c4177, since=null, name=FCDA, alias=, stereotype=, visibility=public, txtDescription='FCDA constraining this data attribute; in case the parent is another (composed) data attribute, this is the FCDA of the parent.', htmlDescription='

FCDA constraining this data attribute; in case the parent is another (composed) data attribute, this is the FCDA of the parent.

'], _type=FCDA, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1074, uuid=835dfdc9-b932-364d-9142-830ef629df67, since=null, name=DA, alias=, stereotype=, visibility=public, txtDescription='Data attribute constrained by this instance.', htmlDescription='

Data attribute constrained by this instance.

'], _type=null, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3210, uuid={92EADAAE-DAF5-4c4a-9F54-A165DADB3054}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::FCDA +2024-09-08 15:10:00,272 [main] DEBUG AssociationEndBuilder - Updated source type to FCDA +2024-09-08 15:10:00,272 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1076, uuid=38e6f351-6cf4-386b-a3b5-0becb7ec25e9, since=null, name=DataSetFCDAMember, alias=, stereotype=, visibility=public, txtDescription='All functionally constrained data attributes that this data set refers to. +Modelling note: This is FDCA part of the originally defined DSMemberRef.', htmlDescription='

All functionally constrained data attributes that this data set refers to.

Modelling note: This is FDCA part of the originally defined DSMemberRef.

'], _type=FCDA, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1077, uuid=32266325-8527-338f-9a6e-6389184bdc7e, since=null, name=DSs, alias=, stereotype=, visibility=public, txtDescription='All data sets that hold reference to this FCD. +Modelling note: FCDA must maintain the link to DSs that reference it, so that the DSs can get notified before the FCDA disappears. This enforces the following part of the DS spec: "The persistent existence of DATA and DataAttribute is expected as long as they are referenced as members of a DS. A system has to take special measures to ensure their persistent existence".', htmlDescription='

All data sets that hold reference to this FCD.

Modelling note: FCDA must maintain the link to DSs that reference it, so that the DSs can get notified before the FCDA disappears. This enforces the following part of the DS spec: "The persistent existence of DATA and DataAttribute is expected as long as they are referenced as members of a DS. A system has to take special measures to ensure their persistent existence".

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3211, uuid={25BC4E18-D9E0-4573-8B6F-6D80E6D61916}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,272 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1076, uuid=38e6f351-6cf4-386b-a3b5-0becb7ec25e9, since=null, name=DataSetFCDAMember, alias=, stereotype=, visibility=public, txtDescription='All functionally constrained data attributes that this data set refers to. +Modelling note: This is FDCA part of the originally defined DSMemberRef.', htmlDescription='

All functionally constrained data attributes that this data set refers to.

Modelling note: This is FDCA part of the originally defined DSMemberRef.

'], _type=FCDA, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1077, uuid=32266325-8527-338f-9a6e-6389184bdc7e, since=null, name=DSs, alias=, stereotype=, visibility=public, txtDescription='All data sets that hold reference to this FCD. +Modelling note: FCDA must maintain the link to DSs that reference it, so that the DSs can get notified before the FCDA disappears. This enforces the following part of the DS spec: "The persistent existence of DATA and DataAttribute is expected as long as they are referenced as members of a DS. A system has to take special measures to ensure their persistent existence".', htmlDescription='

All data sets that hold reference to this FCD.

Modelling note: FCDA must maintain the link to DSs that reference it, so that the DSs can get notified before the FCDA disappears. This enforces the following part of the DS spec: "The persistent existence of DATA and DataAttribute is expected as long as they are referenced as members of a DS. A system has to take special measures to ensure their persistent existence".

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3211, uuid={25BC4E18-D9E0-4573-8B6F-6D80E6D61916}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::FCDA +2024-09-08 15:10:00,272 [main] DEBUG AssociationEndBuilder - Updated target type to FCDA +2024-09-08 15:10:00,272 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1068, uuid=6a604f4f-84f8-335a-b10f-66d33d9869a9, since=null, name=FCD, alias=, stereotype=, visibility=public, txtDescription='Functionally constrained data of the containing common data class, that refers to this instance.', htmlDescription='

Functionally constrained data of the containing common data class, that refers to this instance.

'], _type=FCD, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1069, uuid=e151d1f0-dc6a-388b-ad1b-01b2da6c99da, since=null, name=FCDAs, alias=, stereotype=, visibility=public, txtDescription='All functionally constrained data attributes contained within the owning common data class, that have the functional constraint same as this functionally constrained data.', htmlDescription='

All functionally constrained data attributes contained within the owning common data class, that have the functional constraint same as this functionally constrained data.

'], _type=FCDA, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3214, uuid={1717A86E-6CE8-47b8-A41A-A4738DCDF5AE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::FCDA +2024-09-08 15:10:00,272 [main] DEBUG AssociationEndBuilder - Updated target type to FCDA +2024-09-08 15:10:00,273 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1048, uuid=90ab812d-8564-3c32-80cf-4046e6691d91, since=null, name=CDC, alias=, stereotype=, visibility=public, txtDescription='Common data class containing this functionally constrained data attribute.', htmlDescription='

Common data class containing this functionally constrained data attribute.

'], _type=CDC, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1049, uuid=8dd3979e-5576-34db-99c5-b55e818bdea5, since=null, name=FCDAs, alias=, stereotype=, visibility=public, txtDescription='All functionally constrained data attributes contained within this common data class.', htmlDescription='

All functionally constrained data attributes contained within this common data class.

'], _type=FCDA, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3220, uuid={56217EE0-7F5F-4b89-A6EB-C65850A000AB}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::FCDA +2024-09-08 15:10:00,273 [main] DEBUG ClassBuilder - Adding FCDA as subclass of NamedIEC61850Object +2024-09-08 15:10:00,273 [main] TRACE ClassBuilder - read from EA: MetaModel::FCDA +2024-09-08 15:10:00,273 [main] TRACE ClassBuilder - Class DA (19 in package MetaModel) +2024-09-08 15:10:00,273 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::DA, _objData=UmlObjectData [id=3595, uuid={9BCB520F-E69E-42f6-B46B-C5CD184D0DC6}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1703, _eaTypeName=FCDAReference, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,273 [main] DEBUG AssociationEndBuilder - Updated target type to DA +2024-09-08 15:10:00,273 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1081, uuid=0851a593-0b50-32c5-80a4-4db4afdc1911, since=null, name=ComposedDA, alias=, stereotype=, visibility=public, txtDescription='Composed data attribute containing this data attribute; null in case this is primitive data attribute.', htmlDescription='

Composed data attribute containing this data attribute; null in case this is primitive data attribute.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1082, uuid=d9f8258b-5288-3a70-a818-5fba64c2ab77, since=null, name=DAs, alias=, stereotype=, visibility=public, txtDescription='All data attributes contained within this composed data attribute.', htmlDescription='

All data attributes contained within this composed data attribute.

'], _type=DA, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3208, uuid={D12489B7-C2EE-4a0f-869F-F857A942FDEF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,273 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1081, uuid=0851a593-0b50-32c5-80a4-4db4afdc1911, since=null, name=ComposedDA, alias=, stereotype=, visibility=public, txtDescription='Composed data attribute containing this data attribute; null in case this is primitive data attribute.', htmlDescription='

Composed data attribute containing this data attribute; null in case this is primitive data attribute.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1082, uuid=d9f8258b-5288-3a70-a818-5fba64c2ab77, since=null, name=DAs, alias=, stereotype=, visibility=public, txtDescription='All data attributes contained within this composed data attribute.', htmlDescription='

All data attributes contained within this composed data attribute.

'], _type=DA, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3208, uuid={D12489B7-C2EE-4a0f-869F-F857A942FDEF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::DA +2024-09-08 15:10:00,273 [main] DEBUG AssociationEndBuilder - Updated target type to DA +2024-09-08 15:10:00,274 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1073, uuid=023c4245-5b20-33ca-9d0c-fef9777c4177, since=null, name=FCDA, alias=, stereotype=, visibility=public, txtDescription='FCDA constraining this data attribute; in case the parent is another (composed) data attribute, this is the FCDA of the parent.', htmlDescription='

FCDA constraining this data attribute; in case the parent is another (composed) data attribute, this is the FCDA of the parent.

'], _type=FCDA, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1074, uuid=835dfdc9-b932-364d-9142-830ef629df67, since=null, name=DA, alias=, stereotype=, visibility=public, txtDescription='Data attribute constrained by this instance.', htmlDescription='

Data attribute constrained by this instance.

'], _type=DA, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3210, uuid={92EADAAE-DAF5-4c4a-9F54-A165DADB3054}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::DA +2024-09-08 15:10:00,274 [main] DEBUG ClassBuilder - Adding DA as subclass of NamedIEC61850Object +2024-09-08 15:10:00,274 [main] TRACE ClassBuilder - read from EA: MetaModel::DA +2024-09-08 15:10:00,274 [main] TRACE ClassBuilder - Class PrimitiveDA (20 in package MetaModel) +2024-09-08 15:10:00,275 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::PrimitiveDA, _objData=UmlObjectData [id=3596, uuid={6D0553ED-7183-49b8-AA89-281C5ED4C156}, since=null, name=attrVal, alias=, stereotype=, visibility=public, txtDescription='Attribute value.', htmlDescription='

Attribute value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1715, _eaTypeName=AttrValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,275 [main] DEBUG AssociationEndBuilder - Updated target type to PrimitiveDA +2024-09-08 15:10:00,275 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1058, uuid=c04fbe8d-887c-3da6-bd2b-a05c91e01d78, since=null, name=ControlCDC, alias=, stereotype=, visibility=public, txtDescription='Common data class defining this service parameter.', htmlDescription='

Common data class defining this service parameter.

'], _type=PrimitiveCDC, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1059, uuid=025d5e72-45d4-399f-b6e3-77175140acfa, since=null, name=ServiceParameter, alias=, stereotype=, visibility=public, txtDescription='Service parameter defined within this primitive common data class.', htmlDescription='

Service parameter defined within this primitive common data class.

'], _type=PrimitiveDA, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3218, uuid={7238D4C2-55BD-4263-8221-888C7557A666}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::PrimitiveDA +2024-09-08 15:10:00,275 [main] DEBUG ClassBuilder - Adding PrimitiveDA as subclass of DA +2024-09-08 15:10:00,275 [main] DEBUG ClassBuilder - Adding PrimitiveDA as superclass of PHYCOMADDR +2024-09-08 15:10:00,275 [main] DEBUG ClassBuilder - Adding PrimitiveDA as superclass of ObjectReference +2024-09-08 15:10:00,275 [main] DEBUG ClassBuilder - Adding PrimitiveDA as superclass of VISIBLE_STRING255 +2024-09-08 15:10:00,275 [main] DEBUG ClassBuilder - Adding PrimitiveDA as superclass of UNICODE_STRING255 +2024-09-08 15:10:00,275 [main] DEBUG ClassBuilder - Adding PrimitiveDA as superclass of INT32U +2024-09-08 15:10:00,275 [main] DEBUG ClassBuilder - Adding PrimitiveDA as superclass of INT32 +2024-09-08 15:10:00,275 [main] DEBUG ClassBuilder - Adding PrimitiveDA as superclass of INT16U +2024-09-08 15:10:00,275 [main] DEBUG ClassBuilder - Adding PrimitiveDA as superclass of FLOAT32 +2024-09-08 15:10:00,275 [main] DEBUG ClassBuilder - Adding PrimitiveDA as superclass of BOOLEAN +2024-09-08 15:10:00,275 [main] TRACE ClassBuilder - read from EA: MetaModel::PrimitiveDA +2024-09-08 15:10:00,275 [main] TRACE ClassBuilder - Class PackedPrimitiveDA (21 in package MetaModel) +2024-09-08 15:10:00,276 [main] DEBUG ClassBuilder - Adding PackedPrimitiveDA as subclass of PrimitiveDA +2024-09-08 15:10:00,276 [main] DEBUG ClassBuilder - Adding PackedPrimitiveDA as superclass of TriggerConditions +2024-09-08 15:10:00,276 [main] DEBUG ClassBuilder - Adding PackedPrimitiveDA as superclass of TimeStamp +2024-09-08 15:10:00,276 [main] TRACE ClassBuilder - read from EA: MetaModel::PackedPrimitiveDA +2024-09-08 15:10:00,276 [main] TRACE ClassBuilder - Class EnumDA (22 in package MetaModel) +2024-09-08 15:10:00,276 [main] DEBUG ClassBuilder - Adding EnumDA as subclass of PrimitiveDA +2024-09-08 15:10:00,276 [main] TRACE ClassBuilder - read from EA: MetaModel::EnumDA +2024-09-08 15:10:00,276 [main] TRACE ClassBuilder - Class PackedEnumDA (23 in package MetaModel) +2024-09-08 15:10:00,276 [main] DEBUG ClassBuilder - Adding PackedEnumDA as subclass of EnumDA +2024-09-08 15:10:00,277 [main] DEBUG ClassBuilder - Adding PackedEnumDA as superclass of BsControl +2024-09-08 15:10:00,277 [main] DEBUG ClassBuilder - Adding PackedEnumDA as superclass of DpStatus +2024-09-08 15:10:00,277 [main] TRACE ClassBuilder - read from EA: MetaModel::PackedEnumDA +2024-09-08 15:10:00,277 [main] TRACE ClassBuilder - Class ComposedDA (24 in package MetaModel) +2024-09-08 15:10:00,277 [main] DEBUG AssociationEndBuilder - Updated source type to ComposedDA +2024-09-08 15:10:00,277 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1081, uuid=0851a593-0b50-32c5-80a4-4db4afdc1911, since=null, name=ComposedDA, alias=, stereotype=, visibility=public, txtDescription='Composed data attribute containing this data attribute; null in case this is primitive data attribute.', htmlDescription='

Composed data attribute containing this data attribute; null in case this is primitive data attribute.

'], _type=ComposedDA, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1082, uuid=d9f8258b-5288-3a70-a818-5fba64c2ab77, since=null, name=DAs, alias=, stereotype=, visibility=public, txtDescription='All data attributes contained within this composed data attribute.', htmlDescription='

All data attributes contained within this composed data attribute.

'], _type=DA, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3208, uuid={D12489B7-C2EE-4a0f-869F-F857A942FDEF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::ComposedDA +2024-09-08 15:10:00,277 [main] DEBUG ClassBuilder - Adding ComposedDA as subclass of DA +2024-09-08 15:10:00,277 [main] TRACE ClassBuilder - read from EA: MetaModel::ComposedDA +2024-09-08 15:10:00,277 [main] TRACE ClassBuilder - Class DS (25 in package MetaModel) +2024-09-08 15:10:00,277 [main] DEBUG AssociationEndBuilder - Updated target type to DS +2024-09-08 15:10:00,278 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1091, uuid=754dda4b-1ba3-3c6f-a897-16b85d68532b, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1092, uuid=1031f846-1193-396c-a0c8-926a4fe94212, since=null, name=DS, alias=, stereotype=, visibility=public, txtDescription='Dataset on which this control block does reporting.', htmlDescription='

Dataset on which this control block does reporting.

'], _type=DS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3200, uuid={6ED5A47C-6FE5-4d6c-9066-A0852F973D51}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,278 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1091, uuid=754dda4b-1ba3-3c6f-a897-16b85d68532b, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1092, uuid=1031f846-1193-396c-a0c8-926a4fe94212, since=null, name=DS, alias=, stereotype=, visibility=public, txtDescription='Dataset on which this control block does reporting.', htmlDescription='

Dataset on which this control block does reporting.

'], _type=DS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3200, uuid={6ED5A47C-6FE5-4d6c-9066-A0852F973D51}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::DS +2024-09-08 15:10:00,278 [main] DEBUG AssociationEndBuilder - Updated target type to DS +2024-09-08 15:10:00,278 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1094, uuid=41bfd20a-38bb-3b0b-ac75-acf0845530a7, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1095, uuid=642e8482-67c3-35c6-bed8-242064f73265, since=null, name=DS, alias=, stereotype=, visibility=public, txtDescription='Dataset on which this control block does samples reporting.', htmlDescription='

Dataset on which this control block does samples reporting.

'], _type=DS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3201, uuid={050244CD-359B-4516-B382-B2C560ECFCA1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,278 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1094, uuid=41bfd20a-38bb-3b0b-ac75-acf0845530a7, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1095, uuid=642e8482-67c3-35c6-bed8-242064f73265, since=null, name=DS, alias=, stereotype=, visibility=public, txtDescription='Dataset on which this control block does samples reporting.', htmlDescription='

Dataset on which this control block does samples reporting.

'], _type=DS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3201, uuid={050244CD-359B-4516-B382-B2C560ECFCA1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::DS +2024-09-08 15:10:00,278 [main] DEBUG AssociationEndBuilder - Updated target type to DS +2024-09-08 15:10:00,278 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1076, uuid=38e6f351-6cf4-386b-a3b5-0becb7ec25e9, since=null, name=DataSetFCDAMember, alias=, stereotype=, visibility=public, txtDescription='All functionally constrained data attributes that this data set refers to. +Modelling note: This is FDCA part of the originally defined DSMemberRef.', htmlDescription='

All functionally constrained data attributes that this data set refers to.

Modelling note: This is FDCA part of the originally defined DSMemberRef.

'], _type=FCDA, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1077, uuid=32266325-8527-338f-9a6e-6389184bdc7e, since=null, name=DSs, alias=, stereotype=, visibility=public, txtDescription='All data sets that hold reference to this FCD. +Modelling note: FCDA must maintain the link to DSs that reference it, so that the DSs can get notified before the FCDA disappears. This enforces the following part of the DS spec: "The persistent existence of DATA and DataAttribute is expected as long as they are referenced as members of a DS. A system has to take special measures to ensure their persistent existence".', htmlDescription='

All data sets that hold reference to this FCD.

Modelling note: FCDA must maintain the link to DSs that reference it, so that the DSs can get notified before the FCDA disappears. This enforces the following part of the DS spec: "The persistent existence of DATA and DataAttribute is expected as long as they are referenced as members of a DS. A system has to take special measures to ensure their persistent existence".

'], _type=DS, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3211, uuid={25BC4E18-D9E0-4573-8B6F-6D80E6D61916}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::DS +2024-09-08 15:10:00,278 [main] DEBUG AssociationEndBuilder - Updated target type to DS +2024-09-08 15:10:00,278 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1065, uuid=af6863de-3ae1-3883-a3d6-9967fc6b0a46, since=null, name=DataSetFCDMember, alias=, stereotype=, visibility=public, txtDescription='All functionally constrained data (groups of data with the same functional constraint) that this data set refers to. +Modelling note: This is FDC part of the originally defined DSMemberRef.', htmlDescription='

All functionally constrained data (groups of data with the same functional constraint) that this data set refers to.

Modelling note: This is FDC part of the originally defined DSMemberRef.

'], _type=FCD, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1066, uuid=77e6639b-28de-3cd4-bfa8-c57f8a18185d, since=null, name=DSs, alias=, stereotype=, visibility=public, txtDescription='All data sets that hold reference to this FCD. +Modelling note: FCD must maintain the link to DSs that reference it, so that the DSs can get notified before the FCD disappears. This enforces the following part of the DS spec: "The persistent existence of DATA and DataAttribute is expected as long as they are referenced as members of a DS. A system has to take special measures to ensure their persistent existence".', htmlDescription='

All data sets that hold reference to this FCD.

Modelling note: FCD must maintain the link to DSs that reference it, so that the DSs can get notified before the FCD disappears. This enforces the following part of the DS spec: "The persistent existence of DATA and DataAttribute is expected as long as they are referenced as members of a DS. A system has to take special measures to ensure their persistent existence".

'], _type=DS, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3213, uuid={70E5708A-376A-4ead-A513-A89DD752D037}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::DS +2024-09-08 15:10:00,278 [main] DEBUG ClassBuilder - Adding DS as subclass of NamedIEC61850Object +2024-09-08 15:10:00,278 [main] TRACE ClassBuilder - read from EA: MetaModel::DS +2024-09-08 15:10:00,278 [main] TRACE ClassBuilder - Class LNOwnedDS (26 in package MetaModel) +2024-09-08 15:10:00,278 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::LNOwnedDS, _objData=UmlObjectData [id=3597, uuid={178D709F-C872-44cb-9A6B-41E324507F65}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1701, _eaTypeName=LNOwnedDSReference, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,279 [main] DEBUG AssociationEndBuilder - Updated target type to LNOwnedDS +2024-09-08 15:10:00,279 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1099, uuid=a0160709-7011-3070-8575-d499c997b6ca, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1100, uuid=017c9fb8-6160-374a-b89a-e95c279b0b44, since=null, name=LNOwnedDS, alias=, stereotype=, visibility=public, txtDescription='Configured or persistent dataset on which this control block does samples reporting.', htmlDescription='

Configured or persistent dataset on which this control block does samples reporting.

'], _type=LNOwnedDS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3195, uuid={F357D381-3044-4cd1-8CFA-38A2B656F174}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,279 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1099, uuid=a0160709-7011-3070-8575-d499c997b6ca, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1100, uuid=017c9fb8-6160-374a-b89a-e95c279b0b44, since=null, name=LNOwnedDS, alias=, stereotype=, visibility=public, txtDescription='Configured or persistent dataset on which this control block does samples reporting.', htmlDescription='

Configured or persistent dataset on which this control block does samples reporting.

'], _type=LNOwnedDS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3195, uuid={F357D381-3044-4cd1-8CFA-38A2B656F174}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::LNOwnedDS +2024-09-08 15:10:00,279 [main] DEBUG AssociationEndBuilder - Updated target type to LNOwnedDS +2024-09-08 15:10:00,279 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1102, uuid=c667d53a-cd89-3a97-a85d-e0c201ba99be, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1103, uuid=c06bb548-4faa-374b-8c34-fd0edfe9524d, since=null, name=LNOwnedDS, alias=, stereotype=, visibility=public, txtDescription='Configured or persistent dataset on which this control block does logging.', htmlDescription='

Configured or persistent dataset on which this control block does logging.

'], _type=LNOwnedDS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3196, uuid={EA54B291-68A6-4335-8F83-75866CFEC3A8}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,279 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1102, uuid=c667d53a-cd89-3a97-a85d-e0c201ba99be, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1103, uuid=c06bb548-4faa-374b-8c34-fd0edfe9524d, since=null, name=LNOwnedDS, alias=, stereotype=, visibility=public, txtDescription='Configured or persistent dataset on which this control block does logging.', htmlDescription='

Configured or persistent dataset on which this control block does logging.

'], _type=LNOwnedDS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3196, uuid={EA54B291-68A6-4335-8F83-75866CFEC3A8}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::LNOwnedDS +2024-09-08 15:10:00,279 [main] DEBUG AssociationEndBuilder - Updated target type to LNOwnedDS +2024-09-08 15:10:00,279 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1105, uuid=af21d0c9-7db2-327e-9357-2cbf59eb343d, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1106, uuid=e6823309-c63d-36d0-90f4-432dbb9633f8, since=null, name=LNOwnedDS, alias=, stereotype=, visibility=public, txtDescription='Configured or persistent dataset on which this control block does reporting.', htmlDescription='

Configured or persistent dataset on which this control block does reporting.

'], _type=LNOwnedDS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3197, uuid={76C586C4-9922-4d73-A4FD-C5D18503439E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,280 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1105, uuid=af21d0c9-7db2-327e-9357-2cbf59eb343d, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1106, uuid=e6823309-c63d-36d0-90f4-432dbb9633f8, since=null, name=LNOwnedDS, alias=, stereotype=, visibility=public, txtDescription='Configured or persistent dataset on which this control block does reporting.', htmlDescription='

Configured or persistent dataset on which this control block does reporting.

'], _type=LNOwnedDS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3197, uuid={76C586C4-9922-4d73-A4FD-C5D18503439E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::LNOwnedDS +2024-09-08 15:10:00,280 [main] DEBUG AssociationEndBuilder - Updated target type to LNOwnedDS +2024-09-08 15:10:00,280 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1108, uuid=b9d487a3-0398-342e-8ff5-5c228ed5652b, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1109, uuid=829fb6e1-1ddd-3d1d-bd66-36feb14446c7, since=null, name=LNOwnedDS, alias=, stereotype=, visibility=public, txtDescription='Configured or persistent dataset on which this control block does GOOSE eventing.', htmlDescription='

Configured or persistent dataset on which this control block does GOOSE eventing.

'], _type=LNOwnedDS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3198, uuid={3F8B1E7F-FBA3-44e0-8B59-38EF2CB27164}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,280 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1108, uuid=b9d487a3-0398-342e-8ff5-5c228ed5652b, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1109, uuid=829fb6e1-1ddd-3d1d-bd66-36feb14446c7, since=null, name=LNOwnedDS, alias=, stereotype=, visibility=public, txtDescription='Configured or persistent dataset on which this control block does GOOSE eventing.', htmlDescription='

Configured or persistent dataset on which this control block does GOOSE eventing.

'], _type=LNOwnedDS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3198, uuid={3F8B1E7F-FBA3-44e0-8B59-38EF2CB27164}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::LNOwnedDS +2024-09-08 15:10:00,280 [main] DEBUG AssociationEndBuilder - Updated target type to LNOwnedDS +2024-09-08 15:10:00,280 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1016, uuid=598e95ae-dfa7-39fb-88a4-4b35a32d16a6, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this data set.', htmlDescription='

Logical node that contains this data set.

'], _type=LN, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1017, uuid=ad95f35b-687c-3ff8-8d6f-753ec8310166, since=null, name=LNOwnedDSs, alias=, stereotype=, visibility=public, txtDescription='All datasets contained within the logical node. +Modelling note: To distinguish between data sets effectively contained by LN, and non-persistent data sets (which are owned by the TPAA over which they have been created), we introduced an abstract LNOwnedDS class, which excludes non-persistent DSs.', htmlDescription='

All datasets contained within the logical node.

Modelling note: To distinguish between data sets effectively contained by LN, and non-persistent data sets (which are owned by the TPAA over which they have been created), we introduced an abstract LNOwnedDS class, which excludes non-persistent DSs.

'], _type=LNOwnedDS, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3231, uuid={7F7F081B-F2D6-484c-963B-F44D4FE8F9CC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::LNOwnedDS +2024-09-08 15:10:00,280 [main] DEBUG ClassBuilder - Adding LNOwnedDS as subclass of DS +2024-09-08 15:10:00,280 [main] TRACE ClassBuilder - read from EA: MetaModel::LNOwnedDS +2024-09-08 15:10:00,280 [main] TRACE ClassBuilder - Class NonPersistentDS (27 in package MetaModel) +2024-09-08 15:10:00,281 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::NonPersistentDS, _objData=UmlObjectData [id=3598, uuid={D70F19B4-50F6-4ef3-B474-4097F3C69C1D}, since=null, name=isReferenced, alias=, stereotype=, visibility=public, txtDescription='Whether this persistent data set is referenced by any control block. +Modelling note: Persistent data set has to maintain the count of control blocks that refer to it. As long as any control block refers to it, the data set must not be deleted.', htmlDescription='

Whether this persistent data set is referenced by any control block.

Modelling note: Persistent data set has to maintain the count of control blocks that refer to it. As long as any control block refers to it, the data set must not be deleted.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,281 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::NonPersistentDS, _objData=UmlObjectData [id=3599, uuid={621B00EC-B4C7-4e96-B78E-699BDF150650}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1695, _eaTypeName=NonPersistentDSReference, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,281 [main] DEBUG AssociationEndBuilder - Updated target type to NonPersistentDS +2024-09-08 15:10:00,281 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=996, uuid=33873e04-2b68-3050-9013-5d6a42a0a6e5, since=null, name=TPAA, alias=, stereotype=, visibility=public, txtDescription='Two-party application association that contains this non-persistent data set.', htmlDescription='

Two-party application association that contains this non-persistent data set.

'], _type=TPAA, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=997, uuid=5880d6da-097a-3fed-aae8-1381cf23315b, since=null, name=NonPersistentDSs, alias=, stereotype=, visibility=public, txtDescription='All non-persistent data sets contained within this two-party application association.', htmlDescription='

All non-persistent data sets contained within this two-party application association.

'], _type=NonPersistentDS, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3242, uuid={B9ECE073-A02C-48da-93A7-2B8F2E8C9059}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::NonPersistentDS +2024-09-08 15:10:00,281 [main] DEBUG ClassBuilder - Adding NonPersistentDS as subclass of DS +2024-09-08 15:10:00,281 [main] TRACE ClassBuilder - read from EA: MetaModel::NonPersistentDS +2024-09-08 15:10:00,281 [main] TRACE ClassBuilder - Class ConfiguredDS (28 in package MetaModel) +2024-09-08 15:10:00,281 [main] DEBUG ClassBuilder - Adding ConfiguredDS as subclass of LNOwnedDS +2024-09-08 15:10:00,281 [main] TRACE ClassBuilder - read from EA: MetaModel::ConfiguredDS +2024-09-08 15:10:00,282 [main] TRACE ClassBuilder - Class PersistentDS (29 in package MetaModel) +2024-09-08 15:10:00,282 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::PersistentDS, _objData=UmlObjectData [id=3600, uuid={6031C78B-0DF2-4ebc-B8D9-F1536979D005}, since=null, name=isReferenced, alias=, stereotype=, visibility=public, txtDescription='Whether this persistent data set is referenced by any control block. +Modelling note: Persistent data set has to maintain the count of control blocks that refer to it. As long as any control block refers to it, the data set must not be deleted.', htmlDescription='

Whether this persistent data set is referenced by any control block.

Modelling note: Persistent data set has to maintain the count of control blocks that refer to it. As long as any control block refers to it, the data set must not be deleted.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,282 [main] DEBUG ClassBuilder - Adding PersistentDS as subclass of LNOwnedDS +2024-09-08 15:10:00,282 [main] TRACE ClassBuilder - read from EA: MetaModel::PersistentDS +2024-09-08 15:10:00,282 [main] TRACE ClassBuilder - Class SUBSTITUTION (30 in package MetaModel) +2024-09-08 15:10:00,282 [main] TRACE ClassBuilder - read from EA: MetaModel::SUBSTITUTION +2024-09-08 15:10:00,282 [main] TRACE ClassBuilder - Class ControlBlock (31 in package MetaModel) +2024-09-08 15:10:00,282 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::ControlBlock, _objData=UmlObjectData [id=3601, uuid={A222DE94-3FCC-4552-ABD6-E06CD9D4785A}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1698, _eaTypeName=CBReference, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,283 [main] DEBUG ClassBuilder - Adding ControlBlock as subclass of NamedIEC61850Object +2024-09-08 15:10:00,283 [main] TRACE ClassBuilder - read from EA: MetaModel::ControlBlock +2024-09-08 15:10:00,283 [main] TRACE ClassBuilder - Class RCB (32 in package MetaModel) +2024-09-08 15:10:00,283 [main] DEBUG ClassBuilder - Adding RCB as subclass of ControlBlock +2024-09-08 15:10:00,283 [main] TRACE ClassBuilder - read from EA: MetaModel::RCB +2024-09-08 15:10:00,283 [main] TRACE ClassBuilder - Class BRCB (33 in package MetaModel) +2024-09-08 15:10:00,283 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::BRCB, _objData=UmlObjectData [id=3602, uuid={49A42927-00D7-4419-B76E-ED5F48ECCCB8}, since=null, name=clientAddress, alias=, stereotype=, visibility=public, txtDescription='Address of the client configured to use this buffered sampled values control block.', htmlDescription='

Address of the client configured to use this buffered sampled values control block.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1771, _eaTypeName=IPAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,283 [main] DEBUG AssociationEndBuilder - Updated source type to BRCB +2024-09-08 15:10:00,283 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1105, uuid=af21d0c9-7db2-327e-9357-2cbf59eb343d, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=BRCB, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1106, uuid=e6823309-c63d-36d0-90f4-432dbb9633f8, since=null, name=LNOwnedDS, alias=, stereotype=, visibility=public, txtDescription='Configured or persistent dataset on which this control block does reporting.', htmlDescription='

Configured or persistent dataset on which this control block does reporting.

'], _type=LNOwnedDS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3197, uuid={76C586C4-9922-4d73-A4FD-C5D18503439E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::BRCB +2024-09-08 15:10:00,284 [main] DEBUG AssociationEndBuilder - Updated target type to BRCB +2024-09-08 15:10:00,284 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1028, uuid=e7603d9e-d7ed-34d2-a8c2-fe57012d3517, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this buffered report control block.', htmlDescription='

Logical node that contains this buffered report control block.

'], _type=LN, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1029, uuid=3e1af449-26b3-33ce-8b0e-bca6ed828fdc, since=null, name=BRCBs, alias=, stereotype=, visibility=public, txtDescription='All buffered report control blocks contained in this logical node.', htmlDescription='

All buffered report control blocks contained in this logical node.

'], _type=BRCB, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3235, uuid={0F20B431-6EE2-469b-8223-819230E9C43E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::BRCB +2024-09-08 15:10:00,284 [main] DEBUG ClassBuilder - Adding BRCB as subclass of RCB +2024-09-08 15:10:00,284 [main] TRACE ClassBuilder - read from EA: MetaModel::BRCB +2024-09-08 15:10:00,284 [main] TRACE ClassBuilder - Class URCB (34 in package MetaModel) +2024-09-08 15:10:00,284 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::URCB, _objData=UmlObjectData [id=3603, uuid={B5927ACC-713E-4617-AA8C-BC2DF96653FC}, since=null, name=clientAddress, alias=, stereotype=, visibility=public, txtDescription='Address of the client currently using this unbuffered report control block.', htmlDescription='

Address of the client currently using this unbuffered report control block.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1771, _eaTypeName=IPAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,284 [main] DEBUG AssociationEndBuilder - Updated source type to URCB +2024-09-08 15:10:00,284 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1091, uuid=754dda4b-1ba3-3c6f-a897-16b85d68532b, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=URCB, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1092, uuid=1031f846-1193-396c-a0c8-926a4fe94212, since=null, name=DS, alias=, stereotype=, visibility=public, txtDescription='Dataset on which this control block does reporting.', htmlDescription='

Dataset on which this control block does reporting.

'], _type=DS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3200, uuid={6ED5A47C-6FE5-4d6c-9066-A0852F973D51}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::URCB +2024-09-08 15:10:00,284 [main] DEBUG AssociationEndBuilder - Updated target type to URCB +2024-09-08 15:10:00,285 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1025, uuid=a356009c-e249-3887-a8c2-5efc8b789aeb, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this unbuffered report control block.', htmlDescription='

Logical node that contains this unbuffered report control block.

'], _type=LN, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1026, uuid=a98e6c87-71bd-3819-b3e8-db240e74bd95, since=null, name=URCBs, alias=, stereotype=, visibility=public, txtDescription='All unbuffered report control blocks contained in this logical node.', htmlDescription='

All unbuffered report control blocks contained in this logical node.

'], _type=URCB, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3234, uuid={1CDCF8AA-E5B2-490a-AC9E-28949329C1F9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::URCB +2024-09-08 15:10:00,285 [main] DEBUG ClassBuilder - Adding URCB as subclass of RCB +2024-09-08 15:10:00,285 [main] TRACE ClassBuilder - read from EA: MetaModel::URCB +2024-09-08 15:10:00,285 [main] TRACE ClassBuilder - Class LCB (35 in package MetaModel) +2024-09-08 15:10:00,286 [main] DEBUG AssociationEndBuilder - Updated source type to LCB +2024-09-08 15:10:00,286 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1126, uuid=ffeed84c-7cb1-3e7b-b4ec-4bd78275bb98, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=LCB, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1127, uuid=956f45df-c33e-36bb-a970-1eec7ebf4d41, since=null, name=LOG, alias=, stereotype=, visibility=public, txtDescription='Log to which this control block logs entries.', htmlDescription='

Log to which this control block logs entries.

'], _type=null, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3186, uuid={E2E6813C-06BC-49cd-A3E4-BFAD1AFF3150}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,286 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1126, uuid=ffeed84c-7cb1-3e7b-b4ec-4bd78275bb98, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=LCB, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1127, uuid=956f45df-c33e-36bb-a970-1eec7ebf4d41, since=null, name=LOG, alias=, stereotype=, visibility=public, txtDescription='Log to which this control block logs entries.', htmlDescription='

Log to which this control block logs entries.

'], _type=null, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3186, uuid={E2E6813C-06BC-49cd-A3E4-BFAD1AFF3150}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::LCB +2024-09-08 15:10:00,286 [main] DEBUG AssociationEndBuilder - Updated source type to LCB +2024-09-08 15:10:00,286 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1102, uuid=c667d53a-cd89-3a97-a85d-e0c201ba99be, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=LCB, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1103, uuid=c06bb548-4faa-374b-8c34-fd0edfe9524d, since=null, name=LNOwnedDS, alias=, stereotype=, visibility=public, txtDescription='Configured or persistent dataset on which this control block does logging.', htmlDescription='

Configured or persistent dataset on which this control block does logging.

'], _type=LNOwnedDS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3196, uuid={EA54B291-68A6-4335-8F83-75866CFEC3A8}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::LCB +2024-09-08 15:10:00,286 [main] DEBUG AssociationEndBuilder - Updated target type to LCB +2024-09-08 15:10:00,286 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1022, uuid=87feb7ab-da8f-3ba7-aae0-aa46758eaf0f, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this log control block.', htmlDescription='

Logical node that contains this log control block.

'], _type=LN, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1023, uuid=c7ae4357-23e6-374c-a634-364fe49cda56, since=null, name=LCBs, alias=, stereotype=, visibility=public, txtDescription='All log control blocks contained in this device logical node.', htmlDescription='

All log control blocks contained in this device logical node.

'], _type=LCB, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3233, uuid={4EDAC9DF-298C-4398-A217-F8EE4F5B1585}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::LCB +2024-09-08 15:10:00,286 [main] DEBUG ClassBuilder - Adding LCB as subclass of ControlBlock +2024-09-08 15:10:00,286 [main] TRACE ClassBuilder - read from EA: MetaModel::LCB +2024-09-08 15:10:00,286 [main] TRACE ClassBuilder - Class LOG (36 in package MetaModel) +2024-09-08 15:10:00,287 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::LOG, _objData=UmlObjectData [id=3604, uuid={83B4C180-8173-4ced-91C7-171BCA34F649}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1700, _eaTypeName=LOGReference, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,287 [main] DEBUG AssociationEndBuilder - Updated target type to LOG +2024-09-08 15:10:00,287 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1126, uuid=ffeed84c-7cb1-3e7b-b4ec-4bd78275bb98, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=LCB, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1127, uuid=956f45df-c33e-36bb-a970-1eec7ebf4d41, since=null, name=LOG, alias=, stereotype=, visibility=public, txtDescription='Log to which this control block logs entries.', htmlDescription='

Log to which this control block logs entries.

'], _type=LOG, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3186, uuid={E2E6813C-06BC-49cd-A3E4-BFAD1AFF3150}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::LOG +2024-09-08 15:10:00,287 [main] DEBUG AssociationEndBuilder - Updated target type to LOG +2024-09-08 15:10:00,287 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1019, uuid=91389a73-8253-3920-bb6e-2ca4b6596579, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this log.', htmlDescription='

Logical node that contains this log.

'], _type=LN, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1020, uuid=6dba35d3-b8a8-39a0-96f5-63c3fb0ca786, since=null, name=LOGs, alias=, stereotype=, visibility=public, txtDescription='All logs contained in this device logical node.', htmlDescription='

All logs contained in this device logical node.

'], _type=LOG, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3232, uuid={7F440C52-EE5C-4b8b-A1A0-DC7AA86473A0}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::LOG +2024-09-08 15:10:00,287 [main] DEBUG ClassBuilder - Adding LOG as subclass of NamedIEC61850Object +2024-09-08 15:10:00,287 [main] TRACE ClassBuilder - read from EA: MetaModel::LOG +2024-09-08 15:10:00,287 [main] TRACE ClassBuilder - Class GCB (37 in package MetaModel) +2024-09-08 15:10:00,287 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::GCB, _objData=UmlObjectData [id=3605, uuid={8D35BDEB-211F-478a-B3F2-87A92379A926}, since=null, name=destinationAddress, alias=, stereotype=, visibility=public, txtDescription='Address to which this control block publishes GOOSE messages.', htmlDescription='

Address to which this control block publishes GOOSE messages.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1772, _eaTypeName=MulticastAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,287 [main] DEBUG AssociationEndBuilder - Updated source type to GCB +2024-09-08 15:10:00,287 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1108, uuid=b9d487a3-0398-342e-8ff5-5c228ed5652b, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=GCB, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1109, uuid=829fb6e1-1ddd-3d1d-bd66-36feb14446c7, since=null, name=LNOwnedDS, alias=, stereotype=, visibility=public, txtDescription='Configured or persistent dataset on which this control block does GOOSE eventing.', htmlDescription='

Configured or persistent dataset on which this control block does GOOSE eventing.

'], _type=LNOwnedDS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3198, uuid={3F8B1E7F-FBA3-44e0-8B59-38EF2CB27164}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::GCB +2024-09-08 15:10:00,287 [main] DEBUG AssociationEndBuilder - Updated target type to GCB +2024-09-08 15:10:00,287 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1036, uuid=c18773d5-9ab1-31dd-8e87-e416e5c518dd, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='Device logical node that contains this GOOSE control block.', htmlDescription='

Device logical node that contains this GOOSE control block.

'], _type=LN0, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1037, uuid=43d0dac2-11b5-3602-9cdb-c87fd6c9ed1e, since=null, name=GCBs, alias=, stereotype=, visibility=public, txtDescription='All GOOSE control blocks contained in this device logical node.', htmlDescription='

All GOOSE control blocks contained in this device logical node.

'], _type=GCB, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3225, uuid={5B28CB32-75ED-4ce9-970B-A054C0FE6AF2}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::GCB +2024-09-08 15:10:00,287 [main] DEBUG ClassBuilder - Adding GCB as subclass of ControlBlock +2024-09-08 15:10:00,287 [main] TRACE ClassBuilder - read from EA: MetaModel::GCB +2024-09-08 15:10:00,288 [main] TRACE ClassBuilder - Class SVCB (38 in package MetaModel) +2024-09-08 15:10:00,288 [main] DEBUG ClassBuilder - Adding SVCB as subclass of ControlBlock +2024-09-08 15:10:00,288 [main] TRACE ClassBuilder - read from EA: MetaModel::SVCB +2024-09-08 15:10:00,288 [main] TRACE ClassBuilder - Class MSVCB (39 in package MetaModel) +2024-09-08 15:10:00,288 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::MSVCB, _objData=UmlObjectData [id=3606, uuid={98ABF189-48F0-466b-9B2F-580948BB965B}, since=null, name=destinationAddress, alias=, stereotype=, visibility=public, txtDescription='Address to which this control block publishes sampled values.', htmlDescription='

Address to which this control block publishes sampled values.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1772, _eaTypeName=MulticastAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,288 [main] DEBUG AssociationEndBuilder - Updated source type to MSVCB +2024-09-08 15:10:00,288 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1099, uuid=a0160709-7011-3070-8575-d499c997b6ca, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=MSVCB, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1100, uuid=017c9fb8-6160-374a-b89a-e95c279b0b44, since=null, name=LNOwnedDS, alias=, stereotype=, visibility=public, txtDescription='Configured or persistent dataset on which this control block does samples reporting.', htmlDescription='

Configured or persistent dataset on which this control block does samples reporting.

'], _type=LNOwnedDS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3195, uuid={F357D381-3044-4cd1-8CFA-38A2B656F174}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::MSVCB +2024-09-08 15:10:00,288 [main] DEBUG AssociationEndBuilder - Updated target type to MSVCB +2024-09-08 15:10:00,288 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1039, uuid=9322d900-a7a3-35be-a2fc-8dc05f438e73, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='Device logical node that contains this multicast sampled values control block.', htmlDescription='

Device logical node that contains this multicast sampled values control block.

'], _type=LN0, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1040, uuid=1d3ff9d3-58c1-37bd-ae64-3a515789448b, since=null, name=MSVCBs, alias=, stereotype=, visibility=public, txtDescription='All multicast simpled values control blocks contained in this device logical node.', htmlDescription='

All multicast simpled values control blocks contained in this device logical node.

'], _type=MSVCB, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3226, uuid={3FE94B8A-D716-44df-98C2-B7C222CEE5E8}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::MSVCB +2024-09-08 15:10:00,288 [main] DEBUG ClassBuilder - Adding MSVCB as subclass of SVCB +2024-09-08 15:10:00,288 [main] TRACE ClassBuilder - read from EA: MetaModel::MSVCB +2024-09-08 15:10:00,288 [main] TRACE ClassBuilder - Class USVCB (40 in package MetaModel) +2024-09-08 15:10:00,288 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::USVCB, _objData=UmlObjectData [id=3607, uuid={84624C3F-9B45-49b5-94A3-491A476383AF}, since=null, name=clientAddress, alias=, stereotype=, visibility=public, txtDescription='Address of the client currently using this unbuffered sampled values control block.', htmlDescription='

Address of the client currently using this unbuffered sampled values control block.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1771, _eaTypeName=IPAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,289 [main] DEBUG AssociationEndBuilder - Updated source type to USVCB +2024-09-08 15:10:00,289 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1094, uuid=41bfd20a-38bb-3b0b-ac75-acf0845530a7, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=USVCB, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1095, uuid=642e8482-67c3-35c6-bed8-242064f73265, since=null, name=DS, alias=, stereotype=, visibility=public, txtDescription='Dataset on which this control block does samples reporting.', htmlDescription='

Dataset on which this control block does samples reporting.

'], _type=DS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3201, uuid={050244CD-359B-4516-B382-B2C560ECFCA1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::USVCB +2024-09-08 15:10:00,289 [main] DEBUG AssociationEndBuilder - Updated target type to USVCB +2024-09-08 15:10:00,289 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1033, uuid=b9c7430f-005d-37b1-96f1-0969d56fb74b, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='Device logical node that contains this unicast sampled values control block.', htmlDescription='

Device logical node that contains this unicast sampled values control block.

'], _type=LN0, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1034, uuid=2149586b-93ab-366c-b7d5-585dd8ab2dcb, since=null, name=USVCBs, alias=, stereotype=, visibility=public, txtDescription='All unicast simpled values control blocks contained in this device logical node.', htmlDescription='

All unicast simpled values control blocks contained in this device logical node.

'], _type=USVCB, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3224, uuid={BA890AF8-70A6-4685-8215-9B7A0C34827D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::USVCB +2024-09-08 15:10:00,289 [main] DEBUG ClassBuilder - Adding USVCB as subclass of SVCB +2024-09-08 15:10:00,289 [main] TRACE ClassBuilder - read from EA: MetaModel::USVCB +2024-09-08 15:10:00,289 [main] TRACE ClassBuilder - Class SGCB (41 in package MetaModel) +2024-09-08 15:10:00,289 [main] DEBUG AssociationEndBuilder - Updated source type to SGCB +2024-09-08 15:10:00,289 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1139, uuid=18426034-8236-3955-8fe9-375772ff966e, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=SGCB, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1140, uuid=d79bb6de-81ab-3e4d-a392-21dd7df714c9, since=null, name=ActiveFCDAs, alias=, stereotype=, visibility=public, txtDescription='All leaf attribute references with FC=SG within the LD to which belongs this SGCB. +Examples: +- [SG] myLD/PTOV_1.StrVal.setMag.f +- [SG] myLD/PVOC_2.MinOpTmms.setVal. +Modelling note 1: This is for one of 2 new directory services. +Modelling note 2: The rule to build the return collection is as follows (source: W.Wimmer): For an LD, take all its LNs, and then all its CDCs, and all the FCDAReference-s (leaf Attributes) with FC=SG.', htmlDescription='

All leaf attribute references with FC=SG within the LD to which belongs this SGCB.

Examples:

- [SG] myLD/PTOV_1.StrVal.setMag.f

- [SG] myLD/PVOC_2.MinOpTmms.setVal.

Modelling note 1: This is for one of 2 new directory services.

Modelling note 2: The rule to build the return collection is as follows (source: W.Wimmer): For an LD, take all its LNs, and then all its CDCs, and all the FCDAReference-s (leaf Attributes) with FC=SG.

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3178, uuid={E46DDC5E-E997-47da-8CC0-F6747118E269}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,289 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1139, uuid=18426034-8236-3955-8fe9-375772ff966e, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=SGCB, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1140, uuid=d79bb6de-81ab-3e4d-a392-21dd7df714c9, since=null, name=ActiveFCDAs, alias=, stereotype=, visibility=public, txtDescription='All leaf attribute references with FC=SG within the LD to which belongs this SGCB. +Examples: +- [SG] myLD/PTOV_1.StrVal.setMag.f +- [SG] myLD/PVOC_2.MinOpTmms.setVal. +Modelling note 1: This is for one of 2 new directory services. +Modelling note 2: The rule to build the return collection is as follows (source: W.Wimmer): For an LD, take all its LNs, and then all its CDCs, and all the FCDAReference-s (leaf Attributes) with FC=SG.', htmlDescription='

All leaf attribute references with FC=SG within the LD to which belongs this SGCB.

Examples:

- [SG] myLD/PTOV_1.StrVal.setMag.f

- [SG] myLD/PVOC_2.MinOpTmms.setVal.

Modelling note 1: This is for one of 2 new directory services.

Modelling note 2: The rule to build the return collection is as follows (source: W.Wimmer): For an LD, take all its LNs, and then all its CDCs, and all the FCDAReference-s (leaf Attributes) with FC=SG.

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3178, uuid={E46DDC5E-E997-47da-8CC0-F6747118E269}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::SGCB +2024-09-08 15:10:00,290 [main] DEBUG AssociationEndBuilder - Updated source type to SGCB +2024-09-08 15:10:00,290 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1142, uuid=8ce6790c-c6a9-3e65-b17f-908f462fae85, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=SGCB, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1143, uuid=98745af8-980b-3541-a397-1788a097390f, since=null, name=EditFCDAs, alias=, stereotype=, visibility=public, txtDescription='All leaf attribute references with FC=SE within the LD to which this SGCB belongs. +Examples: +- [SE] myLD/PTOV_1.StrVal.setMag.f +- [SE] myLD/PVOC_2.MinOpTmms.setVal. +Modelling note 1: This is for one of 2 new directory services. +Modelling note 2: The rule to build the return collection is as follows (source: W.Wimmer): For an LD, take all its LNs, and then all its CDCs, and all the FCDAReference-s (leaf Attributes) with FC=SE.', htmlDescription='

All leaf attribute references with FC=SE within the LD to which this SGCB belongs.

Examples:

- [SE] myLD/PTOV_1.StrVal.setMag.f

- [SE] myLD/PVOC_2.MinOpTmms.setVal.

Modelling note 1: This is for one of 2 new directory services.

Modelling note 2: The rule to build the return collection is as follows (source: W.Wimmer): For an LD, take all its LNs, and then all its CDCs, and all the FCDAReference-s (leaf Attributes) with FC=SE.

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3179, uuid={DD43C193-FAAE-4a01-956E-1EBAF2E500D3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,290 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1142, uuid=8ce6790c-c6a9-3e65-b17f-908f462fae85, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=SGCB, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1143, uuid=98745af8-980b-3541-a397-1788a097390f, since=null, name=EditFCDAs, alias=, stereotype=, visibility=public, txtDescription='All leaf attribute references with FC=SE within the LD to which this SGCB belongs. +Examples: +- [SE] myLD/PTOV_1.StrVal.setMag.f +- [SE] myLD/PVOC_2.MinOpTmms.setVal. +Modelling note 1: This is for one of 2 new directory services. +Modelling note 2: The rule to build the return collection is as follows (source: W.Wimmer): For an LD, take all its LNs, and then all its CDCs, and all the FCDAReference-s (leaf Attributes) with FC=SE.', htmlDescription='

All leaf attribute references with FC=SE within the LD to which this SGCB belongs.

Examples:

- [SE] myLD/PTOV_1.StrVal.setMag.f

- [SE] myLD/PVOC_2.MinOpTmms.setVal.

Modelling note 1: This is for one of 2 new directory services.

Modelling note 2: The rule to build the return collection is as follows (source: W.Wimmer): For an LD, take all its LNs, and then all its CDCs, and all the FCDAReference-s (leaf Attributes) with FC=SE.

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3179, uuid={DD43C193-FAAE-4a01-956E-1EBAF2E500D3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::SGCB +2024-09-08 15:10:00,290 [main] DEBUG AssociationEndBuilder - Updated target type to SGCB +2024-09-08 15:10:00,290 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1042, uuid=c6a9f569-0770-3ffe-bdc0-a645b0387d2f, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='Device logical node that contains this setting group control block.', htmlDescription='

Device logical node that contains this setting group control block.

'], _type=LN0, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1043, uuid=69a2696d-a46f-38f0-a20e-b7cca875605c, since=null, name=SGCB, alias=, stereotype=, visibility=public, txtDescription='Setting group control block contained in this device logical node.', htmlDescription='

Setting group control block contained in this device logical node.

'], _type=SGCB, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3227, uuid={16912038-2F54-4108-A868-FEDEFD36C7B1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::SGCB +2024-09-08 15:10:00,290 [main] DEBUG ClassBuilder - Adding SGCB as subclass of ControlBlock +2024-09-08 15:10:00,290 [main] TRACE ClassBuilder - read from EA: MetaModel::SGCB +2024-09-08 15:10:00,290 [main] TRACE ClassBuilder - Class CONTROL (42 in package MetaModel) +2024-09-08 15:10:00,290 [main] TRACE ClassBuilder - read from EA: MetaModel::CONTROL +2024-09-08 15:10:00,290 [main] TRACE ClassBuilder - Class TIME (43 in package MetaModel) +2024-09-08 15:10:00,291 [main] TRACE ClassBuilder - read from EA: MetaModel::TIME +2024-09-08 15:10:00,291 [main] TRACE ClassBuilder - Class FILE (44 in package MetaModel) +2024-09-08 15:10:00,291 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::FILE, _objData=UmlObjectData [id=3608, uuid={9EB09CC5-3C74-4cf6-A8B4-C65928A972B6}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1693, _eaTypeName=FILEReference, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,291 [main] DEBUG AssociationEndBuilder - Updated target type to FILE +2024-09-08 15:10:00,291 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=986, uuid=fe7ee8fc-1959-3c72-94fa-21c4840dff0a, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='Server that hosts this file.', htmlDescription='

Server that hosts this file.

'], _type=SERVER, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=987, uuid=3270eb7e-b5b0-39ac-9f02-6f3b15106228, since=null, name=FILEs, alias=, stereotype=, visibility=public, txtDescription='All files within the server. +Modelling note: Corresponds to SERVER.File.', htmlDescription='

All files within the server.

Modelling note: Corresponds to SERVER.File.

'], _type=FILE, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3245, uuid={BD48CF11-B1F9-4a40-B020-BE7D3C205E87}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::FILE +2024-09-08 15:10:00,291 [main] DEBUG ClassBuilder - Adding FILE as subclass of HierarchyIEC61850Object +2024-09-08 15:10:00,291 [main] TRACE ClassBuilder - read from EA: MetaModel::FILE +2024-09-08 15:10:00,291 [main] INFO PackageBuilder - processing package MetaModelFCsAndTrgOps (0) ... +2024-09-08 15:10:00,291 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=MetaModelFCsAndTrgOps, _objData=UmlObjectData [id=222, uuid={3C4182DC-EB84-4975-BC93-18C32C6AC1AD}, since=null, name=MetaModelFCsAndTrgOps, alias=, stereotype=, visibility=public, txtDescription='These are all the possible combinations of FC and TrgOp, as abstract supertypes for the concrete ones defined in IEC61850-7-3.', htmlDescription='

These are all the possible combinations of FC and TrgOp, as abstract supertypes for the concrete ones defined in IEC61850-7-3.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,293 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1902, uuid={56AA79CA-7530-4d3f-B3D7-A6394D2388FF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note 1: Attributes 'isReadable' and 'isWritable' reflect the services of AcsiCDC. +Modelling note 2: In white are explicit FCDAs from Ed.1, in green are extensions from Ed.2 (no more FCDA_CO in Ed.2). +Modelling note 3: In pink, we have added a couple more meta-model abstract classes, to support 61850-7-420.', htmlDescription='

Modelling note 1: Attributes 'isReadable' and 'isWritable' reflect the services of AcsiCDC.

Modelling note 2: In white are explicit FCDAs from Ed.1, in green are extensions from Ed.2 (no more FCDA_CO in Ed.2).

Modelling note 3: In pink, we have added a couple more meta-model abstract classes, to support 61850-7-420.

'], _containingPackage=MetaModelFCsAndTrgOps, _otherEndName=] +2024-09-08 15:10:00,293 [main] TRACE ClassBuilder - Class EnumFCDA_CF (0 in package MetaModelFCsAndTrgOps) +2024-09-08 15:10:00,293 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::EnumFCDA_CF +2024-09-08 15:10:00,293 [main] TRACE ClassBuilder - Class EnumFCDA_CF_dchg (1 in package MetaModelFCsAndTrgOps) +2024-09-08 15:10:00,294 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::EnumFCDA_CF_dchg +2024-09-08 15:10:00,294 [main] TRACE ClassBuilder - Class EnumFCDA_MX (2 in package MetaModelFCsAndTrgOps) +2024-09-08 15:10:00,294 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::EnumFCDA_MX +2024-09-08 15:10:00,294 [main] TRACE ClassBuilder - Class EnumFCDA_SE_dchg (5 in package MetaModelFCsAndTrgOps) +2024-09-08 15:10:00,295 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::EnumFCDA_SE_dchg +2024-09-08 15:10:00,295 [main] TRACE ClassBuilder - Class EnumFCDA_SG_dchg (7 in package MetaModelFCsAndTrgOps) +2024-09-08 15:10:00,295 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::EnumFCDA_SG_dchg +2024-09-08 15:10:00,295 [main] TRACE ClassBuilder - Class EnumFCDA_ST (9 in package MetaModelFCsAndTrgOps) +2024-09-08 15:10:00,295 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::EnumFCDA_ST +2024-09-08 15:10:00,295 [main] TRACE ClassBuilder - Class EnumFCDA_ST_dchg (10 in package MetaModelFCsAndTrgOps) +2024-09-08 15:10:00,296 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::EnumFCDA_ST_dchg +2024-09-08 15:10:00,296 [main] TRACE ClassBuilder - Class EnumFCDA_ST_dchg_dupd (11 in package MetaModelFCsAndTrgOps) +2024-09-08 15:10:00,296 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::EnumFCDA_ST_dchg_dupd +2024-09-08 15:10:00,296 [main] TRACE ClassBuilder - Class EnumFCDA_SV (12 in package MetaModelFCsAndTrgOps) +2024-09-08 15:10:00,296 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::EnumFCDA_SV +2024-09-08 15:10:00,296 [main] TRACE ClassBuilder - Class FCDA_BL (13 in package MetaModelFCsAndTrgOps) +2024-09-08 15:10:00,296 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_BL, _objData=UmlObjectData [id=3609, uuid={5D2587D3-3485-4d8e-A54A-B3968B0ACD55}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=BL, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,296 [main] DEBUG ClassBuilder - Adding FCDA_BL as subclass of FCDA +2024-09-08 15:10:00,296 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_BL +2024-09-08 15:10:00,296 [main] TRACE ClassBuilder - Class FCDA_CF (14 in package MetaModelFCsAndTrgOps) +2024-09-08 15:10:00,297 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_CF, _objData=UmlObjectData [id=3610, uuid={09B06C9E-4F11-4e82-8034-F5CC45FAC900}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=CF, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,297 [main] DEBUG ClassBuilder - Adding FCDA_CF as subclass of FCDA +2024-09-08 15:10:00,297 [main] DEBUG ClassBuilder - Adding FCDA_CF as superclass of EnumFCDA_CF +2024-09-08 15:10:00,297 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_CF +2024-09-08 15:10:00,297 [main] TRACE ClassBuilder - Class FCDA_CF_dchg (15 in package MetaModelFCsAndTrgOps) +2024-09-08 15:10:00,297 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_CF_dchg, _objData=UmlObjectData [id=3611, uuid={09BA6106-FB5B-46d5-B9EB-69EF40ADE216}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,297 [main] DEBUG ClassBuilder - Adding FCDA_CF_dchg as subclass of FCDA_CF +2024-09-08 15:10:00,297 [main] DEBUG ClassBuilder - Adding FCDA_CF_dchg as superclass of EnumFCDA_CF_dchg +2024-09-08 15:10:00,297 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_CF_dchg +2024-09-08 15:10:00,297 [main] TRACE ClassBuilder - Class FCDA_DC (16 in package MetaModelFCsAndTrgOps) +2024-09-08 15:10:00,297 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_DC, _objData=UmlObjectData [id=3612, uuid={683D28A6-85D9-4a30-9858-1FD32EE25D71}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=DC, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,297 [main] DEBUG ClassBuilder - Adding FCDA_DC as subclass of FCDA +2024-09-08 15:10:00,297 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_DC +2024-09-08 15:10:00,298 [main] TRACE ClassBuilder - Class FCDA_EX (17 in package MetaModelFCsAndTrgOps) +2024-09-08 15:10:00,299 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_EX, _objData=UmlObjectData [id=3613, uuid={CEFBDE9B-5BF0-4b36-856A-CA994924738A}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=EX, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,299 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_EX, _objData=UmlObjectData [id=3614, uuid={5A327143-156F-48dd-AAF5-6B96335A4246}, since=null, name=isWritable, alias=, stereotype=, visibility=public, txtDescription='Whether the data attribute is writable through services.', htmlDescription='

Whether the data attribute is writable through services.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,299 [main] DEBUG ClassBuilder - Adding FCDA_EX as subclass of FCDA +2024-09-08 15:10:00,299 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_EX +2024-09-08 15:10:00,299 [main] TRACE ClassBuilder - Class FCDA_MX (18 in package MetaModelFCsAndTrgOps) +2024-09-08 15:10:00,299 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_MX, _objData=UmlObjectData [id=3615, uuid={C595F449-EECA-490f-86C4-52A016827CF5}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=MX, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,299 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_MX, _objData=UmlObjectData [id=3616, uuid={26C44A44-AB3A-4d2f-9A1C-F09A40CD7503}, since=null, name=isWritable, alias=, stereotype=, visibility=public, txtDescription='Whether the data attribute is writable through services.', htmlDescription='

Whether the data attribute is writable through services.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,300 [main] DEBUG ClassBuilder - Adding FCDA_MX as subclass of FCDA +2024-09-08 15:10:00,300 [main] DEBUG ClassBuilder - Adding FCDA_MX as superclass of EnumFCDA_MX +2024-09-08 15:10:00,300 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_MX +2024-09-08 15:10:00,300 [main] TRACE ClassBuilder - Class FCDA_MX_dchg (19 in package MetaModelFCsAndTrgOps) +2024-09-08 15:10:00,300 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_MX_dchg, _objData=UmlObjectData [id=3617, uuid={DA6E63F6-73E7-48a9-B61B-B3DF59A04B4E}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,300 [main] DEBUG ClassBuilder - Adding FCDA_MX_dchg as subclass of FCDA_MX +2024-09-08 15:10:00,300 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_MX_dchg +2024-09-08 15:10:00,301 [main] TRACE ClassBuilder - Class FCDA_MX_dchg_dupd (20 in package MetaModelFCsAndTrgOps) +2024-09-08 15:10:00,301 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_MX_dchg_dupd, _objData=UmlObjectData [id=3618, uuid={22AFD6F7-773C-4cac-A2E0-545134B61149}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, dupd, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,301 [main] DEBUG ClassBuilder - Adding FCDA_MX_dchg_dupd as subclass of FCDA_MX +2024-09-08 15:10:00,301 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_MX_dchg_dupd +2024-09-08 15:10:00,301 [main] TRACE ClassBuilder - Class FCDA_MX_qchg (21 in package MetaModelFCsAndTrgOps) +2024-09-08 15:10:00,301 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_MX_qchg, _objData=UmlObjectData [id=3619, uuid={3F395C8A-6D62-4c56-87E6-027F1F594183}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=qchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,301 [main] DEBUG ClassBuilder - Adding FCDA_MX_qchg as subclass of FCDA_MX +2024-09-08 15:10:00,302 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_MX_qchg +2024-09-08 15:10:00,302 [main] TRACE ClassBuilder - Class FCDA_OR (22 in package MetaModelFCsAndTrgOps) +2024-09-08 15:10:00,302 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_OR, _objData=UmlObjectData [id=3620, uuid={282951AC-7E92-4c83-97E3-19FBCC94D012}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=OR, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,302 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_OR, _objData=UmlObjectData [id=3621, uuid={558DB516-1CFD-4554-81F5-FA0755D271D8}, since=null, name=isWritable, alias=, stereotype=, visibility=public, txtDescription='Whether the data attribute is writable through services.', htmlDescription='

Whether the data attribute is writable through services.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,302 [main] DEBUG ClassBuilder - Adding FCDA_OR as subclass of FCDA +2024-09-08 15:10:00,302 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_OR +2024-09-08 15:10:00,302 [main] TRACE ClassBuilder - Class FCDA_OR_dchg (23 in package MetaModelFCsAndTrgOps) +2024-09-08 15:10:00,303 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_OR_dchg, _objData=UmlObjectData [id=3622, uuid={3A006018-162B-46b7-AC78-9652BF2385BD}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,303 [main] DEBUG ClassBuilder - Adding FCDA_OR_dchg as subclass of FCDA_OR +2024-09-08 15:10:00,303 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_OR_dchg +2024-09-08 15:10:00,303 [main] TRACE ClassBuilder - Class FCDA_SE (24 in package MetaModelFCsAndTrgOps) +2024-09-08 15:10:00,303 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SE, _objData=UmlObjectData [id=3623, uuid={EE451B41-BF45-40e4-8CF7-515359A61448}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=SE, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,303 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SE, _objData=UmlObjectData [id=3624, uuid={C6F2D29C-73F2-45a2-852C-36D93C110DE8}, since=null, name=isReadable, alias=, stereotype=, visibility=public, txtDescription='Whether the data attribute is readable through services.', htmlDescription='

Whether the data attribute is readable through services.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,304 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SE, _objData=UmlObjectData [id=3625, uuid={4CFFCD7F-9E74-4b7a-B957-5A62F07BBB56}, since=null, name=isWritable, alias=, stereotype=, visibility=public, txtDescription='Whether the data attribute is writable through services.', htmlDescription='

Whether the data attribute is writable through services.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,304 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2203, uuid={399F8C95-DFA6-4b8b-B34F-C40D6720E62F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=FCDA_SE, _otherEndName=?] +2024-09-08 15:10:00,304 [main] DEBUG AssociationEndBuilder - Updated target type to FCDA_SE +2024-09-08 15:10:00,304 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1142, uuid=8ce6790c-c6a9-3e65-b17f-908f462fae85, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=SGCB, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1143, uuid=98745af8-980b-3541-a397-1788a097390f, since=null, name=EditFCDAs, alias=, stereotype=, visibility=public, txtDescription='All leaf attribute references with FC=SE within the LD to which this SGCB belongs. +Examples: +- [SE] myLD/PTOV_1.StrVal.setMag.f +- [SE] myLD/PVOC_2.MinOpTmms.setVal. +Modelling note 1: This is for one of 2 new directory services. +Modelling note 2: The rule to build the return collection is as follows (source: W.Wimmer): For an LD, take all its LNs, and then all its CDCs, and all the FCDAReference-s (leaf Attributes) with FC=SE.', htmlDescription='

All leaf attribute references with FC=SE within the LD to which this SGCB belongs.

Examples:

- [SE] myLD/PTOV_1.StrVal.setMag.f

- [SE] myLD/PVOC_2.MinOpTmms.setVal.

Modelling note 1: This is for one of 2 new directory services.

Modelling note 2: The rule to build the return collection is as follows (source: W.Wimmer): For an LD, take all its LNs, and then all its CDCs, and all the FCDAReference-s (leaf Attributes) with FC=SE.

'], _type=FCDA_SE, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3179, uuid={DD43C193-FAAE-4a01-956E-1EBAF2E500D3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModelFCsAndTrgOps::FCDA_SE +2024-09-08 15:10:00,304 [main] DEBUG ClassBuilder - Adding FCDA_SE as subclass of FCDA +2024-09-08 15:10:00,304 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_SE +2024-09-08 15:10:00,304 [main] TRACE ClassBuilder - Class FCDA_SE_dchg (25 in package MetaModelFCsAndTrgOps) +2024-09-08 15:10:00,304 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SE_dchg, _objData=UmlObjectData [id=3626, uuid={CF74494C-A546-4a41-A807-684E97FE1B68}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,304 [main] DEBUG ClassBuilder - Adding FCDA_SE_dchg as subclass of FCDA_SE +2024-09-08 15:10:00,304 [main] DEBUG ClassBuilder - Adding FCDA_SE_dchg as superclass of EnumFCDA_SE_dchg +2024-09-08 15:10:00,304 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_SE_dchg +2024-09-08 15:10:00,305 [main] TRACE ClassBuilder - Class FCDA_SG (26 in package MetaModelFCsAndTrgOps) +2024-09-08 15:10:00,305 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SG, _objData=UmlObjectData [id=3627, uuid={1810C2D0-E27B-4e1e-A0B6-2A5F2E8E16D6}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=SG, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,305 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SG, _objData=UmlObjectData [id=3628, uuid={1BD03152-B959-4fff-8DC0-B6BE8542DDD2}, since=null, name=isWritable, alias=, stereotype=, visibility=public, txtDescription='Whether the data attribute is writable through services.', htmlDescription='

Whether the data attribute is writable through services.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,305 [main] DEBUG AssociationEndBuilder - Updated target type to FCDA_SG +2024-09-08 15:10:00,305 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1139, uuid=18426034-8236-3955-8fe9-375772ff966e, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=SGCB, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1140, uuid=d79bb6de-81ab-3e4d-a392-21dd7df714c9, since=null, name=ActiveFCDAs, alias=, stereotype=, visibility=public, txtDescription='All leaf attribute references with FC=SG within the LD to which belongs this SGCB. +Examples: +- [SG] myLD/PTOV_1.StrVal.setMag.f +- [SG] myLD/PVOC_2.MinOpTmms.setVal. +Modelling note 1: This is for one of 2 new directory services. +Modelling note 2: The rule to build the return collection is as follows (source: W.Wimmer): For an LD, take all its LNs, and then all its CDCs, and all the FCDAReference-s (leaf Attributes) with FC=SG.', htmlDescription='

All leaf attribute references with FC=SG within the LD to which belongs this SGCB.

Examples:

- [SG] myLD/PTOV_1.StrVal.setMag.f

- [SG] myLD/PVOC_2.MinOpTmms.setVal.

Modelling note 1: This is for one of 2 new directory services.

Modelling note 2: The rule to build the return collection is as follows (source: W.Wimmer): For an LD, take all its LNs, and then all its CDCs, and all the FCDAReference-s (leaf Attributes) with FC=SG.

'], _type=FCDA_SG, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3178, uuid={E46DDC5E-E997-47da-8CC0-F6747118E269}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModelFCsAndTrgOps::FCDA_SG +2024-09-08 15:10:00,305 [main] DEBUG ClassBuilder - Adding FCDA_SG as subclass of FCDA +2024-09-08 15:10:00,305 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_SG +2024-09-08 15:10:00,305 [main] TRACE ClassBuilder - Class FCDA_SG_dchg (27 in package MetaModelFCsAndTrgOps) +2024-09-08 15:10:00,305 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SG_dchg, _objData=UmlObjectData [id=3629, uuid={D993FACE-FF1E-47a8-9E52-C03D6CB09D7D}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,305 [main] DEBUG ClassBuilder - Adding FCDA_SG_dchg as subclass of FCDA_SG +2024-09-08 15:10:00,305 [main] DEBUG ClassBuilder - Adding FCDA_SG_dchg as superclass of EnumFCDA_SG_dchg +2024-09-08 15:10:00,305 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_SG_dchg +2024-09-08 15:10:00,305 [main] TRACE ClassBuilder - Class FCDA_SP (28 in package MetaModelFCsAndTrgOps) +2024-09-08 15:10:00,305 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SP, _objData=UmlObjectData [id=3630, uuid={6DC7D1CB-F4DC-4ef4-9756-98C8AD7FF1B6}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=SP, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,306 [main] DEBUG ClassBuilder - Adding FCDA_SP as subclass of FCDA +2024-09-08 15:10:00,306 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_SP +2024-09-08 15:10:00,306 [main] TRACE ClassBuilder - Class FCDA_SP_dchg (29 in package MetaModelFCsAndTrgOps) +2024-09-08 15:10:00,306 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SP_dchg, _objData=UmlObjectData [id=3631, uuid={CA035F21-EC50-4322-8BD7-B8C7FD19CF46}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,306 [main] DEBUG ClassBuilder - Adding FCDA_SP_dchg as subclass of FCDA_SP +2024-09-08 15:10:00,306 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_SP_dchg +2024-09-08 15:10:00,306 [main] TRACE ClassBuilder - Class FCDA_ST (30 in package MetaModelFCsAndTrgOps) +2024-09-08 15:10:00,306 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_ST, _objData=UmlObjectData [id=3632, uuid={55FA60DB-3F3A-4bb9-9E91-8BA73393B836}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=ST, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,306 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_ST, _objData=UmlObjectData [id=3633, uuid={A00991C4-8B92-478e-AC41-A628210ED3B7}, since=null, name=isWritable, alias=, stereotype=, visibility=public, txtDescription='Whether the data attribute is writable through services.', htmlDescription='

Whether the data attribute is writable through services.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,306 [main] DEBUG ClassBuilder - Adding FCDA_ST as subclass of FCDA +2024-09-08 15:10:00,306 [main] DEBUG ClassBuilder - Adding FCDA_ST as superclass of EnumFCDA_ST +2024-09-08 15:10:00,306 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_ST +2024-09-08 15:10:00,306 [main] TRACE ClassBuilder - Class FCDA_ST_dchg (31 in package MetaModelFCsAndTrgOps) +2024-09-08 15:10:00,306 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_ST_dchg, _objData=UmlObjectData [id=3634, uuid={3899F2B2-1233-40b3-9997-370CF1FD073A}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,307 [main] DEBUG ClassBuilder - Adding FCDA_ST_dchg as subclass of FCDA_ST +2024-09-08 15:10:00,307 [main] DEBUG ClassBuilder - Adding FCDA_ST_dchg as superclass of EnumFCDA_ST_dchg +2024-09-08 15:10:00,307 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_ST_dchg +2024-09-08 15:10:00,307 [main] TRACE ClassBuilder - Class FCDA_ST_dchg_dupd (32 in package MetaModelFCsAndTrgOps) +2024-09-08 15:10:00,307 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_ST_dchg_dupd, _objData=UmlObjectData [id=3635, uuid={41740EB1-4C6B-4265-A5A9-D1853C7B873B}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, dupd, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,307 [main] DEBUG ClassBuilder - Adding FCDA_ST_dchg_dupd as subclass of FCDA_ST +2024-09-08 15:10:00,307 [main] DEBUG ClassBuilder - Adding FCDA_ST_dchg_dupd as superclass of EnumFCDA_ST_dchg_dupd +2024-09-08 15:10:00,307 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_ST_dchg_dupd +2024-09-08 15:10:00,307 [main] TRACE ClassBuilder - Class FCDA_ST_dupd (33 in package MetaModelFCsAndTrgOps) +2024-09-08 15:10:00,307 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_ST_dupd, _objData=UmlObjectData [id=3636, uuid={332CF62D-D37E-431d-8EC4-6A1EBADAAFB3}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dupd, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,307 [main] DEBUG ClassBuilder - Adding FCDA_ST_dupd as subclass of FCDA_ST +2024-09-08 15:10:00,307 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_ST_dupd +2024-09-08 15:10:00,307 [main] TRACE ClassBuilder - Class FCDA_ST_qchg (34 in package MetaModelFCsAndTrgOps) +2024-09-08 15:10:00,307 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_ST_qchg, _objData=UmlObjectData [id=3637, uuid={2735A83D-F0E0-4aab-ADB5-AECB30212656}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=qchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,308 [main] DEBUG ClassBuilder - Adding FCDA_ST_qchg as subclass of FCDA_ST +2024-09-08 15:10:00,308 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_ST_qchg +2024-09-08 15:10:00,308 [main] TRACE ClassBuilder - Class FCDA_SV (35 in package MetaModelFCsAndTrgOps) +2024-09-08 15:10:00,308 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SV, _objData=UmlObjectData [id=3638, uuid={4D38B4C1-5DEC-47cf-90C9-BF37000D95AC}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=SV, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,308 [main] DEBUG ClassBuilder - Adding FCDA_SV as subclass of FCDA +2024-09-08 15:10:00,308 [main] DEBUG ClassBuilder - Adding FCDA_SV as superclass of EnumFCDA_SV +2024-09-08 15:10:00,308 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_SV +2024-09-08 15:10:00,308 [main] TRACE ClassBuilder - Class PackedEnumFCDA_SP_dchg (36 in package MetaModelFCsAndTrgOps) +2024-09-08 15:10:00,308 [main] DEBUG ClassBuilder - Adding PackedEnumFCDA_SP_dchg as subclass of EnumFCDA_ST_dchg +2024-09-08 15:10:00,308 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::PackedEnumFCDA_SP_dchg +2024-09-08 15:10:00,308 [main] TRACE ClassBuilder - Class PackedEnumFCDA_SV (37 in package MetaModelFCsAndTrgOps) +2024-09-08 15:10:00,308 [main] DEBUG ClassBuilder - Adding PackedEnumFCDA_SV as subclass of EnumFCDA_SV +2024-09-08 15:10:00,308 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::PackedEnumFCDA_SV +2024-09-08 15:10:00,308 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=MetaModel, _depth=3, _eaElementID=1901, _objData=UmlObjectData [id=110, uuid={7CF8CCE4-A893-44f0-9850-7A964C6FB7CE}, since=null, name=MetaModelFCsAndTrgOps, alias=, stereotype=, visibility=public, txtDescription='These are all the possible combinations of FC and TrgOp, as abstract supertypes for the concrete ones defined in IEC61850-7-3.', htmlDescription='

These are all the possible combinations of FC and TrgOp, as abstract supertypes for the concrete ones defined in IEC61850-7-3.

'], _modelId=58, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1902, uuid={56AA79CA-7530-4d3f-B3D7-A6394D2388FF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note 1: Attributes 'isReadable' and 'isWritable' reflect the services of AcsiCDC. +Modelling note 2: In white are explicit FCDAs from Ed.1, in green are extensions from Ed.2 (no more FCDA_CO in Ed.2). +Modelling note 3: In pink, we have added a couple more meta-model abstract classes, to support 61850-7-420.', htmlDescription='

Modelling note 1: Attributes 'isReadable' and 'isWritable' reflect the services of AcsiCDC.

Modelling note 2: In white are explicit FCDAs from Ed.1, in green are extensions from Ed.2 (no more FCDA_CO in Ed.2).

Modelling note 3: In pink, we have added a couple more meta-model abstract classes, to support 61850-7-420.

'], _containingPackage=MetaModelFCsAndTrgOps, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=MetaModelFCsAndTrgOps, _objData=UmlObjectData [id=222, uuid={3C4182DC-EB84-4975-BC93-18C32C6AC1AD}, since=null, name=MetaModelFCsAndTrgOps, alias=, stereotype=, visibility=public, txtDescription='These are all the possible combinations of FC and TrgOp, as abstract supertypes for the concrete ones defined in IEC61850-7-3.', htmlDescription='

These are all the possible combinations of FC and TrgOp, as abstract supertypes for the concrete ones defined in IEC61850-7-3.

'], _portrait=true, _kind=LOGICAL]], _classes=34 +2024-09-08 15:10:00,310 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_2, _depth=2, _eaElementID=1829, _objData=UmlObjectData [id=109, uuid={1CD34912-38A5-4bd0-AD94-FC8A5712A5AF}, since=null, name=MetaModel, alias=, stereotype=, visibility=public, txtDescription='Meta-model reflecting contents of IEC61850-7-x. Can be instantiated in at least two ways: +1. By connecting to one or more ACSI Servers at the given IP address(es), without any other configuration required. +2. By reading SCL file (and potentially connecting to one or more ACSI Servers).', htmlDescription='

Meta-model reflecting contents of IEC61850-7-x. Can be instantiated in at least two ways:

  1. By connecting to one or more ACSI Servers at the given IP address(es), without any other configuration required.
  2. By reading SCL file (and potentially connecting to one or more ACSI Servers).
'], _modelId=58, _selfDependent=false, 27_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1830, uuid={D543D4D9-E49F-40ad-B995-3A107B4BD536}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- Directory services should be allowed for FC=SE as well - this is currently not the case according to 61850-7-3, Ed.2.', htmlDescription='

TODO:

  • Directory services should be allowed for FC=SE as well - this is currently not the case according to 61850-7-3, Ed.2.
'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1831, uuid={8C76A17B-E8A6-4ec6-8298-D8261FE3C0F4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: Classes *IEC61850Object have been introduced to facilitate instantiation of a meta-model for the use case where no SCL is available (e.g., when connecting directly to one or more IEDs with IEC61850 ACSI SERVERs without any previous configuration).', htmlDescription='

Modelling note: Classes *IEC61850Object have been introduced to facilitate instantiation of a meta-model for the use case where no SCL is available (e.g., when connecting directly to one or more IEDs with IEC61850 ACSI SERVERs without any previous configuration).

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1833, uuid={1695C190-3DB9-46c9-B2A3-463C26BEF9DD}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Except for SGCB, control blocks refer to a data set and listen to changes in the values of data set members (i.e., leaf attributes when unfolding logical nodes' data) in order to produce some event: +- RCBs produce reports on data value changes as appropriate for non-time-critical clients +- LCBs produce log entries +- GCBs produce GOOSE messages (similar to RCB reports, but for time-critical clients) +- SVCBs produce messages containing sampled values (also for time-critical clients). +Finally, SGCB models the ability to edit IED settings (e.g., configuration parameters for protection algorithms) - they also work on leaf attributes of logical nodes, but those are not specified in a data set. +Modelling note: Control blocks in this MetaModel provide pure navigation capability, while their configuration by client is available as ACSI service. It is up to applications to extend this MetaModel in the desired way to implement the functionality similar to that provided by ACSI services.', htmlDescription='

Except for SGCB, control blocks refer to a data set and listen to changes in the values of data set members (i.e., leaf attributes when unfolding logical nodes' data) in order to produce some event:

- RCBs produce reports on data value changes as appropriate for non-time-critical clients

- LCBs produce log entries

- GCBs produce GOOSE messages (similar to RCB reports, but for time-critical clients)

- SVCBs produce messages containing sampled values (also for time-critical clients).

Finally, SGCB models the ability to edit IED settings (e.g., configuration parameters for protection algorithms) - they also work on leaf attributes of logical nodes, but those are not specified in a data set.

Modelling note: Control blocks in this MetaModel provide pure navigation capability, while their configuration by client is available as ACSI service. It is up to applications to extend this MetaModel in the desired way to implement the functionality similar to that provided by ACSI services.

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1834, uuid={0E537513-A86C-4374-B08C-A61D599461C5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Datasets are list of signal references, used for logging and eventing on data and/or quality change. They allow the application to "read" that list of references once, and then receive value updates as ordered lists of values. In the meta-model, datasets contain thus only information on contained references, as well as the naming-related services. Communication services are defined in CoreAcsi API.', htmlDescription='

Datasets are list of signal references, used for logging and eventing on data and/or quality change. They allow the application to "read" that list of references once, and then receive value updates as ordered lists of values. In the meta-model, datasets contain thus only information on contained references, as well as the naming-related services. Communication services are defined in CoreAcsi API.

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1878, uuid={049E7F63-9C87-465e-9BF6-5E03046F685B}, since=null, name=DerivedCDCs : DerivedCDCs, alias=, stereotype=, visibility=public, txtDescription='DerivedCDCs : DerivedCDCs', htmlDescription='

DerivedCDCs : DerivedCDCs

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1879, uuid={05AAA379-8620-4bf0-9374-95F42FAFA135}, since=null, name=MetaModel :MetaModelFCsAndTrgOps, alias=, stereotype=, visibility=public, txtDescription='MetaModel : MetaModelFCsAndTrgOps', htmlDescription='

MetaModel : MetaModelFCsAndTrgOps

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1880, uuid={112FC848-042A-4696-99ED-8E35A13F87A4}, since=null, name=MetaModel :MetaModelNaming, alias=, stereotype=, visibility=public, txtDescription='MetaModel : MetaModelNaming', htmlDescription='

MetaModel : MetaModelNaming

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1881, uuid={2200A07E-E0BC-46ee-B7FB-832A35C51ACB}, since=null, name=LogicalNodeEnums :DOEnums-1, alias=, stereotype=, visibility=public, txtDescription='DOEnums : DOEnums-1', htmlDescription='

DOEnums : DOEnums-1

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1882, uuid={3CEEBEF3-65F0-45bf-956A-AAFF0BB39A6E}, since=null, name=BasicDAs : BasicDAs, alias=, stereotype=, visibility=public, txtDescription='BasicDAs : BasicDAs', htmlDescription='

BasicDAs : BasicDAs

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1883, uuid={3D42A8E2-6E81-482d-B902-79859AB23652}, since=null, name=LogicalNodes : LogicalNodes, alias=, stereotype=, visibility=public, txtDescription='LogicalNodes : LogicalNodes', htmlDescription='

LogicalNodes : LogicalNodes

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1884, uuid={4651CC45-E97C-474c-96E5-E964AEE537AE}, since=null, name=CommonDataClasses : CommonDataClasses, alias=, stereotype=, visibility=public, txtDescription='CommonDataClasses : CommonDataClasses', htmlDescription='

CommonDataClasses : CommonDataClasses

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1885, uuid={485DE912-F88A-4727-ABC3-E12BDD3137CA}, since=null, name=IEC61850 : DataModelExample, alias=, stereotype=, visibility=public, txtDescription='IEC61850 : DataModelExample', htmlDescription='

IEC61850 : DataModelExample

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1886, uuid={4F5B7A51-D0D5-46eb-9755-D89E38C8D44A}, since=null, name=DerivedDAs : DerivedDAs, alias=, stereotype=, visibility=public, txtDescription='DerivedDAs : DerivedDAs', htmlDescription='

DerivedDAs : DerivedDAs

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1887, uuid={7010DA64-6EFF-4ecc-906B-D63D21B68B3D}, since=null, name=LogicalNodeEnums :DOEnums-3, alias=, stereotype=, visibility=public, txtDescription='DOEnums : DOEnums-3', htmlDescription='

DOEnums : DOEnums-3

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1888, uuid={77539A0B-E854-4966-82D3-2AC914854572}, since=null, name=DAEnums : DAEnums-1, alias=, stereotype=, visibility=public, txtDescription='DAEnums : DAEnums-1', htmlDescription='

DAEnums : DAEnums-1

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1889, uuid={777613E1-5BED-4530-A6C1-909690FCEF4E}, since=null, name=ObjectReferences : ObjectReferences, alias=, stereotype=, visibility=public, txtDescription='ObjectReferences : ObjectReferences', htmlDescription='

ObjectReferences : ObjectReferences

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1890, uuid={82D225D9-1F34-4a05-840E-0EA119432E5C}, since=null, name=CoreTypes : CoreTypes, alias=, stereotype=, visibility=public, txtDescription='CoreTypes : CoreTypes', htmlDescription='

CoreTypes : CoreTypes

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1891, uuid={86223FF2-1449-43c7-83BA-3DB43365033B}, since=null, name=ConstructedDAs : ConstructedDAs, alias=, stereotype=, visibility=public, txtDescription='ConstructedDAs : ConstructedDAs', htmlDescription='

ConstructedDAs : ConstructedDAs

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1892, uuid={A298ABDC-AA9E-4b4b-8B6A-E5C5C539F90F}, since=null, name=LogicalNodeEnums :DOEnums-2, alias=, stereotype=, visibility=public, txtDescription='DOEnums : DOEnums-2', htmlDescription='

DOEnums : DOEnums-2

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=1893, uuid={A34DDCC5-BBB7-443d-92EF-22F3B2CADE16}, since=null, name=Data model (logical nodes, common data classes, functionally constrained data attributes and data attributes), alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1894, uuid={B2AD30FE-ADAE-495a-8589-272241F89E2F}, since=null, name=FCDAs : FCDAs, alias=, stereotype=, visibility=public, txtDescription='FCDAs : FCDAs', htmlDescription='

FCDAs : FCDAs

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1895, uuid={B4020DF2-0ADE-443d-82D1-19018AF93AEE}, since=null, name=ImplicitDAs : ImplicitDAs, alias=, stereotype=, visibility=public, txtDescription='ImplicitDAs : ImplicitDAs', htmlDescription='

ImplicitDAs : ImplicitDAs

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1896, uuid={C1318DFD-188F-43f2-9064-60021D23A7AF}, since=null, name=MetaModel :MetaModelDataSetsAndControlBlocks, alias=, stereotype=, visibility=public, txtDescription='MetaModel : MetaModelDataSetsAndControlBlocks', htmlDescription='

MetaModel : MetaModelDataSetsAndControlBlocks

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1897, uuid={C39E2CF4-C5E8-4816-8777-01F58112789C}, since=null, name=MetaModel : MetaModelDataModel, alias=, stereotype=, visibility=public, txtDescription='MetaModel : MetaModelDataModel', htmlDescription='

MetaModel : MetaModelDataModel

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=1898, uuid={F6822C92-5DD8-48be-A724-A584C56FF7E0}, since=null, name=Directly related to data model, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1899, uuid={F6EF86F0-4241-402f-84DB-0F3BACF329BA}, since=null, name=MetaModel :MetaModelRelationships, alias=, stereotype=, visibility=public, txtDescription='MetaModel : MetaModelRelationships', htmlDescription='

MetaModel : MetaModelRelationships

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1900, uuid={FFAB6E12-0255-4fed-A1DB-D18F797B7AED}, since=null, name=DAEnums : DAEnums-2, alias=, stereotype=, visibility=public, txtDescription='DAEnums : DAEnums-2', htmlDescription='

DAEnums : DAEnums-2

'], _containingPackage=MetaModel, _otherEndName=]], 5_diagrams=[DiagramBuilder [_containingPackage=MetaModel, _objData=UmlObjectData [id=218, uuid={EA8FE1C2-3BBB-4b1a-A375-D361A61B8806}, since=null, name=MetaModelClasses, alias=, stereotype=, visibility=public, txtDescription='Overview of meta-model classes. We emphasize two groups of meta-model classes: +- Within the blue frame are those classes that are refined in parts 7-3 and 7-4, i.e., those that represent the data model. +- Within the pink frame are the classes that directly manipulate or refer to the data of logical nodes. +The other classes are control blocks, fully defined in IEC61850-2.', htmlDescription='

Overview of meta-model classes. We emphasize two groups of meta-model classes:

  • Within the blue frame are those classes that are refined in parts 7-3 and 7-4, i.e., those that represent the data model.
  • Within the pink frame are the classes that directly manipulate or refer to the data of logical nodes.

The other classes are control blocks, fully defined in IEC61850-2.

'], _portrait=true, _kind=LOGICAL], DiagramBuilder [_containingPackage=MetaModel, _objData=UmlObjectData [id=219, uuid={60A801DD-2905-46a7-AEE1-1F7B4914E50C}, since=null, name=MetaModelRelationships, alias=, stereotype=, visibility=public, txtDescription='The full representation of all ACSI relationships, as defined in Part 7-2.', htmlDescription='

The full representation of all ACSI relationships, as defined in Part 7-2.

'], _portrait=true, _kind=LOGICAL], DiagramBuilder [_containingPackage=MetaModel, _objData=UmlObjectData [id=220, uuid={C831274A-F7F7-46d5-8FEC-95178AC6650E}, since=null, name=MetaModelNaming, alias=, stereotype=, visibility=public, txtDescription='Shows naming hierarchy. Highlighted classes are not explicitly defined in the standard.', htmlDescription='

Shows naming hierarchy. Highlighted classes are not explicitly defined in the standard.

'], _portrait=true, _kind=LOGICAL], DiagramBuilder [_containingPackage=MetaModel, _objData=UmlObjectData [id=217, uuid={14C7D050-A508-40f5-95B8-5C83BBADB168}, since=null, name=MetaModelDataModel, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the subset of the meta-model with details about LNs and their data. Hyperlinks are provided to an example, and to definitions of concrete classes deriving from the meta-model (in parts 7-4 and 7-3).', htmlDescription='

This diagram shows the subset of the meta-model with details about LNs and their data. Hyperlinks are provided to an example, and to definitions of concrete classes deriving from the meta-model (in parts 7-4 and 7-3).

'], _portrait=true, _kind=LOGICAL], DiagramBuilder [_containingPackage=MetaModel, _objData=UmlObjectData [id=221, uuid={30729B8C-2FAA-41b6-B913-DD00F5E640FC}, since=null, name=MetaModelDataSetsAndControlBlocks, alias=, stereotype=, visibility=public, txtDescription='Shows data sets and control blocks defined in IEC61850-7-2. Highlighted classes are not explicitly defined in the standard.', htmlDescription='

Shows data sets and control blocks defined in IEC61850-7-2. Highlighted classes are not explicitly defined in the standard.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=6, _dependenciesAsTarget=6, _classes=43, _childPackages=1] +2024-09-08 15:10:00,310 [main] INFO PackageBuilder - processing package CDCServiceTracking (12) ... +2024-09-08 15:10:00,310 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=CDCServiceTracking, _objData=UmlObjectData [id=226, uuid={2E9A6046-6F09-499d-8DED-04126F464CF1}, since=null, name=CDCServiceTracking, alias=, stereotype=, visibility=public, txtDescription='Shows all service tracking CDCs defined in the standard with supertypes that factor their common attributes.', htmlDescription='

Shows all service tracking CDCs defined in the standard with supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,310 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2180, uuid={B029563B-4F5A-4fe0-994D-0C0BE8208EB4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=CDCServiceTracking, _otherEndName=Note ''] +2024-09-08 15:10:00,310 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::CDCServiceTracking->null, _objData=UmlObjectData [id=3105, uuid={1ACFCE23-05F0-4f6f-A7FF-F1999DF5DEBB}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,311 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1993, uuid={AE9C15F2-8B3D-49df-B6A7-32BE35190F6A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: Since the base classes for CDCs (and the data attributes) are defined in 7-3, we have circular dependency!', htmlDescription='

Modelling note: Since the base classes for CDCs (and the data attributes) are defined in 7-3, we have circular dependency!

'], _containingPackage=CDCServiceTracking, _otherEndName=] +2024-09-08 15:10:00,311 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1994, uuid={85196720-0A4F-4a77-9F16-5DA9E02CCAA9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- Consider renaming to 'ServiceTrackingCDC'', htmlDescription='

TODO:

  • Consider renaming to 'ServiceTrackingCDC'
'], _containingPackage=CDCServiceTracking, _otherEndName=] +2024-09-08 15:10:00,311 [main] TRACE ClassBuilder - Class CST (1 in package CDCServiceTracking) +2024-09-08 15:10:00,311 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2204, uuid={9E09D002-22E5-42b2-8883-6CF5959AA141}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=CST, _otherEndName=?] +2024-09-08 15:10:00,311 [main] TRACE ClassBuilder - read from EA: CDCServiceTracking::CST +2024-09-08 15:10:00,311 [main] TRACE ClassBuilder - Class BTS (2 in package CDCServiceTracking) +2024-09-08 15:10:00,312 [main] DEBUG ClassBuilder - Adding BTS as subclass of CST +2024-09-08 15:10:00,312 [main] TRACE ClassBuilder - read from EA: CDCServiceTracking::BTS +2024-09-08 15:10:00,312 [main] TRACE ClassBuilder - Class CTS (3 in package CDCServiceTracking) +2024-09-08 15:10:00,312 [main] DEBUG ClassBuilder - Adding CTS as subclass of CST +2024-09-08 15:10:00,312 [main] TRACE ClassBuilder - read from EA: CDCServiceTracking::CTS +2024-09-08 15:10:00,312 [main] TRACE ClassBuilder - Class GTS (4 in package CDCServiceTracking) +2024-09-08 15:10:00,312 [main] DEBUG ClassBuilder - Adding GTS as subclass of CST +2024-09-08 15:10:00,312 [main] TRACE ClassBuilder - read from EA: CDCServiceTracking::GTS +2024-09-08 15:10:00,312 [main] TRACE ClassBuilder - Class LTS (5 in package CDCServiceTracking) +2024-09-08 15:10:00,312 [main] DEBUG ClassBuilder - Adding LTS as subclass of CST +2024-09-08 15:10:00,312 [main] TRACE ClassBuilder - read from EA: CDCServiceTracking::LTS +2024-09-08 15:10:00,312 [main] TRACE ClassBuilder - Class MTS (6 in package CDCServiceTracking) +2024-09-08 15:10:00,313 [main] DEBUG ClassBuilder - Adding MTS as subclass of CST +2024-09-08 15:10:00,313 [main] TRACE ClassBuilder - read from EA: CDCServiceTracking::MTS +2024-09-08 15:10:00,313 [main] TRACE ClassBuilder - Class NTS (7 in package CDCServiceTracking) +2024-09-08 15:10:00,313 [main] DEBUG ClassBuilder - Adding NTS as subclass of CST +2024-09-08 15:10:00,313 [main] TRACE ClassBuilder - read from EA: CDCServiceTracking::NTS +2024-09-08 15:10:00,313 [main] TRACE ClassBuilder - Class OTS (8 in package CDCServiceTracking) +2024-09-08 15:10:00,313 [main] DEBUG ClassBuilder - Adding OTS as subclass of CST +2024-09-08 15:10:00,313 [main] TRACE ClassBuilder - read from EA: CDCServiceTracking::OTS +2024-09-08 15:10:00,313 [main] TRACE ClassBuilder - Class STS (9 in package CDCServiceTracking) +2024-09-08 15:10:00,313 [main] DEBUG ClassBuilder - Adding STS as subclass of CST +2024-09-08 15:10:00,313 [main] TRACE ClassBuilder - read from EA: CDCServiceTracking::STS +2024-09-08 15:10:00,314 [main] TRACE ClassBuilder - Class UTS (10 in package CDCServiceTracking) +2024-09-08 15:10:00,314 [main] DEBUG ClassBuilder - Adding UTS as subclass of CST +2024-09-08 15:10:00,314 [main] TRACE ClassBuilder - read from EA: CDCServiceTracking::UTS +2024-09-08 15:10:00,314 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_2, _depth=2, _eaElementID=1992, _objData=UmlObjectData [id=112, uuid={3C674902-0080-4e6c-A692-059B653701E8}, since=null, name=CDCServiceTracking, alias=Service tracking, stereotype=, visibility=public, txtDescription='The reporting and logging functions based on the process and function related data model as defined in IEC 61850-7-4 and 7-3 allow to track what happens in the process. For tracking what happens communicationwise in the system itself, this part of the standard provides the possibility to track all services, even those with negative responses. For this purpose the services are classified as follows: +- Control block related services (see IEC 61850-7-2, 15.3) +- Command related services (see IEC 61850-7-2, 20.6) +- Other services (see IEC 61850-7-2, 14.2) +The base concept consists in defining within the data model where to store the values of the service parameters used by a service. Therefore this part of the standard defines common data classes for each type of service to be reported resp. logged. For a given Server, there shall be a single data object instance (tracking data object) available in the object directory for each kind of service, that will mirror the value of the service parameters and its acceptance by the server. This allows that a service can be logged or reported to any client, as soon as the tracking data object is a DATA-SET member of the DATA-SET associated to a LCB or to a BRCB / URCB. +No (0) or one (1) instance of a needed tracking data object class (derived from the common service tracking data class) shall be defined in a logical device. IEC 61850-7-4 defines the data object name per tracking CDC.', htmlDescription='

The reporting and logging functions based on the process and function related data model as defined in IEC 61850-7-4 and 7-3 allow to track what happens in the process. For tracking what happens communicationwise in the system itself, this part of the standard provides the possibility to track all services, even those with negative responses. For this purpose the services are classified as follows:

  • Control block related services (see IEC 61850-7-2, 15.3)
  • Command related services (see IEC 61850-7-2, 20.6)
  • Other services (see IEC 61850-7-2, 14.2)

The base concept consists in defining within the data model where to store the values of the service parameters used by a service. Therefore this part of the standard defines common data classes for each type of service to be reported resp. logged. For a given Server, there shall be a single data object instance (tracking data object) available in the object directory for each kind of service, that will mirror the value of the service parameters and its acceptance by the server. This allows that a service can be logged or reported to any client, as soon as the tracking data object is a DATA-SET member of the DATA-SET associated to a LCB or to a BRCB / URCB.

No (0) or one (1) instance of a needed tracking data object class (derived from the common service tracking data class) shall be defined in a logical device. IEC 61850-7-4 defines the data object name per tracking CDC.

'], _modelId=58, _selfDependent=false, 3_skippedEaItems=[SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2180, uuid={B029563B-4F5A-4fe0-994D-0C0BE8208EB4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=CDCServiceTracking, _otherEndName=Note ''], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1993, uuid={AE9C15F2-8B3D-49df-B6A7-32BE35190F6A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: Since the base classes for CDCs (and the data attributes) are defined in 7-3, we have circular dependency!', htmlDescription='

Modelling note: Since the base classes for CDCs (and the data attributes) are defined in 7-3, we have circular dependency!

'], _containingPackage=CDCServiceTracking, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1994, uuid={85196720-0A4F-4a77-9F16-5DA9E02CCAA9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- Consider renaming to 'ServiceTrackingCDC'', htmlDescription='

TODO:

  • Consider renaming to 'ServiceTrackingCDC'
'], _containingPackage=CDCServiceTracking, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=CDCServiceTracking, _objData=UmlObjectData [id=226, uuid={2E9A6046-6F09-499d-8DED-04126F464CF1}, since=null, name=CDCServiceTracking, alias=, stereotype=, visibility=public, txtDescription='Shows all service tracking CDCs defined in the standard with supertypes that factor their common attributes.', htmlDescription='

Shows all service tracking CDCs defined in the standard with supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=1, _classes=10 +2024-09-08 15:10:00,314 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=WG10, _depth=1, _eaElementID=1622, _objData=UmlObjectData [id=88, uuid={F9CDEDC5-EC7E-4adc-B579-F2264159E7B7}, since=null, name=IEC61850_7_2, alias=, stereotype=, visibility=public, txtDescription='A formal meta-model and CoreAcsi API, which should reflect (and hopefully improve) the contents of IEC61850-2 Ed.1. Meta-model allows, among others, for a uniform definition of data-related concepts (LNs, CDCs, FCDAs), while the CoreAcsi API defines ACSI services. +TODO: We have started updating to Ed.2, but there still lot to do...', htmlDescription='

A formal meta-model and CoreAcsi API, which should reflect (and hopefully improve) the contents of IEC61850-2 Ed.1. Meta-model allows, among others, for a uniform definition of data-related concepts (LNs, CDCs, FCDAs), while the CoreAcsi API defines ACSI services.

TODO: We have started updating to Ed.2, but there still lot to do...

'], _modelId=58, _selfDependent=false, 4_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1623, uuid={EABD0CB1-194A-4ad7-A014-C0F4FF33A957}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- With tracking CDCs in Part 7-2, we have circular dependency with Part 7-3! (not shown here). Proposed to move these into Part 7-3.', htmlDescription='

TODO:

  • With tracking CDCs in Part 7-2, we have circular dependency with Part 7-3! (not shown here). Proposed to move these into Part 7-3.
'], _containingPackage=IEC61850_7_2, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1624, uuid={70D0C33E-CC65-47c7-9DD8-B1A5DB8EEB7B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Arrange the diagram when we settlle on modelling.', htmlDescription='

TODO: Arrange the diagram when we settlle on modelling.

'], _containingPackage=IEC61850_7_2, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1625, uuid={5D73B6B5-C29B-4bc3-842B-49DA8C366102}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='NOT UPDATED YET! + +How to read this model? +Automatically generated documentation prints the packages and their contents in the order they are defined in the model. And in the model, we took a bottom-up approach, i.e., starting from least-dependent packages and going up to most dependent packages: +- if you need an overview, look first into the packages that depend on others +- if you want the description of items before their first usage, look into the packages upon which the others depend. +Dependencies have been manually drawn (the tool does not do it by itself). +API (operations) conventions: +Packages CoreTypes, CoreEnums and AcsiType contain classes with data only, while AcsiTypes, MetaModel and CoreAcsi have classes (and interfaces) with operations, as well. Conventions for operations are as follows: +- Null argument in operations is by default not allowed, unless specified otherwise. +- When return value is a collection, and it has "nothing" to return, a non-null empty collection must be returned. +UML: +- In the diagrams, the black diamond on associations is on the side of a container, and its implicit multiplicity, as defined by UML, is [0..1], i.e., the contained class may belong to one or no container. For the sake or readability, we do not show the multiplicity on the container side. +- On the side of contained object, mandatory association ([1] or [1..*]) is considered as mandatory once the model is initialised. In other words, while building the model, it is possible to violate this constraint, but the valid completely built model must respect the given cardinalities. +- In the API (AcsiTypes, MetaModel, CoreAcsi), we define only methods that describe the required interface; definition of attributes (and names of association ends) is left to the implementation. +Design rationale: +We have on purpose kept services in CoreAcsi (API) separate from the MetaModel, because: +- CoreAcsi API is meant to be used for communication with a live device. +- CoreAcsi API models communication services, which are not object-oriented with respect to the domain model, as they deal with object references (strings), not with objects themselves (e.g., control blocks). However, the API itself is object oriented. +- CoreAcsi API reflects relatively closely what is specified in Part 7-2, Ed. 1, so those who know Part 7-2 and would like to use the API can easily find their way through the API. If this API is meant to be part of the standard, most of services should be renamed (to have less clumsy names). +- CoreAcsi API can be used without any configuration (SCL), to connect and communicate with the live device. It can be thus useful for simple browsing applications. +In contrast to this: +- MetaModel need not be used with a live device - it can be instantiated from SCL and used for different off-line applications. +- MetaModel is object-oriented - it deals with objects (e.g., control blocks) and as part of the interface provides navigation and object reference information. +- MetaModel enhances what is specified in Part 7-2, Ed. 1 and provides a strict definition of concepts developed in Parts 7-3 and 7-4, which is the must for software or data store designs. +- MetaModel can be used with a live device, as well, provided there is an intermediate implementation layer (not shown here) that will take care of using CoreAcsi API or even a direct MMS access. In that case, the semantics of the methods that influence behaviour on the CoreAcsi API level may not be the same as desired by a particular application using MetaModel (e.g., multiple clients/servers, who "owns" what, invalid names, etc.). Therefore, the MetaModel contains only the necessary minimum of methods (connecting to the server, naming and navigation), and different applications have to extend it for their needs (e.g., control block attributes). +Many useful applications can be developed with just this package, without using details of common data classes and logical nodes, while these latter will enable more advanced ones (as they provide for the semantics of data).', htmlDescription='

NOT UPDATED YET!

How to read this model?

Automatically generated documentation prints the packages and their contents in the order they are defined in the model. And in the model, we took a bottom-up approach, i.e., starting from least-dependent packages and going up to most dependent packages:

  • if you need an overview, look first into the packages that depend on others
  • if you want the description of items before their first usage, look into the packages upon which the others depend.

Dependencies have been manually drawn (the tool does not do it by itself).

API (operations) conventions:

Packages CoreTypes, CoreEnums and AcsiType contain classes with data only, while AcsiTypes, MetaModel and CoreAcsi have classes (and interfaces) with operations, as well. Conventions for operations are as follows:

  • Null argument in operations is by default not allowed, unless specified otherwise.
  • When return value is a collection, and it has "nothing" to return, a non-null empty collection must be returned.

UML:

  • In the diagrams, the black diamond on associations is on the side of a container, and its implicit multiplicity, as defined by UML, is [0..1], i.e., the contained class may belong to one or no container. For the sake or readability, we do not show the multiplicity on the container side.
  • On the side of contained object, mandatory association ([1] or [1..*]) is considered as mandatory once the model is initialised. In other words, while building the model, it is possible to violate this constraint, but the valid completely built model must respect the given cardinalities.
  • In the API (AcsiTypes, MetaModel, CoreAcsi), we define only methods that describe the required interface; definition of attributes (and names of association ends) is left to the implementation.

Design rationale:

We have on purpose kept services in CoreAcsi (API) separate from the MetaModel, because:

  • CoreAcsi API is meant to be used for communication with a live device.
  • CoreAcsi API models communication services, which are not object-oriented with respect to the domain model, as they deal with object references (strings), not with objects themselves (e.g., control blocks). However, the API itself is object oriented.
  • CoreAcsi API reflects relatively closely what is specified in Part 7-2, Ed. 1, so those who know Part 7-2 and would like to use the API can easily find their way through the API. If this API is meant to be part of the standard, most of services should be renamed (to have less clumsy names).
  • CoreAcsi API can be used without any configuration (SCL), to connect and communicate with the live device. It can be thus useful for simple browsing applications.

In contrast to this:

  • MetaModel need not be used with a live device - it can be instantiated from SCL and used for different off-line applications.
  • MetaModel is object-oriented - it deals with objects (e.g., control blocks) and as part of the interface provides navigation and object reference information.
  • MetaModel enhances what is specified in Part 7-2, Ed. 1 and provides a strict definition of concepts developed in Parts 7-3 and 7-4, which is the must for software or data store designs.
  • MetaModel can be used with a live device, as well, provided there is an intermediate implementation layer (not shown here) that will take care of using CoreAcsi API or even a direct MMS access. In that case, the semantics of the methods that influence behaviour on the CoreAcsi API level may not be the same as desired by a particular application using MetaModel (e.g., multiple clients/servers, who "owns" what, invalid names, etc.). Therefore, the MetaModel contains only the necessary minimum of methods (connecting to the server, naming and navigation), and different applications have to extend it for their needs (e.g., control block attributes).

Many useful applications can be developed with just this package, without using details of common data classes and logical nodes, while these latter will enable more advanced ones (as they provide for the semantics of data).

'], _containingPackage=IEC61850_7_2, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1627, uuid={15563EAD-20D1-4edb-BCBF-F3184AF0B515}, since=null, name=IEC61850_7_2 : IEC61850_7_2ModellingNotes, alias=, stereotype=, visibility=public, txtDescription='IEC61850_7_2 : IEC61850_7_2ModellingNotes', htmlDescription='

IEC61850_7_2 : IEC61850_7_2ModellingNotes

'], _containingPackage=IEC61850_7_2, _otherEndName=]], 2_diagrams=[DiagramBuilder [_containingPackage=IEC61850_7_2, _objData=UmlObjectData [id=192, uuid={90AA6E54-26D6-43d4-94A7-5F7B4B772910}, since=null, name=IEC61850_7_2, alias=, stereotype=, visibility=public, txtDescription='Overview of packages and their dependencies. +Dependencies among sub-packages are not shown on this diagram.', htmlDescription='

Overview of packages and their dependencies.

Dependencies among sub-packages are not shown on this diagram.

'], _portrait=true, _kind=PACKAGE], DiagramBuilder [_containingPackage=IEC61850_7_2, _objData=UmlObjectData [id=193, uuid={4F40E7C3-3463-44fe-85FB-8E5B2084B8A6}, since=null, name=IEC61850_7_2ModellingNotes, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _dependenciesAsTarget=2, _classes=1, _childPackages=10] +2024-09-08 15:10:00,314 [main] INFO PackageBuilder - processing package IEC61850_7_3 (3) ... +2024-09-08 15:10:00,314 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=IEC61850_7_3, _objData=UmlObjectData [id=227, uuid={F484E7B4-1E12-4de6-B276-87F2C5E6E00D}, since=null, name=IEC61850_7_3, alias=, stereotype=, visibility=public, txtDescription='This diagram: +- shows the content of this package, as well as dependencies to other parts of the model, and, +- highlights the sub-packages contained in IEC61850-7-3 required to generate the document automatically (note: for FC table in Annex B, we also need the enum FcKind from 7-2, not shown here). +About dependencies of DA sub-packages: +- CommonAcsiDAs, BasicDAs and ConstructedDAs are all DataAttribute-s from the meta-model, thus they depend on MetaModel, which in turn uses core types and thus depends on CoreTypes. +- CommonAcsiDAs, BasicDAs and ConstructedDAs use also core types, thus they depend on CoreTypes. +- ConstructedDAs use enumerations, so they depend on DAEnums. +- Finally, ConstructedDAs types are composed of primitive DAs, thus dependency to BasicDAs. +FCDAs package contains "helper" explicit types, which shield CDCs and LNs from all the complexity of IEC61850 datatype system. These are the types used to define attributes of CommonDataClass-es. Since FCDAs derive from an abstract meta-model type, they depend on MetaModel. And since they "decorate" data attribute types, they also depend on ConstructedDAs, CommonAcsiDAs and BasicDAs. +Finally, CDCs derive from the meta-model PrimitiveCDC and ComposedCDC and thus depend on MetaModel. Also, their attributes use FCDAs as types, so they all depend on FCDAs package.', htmlDescription='

This diagram:

  • shows the content of this package, as well as dependencies to other parts of the model, and,
  • highlights the sub-packages contained in IEC61850-7-3 required to generate the document automatically (note: for FC table in Annex B, we also need the enum FcKind from 7-2, not shown here).

About dependencies of DA sub-packages:

  • CommonAcsiDAs, BasicDAs and ConstructedDAs are all DataAttribute-s from the meta-model, thus they depend on MetaModel, which in turn uses core types and thus depends on CoreTypes.
  • CommonAcsiDAs, BasicDAs and ConstructedDAs use also core types, thus they depend on CoreTypes.
  • ConstructedDAs use enumerations, so they depend on DAEnums.
  • Finally, ConstructedDAs types are composed of primitive DAs, thus dependency to BasicDAs.

FCDAs package contains "helper" explicit types, which shield CDCs and LNs from all the complexity of IEC61850 datatype system. These are the types used to define attributes of CommonDataClass-es. Since FCDAs derive from an abstract meta-model type, they depend on MetaModel. And since they "decorate" data attribute types, they also depend on ConstructedDAs, CommonAcsiDAs and BasicDAs.

Finally, CDCs derive from the meta-model PrimitiveCDC and ComposedCDC and thus depend on MetaModel. Also, their attributes use FCDAs as types, so they all depend on FCDAs package.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,315 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->WG10::IEC61850_7_3, _objData=UmlObjectData [id=2897, uuid={5A68C091-F611-4fb1-91BF-9B547D41800A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,315 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = WG10::IEC61850_7_3->WG10::IEC61850_7_2, _objData=UmlObjectData [id=3104, uuid={3AE23F98-46A7-4956-8947-FA3AD8CE26AC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,315 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = WG10::IEC61850_7_3->null, _objData=UmlObjectData [id=3445, uuid={59C2B380-F257-47a2-9628-193034DD739F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,315 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2006, uuid={D48A9837-1371-4b1a-8D7F-00C9E8036560}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: This should move to 7-2.', htmlDescription='

TODO: This should move to 7-2.

'], _containingPackage=IEC61850_7_3, _otherEndName=] +2024-09-08 15:10:00,315 [main] TRACE ClassBuilder - Class IEC61850_7_3Namespace (0 in package IEC61850_7_3) +2024-09-08 15:10:00,316 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61850_7_3::IEC61850_7_3Namespace, _objData=UmlObjectData [id=3309, uuid={8477CDCF-B7B1-4c61-85E7-FF98E6FDDE43}, since=null, name=id, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=IEC61850-7-3, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,316 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61850_7_3::IEC61850_7_3Namespace, _objData=UmlObjectData [id=3310, uuid={F2B463B5-AACF-4e36-8199-A0B8EC0D5BE9}, since=null, name=version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2011, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,316 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61850_7_3::IEC61850_7_3Namespace, _objData=UmlObjectData [id=3311, uuid={699C3EA2-B230-4407-9EC4-D45951E6BC5E}, since=null, name=revision, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=B, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,316 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61850_7_3::IEC61850_7_3Namespace, _objData=UmlObjectData [id=3312, uuid={54B9DB98-DA2A-4c6e-BF98-F5D9803F3976}, since=null, name=date, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2011-08-01, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,316 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61850_7_3::IEC61850_7_3Namespace, _objData=UmlObjectData [id=6703, uuid={4DF1C9DC-C4F9-4191-B626-67DCF091C04B}, since=null, name=name, alias=, stereotype=, visibility=public, txtDescription='Note: This name is mal-formed and should be caught through validation.', htmlDescription='

Note: This name is mal-formed and should be caught through validation.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=IEC61850-7-3 B 2011, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,316 [main] TRACE ClassBuilder - read from EA: IEC61850_7_3::IEC61850_7_3Namespace +2024-09-08 15:10:00,317 [main] INFO PackageBuilder - processing package PresenceConditions (1) ... +2024-09-08 15:10:00,317 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=PresenceConditions, _objData=UmlObjectData [id=228, uuid={634BF46C-EC95-4ed7-A28F-26085CE40A21}, since=null, name=PresenceConditions, alias=, stereotype=, visibility=public, txtDescription='Shows possible values for presence conditions on attributes - these are modelled in UML with either attribute multiplicities (1 or 0..1, 0..n or 1..n) or with named constraints attached to a class.', htmlDescription='

Shows possible values for presence conditions on attributes - these are modelled in UML with either attribute multiplicities (1 or 0..1, 0..n or 1..n) or with named constraints attached to a class.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,317 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2205, uuid={680F9294-3A48-4c36-86F7-9867633896E3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=PresenceConditions, _otherEndName=Note ''] +2024-09-08 15:10:00,318 [main] TRACE ClassBuilder - Class PresenceCondition (3 in package PresenceConditions) +2024-09-08 15:10:00,318 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3644, uuid={F4EF1C45-2871-41c4-AF32-AE92183C1583}, since=null, name=M, alias=, stereotype=enum, visibility=public, txtDescription='Element is mandatory.', htmlDescription='

Element is mandatory.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,318 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3645, uuid={C1540269-ADF7-48c8-B368-69B6589AB9A6}, since=null, name=O, alias=, stereotype=enum, visibility=public, txtDescription='Element is optional.', htmlDescription='

Element is optional.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,318 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3646, uuid={2F450550-CA87-4a05-9021-60108958AD61}, since=null, name=MFsubst, alias=, stereotype=enum, deprecated, visibility=public, txtDescription='Element is mandatory if substitution is supported (for substitution, see IEC 61850-7-2), otherwise forbidden.', htmlDescription='

Element is mandatory if substitution is supported (for substitution, see IEC 61850-7-2), otherwise forbidden.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,318 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3647, uuid={FCC1F07D-4B22-42b0-9EAC-57DBDAE3A8AD}, since=null, name=AtLeastOne(n), alias=, stereotype=enum, visibility=public, txtDescription='At least one of marked elements shall be present.', htmlDescription='

At least one of marked elements shall be present.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,318 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3648, uuid={9A572771-42A8-4263-95A1-5DF17AF4726A}, since=null, name=AllOrNonePerGroup(n), alias=, stereotype=enum, visibility=public, txtDescription='Parameter n: group number (>0). +All or none of the elements of a group n shall be present.', htmlDescription='

Parameter n: group number (>0).

All or none of the elements of a group n shall be present.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,318 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3649, uuid={2D37A902-9C71-4c49-8BCF-977F00AD59A3}, since=null, name=AtMostOne, alias=, stereotype=enum, visibility=public, txtDescription='At most one of marked elements shall be present.', htmlDescription='

At most one of marked elements shall be present.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,319 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3650, uuid={4F6AD1D1-AC14-4546-9F1B-F8FDB5FD92FF}, since=null, name=MF(sibling), alias=, stereotype=enum, visibility=public, txtDescription='Parameter sibling: sibling element name. +Mandatory if sibling element is present, otherwise forbidden.', htmlDescription='

Parameter sibling: sibling element name.

Mandatory if sibling element is present, otherwise forbidden.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,319 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3651, uuid={2EC85437-8295-49c2-95FF-373A0A6FC519}, since=null, name=AllOnlyOneGroup(n), alias=, stereotype=enum, visibility=public, txtDescription='Parameter n: group number (>0). +All elements of only one group n shall be present.', htmlDescription='

Parameter n: group number (>0).

All elements of only one group n shall be present.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,319 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3652, uuid={F0FE764D-4E0C-4102-8165-64143B91C0AB}, since=null, name=MOln0, alias=, stereotype=enum, visibility=public, txtDescription='The element is mandatory in the context of LLN0; otherwise optional.', htmlDescription='

The element is mandatory in the context of LLN0; otherwise optional.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,319 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3653, uuid={7B0A327F-98A2-4c73-BDAD-B9DA2DE66069}, since=null, name=MFln0, alias=, stereotype=enum, visibility=public, txtDescription='The element is mandatory in the context of LLN0; otherwise forbidden.', htmlDescription='

The element is mandatory in the context of LLN0; otherwise forbidden.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,319 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3654, uuid={3322A988-15C7-482d-826D-29EB3EF9AFE3}, since=null, name=MOlnNs, alias=, stereotype=enum, visibility=public, txtDescription='The element is mandatory if the name space of its logical node deviates from the name space of the containing logical device, otherwise optional. +Notes: +- The logical device name space is given in LLN0.NamPlt.ldNs. +- Applies to LPL.lnNs only.', htmlDescription='

The element is mandatory if the name space of its logical node deviates from the name space of the containing logical device, otherwise optional.

Notes:

- The logical device name space is given in LLN0.NamPlt.ldNs.

- Applies to LPL.lnNs only.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,319 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3655, uuid={A15532FB-7577-4c76-9FBB-0F62F6942510}, since=null, name=MOdataNs, alias=, stereotype=enum, visibility=public, txtDescription='The element is mandatory if the name space of its data object deviates from the name space of its logical node, otherwise optional. +Notes: +- The name space a logical node LN belongs to is given by: +- The data attribute NamPlt.lnNs if available, otherwise +- The containing logical device name space, i.e., the data attribute NamPlt.ldNs of the relevant LLN0. +- Applies to the data attribute dataNs of any CDC only.', htmlDescription='

The element is mandatory if the name space of its data object deviates from the name space of its logical node, otherwise optional.

Notes:

- The name space a logical node LN belongs to is given by:

- The data attribute NamPlt.lnNs if available, otherwise

- The containing logical device name space, i.e., the data attribute NamPlt.ldNs of the relevant LLN0.

- Applies to the data attribute dataNs of any CDC only.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,320 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3656, uuid={B15E9280-9EAE-41c0-B993-15F3CDF0DE0A}, since=null, name=MOcdcNs, alias=, stereotype=enum, visibility=public, txtDescription='The element is mandatory if the name space of its CDC deviates from the name space of its data object, otherwise optional. +Notes: +- The name space a data object belongs to is given by: +- The data attribute dataNs in the same CDC if it exists, otherwise +- The containing logical node’s namespace, i.e., the attribute NamPlt.lnNs if it exist, otherwise +- The containing logical device name space, i.e., the data attribute NamPlt.ldNs of the relevant LLN0. +- Applies to data attributes 'cdcNs' and 'cdcName' only. +- From Ed. 2 on shall only be used for logical node definitions of other name spaces (e.g., Wind) to refer to the standardized CDC definitions.', htmlDescription='

The element is mandatory if the name space of its CDC deviates from the name space of its data object, otherwise optional.

Notes:

- The name space a data object belongs to is given by:

- The data attribute dataNs in the same CDC if it exists, otherwise

- The containing logical node’s namespace, i.e., the attribute NamPlt.lnNs if it exist, otherwise

- The containing logical device name space, i.e., the data attribute NamPlt.ldNs of the relevant LLN0.

- Applies to data attributes 'cdcNs' and 'cdcName' only.

- From Ed. 2 on shall only be used for logical node definitions of other name spaces (e.g., Wind) to refer to the standardized CDC definitions.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,320 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3657, uuid={5D6EC8F8-E493-4733-B940-7E40E92C051F}, since=null, name=MFscaledAV, alias=, stereotype=enum, visibility=public, txtDescription='The element is mandatory if any sibling elements of type AnalogueValue include 'i' as a child, otherwise forbidden.', htmlDescription='

The element is mandatory if any sibling elements of type AnalogueValue include 'i' as a child, otherwise forbidden.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,321 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3658, uuid={97C80B99-BD1A-47ab-83B5-0D2DD5512516}, since=null, name=MFscaledMagV, alias=, stereotype=enum, visibility=public, txtDescription='The element is mandatory if any sibling elements of type Vector include 'i' as a child of their 'mag' attribute, otherwise forbidden.', htmlDescription='

The element is mandatory if any sibling elements of type Vector include 'i' as a child of their 'mag' attribute, otherwise forbidden.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,321 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3659, uuid={3257052D-F198-4dbc-B790-C3547F95B0E8}, since=null, name=MFscaledAngV, alias=, stereotype=enum, visibility=public, txtDescription='The element is mandatory if any sibling elements of type Vector include 'i' as a child of their 'ang' attribute, otherwise forbidden.', htmlDescription='

The element is mandatory if any sibling elements of type Vector include 'i' as a child of their 'ang' attribute, otherwise forbidden.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,321 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3660, uuid={A0996056-2831-4d43-9C7B-5574248176AD}, since=null, name=MFsg, alias=, stereotype=enum, visibility=public, txtDescription='The element is mandatory if it is member of setting group, otherwise forbidden. +Note: MFsg, OFsg, and MFsgAtLeastOne always all apply or all do not apply in a given context.', htmlDescription='

The element is mandatory if it is member of setting group, otherwise forbidden.

Note: MFsg, OFsg, and MFsgAtLeastOne always all apply or all do not apply in a given context.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,321 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3661, uuid={B20F037A-DC4B-4c52-9533-758FA9A53328}, since=null, name=OFsg, alias=, stereotype=enum, visibility=public, txtDescription='The element is optional and may be used only if it is member of setting groups, otherwise forbidden. +Note: MFsg, OFsg, and MFsgAtLeastOne always all apply or all do not apply in a given context.', htmlDescription='

The element is optional and may be used only if it is member of setting groups, otherwise forbidden.

Note: MFsg, OFsg, and MFsgAtLeastOne always all apply or all do not apply in a given context.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,322 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3662, uuid={1D58D1EE-A6A5-4f30-A5C6-4F3236EEFFF8}, since=null, name=MFsgAtLeastOne, alias=, stereotype=enum, visibility=public, txtDescription='At least one of the elements is mandatory if it is member of setting group (the others are optional). Otherwise, they are all forbidden. +Note: MFsg, OFsg, and MFsgAtLeastOne always all apply or all do not apply in a given context.', htmlDescription='

At least one of the elements is mandatory if it is member of setting group (the others are optional). Otherwise, they are all forbidden.

Note: MFsg, OFsg, and MFsgAtLeastOne always all apply or all do not apply in a given context.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,322 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3663, uuid={7774FF73-DB7C-4e45-AA3A-8A65E1574F4E}, since=null, name=MFnsg, alias=, stereotype=enum, visibility=public, txtDescription='The element is mandatory for settings outside setting groups, otherwise forbidden. +Note: MFnsg, OFnsg, and MFnsgAtLeastOne always all apply or all do not apply in a given context.', htmlDescription='

The element is mandatory for settings outside setting groups, otherwise forbidden.

Note: MFnsg, OFnsg, and MFnsgAtLeastOne always all apply or all do not apply in a given context.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,322 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3664, uuid={7D08016E-0C38-4c0c-9BEB-20CF98CE447D}, since=null, name=OFnsg, alias=, stereotype=enum, visibility=public, txtDescription='The element is optional and may be used only for settings outside setting groups, otherwise forbidden. +Note: MFnsg, OFnsg, and MFnsgAtLeastOne always all apply or all do not apply in a given context.', htmlDescription='

The element is optional and may be used only for settings outside setting groups, otherwise forbidden.

Note: MFnsg, OFnsg, and MFnsgAtLeastOne always all apply or all do not apply in a given context.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,322 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3665, uuid={ABFA9AFE-2FE5-49be-851F-A593E13688AE}, since=null, name=MFnsgAtLeastOne, alias=, stereotype=enum, visibility=public, txtDescription='At least one of the elements is mandatory for settings outside setting groups (the others are optional). Otherwise, they are all forbidden. +Note: MFnsg, OFnsg, and MFnsgAtLeastOne always all apply or all do not apply in a given context.', htmlDescription='

At least one of the elements is mandatory for settings outside setting groups (the others are optional). Otherwise, they are all forbidden.

Note: MFnsg, OFnsg, and MFnsgAtLeastOne always all apply or all do not apply in a given context.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,322 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3666, uuid={F2BC4852-69BD-4946-91F0-E04C38F36C74}, since=null, name=MFrms, alias=, stereotype=enum, visibility=public, txtDescription='The element is mandatory if the harmonic values in the context are calculated as a ratio to RMS value (value of data attribute 'hvRef' is 'rms'), forbidden otherwise.', htmlDescription='

The element is mandatory if the harmonic values in the context are calculated as a ratio to RMS value (value of data attribute 'hvRef' is 'rms'), forbidden otherwise.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,322 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3667, uuid={9C892A2D-B8CE-4b5f-8D86-48035F6BCD24}, since=null, name=Mmulti, alias=, stereotype=enum, visibility=public, txtDescription='At least one element shall be present; all instances have an instance number within range [1, 99] (see Part 7-1).', htmlDescription='

At least one element shall be present; all instances have an instance number within range [1, 99] (see Part 7-1).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,322 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3668, uuid={558E4EF7-DB17-4e50-A0E8-6AAAEA184142}, since=null, name=Omulti, alias=, stereotype=enum, visibility=public, txtDescription='Zero or more elements may be present; all instances have an instance number within range [1, 99] (see Part 7-1).', htmlDescription='

Zero or more elements may be present; all instances have an instance number within range [1, 99] (see Part 7-1).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,322 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3669, uuid={ED2CBEA5-F54A-45aa-AEF7-DC07AEC4A691}, since=null, name=OmultiRange(min, max), alias=, stereotype=enum, visibility=public, txtDescription='Parameters min, max: limits for instance number (>0). +Zero or more elements may be present; all instances have an instance number within range [min, max] (see Part 7-1).', htmlDescription='

Parameters min, max: limits for instance number (>0).

Zero or more elements may be present; all instances have an instance number within range [min, max] (see Part 7-1).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,323 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3670, uuid={FA6DB59B-35D6-4d82-AD8A-9706B804EFBD}, since=null, name=MOcond(condID), alias=, stereotype=enum, visibility=public, txtDescription='Parameter condID: condition number (>0). +Textual presence condition (non-machine processable) with reference condID to context specific text. If satisfied, the element is mandatory, otherwise optional.', htmlDescription='

Parameter condID: condition number (>0).

Textual presence condition (non-machine processable) with reference condID to context specific text. If satisfied, the element is mandatory, otherwise optional.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,323 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3671, uuid={FCDB744D-87C0-45b7-9453-4427AE31FAD4}, since=null, name=MF(condID), alias=, stereotype=enum, visibility=public, txtDescription='Parameter condID: condition number (>0). +Textual presence condition (non-machine processable) with reference condID to context specific text. If satisfied, the element is mandatory, otherwise forbidden.', htmlDescription='

Parameter condID: condition number (>0).

Textual presence condition (non-machine processable) with reference condID to context specific text. If satisfied, the element is mandatory, otherwise forbidden.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,323 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3672, uuid={DE62505B-BF27-4256-B43A-95160539CB04}, since=null, name=OF(condID), alias=, stereotype=enum, visibility=public, txtDescription='Parameter condID: condition number (>0). +Textual presence condition (non-machine processable) with reference condID to context specific text. If satisfied, the element is optional, otherwise forbidden.', htmlDescription='

Parameter condID: condition number (>0).

Textual presence condition (non-machine processable) with reference condID to context specific text. If satisfied, the element is optional, otherwise forbidden.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,323 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3673, uuid={953CC820-47FE-4695-B3A4-B72AB7F2B578}, since=null, name=MOrootLD, alias=, stereotype=enum, visibility=public, txtDescription='The element is mandatory in the context of a root logical device; otherwise it is optional.', htmlDescription='

The element is mandatory in the context of a root logical device; otherwise it is optional.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,323 [main] TRACE ClassBuilder - read from EA: PresenceConditions::PresenceCondition +2024-09-08 15:10:00,323 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_3, _depth=2, _eaElementID=2008, _objData=UmlObjectData [id=114, uuid={A4B0B13F-5618-4cb2-B112-2B54AED01457}, since=null, name=PresenceConditions, alias=Conditions for element inclusion, stereotype=, visibility=public, txtDescription='This clause introduces conditions that specify presence of elements in a given context (one LN, or one CDC, or one data object for dataNs).', htmlDescription='

This clause introduces conditions that specify presence of elements in a given context (one LN, or one CDC, or one data object for dataNs).

'], _modelId=58, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2205, uuid={680F9294-3A48-4c36-86F7-9867633896E3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=PresenceConditions, _otherEndName=Note '']], 1_diagrams=[DiagramBuilder [_containingPackage=PresenceConditions, _objData=UmlObjectData [id=228, uuid={634BF46C-EC95-4ed7-A28F-26085CE40A21}, since=null, name=PresenceConditions, alias=, stereotype=, visibility=public, txtDescription='Shows possible values for presence conditions on attributes - these are modelled in UML with either attribute multiplicities (1 or 0..1, 0..n or 1..n) or with named constraints attached to a class.', htmlDescription='

Shows possible values for presence conditions on attributes - these are modelled in UML with either attribute multiplicities (1 or 0..1, 0..n or 1..n) or with named constraints attached to a class.

'], _portrait=true, _kind=LOGICAL]], _classes=1 +2024-09-08 15:10:00,323 [main] INFO PackageBuilder - processing package DAEnums (2) ... +2024-09-08 15:10:00,324 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=DAEnums, _objData=UmlObjectData [id=229, uuid={22E1DAA3-405F-4df7-8882-EEBD5D0DA11B}, since=null, name=DAEnums-1, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the first part of explicit enumerated types defined in 61850-7-3.', htmlDescription='

This diagram shows the first part of explicit enumerated types defined in 61850-7-3.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,324 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_3::DAEnums, _objData=UmlObjectData [id=2558, uuid={8E80EB80-DCE3-4c3d-B7B7-BA538068A4E4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,324 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_3::DAEnums, _objData=UmlObjectData [id=3082, uuid={9E3DBD1A-4941-4c00-A64C-0B9D8112CFF9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,325 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2015, uuid={D1139F92-EB4A-4746-A43B-E28AB69E55E4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling notes 1: +- Within the definitions of both Common Data Attribute Types (section 6) and Common Data Classes (section 7) in IEC 61850-7-3, when the type of attribute is ENUMERATED or CODED_ENUM, the possible values are given, but the type is not defined (i.e., no name is given). Then, in section 8 (Data attribute semantics), the values are repeated per attribute, again without name for the type. Only 'SboClass' and 'CtlModel' have been explicitly defined among all enumerations. We define concrete types for all of those, as enumerations. +- Enumeration literal strings are literally copy-pasted from IEC 61850-7-3 (so they correspond to definitions in SCL2.0), except for CurveChar, SIUnit and Multiplier, whose literal strings are directly copied from SCL2.0. +Modelling notes 2: +- In SCL, EnumType-s are not XML enumerations (i.e., they are not defined as types that restrict string), but rather have an id attribute that mainly refers to the name of attribute that has those literals as possible value range - but not always! (see orCategory, used for orCat attribute). +- SCL defines one element (EnumType) per attribute of CDC/DA, so there are in some cases two EnumType-s with exactly same literals, but different id. +- At present, we store that id attribute in the EA tagged value of enumeration (class). In cases there is repetition, this string will be a comma-separated list of SCL id-s. +- The order of types in the diagrams and in the EA project browser is the one as in Ed.2 Annex H, to be able to compare the original with this model.', htmlDescription='

Modelling notes 1:

  • Within the definitions of both Common Data Attribute Types (section 6) and Common Data Classes (section 7) in IEC 61850-7-3, when the type of attribute is ENUMERATED or CODED_ENUM, the possible values are given, but the type is not defined (i.e., no name is given). Then, in section 8 (Data attribute semantics), the values are repeated per attribute, again without name for the type. Only 'SboClass' and 'CtlModel' have been explicitly defined among all enumerations. We define concrete types for all of those, as enumerations.
  • Enumeration literal strings are literally copy-pasted from IEC 61850-7-3 (so they correspond to definitions in SCL2.0), except for CurveChar, SIUnit and Multiplier, whose literal strings are directly copied from SCL2.0.

Modelling notes 2:

  • In SCL, EnumType-s are not XML enumerations (i.e., they are not defined as types that restrict string), but rather have an id attribute that mainly refers to the name of attribute that has those literals as possible value range - but not always! (see orCategory, used for orCat attribute).
  • SCL defines one element (EnumType) per attribute of CDC/DA, so there are in some cases two EnumType-s with exactly same literals, but different id.
  • At present, we store that id attribute in the EA tagged value of enumeration (class). In cases there is repetition, this string will be a comma-separated list of SCL id-s.
  • The order of types in the diagrams and in the EA project browser is the one as in Ed.2 Annex H, to be able to compare the original with this model.
'], _containingPackage=DAEnums, _otherEndName=] +2024-09-08 15:10:00,325 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2016, uuid={A05F1A3E-4A44-4cba-89B2-22FD97F14AF9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='- SCL defines two EnumType-s (id=hvRef and id=hvid) with exactly same values; 'hvid' is useless (there is no such attribute). +- Confirmed: Definition here is OK (Baden WS, with TD & WW).', htmlDescription='
  • SCL defines two EnumType-s (id=hvRef and id=hvid) with exactly same values; 'hvid' is useless (there is no such attribute).
  • Confirmed: Definition here is OK (Baden WS, with TD & WW).
'], _containingPackage=DAEnums, _otherEndName=] +2024-09-08 15:10:00,325 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2021, uuid={6BE98B3D-9F27-4d95-9E1C-FD9B624525BC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='SCL defines two EnumType-s (id=angRef and id=angid) with exactly same values; 'angid' is useless (there is no such attribute). +SCL also defines a third EnumType (id=angidCMV) with only 4 values. It does not seem to be used as defined nowhere. Is it that CMV.angRef should be using only these values? If so, the spec in 7-3 is wrong, because it enumerates all values like in id=angRef. +- Confirmed: 7-3 is wrong for CMV.angRef - define type with 5 values only (Baden WS, with TD & WW).', htmlDescription='

SCL defines two EnumType-s (id=angRef and id=angid) with exactly same values; 'angid' is useless (there is no such attribute).

SCL also defines a third EnumType (id=angidCMV) with only 4 values. It does not seem to be used as defined nowhere. Is it that CMV.angRef should be using only these values? If so, the spec in 7-3 is wrong, because it enumerates all values like in id=angRef.

  • Confirmed: 7-3 is wrong for CMV.angRef - define type with 5 values only (Baden WS, with TD & WW).
'], _containingPackage=DAEnums, _otherEndName=] +2024-09-08 15:10:00,326 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2022, uuid={5A11F146-E3D4-4bab-8BA6-82AD6CB57804}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='- SCL defines two EnumType-s (id=phsRef and id=phsid) with exactly same values; 'phsid' is useless (there is no such attribute). +- Confirmed: Definition here is OK (Baden WS, with TD & WW).', htmlDescription='
  • SCL defines two EnumType-s (id=phsRef and id=phsid) with exactly same values; 'phsid' is useless (there is no such attribute).
  • Confirmed: Definition here is OK (Baden WS, with TD & WW).
'], _containingPackage=DAEnums, _otherEndName=] +2024-09-08 15:10:00,326 [main] TRACE ClassBuilder - Class SIUnitKind (1 in package DAEnums) +2024-09-08 15:10:00,326 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3834, uuid={BF785F0A-2A56-4621-B0A1-DAAB8F3EE85B}, since=null, name=none, alias=, stereotype=enum, visibility=public, txtDescription='Dimensionless', htmlDescription='

Dimensionless

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null, 1_taggedValues{scl:emptyValue=}] +2024-09-08 15:10:00,326 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3835, uuid={6DF44984-61E4-44a3-A5EE-4C2290415A9B}, since=null, name=m, alias=, stereotype=enum, visibility=public, txtDescription='Length', htmlDescription='

Length

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,326 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3836, uuid={B34B087D-ECF3-4743-8E65-600ED7521212}, since=null, name=kg, alias=, stereotype=enum, visibility=public, txtDescription='Mass', htmlDescription='

Mass

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,326 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3837, uuid={42A5DD44-C9F5-4656-8ACF-C090569255E2}, since=null, name=s, alias=, stereotype=enum, visibility=public, txtDescription='Time', htmlDescription='

Time

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,326 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3838, uuid={130724A3-1381-420a-844F-B51C24143F8E}, since=null, name=A, alias=, stereotype=enum, visibility=public, txtDescription='Current', htmlDescription='

Current

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=5, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,326 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3839, uuid={F1030625-D53E-45e5-9D29-4940A44165B5}, since=null, name=K, alias=, stereotype=enum, visibility=public, txtDescription='Temperature', htmlDescription='

Temperature

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=6, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,326 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3840, uuid={AE2FD9E1-D38B-4e9f-8335-4B65A749974D}, since=null, name=mol, alias=, stereotype=enum, visibility=public, txtDescription='Amount of substance', htmlDescription='

Amount of substance

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=7, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,327 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3841, uuid={B5FF5AD0-E9AE-4bb5-BF76-FC88E2D17EB6}, since=null, name=cd, alias=, stereotype=enum, visibility=public, txtDescription='Luminous intensity', htmlDescription='

Luminous intensity

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=8, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,327 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3842, uuid={80EB1A36-849C-46ff-9996-06A9C9483738}, since=null, name=deg, alias=, stereotype=enum, visibility=public, txtDescription='Plane angle', htmlDescription='

Plane angle

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=9, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,327 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3843, uuid={E377BEE0-C104-440f-9D8B-729C4C9260FB}, since=null, name=rad, alias=, stereotype=enum, visibility=public, txtDescription='Plane angle', htmlDescription='

Plane angle

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=10, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,327 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3844, uuid={FCAFD15F-9B98-4480-9FEA-2F23568D4CAC}, since=null, name=sr, alias=, stereotype=enum, visibility=public, txtDescription='Solid angle', htmlDescription='

Solid angle

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=11, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,327 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3845, uuid={9A01E986-3499-4252-9A72-C4049F2655AC}, since=null, name=Gy, alias=, stereotype=enum, visibility=public, txtDescription='Absorbed dose (J/kg)', htmlDescription='

Absorbed dose (J/kg)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=21, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,327 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3846, uuid={4E669A21-8B03-47a5-8B77-2FDE37A30C6A}, since=null, name=Bq, alias=, stereotype=enum, visibility=public, txtDescription='Activity (1/s)', htmlDescription='

Activity (1/s)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=22, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,327 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3847, uuid={520E858D-8B34-451c-8895-40892ACCF50E}, since=null, name=°C, alias=, stereotype=enum, visibility=public, txtDescription='Relative temperature', htmlDescription='

Relative temperature

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=23, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,327 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3848, uuid={D1749A3B-FE6D-49dd-BA79-7FFCB48480E3}, since=null, name=Sv, alias=, stereotype=enum, visibility=public, txtDescription='Dose equivalent (J/kg)', htmlDescription='

Dose equivalent (J/kg)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=24, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,327 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3849, uuid={0C8209F7-18E8-408f-AF2E-CB3CF6B56287}, since=null, name=F, alias=, stereotype=enum, visibility=public, txtDescription='Electric capacitance', htmlDescription='

Electric capacitance

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=25, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,327 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3850, uuid={F632CA5C-8824-4ae5-A523-BBAE12929F13}, since=null, name=C, alias=, stereotype=enum, visibility=public, txtDescription='Electric charge (A S)', htmlDescription='

Electric charge (A S)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=26, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,327 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3851, uuid={6A52F2C9-C32B-4795-9CAF-AB54E2E98475}, since=null, name=S, alias=, stereotype=enum, visibility=public, txtDescription='Electric conductance (A/V)', htmlDescription='

Electric conductance (A/V)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=27, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,327 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3852, uuid={C12E0C24-6370-4f9e-AF71-A111ED01D592}, since=null, name=H, alias=, stereotype=enum, visibility=public, txtDescription='Electric inductance (Wb/A)', htmlDescription='

Electric inductance (Wb/A)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=28, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,327 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3853, uuid={F3F8EFA6-66DE-4012-B0E7-73775B3AE13D}, since=null, name=V, alias=, stereotype=enum, visibility=public, txtDescription='Electric potential (W/A)', htmlDescription='

Electric potential (W/A)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=29, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,328 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3854, uuid={7DE9814F-6BC3-42c8-AD7C-3E93C74D077B}, since=null, name=ohm, alias=, stereotype=enum, visibility=public, txtDescription='Electric resistance (V/A)', htmlDescription='

Electric resistance (V/A)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=30, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,328 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3855, uuid={FE7FD54D-EA36-4fbe-A3FD-7BCFCC00F34A}, since=null, name=J, alias=, stereotype=enum, visibility=public, txtDescription='Energy (N m)', htmlDescription='

Energy (N m)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=31, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,328 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3856, uuid={B03A8CAE-D159-41a1-96FE-900DCF66F192}, since=null, name=N, alias=, stereotype=enum, visibility=public, txtDescription='Force (kg m / s2)', htmlDescription='

Force (kg m / s2)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=32, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,328 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3857, uuid={81BFC441-9980-4fb5-8BA1-E8F752221238}, since=null, name=Hz, alias=, stereotype=enum, visibility=public, txtDescription='Frequency (1/s)', htmlDescription='

Frequency (1/s)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=33, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,328 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3858, uuid={06DC51E8-D7E4-47b4-8E84-C59EFCC076A1}, since=null, name=lx, alias=, stereotype=enum, visibility=public, txtDescription='Illuminance (Lm/m2)', htmlDescription='

Illuminance (Lm/m2)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=34, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,328 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3859, uuid={695EF603-FCBB-4d63-8EE4-822DAF7B06F7}, since=null, name=Lm, alias=, stereotype=enum, visibility=public, txtDescription='Luminous flux (cd sr)', htmlDescription='

Luminous flux (cd sr)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=35, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,328 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3860, uuid={88797613-50B0-4614-9F01-D73561DF4C70}, since=null, name=Wb, alias=, stereotype=enum, visibility=public, txtDescription='Magnetic flux (V s)', htmlDescription='

Magnetic flux (V s)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=36, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,328 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3861, uuid={CAC0C9AC-54BF-45d8-A303-7F6B8A0D489D}, since=null, name=T, alias=, stereotype=enum, visibility=public, txtDescription='Magnetic flux density (Wb / m2)', htmlDescription='

Magnetic flux density (Wb / m2)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=37, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,328 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3862, uuid={3206BE17-1CB2-4674-88C8-ED9932F4F45E}, since=null, name=W, alias=, stereotype=enum, visibility=public, txtDescription='Power (J/s)', htmlDescription='

Power (J/s)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=38, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,328 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3863, uuid={093E7D33-D82B-4658-8E66-6529606CD4E7}, since=null, name=Pa, alias=, stereotype=enum, visibility=public, txtDescription='Pressure (N / m2)', htmlDescription='

Pressure (N / m2)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=39, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,330 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3864, uuid={F3996E68-F1F5-47ac-9868-025E731EA889}, since=null, name=m², alias=, stereotype=enum, visibility=public, txtDescription='Area', htmlDescription='

Area

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=41, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,330 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3865, uuid={A839006B-9203-4d7f-8EA6-57BACAD4D126}, since=null, name=m³, alias=, stereotype=enum, visibility=public, txtDescription='Volume', htmlDescription='

Volume

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=42, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,330 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3866, uuid={01CA7E85-9F4F-40df-AD70-7DEED2B304F8}, since=null, name=m/s, alias=, stereotype=enum, visibility=public, txtDescription='Velocity', htmlDescription='

Velocity

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=43, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,330 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3867, uuid={4480A19E-7AD5-4bda-8AD3-73B91E734BDD}, since=null, name=m/s², alias=, stereotype=enum, visibility=public, txtDescription='Acceleration', htmlDescription='

Acceleration

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=44, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,330 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3868, uuid={1774C91B-1C0C-41d7-9825-ADE012AA3F80}, since=null, name=m³/s, alias=, stereotype=enum, visibility=public, txtDescription='Volumetric flow rate', htmlDescription='

Volumetric flow rate

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=45, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,330 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3869, uuid={87C49CAE-44F7-4870-A2E4-4109061F7FB1}, since=null, name=m/m³, alias=, stereotype=enum, visibility=public, txtDescription='Fuel efficiency', htmlDescription='

Fuel efficiency

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=46, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,330 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3870, uuid={7559AB73-2A13-4cf7-8FD4-55685781E975}, since=null, name=M, alias=, stereotype=enum, visibility=public, txtDescription='Moment of mass (kg m)', htmlDescription='

Moment of mass (kg m)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=47, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,330 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3871, uuid={DAA7E5EF-F3F8-4193-9231-13579474FA39}, since=null, name=kg/m³, alias=, stereotype=enum, visibility=public, txtDescription='Density', htmlDescription='

Density

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=48, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,330 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3872, uuid={AFE3FFEE-3BE3-430f-8660-7B3EBC4E8951}, since=null, name=m²/s, alias=, stereotype=enum, visibility=public, txtDescription='Viscosity', htmlDescription='

Viscosity

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=49, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,331 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3873, uuid={BCFC3375-64FB-4f3a-94E3-95D1A3A5CBBE}, since=null, name=W/m K, alias=, stereotype=enum, visibility=public, txtDescription='Thermal conductivity', htmlDescription='

Thermal conductivity

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=50, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,331 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3874, uuid={3D94638E-4FDC-462c-87C3-ADC8B96D7B7E}, since=null, name=J/K, alias=, stereotype=enum, visibility=public, txtDescription='Heat capacity', htmlDescription='

Heat capacity

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=51, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,331 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3875, uuid={90F28F14-0C7C-45c7-B631-13548FBBA81B}, since=null, name=ppm, alias=, stereotype=enum, visibility=public, txtDescription='Concentration', htmlDescription='

Concentration

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=52, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,331 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3876, uuid={4A4CCECE-2AAA-4c8c-B936-C6108D16263F}, since=null, name=1/s, alias=, stereotype=enum, visibility=public, txtDescription='Rotational speed', htmlDescription='

Rotational speed

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=53, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,331 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3877, uuid={7D96211B-D5AD-4a47-9626-D17F9CB4CDEB}, since=null, name=rad/s, alias=, stereotype=enum, visibility=public, txtDescription='Angular velocity', htmlDescription='

Angular velocity

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=54, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,331 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3878, uuid={336B86CA-E1FB-4302-864F-F24E2A6D94C3}, since=null, name=W/m², alias=, stereotype=enum, visibility=public, txtDescription='Insolation', htmlDescription='

Insolation

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=55, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,331 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3879, uuid={C9521B26-D482-453f-945D-74369F773538}, since=null, name=J/m², alias=, stereotype=enum, visibility=public, txtDescription='Insolation energy', htmlDescription='

Insolation energy

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=56, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,331 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3880, uuid={ED41A0C0-8218-4409-B4EF-9E3F40AA0609}, since=null, name=S/m, alias=, stereotype=enum, visibility=public, txtDescription='Electric conductivity', htmlDescription='

Electric conductivity

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=57, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,331 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3881, uuid={7EA46B10-B356-4e5a-951C-3D6D32267576}, since=null, name=K/s, alias=, stereotype=enum, visibility=public, txtDescription='Temperature change rate', htmlDescription='

Temperature change rate

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=58, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,331 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3882, uuid={487E4ED6-B199-4909-9199-CE6D29ED4032}, since=null, name=Pa/s, alias=, stereotype=enum, visibility=public, txtDescription='Pressure change rate', htmlDescription='

Pressure change rate

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=59, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,331 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3883, uuid={AD5FA589-E00C-44dd-9ACD-9CF342D5968F}, since=null, name=J/kg K, alias=, stereotype=enum, visibility=public, txtDescription='Specific heat', htmlDescription='

Specific heat

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=60, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,331 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3884, uuid={6389AEE4-7FB9-4c07-B618-FB53EC254BEC}, since=null, name=VA, alias=, stereotype=enum, visibility=public, txtDescription='Apparent power', htmlDescription='

Apparent power

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=61, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,332 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3885, uuid={A318152C-4902-4d06-987B-93B642559783}, since=null, name=Watts, alias=, stereotype=enum, visibility=public, txtDescription='Real power (I2 R)', htmlDescription='

Real power (I2 R)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=62, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,332 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3886, uuid={F0EB0FAF-2328-47c0-BD89-3BC3A855BA2D}, since=null, name=VAr, alias=, stereotype=enum, visibility=public, txtDescription='Reactive power (V I sinTheta)', htmlDescription='

Reactive power (V I sinTheta)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=63, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,332 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3887, uuid={7ACF674F-0405-4ce6-B1CE-9BE8345B3E1F}, since=null, name=phi, alias=, stereotype=enum, visibility=public, txtDescription='Phase angle', htmlDescription='

Phase angle

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=64, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,332 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3888, uuid={75FEC2A7-74A6-4b04-9BB4-A017C3B2071A}, since=null, name=cos(phi), alias=, stereotype=enum, visibility=public, txtDescription='Power factor', htmlDescription='

Power factor

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=65, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,332 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3889, uuid={3519D3DF-FC67-43df-89C4-EFC973A9E571}, since=null, name=Vs, alias=, stereotype=enum, visibility=public, txtDescription='Volt second (Ws/A)', htmlDescription='

Volt second (Ws/A)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=66, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,332 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3890, uuid={6078EDDB-89EB-4e87-A142-CEDD5B6533D5}, since=null, name=V², alias=, stereotype=enum, visibility=public, txtDescription='Volt squared (W2/A2)', htmlDescription='

Volt squared (W2/A2)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=67, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,333 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3891, uuid={6E134111-596F-42b2-9FD5-C3711E33BDED}, since=null, name=As, alias=, stereotype=enum, visibility=public, txtDescription='Amp second', htmlDescription='

Amp second

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=68, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,333 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3892, uuid={F793B57F-FA76-42d9-89A9-7629864E64B3}, since=null, name=A², alias=, stereotype=enum, visibility=public, txtDescription='Amp squared', htmlDescription='

Amp squared

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=69, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,333 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3893, uuid={EA1DDC8A-87AD-4a1f-B2B0-91751FF53837}, since=null, name=A²t, alias=, stereotype=enum, visibility=public, txtDescription='Amps squared time', htmlDescription='

Amps squared time

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=70, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,333 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3894, uuid={D9CEC63F-76E2-485d-B2F7-FFA81AA6BEBC}, since=null, name=VAh, alias=, stereotype=enum, visibility=public, txtDescription='Apparent energy', htmlDescription='

Apparent energy

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=71, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,333 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3895, uuid={44599BAF-291C-4166-9A77-42A3007271CF}, since=null, name=Wh, alias=, stereotype=enum, visibility=public, txtDescription='Real energy', htmlDescription='

Real energy

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=72, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,333 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3896, uuid={A59B8D3B-DA91-4657-9E91-B1ADA13FAAAC}, since=null, name=VArh, alias=, stereotype=enum, visibility=public, txtDescription='Reactive energy', htmlDescription='

Reactive energy

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=73, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,333 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3897, uuid={0480C7F4-2D9A-47e9-A2E1-2D8C32D2E9D3}, since=null, name=V/Hz, alias=, stereotype=enum, visibility=public, txtDescription='Magnetic flux', htmlDescription='

Magnetic flux

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=74, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,333 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3898, uuid={7F582058-C00F-4944-A3AC-5789A6E2E24F}, since=null, name=Hz/s, alias=, stereotype=enum, visibility=public, txtDescription='Rate of change of frequency', htmlDescription='

Rate of change of frequency

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=75, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,333 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3899, uuid={081C90EE-8E06-46f7-80F9-01C1B233EB91}, since=null, name=char, alias=, stereotype=enum, visibility=public, txtDescription='Number of characters', htmlDescription='

Number of characters

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=76, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,334 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3900, uuid={3EF944A7-7515-4e91-B70B-7A85D85F8ECA}, since=null, name=char/s, alias=, stereotype=enum, visibility=public, txtDescription='Baud', htmlDescription='

Baud

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=77, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,334 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3901, uuid={12C213D8-D6B9-4954-A3B5-3BA81731565F}, since=null, name=kgm², alias=, stereotype=enum, visibility=public, txtDescription='Turbine inertia', htmlDescription='

Turbine inertia

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=78, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,334 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3902, uuid={947D393B-8686-4ee9-AA29-7D4A01819DF4}, since=null, name=dB, alias=, stereotype=enum, visibility=public, txtDescription='Sound pressure level', htmlDescription='

Sound pressure level

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=79, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,334 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3903, uuid={335D464A-2497-4981-B2E3-950C7282AA6F}, since=null, name=J/Wh, alias=, stereotype=enum, visibility=public, txtDescription='Heat rate', htmlDescription='

Heat rate

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=80, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,334 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3904, uuid={7BEC4924-EF16-420c-A67D-5D76EABD7938}, since=null, name=W/s, alias=, stereotype=enum, visibility=public, txtDescription='Ramp rate', htmlDescription='

Ramp rate

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=81, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,334 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3905, uuid={3E349D70-4DD2-4990-8071-0063B88752B2}, since=null, name=l/s, alias=, stereotype=enum, visibility=public, txtDescription='Flow rate', htmlDescription='

Flow rate

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=82, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,334 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3906, uuid={7C5691F4-364C-4707-BFE6-CFBB055B1933}, since=null, name=dBm, alias=, stereotype=enum, visibility=public, txtDescription='Power level relative to 1 mW', htmlDescription='

Power level relative to 1 mW

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=83, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,335 [main] TRACE ClassBuilder - read from EA: DAEnums::SIUnitKind +2024-09-08 15:10:00,335 [main] TRACE ClassBuilder - Class MultiplierKind (2 in package DAEnums) +2024-09-08 15:10:00,335 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3813, uuid={F826384A-55D1-42d3-9E74-6989CEF256A9}, since=null, name=y, alias=, stereotype=enum, visibility=public, txtDescription='yocto (10-24)', htmlDescription='

yocto (10-24)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=-24, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,335 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3814, uuid={F856AB16-B194-4a54-A86D-ACE6DC6E65CF}, since=null, name=z, alias=, stereotype=enum, visibility=public, txtDescription='zepto (10-21)', htmlDescription='

zepto (10-21)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=-21, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,335 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3815, uuid={BDA0FA31-E452-4098-AB0D-720C1EF7B263}, since=null, name=a, alias=, stereotype=enum, visibility=public, txtDescription='atto (10-18)', htmlDescription='

atto (10-18)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=-18, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,335 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3816, uuid={11100351-8534-4376-BA83-4B47E5A0A126}, since=null, name=f, alias=, stereotype=enum, visibility=public, txtDescription='femto (10-15)', htmlDescription='

femto (10-15)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=-15, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,336 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3817, uuid={B6750A53-7A9C-4a07-ABEF-C1950A5939E0}, since=null, name=p, alias=, stereotype=enum, visibility=public, txtDescription='pico (10-12)', htmlDescription='

pico (10-12)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=-12, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,336 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3818, uuid={80AC5E72-B19E-4d7a-BD11-45DE37C82C16}, since=null, name=n, alias=, stereotype=enum, visibility=public, txtDescription='nano (10-9)', htmlDescription='

nano (10-9)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=-9, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,336 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3819, uuid={980F02A3-80C1-4d12-9648-7D6ABDC0053D}, since=null, name=µ, alias=, stereotype=enum, visibility=public, txtDescription='micro (10-6)', htmlDescription='

micro (10-6)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=-6, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,336 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3820, uuid={1592FEF4-6C1C-41f7-AB2F-F0075A85180D}, since=null, name=m, alias=, stereotype=enum, visibility=public, txtDescription='milli (10-3)', htmlDescription='

milli (10-3)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=-3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,336 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3821, uuid={44DBD5F4-440B-4693-A842-A7E414EE13CD}, since=null, name=c, alias=, stereotype=enum, visibility=public, txtDescription='centi (10-2)', htmlDescription='

centi (10-2)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=-2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,336 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3822, uuid={C1C66E19-BAB8-404e-83AC-B5AD8D1079DD}, since=null, name=d, alias=, stereotype=enum, visibility=public, txtDescription='deci (10-1)', htmlDescription='

deci (10-1)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=-1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,336 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3823, uuid={37848CD5-ABCF-4b0c-8316-436D2949DECE}, since=null, name=none, alias=, stereotype=enum, visibility=public, txtDescription='1 (100)', htmlDescription='

1 (100)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null, 1_taggedValues{scl:emptyValue=}] +2024-09-08 15:10:00,336 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3824, uuid={806BC64F-53C4-47bf-9D81-C23922A32759}, since=null, name=da, alias=, stereotype=enum, visibility=public, txtDescription='deca (101)', htmlDescription='

deca (101)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,337 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3825, uuid={DF66919F-34C9-413d-9499-D9D908F7D739}, since=null, name=h, alias=, stereotype=enum, visibility=public, txtDescription='hecto (102)', htmlDescription='

hecto (102)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,337 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3826, uuid={B23AC6F0-4362-4f51-9373-0584969C4027}, since=null, name=k, alias=, stereotype=enum, visibility=public, txtDescription='kilo (103)', htmlDescription='

kilo (103)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,337 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3827, uuid={A5852706-12D9-4192-BF05-94ED73EBB9CC}, since=null, name=M, alias=, stereotype=enum, visibility=public, txtDescription='mega (106)', htmlDescription='

mega (106)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=6, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,337 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3828, uuid={D2C2F3AF-A64A-4c08-B3EE-607EDAD828CC}, since=null, name=G, alias=, stereotype=enum, visibility=public, txtDescription='giga (109)', htmlDescription='

giga (109)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=9, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,337 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3829, uuid={806D1BFD-EC1C-4178-A2D4-BB165F3C9663}, since=null, name=T, alias=, stereotype=enum, visibility=public, txtDescription='tera (1012)', htmlDescription='

tera (1012)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=12, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,337 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3830, uuid={CDBB3281-D3CE-4053-B43B-D71C85737FFA}, since=null, name=P, alias=, stereotype=enum, visibility=public, txtDescription='petra (1015)', htmlDescription='

petra (1015)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=15, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,337 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3831, uuid={B5C0D72E-3CA0-46b4-BB7C-9454DD9BD091}, since=null, name=E, alias=, stereotype=enum, visibility=public, txtDescription='exa (1018)', htmlDescription='

exa (1018)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=18, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,337 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3832, uuid={FED6FE87-E395-4d6f-A8B0-DD5D59FB6BA3}, since=null, name=Z, alias=, stereotype=enum, visibility=public, txtDescription='zetta (1021)', htmlDescription='

zetta (1021)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=21, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,337 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3833, uuid={A2445C1D-0C0D-4ed6-983A-07A413E8E101}, since=null, name=Y, alias=, stereotype=enum, visibility=public, txtDescription='yotta (1024)', htmlDescription='

yotta (1024)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=24, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,338 [main] TRACE ClassBuilder - read from EA: DAEnums::MultiplierKind +2024-09-08 15:10:00,338 [main] TRACE ClassBuilder - Class PhaseFaultDirectionKind (3 in package DAEnums) +2024-09-08 15:10:00,338 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::PhaseFaultDirectionKind, _objData=UmlObjectData [id=3727, uuid={EA96AD4A-7F81-4faf-B172-CBD2E21DEC1E}, since=null, name=unknown, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,338 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::PhaseFaultDirectionKind, _objData=UmlObjectData [id=3728, uuid={EC44966A-7711-467b-A1E4-EF556315A60F}, since=null, name=forward, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,338 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::PhaseFaultDirectionKind, _objData=UmlObjectData [id=3729, uuid={6F661D14-B716-49d2-9CF5-C28EEA0F0880}, since=null, name=backward, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,338 [main] TRACE ClassBuilder - read from EA: DAEnums::PhaseFaultDirectionKind +2024-09-08 15:10:00,338 [main] TRACE ClassBuilder - Class PhaseAngleReferenceKind (4 in package DAEnums) +2024-09-08 15:10:00,339 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::PhaseAngleReferenceKind, _objData=UmlObjectData [id=3744, uuid={7A67A6EA-76C8-44db-BD19-900566F16BB1}, since=null, name=Va, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,339 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::PhaseAngleReferenceKind, _objData=UmlObjectData [id=3745, uuid={F5236EB4-23F5-4a14-A3A7-8F39E7837FB5}, since=null, name=Vb, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,339 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::PhaseAngleReferenceKind, _objData=UmlObjectData [id=3746, uuid={01D3B189-1334-47af-89D9-A708632D204B}, since=null, name=Vc, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,340 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::PhaseAngleReferenceKind, _objData=UmlObjectData [id=3747, uuid={8DF9CA9A-853B-411c-866B-883703C9769F}, since=null, name=Aa, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,340 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::PhaseAngleReferenceKind, _objData=UmlObjectData [id=3748, uuid={B78874F7-0651-4f51-89DE-8440EA1F00F8}, since=null, name=Ab, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,340 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::PhaseAngleReferenceKind, _objData=UmlObjectData [id=3749, uuid={E501A6FB-0BE3-4bee-AF95-447C1DA0BB8F}, since=null, name=Ac, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=5, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,340 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::PhaseAngleReferenceKind, _objData=UmlObjectData [id=3750, uuid={C0323DE2-E47A-4d41-BE14-6EBD7358E29F}, since=null, name=Vab, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=6, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,340 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::PhaseAngleReferenceKind, _objData=UmlObjectData [id=3751, uuid={D01AB035-9562-48cd-A622-AAF405D8F050}, since=null, name=Vbc, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=7, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,340 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::PhaseAngleReferenceKind, _objData=UmlObjectData [id=3752, uuid={8C1740DF-DB25-461a-809A-A416E19CA325}, since=null, name=Vca, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=8, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,340 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::PhaseAngleReferenceKind, _objData=UmlObjectData [id=3753, uuid={21136935-359E-4178-BC13-03C11742DC27}, since=null, name=Vother, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=9, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,340 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::PhaseAngleReferenceKind, _objData=UmlObjectData [id=3754, uuid={CA201514-B2C2-4dab-B0D5-239188B4D640}, since=null, name=Aother, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=10, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,340 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::PhaseAngleReferenceKind, _objData=UmlObjectData [id=3755, uuid={85D43CCE-3CEB-4d00-BCDF-52BCE7FF33A0}, since=null, name=Synchrophasor, alias=, stereotype=enum, visibility=public, txtDescription='Reference of the angle is as defined in 4.2 of IEEE C37.118.', htmlDescription='

Reference of the angle is as defined in 4.2 of IEEE C37.118.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=11, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,341 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2214, uuid={19AF449A-8D04-40ed-80BC-D379DB38BF66}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=PhaseAngleReferenceKind, _otherEndName=?] +2024-09-08 15:10:00,341 [main] TRACE ClassBuilder - read from EA: DAEnums::PhaseAngleReferenceKind +2024-09-08 15:10:00,341 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_3, _depth=2, _eaElementID=2012, _objData=UmlObjectData [id=115, uuid={BA5F048C-51D9-4dc8-A0E9-617F4174CCE6}, since=null, name=DAEnums, alias=Enumerated data attribute types, stereotype=, visibility=public, txtDescription='This subclause contains explicit definition of enumerated types used in IEC 61850-7-3; some of them are also used in IEC 61850-7-4.', htmlDescription='

This subclause contains explicit definition of enumerated types used in IEC 61850-7-3; some of them are also used in IEC 61850-7-4.

'], _modelId=58, _selfDependent=false, 4_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2015, uuid={D1139F92-EB4A-4746-A43B-E28AB69E55E4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling notes 1: +- Within the definitions of both Common Data Attribute Types (section 6) and Common Data Classes (section 7) in IEC 61850-7-3, when the type of attribute is ENUMERATED or CODED_ENUM, the possible values are given, but the type is not defined (i.e., no name is given). Then, in section 8 (Data attribute semantics), the values are repeated per attribute, again without name for the type. Only 'SboClass' and 'CtlModel' have been explicitly defined among all enumerations. We define concrete types for all of those, as enumerations. +- Enumeration literal strings are literally copy-pasted from IEC 61850-7-3 (so they correspond to definitions in SCL2.0), except for CurveChar, SIUnit and Multiplier, whose literal strings are directly copied from SCL2.0. +Modelling notes 2: +- In SCL, EnumType-s are not XML enumerations (i.e., they are not defined as types that restrict string), but rather have an id attribute that mainly refers to the name of attribute that has those literals as possible value range - but not always! (see orCategory, used for orCat attribute). +- SCL defines one element (EnumType) per attribute of CDC/DA, so there are in some cases two EnumType-s with exactly same literals, but different id. +- At present, we store that id attribute in the EA tagged value of enumeration (class). In cases there is repetition, this string will be a comma-separated list of SCL id-s. +- The order of types in the diagrams and in the EA project browser is the one as in Ed.2 Annex H, to be able to compare the original with this model.', htmlDescription='

Modelling notes 1:

  • Within the definitions of both Common Data Attribute Types (section 6) and Common Data Classes (section 7) in IEC 61850-7-3, when the type of attribute is ENUMERATED or CODED_ENUM, the possible values are given, but the type is not defined (i.e., no name is given). Then, in section 8 (Data attribute semantics), the values are repeated per attribute, again without name for the type. Only 'SboClass' and 'CtlModel' have been explicitly defined among all enumerations. We define concrete types for all of those, as enumerations.
  • Enumeration literal strings are literally copy-pasted from IEC 61850-7-3 (so they correspond to definitions in SCL2.0), except for CurveChar, SIUnit and Multiplier, whose literal strings are directly copied from SCL2.0.

Modelling notes 2:

  • In SCL, EnumType-s are not XML enumerations (i.e., they are not defined as types that restrict string), but rather have an id attribute that mainly refers to the name of attribute that has those literals as possible value range - but not always! (see orCategory, used for orCat attribute).
  • SCL defines one element (EnumType) per attribute of CDC/DA, so there are in some cases two EnumType-s with exactly same literals, but different id.
  • At present, we store that id attribute in the EA tagged value of enumeration (class). In cases there is repetition, this string will be a comma-separated list of SCL id-s.
  • The order of types in the diagrams and in the EA project browser is the one as in Ed.2 Annex H, to be able to compare the original with this model.
'], _containingPackage=DAEnums, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2016, uuid={A05F1A3E-4A44-4cba-89B2-22FD97F14AF9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='- SCL defines two EnumType-s (id=hvRef and id=hvid) with exactly same values; 'hvid' is useless (there is no such attribute). +- Confirmed: Definition here is OK (Baden WS, with TD & WW).', htmlDescription='
  • SCL defines two EnumType-s (id=hvRef and id=hvid) with exactly same values; 'hvid' is useless (there is no such attribute).
  • Confirmed: Definition here is OK (Baden WS, with TD & WW).
'], _containingPackage=DAEnums, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2021, uuid={6BE98B3D-9F27-4d95-9E1C-FD9B624525BC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='SCL defines two EnumType-s (id=angRef and id=angid) with exactly same values; 'angid' is useless (there is no such attribute). +SCL also defines a third EnumType (id=angidCMV) with only 4 values. It does not seem to be used as defined nowhere. Is it that CMV.angRef should be using only these values? If so, the spec in 7-3 is wrong, because it enumerates all values like in id=angRef. +- Confirmed: 7-3 is wrong for CMV.angRef - define type with 5 values only (Baden WS, with TD & WW).', htmlDescription='

SCL defines two EnumType-s (id=angRef and id=angid) with exactly same values; 'angid' is useless (there is no such attribute).

SCL also defines a third EnumType (id=angidCMV) with only 4 values. It does not seem to be used as defined nowhere. Is it that CMV.angRef should be using only these values? If so, the spec in 7-3 is wrong, because it enumerates all values like in id=angRef.

  • Confirmed: 7-3 is wrong for CMV.angRef - define type with 5 values only (Baden WS, with TD & WW).
'], _containingPackage=DAEnums, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2022, uuid={5A11F146-E3D4-4bab-8BA6-82AD6CB57804}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='- SCL defines two EnumType-s (id=phsRef and id=phsid) with exactly same values; 'phsid' is useless (there is no such attribute). +- Confirmed: Definition here is OK (Baden WS, with TD & WW).', htmlDescription='
  • SCL defines two EnumType-s (id=phsRef and id=phsid) with exactly same values; 'phsid' is useless (there is no such attribute).
  • Confirmed: Definition here is OK (Baden WS, with TD & WW).
'], _containingPackage=DAEnums, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=DAEnums, _objData=UmlObjectData [id=229, uuid={22E1DAA3-405F-4df7-8882-EEBD5D0DA11B}, since=null, name=DAEnums-1, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the first part of explicit enumerated types defined in 61850-7-3.', htmlDescription='

This diagram shows the first part of explicit enumerated types defined in 61850-7-3.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsTarget=2, _classes=4 +2024-09-08 15:10:00,341 [main] INFO PackageBuilder - processing package ImplicitDAs (3) ... +2024-09-08 15:10:00,341 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=ImplicitDAs, _objData=UmlObjectData [id=231, uuid={20749D5F-87AE-475f-ABB6-7C52B08B808F}, since=null, name=ImplicitDAs, alias=, stereotype=, visibility=public, txtDescription='Shows all enumerated data attributes used for composed data attributes (beige) and common data classes (pink).', htmlDescription='

Shows all enumerated data attributes used for composed data attributes (beige) and common data classes (pink).

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,341 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_3::ImplicitDAs, _objData=UmlObjectData [id=2945, uuid={FA78D59B-10C4-462d-BB8D-AF291F0DB4BC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,342 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_3::ImplicitDAs, _objData=UmlObjectData [id=3062, uuid={4D544FA6-8E09-4013-A7BF-26D3FD028926}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,342 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_3::ImplicitDAs->IEC61850_7_3::DAEnums, _objData=UmlObjectData [id=3082, uuid={9E3DBD1A-4941-4c00-A64C-0B9D8112CFF9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,342 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2050, uuid={FD4E3B51-E3C1-4d2a-B91C-EA10EAD0F309}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling notes: +- DpStatus (double-point status) and BsControlKind (binary-controlled step) are in BasicDAs (part 7-2), and their coded enums in CoreTypes (part 7-2).', htmlDescription='

Modelling notes:

  • DpStatus (double-point status) and BsControlKind (binary-controlled step) are in BasicDAs (part 7-2), and their coded enums in CoreTypes (part 7-2).
'], _containingPackage=ImplicitDAs, _otherEndName=] +2024-09-08 15:10:00,342 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2073, uuid={7DBFCC58-6812-4b7a-99E7-8EB6CAA23B98}, since=null, name=DAEnums :DAEnums-2, alias=, stereotype=, visibility=public, txtDescription='DAEnums : DAEnums-2', htmlDescription='

DAEnums : DAEnums-2

'], _containingPackage=ImplicitDAs, _otherEndName=] +2024-09-08 15:10:00,342 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2074, uuid={CA5A2AEE-A355-4a54-B231-8F8A8E1AD807}, since=null, name=DAEnums :DAEnums-1, alias=, stereotype=, visibility=public, txtDescription='DAEnums : DAEnums-1', htmlDescription='

DAEnums : DAEnums-1

'], _containingPackage=ImplicitDAs, _otherEndName=] +2024-09-08 15:10:00,342 [main] TRACE ClassBuilder - Class SIUnit (1 in package ImplicitDAs) +2024-09-08 15:10:00,342 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ImplicitDAs::SIUnit, _objData=UmlObjectData [id=4088, uuid={04E61BC5-2DEF-41ba-AF8F-3A302F4A6063}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2045, _eaTypeName=SIUnitKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,343 [main] DEBUG ClassBuilder - Adding SIUnit as subclass of EnumDA +2024-09-08 15:10:00,343 [main] TRACE ClassBuilder - read from EA: ImplicitDAs::SIUnit +2024-09-08 15:10:00,343 [main] TRACE ClassBuilder - Class Multiplier (2 in package ImplicitDAs) +2024-09-08 15:10:00,343 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ImplicitDAs::Multiplier, _objData=UmlObjectData [id=4077, uuid={D9A6C35F-4CCF-4f73-83E5-5F4AD6A1400F}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2044, _eaTypeName=MultiplierKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,343 [main] DEBUG ClassBuilder - Adding Multiplier as subclass of EnumDA +2024-09-08 15:10:00,343 [main] TRACE ClassBuilder - read from EA: ImplicitDAs::Multiplier +2024-09-08 15:10:00,344 [main] TRACE ClassBuilder - Class PhaseFaultDirection (3 in package ImplicitDAs) +2024-09-08 15:10:00,344 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ImplicitDAs::PhaseFaultDirection, _objData=UmlObjectData [id=4082, uuid={686FDE41-9545-4055-876E-D830A36C9D9B}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2035, _eaTypeName=PhaseFaultDirectionKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,344 [main] DEBUG ClassBuilder - Adding PhaseFaultDirection as subclass of EnumDA +2024-09-08 15:10:00,344 [main] TRACE ClassBuilder - read from EA: ImplicitDAs::PhaseFaultDirection +2024-09-08 15:10:00,344 [main] TRACE ClassBuilder - Class PhaseAngleReference (4 in package ImplicitDAs) +2024-09-08 15:10:00,345 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ImplicitDAs::PhaseAngleReference, _objData=UmlObjectData [id=4081, uuid={C147EDDB-E173-43f3-A14E-937A40EA0619}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2039, _eaTypeName=PhaseAngleReferenceKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,345 [main] DEBUG ClassBuilder - Adding PhaseAngleReference as subclass of EnumDA +2024-09-08 15:10:00,345 [main] TRACE ClassBuilder - read from EA: ImplicitDAs::PhaseAngleReference +2024-09-08 15:10:00,345 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_3, _depth=2, _eaElementID=2049, _objData=UmlObjectData [id=116, uuid={D5AC8C44-FA9C-471c-8531-3431C335B69D}, since=null, name=ImplicitDAs, alias=, stereotype=, visibility=public, txtDescription='This package contains enumerated data attributes (EnumDA) used for composed data attributes and common data classes. Not explicitly defined in the standard.', htmlDescription='

This package contains enumerated data attributes (EnumDA) used for composed data attributes and common data classes. Not explicitly defined in the standard.

'], _modelId=58, _selfDependent=false, 3_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2050, uuid={FD4E3B51-E3C1-4d2a-B91C-EA10EAD0F309}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling notes: +- DpStatus (double-point status) and BsControlKind (binary-controlled step) are in BasicDAs (part 7-2), and their coded enums in CoreTypes (part 7-2).', htmlDescription='

Modelling notes:

  • DpStatus (double-point status) and BsControlKind (binary-controlled step) are in BasicDAs (part 7-2), and their coded enums in CoreTypes (part 7-2).
'], _containingPackage=ImplicitDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2073, uuid={7DBFCC58-6812-4b7a-99E7-8EB6CAA23B98}, since=null, name=DAEnums :DAEnums-2, alias=, stereotype=, visibility=public, txtDescription='DAEnums : DAEnums-2', htmlDescription='

DAEnums : DAEnums-2

'], _containingPackage=ImplicitDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2074, uuid={CA5A2AEE-A355-4a54-B231-8F8A8E1AD807}, since=null, name=DAEnums :DAEnums-1, alias=, stereotype=, visibility=public, txtDescription='DAEnums : DAEnums-1', htmlDescription='

DAEnums : DAEnums-1

'], _containingPackage=ImplicitDAs, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=ImplicitDAs, _objData=UmlObjectData [id=231, uuid={20749D5F-87AE-475f-ABB6-7C52B08B808F}, since=null, name=ImplicitDAs, alias=, stereotype=, visibility=public, txtDescription='Shows all enumerated data attributes used for composed data attributes (beige) and common data classes (pink).', htmlDescription='

Shows all enumerated data attributes used for composed data attributes (beige) and common data classes (pink).

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=1, _dependenciesAsTarget=2, _classes=4 +2024-09-08 15:10:00,345 [main] INFO PackageBuilder - processing package ConstructedDAs (4) ... +2024-09-08 15:10:00,346 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=ConstructedDAs, _objData=UmlObjectData [id=233, uuid={464DD3CC-A65D-4fac-94C9-4A99ECC02510}, since=null, name=ConstructedDAs, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all constructed attribute classes with their meta-model superclasses.', htmlDescription='

This diagram shows all constructed attribute classes with their meta-model superclasses.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,346 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_3::ConstructedDAs, _objData=UmlObjectData [id=2946, uuid={C39E7C1F-3EFB-476b-8296-6ED38A067033}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,346 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_3::ConstructedDAs->IEC61850_7_2::MetaModel, _objData=UmlObjectData [id=3061, uuid={56397421-AB0D-4458-80FC-5FB07F2DD3F2}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,346 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_3::ConstructedDAs->IEC61850_7_3::ImplicitDAs, _objData=UmlObjectData [id=3062, uuid={4D544FA6-8E09-4013-A7BF-26D3FD028926}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,346 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_3::ConstructedDAs->IEC61850_7_2::BasicDAs, _objData=UmlObjectData [id=3063, uuid={3A733EFE-40F7-4e54-BAA6-405269B1FDDC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,346 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_3::ConstructedDAs->IEC61850_7_2::CoreTypes, _objData=UmlObjectData [id=3064, uuid={108535CE-A6F8-4674-9586-860C06077B0A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,347 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2077, uuid={A2DB359E-D081-478e-8841-E4D73D4EE769}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- Complete the statechart Quality.validity.', htmlDescription='

TODO:

  • Complete the statechart Quality.validity.
'], _containingPackage=ConstructedDAs, _otherEndName=] +2024-09-08 15:10:00,347 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2078, uuid={2589FB5D-7AE6-4890-B8A2-4F3261625EAE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: finish transitions +- (see oscillatory): questionable -> invalid +- questionable -> good +- invalid -> good +Somehow: When operator sets 'blkEna' in a CDC to true (or when automatic function freezes communications), the server should set Quality.detailQual.oldData to true.', htmlDescription='

TODO: finish transitions

  • (see oscillatory): questionable -> invalid
  • questionable -> good
  • invalid -> good

Somehow: When operator sets 'blkEna' in a CDC to true (or when automatic function freezes communications), the server should set Quality.detailQual.oldData to true.

'], _containingPackage=ConstructedDAs, _otherEndName=] +2024-09-08 15:10:00,347 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2102, uuid={048EE573-AFDD-4dd7-9AF5-11D2B0EC5B46}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='rangeC range validity detailQual +high-high questionable outOfRange +max +high-high good +hhLim +high good +hLim +normal good +lLim +low good +llLim +low-low good +min +low-low questionable outOfRange', htmlDescription='

rangeC range validity detailQual

high-high questionable outOfRange

max

high-high good

hhLim

high good

hLim

normal good

lLim

low good

llLim

low-low good

min

low-low questionable outOfRange

'], _containingPackage=ConstructedDAs, _otherEndName=] +2024-09-08 15:10:00,347 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2104, uuid={33A3CF9B-3587-46f7-ABE2-EC231CA8A590}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='[ server decides is invalid ]', htmlDescription='

[ server decides is invalid ]

'], _containingPackage=ConstructedDAs, _otherEndName=] +2024-09-08 15:10:00,347 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2105, uuid={4BC921B0-EB32-46bb-B58C-BABA12FB3919}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='[ server decides is questionable ]', htmlDescription='

[ server decides is questionable ]

'], _containingPackage=ConstructedDAs, _otherEndName=] +2024-09-08 15:10:00,347 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2106, uuid={59D32E9F-0F12-4294-8C09-111E6652D60B}, since=null, name=ConstructedDAs : Quality.validity, alias=, stereotype=, visibility=public, txtDescription='ConstructedDAs : Quality.validity', htmlDescription='

ConstructedDAs : Quality.validity

'], _containingPackage=ConstructedDAs, _otherEndName=] +2024-09-08 15:10:00,348 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2107, uuid={5CCAFF50-1F52-4703-A048-CF8E0D90B88F}, since=null, name=ConstructedDAs :Range configuration, alias=, stereotype=, visibility=public, txtDescription='ConstructedDAs : Range configuration', htmlDescription='

ConstructedDAs : Range configuration

'], _containingPackage=ConstructedDAs, _otherEndName=] +2024-09-08 15:10:00,348 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2108, uuid={7F553FDB-F3EA-473e-823B-CAEB77B786F5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=ConstructedDAs, _otherEndName=] +2024-09-08 15:10:00,348 [main] TRACE ClassBuilder - Class Quality (1 in package ConstructedDAs) +2024-09-08 15:10:00,348 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [, _containingClass=Quality, _objData=UmlObjectData [id=232, uuid={21B55DC7-E4EF-4080-AB01-30D0901B9429}, since=null, name=Quality.validity, alias=, stereotype=, visibility=public, txtDescription='This diagram shows how validity depends on detailQual. The state names parallel enumeration literals of ValidityKind.', htmlDescription='

This diagram shows how validity depends on detailQual. The state names parallel enumeration literals of ValidityKind.

'], _portrait=true, _kind=STATECHART] +2024-09-08 15:10:00,348 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=STATE_MACHINE, _isConnector=false, _objData=UmlObjectData [id=2081, uuid={CE37CFF6-FD41-4c3b-92FC-95B5B9B6346E}, since=null, name=validityStateMachine, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=Quality, _otherEndName=] +2024-09-08 15:10:00,348 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::Quality, _objData=UmlObjectData [id=4089, uuid={6B873BB6-307E-4f25-9992-6EB6CF12F6ED}, since=null, name=validity, alias=, stereotype=, visibility=public, txtDescription='Validity of the value, as condensed information for the client. In case this value is not 'good', the reasons may be found in the 'detailQual'. See statechart diagram 'Quality.validity'.', htmlDescription='

Validity of the value, as condensed information for the client. In case this value is not 'good', the reasons may be found in the 'detailQual'. See statechart diagram 'Quality.validity'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2086, _eaTypeName=ValidityKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,348 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::Quality, _objData=UmlObjectData [id=4090, uuid={F9945558-C141-4c08-8066-C29D603832D6}, since=null, name=detailQual, alias=, stereotype=, visibility=public, txtDescription='Describes reason in case 'validity' is not 'good'. See statechart diagram 'Quality.validity'.', htmlDescription='

Describes reason in case 'validity' is not 'good'. See statechart diagram 'Quality.validity'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2087, _eaTypeName=DetailQual, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,349 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::Quality, _objData=UmlObjectData [id=4091, uuid={5A199508-269E-4da4-9486-1CFDD6D76F69}, since=null, name=source, alias=, stereotype=, visibility=public, txtDescription='Defines the source of a value. +NOTE 1 Substitution may be done locally or via the communication services. In the second case, specific attributes with a FC=SV are used. +NOTE 2 There are various means to clear a substitution. As an example, a substitution that was done following an invalid condition may be cleared automatically if the invalid condition is cleared. However, this is a local issue and therefore not within the scope of this standard.', htmlDescription='

Defines the source of a value.

NOTE 1 Substitution may be done locally or via the communication services. In the second case, specific attributes with a FC=SV are used.

NOTE 2 There are various means to clear a substitution. As an example, a substitution that was done following an invalid condition may be cleared automatically if the invalid condition is cleared. However, this is a local issue and therefore not within the scope of this standard.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=process, _eaTypeId=2088, _eaTypeName=SourceKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,349 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::Quality, _objData=UmlObjectData [id=4092, uuid={AAF0A359-5525-42e5-AC60-220D2A34F946}, since=null, name=test, alias=, stereotype=, visibility=public, txtDescription='If true, the value is a test value and not to be used for operational purposes. The processing of the test quality in the client shall be as described in IEC 61850-7-4. This bit shall be completely independent from the other bits within the quality descriptor.', htmlDescription='

If true, the value is a test value and not to be used for operational purposes. The processing of the test quality in the client shall be as described in IEC 61850-7-4. This bit shall be completely independent from the other bits within the quality descriptor.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,349 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::Quality, _objData=UmlObjectData [id=4093, uuid={3CD5913A-B2E1-43bd-ABC3-943477516A2E}, since=null, name=operatorBlocked, alias=, stereotype=, visibility=public, txtDescription='If true, further update of the value has been blocked by an operator. The value shall be the information that was acquired before blocking. If this flag is set, then the 'detailQual.oldData' shall also be set. +The operator shall use the data attribute 'CDC.blkEna' to block the update of the value. +NOTE Both an operator as well as an automatic function may freeze communication updating as well as input updating. In both cases, 'detailQual.oldData' will be set. If the blocking is done by an operator, then this flag is set additionally, and an operator activity is required to clear the condition. +EXAMPLE An operator may freeze the update of an input, to save the old value before the auxiliary supply is switched off.', htmlDescription='

If true, further update of the value has been blocked by an operator. The value shall be the information that was acquired before blocking. If this flag is set, then the 'detailQual.oldData' shall also be set.

The operator shall use the data attribute 'CDC.blkEna' to block the update of the value.

NOTE Both an operator as well as an automatic function may freeze communication updating as well as input updating. In both cases, 'detailQual.oldData' will be set. If the blocking is done by an operator, then this flag is set additionally, and an operator activity is required to clear the condition.

EXAMPLE An operator may freeze the update of an input, to save the old value before the auxiliary supply is switched off.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,349 [main] DEBUG ClassBuilder - Adding Quality as subclass of PackedPrimitiveDA +2024-09-08 15:10:00,349 [main] TRACE ClassBuilder - read from EA: ConstructedDAs::Quality +2024-09-08 15:10:00,350 [main] TRACE ClassBuilder - Class ValidityKind (2 in package ConstructedDAs) +2024-09-08 15:10:00,350 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::ValidityKind, _objData=UmlObjectData [id=4094, uuid={030DE06F-529B-41d7-9127-03B3AEF8FE6F}, since=null, name=good, alias=, stereotype=enum, visibility=public, txtDescription='Supervision function has detected no abnormal condition of either the acquisition function or the information source.', htmlDescription='

Supervision function has detected no abnormal condition of either the acquisition function or the information source.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,350 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::ValidityKind, _objData=UmlObjectData [id=4095, uuid={BF716691-116B-41c2-A6DF-135F1A6CA348}, since=null, name=invalid, alias=, stereotype=enum, visibility=public, txtDescription='Supervision function has detected an abnormal condition of the acquisition function or the information source (missing or non-operating updating devices). The value shall not be defined under this condition. It shall be used to indicate to the client that the value may be incorrect and shall not be used. +EXAMPLE If an input unit detects an oscillation of one input it will mark the related information as invalid.', htmlDescription='

Supervision function has detected an abnormal condition of the acquisition function or the information source (missing or non-operating updating devices). The value shall not be defined under this condition. It shall be used to indicate to the client that the value may be incorrect and shall not be used.

EXAMPLE If an input unit detects an oscillation of one input it will mark the related information as invalid.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,350 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::ValidityKind, _objData=UmlObjectData [id=4096, uuid={2CF37216-7413-46f8-B44A-6FEADC4F0F74}, since=null, name=reserved, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,350 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::ValidityKind, _objData=UmlObjectData [id=4097, uuid={EFB07102-7C09-497e-8013-6656894679E1}, since=null, name=questionable, alias=, stereotype=enum, visibility=public, txtDescription='Supervision function has detected any abnormal behaviour. However, the value could still be valid. It is client's responsibility to determine whether the values should be used.', htmlDescription='

Supervision function has detected any abnormal behaviour. However, the value could still be valid. It is client's responsibility to determine whether the values should be used.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,351 [main] TRACE ClassBuilder - read from EA: ConstructedDAs::ValidityKind +2024-09-08 15:10:00,351 [main] TRACE ClassBuilder - Class DetailQual (3 in package ConstructedDAs) +2024-09-08 15:10:00,351 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4098, uuid={F718393A-BF8D-43d5-838D-8E98DDBD0E12}, since=null, name=overflow, alias=, stereotype=, visibility=public, txtDescription='If true, the value of the attribute to which the quality has been associated is beyond the capability of being represented properly (used for measurand information only). +EXAMPLE A measured value may exceed the range that may be represented by the selected data type, for example the data type is a 16-bit unsigned integer and the value exceeds 65 535.', htmlDescription='

If true, the value of the attribute to which the quality has been associated is beyond the capability of being represented properly (used for measurand information only).

EXAMPLE A measured value may exceed the range that may be represented by the selected data type, for example the data type is a 16-bit unsigned integer and the value exceeds 65 535.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,351 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4099, uuid={59AA133B-4EF6-45b2-8F72-65890F8CB3B3}, since=null, name=outOfRange, alias=, stereotype=, visibility=public, txtDescription='If true, the attribute to which the quality has been associated is beyond a predefined range of values. The server shall decide if validity shall be set to invalid or questionable (used for measurand information only). +EXAMPLE A measured value may exceed a predefined range, however the selected data type can still represent the value, for example the data type is a 16-bit unsigned integer, the predefined range is 0 to 40 000, if the value is between 40 001 and 65 535 it is considered to be out of range.', htmlDescription='

If true, the attribute to which the quality has been associated is beyond a predefined range of values. The server shall decide if validity shall be set to invalid or questionable (used for measurand information only).

EXAMPLE A measured value may exceed a predefined range, however the selected data type can still represent the value, for example the data type is a 16-bit unsigned integer, the predefined range is 0 to 40 000, if the value is between 40 001 and 65 535 it is considered to be out of range.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,351 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4100, uuid={11996C00-CB4B-4a28-8EE7-BEF71773138F}, since=null, name=badReference, alias=, stereotype=, visibility=public, txtDescription='If true, the value may not be a correct value due to a reference being out of calibration. The server shall decide if validity shall be set to invalid or questionable (used for measurand information and binary counter information only).', htmlDescription='

If true, the value may not be a correct value due to a reference being out of calibration. The server shall decide if validity shall be set to invalid or questionable (used for measurand information and binary counter information only).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,351 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4101, uuid={8BDDF6AD-167F-4b25-B87B-675BA127832A}, since=null, name=oscillatory, alias=, stereotype=, visibility=public, txtDescription='To prevent overloading of event driven communication channels, it is desirable to detect and suppress oscillating (fast changing) binary inputs. If a signal changes in a defined time (tosc) twice in the same direction (from 0 to 1 or from 1 to 0), then it shall be defined as an oscillation and this attribute shall be set to true. If a configured number of transient changes is detected, they shall be suppressed. In this time, the 'Quality.validity' shall be set to 'questionable'. If the signal is still in the oscillating state after the defined number of changes, the value shall be left in the state it was in when this flag was set. In this case, the 'Quality.validity' shall be changed from 'questionable' to 'invalid' and kept so as long as the signal is oscillating. +If the configuration is such that all transient changes should be suppressed, the 'Quality.validity' shall be set immediately to 'invalid' and this flag to true (used for status information only).', htmlDescription='

To prevent overloading of event driven communication channels, it is desirable to detect and suppress oscillating (fast changing) binary inputs. If a signal changes in a defined time (tosc) twice in the same direction (from 0 to 1 or from 1 to 0), then it shall be defined as an oscillation and this attribute shall be set to true. If a configured number of transient changes is detected, they shall be suppressed. In this time, the 'Quality.validity' shall be set to 'questionable'. If the signal is still in the oscillating state after the defined number of changes, the value shall be left in the state it was in when this flag was set. In this case, the 'Quality.validity' shall be changed from 'questionable' to 'invalid' and kept so as long as the signal is oscillating.

If the configuration is such that all transient changes should be suppressed, the 'Quality.validity' shall be set immediately to 'invalid' and this flag to true (used for status information only).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,352 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4102, uuid={3B8BF4EE-E8EF-4aff-A496-55A1F7D43008}, since=null, name=failure, alias=, stereotype=, visibility=public, txtDescription='If true, a supervision function has detected an internal or external failure.', htmlDescription='

If true, a supervision function has detected an internal or external failure.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,353 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4103, uuid={818F9F91-476A-49f8-86B4-58D7E97343BD}, since=null, name=oldData, alias=, stereotype=, visibility=public, txtDescription='If true, an update is not made during a specific time interval. The value may be an old value that may have changed in the meantime. This specific time interval may be defined by an allowed-age attribute. +NOTE "Fail silent" errors, where the equipment stops sending data, will cause setting this flag to true. In this case, the last received information was correct.', htmlDescription='

If true, an update is not made during a specific time interval. The value may be an old value that may have changed in the meantime. This specific time interval may be defined by an allowed-age attribute.

NOTE "Fail silent" errors, where the equipment stops sending data, will cause setting this flag to true. In this case, the last received information was correct.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,353 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4104, uuid={BD955C3B-2E26-40fa-ADBC-F1FD970D24FF}, since=null, name=inconsistent, alias=, stereotype=, visibility=public, txtDescription='If true, an evaluation function has detected an inconsistency.', htmlDescription='

If true, an evaluation function has detected an inconsistency.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,354 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4105, uuid={8936AB8B-A0A9-4132-817E-D2B7C850E919}, since=null, name=inaccurate, alias=, stereotype=, visibility=public, txtDescription='If true, the value does not meet the stated accuracy of the source. +EXAMPLE The measured value of power factor may be noisy (inaccurate) when the current is very small.', htmlDescription='

If true, the value does not meet the stated accuracy of the source.

EXAMPLE The measured value of power factor may be noisy (inaccurate) when the current is very small.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,354 [main] TRACE ClassBuilder - read from EA: ConstructedDAs::DetailQual +2024-09-08 15:10:00,354 [main] TRACE ClassBuilder - Class SourceKind (4 in package ConstructedDAs) +2024-09-08 15:10:00,354 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::SourceKind, _objData=UmlObjectData [id=4106, uuid={E89E2DD9-CE54-483c-AB72-C94BD9BAA4B4}, since=null, name=process, alias=, stereotype=enum, visibility=public, txtDescription='The value is provided by an input function from the process I/O or is calculated from some application function.', htmlDescription='

The value is provided by an input function from the process I/O or is calculated from some application function.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,354 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::SourceKind, _objData=UmlObjectData [id=4107, uuid={964EA014-4393-43b8-9C10-DDADF714D6C3}, since=null, name=substituted, alias=, stereotype=enum, visibility=public, txtDescription='The value is provided by an operator input or by an automatic source.', htmlDescription='

The value is provided by an operator input or by an automatic source.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,354 [main] TRACE ClassBuilder - read from EA: ConstructedDAs::SourceKind +2024-09-08 15:10:00,355 [main] TRACE ClassBuilder - Class AnalogueValue (5 in package ConstructedDAs) +2024-09-08 15:10:00,355 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::AnalogueValue, _objData=UmlObjectData [id=4108, uuid={22DBDBF4-0BD6-4ae9-83E7-28C1B98CD72A}, since=null, name=i, alias=, stereotype=, visibility=public, txtDescription='Integer representation of the measured value. The formula to convert between 'i' and the process value (pVal) shall be: pVal=('i'*'ScaledValueConfig.scaleFactor')+'ScaledValueConfig.offset'.', htmlDescription='

Integer representation of the measured value. The formula to convert between 'i' and the process value (pVal) shall be: pVal=('i'*'ScaledValueConfig.scaleFactor')+'ScaledValueConfig.offset'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1745, _eaTypeName=INT32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,355 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::AnalogueValue, _objData=UmlObjectData [id=4109, uuid={B5A81241-061A-410d-8E63-9847A2F26D4D}, since=null, name=f, alias=, stereotype=, visibility=public, txtDescription='Floating point representation of the measured value. The formula to convert between 'f' and the process value (pVal) shall be: pVal='f'*10'Unit.multiplier'.', htmlDescription='

Floating point representation of the measured value. The formula to convert between 'f' and the process value (pVal) shall be: pVal='f'*10'Unit.multiplier'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1741, _eaTypeName=FLOAT32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,355 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2152, uuid={0F0E174C-0CD4-499c-A6CF-A9F87D68899D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=AnalogueValue, _otherEndName=?] +2024-09-08 15:10:00,355 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2158, uuid={53CF3599-2538-412f-94D6-1B312A04978B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=AnalogueValue, _otherEndName=?] +2024-09-08 15:10:00,355 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2169, uuid={6BB80DFD-60FA-4bd1-8AC0-70CFB9AC73AF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=AnalogueValue, _otherEndName=?] +2024-09-08 15:10:00,355 [main] DEBUG ClassBuilder - Adding AnalogueValue as subclass of ComposedDA +2024-09-08 15:10:00,355 [main] TRACE ClassBuilder - read from EA: ConstructedDAs::AnalogueValue +2024-09-08 15:10:00,355 [main] TRACE ClassBuilder - Class RangeConfig (6 in package ConstructedDAs) +2024-09-08 15:10:00,355 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [, _containingClass=RangeConfig, _objData=UmlObjectData [id=235, uuid={6CB79C53-CB9F-4de4-804C-04A77C5B22A9}, since=null, name=Range configuration, alias=, stereotype=, visibility=public, txtDescription='This diagram illustrates relationships between range, range configuration and quality of measured process value.', htmlDescription='

This diagram illustrates relationships between range, range configuration and quality of measured process value.

'], _portrait=true, _kind=CUSTOM] +2024-09-08 15:10:00,355 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::RangeConfig, _objData=UmlObjectData [id=4112, uuid={2BFD6A66-6A28-44b9-BD6A-9BFF5FEEF286}, since=null, name=hhLim, alias=, stereotype=, visibility=public, txtDescription='Setting for 'CDC.range' transition between 'high' and 'high-high'.', htmlDescription='

Setting for 'CDC.range' transition between 'high' and 'high-high'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,356 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::RangeConfig, _objData=UmlObjectData [id=4113, uuid={8FE22512-90C7-4798-9E7E-7595B41EA770}, since=null, name=hLim, alias=, stereotype=, visibility=public, txtDescription='Setting for 'CDC.range' transition between 'normal' and 'high'.', htmlDescription='

Setting for 'CDC.range' transition between 'normal' and 'high'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,356 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::RangeConfig, _objData=UmlObjectData [id=4114, uuid={E4180E64-6824-4aa0-8D9F-A32F749903E0}, since=null, name=lLim, alias=, stereotype=, visibility=public, txtDescription='Setting for 'CDC.range' transition between 'normal' and 'low'.', htmlDescription='

Setting for 'CDC.range' transition between 'normal' and 'low'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,356 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::RangeConfig, _objData=UmlObjectData [id=4115, uuid={A928E883-FC18-4c21-8227-53F8B3A89A08}, since=null, name=llLim, alias=, stereotype=, visibility=public, txtDescription='Setting for 'CDC.range' transition between 'low' and 'low-low'.', htmlDescription='

Setting for 'CDC.range' transition between 'low' and 'low-low'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,356 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::RangeConfig, _objData=UmlObjectData [id=4116, uuid={FDC77E3A-4EF4-4ace-93FD-7CC6C14FB3D0}, since=null, name=min, alias=, stereotype=, visibility=public, txtDescription='The minimum process measurement for which 'AnalogueValue.[i,f]' is considered within process limits. If the value is lower, quality shall be set accordingly ('Quality.detailQual.outOfRange'=true => 'Quality.validity'='questionable'; see statechart diagram 'Quality.validity').', htmlDescription='

The minimum process measurement for which 'AnalogueValue.[i,f]' is considered within process limits. If the value is lower, quality shall be set accordingly ('Quality.detailQual.outOfRange'=true => 'Quality.validity'='questionable'; see statechart diagram 'Quality.validity').

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,356 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::RangeConfig, _objData=UmlObjectData [id=4117, uuid={470D1B89-7BB1-4e75-BEAE-A838976EFA5A}, since=null, name=max, alias=, stereotype=, visibility=public, txtDescription='The maximum process measurement for which 'AnalogueValue.[i,f]' is considered within process limits. If the value is higher, quality shall be set accordingly ('Quality.detailQual.outOfRange'=true => 'Quality.validity'='questionable'; see statechart diagram 'Quality.validity').', htmlDescription='

The maximum process measurement for which 'AnalogueValue.[i,f]' is considered within process limits. If the value is higher, quality shall be set accordingly ('Quality.detailQual.outOfRange'=true => 'Quality.validity'='questionable'; see statechart diagram 'Quality.validity').

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,356 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::RangeConfig, _objData=UmlObjectData [id=4118, uuid={EE10B700-EDF1-4e03-B234-D881D49750CC}, since=null, name=limDb, alias=, stereotype=, visibility=public, txtDescription='When present, the value used to introduce a hysteresis in the calculation of 'range'. When a high/low limit has been crossed, 'range' is immediately set to the higher/lower value. However, 'range' is only set back to the lower/higher value when the value of the high limit minus/low limit plut 'limDb' has been crossed. The value shall represent the percentage between 'max' and 'min' in units of 0.001 %.', htmlDescription='

When present, the value used to introduce a hysteresis in the calculation of 'range'. When a high/low limit has been crossed, 'range' is immediately set to the higher/lower value. However, 'range' is only set back to the lower/higher value when the value of the high limit minus/low limit plut 'limDb' has been crossed. The value shall represent the percentage between 'max' and 'min' in units of 0.001 %.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0...100000, _eaTypeId=1746, _eaTypeName=INT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,357 [main] DEBUG ClassBuilder - Adding RangeConfig as subclass of ComposedDA +2024-09-08 15:10:00,357 [main] TRACE ClassBuilder - read from EA: ConstructedDAs::RangeConfig +2024-09-08 15:10:00,357 [main] TRACE ClassBuilder - Class Unit (7 in package ConstructedDAs) +2024-09-08 15:10:00,357 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::Unit, _objData=UmlObjectData [id=4127, uuid={E11B7BFF-E809-4175-9618-B2A63F15871E}, since=null, name=SIUnit, alias=, stereotype=, visibility=public, txtDescription='SI unit of measure.', htmlDescription='

SI unit of measure.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2072, _eaTypeName=SIUnit, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,357 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::Unit, _objData=UmlObjectData [id=4128, uuid={0327BF79-19B2-4e38-AD4E-6944E32735D3}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='Unit multiplier.', htmlDescription='

Unit multiplier.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=none, _eaTypeId=2061, _eaTypeName=Multiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,357 [main] DEBUG ClassBuilder - Adding Unit as subclass of ComposedDA +2024-09-08 15:10:00,357 [main] TRACE ClassBuilder - read from EA: ConstructedDAs::Unit +2024-09-08 15:10:00,357 [main] TRACE ClassBuilder - Class Point (8 in package ConstructedDAs) +2024-09-08 15:10:00,357 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::Point, _objData=UmlObjectData [id=4131, uuid={FE6F09B0-454A-4c96-8FDD-76F86A4128A3}, since=null, name=xVal, alias=, stereotype=, visibility=public, txtDescription='X-axis value.', htmlDescription='

X-axis value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1741, _eaTypeName=FLOAT32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,357 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::Point, _objData=UmlObjectData [id=4132, uuid={77130ABC-BB1E-4259-96F0-AF62EF68F9CB}, since=null, name=yVal, alias=, stereotype=, visibility=public, txtDescription='Y-axis value.', htmlDescription='

Y-axis value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1741, _eaTypeName=FLOAT32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,357 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::Point, _objData=UmlObjectData [id=4133, uuid={1A9EA6E0-B105-4386-8B25-4F2F99670EE0}, since=null, name=zVal, alias=, stereotype=, visibility=public, txtDescription='Z-axis value.', htmlDescription='

Z-axis value.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1741, _eaTypeName=FLOAT32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,358 [main] DEBUG ClassBuilder - Adding Point as subclass of ComposedDA +2024-09-08 15:10:00,358 [main] TRACE ClassBuilder - read from EA: ConstructedDAs::Point +2024-09-08 15:10:00,358 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_3, _depth=2, _eaElementID=2075, _objData=UmlObjectData [id=117, uuid={49A06BEB-3924-4b2c-A29E-A5E992AFE35F}, since=null, name=ConstructedDAs, alias=Constructed attribute classes, stereotype=, visibility=public, txtDescription='Constructed attribute classes are defined for the use in common data classes (CDC) in Clause 7. +IEC 61850-7-1 provides an overview of all IEC 61850-7 documents (IEC 61850-7-2, IEC 61850-7-3, and IEC 61850-7-4). IEC 61850-7-1 also describes the basic notation used in IEC 61850-7-3 and the description of the relations between the IEC 61850-7 documents. +NOTE The common ACSI type 'TimeStamp' is specified in IEC 61850-7-2.', htmlDescription='

Constructed attribute classes are defined for the use in common data classes (CDC) in Clause 7.

IEC 61850-7-1 provides an overview of all IEC 61850-7 documents (IEC 61850-7-2, IEC 61850-7-3, and IEC 61850-7-4). IEC 61850-7-1 also describes the basic notation used in IEC 61850-7-3 and the description of the relations between the IEC 61850-7 documents.

NOTE The common ACSI type 'TimeStamp' is specified in IEC 61850-7-2.

'], _modelId=58, _selfDependent=false, 8_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2077, uuid={A2DB359E-D081-478e-8841-E4D73D4EE769}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- Complete the statechart Quality.validity.', htmlDescription='

TODO:

  • Complete the statechart Quality.validity.
'], _containingPackage=ConstructedDAs, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2078, uuid={2589FB5D-7AE6-4890-B8A2-4F3261625EAE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: finish transitions +- (see oscillatory): questionable -> invalid +- questionable -> good +- invalid -> good +Somehow: When operator sets 'blkEna' in a CDC to true (or when automatic function freezes communications), the server should set Quality.detailQual.oldData to true.', htmlDescription='

TODO: finish transitions

  • (see oscillatory): questionable -> invalid
  • questionable -> good
  • invalid -> good

Somehow: When operator sets 'blkEna' in a CDC to true (or when automatic function freezes communications), the server should set Quality.detailQual.oldData to true.

'], _containingPackage=ConstructedDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2102, uuid={048EE573-AFDD-4dd7-9AF5-11D2B0EC5B46}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='rangeC range validity detailQual +high-high questionable outOfRange +max +high-high good +hhLim +high good +hLim +normal good +lLim +low good +llLim +low-low good +min +low-low questionable outOfRange', htmlDescription='

rangeC range validity detailQual

high-high questionable outOfRange

max

high-high good

hhLim

high good

hLim

normal good

lLim

low good

llLim

low-low good

min

low-low questionable outOfRange

'], _containingPackage=ConstructedDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2104, uuid={33A3CF9B-3587-46f7-ABE2-EC231CA8A590}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='[ server decides is invalid ]', htmlDescription='

[ server decides is invalid ]

'], _containingPackage=ConstructedDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2105, uuid={4BC921B0-EB32-46bb-B58C-BABA12FB3919}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='[ server decides is questionable ]', htmlDescription='

[ server decides is questionable ]

'], _containingPackage=ConstructedDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2106, uuid={59D32E9F-0F12-4294-8C09-111E6652D60B}, since=null, name=ConstructedDAs : Quality.validity, alias=, stereotype=, visibility=public, txtDescription='ConstructedDAs : Quality.validity', htmlDescription='

ConstructedDAs : Quality.validity

'], _containingPackage=ConstructedDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2107, uuid={5CCAFF50-1F52-4703-A048-CF8E0D90B88F}, since=null, name=ConstructedDAs :Range configuration, alias=, stereotype=, visibility=public, txtDescription='ConstructedDAs : Range configuration', htmlDescription='

ConstructedDAs : Range configuration

'], _containingPackage=ConstructedDAs, _otherEndName=], SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2108, uuid={7F553FDB-F3EA-473e-823B-CAEB77B786F5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=ConstructedDAs, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=ConstructedDAs, _objData=UmlObjectData [id=233, uuid={464DD3CC-A65D-4fac-94C9-4A99ECC02510}, since=null, name=ConstructedDAs, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all constructed attribute classes with their meta-model superclasses.', htmlDescription='

This diagram shows all constructed attribute classes with their meta-model superclasses.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=4, _dependenciesAsTarget=1, _classes=8 +2024-09-08 15:10:00,358 [main] INFO PackageBuilder - processing package FCDAs (5) ... +2024-09-08 15:10:00,358 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=FCDAs, _objData=UmlObjectData [id=238, uuid={B97F330A-F926-4f40-9E70-74A8D9B4C7CD}, since=null, name=FCDAs, alias=, stereotype=, visibility=public, txtDescription='Shows meta-model types for functionally constrained DAs, and links to diagrams that group them per category (for easier model maintenance purposes only).', htmlDescription='

Shows meta-model types for functionally constrained DAs, and links to diagrams that group them per category (for easier model maintenance purposes only).

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,359 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_3::FCDAs, _objData=UmlObjectData [id=2941, uuid={B3EA1C0F-AF13-4b91-9725-55E231C1F103}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,359 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_3::FCDAs->IEC61850_7_3::ImplicitDAs, _objData=UmlObjectData [id=2945, uuid={FA78D59B-10C4-462d-BB8D-AF291F0DB4BC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,359 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_3::FCDAs->IEC61850_7_3::ConstructedDAs, _objData=UmlObjectData [id=2946, uuid={C39E7C1F-3EFB-476b-8296-6ED38A067033}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,359 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_3::FCDAs->IEC61850_7_2::BasicDAs, _objData=UmlObjectData [id=2947, uuid={34CA4A5E-1E27-47e9-BA6A-04938395F510}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,359 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_3::FCDAs->IEC61850_7_2::MetaModel, _objData=UmlObjectData [id=2948, uuid={2EB94D27-B372-4888-A920-88C823F08BBD}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,360 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2225, uuid={38462576-628F-455c-A4E1-CF71CEC5C013}, since=null, name=IEC61850 : DataModelExample, alias=, stereotype=, visibility=public, txtDescription='IEC61850 : DataModelExample', htmlDescription='

IEC61850 : DataModelExample

'], _containingPackage=FCDAs, _otherEndName=] +2024-09-08 15:10:00,360 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2226, uuid={6EB11409-AD95-49fc-9606-5F1D6C4F3CE4}, since=null, name=FCDAs :FCDAs-ST-OR, alias=, stereotype=, visibility=public, txtDescription='FCDAs : FCDAs-ST-OR', htmlDescription='

FCDAs : FCDAs-ST-OR

'], _containingPackage=FCDAs, _otherEndName=] +2024-09-08 15:10:00,360 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2227, uuid={8CFF212D-D163-4ed6-92FE-7CC414DB287E}, since=null, name=FCDAs :FCDAs-SV-BL, alias=, stereotype=, visibility=public, txtDescription='FCDAs : FCDAs-SV-BL', htmlDescription='

FCDAs : FCDAs-SV-BL

'], _containingPackage=FCDAs, _otherEndName=] +2024-09-08 15:10:00,361 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2228, uuid={AA244A47-7DD9-4915-9F09-4A0EC38AD1BB}, since=null, name=FCDAs :FCDAs-SP-SG-SE, alias=, stereotype=, visibility=public, txtDescription='FCDAs : FCDAs-SP-SG-SE', htmlDescription='

FCDAs : FCDAs-SP-SG-SE

'], _containingPackage=FCDAs, _otherEndName=] +2024-09-08 15:10:00,361 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2229, uuid={DE18AEAE-AFC9-40b0-B744-CD47FB2D193C}, since=null, name=FCDAs :FCDAs-MX, alias=, stereotype=, visibility=public, txtDescription='FCDAs : FCDAs-MX', htmlDescription='

FCDAs : FCDAs-MX

'], _containingPackage=FCDAs, _otherEndName=] +2024-09-08 15:10:00,361 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2230, uuid={F38238A8-E1FB-4d0d-8A6B-D9C28216CAB3}, since=null, name=FCDAs :FCDAs-CF-DC-EX, alias=, stereotype=, visibility=public, txtDescription='FCDAs : FCDAs-CF-DC-EX', htmlDescription='

FCDAs : FCDAs-CF-DC-EX

'], _containingPackage=FCDAs, _otherEndName=] +2024-09-08 15:10:00,361 [main] TRACE ClassBuilder - Class AnalogueValue_MX (3 in package FCDAs) +2024-09-08 15:10:00,361 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::AnalogueValue_MX, _objData=UmlObjectData [id=4148, uuid={FDD0542C-EDDF-4b7f-AF56-B928F6DD6505}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,361 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2159, uuid={F1E56107-55BC-4b64-8D96-C9D3A4FE1F57}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=AnalogueValue_MX, _otherEndName=?] +2024-09-08 15:10:00,362 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2171, uuid={310E7E62-BA83-4479-AC06-B8B54758BAFF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=AnalogueValue_MX, _otherEndName=?] +2024-09-08 15:10:00,362 [main] DEBUG ClassBuilder - Adding AnalogueValue_MX as subclass of FCDA_MX +2024-09-08 15:10:00,362 [main] TRACE ClassBuilder - read from EA: FCDAs::AnalogueValue_MX +2024-09-08 15:10:00,362 [main] TRACE ClassBuilder - Class AnalogueValue_MX_dchg (4 in package FCDAs) +2024-09-08 15:10:00,362 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::AnalogueValue_MX_dchg, _objData=UmlObjectData [id=4149, uuid={F527B9F4-F3F6-495e-820C-D82F97FAABF8}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,362 [main] DEBUG ClassBuilder - Adding AnalogueValue_MX_dchg as subclass of FCDA_MX_dchg +2024-09-08 15:10:00,362 [main] TRACE ClassBuilder - read from EA: FCDAs::AnalogueValue_MX_dchg +2024-09-08 15:10:00,363 [main] TRACE ClassBuilder - Class AnalogueValue_MX_dchg_dupd (5 in package FCDAs) +2024-09-08 15:10:00,363 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::AnalogueValue_MX_dchg_dupd, _objData=UmlObjectData [id=4150, uuid={35CFD056-5391-4884-AB18-91299F6FCBFB}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,363 [main] DEBUG ClassBuilder - Adding AnalogueValue_MX_dchg_dupd as subclass of FCDA_MX_dchg_dupd +2024-09-08 15:10:00,363 [main] TRACE ClassBuilder - read from EA: FCDAs::AnalogueValue_MX_dchg_dupd +2024-09-08 15:10:00,363 [main] TRACE ClassBuilder - Class BOOLEAN_BL (10 in package FCDAs) +2024-09-08 15:10:00,363 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::BOOLEAN_BL, _objData=UmlObjectData [id=4155, uuid={3695DD4C-AE46-467e-862D-F6B7D2805EE9}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,363 [main] DEBUG ClassBuilder - Adding BOOLEAN_BL as subclass of FCDA_BL +2024-09-08 15:10:00,363 [main] TRACE ClassBuilder - read from EA: FCDAs::BOOLEAN_BL +2024-09-08 15:10:00,363 [main] TRACE ClassBuilder - Class BOOLEAN_CF_dchg (11 in package FCDAs) +2024-09-08 15:10:00,363 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::BOOLEAN_CF_dchg, _objData=UmlObjectData [id=4156, uuid={D005BFC1-C9FF-4904-9176-3E49D541A4CE}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,363 [main] DEBUG ClassBuilder - Adding BOOLEAN_CF_dchg as subclass of FCDA_CF_dchg +2024-09-08 15:10:00,363 [main] TRACE ClassBuilder - read from EA: FCDAs::BOOLEAN_CF_dchg +2024-09-08 15:10:00,363 [main] TRACE ClassBuilder - Class BOOLEAN_MX_dchg (12 in package FCDAs) +2024-09-08 15:10:00,363 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::BOOLEAN_MX_dchg, _objData=UmlObjectData [id=4157, uuid={C48BB5A5-75F6-482b-B673-C2130F3A3343}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,364 [main] DEBUG ClassBuilder - Adding BOOLEAN_MX_dchg as subclass of FCDA_MX_dchg +2024-09-08 15:10:00,364 [main] TRACE ClassBuilder - read from EA: FCDAs::BOOLEAN_MX_dchg +2024-09-08 15:10:00,364 [main] TRACE ClassBuilder - Class BOOLEAN_OR_dchg (13 in package FCDAs) +2024-09-08 15:10:00,364 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::BOOLEAN_OR_dchg, _objData=UmlObjectData [id=4158, uuid={E52B552D-B1AD-48ee-8F84-581743CA0034}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,364 [main] DEBUG ClassBuilder - Adding BOOLEAN_OR_dchg as subclass of FCDA_OR_dchg +2024-09-08 15:10:00,364 [main] TRACE ClassBuilder - read from EA: FCDAs::BOOLEAN_OR_dchg +2024-09-08 15:10:00,364 [main] TRACE ClassBuilder - Class BOOLEAN_SE (14 in package FCDAs) +2024-09-08 15:10:00,364 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::BOOLEAN_SE, _objData=UmlObjectData [id=4159, uuid={EA1C486D-C490-4b0e-B0F8-803E519E584A}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,365 [main] DEBUG ClassBuilder - Adding BOOLEAN_SE as subclass of FCDA_SE +2024-09-08 15:10:00,365 [main] TRACE ClassBuilder - read from EA: FCDAs::BOOLEAN_SE +2024-09-08 15:10:00,365 [main] TRACE ClassBuilder - Class BOOLEAN_SG (15 in package FCDAs) +2024-09-08 15:10:00,365 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::BOOLEAN_SG, _objData=UmlObjectData [id=4160, uuid={F978D268-CA2C-4ff8-B7CD-CDD03C517BAE}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,365 [main] DEBUG ClassBuilder - Adding BOOLEAN_SG as subclass of FCDA_SG +2024-09-08 15:10:00,365 [main] TRACE ClassBuilder - read from EA: FCDAs::BOOLEAN_SG +2024-09-08 15:10:00,365 [main] TRACE ClassBuilder - Class BOOLEAN_SP_dchg (16 in package FCDAs) +2024-09-08 15:10:00,365 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::BOOLEAN_SP_dchg, _objData=UmlObjectData [id=4161, uuid={8DEC3BB4-1BED-4961-B836-457537D9227E}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,365 [main] DEBUG ClassBuilder - Adding BOOLEAN_SP_dchg as subclass of FCDA_SP_dchg +2024-09-08 15:10:00,365 [main] TRACE ClassBuilder - read from EA: FCDAs::BOOLEAN_SP_dchg +2024-09-08 15:10:00,365 [main] TRACE ClassBuilder - Class BOOLEAN_ST_dchg (17 in package FCDAs) +2024-09-08 15:10:00,365 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::BOOLEAN_ST_dchg, _objData=UmlObjectData [id=4162, uuid={7480B397-4199-4840-B073-D855605E4C7A}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,366 [main] DEBUG ClassBuilder - Adding BOOLEAN_ST_dchg as subclass of FCDA_ST_dchg +2024-09-08 15:10:00,366 [main] TRACE ClassBuilder - read from EA: FCDAs::BOOLEAN_ST_dchg +2024-09-08 15:10:00,366 [main] TRACE ClassBuilder - Class BOOLEAN_SV (18 in package FCDAs) +2024-09-08 15:10:00,366 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::BOOLEAN_SV, _objData=UmlObjectData [id=4163, uuid={13C32585-2DE2-4dad-8F00-5BDC2660E5D8}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,366 [main] DEBUG ClassBuilder - Adding BOOLEAN_SV as subclass of FCDA_SV +2024-09-08 15:10:00,366 [main] TRACE ClassBuilder - read from EA: FCDAs::BOOLEAN_SV +2024-09-08 15:10:00,366 [main] TRACE ClassBuilder - Class DpStatus_ST_dchg (30 in package FCDAs) +2024-09-08 15:10:00,366 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::DpStatus_ST_dchg, _objData=UmlObjectData [id=4175, uuid={6669EA33-E870-48c7-9A70-675DF65FCDE1}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1759, _eaTypeName=DpStatus, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,366 [main] DEBUG ClassBuilder - Adding DpStatus_ST_dchg as subclass of PackedEnumFCDA_SP_dchg +2024-09-08 15:10:00,366 [main] TRACE ClassBuilder - read from EA: FCDAs::DpStatus_ST_dchg +2024-09-08 15:10:00,366 [main] TRACE ClassBuilder - Class DpStatus_SV (31 in package FCDAs) +2024-09-08 15:10:00,366 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::DpStatus_SV, _objData=UmlObjectData [id=4176, uuid={0F2878FA-ABC8-4aab-91D7-41F3D0B45817}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1759, _eaTypeName=DpStatus, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,367 [main] DEBUG ClassBuilder - Adding DpStatus_SV as subclass of PackedEnumFCDA_SV +2024-09-08 15:10:00,367 [main] TRACE ClassBuilder - read from EA: FCDAs::DpStatus_SV +2024-09-08 15:10:00,367 [main] TRACE ClassBuilder - Class EnumDA_CF_dchg (32 in package FCDAs) +2024-09-08 15:10:00,367 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::EnumDA_CF_dchg, _objData=UmlObjectData [id=4177, uuid={AB3915C1-C27C-48ea-B3F9-A9FDE30FAEB0}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1855, _eaTypeName=EnumDA, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,367 [main] DEBUG ClassBuilder - Adding EnumDA_CF_dchg as subclass of EnumFCDA_CF_dchg +2024-09-08 15:10:00,367 [main] TRACE ClassBuilder - read from EA: FCDAs::EnumDA_CF_dchg +2024-09-08 15:10:00,367 [main] TRACE ClassBuilder - Class EnumDA_ST_dchg (38 in package FCDAs) +2024-09-08 15:10:00,367 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::EnumDA_ST_dchg, _objData=UmlObjectData [id=4181, uuid={FDBA0552-772A-4e56-B666-9B4EADE4572B}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1855, _eaTypeName=EnumDA, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,367 [main] DEBUG ClassBuilder - Adding EnumDA_ST_dchg as subclass of EnumFCDA_ST_dchg +2024-09-08 15:10:00,367 [main] TRACE ClassBuilder - read from EA: FCDAs::EnumDA_ST_dchg +2024-09-08 15:10:00,367 [main] TRACE ClassBuilder - Class EnumDA_ST_dchg_dupd (39 in package FCDAs) +2024-09-08 15:10:00,367 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::EnumDA_ST_dchg_dupd, _objData=UmlObjectData [id=4182, uuid={A26C4B75-BDBC-47d7-8F84-1AEB40536B37}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1855, _eaTypeName=EnumDA, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,368 [main] DEBUG ClassBuilder - Adding EnumDA_ST_dchg_dupd as subclass of EnumFCDA_ST_dchg_dupd +2024-09-08 15:10:00,368 [main] TRACE ClassBuilder - read from EA: FCDAs::EnumDA_ST_dchg_dupd +2024-09-08 15:10:00,368 [main] TRACE ClassBuilder - Class EnumDA_SV (40 in package FCDAs) +2024-09-08 15:10:00,368 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::EnumDA_SV, _objData=UmlObjectData [id=4183, uuid={85FBD660-4ECF-4fe6-A3CB-7CE93AD92682}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1855, _eaTypeName=EnumDA, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,368 [main] DEBUG ClassBuilder - Adding EnumDA_SV as subclass of EnumFCDA_SV +2024-09-08 15:10:00,368 [main] TRACE ClassBuilder - read from EA: FCDAs::EnumDA_SV +2024-09-08 15:10:00,368 [main] TRACE ClassBuilder - Class INT16U_CF (49 in package FCDAs) +2024-09-08 15:10:00,368 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::INT16U_CF, _objData=UmlObjectData [id=4192, uuid={D557D453-45C5-4562-97A4-DF8E6C3ABE03}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1743, _eaTypeName=INT16U, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,368 [main] DEBUG ClassBuilder - Adding INT16U_CF as subclass of FCDA_CF +2024-09-08 15:10:00,368 [main] TRACE ClassBuilder - read from EA: FCDAs::INT16U_CF +2024-09-08 15:10:00,368 [main] TRACE ClassBuilder - Class INT16U_CF_dchg (50 in package FCDAs) +2024-09-08 15:10:00,368 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::INT16U_CF_dchg, _objData=UmlObjectData [id=4193, uuid={CF5B7211-78ED-4a54-943A-4C6076784FAA}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1743, _eaTypeName=INT16U, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,368 [main] DEBUG ClassBuilder - Adding INT16U_CF_dchg as subclass of FCDA_CF_dchg +2024-09-08 15:10:00,368 [main] TRACE ClassBuilder - read from EA: FCDAs::INT16U_CF_dchg +2024-09-08 15:10:00,368 [main] TRACE ClassBuilder - Class INT32U_CF_dchg (55 in package FCDAs) +2024-09-08 15:10:00,368 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::INT32U_CF_dchg, _objData=UmlObjectData [id=4198, uuid={B6014F46-BB76-4b26-B95B-414DEBFE5627}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1746, _eaTypeName=INT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,370 [main] DEBUG ClassBuilder - Adding INT32U_CF_dchg as subclass of FCDA_CF_dchg +2024-09-08 15:10:00,370 [main] TRACE ClassBuilder - read from EA: FCDAs::INT32U_CF_dchg +2024-09-08 15:10:00,370 [main] TRACE ClassBuilder - Class INT32_CF_dchg (57 in package FCDAs) +2024-09-08 15:10:00,370 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::INT32_CF_dchg, _objData=UmlObjectData [id=4200, uuid={7A8322EF-35B6-45e2-B29B-24495242697D}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1745, _eaTypeName=INT32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,370 [main] DEBUG ClassBuilder - Adding INT32_CF_dchg as subclass of FCDA_CF_dchg +2024-09-08 15:10:00,370 [main] TRACE ClassBuilder - read from EA: FCDAs::INT32_CF_dchg +2024-09-08 15:10:00,371 [main] TRACE ClassBuilder - Class INT32_ST_dchg (61 in package FCDAs) +2024-09-08 15:10:00,371 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::INT32_ST_dchg, _objData=UmlObjectData [id=4204, uuid={BD683E05-ABAE-402d-B588-081B1F3BA2FB}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1745, _eaTypeName=INT32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,371 [main] DEBUG ClassBuilder - Adding INT32_ST_dchg as subclass of FCDA_ST_dchg +2024-09-08 15:10:00,371 [main] TRACE ClassBuilder - read from EA: FCDAs::INT32_ST_dchg +2024-09-08 15:10:00,371 [main] TRACE ClassBuilder - Class INT32_ST_dchg_dupd (62 in package FCDAs) +2024-09-08 15:10:00,371 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::INT32_ST_dchg_dupd, _objData=UmlObjectData [id=4205, uuid={84EA5D4B-9E4B-4a73-A3A5-9E8D42A60F3C}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1745, _eaTypeName=INT32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,371 [main] DEBUG ClassBuilder - Adding INT32_ST_dchg_dupd as subclass of FCDA_ST_dchg_dupd +2024-09-08 15:10:00,371 [main] TRACE ClassBuilder - read from EA: FCDAs::INT32_ST_dchg_dupd +2024-09-08 15:10:00,371 [main] TRACE ClassBuilder - Class PhaseAngleReference_CF_dchg (73 in package FCDAs) +2024-09-08 15:10:00,371 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::PhaseAngleReference_CF_dchg, _objData=UmlObjectData [id=4216, uuid={7B9C230D-AF50-4613-AFD8-CA5D41088526}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2065, _eaTypeName=PhaseAngleReference, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,371 [main] DEBUG ClassBuilder - Adding PhaseAngleReference_CF_dchg as subclass of EnumFCDA_CF_dchg +2024-09-08 15:10:00,371 [main] TRACE ClassBuilder - read from EA: FCDAs::PhaseAngleReference_CF_dchg +2024-09-08 15:10:00,371 [main] TRACE ClassBuilder - Class PhaseFaultDirection_ST_dchg (74 in package FCDAs) +2024-09-08 15:10:00,371 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::PhaseFaultDirection_ST_dchg, _objData=UmlObjectData [id=4217, uuid={FEA43715-0A9A-4812-A093-3FAD2A6B464D}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2066, _eaTypeName=PhaseFaultDirection, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,371 [main] DEBUG ClassBuilder - Adding PhaseFaultDirection_ST_dchg as subclass of EnumFCDA_ST_dchg +2024-09-08 15:10:00,371 [main] TRACE ClassBuilder - read from EA: FCDAs::PhaseFaultDirection_ST_dchg +2024-09-08 15:10:00,372 [main] TRACE ClassBuilder - Class Point_DC (76 in package FCDAs) +2024-09-08 15:10:00,372 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::Point_DC, _objData=UmlObjectData [id=4219, uuid={EFCD6ECB-36A0-4997-82B8-301C6C666369}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2098, _eaTypeName=Point, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,372 [main] DEBUG ClassBuilder - Adding Point_DC as subclass of FCDA_DC +2024-09-08 15:10:00,372 [main] TRACE ClassBuilder - read from EA: FCDAs::Point_DC +2024-09-08 15:10:00,372 [main] TRACE ClassBuilder - Class Point_SE (77 in package FCDAs) +2024-09-08 15:10:00,372 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::Point_SE, _objData=UmlObjectData [id=4220, uuid={C756E7B6-1F5F-4ead-B882-CE7EDB83001D}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2098, _eaTypeName=Point, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,372 [main] DEBUG ClassBuilder - Adding Point_SE as subclass of FCDA_SE +2024-09-08 15:10:00,372 [main] TRACE ClassBuilder - read from EA: FCDAs::Point_SE +2024-09-08 15:10:00,372 [main] TRACE ClassBuilder - Class Point_SG (78 in package FCDAs) +2024-09-08 15:10:00,372 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::Point_SG, _objData=UmlObjectData [id=4221, uuid={871B23C7-8CF2-43a0-A9FE-4627CB0BFA2D}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2098, _eaTypeName=Point, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,372 [main] DEBUG ClassBuilder - Adding Point_SG as subclass of FCDA_SG +2024-09-08 15:10:00,372 [main] TRACE ClassBuilder - read from EA: FCDAs::Point_SG +2024-09-08 15:10:00,372 [main] TRACE ClassBuilder - Class Point_SP (79 in package FCDAs) +2024-09-08 15:10:00,372 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::Point_SP, _objData=UmlObjectData [id=4222, uuid={A9FC2C2B-E6E7-4210-80D8-B786506D9BCF}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2098, _eaTypeName=Point, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,373 [main] DEBUG ClassBuilder - Adding Point_SP as subclass of FCDA_SP +2024-09-08 15:10:00,373 [main] TRACE ClassBuilder - read from EA: FCDAs::Point_SP +2024-09-08 15:10:00,373 [main] TRACE ClassBuilder - Class Quality_MX_qchg (81 in package FCDAs) +2024-09-08 15:10:00,373 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::Quality_MX_qchg, _objData=UmlObjectData [id=4224, uuid={909716F1-245A-42ae-9D75-E906E4300337}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2080, _eaTypeName=Quality, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,373 [main] DEBUG ClassBuilder - Adding Quality_MX_qchg as subclass of FCDA_MX_qchg +2024-09-08 15:10:00,373 [main] TRACE ClassBuilder - read from EA: FCDAs::Quality_MX_qchg +2024-09-08 15:10:00,373 [main] TRACE ClassBuilder - Class Quality_ST_qchg (82 in package FCDAs) +2024-09-08 15:10:00,373 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::Quality_ST_qchg, _objData=UmlObjectData [id=4225, uuid={63B2543A-C5CB-4e42-AE3C-D89A5D6092F8}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2080, _eaTypeName=Quality, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,373 [main] DEBUG ClassBuilder - Adding Quality_ST_qchg as subclass of FCDA_ST_qchg +2024-09-08 15:10:00,373 [main] TRACE ClassBuilder - read from EA: FCDAs::Quality_ST_qchg +2024-09-08 15:10:00,373 [main] TRACE ClassBuilder - Class Quality_SV (83 in package FCDAs) +2024-09-08 15:10:00,373 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::Quality_SV, _objData=UmlObjectData [id=4226, uuid={25019ADF-C815-49c4-A33A-932B7EC41FD5}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2080, _eaTypeName=Quality, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,374 [main] DEBUG ClassBuilder - Adding Quality_SV as subclass of FCDA_SV +2024-09-08 15:10:00,374 [main] TRACE ClassBuilder - read from EA: FCDAs::Quality_SV +2024-09-08 15:10:00,374 [main] TRACE ClassBuilder - Class RangeConfig_CF_dchg (84 in package FCDAs) +2024-09-08 15:10:00,374 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::RangeConfig_CF_dchg, _objData=UmlObjectData [id=4227, uuid={7DC0C70D-A279-420a-A4C9-8EC142118EE0}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2091, _eaTypeName=RangeConfig, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,374 [main] DEBUG ClassBuilder - Adding RangeConfig_CF_dchg as subclass of FCDA_CF_dchg +2024-09-08 15:10:00,374 [main] TRACE ClassBuilder - read from EA: FCDAs::RangeConfig_CF_dchg +2024-09-08 15:10:00,374 [main] TRACE ClassBuilder - Class TimeStamp_ST (96 in package FCDAs) +2024-09-08 15:10:00,374 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::TimeStamp_ST, _objData=UmlObjectData [id=4239, uuid={F793BE16-86C2-4d94-9076-25682F5C5800}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1756, _eaTypeName=TimeStamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,374 [main] DEBUG ClassBuilder - Adding TimeStamp_ST as subclass of FCDA_ST +2024-09-08 15:10:00,374 [main] TRACE ClassBuilder - read from EA: FCDAs::TimeStamp_ST +2024-09-08 15:10:00,374 [main] TRACE ClassBuilder - Class UNICODE_STRING255_DC (97 in package FCDAs) +2024-09-08 15:10:00,374 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::UNICODE_STRING255_DC, _objData=UmlObjectData [id=4240, uuid={6753F868-EDDC-4b85-BB22-F0505BC5964F}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1751, _eaTypeName=UNICODE_STRING255, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,374 [main] DEBUG ClassBuilder - Adding UNICODE_STRING255_DC as subclass of FCDA_DC +2024-09-08 15:10:00,374 [main] TRACE ClassBuilder - read from EA: FCDAs::UNICODE_STRING255_DC +2024-09-08 15:10:00,374 [main] TRACE ClassBuilder - Class VISIBLE_STRING255_EX (107 in package FCDAs) +2024-09-08 15:10:00,374 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::VISIBLE_STRING255_EX, _objData=UmlObjectData [id=4250, uuid={27C9FF27-9CA7-4829-BDDC-00EC8B17AA1F}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1752, _eaTypeName=VISIBLE_STRING255, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,375 [main] DEBUG ClassBuilder - Adding VISIBLE_STRING255_EX as subclass of FCDA_EX +2024-09-08 15:10:00,375 [main] TRACE ClassBuilder - read from EA: FCDAs::VISIBLE_STRING255_EX +2024-09-08 15:10:00,375 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_3, _depth=2, _eaElementID=2112, _objData=UmlObjectData [id=118, uuid={D3FD84BB-3702-4f8a-896F-5CA8D1A0B5DB}, since=null, name=FCDAs, alias=Functionally constrained data attributes, stereotype=, visibility=public, txtDescription='Contains functionally constrained DAs, used as types for attributes of CDCs. They consist of combinations of DAs with functional constraints and trigger options (where applicable). These types "shield" CDCs and LNs from all the complexity of the IEC61850 data type system.', htmlDescription='

Contains functionally constrained DAs, used as types for attributes of CDCs. They consist of combinations of DAs with functional constraints and trigger options (where applicable). These types "shield" CDCs and LNs from all the complexity of the IEC61850 data type system.

'], _modelId=58, _selfDependent=false, 6_skippedEaItems=[SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2225, uuid={38462576-628F-455c-A4E1-CF71CEC5C013}, since=null, name=IEC61850 : DataModelExample, alias=, stereotype=, visibility=public, txtDescription='IEC61850 : DataModelExample', htmlDescription='

IEC61850 : DataModelExample

'], _containingPackage=FCDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2226, uuid={6EB11409-AD95-49fc-9606-5F1D6C4F3CE4}, since=null, name=FCDAs :FCDAs-ST-OR, alias=, stereotype=, visibility=public, txtDescription='FCDAs : FCDAs-ST-OR', htmlDescription='

FCDAs : FCDAs-ST-OR

'], _containingPackage=FCDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2227, uuid={8CFF212D-D163-4ed6-92FE-7CC414DB287E}, since=null, name=FCDAs :FCDAs-SV-BL, alias=, stereotype=, visibility=public, txtDescription='FCDAs : FCDAs-SV-BL', htmlDescription='

FCDAs : FCDAs-SV-BL

'], _containingPackage=FCDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2228, uuid={AA244A47-7DD9-4915-9F09-4A0EC38AD1BB}, since=null, name=FCDAs :FCDAs-SP-SG-SE, alias=, stereotype=, visibility=public, txtDescription='FCDAs : FCDAs-SP-SG-SE', htmlDescription='

FCDAs : FCDAs-SP-SG-SE

'], _containingPackage=FCDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2229, uuid={DE18AEAE-AFC9-40b0-B744-CD47FB2D193C}, since=null, name=FCDAs :FCDAs-MX, alias=, stereotype=, visibility=public, txtDescription='FCDAs : FCDAs-MX', htmlDescription='

FCDAs : FCDAs-MX

'], _containingPackage=FCDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2230, uuid={F38238A8-E1FB-4d0d-8A6B-D9C28216CAB3}, since=null, name=FCDAs :FCDAs-CF-DC-EX, alias=, stereotype=, visibility=public, txtDescription='FCDAs : FCDAs-CF-DC-EX', htmlDescription='

FCDAs : FCDAs-CF-DC-EX

'], _containingPackage=FCDAs, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=FCDAs, _objData=UmlObjectData [id=238, uuid={B97F330A-F926-4f40-9E70-74A8D9B4C7CD}, since=null, name=FCDAs, alias=, stereotype=, visibility=public, txtDescription='Shows meta-model types for functionally constrained DAs, and links to diagrams that group them per category (for easier model maintenance purposes only).', htmlDescription='

Shows meta-model types for functionally constrained DAs, and links to diagrams that group them per category (for easier model maintenance purposes only).

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=4, _dependenciesAsTarget=1, _classes=37 +2024-09-08 15:10:00,375 [main] INFO PackageBuilder - processing package CommonDataClasses (6) ... +2024-09-08 15:10:00,375 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=CommonDataClasses, _objData=UmlObjectData [id=244, uuid={9116C46B-DD92-40ff-9928-FB3E309093AC}, since=null, name=CommonDataClasses, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all the common data class groups, with their contents. +Classes displayed in italic and ending with "CDC" are abstract common data classes that allow to avoid duplication in definition of attributes used by multiple concrete common data classes. Abstract common data classes are never instantiated; Their attributes are inheritied by concrete common data classes which are instantiable.', htmlDescription='

This diagram shows all the common data class groups, with their contents.

Classes displayed in italic and ending with "CDC" are abstract common data classes that allow to avoid duplication in definition of attributes used by multiple concrete common data classes. Abstract common data classes are never instantiated; Their attributes are inheritied by concrete common data classes which are instantiable.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,375 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=CommonDataClasses, _objData=UmlObjectData [id=245, uuid={31D2AD7A-7057-4e53-9C03-88B813B80849}, since=null, name=CDCRelationToACSI, alias=, stereotype=, visibility=public, txtDescription='All common data classes defined in this document inherit their structure from the abstract CDC class defined in IEC 61850-7-2, or more precisely, from one of its abstract subclasses (PrimitiveCDC or ComposedCDC). Common data classes (CDC-s) are used as types for data objects of logical nodes, and are composed of data attributes, which are of type FCDA (functionally constrained data attribute), and some are CDCs themselves. The generic structure of common data classes defined in IEC61850-7-2 comprises the attributes (e.g., name and reference, functional constraints and trigger options), and the services depending on a functional constraint. Currently, they are all modelled with operations (services). +IEC 61850-7-3 adds concrete data attributes, starting with common ones defined in abstract classes BasePrimitiveCDC and BaseComposedCDC, in order to complete the definition of concrete common data classes. Having this kind of definition at one place avoids error-prone repeating of these common attributes within the definition of every concrete common data class. +The diagram shows also the attributes per type of common data class defined in this document. Optional attributes have multiplicity [0..1]. Some common data classes define conditions on one or more of their attributes. In this diagram, this is the case for both BaseComposedCDC and BasePrimitiveCDC, with conditions "AC_DLNDA_M" and "AC_DLN_M"; The definition of condition is available for each data object involved in the condition and refers to Presence conditions introduced in IEC61850-7-3, Clause 5.', htmlDescription='

All common data classes defined in this document inherit their structure from the abstract CDC class defined in IEC 61850-7-2, or more precisely, from one of its abstract subclasses (PrimitiveCDC or ComposedCDC). Common data classes (CDC-s) are used as types for data objects of logical nodes, and are composed of data attributes, which are of type FCDA (functionally constrained data attribute), and some are CDCs themselves. The generic structure of common data classes defined in IEC61850-7-2 comprises the attributes (e.g., name and reference, functional constraints and trigger options), and the services depending on a functional constraint. Currently, they are all modelled with operations (services).

IEC 61850-7-3 adds concrete data attributes, starting with common ones defined in abstract classes BasePrimitiveCDC and BaseComposedCDC, in order to complete the definition of concrete common data classes. Having this kind of definition at one place avoids error-prone repeating of these common attributes within the definition of every concrete common data class.

The diagram shows also the attributes per type of common data class defined in this document. Optional attributes have multiplicity [0..1]. Some common data classes define conditions on one or more of their attributes. In this diagram, this is the case for both BaseComposedCDC and BasePrimitiveCDC, with conditions "AC_DLNDA_M" and "AC_DLN_M"; The definition of condition is available for each data object involved in the condition and refers to Presence conditions introduced in IEC61850-7-3, Clause 5.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,376 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_3::CommonDataClasses, _objData=UmlObjectData [id=2550, uuid={66DD71D8-83CD-4fb8-A5D8-44AE4E4C3795}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,376 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_3::CommonDataClasses, _objData=UmlObjectData [id=2557, uuid={95185C57-90F7-4989-93BB-36A01651B273}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,376 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_3::CommonDataClasses->IEC61850_7_2::MetaModel, _objData=UmlObjectData [id=2940, uuid={E5F4FF55-D88D-4216-BB8C-AFDA680AADE9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,376 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_3::CommonDataClasses->IEC61850_7_3::FCDAs, _objData=UmlObjectData [id=2941, uuid={B3EA1C0F-AF13-4b91-9725-55E231C1F103}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,376 [main] DEBUG PackageBuilder - Updated target of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::CDCServiceTracking->IEC61850_7_3::CommonDataClasses, _objData=UmlObjectData [id=3105, uuid={1ACFCE23-05F0-4f6f-A7FF-F1999DF5DEBB}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,376 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2239, uuid={264C9AAE-B7F6-46b0-8EEE-F73431C6AD63}, since=null, name=CommonDataClasses : Concept of substitution, alias=, stereotype=, visibility=public, txtDescription='SubstitutionCDC : Concept of substitution', htmlDescription='

SubstitutionCDC : Concept of substitution

'], _containingPackage=CommonDataClasses, _otherEndName=] +2024-09-08 15:10:00,377 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2241, uuid={AD3492F7-906E-41fa-A99E-09F725CB2769}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=CommonDataClasses, _otherEndName=] +2024-09-08 15:10:00,377 [main] TRACE ClassBuilder - Class BasePrimitiveCDC (1 in package CommonDataClasses) +2024-09-08 15:10:00,377 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CommonDataClasses::BasePrimitiveCDC, _objData=UmlObjectData [id=4259, uuid={70157B11-247A-45cc-805C-2311A2402464}, since=null, name=dU, alias=, stereotype=, visibility=public, txtDescription='Textual description of the data using unicode characters. In case of LPL, the description refers to the logical node.', htmlDescription='

Textual description of the data using unicode characters. In case of LPL, the description refers to the logical node.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2207, _eaTypeName=UNICODE_STRING255_DC, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,377 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CommonDataClasses::BasePrimitiveCDC, _objData=UmlObjectData [id=4260, uuid={CB9D22B8-9916-44d7-AB74-A7E8767612D1}, since=null, name=cdcNs, alias=, stereotype=, visibility=public, txtDescription='Common data class name space. Scope of the standard specified with the attribute is CDC definition. For details see IEC 61850-7-1.', htmlDescription='

Common data class name space. Scope of the standard specified with the attribute is CDC definition. For details see IEC 61850-7-1.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2217, _eaTypeName=VISIBLE_STRING255_EX, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,378 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2163, uuid={A6D40A7D-0B29-4624-B705-175D0AA64477}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=BasePrimitiveCDC, _otherEndName=?] +2024-09-08 15:10:00,378 [main] DEBUG ClassBuilder - Adding BasePrimitiveCDC as subclass of PrimitiveCDC +2024-09-08 15:10:00,378 [main] DEBUG ClassBuilder - Adding BasePrimitiveCDC as superclass of CST +2024-09-08 15:10:00,378 [main] TRACE ClassBuilder - read from EA: CommonDataClasses::BasePrimitiveCDC +2024-09-08 15:10:00,378 [main] TRACE ClassBuilder - Class BaseComposedCDC (2 in package CommonDataClasses) +2024-09-08 15:10:00,378 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CommonDataClasses::BaseComposedCDC, _objData=UmlObjectData [id=4264, uuid={DA02A7F1-6B04-48c6-9571-CD453B3D1CED}, since=null, name=dU, alias=, stereotype=, visibility=public, txtDescription='See 'BasePrimitiveCDC.dU'.', htmlDescription='

See 'BasePrimitiveCDC.dU'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2207, _eaTypeName=UNICODE_STRING255_DC, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,378 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CommonDataClasses::BaseComposedCDC, _objData=UmlObjectData [id=4265, uuid={E299B631-8163-4dbd-B5B7-4C83B2303E19}, since=null, name=cdcNs, alias=, stereotype=, visibility=public, txtDescription='See 'BasePrimitiveCDC.cdcNs'.', htmlDescription='

See 'BasePrimitiveCDC.cdcNs'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2217, _eaTypeName=VISIBLE_STRING255_EX, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,379 [main] DEBUG ClassBuilder - Adding BaseComposedCDC as subclass of ComposedCDC +2024-09-08 15:10:00,379 [main] TRACE ClassBuilder - read from EA: CommonDataClasses::BaseComposedCDC +2024-09-08 15:10:00,379 [main] TRACE ClassBuilder - Class SubstitutionCDC (3 in package CommonDataClasses) +2024-09-08 15:10:00,379 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [, _containingClass=SubstitutionCDC, _objData=UmlObjectData [id=246, uuid={314D3B8E-96FD-4400-8A62-2BE1FD745BBA}, since=null, name=Concept of substitution, alias=, stereotype=, visibility=public, txtDescription='This diagram illustrates the concept of substitution. Usually, input from the process or the result of the calculation from a function provides the value of a DataAttribute. In that case, 'CDC.q.source'='process'. In case of substitution, the value of a DataAttribute may be provided by an operator making use of a client, and in that case 'CDC.q.source'='substituted'. This selection of the source of the value (substitution value or process value) shall be controlled by the service SetDataValue ('SubstitutionCDC.subEna'=true) to substitute or SetDataValue ('SubstitutionCDC.subEna'=false) to unsubstitute. The service SetDataValue shall also be used to set the substituted value ('CDC.subVal'=value-for-substitution). There may be cases where a local automatic function disables substitution, for example, if blocking of information exchange is disabled or communication is no longer interrupted. +It is the responsibility of the client application, in particular in the case of multiple attributes to be substituted, to set all relevant substitution values ('{SPS,DPS,INS,ENS,SPC,DPC,INC,ENC}.subVal', 'MV.subMag', 'CMV.subCVal', 'SubstitutionCDC.subQ', 'SubstitutionCDC.subID') before enabling substitution ('SubstitutionCDC.subEna'=true). While substitution is enabled, changing of all substitution-related atttibutes is allowed but it is the responsibility of the implementation to avoid inconsistent transient value combination.', htmlDescription='

This diagram illustrates the concept of substitution. Usually, input from the process or the result of the calculation from a function provides the value of a DataAttribute. In that case, 'CDC.q.source'='process'. In case of substitution, the value of a DataAttribute may be provided by an operator making use of a client, and in that case 'CDC.q.source'='substituted'. This selection of the source of the value (substitution value or process value) shall be controlled by the service SetDataValue ('SubstitutionCDC.subEna'=true) to substitute or SetDataValue ('SubstitutionCDC.subEna'=false) to unsubstitute. The service SetDataValue shall also be used to set the substituted value ('CDC.subVal'=value-for-substitution). There may be cases where a local automatic function disables substitution, for example, if blocking of information exchange is disabled or communication is no longer interrupted.

It is the responsibility of the client application, in particular in the case of multiple attributes to be substituted, to set all relevant substitution values ('{SPS,DPS,INS,ENS,SPC,DPC,INC,ENC}.subVal', 'MV.subMag', 'CMV.subCVal', 'SubstitutionCDC.subQ', 'SubstitutionCDC.subID') before enabling substitution ('SubstitutionCDC.subEna'=true). While substitution is enabled, changing of all substitution-related atttibutes is allowed but it is the responsibility of the implementation to avoid inconsistent transient value combination.

'], _portrait=true, _kind=CUSTOM] +2024-09-08 15:10:00,379 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2237, uuid={7785102C-64D8-4109-AAE2-DB0C7732A6F0}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=SubstitutionCDC, _otherEndName=] +2024-09-08 15:10:00,379 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CommonDataClasses::SubstitutionCDC, _objData=UmlObjectData [id=4268, uuid={079F2530-74C1-408f-90FE-5292130BB10D}, since=null, name=subEna, alias=, stereotype=, visibility=public, txtDescription='Used to enable and disable substitution. If 'subEna'=true, the main data value and quality shall always be set to the same value as the attributes used to store the substitution data value and quality, as follows: +- for SPS, DPS, INS, ENS, SPC, DPC, INC, ENC: 'stVal' to 'subVal', 'q' to 'subQ'; +- for MV: 'instMag' to 'subMag', 'q' to 'subQ'; +- for CMV: 'instCVal' to 'subCVal', 'q' to 'subQ'; +- for BSC, ISC: 'valWTr' to 'subVal, 'q' to 'subQ'; and, +- for APC, BAC: 'mxVal' to 'subVal; 'q' to 'subQ'. +Otherwise, the data value shall be based on the process value.', htmlDescription='

Used to enable and disable substitution. If 'subEna'=true, the main data value and quality shall always be set to the same value as the attributes used to store the substitution data value and quality, as follows:

  • for SPS, DPS, INS, ENS, SPC, DPC, INC, ENC: 'stVal' to 'subVal', 'q' to 'subQ';
  • for MV: 'instMag' to 'subMag', 'q' to 'subQ';
  • for CMV: 'instCVal' to 'subCVal', 'q' to 'subQ';
  • for BSC, ISC: 'valWTr' to 'subVal, 'q' to 'subQ'; and,
  • for APC, BAC: 'mxVal' to 'subVal; 'q' to 'subQ'.

Otherwise, the data value shall be based on the process value.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2130, _eaTypeName=BOOLEAN_SV, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,379 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CommonDataClasses::SubstitutionCDC, _objData=UmlObjectData [id=4269, uuid={CC8123A6-0C41-47f6-B66F-FCB538FAC8C5}, since=null, name=subQ, alias=, stereotype=, visibility=public, txtDescription='Value used to substitute 'q'.', htmlDescription='

Value used to substitute 'q'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2193, _eaTypeName=Quality_SV, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,379 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CommonDataClasses::SubstitutionCDC, _objData=UmlObjectData [id=4271, uuid={D0484592-24B0-4f23-BBA1-47AB63EDEB24}, since=null, name=blkEna, alias=, stereotype=, visibility=public, txtDescription='If true, 'q.operatorBlocked'=true, and the process value is no longer updated.', htmlDescription='

If true, 'q.operatorBlocked'=true, and the process value is no longer updated.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2122, _eaTypeName=BOOLEAN_BL, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,379 [main] DEBUG ClassBuilder - Adding SubstitutionCDC as subclass of BasePrimitiveCDC +2024-09-08 15:10:00,379 [main] TRACE ClassBuilder - read from EA: CommonDataClasses::SubstitutionCDC +2024-09-08 15:10:00,379 [main] INFO PackageBuilder - processing package CDCStatusInfo (3) ... +2024-09-08 15:10:00,380 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=CDCStatusInfo, _objData=UmlObjectData [id=248, uuid={8E8D0A5B-4D29-400f-A3AF-1184FB57CC93}, since=null, name=CDCStatusInfo, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all status information CDCs defined in the standard with supertypes that factor their common attributes.', htmlDescription='

This diagram shows all status information CDCs defined in the standard with supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,381 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2259, uuid={58471C21-0D37-4d5e-B74F-BD101D8729FC}, since=null, name=CDCStatusInfo : Two-dimensional histogram, alias=, stereotype=, visibility=public, txtDescription='CDCStatusInfo : Two-dimensional histogram', htmlDescription='

CDCStatusInfo : Two-dimensional histogram

'], _containingPackage=CDCStatusInfo, _otherEndName=] +2024-09-08 15:10:00,381 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2260, uuid={698239AD-7E8C-42c8-A1EB-0DBE752F57EC}, since=null, name=CDCStatusInfo : One-dimensional histogram, alias=, stereotype=, visibility=public, txtDescription='CDCStatusInfo : One-dimensional histogram', htmlDescription='

CDCStatusInfo : One-dimensional histogram

'], _containingPackage=CDCStatusInfo, _otherEndName=] +2024-09-08 15:10:00,381 [main] TRACE ClassBuilder - Class DPS (1 in package CDCStatusInfo) +2024-09-08 15:10:00,381 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::DPS, _objData=UmlObjectData [id=4276, uuid={5BAF192B-559A-4c20-9FF4-15FDE99E17C8}, since=null, name=stVal, alias=, stereotype=, visibility=public, txtDescription='Status data value.', htmlDescription='

Status data value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2142, _eaTypeName=DpStatus_ST_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,381 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::DPS, _objData=UmlObjectData [id=4277, uuid={4442F743-451D-4ac2-8362-F2C586E6ACFC}, since=null, name=q, alias=, stereotype=, visibility=public, txtDescription='Quality of the data value 'stVal'.', htmlDescription='

Quality of the data value 'stVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2192, _eaTypeName=Quality_ST_qchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,381 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::DPS, _objData=UmlObjectData [id=4278, uuid={18394E45-54E3-4a63-85BB-63611B632E39}, since=null, name=t, alias=, stereotype=, visibility=public, txtDescription='Timestamp of the last change of the data value 'stVal' or quality 'q'.', htmlDescription='

Timestamp of the last change of the data value 'stVal' or quality 'q'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2206, _eaTypeName=TimeStamp_ST, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,381 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::DPS, _objData=UmlObjectData [id=4279, uuid={F3D27F61-E9C4-4fc2-8AA6-662D6F85C26F}, since=null, name=subVal, alias=, stereotype=, visibility=public, txtDescription='Value used to substitute 'stVal'.', htmlDescription='

Value used to substitute 'stVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2143, _eaTypeName=DpStatus_SV, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{moveAfter=wrongsubEna, secondTagName=secondTagValue}] +2024-09-08 15:10:00,382 [main] DEBUG ClassBuilder - Adding DPS as subclass of SubstitutionCDC +2024-09-08 15:10:00,382 [main] TRACE ClassBuilder - read from EA: CDCStatusInfo::DPS +2024-09-08 15:10:00,382 [main] TRACE ClassBuilder - Class ENS (2 in package CDCStatusInfo) +2024-09-08 15:10:00,382 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::ENS, _objData=UmlObjectData [id=4285, uuid={929E3BA6-6FC1-4cef-A0A3-AFC3397057FD}, since=null, name=stVal, alias=, stereotype=, visibility=public, txtDescription='Status data value.', htmlDescription='

Status data value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2149, _eaTypeName=EnumDA_ST_dchg_dupd, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,382 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::ENS, _objData=UmlObjectData [id=4286, uuid={973C16BC-0B6B-4787-9456-6A3C5D86703B}, since=null, name=q, alias=, stereotype=, visibility=public, txtDescription='Quality of the data value 'stVal'.', htmlDescription='

Quality of the data value 'stVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2192, _eaTypeName=Quality_ST_qchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,382 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::ENS, _objData=UmlObjectData [id=4287, uuid={A5C38D4B-AA0F-49b6-B868-27C0036F5163}, since=null, name=t, alias=, stereotype=, visibility=public, txtDescription='Timestamp of the last change of the data value 'stVal' or quality 'q'.', htmlDescription='

Timestamp of the last change of the data value 'stVal' or quality 'q'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2206, _eaTypeName=TimeStamp_ST, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,382 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::ENS, _objData=UmlObjectData [id=4288, uuid={5895B5B3-C6B8-4321-BCF5-F17A3FE76872}, since=null, name=subVal, alias=, stereotype=, visibility=public, txtDescription='Value used to substitute 'stVal'.', htmlDescription='

Value used to substitute 'stVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2150, _eaTypeName=EnumDA_SV, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{moveAfter=subEna}] +2024-09-08 15:10:00,382 [main] DEBUG ClassBuilder - Adding ENS as subclass of SubstitutionCDC +2024-09-08 15:10:00,382 [main] TRACE ClassBuilder - read from EA: CDCStatusInfo::ENS +2024-09-08 15:10:00,383 [main] TRACE ClassBuilder - Class EXY (3 in package CDCStatusInfo) +2024-09-08 15:10:00,383 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::EXY, _objData=UmlObjectData [id=6653, uuid={C45B42C1-992F-47fa-978C-87A6AFC4F512}, since=null, name=stVal, alias=, stereotype=, visibility=public, txtDescription='Status data value.', htmlDescription='

Status data value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2149, _eaTypeName=EnumDA_ST_dchg_dupd, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,383 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::EXY, _objData=UmlObjectData [id=6654, uuid={B5AC751A-B7F5-4848-8382-2072203D80D8}, since=null, name=q, alias=, stereotype=, visibility=public, txtDescription='Quality of the data value 'stVal'.', htmlDescription='

Quality of the data value 'stVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2192, _eaTypeName=Quality_ST_qchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,383 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::EXY, _objData=UmlObjectData [id=6655, uuid={CADD5FD8-0F27-4735-9D3F-4CE322754EA7}, since=null, name=t, alias=, stereotype=, visibility=public, txtDescription='Timestamp of the last change of the data value 'stVal' or quality 'q'.', htmlDescription='

Timestamp of the last change of the data value 'stVal' or quality 'q'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2206, _eaTypeName=TimeStamp_ST, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,383 [main] DEBUG ClassBuilder - Adding EXY as subclass of BasePrimitiveCDC +2024-09-08 15:10:00,383 [main] TRACE ClassBuilder - read from EA: CDCStatusInfo::EXY +2024-09-08 15:10:00,383 [main] TRACE ClassBuilder - Class ACD (4 in package CDCStatusInfo) +2024-09-08 15:10:00,385 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::ACD, _objData=UmlObjectData [id=4301, uuid={532F20FD-1464-482b-838D-48B80E9F6631}, since=null, name=dirGeneral, alias=, stereotype=, visibility=public, txtDescription='General direction of the fault. If the faults of individual phases have different directions, this attribute shall be set to 'dirGeneral'='both'.', htmlDescription='

General direction of the fault. If the faults of individual phases have different directions, this attribute shall be set to 'dirGeneral'='both'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2151, _eaTypeName=FaultDirection_ST_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,385 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::ACD, _objData=UmlObjectData [id=4302, uuid={22C4C4D2-4D10-4cad-8B98-2C5BB64AFEC2}, since=null, name=phsA, alias=, stereotype=, visibility=public, txtDescription='See 'ACT.phsA'.', htmlDescription='

See 'ACT.phsA'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2129, _eaTypeName=BOOLEAN_ST_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,385 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::ACD, _objData=UmlObjectData [id=4304, uuid={78BD96A5-A044-4ee0-BDF2-6207BF482F50}, since=null, name=phsB, alias=, stereotype=, visibility=public, txtDescription='See 'ACT.phsB.', htmlDescription='

See 'ACT.phsB.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2129, _eaTypeName=BOOLEAN_ST_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,385 [main] DEBUG ClassBuilder - Adding ACD as subclass of BasePrimitiveCDC +2024-09-08 15:10:00,385 [main] TRACE ClassBuilder - read from EA: CDCStatusInfo::ACD +2024-09-08 15:10:00,385 [main] TRACE ClassBuilder - Class HST (5 in package CDCStatusInfo) +2024-09-08 15:10:00,385 [main] ERROR EaTables - [+++ EA ordering problem for 2 diagram(s) in HST (manually move back/forth a diagram to initiate EA internal ordering update!): +, +++ diagram One-dimensional histogram: pos = 0 +, +++ diagram Two-dimensional histogram: pos = 0 DUPLICATE +] +2024-09-08 15:10:00,385 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [, _containingClass=HST, _objData=UmlObjectData [id=249, uuid={ED4BABDE-840A-4983-AD56-49D11AE71F72}, since=null, name=One-dimensional histogram, alias=, stereotype=, visibility=public, txtDescription='This diagram illustrates usage of data attributes for a one-dimensional histogram representation.', htmlDescription='

This diagram illustrates usage of data attributes for a one-dimensional histogram representation.

'], _portrait=true, _kind=CUSTOM] +2024-09-08 15:10:00,385 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [, _containingClass=HST, _objData=UmlObjectData [id=250, uuid={D4BFD754-29E5-467c-8CBD-D17D9FD3F5DF}, since=null, name=Two-dimensional histogram, alias=, stereotype=, visibility=public, txtDescription='This diagram shows an example of a two-dimensional histogram along with the corresponding values for related data attributes. Each of the rectangles represents one range; there is no rule, how to order the ranges.', htmlDescription='

This diagram shows an example of a two-dimensional histogram along with the corresponding values for related data attributes. Each of the rectangles represents one range; there is no rule, how to order the ranges.

'], _portrait=true, _kind=CUSTOM] +2024-09-08 15:10:00,386 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2256, uuid={30BBC730-8918-41fd-AEF8-EFA8F6E6B530}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=HST, _otherEndName=] +2024-09-08 15:10:00,386 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2257, uuid={F31CA204-48C6-416e-A7F6-46A746CF99E0}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=HST, _otherEndName=] +2024-09-08 15:10:00,386 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::HST, _objData=UmlObjectData [id=4328, uuid={CE8A66F5-D42E-4f4f-8087-F15C910C8D17}, since=null, name=hstVal, alias=, stereotype=, visibility=public, txtDescription='Array of data values for the histogram entries.', htmlDescription='

Array of data values for the histogram entries.

'], _isConst=false, _isStatic=false, _multiplicity=[1..*], _initValue=, _eaTypeId=2172, _eaTypeName=INT32_ST_dchg_dupd, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1 _constraints[ConstraintBuilder [_objData=UmlObjectData [id=1618, uuid=720fe959-ac7a-331d-b329-3988eb2bff13, since=null, name=maxIdx, alias=, stereotype=, visibility=public, txtDescription='maxPts-1', htmlDescription='

maxPts-1

'], _containingAttribute=hstVal, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=maxPts-1]]] +2024-09-08 15:10:00,386 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::HST, _objData=UmlObjectData [id=4331, uuid={B6E3704C-05B5-4c84-AEBB-CE3F2A3DB9F0}, since=null, name=numPts, alias=, stereotype=, visibility=public, txtDescription='Actual size of 'hstVal[]', 'hstRangeC[]'.', htmlDescription='

Actual size of 'hstVal[]', 'hstRangeC[]'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1...maxPts, _eaTypeId=2159, _eaTypeName=INT16U_CF, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,387 [main] DEBUG ClassBuilder - Adding HST as subclass of BasePrimitiveCDC +2024-09-08 15:10:00,387 [main] TRACE ClassBuilder - read from EA: CDCStatusInfo::HST +2024-09-08 15:10:00,387 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=CommonDataClasses, _depth=3, _eaElementID=2245, _objData=UmlObjectData [id=121, uuid={3E1C875A-F26E-40d8-9846-9BB1405D4F1A}, since=null, name=CDCStatusInfo, alias=Status information, stereotype=, visibility=public, txtDescription='For applicable services, see Annex B.', htmlDescription='

For applicable services, see Annex B.

'], _modelId=58, _selfDependent=false, 2_skippedEaItems=[SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2259, uuid={58471C21-0D37-4d5e-B74F-BD101D8729FC}, since=null, name=CDCStatusInfo : Two-dimensional histogram, alias=, stereotype=, visibility=public, txtDescription='CDCStatusInfo : Two-dimensional histogram', htmlDescription='

CDCStatusInfo : Two-dimensional histogram

'], _containingPackage=CDCStatusInfo, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2260, uuid={698239AD-7E8C-42c8-A1EB-0DBE752F57EC}, since=null, name=CDCStatusInfo : One-dimensional histogram, alias=, stereotype=, visibility=public, txtDescription='CDCStatusInfo : One-dimensional histogram', htmlDescription='

CDCStatusInfo : One-dimensional histogram

'], _containingPackage=CDCStatusInfo, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=CDCStatusInfo, _objData=UmlObjectData [id=248, uuid={8E8D0A5B-4D29-400f-A3AF-1184FB57CC93}, since=null, name=CDCStatusInfo, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all status information CDCs defined in the standard with supertypes that factor their common attributes.', htmlDescription='

This diagram shows all status information CDCs defined in the standard with supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL]], _classes=5 +2024-09-08 15:10:00,387 [main] INFO PackageBuilder - processing package CDCAnalogueInfo (4) ... +2024-09-08 15:10:00,387 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=CDCAnalogueInfo, _objData=UmlObjectData [id=251, uuid={7318BCE5-A2F7-4ec0-9888-C0DED1487FCD}, since=null, name=CDCAnalogueInfo, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all measurand info primitive CDCs defined in the standard with supertypes that factor their common attributes.', htmlDescription='

This diagram shows all measurand info primitive CDCs defined in the standard with supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,388 [main] TRACE ClassBuilder - Class HarmonicMeasurandCDC (2 in package CDCAnalogueInfo) +2024-09-08 15:10:00,389 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCAnalogueInfo::HarmonicMeasurandCDC, _objData=UmlObjectData [id=4346, uuid={2B6FCE4E-A827-467a-B3FA-B2DA520A2B0E}, since=null, name=evalTm, alias=, stereotype=, visibility=public, txtDescription='Time window [ms] applied to interharmonic calculations. See 'numHar'.', htmlDescription='

Time window [ms] applied to interharmonic calculations. See 'numHar'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2160, _eaTypeName=INT16U_CF_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,389 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCAnalogueInfo::HarmonicMeasurandCDC, _objData=UmlObjectData [id=4347, uuid={9CA4C0A7-81A8-4f80-A178-0E3461E29662}, since=null, name=smpRate, alias=, stereotype=, visibility=public, txtDescription='Determines the highest possible harmonic or interharmonic detectable, according to the sampling theorem; the minimum value is 'smpRate'=2 * 'frequency'. 'smpRate' is the number of samples per nominal period. In the case of a dc system, it is number of samples per s.', htmlDescription='

Determines the highest possible harmonic or interharmonic detectable, according to the sampling theorem; the minimum value is 'smpRate'=2 * 'frequency'. 'smpRate' is the number of samples per nominal period. In the case of a dc system, it is number of samples per s.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2165, _eaTypeName=INT32U_CF_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,389 [main] DEBUG ClassBuilder - Adding HarmonicMeasurandCDC as subclass of BaseComposedCDC +2024-09-08 15:10:00,389 [main] TRACE ClassBuilder - read from EA: CDCAnalogueInfo::HarmonicMeasurandCDC +2024-09-08 15:10:00,389 [main] TRACE ClassBuilder - Class CMV (4 in package CDCAnalogueInfo) +2024-09-08 15:10:00,390 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCAnalogueInfo::CMV, _objData=UmlObjectData [id=4363, uuid={EF92B9C1-3C1D-47e0-A976-0BC4ABB0A956}, since=null, name=instCVal, alias=, stereotype=, visibility=public, txtDescription='Instantaneous complex (phasor) value, with magnitude and angle.', htmlDescription='

Instantaneous complex (phasor) value, with magnitude and angle.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2213, _eaTypeName=Vector_MX, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,390 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCAnalogueInfo::CMV, _objData=UmlObjectData [id=4369, uuid={5BEFF6EB-D761-40ac-AF78-8EDB1CB222A6}, since=null, name=subCVal, alias=, stereotype=, visibility=public, txtDescription='Value used to substitute 'instCVal'.', htmlDescription='

Value used to substitute 'instCVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2215, _eaTypeName=Vector_SV, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{moveAfter=subEna}] +2024-09-08 15:10:00,390 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCAnalogueInfo::CMV, _objData=UmlObjectData [id=4374, uuid={163EDE34-974C-42be-93A3-DC32CCFC09F6}, since=null, name=rangeC, alias=, stereotype=, visibility=public, txtDescription='Configuration for 'range'.', htmlDescription='

Configuration for 'range'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2194, _eaTypeName=RangeConfig_CF_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,390 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCAnalogueInfo::CMV, _objData=UmlObjectData [id=4375, uuid={64C3ECAC-5E57-4cbe-8469-96F13ACDF920}, since=null, name=rangeAngC, alias=, stereotype=, visibility=public, txtDescription='Configuration for 'rangeAng'.', htmlDescription='

Configuration for 'rangeAng'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2194, _eaTypeName=RangeConfig_CF_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,390 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2161, uuid={83E0A355-0A5F-4120-B11B-A884EE35EBCF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=CMV, _otherEndName=?] +2024-09-08 15:10:00,390 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2165, uuid={C4A6DE53-4818-409e-A935-BD597D32CC62}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=CMV, _otherEndName=?] +2024-09-08 15:10:00,390 [main] DEBUG ClassBuilder - Adding CMV as subclass of SubstitutionCDC +2024-09-08 15:10:00,390 [main] TRACE ClassBuilder - read from EA: CDCAnalogueInfo::CMV +2024-09-08 15:10:00,390 [main] TRACE ClassBuilder - Class HWYE (5 in package CDCAnalogueInfo) +2024-09-08 15:10:00,390 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCAnalogueInfo::HWYE, _objData=UmlObjectData [id=4405, uuid={3BE5F231-7684-425e-A062-905D40593DE8}, since=null, name=phsAHar, alias=, stereotype=, visibility=public, txtDescription='Array of harmonic and subharmonics, or interharmonic values related to phase A.', htmlDescription='

Array of harmonic and subharmonics, or interharmonic values related to phase A.

'], _isConst=false, _isStatic=false, _multiplicity=[1..*], _initValue=, _eaTypeId=2266, _eaTypeName=CMV, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2 _constraints[ConstraintBuilder [_objData=UmlObjectData [id=1640, uuid=2d5f2699-414e-322c-ac9b-12faab7bf7a1, since=null, name=maxIdx, alias=, stereotype=, visibility=public, txtDescription='numHar', htmlDescription='

numHar

'], _containingAttribute=phsAHar, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=numHar], ConstraintBuilder [_objData=UmlObjectData [id=1641, uuid=9681cda7-090b-3bd8-acfe-51a75f594dfa, since=null, name=minIdx, alias=, stereotype=, visibility=public, txtDescription='0', htmlDescription='

0

'], _containingAttribute=phsAHar, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=0]]] +2024-09-08 15:10:00,391 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCAnalogueInfo::HWYE, _objData=UmlObjectData [id=4411, uuid={E41EFDD0-9E50-45f3-B665-D9884218AC67}, since=null, name=angRef, alias=, stereotype=, visibility=public, txtDescription='Angle reference, indicating the quantity that is used as reference for the phase angles {'phsAHar', 'phsBHar', 'phsCHar', 'neutHar', 'netHar', 'resHar'}[i].ang', instead of their own 'angRef'. For the indicated quantity, the fundamental frequency (index = 1) is used as reference by convention.', htmlDescription='

Angle reference, indicating the quantity that is used as reference for the phase angles {'phsAHar', 'phsBHar', 'phsCHar', 'neutHar', 'netHar', 'resHar'}[i].ang', instead of their own 'angRef'. For the indicated quantity, the fundamental frequency (index = 1) is used as reference by convention.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2183, _eaTypeName=PhaseAngleReference_CF_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{moveAfter=evalTm}] +2024-09-08 15:10:00,391 [main] DEBUG ClassBuilder - Adding HWYE as subclass of HarmonicMeasurandCDC +2024-09-08 15:10:00,391 [main] TRACE ClassBuilder - read from EA: CDCAnalogueInfo::HWYE +2024-09-08 15:10:00,391 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=CommonDataClasses, _depth=3, _eaElementID=2261, _objData=UmlObjectData [id=122, uuid={1648BF5D-1715-4c8a-B570-BAC092CDCC20}, since=null, name=CDCAnalogueInfo, alias=Measurand information, stereotype=, visibility=public, txtDescription='Measured values as defined in the following clauses may also be applied to calculated values. +For applicable services, see Annex B.', htmlDescription='

Measured values as defined in the following clauses may also be applied to calculated values.

For applicable services, see Annex B.

'], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=CDCAnalogueInfo, _objData=UmlObjectData [id=251, uuid={7318BCE5-A2F7-4ec0-9888-C0DED1487FCD}, since=null, name=CDCAnalogueInfo, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all measurand info primitive CDCs defined in the standard with supertypes that factor their common attributes.', htmlDescription='

This diagram shows all measurand info primitive CDCs defined in the standard with supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL]], _classes=3 +2024-09-08 15:10:00,391 [main] INFO PackageBuilder - processing package CDCControl (5) ... +2024-09-08 15:10:00,391 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=CDCControl, _objData=UmlObjectData [id=255, uuid={672B46BC-EEBD-413a-8A1E-B08E4D73BBF9}, since=null, name=CDCControl, alias=, stereotype=, visibility=public, txtDescription='This diagram shows first part of controllable CDCs defined in the standard with supertypes that factor their common attributes.', htmlDescription='

This diagram shows first part of controllable CDCs defined in the standard with supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,392 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2289, uuid={5B33C75B-7824-4ca5-9553-55D1D80034BF}, since=null, name=CDCControl :Attributes for command testing, alias=, stereotype=, visibility=public, txtDescription='CDCControl : Attributes for command testing', htmlDescription='

CDCControl : Attributes for command testing

'], _containingPackage=CDCControl, _otherEndName=] +2024-09-08 15:10:00,392 [main] TRACE ClassBuilder - Class SPC (0 in package CDCControl) +2024-09-08 15:10:00,392 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = CDCControl::SPC->null, _objData=UmlObjectData [id=3452, uuid={1BDAABDC-478E-4284-B67C-2D8C94FA3E1C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,392 [main] TRACE ClassBuilder - read from EA: CDCControl::SPC +2024-09-08 15:10:00,392 [main] TRACE ClassBuilder - Class ControllableCDC (1 in package CDCControl) +2024-09-08 15:10:00,392 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [, _containingClass=ControllableCDC, _objData=UmlObjectData [id=256, uuid={7A8C741F-2259-403c-9867-8F51C3D154A9}, since=null, name=Attributes for command testing, alias=, stereotype=, visibility=public, txtDescription='This diagram illustrates usage of attributes related to testing commands, suitable for use when 'LN.Mode='testBlocked'. +The command is received ('opRcvd') by the IED as a control service or as a GOOSE message with a data object that is interpreted as an 'operate' request on the controllable object. The command is then processed. If the command is accepted, the wired output would be activated. The data attribute 'opOk' confirms that the command has been accepted and reflects the timing of the wired output; i.e. the duration of that signal is determined by the configuration attribute 'pulseConfig' if the output is a pulse. The data attribute 'tOpOk' is a timestamp indicating when the output would be activated.', htmlDescription='

This diagram illustrates usage of attributes related to testing commands, suitable for use when 'LN.Mode='testBlocked'.

The command is received ('opRcvd') by the IED as a control service or as a GOOSE message with a data object that is interpreted as an 'operate' request on the controllable object. The command is then processed. If the command is accepted, the wired output would be activated. The data attribute 'opOk' confirms that the command has been accepted and reflects the timing of the wired output; i.e. the duration of that signal is determined by the configuration attribute 'pulseConfig' if the output is a pulse. The data attribute 'tOpOk' is a timestamp indicating when the output would be activated.

'], _portrait=true, _kind=CUSTOM] +2024-09-08 15:10:00,392 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2279, uuid={28B618C5-AFD6-4e02-B638-732E00A18C5F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=ControllableCDC, _otherEndName=] +2024-09-08 15:10:00,392 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCControl::ControllableCDC, _objData=UmlObjectData [id=4417, uuid={47B971C5-D6FE-4d4d-A1B9-DAD685D360FE}, since=null, name=opOk, alias=, stereotype=, visibility=public, txtDescription='True indicates that an operate command for a controllable data object has been evaluated and accepted.', htmlDescription='

True indicates that an operate command for a controllable data object has been evaluated and accepted.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2125, _eaTypeName=BOOLEAN_OR_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,393 [main] DEBUG ClassBuilder - Adding ControllableCDC as subclass of SubstitutionCDC +2024-09-08 15:10:00,393 [main] DEBUG ClassBuilder - Updated target of class dependency DependencyBuilder [_kind=CLASS, qName = CDCControl::SPC->CDCControl::ControllableCDC, _objData=UmlObjectData [id=3452, uuid={1BDAABDC-478E-4284-B67C-2D8C94FA3E1C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,393 [main] TRACE ClassBuilder - read from EA: CDCControl::ControllableCDC +2024-09-08 15:10:00,393 [main] TRACE ClassBuilder - Class ENC (2 in package CDCControl) +2024-09-08 15:10:00,393 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCControl::ENC, _objData=UmlObjectData [id=4463, uuid={9C28209D-6C12-48ff-B6AD-C1817BAAFC47}, since=null, name=stVal, alias=, stereotype=, visibility=public, txtDescription='Status data value.', htmlDescription='

Status data value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2148, _eaTypeName=EnumDA_ST_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,393 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCControl::ENC, _objData=UmlObjectData [id=4467, uuid={938DEDD5-1A89-4d8f-84B9-3BD409127DC1}, since=null, name=subVal, alias=, stereotype=, visibility=public, txtDescription='Value used to substitute 'stVal'.', htmlDescription='

Value used to substitute 'stVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2150, _eaTypeName=EnumDA_SV, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{moveAfter=subEna}] +2024-09-08 15:10:00,393 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCControl::ENC, _objData=UmlObjectData [id=4472, uuid={3AE4A32F-B7CE-4d34-96B9-72D29B257EC1}, since=null, name=ctlVal, alias=, stereotype=, visibility=public, txtDescription='Service parameter that determines the control activity, containing the new value for 'stVal'.', htmlDescription='

Service parameter that determines the control activity, containing the new value for 'stVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1855, _eaTypeName=EnumDA, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,393 [main] DEBUG ClassBuilder - Adding ENC as subclass of ControllableCDC +2024-09-08 15:10:00,393 [main] TRACE ClassBuilder - read from EA: CDCControl::ENC +2024-09-08 15:10:00,393 [main] TRACE ClassBuilder - Class BAC (10 in package CDCControl) +2024-09-08 15:10:00,394 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCControl::BAC, _objData=UmlObjectData [id=4522, uuid={88F3132A-BE85-476d-A4AB-2F929A4B1EBA}, since=null, name=mxVal, alias=, stereotype=, visibility=public, txtDescription='See 'APC.mxVal'.', htmlDescription='

See 'APC.mxVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2116, _eaTypeName=AnalogueValue_MX_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,394 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCControl::BAC, _objData=UmlObjectData [id=4526, uuid={2E517833-BEAC-420a-9351-E80AE2D456F2}, since=null, name=subVal, alias=, stereotype=, visibility=public, txtDescription='Value used to substitute 'mxVal'.', htmlDescription='

Value used to substitute 'mxVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2121, _eaTypeName=AnalogueValue_SV, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{moveAfter=subEna}] +2024-09-08 15:10:00,394 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCControl::BAC, _objData=UmlObjectData [id=4538, uuid={0E7EE54F-A469-4769-AB77-ECC48A74EF0E}, since=null, name=ctlVal, alias=, stereotype=, visibility=public, txtDescription='Service parameter that determines the control activity, containing the desired change for 'mxVal'. If 'persistent'=false, 'ctlVal'='higher'|'lower' refers to one step in 'mxVal'.', htmlDescription='

Service parameter that determines the control activity, containing the desired change for 'mxVal'. If 'persistent'=false, 'ctlVal'='higher'|'lower' refers to one step in 'mxVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1760, _eaTypeName=BsControl, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,394 [main] DEBUG ClassBuilder - Adding BAC as subclass of ControllableCDC +2024-09-08 15:10:00,394 [main] TRACE ClassBuilder - read from EA: CDCControl::BAC +2024-09-08 15:10:00,394 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=CommonDataClasses, _depth=3, _eaElementID=2276, _objData=UmlObjectData [id=123, uuid={5494102F-33E9-4de2-84A9-31FAC8CF7B73}, since=null, name=CDCControl, alias=Controls, stereotype=, visibility=public, txtDescription='All common data classes for control include both the control and the related status information. +For applicable services, see Annex B. +NOTE The service parameter of the control, which belongs to the control model defined in IEC 61850-7-2, is included here, since the type is defined by the CDC.', htmlDescription='

All common data classes for control include both the control and the related status information.

For applicable services, see Annex B.

NOTE The service parameter of the control, which belongs to the control model defined in IEC 61850-7-2, is included here, since the type is defined by the CDC.

'], _modelId=58, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2289, uuid={5B33C75B-7824-4ca5-9553-55D1D80034BF}, since=null, name=CDCControl :Attributes for command testing, alias=, stereotype=, visibility=public, txtDescription='CDCControl : Attributes for command testing', htmlDescription='

CDCControl : Attributes for command testing

'], _containingPackage=CDCControl, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=CDCControl, _objData=UmlObjectData [id=255, uuid={672B46BC-EEBD-413a-8A1E-B08E4D73BBF9}, since=null, name=CDCControl, alias=, stereotype=, visibility=public, txtDescription='This diagram shows first part of controllable CDCs defined in the standard with supertypes that factor their common attributes.', htmlDescription='

This diagram shows first part of controllable CDCs defined in the standard with supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL]], _classes=4 +2024-09-08 15:10:00,394 [main] INFO PackageBuilder - processing package CDCStatusSet (6) ... +2024-09-08 15:10:00,394 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=CDCStatusSet, _objData=UmlObjectData [id=258, uuid={FAA0BF16-93C1-4fea-BA5D-7C2485A2822D}, since=null, name=CDCStatusSet, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all status setting CDCs defined in the standard with supertypes that factor their common attributes.', htmlDescription='

This diagram shows all status setting CDCs defined in the standard with supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,395 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2292, uuid={72A3A6D5-C9BF-490d-869B-FD21BCFDCE72}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note 1: CUG in not used in 61850-7-4 at all (but may be is in other WGs' LNs). +Modelling note 2: For "tripled" attributes (setVal), we rename two of them by adding the prefixes "_" and "__" (_setVal, __setVal for SG, SE, respectively), since it is impossible to have two or more attributes of the same name in a class, even if they have different functional constraint. For producing the documentation, the tool has to: +- produce one row for SG and SE, with the name of SP, and, +- ignore printing these in data semantic table.', htmlDescription='

Modelling note 1: CUG in not used in 61850-7-4 at all (but may be is in other WGs' LNs).

Modelling note 2: For "tripled" attributes (setVal), we rename two of them by adding the prefixes "_" and "__" (_setVal, __setVal for SG, SE, respectively), since it is impossible to have two or more attributes of the same name in a class, even if they have different functional constraint. For producing the documentation, the tool has to:

  • produce one row for SG and SE, with the name of SP, and,
  • ignore printing these in data semantic table.
'], _containingPackage=CDCStatusSet, _otherEndName=] +2024-09-08 15:10:00,395 [main] TRACE ClassBuilder - Class ENG (2 in package CDCStatusSet) +2024-09-08 15:10:00,395 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusSet::ENG, _objData=UmlObjectData [id=4549, uuid={1D960CE3-43BF-406e-A140-BC2239A785AA}, since=null, name=setVal, alias=, stereotype=, visibility=public, txtDescription='The value of the status setting.', htmlDescription='

The value of the status setting.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2147, _eaTypeName=EnumDA_SP_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,395 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusSet::ENG, _objData=UmlObjectData [id=4550, uuid={230465FC-CF1D-489e-8A2F-06A473C05873}, since=null, name=_setVal, alias=, stereotype=, visibility=public, txtDescription='See 'setVal'.', htmlDescription='

See 'setVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2146, _eaTypeName=EnumDA_SG, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,395 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusSet::ENG, _objData=UmlObjectData [id=4551, uuid={CCF13BCF-8FA8-4586-B31F-3CD9088513A4}, since=null, name=__setVal, alias=, stereotype=, visibility=public, txtDescription='See 'setVal'.', htmlDescription='

See 'setVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2145, _eaTypeName=EnumDA_SE, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,395 [main] DEBUG ClassBuilder - Adding ENG as subclass of BasePrimitiveCDC +2024-09-08 15:10:00,395 [main] TRACE ClassBuilder - read from EA: CDCStatusSet::ENG +2024-09-08 15:10:00,396 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=CommonDataClasses, _depth=3, _eaElementID=2291, _objData=UmlObjectData [id=124, uuid={24BEB580-2588-4b5f-8AEB-5D57AAAAE2FA}, since=null, name=CDCStatusSet, alias=Status settings, stereotype=, visibility=public, txtDescription='For applicable services, see Annex B.', htmlDescription='

For applicable services, see Annex B.

'], _modelId=58, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2292, uuid={72A3A6D5-C9BF-490d-869B-FD21BCFDCE72}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note 1: CUG in not used in 61850-7-4 at all (but may be is in other WGs' LNs). +Modelling note 2: For "tripled" attributes (setVal), we rename two of them by adding the prefixes "_" and "__" (_setVal, __setVal for SG, SE, respectively), since it is impossible to have two or more attributes of the same name in a class, even if they have different functional constraint. For producing the documentation, the tool has to: +- produce one row for SG and SE, with the name of SP, and, +- ignore printing these in data semantic table.', htmlDescription='

Modelling note 1: CUG in not used in 61850-7-4 at all (but may be is in other WGs' LNs).

Modelling note 2: For "tripled" attributes (setVal), we rename two of them by adding the prefixes "_" and "__" (_setVal, __setVal for SG, SE, respectively), since it is impossible to have two or more attributes of the same name in a class, even if they have different functional constraint. For producing the documentation, the tool has to:

  • produce one row for SG and SE, with the name of SP, and,
  • ignore printing these in data semantic table.
'], _containingPackage=CDCStatusSet, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=CDCStatusSet, _objData=UmlObjectData [id=258, uuid={FAA0BF16-93C1-4fea-BA5D-7C2485A2822D}, since=null, name=CDCStatusSet, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all status setting CDCs defined in the standard with supertypes that factor their common attributes.', htmlDescription='

This diagram shows all status setting CDCs defined in the standard with supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL]], _classes=1 +2024-09-08 15:10:00,397 [main] INFO PackageBuilder - processing package CDCAnalogueSet (8) ... +2024-09-08 15:10:00,397 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=CDCAnalogueSet, _objData=UmlObjectData [id=260, uuid={C2AB69BB-C368-4dc2-ABD8-D20CA5670A59}, since=null, name=CDCAnalogueSet, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all analogue setting CDCs defined in the standard with supertypes that factor their common attributes.', htmlDescription='

This diagram shows all analogue setting CDCs defined in the standard with supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,398 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2302, uuid={3EC42D78-B2EB-4f59-9E25-E272DB4E33D6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- CSG.xUnits, yUnits, zUnits should probably also have dchg?', htmlDescription='

TODO:

  • CSG.xUnits, yUnits, zUnits should probably also have dchg?
'], _containingPackage=CDCAnalogueSet, _otherEndName=] +2024-09-08 15:10:00,398 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2303, uuid={02178B42-E5E3-4d47-96D5-4CE0FB51E96B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: +For "tripled" attributes (e.g., setMag), we rename two of them by adding the prefixes "_" and "__" (_setMag, __setMag for SG, SE, respectively), since it is impossible to have two or more attributes of the same name in a class, even if they have different functional constraint. For producing the documentation, the tool has to: +- produce one row for SG and SE, with the name of SP, and, +- ignore printing these in data semantic table.', htmlDescription='

Modelling note:

For "tripled" attributes (e.g., setMag), we rename two of them by adding the prefixes "_" and "__" (_setMag, __setMag for SG, SE, respectively), since it is impossible to have two or more attributes of the same name in a class, even if they have different functional constraint. For producing the documentation, the tool has to:

  • produce one row for SG and SE, with the name of SP, and,
  • ignore printing these in data semantic table.
'], _containingPackage=CDCAnalogueSet, _otherEndName=] +2024-09-08 15:10:00,398 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2309, uuid={08494FEF-49BE-42b8-A5CA-F4B052BA0C5D}, since=null, name=CDCAnalogueSet : Two-dimensional curve, alias=, stereotype=, visibility=public, txtDescription='CDCAnalogueSet : Two-dimensional curve', htmlDescription='

CDCAnalogueSet : Two-dimensional curve

'], _containingPackage=CDCAnalogueSet, _otherEndName=] +2024-09-08 15:10:00,398 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2310, uuid={7E7E303E-D1E2-46b3-A331-865220F17B13}, since=null, name=CDCAnalogueSet : Multiple two-dimensional curves, alias=, stereotype=, visibility=public, txtDescription='CDCAnalogueSet : Multiple two-dimensional curves', htmlDescription='

CDCAnalogueSet : Multiple two-dimensional curves

'], _containingPackage=CDCAnalogueSet, _otherEndName=] +2024-09-08 15:10:00,398 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=CommonDataClasses, _depth=3, _eaElementID=2301, _objData=UmlObjectData [id=125, uuid={BBFCDF63-5251-459a-AA56-3369E8D0EB79}, since=null, name=CDCAnalogueSet, alias=Analogue settings, stereotype=, visibility=public, txtDescription='For applicable services, see Annex B.', htmlDescription='

For applicable services, see Annex B.

'], _modelId=58, _selfDependent=false, 4_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2302, uuid={3EC42D78-B2EB-4f59-9E25-E272DB4E33D6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- CSG.xUnits, yUnits, zUnits should probably also have dchg?', htmlDescription='

TODO:

  • CSG.xUnits, yUnits, zUnits should probably also have dchg?
'], _containingPackage=CDCAnalogueSet, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2303, uuid={02178B42-E5E3-4d47-96D5-4CE0FB51E96B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: +For "tripled" attributes (e.g., setMag), we rename two of them by adding the prefixes "_" and "__" (_setMag, __setMag for SG, SE, respectively), since it is impossible to have two or more attributes of the same name in a class, even if they have different functional constraint. For producing the documentation, the tool has to: +- produce one row for SG and SE, with the name of SP, and, +- ignore printing these in data semantic table.', htmlDescription='

Modelling note:

For "tripled" attributes (e.g., setMag), we rename two of them by adding the prefixes "_" and "__" (_setMag, __setMag for SG, SE, respectively), since it is impossible to have two or more attributes of the same name in a class, even if they have different functional constraint. For producing the documentation, the tool has to:

  • produce one row for SG and SE, with the name of SP, and,
  • ignore printing these in data semantic table.
'], _containingPackage=CDCAnalogueSet, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2309, uuid={08494FEF-49BE-42b8-A5CA-F4B052BA0C5D}, since=null, name=CDCAnalogueSet : Two-dimensional curve, alias=, stereotype=, visibility=public, txtDescription='CDCAnalogueSet : Two-dimensional curve', htmlDescription='

CDCAnalogueSet : Two-dimensional curve

'], _containingPackage=CDCAnalogueSet, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2310, uuid={7E7E303E-D1E2-46b3-A331-865220F17B13}, since=null, name=CDCAnalogueSet : Multiple two-dimensional curves, alias=, stereotype=, visibility=public, txtDescription='CDCAnalogueSet : Multiple two-dimensional curves', htmlDescription='

CDCAnalogueSet : Multiple two-dimensional curves

'], _containingPackage=CDCAnalogueSet, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=CDCAnalogueSet, _objData=UmlObjectData [id=260, uuid={C2AB69BB-C368-4dc2-ABD8-D20CA5670A59}, since=null, name=CDCAnalogueSet, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all analogue setting CDCs defined in the standard with supertypes that factor their common attributes.', htmlDescription='

This diagram shows all analogue setting CDCs defined in the standard with supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL]] +2024-09-08 15:10:00,398 [main] INFO PackageBuilder - processing package CDCDescription (9) ... +2024-09-08 15:10:00,398 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=CDCDescription, _objData=UmlObjectData [id=263, uuid={A4DD44BD-4EEA-42ae-B4BE-6A1186741171}, since=null, name=CDCDescription, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all description CDCs defined in the standard with supertypes that factor their common attributes.', htmlDescription='

This diagram shows all description CDCs defined in the standard with supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,399 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2312, uuid={92EF3889-55BA-4cd5-8E09-ADDB24ECF2EB}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- DPL.ePSName says “Name of electric power system the device is connected to.” This is strange description. What would be examples of “named power systems”? Why not stay just with owner (e.g., utility)? Proposal: Remove attribute. +- DPL.mrID, if referencing CIM's mRID, has very limited use, because it allows to store mRID-s of only primary equipment from CIM model. Most of the attributes contained in this DPL are spread over at least 5 classes in CIM, and most of these CIM classes have an mRID (e.g., Owner, Company, Location, CoordinateSystem, PositionPoint, Asset, AssetModel). This kind of information should not be modelled within a 61850 logical node, but with a real domain model. Proposal: Remove attribute. +- If DPL.mrID is to stay: DPL.mrID says "unique identification of an asset or device". What is the scope of uniqueness? Globally unique? If this is reference to CIM IdentifiedObject.mRID, use correct case for letters (r is should be R). Proposal: State the scope of uniqueness and if reference to CIM, rename attribute to ‘mRID’.', htmlDescription='

TODO:

  • DPL.ePSName says “Name of electric power system the device is connected to.” This is strange description. What would be examples of “named power systems”? Why not stay just with owner (e.g., utility)? Proposal: Remove attribute.
  • DPL.mrID, if referencing CIM's mRID, has very limited use, because it allows to store mRID-s of only primary equipment from CIM model. Most of the attributes contained in this DPL are spread over at least 5 classes in CIM, and most of these CIM classes have an mRID (e.g., Owner, Company, Location, CoordinateSystem, PositionPoint, Asset, AssetModel). This kind of information should not be modelled within a 61850 logical node, but with a real domain model. Proposal: Remove attribute.
  • If DPL.mrID is to stay: DPL.mrID says "unique identification of an asset or device". What is the scope of uniqueness? Globally unique? If this is reference to CIM IdentifiedObject.mRID, use correct case for letters (r is should be R). Proposal: State the scope of uniqueness and if reference to CIM, rename attribute to ‘mRID’.
'], _containingPackage=CDCDescription, _otherEndName=] +2024-09-08 15:10:00,399 [main] TRACE ClassBuilder - Class LPL (2 in package CDCDescription) +2024-09-08 15:10:00,400 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCDescription::LPL, _objData=UmlObjectData [id=4639, uuid={5F84B791-8DB9-403b-B63E-B8E33716E74A}, since=null, name=ldNs, alias=, stereotype=, visibility=public, txtDescription='Logical device name space. Scope of the standard specified with the attribute is LN class definition (CDC definition by reference), for example "IEC 61850-7-4:2010". For details see IEC 61850-7-1.', htmlDescription='

Logical device name space. Scope of the standard specified with the attribute is LN class definition (CDC definition by reference), for example "IEC 61850-7-4:2010". For details see IEC 61850-7-1.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2217, _eaTypeName=VISIBLE_STRING255_EX, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,400 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCDescription::LPL, _objData=UmlObjectData [id=4640, uuid={AAD5655E-83DF-4906-9302-14396644A3AF}, since=null, name=lnNs, alias=, stereotype=, visibility=public, txtDescription='Logical node name space. Scope of the standard specified with the attribute is LN class definition (CDC definition by reference). For details see IEC 61850-7-1.', htmlDescription='

Logical node name space. Scope of the standard specified with the attribute is LN class definition (CDC definition by reference). For details see IEC 61850-7-1.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2217, _eaTypeName=VISIBLE_STRING255_EX, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,400 [main] DEBUG ClassBuilder - Adding LPL as subclass of BasePrimitiveCDC +2024-09-08 15:10:00,400 [main] TRACE ClassBuilder - read from EA: CDCDescription::LPL +2024-09-08 15:10:00,400 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=CommonDataClasses, _depth=3, _eaElementID=2311, _objData=UmlObjectData [id=126, uuid={D4B2A745-B7DE-4120-82C9-1D12138D250F}, since=null, name=CDCDescription, alias=Description information, stereotype=, visibility=public, txtDescription='For applicable services, see Annex B.', htmlDescription='

For applicable services, see Annex B.

'], _modelId=58, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2312, uuid={92EF3889-55BA-4cd5-8E09-ADDB24ECF2EB}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- DPL.ePSName says “Name of electric power system the device is connected to.” This is strange description. What would be examples of “named power systems”? Why not stay just with owner (e.g., utility)? Proposal: Remove attribute. +- DPL.mrID, if referencing CIM's mRID, has very limited use, because it allows to store mRID-s of only primary equipment from CIM model. Most of the attributes contained in this DPL are spread over at least 5 classes in CIM, and most of these CIM classes have an mRID (e.g., Owner, Company, Location, CoordinateSystem, PositionPoint, Asset, AssetModel). This kind of information should not be modelled within a 61850 logical node, but with a real domain model. Proposal: Remove attribute. +- If DPL.mrID is to stay: DPL.mrID says "unique identification of an asset or device". What is the scope of uniqueness? Globally unique? If this is reference to CIM IdentifiedObject.mRID, use correct case for letters (r is should be R). Proposal: State the scope of uniqueness and if reference to CIM, rename attribute to ‘mRID’.', htmlDescription='

TODO:

  • DPL.ePSName says “Name of electric power system the device is connected to.” This is strange description. What would be examples of “named power systems”? Why not stay just with owner (e.g., utility)? Proposal: Remove attribute.
  • DPL.mrID, if referencing CIM's mRID, has very limited use, because it allows to store mRID-s of only primary equipment from CIM model. Most of the attributes contained in this DPL are spread over at least 5 classes in CIM, and most of these CIM classes have an mRID (e.g., Owner, Company, Location, CoordinateSystem, PositionPoint, Asset, AssetModel). This kind of information should not be modelled within a 61850 logical node, but with a real domain model. Proposal: Remove attribute.
  • If DPL.mrID is to stay: DPL.mrID says "unique identification of an asset or device". What is the scope of uniqueness? Globally unique? If this is reference to CIM IdentifiedObject.mRID, use correct case for letters (r is should be R). Proposal: State the scope of uniqueness and if reference to CIM, rename attribute to ‘mRID’.
'], _containingPackage=CDCDescription, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=CDCDescription, _objData=UmlObjectData [id=263, uuid={A4DD44BD-4EEA-42ae-B4BE-6A1186741171}, since=null, name=CDCDescription, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all description CDCs defined in the standard with supertypes that factor their common attributes.', htmlDescription='

This diagram shows all description CDCs defined in the standard with supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL]], _classes=1 +2024-09-08 15:10:00,401 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_3, _depth=2, _eaElementID=2231, _objData=UmlObjectData [id=119, uuid={AF2BB0D4-22E0-440c-BEF8-B5E9EDCE3BC3}, since=null, name=CommonDataClasses, alias=Common data class specifications, stereotype=, visibility=public, txtDescription='Common data classes are defined for use in IEC 61850-7-4. Common data classes are composed of constructed attribute classes defined in Clause 6 of this document or of types defined in IEC 61850-7-2 or of common data classes defined in this clause. IEC 61850-7-1 provides the basic notation used in this clause. +The common data classes define the relation between their attributes and the functional constraint as well as the possible trigger options. If two trigger options are stated, then a concrete implementation shall select one of them. The selection is based on the purpose of the data object of this common data class and is fixed for the data object within a LN class. +The semantic of the attributes is defined in Clause 8.', htmlDescription='

Common data classes are defined for use in IEC 61850-7-4. Common data classes are composed of constructed attribute classes defined in Clause 6 of this document or of types defined in IEC 61850-7-2 or of common data classes defined in this clause. IEC 61850-7-1 provides the basic notation used in this clause.

The common data classes define the relation between their attributes and the functional constraint as well as the possible trigger options. If two trigger options are stated, then a concrete implementation shall select one of them. The selection is based on the purpose of the data object of this common data class and is fixed for the data object within a LN class.

The semantic of the attributes is defined in Clause 8.

'], _modelId=58, _selfDependent=false, 2_skippedEaItems=[SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2239, uuid={264C9AAE-B7F6-46b0-8EEE-F73431C6AD63}, since=null, name=CommonDataClasses : Concept of substitution, alias=, stereotype=, visibility=public, txtDescription='SubstitutionCDC : Concept of substitution', htmlDescription='

SubstitutionCDC : Concept of substitution

'], _containingPackage=CommonDataClasses, _otherEndName=], SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2241, uuid={AD3492F7-906E-41fa-A99E-09F725CB2769}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=CommonDataClasses, _otherEndName=]], 2_diagrams=[DiagramBuilder [_containingPackage=CommonDataClasses, _objData=UmlObjectData [id=244, uuid={9116C46B-DD92-40ff-9928-FB3E309093AC}, since=null, name=CommonDataClasses, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all the common data class groups, with their contents. +Classes displayed in italic and ending with "CDC" are abstract common data classes that allow to avoid duplication in definition of attributes used by multiple concrete common data classes. Abstract common data classes are never instantiated; Their attributes are inheritied by concrete common data classes which are instantiable.', htmlDescription='

This diagram shows all the common data class groups, with their contents.

Classes displayed in italic and ending with "CDC" are abstract common data classes that allow to avoid duplication in definition of attributes used by multiple concrete common data classes. Abstract common data classes are never instantiated; Their attributes are inheritied by concrete common data classes which are instantiable.

'], _portrait=true, _kind=LOGICAL], DiagramBuilder [_containingPackage=CommonDataClasses, _objData=UmlObjectData [id=245, uuid={31D2AD7A-7057-4e53-9C03-88B813B80849}, since=null, name=CDCRelationToACSI, alias=, stereotype=, visibility=public, txtDescription='All common data classes defined in this document inherit their structure from the abstract CDC class defined in IEC 61850-7-2, or more precisely, from one of its abstract subclasses (PrimitiveCDC or ComposedCDC). Common data classes (CDC-s) are used as types for data objects of logical nodes, and are composed of data attributes, which are of type FCDA (functionally constrained data attribute), and some are CDCs themselves. The generic structure of common data classes defined in IEC61850-7-2 comprises the attributes (e.g., name and reference, functional constraints and trigger options), and the services depending on a functional constraint. Currently, they are all modelled with operations (services). +IEC 61850-7-3 adds concrete data attributes, starting with common ones defined in abstract classes BasePrimitiveCDC and BaseComposedCDC, in order to complete the definition of concrete common data classes. Having this kind of definition at one place avoids error-prone repeating of these common attributes within the definition of every concrete common data class. +The diagram shows also the attributes per type of common data class defined in this document. Optional attributes have multiplicity [0..1]. Some common data classes define conditions on one or more of their attributes. In this diagram, this is the case for both BaseComposedCDC and BasePrimitiveCDC, with conditions "AC_DLNDA_M" and "AC_DLN_M"; The definition of condition is available for each data object involved in the condition and refers to Presence conditions introduced in IEC61850-7-3, Clause 5.', htmlDescription='

All common data classes defined in this document inherit their structure from the abstract CDC class defined in IEC 61850-7-2, or more precisely, from one of its abstract subclasses (PrimitiveCDC or ComposedCDC). Common data classes (CDC-s) are used as types for data objects of logical nodes, and are composed of data attributes, which are of type FCDA (functionally constrained data attribute), and some are CDCs themselves. The generic structure of common data classes defined in IEC61850-7-2 comprises the attributes (e.g., name and reference, functional constraints and trigger options), and the services depending on a functional constraint. Currently, they are all modelled with operations (services).

IEC 61850-7-3 adds concrete data attributes, starting with common ones defined in abstract classes BasePrimitiveCDC and BaseComposedCDC, in order to complete the definition of concrete common data classes. Having this kind of definition at one place avoids error-prone repeating of these common attributes within the definition of every concrete common data class.

The diagram shows also the attributes per type of common data class defined in this document. Optional attributes have multiplicity [0..1]. Some common data classes define conditions on one or more of their attributes. In this diagram, this is the case for both BaseComposedCDC and BasePrimitiveCDC, with conditions "AC_DLNDA_M" and "AC_DLN_M"; The definition of condition is available for each data object involved in the condition and refers to Presence conditions introduced in IEC61850-7-3, Clause 5.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=2, _dependenciesAsTarget=3, _classes=3, _childPackages=6] +2024-09-08 15:10:00,401 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=WG10, _depth=1, _eaElementID=2005, _objData=UmlObjectData [id=113, uuid={4164E3FE-EFCF-425a-9566-C2A5F26DD145}, since=null, name=IEC61850_7_3, alias=, stereotype=, visibility=public, txtDescription='Part 7-3, clauses 5, 6 (except for 6.2.7 and 6.2.8 - discussion on quality), 7, 8, annex A, annex D.', htmlDescription='

Part 7-3, clauses 5, 6 (except for 6.2.7 and 6.2.8 - discussion on quality), 7, 8, annex A, annex D.

'], _modelId=58, _selfDependent=true, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2006, uuid={D48A9837-1371-4b1a-8D7F-00C9E8036560}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: This should move to 7-2.', htmlDescription='

TODO: This should move to 7-2.

'], _containingPackage=IEC61850_7_3, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=IEC61850_7_3, _objData=UmlObjectData [id=227, uuid={F484E7B4-1E12-4de6-B276-87F2C5E6E00D}, since=null, name=IEC61850_7_3, alias=, stereotype=, visibility=public, txtDescription='This diagram: +- shows the content of this package, as well as dependencies to other parts of the model, and, +- highlights the sub-packages contained in IEC61850-7-3 required to generate the document automatically (note: for FC table in Annex B, we also need the enum FcKind from 7-2, not shown here). +About dependencies of DA sub-packages: +- CommonAcsiDAs, BasicDAs and ConstructedDAs are all DataAttribute-s from the meta-model, thus they depend on MetaModel, which in turn uses core types and thus depends on CoreTypes. +- CommonAcsiDAs, BasicDAs and ConstructedDAs use also core types, thus they depend on CoreTypes. +- ConstructedDAs use enumerations, so they depend on DAEnums. +- Finally, ConstructedDAs types are composed of primitive DAs, thus dependency to BasicDAs. +FCDAs package contains "helper" explicit types, which shield CDCs and LNs from all the complexity of IEC61850 datatype system. These are the types used to define attributes of CommonDataClass-es. Since FCDAs derive from an abstract meta-model type, they depend on MetaModel. And since they "decorate" data attribute types, they also depend on ConstructedDAs, CommonAcsiDAs and BasicDAs. +Finally, CDCs derive from the meta-model PrimitiveCDC and ComposedCDC and thus depend on MetaModel. Also, their attributes use FCDAs as types, so they all depend on FCDAs package.', htmlDescription='

This diagram:

  • shows the content of this package, as well as dependencies to other parts of the model, and,
  • highlights the sub-packages contained in IEC61850-7-3 required to generate the document automatically (note: for FC table in Annex B, we also need the enum FcKind from 7-2, not shown here).

About dependencies of DA sub-packages:

  • CommonAcsiDAs, BasicDAs and ConstructedDAs are all DataAttribute-s from the meta-model, thus they depend on MetaModel, which in turn uses core types and thus depends on CoreTypes.
  • CommonAcsiDAs, BasicDAs and ConstructedDAs use also core types, thus they depend on CoreTypes.
  • ConstructedDAs use enumerations, so they depend on DAEnums.
  • Finally, ConstructedDAs types are composed of primitive DAs, thus dependency to BasicDAs.

FCDAs package contains "helper" explicit types, which shield CDCs and LNs from all the complexity of IEC61850 datatype system. These are the types used to define attributes of CommonDataClass-es. Since FCDAs derive from an abstract meta-model type, they depend on MetaModel. And since they "decorate" data attribute types, they also depend on ConstructedDAs, CommonAcsiDAs and BasicDAs.

Finally, CDCs derive from the meta-model PrimitiveCDC and ComposedCDC and thus depend on MetaModel. Also, their attributes use FCDAs as types, so they all depend on FCDAs package.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=2, _dependenciesAsTarget=1, _classes=1, _childPackages=6] +2024-09-08 15:10:00,401 [main] INFO PackageBuilder - processing package IEC61850_7_4 (4) ... +2024-09-08 15:10:00,401 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=IEC61850_7_4, _objData=UmlObjectData [id=264, uuid={53319A3A-F127-44ff-9189-57CBBD02C7D3}, since=null, name=IEC61850_7_4, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the content of this package, as well as dependencies to other parts of the model. +Note: Highlighted sub-packages contained in IEC61850-7-4 are required to generate the document automatically. Package IEC61850_5::Functions is also required to generate IEC61850-7-4, but is not shown here.', htmlDescription='

This diagram shows the content of this package, as well as dependencies to other parts of the model.

Note: Highlighted sub-packages contained in IEC61850-7-4 are required to generate the document automatically. Package IEC61850_5::Functions is also required to generate IEC61850-7-4, but is not shown here.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,402 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = WG10::IEC61850_7_4->WG10::IEC61850_7_2, _objData=UmlObjectData [id=2896, uuid={601FCB98-A23F-4bb9-9093-C5EB70806F8B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,402 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = WG10::IEC61850_7_4->WG10::IEC61850_7_3, _objData=UmlObjectData [id=2897, uuid={5A68C091-F611-4fb1-91BF-9B547D41800A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,402 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->WG10::IEC61850_7_4, _objData=UmlObjectData [id=3439, uuid={E2817A04-CD9C-40de-8B67-F4454ADA8AB4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,402 [main] DEBUG PackageBuilder - Updated target of package dependency DependencyBuilder [_kind=PACKAGE, qName = WG10::IEC61850_7_3->WG10::IEC61850_7_4, _objData=UmlObjectData [id=3445, uuid={59C2B380-F257-47a2-9628-193034DD739F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,403 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = WG10::IEC61850_7_4->null, _objData=UmlObjectData [id=3451, uuid={B8B9C543-69FC-4204-9AA3-FDDAAAD9C3EF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,403 [main] TRACE ClassBuilder - Class IEC61850_7_4Namespace (0 in package IEC61850_7_4) +2024-09-08 15:10:00,403 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61850_7_4::IEC61850_7_4Namespace, _objData=UmlObjectData [id=6702, uuid={6527593D-CDA0-4903-8ABF-513B14D57D7E}, since=null, name=name, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=IEC61850-7-4:2009A, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,404 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61850_7_4::IEC61850_7_4Namespace, _objData=UmlObjectData [id=3313, uuid={297A50AD-D312-4db9-91AC-4AB583AB4C61}, since=null, name=id, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=IEC61850-7-4, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,404 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61850_7_4::IEC61850_7_4Namespace, _objData=UmlObjectData [id=3314, uuid={57E389F5-DA9F-44fa-BF8F-A75E17BA3A9C}, since=null, name=version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2009, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,404 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61850_7_4::IEC61850_7_4Namespace, _objData=UmlObjectData [id=3315, uuid={371CE8BB-CE62-4896-B315-2FC5882E6E96}, since=null, name=revision, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=A, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,404 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61850_7_4::IEC61850_7_4Namespace, _objData=UmlObjectData [id=3316, uuid={19D2D8C1-58E8-4bb8-A010-3E816E9BB6A7}, since=null, name=date, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2011-08-01, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,404 [main] TRACE ClassBuilder - read from EA: IEC61850_7_4::IEC61850_7_4Namespace +2024-09-08 15:10:00,404 [main] INFO PackageBuilder - processing package Abbreviations (2) ... +2024-09-08 15:10:00,405 [main] ERROR EaTables - [+++ EA ordering problem for 2 class(s) in Abbreviations (manually move back/forth a class to initiate EA internal ordering update!): +, +++ class AbbrTermAny: pos = 0 +, +++ class AbbrTermZ: pos = 0 DUPLICATE +] +2024-09-08 15:10:00,405 [main] TRACE ClassBuilder - Class AbbrTermAny (0 in package Abbreviations) +2024-09-08 15:10:00,405 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abbreviations::AbbrTermAny, _objData=UmlObjectData [id=4656, uuid={DB31AFEA-95CB-4f26-851B-C6845001F6A1}, since=null, name=A, alias=, stereotype=enum, visibility=public, txtDescription='Current', htmlDescription='

Current

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,405 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abbreviations::AbbrTermAny, _objData=UmlObjectData [id=4669, uuid={8FEF349C-B8A3-4472-AA7A-25B33DD6504C}, since=null, name=Alm, alias=, stereotype=enum, visibility=public, txtDescription='Alarm', htmlDescription='

Alarm

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,405 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abbreviations::AbbrTermAny, _objData=UmlObjectData [id=4670, uuid={6802A396-10CF-4962-9B8D-234241010FB0}, since=null, name=Amp, alias=, stereotype=enum, visibility=public, txtDescription='Current non-phase-related', htmlDescription='

Current non-phase-related

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,405 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abbreviations::AbbrTermAny, _objData=UmlObjectData [id=5118, uuid={6D8C6E2C-0BE4-4fa0-84E6-245887A91960}, since=null, name=Z, alias=, stereotype=enum, visibility=public, txtDescription='Impedance', htmlDescription='

Impedance

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,405 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abbreviations::AbbrTermAny, _objData=UmlObjectData [id=5120, uuid={8BE86F70-CEF5-44f5-B0DB-FBF9CFB13D99}, since=null, name=Z1, alias=, stereotype=enum, visibility=public, txtDescription='Positive sequence impedance', htmlDescription='

Positive sequence impedance

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,405 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abbreviations::AbbrTermAny, _objData=UmlObjectData [id=6659, uuid={8D280E43-C576-4d95-935C-6E530468F36F}, since=null, name=aDummy, alias=, stereotype=enum, visibility=public, txtDescription='Dummy lower-case term.', htmlDescription='

Dummy lower-case term.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,406 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abbreviations::AbbrTermAny, _objData=UmlObjectData [id=6660, uuid={B809BFED-578C-4b26-8C61-FED747E2A4DD}, since=null, name=ppm, alias=, stereotype=enum, visibility=public, txtDescription='ppm', htmlDescription='

ppm

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,406 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abbreviations::AbbrTermAny, _objData=UmlObjectData [id=6661, uuid={5C1D9A82-2A47-462d-A1D9-C380BD2030D2}, since=null, name=km, alias=, stereotype=enum, visibility=public, txtDescription='Kilometer', htmlDescription='

Kilometer

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,406 [main] TRACE ClassBuilder - read from EA: Abbreviations::AbbrTermAny +2024-09-08 15:10:00,406 [main] TRACE ClassBuilder - Class AbbrTermZ (0 in package Abbreviations) +2024-09-08 15:10:00,406 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abbreviations::AbbrTermZ, _objData=UmlObjectData [id=5119, uuid={2C408652-0CD1-4f36-9DFA-D77659E3BBEB}, since=null, name=Z0, alias=, stereotype=enum, visibility=public, txtDescription='Zero sequence impedance', htmlDescription='

Zero sequence impedance

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,406 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abbreviations::AbbrTermZ, _objData=UmlObjectData [id=5123, uuid={F07FBC36-F939-4600-ADDC-9CBE7ECE7805}, since=null, name=Zro, alias=, stereotype=enum, visibility=public, txtDescription='Zero sequence method', htmlDescription='

Zero sequence method

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,406 [main] TRACE ClassBuilder - read from EA: Abbreviations::AbbrTermZ +2024-09-08 15:10:00,406 [main] INFO PackageBuilder - processing package DetailedDiagrams (0) ... +2024-09-08 15:10:00,407 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=DetailedDiagrams, _objData=UmlObjectData [id=274, uuid={078C1121-0816-48b8-9FBD-88404F5CB846}, since=null, name=AbbreviationsA-O, alias=, stereotype=, visibility=public, txtDescription='Abbreviations (A-O) used to create names of data objects within logical nodes.', htmlDescription='

Abbreviations (A-O) used to create names of data objects within logical nodes.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,407 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Abbreviations, _depth=3, _eaElementID=3043, _objData=UmlObjectData [id=167, uuid={E0A5EC9F-B83F-4cb0-A4D3-B089CBBF0467}, since=null, name=DetailedDiagrams, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=DetailedDiagrams, _objData=UmlObjectData [id=274, uuid={078C1121-0816-48b8-9FBD-88404F5CB846}, since=null, name=AbbreviationsA-O, alias=, stereotype=, visibility=public, txtDescription='Abbreviations (A-O) used to create names of data objects within logical nodes.', htmlDescription='

Abbreviations (A-O) used to create names of data objects within logical nodes.

'], _portrait=true, _kind=LOGICAL]] +2024-09-08 15:10:00,407 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_4, _depth=2, _eaElementID=2330, _objData=UmlObjectData [id=131, uuid={18FE7477-F22D-4936-90FF-AC0956DBE9EB}, since=null, name=Abbreviations, alias=Abbreviated terms, stereotype=, visibility=public, txtDescription='The following terms are used to build concatenated data object names. For example, ChNum is constructed by using two terms "Ch" which stands for "Channel" and "Num" which stands for "Number". Thus the concatenated name represents a "channel number".', htmlDescription='

The following terms are used to build concatenated data object names. For example, ChNum is constructed by using two terms "Ch" which stands for "Channel" and "Num" which stands for "Number". Thus the concatenated name represents a "channel number".

'], _modelId=58, _selfDependent=false, _classes=2, _childPackages=1] +2024-09-08 15:10:00,407 [main] INFO PackageBuilder - processing package Functions (3) ... +2024-09-08 15:10:00,408 [main] INFO PackageBuilder - processing package ProtectionEq (1) ... +2024-09-08 15:10:00,408 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=ProtectionEq, _objData=UmlObjectData [id=276, uuid={AAE06D8B-8D39-45e1-8B2E-518C8AAB94CC}, since=null, name=ProtectionEq, alias=, stereotype=, visibility=public, txtDescription='Overview of relations between protection functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).', htmlDescription='

Overview of relations between protection functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,408 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = Functions::ProtectionEq->null, _objData=UmlObjectData [id=2796, uuid={5B01DA92-2B41-4efd-9319-7B4B6E111957}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,408 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = Functions::ProtectionEq->null, _objData=UmlObjectData [id=2797, uuid={22C10575-60D8-4d36-9D17-44F610D9BC33}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,409 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2362, uuid={E011FC6A-3D65-49f6-B8DF-958F54773350}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling notes: +- In two cases, we did not create function (RDIR, directional element, and RMXU, differential measurements), but provide dependencies of other functions to the 61850-7-4 RDIR and RMXU directly. +- The supertype "CurrentRelay61850" has been created for the needs of mapping to CIM model only and is ignored for 61850. +- Classes in violet (temporarily) are those that have unicode hex-numbers in their iecRef tag - we'll change the colour to white after the tool gets support for correct displaying of those unicode numbers. +Modelling notes 2: +- PowerOverspeed is called POWS in 61850-5, but has no LN in 61850-7-4. +- Synchrocheck (RSYN, 25) is defined twice in 61850-5 (in P and in R). +- RPSB (PowerSwingBlockingProt) has the same IEEE ref and definition like PPAM (PhaseAngleOrOutOfStepProt).', htmlDescription='

Modelling notes:

  • In two cases, we did not create function (RDIR, directional element, and RMXU, differential measurements), but provide dependencies of other functions to the 61850-7-4 RDIR and RMXU directly.
  • The supertype "CurrentRelay61850" has been created for the needs of mapping to CIM model only and is ignored for 61850.
  • Classes in violet (temporarily) are those that have unicode hex-numbers in their iecRef tag - we'll change the colour to white after the tool gets support for correct displaying of those unicode numbers.

Modelling notes 2:

  • PowerOverspeed is called POWS in 61850-5, but has no LN in 61850-7-4.
  • Synchrocheck (RSYN, 25) is defined twice in 61850-5 (in P and in R).
  • RPSB (PowerSwingBlockingProt) has the same IEEE ref and definition like PPAM (PhaseAngleOrOutOfStepProt).
'], _containingPackage=ProtectionEq, _otherEndName=] +2024-09-08 15:10:00,409 [main] TRACE ClassBuilder - Class BusbarProt (6 in package ProtectionEq) +2024-09-08 15:10:00,409 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = ProtectionEq::BusbarProt->null, _objData=UmlObjectData [id=2888, uuid={666DE986-59DC-40fa-9FF2-C90F6F83395B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,409 [main] TRACE ClassBuilder - read from EA: ProtectionEq::BusbarProt +2024-09-08 15:10:00,409 [main] TRACE ClassBuilder - Class DirectionalProt (12 in package ProtectionEq) +2024-09-08 15:10:00,409 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = ProtectionEq::DirectionalProt->null, _objData=UmlObjectData [id=2876, uuid={1D8C878B-9F8C-4292-A1AD-714B0D1A64F0}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,409 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = ProtectionEq::DirectionalProt->null, _objData=UmlObjectData [id=3401, uuid={EE87DADE-74B8-44be-9DFA-6D6A6425C350}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,409 [main] TRACE ClassBuilder - read from EA: ProtectionEq::DirectionalProt +2024-09-08 15:10:00,410 [main] TRACE ClassBuilder - Class DirectionalPowerProt (13 in package ProtectionEq) +2024-09-08 15:10:00,410 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = ProtectionEq::DirectionalPowerProt->null, _objData=UmlObjectData [id=2872, uuid={DD4B3FA8-B91D-4755-89D6-176AA40B2C8A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,410 [main] TRACE ClassBuilder - read from EA: ProtectionEq::DirectionalPowerProt +2024-09-08 15:10:00,410 [main] TRACE ClassBuilder - Class LineDifferentialProt (23 in package ProtectionEq) +2024-09-08 15:10:00,410 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = ProtectionEq::LineDifferentialProt->null, _objData=UmlObjectData [id=2849, uuid={DA0D3EC5-D7E4-421c-B2B4-821CAC8B845A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,410 [main] TRACE ClassBuilder - read from EA: ProtectionEq::LineDifferentialProt +2024-09-08 15:10:00,410 [main] TRACE ClassBuilder - Class PowerFactorProt (32 in package ProtectionEq) +2024-09-08 15:10:00,410 [main] TRACE ClassBuilder - read from EA: ProtectionEq::PowerFactorProt +2024-09-08 15:10:00,412 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Functions, _depth=3, _eaElementID=2361, _objData=UmlObjectData [id=133, uuid={CC31C623-D0D5-4dd4-9355-2765A359BC33}, since=null, name=ProtectionEq, alias=Protection functions, stereotype=, visibility=public, txtDescription='IEC61850-7-4: groups P, R. +IEC61850-5: clause 8.7.1, 8.7.2.', htmlDescription='

IEC61850-7-4: groups P, R.

IEC61850-5: clause 8.7.1, 8.7.2.

'], _modelId=58, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2362, uuid={E011FC6A-3D65-49f6-B8DF-958F54773350}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling notes: +- In two cases, we did not create function (RDIR, directional element, and RMXU, differential measurements), but provide dependencies of other functions to the 61850-7-4 RDIR and RMXU directly. +- The supertype "CurrentRelay61850" has been created for the needs of mapping to CIM model only and is ignored for 61850. +- Classes in violet (temporarily) are those that have unicode hex-numbers in their iecRef tag - we'll change the colour to white after the tool gets support for correct displaying of those unicode numbers. +Modelling notes 2: +- PowerOverspeed is called POWS in 61850-5, but has no LN in 61850-7-4. +- Synchrocheck (RSYN, 25) is defined twice in 61850-5 (in P and in R). +- RPSB (PowerSwingBlockingProt) has the same IEEE ref and definition like PPAM (PhaseAngleOrOutOfStepProt).', htmlDescription='

Modelling notes:

  • In two cases, we did not create function (RDIR, directional element, and RMXU, differential measurements), but provide dependencies of other functions to the 61850-7-4 RDIR and RMXU directly.
  • The supertype "CurrentRelay61850" has been created for the needs of mapping to CIM model only and is ignored for 61850.
  • Classes in violet (temporarily) are those that have unicode hex-numbers in their iecRef tag - we'll change the colour to white after the tool gets support for correct displaying of those unicode numbers.

Modelling notes 2:

  • PowerOverspeed is called POWS in 61850-5, but has no LN in 61850-7-4.
  • Synchrocheck (RSYN, 25) is defined twice in 61850-5 (in P and in R).
  • RPSB (PowerSwingBlockingProt) has the same IEEE ref and definition like PPAM (PhaseAngleOrOutOfStepProt).
'], _containingPackage=ProtectionEq, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=ProtectionEq, _objData=UmlObjectData [id=276, uuid={AAE06D8B-8D39-45e1-8B2E-518C8AAB94CC}, since=null, name=ProtectionEq, alias=, stereotype=, visibility=public, txtDescription='Overview of relations between protection functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).', htmlDescription='

Overview of relations between protection functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=2, _classes=5 +2024-09-08 15:10:00,412 [main] INFO PackageBuilder - processing package ControlEq (2) ... +2024-09-08 15:10:00,412 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=ControlEq, _objData=UmlObjectData [id=277, uuid={67D0A185-B526-46a0-BD98-E5FF9C802050}, since=null, name=ControlEq, alias=, stereotype=, visibility=public, txtDescription='Overview of relations between control functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).', htmlDescription='

Overview of relations between control functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,412 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = Functions::ControlEq->null, _objData=UmlObjectData [id=2780, uuid={CB8A7C56-CC80-40db-9240-39C0BC8FCF3A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,412 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = Functions::ControlEq->null, _objData=UmlObjectData [id=2781, uuid={BC522B12-05AB-4532-A2CA-EC73B8363658}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,413 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = Functions::ControlEq->null, _objData=UmlObjectData [id=2782, uuid={8390B365-348E-4e04-966A-68665FB8F8F6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,413 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2419, uuid={8B884C42-85F3-4dd6-BE1D-08B251F8B706}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: +61850-5 defines CILO (Interlocking) twice: in P and in C sub-clauses. We keep the more comprehensive (C) definition in one place.', htmlDescription='

Modelling note:

61850-5 defines CILO (Interlocking) twice: in P and in C sub-clauses. We keep the more comprehensive (C) definition in one place.

'], _containingPackage=ControlEq, _otherEndName=] +2024-09-08 15:10:00,413 [main] TRACE ClassBuilder - Class AlarmHandler (0 in package ControlEq) +2024-09-08 15:10:00,413 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = ControlEq::AlarmHandler->null, _objData=UmlObjectData [id=2795, uuid={D1DB0DF8-3CC9-4c3e-84B5-B1A6AFDFB19B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,413 [main] TRACE ClassBuilder - read from EA: ControlEq::AlarmHandler +2024-09-08 15:10:00,413 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Functions, _depth=3, _eaElementID=2418, _objData=UmlObjectData [id=134, uuid={B4C6979B-468E-486a-A2F8-E066A73DABC7}, since=null, name=ControlEq, alias=Control functions, stereotype=, visibility=public, txtDescription='IEC61850-7-4: groups C, A (some P and G). +IEC61850-5: clause 8.8.1, 8.8.3.', htmlDescription='

IEC61850-7-4: groups C, A (some P and G).

IEC61850-5: clause 8.8.1, 8.8.3.

'], _modelId=58, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2419, uuid={8B884C42-85F3-4dd6-BE1D-08B251F8B706}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: +61850-5 defines CILO (Interlocking) twice: in P and in C sub-clauses. We keep the more comprehensive (C) definition in one place.', htmlDescription='

Modelling note:

61850-5 defines CILO (Interlocking) twice: in P and in C sub-clauses. We keep the more comprehensive (C) definition in one place.

'], _containingPackage=ControlEq, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=ControlEq, _objData=UmlObjectData [id=277, uuid={67D0A185-B526-46a0-BD98-E5FF9C802050}, since=null, name=ControlEq, alias=, stereotype=, visibility=public, txtDescription='Overview of relations between control functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).', htmlDescription='

Overview of relations between control functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=3, _classes=1 +2024-09-08 15:10:00,413 [main] INFO PackageBuilder - processing package MeasurementsAndMetering (5) ... +2024-09-08 15:10:00,414 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=MeasurementsAndMetering, _objData=UmlObjectData [id=280, uuid={F63C5BE7-8D4F-4037-A98E-93A41FFE8E55}, since=null, name=MeasurementsAndMetering, alias=, stereotype=, visibility=public, txtDescription='Overview of relations between measurement and metering functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).', htmlDescription='

Overview of relations between measurement and metering functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,414 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = Functions::MeasurementsAndMetering->null, _objData=UmlObjectData [id=2742, uuid={CC5085F3-A137-4156-AC8A-24B9D984F2EC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,414 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2451, uuid={E9622742-71B7-43fd-9AB4-D3130C376E8C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling notes: +- We have split Measurement, Meter, Harmonics and interharmonics, and Environmental measurement into explicit concepts, to make their difference obvious (since they are realised by different LNs). +- In IEC61850-5, power quality functions are a separate clause.', htmlDescription='

Modelling notes:

  • We have split Measurement, Meter, Harmonics and interharmonics, and Environmental measurement into explicit concepts, to make their difference obvious (since they are realised by different LNs).
  • In IEC61850-5, power quality functions are a separate clause.
'], _containingPackage=MeasurementsAndMetering, _otherEndName=] +2024-09-08 15:10:00,414 [main] TRACE ClassBuilder - Class ThreePhaseMeasurement (0 in package MeasurementsAndMetering) +2024-09-08 15:10:00,415 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = MeasurementsAndMetering::ThreePhaseMeasurement->null, _objData=UmlObjectData [id=2748, uuid={58E9D6B7-D856-4627-A9CD-FFB197524811}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,415 [main] TRACE ClassBuilder - read from EA: MeasurementsAndMetering::ThreePhaseMeasurement +2024-09-08 15:10:00,415 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Functions, _depth=3, _eaElementID=2450, _objData=UmlObjectData [id=137, uuid={762C49D7-5396-40df-AF24-E06C6F1D6D68}, since=null, name=MeasurementsAndMetering, alias=Measuring and metering functions, stereotype=, visibility=public, txtDescription='IEC61850-7-4: groups M, Q. +IEC61850-5: clause 8.8.5, 8.8.6.', htmlDescription='

IEC61850-7-4: groups M, Q.

IEC61850-5: clause 8.8.5, 8.8.6.

'], _modelId=58, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2451, uuid={E9622742-71B7-43fd-9AB4-D3130C376E8C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling notes: +- We have split Measurement, Meter, Harmonics and interharmonics, and Environmental measurement into explicit concepts, to make their difference obvious (since they are realised by different LNs). +- In IEC61850-5, power quality functions are a separate clause.', htmlDescription='

Modelling notes:

  • We have split Measurement, Meter, Harmonics and interharmonics, and Environmental measurement into explicit concepts, to make their difference obvious (since they are realised by different LNs).
  • In IEC61850-5, power quality functions are a separate clause.
'], _containingPackage=MeasurementsAndMetering, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=MeasurementsAndMetering, _objData=UmlObjectData [id=280, uuid={F63C5BE7-8D4F-4037-A98E-93A41FFE8E55}, since=null, name=MeasurementsAndMetering, alias=, stereotype=, visibility=public, txtDescription='Overview of relations between measurement and metering functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).', htmlDescription='

Overview of relations between measurement and metering functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=1, _classes=1 +2024-09-08 15:10:00,415 [main] INFO PackageBuilder - processing package SystemWide (6) ... +2024-09-08 15:10:00,415 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=SystemWide, _objData=UmlObjectData [id=281, uuid={A35E2C46-366F-432c-A641-28D8BAD7D922}, since=null, name=SystemWide, alias=, stereotype=, visibility=public, txtDescription='Overview of relations between system-wide functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).', htmlDescription='

Overview of relations between system-wide functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,415 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = Functions::SystemWide->null, _objData=UmlObjectData [id=2730, uuid={D14B5B90-8C79-4598-A45C-DAD660474084}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,415 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = Functions::SystemWide->null, _objData=UmlObjectData [id=2731, uuid={0ABB3171-2EAE-446b-B81C-098AD39433C9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,415 [main] TRACE ClassBuilder - Class LogicalDeviceData (4 in package SystemWide) +2024-09-08 15:10:00,416 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = SystemWide::LogicalDeviceData->null, _objData=UmlObjectData [id=2738, uuid={A065F8ED-0114-4e46-8A81-404C86385F2A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,416 [main] TRACE ClassBuilder - read from EA: SystemWide::LogicalDeviceData +2024-09-08 15:10:00,416 [main] TRACE ClassBuilder - Class PhysicalDeviceData (6 in package SystemWide) +2024-09-08 15:10:00,416 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = SystemWide::PhysicalDeviceData->null, _objData=UmlObjectData [id=2735, uuid={E0D934B8-520F-44c2-9AF8-B3B81C663ABF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,416 [main] TRACE ClassBuilder - read from EA: SystemWide::PhysicalDeviceData +2024-09-08 15:10:00,417 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Functions, _depth=3, _eaElementID=2470, _objData=UmlObjectData [id=138, uuid={26D07281-1EB3-4a50-AB7A-51B9DA70BC2E}, since=null, name=SystemWide, alias=System-wide functions, stereotype=, visibility=public, txtDescription='IEC61850-7-4: group L (some G), annex D. +IEC61850-5: clause 8.9, 8.10, 8.11.', htmlDescription='

IEC61850-7-4: group L (some G), annex D.

IEC61850-5: clause 8.9, 8.10, 8.11.

'], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=SystemWide, _objData=UmlObjectData [id=281, uuid={A35E2C46-366F-432c-A641-28D8BAD7D922}, since=null, name=SystemWide, alias=, stereotype=, visibility=public, txtDescription='Overview of relations between system-wide functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).', htmlDescription='

Overview of relations between system-wide functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=2, _classes=2 +2024-09-08 15:10:00,417 [main] INFO PackageBuilder - processing package PrimaryEq (7) ... +2024-09-08 15:10:00,417 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=PrimaryEq, _objData=UmlObjectData [id=282, uuid={B463DCB4-0C4A-4ce6-8BBB-FFB3955B7D76}, since=null, name=PrimaryEq, alias=, stereotype=, visibility=public, txtDescription='Overview of relations between primary equipment functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).', htmlDescription='

Overview of relations between primary equipment functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,417 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = Functions::PrimaryEq->null, _objData=UmlObjectData [id=2665, uuid={FD1D4851-6E6B-4b6e-B70D-5845E5626820}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,417 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = Functions::PrimaryEq->null, _objData=UmlObjectData [id=2670, uuid={0CE7939E-BB12-453e-A921-2F7AC739D7F0}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,417 [main] ERROR EaTables - [+++ EA ordering problem for 2 class(s) in PrimaryEq (manually move back/forth a class to initiate EA internal ordering update!): +, +++ class AuxiliaryNetwork: pos = 0 +, +++ class GenericIO: pos = 0 DUPLICATE +] +2024-09-08 15:10:00,418 [main] TRACE ClassBuilder - Class AuxiliaryNetwork (0 in package PrimaryEq) +2024-09-08 15:10:00,418 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = PrimaryEq::AuxiliaryNetwork->null, _objData=UmlObjectData [id=2727, uuid={71C8F66D-33AE-4d0c-8B16-EE0E777397A2}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,418 [main] TRACE ClassBuilder - read from EA: PrimaryEq::AuxiliaryNetwork +2024-09-08 15:10:00,418 [main] TRACE ClassBuilder - Class GenericIO (0 in package PrimaryEq) +2024-09-08 15:10:00,418 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = PrimaryEq::GenericIO->null, _objData=UmlObjectData [id=2713, uuid={974BA3EA-23AA-4b70-8964-EA8FD90B4327}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,418 [main] TRACE ClassBuilder - read from EA: PrimaryEq::GenericIO +2024-09-08 15:10:00,418 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Functions, _depth=3, _eaElementID=2483, _objData=UmlObjectData [id=139, uuid={B932ABA6-66E2-4b24-999D-953BAB28FBE0}, since=null, name=PrimaryEq, alias=Primary equipment functions, stereotype=, visibility=public, txtDescription='IEC61850-7-4: groups X, S, T, Y, Z. +IEC61850-5: clause 8.12.', htmlDescription='

IEC61850-7-4: groups X, S, T, Y, Z.

IEC61850-5: clause 8.12.

'], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=PrimaryEq, _objData=UmlObjectData [id=282, uuid={B463DCB4-0C4A-4ce6-8BBB-FFB3955B7D76}, since=null, name=PrimaryEq, alias=, stereotype=, visibility=public, txtDescription='Overview of relations between primary equipment functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).', htmlDescription='

Overview of relations between primary equipment functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=2, _classes=2 +2024-09-08 15:10:00,419 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_4, _depth=2, _eaElementID=2360, _objData=UmlObjectData [id=132, uuid={12880302-6F76-4cde-A027-F5E26FE47C00}, since=null, name=Functions, alias=Relationship between this standard and IEC 61850-5, stereotype=, visibility=public, txtDescription='This subclause presents the mappings between the logical nodes defined in IEC61850-5 (as functional requirements) and the concrete logical nodes in this IEC 61850-7-4, in form of table. +The meaning of the table columns is as follows: +- Functionality: Domain concept represented by the function. +- IEEE C37.2: Device function numbers and contact designations used in IEEE C37.2-2008, if applicable. Note that the reference to the IEEE device number does not mean the related device, but its core functionality in the context of the IEC 61850. Because of their device related definition there is not always a 1:1 relation to the function related definition of logical nodes. +- IEC 60617: Alphanumeric representation of graphical symbols according to IEC 60617, if applicable. +- LN IEC 61850-5: "requirements" logical node designation. +- LN IEC 61850-7-4: Standard (concrete) logical node designation. Note that mappings may not be one-to-one. +- Description: slightly modified description of the IEEE device number if applicable, or/and other descriptive text.', htmlDescription='

This subclause presents the mappings between the logical nodes defined in IEC61850-5 (as functional requirements) and the concrete logical nodes in this IEC 61850-7-4, in form of table.

The meaning of the table columns is as follows:

  • Functionality: Domain concept represented by the function.
  • IEEE C37.2: Device function numbers and contact designations used in IEEE C37.2-2008, if applicable. Note that the reference to the IEEE device number does not mean the related device, but its core functionality in the context of the IEC 61850. Because of their device related definition there is not always a 1:1 relation to the function related definition of logical nodes.
  • IEC 60617: Alphanumeric representation of graphical symbols according to IEC 60617, if applicable.
  • LN IEC 61850-5: "requirements" logical node designation.
  • LN IEC 61850-7-4: Standard (concrete) logical node designation. Note that mappings may not be one-to-one.
  • Description: slightly modified description of the IEEE device number if applicable, or/and other descriptive text.
'], _modelId=58, _selfDependent=false, _childPackages=5] +2024-09-08 15:10:00,419 [main] INFO PackageBuilder - processing package DOEnums (4) ... +2024-09-08 15:10:00,419 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=DOEnums, _objData=UmlObjectData [id=284, uuid={9C6AB80C-57AC-4a99-8EE8-D6B0728EF6E9}, since=null, name=DOEnums-1, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the first part of explicit enumerated types defined in 61850-7-4.', htmlDescription='

This diagram shows the first part of explicit enumerated types defined in 61850-7-4.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,420 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_4::DOEnums, _objData=UmlObjectData [id=2611, uuid={8EADFEEC-3679-4f92-938E-AC59BFA38B37}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,420 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2554, uuid={74ED9607-D187-49a7-AC82-2F437068C3F1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Doc says unspecified is default. This must be put on data object that uses it, unless there is an agreement that all first (=1) literals are default.', htmlDescription='

TODO: Doc says unspecified is default. This must be put on data object that uses it, unless there is an agreement that all first (=1) literals are default.

'], _containingPackage=DOEnums, _otherEndName=] +2024-09-08 15:10:00,420 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2555, uuid={7297D74B-7585-4cbe-AE50-BD9A22D99287}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling notes 1: +- In white, the enums for LNs from Ed.1 the way they have been modelled in 2003/2004 (and updated to reflect Ed.2). These concepts appeared in Ed.1 implicitly in section 6 (Data name semantics) of IEC 61850-7-4). The types are used to restrict the possible values that some INT32 attributes of Common Data Classes INS, INC or ING can take. +- In green, new ones from Ed.2. +- We have given meaningful names for types, based on the description. By convention, "Kind" is appended for all enumerated types, to distinguish them from their DA (data attribute) counterparts (this follows CIM naming rules). +- Enumeration literal strings are literally copy-pasted from IEC 61850-7-4 (so they correspond to definitions in SCL2.0). +Modelling notes 2: +- In SCL, EnumType-s are not XML enumerations (i.e., they are not defined as types that restrict string), but rather have an id attribute that mainly refers to the name of attribute that has those literals as possible value range - but not always! (see orCategory, used for orCat attribute). +- SCL defines one element (EnumType) per data object of LN, so there are in some cases two or more EnumType-s with exactly same literals, but different id. +- At present, we store that id attribute in the EA tagged value of enumeration (class). In cases there is repetition, this string will be a comma-separated list of SCL id-s. +- The order of types in the diagrams and in the EA project browser is the one as in Ed.2 Annex H, to be able to compare the original with this model.', htmlDescription='

Modelling notes 1:

  • In white, the enums for LNs from Ed.1 the way they have been modelled in 2003/2004 (and updated to reflect Ed.2). These concepts appeared in Ed.1 implicitly in section 6 (Data name semantics) of IEC 61850-7-4). The types are used to restrict the possible values that some INT32 attributes of Common Data Classes INS, INC or ING can take.
  • In green, new ones from Ed.2.
  • We have given meaningful names for types, based on the description. By convention, "Kind" is appended for all enumerated types, to distinguish them from their DA (data attribute) counterparts (this follows CIM naming rules).
  • Enumeration literal strings are literally copy-pasted from IEC 61850-7-4 (so they correspond to definitions in SCL2.0).

Modelling notes 2:

  • In SCL, EnumType-s are not XML enumerations (i.e., they are not defined as types that restrict string), but rather have an id attribute that mainly refers to the name of attribute that has those literals as possible value range - but not always! (see orCategory, used for orCat attribute).
  • SCL defines one element (EnumType) per data object of LN, so there are in some cases two or more EnumType-s with exactly same literals, but different id.
  • At present, we store that id attribute in the EA tagged value of enumeration (class). In cases there is repetition, this string will be a comma-separated list of SCL id-s.
  • The order of types in the diagrams and in the EA project browser is the one as in Ed.2 Annex H, to be able to compare the original with this model.
'], _containingPackage=DOEnums, _otherEndName=] +2024-09-08 15:10:00,421 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2556, uuid={63CF33D2-A70F-4049-98D4-82A4BA7BBB2D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: duplicate type for Mod and Beh - we use this one.', htmlDescription='

TODO: duplicate type for Mod and Beh - we use this one.

'], _containingPackage=DOEnums, _otherEndName=] +2024-09-08 15:10:00,421 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2563, uuid={02F8EA97-A4A4-4a9e-AEB0-D11FCFDD6540}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='[wg10-0234] 2 enums: CycTrMod (with first 3 literals, in text) and TrMod (with all 4 literals, using numbers). Here is single enum, like TrMod. Do we however need the two?', htmlDescription='

[wg10-0234] 2 enums: CycTrMod (with first 3 literals, in text) and TrMod (with all 4 literals, using numbers). Here is single enum, like TrMod. Do we however need the two?

'], _containingPackage=DOEnums, _otherEndName=] +2024-09-08 15:10:00,421 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2615, uuid={A6F875C8-26D2-4bf0-A5B5-DA541B8C9205}, since=null, name=$diagram://{0D26B081-293D-4b46-BF1C-0EDBD3055405}, alias=, stereotype=, visibility=public, txtDescription='DOEnums :DOEnums-3', htmlDescription='

DOEnums :DOEnums-3

'], _containingPackage=DOEnums, _otherEndName=] +2024-09-08 15:10:00,421 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2617, uuid={FA4722F2-B1BD-4ffd-9207-CD9D874F6B06}, since=null, name=LogicalNodeEnums :DOEnums-2, alias=, stereotype=, visibility=public, txtDescription='DOEnums :DOEnums-2', htmlDescription='

DOEnums :DOEnums-2

'], _containingPackage=DOEnums, _otherEndName=] +2024-09-08 15:10:00,421 [main] TRACE ClassBuilder - Class HealthKind (1 in package DOEnums) +2024-09-08 15:10:00,421 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::HealthKind, _objData=UmlObjectData [id=5150, uuid={A83AE529-BD5E-4590-BA53-C4365C995224}, since=null, name=Ok, alias=, stereotype=enum, visibility=public, txtDescription='No problems, normal operation ("green").', htmlDescription='

No problems, normal operation ("green").

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,421 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::HealthKind, _objData=UmlObjectData [id=5151, uuid={CF205A3A-45F4-4a4d-A415-331FD7BBA2F4}, since=null, name=Warning, alias=, stereotype=enum, visibility=public, txtDescription='Minor problems, but in safe operating mode ("yellow"). The exact meaning is a local issue, depending on the dedicated function/device.', htmlDescription='

Minor problems, but in safe operating mode ("yellow"). The exact meaning is a local issue, depending on the dedicated function/device.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,421 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::HealthKind, _objData=UmlObjectData [id=5152, uuid={4F6F1D0C-B192-4e03-9C10-90B88DC99D90}, since=null, name=Alarm, alias=, stereotype=enum, visibility=public, txtDescription='Severe problem, no operation possible ("red").', htmlDescription='

Severe problem, no operation possible ("red").

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,421 [main] TRACE ClassBuilder - read from EA: DOEnums::HealthKind +2024-09-08 15:10:00,421 [main] TRACE ClassBuilder - Class BehaviourModeKind (2 in package DOEnums) +2024-09-08 15:10:00,422 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::BehaviourModeKind, _objData=UmlObjectData [id=5124, uuid={FBE701F9-FCE5-43bf-B990-08ABA81BB67E}, since=null, name=on, alias=, stereotype=enum, visibility=public, txtDescription='Normal enabled state.', htmlDescription='

Normal enabled state.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,422 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::BehaviourModeKind, _objData=UmlObjectData [id=5125, uuid={0A9F8C1A-93E4-4d68-98D2-F4CED3D13B60}, since=null, name=on-blocked, alias=, stereotype=enum, visibility=public, txtDescription='Process is passively supervised.', htmlDescription='

Process is passively supervised.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,422 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::BehaviourModeKind, _objData=UmlObjectData [id=5126, uuid={7F0E8F8E-38F6-4195-A912-64FEF394A338}, since=null, name=test, alias=, stereotype=enum, visibility=public, txtDescription='Function is operated but results are indicated as test results.', htmlDescription='

Function is operated but results are indicated as test results.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,422 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::BehaviourModeKind, _objData=UmlObjectData [id=5127, uuid={004E6B35-666A-4bfc-8D09-A8C1FD0702F9}, since=null, name=test/blocked, alias=, stereotype=enum, visibility=public, txtDescription='Function is operated in test mode, but with no impact to the process.', htmlDescription='

Function is operated in test mode, but with no impact to the process.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,422 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::BehaviourModeKind, _objData=UmlObjectData [id=5128, uuid={AE0B2E23-E3AA-4aa8-96DD-5F008D2B4BD4}, since=null, name=off, alias=, stereotype=enum, visibility=public, txtDescription='Function is inactive but shows its configutation capability.', htmlDescription='

Function is inactive but shows its configutation capability.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=5, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,422 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2230, uuid={5B51D714-7804-407c-B205-E3D76E9400BC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=BehaviourModeKind, _otherEndName=?] +2024-09-08 15:10:00,422 [main] TRACE ClassBuilder - read from EA: DOEnums::BehaviourModeKind +2024-09-08 15:10:00,422 [main] TRACE ClassBuilder - Class CalcMethodKind (3 in package DOEnums) +2024-09-08 15:10:00,422 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::CalcMethodKind, _objData=UmlObjectData [id=5140, uuid={87CA6D1D-F8DE-4372-B851-A3F4D44A8D35}, since=null, name=UNSPECIFIED, alias=, stereotype=enum, visibility=public, txtDescription='Calculation of the analogue values is unspecified.', htmlDescription='

Calculation of the analogue values is unspecified.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,422 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::CalcMethodKind, _objData=UmlObjectData [id=5141, uuid={2832380C-E2BE-4076-B474-EE7315763D96}, since=null, name=TRUE_RMS, alias=, stereotype=enum, visibility=public, txtDescription='All analogue values are true r.m.s. values.', htmlDescription='

All analogue values are true r.m.s. values.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,423 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::CalcMethodKind, _objData=UmlObjectData [id=5142, uuid={F494300E-3B37-4f28-AF4A-AC4A3784781F}, since=null, name=PEAK_FUNDAMENTAL, alias=, stereotype=enum, visibility=public, txtDescription='All analogue values are peak fundamental values.', htmlDescription='

All analogue values are peak fundamental values.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,423 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::CalcMethodKind, _objData=UmlObjectData [id=5143, uuid={38FEAC7E-C6FE-4f27-AEB7-D39E85819FD9}, since=null, name=RMS_FUNDAMENTAL, alias=, stereotype=enum, visibility=public, txtDescription='All analogue values are r.m.s. fundamental values.', htmlDescription='

All analogue values are r.m.s. fundamental values.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,423 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::CalcMethodKind, _objData=UmlObjectData [id=5144, uuid={8EBEABA5-8967-4617-B131-6C656E5EFF56}, since=null, name=MIN, alias=, stereotype=enum, visibility=public, txtDescription='All analogue values are minimum values.', htmlDescription='

All analogue values are minimum values.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=5, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,423 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::CalcMethodKind, _objData=UmlObjectData [id=5145, uuid={48DA99EC-341A-48ca-9BD6-A5EA5E0DCEAE}, since=null, name=MAX, alias=, stereotype=enum, visibility=public, txtDescription='All analogue values are maximum values.', htmlDescription='

All analogue values are maximum values.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=6, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,423 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::CalcMethodKind, _objData=UmlObjectData [id=5146, uuid={44A310C3-A4A1-45ec-83E3-6107258DCADF}, since=null, name=AVG, alias=, stereotype=enum, visibility=public, txtDescription='All analogue values are average values.', htmlDescription='

All analogue values are average values.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=7, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,423 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::CalcMethodKind, _objData=UmlObjectData [id=5147, uuid={2F61A346-3145-4484-9149-9336128EC27E}, since=null, name=SDV, alias=, stereotype=enum, visibility=public, txtDescription='All analogue values are standard deviation values.', htmlDescription='

All analogue values are standard deviation values.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=8, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,423 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::CalcMethodKind, _objData=UmlObjectData [id=5148, uuid={F821777C-260D-4104-98BC-C4E6AD190C1B}, since=null, name=PREDICTION, alias=, stereotype=enum, visibility=public, txtDescription='All analogue values are long term changes over time.', htmlDescription='

All analogue values are long term changes over time.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=9, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,423 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::CalcMethodKind, _objData=UmlObjectData [id=5149, uuid={E98D045F-FE91-4988-8050-38490C7BD699}, since=null, name=RATE, alias=, stereotype=enum, visibility=public, txtDescription='All analogue values are actual changes over time calculated with the actual and previous value.', htmlDescription='

All analogue values are actual changes over time calculated with the actual and previous value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=10, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,423 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2229, uuid={FD4FE164-EB08-407d-ACA5-F90EAEBAE239}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=CalcMethodKind, _otherEndName=?] +2024-09-08 15:10:00,423 [main] TRACE ClassBuilder - read from EA: DOEnums::CalcMethodKind +2024-09-08 15:10:00,423 [main] TRACE ClassBuilder - Class BaseKind (4 in package DOEnums) +2024-09-08 15:10:00,423 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::BaseKind, _objData=UmlObjectData [id=6714, uuid={F0BE5AD0-3D10-4ed4-A903-F7D80769B82C}, since=null, name=bk1, alias=, stereotype=enum, visibility=public, txtDescription='Desc bk1.', htmlDescription='

Desc bk1.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,424 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::BaseKind, _objData=UmlObjectData [id=6715, uuid={D90B7F5B-CF15-4f40-9C36-09BB31D926B2}, since=null, name=bk2, alias=, stereotype=enum, deprecated, visibility=public, txtDescription='Desc bk2.', htmlDescription='

Desc bk2.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,424 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::BaseKind, _objData=UmlObjectData [id=6716, uuid={910C7B3B-F66D-4965-B8C2-F0684BB5DA40}, since=null, name=bk3, alias=, stereotype=enum, visibility=public, txtDescription='Desc bk3.', htmlDescription='

Desc bk3.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,424 [main] TRACE ClassBuilder - read from EA: DOEnums::BaseKind +2024-09-08 15:10:00,425 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_4, _depth=2, _eaElementID=2549, _objData=UmlObjectData [id=141, uuid={C8A5511C-BE78-4e37-8AB0-DB3EB55BEAA0}, since=null, name=DOEnums, alias=, stereotype=, visibility=public, txtDescription='This subclause contains explicit definition of enumerated types used in 61850-7-4.', htmlDescription='

This subclause contains explicit definition of enumerated types used in 61850-7-4.

'], _modelId=58, _selfDependent=false, 1_taggedValues{dummyPackageTag=tagValue}, 6_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2554, uuid={74ED9607-D187-49a7-AC82-2F437068C3F1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Doc says unspecified is default. This must be put on data object that uses it, unless there is an agreement that all first (=1) literals are default.', htmlDescription='

TODO: Doc says unspecified is default. This must be put on data object that uses it, unless there is an agreement that all first (=1) literals are default.

'], _containingPackage=DOEnums, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2555, uuid={7297D74B-7585-4cbe-AE50-BD9A22D99287}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling notes 1: +- In white, the enums for LNs from Ed.1 the way they have been modelled in 2003/2004 (and updated to reflect Ed.2). These concepts appeared in Ed.1 implicitly in section 6 (Data name semantics) of IEC 61850-7-4). The types are used to restrict the possible values that some INT32 attributes of Common Data Classes INS, INC or ING can take. +- In green, new ones from Ed.2. +- We have given meaningful names for types, based on the description. By convention, "Kind" is appended for all enumerated types, to distinguish them from their DA (data attribute) counterparts (this follows CIM naming rules). +- Enumeration literal strings are literally copy-pasted from IEC 61850-7-4 (so they correspond to definitions in SCL2.0). +Modelling notes 2: +- In SCL, EnumType-s are not XML enumerations (i.e., they are not defined as types that restrict string), but rather have an id attribute that mainly refers to the name of attribute that has those literals as possible value range - but not always! (see orCategory, used for orCat attribute). +- SCL defines one element (EnumType) per data object of LN, so there are in some cases two or more EnumType-s with exactly same literals, but different id. +- At present, we store that id attribute in the EA tagged value of enumeration (class). In cases there is repetition, this string will be a comma-separated list of SCL id-s. +- The order of types in the diagrams and in the EA project browser is the one as in Ed.2 Annex H, to be able to compare the original with this model.', htmlDescription='

Modelling notes 1:

  • In white, the enums for LNs from Ed.1 the way they have been modelled in 2003/2004 (and updated to reflect Ed.2). These concepts appeared in Ed.1 implicitly in section 6 (Data name semantics) of IEC 61850-7-4). The types are used to restrict the possible values that some INT32 attributes of Common Data Classes INS, INC or ING can take.
  • In green, new ones from Ed.2.
  • We have given meaningful names for types, based on the description. By convention, "Kind" is appended for all enumerated types, to distinguish them from their DA (data attribute) counterparts (this follows CIM naming rules).
  • Enumeration literal strings are literally copy-pasted from IEC 61850-7-4 (so they correspond to definitions in SCL2.0).

Modelling notes 2:

  • In SCL, EnumType-s are not XML enumerations (i.e., they are not defined as types that restrict string), but rather have an id attribute that mainly refers to the name of attribute that has those literals as possible value range - but not always! (see orCategory, used for orCat attribute).
  • SCL defines one element (EnumType) per data object of LN, so there are in some cases two or more EnumType-s with exactly same literals, but different id.
  • At present, we store that id attribute in the EA tagged value of enumeration (class). In cases there is repetition, this string will be a comma-separated list of SCL id-s.
  • The order of types in the diagrams and in the EA project browser is the one as in Ed.2 Annex H, to be able to compare the original with this model.
'], _containingPackage=DOEnums, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2556, uuid={63CF33D2-A70F-4049-98D4-82A4BA7BBB2D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: duplicate type for Mod and Beh - we use this one.', htmlDescription='

TODO: duplicate type for Mod and Beh - we use this one.

'], _containingPackage=DOEnums, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2563, uuid={02F8EA97-A4A4-4a9e-AEB0-D11FCFDD6540}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='[wg10-0234] 2 enums: CycTrMod (with first 3 literals, in text) and TrMod (with all 4 literals, using numbers). Here is single enum, like TrMod. Do we however need the two?', htmlDescription='

[wg10-0234] 2 enums: CycTrMod (with first 3 literals, in text) and TrMod (with all 4 literals, using numbers). Here is single enum, like TrMod. Do we however need the two?

'], _containingPackage=DOEnums, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2615, uuid={A6F875C8-26D2-4bf0-A5B5-DA541B8C9205}, since=null, name=$diagram://{0D26B081-293D-4b46-BF1C-0EDBD3055405}, alias=, stereotype=, visibility=public, txtDescription='DOEnums :DOEnums-3', htmlDescription='

DOEnums :DOEnums-3

'], _containingPackage=DOEnums, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2617, uuid={FA4722F2-B1BD-4ffd-9207-CD9D874F6B06}, since=null, name=LogicalNodeEnums :DOEnums-2, alias=, stereotype=, visibility=public, txtDescription='DOEnums :DOEnums-2', htmlDescription='

DOEnums :DOEnums-2

'], _containingPackage=DOEnums, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=DOEnums, _objData=UmlObjectData [id=284, uuid={9C6AB80C-57AC-4a99-8EE8-D6B0728EF6E9}, since=null, name=DOEnums-1, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the first part of explicit enumerated types defined in 61850-7-4.', htmlDescription='

This diagram shows the first part of explicit enumerated types defined in 61850-7-4.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsTarget=1, _classes=4 +2024-09-08 15:10:00,425 [main] INFO PackageBuilder - processing package DerivedDAs (5) ... +2024-09-08 15:10:00,425 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=DerivedDAs, _objData=UmlObjectData [id=288, uuid={3E30CA7E-B664-4783-8B11-7F528680EA42}, since=null, name=DerivedDAs, alias=, stereotype=, visibility=public, txtDescription='Shows all enumerated data attributes used for logical nodes, with their superclasses.', htmlDescription='

Shows all enumerated data attributes used for logical nodes, with their superclasses.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,426 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_4::DerivedDAs, _objData=UmlObjectData [id=2559, uuid={6301627D-AA6F-45e6-85D8-0CFA45EC7C23}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,426 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_4::DerivedDAs->IEC61850_7_4::DOEnums, _objData=UmlObjectData [id=2611, uuid={8EADFEEC-3679-4f92-938E-AC59BFA38B37}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,426 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_4::DerivedDAs->IEC61850_7_2::MetaModel, _objData=UmlObjectData [id=2612, uuid={22858E00-8E19-47ff-8008-4F59161AEA7F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,426 [main] ERROR EaTables - [+++ EA ordering problem for 3 class(s) in DerivedDAs (manually move back/forth a class to initiate EA internal ordering update!): +, +++ class BehaviourMode: pos = 0 +, +++ class CalcMethod: pos = 0 DUPLICATE +, +++ class Health: pos = 0 DUPLICATE +] +2024-09-08 15:10:00,426 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2619, uuid={63FEDF68-E3BF-45a0-B4C6-263C42137E2A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: Weekday is defined in 7-3, ImplicitDAs, because it is used both in 7-3 and 7-4.', htmlDescription='

Modelling note: Weekday is defined in 7-3, ImplicitDAs, because it is used both in 7-3 and 7-4.

'], _containingPackage=DerivedDAs, _otherEndName=] +2024-09-08 15:10:00,426 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2666, uuid={523C0E7E-6F3D-4573-8E2D-308095505B6B}, since=null, name=LogicalNodeEnums :DOEnums-1, alias=, stereotype=, visibility=public, txtDescription='DOEnums: DOEnums-1', htmlDescription='

DOEnums: DOEnums-1

'], _containingPackage=DerivedDAs, _otherEndName=] +2024-09-08 15:10:00,426 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2667, uuid={9F29F90E-73EE-4b08-AFB6-D320E69C8939}, since=null, name=LogicalNodeEnums :DOEnums-2, alias=, stereotype=, visibility=public, txtDescription='DOEnums :DOEnums-2', htmlDescription='

DOEnums :DOEnums-2

'], _containingPackage=DerivedDAs, _otherEndName=] +2024-09-08 15:10:00,426 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2668, uuid={D9664C31-D02F-46d1-BC9C-9705402614FA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=DerivedDAs, _otherEndName=] +2024-09-08 15:10:00,426 [main] TRACE ClassBuilder - Class BehaviourMode (0 in package DerivedDAs) +2024-09-08 15:10:00,426 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DerivedDAs::BehaviourMode, _objData=UmlObjectData [id=5360, uuid={9ADCD45E-59E9-45ab-AC04-7BCAD34EE103}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2564, _eaTypeName=BehaviourModeKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,427 [main] DEBUG ClassBuilder - Adding BehaviourMode as subclass of EnumDA +2024-09-08 15:10:00,427 [main] TRACE ClassBuilder - read from EA: DerivedDAs::BehaviourMode +2024-09-08 15:10:00,427 [main] TRACE ClassBuilder - Class CalcMethod (0 in package DerivedDAs) +2024-09-08 15:10:00,427 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DerivedDAs::CalcMethod, _objData=UmlObjectData [id=5363, uuid={5FCE2C6C-5EFA-4fe3-88D2-F747922B4960}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2567, _eaTypeName=CalcMethodKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,427 [main] DEBUG ClassBuilder - Adding CalcMethod as subclass of EnumDA +2024-09-08 15:10:00,427 [main] TRACE ClassBuilder - read from EA: DerivedDAs::CalcMethod +2024-09-08 15:10:00,427 [main] TRACE ClassBuilder - Class Health (0 in package DerivedDAs) +2024-09-08 15:10:00,427 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DerivedDAs::Health, _objData=UmlObjectData [id=5372, uuid={D08C43FA-8B3B-4128-AC21-F8A40BC57CE0}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2568, _eaTypeName=HealthKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,428 [main] DEBUG ClassBuilder - Adding Health as subclass of EnumDA +2024-09-08 15:10:00,428 [main] TRACE ClassBuilder - read from EA: DerivedDAs::Health +2024-09-08 15:10:00,428 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_4, _depth=2, _eaElementID=2618, _objData=UmlObjectData [id=142, uuid={DD10BA94-E28D-4358-9271-2B96FF3A822A}, since=null, name=DerivedDAs, alias=Logical node enumeration data attributes, stereotype=, visibility=public, txtDescription='This package contains enumerated data attributes used for logical nodes. Not explicitly defined in the standard.', htmlDescription='

This package contains enumerated data attributes used for logical nodes. Not explicitly defined in the standard.

'], _modelId=58, _selfDependent=false, 4_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2619, uuid={63FEDF68-E3BF-45a0-B4C6-263C42137E2A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: Weekday is defined in 7-3, ImplicitDAs, because it is used both in 7-3 and 7-4.', htmlDescription='

Modelling note: Weekday is defined in 7-3, ImplicitDAs, because it is used both in 7-3 and 7-4.

'], _containingPackage=DerivedDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2666, uuid={523C0E7E-6F3D-4573-8E2D-308095505B6B}, since=null, name=LogicalNodeEnums :DOEnums-1, alias=, stereotype=, visibility=public, txtDescription='DOEnums: DOEnums-1', htmlDescription='

DOEnums: DOEnums-1

'], _containingPackage=DerivedDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2667, uuid={9F29F90E-73EE-4b08-AFB6-D320E69C8939}, since=null, name=LogicalNodeEnums :DOEnums-2, alias=, stereotype=, visibility=public, txtDescription='DOEnums :DOEnums-2', htmlDescription='

DOEnums :DOEnums-2

'], _containingPackage=DerivedDAs, _otherEndName=], SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2668, uuid={D9664C31-D02F-46d1-BC9C-9705402614FA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=DerivedDAs, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=DerivedDAs, _objData=UmlObjectData [id=288, uuid={3E30CA7E-B664-4783-8B11-7F528680EA42}, since=null, name=DerivedDAs, alias=, stereotype=, visibility=public, txtDescription='Shows all enumerated data attributes used for logical nodes, with their superclasses.', htmlDescription='

Shows all enumerated data attributes used for logical nodes, with their superclasses.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=2, _dependenciesAsTarget=1, _classes=3 +2024-09-08 15:10:00,428 [main] INFO PackageBuilder - processing package DerivedCDCs (6) ... +2024-09-08 15:10:00,428 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=DerivedCDCs, _objData=UmlObjectData [id=289, uuid={CF4B4204-5A58-4f1c-9E61-68920610276D}, since=null, name=DerivedCDCs, alias=, stereotype=, visibility=public, txtDescription='Shows all derived CDCs with their supertypes.', htmlDescription='

Shows all derived CDCs with their supertypes.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,429 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_4::DerivedCDCs, _objData=UmlObjectData [id=2548, uuid={B4AE6551-4F69-4f85-88CD-7F5018FA54F5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,429 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_4::DerivedCDCs->IEC61850_7_3::CommonDataClasses, _objData=UmlObjectData [id=2557, uuid={95185C57-90F7-4989-93BB-36A01651B273}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,429 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_4::DerivedCDCs->IEC61850_7_3::DAEnums, _objData=UmlObjectData [id=2558, uuid={8E80EB80-DCE3-4c3d-B7B7-BA538068A4E4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,429 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_4::DerivedCDCs->IEC61850_7_4::DerivedDAs, _objData=UmlObjectData [id=2559, uuid={6301627D-AA6F-45e6-85D8-0CFA45EC7C23}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,429 [main] ERROR EaTables - [+++ EA ordering problem for 9 class(s) in DerivedCDCs (manually move back/forth a class to initiate EA internal ordering update!): +, +++ class ACTTransient: pos = 1 +, +++ class ENCBehaviourMode: pos = 3 +, +++ class ENGCalcMethod: pos = 7 +, +++ class ENSBehaviourMode: pos = 37 +, +++ class ENSHealth: pos = 42 +, +++ class SPCTransient: pos = 50 +, +++ class SPSTransient: pos = 51 +, +++ class EXYBehaviourMode: pos = 0 +, +++ class ENSEnumDA: pos = 0 DUPLICATE +] +2024-09-08 15:10:00,429 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2670, uuid={D5D49DAF-81EF-48d7-A8B6-7484F8365345}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note 1: All enumerated CDCs could have been modelled in UML as parameterized types, with the parameters for (in case of ENS) 'stVal' and 'subVal' attributes being 'BOOLEAN', 'DpStatus' and 'INT32U', respectively. We have chosen not to do it, because: +- It would be impossible to 'nicely' represent the native IEC 61850-7-3 types +- Parameterisation in UML is somewhat "exotic" concept and pretty clumsy to use, and we preferred keeping the model simple. +Modelling note 2: In white, the enum and transient CDCs from Ed.1 the way we have modelled them. In green, new ones from Ed.2.', htmlDescription='

Modelling note 1: All enumerated CDCs could have been modelled in UML as parameterized types, with the parameters for (in case of ENS) 'stVal' and 'subVal' attributes being 'BOOLEAN', 'DpStatus' and 'INT32U', respectively. We have chosen not to do it, because:

  • It would be impossible to 'nicely' represent the native IEC 61850-7-3 types
  • Parameterisation in UML is somewhat "exotic" concept and pretty clumsy to use, and we preferred keeping the model simple.

Modelling note 2: In white, the enum and transient CDCs from Ed.1 the way we have modelled them. In green, new ones from Ed.2.

'], _containingPackage=DerivedCDCs, _otherEndName=] +2024-09-08 15:10:00,430 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2722, uuid={4DF187B9-1693-4a91-AD3B-6F3DFA5768E4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=DerivedCDCs, _otherEndName=] +2024-09-08 15:10:00,430 [main] TRACE ClassBuilder - Class ACTTransient (1 in package DerivedCDCs) +2024-09-08 15:10:00,430 [main] TRACE ClassBuilder - read from EA: DerivedCDCs::ACTTransient +2024-09-08 15:10:00,430 [main] TRACE ClassBuilder - Class ENCBehaviourMode (3 in package DerivedCDCs) +2024-09-08 15:10:00,431 [main] DEBUG ClassBuilder - Adding ENCBehaviourMode as subclass of ENC +2024-09-08 15:10:00,431 [main] TRACE ClassBuilder - read from EA: DerivedCDCs::ENCBehaviourMode +2024-09-08 15:10:00,431 [main] TRACE ClassBuilder - Class ENGCalcMethod (7 in package DerivedCDCs) +2024-09-08 15:10:00,431 [main] DEBUG ClassBuilder - Adding ENGCalcMethod as subclass of ENG +2024-09-08 15:10:00,431 [main] TRACE ClassBuilder - read from EA: DerivedCDCs::ENGCalcMethod +2024-09-08 15:10:00,431 [main] TRACE ClassBuilder - Class ENSBehaviourMode (37 in package DerivedCDCs) +2024-09-08 15:10:00,431 [main] DEBUG ClassBuilder - Adding ENSBehaviourMode as subclass of ENS +2024-09-08 15:10:00,431 [main] TRACE ClassBuilder - read from EA: DerivedCDCs::ENSBehaviourMode +2024-09-08 15:10:00,431 [main] TRACE ClassBuilder - Class ENSHealth (42 in package DerivedCDCs) +2024-09-08 15:10:00,432 [main] DEBUG ClassBuilder - Adding ENSHealth as subclass of ENS +2024-09-08 15:10:00,432 [main] TRACE ClassBuilder - read from EA: DerivedCDCs::ENSHealth +2024-09-08 15:10:00,432 [main] TRACE ClassBuilder - Class SPCTransient (50 in package DerivedCDCs) +2024-09-08 15:10:00,432 [main] DEBUG ClassBuilder - Adding SPCTransient as subclass of SPC +2024-09-08 15:10:00,432 [main] TRACE ClassBuilder - read from EA: DerivedCDCs::SPCTransient +2024-09-08 15:10:00,432 [main] TRACE ClassBuilder - Class SPSTransient (51 in package DerivedCDCs) +2024-09-08 15:10:00,432 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3466, uuid={0C9FFC4C-2FE1-4b43-ACAE-7B411DBD8398}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=SPSTransient, _otherEndName=?] +2024-09-08 15:10:00,432 [main] TRACE ClassBuilder - read from EA: DerivedCDCs::SPSTransient +2024-09-08 15:10:00,432 [main] TRACE ClassBuilder - Class EXYBehaviourMode (0 in package DerivedCDCs) +2024-09-08 15:10:00,433 [main] DEBUG ClassBuilder - Adding EXYBehaviourMode as subclass of EXY +2024-09-08 15:10:00,433 [main] TRACE ClassBuilder - read from EA: DerivedCDCs::EXYBehaviourMode +2024-09-08 15:10:00,433 [main] TRACE ClassBuilder - Class ENSEnumDA (0 in package DerivedCDCs) +2024-09-08 15:10:00,433 [main] DEBUG ClassBuilder - Adding ENSEnumDA as subclass of ENS +2024-09-08 15:10:00,433 [main] TRACE ClassBuilder - read from EA: DerivedCDCs::ENSEnumDA +2024-09-08 15:10:00,433 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_4, _depth=2, _eaElementID=2669, _objData=UmlObjectData [id=143, uuid={FFA495EF-8CF0-4a81-BB6B-F1A5EEFE9F6E}, since=null, name=DerivedCDCs, alias=, stereotype=, visibility=public, txtDescription='This package contains CDC specialisations through enumeration or transient. Not explicitly defined in the standard.', htmlDescription='

This package contains CDC specialisations through enumeration or transient. Not explicitly defined in the standard.

'], _modelId=58, _selfDependent=false, 2_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2670, uuid={D5D49DAF-81EF-48d7-A8B6-7484F8365345}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note 1: All enumerated CDCs could have been modelled in UML as parameterized types, with the parameters for (in case of ENS) 'stVal' and 'subVal' attributes being 'BOOLEAN', 'DpStatus' and 'INT32U', respectively. We have chosen not to do it, because: +- It would be impossible to 'nicely' represent the native IEC 61850-7-3 types +- Parameterisation in UML is somewhat "exotic" concept and pretty clumsy to use, and we preferred keeping the model simple. +Modelling note 2: In white, the enum and transient CDCs from Ed.1 the way we have modelled them. In green, new ones from Ed.2.', htmlDescription='

Modelling note 1: All enumerated CDCs could have been modelled in UML as parameterized types, with the parameters for (in case of ENS) 'stVal' and 'subVal' attributes being 'BOOLEAN', 'DpStatus' and 'INT32U', respectively. We have chosen not to do it, because:

  • It would be impossible to 'nicely' represent the native IEC 61850-7-3 types
  • Parameterisation in UML is somewhat "exotic" concept and pretty clumsy to use, and we preferred keeping the model simple.

Modelling note 2: In white, the enum and transient CDCs from Ed.1 the way we have modelled them. In green, new ones from Ed.2.

'], _containingPackage=DerivedCDCs, _otherEndName=], SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2722, uuid={4DF187B9-1693-4a91-AD3B-6F3DFA5768E4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=DerivedCDCs, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=DerivedCDCs, _objData=UmlObjectData [id=289, uuid={CF4B4204-5A58-4f1c-9E61-68920610276D}, since=null, name=DerivedCDCs, alias=, stereotype=, visibility=public, txtDescription='Shows all derived CDCs with their supertypes.', htmlDescription='

Shows all derived CDCs with their supertypes.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=3, _dependenciesAsTarget=1, _classes=9 +2024-09-08 15:10:00,433 [main] INFO PackageBuilder - processing package LogicalNodes (7) ... +2024-09-08 15:10:00,433 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=LogicalNodes, _objData=UmlObjectData [id=291, uuid={9C304E21-9AF5-4868-98F3-894BF0B82CA2}, since=null, name=LogicalNodes, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all the logical node groups, with their contents, as well as the abstract logical nodes used by concrete logical nodes from multiple groups. The purpose of abstract logical nodes is to avoid duplication in definition of data objects which are used by multiple concrete logical nodes. Abstract logical nodes are never instantiated; Their attributes are inheritied by concrete logical nodes which are instantiable.', htmlDescription='

This diagram shows all the logical node groups, with their contents, as well as the abstract logical nodes used by concrete logical nodes from multiple groups. The purpose of abstract logical nodes is to avoid duplication in definition of data objects which are used by multiple concrete logical nodes. Abstract logical nodes are never instantiated; Their attributes are inheritied by concrete logical nodes which are instantiable.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,434 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=LogicalNodes, _objData=UmlObjectData [id=290, uuid={13255AEB-A18C-4620-B272-CD274CE0D4D3}, since=null, name=LNRelationToACSI, alias=, stereotype=, visibility=public, txtDescription='All logical node classes defined in this document inherit their structure from the abstract LN class defined in IEC 61850-7-2. The structure comprises the attributes (e.g., name and reference), and the services and applicable control blocks defined in IEC 61850-7-2. Currently, they are all modelled with operations (services). +IEC 61850-7-4 adds data objects as attributes, in order to complete the definition of concrete logical nodes. +The diagram shows also the attributes per type of logical node defined in this document (optional attributes have multiplicity [0..1]. Physical device logical node (LPHD) and Logical device logical node (LLN0) are concrete logical node types. On the contrary, DomainLN is an abstract logical node type (its name is shown in italic), because it serves to define the attributes that shall be inherited by every concrete domain logical node type (e.g., XCBR, PDIS). Having this kind of definition at one place avoids error-prone repeating of these common attributes within the definition of every concrete domain logical node. +Some logical nodes define conditions on one or more data objects. In this diagram, this is the case for LLN0, with the condition "C1"; The definition of condition is available for each data object involved in the condition and refers to Presence conditions introduced in IEC61850-7-3, Clause 5.', htmlDescription='

All logical node classes defined in this document inherit their structure from the abstract LN class defined in IEC 61850-7-2. The structure comprises the attributes (e.g., name and reference), and the services and applicable control blocks defined in IEC 61850-7-2. Currently, they are all modelled with operations (services).

IEC 61850-7-4 adds data objects as attributes, in order to complete the definition of concrete logical nodes.

The diagram shows also the attributes per type of logical node defined in this document (optional attributes have multiplicity [0..1]. Physical device logical node (LPHD) and Logical device logical node (LLN0) are concrete logical node types. On the contrary, DomainLN is an abstract logical node type (its name is shown in italic), because it serves to define the attributes that shall be inherited by every concrete domain logical node type (e.g., XCBR, PDIS). Having this kind of definition at one place avoids error-prone repeating of these common attributes within the definition of every concrete domain logical node.

Some logical nodes define conditions on one or more data objects. In this diagram, this is the case for LLN0, with the condition "C1"; The definition of condition is available for each data object involved in the condition and refers to Presence conditions introduced in IEC61850-7-3, Clause 5.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,434 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_4::LogicalNodes->IEC61850_7_4::DerivedCDCs, _objData=UmlObjectData [id=2548, uuid={B4AE6551-4F69-4f85-88CD-7F5018FA54F5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,434 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_4::LogicalNodes->IEC61850_7_2::MetaModel, _objData=UmlObjectData [id=2549, uuid={8DDA0A46-B4B5-429b-B942-52E274F06ACA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,434 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_4::LogicalNodes->IEC61850_7_3::CommonDataClasses, _objData=UmlObjectData [id=2550, uuid={66DD71D8-83CD-4fb8-A5D8-44AE4E4C3795}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,435 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2724, uuid={D0767D8F-CFB4-484b-B888-3084B98E911B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: Original IEC 61850-7-4 explicitly defines a "Common Logical Node", which inherits from the (abstract) Logical Node, defined in ACSI, and has as subtypes the LLN0 and all the Domain Logical Nodes. It only serves to specify the common mandatory attributes of the subtypes (i.e., of all logical nodes but the LPHD). The "Common Logical Node" specifies also some optional attributes, which are application independent, such as external equipment health and name plate, or operation counters. The standard states that the derived logical nodes can do 3 different things with those optional attributes: +- not inherit them, or, +- inherit them as optional, or, +- inherit them as mandatory. +Therefore, there is no way to show optional attributes at "Common Logical Node" level - they must be (and are in the original standard itself) defined within the concrete logical nodes' definitions. +For the above reasons, this model does not specify the type "Common Logical Node": it simply defines mandatory attributes for both (abstract) DomainLN and (concrete) LLN0. Grouping data objects that are common to several LNs into abstract classes happens at a finer level of granularity.', htmlDescription='

Modelling note: Original IEC 61850-7-4 explicitly defines a "Common Logical Node", which inherits from the (abstract) Logical Node, defined in ACSI, and has as subtypes the LLN0 and all the Domain Logical Nodes. It only serves to specify the common mandatory attributes of the subtypes (i.e., of all logical nodes but the LPHD). The "Common Logical Node" specifies also some optional attributes, which are application independent, such as external equipment health and name plate, or operation counters. The standard states that the derived logical nodes can do 3 different things with those optional attributes:

- not inherit them, or,

- inherit them as optional, or,

- inherit them as mandatory.

Therefore, there is no way to show optional attributes at "Common Logical Node" level - they must be (and are in the original standard itself) defined within the concrete logical nodes' definitions.

For the above reasons, this model does not specify the type "Common Logical Node": it simply defines mandatory attributes for both (abstract) DomainLN and (concrete) LLN0. Grouping data objects that are common to several LNs into abstract classes happens at a finer level of granularity.

'], _containingPackage=LogicalNodes, _otherEndName=] +2024-09-08 15:10:00,435 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2725, uuid={B228C148-1E21-47b2-A886-159F0BE9A50A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='LNMode LDMode LNBeh (read only) LNBeh +XXXX.Mod LLN0.Mod XXXX.Beh Value +on on on 1 +on blocked blocked 2 +on test test 3 +on test/blocked test/blocked 4 +on off off 5 +blocked on blocked 2 +blocked blocked blocked 2 +blocked test test/blocked 4 +blocked test/blocked test/blocked 4 +blocked off off 5 +test on test 3 +test blocked test/blocked 4 +test test test 3 +test test/blocked test/blocked 4 +test off off 5 +test/blocked on test/blocked 4 +test/blocked blocked test/blocked 4 +test/blocked test test/blocked 4 +test/blocked test/blocked test/blocked 4 +test/blocked off off 5 +off on off 5 +off blocked off 5 +off test off 5 +off test/blocked off 5 +off off off 5', htmlDescription='

LNMode LDMode LNBeh (read only) LNBeh

XXXX.Mod LLN0.Mod XXXX.Beh Value

on on on 1

on blocked blocked 2

on test test 3

on test/blocked test/blocked 4

on off off 5

blocked on blocked 2

blocked blocked blocked 2

blocked test test/blocked 4

blocked test/blocked test/blocked 4

blocked off off 5

test on test 3

test blocked test/blocked 4

test test test 3

test test/blocked test/blocked 4

test off off 5

test/blocked on test/blocked 4

test/blocked blocked test/blocked 4

test/blocked test test/blocked 4

test/blocked test/blocked test/blocked 4

test/blocked off off 5

off on off 5

off blocked off 5

off test off 5

off test/blocked off 5

off off off 5

'], _containingPackage=LogicalNodes, _otherEndName=] +2024-09-08 15:10:00,436 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2727, uuid={1E36F7F7-68C3-4b87-8A96-CBE243CB505D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Describe these somehow... +Note: There should be a link between the LLN0 (which is "the data of LD") and all the DomainLNs contained in the LD.', htmlDescription='

TODO: Describe these somehow...

Note: There should be a link between the LLN0 (which is "the data of LD") and all the DomainLNs contained in the LD.

'], _containingPackage=LogicalNodes, _otherEndName=] +2024-09-08 15:10:00,436 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2740, uuid={70BF6490-0829-4499-B3F1-91B1F53AB7E5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=LogicalNodes, _otherEndName=] +2024-09-08 15:10:00,436 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3031, uuid={2B7E85C1-2253-47e1-9F2A-A1A6C3FD8E78}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Only GGIO and MMXU inherit from it in this sample model.', htmlDescription='

Only GGIO and MMXU inherit from it in this sample model.

'], _containingPackage=LogicalNodes, _otherEndName=] +2024-09-08 15:10:00,436 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3081, uuid={728AF8F8-AE9D-44d5-BDC8-10BD5014B6DD}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='SPSTransient has no parents, i.e., it's a badly defined CDC and doesn't get recognised as CDC.', htmlDescription='

SPSTransient has no parents, i.e., it's a badly defined CDC and doesn't get recognised as CDC.

'], _containingPackage=LogicalNodes, _otherEndName=] +2024-09-08 15:10:00,436 [main] TRACE ClassBuilder - Class DomainLN (1 in package LogicalNodes) +2024-09-08 15:10:00,436 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [, _containingClass=DomainLN, _objData=UmlObjectData [id=292, uuid={2BCCF7D7-1651-44c0-B7CA-3083B5307CAB}, since=null, name=Beh, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=STATECHART] +2024-09-08 15:10:00,436 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=STATE_MACHINE, _isConnector=false, _objData=UmlObjectData [id=2729, uuid={67E0C7B2-C75B-4211-AD2A-08F2FA2D9BFD}, since=null, name=behStateMachine, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=DomainLN, _otherEndName=] +2024-09-08 15:10:00,437 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LogicalNodes::DomainLN, _objData=UmlObjectData [id=5404, uuid={BD8EED96-B614-4741-BE24-E8A509A772CF}, since=null, name=NamPlt, alias=, stereotype=, visibility=public, txtDescription='Name plate of the logical node.', htmlDescription='

Name plate of the logical node.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2314, _eaTypeName=LPL, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,437 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LogicalNodes::DomainLN, _objData=UmlObjectData [id=5406, uuid={02A6EFA0-CD2A-44ed-99B7-4440CDC49598}, since=null, name=Health, alias=, stereotype=, visibility=public, txtDescription=''Health.stVal' reflects the state of the logical node related hardware and software. More detailed information related to the source of the problem may be provided by specific attribute of the logical node.', htmlDescription='

'Health.stVal' reflects the state of the logical node related hardware and software. More detailed information related to the source of the problem may be provided by specific attribute of the logical node.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2712, _eaTypeName=ENSHealth, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,437 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LogicalNodes::DomainLN, _objData=UmlObjectData [id=5408, uuid={F3F9E7F6-D65F-49b8-A25D-A6D5B8129BB1}, since=null, name=Mod, alias=, stereotype=, visibility=public, txtDescription=''DomainLN.Mod.ctlVal' is used by operator to initiate the change in the operating mode of the domain logical node. The resulting operating mode is 'DomainLN.Mod.stVal'. Processing of the quality status (q) of the received data is the prerequisite for correct interpretation of 'DomainLN.Mod.stVal'. See statechart diagram 'DomainLN.behStateMachine'.', htmlDescription='

'DomainLN.Mod.ctlVal' is used by operator to initiate the change in the operating mode of the domain logical node. The resulting operating mode is 'DomainLN.Mod.stVal'. Processing of the quality status (q) of the received data is the prerequisite for correct interpretation of 'DomainLN.Mod.stVal'. See statechart diagram 'DomainLN.behStateMachine'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2673, _eaTypeName=ENCBehaviourMode, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,437 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LogicalNodes::DomainLN, _objData=UmlObjectData [id=6644, uuid={7D68988B-2556-4fad-AF56-2801E5AB7EE7}, since=null, name=CntRs, alias=, stereotype=, visibility=public, txtDescription='Dumb DO, of type CMV for testing inheriting statistics-derived presence conditions.', htmlDescription='

Dumb DO, of type CMV for testing inheriting statistics-derived presence conditions.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2266, _eaTypeName=CMV, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,437 [main] DEBUG ClassBuilder - Adding DomainLN as subclass of LNDOM +2024-09-08 15:10:00,437 [main] TRACE ClassBuilder - read from EA: LogicalNodes::DomainLN +2024-09-08 15:10:00,438 [main] TRACE ClassBuilder - Class StatisticsLN (2 in package LogicalNodes) +2024-09-08 15:10:00,438 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LogicalNodes::StatisticsLN, _objData=UmlObjectData [id=5411, uuid={AD8AD979-4412-496c-88CF-BC2F0016F824}, since=null, name=ClcExp, alias=, stereotype=, visibility=public, txtDescription='If 'ClcExp.stVal=true', the calculation period of a statistical logical node has expired.', htmlDescription='

If 'ClcExp.stVal=true', the calculation period of a statistical logical node has expired.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2721, _eaTypeName=SPSTransient, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,438 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LogicalNodes::StatisticsLN, _objData=UmlObjectData [id=5413, uuid={1FE86953-F8BC-4e0b-A301-DD037C26CD2D}, since=null, name=ClcMth, alias=, stereotype=, visibility=public, txtDescription=''ClcMth.setVal' is the kind of statistical calculation, specifying how the data attributes that represent analogue values have been calculated. The calculation method shall be the same for all data objects of the logical node instance. +If the value is 'PEAK_FUNDAMENTAL', angle may be present in a data object of complex measured value type (CMV, such as in WYE, DEL, etc.), otherwise angle is not used (if ‘TRUE_RMS’ and ‘RMS_FUNDAMENTAL’). +The dependent data objects may be meaningless in case the value of 'ClcMth' is 'unspecified'.', htmlDescription='

'ClcMth.setVal' is the kind of statistical calculation, specifying how the data attributes that represent analogue values have been calculated. The calculation method shall be the same for all data objects of the logical node instance.

If the value is 'PEAK_FUNDAMENTAL', angle may be present in a data object of complex measured value type (CMV, such as in WYE, DEL, etc.), otherwise angle is not used (if ‘TRUE_RMS’ and ‘RMS_FUNDAMENTAL’).

The dependent data objects may be meaningless in case the value of 'ClcMth' is 'unspecified'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2677, _eaTypeName=ENGCalcMethod, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,438 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3465, uuid={92732B68-B08E-4ab3-AD99-839A98DABC97}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=StatisticsLN, _otherEndName=?] +2024-09-08 15:10:00,438 [main] DEBUG ClassBuilder - Adding StatisticsLN as subclass of DomainLN +2024-09-08 15:10:00,438 [main] TRACE ClassBuilder - read from EA: LogicalNodes::StatisticsLN +2024-09-08 15:10:00,439 [main] TRACE ClassBuilder - Class EquipmentInterfaceLN (3 in package LogicalNodes) +2024-09-08 15:10:00,439 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LogicalNodes::EquipmentInterfaceLN, _objData=UmlObjectData [id=5423, uuid={9D014151-D573-4c4e-A898-CE2DA3B5BBBA}, since=null, name=EEHealthAlmClc, alias=, stereotype=, visibility=public, txtDescription='(too long name) State of external (electrical, mechanical or communication) equipment to which the logical node is associated.', htmlDescription='

(too long name) State of external (electrical, mechanical or communication) equipment to which the logical node is associated.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2712, _eaTypeName=ENSHealth, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,439 [main] DEBUG ClassBuilder - Adding EquipmentInterfaceLN as subclass of DomainLN +2024-09-08 15:10:00,439 [main] TRACE ClassBuilder - read from EA: LogicalNodes::EquipmentInterfaceLN +2024-09-08 15:10:00,439 [main] INFO PackageBuilder - processing package DocLogicalNodes (0) ... +2024-09-08 15:10:00,439 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=DocLogicalNodes, _objData=UmlObjectData [id=294, uuid={E8779C38-C14E-43db-BEC0-F2F30FA58304}, since=null, name=DocLogicalNodes, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=PACKAGE] +2024-09-08 15:10:00,440 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2742, uuid={895D35A9-B786-4190-99D6-129AB09C66C1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='This recloser state machine is located in LN RREC and operates in association with a LN PTRC and a LN XCBR +Note : only the general protection activation information case has been modeled here (no single phasis activation)', htmlDescription='

This recloser state machine is located in LN RREC and operates in association with a LN PTRC and a LN XCBR

Note : only the general protection activation information case has been modeled here (no single phasis activation)

'], _containingPackage=DocLogicalNodes, _otherEndName=] +2024-09-08 15:10:00,441 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2743, uuid={4F9E02ED-6436-49e1-B435-12225F0317E1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Following the UML tool, for expressing the behaviour into the state chart, the language can be SDL (TAU from IBM Rational), C++ (Rhapsody from IBM rational) and ?? for EA.', htmlDescription='

Following the UML tool, for expressing the behaviour into the state chart, the language can be SDL (TAU from IBM Rational), C++ (Rhapsody from IBM rational) and ?? for EA.

'], _containingPackage=DocLogicalNodes, _otherEndName=] +2024-09-08 15:10:00,441 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2744, uuid={00EAE61D-1D3F-4e6b-A870-98B8669C0163}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='AutoRecSt Aborted', htmlDescription='

AutoRecSt Aborted

'], _containingPackage=DocLogicalNodes, _otherEndName=] +2024-09-08 15:10:00,442 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=DocLogicalNodes, _objData=UmlObjectData [id=293, uuid={FA477B2F-B0CB-40a8-B651-6E46E37A03D0}, since=null, name=RecloserState, alias=, stereotype=, visibility=public, txtDescription='This diagram is an example state machine illustrating some of the data objects of recloser logical node.', htmlDescription='

This diagram is an example state machine illustrating some of the data objects of recloser logical node.

'], _portrait=true, _kind=STATECHART] +2024-09-08 15:10:00,442 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=STATE_MACHINE, _isConnector=false, _objData=UmlObjectData [id=2745, uuid={577A2E6F-0174-4583-BE5E-E6B2837C83C4}, since=null, name=RecloserState, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=DocLogicalNodes, _otherEndName=] +2024-09-08 15:10:00,443 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=LogicalNodes, _depth=3, _eaElementID=2741, _objData=UmlObjectData [id=145, uuid={6C95E1EE-7117-492e-915D-D9984DC2CFB1}, since=null, name=DocLogicalNodes, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=58, _selfDependent=false, 4_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2742, uuid={895D35A9-B786-4190-99D6-129AB09C66C1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='This recloser state machine is located in LN RREC and operates in association with a LN PTRC and a LN XCBR +Note : only the general protection activation information case has been modeled here (no single phasis activation)', htmlDescription='

This recloser state machine is located in LN RREC and operates in association with a LN PTRC and a LN XCBR

Note : only the general protection activation information case has been modeled here (no single phasis activation)

'], _containingPackage=DocLogicalNodes, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2743, uuid={4F9E02ED-6436-49e1-B435-12225F0317E1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Following the UML tool, for expressing the behaviour into the state chart, the language can be SDL (TAU from IBM Rational), C++ (Rhapsody from IBM rational) and ?? for EA.', htmlDescription='

Following the UML tool, for expressing the behaviour into the state chart, the language can be SDL (TAU from IBM Rational), C++ (Rhapsody from IBM rational) and ?? for EA.

'], _containingPackage=DocLogicalNodes, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2744, uuid={00EAE61D-1D3F-4e6b-A870-98B8669C0163}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='AutoRecSt Aborted', htmlDescription='

AutoRecSt Aborted

'], _containingPackage=DocLogicalNodes, _otherEndName=], SkippedBuilder [, _kind=STATE_MACHINE, _isConnector=false, _objData=UmlObjectData [id=2745, uuid={577A2E6F-0174-4583-BE5E-E6B2837C83C4}, since=null, name=RecloserState, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=DocLogicalNodes, _otherEndName=]], 2_diagrams=[DiagramBuilder [_containingPackage=DocLogicalNodes, _objData=UmlObjectData [id=294, uuid={E8779C38-C14E-43db-BEC0-F2F30FA58304}, since=null, name=DocLogicalNodes, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=PACKAGE], DiagramBuilder [_containingPackage=DocLogicalNodes, _objData=UmlObjectData [id=293, uuid={FA477B2F-B0CB-40a8-B651-6E46E37A03D0}, since=null, name=RecloserState, alias=, stereotype=, visibility=public, txtDescription='This diagram is an example state machine illustrating some of the data objects of recloser logical node.', htmlDescription='

This diagram is an example state machine illustrating some of the data objects of recloser logical node.

'], _portrait=true, _kind=STATECHART]] +2024-09-08 15:10:00,443 [main] INFO PackageBuilder - processing package LNGroupL (2) ... +2024-09-08 15:10:00,443 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=LNGroupL, _objData=UmlObjectData [id=295, uuid={332E02C5-1CD4-4f01-914F-089D6CAA1B2B}, since=null, name=LNGroupL, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all logical nodes of this group.', htmlDescription='

This diagram shows all logical nodes of this group.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,443 [main] DEBUG PackageBuilder - Updated target of package dependency DependencyBuilder [_kind=PACKAGE, qName = Functions::SystemWide->LogicalNodes::LNGroupL, _objData=UmlObjectData [id=2730, uuid={D14B5B90-8C79-4598-A45C-DAD660474084}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,445 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3040, uuid={926472AA-E063-4c71-B6F4-E0E19285A547}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='- misplaced (should be in package LNGroupK) +- bad DO name +- using CDC ENS - never use ENS, ENG, ENC in an LN, you must use a derived CDC instead.', htmlDescription='

- misplaced (should be in package LNGroupK)

- bad DO name

- using CDC ENS - never use ENS, ENG, ENC in an LN, you must use a derived CDC instead.

'], _containingPackage=LNGroupL, _otherEndName=] +2024-09-08 15:10:00,445 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3072, uuid={BC4F5403-9311-4498-9D8E-D31A2A2ECFD5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='StatAlmMthClc should be detected as defined but not detected as CDC (SPSTransient is not recognised as CDC).', htmlDescription='

StatAlmMthClc should be detected as defined but not detected as CDC (SPSTransient is not recognised as CDC).

'], _containingPackage=LNGroupL, _otherEndName=] +2024-09-08 15:10:00,445 [main] TRACE ClassBuilder - Class KXYZ (0 in package LNGroupL) +2024-09-08 15:10:00,445 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupL::KXYZ, _objData=UmlObjectData [id=6643, uuid={5F6F358B-D118-4f13-B9C6-A2B2F099FAAD}, since=null, name=TotW, alias=, stereotype=, visibility=public, txtDescription=''TotW.mag.f' is the total real power in a three-phase circuit [W].', htmlDescription='

'TotW.mag.f' is the total real power in a three-phase circuit [W].

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2266, _eaTypeName=CMV, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,445 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupL::KXYZ, _objData=UmlObjectData [id=6662, uuid={14E48849-D4A8-4f20-943F-FE6D90B87DA5}, since=null, name=aDummyAlm, alias=, stereotype=, visibility=public, txtDescription='Whatever (testing lower case DO name).', htmlDescription='

Whatever (testing lower case DO name).

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2266, _eaTypeName=CMV, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,445 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupL::KXYZ, _objData=UmlObjectData [id=6705, uuid={830D0CE1-6AF2-4651-9D80-CBB0ADE6102C}, since=null, name=WrongA, alias=, stereotype=, visibility=public, txtDescription='Misused ENS (or ENG or ENC). Use derived CDC instead.', htmlDescription='

Misused ENS (or ENG or ENC). Use derived CDC instead.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2250, _eaTypeName=ENS, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,445 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupL::KXYZ, _objData=UmlObjectData [id=6706, uuid={BCF2F02E-3F65-4819-9456-55527BBD0571}, since=null, name=CorrectA, alias=, stereotype=, visibility=public, txtDescription='Correctly using derived CDC for enums.', htmlDescription='

Correctly using derived CDC for enums.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=3073, _eaTypeName=ENSEnumDA, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,446 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3425, uuid={FACFBBE4-5FBA-401d-A6A7-D6985D37842E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=KXYZ, _otherEndName=?] +2024-09-08 15:10:00,446 [main] DEBUG ClassBuilder - Adding KXYZ as subclass of DomainLN +2024-09-08 15:10:00,446 [main] TRACE ClassBuilder - read from EA: LNGroupL::KXYZ +2024-09-08 15:10:00,446 [main] TRACE ClassBuilder - Class LPHD (1 in package LNGroupL) +2024-09-08 15:10:00,446 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupL::LPHD, _objData=UmlObjectData [id=5434, uuid={2B188929-F3F0-481e-81FA-33B1F6DDFABE}, since=null, name=PhyHealth, alias=, stereotype=, visibility=public, txtDescription=''PhyHealth.stVal' reflects the state of the physical device related hardware and software.', htmlDescription='

'PhyHealth.stVal' reflects the state of the physical device related hardware and software.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2712, _eaTypeName=ENSHealth, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,446 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupL::LPHD, _objData=UmlObjectData [id=5445, uuid={33F4BBA2-6001-4f56-B6D7-7B166C646FD2}, since=null, name=RsStatAlmMthClc, alias=, stereotype=, visibility=public, txtDescription='(too long name) 'RsStat.ctlVal=true' initiates the resetting of the IED statistics.', htmlDescription='

(too long name) 'RsStat.ctlVal=true' initiates the resetting of the IED statistics.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2720, _eaTypeName=SPCTransient, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,446 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupL::LPHD, _objData=UmlObjectData [id=6704, uuid={F8B2B570-FB4D-461e-AFBB-76B285FC176A}, since=null, name=StatAlmMthClc, alias=, stereotype=, visibility=public, txtDescription='(too long name) 'RsStat.ctlVal=true' initiates the resetting of the IED statistics.', htmlDescription='

(too long name) 'RsStat.ctlVal=true' initiates the resetting of the IED statistics.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2721, _eaTypeName=SPSTransient, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,446 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3454, uuid={8AB0F6F3-2554-4343-80F7-0F7C34C50F94}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=LPHD, _otherEndName=?] +2024-09-08 15:10:00,446 [main] DEBUG ClassBuilder - Adding LPHD as subclass of LNPHD +2024-09-08 15:10:00,446 [main] DEBUG ClassBuilder - Updated target of class dependency DependencyBuilder [_kind=CLASS, qName = SystemWide::PhysicalDeviceData->LNGroupL::LPHD, _objData=UmlObjectData [id=2735, uuid={E0D934B8-520F-44c2-9AF8-B3B81C663ABF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,447 [main] TRACE ClassBuilder - read from EA: LNGroupL::LPHD +2024-09-08 15:10:00,447 [main] TRACE ClassBuilder - Class LLN0 (2 in package LNGroupL) +2024-09-08 15:10:00,447 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupL::LLN0, _objData=UmlObjectData [id=5447, uuid={ABAE4652-FBC7-4033-A5F3-F34D0A7D6805}, since=null, name=NamPlt, alias=, stereotype=, visibility=public, txtDescription='Name plate of the logical device.', htmlDescription='

Name plate of the logical device.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2314, _eaTypeName=LPL, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,447 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupL::LLN0, _objData=UmlObjectData [id=5448, uuid={757A91B5-C931-43d4-8660-F0918821C72E}, since=null, name=Beh, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2707, _eaTypeName=ENSBehaviourMode, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,447 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupL::LLN0, _objData=UmlObjectData [id=5449, uuid={9D65803B-3C9E-4491-B2F7-46597B3A2963}, since=null, name=Health, alias=, stereotype=, visibility=public, txtDescription=''Health.stVal' reflects the state of the logical device related hardware and software. It is derived from the worst (most critical) value of the health attribute of all the domain logical nodes contained in the logical device: 'Health.stVal' = max('DomainLN[i].Health.stVal').', htmlDescription='

'Health.stVal' reflects the state of the logical device related hardware and software. It is derived from the worst (most critical) value of the health attribute of all the domain logical nodes contained in the logical device: 'Health.stVal' = max('DomainLN[i].Health.stVal').

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2712, _eaTypeName=ENSHealth, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,447 [main] DEBUG ClassBuilder - Adding LLN0 as subclass of LN0 +2024-09-08 15:10:00,447 [main] DEBUG ClassBuilder - Updated target of class dependency DependencyBuilder [_kind=CLASS, qName = SystemWide::LogicalDeviceData->LNGroupL::LLN0, _objData=UmlObjectData [id=2738, uuid={A065F8ED-0114-4e46-8A81-404C86385F2A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,447 [main] TRACE ClassBuilder - read from EA: LNGroupL::LLN0 +2024-09-08 15:10:00,447 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=LogicalNodes, _depth=3, _eaElementID=2759, _objData=UmlObjectData [id=146, uuid={094D04C6-6C60-4c07-B2AB-2B62AEE4FA5F}, since=null, name=LNGroupL, alias=System logical nodes, stereotype=, visibility=public, txtDescription='This group of logical nodes defines the system specific information. This includes information related to the physical device (represented by logical node LPHD), which contains the logical devices (represented by logical node LLN0) and the domain specific logical nodes (represented by DomainLN and all the concrete logical nodes, defined in the rest of this clause). This information (e.g., logical node mode control, nameplate information, operation counters) is independent of the application domain.', htmlDescription='

This group of logical nodes defines the system specific information. This includes information related to the physical device (represented by logical node LPHD), which contains the logical devices (represented by logical node LLN0) and the domain specific logical nodes (represented by DomainLN and all the concrete logical nodes, defined in the rest of this clause). This information (e.g., logical node mode control, nameplate information, operation counters) is independent of the application domain.

'], _modelId=58, _selfDependent=false, 2_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3040, uuid={926472AA-E063-4c71-B6F4-E0E19285A547}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='- misplaced (should be in package LNGroupK) +- bad DO name +- using CDC ENS - never use ENS, ENG, ENC in an LN, you must use a derived CDC instead.', htmlDescription='

- misplaced (should be in package LNGroupK)

- bad DO name

- using CDC ENS - never use ENS, ENG, ENC in an LN, you must use a derived CDC instead.

'], _containingPackage=LNGroupL, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3072, uuid={BC4F5403-9311-4498-9D8E-D31A2A2ECFD5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='StatAlmMthClc should be detected as defined but not detected as CDC (SPSTransient is not recognised as CDC).', htmlDescription='

StatAlmMthClc should be detected as defined but not detected as CDC (SPSTransient is not recognised as CDC).

'], _containingPackage=LNGroupL, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=LNGroupL, _objData=UmlObjectData [id=295, uuid={332E02C5-1CD4-4f01-914F-089D6CAA1B2B}, since=null, name=LNGroupL, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all logical nodes of this group.', htmlDescription='

This diagram shows all logical nodes of this group.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsTarget=1, _classes=3 +2024-09-08 15:10:00,447 [main] INFO PackageBuilder - processing package LNGroupC (4) ... +2024-09-08 15:10:00,448 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=LNGroupC, _objData=UmlObjectData [id=297, uuid={13560566-9203-4f26-A29B-B6758F013F1B}, since=null, name=LNGroupC, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all concrete logical nodes of this group, with the supertypes that factor their common attributes.', htmlDescription='

This diagram shows all concrete logical nodes of this group, with the supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,448 [main] DEBUG PackageBuilder - Updated target of package dependency DependencyBuilder [_kind=PACKAGE, qName = Functions::ControlEq->LogicalNodes::LNGroupC, _objData=UmlObjectData [id=2782, uuid={8390B365-348E-4e04-966A-68665FB8F8F6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,449 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3065, uuid={292CA34F-3CFF-4e6a-AB8E-9718E86E1D49}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='tests for constraints', htmlDescription='

tests for constraints

'], _containingPackage=LNGroupC, _otherEndName=] +2024-09-08 15:10:00,449 [main] TRACE ClassBuilder - Class CALH (2 in package LNGroupC) +2024-09-08 15:10:00,449 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupC::CALH, _objData=UmlObjectData [id=5599, uuid={1D7F87B8-C884-44eb-9055-53ED045B2C1C}, since=null, name=GrAlm, alias=, stereotype=, visibility=public, txtDescription='If 'GrAlm.stVal=true', a new group alarm has been activated by one of individual alarms. Group alarm summarises different alarms, as assigned via configuration.', htmlDescription='

If 'GrAlm.stVal=true', a new group alarm has been activated by one of individual alarms. Group alarm summarises different alarms, as assigned via configuration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2248, _eaTypeName=DPS, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,449 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupC::CALH, _objData=UmlObjectData [id=5600, uuid={0C2C7397-C0B9-4d43-8E0B-31F71AA4EA5A}, since=null, name=GrWrn, alias=, stereotype=, visibility=public, txtDescription='If 'GrWrn.stVal=true', a new group warning has been activated by one of individual warnings. Group warning summarises different warnings, as assigned via configuration.', htmlDescription='

If 'GrWrn.stVal=true', a new group warning has been activated by one of individual warnings. Group warning summarises different warnings, as assigned via configuration.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2248, _eaTypeName=DPS, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,449 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupC::CALH, _objData=UmlObjectData [id=6657, uuid={E31E67B3-BB2E-4eca-8A24-56CB50965FEF}, since=null, name=ModBeh, alias=, stereotype=, visibility=public, txtDescription='If 'GrWrn.stVal=true', a new group warning has been activated by one of individual warnings. Group warning summarises different warnings, as assigned via configuration.', htmlDescription='

If 'GrWrn.stVal=true', a new group warning has been activated by one of individual warnings. Group warning summarises different warnings, as assigned via configuration.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=3039, _eaTypeName=ERYBehaviourMode, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,450 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3438, uuid={60D14E81-5B27-492d-9F64-0989F5A0891E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=CALH, _otherEndName=?] +2024-09-08 15:10:00,450 [main] DEBUG ClassBuilder - Adding CALH as subclass of DomainLN +2024-09-08 15:10:00,450 [main] DEBUG ClassBuilder - Updated target of class dependency DependencyBuilder [_kind=CLASS, qName = ControlEq::AlarmHandler->LNGroupC::CALH, _objData=UmlObjectData [id=2795, uuid={D1DB0DF8-3CC9-4c3e-84B5-B1A6AFDFB19B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,450 [main] TRACE ClassBuilder - read from EA: LNGroupC::CALH +2024-09-08 15:10:00,450 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=LogicalNodes, _depth=3, _eaElementID=2784, _objData=UmlObjectData [id=148, uuid={AE0DD6CD-8C31-48ad-A0F4-34012EBFF823}, since=null, name=LNGroupC, alias=Logical nodes for control, stereotype=, visibility=public, txtDescription='This group of logical nodes represents process control functions.', htmlDescription='

This group of logical nodes represents process control functions.

'], _modelId=58, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3065, uuid={292CA34F-3CFF-4e6a-AB8E-9718E86E1D49}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='tests for constraints', htmlDescription='

tests for constraints

'], _containingPackage=LNGroupC, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=LNGroupC, _objData=UmlObjectData [id=297, uuid={13560566-9203-4f26-A29B-B6758F013F1B}, since=null, name=LNGroupC, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all concrete logical nodes of this group, with the supertypes that factor their common attributes.', htmlDescription='

This diagram shows all concrete logical nodes of this group, with the supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsTarget=1, _classes=1 +2024-09-08 15:10:00,450 [main] INFO PackageBuilder - processing package LNGroupG (7) ... +2024-09-08 15:10:00,451 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=LNGroupG, _objData=UmlObjectData [id=300, uuid={CE239FB0-6306-42ea-86F7-B64F0899B487}, since=null, name=LNGroupG, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all concrete logical nodes of this group, with the supertypes that factor their common attributes.', htmlDescription='

This diagram shows all concrete logical nodes of this group, with the supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,451 [main] DEBUG PackageBuilder - Updated target of package dependency DependencyBuilder [_kind=PACKAGE, qName = Functions::PrimaryEq->LogicalNodes::LNGroupG, _objData=UmlObjectData [id=2665, uuid={FD1D4851-6E6B-4b6e-B70D-5845E5626820}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,451 [main] DEBUG PackageBuilder - Updated target of package dependency DependencyBuilder [_kind=PACKAGE, qName = Functions::SystemWide->LogicalNodes::LNGroupG, _objData=UmlObjectData [id=2731, uuid={0ABB3171-2EAE-446b-B81C-098AD39433C9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,451 [main] DEBUG PackageBuilder - Updated target of package dependency DependencyBuilder [_kind=PACKAGE, qName = Functions::ControlEq->LogicalNodes::LNGroupG, _objData=UmlObjectData [id=2780, uuid={CB8A7C56-CC80-40db-9240-39C0BC8FCF3A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,451 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2813, uuid={991272D0-E1F1-46eb-A44A-28072E7E9A37}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- GSAL.OpCntRs is M, all the others are O. Is this intentional?', htmlDescription='

TODO:

  • GSAL.OpCntRs is M, all the others are O. Is this intentional?
'], _containingPackage=LNGroupG, _otherEndName=] +2024-09-08 15:10:00,451 [main] TRACE ClassBuilder - Class GGIO (3 in package LNGroupG) +2024-09-08 15:10:00,452 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupG::GGIO, _objData=UmlObjectData [id=5775, uuid={870B8E8E-1CE1-48a5-B4DF-5EDF733EF7FD}, since=null, name=EEHealth, alias=, stereotype=, visibility=public, txtDescription=''EEHealth.stVal' reflects the state of external (primary) equipment to which the logical node is associated.', htmlDescription='

'EEHealth.stVal' reflects the state of external (primary) equipment to which the logical node is associated.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2712, _eaTypeName=ENSHealth, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,452 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupG::GGIO, _objData=UmlObjectData [id=5782, uuid={A3049550-4E72-4228-8BD0-D2ECA1D9305C}, since=null, name=AnIn, alias=, stereotype=, visibility=public, txtDescription=''AnIn.mag.f' is the generic analogue input n.', htmlDescription='

'AnIn.mag.f' is the generic analogue input n.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2266, _eaTypeName=CMV, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,452 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupG::GGIO, _objData=UmlObjectData [id=5788, uuid={C1C99243-DCC4-48ff-A71B-D0E2B01DA933}, since=null, name=DPCSO, alias=, stereotype=, visibility=public, txtDescription=''DPCSO.ctlVal=true' or 'DPCSO.ctlVal=false' controls the generic double point controllable status output n. The resulting status is 'DPCSO.stVal'.', htmlDescription='

'DPCSO.ctlVal=true' or 'DPCSO.ctlVal=false' controls the generic double point controllable status output n. The resulting status is 'DPCSO.stVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2281, _eaTypeName=DPC, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,452 [main] ERROR ClassBuilder - [+++ EA problem: attr count on GGIO = 3 +, +++ attr EEHealth: pos = 1 +, +++ attr AnIn: pos = 1 DUPLICATE +, +++ attr DPCSO: pos = 2 +] +2024-09-08 15:10:00,453 [main] DEBUG ClassBuilder - Adding GGIO as subclass of StatisticsLN +2024-09-08 15:10:00,453 [main] DEBUG ClassBuilder - Updated target of class dependency DependencyBuilder [_kind=CLASS, qName = PrimaryEq::GenericIO->LNGroupG::GGIO, _objData=UmlObjectData [id=2713, uuid={974BA3EA-23AA-4b70-8964-EA8FD90B4327}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,453 [main] TRACE ClassBuilder - read from EA: LNGroupG::GGIO +2024-09-08 15:10:00,454 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=LogicalNodes, _depth=3, _eaElementID=2811, _objData=UmlObjectData [id=150, uuid={F4FA3C38-E2BE-4ca2-9D34-D8E9E0191F21}, since=null, name=LNGroupG, alias=Logical nodes for generic references, stereotype=, visibility=public, txtDescription='This group of logical nodes is used only for modelling functions without a dedicated logical node with appropriate semantics. Therefore, no description and requirements for the logical nodes of group G are given in IEC 61850-5.', htmlDescription='

This group of logical nodes is used only for modelling functions without a dedicated logical node with appropriate semantics. Therefore, no description and requirements for the logical nodes of group G are given in IEC 61850-5.

'], _modelId=58, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2813, uuid={991272D0-E1F1-46eb-A44A-28072E7E9A37}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- GSAL.OpCntRs is M, all the others are O. Is this intentional?', htmlDescription='

TODO:

  • GSAL.OpCntRs is M, all the others are O. Is this intentional?
'], _containingPackage=LNGroupG, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=LNGroupG, _objData=UmlObjectData [id=300, uuid={CE239FB0-6306-42ea-86F7-B64F0899B487}, since=null, name=LNGroupG, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all concrete logical nodes of this group, with the supertypes that factor their common attributes.', htmlDescription='

This diagram shows all concrete logical nodes of this group, with the supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsTarget=3, _classes=1 +2024-09-08 15:10:00,454 [main] INFO PackageBuilder - processing package LNGroupM (10) ... +2024-09-08 15:10:00,454 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=LNGroupM, _objData=UmlObjectData [id=304, uuid={A2B85C49-4EA0-4bf9-AF07-7DF01DE50BB0}, since=null, name=LNGroupM2, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the second part of concrete logical nodes of this group, with the supertypes that factor their common attributes.', htmlDescription='

This diagram shows the second part of concrete logical nodes of this group, with the supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,454 [main] DEBUG PackageBuilder - Updated target of package dependency DependencyBuilder [_kind=PACKAGE, qName = Functions::MeasurementsAndMetering->LogicalNodes::LNGroupM, _objData=UmlObjectData [id=2742, uuid={CC5085F3-A137-4156-AC8A-24B9D984F2EC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,454 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2843, uuid={20A12C6C-CD49-4de7-9597-70F609138E31}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- MMET.DlDur is duration, name should end with Tm or Tmm, to be consistent?', htmlDescription='

TODO:

  • MMET.DlDur is duration, name should end with Tm or Tmm, to be consistent?
'], _containingPackage=LNGroupM, _otherEndName=] +2024-09-08 15:10:00,455 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2858, uuid={8AFDC6A7-5812-48e1-92DD-570EC5800A88}, since=null, name=LNGroupM : LNGroupM1, alias=, stereotype=, visibility=public, txtDescription='LNGroupM : LNGroupM1', htmlDescription='

LNGroupM : LNGroupM1

'], _containingPackage=LNGroupM, _otherEndName=] +2024-09-08 15:10:00,455 [main] TRACE ClassBuilder - Class MMXU (13 in package LNGroupM) +2024-09-08 15:10:00,455 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupM::MMXU, _objData=UmlObjectData [id=6036, uuid={AB0A2202-6CAE-4f4c-9ADE-E1367D015FD1}, since=null, name=TotW, alias=, stereotype=, visibility=public, txtDescription=''TotW.mag.f' is the total real power in a three-phase circuit [W].', htmlDescription='

'TotW.mag.f' is the total real power in a three-phase circuit [W].

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2266, _eaTypeName=CMV, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,455 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupM::MMXU, _objData=UmlObjectData [id=6044, uuid={70F20DF1-D205-419a-A546-B00A930F4EF1}, since=null, name=A, alias=, stereotype=, visibility=public, txtDescription=''A' holds the currents for three phases.', htmlDescription='

'A' holds the currents for three phases.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2273, _eaTypeName=HWYE, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,455 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupM::MMXU, _objData=UmlObjectData [id=6645, uuid={4261E17B-01F7-4d5c-AD2B-D01366C474C1}, since=null, name=Desc, alias=, stereotype=, visibility=public, txtDescription='Dummy native DO of non-statistical type.', htmlDescription='

Dummy native DO of non-statistical type.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2255, _eaTypeName=HST, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,455 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2154, uuid={5A85C57C-77E4-4ded-B768-59A27D105EFC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=MMXU, _otherEndName=?] +2024-09-08 15:10:00,455 [main] DEBUG ClassBuilder - Adding MMXU as subclass of StatisticsLN +2024-09-08 15:10:00,455 [main] DEBUG ClassBuilder - Updated target of class dependency DependencyBuilder [_kind=CLASS, qName = MeasurementsAndMetering::ThreePhaseMeasurement->LNGroupM::MMXU, _objData=UmlObjectData [id=2748, uuid={58E9D6B7-D856-4627-A9CD-FFB197524811}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,455 [main] TRACE ClassBuilder - read from EA: LNGroupM::MMXU +2024-09-08 15:10:00,455 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=LogicalNodes, _depth=3, _eaElementID=2839, _objData=UmlObjectData [id=153, uuid={7B986191-8A53-43e0-BA3D-04C419D5591D}, since=null, name=LNGroupM, alias=Logical nodes for metering and measurement, stereotype=, visibility=public, txtDescription='This group of logical nodes represents metering and measuring functions.', htmlDescription='

This group of logical nodes represents metering and measuring functions.

'], _modelId=58, _selfDependent=false, 2_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2843, uuid={20A12C6C-CD49-4de7-9597-70F609138E31}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- MMET.DlDur is duration, name should end with Tm or Tmm, to be consistent?', htmlDescription='

TODO:

  • MMET.DlDur is duration, name should end with Tm or Tmm, to be consistent?
'], _containingPackage=LNGroupM, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2858, uuid={8AFDC6A7-5812-48e1-92DD-570EC5800A88}, since=null, name=LNGroupM : LNGroupM1, alias=, stereotype=, visibility=public, txtDescription='LNGroupM : LNGroupM1', htmlDescription='

LNGroupM : LNGroupM1

'], _containingPackage=LNGroupM, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=LNGroupM, _objData=UmlObjectData [id=304, uuid={A2B85C49-4EA0-4bf9-AF07-7DF01DE50BB0}, since=null, name=LNGroupM2, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the second part of concrete logical nodes of this group, with the supertypes that factor their common attributes.', htmlDescription='

This diagram shows the second part of concrete logical nodes of this group, with the supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsTarget=1, _classes=1 +2024-09-08 15:10:00,455 [main] INFO PackageBuilder - processing package LNGroupP (11) ... +2024-09-08 15:10:00,456 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=LNGroupP, _objData=UmlObjectData [id=305, uuid={ABE7863D-71A3-4c74-9C55-17754D2F2757}, since=null, name=LNGroupP1, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the first part of concrete logical nodes of this group, with the supertypes that factor their common attributes.', htmlDescription='

This diagram shows the first part of concrete logical nodes of this group, with the supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,456 [main] DEBUG PackageBuilder - Updated target of package dependency DependencyBuilder [_kind=PACKAGE, qName = Functions::ControlEq->LogicalNodes::LNGroupP, _objData=UmlObjectData [id=2781, uuid={BC522B12-05AB-4532-A2CA-EC73B8363658}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,456 [main] DEBUG PackageBuilder - Updated target of package dependency DependencyBuilder [_kind=PACKAGE, qName = Functions::ProtectionEq->LogicalNodes::LNGroupP, _objData=UmlObjectData [id=2796, uuid={5B01DA92-2B41-4efd-9319-7B4B6E111957}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,457 [main] ERROR EaTables - [+++ EA ordering problem for 5 class(s) in LNGroupP (manually move back/forth a class to initiate EA internal ordering update!): +, +++ class PDISExt: pos = 0 +, +++ class ProtectionLN: pos = 1 +, +++ class PDIF: pos = 10 +, +++ class PDIS: pos = 12 +, +++ class PDF2: pos = 0 DUPLICATE +] +2024-09-08 15:10:00,457 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2869, uuid={6CFEF5A7-49B5-4e9a-BE63-BDB6015512BD}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: PMRI has only Op, PHAR has only Str, and all other Pxxx have both Str and Op. However, they are sometimes O, sometimes M, so it is impossible to extract these two as common attributes into an abstract class...', htmlDescription='

Modelling note: PMRI has only Op, PHAR has only Str, and all other Pxxx have both Str and Op. However, they are sometimes O, sometimes M, so it is impossible to extract these two as common attributes into an abstract class...

'], _containingPackage=LNGroupP, _otherEndName=] +2024-09-08 15:10:00,457 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2914, uuid={2D25BDBB-CCC8-450c-A8DC-8B8D4E627EF9}, since=null, name=LNGroupP : LNGroupP2, alias=, stereotype=, visibility=public, txtDescription='LNGroupP : LNGroupP2', htmlDescription='

LNGroupP : LNGroupP2

'], _containingPackage=LNGroupP, _otherEndName=] +2024-09-08 15:10:00,457 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2915, uuid={3BC40F33-6D62-4df9-B06B-E62A6E08B5AB}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='b)', htmlDescription='

b)

'], _containingPackage=LNGroupP, _otherEndName=] +2024-09-08 15:10:00,458 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2916, uuid={3FFE9196-E649-4890-A5F8-035B7648E2CC}, since=null, name=LNGroupP : Load area and reach settings, alias=, stereotype=, visibility=public, txtDescription='PDIS : Load area and reach settings', htmlDescription='

PDIS : Load area and reach settings

'], _containingPackage=LNGroupP, _otherEndName=] +2024-09-08 15:10:00,458 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2917, uuid={6E282E4F-15CA-4304-AED8-6CB9D129ACE5}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='a)', htmlDescription='

a)

'], _containingPackage=LNGroupP, _otherEndName=] +2024-09-08 15:10:00,458 [main] TRACE ClassBuilder - Class PDISExt (0 in package LNGroupP) +2024-09-08 15:10:00,459 [main] TRACE ClassBuilder - read from EA: LNGroupP::PDISExt +2024-09-08 15:10:00,459 [main] TRACE ClassBuilder - Class ProtectionLN (1 in package LNGroupP) +2024-09-08 15:10:00,459 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupP::ProtectionLN, _objData=UmlObjectData [id=6089, uuid={1F112DF7-7748-4d99-9AD2-FD1D39A5923B}, since=null, name=OpCntRs, alias=, stereotype=, visibility=public, txtDescription=''OpCntRs.stVal' is the count of operations. It can be reset from remote, with the specified new counter value 'OpCntRs.ctlVal', which may be other than 0.', htmlDescription='

'OpCntRs.stVal' is the count of operations. It can be reset from remote, with the specified new counter value 'OpCntRs.ctlVal', which may be other than 0.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2282, _eaTypeName=INC, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,459 [main] DEBUG ClassBuilder - Adding ProtectionLN as subclass of DomainLN +2024-09-08 15:10:00,459 [main] TRACE ClassBuilder - read from EA: LNGroupP::ProtectionLN +2024-09-08 15:10:00,459 [main] TRACE ClassBuilder - Class PDIF (10 in package LNGroupP) +2024-09-08 15:10:00,460 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupP::PDIF, _objData=UmlObjectData [id=6139, uuid={6EDDE740-6CB2-49bd-B85C-F85BBC4D3339}, since=null, name=Str, alias=, stereotype=, visibility=public, txtDescription='If 'Str.general=true', a fault has been detected.', htmlDescription='

If 'Str.general=true', a fault has been detected.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2252, _eaTypeName=ACD, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,460 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupP::PDIF, _objData=UmlObjectData [id=6140, uuid={83CA9289-614E-43d2-B931-EDAA62BA0C42}, since=null, name=Op, alias=, stereotype=, visibility=public, txtDescription='If 'Op.general=true', the function decided to trip. The trip itself is issued by PTRC.', htmlDescription='

If 'Op.general=true', the function decided to trip. The trip itself is issued by PTRC.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2671, _eaTypeName=ACTTransient, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,460 [main] DEBUG ClassBuilder - Adding PDIF as subclass of ProtectionLN +2024-09-08 15:10:00,461 [main] DEBUG ClassBuilder - Updated target of class dependency DependencyBuilder [_kind=CLASS, qName = ProtectionEq::LineDifferentialProt->LNGroupP::PDIF, _objData=UmlObjectData [id=2849, uuid={DA0D3EC5-D7E4-421c-B2B4-821CAC8B845A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,461 [main] DEBUG ClassBuilder - Updated target of class dependency DependencyBuilder [_kind=CLASS, qName = ProtectionEq::BusbarProt->LNGroupP::PDIF, _objData=UmlObjectData [id=2888, uuid={666DE986-59DC-40fa-9FF2-C90F6F83395B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,461 [main] TRACE ClassBuilder - read from EA: LNGroupP::PDIF +2024-09-08 15:10:00,461 [main] TRACE ClassBuilder - Class PDIS (12 in package LNGroupP) +2024-09-08 15:10:00,461 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [, _containingClass=PDIS, _objData=UmlObjectData [id=307, uuid={F295ADA8-766F-49f5-8DF6-BE32D5A00DE9}, since=null, name=Load area and reach settings, alias=, stereotype=, visibility=public, txtDescription='This diagram illustrates settings related to load area (a) and to reach (b).', htmlDescription='

This diagram illustrates settings related to load area (a) and to reach (b).

'], _portrait=true, _kind=CUSTOM] +2024-09-08 15:10:00,461 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2884, uuid={355244D3-5BEA-42d6-8053-57771C13D184}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=PDIS, _otherEndName=] +2024-09-08 15:10:00,461 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2885, uuid={79A7F745-214C-49bf-B038-AB993B6E5572}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=PDIS, _otherEndName=] +2024-09-08 15:10:00,461 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2886, uuid={8B5A2AB3-D18F-478a-8E23-446102C54184}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=PDIS, _otherEndName=] +2024-09-08 15:10:00,461 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupP::PDIS, _objData=UmlObjectData [id=6156, uuid={0D273A67-FAF9-482f-8CB2-72A7096B42D7}, since=null, name=Str, alias=, stereotype=, visibility=public, txtDescription='If 'Str.general=true', a distance fault has been detected.', htmlDescription='

If 'Str.general=true', a distance fault has been detected.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2252, _eaTypeName=ACD, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,461 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupP::PDIS, _objData=UmlObjectData [id=6157, uuid={6F969465-C33F-4910-868B-353A7D2C9A2D}, since=null, name=Op, alias=, stereotype=, visibility=public, txtDescription='If 'Op.general=true', the function decided to trip due to distance fault. The trip itself is issued by PTRC.', htmlDescription='

If 'Op.general=true', the function decided to trip due to distance fault. The trip itself is issued by PTRC.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2671, _eaTypeName=ACTTransient, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,462 [main] DEBUG ClassBuilder - Adding PDIS as subclass of ProtectionLN +2024-09-08 15:10:00,462 [main] DEBUG ClassBuilder - Adding PDIS as superclass of PDISExt +2024-09-08 15:10:00,462 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = LNGroupP::PDIS->null, _objData=UmlObjectData [id=2447, uuid={800FD118-B060-44a3-9247-F3468A78EBF5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,462 [main] DEBUG ClassBuilder - Updated target of class dependency DependencyBuilder [_kind=CLASS, qName = ProtectionEq::DirectionalProt->LNGroupP::PDIS, _objData=UmlObjectData [id=3401, uuid={EE87DADE-74B8-44be-9DFA-6D6A6425C350}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,462 [main] TRACE ClassBuilder - read from EA: LNGroupP::PDIS +2024-09-08 15:10:00,462 [main] TRACE ClassBuilder - Class PDF2 (0 in package LNGroupP) +2024-09-08 15:10:00,462 [main] DEBUG ClassBuilder - Adding PDF2 as subclass of ProtectionLN +2024-09-08 15:10:00,463 [main] TRACE ClassBuilder - read from EA: LNGroupP::PDF2 +2024-09-08 15:10:00,463 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=LogicalNodes, _depth=3, _eaElementID=2860, _objData=UmlObjectData [id=154, uuid={67F071FD-8EE7-474d-85C3-9ECB565EFFDB}, since=null, name=LNGroupP, alias=Logical nodes for protection functions, stereotype=, visibility=public, txtDescription='This group of logical nodes refers to modelling of protection and protection related functions. Follow some modelling remarks. +- If there are several stages to one function (i.e. for multi-zone relay), each stage shall be a separate instance of the LN. Examples are PDIS (n zones) or PTOV (2 stages). +- Multiple instances shall be used if LNs of the same LN class are operating with different settings in parallel. +- If different measuring principles such as phase or ground are required, each shall be represented by an instance of the same basic function. An example is PTOC (used for phase or ground in dedicated instances). +- The logical nodes are defined in IEC 61850-5 from protection requirements (see Table 7), however, for modelling purposes, some logical nodes have been split. +- Logical nodes from IEC 61850-5 are modelled using combinations of the LNs defined in this standard. +- Other logical nodes have been added to model complex protection devices and schemes (see the following subclauses). As an example, line protection uses LN PSCH to combine the outputs from multiple protection LNs. +- The protection functions provide (if applicable) the data object Str (Start) with direction information. In the case of a protection function which provides no direction information, the direction "unknown" shall be transmitted. The data object Str is summarised by LN PTRC. +- If the fault direction is provided in Str (Start), the directional protection may be modelled without the directional element LN RDIR. If any of the settings provided by LN RDIR are needed, the LN RDIR shall be used. +- The protection functions provide (if applicable) the data object Op (Operate) without direction information. The data object Op is conditioned by LN PTRC resulting in the data object Tr (Real Trip), that is between every protection LN and the circuit breaker node XCBR shall be a LN PTRC.', htmlDescription='

This group of logical nodes refers to modelling of protection and protection related functions. Follow some modelling remarks.

  • If there are several stages to one function (i.e. for multi-zone relay), each stage shall be a separate instance of the LN. Examples are PDIS (n zones) or PTOV (2 stages).
  • Multiple instances shall be used if LNs of the same LN class are operating with different settings in parallel.
  • If different measuring principles such as phase or ground are required, each shall be represented by an instance of the same basic function. An example is PTOC (used for phase or ground in dedicated instances).
  • The logical nodes are defined in IEC 61850-5 from protection requirements (see Table 7), however, for modelling purposes, some logical nodes have been split.
  • Logical nodes from IEC 61850-5 are modelled using combinations of the LNs defined in this standard.
  • Other logical nodes have been added to model complex protection devices and schemes (see the following subclauses). As an example, line protection uses LN PSCH to combine the outputs from multiple protection LNs.
  • The protection functions provide (if applicable) the data object Str (Start) with direction information. In the case of a protection function which provides no direction information, the direction "unknown" shall be transmitted. The data object Str is summarised by LN PTRC.
  • If the fault direction is provided in Str (Start), the directional protection may be modelled without the directional element LN RDIR. If any of the settings provided by LN RDIR are needed, the LN RDIR shall be used.
  • The protection functions provide (if applicable) the data object Op (Operate) without direction information. The data object Op is conditioned by LN PTRC resulting in the data object Tr (Real Trip), that is between every protection LN and the circuit breaker node XCBR shall be a LN PTRC.
'], _modelId=58, _selfDependent=false, 5_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2869, uuid={6CFEF5A7-49B5-4e9a-BE63-BDB6015512BD}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: PMRI has only Op, PHAR has only Str, and all other Pxxx have both Str and Op. However, they are sometimes O, sometimes M, so it is impossible to extract these two as common attributes into an abstract class...', htmlDescription='

Modelling note: PMRI has only Op, PHAR has only Str, and all other Pxxx have both Str and Op. However, they are sometimes O, sometimes M, so it is impossible to extract these two as common attributes into an abstract class...

'], _containingPackage=LNGroupP, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2914, uuid={2D25BDBB-CCC8-450c-A8DC-8B8D4E627EF9}, since=null, name=LNGroupP : LNGroupP2, alias=, stereotype=, visibility=public, txtDescription='LNGroupP : LNGroupP2', htmlDescription='

LNGroupP : LNGroupP2

'], _containingPackage=LNGroupP, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2915, uuid={3BC40F33-6D62-4df9-B06B-E62A6E08B5AB}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='b)', htmlDescription='

b)

'], _containingPackage=LNGroupP, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2916, uuid={3FFE9196-E649-4890-A5F8-035B7648E2CC}, since=null, name=LNGroupP : Load area and reach settings, alias=, stereotype=, visibility=public, txtDescription='PDIS : Load area and reach settings', htmlDescription='

PDIS : Load area and reach settings

'], _containingPackage=LNGroupP, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2917, uuid={6E282E4F-15CA-4304-AED8-6CB9D129ACE5}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='a)', htmlDescription='

a)

'], _containingPackage=LNGroupP, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=LNGroupP, _objData=UmlObjectData [id=305, uuid={ABE7863D-71A3-4c74-9C55-17754D2F2757}, since=null, name=LNGroupP1, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the first part of concrete logical nodes of this group, with the supertypes that factor their common attributes.', htmlDescription='

This diagram shows the first part of concrete logical nodes of this group, with the supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsTarget=2, _classes=5 +2024-09-08 15:10:00,463 [main] INFO PackageBuilder - processing package LNGroupR (13) ... +2024-09-08 15:10:00,463 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=LNGroupR, _objData=UmlObjectData [id=309, uuid={28D82044-73B8-4b6a-81BB-87DDDB9BF469}, since=null, name=LNGroupR, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all concrete logical nodes of this group, with the supertypes that factor their common attributes.', htmlDescription='

This diagram shows all concrete logical nodes of this group, with the supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,464 [main] DEBUG PackageBuilder - Updated target of package dependency DependencyBuilder [_kind=PACKAGE, qName = Functions::ProtectionEq->LogicalNodes::LNGroupR, _objData=UmlObjectData [id=2797, uuid={22C10575-60D8-4d36-9D17-44F610D9BC33}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,464 [main] TRACE ClassBuilder - Class RDIR (2 in package LNGroupR) +2024-09-08 15:10:00,464 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupR::RDIR, _objData=UmlObjectData [id=6339, uuid={969DA200-CE87-48c0-9C84-E86508A81D4B}, since=null, name=Dir, alias=, stereotype=, visibility=public, txtDescription='If 'Dir.general=true', a fault has been detected. 'Dir.dirGeneral' is the direction of the fault.', htmlDescription='

If 'Dir.general=true', a fault has been detected. 'Dir.dirGeneral' is the direction of the fault.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2252, _eaTypeName=ACD, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,464 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupR::RDIR, _objData=UmlObjectData [id=6658, uuid={FD102340-AB93-4aec-A54A-6DA7F5AC4487}, since=null, name=TotW, alias=, stereotype=, visibility=public, txtDescription=''TotW.mag.f' is the total real power in a three-phase circuit [W].', htmlDescription='

'TotW.mag.f' is the total real power in a three-phase circuit [W].

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2721, _eaTypeName=SPSTransient, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,465 [main] DEBUG ClassBuilder - Adding RDIR as subclass of DomainLN +2024-09-08 15:10:00,465 [main] DEBUG ClassBuilder - Updated target of class dependency DependencyBuilder [_kind=CLASS, qName = LNGroupP::PDIS->LNGroupR::RDIR, _objData=UmlObjectData [id=2447, uuid={800FD118-B060-44a3-9247-F3468A78EBF5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,465 [main] DEBUG ClassBuilder - Updated target of class dependency DependencyBuilder [_kind=CLASS, qName = ProtectionEq::DirectionalPowerProt->LNGroupR::RDIR, _objData=UmlObjectData [id=2872, uuid={DD4B3FA8-B91D-4755-89D6-176AA40B2C8A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,465 [main] DEBUG ClassBuilder - Updated target of class dependency DependencyBuilder [_kind=CLASS, qName = ProtectionEq::DirectionalProt->LNGroupR::RDIR, _objData=UmlObjectData [id=2876, uuid={1D8C878B-9F8C-4292-A1AD-714B0D1A64F0}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,465 [main] TRACE ClassBuilder - read from EA: LNGroupR::RDIR +2024-09-08 15:10:00,465 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=LogicalNodes, _depth=3, _eaElementID=2929, _objData=UmlObjectData [id=156, uuid={583E5BD1-AE27-4631-BA31-97CA219935FF}, since=null, name=LNGroupR, alias=Logical nodes for protection related functions, stereotype=, visibility=public, txtDescription='This group of logical nodes represents protection-related functions (they contribute to, but do not do protection).', htmlDescription='

This group of logical nodes represents protection-related functions (they contribute to, but do not do protection).

'], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=LNGroupR, _objData=UmlObjectData [id=309, uuid={28D82044-73B8-4b6a-81BB-87DDDB9BF469}, since=null, name=LNGroupR, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all concrete logical nodes of this group, with the supertypes that factor their common attributes.', htmlDescription='

This diagram shows all concrete logical nodes of this group, with the supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsTarget=1, _classes=1 +2024-09-08 15:10:00,465 [main] INFO PackageBuilder - processing package LNGroupZ (18) ... +2024-09-08 15:10:00,465 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=LNGroupZ, _objData=UmlObjectData [id=316, uuid={433F6130-268E-42aa-8A3B-A11C21FFA74B}, since=null, name=LNGroupZ-1, alias=, stereotype=, visibility=public, txtDescription='This diagram shows first part of concrete logical nodes of this group, with the supertypes that factor their common attributes.', htmlDescription='

This diagram shows first part of concrete logical nodes of this group, with the supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,466 [main] DEBUG PackageBuilder - Updated target of package dependency DependencyBuilder [_kind=PACKAGE, qName = Functions::PrimaryEq->LogicalNodes::LNGroupZ, _objData=UmlObjectData [id=2670, uuid={0CE7939E-BB12-453e-A921-2F7AC739D7F0}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,466 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3063, uuid={F1B15CD9-392C-47a7-AC84-4EC49476E5CE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Testing several things with this one: +- constraint parsing (identifying uninstantiated argument) +- usage of types from unallowed namespace (wrong dependency direction) +- bad deducing of 'basedOn' type if PrimitiveDA subtype defines its 'val' attribute as public (should be private = hidden).', htmlDescription='

Testing several things with this one:

- constraint parsing (identifying uninstantiated argument)

- usage of types from unallowed namespace (wrong dependency direction)

- bad deducing of 'basedOn' type if PrimitiveDA subtype defines its 'val' attribute as public (should be private = hidden).

'], _containingPackage=LNGroupZ, _otherEndName=] +2024-09-08 15:10:00,466 [main] TRACE ClassBuilder - Class ZAXN (2 in package LNGroupZ) +2024-09-08 15:10:00,467 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupZ::ZAXN, _objData=UmlObjectData [id=6638, uuid={1BB69D0F-6A5C-42a9-BA05-66201FD25912}, since=null, name=Vol, alias=, stereotype=, visibility=public, txtDescription=''Vol.mag.f' is the non-phase-related or DC voltage of the auxiliary network.', htmlDescription='

'Vol.mag.f' is the non-phase-related or DC voltage of the auxiliary network.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2266, _eaTypeName=CMV, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,467 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupZ::ZAXN, _objData=UmlObjectData [id=6639, uuid={D663E9D5-E794-4ef3-9105-84C63DA293E9}, since=null, name=Amp, alias=, stereotype=, visibility=public, txtDescription=''Amp.mag.f' is the non-phase-related current of the auxiliary network.', htmlDescription='

'Amp.mag.f' is the non-phase-related current of the auxiliary network.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2264, _eaTypeName=MV, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,467 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupZ::ZAXN, _objData=UmlObjectData [id=6691, uuid={D79127BE-EF55-4d56-A80C-A80263BAFAE0}, since=null, name=Mat, alias=, stereotype=, visibility=public, txtDescription='For testing usage of class from other namespace.', htmlDescription='

For testing usage of class from other namespace.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=3060, _eaTypeName=ENSMaterial, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,467 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupZ::ZAXN, _objData=UmlObjectData [id=6692, uuid={F095BA66-9343-47d5-9E9E-D3A6CD6DCAE2}, since=null, name=MatCtl, alias=, stereotype=, visibility=public, txtDescription='One more, for testing usage of class from other namespace.', htmlDescription='

One more, for testing usage of class from other namespace.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=3059, _eaTypeName=ENCMaterial, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,467 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupZ::ZAXN, _objData=UmlObjectData [id=6693, uuid={95F61B3E-0763-4162-AD6C-4769946A79EC}, since=null, name=Oth, alias=, stereotype=, visibility=public, txtDescription='One more, for testing usage of class from other namespace and also underlying type (where initially 'val' defined as public).', htmlDescription='

One more, for testing usage of class from other namespace and also underlying type (where initially 'val' defined as public).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=3062, _eaTypeName=ENSOther, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,468 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3437, uuid={527DD4FB-2F7D-4215-A7BB-079B0D75CD15}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=ZAXN, _otherEndName=?] +2024-09-08 15:10:00,468 [main] DEBUG ClassBuilder - Adding ZAXN as subclass of EquipmentInterfaceLN +2024-09-08 15:10:00,468 [main] DEBUG ClassBuilder - Updated target of class dependency DependencyBuilder [_kind=CLASS, qName = PrimaryEq::AuxiliaryNetwork->LNGroupZ::ZAXN, _objData=UmlObjectData [id=2727, uuid={71C8F66D-33AE-4d0c-8B16-EE0E777397A2}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,468 [main] TRACE ClassBuilder - read from EA: LNGroupZ::ZAXN +2024-09-08 15:10:00,468 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=LogicalNodes, _depth=3, _eaElementID=3010, _objData=UmlObjectData [id=161, uuid={D4A13BFB-0C2B-419c-9AEA-5CADB6EE8E62}, since=null, name=LNGroupZ, alias=Logical nodes for further power system equipment, stereotype=, visibility=public, txtDescription='This group of logical nodes refers all to power system objects which are reusable in other power systems domains but not modelled in other logical node groups of this standard.', htmlDescription='

This group of logical nodes refers all to power system objects which are reusable in other power systems domains but not modelled in other logical node groups of this standard.

'], _modelId=58, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3063, uuid={F1B15CD9-392C-47a7-AC84-4EC49476E5CE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Testing several things with this one: +- constraint parsing (identifying uninstantiated argument) +- usage of types from unallowed namespace (wrong dependency direction) +- bad deducing of 'basedOn' type if PrimitiveDA subtype defines its 'val' attribute as public (should be private = hidden).', htmlDescription='

Testing several things with this one:

- constraint parsing (identifying uninstantiated argument)

- usage of types from unallowed namespace (wrong dependency direction)

- bad deducing of 'basedOn' type if PrimitiveDA subtype defines its 'val' attribute as public (should be private = hidden).

'], _containingPackage=LNGroupZ, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=LNGroupZ, _objData=UmlObjectData [id=316, uuid={433F6130-268E-42aa-8A3B-A11C21FFA74B}, since=null, name=LNGroupZ-1, alias=, stereotype=, visibility=public, txtDescription='This diagram shows first part of concrete logical nodes of this group, with the supertypes that factor their common attributes.', htmlDescription='

This diagram shows first part of concrete logical nodes of this group, with the supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsTarget=1, _classes=1 +2024-09-08 15:10:00,469 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_4, _depth=2, _eaElementID=2723, _objData=UmlObjectData [id=144, uuid={EC861B7F-893F-4665-858B-F7E3FB83F3C1}, since=null, name=LogicalNodes, alias=Logical node classes, stereotype=, visibility=public, txtDescription='This clause specifies logical nodes defined in IEC 61850-7-4. The types for logical nodes' data (common data classes) are defined in IEC 61850-7-3, while logical nodes' services and relationships to different control blocks are defined in IEC 61850-7-2. +In IEC 61850-7-4, concrete logical nodes are grouped into 16 groups: +- 1 containing 'special', or system logical nodes, and, +- 15 groups of domain logical nodes. +The names of logical nodes shall begin with the character representing the group to which the logical node belongs. For modelling per phase (for example switches or instrument transformers), one instance per phase shall be created; for modelling protection per zone or level, one instance per zone or level shall be created.', htmlDescription='

This clause specifies logical nodes defined in IEC 61850-7-4. The types for logical nodes' data (common data classes) are defined in IEC 61850-7-3, while logical nodes' services and relationships to different control blocks are defined in IEC 61850-7-2.

In IEC 61850-7-4, concrete logical nodes are grouped into 16 groups:

  • 1 containing 'special', or system logical nodes, and,
  • 15 groups of domain logical nodes.

The names of logical nodes shall begin with the character representing the group to which the logical node belongs. For modelling per phase (for example switches or instrument transformers), one instance per phase shall be created; for modelling protection per zone or level, one instance per zone or level shall be created.

'], _modelId=58, _selfDependent=false, 6_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2724, uuid={D0767D8F-CFB4-484b-B888-3084B98E911B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: Original IEC 61850-7-4 explicitly defines a "Common Logical Node", which inherits from the (abstract) Logical Node, defined in ACSI, and has as subtypes the LLN0 and all the Domain Logical Nodes. It only serves to specify the common mandatory attributes of the subtypes (i.e., of all logical nodes but the LPHD). The "Common Logical Node" specifies also some optional attributes, which are application independent, such as external equipment health and name plate, or operation counters. The standard states that the derived logical nodes can do 3 different things with those optional attributes: +- not inherit them, or, +- inherit them as optional, or, +- inherit them as mandatory. +Therefore, there is no way to show optional attributes at "Common Logical Node" level - they must be (and are in the original standard itself) defined within the concrete logical nodes' definitions. +For the above reasons, this model does not specify the type "Common Logical Node": it simply defines mandatory attributes for both (abstract) DomainLN and (concrete) LLN0. Grouping data objects that are common to several LNs into abstract classes happens at a finer level of granularity.', htmlDescription='

Modelling note: Original IEC 61850-7-4 explicitly defines a "Common Logical Node", which inherits from the (abstract) Logical Node, defined in ACSI, and has as subtypes the LLN0 and all the Domain Logical Nodes. It only serves to specify the common mandatory attributes of the subtypes (i.e., of all logical nodes but the LPHD). The "Common Logical Node" specifies also some optional attributes, which are application independent, such as external equipment health and name plate, or operation counters. The standard states that the derived logical nodes can do 3 different things with those optional attributes:

- not inherit them, or,

- inherit them as optional, or,

- inherit them as mandatory.

Therefore, there is no way to show optional attributes at "Common Logical Node" level - they must be (and are in the original standard itself) defined within the concrete logical nodes' definitions.

For the above reasons, this model does not specify the type "Common Logical Node": it simply defines mandatory attributes for both (abstract) DomainLN and (concrete) LLN0. Grouping data objects that are common to several LNs into abstract classes happens at a finer level of granularity.

'], _containingPackage=LogicalNodes, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2725, uuid={B228C148-1E21-47b2-A886-159F0BE9A50A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='LNMode LDMode LNBeh (read only) LNBeh +XXXX.Mod LLN0.Mod XXXX.Beh Value +on on on 1 +on blocked blocked 2 +on test test 3 +on test/blocked test/blocked 4 +on off off 5 +blocked on blocked 2 +blocked blocked blocked 2 +blocked test test/blocked 4 +blocked test/blocked test/blocked 4 +blocked off off 5 +test on test 3 +test blocked test/blocked 4 +test test test 3 +test test/blocked test/blocked 4 +test off off 5 +test/blocked on test/blocked 4 +test/blocked blocked test/blocked 4 +test/blocked test test/blocked 4 +test/blocked test/blocked test/blocked 4 +test/blocked off off 5 +off on off 5 +off blocked off 5 +off test off 5 +off test/blocked off 5 +off off off 5', htmlDescription='

LNMode LDMode LNBeh (read only) LNBeh

XXXX.Mod LLN0.Mod XXXX.Beh Value

on on on 1

on blocked blocked 2

on test test 3

on test/blocked test/blocked 4

on off off 5

blocked on blocked 2

blocked blocked blocked 2

blocked test test/blocked 4

blocked test/blocked test/blocked 4

blocked off off 5

test on test 3

test blocked test/blocked 4

test test test 3

test test/blocked test/blocked 4

test off off 5

test/blocked on test/blocked 4

test/blocked blocked test/blocked 4

test/blocked test test/blocked 4

test/blocked test/blocked test/blocked 4

test/blocked off off 5

off on off 5

off blocked off 5

off test off 5

off test/blocked off 5

off off off 5

'], _containingPackage=LogicalNodes, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2727, uuid={1E36F7F7-68C3-4b87-8A96-CBE243CB505D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Describe these somehow... +Note: There should be a link between the LLN0 (which is "the data of LD") and all the DomainLNs contained in the LD.', htmlDescription='

TODO: Describe these somehow...

Note: There should be a link between the LLN0 (which is "the data of LD") and all the DomainLNs contained in the LD.

'], _containingPackage=LogicalNodes, _otherEndName=], SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2740, uuid={70BF6490-0829-4499-B3F1-91B1F53AB7E5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=LogicalNodes, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3031, uuid={2B7E85C1-2253-47e1-9F2A-A1A6C3FD8E78}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Only GGIO and MMXU inherit from it in this sample model.', htmlDescription='

Only GGIO and MMXU inherit from it in this sample model.

'], _containingPackage=LogicalNodes, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3081, uuid={728AF8F8-AE9D-44d5-BDC8-10BD5014B6DD}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='SPSTransient has no parents, i.e., it's a badly defined CDC and doesn't get recognised as CDC.', htmlDescription='

SPSTransient has no parents, i.e., it's a badly defined CDC and doesn't get recognised as CDC.

'], _containingPackage=LogicalNodes, _otherEndName=]], 2_diagrams=[DiagramBuilder [_containingPackage=LogicalNodes, _objData=UmlObjectData [id=291, uuid={9C304E21-9AF5-4868-98F3-894BF0B82CA2}, since=null, name=LogicalNodes, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all the logical node groups, with their contents, as well as the abstract logical nodes used by concrete logical nodes from multiple groups. The purpose of abstract logical nodes is to avoid duplication in definition of data objects which are used by multiple concrete logical nodes. Abstract logical nodes are never instantiated; Their attributes are inheritied by concrete logical nodes which are instantiable.', htmlDescription='

This diagram shows all the logical node groups, with their contents, as well as the abstract logical nodes used by concrete logical nodes from multiple groups. The purpose of abstract logical nodes is to avoid duplication in definition of data objects which are used by multiple concrete logical nodes. Abstract logical nodes are never instantiated; Their attributes are inheritied by concrete logical nodes which are instantiable.

'], _portrait=true, _kind=LOGICAL], DiagramBuilder [_containingPackage=LogicalNodes, _objData=UmlObjectData [id=290, uuid={13255AEB-A18C-4620-B272-CD274CE0D4D3}, since=null, name=LNRelationToACSI, alias=, stereotype=, visibility=public, txtDescription='All logical node classes defined in this document inherit their structure from the abstract LN class defined in IEC 61850-7-2. The structure comprises the attributes (e.g., name and reference), and the services and applicable control blocks defined in IEC 61850-7-2. Currently, they are all modelled with operations (services). +IEC 61850-7-4 adds data objects as attributes, in order to complete the definition of concrete logical nodes. +The diagram shows also the attributes per type of logical node defined in this document (optional attributes have multiplicity [0..1]. Physical device logical node (LPHD) and Logical device logical node (LLN0) are concrete logical node types. On the contrary, DomainLN is an abstract logical node type (its name is shown in italic), because it serves to define the attributes that shall be inherited by every concrete domain logical node type (e.g., XCBR, PDIS). Having this kind of definition at one place avoids error-prone repeating of these common attributes within the definition of every concrete domain logical node. +Some logical nodes define conditions on one or more data objects. In this diagram, this is the case for LLN0, with the condition "C1"; The definition of condition is available for each data object involved in the condition and refers to Presence conditions introduced in IEC61850-7-3, Clause 5.', htmlDescription='

All logical node classes defined in this document inherit their structure from the abstract LN class defined in IEC 61850-7-2. The structure comprises the attributes (e.g., name and reference), and the services and applicable control blocks defined in IEC 61850-7-2. Currently, they are all modelled with operations (services).

IEC 61850-7-4 adds data objects as attributes, in order to complete the definition of concrete logical nodes.

The diagram shows also the attributes per type of logical node defined in this document (optional attributes have multiplicity [0..1]. Physical device logical node (LPHD) and Logical device logical node (LLN0) are concrete logical node types. On the contrary, DomainLN is an abstract logical node type (its name is shown in italic), because it serves to define the attributes that shall be inherited by every concrete domain logical node type (e.g., XCBR, PDIS). Having this kind of definition at one place avoids error-prone repeating of these common attributes within the definition of every concrete domain logical node.

Some logical nodes define conditions on one or more data objects. In this diagram, this is the case for LLN0, with the condition "C1"; The definition of condition is available for each data object involved in the condition and refers to Presence conditions introduced in IEC61850-7-3, Clause 5.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=3, _classes=3, _childPackages=8] +2024-09-08 15:10:00,470 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=WG10, _depth=1, _eaElementID=2316, _objData=UmlObjectData [id=127, uuid={D48BF303-DE06-47d5-ACB4-80C8B5BDF58E}, since=null, name=IEC61850_7_4, alias=Logical nodes, stereotype=, visibility=public, txtDescription='Part 7-4, from clause 5.3 to the end of clause 6, annex H, and content of annex A (but wihtout table).', htmlDescription='

Part 7-4, from clause 5.3 to the end of clause 6, annex H, and content of annex A (but wihtout table).

'], _modelId=58, _selfDependent=true, 1_diagrams=[DiagramBuilder [_containingPackage=IEC61850_7_4, _objData=UmlObjectData [id=264, uuid={53319A3A-F127-44ff-9189-57CBBD02C7D3}, since=null, name=IEC61850_7_4, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the content of this package, as well as dependencies to other parts of the model. +Note: Highlighted sub-packages contained in IEC61850-7-4 are required to generate the document automatically. Package IEC61850_5::Functions is also required to generate IEC61850-7-4, but is not shown here.', htmlDescription='

This diagram shows the content of this package, as well as dependencies to other parts of the model.

Note: Highlighted sub-packages contained in IEC61850-7-4 are required to generate the document automatically. Package IEC61850_5::Functions is also required to generate IEC61850-7-4, but is not shown here.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=3, _dependenciesAsTarget=2, _classes=1, _childPackages=6] +2024-09-08 15:10:00,472 [main] TRACE PackageBuilder - read PackageBuilder [_kind=TOP, _containingPackage=IEC61850Domain, _depth=0, _eaElementID=1552, _objData=UmlObjectData [id=85, uuid={13005C9D-76D7-4089-8B2E-FE8E67CC563E}, since=null, name=WG10, alias=, stereotype=, visibility=public, txtDescription='This package contains the UML model of IEC61850-7-* Ed.2. +Disclaimer: Initial version of this model has been developed by ABB Switzerland, Corporate Research and donated to IEC TC57 for further maintenance.', htmlDescription='

This package contains the UML model of IEC61850-7-* Ed.2.

Disclaimer: Initial version of this model has been developed by ABB Switzerland, Corporate Research and donated to IEC TC57 for further maintenance.

'], _modelId=58, _selfDependent=false, 17_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1553, uuid={D94F6B33-4624-48cd-AEBC-C0FDE476430F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling notes: +- We have tried to stick to the definition of concepts per Part of IEC61850, by grouping them into corresponding packages. This would allow relatively straight forward generation of IEC word documents directly from this model (this has been successfully done with another UML tool for Part 7, in 2003). For a software, it is certainly possible to think of a better grouping. +- In addition to the objective of documentation generation mentioned above, the design of the model aimed at facilitating initial, skeletal code generation. For that reason, there are many dependency relationships between packages (because UML dependencies are not transitive). If the model is not to be used for code generation, explicit dependencies among sub-packages can be greatly simplified, by replacing them with top-level package dependencies. +- This model has initially been developed from mid-2002 to mid-2004 with Rational Rose CASE tool, then imported into Enterprise Architect CASE tool. Parts of the original version have indeed been successfully used for skeleton code generation (MetaModel, ACSI and DA packages). We cannot guarantee that the present model is absolutely fit for painless code generation, but it should be a good starting point. +- We "order" packages in a bottom-up way, i.e., from the least dependent (most basic) towards the most dependent. In this way, if documentation gets generated, the basic concepts are seen first, then those that use them. However, for presentation purposes, it is probably better to introduce things top-down. +How to browse the model: +- Clicking on any package will automatically open the main diagram of that package. There are many diagrams in the model, and many of them contain hyperlinks to other, related diagrams. Most of the diagram should fit onto an A4 page. +- Domain experts and those who would like to extend the model, will care the most for the content of high level packages (LogicalNodes and CommonDataClasses). +- Implementors will have to start from ACSI package, in particular from its MetaModel sub-package. +Position statement: +- If you find the model complex, please blame the authors of IEC61850, not us :-)', htmlDescription='

Modelling notes:

  • We have tried to stick to the definition of concepts per Part of IEC61850, by grouping them into corresponding packages. This would allow relatively straight forward generation of IEC word documents directly from this model (this has been successfully done with another UML tool for Part 7, in 2003). For a software, it is certainly possible to think of a better grouping.
  • In addition to the objective of documentation generation mentioned above, the design of the model aimed at facilitating initial, skeletal code generation. For that reason, there are many dependency relationships between packages (because UML dependencies are not transitive). If the model is not to be used for code generation, explicit dependencies among sub-packages can be greatly simplified, by replacing them with top-level package dependencies.
  • This model has initially been developed from mid-2002 to mid-2004 with Rational Rose CASE tool, then imported into Enterprise Architect CASE tool. Parts of the original version have indeed been successfully used for skeleton code generation (MetaModel, ACSI and DA packages). We cannot guarantee that the present model is absolutely fit for painless code generation, but it should be a good starting point.
  • We "order" packages in a bottom-up way, i.e., from the least dependent (most basic) towards the most dependent. In this way, if documentation gets generated, the basic concepts are seen first, then those that use them. However, for presentation purposes, it is probably better to introduce things top-down.

How to browse the model:

  • Clicking on any package will automatically open the main diagram of that package. There are many diagrams in the model, and many of them contain hyperlinks to other, related diagrams. Most of the diagram should fit onto an A4 page.
  • Domain experts and those who would like to extend the model, will care the most for the content of high level packages (LogicalNodes and CommonDataClasses).
  • Implementors will have to start from ACSI package, in particular from its MetaModel sub-package.

Position statement:

  • If you find the model complex, please blame the authors of IEC61850, not us :-)
'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1554, uuid={8ECEFF06-BAD2-41e0-B468-9E73B7693BE3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='We describe the meta-model example shown in the bottom-up manner, as follows: +- VISIBLE_STRING255 and FLOAT32 are PrimitiveDAs. In this model, we have explicitly defined primitive types with the prefix 'P_', which can be used as implementation artefacts, and to protect the overall model from any potential implementation language detail. Therefore, VISIBLE_STRING255 and FLOAT32 simply hold an attribute 'val' of the corresponding primitive data type (as would be defined in a particular programming language), and inherit from the meta-model class PrimitiveDA. +- Vector and AnalogueValue are both ComposedDAs. A ComposedDA must contain at least one DA, be it ComposedDA or PrimitiveDA: Vector contains AnalogueValue 'mag', as a ComposedDA, and AnalogueValue contains FLOAT32 'f' as a PrimitiveDA. +- VISIBLE_STRING255_DC, AnalogueValue_MX and Vector_MX_dchg are all FCDAs, i.e., they provide the explicit definition for all the combinations of available functional constraints and triggering options, with DAs. Therefore, each of them simply contains an attribute, 'attr', of the corresponding DA type, either ComposedDA (in the case of AnalogueValue_MX and Vector_MX_dchg) or PrimitiveDA (in the case of VISIBLE_STRING255_DC). +- MV, CMV and WYE are all CDCs. The first two are PrimitiveCDCs and the last one is a ComposedCDC. As CDCs, they must contain one or more FCDAs - all have attribute 'd' of type VISIBLE_STRING255, and MV and CMV have attributes 'mag' and 'cVal', respectively, of types AnalogueValue_MX and Vector_MX_dchg, respectively. A ComposedCDC must additionally contain one or more PrimitiveCDCs - example for WYE is the attribute 'phsA', which is a PrimitiveCDC. +- Finally, MMXU is an LN and must contain one or more CDCs - attribute 'A' is a CDC. +With this meta-model approach, all the complexity of the datatype system is hidden below CDCs, and the essential of the domain is contained in the LNs.', htmlDescription='

We describe the meta-model example shown in the bottom-up manner, as follows:

  • VISIBLE_STRING255 and FLOAT32 are PrimitiveDAs. In this model, we have explicitly defined primitive types with the prefix 'P_', which can be used as implementation artefacts, and to protect the overall model from any potential implementation language detail. Therefore, VISIBLE_STRING255 and FLOAT32 simply hold an attribute 'val' of the corresponding primitive data type (as would be defined in a particular programming language), and inherit from the meta-model class PrimitiveDA.
  • Vector and AnalogueValue are both ComposedDAs. A ComposedDA must contain at least one DA, be it ComposedDA or PrimitiveDA: Vector contains AnalogueValue 'mag', as a ComposedDA, and AnalogueValue contains FLOAT32 'f' as a PrimitiveDA.
  • VISIBLE_STRING255_DC, AnalogueValue_MX and Vector_MX_dchg are all FCDAs, i.e., they provide the explicit definition for all the combinations of available functional constraints and triggering options, with DAs. Therefore, each of them simply contains an attribute, 'attr', of the corresponding DA type, either ComposedDA (in the case of AnalogueValue_MX and Vector_MX_dchg) or PrimitiveDA (in the case of VISIBLE_STRING255_DC).
  • MV, CMV and WYE are all CDCs. The first two are PrimitiveCDCs and the last one is a ComposedCDC. As CDCs, they must contain one or more FCDAs - all have attribute 'd' of type VISIBLE_STRING255, and MV and CMV have attributes 'mag' and 'cVal', respectively, of types AnalogueValue_MX and Vector_MX_dchg, respectively. A ComposedCDC must additionally contain one or more PrimitiveCDCs - example for WYE is the attribute 'phsA', which is a PrimitiveCDC.
  • Finally, MMXU is an LN and must contain one or more CDCs - attribute 'A' is a CDC.

With this meta-model approach, all the complexity of the datatype system is hidden below CDCs, and the essential of the domain is contained in the LNs.

'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1556, uuid={1FE867FD-79B7-464f-8052-435DD1687820}, since=null, name=Parts7 : DataModelExample, alias=, stereotype=, visibility=public, txtDescription='Parts7 : DataModelExample', htmlDescription='

Parts7 : DataModelExample

'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1557, uuid={256FF05A-27ED-4887-B5FE-EDF4614593EB}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='mag', htmlDescription='

mag

'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1558, uuid={26E40582-F186-466d-86B4-F8DD7DBC54F0}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='Part 7-2 (ACSI, meta-model) Parts 7-4, 7-3 (concrete LNs, CDCs, DAs)', htmlDescription='

Part 7-2 (ACSI, meta-model) Parts 7-4, 7-3 (concrete LNs, CDCs, DAs)

'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1559, uuid={2D4E4EBF-44BB-4c48-894D-39CD41A54738}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='...', htmlDescription='

...

'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1560, uuid={3BAA5323-14E0-439f-84A0-1B5952B05C8F}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='A', htmlDescription='

A

'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1561, uuid={3ECBDF79-B2DB-41b1-91F7-ECA45C2F64EB}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='attr', htmlDescription='

attr

'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1562, uuid={4322E030-F287-4017-9D95-2A8AF934BE65}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='attr', htmlDescription='

attr

'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1563, uuid={4A5F30B1-B039-4ef0-BDD6-3F7630BB47ED}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='cVal', htmlDescription='

cVal

'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1564, uuid={581893B5-516E-4999-B0A4-0C8538B87209}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='...', htmlDescription='

...

'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1565, uuid={5FED3E4A-CE83-456a-814C-A684836C1338}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='d', htmlDescription='

d

'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1566, uuid={884347DF-162A-4b48-A9A5-9BBF0523A2E9}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='phsA', htmlDescription='

phsA

'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1567, uuid={952F1499-B3A1-4f4d-A950-5C65655720DD}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='attr', htmlDescription='

attr

'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1568, uuid={9FAF5191-B3F7-48ad-862E-9462DA86C059}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='f', htmlDescription='

f

'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1569, uuid={A48C44FE-7EB4-4639-86A3-953DBE7DDC26}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='mag', htmlDescription='

mag

'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1570, uuid={BC2B22A4-E338-426a-AA6B-13C8C105619C}, since=null, name=IEC61850 : Parts7, alias=, stereotype=, visibility=public, txtDescription='IEC61850 : Parts7', htmlDescription='

IEC61850 : Parts7

'], _containingPackage=WG10, _otherEndName=]], 3_diagrams=[DiagramBuilder [_containingPackage=WG10, _objData=UmlObjectData [id=186, uuid={60DE7B56-E18B-4c76-BAE9-F26279C1F965}, since=null, name=WG10, alias=, stereotype=, visibility=public, txtDescription='Sub-packages contained in this IEC61850 model. +UML model of IEC 61850 contains concrete specifications for logical nodes (part 7-4), the whole data type system (part 7-3), and ACSI services (part 7-2), including the meta-model that represents the whole of the standard.', htmlDescription='

Sub-packages contained in this IEC61850 model.

UML model of IEC 61850 contains concrete specifications for logical nodes (part 7-4), the whole data type system (part 7-3), and ACSI services (part 7-2), including the meta-model that represents the whole of the standard.

'], _portrait=true, _kind=PACKAGE], DiagramBuilder [_containingPackage=WG10, _objData=UmlObjectData [id=187, uuid={3AD43F3E-BF5F-4d70-B8EB-D0104CA1E17D}, since=null, name=Parts7, alias=, stereotype=, visibility=public, txtDescription='This diagram shows main packages and sub-packages included in this IEC61850-7-x model. +Colours show in which part of the standard the types are originally defined (or deduced from): +- green: IEC 61850-7-2 +- pink: IEC 61850-7-3 +- yellow: IEC 61850-7-4 +Elipses in packages (e.g., CDCs and DomainLNs) indicate that they have more sub-packages, but they are not shown in this diagram.', htmlDescription='

This diagram shows main packages and sub-packages included in this IEC61850-7-x model.

Colours show in which part of the standard the types are originally defined (or deduced from):

- green: IEC 61850-7-2

- pink: IEC 61850-7-3

- yellow: IEC 61850-7-4

Elipses in packages (e.g., CDCs and DomainLNs) indicate that they have more sub-packages, but they are not shown in this diagram.

'], _portrait=true, _kind=PACKAGE], DiagramBuilder [_containingPackage=WG10, _objData=UmlObjectData [id=188, uuid={7BD8A88D-424B-4ea2-B24A-F09076F9051B}, since=null, name=DataModelExample, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the most complex example with one concrete subclass for data-related classes of the meta-model, i.e., LNs, CDCs, FCDAs and DAs (classes in colour). On the diagram, we hide all the attributes but those used for the example.', htmlDescription='

This diagram shows the most complex example with one concrete subclass for data-related classes of the meta-model, i.e., LNs, CDCs, FCDAs and DAs (classes in colour). On the diagram, we hide all the attributes but those used for the example.

'], _portrait=true, _kind=LOGICAL]], _classes=1, _childPackages=4] +2024-09-08 15:10:00,472 [main] INFO PackageBuilder - processing top package WG17 (2) ... +2024-09-08 15:10:00,472 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=WG17, _objData=UmlObjectData [id=318, uuid={39B0DD35-E4C9-45d0-B13B-0D9A0122F543}, since=null, name=WG17, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,472 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850Domain::WG17->WG10::IEC61850_7_4, _objData=UmlObjectData [id=3439, uuid={E2817A04-CD9C-40de-8B67-F4454ADA8AB4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,473 [main] TRACE ClassBuilder - Class WG17UMLVersion (0 in package WG17) +2024-09-08 15:10:00,473 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=WG17::WG17UMLVersion, _objData=UmlObjectData [id=6699, uuid={099DC0EB-9CC5-4542-93AA-C75609272A32}, since=null, name=version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=IEC61850UML02v07, _eaTypeId=1665, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,473 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=WG17::WG17UMLVersion, _objData=UmlObjectData [id=6700, uuid={9E25E042-164C-49d4-8FF5-4CDD536755AF}, since=null, name=date, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=2011-07-02, _eaTypeId=1665, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,474 [main] TRACE ClassBuilder - read from EA: WG17::WG17UMLVersion +2024-09-08 15:10:00,474 [main] INFO PackageBuilder - processing package IEC51850_7_420 (0) ... +2024-09-08 15:10:00,474 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=IEC51850_7_420, _objData=UmlObjectData [id=327, uuid={71125DD0-14D6-4873-AE6E-3FB7FC4D4C43}, since=null, name=IEC51850_7_420, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=PACKAGE] +2024-09-08 15:10:00,474 [main] DEBUG PackageBuilder - Updated target of package dependency DependencyBuilder [_kind=PACKAGE, qName = WG10::IEC61850_7_4->WG17::IEC51850_7_420, _objData=UmlObjectData [id=3451, uuid={B8B9C543-69FC-4204-9AA3-FDDAAAD9C3EF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:10:00,475 [main] TRACE ClassBuilder - Class IEC61850_7_420Namespace (0 in package IEC51850_7_420) +2024-09-08 15:10:00,475 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC51850_7_420::IEC61850_7_420Namespace, _objData=UmlObjectData [id=6694, uuid={37A50D0D-25D0-40f9-A970-0C0181B4083C}, since=null, name=id, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=IEC61850-7-4, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,475 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC51850_7_420::IEC61850_7_420Namespace, _objData=UmlObjectData [id=6695, uuid={DB395AA8-3595-4eac-9425-EE064A3088CF}, since=null, name=version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2009, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,475 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC51850_7_420::IEC61850_7_420Namespace, _objData=UmlObjectData [id=6696, uuid={A915165D-45F3-4091-95B9-A7D11078449A}, since=null, name=revision, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=A, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,475 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC51850_7_420::IEC61850_7_420Namespace, _objData=UmlObjectData [id=6697, uuid={E9E37DBA-80F5-4c0d-88BA-82D6818D500E}, since=null, name=date, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2011-08-01, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,476 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC51850_7_420::IEC61850_7_420Namespace, _objData=UmlObjectData [id=6698, uuid={B24D4729-DFA5-4699-9D34-2DE999F86048}, since=null, name=tissuesApplied, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1,2, 3, 127,200, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,476 [main] TRACE ClassBuilder - read from EA: IEC51850_7_420::IEC61850_7_420Namespace +2024-09-08 15:10:00,476 [main] INFO PackageBuilder - processing package DOEnums_7_420 (1) ... +2024-09-08 15:10:00,476 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=DOEnums_7_420, _objData=UmlObjectData [id=323, uuid={5F9E18A6-6667-4939-8B1A-86E53DCA46D0}, since=null, name=DOEnums_7_420, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,477 [main] TRACE ClassBuilder - Class ExtBaseKind (0 in package DOEnums_7_420) +2024-09-08 15:10:00,477 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums_7_420::ExtBaseKind, _objData=UmlObjectData [id=6717, uuid={F996EDFA-F779-4248-A73C-4FB8EB5EDCFD}, since=null, name=ebk1, alias=, stereotype=enum, deprecated, visibility=public, txtDescription='Desc ebk1.', htmlDescription='

Desc ebk1.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,477 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums_7_420::ExtBaseKind, _objData=UmlObjectData [id=6718, uuid={D508A0F6-E720-4549-BD42-B88FF76B26DA}, since=null, name=ebk2, alias=, stereotype=enum, visibility=public, txtDescription='Desc ebk2.', htmlDescription='

Desc ebk2.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,477 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums_7_420::ExtBaseKind, _objData=UmlObjectData [id=6719, uuid={26234119-2BB1-48b7-ADCA-F06484AA8B48}, since=null, name=ebk3, alias=, stereotype=enum, visibility=public, txtDescription='Desc ebk3.', htmlDescription='

Desc ebk3.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,477 [main] DEBUG ClassBuilder - Adding ExtBaseKind as subclass of BaseKind +2024-09-08 15:10:00,477 [main] TRACE ClassBuilder - read from EA: DOEnums_7_420::ExtBaseKind +2024-09-08 15:10:00,478 [main] TRACE ClassBuilder - Class MaterialKind (1 in package DOEnums_7_420) +2024-09-08 15:10:00,478 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums_7_420::MaterialKind, _objData=UmlObjectData [id=6683, uuid={163334D0-2A8C-4397-8A83-050F7445E0D4}, since=null, name=mat1, alias=, stereotype=enum, visibility=public, txtDescription='Material 1.', htmlDescription='

Material 1.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,478 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums_7_420::MaterialKind, _objData=UmlObjectData [id=6684, uuid={84642B03-0044-43ea-9A41-5CE5254CA942}, since=null, name=mat2, alias=, stereotype=enum, visibility=public, txtDescription='Sample material 2.', htmlDescription='

Sample material 2.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,478 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums_7_420::MaterialKind, _objData=UmlObjectData [id=6685, uuid={D8CF9E32-600F-425b-A2C1-881AD70C3F43}, since=null, name=mat3, alias=, stereotype=enum, visibility=public, txtDescription='Some material 3.', htmlDescription='

Some material 3.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,478 [main] TRACE ClassBuilder - read from EA: DOEnums_7_420::MaterialKind +2024-09-08 15:10:00,478 [main] TRACE ClassBuilder - Class MaterialTransitionKind (2 in package DOEnums_7_420) +2024-09-08 15:10:00,479 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums_7_420::MaterialTransitionKind, _objData=UmlObjectData [id=6710, uuid={5AD84B53-B213-40b4-9A28-DE90FF4F1CDD}, since=null, name=trans1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,479 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums_7_420::MaterialTransitionKind, _objData=UmlObjectData [id=6711, uuid={164BCB4A-9F0D-4c38-B6D7-A15C5308DB62}, since=null, name=trans2, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,479 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums_7_420::MaterialTransitionKind, _objData=UmlObjectData [id=6712, uuid={4CCCD663-6C81-49ee-8E3B-2F0D2F705275}, since=null, name=trans3, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,479 [main] TRACE ClassBuilder - read from EA: DOEnums_7_420::MaterialTransitionKind +2024-09-08 15:10:00,479 [main] TRACE ClassBuilder - Class OtherKind (3 in package DOEnums_7_420) +2024-09-08 15:10:00,479 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums_7_420::OtherKind, _objData=UmlObjectData [id=6686, uuid={F640B955-0B9F-40dc-86DD-775AF6EB58CC}, since=null, name=mat1, alias=, stereotype=enum, visibility=public, txtDescription='Material 1.', htmlDescription='

Material 1.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,479 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums_7_420::OtherKind, _objData=UmlObjectData [id=6687, uuid={4D059DA8-1951-46b6-BB23-919182E397F3}, since=null, name=mat2, alias=, stereotype=enum, visibility=public, txtDescription='Sample material 2.', htmlDescription='

Sample material 2.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,480 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums_7_420::OtherKind, _objData=UmlObjectData [id=6688, uuid={E516361C-D992-4e52-9818-C19539445D9A}, since=null, name=mat3, alias=, stereotype=enum, visibility=public, txtDescription='Some material 3.', htmlDescription='

Some material 3.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,480 [main] TRACE ClassBuilder - read from EA: DOEnums_7_420::OtherKind +2024-09-08 15:10:00,480 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC51850_7_420, _depth=2, _eaElementID=3050, _objData=UmlObjectData [id=169, uuid={812209B5-E759-41f0-8D9A-E65D27EE7093}, since=null, name=DOEnums_7_420, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=DOEnums_7_420, _objData=UmlObjectData [id=323, uuid={5F9E18A6-6667-4939-8B1A-86E53DCA46D0}, since=null, name=DOEnums_7_420, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _classes=4 +2024-09-08 15:10:00,480 [main] INFO PackageBuilder - processing package DerivedDAs_7_420 (2) ... +2024-09-08 15:10:00,480 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=DerivedDAs_7_420, _objData=UmlObjectData [id=324, uuid={E18B19D0-B575-453a-96C4-042C4072EE83}, since=null, name=DerivedDAs_7_420, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,481 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3057, uuid={E197B961-F8ED-4cf7-B160-357A93E6A745}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Created this one to validate usage of types from unexpected namespace (e.g., WG10 uses something from WG17).', htmlDescription='

Created this one to validate usage of types from unexpected namespace (e.g., WG10 uses something from WG17).

'], _containingPackage=DerivedDAs_7_420, _otherEndName=] +2024-09-08 15:10:00,481 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3058, uuid={67416752-6F39-45f6-9391-FB685969A442}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='And created this one to validate that 'val' on PrimitiveDA subtypes must be private to ensure correct type deduction (for basedOn enum type in XML, and also detail within 7-4xx tables for ENS/ENG/ENC extensions).', htmlDescription='

And created this one to validate that 'val' on PrimitiveDA subtypes must be private to ensure correct type deduction (for basedOn enum type in XML, and also detail within 7-4xx tables for ENS/ENG/ENC extensions).

'], _containingPackage=DerivedDAs_7_420, _otherEndName=] +2024-09-08 15:10:00,481 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3089, uuid={56DA0CA4-E8E6-4ea1-AA45-A7A3CAC4D1A9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Crated this one to mimic double underlying type for ENC enums.', htmlDescription='

Crated this one to mimic double underlying type for ENC enums.

'], _containingPackage=DerivedDAs_7_420, _otherEndName=] +2024-09-08 15:10:00,481 [main] TRACE ClassBuilder - Class Material (1 in package DerivedDAs_7_420) +2024-09-08 15:10:00,482 [main] DEBUG DbAttributeBuilder - fixing lower bound '' to 1 for attr:UmlObjectData [id=6689, uuid={47188E9E-FFB6-4e55-A604-306AF82D676C}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''] +2024-09-08 15:10:00,482 [main] DEBUG DbAttributeBuilder - fixing upper bound '' to 1 for attr:UmlObjectData [id=6689, uuid={47188E9E-FFB6-4e55-A604-306AF82D676C}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''] +2024-09-08 15:10:00,482 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DerivedDAs_7_420::Material, _objData=UmlObjectData [id=6689, uuid={47188E9E-FFB6-4e55-A604-306AF82D676C}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=3053, _eaTypeName=MaterialKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,482 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3433, uuid={1E6FAD6B-C919-48f3-A1C2-27E29C0502E4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=Material, _otherEndName=?] +2024-09-08 15:10:00,482 [main] DEBUG ClassBuilder - Adding Material as subclass of EnumDA +2024-09-08 15:10:00,482 [main] TRACE ClassBuilder - read from EA: DerivedDAs_7_420::Material +2024-09-08 15:10:00,482 [main] TRACE ClassBuilder - Class Material_control (2 in package DerivedDAs_7_420) +2024-09-08 15:10:00,482 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DerivedDAs_7_420::Material_control, _objData=UmlObjectData [id=6713, uuid={6C2F0C32-0A2D-4e50-AAC2-A5830B1AB795}, since=null, name=ctlVal, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=3087, _eaTypeName=MaterialTransitionKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,482 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3474, uuid={1D882B25-52D7-41ad-B9D2-4D53B31FC4B0}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=Material_control, _otherEndName=?] +2024-09-08 15:10:00,482 [main] DEBUG ClassBuilder - Adding Material_control as subclass of EnumDA +2024-09-08 15:10:00,482 [main] TRACE ClassBuilder - read from EA: DerivedDAs_7_420::Material_control +2024-09-08 15:10:00,482 [main] TRACE ClassBuilder - Class Other (3 in package DerivedDAs_7_420) +2024-09-08 15:10:00,483 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DerivedDAs_7_420::Other, _objData=UmlObjectData [id=6690, uuid={F04B56ED-9BE4-4ac4-8482-893675D15119}, since=null, name=val, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=3054, _eaTypeName=OtherKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,483 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3432, uuid={A6301D0F-D756-4e6f-8E7F-B85510838DDC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=Other, _otherEndName=?] +2024-09-08 15:10:00,483 [main] DEBUG ClassBuilder - Adding Other as subclass of EnumDA +2024-09-08 15:10:00,483 [main] TRACE ClassBuilder - read from EA: DerivedDAs_7_420::Other +2024-09-08 15:10:00,483 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC51850_7_420, _depth=2, _eaElementID=3051, _objData=UmlObjectData [id=170, uuid={65B8CA71-5586-433a-A4D0-F6A6D2CA451F}, since=null, name=DerivedDAs_7_420, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=58, _selfDependent=false, 3_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3057, uuid={E197B961-F8ED-4cf7-B160-357A93E6A745}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Created this one to validate usage of types from unexpected namespace (e.g., WG10 uses something from WG17).', htmlDescription='

Created this one to validate usage of types from unexpected namespace (e.g., WG10 uses something from WG17).

'], _containingPackage=DerivedDAs_7_420, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3058, uuid={67416752-6F39-45f6-9391-FB685969A442}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='And created this one to validate that 'val' on PrimitiveDA subtypes must be private to ensure correct type deduction (for basedOn enum type in XML, and also detail within 7-4xx tables for ENS/ENG/ENC extensions).', htmlDescription='

And created this one to validate that 'val' on PrimitiveDA subtypes must be private to ensure correct type deduction (for basedOn enum type in XML, and also detail within 7-4xx tables for ENS/ENG/ENC extensions).

'], _containingPackage=DerivedDAs_7_420, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3089, uuid={56DA0CA4-E8E6-4ea1-AA45-A7A3CAC4D1A9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Crated this one to mimic double underlying type for ENC enums.', htmlDescription='

Crated this one to mimic double underlying type for ENC enums.

'], _containingPackage=DerivedDAs_7_420, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=DerivedDAs_7_420, _objData=UmlObjectData [id=324, uuid={E18B19D0-B575-453a-96C4-042C4072EE83}, since=null, name=DerivedDAs_7_420, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _classes=3 +2024-09-08 15:10:00,483 [main] INFO PackageBuilder - processing package DerivedCDCs_7_420 (3) ... +2024-09-08 15:10:00,483 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=DerivedCDCs_7_420, _objData=UmlObjectData [id=325, uuid={62D05D73-23D6-489d-88E9-17E97E7D29B3}, since=null, name=DerivedCDCs_7_420, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,484 [main] TRACE ClassBuilder - Class ENCMaterial (1 in package DerivedCDCs_7_420) +2024-09-08 15:10:00,485 [main] DEBUG ClassBuilder - Adding ENCMaterial as subclass of ENC +2024-09-08 15:10:00,485 [main] TRACE ClassBuilder - read from EA: DerivedCDCs_7_420::ENCMaterial +2024-09-08 15:10:00,485 [main] TRACE ClassBuilder - Class ENSMaterial (2 in package DerivedCDCs_7_420) +2024-09-08 15:10:00,486 [main] DEBUG ClassBuilder - Adding ENSMaterial as subclass of ENS +2024-09-08 15:10:00,486 [main] TRACE ClassBuilder - read from EA: DerivedCDCs_7_420::ENSMaterial +2024-09-08 15:10:00,486 [main] TRACE ClassBuilder - Class ENSOther (3 in package DerivedCDCs_7_420) +2024-09-08 15:10:00,486 [main] DEBUG ClassBuilder - Adding ENSOther as subclass of ENS +2024-09-08 15:10:00,486 [main] TRACE ClassBuilder - read from EA: DerivedCDCs_7_420::ENSOther +2024-09-08 15:10:00,486 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC51850_7_420, _depth=2, _eaElementID=3052, _objData=UmlObjectData [id=171, uuid={D1A96A51-C6DC-489e-8678-53F18F4D4D5F}, since=null, name=DerivedCDCs_7_420, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=DerivedCDCs_7_420, _objData=UmlObjectData [id=325, uuid={62D05D73-23D6-489d-88E9-17E97E7D29B3}, since=null, name=DerivedCDCs_7_420, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _classes=3 +2024-09-08 15:10:00,486 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=WG17, _depth=1, _eaElementID=3066, _objData=UmlObjectData [id=172, uuid={B02D55B6-1DEA-4d56-8263-22121C981945}, since=null, name=IEC51850_7_420, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=IEC51850_7_420, _objData=UmlObjectData [id=327, uuid={71125DD0-14D6-4873-AE6E-3FB7FC4D4C43}, since=null, name=IEC51850_7_420, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=PACKAGE]], _dependenciesAsTarget=1, _classes=1, _childPackages=3] +2024-09-08 15:10:00,487 [main] TRACE PackageBuilder - read PackageBuilder [_kind=TOP, _containingPackage=IEC61850Domain, _depth=0, _eaElementID=3023, _objData=UmlObjectData [id=163, uuid={4D3252F7-18AA-4c62-9BE1-6A4EB93DC22D}, since=null, name=WG17, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=WG17, _objData=UmlObjectData [id=318, uuid={39B0DD35-E4C9-45d0-B13B-0D9A0122F543}, since=null, name=WG17, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=1, _classes=1, _childPackages=1] +2024-09-08 15:10:00,487 [main] INFO PackageBuilder - processing top package WG18 (3) ... +2024-09-08 15:10:00,487 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=WG18, _objData=UmlObjectData [id=319, uuid={56FFDD54-06CF-4a86-BA72-EC64D3EB8342}, since=null, name=WG18, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,487 [main] INFO PackageBuilder - processing package Abbreviations_410 (0) ... +2024-09-08 15:10:00,488 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Abbreviations_410, _objData=UmlObjectData [id=320, uuid={674B8FBD-E147-4fd6-97E2-B2AFE39A9735}, since=null, name=Abbreviations_410, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,488 [main] TRACE ClassBuilder - Class AbbrTermA (0 in package Abbreviations_410) +2024-09-08 15:10:00,489 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abbreviations_410::AbbrTermA, _objData=UmlObjectData [id=6640, uuid={123063FC-3D58-4faa-96F9-EAAE4724384A}, since=null, name=Abc, alias=, stereotype=enum, visibility=public, txtDescription='Any', htmlDescription='

Any

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,489 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abbreviations_410::AbbrTermA, _objData=UmlObjectData [id=6641, uuid={94B8FDB5-0CB3-4f0b-B930-B99E0ECE16C1}, since=null, name=Alm2, alias=, stereotype=enum, visibility=public, txtDescription='Alarm', htmlDescription='

Alarm

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,489 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abbreviations_410::AbbrTermA, _objData=UmlObjectData [id=6642, uuid={28072DCB-1DCE-439e-A69C-4E654D628880}, since=null, name=Amp, alias=, stereotype=enum, visibility=public, txtDescription='Duplicated definition: Current non-phase-related', htmlDescription='

Duplicated definition: Current non-phase-related

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,489 [main] TRACE ClassBuilder - read from EA: Abbreviations_410::AbbrTermA +2024-09-08 15:10:00,489 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=WG18, _depth=1, _eaElementID=3025, _objData=UmlObjectData [id=165, uuid={68E0B9A6-EF24-475e-AECE-93E2A716EEFB}, since=null, name=Abbreviations_410, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=Abbreviations_410, _objData=UmlObjectData [id=320, uuid={674B8FBD-E147-4fd6-97E2-B2AFE39A9735}, since=null, name=Abbreviations_410, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _classes=1 +2024-09-08 15:10:00,489 [main] TRACE PackageBuilder - read PackageBuilder [_kind=TOP, _containingPackage=IEC61850Domain, _depth=0, _eaElementID=3024, _objData=UmlObjectData [id=164, uuid={CB64D339-80A8-4da3-AFF7-D465DC0A98FB}, since=null, name=WG18, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=WG18, _objData=UmlObjectData [id=319, uuid={56FFDD54-06CF-4a86-BA72-EC64D3EB8342}, since=null, name=WG18, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _childPackages=1] +2024-09-08 15:10:00,490 [main] INFO PackageBuilder - processing top package JWG25 (4) ... +2024-09-08 15:10:00,490 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=JWG25, _objData=UmlObjectData [id=317, uuid={4D04D6E8-E7D9-4b40-B94E-35253E69429A}, since=null, name=JWG25, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,491 [main] TRACE PackageBuilder - read PackageBuilder [_kind=TOP, _containingPackage=IEC61850Domain, _depth=0, _eaElementID=3022, _objData=UmlObjectData [id=162, uuid={420923C3-C122-4d55-8CCF-7C90FFAF7514}, since=null, name=JWG25, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=JWG25, _objData=UmlObjectData [id=317, uuid={4D04D6E8-E7D9-4b40-B94E-35253E69429A}, since=null, name=JWG25, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]] +2024-09-08 15:10:00,491 [main] TRACE PackageBuilder - read PackageBuilder [_kind=MODEL, _depth=-1, _eaElementID=1455, _objData=UmlObjectData [id=58, uuid={5302BB59-9354-4acd-ACB1-2EE1C53C8BEB}, since=null, name=IEC61850Domain, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=58, _selfDependent=false, 2_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3068, uuid={89AF424B-7761-4043-BDAB-5A10CE7C0549}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Tool should derive from this dependency that "any namespace under WG17 depends on 7-4".', htmlDescription='

Tool should derive from this dependency that "any namespace under WG17 depends on 7-4".

'], _containingPackage=IEC61850Domain, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3069, uuid={BFBF085D-757B-45ee-87C8-AA171DB3EB73}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='7_3 and 7_4 packages: +1. One of (circular) dependencies should be caught as invalid and the search stopped. +2. Both self-dependencies should be also caught as invalid and the search stopped.', htmlDescription='

7_3 and 7_4 packages:

  1. One of (circular) dependencies should be caught as invalid and the search stopped.
  2. Both self-dependencies should be also caught as invalid and the search stopped.
'], _containingPackage=IEC61850Domain, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=IEC61850Domain, _objData=UmlObjectData [id=160, uuid={6CF56053-B50F-4cfd-9886-2785DAD0964E}, since=null, name=IEC61850Domain, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _childPackages=4] +2024-09-08 15:10:00,491 [main] INFO PackageBuilder - processing model package MyCimExtensions (3) ... +2024-09-08 15:10:00,491 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=MyCimExtensions, _objData=UmlObjectData [id=168, uuid={60D66409-416D-40a4-B387-83D4978AF099}, since=null, name=MyCimExtensions, alias=, stereotype=European, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,492 [main] ERROR EaTables - [+++ EA ordering problem for 2 class(s) in MyCimExtensions (manually move back/forth a class to initiate EA internal ordering update!): +, +++ class DFD_External1: pos = 0 +, +++ class DFD_DataStore1: pos = 0 DUPLICATE +] +2024-09-08 15:10:00,492 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=false, _objData=UmlObjectData [id=3076, uuid={93440207-D561-463c-AFEC-2CCBD3A1C02C}, since=null, name=DFD_Process1, alias=, stereotype=DFD_Process, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=MyCimExtensions, _otherEndName=] +2024-09-08 15:10:00,493 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3079, uuid={4D1094DE-526D-437b-8E6C-BA2ADCBB8B84}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='All these dependencies created to test that they get skipped when non-sense. +Also new kind of EA elements (from Data Flow Diagram toolbox).', htmlDescription='

All these dependencies created to test that they get skipped when non-sense.

Also new kind of EA elements (from Data Flow Diagram toolbox).

'], _containingPackage=MyCimExtensions, _otherEndName=] +2024-09-08 15:10:00,493 [main] TRACE ClassBuilder - Class DFD_External1 (0 in package MyCimExtensions) +2024-09-08 15:10:00,493 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=3462, uuid={4C44DD9C-CFA6-409f-96DF-DC5B995BA889}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=DFD_External1, _otherEndName=?] +2024-09-08 15:10:00,493 [main] TRACE ClassBuilder - read from EA: MyCimExtensions::DFD_External1 +2024-09-08 15:10:00,493 [main] TRACE ClassBuilder - Class DFD_DataStore1 (0 in package MyCimExtensions) +2024-09-08 15:10:00,494 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=3461, uuid={A511BB57-6587-4b01-91B6-07FA73F4CC34}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=DFD_DataStore1, _otherEndName=?] +2024-09-08 15:10:00,494 [main] TRACE ClassBuilder - read from EA: MyCimExtensions::DFD_DataStore1 +2024-09-08 15:10:00,494 [main] INFO PackageBuilder - processing top package Ext1 (1) ... +2024-09-08 15:10:00,494 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Ext1, _objData=UmlObjectData [id=169, uuid={D5D8113F-F068-47b9-AD5E-A6E3EAC3B4A5}, since=null, name=Ext1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,494 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=3458, uuid={0DF96453-9F41-4fd0-B153-AA73C8BBA90C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Ext1, _otherEndName=Class 'Apple'] +2024-09-08 15:10:00,495 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=3460, uuid={7E090DCF-7AE3-4850-A950-821D06B4204F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Ext1, _otherEndName=Activity 'DFD_Process1'] +2024-09-08 15:10:00,495 [main] ERROR EaTables - [+++ EA ordering problem for 5 class(s) in Ext1 (manually move back/forth a class to initiate EA internal ordering update!): +, +++ class Apple: pos = 0 +, +++ class Fruit: pos = 0 DUPLICATE +, +++ class Pear: pos = 0 DUPLICATE +, +++ class FruitBinKind: pos = 0 DUPLICATE +, +++ class Village: pos = 0 DUPLICATE +] +2024-09-08 15:10:00,495 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1527, uuid={8FFE60E7-D67F-4a78-83C3-8F0957CAB288}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Associations are for testing multiple associations between two classes, and recursive (self) associations; tags and stereotypes on associations and their ends.', htmlDescription='

Associations are for testing multiple associations between two classes, and recursive (self) associations; tags and stereotypes on associations and their ends.

'], _containingPackage=Ext1, _otherEndName=] +2024-09-08 15:10:00,495 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3037, uuid={DED259D4-C7E8-4e3b-8718-6CB951B07762}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Replicates bug reported by Pat Brown on version 01v07: +- Class having an association inadvertently embedded into an enumerated type. +- model builder throws NPE when cross-checking associations.', htmlDescription='

Replicates bug reported by Pat Brown on version 01v07:

- Class having an association inadvertently embedded into an enumerated type.

- model builder throws NPE when cross-checking associations.

'], _containingPackage=Ext1, _otherEndName=] +2024-09-08 15:10:00,495 [main] TRACE ClassBuilder - Class Apple (0 in package Ext1) +2024-09-08 15:10:00,495 [main] DEBUG DbAttributeBuilder - fixing lower bound '' to 1 for enum:UmlObjectData [id=3286, uuid={A7C8D399-77B9-43bf-81E0-5CD276C86FE6}, since=null, name=shouldNotBeEnum, alias=, stereotype=enum, visibility=private, txtDescription='', htmlDescription=''] +2024-09-08 15:10:00,495 [main] DEBUG DbAttributeBuilder - fixing upper bound '' to 1 for enum:UmlObjectData [id=3286, uuid={A7C8D399-77B9-43bf-81E0-5CD276C86FE6}, since=null, name=shouldNotBeEnum, alias=, stereotype=enum, visibility=private, txtDescription='', htmlDescription=''] +2024-09-08 15:10:00,496 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Ext1::Apple, _objData=UmlObjectData [id=3286, uuid={A7C8D399-77B9-43bf-81E0-5CD276C86FE6}, since=null, name=shouldNotBeEnum, alias=, stereotype=enum, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,496 [main] DEBUG AssociationEndBuilder - Updated source type to Apple +2024-09-08 15:10:00,496 [main] DEBUG AssociationEndBuilder - Updated target type to Apple +2024-09-08 15:10:00,496 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2025, uuid=72dc638c-d696-3922-b96a-fa5f53958681, since=null, name=SelfFromApple, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Apple, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2026, uuid=65f3723c-2924-3fb9-8feb-07ff58485105, since=null, name=SelfToApples, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Apple, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=2140, uuid={0D57F849-565B-4f3b-80BE-57B70D69A932}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,497 [main] DEBUG AssociationEndBuilder - Updated target type to Apple +2024-09-08 15:10:00,497 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2028, uuid=1bba8621-dd6e-3ce5-8d7b-b8589d4e1b6a, since=null, name=Pear, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified, 1_taggedValues{assocEndTag=value}], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2029, uuid=7be9b48e-224b-3878-a982-788c533facf9, since=null, name=Apple, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Apple, _multiplicity=[0..*], _navigable=unspecified, 1_taggedValues{targetEndTag=value2}], _objData=UmlObjectData [id=2141, uuid={954F6518-04E4-4b31-8F4B-8B9F6E690AE3}, since=null, name=, alias=, stereotype=dumbStereotype, European, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,497 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2028, uuid=1bba8621-dd6e-3ce5-8d7b-b8589d4e1b6a, since=null, name=Pear, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified, 1_taggedValues{assocEndTag=value}], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2029, uuid=7be9b48e-224b-3878-a982-788c533facf9, since=null, name=Apple, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Apple, _multiplicity=[0..*], _navigable=unspecified, 1_taggedValues{targetEndTag=value2}], _objData=UmlObjectData [id=2141, uuid={954F6518-04E4-4b31-8F4B-8B9F6E690AE3}, since=null, name=, alias=, stereotype=dumbStereotype, European, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Ext1::Apple +2024-09-08 15:10:00,497 [main] DEBUG AssociationEndBuilder - Updated target type to Apple +2024-09-08 15:10:00,498 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2031, uuid=6fc97e58-ed3b-38ec-8ac6-0e4c451f40bc, since=null, name=SecondPear, alias=, stereotype=sourceStereo, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2032, uuid=e128a404-9ba6-3f7d-b760-72f20970e33c, since=null, name=SecondApple, alias=, stereotype=targetStereo, European, visibility=public, txtDescription='', htmlDescription=''], _type=Apple, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=2142, uuid={624196D8-07C7-45ee-961A-BC80925C1D8C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false, 1_taggedValues{assocTag=value0}] +2024-09-08 15:10:00,499 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2031, uuid=6fc97e58-ed3b-38ec-8ac6-0e4c451f40bc, since=null, name=SecondPear, alias=, stereotype=sourceStereo, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2032, uuid=e128a404-9ba6-3f7d-b760-72f20970e33c, since=null, name=SecondApple, alias=, stereotype=targetStereo, European, visibility=public, txtDescription='', htmlDescription=''], _type=Apple, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=2142, uuid={624196D8-07C7-45ee-961A-BC80925C1D8C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false, 1_taggedValues{assocTag=value0}] as target to Ext1::Apple +2024-09-08 15:10:00,499 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=3458, uuid={0DF96453-9F41-4fd0-B153-AA73C8BBA90C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=Apple, _otherEndName=?] +2024-09-08 15:10:00,499 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=3459, uuid={DCF3BEE2-32C5-4328-B679-92D2087B4019}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=Apple, _otherEndName=?] +2024-09-08 15:10:00,499 [main] TRACE ClassBuilder - read from EA: Ext1::Apple +2024-09-08 15:10:00,499 [main] TRACE ClassBuilder - Class Fruit (0 in package Ext1) +2024-09-08 15:10:00,500 [main] DEBUG AssociationEndBuilder - Updated target type to Fruit +2024-09-08 15:10:00,500 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2037, uuid=846c3cd9-8238-3d7f-b379-955bd684f4cd, since=null, name=Animal, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2038, uuid=264476c8-aa4a-328e-8d0c-f9841b559539, since=null, name=Fruit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Fruit, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=2143, uuid={22327B79-0B9D-43d4-8435-A05F123D2CDA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,500 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2037, uuid=846c3cd9-8238-3d7f-b379-955bd684f4cd, since=null, name=Animal, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2038, uuid=264476c8-aa4a-328e-8d0c-f9841b559539, since=null, name=Fruit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Fruit, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=2143, uuid={22327B79-0B9D-43d4-8435-A05F123D2CDA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Ext1::Fruit +2024-09-08 15:10:00,500 [main] DEBUG AssociationEndBuilder - Updated target type to Fruit +2024-09-08 15:10:00,500 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2040, uuid=8cd3a8e5-c4f8-36f6-8896-6e7d87ec1730, since=null, name=SecondAnimal, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2041, uuid=1e4b2298-d2b3-33d1-afe4-b959166b0c74, since=null, name=SecondFruit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Fruit, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=2144, uuid={2C4806C9-BA94-4210-8DA4-94FAF9D3A7A2}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,500 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2040, uuid=8cd3a8e5-c4f8-36f6-8896-6e7d87ec1730, since=null, name=SecondAnimal, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2041, uuid=1e4b2298-d2b3-33d1-afe4-b959166b0c74, since=null, name=SecondFruit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Fruit, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=2144, uuid={2C4806C9-BA94-4210-8DA4-94FAF9D3A7A2}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Ext1::Fruit +2024-09-08 15:10:00,500 [main] DEBUG ClassBuilder - Adding Fruit as superclass of Apple +2024-09-08 15:10:00,500 [main] TRACE ClassBuilder - read from EA: Ext1::Fruit +2024-09-08 15:10:00,500 [main] TRACE ClassBuilder - Class Pear (0 in package Ext1) +2024-09-08 15:10:00,500 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Ext1::Pear, _objData=UmlObjectData [id=3287, uuid={6AE12819-CBFF-4c5c-A47A-AA188AD4F76C}, since=null, name=typeIsInformative, alias=, stereotype=European, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1532, _eaTypeName=SomeSimpleType, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,500 [main] DEBUG AssociationEndBuilder - Updated source type to Pear +2024-09-08 15:10:00,500 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2028, uuid=1bba8621-dd6e-3ce5-8d7b-b8589d4e1b6a, since=null, name=Pear, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Pear, _multiplicity=[0..1], _navigable=unspecified, 1_taggedValues{assocEndTag=value}], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2029, uuid=7be9b48e-224b-3878-a982-788c533facf9, since=null, name=Apple, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Apple, _multiplicity=[0..*], _navigable=unspecified, 1_taggedValues{targetEndTag=value2}], _objData=UmlObjectData [id=2141, uuid={954F6518-04E4-4b31-8F4B-8B9F6E690AE3}, since=null, name=, alias=, stereotype=dumbStereotype, European, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Ext1::Pear +2024-09-08 15:10:00,501 [main] DEBUG AssociationEndBuilder - Updated source type to Pear +2024-09-08 15:10:00,501 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2031, uuid=6fc97e58-ed3b-38ec-8ac6-0e4c451f40bc, since=null, name=SecondPear, alias=, stereotype=sourceStereo, visibility=public, txtDescription='', htmlDescription=''], _type=Pear, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2032, uuid=e128a404-9ba6-3f7d-b760-72f20970e33c, since=null, name=SecondApple, alias=, stereotype=targetStereo, European, visibility=public, txtDescription='', htmlDescription=''], _type=Apple, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=2142, uuid={624196D8-07C7-45ee-961A-BC80925C1D8C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false, 1_taggedValues{assocTag=value0}] as source to Ext1::Pear +2024-09-08 15:10:00,501 [main] DEBUG ClassBuilder - Adding Pear as subclass of Fruit +2024-09-08 15:10:00,501 [main] DEBUG ClassBuilder - Adding Pear as superclass of EquipmentContainer +2024-09-08 15:10:00,501 [main] TRACE ClassBuilder - read from EA: Ext1::Pear +2024-09-08 15:10:00,501 [main] TRACE ClassBuilder - Class FruitBinKind (0 in package Ext1) +2024-09-08 15:10:00,501 [main] TRACE ClassBuilder - Class Strawberry (0 in package Ext1) +2024-09-08 15:10:00,501 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3419, uuid={590BAC4B-6B4F-40f3-8180-3395A271DB36}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=Strawberry, _otherEndName=?] +2024-09-08 15:10:00,501 [main] DEBUG AssociationEndBuilder - Updated target type to Strawberry +2024-09-08 15:10:00,501 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2048, uuid=b5207e67-b517-3722-8ba6-339538c65d89, since=null, name=Vilage, alias=, stereotype=, visibility=public, txtDescription='Village as origin.', htmlDescription='

Village as origin.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2049, uuid=898161ef-8025-3ed9-8a66-75f5385a12ed, since=null, name=Strawberries, alias=, stereotype=, visibility=public, txtDescription='Strawberries...', htmlDescription='

Strawberries...

'], _type=Strawberry, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3418, uuid={B41F211E-720A-4af2-AAC9-285E735D4A7C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,501 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2048, uuid=b5207e67-b517-3722-8ba6-339538c65d89, since=null, name=Vilage, alias=, stereotype=, visibility=public, txtDescription='Village as origin.', htmlDescription='

Village as origin.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2049, uuid=898161ef-8025-3ed9-8a66-75f5385a12ed, since=null, name=Strawberries, alias=, stereotype=, visibility=public, txtDescription='Strawberries...', htmlDescription='

Strawberries...

'], _type=Strawberry, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3418, uuid={B41F211E-720A-4af2-AAC9-285E735D4A7C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Ext1::Strawberry +2024-09-08 15:10:00,501 [main] DEBUG ClassBuilder - Adding Strawberry as subclass of Fruit +2024-09-08 15:10:00,501 [main] TRACE ClassBuilder - read from EA: Ext1::Strawberry +2024-09-08 15:10:00,501 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=false, _objData=UmlObjectData [id=3035, uuid={68164654-247A-4ba2-8690-1CF436EB4730}, since=null, name=Strawberry, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=FruitBinKind, _otherEndName=] +2024-09-08 15:10:00,502 [main] DEBUG DbAttributeBuilder - fixing lower bound '' to 1 for enum:UmlObjectData [id=6650, uuid={D041A1EC-198E-4ce2-9312-3C465931E469}, since=null, name=plastic, alias=, stereotype=enum, European, visibility=public, txtDescription='', htmlDescription=''] +2024-09-08 15:10:00,502 [main] DEBUG DbAttributeBuilder - fixing upper bound '' to 1 for enum:UmlObjectData [id=6650, uuid={D041A1EC-198E-4ce2-9312-3C465931E469}, since=null, name=plastic, alias=, stereotype=enum, European, visibility=public, txtDescription='', htmlDescription=''] +2024-09-08 15:10:00,502 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Ext1::FruitBinKind, _objData=UmlObjectData [id=6650, uuid={D041A1EC-198E-4ce2-9312-3C465931E469}, since=null, name=plastic, alias=, stereotype=enum, European, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,502 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Ext1::FruitBinKind, _objData=UmlObjectData [id=6651, uuid={F5BFB4E5-ECCB-4a7f-A21E-D4029DE0CA3A}, since=null, name=straw, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,502 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Ext1::FruitBinKind, _objData=UmlObjectData [id=6652, uuid={9E795ABE-F825-45c8-AC06-4B80E5E67680}, since=null, name=glass, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,502 [main] TRACE ClassBuilder - read from EA: Ext1::FruitBinKind +2024-09-08 15:10:00,502 [main] TRACE ClassBuilder - Class Village (0 in package Ext1) +2024-09-08 15:10:00,503 [main] DEBUG AssociationEndBuilder - Updated source type to Village +2024-09-08 15:10:00,503 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2048, uuid=b5207e67-b517-3722-8ba6-339538c65d89, since=null, name=Vilage, alias=, stereotype=, visibility=public, txtDescription='Village as origin.', htmlDescription='

Village as origin.

'], _type=Village, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2049, uuid=898161ef-8025-3ed9-8a66-75f5385a12ed, since=null, name=Strawberries, alias=, stereotype=, visibility=public, txtDescription='Strawberries...', htmlDescription='

Strawberries...

'], _type=Strawberry, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3418, uuid={B41F211E-720A-4af2-AAC9-285E735D4A7C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Ext1::Village +2024-09-08 15:10:00,503 [main] TRACE ClassBuilder - read from EA: Ext1::Village +2024-09-08 15:10:00,503 [main] TRACE PackageBuilder - read PackageBuilder [_kind=TOP, _containingPackage=MyCimExtensions, _depth=0, _eaElementID=1486, _objData=UmlObjectData [id=69, uuid={450FC7C5-E381-456c-A96D-7BC87AE64D11}, since=null, name=Ext1, alias=, stereotype=European, visibility=public, txtDescription='For testing multiple and recursive associations.', htmlDescription='

For testing multiple and recursive associations.

'], _modelId=68, _selfDependent=false, 2_taggedValues{nsuri=http://toto, nsprefix=ext2}, 4_skippedEaItems=[SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=3458, uuid={0DF96453-9F41-4fd0-B153-AA73C8BBA90C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Ext1, _otherEndName=Class 'Apple'], SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=3460, uuid={7E090DCF-7AE3-4850-A950-821D06B4204F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Ext1, _otherEndName=Activity 'DFD_Process1'], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1527, uuid={8FFE60E7-D67F-4a78-83C3-8F0957CAB288}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Associations are for testing multiple associations between two classes, and recursive (self) associations; tags and stereotypes on associations and their ends.', htmlDescription='

Associations are for testing multiple associations between two classes, and recursive (self) associations; tags and stereotypes on associations and their ends.

'], _containingPackage=Ext1, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3037, uuid={DED259D4-C7E8-4e3b-8718-6CB951B07762}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Replicates bug reported by Pat Brown on version 01v07: +- Class having an association inadvertently embedded into an enumerated type. +- model builder throws NPE when cross-checking associations.', htmlDescription='

Replicates bug reported by Pat Brown on version 01v07:

- Class having an association inadvertently embedded into an enumerated type.

- model builder throws NPE when cross-checking associations.

'], _containingPackage=Ext1, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=Ext1, _objData=UmlObjectData [id=169, uuid={D5D8113F-F068-47b9-AD5E-A6E3EAC3B4A5}, since=null, name=Ext1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _classes=5 +2024-09-08 15:10:00,503 [main] INFO PackageBuilder - processing top package Package with space (2) ... +2024-09-08 15:10:00,503 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Package with space, _objData=UmlObjectData [id=182, uuid={88693A7A-BB38-4644-9FE6-0360687DF33F}, since=null, name=Package with space, alias=, stereotype=, visibility=public, txtDescription='Doc.', htmlDescription='

Doc.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,504 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=3461, uuid={A511BB57-6587-4b01-91B6-07FA73F4CC34}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Package with space, _otherEndName=Class 'DFD_DataStore1'] +2024-09-08 15:10:00,504 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=3462, uuid={4C44DD9C-CFA6-409f-96DF-DC5B995BA889}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Package with space, _otherEndName=Class 'DFD_External1'] +2024-09-08 15:10:00,504 [main] ERROR EaTables - [+++ EA ordering problem for 2 class(s) in Package with space (manually move back/forth a class to initiate EA internal ordering update!): +, +++ class My class: pos = 0 +, +++ class Other-with_invalid name: pos = 0 DUPLICATE +] +2024-09-08 15:10:00,505 [main] TRACE ClassBuilder - Class My class (0 in package Package with space) +2024-09-08 15:10:00,505 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Package with space::My class, _objData=UmlObjectData [id=3304, uuid={612A61C0-C06B-425e-A24C-2581B6D63928}, since=null, name=_attr, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=640, _eaTypeName=AbsoluteDateTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1 _constraints[ConstraintBuilder [_objData=UmlObjectData [id=2061, uuid=7d2d346d-0f9c-3a65-93d3-09e5415a6f1d, since=null, name= attr-constraint, alias=, stereotype=, visibility=public, txtDescription='lala', htmlDescription='

lala

'], _containingAttribute=_attr, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=lala]]] +2024-09-08 15:10:00,505 [main] TRACE OperationBuilder - read from EA: OperationBuilder [_containingClass=My class, _objData=UmlObjectData [id=6, uuid={A4CA59B1-5E80-4cb9-A2AB-1FEA377A0A33}, since=null, name=ope-ration, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _abstract=false, _static=false, _final=false, _kind=OP_RET_VOID, _returnType=null, _eaReturnTypeId=0, _eaReturnTypeName=void, 2_parameters[ParameterBuilder [_containingOperation=ope-ration, _position=0, _kind=SIMPLE, _objData=UmlObjectData [id=2063, uuid={B9E929B4-3E5D-4b39-83CB-4EFAC956A019}, since=null, name=other param, alias=, stereotype=, visibility=public, txtDescription='Doc for parameter is ok.', htmlDescription='

Doc for parameter is ok.

'], _type=null, _eaTypeName=Boolean, _eaTypeIdAsString=619], ParameterBuilder [_containingOperation=ope-ration, _position=1, _kind=SIMPLE, _objData=UmlObjectData [id=2064, uuid={82D97A41-4B66-40ae-ADF4-3BFA2BD0E201}, since=null, name=_par, alias=, stereotype=, visibility=public, txtDescription='doc', htmlDescription='

doc

'], _type=null, _eaTypeName=ApparentPower, _eaTypeIdAsString=616]]] +2024-09-08 15:10:00,505 [main] DEBUG AssociationEndBuilder - Updated source type to My class +2024-09-08 15:10:00,506 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2066, uuid=15faecc4-978a-3b54-b8fc-e6b3eb6b2612, since=null, name=Role 1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=My class, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2067, uuid=2891d36d-913e-3c71-a838-f547f15a8f48, since=null, name=_role 2&x, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2147, uuid={7F169184-56EB-4777-AFF0-237C0E3C7368}, since=null, name=, alias=, stereotype=European, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:10:00,506 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2066, uuid=15faecc4-978a-3b54-b8fc-e6b3eb6b2612, since=null, name=Role 1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=My class, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2067, uuid=2891d36d-913e-3c71-a838-f547f15a8f48, since=null, name=_role 2&x, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2147, uuid={7F169184-56EB-4777-AFF0-237C0E3C7368}, since=null, name=, alias=, stereotype=European, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Package with space::My class +2024-09-08 15:10:00,506 [main] TRACE ClassBuilder - read from EA: Package with space::My class +2024-09-08 15:10:00,506 [main] TRACE ClassBuilder - Class Other-with_invalid name (0 in package Package with space) +2024-09-08 15:10:00,506 [main] DEBUG AssociationEndBuilder - Updated target type to Other-with_invalid name +2024-09-08 15:10:00,506 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2066, uuid=15faecc4-978a-3b54-b8fc-e6b3eb6b2612, since=null, name=Role 1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=My class, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2067, uuid=2891d36d-913e-3c71-a838-f547f15a8f48, since=null, name=_role 2&x, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Other-with_invalid name, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2147, uuid={7F169184-56EB-4777-AFF0-237C0E3C7368}, since=null, name=, alias=, stereotype=European, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Package with space::Other-with_invalid name +2024-09-08 15:10:00,507 [main] TRACE ClassBuilder - read from EA: Package with space::Other-with_invalid name +2024-09-08 15:10:00,507 [main] TRACE PackageBuilder - read PackageBuilder [_kind=TOP, _containingPackage=MyCimExtensions, _depth=0, _eaElementID=1541, _objData=UmlObjectData [id=81, uuid={6FCD7A13-00E7-4896-B745-7659F0CD6B48}, since=null, name=Package with space, alias=, stereotype=, visibility=public, txtDescription='Doc.', htmlDescription='

Doc.

'], _modelId=68, _selfDependent=false, 2_skippedEaItems=[SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=3461, uuid={A511BB57-6587-4b01-91B6-07FA73F4CC34}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Package with space, _otherEndName=Class 'DFD_DataStore1'], SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=3462, uuid={4C44DD9C-CFA6-409f-96DF-DC5B995BA889}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Package with space, _otherEndName=Class 'DFD_External1']], 1_diagrams=[DiagramBuilder [_containingPackage=Package with space, _objData=UmlObjectData [id=182, uuid={88693A7A-BB38-4644-9FE6-0360687DF33F}, since=null, name=Package with space, alias=, stereotype=, visibility=public, txtDescription='Doc.', htmlDescription='

Doc.

'], _portrait=true, _kind=LOGICAL]], _classes=2 +2024-09-08 15:10:00,507 [main] TRACE PackageBuilder - read PackageBuilder [_kind=MODEL, _depth=-1, _eaElementID=1485, _objData=UmlObjectData [id=68, uuid={A40B29B1-859B-48be-BBE9-59093417C5D4}, since=null, name=MyCimExtensions, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=68, _selfDependent=false, 2_skippedEaItems=[SkippedBuilder [, _kind=OTHER, _isConnector=false, _objData=UmlObjectData [id=3076, uuid={93440207-D561-463c-AFEC-2CCBD3A1C02C}, since=null, name=DFD_Process1, alias=, stereotype=DFD_Process, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=MyCimExtensions, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3079, uuid={4D1094DE-526D-437b-8E6C-BA2ADCBB8B84}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='All these dependencies created to test that they get skipped when non-sense. +Also new kind of EA elements (from Data Flow Diagram toolbox).', htmlDescription='

All these dependencies created to test that they get skipped when non-sense.

Also new kind of EA elements (from Data Flow Diagram toolbox).

'], _containingPackage=MyCimExtensions, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=MyCimExtensions, _objData=UmlObjectData [id=168, uuid={60D66409-416D-40a4-B387-83D4978AF099}, since=null, name=MyCimExtensions, alias=, stereotype=European, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _classes=2, _childPackages=2] +2024-09-08 15:10:00,507 [main] INFO PackageBuilder - processing model package My61850Extensions (4) ... +2024-09-08 15:10:00,507 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=My61850Extensions, _objData=UmlObjectData [id=172, uuid={0E92FC72-40C8-4400-A4FD-D7210BCA75F7}, since=null, name=My61850Extensions, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=PACKAGE] +2024-09-08 15:10:00,508 [main] INFO PackageBuilder - processing top package Ext2 (0) ... +2024-09-08 15:10:00,508 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Ext2, _objData=UmlObjectData [id=170, uuid={CB8EA802-16A3-4db9-8A4F-960049C664F5}, since=null, name=Ext2, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 15:10:00,509 [main] ERROR EaTables - [+++ EA ordering problem for 3 class(s) in Ext2 (manually move back/forth a class to initiate EA internal ordering update!): +, +++ class Animal: pos = 0 +, +++ class Dog: pos = 0 DUPLICATE +, +++ class Horse: pos = 0 DUPLICATE +] +2024-09-08 15:10:00,509 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1528, uuid={0FF45B1A-C31A-4a38-8B90-9528C242BB0D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='For testing 2 association between same classes from different owners.', htmlDescription='

For testing 2 association between same classes from different owners.

'], _containingPackage=Ext2, _otherEndName=] +2024-09-08 15:10:00,509 [main] TRACE ClassBuilder - Class Animal (0 in package Ext2) +2024-09-08 15:10:00,509 [main] DEBUG AssociationEndBuilder - Updated source type to Animal +2024-09-08 15:10:00,509 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2037, uuid=846c3cd9-8238-3d7f-b379-955bd684f4cd, since=null, name=Animal, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Animal, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2038, uuid=264476c8-aa4a-328e-8d0c-f9841b559539, since=null, name=Fruit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Fruit, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=2143, uuid={22327B79-0B9D-43d4-8435-A05F123D2CDA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Ext2::Animal +2024-09-08 15:10:00,510 [main] DEBUG AssociationEndBuilder - Updated source type to Animal +2024-09-08 15:10:00,510 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2040, uuid=8cd3a8e5-c4f8-36f6-8896-6e7d87ec1730, since=null, name=SecondAnimal, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Animal, _multiplicity=[1..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2041, uuid=1e4b2298-d2b3-33d1-afe4-b959166b0c74, since=null, name=SecondFruit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Fruit, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=2144, uuid={2C4806C9-BA94-4210-8DA4-94FAF9D3A7A2}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Ext2::Animal +2024-09-08 15:10:00,510 [main] TRACE ClassBuilder - read from EA: Ext2::Animal +2024-09-08 15:10:00,510 [main] TRACE ClassBuilder - Class Dog (0 in package Ext2) +2024-09-08 15:10:00,510 [main] DEBUG ClassBuilder - Adding Dog as subclass of Animal +2024-09-08 15:10:00,510 [main] TRACE ClassBuilder - read from EA: Ext2::Dog +2024-09-08 15:10:00,510 [main] TRACE ClassBuilder - Class Horse (0 in package Ext2) +2024-09-08 15:10:00,511 [main] DEBUG ClassBuilder - Adding Horse as subclass of Animal +2024-09-08 15:10:00,511 [main] TRACE ClassBuilder - read from EA: Ext2::Horse +2024-09-08 15:10:00,511 [main] TRACE PackageBuilder - read PackageBuilder [_kind=TOP, _containingPackage=My61850Extensions, _depth=0, _eaElementID=1487, _objData=UmlObjectData [id=70, uuid={FB7850F3-DFDE-43b7-BED8-204CAF1C5116}, since=null, name=Ext2, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=72, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1528, uuid={0FF45B1A-C31A-4a38-8B90-9528C242BB0D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='For testing 2 association between same classes from different owners.', htmlDescription='

For testing 2 association between same classes from different owners.

'], _containingPackage=Ext2, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=Ext2, _objData=UmlObjectData [id=170, uuid={CB8EA802-16A3-4db9-8A4F-960049C664F5}, since=null, name=Ext2, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _classes=3 +2024-09-08 15:10:00,511 [main] TRACE PackageBuilder - read PackageBuilder [_kind=MODEL, _depth=-1, _eaElementID=1500, _objData=UmlObjectData [id=72, uuid={5483020F-EEDB-4171-B23E-4927E68B2715}, since=null, name=My61850Extensions, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=72, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=My61850Extensions, _objData=UmlObjectData [id=172, uuid={0E92FC72-40C8-4400-A4FD-D7210BCA75F7}, since=null, name=My61850Extensions, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=PACKAGE]], _childPackages=1] +2024-09-08 15:10:00,511 [main] INFO PackageBuilder - processing model package NewNature (5) ... +2024-09-08 15:10:00,511 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=NewNature, _objData=UmlObjectData [id=329, uuid={3A67127C-19D1-40d8-BAB3-6D032837AC24}, since=null, name=NewNature, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=PACKAGE] +2024-09-08 15:10:00,512 [main] TRACE PackageBuilder - read PackageBuilder [_kind=MODEL, _depth=-1, _eaElementID=3092, _objData=UmlObjectData [id=174, uuid={25561F14-776F-4c4c-A475-E9D194EFE1BA}, since=null, name=NewNature, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=174, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=NewNature, _objData=UmlObjectData [id=329, uuid={3A67127C-19D1-40d8-BAB3-6D032837AC24}, since=null, name=NewNature, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=PACKAGE]] +2024-09-08 15:10:00,512 [main] ERROR EaModelBuilder - +++ EA consistency error - duplicate EA GUID: +2024-09-08 15:10:00,512 [main] ERROR EaModelBuilder - {870F033B-EDA6-4a32-A5AD-47DCBBFE2997} +2024-09-08 15:10:00,512 [main] ERROR EaModelBuilder - AttributeBuilder [_containingClass=Core::IdentifiedObject, _objData=UmlObjectData [id=6648, uuid={870F033B-EDA6-4a32-A5AD-47DCBBFE2997}, since=null, name=name, alias=, stereotype=, visibility=public, txtDescription='The name is any free human readable and possibly non unique text naming the object.', htmlDescription='

The name is any free human readable and possibly non unique text naming the object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,512 [main] ERROR EaModelBuilder - AttributeBuilder [_containingClass=Core::IdentifiedObject, _objData=UmlObjectData [id=6649, uuid={870F033B-EDA6-4a32-A5AD-47DCBBFE2997}, since=null, name=description, alias=, stereotype=, visibility=public, txtDescription='The description is a free human readable text describing or naming the object. It may be non unique and may not correlate to a naming hierarchy.', htmlDescription='

The description is a free human readable text describing or naming the object. It may be non unique and may not correlate to a naming hierarchy.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:10:00,513 [main] INFO Util - time=[0:00:00.657] built model from EA tables (as EAP DB) +2024-09-08 15:10:00,513 [main] INFO Util - +2024-09-08 15:10:00,513 [main] INFO Util - +2024-09-08 15:10:00,513 [main] INFO Util - ------------------------------------------------ +2024-09-08 15:10:00,513 [main] INFO Util - linking builders... +2024-09-08 15:10:00,513 [main] INFO EaModelBuilder - assigning type to attributes ... +2024-09-08 15:10:00,513 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Informative::HasIllegalTypeForAttr, _objData=UmlObjectData [id=3284, uuid={37EE993E-B7A3-4940-8707-E8C0C720D620}, since=null, name=dummy, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=860, _eaTypeName=Bay, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1e8284b]. +2024-09-08 15:10:00,513 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC61970::IEC61970CIMVersion, _objData=UmlObjectData [id=1271, uuid={8DADB97F-283D-40c7-A25A-D75E4C0D8507}, since=null, name=date, alias=, stereotype=, visibility=public, txtDescription='Form is YYYY-MM-DD for example for January 5, 2009 it is 2009-01-05. +Note: Bad date format on purpose.', htmlDescription='

Form is YYYY-MM-DD for example for January 5, 2009 it is 2009-01-05.

Note: Bad date format on purpose.

'], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=20119-08-01, _eaTypeId=640, _eaTypeName=AbsoluteDateTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@74868d]. +2024-09-08 15:10:00,513 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC61970::IEC61970CIMVersion, _objData=UmlObjectData [id=1272, uuid={B4E0B1B6-8794-406a-A4C6-CBB395E37A52}, since=null, name=version, alias=, stereotype=, visibility=public, txtDescription='Form is IEC61970CIMXXvYY where XX is the major CIM package version and the YY is the minor version. For ecample IEC61970CIM13v18.', htmlDescription='

Form is IEC61970CIMXXvYY where XX is the major CIM package version and the YY is the minor version. For ecample IEC61970CIM13v18.

'], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=IEC61970CIM14v12, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@e6aa2]. +2024-09-08 15:10:00,514 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=InformativeAndPrivate::InfClass2, _objData=UmlObjectData [id=6709, uuid={2BFC1914-ECFF-49b5-8F28-BF20BD1E1FE3}, since=null, name=isToto, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@5185bd]. +2024-09-08 15:10:00,514 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::AbsoluteDateTime, _objData=UmlObjectData [id=1440, uuid={CFF950F8-C337-424c-97FF-B8A4168598B5}, since=null, name=protectedAttribute, alias=, stereotype=, visibility=protected, txtDescription='String representation of date and time, refer to description of the class.', htmlDescription='

String representation of date and time, refer to description of the class.

'], _isConst=false, _isStatic=false, _multiplicity=[2..5], _initValue=, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@e6aa2]. +2024-09-08 15:10:00,514 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::ActivePower, _objData=UmlObjectData [id=1434, uuid={A3961E95-7DD0-4d68-A41A-FDC07295CD2B}, since=null, name=multiplier, alias=, stereotype=European, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=634, _eaTypeName=UnitMultiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b64261]. +2024-09-08 15:10:00,514 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::ActivePower, _objData=UmlObjectData [id=1435, uuid={8C27ACD4-E6D7-407f-B0AF-B545966B9337}, since=null, name=unit, alias=, stereotype=deprecated, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=W, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@2663d3]. +2024-09-08 15:10:00,514 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::ActivePower, _objData=UmlObjectData [id=1436, uuid={133597D7-9050-4335-B968-86AF7E16558C}, since=null, name=value, alias=, stereotype=custom, invalid, European, deprecated, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@190a65e]. +2024-09-08 15:10:00,514 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::ActivePowerChangeRate, _objData=UmlObjectData [id=1402, uuid={127E7AD6-A19D-4a00-84C2-6DE69D31A319}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=634, _eaTypeName=UnitMultiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b64261]. +2024-09-08 15:10:00,514 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::ActivePowerChangeRate, _objData=UmlObjectData [id=1403, uuid={D89B1C84-0EB0-4ea0-ACD8-F59965B01026}, since=null, name=unit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=true, _multiplicity=[0..1], _initValue=W/s, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@2663d3]. +2024-09-08 15:10:00,514 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::ApparentPower, _objData=UmlObjectData [id=1368, uuid={C363463C-85C7-487f-BE31-B6444DAB07DD}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=634, _eaTypeName=UnitMultiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b64261]. +2024-09-08 15:10:00,514 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::ApparentPower, _objData=UmlObjectData [id=1369, uuid={C93DE952-5AF9-40cc-9792-4D2372DC5EEF}, since=null, name=unit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=VA, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@2663d3]. +2024-09-08 15:10:00,514 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::ApparentPower, _objData=UmlObjectData [id=1370, uuid={FEE24CD4-5876-4e4c-B179-AEAA3E11B738}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@190a65e, 1_taggedValues{tag=val}]. +2024-09-08 15:10:00,514 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::Money, _objData=UmlObjectData [id=1323, uuid={86CC9B3D-6DFC-4a34-9152-1BD808FBDD41}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=634, _eaTypeName=UnitMultiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b64261]. +2024-09-08 15:10:00,514 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::Money, _objData=UmlObjectData [id=1324, uuid={FA0E49C2-B5F3-4084-948C-2A553D874695}, since=null, name=unit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=600, _eaTypeName=Currency, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@76c8cd]. +2024-09-08 15:10:00,514 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::Money, _objData=UmlObjectData [id=1325, uuid={FD1C5A68-05E0-448a-9515-88FB188D1A41}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@190a65e]. +2024-09-08 15:10:00,514 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::PerCent, _objData=UmlObjectData [id=1365, uuid={A2810EB7-9B4B-4386-9EE5-CAE5AB1E6E2C}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=none, _eaTypeId=634, _eaTypeName=UnitMultiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b64261]. +2024-09-08 15:10:00,514 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::PerCent, _objData=UmlObjectData [id=1366, uuid={A1336F58-9A3A-462d-A932-4C80CE9A24AB}, since=null, name=unit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=none, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@2663d3]. +2024-09-08 15:10:00,514 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::PerCent, _objData=UmlObjectData [id=1367, uuid={3F3F1095-2284-438d-89FF-699BCA187532}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='Normally 0 - 100 on a defined base', htmlDescription='

Normally 0 - 100 on a defined base

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@190a65e]. +2024-09-08 15:10:00,514 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::Seconds, _objData=UmlObjectData [id=1377, uuid={DF58DF5F-F450-4b71-A1A9-1BBA5C696E5C}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=none, _eaTypeId=634, _eaTypeName=UnitMultiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b64261]. +2024-09-08 15:10:00,514 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::Seconds, _objData=UmlObjectData [id=1378, uuid={383E0AEB-B11C-4c02-8C56-5E84FCDA0D3B}, since=null, name=unit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=s, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@2663d3]. +2024-09-08 15:10:00,514 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::Seconds, _objData=UmlObjectData [id=1379, uuid={EC69405D-C44E-4c12-BAD5-58A3C1375649}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='Time, in seconds', htmlDescription='

Time, in seconds

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@190a65e]. +2024-09-08 15:10:00,514 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::Voltage, _objData=UmlObjectData [id=1304, uuid={5CFD034E-D7E1-4d20-BE0B-BB9E4F9D2D4B}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=634, _eaTypeName=UnitMultiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b64261]. +2024-09-08 15:10:00,514 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::Voltage, _objData=UmlObjectData [id=1305, uuid={6E959BD4-0ACC-4884-99F5-0B158661A3D9}, since=null, name=unit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=V, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@2663d3]. +2024-09-08 15:10:00,514 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::Voltage, _objData=UmlObjectData [id=1306, uuid={C86122FF-94E1-4244-975A-BA865D8135BC}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@190a65e]. +2024-09-08 15:10:00,515 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::BasePower, _objData=UmlObjectData [id=2100, uuid={9F2DC83B-B801-4b29-BD57-4781BD53A50A}, since=null, name=basePower, alias=, stereotype=, visibility=public, txtDescription='definition of base power.', htmlDescription='

definition of base power.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=616, _eaTypeName=ApparentPower, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1bbf683]. +2024-09-08 15:10:00,515 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::BaseVoltage, _objData=UmlObjectData [id=2053, uuid={D37DA22A-916B-4a33-88AB-B77C229DB882}, since=null, name=protectedNominalVoltage, alias=, stereotype=, visibility=protected, txtDescription=''the' PowerSystemResource's base voltage.', htmlDescription='

'the' PowerSystemResource's base voltage.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=602, _eaTypeName=Voltage, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@150c158]. +2024-09-08 15:10:00,515 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::BaseVoltage, _objData=UmlObjectData [id=2981, uuid={9451DDA7-F7F4-4efe-A373-99B36F51A8C5}, since=null, name=packagePrivateIsDC, alias=, stereotype=, visibility=package, txtDescription='"if true", this is a direct current base voltage and items assigned to this base voltage are also associated with a direct current capabilities. False indicates alternating current.', htmlDescription='

"if true", this is a direct current base voltage and items assigned to this base voltage are also associated with a direct current capabilities. False indicates alternating current.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@5185bd]. +2024-09-08 15:10:00,515 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::BaseVoltage, _objData=UmlObjectData [id=3249, uuid={48F97F30-E8FD-4e3d-85E1-6009E26B1435}, since=null, name=basePower, alias=, stereotype=, visibility=public, txtDescription='This is to test whether we print correctly multiple attributes of the same name (defined on different classes) within the data index table.', htmlDescription='

This is to test whether we print correctly multiple attributes of the same name (defined on different classes) within the data index table.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@5185bd]. +2024-09-08 15:10:00,515 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::BaseVoltage, _objData=UmlObjectData [id=3317, uuid={B3B2A77F-3967-4163-917F-7EC3BC0EF50C}, since=null, name=privateDummy, alias=, stereotype=, visibility=private, txtDescription='This is to test whether we print correctly multiple attributes of the same name (defined on different classes) within the data index table.', htmlDescription='

This is to test whether we print correctly multiple attributes of the same name (defined on different classes) within the data index table.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@5185bd]. +2024-09-08 15:10:00,515 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::Bay, _objData=UmlObjectData [id=2077, uuid={26D3924E-0222-4e9a-9373-CD7D256E9B19}, since=null, name=bayEnergyMeasFlag, alias=, stereotype=, visibility=public, txtDescription='Indicates the presence/absence of energy measurements.', htmlDescription='

Indicates the presence/absence of energy measurements.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@5185bd]. +2024-09-08 15:10:00,515 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::Bay, _objData=UmlObjectData [id=2078, uuid={B5F9E0A2-7BE7-4bb1-A035-0F5F849847F0}, since=null, name=bayPowerMeasFlag, alias=, stereotype=, visibility=public, txtDescription='Indicates the presence/absence of active/reactive power measurements.', htmlDescription='

Indicates the presence/absence of active/reactive power measurements.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@5185bd]. +2024-09-08 15:10:00,515 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::Bay, _objData=UmlObjectData [id=2079, uuid={94BB9838-29AB-4afe-853A-3BD683EF6B09}, since=null, name=breakerConfiguration, alias=, stereotype=, visibility=public, txtDescription='Breaker configuration.', htmlDescription='

Breaker configuration.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=858, _eaTypeName=BreakerConfiguration, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@dba097]. +2024-09-08 15:10:00,515 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::Bay, _objData=UmlObjectData [id=2080, uuid={696CC695-DE24-423a-9CD6-A9FED27803F8}, since=null, name=busBarConfiguration, alias=, stereotype=, visibility=public, txtDescription='Bus bar configuration.', htmlDescription='

Bus bar configuration.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=878, _eaTypeName=BusbarConfiguration, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@186f9d5]. +2024-09-08 15:10:00,515 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::Bay, _objData=UmlObjectData [id=3301, uuid={E893BA26-F5FD-49d7-94E0-CF2CC775E76D}, since=null, name=TestYesNo1, alias=, stereotype=, visibility=public, txtDescription='Indicates the presence/absence of energy measurements.', htmlDescription='

Indicates the presence/absence of energy measurements.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1540, _eaTypeName=YesNo, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@4d6e83]. +2024-09-08 15:10:00,515 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::Bay, _objData=UmlObjectData [id=3302, uuid={57D31F0C-D03A-424d-AF4C-358109CC5473}, since=null, name=testYesNo2, alias=, stereotype=, visibility=public, txtDescription='Indicates the presence/absence of energy measurements.', htmlDescription='

Indicates the presence/absence of energy measurements.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1540, _eaTypeName=YesNo, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@4d6e83]. +2024-09-08 15:10:00,516 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::ConductingEquipment, _objData=UmlObjectData [id=2091, uuid={2A7C5A94-34E1-49c7-8E1C-A84F411EE17C}, since=null, name=phases, alias=, stereotype=, visibility=public, txtDescription='Describes the phases carried by a conducting equipment.', htmlDescription='

Describes the phases carried by a conducting equipment.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=856, _eaTypeName=PhaseCode, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1a0cee9]. +2024-09-08 15:10:00,516 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::Equipment, _objData=UmlObjectData [id=2117, uuid={410CEA04-CA77-46d9-A093-019230A2DE17}, since=null, name=normaIlyInService, alias=, stereotype=, visibility=public, txtDescription='The equipment is normally in service.', htmlDescription='

The equipment is normally in service.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@5185bd]. +2024-09-08 15:10:00,517 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::OperatingShare, _objData=UmlObjectData [id=2109, uuid={91E1E9AB-B240-4b98-9917-82000F0A4CFB}, since=null, name=percentage, alias=, stereotype=, visibility=public, txtDescription='Percentage ownership for this device. The percentage indicates the percentage ownership of the PSROwner for the PowerSystemResource. The total percentage ownership for a PowerSystemResource should add to 100%.', htmlDescription='

Percentage ownership for this device. The percentage indicates the percentage ownership of the PSROwner for the PowerSystemResource. The total percentage ownership for a PowerSystemResource should add to 100%.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=614, _eaTypeName=PerCent, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@4a2ea6, 1 _constraints[ConstraintBuilder [_objData=UmlObjectData [id=230, uuid=5efb2328-1c5c-36d9-8c41-790fcb5a5558, since=null, name=constraintProcess, alias=, stereotype=, visibility=public, txtDescription='constraint description', htmlDescription='

constraint description

'], _containingAttribute=percentage, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=constraint description]]]. +2024-09-08 15:10:00,517 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::PowerSystemResource, _objData=UmlObjectData [id=6708, uuid={DB23468D-32C9-44cf-9032-193304520B0A}, since=null, name=attr, alias=, stereotype=deprecated, visibility=public, txtDescription='This is to test whether deprecated attribute gets its (deprecated) printed in Word.', htmlDescription='

This is to test whether deprecated attribute gets its (deprecated) printed in Word.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@e6aa2]. +2024-09-08 15:10:00,517 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::Terminal, _objData=UmlObjectData [id=3125, uuid={C97C0B38-C62F-4f03-A3DE-A67F29A6C6DB}, since=null, name=connected, alias=, stereotype=, visibility=public, txtDescription='The terminal connection status. True implies the terminal is connected, and false implies the terminal is not connected. This is the result of topoplogical processing of a detailed Connectivity node and Switch model whether present in the model or not. A terminal that is not connected cannot support a current flow. A terminal that is connected may have flow. In general a multi-terminal device may simultaneously have connected and disconnected terminals. No other aspect of the algorithm', htmlDescription='

The terminal connection status. True implies the terminal is connected, and false implies the terminal is not connected. This is the result of topoplogical processing of a detailed Connectivity node and Switch model whether present in the model or not. A terminal that is not connected cannot support a current flow. A terminal that is connected may have flow. In general a multi-terminal device may simultaneously have connected and disconnected terminals. No other aspect of the algorithm

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@5185bd]. +2024-09-08 15:10:00,517 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::Terminal, _objData=UmlObjectData [id=3188, uuid={7C7195D3-DFCD-487f-BF92-F359BBE7AFD0}, since=null, name=sequenceNumber, alias=, stereotype=, visibility=public, txtDescription='The orientation of the terminal connections for a multiple terminal conducting equipment. The sequence numbering starts with 1 and additional terminals should follow in increasing order. The first terminal is the "starting point" for a two terminal branch. In the case of class TransformerWinding only one terminal is used so its sequenceNumber must be 1.', htmlDescription='

The orientation of the terminal connections for a multiple terminal conducting equipment. The sequence numbering starts with 1 and additional terminals should follow in increasing order. The first terminal is the "starting point" for a two terminal branch. In the case of class TransformerWinding only one terminal is used so its sequenceNumber must be 1.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a035a0]. +2024-09-08 15:10:00,517 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::VoltageLevel, _objData=UmlObjectData [id=2106, uuid={D1BAD493-B22A-497f-B6A6-CDFDF46EA012}, since=null, name=highVoltageLimit, alias=, stereotype=, visibility=public, txtDescription='The bus bar's high voltage limit', htmlDescription='

The bus bar's high voltage limit

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=602, _eaTypeName=Voltage, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@150c158]. +2024-09-08 15:10:00,517 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::VoltageLevel, _objData=UmlObjectData [id=2107, uuid={EB17FEAC-CDBA-4bbd-B45E-86D3EA333C08}, since=null, name=lowVoltageLimit, alias=, stereotype=, visibility=public, txtDescription='The bus bar's low voltage limit', htmlDescription='

The bus bar's low voltage limit

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=602, _eaTypeName=Voltage, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@150c158]. +2024-09-08 15:10:00,517 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::IdentifiedObject, _objData=UmlObjectData [id=6646, uuid={D4F8B75D-CDAD-4440-8092-1425101E5ABC}, since=null, name=aliasName, alias=, stereotype=, visibility=public, txtDescription='The aliasName is free text human readable name of the object alternative to IdentifiedObject.name. It may be non unique and may not correlate to a naming hierarchy. +The attribute aliasName is retained because of backwards compatibility between CIM relases. It is however recommended to replace aliasName with the Name class as aliasName is planned for retirement at a future time.', htmlDescription='

The aliasName is free text human readable name of the object alternative to IdentifiedObject.name. It may be non unique and may not correlate to a naming hierarchy.

The attribute aliasName is retained because of backwards compatibility between CIM relases. It is however recommended to replace aliasName with the Name class as aliasName is planned for retirement at a future time.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@e6aa2]. +2024-09-08 15:10:00,517 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::IdentifiedObject, _objData=UmlObjectData [id=6647, uuid={C775F80A-A23D-4f38-AB9D-49D1FA882337}, since=null, name=mRID, alias=, stereotype=, visibility=public, txtDescription='Master resource identifier issued by a model authority. The mRID must semantically be a UUID as specified in RFC 4122. The mRID is globally unique. +For CIMXML data files in RDF syntax, the mRID is mapped to rdf:ID or rdf:about attributes that identify CIM object elements.', htmlDescription='

Master resource identifier issued by a model authority. The mRID must semantically be a UUID as specified in RFC 4122. The mRID is globally unique.

For CIMXML data files in RDF syntax, the mRID is mapped to rdf:ID or rdf:about attributes that identify CIM object elements.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@e6aa2]. +2024-09-08 15:10:00,517 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::IdentifiedObject, _objData=UmlObjectData [id=6648, uuid={870F033B-EDA6-4a32-A5AD-47DCBBFE2997}, since=null, name=name, alias=, stereotype=, visibility=public, txtDescription='The name is any free human readable and possibly non unique text naming the object.', htmlDescription='

The name is any free human readable and possibly non unique text naming the object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@e6aa2]. +2024-09-08 15:10:00,518 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::IdentifiedObject, _objData=UmlObjectData [id=6649, uuid={870F033B-EDA6-4a32-A5AD-47DCBBFE2997}, since=null, name=description, alias=, stereotype=, visibility=public, txtDescription='The description is a free human readable text describing or naming the object. It may be non unique and may not correlate to a naming hierarchy.', htmlDescription='

The description is a free human readable text describing or naming the object. It may be non unique and may not correlate to a naming hierarchy.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@e6aa2]. +2024-09-08 15:10:00,518 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Topology::BusNameMarker, _objData=UmlObjectData [id=3250, uuid={C375C88C-1BD9-4f29-874F-85F591975EEE}, since=null, name=constrained1, alias=, stereotype=, visibility=public, txtDescription='Added to test parsing and assigning constraints.', htmlDescription='

Added to test parsing and assigning constraints.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a035a0, 2 _constraints[ConstraintBuilder [_objData=UmlObjectData [id=322, uuid=e7838b89-c1f1-3846-82c2-b51c40441fcd, since=null, name=maxIdx, alias=, stereotype=, visibility=public, txtDescription='count+1', htmlDescription='

count+1

'], _containingAttribute=constrained1, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=count+1], ConstraintBuilder [_objData=UmlObjectData [id=323, uuid=504022e1-a42d-3d7e-a7ab-50f48306f4f8, since=null, name=minIdx, alias=, stereotype=, visibility=public, txtDescription='0', htmlDescription='

0

'], _containingAttribute=constrained1, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=0]]]. +2024-09-08 15:10:00,518 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Topology::BusNameMarker, _objData=UmlObjectData [id=3251, uuid={6EA50EAF-292F-4f17-A3F5-EB732279F805}, since=null, name=constrained2, alias=, stereotype=, visibility=public, txtDescription='Added to test parsing and assigning constraints.', htmlDescription='

Added to test parsing and assigning constraints.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a035a0]. +2024-09-08 15:10:00,518 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Topology::BusNameMarker, _objData=UmlObjectData [id=3252, uuid={31FC9762-65CA-42b7-ABCB-83EFD97D28CE}, since=null, name=constrained3, alias=, stereotype=, visibility=public, txtDescription='Added to test parsing and assigning constraints.', htmlDescription='

Added to test parsing and assigning constraints.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a035a0]. +2024-09-08 15:10:00,518 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Topology::BusNameMarker, _objData=UmlObjectData [id=3253, uuid={96BA1CD3-C66C-4ea0-9D8F-B6776C6C49AE}, since=null, name=constrained4, alias=, stereotype=, visibility=public, txtDescription='Added to test parsing and assigning constraints.', htmlDescription='

Added to test parsing and assigning constraints.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a035a0]. +2024-09-08 15:10:00,518 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Topology::TopologicalIsland, _objData=UmlObjectData [id=3254, uuid={71F47E96-66A9-469f-9B94-D81BAECFCBD5}, since=null, name=constrained5, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a035a0]. +2024-09-08 15:10:00,518 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Topology::TopologicalIsland, _objData=UmlObjectData [id=3255, uuid={DCE02A31-C635-4cf0-AB24-4C475CEDCC93}, since=null, name=nonConstrained, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a035a0]. +2024-09-08 15:10:00,518 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC61968::IEC61968Version, _objData=UmlObjectData [id=3256, uuid={9FE72A7E-8CF0-40a9-A6CF-4F41D1B5BF82}, since=null, name=date, alias=, stereotype=, visibility=public, txtDescription='Form is YYYY-MM-DD for example for January 5, 2009 it is 2009-01-05 (not ending with dot)', htmlDescription='

Form is YYYY-MM-DD for example for January 5, 2009 it is 2009-01-05 (not ending with dot)

'], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=2010-05-07, _eaTypeId=640, _eaTypeName=AbsoluteDateTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@74868d]. +2024-09-08 15:10:00,518 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC61968::IEC61968Version, _objData=UmlObjectData [id=3257, uuid={CB9E6808-E556-4c14-AB7D-D4245FA445B6}, since=null, name=version, alias=, stereotype=, visibility=public, txtDescription='Form is IEC61970CIMXXvYY where XX is the major CIM package version and the YY is the minor version. For ecample IEC61970CIM13v18.', htmlDescription='

Form is IEC61970CIMXXvYY where XX is the major CIM package version and the YY is the minor version. For ecample IEC61970CIM13v18.

'], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=IEC62325CIM01v02, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@e6aa2]. +2024-09-08 15:10:00,518 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Other::MyClass, _objData=UmlObjectData [id=3263, uuid={A1BFCA1B-0A22-4a7c-B2A1-A31E2F46493F}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@190a65e]. +2024-09-08 15:10:00,518 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Other::MyClass, _objData=UmlObjectData [id=3264, uuid={B3F14AC4-4719-4d52-9C16-348079C67ADC}, since=null, name=normaIlyInService, alias=, stereotype=, visibility=public, txtDescription='The equipment is normally in service.', htmlDescription='

The equipment is normally in service.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@5185bd]. +2024-09-08 15:10:00,518 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Other::BadDatatypes, _objData=UmlObjectData [id=3261, uuid={5401BAC7-97BF-4c99-BF58-3352B0F67F23}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='text', htmlDescription='

text

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1467, _eaTypeName=BadDatatypes, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@10726a3]. +2024-09-08 15:10:00,518 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Other::BadDatatypes, _objData=UmlObjectData [id=3268, uuid={5074CED7-7500-4ea1-A49F-4FF08173FA21}, since=null, name=unit, alias=, stereotype=, visibility=public, txtDescription='text', htmlDescription='

text

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=badEnumVal, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@2663d3]. +2024-09-08 15:10:00,518 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Other::Equipment, _objData=UmlObjectData [id=3303, uuid={B4BA5ED2-2B91-44fc-993D-3097CF99F899}, since=null, name=testYesNo1, alias=, stereotype=, visibility=public, txtDescription='Indicates the presence/absence of energy measurements.', htmlDescription='

Indicates the presence/absence of energy measurements.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1540, _eaTypeName=YesNo, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@4d6e83]. +2024-09-08 15:10:00,518 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Other::Equipment, _objData=UmlObjectData [id=6707, uuid={11C51946-4599-4acb-B5AF-2B8F0CD45996}, since=null, name=myExtension, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a035a0, 2_taggedValues{nsuri=http://extensions, nsprefix=eext}]. +2024-09-08 15:10:00,518 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Other::NonEmptyPrimitive, _objData=UmlObjectData [id=3262, uuid={D496D1A8-C362-435f-83E4-B2247E25C84D}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@190a65e]. +2024-09-08 15:10:00,518 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Other::AttrDuplication, _objData=UmlObjectData [id=3267, uuid={D6C73EE7-83B0-45e6-BDC8-B0E3F46D8DE2}, since=null, name=normaIlyInService, alias=, stereotype=, visibility=public, txtDescription='The equipment is normally in service.', htmlDescription='

The equipment is normally in service.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@5185bd]. +2024-09-08 15:10:00,518 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Other::AnotherBadDatatype, _objData=UmlObjectData [id=3296, uuid={01D99E0F-A7B9-4546-8F76-3E092E9942AE}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@2663d3]. +2024-09-08 15:10:00,518 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Other::AnotherBadDatatype, _objData=UmlObjectData [id=3297, uuid={415FDB87-B93D-41ca-906E-B88DD94D9F04}, since=null, name=unit, alias=, stereotype=unallowed, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a035a0]. +2024-09-08 15:10:00,518 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Other::AnotherBadDatatype, _objData=UmlObjectData [id=3298, uuid={C055FF1A-F57E-4169-A823-AB41EB439A1C}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1538, _eaTypeName=EmptyCompound, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@5997b1]. +2024-09-08 15:10:00,518 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::AccessPoint, _objData=UmlObjectData [id=3320, uuid={40D9CE14-376C-43eb-9583-238284A8F3CC}, since=null, name=Address, alias=, stereotype=, visibility=public, txtDescription='Address is optional, e.g. in case of GOOSE subscriber where physical link exists (and no comm link).', htmlDescription='

Address is optional, e.g. in case of GOOSE subscriber where physical link exists (and no comm link).

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=1586, _eaTypeName=CommAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@f4d528]. +2024-09-08 15:10:00,519 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenCommonDataClass, _objData=UmlObjectData [id=3321, uuid={556405B0-426B-4a24-8F13-B0569BCCB145}, since=null, name=CDC-ID, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@8ad73b]. +2024-09-08 15:10:00,519 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenConstructedType, _objData=UmlObjectData [id=3322, uuid={3672BC56-9890-4355-861B-45B1B841A9A8}, since=null, name=DA-ID, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@8ad73b]. +2024-09-08 15:10:00,519 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenDataAttribute, _objData=UmlObjectData [id=3323, uuid={FD001E99-4132-4975-B26D-2B9F17395F66}, since=null, name=DAName, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@8ad73b]. +2024-09-08 15:10:00,519 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenDataAttribute, _objData=UmlObjectData [id=3324, uuid={34285ABB-FB3B-404a-ACC4-4709533FA4BF}, since=null, name=DARef, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1607, _eaTypeName=GenObjRef, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@4921a5]. +2024-09-08 15:10:00,519 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenDataAttribute, _objData=UmlObjectData [id=3325, uuid={6E718A2A-A12C-4100-80D3-84B5550862E0}, since=null, name=FC, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1597, _eaTypeName=GenFC, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1f27fae]. +2024-09-08 15:10:00,519 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenDataAttribute, _objData=UmlObjectData [id=3326, uuid={4F3B8CEE-ECAE-43cc-ACC9-68F61865042C}, since=null, name=TrgOp, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1615, _eaTypeName=GenTriggerConditions, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a35978]. +2024-09-08 15:10:00,519 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenDataAttribute, _objData=UmlObjectData [id=3327, uuid={807AE164-D149-4d18-9790-FCE87600CD9E}, since=null, name=Presence, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1609, _eaTypeName=GenPresenceConditions, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@f7c8c1]. +2024-09-08 15:10:00,519 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenDataAttribute, _objData=UmlObjectData [id=3328, uuid={B8650C5E-BC73-4968-B86C-C84775721C80}, since=null, name=Index, alias=, stereotype=, visibility=public, txtDescription='Index of this data attribute in case it is member of an array.', htmlDescription='

Index of this data attribute in case it is member of an array.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1602, _eaTypeName=GenINT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@10a87b3]. +2024-09-08 15:10:00,519 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenDataObject, _objData=UmlObjectData [id=3329, uuid={493B8A67-86FF-4718-BA8F-D78707C1FD65}, since=null, name=DOName, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@8ad73b]. +2024-09-08 15:10:00,519 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenDataObject, _objData=UmlObjectData [id=3330, uuid={B926F4CF-F07E-4264-B8E0-B1E7B6A83C0C}, since=null, name=DORef, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1607, _eaTypeName=GenObjRef, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@4921a5]. +2024-09-08 15:10:00,519 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenDataObject, _objData=UmlObjectData [id=3331, uuid={0100601D-CE5C-477e-9468-C76C14D215E9}, since=null, name=Transient, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1590, _eaTypeName=GenBOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1cd6521]. +2024-09-08 15:10:00,519 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenDataObject, _objData=UmlObjectData [id=3332, uuid={32D55A3C-F89A-4a1b-B987-40A0A56F35F7}, since=null, name=Presence, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1609, _eaTypeName=GenPresenceConditions, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@f7c8c1]. +2024-09-08 15:10:00,519 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenDataSet, _objData=UmlObjectData [id=3333, uuid={17678D76-CE06-4c20-80A5-7682C8099F48}, since=null, name=DSName, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@8ad73b]. +2024-09-08 15:10:00,519 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenFCD, _objData=UmlObjectData [id=3334, uuid={B8189F42-4859-4645-8DB8-09B9081EF712}, since=null, name=FC, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1597, _eaTypeName=GenFC, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1f27fae]. +2024-09-08 15:10:00,519 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenFCDA, _objData=UmlObjectData [id=3335, uuid={EA599362-A0A3-4d27-A9F4-915F9082C9B6}, since=null, name=FC, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1597, _eaTypeName=GenFC, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1f27fae]. +2024-09-08 15:10:00,519 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenFile, _objData=UmlObjectData [id=3336, uuid={4AD7728F-4A39-4b7e-AC32-D31BDA8E2033}, since=null, name=FileRef, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1616, _eaTypeName=GenVisString255, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@179bb86]. +2024-09-08 15:10:00,519 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenFile, _objData=UmlObjectData [id=3337, uuid={C372B3E2-9671-4ff3-A6DD-A2322FB8438C}, since=null, name=FileSize, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1602, _eaTypeName=GenINT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@10a87b3]. +2024-09-08 15:10:00,519 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenFile, _objData=UmlObjectData [id=3338, uuid={9A695829-F4E7-45cd-AD65-90CA0669786C}, since=null, name=LastModified, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1614, _eaTypeName=GenTimeStamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1cd19b3]. +2024-09-08 15:10:00,519 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenLogicalDevice, _objData=UmlObjectData [id=3339, uuid={132BB1C1-B4D8-4218-941F-B5A60919E81F}, since=null, name=LDName, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@8ad73b]. +2024-09-08 15:10:00,519 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenLogicalNode, _objData=UmlObjectData [id=3340, uuid={BE685D25-FF44-42ae-805A-D77E32E208B3}, since=null, name=LNName, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@8ad73b]. +2024-09-08 15:10:00,519 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenLogicalNode, _objData=UmlObjectData [id=3341, uuid={7A4CFF68-F4E3-47f5-BD82-708786CBC6E8}, since=null, name=LNRef, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1607, _eaTypeName=GenObjRef, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@4921a5]. +2024-09-08 15:10:00,519 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenSubDataAttribute, _objData=UmlObjectData [id=3342, uuid={AB7D51A9-8986-4bfc-8BA6-4836DC8814DE}, since=null, name=SubDAName, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@8ad73b]. +2024-09-08 15:10:00,519 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenSubDataAttribute, _objData=UmlObjectData [id=3343, uuid={94A40232-E6EE-4682-B41D-2FCF1207E36B}, since=null, name=SubDARef, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1607, _eaTypeName=GenObjRef, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@4921a5]. +2024-09-08 15:10:00,519 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenSubDataAttribute, _objData=UmlObjectData [id=3344, uuid={227F3C1B-21E7-46e7-92B5-A36942028DC0}, since=null, name=FC, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1597, _eaTypeName=GenFC, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1f27fae]. +2024-09-08 15:10:00,519 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenSubDataAttribute, _objData=UmlObjectData [id=3345, uuid={AB4449FC-BDC1-43fe-9AA0-B699FD684B7F}, since=null, name=Presence, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1609, _eaTypeName=GenPresenceConditions, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@f7c8c1]. +2024-09-08 15:10:00,520 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenSubDataAttribute, _objData=UmlObjectData [id=3346, uuid={F3DE8E30-A6D7-41b5-B2B6-B3006D7AEBCC}, since=null, name=Index, alias=, stereotype=, visibility=public, txtDescription='Index of this sub-data attribute in case it is member of an array.', htmlDescription='

Index of this sub-data attribute in case it is member of an array.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1602, _eaTypeName=GenINT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@10a87b3]. +2024-09-08 15:10:00,520 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenSubDataObject, _objData=UmlObjectData [id=3347, uuid={5336B078-D51A-4310-BFC9-7B4828112B1D}, since=null, name=SDOName, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@8ad73b]. +2024-09-08 15:10:00,520 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenSubDataObject, _objData=UmlObjectData [id=3348, uuid={7314D9C2-528D-4907-A459-ECDA44ADE0E0}, since=null, name=SDORef, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1607, _eaTypeName=GenObjRef, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@4921a5]. +2024-09-08 15:10:00,520 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenSubDataObject, _objData=UmlObjectData [id=3349, uuid={C1410F0D-BF9E-4f1d-B38F-884B17F8F161}, since=null, name=Presence, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1609, _eaTypeName=GenPresenceConditions, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@f7c8c1]. +2024-09-08 15:10:00,520 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenSubDataObject, _objData=UmlObjectData [id=3350, uuid={4276E214-E0D7-476f-BAA6-ED3DF54ABF91}, since=null, name=Index, alias=, stereotype=, visibility=public, txtDescription='Index of this sub data object in case it is member of an array.', htmlDescription='

Index of this sub data object in case it is member of an array.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1602, _eaTypeName=GenINT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@10a87b3]. +2024-09-08 15:10:00,520 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenTPAA, _objData=UmlObjectData [id=3351, uuid={24BE7E13-5125-43e0-9D7F-1F75F29C6A19}, since=null, name=AssociationId, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1588, _eaTypeName=GenAssociationID, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1211155]. +2024-09-08 15:10:00,520 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CoreTypes::P_TimeStamp, _objData=UmlObjectData [id=3383, uuid={CDA8BF64-6FF8-4ba2-ABBC-382E39C0B24C}, since=null, name=SecondSinceEpoch, alias=, stereotype=, visibility=public, txtDescription='Interval in seconds continuously counted from the epoch 1970-01-01 00:00:00 UTC.', htmlDescription='

Interval in seconds continuously counted from the epoch 1970-01-01 00:00:00 UTC.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1656, _eaTypeName=P_INT32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1dba6f9]. +2024-09-08 15:10:00,520 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CoreTypes::P_TimeStamp, _objData=UmlObjectData [id=3385, uuid={1C4E5EB3-6199-4ce6-976E-E81B1E3D3D26}, since=null, name=TimeQuality, alias=, stereotype=, visibility=public, txtDescription='Information about the time source of the sending IED.', htmlDescription='

Information about the time source of the sending IED.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1672, _eaTypeName=TimeQuality, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1e18270]. +2024-09-08 15:10:00,520 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CoreTypes::TimeQuality, _objData=UmlObjectData [id=3386, uuid={9C35C39B-81CF-412d-A57E-9706FE60A4E9}, since=null, name=LeapSecondsKnown, alias=, stereotype=, visibility=public, txtDescription='If true, the value in 'P_TimeStamp.SecondSinceEpoch' contains all leap seconds occurred. Otherwise, it does not take into account the leap seconds that occurred before the initialization of the time source of the device. Instead, the seconds since start of the epoch are calculated from the current date assuming a constant day length of 86400 seconds. +Note: If a UTC time master clock is used and accessible, this value should always be true.', htmlDescription='

If true, the value in 'P_TimeStamp.SecondSinceEpoch' contains all leap seconds occurred. Otherwise, it does not take into account the leap seconds that occurred before the initialization of the time source of the device. Instead, the seconds since start of the epoch are calculated from the current date assuming a constant day length of 86400 seconds.

Note: If a UTC time master clock is used and accessible, this value should always be true.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:10:00,520 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CoreTypes::TimeQuality, _objData=UmlObjectData [id=3387, uuid={5FDA2BA2-85CD-4f5d-9FC8-AA4C892E9904}, since=null, name=ClockFailure, alias=, stereotype=, visibility=public, txtDescription='If true, the time source of the sending device is unreliable and the value of the time stamp shall be ignored.', htmlDescription='

If true, the time source of the sending device is unreliable and the value of the time stamp shall be ignored.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:10:00,520 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CoreTypes::TimeQuality, _objData=UmlObjectData [id=3388, uuid={C371C41F-4D3F-4129-A08C-AA2AB445051F}, since=null, name=ClockNotSynchronized, alias=, stereotype=, visibility=public, txtDescription='If true, the time source of the sending device is not synchronised with the external UTC time.', htmlDescription='

If true, the time source of the sending device is not synchronised with the external UTC time.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:10:00,520 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CoreTypes::TimeQuality, _objData=UmlObjectData [id=3389, uuid={4B73DC7D-52D2-4627-A70B-1027E72F218F}, since=null, name=TimeAccuracy, alias=, stereotype=, visibility=public, txtDescription='Class of time accuracy in terms of number of significant bits in 'P_TimeStamp.FractionOfSecond'.', htmlDescription='

Class of time accuracy in terms of number of significant bits in 'P_TimeStamp.FractionOfSecond'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1673, _eaTypeName=TimeAccuracyKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1de5c8c]. +2024-09-08 15:10:00,520 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CoreTypes::P_TriggerConditions, _objData=UmlObjectData [id=3397, uuid={A829B7C4-40ED-4e43-A520-BB42588381F0}, since=null, name=data-change, alias=, stereotype=, visibility=public, txtDescription='If true, a value change of a process-related data attribute, tagged with dchg, will trigger the generation of a report or log entry. If false, no entry should be generated on value change.', htmlDescription='

If true, a value change of a process-related data attribute, tagged with dchg, will trigger the generation of a report or log entry. If false, no entry should be generated on value change.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:10:00,520 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CoreTypes::P_TriggerConditions, _objData=UmlObjectData [id=3398, uuid={088AE2AE-C484-4fb7-B17D-D9D712044645}, since=null, name=quality-change, alias=, stereotype=, visibility=public, txtDescription='If true, a value change of a quality-related data attribute, tagged with qchg, will trigger the generation of a report or log entry. If false, no entry should be generated on quality change.', htmlDescription='

If true, a value change of a quality-related data attribute, tagged with qchg, will trigger the generation of a report or log entry. If false, no entry should be generated on quality change.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:10:00,520 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CoreTypes::P_TriggerConditions, _objData=UmlObjectData [id=3399, uuid={57A3C8E0-5424-4100-90E2-3EFA7B5D1F57}, since=null, name=data-update, alias=, stereotype=, visibility=public, txtDescription='If true, a value freezing of a freezable data attribute (e.g., frozen counters) or a value update of any other data attribute, tagged with dupd, will trigger the generation of a report or log entry. If false, no entry should be generated on value update. +This trigger condition may be used to issue sending a report or storing a log entry into a log when a value has changed or has been "overwritten" with the same value as before. It may then be a trigger for reporting or logging of the statistics values (which may be calculated and updated periodically), independently of whether the value has changed or not.', htmlDescription='

If true, a value freezing of a freezable data attribute (e.g., frozen counters) or a value update of any other data attribute, tagged with dupd, will trigger the generation of a report or log entry. If false, no entry should be generated on value update.

This trigger condition may be used to issue sending a report or storing a log entry into a log when a value has changed or has been "overwritten" with the same value as before. It may then be a trigger for reporting or logging of the statistics values (which may be calculated and updated periodically), independently of whether the value has changed or not.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:10:00,520 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CoreTypes::P_TriggerConditions, _objData=UmlObjectData [id=3400, uuid={197A7EEE-CC0C-481d-B006-99BE3C9041A5}, since=null, name=integrity, alias=, stereotype=, visibility=public, txtDescription='If true, the control block in the server shall generate periodical Report or Log entries on every expiration of the integrity timer (period trigger option).', htmlDescription='

If true, the control block in the server shall generate periodical Report or Log entries on every expiration of the integrity timer (period trigger option).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:10:00,520 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CoreTypes::P_TriggerConditions, _objData=UmlObjectData [id=3401, uuid={2154CDDF-8F70-47dc-929D-406C98AC6E48}, since=null, name=general-interrogation, alias=, stereotype=, visibility=public, txtDescription='If true, the RCB in the server shall generate general interrogation Report entries on user request.', htmlDescription='

If true, the RCB in the server shall generate general interrogation Report entries on user request.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:10:00,520 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ObjectReferences::LDReference, _objData=UmlObjectData [id=3405, uuid={18337A58-4439-456a-8BCA-A1B7AF8715A1}, since=null, name=LDName, alias=, stereotype=, visibility=public, txtDescription='Name of an LD instance, unambiguously identifying the LD within the system.', htmlDescription='

Name of an LD instance, unambiguously identifying the LD within the system.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@525845]. +2024-09-08 15:10:00,520 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ObjectReferences::NonPersistentDSReference, _objData=UmlObjectData [id=3407, uuid={4F62D406-E0F0-45ea-9C34-3DB7262EDE88}, since=null, name=DSName, alias=, stereotype=, visibility=public, txtDescription='Name of a dataset instance, unambiguously identifying it within the scope of a two party application association.', htmlDescription='

Name of a dataset instance, unambiguously identifying it within the scope of a two party application association.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@525845]. +2024-09-08 15:10:00,520 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ObjectReferences::LNReference, _objData=UmlObjectData [id=3409, uuid={315FD389-CF79-4476-9221-E8EF466FE456}, since=null, name=LNName, alias=, stereotype=, visibility=public, txtDescription='Name of an LN instance, unambiguously identifying the LN within the scope of an LD.', htmlDescription='

Name of an LN instance, unambiguously identifying the LN within the scope of an LD.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@525845]. +2024-09-08 15:10:00,520 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ObjectReferences::CDCReference, _objData=UmlObjectData [id=3411, uuid={27B4D2D6-7DD0-4a73-8DD4-3E27211B8FE4}, since=null, name=DataName, alias=, stereotype=, visibility=public, txtDescription='Name of a CDC instance (data object) contained in the LN. The CDC may be: +1. PrimitiveCDC: Example is "Auto" from the reference myLD3/RREC1.Auto (where myLD3/RREC1.Auto is of type SPC:PrimitiveCDC). +2. ComposedCDC: example is "PhV" from the reference myLD3/MMXU1.PhV.phsA (where myLD3/MMXU1.PhV is of type WYE:ComposedCDC).', htmlDescription='

Name of a CDC instance (data object) contained in the LN. The CDC may be:

  1. PrimitiveCDC: Example is "Auto" from the reference myLD3/RREC1.Auto (where myLD3/RREC1.Auto is of type SPC:PrimitiveCDC).
  2. ComposedCDC: example is "PhV" from the reference myLD3/MMXU1.PhV.phsA (where myLD3/MMXU1.PhV is of type WYE:ComposedCDC).
'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@525845]. +2024-09-08 15:10:00,521 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ObjectReferences::CDCReference, _objData=UmlObjectData [id=3412, uuid={11F81F23-C9EF-4f7e-A783-E4ECC12CB884}, since=null, name=SubDataName, alias=, stereotype=, visibility=public, txtDescription='Empty string in case the PrimitiveCDC is contained in LN, non-empty name of sub-data object if PrimitiveCDC is contained in ComposedCDC. Example of this latter is "phsA" from the reference myLD3/MMXU1.PhV.phsA (where PhV is of type WYE:ComposedCDC, and one level further, PhV.phsA is of type SPC:PrimitiveCDC).', htmlDescription='

Empty string in case the PrimitiveCDC is contained in LN, non-empty name of sub-data object if PrimitiveCDC is contained in ComposedCDC. Example of this latter is "phsA" from the reference myLD3/MMXU1.PhV.phsA (where PhV is of type WYE:ComposedCDC, and one level further, PhV.phsA is of type SPC:PrimitiveCDC).

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@525845]. +2024-09-08 15:10:00,521 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ObjectReferences::CBReference, _objData=UmlObjectData [id=3414, uuid={8A834972-A898-4f3a-8CF5-9896102F4C43}, since=null, name=CBName, alias=, stereotype=, visibility=public, txtDescription='Name of a BRCB or URCB instance, unambiguously identifying it within the scope of an LN, or name of an SGCB, LCB, GCB, USVCB or MSVCB instance, unambiguously identifying it within the scope of the LN0. To find out which control block it describes, use FC. Corresponds to one of the following: +- SGCBName = "SGCB", +- BRCBName, +- URCBName, +- LCBName, +- GoCBName, +- USVCBName, +- MSVCBName.', htmlDescription='

Name of a BRCB or URCB instance, unambiguously identifying it within the scope of an LN, or name of an SGCB, LCB, GCB, USVCB or MSVCB instance, unambiguously identifying it within the scope of the LN0. To find out which control block it describes, use FC. Corresponds to one of the following:

  • SGCBName = "SGCB",
  • BRCBName,
  • URCBName,
  • LCBName,
  • GoCBName,
  • USVCBName,
  • MSVCBName.
'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@525845]. +2024-09-08 15:10:00,521 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ObjectReferences::CBReference, _objData=UmlObjectData [id=3415, uuid={801D665B-C42E-46a1-91D9-8131A8FA1630}, since=null, name=FC, alias=, stereotype=, visibility=public, txtDescription='Kind of control block described by this reference: +- ServiceFcKind.SP for SGCB, +- ServiceFcKind.BR for BRCB, +- ServiceFcKind.RP for URCB, +- ServiceFcKind.LG for LCB, +- ServiceFcKind.GO for GCB, +- ServiceFcKind.MS for MSVCB, +- ServiceFcKind.US for USVCB.', htmlDescription='

Kind of control block described by this reference:

  • ServiceFcKind.SP for SGCB,
  • ServiceFcKind.BR for BRCB,
  • ServiceFcKind.RP for URCB,
  • ServiceFcKind.LG for LCB,
  • ServiceFcKind.GO for GCB,
  • ServiceFcKind.MS for MSVCB,
  • ServiceFcKind.US for USVCB.
'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1699, _eaTypeName=ServiceFcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1021e6c]. +2024-09-08 15:10:00,521 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ObjectReferences::LOGReference, _objData=UmlObjectData [id=3425, uuid={E6AF9494-0CB6-469c-B908-B6EFD9D95BF2}, since=null, name=LogName, alias=, stereotype=, visibility=public, txtDescription='Name of a LOG instance, unambiguously identifying it within the scope of an LN0.', htmlDescription='

Name of a LOG instance, unambiguously identifying it within the scope of an LN0.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@525845]. +2024-09-08 15:10:00,521 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ObjectReferences::LOGReference, _objData=UmlObjectData [id=3426, uuid={DA9F9473-FD92-4da5-85D5-D15BE37BADB8}, since=null, name=FC, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=LG, _eaTypeId=1699, _eaTypeName=ServiceFcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1021e6c]. +2024-09-08 15:10:00,521 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ObjectReferences::LNOwnedDSReference, _objData=UmlObjectData [id=3428, uuid={098059FE-54F8-4eef-805F-94F5F8358D6F}, since=null, name=DSName, alias=, stereotype=, visibility=public, txtDescription='Name of a DS instance, unambiguously identifying the DS within the scope of an LN.', htmlDescription='

Name of a DS instance, unambiguously identifying the DS within the scope of an LN.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@525845]. +2024-09-08 15:10:00,521 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ObjectReferences::FCDReference, _objData=UmlObjectData [id=3431, uuid={F261F75D-C2F6-4b2d-9261-38E92897916A}, since=null, name=FC, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@116af24]. +2024-09-08 15:10:00,522 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ObjectReferences::FCDAReference, _objData=UmlObjectData [id=3433, uuid={71B22A59-B87D-4866-B0BD-DF359940497E}, since=null, name=FCDARefWithoutFC, alias=, stereotype=, visibility=public, txtDescription='Path-name of the PrimitiveDA instance (i.e., attribute contained in CDC or in ComposedDA) without functional constraint (= DataAttrRef).', htmlDescription='

Path-name of the PrimitiveDA instance (i.e., attribute contained in CDC or in ComposedDA) without functional constraint (= DataAttrRef).

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1667, _eaTypeName=P_VISIBLE_STRING255, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@3788f3]. +2024-09-08 15:10:00,522 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ObjectReferences::FCDAReference, _objData=UmlObjectData [id=3434, uuid={39C98C0B-3EBC-457d-ADB8-6E0955A9AAAC}, since=null, name=LeafAttrName, alias=, stereotype=, visibility=public, txtDescription='Concatenation of one or more names of instances of DA, as follows: +1. For a PrimitiveDA, it is a single name. Example is "stVal" from the reference [ST] myLD3/XCBR1.Pos.stVal (where stVal is of type DpStatus:EnumDA). +2. For a ComposedDA, it is concatenation of two or more names, starting from the ComposedDA down to the PrimitiveDA it contains. One example is "cVal.mag.f" from the reference [MX] myLD3/MMXU1.PhV.phsA.cVal.mag.f. In this example: +- cVal is of type Vector:ComposedDA; one level further, +- cVal.mag is of type AnalogueValue:ComposedDA; one level further, +- cVal.mag.f is of type FLOAT32:PrimitiveDA. +Modelling note: Corresponds to DataAttributeName.[DataAttributeName...]. +Implementation note: After DataName and SubDataName of CDCReference have been correctly parsed, this is the concatenation of all names down to the leaf.', htmlDescription='

Concatenation of one or more names of instances of DA, as follows:

  1. For a PrimitiveDA, it is a single name. Example is "stVal" from the reference [ST] myLD3/XCBR1.Pos.stVal (where stVal is of type DpStatus:EnumDA).
  2. For a ComposedDA, it is concatenation of two or more names, starting from the ComposedDA down to the PrimitiveDA it contains. One example is "cVal.mag.f" from the reference [MX] myLD3/MMXU1.PhV.phsA.cVal.mag.f. In this example:
  • cVal is of type Vector:ComposedDA; one level further,
  • cVal.mag is of type AnalogueValue:ComposedDA; one level further,
  • cVal.mag.f is of type FLOAT32:PrimitiveDA.

Modelling note: Corresponds to DataAttributeName.[DataAttributeName...].

Implementation note: After DataName and SubDataName of CDCReference have been correctly parsed, this is the concatenation of all names down to the leaf.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@525845]. +2024-09-08 15:10:00,522 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ObjectReferences::FCDAReference, _objData=UmlObjectData [id=3435, uuid={4358ED41-699C-4b19-A10D-D41877B1B0FF}, since=null, name=NumArrayElement, alias=, stereotype=, visibility=public, txtDescription='If the reference contains an array of DAs or CDCs, this is the index of the array element (e.g., reference [MX] myHWYE1.phsAHar(3).cVal.mag.f references the value of cVal with NumArrayElement=3), ignored otherwise. +Modelling note: Corresponds to NumArrayElement in one of the following: +- LDName/LNName.DataObjectName[.SubDataObjectName(NumArrayElement)[. ...]].DataAttributeName[.SubDataAttributeName[. ...]] +- LDName/LNName.DataObjectName[.SubDataObjectName[. ...]].DataAttributeName[(NumArrayElement)][.SubDataAttributeName[. ...]] +- LDName/LNName.DataObjectName[.SubDataObjectName[. ...]].DataAttributeName(NumArrayElement)', htmlDescription='

If the reference contains an array of DAs or CDCs, this is the index of the array element (e.g., reference [MX] myHWYE1.phsAHar(3).cVal.mag.f references the value of cVal with NumArrayElement=3), ignored otherwise.

Modelling note: Corresponds to NumArrayElement in one of the following:

  • LDName/LNName.DataObjectName[.SubDataObjectName(NumArrayElement)[. ...]].DataAttributeName[.SubDataAttributeName[. ...]]
  • LDName/LNName.DataObjectName[.SubDataObjectName[. ...]].DataAttributeName[(NumArrayElement)][.SubDataAttributeName[. ...]]
  • LDName/LNName.DataObjectName[.SubDataObjectName[. ...]].DataAttributeName(NumArrayElement)
'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1661, _eaTypeName=P_INT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1a51a35]. +2024-09-08 15:10:00,522 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=BasicDAs::BOOLEAN, _objData=UmlObjectData [id=3455, uuid={26303763-5425-4eb3-9E6B-A0E20714D69E}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:10:00,522 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=BasicDAs::INT16U, _objData=UmlObjectData [id=3458, uuid={5CAC1927-5377-434f-B9CF-DF014080FF25}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1659, _eaTypeName=P_INT16U, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@9a5fbe]. +2024-09-08 15:10:00,523 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=BasicDAs::INT32, _objData=UmlObjectData [id=3460, uuid={8AB19364-EBA3-46e8-9A28-836D4BE3184E}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1656, _eaTypeName=P_INT32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1dba6f9]. +2024-09-08 15:10:00,523 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=BasicDAs::INT32U, _objData=UmlObjectData [id=3461, uuid={4E98F434-E893-4dd8-A976-1F47F85F096D}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1661, _eaTypeName=P_INT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1a51a35]. +2024-09-08 15:10:00,523 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=BasicDAs::FLOAT32, _objData=UmlObjectData [id=3456, uuid={0C453C24-788C-4b79-936D-F8ED7B6AC349}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1662, _eaTypeName=P_FLOAT32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@4041cc]. +2024-09-08 15:10:00,523 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=BasicDAs::UNICODE_STRING255, _objData=UmlObjectData [id=3466, uuid={2D5EC3D2-2D30-4dcd-A716-1DDCC1D03618}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1663, _eaTypeName=P_UNICODE_STRING255, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1ca2dfa]. +2024-09-08 15:10:00,523 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=BasicDAs::VISIBLE_STRING255, _objData=UmlObjectData [id=3467, uuid={98E04197-6A6E-47dc-9801-656386DF6B28}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1667, _eaTypeName=P_VISIBLE_STRING255, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@3788f3]. +2024-09-08 15:10:00,523 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=BasicDAs::ObjectReference, _objData=UmlObjectData [id=3469, uuid={D656053C-0AC9-4b40-B071-8DCD708B0AF0}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1669, _eaTypeName=P_ObjectReference, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b4de6a]. +2024-09-08 15:10:00,523 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=BasicDAs::PHYCOMADDR, _objData=UmlObjectData [id=3470, uuid={601E9D69-6691-49ad-B034-6C76CA60A811}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1670, _eaTypeName=P_PHYCOMADDR, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@18f5f62]. +2024-09-08 15:10:00,523 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=BasicDAs::TimeStamp, _objData=UmlObjectData [id=3471, uuid={3ABEB6F9-DB10-42c0-BB49-17EA3703AFBC}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1671, _eaTypeName=P_TimeStamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@d59286]. +2024-09-08 15:10:00,523 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=BasicDAs::TriggerConditions, _objData=UmlObjectData [id=3472, uuid={808EC92B-30E6-4882-A08E-64D4B5E48217}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1674, _eaTypeName=P_TriggerConditions, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@123a213]. +2024-09-08 15:10:00,523 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=BasicDAs::DpStatus, _objData=UmlObjectData [id=3473, uuid={B1D71CDD-86A6-4d33-A64E-6E6089FFAD0E}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1636, _eaTypeName=DpStatusKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1cd892a]. +2024-09-08 15:10:00,523 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=BasicDAs::BsControl, _objData=UmlObjectData [id=3474, uuid={5CF376EC-A611-4feb-9E92-1A3A726D9788}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1635, _eaTypeName=BsControlKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@83f5ae]. +2024-09-08 15:10:00,523 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CommonAcsiTypes::MulticastAddress, _objData=UmlObjectData [id=3478, uuid={E313732A-C2CB-4dbd-B5D6-C20398D08EAA}, since=null, name=vid, alias=, stereotype=, visibility=public, txtDescription='Virtual LAN ID. Shall be 3 characters from the range [0-9] and [A-F].', htmlDescription='

Virtual LAN ID. Shall be 3 characters from the range [0-9] and [A-F].

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1659, _eaTypeName=P_INT16U, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@9a5fbe]. +2024-09-08 15:10:00,523 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CommonAcsiTypes::MulticastAddress, _objData=UmlObjectData [id=3479, uuid={DE23C4C9-F440-4437-9F96-B5C3040716E9}, since=null, name=appid, alias=, stereotype=, visibility=public, txtDescription='Application identifier. Shall be 4 characters from the range [0-9] and [A-F].', htmlDescription='

Application identifier. Shall be 4 characters from the range [0-9] and [A-F].

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1659, _eaTypeName=P_INT16U, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@9a5fbe]. +2024-09-08 15:10:00,523 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CommonAcsiTypes::EntryID, _objData=UmlObjectData [id=3481, uuid={D3228FA9-B272-4ce2-B085-A15C466C9489}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1770, _eaTypeName=P_OCTET_STRING, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1d4cc9e]. +2024-09-08 15:10:00,523 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::HierarchyIEC61850Object, _objData=UmlObjectData [id=3584, uuid={C32A6B6B-F4DC-4498-A469-C006B9625420}, since=null, name=parent, alias=, stereotype=, visibility=public, txtDescription='Parent of this hierarchy object.', htmlDescription='

Parent of this hierarchy object.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1835, _eaTypeName=IEC61850Object, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@27c60c]. +2024-09-08 15:10:00,523 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::NamedIEC61850Object, _objData=UmlObjectData [id=3585, uuid={E8F8F2B7-045C-402f-BA7A-4880C9570B06}, since=null, name=objName, alias=, stereotype=, visibility=public, txtDescription='Object name.', htmlDescription='

Object name.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@525845]. +2024-09-08 15:10:00,523 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::SERVER, _objData=UmlObjectData [id=3588, uuid={8C8AC9D6-5A54-4110-A15C-61F37484AB7D}, since=null, name=serviceAccessPoints, alias=, stereotype=, visibility=public, txtDescription='All service access points of the server, unambiguously identifying it within a system. +Modelling note 1: Corresponds to SERVER.ServiceAccessPoint. +Modelling note 2: Original documentation reads: "Shall identify a SERVER within the scope of a system. NOTE: The ServiceAccessPoint is an abstraction of an address used to identify the server in the underlying SCSM. The type depends on the SCSM and shall be defined there. Although most services require a specific ServiceAccessPoint to address a server, it has not been included explicitly in the service parameter tables throughout this part of the standard." Currently, here is defined the type IPAddress; see also MulticastAddress.', htmlDescription='

All service access points of the server, unambiguously identifying it within a system.

Modelling note 1: Corresponds to SERVER.ServiceAccessPoint.

Modelling note 2: Original documentation reads: "Shall identify a SERVER within the scope of a system. NOTE: The ServiceAccessPoint is an abstraction of an address used to identify the server in the underlying SCSM. The type depends on the SCSM and shall be defined there. Although most services require a specific ServiceAccessPoint to address a server, it has not been included explicitly in the service parameter tables throughout this part of the standard." Currently, here is defined the type IPAddress; see also MulticastAddress.

'], _isConst=false, _isStatic=false, _multiplicity=[1..*], _initValue=, _eaTypeId=1771, _eaTypeName=IPAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1f23557]. +2024-09-08 15:10:00,523 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::LD, _objData=UmlObjectData [id=3589, uuid={877F93ED-1944-4701-A29D-57C6810B68CB}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1694, _eaTypeName=LDReference, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@194d659]. +2024-09-08 15:10:00,523 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::LN, _objData=UmlObjectData [id=3590, uuid={B9201E1F-0FBA-4eee-A567-31539F09E245}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1696, _eaTypeName=LNReference, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@ceda24]. +2024-09-08 15:10:00,524 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::CDC, _objData=UmlObjectData [id=3591, uuid={6520578A-E479-4aca-8AD6-7A973E895B9F}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1697, _eaTypeName=CDCReference, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1e3708]. +2024-09-08 15:10:00,524 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::FCD, _objData=UmlObjectData [id=3592, uuid={71280780-DF48-46ed-94CA-4B5679065AE1}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1702, _eaTypeName=FCDReference, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@e82894]. +2024-09-08 15:10:00,524 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::FCD, _objData=UmlObjectData [id=3593, uuid={000364EA-747B-48d9-9EFC-91F8A514AEF3}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@116af24]. +2024-09-08 15:10:00,524 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::FCDA, _objData=UmlObjectData [id=3594, uuid={B87818BA-192E-4a1d-8AD7-0549A1C7944B}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1703, _eaTypeName=FCDAReference, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@13af739]. +2024-09-08 15:10:00,524 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::DA, _objData=UmlObjectData [id=3595, uuid={9BCB520F-E69E-42f6-B46B-C5CD184D0DC6}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1703, _eaTypeName=FCDAReference, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@13af739]. +2024-09-08 15:10:00,524 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::PrimitiveDA, _objData=UmlObjectData [id=3596, uuid={6D0553ED-7183-49b8-AA89-281C5ED4C156}, since=null, name=attrVal, alias=, stereotype=, visibility=public, txtDescription='Attribute value.', htmlDescription='

Attribute value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1715, _eaTypeName=AttrValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1fe3806]. +2024-09-08 15:10:00,524 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::LNOwnedDS, _objData=UmlObjectData [id=3597, uuid={178D709F-C872-44cb-9A6B-41E324507F65}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1701, _eaTypeName=LNOwnedDSReference, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@7c290d]. +2024-09-08 15:10:00,524 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::NonPersistentDS, _objData=UmlObjectData [id=3598, uuid={D70F19B4-50F6-4ef3-B474-4097F3C69C1D}, since=null, name=isReferenced, alias=, stereotype=, visibility=public, txtDescription='Whether this persistent data set is referenced by any control block. +Modelling note: Persistent data set has to maintain the count of control blocks that refer to it. As long as any control block refers to it, the data set must not be deleted.', htmlDescription='

Whether this persistent data set is referenced by any control block.

Modelling note: Persistent data set has to maintain the count of control blocks that refer to it. As long as any control block refers to it, the data set must not be deleted.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:10:00,524 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::NonPersistentDS, _objData=UmlObjectData [id=3599, uuid={621B00EC-B4C7-4e96-B78E-699BDF150650}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1695, _eaTypeName=NonPersistentDSReference, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@b1d79b]. +2024-09-08 15:10:00,524 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::PersistentDS, _objData=UmlObjectData [id=3600, uuid={6031C78B-0DF2-4ebc-B8D9-F1536979D005}, since=null, name=isReferenced, alias=, stereotype=, visibility=public, txtDescription='Whether this persistent data set is referenced by any control block. +Modelling note: Persistent data set has to maintain the count of control blocks that refer to it. As long as any control block refers to it, the data set must not be deleted.', htmlDescription='

Whether this persistent data set is referenced by any control block.

Modelling note: Persistent data set has to maintain the count of control blocks that refer to it. As long as any control block refers to it, the data set must not be deleted.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:10:00,524 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::ControlBlock, _objData=UmlObjectData [id=3601, uuid={A222DE94-3FCC-4552-ABD6-E06CD9D4785A}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1698, _eaTypeName=CBReference, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1a50a4c]. +2024-09-08 15:10:00,524 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::BRCB, _objData=UmlObjectData [id=3602, uuid={49A42927-00D7-4419-B76E-ED5F48ECCCB8}, since=null, name=clientAddress, alias=, stereotype=, visibility=public, txtDescription='Address of the client configured to use this buffered sampled values control block.', htmlDescription='

Address of the client configured to use this buffered sampled values control block.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1771, _eaTypeName=IPAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1f23557]. +2024-09-08 15:10:00,524 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::URCB, _objData=UmlObjectData [id=3603, uuid={B5927ACC-713E-4617-AA8C-BC2DF96653FC}, since=null, name=clientAddress, alias=, stereotype=, visibility=public, txtDescription='Address of the client currently using this unbuffered report control block.', htmlDescription='

Address of the client currently using this unbuffered report control block.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1771, _eaTypeName=IPAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1f23557]. +2024-09-08 15:10:00,524 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::LOG, _objData=UmlObjectData [id=3604, uuid={83B4C180-8173-4ced-91C7-171BCA34F649}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1700, _eaTypeName=LOGReference, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@103f852]. +2024-09-08 15:10:00,524 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::GCB, _objData=UmlObjectData [id=3605, uuid={8D35BDEB-211F-478a-B3F2-87A92379A926}, since=null, name=destinationAddress, alias=, stereotype=, visibility=public, txtDescription='Address to which this control block publishes GOOSE messages.', htmlDescription='

Address to which this control block publishes GOOSE messages.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1772, _eaTypeName=MulticastAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@2db087]. +2024-09-08 15:10:00,524 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::MSVCB, _objData=UmlObjectData [id=3606, uuid={98ABF189-48F0-466b-9B2F-580948BB965B}, since=null, name=destinationAddress, alias=, stereotype=, visibility=public, txtDescription='Address to which this control block publishes sampled values.', htmlDescription='

Address to which this control block publishes sampled values.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1772, _eaTypeName=MulticastAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@2db087]. +2024-09-08 15:10:00,526 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::USVCB, _objData=UmlObjectData [id=3607, uuid={84624C3F-9B45-49b5-94A3-491A476383AF}, since=null, name=clientAddress, alias=, stereotype=, visibility=public, txtDescription='Address of the client currently using this unbuffered sampled values control block.', htmlDescription='

Address of the client currently using this unbuffered sampled values control block.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1771, _eaTypeName=IPAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1f23557]. +2024-09-08 15:10:00,526 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::FILE, _objData=UmlObjectData [id=3608, uuid={9EB09CC5-3C74-4cf6-A8B4-C65928A972B6}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1693, _eaTypeName=FILEReference, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@ab0bfb]. +2024-09-08 15:10:00,526 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_BL, _objData=UmlObjectData [id=3609, uuid={5D2587D3-3485-4d8e-A54A-B3968B0ACD55}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=BL, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@116af24]. +2024-09-08 15:10:00,526 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_CF, _objData=UmlObjectData [id=3610, uuid={09B06C9E-4F11-4e82-8034-F5CC45FAC900}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=CF, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@116af24]. +2024-09-08 15:10:00,526 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_CF_dchg, _objData=UmlObjectData [id=3611, uuid={09BA6106-FB5B-46d5-B9EB-69EF40ADE216}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@438a68]. +2024-09-08 15:10:00,526 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_DC, _objData=UmlObjectData [id=3612, uuid={683D28A6-85D9-4a30-9858-1FD32EE25D71}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=DC, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@116af24]. +2024-09-08 15:10:00,526 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_EX, _objData=UmlObjectData [id=3613, uuid={CEFBDE9B-5BF0-4b36-856A-CA994924738A}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=EX, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@116af24]. +2024-09-08 15:10:00,526 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_EX, _objData=UmlObjectData [id=3614, uuid={5A327143-156F-48dd-AAF5-6B96335A4246}, since=null, name=isWritable, alias=, stereotype=, visibility=public, txtDescription='Whether the data attribute is writable through services.', htmlDescription='

Whether the data attribute is writable through services.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:10:00,526 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_MX, _objData=UmlObjectData [id=3615, uuid={C595F449-EECA-490f-86C4-52A016827CF5}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=MX, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@116af24]. +2024-09-08 15:10:00,526 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_MX, _objData=UmlObjectData [id=3616, uuid={26C44A44-AB3A-4d2f-9A1C-F09A40CD7503}, since=null, name=isWritable, alias=, stereotype=, visibility=public, txtDescription='Whether the data attribute is writable through services.', htmlDescription='

Whether the data attribute is writable through services.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:10:00,526 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_MX_dchg, _objData=UmlObjectData [id=3617, uuid={DA6E63F6-73E7-48a9-B61B-B3DF59A04B4E}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@438a68]. +2024-09-08 15:10:00,526 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_MX_dchg_dupd, _objData=UmlObjectData [id=3618, uuid={22AFD6F7-773C-4cac-A2E0-545134B61149}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, dupd, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@438a68]. +2024-09-08 15:10:00,526 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_MX_qchg, _objData=UmlObjectData [id=3619, uuid={3F395C8A-6D62-4c56-87E6-027F1F594183}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=qchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@438a68]. +2024-09-08 15:10:00,527 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_OR, _objData=UmlObjectData [id=3620, uuid={282951AC-7E92-4c83-97E3-19FBCC94D012}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=OR, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@116af24]. +2024-09-08 15:10:00,527 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_OR, _objData=UmlObjectData [id=3621, uuid={558DB516-1CFD-4554-81F5-FA0755D271D8}, since=null, name=isWritable, alias=, stereotype=, visibility=public, txtDescription='Whether the data attribute is writable through services.', htmlDescription='

Whether the data attribute is writable through services.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:10:00,527 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_OR_dchg, _objData=UmlObjectData [id=3622, uuid={3A006018-162B-46b7-AC78-9652BF2385BD}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@438a68]. +2024-09-08 15:10:00,527 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SE, _objData=UmlObjectData [id=3623, uuid={EE451B41-BF45-40e4-8CF7-515359A61448}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=SE, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@116af24]. +2024-09-08 15:10:00,527 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SE, _objData=UmlObjectData [id=3624, uuid={C6F2D29C-73F2-45a2-852C-36D93C110DE8}, since=null, name=isReadable, alias=, stereotype=, visibility=public, txtDescription='Whether the data attribute is readable through services.', htmlDescription='

Whether the data attribute is readable through services.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:10:00,527 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SE, _objData=UmlObjectData [id=3625, uuid={4CFFCD7F-9E74-4b7a-B957-5A62F07BBB56}, since=null, name=isWritable, alias=, stereotype=, visibility=public, txtDescription='Whether the data attribute is writable through services.', htmlDescription='

Whether the data attribute is writable through services.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:10:00,527 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SE_dchg, _objData=UmlObjectData [id=3626, uuid={CF74494C-A546-4a41-A807-684E97FE1B68}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@438a68]. +2024-09-08 15:10:00,527 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SG, _objData=UmlObjectData [id=3627, uuid={1810C2D0-E27B-4e1e-A0B6-2A5F2E8E16D6}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=SG, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@116af24]. +2024-09-08 15:10:00,527 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SG, _objData=UmlObjectData [id=3628, uuid={1BD03152-B959-4fff-8DC0-B6BE8542DDD2}, since=null, name=isWritable, alias=, stereotype=, visibility=public, txtDescription='Whether the data attribute is writable through services.', htmlDescription='

Whether the data attribute is writable through services.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:10:00,527 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SG_dchg, _objData=UmlObjectData [id=3629, uuid={D993FACE-FF1E-47a8-9E52-C03D6CB09D7D}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@438a68]. +2024-09-08 15:10:00,527 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SP, _objData=UmlObjectData [id=3630, uuid={6DC7D1CB-F4DC-4ef4-9756-98C8AD7FF1B6}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=SP, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@116af24]. +2024-09-08 15:10:00,527 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SP_dchg, _objData=UmlObjectData [id=3631, uuid={CA035F21-EC50-4322-8BD7-B8C7FD19CF46}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@438a68]. +2024-09-08 15:10:00,527 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_ST, _objData=UmlObjectData [id=3632, uuid={55FA60DB-3F3A-4bb9-9E91-8BA73393B836}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=ST, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@116af24]. +2024-09-08 15:10:00,527 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_ST, _objData=UmlObjectData [id=3633, uuid={A00991C4-8B92-478e-AC41-A628210ED3B7}, since=null, name=isWritable, alias=, stereotype=, visibility=public, txtDescription='Whether the data attribute is writable through services.', htmlDescription='

Whether the data attribute is writable through services.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:10:00,527 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_ST_dchg, _objData=UmlObjectData [id=3634, uuid={3899F2B2-1233-40b3-9997-370CF1FD073A}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@438a68]. +2024-09-08 15:10:00,527 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_ST_dchg_dupd, _objData=UmlObjectData [id=3635, uuid={41740EB1-4C6B-4265-A5A9-D1853C7B873B}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, dupd, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@438a68]. +2024-09-08 15:10:00,527 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_ST_dupd, _objData=UmlObjectData [id=3636, uuid={332CF62D-D37E-431d-8EC4-6A1EBADAAFB3}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dupd, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@438a68]. +2024-09-08 15:10:00,527 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_ST_qchg, _objData=UmlObjectData [id=3637, uuid={2735A83D-F0E0-4aab-ADB5-AECB30212656}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=qchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@438a68]. +2024-09-08 15:10:00,527 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SV, _objData=UmlObjectData [id=3638, uuid={4D38B4C1-5DEC-47cf-90C9-BF37000D95AC}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=SV, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@116af24]. +2024-09-08 15:10:00,527 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ImplicitDAs::SIUnit, _objData=UmlObjectData [id=4088, uuid={04E61BC5-2DEF-41ba-AF8F-3A302F4A6063}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2045, _eaTypeName=SIUnitKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1df177]. +2024-09-08 15:10:00,527 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ImplicitDAs::Multiplier, _objData=UmlObjectData [id=4077, uuid={D9A6C35F-4CCF-4f73-83E5-5F4AD6A1400F}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2044, _eaTypeName=MultiplierKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@f08448]. +2024-09-08 15:10:00,527 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ImplicitDAs::PhaseFaultDirection, _objData=UmlObjectData [id=4082, uuid={686FDE41-9545-4055-876E-D830A36C9D9B}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2035, _eaTypeName=PhaseFaultDirectionKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@8df31b]. +2024-09-08 15:10:00,527 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ImplicitDAs::PhaseAngleReference, _objData=UmlObjectData [id=4081, uuid={C147EDDB-E173-43f3-A14E-937A40EA0619}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2039, _eaTypeName=PhaseAngleReferenceKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1a57272]. +2024-09-08 15:10:00,528 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::Quality, _objData=UmlObjectData [id=4089, uuid={6B873BB6-307E-4f25-9992-6EB6CF12F6ED}, since=null, name=validity, alias=, stereotype=, visibility=public, txtDescription='Validity of the value, as condensed information for the client. In case this value is not 'good', the reasons may be found in the 'detailQual'. See statechart diagram 'Quality.validity'.', htmlDescription='

Validity of the value, as condensed information for the client. In case this value is not 'good', the reasons may be found in the 'detailQual'. See statechart diagram 'Quality.validity'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2086, _eaTypeName=ValidityKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@238e3f]. +2024-09-08 15:10:00,528 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::Quality, _objData=UmlObjectData [id=4090, uuid={F9945558-C141-4c08-8066-C29D603832D6}, since=null, name=detailQual, alias=, stereotype=, visibility=public, txtDescription='Describes reason in case 'validity' is not 'good'. See statechart diagram 'Quality.validity'.', htmlDescription='

Describes reason in case 'validity' is not 'good'. See statechart diagram 'Quality.validity'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2087, _eaTypeName=DetailQual, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@464a14]. +2024-09-08 15:10:00,528 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::Quality, _objData=UmlObjectData [id=4091, uuid={5A199508-269E-4da4-9486-1CFDD6D76F69}, since=null, name=source, alias=, stereotype=, visibility=public, txtDescription='Defines the source of a value. +NOTE 1 Substitution may be done locally or via the communication services. In the second case, specific attributes with a FC=SV are used. +NOTE 2 There are various means to clear a substitution. As an example, a substitution that was done following an invalid condition may be cleared automatically if the invalid condition is cleared. However, this is a local issue and therefore not within the scope of this standard.', htmlDescription='

Defines the source of a value.

NOTE 1 Substitution may be done locally or via the communication services. In the second case, specific attributes with a FC=SV are used.

NOTE 2 There are various means to clear a substitution. As an example, a substitution that was done following an invalid condition may be cleared automatically if the invalid condition is cleared. However, this is a local issue and therefore not within the scope of this standard.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=process, _eaTypeId=2088, _eaTypeName=SourceKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@4aea35]. +2024-09-08 15:10:00,528 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::Quality, _objData=UmlObjectData [id=4092, uuid={AAF0A359-5525-42e5-AC60-220D2A34F946}, since=null, name=test, alias=, stereotype=, visibility=public, txtDescription='If true, the value is a test value and not to be used for operational purposes. The processing of the test quality in the client shall be as described in IEC 61850-7-4. This bit shall be completely independent from the other bits within the quality descriptor.', htmlDescription='

If true, the value is a test value and not to be used for operational purposes. The processing of the test quality in the client shall be as described in IEC 61850-7-4. This bit shall be completely independent from the other bits within the quality descriptor.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:10:00,528 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::Quality, _objData=UmlObjectData [id=4093, uuid={3CD5913A-B2E1-43bd-ABC3-943477516A2E}, since=null, name=operatorBlocked, alias=, stereotype=, visibility=public, txtDescription='If true, further update of the value has been blocked by an operator. The value shall be the information that was acquired before blocking. If this flag is set, then the 'detailQual.oldData' shall also be set. +The operator shall use the data attribute 'CDC.blkEna' to block the update of the value. +NOTE Both an operator as well as an automatic function may freeze communication updating as well as input updating. In both cases, 'detailQual.oldData' will be set. If the blocking is done by an operator, then this flag is set additionally, and an operator activity is required to clear the condition. +EXAMPLE An operator may freeze the update of an input, to save the old value before the auxiliary supply is switched off.', htmlDescription='

If true, further update of the value has been blocked by an operator. The value shall be the information that was acquired before blocking. If this flag is set, then the 'detailQual.oldData' shall also be set.

The operator shall use the data attribute 'CDC.blkEna' to block the update of the value.

NOTE Both an operator as well as an automatic function may freeze communication updating as well as input updating. In both cases, 'detailQual.oldData' will be set. If the blocking is done by an operator, then this flag is set additionally, and an operator activity is required to clear the condition.

EXAMPLE An operator may freeze the update of an input, to save the old value before the auxiliary supply is switched off.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:10:00,528 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4098, uuid={F718393A-BF8D-43d5-838D-8E98DDBD0E12}, since=null, name=overflow, alias=, stereotype=, visibility=public, txtDescription='If true, the value of the attribute to which the quality has been associated is beyond the capability of being represented properly (used for measurand information only). +EXAMPLE A measured value may exceed the range that may be represented by the selected data type, for example the data type is a 16-bit unsigned integer and the value exceeds 65 535.', htmlDescription='

If true, the value of the attribute to which the quality has been associated is beyond the capability of being represented properly (used for measurand information only).

EXAMPLE A measured value may exceed the range that may be represented by the selected data type, for example the data type is a 16-bit unsigned integer and the value exceeds 65 535.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:10:00,528 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4099, uuid={59AA133B-4EF6-45b2-8F72-65890F8CB3B3}, since=null, name=outOfRange, alias=, stereotype=, visibility=public, txtDescription='If true, the attribute to which the quality has been associated is beyond a predefined range of values. The server shall decide if validity shall be set to invalid or questionable (used for measurand information only). +EXAMPLE A measured value may exceed a predefined range, however the selected data type can still represent the value, for example the data type is a 16-bit unsigned integer, the predefined range is 0 to 40 000, if the value is between 40 001 and 65 535 it is considered to be out of range.', htmlDescription='

If true, the attribute to which the quality has been associated is beyond a predefined range of values. The server shall decide if validity shall be set to invalid or questionable (used for measurand information only).

EXAMPLE A measured value may exceed a predefined range, however the selected data type can still represent the value, for example the data type is a 16-bit unsigned integer, the predefined range is 0 to 40 000, if the value is between 40 001 and 65 535 it is considered to be out of range.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:10:00,529 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4100, uuid={11996C00-CB4B-4a28-8EE7-BEF71773138F}, since=null, name=badReference, alias=, stereotype=, visibility=public, txtDescription='If true, the value may not be a correct value due to a reference being out of calibration. The server shall decide if validity shall be set to invalid or questionable (used for measurand information and binary counter information only).', htmlDescription='

If true, the value may not be a correct value due to a reference being out of calibration. The server shall decide if validity shall be set to invalid or questionable (used for measurand information and binary counter information only).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:10:00,530 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4101, uuid={8BDDF6AD-167F-4b25-B87B-675BA127832A}, since=null, name=oscillatory, alias=, stereotype=, visibility=public, txtDescription='To prevent overloading of event driven communication channels, it is desirable to detect and suppress oscillating (fast changing) binary inputs. If a signal changes in a defined time (tosc) twice in the same direction (from 0 to 1 or from 1 to 0), then it shall be defined as an oscillation and this attribute shall be set to true. If a configured number of transient changes is detected, they shall be suppressed. In this time, the 'Quality.validity' shall be set to 'questionable'. If the signal is still in the oscillating state after the defined number of changes, the value shall be left in the state it was in when this flag was set. In this case, the 'Quality.validity' shall be changed from 'questionable' to 'invalid' and kept so as long as the signal is oscillating. +If the configuration is such that all transient changes should be suppressed, the 'Quality.validity' shall be set immediately to 'invalid' and this flag to true (used for status information only).', htmlDescription='

To prevent overloading of event driven communication channels, it is desirable to detect and suppress oscillating (fast changing) binary inputs. If a signal changes in a defined time (tosc) twice in the same direction (from 0 to 1 or from 1 to 0), then it shall be defined as an oscillation and this attribute shall be set to true. If a configured number of transient changes is detected, they shall be suppressed. In this time, the 'Quality.validity' shall be set to 'questionable'. If the signal is still in the oscillating state after the defined number of changes, the value shall be left in the state it was in when this flag was set. In this case, the 'Quality.validity' shall be changed from 'questionable' to 'invalid' and kept so as long as the signal is oscillating.

If the configuration is such that all transient changes should be suppressed, the 'Quality.validity' shall be set immediately to 'invalid' and this flag to true (used for status information only).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:10:00,530 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4102, uuid={3B8BF4EE-E8EF-4aff-A496-55A1F7D43008}, since=null, name=failure, alias=, stereotype=, visibility=public, txtDescription='If true, a supervision function has detected an internal or external failure.', htmlDescription='

If true, a supervision function has detected an internal or external failure.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:10:00,530 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4103, uuid={818F9F91-476A-49f8-86B4-58D7E97343BD}, since=null, name=oldData, alias=, stereotype=, visibility=public, txtDescription='If true, an update is not made during a specific time interval. The value may be an old value that may have changed in the meantime. This specific time interval may be defined by an allowed-age attribute. +NOTE "Fail silent" errors, where the equipment stops sending data, will cause setting this flag to true. In this case, the last received information was correct.', htmlDescription='

If true, an update is not made during a specific time interval. The value may be an old value that may have changed in the meantime. This specific time interval may be defined by an allowed-age attribute.

NOTE "Fail silent" errors, where the equipment stops sending data, will cause setting this flag to true. In this case, the last received information was correct.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:10:00,530 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4104, uuid={BD955C3B-2E26-40fa-ADBC-F1FD970D24FF}, since=null, name=inconsistent, alias=, stereotype=, visibility=public, txtDescription='If true, an evaluation function has detected an inconsistency.', htmlDescription='

If true, an evaluation function has detected an inconsistency.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:10:00,530 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4105, uuid={8936AB8B-A0A9-4132-817E-D2B7C850E919}, since=null, name=inaccurate, alias=, stereotype=, visibility=public, txtDescription='If true, the value does not meet the stated accuracy of the source. +EXAMPLE The measured value of power factor may be noisy (inaccurate) when the current is very small.', htmlDescription='

If true, the value does not meet the stated accuracy of the source.

EXAMPLE The measured value of power factor may be noisy (inaccurate) when the current is very small.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:10:00,530 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::AnalogueValue, _objData=UmlObjectData [id=4108, uuid={22DBDBF4-0BD6-4ae9-83E7-28C1B98CD72A}, since=null, name=i, alias=, stereotype=, visibility=public, txtDescription='Integer representation of the measured value. The formula to convert between 'i' and the process value (pVal) shall be: pVal=('i'*'ScaledValueConfig.scaleFactor')+'ScaledValueConfig.offset'.', htmlDescription='

Integer representation of the measured value. The formula to convert between 'i' and the process value (pVal) shall be: pVal=('i'*'ScaledValueConfig.scaleFactor')+'ScaledValueConfig.offset'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1745, _eaTypeName=INT32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1623278]. +2024-09-08 15:10:00,530 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::AnalogueValue, _objData=UmlObjectData [id=4109, uuid={B5A81241-061A-410d-8E63-9847A2F26D4D}, since=null, name=f, alias=, stereotype=, visibility=public, txtDescription='Floating point representation of the measured value. The formula to convert between 'f' and the process value (pVal) shall be: pVal='f'*10'Unit.multiplier'.', htmlDescription='

Floating point representation of the measured value. The formula to convert between 'f' and the process value (pVal) shall be: pVal='f'*10'Unit.multiplier'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1741, _eaTypeName=FLOAT32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@15b3e5b]. +2024-09-08 15:10:00,530 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::RangeConfig, _objData=UmlObjectData [id=4112, uuid={2BFD6A66-6A28-44b9-BD6A-9BFF5FEEF286}, since=null, name=hhLim, alias=, stereotype=, visibility=public, txtDescription='Setting for 'CDC.range' transition between 'high' and 'high-high'.', htmlDescription='

Setting for 'CDC.range' transition between 'high' and 'high-high'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@42d7b5]. +2024-09-08 15:10:00,530 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::RangeConfig, _objData=UmlObjectData [id=4113, uuid={8FE22512-90C7-4798-9E7E-7595B41EA770}, since=null, name=hLim, alias=, stereotype=, visibility=public, txtDescription='Setting for 'CDC.range' transition between 'normal' and 'high'.', htmlDescription='

Setting for 'CDC.range' transition between 'normal' and 'high'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@42d7b5]. +2024-09-08 15:10:00,530 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::RangeConfig, _objData=UmlObjectData [id=4114, uuid={E4180E64-6824-4aa0-8D9F-A32F749903E0}, since=null, name=lLim, alias=, stereotype=, visibility=public, txtDescription='Setting for 'CDC.range' transition between 'normal' and 'low'.', htmlDescription='

Setting for 'CDC.range' transition between 'normal' and 'low'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@42d7b5]. +2024-09-08 15:10:00,530 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::RangeConfig, _objData=UmlObjectData [id=4115, uuid={A928E883-FC18-4c21-8227-53F8B3A89A08}, since=null, name=llLim, alias=, stereotype=, visibility=public, txtDescription='Setting for 'CDC.range' transition between 'low' and 'low-low'.', htmlDescription='

Setting for 'CDC.range' transition between 'low' and 'low-low'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@42d7b5]. +2024-09-08 15:10:00,530 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::RangeConfig, _objData=UmlObjectData [id=4116, uuid={FDC77E3A-4EF4-4ace-93FD-7CC6C14FB3D0}, since=null, name=min, alias=, stereotype=, visibility=public, txtDescription='The minimum process measurement for which 'AnalogueValue.[i,f]' is considered within process limits. If the value is lower, quality shall be set accordingly ('Quality.detailQual.outOfRange'=true => 'Quality.validity'='questionable'; see statechart diagram 'Quality.validity').', htmlDescription='

The minimum process measurement for which 'AnalogueValue.[i,f]' is considered within process limits. If the value is lower, quality shall be set accordingly ('Quality.detailQual.outOfRange'=true => 'Quality.validity'='questionable'; see statechart diagram 'Quality.validity').

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@42d7b5]. +2024-09-08 15:10:00,531 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::RangeConfig, _objData=UmlObjectData [id=4117, uuid={470D1B89-7BB1-4e75-BEAE-A838976EFA5A}, since=null, name=max, alias=, stereotype=, visibility=public, txtDescription='The maximum process measurement for which 'AnalogueValue.[i,f]' is considered within process limits. If the value is higher, quality shall be set accordingly ('Quality.detailQual.outOfRange'=true => 'Quality.validity'='questionable'; see statechart diagram 'Quality.validity').', htmlDescription='

The maximum process measurement for which 'AnalogueValue.[i,f]' is considered within process limits. If the value is higher, quality shall be set accordingly ('Quality.detailQual.outOfRange'=true => 'Quality.validity'='questionable'; see statechart diagram 'Quality.validity').

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@42d7b5]. +2024-09-08 15:10:00,531 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::RangeConfig, _objData=UmlObjectData [id=4118, uuid={EE10B700-EDF1-4e03-B234-D881D49750CC}, since=null, name=limDb, alias=, stereotype=, visibility=public, txtDescription='When present, the value used to introduce a hysteresis in the calculation of 'range'. When a high/low limit has been crossed, 'range' is immediately set to the higher/lower value. However, 'range' is only set back to the lower/higher value when the value of the high limit minus/low limit plut 'limDb' has been crossed. The value shall represent the percentage between 'max' and 'min' in units of 0.001 %.', htmlDescription='

When present, the value used to introduce a hysteresis in the calculation of 'range'. When a high/low limit has been crossed, 'range' is immediately set to the higher/lower value. However, 'range' is only set back to the lower/higher value when the value of the high limit minus/low limit plut 'limDb' has been crossed. The value shall represent the percentage between 'max' and 'min' in units of 0.001 %.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0...100000, _eaTypeId=1746, _eaTypeName=INT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@8b970c]. +2024-09-08 15:10:00,531 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::Unit, _objData=UmlObjectData [id=4127, uuid={E11B7BFF-E809-4175-9618-B2A63F15871E}, since=null, name=SIUnit, alias=, stereotype=, visibility=public, txtDescription='SI unit of measure.', htmlDescription='

SI unit of measure.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2072, _eaTypeName=SIUnit, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@6fa74d]. +2024-09-08 15:10:00,531 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::Unit, _objData=UmlObjectData [id=4128, uuid={0327BF79-19B2-4e38-AD4E-6944E32735D3}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='Unit multiplier.', htmlDescription='

Unit multiplier.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=none, _eaTypeId=2061, _eaTypeName=Multiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@16438c9]. +2024-09-08 15:10:00,531 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::Point, _objData=UmlObjectData [id=4131, uuid={FE6F09B0-454A-4c96-8FDD-76F86A4128A3}, since=null, name=xVal, alias=, stereotype=, visibility=public, txtDescription='X-axis value.', htmlDescription='

X-axis value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1741, _eaTypeName=FLOAT32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@15b3e5b]. +2024-09-08 15:10:00,531 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::Point, _objData=UmlObjectData [id=4132, uuid={77130ABC-BB1E-4259-96F0-AF62EF68F9CB}, since=null, name=yVal, alias=, stereotype=, visibility=public, txtDescription='Y-axis value.', htmlDescription='

Y-axis value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1741, _eaTypeName=FLOAT32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@15b3e5b]. +2024-09-08 15:10:00,531 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::Point, _objData=UmlObjectData [id=4133, uuid={1A9EA6E0-B105-4386-8B25-4F2F99670EE0}, since=null, name=zVal, alias=, stereotype=, visibility=public, txtDescription='Z-axis value.', htmlDescription='

Z-axis value.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1741, _eaTypeName=FLOAT32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@15b3e5b]. +2024-09-08 15:10:00,531 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::AnalogueValue_MX, _objData=UmlObjectData [id=4148, uuid={FDD0542C-EDDF-4b7f-AF56-B928F6DD6505}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@42d7b5]. +2024-09-08 15:10:00,531 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::AnalogueValue_MX_dchg, _objData=UmlObjectData [id=4149, uuid={F527B9F4-F3F6-495e-820C-D82F97FAABF8}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@42d7b5]. +2024-09-08 15:10:00,531 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::AnalogueValue_MX_dchg_dupd, _objData=UmlObjectData [id=4150, uuid={35CFD056-5391-4884-AB18-91299F6FCBFB}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@42d7b5]. +2024-09-08 15:10:00,531 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::BOOLEAN_BL, _objData=UmlObjectData [id=4155, uuid={3695DD4C-AE46-467e-862D-F6B7D2805EE9}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@22d9d]. +2024-09-08 15:10:00,531 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::BOOLEAN_CF_dchg, _objData=UmlObjectData [id=4156, uuid={D005BFC1-C9FF-4904-9176-3E49D541A4CE}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@22d9d]. +2024-09-08 15:10:00,531 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::BOOLEAN_MX_dchg, _objData=UmlObjectData [id=4157, uuid={C48BB5A5-75F6-482b-B673-C2130F3A3343}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@22d9d]. +2024-09-08 15:10:00,531 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::BOOLEAN_OR_dchg, _objData=UmlObjectData [id=4158, uuid={E52B552D-B1AD-48ee-8F84-581743CA0034}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@22d9d]. +2024-09-08 15:10:00,531 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::BOOLEAN_SE, _objData=UmlObjectData [id=4159, uuid={EA1C486D-C490-4b0e-B0F8-803E519E584A}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@22d9d]. +2024-09-08 15:10:00,531 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::BOOLEAN_SG, _objData=UmlObjectData [id=4160, uuid={F978D268-CA2C-4ff8-B7CD-CDD03C517BAE}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@22d9d]. +2024-09-08 15:10:00,531 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::BOOLEAN_SP_dchg, _objData=UmlObjectData [id=4161, uuid={8DEC3BB4-1BED-4961-B836-457537D9227E}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@22d9d]. +2024-09-08 15:10:00,531 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::BOOLEAN_ST_dchg, _objData=UmlObjectData [id=4162, uuid={7480B397-4199-4840-B073-D855605E4C7A}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@22d9d]. +2024-09-08 15:10:00,532 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::BOOLEAN_SV, _objData=UmlObjectData [id=4163, uuid={13C32585-2DE2-4dad-8F00-5BDC2660E5D8}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@22d9d]. +2024-09-08 15:10:00,532 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::DpStatus_ST_dchg, _objData=UmlObjectData [id=4175, uuid={6669EA33-E870-48c7-9A70-675DF65FCDE1}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1759, _eaTypeName=DpStatus, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@b87145]. +2024-09-08 15:10:00,532 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::DpStatus_SV, _objData=UmlObjectData [id=4176, uuid={0F2878FA-ABC8-4aab-91D7-41F3D0B45817}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1759, _eaTypeName=DpStatus, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@b87145]. +2024-09-08 15:10:00,532 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::EnumDA_CF_dchg, _objData=UmlObjectData [id=4177, uuid={AB3915C1-C27C-48ea-B3F9-A9FDE30FAEB0}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1855, _eaTypeName=EnumDA, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1baf4f0]. +2024-09-08 15:10:00,532 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::EnumDA_ST_dchg, _objData=UmlObjectData [id=4181, uuid={FDBA0552-772A-4e56-B666-9B4EADE4572B}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1855, _eaTypeName=EnumDA, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1baf4f0]. +2024-09-08 15:10:00,532 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::EnumDA_ST_dchg_dupd, _objData=UmlObjectData [id=4182, uuid={A26C4B75-BDBC-47d7-8F84-1AEB40536B37}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1855, _eaTypeName=EnumDA, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1baf4f0]. +2024-09-08 15:10:00,532 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::EnumDA_SV, _objData=UmlObjectData [id=4183, uuid={85FBD660-4ECF-4fe6-A3CB-7CE93AD92682}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1855, _eaTypeName=EnumDA, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1baf4f0]. +2024-09-08 15:10:00,532 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::INT16U_CF, _objData=UmlObjectData [id=4192, uuid={D557D453-45C5-4562-97A4-DF8E6C3ABE03}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1743, _eaTypeName=INT16U, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a3ec6b]. +2024-09-08 15:10:00,532 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::INT16U_CF_dchg, _objData=UmlObjectData [id=4193, uuid={CF5B7211-78ED-4a54-943A-4C6076784FAA}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1743, _eaTypeName=INT16U, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a3ec6b]. +2024-09-08 15:10:00,532 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::INT32U_CF_dchg, _objData=UmlObjectData [id=4198, uuid={B6014F46-BB76-4b26-B95B-414DEBFE5627}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1746, _eaTypeName=INT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@8b970c]. +2024-09-08 15:10:00,532 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::INT32_CF_dchg, _objData=UmlObjectData [id=4200, uuid={7A8322EF-35B6-45e2-B29B-24495242697D}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1745, _eaTypeName=INT32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1623278]. +2024-09-08 15:10:00,532 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::INT32_ST_dchg, _objData=UmlObjectData [id=4204, uuid={BD683E05-ABAE-402d-B588-081B1F3BA2FB}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1745, _eaTypeName=INT32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1623278]. +2024-09-08 15:10:00,532 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::INT32_ST_dchg_dupd, _objData=UmlObjectData [id=4205, uuid={84EA5D4B-9E4B-4a73-A3A5-9E8D42A60F3C}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1745, _eaTypeName=INT32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1623278]. +2024-09-08 15:10:00,532 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::PhaseAngleReference_CF_dchg, _objData=UmlObjectData [id=4216, uuid={7B9C230D-AF50-4613-AFD8-CA5D41088526}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2065, _eaTypeName=PhaseAngleReference, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@181ae3f]. +2024-09-08 15:10:00,532 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::PhaseFaultDirection_ST_dchg, _objData=UmlObjectData [id=4217, uuid={FEA43715-0A9A-4812-A093-3FAD2A6B464D}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2066, _eaTypeName=PhaseFaultDirection, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b37288]. +2024-09-08 15:10:00,532 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::Point_DC, _objData=UmlObjectData [id=4219, uuid={EFCD6ECB-36A0-4997-82B8-301C6C666369}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2098, _eaTypeName=Point, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@16a4d6c]. +2024-09-08 15:10:00,532 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::Point_SE, _objData=UmlObjectData [id=4220, uuid={C756E7B6-1F5F-4ead-B882-CE7EDB83001D}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2098, _eaTypeName=Point, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@16a4d6c]. +2024-09-08 15:10:00,533 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::Point_SG, _objData=UmlObjectData [id=4221, uuid={871B23C7-8CF2-43a0-A9FE-4627CB0BFA2D}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2098, _eaTypeName=Point, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@16a4d6c]. +2024-09-08 15:10:00,533 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::Point_SP, _objData=UmlObjectData [id=4222, uuid={A9FC2C2B-E6E7-4210-80D8-B786506D9BCF}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2098, _eaTypeName=Point, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@16a4d6c]. +2024-09-08 15:10:00,533 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::Quality_MX_qchg, _objData=UmlObjectData [id=4224, uuid={909716F1-245A-42ae-9D75-E906E4300337}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2080, _eaTypeName=Quality, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@2c9341]. +2024-09-08 15:10:00,533 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::Quality_ST_qchg, _objData=UmlObjectData [id=4225, uuid={63B2543A-C5CB-4e42-AE3C-D89A5D6092F8}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2080, _eaTypeName=Quality, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@2c9341]. +2024-09-08 15:10:00,533 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::Quality_SV, _objData=UmlObjectData [id=4226, uuid={25019ADF-C815-49c4-A33A-932B7EC41FD5}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2080, _eaTypeName=Quality, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@2c9341]. +2024-09-08 15:10:00,533 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::RangeConfig_CF_dchg, _objData=UmlObjectData [id=4227, uuid={7DC0C70D-A279-420a-A4C9-8EC142118EE0}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2091, _eaTypeName=RangeConfig, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@fee8e7]. +2024-09-08 15:10:00,533 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::TimeStamp_ST, _objData=UmlObjectData [id=4239, uuid={F793BE16-86C2-4d94-9076-25682F5C5800}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1756, _eaTypeName=TimeStamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1c222ae]. +2024-09-08 15:10:00,533 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::UNICODE_STRING255_DC, _objData=UmlObjectData [id=4240, uuid={6753F868-EDDC-4b85-BB22-F0505BC5964F}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1751, _eaTypeName=UNICODE_STRING255, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@153f538]. +2024-09-08 15:10:00,533 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::VISIBLE_STRING255_EX, _objData=UmlObjectData [id=4250, uuid={27C9FF27-9CA7-4829-BDDC-00EC8B17AA1F}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1752, _eaTypeName=VISIBLE_STRING255, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@14593bf]. +2024-09-08 15:10:00,533 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CommonDataClasses::BasePrimitiveCDC, _objData=UmlObjectData [id=4259, uuid={70157B11-247A-45cc-805C-2311A2402464}, since=null, name=dU, alias=, stereotype=, visibility=public, txtDescription='Textual description of the data using unicode characters. In case of LPL, the description refers to the logical node.', htmlDescription='

Textual description of the data using unicode characters. In case of LPL, the description refers to the logical node.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2207, _eaTypeName=UNICODE_STRING255_DC, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1bb8443]. +2024-09-08 15:10:00,533 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CommonDataClasses::BasePrimitiveCDC, _objData=UmlObjectData [id=4260, uuid={CB9D22B8-9916-44d7-AB74-A7E8767612D1}, since=null, name=cdcNs, alias=, stereotype=, visibility=public, txtDescription='Common data class name space. Scope of the standard specified with the attribute is CDC definition. For details see IEC 61850-7-1.', htmlDescription='

Common data class name space. Scope of the standard specified with the attribute is CDC definition. For details see IEC 61850-7-1.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2217, _eaTypeName=VISIBLE_STRING255_EX, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@176dcec]. +2024-09-08 15:10:00,533 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CommonDataClasses::BaseComposedCDC, _objData=UmlObjectData [id=4264, uuid={DA02A7F1-6B04-48c6-9571-CD453B3D1CED}, since=null, name=dU, alias=, stereotype=, visibility=public, txtDescription='See 'BasePrimitiveCDC.dU'.', htmlDescription='

See 'BasePrimitiveCDC.dU'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2207, _eaTypeName=UNICODE_STRING255_DC, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1bb8443]. +2024-09-08 15:10:00,533 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CommonDataClasses::BaseComposedCDC, _objData=UmlObjectData [id=4265, uuid={E299B631-8163-4dbd-B5B7-4C83B2303E19}, since=null, name=cdcNs, alias=, stereotype=, visibility=public, txtDescription='See 'BasePrimitiveCDC.cdcNs'.', htmlDescription='

See 'BasePrimitiveCDC.cdcNs'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2217, _eaTypeName=VISIBLE_STRING255_EX, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@176dcec]. +2024-09-08 15:10:00,533 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CommonDataClasses::SubstitutionCDC, _objData=UmlObjectData [id=4268, uuid={079F2530-74C1-408f-90FE-5292130BB10D}, since=null, name=subEna, alias=, stereotype=, visibility=public, txtDescription='Used to enable and disable substitution. If 'subEna'=true, the main data value and quality shall always be set to the same value as the attributes used to store the substitution data value and quality, as follows: +- for SPS, DPS, INS, ENS, SPC, DPC, INC, ENC: 'stVal' to 'subVal', 'q' to 'subQ'; +- for MV: 'instMag' to 'subMag', 'q' to 'subQ'; +- for CMV: 'instCVal' to 'subCVal', 'q' to 'subQ'; +- for BSC, ISC: 'valWTr' to 'subVal, 'q' to 'subQ'; and, +- for APC, BAC: 'mxVal' to 'subVal; 'q' to 'subQ'. +Otherwise, the data value shall be based on the process value.', htmlDescription='

Used to enable and disable substitution. If 'subEna'=true, the main data value and quality shall always be set to the same value as the attributes used to store the substitution data value and quality, as follows:

  • for SPS, DPS, INS, ENS, SPC, DPC, INC, ENC: 'stVal' to 'subVal', 'q' to 'subQ';
  • for MV: 'instMag' to 'subMag', 'q' to 'subQ';
  • for CMV: 'instCVal' to 'subCVal', 'q' to 'subQ';
  • for BSC, ISC: 'valWTr' to 'subVal, 'q' to 'subQ'; and,
  • for APC, BAC: 'mxVal' to 'subVal; 'q' to 'subQ'.

Otherwise, the data value shall be based on the process value.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2130, _eaTypeName=BOOLEAN_SV, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@17776a8]. +2024-09-08 15:10:00,533 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CommonDataClasses::SubstitutionCDC, _objData=UmlObjectData [id=4269, uuid={CC8123A6-0C41-47f6-B66F-FCB538FAC8C5}, since=null, name=subQ, alias=, stereotype=, visibility=public, txtDescription='Value used to substitute 'q'.', htmlDescription='

Value used to substitute 'q'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2193, _eaTypeName=Quality_SV, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1206beb]. +2024-09-08 15:10:00,533 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CommonDataClasses::SubstitutionCDC, _objData=UmlObjectData [id=4271, uuid={D0484592-24B0-4f23-BBA1-47AB63EDEB24}, since=null, name=blkEna, alias=, stereotype=, visibility=public, txtDescription='If true, 'q.operatorBlocked'=true, and the process value is no longer updated.', htmlDescription='

If true, 'q.operatorBlocked'=true, and the process value is no longer updated.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2122, _eaTypeName=BOOLEAN_BL, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@19b62af]. +2024-09-08 15:10:00,533 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCStatusInfo::DPS, _objData=UmlObjectData [id=4276, uuid={5BAF192B-559A-4c20-9FF4-15FDE99E17C8}, since=null, name=stVal, alias=, stereotype=, visibility=public, txtDescription='Status data value.', htmlDescription='

Status data value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2142, _eaTypeName=DpStatus_ST_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1a10787]. +2024-09-08 15:10:00,533 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCStatusInfo::DPS, _objData=UmlObjectData [id=4277, uuid={4442F743-451D-4ac2-8362-F2C586E6ACFC}, since=null, name=q, alias=, stereotype=, visibility=public, txtDescription='Quality of the data value 'stVal'.', htmlDescription='

Quality of the data value 'stVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2192, _eaTypeName=Quality_ST_qchg, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1d02175]. +2024-09-08 15:10:00,534 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCStatusInfo::DPS, _objData=UmlObjectData [id=4278, uuid={18394E45-54E3-4a63-85BB-63611B632E39}, since=null, name=t, alias=, stereotype=, visibility=public, txtDescription='Timestamp of the last change of the data value 'stVal' or quality 'q'.', htmlDescription='

Timestamp of the last change of the data value 'stVal' or quality 'q'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2206, _eaTypeName=TimeStamp_ST, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1fcd140]. +2024-09-08 15:10:00,534 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCStatusInfo::DPS, _objData=UmlObjectData [id=4279, uuid={F3D27F61-E9C4-4fc2-8AA6-662D6F85C26F}, since=null, name=subVal, alias=, stereotype=, visibility=public, txtDescription='Value used to substitute 'stVal'.', htmlDescription='

Value used to substitute 'stVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2143, _eaTypeName=DpStatus_SV, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1127a61, 2_taggedValues{moveAfter=wrongsubEna, secondTagName=secondTagValue}]. +2024-09-08 15:10:00,534 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCStatusInfo::ENS, _objData=UmlObjectData [id=4285, uuid={929E3BA6-6FC1-4cef-A0A3-AFC3397057FD}, since=null, name=stVal, alias=, stereotype=, visibility=public, txtDescription='Status data value.', htmlDescription='

Status data value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2149, _eaTypeName=EnumDA_ST_dchg_dupd, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@41089d]. +2024-09-08 15:10:00,534 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCStatusInfo::ENS, _objData=UmlObjectData [id=4286, uuid={973C16BC-0B6B-4787-9456-6A3C5D86703B}, since=null, name=q, alias=, stereotype=, visibility=public, txtDescription='Quality of the data value 'stVal'.', htmlDescription='

Quality of the data value 'stVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2192, _eaTypeName=Quality_ST_qchg, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1d02175]. +2024-09-08 15:10:00,534 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCStatusInfo::ENS, _objData=UmlObjectData [id=4287, uuid={A5C38D4B-AA0F-49b6-B868-27C0036F5163}, since=null, name=t, alias=, stereotype=, visibility=public, txtDescription='Timestamp of the last change of the data value 'stVal' or quality 'q'.', htmlDescription='

Timestamp of the last change of the data value 'stVal' or quality 'q'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2206, _eaTypeName=TimeStamp_ST, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1fcd140]. +2024-09-08 15:10:00,534 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCStatusInfo::ENS, _objData=UmlObjectData [id=4288, uuid={5895B5B3-C6B8-4321-BCF5-F17A3FE76872}, since=null, name=subVal, alias=, stereotype=, visibility=public, txtDescription='Value used to substitute 'stVal'.', htmlDescription='

Value used to substitute 'stVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2150, _eaTypeName=EnumDA_SV, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a068d1, 1_taggedValues{moveAfter=subEna}]. +2024-09-08 15:10:00,534 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCStatusInfo::EXY, _objData=UmlObjectData [id=6653, uuid={C45B42C1-992F-47fa-978C-87A6AFC4F512}, since=null, name=stVal, alias=, stereotype=, visibility=public, txtDescription='Status data value.', htmlDescription='

Status data value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2149, _eaTypeName=EnumDA_ST_dchg_dupd, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@41089d]. +2024-09-08 15:10:00,534 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCStatusInfo::EXY, _objData=UmlObjectData [id=6654, uuid={B5AC751A-B7F5-4848-8382-2072203D80D8}, since=null, name=q, alias=, stereotype=, visibility=public, txtDescription='Quality of the data value 'stVal'.', htmlDescription='

Quality of the data value 'stVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2192, _eaTypeName=Quality_ST_qchg, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1d02175]. +2024-09-08 15:10:00,534 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCStatusInfo::EXY, _objData=UmlObjectData [id=6655, uuid={CADD5FD8-0F27-4735-9D3F-4CE322754EA7}, since=null, name=t, alias=, stereotype=, visibility=public, txtDescription='Timestamp of the last change of the data value 'stVal' or quality 'q'.', htmlDescription='

Timestamp of the last change of the data value 'stVal' or quality 'q'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2206, _eaTypeName=TimeStamp_ST, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1fcd140]. +2024-09-08 15:10:00,534 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCStatusInfo::ACD, _objData=UmlObjectData [id=4302, uuid={22C4C4D2-4D10-4cad-8B98-2C5BB64AFEC2}, since=null, name=phsA, alias=, stereotype=, visibility=public, txtDescription='See 'ACT.phsA'.', htmlDescription='

See 'ACT.phsA'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2129, _eaTypeName=BOOLEAN_ST_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@28586]. +2024-09-08 15:10:00,534 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCStatusInfo::ACD, _objData=UmlObjectData [id=4304, uuid={78BD96A5-A044-4ee0-BDF2-6207BF482F50}, since=null, name=phsB, alias=, stereotype=, visibility=public, txtDescription='See 'ACT.phsB.', htmlDescription='

See 'ACT.phsB.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2129, _eaTypeName=BOOLEAN_ST_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@28586]. +2024-09-08 15:10:00,534 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCStatusInfo::HST, _objData=UmlObjectData [id=4328, uuid={CE8A66F5-D42E-4f4f-8087-F15C910C8D17}, since=null, name=hstVal, alias=, stereotype=, visibility=public, txtDescription='Array of data values for the histogram entries.', htmlDescription='

Array of data values for the histogram entries.

'], _isConst=false, _isStatic=false, _multiplicity=[1..*], _initValue=, _eaTypeId=2172, _eaTypeName=INT32_ST_dchg_dupd, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1ad8c79, 1 _constraints[ConstraintBuilder [_objData=UmlObjectData [id=1618, uuid=720fe959-ac7a-331d-b329-3988eb2bff13, since=null, name=maxIdx, alias=, stereotype=, visibility=public, txtDescription='maxPts-1', htmlDescription='

maxPts-1

'], _containingAttribute=hstVal, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=maxPts-1]]]. +2024-09-08 15:10:00,534 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCStatusInfo::HST, _objData=UmlObjectData [id=4331, uuid={B6E3704C-05B5-4c84-AEBB-CE3F2A3DB9F0}, since=null, name=numPts, alias=, stereotype=, visibility=public, txtDescription='Actual size of 'hstVal[]', 'hstRangeC[]'.', htmlDescription='

Actual size of 'hstVal[]', 'hstRangeC[]'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1...maxPts, _eaTypeId=2159, _eaTypeName=INT16U_CF, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1cb5951]. +2024-09-08 15:10:00,534 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCAnalogueInfo::HarmonicMeasurandCDC, _objData=UmlObjectData [id=4346, uuid={2B6FCE4E-A827-467a-B3FA-B2DA520A2B0E}, since=null, name=evalTm, alias=, stereotype=, visibility=public, txtDescription='Time window [ms] applied to interharmonic calculations. See 'numHar'.', htmlDescription='

Time window [ms] applied to interharmonic calculations. See 'numHar'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2160, _eaTypeName=INT16U_CF_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@5c30cc]. +2024-09-08 15:10:00,534 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCAnalogueInfo::HarmonicMeasurandCDC, _objData=UmlObjectData [id=4347, uuid={9CA4C0A7-81A8-4f80-A178-0E3461E29662}, since=null, name=smpRate, alias=, stereotype=, visibility=public, txtDescription='Determines the highest possible harmonic or interharmonic detectable, according to the sampling theorem; the minimum value is 'smpRate'=2 * 'frequency'. 'smpRate' is the number of samples per nominal period. In the case of a dc system, it is number of samples per s.', htmlDescription='

Determines the highest possible harmonic or interharmonic detectable, according to the sampling theorem; the minimum value is 'smpRate'=2 * 'frequency'. 'smpRate' is the number of samples per nominal period. In the case of a dc system, it is number of samples per s.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2165, _eaTypeName=INT32U_CF_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1fc37a]. +2024-09-08 15:10:00,534 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCAnalogueInfo::CMV, _objData=UmlObjectData [id=4374, uuid={163EDE34-974C-42be-93A3-DC32CCFC09F6}, since=null, name=rangeC, alias=, stereotype=, visibility=public, txtDescription='Configuration for 'range'.', htmlDescription='

Configuration for 'range'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2194, _eaTypeName=RangeConfig_CF_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@77a1ed]. +2024-09-08 15:10:00,534 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCAnalogueInfo::CMV, _objData=UmlObjectData [id=4375, uuid={64C3ECAC-5E57-4cbe-8469-96F13ACDF920}, since=null, name=rangeAngC, alias=, stereotype=, visibility=public, txtDescription='Configuration for 'rangeAng'.', htmlDescription='

Configuration for 'rangeAng'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2194, _eaTypeName=RangeConfig_CF_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@77a1ed]. +2024-09-08 15:10:00,535 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCAnalogueInfo::HWYE, _objData=UmlObjectData [id=4405, uuid={3BE5F231-7684-425e-A062-905D40593DE8}, since=null, name=phsAHar, alias=, stereotype=, visibility=public, txtDescription='Array of harmonic and subharmonics, or interharmonic values related to phase A.', htmlDescription='

Array of harmonic and subharmonics, or interharmonic values related to phase A.

'], _isConst=false, _isStatic=false, _multiplicity=[1..*], _initValue=, _eaTypeId=2266, _eaTypeName=CMV, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@ec1f8, 2 _constraints[ConstraintBuilder [_objData=UmlObjectData [id=1640, uuid=2d5f2699-414e-322c-ac9b-12faab7bf7a1, since=null, name=maxIdx, alias=, stereotype=, visibility=public, txtDescription='numHar', htmlDescription='

numHar

'], _containingAttribute=phsAHar, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=numHar], ConstraintBuilder [_objData=UmlObjectData [id=1641, uuid=9681cda7-090b-3bd8-acfe-51a75f594dfa, since=null, name=minIdx, alias=, stereotype=, visibility=public, txtDescription='0', htmlDescription='

0

'], _containingAttribute=phsAHar, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=0]]]. +2024-09-08 15:10:00,535 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCAnalogueInfo::HWYE, _objData=UmlObjectData [id=4411, uuid={E41EFDD0-9E50-45f3-B665-D9884218AC67}, since=null, name=angRef, alias=, stereotype=, visibility=public, txtDescription='Angle reference, indicating the quantity that is used as reference for the phase angles {'phsAHar', 'phsBHar', 'phsCHar', 'neutHar', 'netHar', 'resHar'}[i].ang', instead of their own 'angRef'. For the indicated quantity, the fundamental frequency (index = 1) is used as reference by convention.', htmlDescription='

Angle reference, indicating the quantity that is used as reference for the phase angles {'phsAHar', 'phsBHar', 'phsCHar', 'neutHar', 'netHar', 'resHar'}[i].ang', instead of their own 'angRef'. For the indicated quantity, the fundamental frequency (index = 1) is used as reference by convention.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2183, _eaTypeName=PhaseAngleReference_CF_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1a794e5, 1_taggedValues{moveAfter=evalTm}]. +2024-09-08 15:10:00,535 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCControl::ControllableCDC, _objData=UmlObjectData [id=4417, uuid={47B971C5-D6FE-4d4d-A1B9-DAD685D360FE}, since=null, name=opOk, alias=, stereotype=, visibility=public, txtDescription='True indicates that an operate command for a controllable data object has been evaluated and accepted.', htmlDescription='

True indicates that an operate command for a controllable data object has been evaluated and accepted.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2125, _eaTypeName=BOOLEAN_OR_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1afc369]. +2024-09-08 15:10:00,535 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCControl::ENC, _objData=UmlObjectData [id=4463, uuid={9C28209D-6C12-48ff-B6AD-C1817BAAFC47}, since=null, name=stVal, alias=, stereotype=, visibility=public, txtDescription='Status data value.', htmlDescription='

Status data value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2148, _eaTypeName=EnumDA_ST_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@beb599]. +2024-09-08 15:10:00,535 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCControl::ENC, _objData=UmlObjectData [id=4467, uuid={938DEDD5-1A89-4d8f-84B9-3BD409127DC1}, since=null, name=subVal, alias=, stereotype=, visibility=public, txtDescription='Value used to substitute 'stVal'.', htmlDescription='

Value used to substitute 'stVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2150, _eaTypeName=EnumDA_SV, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a068d1, 1_taggedValues{moveAfter=subEna}]. +2024-09-08 15:10:00,537 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCControl::ENC, _objData=UmlObjectData [id=4472, uuid={3AE4A32F-B7CE-4d34-96B9-72D29B257EC1}, since=null, name=ctlVal, alias=, stereotype=, visibility=public, txtDescription='Service parameter that determines the control activity, containing the new value for 'stVal'.', htmlDescription='

Service parameter that determines the control activity, containing the new value for 'stVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1855, _eaTypeName=EnumDA, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1baf4f0]. +2024-09-08 15:10:00,537 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCControl::BAC, _objData=UmlObjectData [id=4522, uuid={88F3132A-BE85-476d-A4AB-2F929A4B1EBA}, since=null, name=mxVal, alias=, stereotype=, visibility=public, txtDescription='See 'APC.mxVal'.', htmlDescription='

See 'APC.mxVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2116, _eaTypeName=AnalogueValue_MX_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@c7b4de]. +2024-09-08 15:10:00,537 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCControl::BAC, _objData=UmlObjectData [id=4538, uuid={0E7EE54F-A469-4769-AB77-ECC48A74EF0E}, since=null, name=ctlVal, alias=, stereotype=, visibility=public, txtDescription='Service parameter that determines the control activity, containing the desired change for 'mxVal'. If 'persistent'=false, 'ctlVal'='higher'|'lower' refers to one step in 'mxVal'.', htmlDescription='

Service parameter that determines the control activity, containing the desired change for 'mxVal'. If 'persistent'=false, 'ctlVal'='higher'|'lower' refers to one step in 'mxVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1760, _eaTypeName=BsControl, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@19afc07]. +2024-09-08 15:10:00,537 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCDescription::LPL, _objData=UmlObjectData [id=4639, uuid={5F84B791-8DB9-403b-B63E-B8E33716E74A}, since=null, name=ldNs, alias=, stereotype=, visibility=public, txtDescription='Logical device name space. Scope of the standard specified with the attribute is LN class definition (CDC definition by reference), for example "IEC 61850-7-4:2010". For details see IEC 61850-7-1.', htmlDescription='

Logical device name space. Scope of the standard specified with the attribute is LN class definition (CDC definition by reference), for example "IEC 61850-7-4:2010". For details see IEC 61850-7-1.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2217, _eaTypeName=VISIBLE_STRING255_EX, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@176dcec]. +2024-09-08 15:10:00,537 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCDescription::LPL, _objData=UmlObjectData [id=4640, uuid={AAD5655E-83DF-4906-9302-14396644A3AF}, since=null, name=lnNs, alias=, stereotype=, visibility=public, txtDescription='Logical node name space. Scope of the standard specified with the attribute is LN class definition (CDC definition by reference). For details see IEC 61850-7-1.', htmlDescription='

Logical node name space. Scope of the standard specified with the attribute is LN class definition (CDC definition by reference). For details see IEC 61850-7-1.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2217, _eaTypeName=VISIBLE_STRING255_EX, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@176dcec]. +2024-09-08 15:10:00,537 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=DerivedDAs::BehaviourMode, _objData=UmlObjectData [id=5360, uuid={9ADCD45E-59E9-45ab-AC04-7BCAD34EE103}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2564, _eaTypeName=BehaviourModeKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@b48321]. +2024-09-08 15:10:00,537 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=DerivedDAs::CalcMethod, _objData=UmlObjectData [id=5363, uuid={5FCE2C6C-5EFA-4fe3-88D2-F747922B4960}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2567, _eaTypeName=CalcMethodKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@267862]. +2024-09-08 15:10:00,537 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=DerivedDAs::Health, _objData=UmlObjectData [id=5372, uuid={D08C43FA-8B3B-4128-AC21-F8A40BC57CE0}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2568, _eaTypeName=HealthKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1248c21]. +2024-09-08 15:10:00,537 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LogicalNodes::DomainLN, _objData=UmlObjectData [id=5404, uuid={BD8EED96-B614-4741-BE24-E8A509A772CF}, since=null, name=NamPlt, alias=, stereotype=, visibility=public, txtDescription='Name plate of the logical node.', htmlDescription='

Name plate of the logical node.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2314, _eaTypeName=LPL, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@14c508a]. +2024-09-08 15:10:00,537 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LogicalNodes::DomainLN, _objData=UmlObjectData [id=5406, uuid={02A6EFA0-CD2A-44ed-99B7-4440CDC49598}, since=null, name=Health, alias=, stereotype=, visibility=public, txtDescription=''Health.stVal' reflects the state of the logical node related hardware and software. More detailed information related to the source of the problem may be provided by specific attribute of the logical node.', htmlDescription='

'Health.stVal' reflects the state of the logical node related hardware and software. More detailed information related to the source of the problem may be provided by specific attribute of the logical node.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2712, _eaTypeName=ENSHealth, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1e202ad]. +2024-09-08 15:10:00,537 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LogicalNodes::DomainLN, _objData=UmlObjectData [id=5408, uuid={F3F9E7F6-D65F-49b8-A25D-A6D5B8129BB1}, since=null, name=Mod, alias=, stereotype=, visibility=public, txtDescription=''DomainLN.Mod.ctlVal' is used by operator to initiate the change in the operating mode of the domain logical node. The resulting operating mode is 'DomainLN.Mod.stVal'. Processing of the quality status (q) of the received data is the prerequisite for correct interpretation of 'DomainLN.Mod.stVal'. See statechart diagram 'DomainLN.behStateMachine'.', htmlDescription='

'DomainLN.Mod.ctlVal' is used by operator to initiate the change in the operating mode of the domain logical node. The resulting operating mode is 'DomainLN.Mod.stVal'. Processing of the quality status (q) of the received data is the prerequisite for correct interpretation of 'DomainLN.Mod.stVal'. See statechart diagram 'DomainLN.behStateMachine'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2673, _eaTypeName=ENCBehaviourMode, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@72da34]. +2024-09-08 15:10:00,537 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LogicalNodes::DomainLN, _objData=UmlObjectData [id=6644, uuid={7D68988B-2556-4fad-AF56-2801E5AB7EE7}, since=null, name=CntRs, alias=, stereotype=, visibility=public, txtDescription='Dumb DO, of type CMV for testing inheriting statistics-derived presence conditions.', htmlDescription='

Dumb DO, of type CMV for testing inheriting statistics-derived presence conditions.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2266, _eaTypeName=CMV, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@ec1f8]. +2024-09-08 15:10:00,537 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LogicalNodes::StatisticsLN, _objData=UmlObjectData [id=5411, uuid={AD8AD979-4412-496c-88CF-BC2F0016F824}, since=null, name=ClcExp, alias=, stereotype=, visibility=public, txtDescription='If 'ClcExp.stVal=true', the calculation period of a statistical logical node has expired.', htmlDescription='

If 'ClcExp.stVal=true', the calculation period of a statistical logical node has expired.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2721, _eaTypeName=SPSTransient, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@10c2d26]. +2024-09-08 15:10:00,537 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LogicalNodes::StatisticsLN, _objData=UmlObjectData [id=5413, uuid={1FE86953-F8BC-4e0b-A301-DD037C26CD2D}, since=null, name=ClcMth, alias=, stereotype=, visibility=public, txtDescription=''ClcMth.setVal' is the kind of statistical calculation, specifying how the data attributes that represent analogue values have been calculated. The calculation method shall be the same for all data objects of the logical node instance. +If the value is 'PEAK_FUNDAMENTAL', angle may be present in a data object of complex measured value type (CMV, such as in WYE, DEL, etc.), otherwise angle is not used (if ‘TRUE_RMS’ and ‘RMS_FUNDAMENTAL’). +The dependent data objects may be meaningless in case the value of 'ClcMth' is 'unspecified'.', htmlDescription='

'ClcMth.setVal' is the kind of statistical calculation, specifying how the data attributes that represent analogue values have been calculated. The calculation method shall be the same for all data objects of the logical node instance.

If the value is 'PEAK_FUNDAMENTAL', angle may be present in a data object of complex measured value type (CMV, such as in WYE, DEL, etc.), otherwise angle is not used (if ‘TRUE_RMS’ and ‘RMS_FUNDAMENTAL’).

The dependent data objects may be meaningless in case the value of 'ClcMth' is 'unspecified'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2677, _eaTypeName=ENGCalcMethod, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1147d0]. +2024-09-08 15:10:00,537 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LogicalNodes::EquipmentInterfaceLN, _objData=UmlObjectData [id=5423, uuid={9D014151-D573-4c4e-A898-CE2DA3B5BBBA}, since=null, name=EEHealthAlmClc, alias=, stereotype=, visibility=public, txtDescription='(too long name) State of external (electrical, mechanical or communication) equipment to which the logical node is associated.', htmlDescription='

(too long name) State of external (electrical, mechanical or communication) equipment to which the logical node is associated.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2712, _eaTypeName=ENSHealth, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1e202ad]. +2024-09-08 15:10:00,537 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupL::KXYZ, _objData=UmlObjectData [id=6643, uuid={5F6F358B-D118-4f13-B9C6-A2B2F099FAAD}, since=null, name=TotW, alias=, stereotype=, visibility=public, txtDescription=''TotW.mag.f' is the total real power in a three-phase circuit [W].', htmlDescription='

'TotW.mag.f' is the total real power in a three-phase circuit [W].

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2266, _eaTypeName=CMV, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@ec1f8]. +2024-09-08 15:10:00,537 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupL::KXYZ, _objData=UmlObjectData [id=6662, uuid={14E48849-D4A8-4f20-943F-FE6D90B87DA5}, since=null, name=aDummyAlm, alias=, stereotype=, visibility=public, txtDescription='Whatever (testing lower case DO name).', htmlDescription='

Whatever (testing lower case DO name).

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2266, _eaTypeName=CMV, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@ec1f8]. +2024-09-08 15:10:00,537 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupL::KXYZ, _objData=UmlObjectData [id=6705, uuid={830D0CE1-6AF2-4651-9D80-CBB0ADE6102C}, since=null, name=WrongA, alias=, stereotype=, visibility=public, txtDescription='Misused ENS (or ENG or ENC). Use derived CDC instead.', htmlDescription='

Misused ENS (or ENG or ENC). Use derived CDC instead.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2250, _eaTypeName=ENS, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@79c292]. +2024-09-08 15:10:00,537 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupL::KXYZ, _objData=UmlObjectData [id=6706, uuid={BCF2F02E-3F65-4819-9456-55527BBD0571}, since=null, name=CorrectA, alias=, stereotype=, visibility=public, txtDescription='Correctly using derived CDC for enums.', htmlDescription='

Correctly using derived CDC for enums.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=3073, _eaTypeName=ENSEnumDA, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1c6e487]. +2024-09-08 15:10:00,538 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupL::LPHD, _objData=UmlObjectData [id=5434, uuid={2B188929-F3F0-481e-81FA-33B1F6DDFABE}, since=null, name=PhyHealth, alias=, stereotype=, visibility=public, txtDescription=''PhyHealth.stVal' reflects the state of the physical device related hardware and software.', htmlDescription='

'PhyHealth.stVal' reflects the state of the physical device related hardware and software.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2712, _eaTypeName=ENSHealth, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1e202ad]. +2024-09-08 15:10:00,538 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupL::LPHD, _objData=UmlObjectData [id=5445, uuid={33F4BBA2-6001-4f56-B6D7-7B166C646FD2}, since=null, name=RsStatAlmMthClc, alias=, stereotype=, visibility=public, txtDescription='(too long name) 'RsStat.ctlVal=true' initiates the resetting of the IED statistics.', htmlDescription='

(too long name) 'RsStat.ctlVal=true' initiates the resetting of the IED statistics.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2720, _eaTypeName=SPCTransient, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@185cb26]. +2024-09-08 15:10:00,538 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupL::LPHD, _objData=UmlObjectData [id=6704, uuid={F8B2B570-FB4D-461e-AFBB-76B285FC176A}, since=null, name=StatAlmMthClc, alias=, stereotype=, visibility=public, txtDescription='(too long name) 'RsStat.ctlVal=true' initiates the resetting of the IED statistics.', htmlDescription='

(too long name) 'RsStat.ctlVal=true' initiates the resetting of the IED statistics.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2721, _eaTypeName=SPSTransient, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@10c2d26]. +2024-09-08 15:10:00,538 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupL::LLN0, _objData=UmlObjectData [id=5447, uuid={ABAE4652-FBC7-4033-A5F3-F34D0A7D6805}, since=null, name=NamPlt, alias=, stereotype=, visibility=public, txtDescription='Name plate of the logical device.', htmlDescription='

Name plate of the logical device.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2314, _eaTypeName=LPL, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@14c508a]. +2024-09-08 15:10:00,538 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupL::LLN0, _objData=UmlObjectData [id=5448, uuid={757A91B5-C931-43d4-8660-F0918821C72E}, since=null, name=Beh, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2707, _eaTypeName=ENSBehaviourMode, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@c4711c]. +2024-09-08 15:10:00,538 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupL::LLN0, _objData=UmlObjectData [id=5449, uuid={9D65803B-3C9E-4491-B2F7-46597B3A2963}, since=null, name=Health, alias=, stereotype=, visibility=public, txtDescription=''Health.stVal' reflects the state of the logical device related hardware and software. It is derived from the worst (most critical) value of the health attribute of all the domain logical nodes contained in the logical device: 'Health.stVal' = max('DomainLN[i].Health.stVal').', htmlDescription='

'Health.stVal' reflects the state of the logical device related hardware and software. It is derived from the worst (most critical) value of the health attribute of all the domain logical nodes contained in the logical device: 'Health.stVal' = max('DomainLN[i].Health.stVal').

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2712, _eaTypeName=ENSHealth, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1e202ad]. +2024-09-08 15:10:00,538 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupC::CALH, _objData=UmlObjectData [id=5599, uuid={1D7F87B8-C884-44eb-9055-53ED045B2C1C}, since=null, name=GrAlm, alias=, stereotype=, visibility=public, txtDescription='If 'GrAlm.stVal=true', a new group alarm has been activated by one of individual alarms. Group alarm summarises different alarms, as assigned via configuration.', htmlDescription='

If 'GrAlm.stVal=true', a new group alarm has been activated by one of individual alarms. Group alarm summarises different alarms, as assigned via configuration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2248, _eaTypeName=DPS, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@172ed45]. +2024-09-08 15:10:00,538 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupC::CALH, _objData=UmlObjectData [id=5600, uuid={0C2C7397-C0B9-4d43-8E0B-31F71AA4EA5A}, since=null, name=GrWrn, alias=, stereotype=, visibility=public, txtDescription='If 'GrWrn.stVal=true', a new group warning has been activated by one of individual warnings. Group warning summarises different warnings, as assigned via configuration.', htmlDescription='

If 'GrWrn.stVal=true', a new group warning has been activated by one of individual warnings. Group warning summarises different warnings, as assigned via configuration.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2248, _eaTypeName=DPS, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@172ed45]. +2024-09-08 15:10:00,538 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupC::CALH, _objData=UmlObjectData [id=6657, uuid={E31E67B3-BB2E-4eca-8A24-56CB50965FEF}, since=null, name=ModBeh, alias=, stereotype=, visibility=public, txtDescription='If 'GrWrn.stVal=true', a new group warning has been activated by one of individual warnings. Group warning summarises different warnings, as assigned via configuration.', htmlDescription='

If 'GrWrn.stVal=true', a new group warning has been activated by one of individual warnings. Group warning summarises different warnings, as assigned via configuration.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=3039, _eaTypeName=ERYBehaviourMode, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@6044d7]. +2024-09-08 15:10:00,538 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupG::GGIO, _objData=UmlObjectData [id=5775, uuid={870B8E8E-1CE1-48a5-B4DF-5EDF733EF7FD}, since=null, name=EEHealth, alias=, stereotype=, visibility=public, txtDescription=''EEHealth.stVal' reflects the state of external (primary) equipment to which the logical node is associated.', htmlDescription='

'EEHealth.stVal' reflects the state of external (primary) equipment to which the logical node is associated.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2712, _eaTypeName=ENSHealth, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1e202ad]. +2024-09-08 15:10:00,538 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupG::GGIO, _objData=UmlObjectData [id=5782, uuid={A3049550-4E72-4228-8BD0-D2ECA1D9305C}, since=null, name=AnIn, alias=, stereotype=, visibility=public, txtDescription=''AnIn.mag.f' is the generic analogue input n.', htmlDescription='

'AnIn.mag.f' is the generic analogue input n.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2266, _eaTypeName=CMV, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@ec1f8]. +2024-09-08 15:10:00,538 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupM::MMXU, _objData=UmlObjectData [id=6036, uuid={AB0A2202-6CAE-4f4c-9ADE-E1367D015FD1}, since=null, name=TotW, alias=, stereotype=, visibility=public, txtDescription=''TotW.mag.f' is the total real power in a three-phase circuit [W].', htmlDescription='

'TotW.mag.f' is the total real power in a three-phase circuit [W].

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2266, _eaTypeName=CMV, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@ec1f8]. +2024-09-08 15:10:00,538 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupM::MMXU, _objData=UmlObjectData [id=6044, uuid={70F20DF1-D205-419a-A546-B00A930F4EF1}, since=null, name=A, alias=, stereotype=, visibility=public, txtDescription=''A' holds the currents for three phases.', htmlDescription='

'A' holds the currents for three phases.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2273, _eaTypeName=HWYE, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1445d7f]. +2024-09-08 15:10:00,538 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupM::MMXU, _objData=UmlObjectData [id=6645, uuid={4261E17B-01F7-4d5c-AD2B-D01366C474C1}, since=null, name=Desc, alias=, stereotype=, visibility=public, txtDescription='Dummy native DO of non-statistical type.', htmlDescription='

Dummy native DO of non-statistical type.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2255, _eaTypeName=HST, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1a947fe]. +2024-09-08 15:10:00,538 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupP::PDIF, _objData=UmlObjectData [id=6139, uuid={6EDDE740-6CB2-49bd-B85C-F85BBC4D3339}, since=null, name=Str, alias=, stereotype=, visibility=public, txtDescription='If 'Str.general=true', a fault has been detected.', htmlDescription='

If 'Str.general=true', a fault has been detected.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2252, _eaTypeName=ACD, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1359ed8]. +2024-09-08 15:10:00,538 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupP::PDIF, _objData=UmlObjectData [id=6140, uuid={83CA9289-614E-43d2-B931-EDAA62BA0C42}, since=null, name=Op, alias=, stereotype=, visibility=public, txtDescription='If 'Op.general=true', the function decided to trip. The trip itself is issued by PTRC.', htmlDescription='

If 'Op.general=true', the function decided to trip. The trip itself is issued by PTRC.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2671, _eaTypeName=ACTTransient, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@16be40f]. +2024-09-08 15:10:00,538 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupP::PDIS, _objData=UmlObjectData [id=6156, uuid={0D273A67-FAF9-482f-8CB2-72A7096B42D7}, since=null, name=Str, alias=, stereotype=, visibility=public, txtDescription='If 'Str.general=true', a distance fault has been detected.', htmlDescription='

If 'Str.general=true', a distance fault has been detected.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2252, _eaTypeName=ACD, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1359ed8]. +2024-09-08 15:10:00,538 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupP::PDIS, _objData=UmlObjectData [id=6157, uuid={6F969465-C33F-4910-868B-353A7D2C9A2D}, since=null, name=Op, alias=, stereotype=, visibility=public, txtDescription='If 'Op.general=true', the function decided to trip due to distance fault. The trip itself is issued by PTRC.', htmlDescription='

If 'Op.general=true', the function decided to trip due to distance fault. The trip itself is issued by PTRC.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2671, _eaTypeName=ACTTransient, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@16be40f]. +2024-09-08 15:10:00,538 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupR::RDIR, _objData=UmlObjectData [id=6339, uuid={969DA200-CE87-48c0-9C84-E86508A81D4B}, since=null, name=Dir, alias=, stereotype=, visibility=public, txtDescription='If 'Dir.general=true', a fault has been detected. 'Dir.dirGeneral' is the direction of the fault.', htmlDescription='

If 'Dir.general=true', a fault has been detected. 'Dir.dirGeneral' is the direction of the fault.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2252, _eaTypeName=ACD, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1359ed8]. +2024-09-08 15:10:00,538 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupR::RDIR, _objData=UmlObjectData [id=6658, uuid={FD102340-AB93-4aec-A54A-6DA7F5AC4487}, since=null, name=TotW, alias=, stereotype=, visibility=public, txtDescription=''TotW.mag.f' is the total real power in a three-phase circuit [W].', htmlDescription='

'TotW.mag.f' is the total real power in a three-phase circuit [W].

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2721, _eaTypeName=SPSTransient, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@10c2d26]. +2024-09-08 15:10:00,538 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupZ::ZAXN, _objData=UmlObjectData [id=6638, uuid={1BB69D0F-6A5C-42a9-BA05-66201FD25912}, since=null, name=Vol, alias=, stereotype=, visibility=public, txtDescription=''Vol.mag.f' is the non-phase-related or DC voltage of the auxiliary network.', htmlDescription='

'Vol.mag.f' is the non-phase-related or DC voltage of the auxiliary network.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2266, _eaTypeName=CMV, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@ec1f8]. +2024-09-08 15:10:00,538 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupZ::ZAXN, _objData=UmlObjectData [id=6691, uuid={D79127BE-EF55-4d56-A80C-A80263BAFAE0}, since=null, name=Mat, alias=, stereotype=, visibility=public, txtDescription='For testing usage of class from other namespace.', htmlDescription='

For testing usage of class from other namespace.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=3060, _eaTypeName=ENSMaterial, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1be656f]. +2024-09-08 15:10:00,538 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupZ::ZAXN, _objData=UmlObjectData [id=6692, uuid={F095BA66-9343-47d5-9E9E-D3A6CD6DCAE2}, since=null, name=MatCtl, alias=, stereotype=, visibility=public, txtDescription='One more, for testing usage of class from other namespace.', htmlDescription='

One more, for testing usage of class from other namespace.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=3059, _eaTypeName=ENCMaterial, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1dc67c2]. +2024-09-08 15:10:00,539 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupZ::ZAXN, _objData=UmlObjectData [id=6693, uuid={95F61B3E-0763-4162-AD6C-4769946A79EC}, since=null, name=Oth, alias=, stereotype=, visibility=public, txtDescription='One more, for testing usage of class from other namespace and also underlying type (where initially 'val' defined as public).', htmlDescription='

One more, for testing usage of class from other namespace and also underlying type (where initially 'val' defined as public).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=3062, _eaTypeName=ENSOther, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1af3c0]. +2024-09-08 15:10:00,539 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=DerivedDAs_7_420::Material, _objData=UmlObjectData [id=6689, uuid={47188E9E-FFB6-4e55-A604-306AF82D676C}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=3053, _eaTypeName=MaterialKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@2bd765]. +2024-09-08 15:10:00,539 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=DerivedDAs_7_420::Material_control, _objData=UmlObjectData [id=6713, uuid={6C2F0C32-0A2D-4e50-AAC2-A5830B1AB795}, since=null, name=ctlVal, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=3087, _eaTypeName=MaterialTransitionKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a2da20]. +2024-09-08 15:10:00,539 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=DerivedDAs_7_420::Other, _objData=UmlObjectData [id=6690, uuid={F04B56ED-9BE4-4ac4-8482-893675D15119}, since=null, name=val, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=3054, _eaTypeName=OtherKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@11bdc27]. +2024-09-08 15:10:00,539 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Ext1::Apple, _objData=UmlObjectData [id=3286, uuid={A7C8D399-77B9-43bf-81E0-5CD276C86FE6}, since=null, name=shouldNotBeEnum, alias=, stereotype=enum, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a035a0]. +2024-09-08 15:10:00,539 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Ext1::Pear, _objData=UmlObjectData [id=3287, uuid={6AE12819-CBFF-4c5c-A47A-AA188AD4F76C}, since=null, name=typeIsInformative, alias=, stereotype=European, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1532, _eaTypeName=SomeSimpleType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1c1a03d]. +2024-09-08 15:10:00,539 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Package with space::My class, _objData=UmlObjectData [id=3304, uuid={612A61C0-C06B-425e-A24C-2581B6D63928}, since=null, name=_attr, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=640, _eaTypeName=AbsoluteDateTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@74868d, 1 _constraints[ConstraintBuilder [_objData=UmlObjectData [id=2061, uuid=7d2d346d-0f9c-3a65-93d3-09e5415a6f1d, since=null, name= attr-constraint, alias=, stereotype=, visibility=public, txtDescription='lala', htmlDescription='

lala

'], _containingAttribute=_attr, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=lala]]]. +2024-09-08 15:10:00,539 [main] INFO EaModelBuilder - assigning type for operations' parameters and exceptions ... +2024-09-08 15:10:00,539 [main] TRACE ParameterBuilder - Found type 'BasePower' for array param of operation PowerSystemResource.GetWhatevers. +2024-09-08 15:10:00,539 [main] TRACE ParameterBuilder - Type set for parameter ParameterBuilder [_containingOperation=GetWhatevers, _position=0, _kind=ARRAY, _objData=UmlObjectData [id=262, uuid={D8176E9D-04E7-4fae-871C-213740261833}, since=null, name=multiples, alias=parAlias, stereotype=parStereo1, parStereo2, visibility=public, txtDescription='Doc is present (but does not end with ".")', htmlDescription='

Doc is present (but does not end with ".")

'], _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@124411f, _eaTypeName=BasePower[], _eaTypeIdAsString=0]. +2024-09-08 15:10:00,540 [main] TRACE ParameterBuilder - Type set for parameter ParameterBuilder [_containingOperation=setSomething, _position=0, _kind=SIMPLE, _objData=UmlObjectData [id=264, uuid={568C59BD-0A22-4219-A56C-793C82CCD0B3}, since=null, name=name, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@e6aa2, _eaTypeName=String, _eaTypeIdAsString=637]. +2024-09-08 15:10:00,540 [main] TRACE OperationBuilder - Found type 'Unit' for exception of operation PowerSystemResource.setSomething. +2024-09-08 15:10:00,541 [main] TRACE ParameterBuilder - Type set for parameter ParameterBuilder [_containingOperation=foo, _position=1, _kind=SIMPLE, _objData=UmlObjectData [id=267, uuid={6BD64A42-70E1-49ed-8B76-8D80ECDB74DD}, since=null, name=par2, alias=, stereotype=deprecated, visibility=public, txtDescription='Doc OK.', htmlDescription='

Doc OK.

'], _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@190a65e, _eaTypeName=float, _eaTypeIdAsString=615]. +2024-09-08 15:10:00,541 [main] TRACE ParameterBuilder - Type set for parameter ParameterBuilder [_containingOperation=bar, _position=1, _kind=SIMPLE, _objData=UmlObjectData [id=271, uuid={E8047328-87C3-481b-998B-FBFFE7B4CFD0}, since=null, name=par2, alias=, stereotype=, visibility=public, txtDescription='starting with lower case, missing "." at the end', htmlDescription='

starting with lower case, missing "." at the end

'], _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@190a65e, _eaTypeName=float, _eaTypeIdAsString=615]. +2024-09-08 15:10:00,541 [main] TRACE OperationBuilder - Found type 'Voltage' for return parameter of operation VoltageLevel.getVoltage. +2024-09-08 15:10:00,541 [main] TRACE OperationBuilder - Return type set for OperationBuilder [_containingClass=VoltageLevel, _objData=UmlObjectData [id=3, uuid={4334506A-A0EC-4e66-AD2B-2DBEBB2B1561}, since=null, name=getVoltage, alias=, stereotype=, visibility=public, txtDescription='Third and last dumb operation for doc generation testing.', htmlDescription='

Third and last dumb operation for doc generation testing.

'], _abstract=false, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@150c158, _eaReturnTypeId=602, _eaReturnTypeName=Voltage]. +2024-09-08 15:10:00,541 [main] TRACE OperationBuilder - Found type 'AttrValueKind' for return parameter of operation AttrValue.getType. +2024-09-08 15:10:00,541 [main] TRACE OperationBuilder - Return type set for OperationBuilder [_containingClass=AttrValue, _objData=UmlObjectData [id=7, uuid={AE278709-6801-41ab-B747-96509456D69B}, since=null, name=getType, alias=, stereotype=, visibility=public, txtDescription='Returns the type of this value.', htmlDescription='

Returns the type of this value.

'], _abstract=true, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@164985f, _eaReturnTypeId=1714, _eaReturnTypeName=AttrValueKind]. +2024-09-08 15:10:00,541 [main] TRACE OperationBuilder - Found type 'FCDAReference' for return parameter of operation AttrDefinition.getFcdaRef. +2024-09-08 15:10:00,541 [main] TRACE OperationBuilder - Return type set for OperationBuilder [_containingClass=AttrDefinition, _objData=UmlObjectData [id=46, uuid={C67D899D-E6F2-43a4-A6F8-1ECB42761E65}, since=null, name=getFcdaRef, alias=, stereotype=, visibility=public, txtDescription='Returns attribute's FCDAReference.', htmlDescription='

Returns attribute's FCDAReference.

'], _abstract=false, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@13af739, _eaReturnTypeId=1703, _eaReturnTypeName=FCDAReference]. +2024-09-08 15:10:00,541 [main] TRACE OperationBuilder - Found type 'AttrValueKind' for return parameter of operation AttrDefinition.getValType. +2024-09-08 15:10:00,541 [main] TRACE OperationBuilder - Return type set for OperationBuilder [_containingClass=AttrDefinition, _objData=UmlObjectData [id=47, uuid={F41461CE-0224-4867-9FC5-05D412807A13}, since=null, name=getValType, alias=, stereotype=, visibility=public, txtDescription='Returns type of attribute's value.', htmlDescription='

Returns type of attribute's value.

'], _abstract=false, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@164985f, _eaReturnTypeId=1714, _eaReturnTypeName=AttrValueKind]. +2024-09-08 15:10:00,541 [main] TRACE OperationBuilder - Found type 'FCDAReference' for return parameter of operation NamedAttrValue.getFcdaRef. +2024-09-08 15:10:00,541 [main] TRACE OperationBuilder - Return type set for OperationBuilder [_containingClass=NamedAttrValue, _objData=UmlObjectData [id=48, uuid={129BA9AB-F84D-4f61-863F-E9AD33EC1D36}, since=null, name=getFcdaRef, alias=, stereotype=, visibility=public, txtDescription='Returns attribute's FCDAReference.', htmlDescription='

Returns attribute's FCDAReference.

'], _abstract=false, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@13af739, _eaReturnTypeId=1703, _eaReturnTypeName=FCDAReference]. +2024-09-08 15:10:00,541 [main] TRACE OperationBuilder - Found type 'AttrValue' for return parameter of operation NamedAttrValue.getVal. +2024-09-08 15:10:00,541 [main] TRACE OperationBuilder - Return type set for OperationBuilder [_containingClass=NamedAttrValue, _objData=UmlObjectData [id=49, uuid={91C84065-1E39-4d4a-8927-B426FCFEB686}, since=null, name=getVal, alias=, stereotype=, visibility=public, txtDescription='Returns attribute's value.', htmlDescription='

Returns attribute's value.

'], _abstract=false, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1fe3806, _eaReturnTypeId=1715, _eaReturnTypeName=AttrValue]. +2024-09-08 15:10:00,541 [main] TRACE OperationBuilder - Found type 'AccessView' for return parameter of operation Authentication.getViews. +2024-09-08 15:10:00,541 [main] TRACE OperationBuilder - Return type set for OperationBuilder [_containingClass=Authentication, _objData=UmlObjectData [id=52, uuid={3DD3175C-C019-4f8a-A82F-1641C5702FFD}, since=null, name=getViews, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _abstract=false, _static=false, _final=false, _kind=OP_RET_ARRAY, _returnType=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@136e4cd, _eaReturnTypeId=1774, _eaReturnTypeName=AccessView]. +2024-09-08 15:10:00,541 [main] TRACE ParameterBuilder - Type set for parameter ParameterBuilder [_containingOperation=ope-ration, _position=0, _kind=SIMPLE, _objData=UmlObjectData [id=2063, uuid={B9E929B4-3E5D-4b39-83CB-4EFAC956A019}, since=null, name=other param, alias=, stereotype=, visibility=public, txtDescription='Doc for parameter is ok.', htmlDescription='

Doc for parameter is ok.

'], _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@5185bd, _eaTypeName=Boolean, _eaTypeIdAsString=619]. +2024-09-08 15:10:00,541 [main] TRACE ParameterBuilder - Type set for parameter ParameterBuilder [_containingOperation=ope-ration, _position=1, _kind=SIMPLE, _objData=UmlObjectData [id=2064, uuid={82D97A41-4B66-40ae-ADF4-3BFA2BD0E201}, since=null, name=_par, alias=, stereotype=, visibility=public, txtDescription='doc', htmlDescription='

doc

'], _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1bbf683, _eaTypeName=ApparentPower, _eaTypeIdAsString=616]. +2024-09-08 15:10:00,541 [main] INFO EaModelBuilder - cross-checking dependencies ... +2024-09-08 15:10:00,542 [main] INFO EaModelBuilder - cross-checking associations ... +2024-09-08 15:10:00,543 [main] INFO Util - time=[0:00:00.030] linked builders. +2024-09-08 15:10:00,543 [main] INFO Util - +2024-09-08 15:10:00,543 [main] INFO Util - +2024-09-08 15:10:00,544 [main] INFO Util - ------------------------------------------------ +2024-09-08 15:10:00,544 [main] INFO Util - creating in-memory model and exporting normative diagrams... +2024-09-08 15:10:01,935 [main] TRACE UmlPackage - ---- created null model package NullCIM +2024-09-08 15:10:01,939 [main] TRACE UmlClass - created (2081) OTHER_CIM CIM null CIM class NullCIM::NullCIM +2024-09-08 15:10:01,939 [main] TRACE UmlPackage - ---- created null model package NullIEC61850 +2024-09-08 15:10:01,939 [main] TRACE UmlClass - created (2085) OTHER_IEC61850 IEC61850 null 61850 class NullIEC61850::NullIEC61850 +2024-09-08 15:10:01,939 [main] INFO EaModelBuilder - creating in-memory package structure ... +2024-09-08 15:10:01,939 [main] TRACE UmlPackage - ---- created model package TC57CIMProfiles +2024-09-08 15:10:01,944 [main] TRACE UmlDiagram - created (332) OTHER_CIM CIM package TC57CIMProfiles::TC57CIMProfiles +2024-09-08 15:10:01,944 [main] TRACE UmlPackage - ---- created model package TC57CIM +2024-09-08 15:10:01,944 [main] TRACE UmlDiagram - created (1) OTHER_CIM CIM class <> TC57CIM::Main +2024-09-08 15:10:01,944 [main] TRACE UmlPackage - ---- created top package Informative +2024-09-08 15:10:01,944 [main] TRACE UmlDiagram - created (171) OTHER_CIM CIM INF class Informative::Informative +2024-09-08 15:10:01,944 [main] TRACE UmlPackage - ---- created top package IEC61970 +2024-09-08 15:10:01,946 [main] TRACE UmlSkipped - created (1497) WG13 CIM state IEC61970::StateInPackage +2024-09-08 15:10:01,946 [main] TRACE UmlDiagram - created (111) WG13 CIM class IEC61970::Main +2024-09-08 15:10:01,946 [main] TRACE UmlPackage - ---- created package InformativeAndPrivate +2024-09-08 15:10:01,946 [main] TRACE UmlSkipped - created (2102) WG13 CIM INF other InformativeAndPrivate:: - Package 'Other' - Package 'Other' +2024-09-08 15:10:01,946 [main] TRACE UmlDiagram - created (157) WG13 CIM INF class InformativeAndPrivate::Informative +2024-09-08 15:10:01,946 [main] TRACE UmlPackage - ---- created package DocIEC61970 +2024-09-08 15:10:01,946 [main] TRACE UmlSkipped - created (3028) WG13 CIM INF note DocIEC61970:: +2024-09-08 15:10:01,946 [main] TRACE UmlDiagram - created (321) WG13 CIM INF class DocIEC61970::MyDocFigure +2024-09-08 15:10:01,946 [main] TRACE UmlPackage - ---- created package Domain +2024-09-08 15:10:01,946 [main] TRACE UmlDiagram - created (119) WG13 CIM class <> Domain::BasicDatatypes +2024-09-08 15:10:01,946 [main] TRACE UmlDiagram - created (117) WG13 CIM class <> Domain::TimeDatatypes +2024-09-08 15:10:01,946 [main] TRACE UmlPackage - ---- created package Core +2024-09-08 15:10:01,946 [main] TRACE UmlSkipped - created (3029) WG13 CIM note Core:: +2024-09-08 15:10:01,946 [main] TRACE UmlSkipped - created (3082) WG13 CIM note Core:: +2024-09-08 15:10:01,946 [main] TRACE UmlSkipped - created (3083) WG13 CIM note Core:: +2024-09-08 15:10:01,946 [main] TRACE UmlSkipped - created (3084) WG13 CIM note Core:: +2024-09-08 15:10:01,946 [main] TRACE UmlSkipped - created (3085) WG13 CIM note Core:: +2024-09-08 15:10:01,946 [main] TRACE UmlSkipped - created (3086) WG13 CIM note Core:: +2024-09-08 15:10:01,946 [main] TRACE UmlDiagram - created (153) WG13 CIM class Core::Main +2024-09-08 15:10:01,947 [main] TRACE UmlDiagram - created (155) WG13 CIM class <> Core::Ownership +2024-09-08 15:10:01,947 [main] TRACE UmlPackage - ---- created package Topology +2024-09-08 15:10:01,947 [main] TRACE UmlSkipped - created (792) WG13 CIM note Topology:: +2024-09-08 15:10:01,947 [main] TRACE UmlSkipped - created (793) WG13 CIM note Topology:: +2024-09-08 15:10:01,947 [main] TRACE UmlSkipped - created (798) WG13 CIM note Topology:: +2024-09-08 15:10:01,947 [main] TRACE UmlSkipped - created (1445) WG13 CIM note Topology:: +2024-09-08 15:10:01,947 [main] TRACE UmlSkipped - created (1446) WG13 CIM note Topology:: +2024-09-08 15:10:01,947 [main] TRACE UmlSkipped - created (1447) WG13 CIM note Topology:: +2024-09-08 15:10:01,947 [main] TRACE UmlDiagram - created (142) WG13 CIM class Topology::Main +2024-09-08 15:10:01,947 [main] TRACE UmlDiagram - created (175) WG13 CIM class Topology::DiagramWithoutComment +2024-09-08 15:10:01,947 [main] TRACE UmlPackage - ---- created package TestEnums +2024-09-08 15:10:01,947 [main] TRACE UmlSkipped - created (3046) WG13 CIM note TestEnums:: +2024-09-08 15:10:01,947 [main] TRACE UmlSkipped - created (3048) WG13 CIM note TestEnums:: +2024-09-08 15:10:01,947 [main] TRACE UmlDiagram - created (322) WG13 CIM class TestEnums::TestEnums +2024-09-08 15:10:01,947 [main] TRACE UmlPackage - ---- created top package IEC61968 +2024-09-08 15:10:01,947 [main] TRACE UmlSkipped - created (1478) WG14 CIM note IEC61968:: +2024-09-08 15:10:01,947 [main] TRACE UmlSkipped - created (1479) WG14 CIM note IEC61968:: +2024-09-08 15:10:01,947 [main] TRACE UmlSkipped - created (1499) WG14 CIM note IEC61968:: +2024-09-08 15:10:01,947 [main] TRACE UmlSkipped - created (3075) WG14 CIM note IEC61968:: +2024-09-08 15:10:01,947 [main] TRACE UmlDiagram - created (158) WG14 CIM class IEC61968::IEC61968 +2024-09-08 15:10:01,947 [main] TRACE UmlPackage - ---- created package EmbeddedExtension +2024-09-08 15:10:01,947 [main] TRACE UmlSkipped - created (3457) WG14 CIM note link EmbeddedExtension:: - Note '' - Note '' +2024-09-08 15:10:01,947 [main] TRACE UmlDiagram - created (328) WG14 CIM package EmbeddedExtension::EmbeddedExtension +2024-09-08 15:10:01,947 [main] TRACE UmlPackage - ---- created package Assets +2024-09-08 15:10:01,947 [main] TRACE UmlSkipped - created (3064) WG14 CIM other Assets::Object1 +2024-09-08 15:10:01,947 [main] TRACE UmlDiagram - created (184) WG14 CIM class Assets::Assets +2024-09-08 15:10:01,947 [main] TRACE UmlDiagram - created (326) WG14 CIM object Assets::AssetsObjDia +2024-09-08 15:10:01,947 [main] TRACE UmlPackage - ---- created package Core +2024-09-08 15:10:01,947 [main] TRACE UmlSkipped - created (2117) WG14 CIM note link Core:: - Note '' - Note '' +2024-09-08 15:10:01,947 [main] TRACE UmlPackage - ---- created package Other +2024-09-08 15:10:01,947 [main] TRACE UmlSkipped - created (2115) WG14 CIM note link Other:: - Note '' - Note '' +2024-09-08 15:10:01,947 [main] TRACE UmlPackage - ---- created package Other +2024-09-08 15:10:01,947 [main] TRACE UmlSkipped - created (2116) WG14 CIM note link Other:: - Note '' - Note '' +2024-09-08 15:10:01,947 [main] TRACE UmlSkipped - created (2102) WG14 CIM other Other:: - Package 'InformativeAndPrivate' - Package 'InformativeAndPrivate' +2024-09-08 15:10:01,947 [main] TRACE UmlSkipped - created (1473) WG14 CIM note Other:: +2024-09-08 15:10:01,947 [main] TRACE UmlSkipped - created (1475) WG14 CIM note Other:: +2024-09-08 15:10:01,947 [main] TRACE UmlSkipped - created (1483) WG14 CIM note Other:: +2024-09-08 15:10:01,948 [main] TRACE UmlSkipped - created (1484) WG14 CIM note Other:: +2024-09-08 15:10:01,948 [main] TRACE UmlSkipped - created (1498) WG14 CIM note Other:: +2024-09-08 15:10:01,948 [main] TRACE UmlDiagram - created (159) WG14 CIM class Other::Other +2024-09-08 15:10:01,948 [main] TRACE UmlPackage - ---- created top package IEC62325 +2024-09-08 15:10:01,948 [main] TRACE UmlDiagram - created (183) WG16 CIM class IEC62325::IEC62325 +2024-09-08 15:10:01,948 [main] TRACE UmlPackage - ---- created model package IEC61850Domain +2024-09-08 15:10:01,948 [main] TRACE UmlSkipped - created (3068) OTHER_IEC61850 IEC61850 note IEC61850Domain:: +2024-09-08 15:10:01,948 [main] TRACE UmlSkipped - created (3069) OTHER_IEC61850 IEC61850 note IEC61850Domain:: +2024-09-08 15:10:01,948 [main] TRACE UmlDiagram - created (160) OTHER_IEC61850 IEC61850 class IEC61850Domain::IEC61850Domain +2024-09-08 15:10:01,948 [main] TRACE UmlPackage - ---- created top package WG10 +2024-09-08 15:10:01,948 [main] TRACE UmlSkipped - created (1553) WG10 IEC61850 note WG10:: +2024-09-08 15:10:01,948 [main] TRACE UmlSkipped - created (1554) WG10 IEC61850 note WG10:: +2024-09-08 15:10:01,948 [main] TRACE UmlSkipped - created (1556) WG10 IEC61850 text WG10::Parts7 : DataModelExample +2024-09-08 15:10:01,948 [main] TRACE UmlSkipped - created (1557) WG10 IEC61850 text WG10::Text +2024-09-08 15:10:01,948 [main] TRACE UmlSkipped - created (1558) WG10 IEC61850 text WG10::Text +2024-09-08 15:10:01,948 [main] TRACE UmlSkipped - created (1559) WG10 IEC61850 text WG10::Text +2024-09-08 15:10:01,948 [main] TRACE UmlSkipped - created (1560) WG10 IEC61850 text WG10::Text +2024-09-08 15:10:01,948 [main] TRACE UmlSkipped - created (1561) WG10 IEC61850 text WG10::Text +2024-09-08 15:10:01,948 [main] TRACE UmlSkipped - created (1562) WG10 IEC61850 text WG10::Text +2024-09-08 15:10:01,948 [main] TRACE UmlSkipped - created (1563) WG10 IEC61850 text WG10::Text +2024-09-08 15:10:01,948 [main] TRACE UmlSkipped - created (1564) WG10 IEC61850 text WG10::Text +2024-09-08 15:10:01,949 [main] TRACE UmlSkipped - created (1565) WG10 IEC61850 text WG10::Text +2024-09-08 15:10:01,949 [main] TRACE UmlSkipped - created (1566) WG10 IEC61850 text WG10::Text +2024-09-08 15:10:01,949 [main] TRACE UmlSkipped - created (1567) WG10 IEC61850 text WG10::Text +2024-09-08 15:10:01,949 [main] TRACE UmlSkipped - created (1568) WG10 IEC61850 text WG10::Text +2024-09-08 15:10:01,949 [main] TRACE UmlSkipped - created (1569) WG10 IEC61850 text WG10::Text +2024-09-08 15:10:01,949 [main] TRACE UmlSkipped - created (1570) WG10 IEC61850 text WG10::IEC61850 : Parts7 +2024-09-08 15:10:01,949 [main] TRACE UmlDiagram - created (186) WG10 IEC61850 package WG10::WG10 +2024-09-08 15:10:01,949 [main] TRACE UmlDiagram - created (187) WG10 IEC61850 package WG10::Parts7 +2024-09-08 15:10:01,949 [main] TRACE UmlDiagram - created (188) WG10 IEC61850 class WG10::DataModelExample +2024-09-08 15:10:01,949 [main] TRACE UmlPackage - ---- created package NewIEC61850_7_2 +2024-09-08 15:10:01,949 [main] TRACE UmlDiagram - created (189) WG10 IEC61850 package NewIEC61850_7_2::NewIEC61850_7_2 +2024-09-08 15:10:01,949 [main] TRACE UmlPackage - ---- created package GenericModel +2024-09-08 15:10:01,949 [main] TRACE UmlSkipped - created (1573) WG10 IEC61850 note GenericModel:: +2024-09-08 15:10:01,949 [main] TRACE UmlSkipped - created (1574) WG10 IEC61850 note GenericModel:: +2024-09-08 15:10:01,949 [main] TRACE UmlSkipped - created (1575) WG10 IEC61850 note GenericModel:: +2024-09-08 15:10:01,949 [main] TRACE UmlSkipped - created (1576) WG10 IEC61850 note GenericModel:: +2024-09-08 15:10:01,949 [main] TRACE UmlSkipped - created (1577) WG10 IEC61850 note GenericModel:: +2024-09-08 15:10:01,949 [main] TRACE UmlSkipped - created (1578) WG10 IEC61850 note GenericModel:: +2024-09-08 15:10:01,949 [main] TRACE UmlSkipped - created (1579) WG10 IEC61850 note GenericModel:: +2024-09-08 15:10:01,949 [main] TRACE UmlSkipped - created (1580) WG10 IEC61850 note GenericModel:: +2024-09-08 15:10:01,949 [main] TRACE UmlSkipped - created (1581) WG10 IEC61850 note GenericModel:: +2024-09-08 15:10:01,949 [main] TRACE UmlSkipped - created (1582) WG10 IEC61850 note GenericModel:: +2024-09-08 15:10:01,949 [main] TRACE UmlSkipped - created (1583) WG10 IEC61850 note GenericModel:: +2024-09-08 15:10:01,949 [main] TRACE UmlSkipped - created (1584) WG10 IEC61850 note GenericModel:: +2024-09-08 15:10:01,949 [main] TRACE UmlSkipped - created (1618) WG10 IEC61850 other <> GenericModel:: +2024-09-08 15:10:01,949 [main] TRACE UmlSkipped - created (1619) WG10 IEC61850 other <> GenericModel:: +2024-09-08 15:10:01,949 [main] TRACE UmlSkipped - created (1620) WG10 IEC61850 other <> GenericModel:: +2024-09-08 15:10:01,949 [main] TRACE UmlSkipped - created (1621) WG10 IEC61850 other <> GenericModel:: +2024-09-08 15:10:01,950 [main] TRACE UmlDiagram - created (190) WG10 IEC61850 class GenericModel::GenericModel +2024-09-08 15:10:01,950 [main] TRACE UmlDiagram - created (191) WG10 IEC61850 class GenericModel::GenericModelTypes +2024-09-08 15:10:01,950 [main] TRACE UmlPackage - ---- created package IEC61850_7_2 +2024-09-08 15:10:01,950 [main] TRACE UmlSkipped - created (1623) WG10 IEC61850 note IEC61850_7_2:: +2024-09-08 15:10:01,950 [main] TRACE UmlSkipped - created (1624) WG10 IEC61850 note IEC61850_7_2:: +2024-09-08 15:10:01,950 [main] TRACE UmlSkipped - created (1625) WG10 IEC61850 note IEC61850_7_2:: +2024-09-08 15:10:01,950 [main] TRACE UmlSkipped - created (1627) WG10 IEC61850 text IEC61850_7_2::IEC61850_7_2 : IEC61850_7_2ModellingNotes +2024-09-08 15:10:01,950 [main] TRACE UmlDiagram - created (192) WG10 IEC61850 package IEC61850_7_2::IEC61850_7_2 +2024-09-08 15:10:01,950 [main] TRACE UmlDiagram - created (193) WG10 IEC61850 class IEC61850_7_2::IEC61850_7_2ModellingNotes +2024-09-08 15:10:01,950 [main] TRACE UmlPackage - ---- created package FunctionalConstraints +2024-09-08 15:10:01,950 [main] TRACE UmlDiagram - created (195) WG10 IEC61850 class FunctionalConstraints::FunctionalConstraints +2024-09-08 15:10:01,950 [main] TRACE UmlPackage - ---- created package TriggerOptions +2024-09-08 15:10:01,950 [main] TRACE UmlDiagram - created (196) WG10 IEC61850 class TriggerOptions::TriggerOptions +2024-09-08 15:10:01,950 [main] TRACE UmlPackage - ---- created package ACSIEnums +2024-09-08 15:10:01,950 [main] TRACE UmlDiagram - created (197) WG10 IEC61850 class ACSIEnums::ACSIEnums +2024-09-08 15:10:01,950 [main] TRACE UmlPackage - ---- created package CoreTypes +2024-09-08 15:10:01,950 [main] TRACE UmlSkipped - created (1650) WG10 IEC61850 note CoreTypes:: +2024-09-08 15:10:01,950 [main] TRACE UmlSkipped - created (1675) WG10 IEC61850 text CoreTypes::Text +2024-09-08 15:10:01,950 [main] TRACE UmlSkipped - created (1676) WG10 IEC61850 text CoreTypes::CoreTypes : CoreTypesModellingNotes +2024-09-08 15:10:01,950 [main] TRACE UmlSkipped - created (1677) WG10 IEC61850 text CoreTypes::CoreTypes :ImplementationNote-LanguageMappings +2024-09-08 15:10:01,950 [main] TRACE UmlSkipped - created (1678) WG10 IEC61850 text CoreTypes::BasicDAs :Relation between trigger conditions, applicable trigger options and reporting +2024-09-08 15:10:01,950 [main] TRACE UmlSkipped - created (1679) WG10 IEC61850 text CoreTypes::Text +2024-09-08 15:10:01,950 [main] TRACE UmlDiagram - created (198) WG10 IEC61850 class CoreTypes::CoreTypes +2024-09-08 15:10:01,950 [main] TRACE UmlPackage - ---- created package ObjectReferences +2024-09-08 15:10:01,950 [main] TRACE UmlSkipped - created (1684) WG10 IEC61850 note ObjectReferences:: +2024-09-08 15:10:01,950 [main] TRACE UmlSkipped - created (1690) WG10 IEC61850 note ObjectReferences:: +2024-09-08 15:10:01,950 [main] TRACE UmlSkipped - created (1704) WG10 IEC61850 text ObjectReferences::ObjectReferences : ObjectReferencesModellingNotes +2024-09-08 15:10:01,950 [main] TRACE UmlSkipped - created (1705) WG10 IEC61850 text ObjectReferences::ObjectReferences : ImplementationNotes-ComposedCDCs +2024-09-08 15:10:01,950 [main] TRACE UmlDiagram - created (201) WG10 IEC61850 class ObjectReferences::ObjectReferences +2024-09-08 15:10:01,950 [main] TRACE UmlPackage - ---- created package DetailedDiagrams +2024-09-08 15:10:01,950 [main] TRACE UmlSkipped - created (1707) WG10 IEC61850 INF note DetailedDiagrams:: +2024-09-08 15:10:01,950 [main] TRACE UmlDiagram - created (203) WG10 IEC61850 INF class DetailedDiagrams::ImplementationNotes-ComposedCDCs +2024-09-08 15:10:01,950 [main] TRACE UmlPackage - ---- created package AttrValues +2024-09-08 15:10:01,950 [main] TRACE UmlSkipped - created (1712) WG10 IEC61850 note AttrValues:: +2024-09-08 15:10:01,950 [main] TRACE UmlSkipped - created (1713) WG10 IEC61850 note AttrValues:: +2024-09-08 15:10:01,950 [main] TRACE UmlDiagram - created (204) WG10 IEC61850 class AttrValues::AttrValues +2024-09-08 15:10:01,951 [main] TRACE UmlPackage - ---- created package BasicDAs +2024-09-08 15:10:01,951 [main] TRACE UmlSkipped - created (1738) WG10 IEC61850 note BasicDAs:: +2024-09-08 15:10:01,951 [main] TRACE UmlSkipped - created (1739) WG10 IEC61850 note BasicDAs:: +2024-09-08 15:10:01,951 [main] TRACE UmlSkipped - created (1761) WG10 IEC61850 boundary BasicDAs:: +2024-09-08 15:10:01,951 [main] TRACE UmlSkipped - created (1762) WG10 IEC61850 text BasicDAs::ACSIEnums : ACSIEnums +2024-09-08 15:10:01,951 [main] TRACE UmlSkipped - created (1763) WG10 IEC61850 text BasicDAs::ObjectReferences : ObjectReferences +2024-09-08 15:10:01,951 [main] TRACE UmlSkipped - created (1764) WG10 IEC61850 text BasicDAs::CoreTypes : CoreTypes +2024-09-08 15:10:01,951 [main] TRACE UmlDiagram - created (205) WG10 IEC61850 class BasicDAs::BasicDAs +2024-09-08 15:10:01,951 [main] TRACE UmlPackage - ---- created package AcsiTypes +2024-09-08 15:10:01,951 [main] TRACE UmlDiagram - created (207) WG10 IEC61850 package AcsiTypes::AcsiTypes +2024-09-08 15:10:01,951 [main] TRACE UmlPackage - ---- created package CommonAcsiTypes +2024-09-08 15:10:01,951 [main] TRACE UmlSkipped - created (1768) WG10 IEC61850 note CommonAcsiTypes:: +2024-09-08 15:10:01,951 [main] TRACE UmlSkipped - created (1769) WG10 IEC61850 note CommonAcsiTypes:: +2024-09-08 15:10:01,951 [main] TRACE UmlSkipped - created (1778) WG10 IEC61850 text CommonAcsiTypes::CoreAcsi : CoreAcsi +2024-09-08 15:10:01,951 [main] TRACE UmlDiagram - created (208) WG10 IEC61850 class CommonAcsiTypes::CommonAcsiTypes +2024-09-08 15:10:01,951 [main] TRACE UmlPackage - ---- created package MetaModel +2024-09-08 15:10:01,951 [main] TRACE UmlSkipped - created (1830) WG10 IEC61850 note MetaModel:: +2024-09-08 15:10:01,951 [main] TRACE UmlSkipped - created (1831) WG10 IEC61850 note MetaModel:: +2024-09-08 15:10:01,951 [main] TRACE UmlSkipped - created (1833) WG10 IEC61850 note MetaModel:: +2024-09-08 15:10:01,951 [main] TRACE UmlSkipped - created (1834) WG10 IEC61850 note MetaModel:: +2024-09-08 15:10:01,951 [main] TRACE UmlSkipped - created (1878) WG10 IEC61850 text MetaModel::DerivedCDCs : DerivedCDCs +2024-09-08 15:10:01,951 [main] TRACE UmlSkipped - created (1879) WG10 IEC61850 text MetaModel::MetaModel :MetaModelFCsAndTrgOps +2024-09-08 15:10:01,951 [main] TRACE UmlSkipped - created (1880) WG10 IEC61850 text MetaModel::MetaModel :MetaModelNaming +2024-09-08 15:10:01,951 [main] TRACE UmlSkipped - created (1881) WG10 IEC61850 text MetaModel::LogicalNodeEnums :DOEnums-1 +2024-09-08 15:10:01,951 [main] TRACE UmlSkipped - created (1882) WG10 IEC61850 text MetaModel::BasicDAs : BasicDAs +2024-09-08 15:10:01,951 [main] TRACE UmlSkipped - created (1883) WG10 IEC61850 text MetaModel::LogicalNodes : LogicalNodes +2024-09-08 15:10:01,951 [main] TRACE UmlSkipped - created (1884) WG10 IEC61850 text MetaModel::CommonDataClasses : CommonDataClasses +2024-09-08 15:10:01,951 [main] TRACE UmlSkipped - created (1885) WG10 IEC61850 text MetaModel::IEC61850 : DataModelExample +2024-09-08 15:10:01,951 [main] TRACE UmlSkipped - created (1886) WG10 IEC61850 text MetaModel::DerivedDAs : DerivedDAs +2024-09-08 15:10:01,951 [main] TRACE UmlSkipped - created (1887) WG10 IEC61850 text MetaModel::LogicalNodeEnums :DOEnums-3 +2024-09-08 15:10:01,951 [main] TRACE UmlSkipped - created (1888) WG10 IEC61850 text MetaModel::DAEnums : DAEnums-1 +2024-09-08 15:10:01,951 [main] TRACE UmlSkipped - created (1889) WG10 IEC61850 text MetaModel::ObjectReferences : ObjectReferences +2024-09-08 15:10:01,951 [main] TRACE UmlSkipped - created (1890) WG10 IEC61850 text MetaModel::CoreTypes : CoreTypes +2024-09-08 15:10:01,951 [main] TRACE UmlSkipped - created (1891) WG10 IEC61850 text MetaModel::ConstructedDAs : ConstructedDAs +2024-09-08 15:10:01,951 [main] TRACE UmlSkipped - created (1892) WG10 IEC61850 text MetaModel::LogicalNodeEnums :DOEnums-2 +2024-09-08 15:10:01,951 [main] TRACE UmlSkipped - created (1893) WG10 IEC61850 boundary MetaModel::Data model (logical nodes, common data classes, functionally constrained data attributes and data attributes) +2024-09-08 15:10:01,952 [main] TRACE UmlSkipped - created (1894) WG10 IEC61850 text MetaModel::FCDAs : FCDAs +2024-09-08 15:10:01,952 [main] TRACE UmlSkipped - created (1895) WG10 IEC61850 text MetaModel::ImplicitDAs : ImplicitDAs +2024-09-08 15:10:01,952 [main] TRACE UmlSkipped - created (1896) WG10 IEC61850 text MetaModel::MetaModel :MetaModelDataSetsAndControlBlocks +2024-09-08 15:10:01,952 [main] TRACE UmlSkipped - created (1897) WG10 IEC61850 text MetaModel::MetaModel : MetaModelDataModel +2024-09-08 15:10:01,952 [main] TRACE UmlSkipped - created (1898) WG10 IEC61850 boundary MetaModel::Directly related to data model +2024-09-08 15:10:01,952 [main] TRACE UmlSkipped - created (1899) WG10 IEC61850 text MetaModel::MetaModel :MetaModelRelationships +2024-09-08 15:10:01,952 [main] TRACE UmlSkipped - created (1900) WG10 IEC61850 text MetaModel::DAEnums : DAEnums-2 +2024-09-08 15:10:01,952 [main] TRACE UmlDiagram - created (218) WG10 IEC61850 class MetaModel::MetaModelClasses +2024-09-08 15:10:01,952 [main] TRACE UmlDiagram - created (219) WG10 IEC61850 class MetaModel::MetaModelRelationships +2024-09-08 15:10:01,952 [main] TRACE UmlDiagram - created (220) WG10 IEC61850 class MetaModel::MetaModelNaming +2024-09-08 15:10:01,952 [main] TRACE UmlDiagram - created (217) WG10 IEC61850 class MetaModel::MetaModelDataModel +2024-09-08 15:10:01,952 [main] TRACE UmlDiagram - created (221) WG10 IEC61850 class MetaModel::MetaModelDataSetsAndControlBlocks +2024-09-08 15:10:01,952 [main] TRACE UmlPackage - ---- created package MetaModelFCsAndTrgOps +2024-09-08 15:10:01,952 [main] TRACE UmlSkipped - created (1902) WG10 IEC61850 note MetaModelFCsAndTrgOps:: +2024-09-08 15:10:01,952 [main] TRACE UmlDiagram - created (222) WG10 IEC61850 class MetaModelFCsAndTrgOps::MetaModelFCsAndTrgOps +2024-09-08 15:10:01,952 [main] TRACE UmlPackage - ---- created package CDCServiceTracking +2024-09-08 15:10:01,952 [main] TRACE UmlSkipped - created (2180) WG10 IEC61850 note link CDCServiceTracking:: - Note '' - Note '' +2024-09-08 15:10:01,952 [main] TRACE UmlSkipped - created (1993) WG10 IEC61850 note CDCServiceTracking:: +2024-09-08 15:10:01,952 [main] TRACE UmlSkipped - created (1994) WG10 IEC61850 note CDCServiceTracking:: +2024-09-08 15:10:01,952 [main] TRACE UmlDiagram - created (226) WG10 IEC61850 class CDCServiceTracking::CDCServiceTracking +2024-09-08 15:10:01,952 [main] TRACE UmlPackage - ---- created package IEC61850_7_3 +2024-09-08 15:10:01,952 [main] TRACE UmlSkipped - created (2006) WG10 IEC61850 note IEC61850_7_3:: +2024-09-08 15:10:01,952 [main] TRACE UmlDiagram - created (227) WG10 IEC61850 class IEC61850_7_3::IEC61850_7_3 +2024-09-08 15:10:01,952 [main] TRACE UmlPackage - ---- created package PresenceConditions +2024-09-08 15:10:01,952 [main] TRACE UmlSkipped - created (2205) WG10 IEC61850 note link PresenceConditions:: - Note '' - Note '' +2024-09-08 15:10:01,952 [main] TRACE UmlDiagram - created (228) WG10 IEC61850 class PresenceConditions::PresenceConditions +2024-09-08 15:10:01,952 [main] TRACE UmlPackage - ---- created package DAEnums +2024-09-08 15:10:01,952 [main] TRACE UmlSkipped - created (2015) WG10 IEC61850 note DAEnums:: +2024-09-08 15:10:01,952 [main] TRACE UmlSkipped - created (2016) WG10 IEC61850 note DAEnums:: +2024-09-08 15:10:01,952 [main] TRACE UmlSkipped - created (2021) WG10 IEC61850 note DAEnums:: +2024-09-08 15:10:01,952 [main] TRACE UmlSkipped - created (2022) WG10 IEC61850 note DAEnums:: +2024-09-08 15:10:01,952 [main] TRACE UmlDiagram - created (229) WG10 IEC61850 class DAEnums::DAEnums-1 +2024-09-08 15:10:01,952 [main] TRACE UmlPackage - ---- created package ImplicitDAs +2024-09-08 15:10:01,952 [main] TRACE UmlSkipped - created (2050) WG10 IEC61850 note ImplicitDAs:: +2024-09-08 15:10:01,952 [main] TRACE UmlSkipped - created (2073) WG10 IEC61850 text ImplicitDAs::DAEnums :DAEnums-2 +2024-09-08 15:10:01,953 [main] TRACE UmlSkipped - created (2074) WG10 IEC61850 text ImplicitDAs::DAEnums :DAEnums-1 +2024-09-08 15:10:01,953 [main] TRACE UmlDiagram - created (231) WG10 IEC61850 class ImplicitDAs::ImplicitDAs +2024-09-08 15:10:01,953 [main] TRACE UmlPackage - ---- created package ConstructedDAs +2024-09-08 15:10:01,953 [main] TRACE UmlSkipped - created (2077) WG10 IEC61850 note ConstructedDAs:: +2024-09-08 15:10:01,953 [main] TRACE UmlSkipped - created (2078) WG10 IEC61850 note ConstructedDAs:: +2024-09-08 15:10:01,953 [main] TRACE UmlSkipped - created (2102) WG10 IEC61850 text ConstructedDAs::Text +2024-09-08 15:10:01,953 [main] TRACE UmlSkipped - created (2104) WG10 IEC61850 text ConstructedDAs::Text +2024-09-08 15:10:01,953 [main] TRACE UmlSkipped - created (2105) WG10 IEC61850 text ConstructedDAs::Text +2024-09-08 15:10:01,953 [main] TRACE UmlSkipped - created (2106) WG10 IEC61850 text ConstructedDAs::ConstructedDAs : Quality.validity +2024-09-08 15:10:01,953 [main] TRACE UmlSkipped - created (2107) WG10 IEC61850 text ConstructedDAs::ConstructedDAs :Range configuration +2024-09-08 15:10:01,953 [main] TRACE UmlSkipped - created (2108) WG10 IEC61850 boundary ConstructedDAs:: +2024-09-08 15:10:01,953 [main] TRACE UmlDiagram - created (233) WG10 IEC61850 class ConstructedDAs::ConstructedDAs +2024-09-08 15:10:01,953 [main] TRACE UmlPackage - ---- created package FCDAs +2024-09-08 15:10:01,953 [main] TRACE UmlSkipped - created (2225) WG10 IEC61850 text FCDAs::IEC61850 : DataModelExample +2024-09-08 15:10:01,953 [main] TRACE UmlSkipped - created (2226) WG10 IEC61850 text FCDAs::FCDAs :FCDAs-ST-OR +2024-09-08 15:10:01,953 [main] TRACE UmlSkipped - created (2227) WG10 IEC61850 text FCDAs::FCDAs :FCDAs-SV-BL +2024-09-08 15:10:01,953 [main] TRACE UmlSkipped - created (2228) WG10 IEC61850 text FCDAs::FCDAs :FCDAs-SP-SG-SE +2024-09-08 15:10:01,953 [main] TRACE UmlSkipped - created (2229) WG10 IEC61850 text FCDAs::FCDAs :FCDAs-MX +2024-09-08 15:10:01,953 [main] TRACE UmlSkipped - created (2230) WG10 IEC61850 text FCDAs::FCDAs :FCDAs-CF-DC-EX +2024-09-08 15:10:01,953 [main] TRACE UmlDiagram - created (238) WG10 IEC61850 class FCDAs::FCDAs +2024-09-08 15:10:01,953 [main] TRACE UmlPackage - ---- created package CommonDataClasses +2024-09-08 15:10:01,953 [main] TRACE UmlSkipped - created (2239) WG10 IEC61850 text CommonDataClasses::CommonDataClasses : Concept of substitution +2024-09-08 15:10:01,953 [main] TRACE UmlSkipped - created (2241) WG10 IEC61850 boundary CommonDataClasses:: +2024-09-08 15:10:01,953 [main] TRACE UmlDiagram - created (244) WG10 IEC61850 class CommonDataClasses::CommonDataClasses +2024-09-08 15:10:01,953 [main] TRACE UmlDiagram - created (245) WG10 IEC61850 class CommonDataClasses::CDCRelationToACSI +2024-09-08 15:10:01,953 [main] TRACE UmlPackage - ---- created package CDCStatusInfo +2024-09-08 15:10:01,953 [main] TRACE UmlSkipped - created (2259) WG10 IEC61850 text CDCStatusInfo::CDCStatusInfo : Two-dimensional histogram +2024-09-08 15:10:01,953 [main] TRACE UmlSkipped - created (2260) WG10 IEC61850 text CDCStatusInfo::CDCStatusInfo : One-dimensional histogram +2024-09-08 15:10:01,953 [main] TRACE UmlDiagram - created (248) WG10 IEC61850 class CDCStatusInfo::CDCStatusInfo +2024-09-08 15:10:01,953 [main] TRACE UmlPackage - ---- created package CDCAnalogueInfo +2024-09-08 15:10:01,953 [main] TRACE UmlDiagram - created (251) WG10 IEC61850 class CDCAnalogueInfo::CDCAnalogueInfo +2024-09-08 15:10:01,953 [main] TRACE UmlPackage - ---- created package CDCControl +2024-09-08 15:10:01,953 [main] TRACE UmlSkipped - created (2289) WG10 IEC61850 text CDCControl::CDCControl :Attributes for command testing +2024-09-08 15:10:01,953 [main] TRACE UmlDiagram - created (255) WG10 IEC61850 class CDCControl::CDCControl +2024-09-08 15:10:01,953 [main] TRACE UmlPackage - ---- created package CDCStatusSet +2024-09-08 15:10:01,953 [main] TRACE UmlSkipped - created (2292) WG10 IEC61850 note CDCStatusSet:: +2024-09-08 15:10:01,954 [main] TRACE UmlDiagram - created (258) WG10 IEC61850 class CDCStatusSet::CDCStatusSet +2024-09-08 15:10:01,954 [main] TRACE UmlPackage - ---- created package CDCAnalogueSet +2024-09-08 15:10:01,954 [main] TRACE UmlSkipped - created (2302) WG10 IEC61850 note CDCAnalogueSet:: +2024-09-08 15:10:01,954 [main] TRACE UmlSkipped - created (2303) WG10 IEC61850 note CDCAnalogueSet:: +2024-09-08 15:10:01,954 [main] TRACE UmlSkipped - created (2309) WG10 IEC61850 text CDCAnalogueSet::CDCAnalogueSet : Two-dimensional curve +2024-09-08 15:10:01,954 [main] TRACE UmlSkipped - created (2310) WG10 IEC61850 text CDCAnalogueSet::CDCAnalogueSet : Multiple two-dimensional curves +2024-09-08 15:10:01,954 [main] TRACE UmlDiagram - created (260) WG10 IEC61850 class CDCAnalogueSet::CDCAnalogueSet +2024-09-08 15:10:01,954 [main] TRACE UmlPackage - ---- created package CDCDescription +2024-09-08 15:10:01,954 [main] TRACE UmlSkipped - created (2312) WG10 IEC61850 note CDCDescription:: +2024-09-08 15:10:01,954 [main] TRACE UmlDiagram - created (263) WG10 IEC61850 class CDCDescription::CDCDescription +2024-09-08 15:10:01,954 [main] TRACE UmlPackage - ---- created package IEC61850_7_4 +2024-09-08 15:10:01,954 [main] TRACE UmlDiagram - created (264) WG10 IEC61850 class IEC61850_7_4::IEC61850_7_4 +2024-09-08 15:10:01,954 [main] TRACE UmlPackage - ---- created package Abbreviations +2024-09-08 15:10:01,954 [main] TRACE UmlPackage - ---- created package DetailedDiagrams +2024-09-08 15:10:01,954 [main] TRACE UmlDiagram - created (274) WG10 IEC61850 INF class DetailedDiagrams::AbbreviationsA-O +2024-09-08 15:10:01,954 [main] TRACE UmlPackage - ---- created package Functions +2024-09-08 15:10:01,954 [main] TRACE UmlPackage - ---- created package ProtectionEq +2024-09-08 15:10:01,954 [main] TRACE UmlSkipped - created (2362) WG10 IEC61850 note ProtectionEq:: +2024-09-08 15:10:01,954 [main] TRACE UmlDiagram - created (276) WG10 IEC61850 class ProtectionEq::ProtectionEq +2024-09-08 15:10:01,954 [main] TRACE UmlPackage - ---- created package ControlEq +2024-09-08 15:10:01,954 [main] TRACE UmlSkipped - created (2419) WG10 IEC61850 note ControlEq:: +2024-09-08 15:10:01,954 [main] TRACE UmlDiagram - created (277) WG10 IEC61850 class ControlEq::ControlEq +2024-09-08 15:10:01,954 [main] TRACE UmlPackage - ---- created package MeasurementsAndMetering +2024-09-08 15:10:01,954 [main] TRACE UmlSkipped - created (2451) WG10 IEC61850 note MeasurementsAndMetering:: +2024-09-08 15:10:01,954 [main] TRACE UmlDiagram - created (280) WG10 IEC61850 class MeasurementsAndMetering::MeasurementsAndMetering +2024-09-08 15:10:01,954 [main] TRACE UmlPackage - ---- created package SystemWide +2024-09-08 15:10:01,954 [main] TRACE UmlDiagram - created (281) WG10 IEC61850 class SystemWide::SystemWide +2024-09-08 15:10:01,954 [main] TRACE UmlPackage - ---- created package PrimaryEq +2024-09-08 15:10:01,954 [main] TRACE UmlDiagram - created (282) WG10 IEC61850 class PrimaryEq::PrimaryEq +2024-09-08 15:10:01,954 [main] TRACE UmlPackage - ---- created package DOEnums +2024-09-08 15:10:01,954 [main] TRACE UmlSkipped - created (2554) WG10 IEC61850 note DOEnums:: +2024-09-08 15:10:01,954 [main] TRACE UmlSkipped - created (2555) WG10 IEC61850 note DOEnums:: +2024-09-08 15:10:01,954 [main] TRACE UmlSkipped - created (2556) WG10 IEC61850 note DOEnums:: +2024-09-08 15:10:01,954 [main] TRACE UmlSkipped - created (2563) WG10 IEC61850 note DOEnums:: +2024-09-08 15:10:01,954 [main] TRACE UmlSkipped - created (2615) WG10 IEC61850 text DOEnums::$diagram://{0D26B081-293D-4b46-BF1C-0EDBD3055405} +2024-09-08 15:10:01,954 [main] TRACE UmlSkipped - created (2617) WG10 IEC61850 text DOEnums::LogicalNodeEnums :DOEnums-2 +2024-09-08 15:10:01,954 [main] TRACE UmlDiagram - created (284) WG10 IEC61850 class DOEnums::DOEnums-1 +2024-09-08 15:10:01,955 [main] TRACE UmlPackage - ---- created package DerivedDAs +2024-09-08 15:10:01,955 [main] TRACE UmlSkipped - created (2619) WG10 IEC61850 note DerivedDAs:: +2024-09-08 15:10:01,955 [main] TRACE UmlSkipped - created (2666) WG10 IEC61850 text DerivedDAs::LogicalNodeEnums :DOEnums-1 +2024-09-08 15:10:01,955 [main] TRACE UmlSkipped - created (2667) WG10 IEC61850 text DerivedDAs::LogicalNodeEnums :DOEnums-2 +2024-09-08 15:10:01,955 [main] TRACE UmlSkipped - created (2668) WG10 IEC61850 boundary DerivedDAs:: +2024-09-08 15:10:01,955 [main] TRACE UmlDiagram - created (288) WG10 IEC61850 class DerivedDAs::DerivedDAs +2024-09-08 15:10:01,955 [main] TRACE UmlPackage - ---- created package DerivedCDCs +2024-09-08 15:10:01,955 [main] TRACE UmlSkipped - created (2670) WG10 IEC61850 note DerivedCDCs:: +2024-09-08 15:10:01,955 [main] TRACE UmlSkipped - created (2722) WG10 IEC61850 boundary DerivedCDCs:: +2024-09-08 15:10:01,955 [main] TRACE UmlDiagram - created (289) WG10 IEC61850 class DerivedCDCs::DerivedCDCs +2024-09-08 15:10:01,955 [main] TRACE UmlPackage - ---- created package LogicalNodes +2024-09-08 15:10:01,955 [main] TRACE UmlSkipped - created (2724) WG10 IEC61850 note LogicalNodes:: +2024-09-08 15:10:01,955 [main] TRACE UmlSkipped - created (2725) WG10 IEC61850 note LogicalNodes:: +2024-09-08 15:10:01,955 [main] TRACE UmlSkipped - created (2727) WG10 IEC61850 note LogicalNodes:: +2024-09-08 15:10:01,955 [main] TRACE UmlSkipped - created (2740) WG10 IEC61850 boundary LogicalNodes:: +2024-09-08 15:10:01,955 [main] TRACE UmlSkipped - created (3031) WG10 IEC61850 note LogicalNodes:: +2024-09-08 15:10:01,955 [main] TRACE UmlSkipped - created (3081) WG10 IEC61850 note LogicalNodes:: +2024-09-08 15:10:01,955 [main] TRACE UmlDiagram - created (291) WG10 IEC61850 class LogicalNodes::LogicalNodes +2024-09-08 15:10:01,955 [main] TRACE UmlDiagram - created (290) WG10 IEC61850 class LogicalNodes::LNRelationToACSI +2024-09-08 15:10:01,955 [main] TRACE UmlPackage - ---- created package DocLogicalNodes +2024-09-08 15:10:01,955 [main] TRACE UmlSkipped - created (2742) WG10 IEC61850 INF note DocLogicalNodes:: +2024-09-08 15:10:01,955 [main] TRACE UmlSkipped - created (2743) WG10 IEC61850 INF note DocLogicalNodes:: +2024-09-08 15:10:01,955 [main] TRACE UmlSkipped - created (2744) WG10 IEC61850 INF note DocLogicalNodes:: +2024-09-08 15:10:01,955 [main] TRACE UmlSkipped - created (2745) WG10 IEC61850 INF state machine DocLogicalNodes::RecloserState +2024-09-08 15:10:01,955 [main] TRACE UmlDiagram - created (294) WG10 IEC61850 INF package DocLogicalNodes::DocLogicalNodes +2024-09-08 15:10:01,955 [main] TRACE UmlDiagram - created (293) WG10 IEC61850 INF statechart DocLogicalNodes::RecloserState +2024-09-08 15:10:01,955 [main] TRACE UmlPackage - ---- created package LNGroupL +2024-09-08 15:10:01,955 [main] TRACE UmlSkipped - created (3040) WG10 IEC61850 note LNGroupL:: +2024-09-08 15:10:01,955 [main] TRACE UmlSkipped - created (3072) WG10 IEC61850 note LNGroupL:: +2024-09-08 15:10:01,955 [main] TRACE UmlDiagram - created (295) WG10 IEC61850 class LNGroupL::LNGroupL +2024-09-08 15:10:01,955 [main] TRACE UmlPackage - ---- created package LNGroupC +2024-09-08 15:10:01,955 [main] TRACE UmlSkipped - created (3065) WG10 IEC61850 note LNGroupC:: +2024-09-08 15:10:01,955 [main] TRACE UmlDiagram - created (297) WG10 IEC61850 class LNGroupC::LNGroupC +2024-09-08 15:10:01,955 [main] TRACE UmlPackage - ---- created package LNGroupG +2024-09-08 15:10:01,955 [main] TRACE UmlSkipped - created (2813) WG10 IEC61850 note LNGroupG:: +2024-09-08 15:10:01,955 [main] TRACE UmlDiagram - created (300) WG10 IEC61850 class LNGroupG::LNGroupG +2024-09-08 15:10:01,956 [main] TRACE UmlPackage - ---- created package LNGroupM +2024-09-08 15:10:01,956 [main] TRACE UmlSkipped - created (2843) WG10 IEC61850 note LNGroupM:: +2024-09-08 15:10:01,956 [main] TRACE UmlSkipped - created (2858) WG10 IEC61850 text LNGroupM::LNGroupM : LNGroupM1 +2024-09-08 15:10:01,956 [main] TRACE UmlDiagram - created (304) WG10 IEC61850 class LNGroupM::LNGroupM2 +2024-09-08 15:10:01,956 [main] TRACE UmlPackage - ---- created package LNGroupP +2024-09-08 15:10:01,956 [main] TRACE UmlSkipped - created (2869) WG10 IEC61850 note LNGroupP:: +2024-09-08 15:10:01,956 [main] TRACE UmlSkipped - created (2914) WG10 IEC61850 text LNGroupP::LNGroupP : LNGroupP2 +2024-09-08 15:10:01,956 [main] TRACE UmlSkipped - created (2915) WG10 IEC61850 text LNGroupP::Text +2024-09-08 15:10:01,956 [main] TRACE UmlSkipped - created (2916) WG10 IEC61850 text LNGroupP::LNGroupP : Load area and reach settings +2024-09-08 15:10:01,956 [main] TRACE UmlSkipped - created (2917) WG10 IEC61850 text LNGroupP::Text +2024-09-08 15:10:01,956 [main] TRACE UmlDiagram - created (305) WG10 IEC61850 class LNGroupP::LNGroupP1 +2024-09-08 15:10:01,956 [main] TRACE UmlPackage - ---- created package LNGroupR +2024-09-08 15:10:01,956 [main] TRACE UmlDiagram - created (309) WG10 IEC61850 class LNGroupR::LNGroupR +2024-09-08 15:10:01,956 [main] TRACE UmlPackage - ---- created package LNGroupZ +2024-09-08 15:10:01,956 [main] TRACE UmlSkipped - created (3063) WG10 IEC61850 note LNGroupZ:: +2024-09-08 15:10:01,956 [main] TRACE UmlDiagram - created (316) WG10 IEC61850 class LNGroupZ::LNGroupZ-1 +2024-09-08 15:10:01,956 [main] TRACE UmlPackage - ---- created top package WG17 +2024-09-08 15:10:01,956 [main] TRACE UmlDiagram - created (318) WG17 IEC61850 class WG17::WG17 +2024-09-08 15:10:01,956 [main] TRACE UmlPackage - ---- created package IEC51850_7_420 +2024-09-08 15:10:01,956 [main] TRACE UmlDiagram - created (327) WG17 IEC61850 package IEC51850_7_420::IEC51850_7_420 +2024-09-08 15:10:01,956 [main] TRACE UmlPackage - ---- created package DOEnums_7_420 +2024-09-08 15:10:01,956 [main] TRACE UmlDiagram - created (323) WG17 IEC61850 class DOEnums_7_420::DOEnums_7_420 +2024-09-08 15:10:01,958 [main] TRACE UmlPackage - ---- created package DerivedDAs_7_420 +2024-09-08 15:10:01,958 [main] TRACE UmlSkipped - created (3057) WG17 IEC61850 note DerivedDAs_7_420:: +2024-09-08 15:10:01,958 [main] TRACE UmlSkipped - created (3058) WG17 IEC61850 note DerivedDAs_7_420:: +2024-09-08 15:10:01,958 [main] TRACE UmlSkipped - created (3089) WG17 IEC61850 note DerivedDAs_7_420:: +2024-09-08 15:10:01,958 [main] TRACE UmlDiagram - created (324) WG17 IEC61850 class DerivedDAs_7_420::DerivedDAs_7_420 +2024-09-08 15:10:01,958 [main] TRACE UmlPackage - ---- created package DerivedCDCs_7_420 +2024-09-08 15:10:01,958 [main] TRACE UmlDiagram - created (325) WG17 IEC61850 class DerivedCDCs_7_420::DerivedCDCs_7_420 +2024-09-08 15:10:01,958 [main] TRACE UmlPackage - ---- created top package WG18 +2024-09-08 15:10:01,958 [main] TRACE UmlDiagram - created (319) WG18 IEC61850 class WG18::WG18 +2024-09-08 15:10:01,958 [main] TRACE UmlPackage - ---- created package Abbreviations_410 +2024-09-08 15:10:01,958 [main] TRACE UmlDiagram - created (320) WG18 IEC61850 class Abbreviations_410::Abbreviations_410 +2024-09-08 15:10:01,958 [main] TRACE UmlPackage - ---- created top package JWG25 +2024-09-08 15:10:01,958 [main] TRACE UmlDiagram - created (317) JWG25 IEC61850 class JWG25::JWG25 +2024-09-08 15:10:01,958 [main] TRACE UmlPackage - ---- created model package MyCimExtensions +2024-09-08 15:10:01,959 [main] TRACE UmlSkipped - created (3076) OTHER_CIM CIM other <> MyCimExtensions::DFD_Process1 +2024-09-08 15:10:01,959 [main] TRACE UmlSkipped - created (3079) OTHER_CIM CIM note MyCimExtensions:: +2024-09-08 15:10:01,959 [main] TRACE UmlDiagram - created (168) OTHER_CIM CIM class <> MyCimExtensions::MyCimExtensions +2024-09-08 15:10:01,959 [main] TRACE UmlPackage - ---- created top package Ext1 +2024-09-08 15:10:01,959 [main] TRACE UmlSkipped - created (3458) OTHER_CIM CIM other Ext1:: - Class 'Apple' - Class 'Apple' +2024-09-08 15:10:01,959 [main] TRACE UmlSkipped - created (3460) OTHER_CIM CIM other Ext1:: - Activity 'DFD_Process1' - Activity 'DFD_Process1' +2024-09-08 15:10:01,959 [main] TRACE UmlSkipped - created (1527) OTHER_CIM CIM note Ext1:: +2024-09-08 15:10:01,959 [main] TRACE UmlSkipped - created (3037) OTHER_CIM CIM note Ext1:: +2024-09-08 15:10:01,959 [main] TRACE UmlDiagram - created (169) OTHER_CIM CIM class Ext1::Ext1 +2024-09-08 15:10:01,959 [main] TRACE UmlPackage - ---- created top package Package with space +2024-09-08 15:10:01,959 [main] TRACE UmlSkipped - created (3461) OTHER_CIM CIM other Package with space:: - Class 'DFD_DataStore1' - Class 'DFD_DataStore1' +2024-09-08 15:10:01,959 [main] TRACE UmlSkipped - created (3462) OTHER_CIM CIM other Package with space:: - Class 'DFD_External1' - Class 'DFD_External1' +2024-09-08 15:10:01,959 [main] TRACE UmlDiagram - created (182) OTHER_CIM CIM class Package with space::Package with space +2024-09-08 15:10:01,959 [main] TRACE UmlPackage - ---- created model package My61850Extensions +2024-09-08 15:10:01,959 [main] TRACE UmlDiagram - created (172) OTHER_IEC61850 IEC61850 package My61850Extensions::My61850Extensions +2024-09-08 15:10:01,959 [main] TRACE UmlPackage - ---- created top package Ext2 +2024-09-08 15:10:01,959 [main] TRACE UmlSkipped - created (1528) OTHER_IEC61850 IEC61850 note Ext2:: +2024-09-08 15:10:01,960 [main] TRACE UmlDiagram - created (170) OTHER_IEC61850 IEC61850 class Ext2::Ext2 +2024-09-08 15:10:01,960 [main] TRACE UmlPackage - ---- created model package NewNature +2024-09-08 15:10:01,960 [main] TRACE UmlDiagram - created (329) OTHER_CIM CIM package NewNature::NewNature +2024-09-08 15:10:01,960 [main] INFO EaModelBuilder - creating in-memory root classes and enum literals ... +2024-09-08 15:10:01,960 [main] TRACE UmlClass - created (1495) OTHER_CIM CIM INF root class <> Informative::Class1 +2024-09-08 15:10:01,960 [main] TRACE UmlClass - created (1514) OTHER_CIM CIM INF root class Informative::End1ForAssocClass +2024-09-08 15:10:01,960 [main] TRACE UmlClass - created (1515) OTHER_CIM CIM INF root class Informative::End2ForAssocClass +2024-09-08 15:10:01,960 [main] TRACE UmlClass - created (1517) OTHER_CIM CIM INF root class Informative::AssocClass +2024-09-08 15:10:01,960 [main] TRACE UmlClass - created (1518) OTHER_CIM CIM INF root class Informative::HasIllegalTypeForAttr +2024-09-08 15:10:01,960 [main] TRACE UmlClass - created (1532) OTHER_CIM CIM INF compound <> Informative::SomeSimpleType +2024-09-08 15:10:01,960 [main] TRACE UmlClass - created (572) WG13 CIM root class IEC61970::IEC61970CIMVersion +2024-09-08 15:10:01,960 [main] TRACE UmlClass - created (1450) WG13 CIM INF root class InformativeAndPrivate::InfClass2 +2024-09-08 15:10:01,960 [main] TRACE UmlClass - created (1449) WG13 CIM INF root class InformativeAndPrivate::InfClassContainingEmbeddedClass +2024-09-08 15:10:01,960 [main] TRACE UmlSkipped - created (1496) WG13 CIM INF other InfClassContainingEmbeddedClass.EmbeddedClass +2024-09-08 15:10:01,960 [main] TRACE UmlClass - created (1496) WG13 CIM INF root class InformativeAndPrivate::EmbeddedClass +2024-09-08 15:10:01,960 [main] TRACE UmlClass - created (640) WG13 CIM datatype <> Domain::AbsoluteDateTime +2024-09-08 15:10:01,960 [main] TRACE UmlClass - created (638) WG13 CIM datatype <> Domain::ActivePower +2024-09-08 15:10:01,960 [main] TRACE UmlClass - created (629) WG13 CIM datatype <> Domain::ActivePowerChangeRate +2024-09-08 15:10:01,960 [main] TRACE UmlClass - created (616) WG13 CIM datatype <> Domain::ApparentPower +2024-09-08 15:10:01,961 [main] TRACE UmlClass - created (619) WG13 CIM primitive <> Domain::Boolean +2024-09-08 15:10:01,961 [main] TRACE UmlClass - created (600) WG13 CIM enumeration <> Domain::Currency +2024-09-08 15:10:01,966 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,966 [main] TRACE UmlAttribute - created (1287) WG13 CIM literal <> Domain::Currency.USD +2024-09-08 15:10:01,966 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,966 [main] TRACE UmlAttribute - created (1288) WG13 CIM literal <> Domain::Currency.EUR +2024-09-08 15:10:01,966 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,966 [main] TRACE UmlAttribute - created (1289) WG13 CIM literal <> Domain::Currency.AUD +2024-09-08 15:10:01,966 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,966 [main] TRACE UmlAttribute - created (1290) WG13 CIM literal <> Domain::Currency.CAD +2024-09-08 15:10:01,966 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,966 [main] TRACE UmlAttribute - created (1291) WG13 CIM literal <> Domain::Currency.CHF +2024-09-08 15:10:01,966 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,966 [main] TRACE UmlAttribute - created (1292) WG13 CIM literal <> Domain::Currency.CNY +2024-09-08 15:10:01,966 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,966 [main] TRACE UmlAttribute - created (1293) WG13 CIM literal <> Domain::Currency.DKK +2024-09-08 15:10:01,966 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,966 [main] TRACE UmlAttribute - created (1294) WG13 CIM literal <> Domain::Currency.GBP +2024-09-08 15:10:01,966 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,967 [main] TRACE UmlAttribute - created (1295) WG13 CIM literal <> Domain::Currency.JPY +2024-09-08 15:10:01,967 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,967 [main] TRACE UmlAttribute - created (1296) WG13 CIM literal <> Domain::Currency.NOK +2024-09-08 15:10:01,967 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,967 [main] TRACE UmlAttribute - created (1297) WG13 CIM literal <> Domain::Currency.RUR +2024-09-08 15:10:01,967 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,967 [main] TRACE UmlAttribute - created (1298) WG13 CIM literal <> Domain::Currency.SEK +2024-09-08 15:10:01,967 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,967 [main] TRACE UmlAttribute - created (1299) WG13 CIM literal <> Domain::Currency.INR +2024-09-08 15:10:01,967 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,967 [main] TRACE UmlAttribute - created (1300) WG13 CIM literal <> Domain::Currency.other +2024-09-08 15:10:01,967 [main] TRACE UmlClass - created (615) WG13 CIM primitive <> Domain::Float +2024-09-08 15:10:01,967 [main] TRACE UmlClass - created (610) WG13 CIM primitive <> Domain::Integer +2024-09-08 15:10:01,967 [main] TRACE UmlClass - created (609) WG13 CIM datatype <> Domain::Money +2024-09-08 15:10:01,967 [main] TRACE UmlClass - created (614) WG13 CIM datatype <> Domain::PerCent +2024-09-08 15:10:01,967 [main] TRACE UmlClass - created (620) WG13 CIM datatype <> Domain::Seconds +2024-09-08 15:10:01,967 [main] TRACE UmlClass - created (637) WG13 CIM primitive <> Domain::String +2024-09-08 15:10:01,967 [main] TRACE UmlClass - created (634) WG13 CIM enumeration <> Domain::UnitMultiplier +2024-09-08 15:10:01,967 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,967 [main] TRACE UmlAttribute - created (1417) WG13 CIM literal <> Domain::UnitMultiplier.p +2024-09-08 15:10:01,967 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,967 [main] TRACE UmlAttribute - created (1418) WG13 CIM literal <> Domain::UnitMultiplier.n +2024-09-08 15:10:01,967 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,967 [main] TRACE UmlAttribute - created (1419) WG13 CIM literal <> Domain::UnitMultiplier.micro +2024-09-08 15:10:01,967 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,968 [main] TRACE UmlAttribute - created (1420) WG13 CIM literal <> Domain::UnitMultiplier.m +2024-09-08 15:10:01,968 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,968 [main] TRACE UmlAttribute - created (1421) WG13 CIM literal <> Domain::UnitMultiplier.c +2024-09-08 15:10:01,968 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,968 [main] TRACE UmlAttribute - created (1422) WG13 CIM literal <> Domain::UnitMultiplier.d +2024-09-08 15:10:01,968 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,968 [main] TRACE UmlAttribute - created (1423) WG13 CIM literal <> Domain::UnitMultiplier.k +2024-09-08 15:10:01,968 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,968 [main] TRACE UmlAttribute - created (1424) WG13 CIM literal <> Domain::UnitMultiplier.M +2024-09-08 15:10:01,968 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,968 [main] TRACE UmlAttribute - created (1425) WG13 CIM literal <> Domain::UnitMultiplier.G +2024-09-08 15:10:01,968 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,968 [main] TRACE UmlAttribute - created (1426) WG13 CIM literal <> Domain::UnitMultiplier.T +2024-09-08 15:10:01,968 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,968 [main] TRACE UmlAttribute - created (1427) WG13 CIM literal <> Domain::UnitMultiplier.none +2024-09-08 15:10:01,968 [main] TRACE UmlClass - created (613) WG13 CIM enumeration <> Domain::UnitSymbol +2024-09-08 15:10:01,968 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,968 [main] TRACE UmlAttribute - created (1331) WG13 CIM literal <> Domain::UnitSymbol.VA +2024-09-08 15:10:01,968 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,968 [main] TRACE UmlAttribute - created (1332) WG13 CIM literal <> Domain::UnitSymbol.W +2024-09-08 15:10:01,968 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,968 [main] TRACE UmlAttribute - created (1333) WG13 CIM literal <> Domain::UnitSymbol.VAr +2024-09-08 15:10:01,968 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,968 [main] TRACE UmlAttribute - created (1334) WG13 CIM literal <> Domain::UnitSymbol.VAh +2024-09-08 15:10:01,968 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,968 [main] TRACE UmlAttribute - created (1335) WG13 CIM literal Domain::UnitSymbol.Wh +2024-09-08 15:10:01,968 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,969 [main] TRACE UmlAttribute - created (1336) WG13 CIM literal <> Domain::UnitSymbol.VArh +2024-09-08 15:10:01,969 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,969 [main] TRACE UmlAttribute - created (1337) WG13 CIM literal <> Domain::UnitSymbol.V +2024-09-08 15:10:01,969 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,969 [main] TRACE UmlAttribute - created (1338) WG13 CIM literal <> Domain::UnitSymbol.ohm +2024-09-08 15:10:01,969 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,969 [main] TRACE UmlAttribute - created (1339) WG13 CIM literal <> Domain::UnitSymbol.A +2024-09-08 15:10:01,969 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,969 [main] TRACE UmlAttribute - created (1340) WG13 CIM literal <> Domain::UnitSymbol.F +2024-09-08 15:10:01,969 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,969 [main] TRACE UmlAttribute - created (1341) WG13 CIM literal <> Domain::UnitSymbol.H +2024-09-08 15:10:01,969 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,969 [main] TRACE UmlAttribute - created (1342) WG13 CIM literal <> Domain::UnitSymbol.ºC +2024-09-08 15:10:01,969 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,969 [main] TRACE UmlAttribute - created (1343) WG13 CIM literal <> Domain::UnitSymbol.s +2024-09-08 15:10:01,969 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,969 [main] TRACE UmlAttribute - created (1344) WG13 CIM literal <> Domain::UnitSymbol.min +2024-09-08 15:10:01,969 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,969 [main] TRACE UmlAttribute - created (1345) WG13 CIM literal <> Domain::UnitSymbol.h +2024-09-08 15:10:01,969 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,969 [main] TRACE UmlAttribute - created (1346) WG13 CIM literal <> Domain::UnitSymbol.deg +2024-09-08 15:10:01,969 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,969 [main] TRACE UmlAttribute - created (1347) WG13 CIM literal <> Domain::UnitSymbol.rad +2024-09-08 15:10:01,969 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,969 [main] TRACE UmlAttribute - created (1348) WG13 CIM literal <> Domain::UnitSymbol.J +2024-09-08 15:10:01,969 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,970 [main] TRACE UmlAttribute - created (1349) WG13 CIM literal <> Domain::UnitSymbol.N +2024-09-08 15:10:01,970 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,970 [main] TRACE UmlAttribute - created (1350) WG13 CIM literal <> Domain::UnitSymbol.S +2024-09-08 15:10:01,970 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,970 [main] TRACE UmlAttribute - created (1351) WG13 CIM literal <> Domain::UnitSymbol.none +2024-09-08 15:10:01,970 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,970 [main] TRACE UmlAttribute - created (1352) WG13 CIM literal <> Domain::UnitSymbol.Hz +2024-09-08 15:10:01,970 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,970 [main] TRACE UmlAttribute - created (1353) WG13 CIM literal <> Domain::UnitSymbol.g +2024-09-08 15:10:01,970 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,970 [main] TRACE UmlAttribute - created (1354) WG13 CIM literal <> Domain::UnitSymbol.Pa +2024-09-08 15:10:01,970 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,970 [main] TRACE UmlAttribute - created (1355) WG13 CIM literal <> Domain::UnitSymbol.m +2024-09-08 15:10:01,970 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,970 [main] TRACE UmlAttribute - created (1356) WG13 CIM literal <> Domain::UnitSymbol.m2 +2024-09-08 15:10:01,970 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,970 [main] TRACE UmlAttribute - created (1357) WG13 CIM literal <> Domain::UnitSymbol.m3 +2024-09-08 15:10:01,970 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,970 [main] TRACE UmlAttribute - created (1358) WG13 CIM literal <> Domain::UnitSymbol.V/VAr +2024-09-08 15:10:01,970 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,970 [main] TRACE UmlAttribute - created (1359) WG13 CIM literal <> Domain::UnitSymbol.W/Hz +2024-09-08 15:10:01,970 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,970 [main] TRACE UmlAttribute - created (1360) WG13 CIM literal <> Domain::UnitSymbol.J/s +2024-09-08 15:10:01,970 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,970 [main] TRACE UmlAttribute - created (1361) WG13 CIM literal <> Domain::UnitSymbol.s-1 +2024-09-08 15:10:01,970 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,971 [main] TRACE UmlAttribute - created (1362) WG13 CIM literal <> Domain::UnitSymbol.kg/J +2024-09-08 15:10:01,971 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,971 [main] TRACE UmlAttribute - created (1363) WG13 CIM literal <> Domain::UnitSymbol.W/s +2024-09-08 15:10:01,971 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,971 [main] TRACE UmlAttribute - created (1364) WG13 CIM literal <> Domain::UnitSymbol.Hz-1 +2024-09-08 15:10:01,971 [main] TRACE UmlClass - created (602) WG13 CIM datatype <> Domain::Voltage +2024-09-08 15:10:01,971 [main] TRACE UmlClass - created (1533) WG13 CIM enumeration <> Domain::WithSingleLiteral +2024-09-08 15:10:01,971 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,971 [main] TRACE UmlAttribute - created (3289) WG13 CIM literal <> Domain::WithSingleLiteral.singleLiteral +2024-09-08 15:10:01,971 [main] TRACE UmlClass - created (1540) WG13 CIM enumeration <> Domain::YesNo +2024-09-08 15:10:01,971 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,971 [main] TRACE UmlAttribute - created (3299) WG13 CIM literal <> Domain::YesNo.Yes +2024-09-08 15:10:01,971 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,971 [main] TRACE UmlAttribute - created (3300) WG13 CIM literal <> Domain::YesNo.No +2024-09-08 15:10:01,971 [main] TRACE UmlClass - created (858) WG13 CIM private enumeration <> Core::BreakerConfiguration +2024-09-08 15:10:01,971 [main] TRACE UmlSkipped - created (3467) WG13 CIM note link BreakerConfiguration. - ? - ? +2024-09-08 15:10:01,971 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,971 [main] TRACE UmlAttribute - created (2073) WG13 CIM literal <> Core::BreakerConfiguration.singleBreaker +2024-09-08 15:10:01,973 [main] TRACE UmlConstraint - created attribute index constraint Core::BreakerConfiguration.singleBreaker {singleBreakerConstraintNoType = text} +2024-09-08 15:10:01,973 [main] TRACE UmlConstraint - created attribute index constraint Core::BreakerConfiguration.singleBreaker {processContstraint = process constraint text} +2024-09-08 15:10:01,973 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,973 [main] TRACE UmlAttribute - created (2074) WG13 CIM literal <> Core::BreakerConfiguration.breakerAndAHalf +2024-09-08 15:10:01,973 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,973 [main] TRACE UmlAttribute - created (2075) WG13 CIM literal <> Core::BreakerConfiguration.doubleBreaker +2024-09-08 15:10:01,973 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,973 [main] TRACE UmlAttribute - created (2076) WG13 CIM literal <> Core::BreakerConfiguration.noBreaker +2024-09-08 15:10:01,973 [main] TRACE UmlClass - created (878) WG13 CIM protected enumeration <> Core::BusbarConfiguration +2024-09-08 15:10:01,973 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,973 [main] TRACE UmlAttribute - created (2110) WG13 CIM literal <> Core::BusbarConfiguration.singleBus +2024-09-08 15:10:01,973 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,973 [main] TRACE UmlAttribute - created (2111) WG13 CIM literal <> Core::BusbarConfiguration.doubleBus +2024-09-08 15:10:01,973 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,973 [main] TRACE UmlAttribute - created (2112) WG13 CIM literal <> Core::BusbarConfiguration.mainWithTransfer +2024-09-08 15:10:01,974 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,974 [main] TRACE UmlAttribute - created (2113) WG13 CIM literal <> Core::BusbarConfiguration.ringBus +2024-09-08 15:10:01,974 [main] TRACE UmlClass - created (876) WG13 CIM root class <> Core::OperatingShare +2024-09-08 15:10:01,974 [main] TRACE UmlSkipped - created (3468) WG13 CIM note link OperatingShare. - ? - ? +2024-09-08 15:10:01,974 [main] TRACE UmlClass - created (856) WG13 CIM enumeration <> Core::PhaseCode +2024-09-08 15:10:01,974 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,974 [main] TRACE UmlAttribute - created (2054) WG13 CIM literal <> Core::PhaseCode.ABCN +2024-09-08 15:10:01,974 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,974 [main] TRACE UmlAttribute - created (2055) WG13 CIM literal <> Core::PhaseCode.ABC +2024-09-08 15:10:01,974 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,974 [main] TRACE UmlAttribute - created (2056) WG13 CIM literal <> Core::PhaseCode.ABN +2024-09-08 15:10:01,974 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,974 [main] TRACE UmlAttribute - created (2057) WG13 CIM literal <> Core::PhaseCode.ACN +2024-09-08 15:10:01,974 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,974 [main] TRACE UmlAttribute - created (2058) WG13 CIM literal <> Core::PhaseCode.BCN +2024-09-08 15:10:01,974 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,974 [main] TRACE UmlAttribute - created (2059) WG13 CIM literal <> Core::PhaseCode.AB +2024-09-08 15:10:01,974 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,974 [main] TRACE UmlAttribute - created (2060) WG13 CIM literal <> Core::PhaseCode.AC +2024-09-08 15:10:01,974 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,974 [main] TRACE UmlAttribute - created (2061) WG13 CIM literal <> Core::PhaseCode.BC +2024-09-08 15:10:01,974 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,974 [main] TRACE UmlAttribute - created (2062) WG13 CIM literal <> Core::PhaseCode.AN +2024-09-08 15:10:01,974 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,974 [main] TRACE UmlAttribute - created (2063) WG13 CIM literal <> Core::PhaseCode.BN +2024-09-08 15:10:01,974 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,974 [main] TRACE UmlAttribute - created (2064) WG13 CIM literal <> Core::PhaseCode.CN +2024-09-08 15:10:01,975 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,975 [main] TRACE UmlAttribute - created (2065) WG13 CIM literal <> Core::PhaseCode.A +2024-09-08 15:10:01,975 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,975 [main] TRACE UmlAttribute - created (2066) WG13 CIM literal <> Core::PhaseCode.B +2024-09-08 15:10:01,975 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,975 [main] TRACE UmlAttribute - created (2067) WG13 CIM literal <> Core::PhaseCode.C +2024-09-08 15:10:01,975 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,975 [main] TRACE UmlAttribute - created (2068) WG13 CIM literal <> Core::PhaseCode.N +2024-09-08 15:10:01,975 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,975 [main] TRACE UmlAttribute - created (3246) WG13 CIM literal <> Core::PhaseCode.splitSecondary1N +2024-09-08 15:10:01,975 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,975 [main] TRACE UmlAttribute - created (3247) WG13 CIM literal <> Core::PhaseCode.splitSecondary2N +2024-09-08 15:10:01,975 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,975 [main] TRACE UmlAttribute - created (3248) WG13 CIM literal <> Core::PhaseCode.splitSecondary12N +2024-09-08 15:10:01,975 [main] TRACE UmlClass - created (851) WG13 CIM root class Core::IdentifiedObject +2024-09-08 15:10:01,975 [main] TRACE UmlClass - created (1513) WG13 CIM enumeration <> Topology::TestEnum +2024-09-08 15:10:01,975 [main] TRACE ValueRange - 'initial J/m²' has no separator indicating range. +2024-09-08 15:10:01,975 [main] TRACE UmlAttribute - created (3282) WG13 CIM literal <> Topology::TestEnum.J/m² = initial J/m² +2024-09-08 15:10:01,975 [main] TRACE ValueRange - 'initial µ' has no separator indicating range. +2024-09-08 15:10:01,975 [main] TRACE UmlAttribute - created (3283) WG13 CIM literal <> Topology::TestEnum.µ = initial µ +2024-09-08 15:10:01,975 [main] TRACE UmlClass - created (3045) WG13 CIM enumeration <> TestEnums::EnumWithSomeIntCodes +2024-09-08 15:10:01,975 [main] TRACE UmlSkipped - created (3428) WG13 CIM note link EnumWithSomeIntCodes. - ? - ? +2024-09-08 15:10:01,976 [main] TRACE ValueRange - '10' has no separator indicating range. +2024-09-08 15:10:01,976 [main] TRACE UmlAttribute - created (6663) WG13 CIM literal <> TestEnums::EnumWithSomeIntCodes.lit10 = 10 +2024-09-08 15:10:01,976 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,976 [main] TRACE UmlAttribute - created (6664) WG13 CIM literal <> TestEnums::EnumWithSomeIntCodes.lit20noCode +2024-09-08 15:10:01,976 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-08 15:10:01,976 [main] TRACE UmlAttribute - created (6665) WG13 CIM literal <> TestEnums::EnumWithSomeIntCodes.lit30 = 3 +2024-09-08 15:10:01,976 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-08 15:10:01,976 [main] TRACE UmlAttribute - created (6666) WG13 CIM literal <> TestEnums::EnumWithSomeIntCodes.lit40 = 4 +2024-09-08 15:10:01,976 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 15:10:01,976 [main] TRACE UmlAttribute - created (6667) WG13 CIM literal <> TestEnums::EnumWithSomeIntCodes.lit50 = 1 +2024-09-08 15:10:01,976 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,976 [main] TRACE UmlAttribute - created (6668) WG13 CIM literal <> TestEnums::EnumWithSomeIntCodes.lit60noCode +2024-09-08 15:10:01,976 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-08 15:10:01,976 [main] TRACE UmlAttribute - created (6669) WG13 CIM literal <> TestEnums::EnumWithSomeIntCodes.lit70 = 2 +2024-09-08 15:10:01,976 [main] TRACE UmlClass - created (3047) WG13 CIM enumeration <> TestEnums::EnumWithStringCodes +2024-09-08 15:10:01,976 [main] TRACE UmlSkipped - created (3429) WG13 CIM note link EnumWithStringCodes. - ? - ? +2024-09-08 15:10:01,976 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 15:10:01,976 [main] TRACE UmlAttribute - created (6670) WG13 CIM literal <> TestEnums::EnumWithStringCodes.str1 = 1 +2024-09-08 15:10:01,976 [main] TRACE ValueRange - 'some string' has no separator indicating range. +2024-09-08 15:10:01,976 [main] TRACE UmlAttribute - created (6671) WG13 CIM literal <> TestEnums::EnumWithStringCodes.str2 = some string +2024-09-08 15:10:01,976 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,976 [main] TRACE UmlAttribute - created (6672) WG13 CIM literal <> TestEnums::EnumWithStringCodes.str3noCode +2024-09-08 15:10:01,976 [main] TRACE ValueRange - '3.14' has no separator indicating range. +2024-09-08 15:10:01,976 [main] TRACE UmlAttribute - created (6673) WG13 CIM literal <> TestEnums::EnumWithStringCodes.str4 = 3.14 +2024-09-08 15:10:01,976 [main] TRACE ValueRange - 'another string' has no separator indicating range. +2024-09-08 15:10:01,976 [main] TRACE UmlAttribute - created (6674) WG13 CIM literal <> TestEnums::EnumWithStringCodes.str5 = another string +2024-09-08 15:10:01,976 [main] TRACE UmlClass - created (3049) WG13 CIM enumeration <> TestEnums::EnumWithNonUniqueCodes +2024-09-08 15:10:01,977 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 15:10:01,977 [main] TRACE UmlAttribute - created (6675) WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c1 = 1 +2024-09-08 15:10:01,977 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 15:10:01,977 [main] TRACE UmlAttribute - created (6676) WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c2 = 1 +2024-09-08 15:10:01,977 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-08 15:10:01,977 [main] TRACE UmlAttribute - created (6677) WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c3 = 3 +2024-09-08 15:10:01,977 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-08 15:10:01,977 [main] TRACE UmlAttribute - created (6678) WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c4 = 4 +2024-09-08 15:10:01,977 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 15:10:01,977 [main] TRACE UmlAttribute - created (6679) WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c5 = 1 +2024-09-08 15:10:01,977 [main] TRACE ValueRange - '6' has no separator indicating range. +2024-09-08 15:10:01,977 [main] TRACE UmlAttribute - created (6680) WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c6 = 6 +2024-09-08 15:10:01,977 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-08 15:10:01,977 [main] TRACE UmlAttribute - created (6681) WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c7 = 4 +2024-09-08 15:10:01,977 [main] TRACE ValueRange - '8' has no separator indicating range. +2024-09-08 15:10:01,977 [main] TRACE UmlAttribute - created (6682) WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c8 = 8 +2024-09-08 15:10:01,977 [main] TRACE UmlClass - created (1452) WG14 CIM root class IEC61968::IEC61968Version +2024-09-08 15:10:01,977 [main] TRACE UmlClass - created (1546) WG14 CIM root class Assets::AssetInfo +2024-09-08 15:10:01,977 [main] TRACE UmlClass - created (1467) WG14 CIM datatype <> Other::BadDatatypes +2024-09-08 15:10:01,977 [main] TRACE UmlClass - created (1472) WG14 CIM root class Other::Equipment +2024-09-08 15:10:01,977 [main] TRACE UmlSkipped - created (2112) WG14 CIM note link Equipment. - ? - ? +2024-09-08 15:10:01,977 [main] TRACE UmlSkipped - created (3456) WG14 CIM note link Equipment. - ? - ? +2024-09-08 15:10:01,977 [main] TRACE UmlClass - created (1474) WG14 CIM root class Other::MyClass +2024-09-08 15:10:01,977 [main] TRACE UmlSkipped - created (2113) WG14 CIM note link MyClass. - ? - ? +2024-09-08 15:10:01,977 [main] TRACE UmlClass - created (1480) WG14 CIM enumeration <> Other::EmptyEnum +2024-09-08 15:10:01,977 [main] TRACE UmlClass - created (1481) WG14 CIM primitive <> Other::NonEmptyPrimitive +2024-09-08 15:10:01,977 [main] TRACE UmlClass - created (1537) WG14 CIM datatype <> Other::AnotherBadDatatype +2024-09-08 15:10:01,977 [main] TRACE UmlClass - created (1538) WG14 CIM compound <> Other::EmptyCompound +2024-09-08 15:10:01,978 [main] TRACE UmlClass - created (1555) WG10 IEC61850 other 61850 WG10::WG10UMLVersion +2024-09-08 15:10:01,979 [main] TRACE UmlClass - created (1586) WG10 IEC61850 unknown 61850 <> GenericModel::CommAddress +2024-09-08 15:10:01,979 [main] TRACE UmlClass - created (1588) WG10 IEC61850 unknown 61850 <> GenericModel::GenAssociationID +2024-09-08 15:10:01,979 [main] TRACE UmlClass - created (1597) WG10 IEC61850 enumeration <> GenericModel::GenFC +2024-09-08 15:10:01,979 [main] TRACE UmlClass - created (1609) WG10 IEC61850 enumeration <> GenericModel::GenPresenceConditions +2024-09-08 15:10:01,979 [main] TRACE UmlSkipped - created (2173) WG10 IEC61850 note link GenPresenceConditions. - ? - ? +2024-09-08 15:10:01,979 [main] TRACE UmlClass - created (1614) WG10 IEC61850 unknown 61850 <> GenericModel::GenTimeStamp +2024-09-08 15:10:01,980 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1585) WG10 IEC61850 null GenericModel::AccessPoint +2024-09-08 15:10:01,980 [main] TRACE UmlClass - created (1585) WG10 IEC61850 other 61850 GenericModel::AccessPoint +2024-09-08 15:10:01,980 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1587) WG10 IEC61850 null GenericModel::FileSystem +2024-09-08 15:10:01,980 [main] TRACE UmlClass - created (1587) WG10 IEC61850 other 61850 GenericModel::FileSystem +2024-09-08 15:10:01,980 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1589) WG10 IEC61850 null GenericModel::GenAtomicType +2024-09-08 15:10:01,980 [main] TRACE UmlClass - created (1589) WG10 IEC61850 other 61850 GenericModel::GenAtomicType +2024-09-08 15:10:01,980 [main] TRACE UmlSkipped - created (2177) WG10 IEC61850 note link GenAtomicType. - ? - ? +2024-09-08 15:10:01,980 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1590) WG10 IEC61850 null GenericModel::GenBOOLEAN +2024-09-08 15:10:01,981 [main] TRACE UmlClass - created (1590) WG10 IEC61850 other 61850 GenericModel::GenBOOLEAN +2024-09-08 15:10:01,981 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1591) WG10 IEC61850 null GenericModel::GenCommonDataClass +2024-09-08 15:10:01,981 [main] TRACE UmlClass - created (1591) WG10 IEC61850 other 61850 GenericModel::GenCommonDataClass +2024-09-08 15:10:01,981 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1592) WG10 IEC61850 null GenericModel::GenCompactType +2024-09-08 15:10:01,981 [main] TRACE UmlClass - created (1592) WG10 IEC61850 other 61850 GenericModel::GenCompactType +2024-09-08 15:10:01,981 [main] TRACE UmlSkipped - created (2172) WG10 IEC61850 note link GenCompactType. - ? - ? +2024-09-08 15:10:01,981 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1593) WG10 IEC61850 null GenericModel::GenConstructedType +2024-09-08 15:10:01,981 [main] TRACE UmlClass - created (1593) WG10 IEC61850 other 61850 GenericModel::GenConstructedType +2024-09-08 15:10:01,981 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1594) WG10 IEC61850 null GenericModel::GenDataAttribute +2024-09-08 15:10:01,982 [main] TRACE UmlClass - created (1594) WG10 IEC61850 other 61850 GenericModel::GenDataAttribute +2024-09-08 15:10:01,982 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1595) WG10 IEC61850 null GenericModel::GenDataObject +2024-09-08 15:10:01,982 [main] TRACE UmlClass - created (1595) WG10 IEC61850 other 61850 GenericModel::GenDataObject +2024-09-08 15:10:01,982 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1596) WG10 IEC61850 null GenericModel::GenDataSet +2024-09-08 15:10:01,982 [main] TRACE UmlClass - created (1596) WG10 IEC61850 other 61850 GenericModel::GenDataSet +2024-09-08 15:10:01,982 [main] TRACE UmlSkipped - created (2175) WG10 IEC61850 note link GenDataSet. - ? - ? +2024-09-08 15:10:01,983 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1598) WG10 IEC61850 null GenericModel::GenFCD +2024-09-08 15:10:01,983 [main] TRACE UmlClass - created (1598) WG10 IEC61850 other 61850 GenericModel::GenFCD +2024-09-08 15:10:01,983 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1599) WG10 IEC61850 null GenericModel::GenFCDA +2024-09-08 15:10:01,983 [main] TRACE UmlClass - created (1599) WG10 IEC61850 other 61850 GenericModel::GenFCDA +2024-09-08 15:10:01,984 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1600) WG10 IEC61850 null GenericModel::GenFile +2024-09-08 15:10:01,984 [main] TRACE UmlClass - created (1600) WG10 IEC61850 other 61850 GenericModel::GenFile +2024-09-08 15:10:01,984 [main] TRACE UmlSkipped - created (2174) WG10 IEC61850 note link GenFile. - ? - ? +2024-09-08 15:10:01,984 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1601) WG10 IEC61850 null GenericModel::GenIED +2024-09-08 15:10:01,984 [main] TRACE UmlClass - created (1601) WG10 IEC61850 other 61850 GenericModel::GenIED +2024-09-08 15:10:01,984 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1602) WG10 IEC61850 null GenericModel::GenINT32U +2024-09-08 15:10:01,984 [main] TRACE UmlClass - created (1602) WG10 IEC61850 other 61850 GenericModel::GenINT32U +2024-09-08 15:10:01,985 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1604) WG10 IEC61850 null GenericModel::GenLogicalDevice +2024-09-08 15:10:01,985 [main] TRACE UmlClass - created (1604) WG10 IEC61850 other 61850 GenericModel::GenLogicalDevice +2024-09-08 15:10:01,985 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1605) WG10 IEC61850 null GenericModel::GenLogicalNode +2024-09-08 15:10:01,985 [main] TRACE UmlClass - created (1605) WG10 IEC61850 other 61850 GenericModel::GenLogicalNode +2024-09-08 15:10:01,985 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1606) WG10 IEC61850 null GenericModel::GenMCAA +2024-09-08 15:10:01,986 [main] TRACE UmlClass - created (1606) WG10 IEC61850 other 61850 GenericModel::GenMCAA +2024-09-08 15:10:01,986 [main] TRACE UmlSkipped - created (2179) WG10 IEC61850 note link GenMCAA. - ? - ? +2024-09-08 15:10:01,986 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1607) WG10 IEC61850 null GenericModel::GenObjRef +2024-09-08 15:10:01,986 [main] TRACE UmlClass - created (1607) WG10 IEC61850 other 61850 GenericModel::GenObjRef +2024-09-08 15:10:01,986 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1608) WG10 IEC61850 null GenericModel::GenObjectName +2024-09-08 15:10:01,986 [main] TRACE UmlClass - created (1608) WG10 IEC61850 other 61850 GenericModel::GenObjectName +2024-09-08 15:10:01,986 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1610) WG10 IEC61850 null GenericModel::GenServer +2024-09-08 15:10:01,986 [main] TRACE UmlClass - created (1610) WG10 IEC61850 other 61850 GenericModel::GenServer +2024-09-08 15:10:01,987 [main] TRACE UmlSkipped - created (2176) WG10 IEC61850 note link GenServer. - ? - ? +2024-09-08 15:10:01,987 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1611) WG10 IEC61850 null GenericModel::GenSubDataAttribute +2024-09-08 15:10:01,987 [main] TRACE UmlClass - created (1611) WG10 IEC61850 other 61850 GenericModel::GenSubDataAttribute +2024-09-08 15:10:01,987 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1612) WG10 IEC61850 null GenericModel::GenSubDataObject +2024-09-08 15:10:01,987 [main] TRACE UmlClass - created (1612) WG10 IEC61850 other 61850 GenericModel::GenSubDataObject +2024-09-08 15:10:01,987 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1613) WG10 IEC61850 null GenericModel::GenTPAA +2024-09-08 15:10:01,987 [main] TRACE UmlClass - created (1613) WG10 IEC61850 other 61850 GenericModel::GenTPAA +2024-09-08 15:10:01,987 [main] TRACE UmlSkipped - created (2178) WG10 IEC61850 note link GenTPAA. - ? - ? +2024-09-08 15:10:01,987 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1615) WG10 IEC61850 null GenericModel::GenTriggerConditions +2024-09-08 15:10:01,987 [main] TRACE UmlClass - created (1615) WG10 IEC61850 other 61850 GenericModel::GenTriggerConditions +2024-09-08 15:10:01,987 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1616) WG10 IEC61850 null GenericModel::GenVisString255 +2024-09-08 15:10:01,988 [main] TRACE UmlClass - created (1616) WG10 IEC61850 other 61850 GenericModel::GenVisString255 +2024-09-08 15:10:01,988 [main] TRACE UmlClass - created (1547) WG10 IEC61850 other 61850 IEC61850_7_2::IEC61850_7_2Namespace +2024-09-08 15:10:01,988 [main] TRACE UmlClass - created (1631) WG10 IEC61850 enumeration <> FunctionalConstraints::FcKind +2024-09-08 15:10:01,988 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,988 [main] TRACE UmlAttribute - created (3356) WG10 IEC61850 literal <> FunctionalConstraints::FcKind.ST +2024-09-08 15:10:01,988 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,988 [main] TRACE UmlAttribute - created (3357) WG10 IEC61850 literal <> FunctionalConstraints::FcKind.MX +2024-09-08 15:10:01,988 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,988 [main] TRACE UmlAttribute - created (3358) WG10 IEC61850 literal <> FunctionalConstraints::FcKind.SP +2024-09-08 15:10:01,988 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,989 [main] TRACE UmlAttribute - created (3359) WG10 IEC61850 literal <> FunctionalConstraints::FcKind.SV +2024-09-08 15:10:01,989 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,989 [main] TRACE UmlAttribute - created (3360) WG10 IEC61850 literal <> FunctionalConstraints::FcKind.CF +2024-09-08 15:10:01,989 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,989 [main] TRACE UmlAttribute - created (3361) WG10 IEC61850 literal <> FunctionalConstraints::FcKind.DC +2024-09-08 15:10:01,989 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,989 [main] TRACE UmlAttribute - created (3362) WG10 IEC61850 literal <> FunctionalConstraints::FcKind.SG +2024-09-08 15:10:01,989 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,989 [main] TRACE UmlAttribute - created (3363) WG10 IEC61850 literal <> FunctionalConstraints::FcKind.SE +2024-09-08 15:10:01,989 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,989 [main] TRACE UmlAttribute - created (3364) WG10 IEC61850 literal <> FunctionalConstraints::FcKind.SR +2024-09-08 15:10:01,989 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,989 [main] TRACE UmlAttribute - created (3365) WG10 IEC61850 literal <> FunctionalConstraints::FcKind.OR +2024-09-08 15:10:01,989 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,990 [main] TRACE UmlAttribute - created (3366) WG10 IEC61850 literal <> FunctionalConstraints::FcKind.BL +2024-09-08 15:10:01,990 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,990 [main] TRACE UmlAttribute - created (3367) WG10 IEC61850 literal <> FunctionalConstraints::FcKind.EX +2024-09-08 15:10:01,990 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,990 [main] TRACE UmlAttribute - created (3368) WG10 IEC61850 literal <> FunctionalConstraints::FcKind.XX +2024-09-08 15:10:01,990 [main] TRACE UmlClass - created (1633) WG10 IEC61850 enumeration <> TriggerOptions::TrgOpKind +2024-09-08 15:10:01,991 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,991 [main] TRACE UmlAttribute - created (3369) WG10 IEC61850 literal <> TriggerOptions::TrgOpKind.dchg +2024-09-08 15:10:01,991 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,991 [main] TRACE UmlAttribute - created (3370) WG10 IEC61850 literal <> TriggerOptions::TrgOpKind.qchg +2024-09-08 15:10:01,991 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,991 [main] TRACE UmlAttribute - created (3371) WG10 IEC61850 literal <> TriggerOptions::TrgOpKind.dupd +2024-09-08 15:10:01,991 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,991 [main] TRACE UmlAttribute - created (3372) WG10 IEC61850 literal <> TriggerOptions::TrgOpKind.dchg, dupd +2024-09-08 15:10:01,991 [main] TRACE UmlClass - created (1635) WG10 IEC61850 coded enumeration <> ACSIEnums::BsControlKind +2024-09-08 15:10:01,991 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-08 15:10:01,991 [main] TRACE UmlAttribute - created (3373) WG10 IEC61850 coded literal <> ACSIEnums::BsControlKind.stop = 0 +2024-09-08 15:10:01,991 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 15:10:01,991 [main] TRACE UmlAttribute - created (3374) WG10 IEC61850 coded literal <> ACSIEnums::BsControlKind.lower = 1 +2024-09-08 15:10:01,992 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-08 15:10:01,992 [main] TRACE UmlAttribute - created (3375) WG10 IEC61850 coded literal <> ACSIEnums::BsControlKind.higher = 2 +2024-09-08 15:10:01,992 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-08 15:10:01,992 [main] TRACE UmlAttribute - created (3376) WG10 IEC61850 coded literal <> ACSIEnums::BsControlKind.reserved = 3 +2024-09-08 15:10:01,992 [main] TRACE UmlClass - created (1636) WG10 IEC61850 coded enumeration <> ACSIEnums::DpStatusKind +2024-09-08 15:10:01,992 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-08 15:10:01,992 [main] TRACE UmlAttribute - created (3377) WG10 IEC61850 coded literal <> ACSIEnums::DpStatusKind.intermediateState = 0 +2024-09-08 15:10:01,992 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 15:10:01,992 [main] TRACE UmlAttribute - created (3378) WG10 IEC61850 coded literal <> ACSIEnums::DpStatusKind.offOrFalse = 1 +2024-09-08 15:10:01,992 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-08 15:10:01,992 [main] TRACE UmlAttribute - created (3379) WG10 IEC61850 coded literal <> ACSIEnums::DpStatusKind.onOrTrue = 2 +2024-09-08 15:10:01,992 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-08 15:10:01,992 [main] TRACE UmlAttribute - created (3380) WG10 IEC61850 coded literal <> ACSIEnums::DpStatusKind.badState = 3 +2024-09-08 15:10:01,992 [main] TRACE UmlClass - created (1653) WG10 IEC61850 basic <> CoreTypes::P_BOOLEAN +2024-09-08 15:10:01,992 [main] TRACE UmlClass - created (1659) WG10 IEC61850 basic <> CoreTypes::P_INT16U +2024-09-08 15:10:01,992 [main] TRACE UmlClass - created (1656) WG10 IEC61850 basic <> CoreTypes::P_INT32 +2024-09-08 15:10:01,992 [main] TRACE UmlClass - created (1661) WG10 IEC61850 basic <> CoreTypes::P_INT32U +2024-09-08 15:10:01,992 [main] TRACE UmlClass - created (1662) WG10 IEC61850 basic <> CoreTypes::P_FLOAT32 +2024-09-08 15:10:01,992 [main] TRACE UmlClass - created (1663) WG10 IEC61850 basic <> CoreTypes::P_UNICODE_STRING255 +2024-09-08 15:10:01,992 [main] TRACE UmlClass - created (1667) WG10 IEC61850 basic <> CoreTypes::P_VISIBLE_STRING255 +2024-09-08 15:10:01,992 [main] TRACE UmlClass - created (1668) WG10 IEC61850 basic <> CoreTypes::ObjectName +2024-09-08 15:10:01,992 [main] TRACE UmlClass - created (1669) WG10 IEC61850 abstract class basic <> CoreTypes::P_ObjectReference +2024-09-08 15:10:01,992 [main] TRACE UmlClass - created (1670) WG10 IEC61850 basic <> CoreTypes::P_PHYCOMADDR +2024-09-08 15:10:01,992 [main] TRACE UmlClass - created (1671) WG10 IEC61850 packed list <> CoreTypes::P_TimeStamp +2024-09-08 15:10:01,993 [main] TRACE UmlClass - created (1672) WG10 IEC61850 packed list <> CoreTypes::TimeQuality +2024-09-08 15:10:01,993 [main] TRACE UmlClass - created (1673) WG10 IEC61850 coded enumeration <> CoreTypes::TimeAccuracyKind +2024-09-08 15:10:01,993 [main] TRACE ValueRange - '7' has no separator indicating range. +2024-09-08 15:10:01,993 [main] TRACE UmlAttribute - created (3390) WG10 IEC61850 coded literal <> CoreTypes::TimeAccuracyKind.T0 = 7 +2024-09-08 15:10:01,993 [main] TRACE ValueRange - '10' has no separator indicating range. +2024-09-08 15:10:01,993 [main] TRACE UmlAttribute - created (3391) WG10 IEC61850 coded literal <> CoreTypes::TimeAccuracyKind.T1 = 10 +2024-09-08 15:10:01,993 [main] TRACE ValueRange - '14' has no separator indicating range. +2024-09-08 15:10:01,993 [main] TRACE UmlAttribute - created (3392) WG10 IEC61850 coded literal <> CoreTypes::TimeAccuracyKind.T2 = 14 +2024-09-08 15:10:01,993 [main] TRACE ValueRange - '16' has no separator indicating range. +2024-09-08 15:10:01,993 [main] TRACE UmlAttribute - created (3393) WG10 IEC61850 coded literal <> CoreTypes::TimeAccuracyKind.T3 = 16 +2024-09-08 15:10:01,993 [main] TRACE ValueRange - '18' has no separator indicating range. +2024-09-08 15:10:01,993 [main] TRACE UmlAttribute - created (3394) WG10 IEC61850 coded literal <> CoreTypes::TimeAccuracyKind.T4 = 18 +2024-09-08 15:10:01,993 [main] TRACE ValueRange - '20' has no separator indicating range. +2024-09-08 15:10:01,993 [main] TRACE UmlAttribute - created (3395) WG10 IEC61850 coded literal <> CoreTypes::TimeAccuracyKind.T5 = 20 +2024-09-08 15:10:01,993 [main] TRACE ValueRange - '31' has no separator indicating range. +2024-09-08 15:10:01,993 [main] TRACE UmlAttribute - created (3396) WG10 IEC61850 coded literal <> CoreTypes::TimeAccuracyKind.unspecified = 31 +2024-09-08 15:10:01,994 [main] TRACE UmlClass - created (1674) WG10 IEC61850 packed list <> CoreTypes::P_TriggerConditions +2024-09-08 15:10:01,994 [main] TRACE UmlClass - created (1699) WG10 IEC61850 enumeration <> ObjectReferences::ServiceFcKind +2024-09-08 15:10:01,994 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,994 [main] TRACE UmlAttribute - created (3416) WG10 IEC61850 literal <> ObjectReferences::ServiceFcKind.SP +2024-09-08 15:10:01,994 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,994 [main] TRACE UmlAttribute - created (3417) WG10 IEC61850 literal <> ObjectReferences::ServiceFcKind.BR +2024-09-08 15:10:01,996 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,996 [main] TRACE UmlAttribute - created (3418) WG10 IEC61850 literal <> ObjectReferences::ServiceFcKind.RP +2024-09-08 15:10:01,996 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,996 [main] TRACE UmlAttribute - created (3419) WG10 IEC61850 literal <> ObjectReferences::ServiceFcKind.LG +2024-09-08 15:10:01,996 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,996 [main] TRACE UmlAttribute - created (3420) WG10 IEC61850 literal <> ObjectReferences::ServiceFcKind.GO +2024-09-08 15:10:01,996 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,996 [main] TRACE UmlAttribute - created (3421) WG10 IEC61850 literal <> ObjectReferences::ServiceFcKind.MS +2024-09-08 15:10:01,996 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,996 [main] TRACE UmlAttribute - created (3422) WG10 IEC61850 literal <> ObjectReferences::ServiceFcKind.US +2024-09-08 15:10:01,997 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,997 [main] TRACE UmlAttribute - created (3423) WG10 IEC61850 literal <> ObjectReferences::ServiceFcKind.XX +2024-09-08 15:10:01,997 [main] TRACE UmlClass - created (1714) WG10 IEC61850 enumeration <> AttrValues::AttrValueKind +2024-09-08 15:10:01,997 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,997 [main] TRACE UmlAttribute - created (3436) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_BOOLEAN +2024-09-08 15:10:01,997 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,997 [main] TRACE UmlAttribute - created (3437) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_INT8 +2024-09-08 15:10:01,997 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,997 [main] TRACE UmlAttribute - created (3438) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_INT8U +2024-09-08 15:10:01,997 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,997 [main] TRACE UmlAttribute - created (3439) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_INT16 +2024-09-08 15:10:01,997 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,997 [main] TRACE UmlAttribute - created (3440) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_INT16U +2024-09-08 15:10:01,997 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,997 [main] TRACE UmlAttribute - created (3441) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_INT24U +2024-09-08 15:10:01,997 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,998 [main] TRACE UmlAttribute - created (3442) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_INT32 +2024-09-08 15:10:01,998 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,998 [main] TRACE UmlAttribute - created (3443) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_INT32U +2024-09-08 15:10:01,998 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,998 [main] TRACE UmlAttribute - created (3444) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_INT64 +2024-09-08 15:10:01,998 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,998 [main] TRACE UmlAttribute - created (3445) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_FLOAT32 +2024-09-08 15:10:01,998 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,998 [main] TRACE UmlAttribute - created (3446) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_OCTET_STRING64 +2024-09-08 15:10:01,998 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,998 [main] TRACE UmlAttribute - created (3447) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_VISIBLE_STRING64 +2024-09-08 15:10:01,998 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,999 [main] TRACE UmlAttribute - created (3448) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_VISIBLE_STRING255 +2024-09-08 15:10:01,999 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,999 [main] TRACE UmlAttribute - created (3449) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_UNICODE_STRING255 +2024-09-08 15:10:01,999 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,999 [main] TRACE UmlAttribute - created (3450) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_TimeStamp +2024-09-08 15:10:01,999 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,999 [main] TRACE UmlAttribute - created (3451) WG10 IEC61850 literal <> AttrValues::AttrValueKind.Quality +2024-09-08 15:10:01,999 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,999 [main] TRACE UmlAttribute - created (3452) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_ObjectReference +2024-09-08 15:10:01,999 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,999 [main] TRACE UmlAttribute - created (3453) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_PHYCOMADDR +2024-09-08 15:10:01,999 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:01,999 [main] TRACE UmlAttribute - created (3454) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_TriggerConditions +2024-09-08 15:10:01,999 [main] DEBUG UmlClass - unclassified 7-2 class: (1715) WG10 IEC61850 abstract class null AttrValues::AttrValue +2024-09-08 15:10:01,999 [main] TRACE UmlClass - created (1715) WG10 IEC61850 abstract class other 61850 AttrValues::AttrValue +2024-09-08 15:10:01,999 [main] DEBUG UmlClass - unclassified 7-2 class: (1735) WG10 IEC61850 null AttrValues::AttrDefinition +2024-09-08 15:10:02,000 [main] TRACE UmlClass - created (1735) WG10 IEC61850 other 61850 AttrValues::AttrDefinition +2024-09-08 15:10:02,000 [main] DEBUG UmlClass - unclassified 7-2 class: (1736) WG10 IEC61850 null AttrValues::NamedAttrValue +2024-09-08 15:10:02,000 [main] TRACE UmlClass - created (1736) WG10 IEC61850 other 61850 AttrValues::NamedAttrValue +2024-09-08 15:10:02,000 [main] TRACE UmlClass - created (1770) WG10 IEC61850 basic <> CommonAcsiTypes::P_OCTET_STRING +2024-09-08 15:10:02,000 [main] DEBUG UmlClass - unclassified 7-2 class: (1771) WG10 IEC61850 null CommonAcsiTypes::IPAddress +2024-09-08 15:10:02,000 [main] TRACE UmlClass - created (1771) WG10 IEC61850 other 61850 CommonAcsiTypes::IPAddress +2024-09-08 15:10:02,000 [main] DEBUG UmlClass - unclassified 7-2 class: (1772) WG10 IEC61850 null CommonAcsiTypes::MulticastAddress +2024-09-08 15:10:02,000 [main] TRACE UmlClass - created (1772) WG10 IEC61850 other 61850 CommonAcsiTypes::MulticastAddress +2024-09-08 15:10:02,000 [main] DEBUG UmlClass - unclassified 7-2 class: (1773) WG10 IEC61850 null CommonAcsiTypes::Authentication +2024-09-08 15:10:02,000 [main] TRACE UmlClass - created (1773) WG10 IEC61850 other 61850 CommonAcsiTypes::Authentication +2024-09-08 15:10:02,000 [main] DEBUG UmlClass - unclassified 7-2 class: (1774) WG10 IEC61850 protected null CommonAcsiTypes::AccessView +2024-09-08 15:10:02,000 [main] TRACE UmlClass - created (1774) WG10 IEC61850 protected other 61850 CommonAcsiTypes::AccessView +2024-09-08 15:10:02,000 [main] TRACE UmlClass - created (1775) WG10 IEC61850 basic <> CommonAcsiTypes::ReportID +2024-09-08 15:10:02,000 [main] TRACE UmlClass - created (1776) WG10 IEC61850 basic <> CommonAcsiTypes::EntryID +2024-09-08 15:10:02,000 [main] TRACE UmlClass - created (1777) WG10 IEC61850 basic <> CommonAcsiTypes::EntryTime +2024-09-08 15:10:02,000 [main] DEBUG UmlClass - unclassified 7-2 class: (1835) WG10 IEC61850 abstract class null MetaModel::IEC61850Object +2024-09-08 15:10:02,000 [main] TRACE UmlClass - created (1835) WG10 IEC61850 abstract class other 61850 MetaModel::IEC61850Object +2024-09-08 15:10:02,000 [main] DEBUG UmlClass - unclassified 7-2 class: (1863) WG10 IEC61850 abstract class null MetaModel::SUBSTITUTION +2024-09-08 15:10:02,000 [main] TRACE UmlClass - created (1863) WG10 IEC61850 abstract class other 61850 MetaModel::SUBSTITUTION +2024-09-08 15:10:02,000 [main] DEBUG UmlClass - unclassified 7-2 class: (1875) WG10 IEC61850 abstract class null MetaModel::CONTROL +2024-09-08 15:10:02,000 [main] TRACE UmlClass - created (1875) WG10 IEC61850 abstract class other 61850 MetaModel::CONTROL +2024-09-08 15:10:02,000 [main] DEBUG UmlClass - unclassified 7-2 class: (1876) WG10 IEC61850 null MetaModel::TIME +2024-09-08 15:10:02,000 [main] TRACE UmlClass - created (1876) WG10 IEC61850 other 61850 MetaModel::TIME +2024-09-08 15:10:02,001 [main] TRACE UmlClass - created (1550) WG10 IEC61850 other 61850 IEC61850_7_3::IEC61850_7_3Namespace +2024-09-08 15:10:02,001 [main] TRACE UmlClass - created (2011) WG10 IEC61850 presence condition enumeration <> PresenceConditions::PresenceCondition +2024-09-08 15:10:02,001 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,001 [main] TRACE UmlAttribute - created (3644) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.M +2024-09-08 15:10:02,001 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,001 [main] TRACE UmlAttribute - created (3645) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.O +2024-09-08 15:10:02,001 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,001 [main] TRACE UmlAttribute - created (3646) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MFsubst +2024-09-08 15:10:02,001 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,001 [main] TRACE UmlAttribute - created (3647) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.AtLeastOne(n) +2024-09-08 15:10:02,001 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,001 [main] TRACE UmlAttribute - created (3648) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.AllOrNonePerGroup(n) +2024-09-08 15:10:02,001 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,001 [main] TRACE UmlAttribute - created (3649) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.AtMostOne +2024-09-08 15:10:02,001 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,001 [main] TRACE UmlAttribute - created (3650) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MF(sibling) +2024-09-08 15:10:02,001 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,001 [main] TRACE UmlAttribute - created (3651) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.AllOnlyOneGroup(n) +2024-09-08 15:10:02,001 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,001 [main] TRACE UmlAttribute - created (3652) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MOln0 +2024-09-08 15:10:02,001 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,001 [main] TRACE UmlAttribute - created (3653) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MFln0 +2024-09-08 15:10:02,001 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,001 [main] TRACE UmlAttribute - created (3654) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MOlnNs +2024-09-08 15:10:02,001 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,002 [main] TRACE UmlAttribute - created (3655) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MOdataNs +2024-09-08 15:10:02,002 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,002 [main] TRACE UmlAttribute - created (3656) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MOcdcNs +2024-09-08 15:10:02,002 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,002 [main] TRACE UmlAttribute - created (3657) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MFscaledAV +2024-09-08 15:10:02,002 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,002 [main] TRACE UmlAttribute - created (3658) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MFscaledMagV +2024-09-08 15:10:02,002 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,002 [main] TRACE UmlAttribute - created (3659) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MFscaledAngV +2024-09-08 15:10:02,002 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,002 [main] TRACE UmlAttribute - created (3660) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MFsg +2024-09-08 15:10:02,002 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,002 [main] TRACE UmlAttribute - created (3661) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.OFsg +2024-09-08 15:10:02,002 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,002 [main] TRACE UmlAttribute - created (3662) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MFsgAtLeastOne +2024-09-08 15:10:02,002 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,002 [main] TRACE UmlAttribute - created (3663) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MFnsg +2024-09-08 15:10:02,002 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,002 [main] TRACE UmlAttribute - created (3664) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.OFnsg +2024-09-08 15:10:02,002 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,002 [main] TRACE UmlAttribute - created (3665) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MFnsgAtLeastOne +2024-09-08 15:10:02,002 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,002 [main] TRACE UmlAttribute - created (3666) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MFrms +2024-09-08 15:10:02,003 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,003 [main] TRACE UmlAttribute - created (3667) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.Mmulti +2024-09-08 15:10:02,003 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,003 [main] TRACE UmlAttribute - created (3668) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.Omulti +2024-09-08 15:10:02,003 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,003 [main] TRACE UmlAttribute - created (3669) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.OmultiRange(min, max) +2024-09-08 15:10:02,003 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,003 [main] TRACE UmlAttribute - created (3670) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MOcond(condID) +2024-09-08 15:10:02,003 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,003 [main] TRACE UmlAttribute - created (3671) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MF(condID) +2024-09-08 15:10:02,003 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,003 [main] TRACE UmlAttribute - created (3672) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.OF(condID) +2024-09-08 15:10:02,003 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,003 [main] TRACE UmlAttribute - created (3673) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MOrootLD +2024-09-08 15:10:02,003 [main] TRACE UmlClass - created (2045) WG10 IEC61850 enumeration <> DAEnums::SIUnitKind +2024-09-08 15:10:02,003 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 15:10:02,003 [main] TRACE UmlAttribute - created (3834) WG10 IEC61850 literal <> DAEnums::SIUnitKind.none = 1 +2024-09-08 15:10:02,003 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-08 15:10:02,003 [main] TRACE UmlAttribute - created (3835) WG10 IEC61850 literal <> DAEnums::SIUnitKind.m = 2 +2024-09-08 15:10:02,004 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-08 15:10:02,004 [main] TRACE UmlAttribute - created (3836) WG10 IEC61850 literal <> DAEnums::SIUnitKind.kg = 3 +2024-09-08 15:10:02,004 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-08 15:10:02,004 [main] TRACE UmlAttribute - created (3837) WG10 IEC61850 literal <> DAEnums::SIUnitKind.s = 4 +2024-09-08 15:10:02,004 [main] TRACE ValueRange - '5' has no separator indicating range. +2024-09-08 15:10:02,004 [main] TRACE UmlAttribute - created (3838) WG10 IEC61850 literal <> DAEnums::SIUnitKind.A = 5 +2024-09-08 15:10:02,004 [main] TRACE ValueRange - '6' has no separator indicating range. +2024-09-08 15:10:02,004 [main] TRACE UmlAttribute - created (3839) WG10 IEC61850 literal <> DAEnums::SIUnitKind.K = 6 +2024-09-08 15:10:02,004 [main] TRACE ValueRange - '7' has no separator indicating range. +2024-09-08 15:10:02,004 [main] TRACE UmlAttribute - created (3840) WG10 IEC61850 literal <> DAEnums::SIUnitKind.mol = 7 +2024-09-08 15:10:02,004 [main] TRACE ValueRange - '8' has no separator indicating range. +2024-09-08 15:10:02,004 [main] TRACE UmlAttribute - created (3841) WG10 IEC61850 literal <> DAEnums::SIUnitKind.cd = 8 +2024-09-08 15:10:02,004 [main] TRACE ValueRange - '9' has no separator indicating range. +2024-09-08 15:10:02,004 [main] TRACE UmlAttribute - created (3842) WG10 IEC61850 literal <> DAEnums::SIUnitKind.deg = 9 +2024-09-08 15:10:02,004 [main] TRACE ValueRange - '10' has no separator indicating range. +2024-09-08 15:10:02,004 [main] TRACE UmlAttribute - created (3843) WG10 IEC61850 literal <> DAEnums::SIUnitKind.rad = 10 +2024-09-08 15:10:02,004 [main] TRACE ValueRange - '11' has no separator indicating range. +2024-09-08 15:10:02,004 [main] TRACE UmlAttribute - created (3844) WG10 IEC61850 literal <> DAEnums::SIUnitKind.sr = 11 +2024-09-08 15:10:02,004 [main] TRACE ValueRange - '21' has no separator indicating range. +2024-09-08 15:10:02,004 [main] TRACE UmlAttribute - created (3845) WG10 IEC61850 literal <> DAEnums::SIUnitKind.Gy = 21 +2024-09-08 15:10:02,004 [main] TRACE ValueRange - '22' has no separator indicating range. +2024-09-08 15:10:02,004 [main] TRACE UmlAttribute - created (3846) WG10 IEC61850 literal <> DAEnums::SIUnitKind.Bq = 22 +2024-09-08 15:10:02,004 [main] TRACE ValueRange - '23' has no separator indicating range. +2024-09-08 15:10:02,004 [main] TRACE UmlAttribute - created (3847) WG10 IEC61850 literal <> DAEnums::SIUnitKind.°C = 23 +2024-09-08 15:10:02,004 [main] TRACE ValueRange - '24' has no separator indicating range. +2024-09-08 15:10:02,004 [main] TRACE UmlAttribute - created (3848) WG10 IEC61850 literal <> DAEnums::SIUnitKind.Sv = 24 +2024-09-08 15:10:02,004 [main] TRACE ValueRange - '25' has no separator indicating range. +2024-09-08 15:10:02,004 [main] TRACE UmlAttribute - created (3849) WG10 IEC61850 literal <> DAEnums::SIUnitKind.F = 25 +2024-09-08 15:10:02,005 [main] TRACE ValueRange - '26' has no separator indicating range. +2024-09-08 15:10:02,005 [main] TRACE UmlAttribute - created (3850) WG10 IEC61850 literal <> DAEnums::SIUnitKind.C = 26 +2024-09-08 15:10:02,005 [main] TRACE ValueRange - '27' has no separator indicating range. +2024-09-08 15:10:02,005 [main] TRACE UmlAttribute - created (3851) WG10 IEC61850 literal <> DAEnums::SIUnitKind.S = 27 +2024-09-08 15:10:02,005 [main] TRACE ValueRange - '28' has no separator indicating range. +2024-09-08 15:10:02,005 [main] TRACE UmlAttribute - created (3852) WG10 IEC61850 literal <> DAEnums::SIUnitKind.H = 28 +2024-09-08 15:10:02,005 [main] TRACE ValueRange - '29' has no separator indicating range. +2024-09-08 15:10:02,005 [main] TRACE UmlAttribute - created (3853) WG10 IEC61850 literal <> DAEnums::SIUnitKind.V = 29 +2024-09-08 15:10:02,005 [main] TRACE ValueRange - '30' has no separator indicating range. +2024-09-08 15:10:02,005 [main] TRACE UmlAttribute - created (3854) WG10 IEC61850 literal <> DAEnums::SIUnitKind.ohm = 30 +2024-09-08 15:10:02,005 [main] TRACE ValueRange - '31' has no separator indicating range. +2024-09-08 15:10:02,005 [main] TRACE UmlAttribute - created (3855) WG10 IEC61850 literal <> DAEnums::SIUnitKind.J = 31 +2024-09-08 15:10:02,005 [main] TRACE ValueRange - '32' has no separator indicating range. +2024-09-08 15:10:02,005 [main] TRACE UmlAttribute - created (3856) WG10 IEC61850 literal <> DAEnums::SIUnitKind.N = 32 +2024-09-08 15:10:02,005 [main] TRACE ValueRange - '33' has no separator indicating range. +2024-09-08 15:10:02,005 [main] TRACE UmlAttribute - created (3857) WG10 IEC61850 literal <> DAEnums::SIUnitKind.Hz = 33 +2024-09-08 15:10:02,006 [main] TRACE ValueRange - '34' has no separator indicating range. +2024-09-08 15:10:02,006 [main] TRACE UmlAttribute - created (3858) WG10 IEC61850 literal <> DAEnums::SIUnitKind.lx = 34 +2024-09-08 15:10:02,006 [main] TRACE ValueRange - '35' has no separator indicating range. +2024-09-08 15:10:02,006 [main] TRACE UmlAttribute - created (3859) WG10 IEC61850 literal <> DAEnums::SIUnitKind.Lm = 35 +2024-09-08 15:10:02,006 [main] TRACE ValueRange - '36' has no separator indicating range. +2024-09-08 15:10:02,006 [main] TRACE UmlAttribute - created (3860) WG10 IEC61850 literal <> DAEnums::SIUnitKind.Wb = 36 +2024-09-08 15:10:02,006 [main] TRACE ValueRange - '37' has no separator indicating range. +2024-09-08 15:10:02,006 [main] TRACE UmlAttribute - created (3861) WG10 IEC61850 literal <> DAEnums::SIUnitKind.T = 37 +2024-09-08 15:10:02,006 [main] TRACE ValueRange - '38' has no separator indicating range. +2024-09-08 15:10:02,006 [main] TRACE UmlAttribute - created (3862) WG10 IEC61850 literal <> DAEnums::SIUnitKind.W = 38 +2024-09-08 15:10:02,006 [main] TRACE ValueRange - '39' has no separator indicating range. +2024-09-08 15:10:02,006 [main] TRACE UmlAttribute - created (3863) WG10 IEC61850 literal <> DAEnums::SIUnitKind.Pa = 39 +2024-09-08 15:10:02,006 [main] TRACE ValueRange - '41' has no separator indicating range. +2024-09-08 15:10:02,006 [main] TRACE UmlAttribute - created (3864) WG10 IEC61850 literal <> DAEnums::SIUnitKind.m² = 41 +2024-09-08 15:10:02,006 [main] TRACE ValueRange - '42' has no separator indicating range. +2024-09-08 15:10:02,006 [main] TRACE UmlAttribute - created (3865) WG10 IEC61850 literal <> DAEnums::SIUnitKind.m³ = 42 +2024-09-08 15:10:02,006 [main] TRACE ValueRange - '43' has no separator indicating range. +2024-09-08 15:10:02,006 [main] TRACE UmlAttribute - created (3866) WG10 IEC61850 literal <> DAEnums::SIUnitKind.m/s = 43 +2024-09-08 15:10:02,006 [main] TRACE ValueRange - '44' has no separator indicating range. +2024-09-08 15:10:02,007 [main] TRACE UmlAttribute - created (3867) WG10 IEC61850 literal <> DAEnums::SIUnitKind.m/s² = 44 +2024-09-08 15:10:02,007 [main] TRACE ValueRange - '45' has no separator indicating range. +2024-09-08 15:10:02,007 [main] TRACE UmlAttribute - created (3868) WG10 IEC61850 literal <> DAEnums::SIUnitKind.m³/s = 45 +2024-09-08 15:10:02,007 [main] TRACE ValueRange - '46' has no separator indicating range. +2024-09-08 15:10:02,007 [main] TRACE UmlAttribute - created (3869) WG10 IEC61850 literal <> DAEnums::SIUnitKind.m/m³ = 46 +2024-09-08 15:10:02,007 [main] TRACE ValueRange - '47' has no separator indicating range. +2024-09-08 15:10:02,007 [main] TRACE UmlAttribute - created (3870) WG10 IEC61850 literal <> DAEnums::SIUnitKind.M = 47 +2024-09-08 15:10:02,007 [main] TRACE ValueRange - '48' has no separator indicating range. +2024-09-08 15:10:02,007 [main] TRACE UmlAttribute - created (3871) WG10 IEC61850 literal <> DAEnums::SIUnitKind.kg/m³ = 48 +2024-09-08 15:10:02,007 [main] TRACE ValueRange - '49' has no separator indicating range. +2024-09-08 15:10:02,007 [main] TRACE UmlAttribute - created (3872) WG10 IEC61850 literal <> DAEnums::SIUnitKind.m²/s = 49 +2024-09-08 15:10:02,007 [main] TRACE ValueRange - '50' has no separator indicating range. +2024-09-08 15:10:02,007 [main] TRACE UmlAttribute - created (3873) WG10 IEC61850 literal <> DAEnums::SIUnitKind.W/m K = 50 +2024-09-08 15:10:02,007 [main] TRACE ValueRange - '51' has no separator indicating range. +2024-09-08 15:10:02,007 [main] TRACE UmlAttribute - created (3874) WG10 IEC61850 literal <> DAEnums::SIUnitKind.J/K = 51 +2024-09-08 15:10:02,007 [main] TRACE ValueRange - '52' has no separator indicating range. +2024-09-08 15:10:02,007 [main] TRACE UmlAttribute - created (3875) WG10 IEC61850 literal <> DAEnums::SIUnitKind.ppm = 52 +2024-09-08 15:10:02,007 [main] TRACE ValueRange - '53' has no separator indicating range. +2024-09-08 15:10:02,007 [main] TRACE UmlAttribute - created (3876) WG10 IEC61850 literal <> DAEnums::SIUnitKind.1/s = 53 +2024-09-08 15:10:02,007 [main] TRACE ValueRange - '54' has no separator indicating range. +2024-09-08 15:10:02,007 [main] TRACE UmlAttribute - created (3877) WG10 IEC61850 literal <> DAEnums::SIUnitKind.rad/s = 54 +2024-09-08 15:10:02,007 [main] TRACE ValueRange - '55' has no separator indicating range. +2024-09-08 15:10:02,007 [main] TRACE UmlAttribute - created (3878) WG10 IEC61850 literal <> DAEnums::SIUnitKind.W/m² = 55 +2024-09-08 15:10:02,007 [main] TRACE ValueRange - '56' has no separator indicating range. +2024-09-08 15:10:02,007 [main] TRACE UmlAttribute - created (3879) WG10 IEC61850 literal <> DAEnums::SIUnitKind.J/m² = 56 +2024-09-08 15:10:02,007 [main] TRACE ValueRange - '57' has no separator indicating range. +2024-09-08 15:10:02,007 [main] TRACE UmlAttribute - created (3880) WG10 IEC61850 literal <> DAEnums::SIUnitKind.S/m = 57 +2024-09-08 15:10:02,007 [main] TRACE ValueRange - '58' has no separator indicating range. +2024-09-08 15:10:02,007 [main] TRACE UmlAttribute - created (3881) WG10 IEC61850 literal <> DAEnums::SIUnitKind.K/s = 58 +2024-09-08 15:10:02,008 [main] TRACE ValueRange - '59' has no separator indicating range. +2024-09-08 15:10:02,008 [main] TRACE UmlAttribute - created (3882) WG10 IEC61850 literal <> DAEnums::SIUnitKind.Pa/s = 59 +2024-09-08 15:10:02,008 [main] TRACE ValueRange - '60' has no separator indicating range. +2024-09-08 15:10:02,008 [main] TRACE UmlAttribute - created (3883) WG10 IEC61850 literal <> DAEnums::SIUnitKind.J/kg K = 60 +2024-09-08 15:10:02,008 [main] TRACE ValueRange - '61' has no separator indicating range. +2024-09-08 15:10:02,008 [main] TRACE UmlAttribute - created (3884) WG10 IEC61850 literal <> DAEnums::SIUnitKind.VA = 61 +2024-09-08 15:10:02,008 [main] TRACE ValueRange - '62' has no separator indicating range. +2024-09-08 15:10:02,008 [main] TRACE UmlAttribute - created (3885) WG10 IEC61850 literal <> DAEnums::SIUnitKind.Watts = 62 +2024-09-08 15:10:02,008 [main] TRACE ValueRange - '63' has no separator indicating range. +2024-09-08 15:10:02,008 [main] TRACE UmlAttribute - created (3886) WG10 IEC61850 literal <> DAEnums::SIUnitKind.VAr = 63 +2024-09-08 15:10:02,008 [main] TRACE ValueRange - '64' has no separator indicating range. +2024-09-08 15:10:02,008 [main] TRACE UmlAttribute - created (3887) WG10 IEC61850 literal <> DAEnums::SIUnitKind.phi = 64 +2024-09-08 15:10:02,008 [main] TRACE ValueRange - '65' has no separator indicating range. +2024-09-08 15:10:02,008 [main] TRACE UmlAttribute - created (3888) WG10 IEC61850 literal <> DAEnums::SIUnitKind.cos(phi) = 65 +2024-09-08 15:10:02,008 [main] TRACE ValueRange - '66' has no separator indicating range. +2024-09-08 15:10:02,008 [main] TRACE UmlAttribute - created (3889) WG10 IEC61850 literal <> DAEnums::SIUnitKind.Vs = 66 +2024-09-08 15:10:02,008 [main] TRACE ValueRange - '67' has no separator indicating range. +2024-09-08 15:10:02,008 [main] TRACE UmlAttribute - created (3890) WG10 IEC61850 literal <> DAEnums::SIUnitKind.V² = 67 +2024-09-08 15:10:02,008 [main] TRACE ValueRange - '68' has no separator indicating range. +2024-09-08 15:10:02,008 [main] TRACE UmlAttribute - created (3891) WG10 IEC61850 literal <> DAEnums::SIUnitKind.As = 68 +2024-09-08 15:10:02,008 [main] TRACE ValueRange - '69' has no separator indicating range. +2024-09-08 15:10:02,008 [main] TRACE UmlAttribute - created (3892) WG10 IEC61850 literal <> DAEnums::SIUnitKind.A² = 69 +2024-09-08 15:10:02,008 [main] TRACE ValueRange - '70' has no separator indicating range. +2024-09-08 15:10:02,008 [main] TRACE UmlAttribute - created (3893) WG10 IEC61850 literal <> DAEnums::SIUnitKind.A²t = 70 +2024-09-08 15:10:02,009 [main] TRACE ValueRange - '71' has no separator indicating range. +2024-09-08 15:10:02,009 [main] TRACE UmlAttribute - created (3894) WG10 IEC61850 literal <> DAEnums::SIUnitKind.VAh = 71 +2024-09-08 15:10:02,009 [main] TRACE ValueRange - '72' has no separator indicating range. +2024-09-08 15:10:02,009 [main] TRACE UmlAttribute - created (3895) WG10 IEC61850 literal <> DAEnums::SIUnitKind.Wh = 72 +2024-09-08 15:10:02,009 [main] TRACE ValueRange - '73' has no separator indicating range. +2024-09-08 15:10:02,009 [main] TRACE UmlAttribute - created (3896) WG10 IEC61850 literal <> DAEnums::SIUnitKind.VArh = 73 +2024-09-08 15:10:02,009 [main] TRACE ValueRange - '74' has no separator indicating range. +2024-09-08 15:10:02,009 [main] TRACE UmlAttribute - created (3897) WG10 IEC61850 literal <> DAEnums::SIUnitKind.V/Hz = 74 +2024-09-08 15:10:02,009 [main] TRACE ValueRange - '75' has no separator indicating range. +2024-09-08 15:10:02,009 [main] TRACE UmlAttribute - created (3898) WG10 IEC61850 literal <> DAEnums::SIUnitKind.Hz/s = 75 +2024-09-08 15:10:02,009 [main] TRACE ValueRange - '76' has no separator indicating range. +2024-09-08 15:10:02,009 [main] TRACE UmlAttribute - created (3899) WG10 IEC61850 literal <> DAEnums::SIUnitKind.char = 76 +2024-09-08 15:10:02,009 [main] TRACE ValueRange - '77' has no separator indicating range. +2024-09-08 15:10:02,009 [main] TRACE UmlAttribute - created (3900) WG10 IEC61850 literal <> DAEnums::SIUnitKind.char/s = 77 +2024-09-08 15:10:02,009 [main] TRACE ValueRange - '78' has no separator indicating range. +2024-09-08 15:10:02,009 [main] TRACE UmlAttribute - created (3901) WG10 IEC61850 literal <> DAEnums::SIUnitKind.kgm² = 78 +2024-09-08 15:10:02,009 [main] TRACE ValueRange - '79' has no separator indicating range. +2024-09-08 15:10:02,009 [main] TRACE UmlAttribute - created (3902) WG10 IEC61850 literal <> DAEnums::SIUnitKind.dB = 79 +2024-09-08 15:10:02,009 [main] TRACE ValueRange - '80' has no separator indicating range. +2024-09-08 15:10:02,009 [main] TRACE UmlAttribute - created (3903) WG10 IEC61850 literal <> DAEnums::SIUnitKind.J/Wh = 80 +2024-09-08 15:10:02,009 [main] TRACE ValueRange - '81' has no separator indicating range. +2024-09-08 15:10:02,009 [main] TRACE UmlAttribute - created (3904) WG10 IEC61850 literal <> DAEnums::SIUnitKind.W/s = 81 +2024-09-08 15:10:02,009 [main] TRACE ValueRange - '82' has no separator indicating range. +2024-09-08 15:10:02,009 [main] TRACE UmlAttribute - created (3905) WG10 IEC61850 literal <> DAEnums::SIUnitKind.l/s = 82 +2024-09-08 15:10:02,009 [main] TRACE ValueRange - '83' has no separator indicating range. +2024-09-08 15:10:02,010 [main] TRACE UmlAttribute - created (3906) WG10 IEC61850 literal <> DAEnums::SIUnitKind.dBm = 83 +2024-09-08 15:10:02,010 [main] TRACE UmlClass - created (2044) WG10 IEC61850 enumeration <> DAEnums::MultiplierKind +2024-09-08 15:10:02,010 [main] TRACE ValueRange - '-24' has no separator indicating range. +2024-09-08 15:10:02,010 [main] TRACE UmlAttribute - created (3813) WG10 IEC61850 literal <> DAEnums::MultiplierKind.y = -24 +2024-09-08 15:10:02,010 [main] TRACE ValueRange - '-21' has no separator indicating range. +2024-09-08 15:10:02,010 [main] TRACE UmlAttribute - created (3814) WG10 IEC61850 literal <> DAEnums::MultiplierKind.z = -21 +2024-09-08 15:10:02,010 [main] TRACE ValueRange - '-18' has no separator indicating range. +2024-09-08 15:10:02,010 [main] TRACE UmlAttribute - created (3815) WG10 IEC61850 literal <> DAEnums::MultiplierKind.a = -18 +2024-09-08 15:10:02,010 [main] TRACE ValueRange - '-15' has no separator indicating range. +2024-09-08 15:10:02,010 [main] TRACE UmlAttribute - created (3816) WG10 IEC61850 literal <> DAEnums::MultiplierKind.f = -15 +2024-09-08 15:10:02,010 [main] TRACE ValueRange - '-12' has no separator indicating range. +2024-09-08 15:10:02,010 [main] TRACE UmlAttribute - created (3817) WG10 IEC61850 literal <> DAEnums::MultiplierKind.p = -12 +2024-09-08 15:10:02,010 [main] TRACE ValueRange - '-9' has no separator indicating range. +2024-09-08 15:10:02,010 [main] TRACE UmlAttribute - created (3818) WG10 IEC61850 literal <> DAEnums::MultiplierKind.n = -9 +2024-09-08 15:10:02,010 [main] TRACE ValueRange - '-6' has no separator indicating range. +2024-09-08 15:10:02,010 [main] TRACE UmlAttribute - created (3819) WG10 IEC61850 literal <> DAEnums::MultiplierKind.µ = -6 +2024-09-08 15:10:02,010 [main] TRACE ValueRange - '-3' has no separator indicating range. +2024-09-08 15:10:02,010 [main] TRACE UmlAttribute - created (3820) WG10 IEC61850 literal <> DAEnums::MultiplierKind.m = -3 +2024-09-08 15:10:02,010 [main] TRACE ValueRange - '-2' has no separator indicating range. +2024-09-08 15:10:02,010 [main] TRACE UmlAttribute - created (3821) WG10 IEC61850 literal <> DAEnums::MultiplierKind.c = -2 +2024-09-08 15:10:02,010 [main] TRACE ValueRange - '-1' has no separator indicating range. +2024-09-08 15:10:02,011 [main] TRACE UmlAttribute - created (3822) WG10 IEC61850 literal <> DAEnums::MultiplierKind.d = -1 +2024-09-08 15:10:02,011 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-08 15:10:02,011 [main] TRACE UmlAttribute - created (3823) WG10 IEC61850 literal <> DAEnums::MultiplierKind.none = 0 +2024-09-08 15:10:02,011 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 15:10:02,011 [main] TRACE UmlAttribute - created (3824) WG10 IEC61850 literal <> DAEnums::MultiplierKind.da = 1 +2024-09-08 15:10:02,011 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-08 15:10:02,011 [main] TRACE UmlAttribute - created (3825) WG10 IEC61850 literal <> DAEnums::MultiplierKind.h = 2 +2024-09-08 15:10:02,011 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-08 15:10:02,011 [main] TRACE UmlAttribute - created (3826) WG10 IEC61850 literal <> DAEnums::MultiplierKind.k = 3 +2024-09-08 15:10:02,011 [main] TRACE ValueRange - '6' has no separator indicating range. +2024-09-08 15:10:02,011 [main] TRACE UmlAttribute - created (3827) WG10 IEC61850 literal <> DAEnums::MultiplierKind.M = 6 +2024-09-08 15:10:02,011 [main] TRACE ValueRange - '9' has no separator indicating range. +2024-09-08 15:10:02,011 [main] TRACE UmlAttribute - created (3828) WG10 IEC61850 literal <> DAEnums::MultiplierKind.G = 9 +2024-09-08 15:10:02,011 [main] TRACE ValueRange - '12' has no separator indicating range. +2024-09-08 15:10:02,011 [main] TRACE UmlAttribute - created (3829) WG10 IEC61850 literal <> DAEnums::MultiplierKind.T = 12 +2024-09-08 15:10:02,011 [main] TRACE ValueRange - '15' has no separator indicating range. +2024-09-08 15:10:02,011 [main] TRACE UmlAttribute - created (3830) WG10 IEC61850 literal <> DAEnums::MultiplierKind.P = 15 +2024-09-08 15:10:02,011 [main] TRACE ValueRange - '18' has no separator indicating range. +2024-09-08 15:10:02,011 [main] TRACE UmlAttribute - created (3831) WG10 IEC61850 literal <> DAEnums::MultiplierKind.E = 18 +2024-09-08 15:10:02,011 [main] TRACE ValueRange - '21' has no separator indicating range. +2024-09-08 15:10:02,011 [main] TRACE UmlAttribute - created (3832) WG10 IEC61850 literal <> DAEnums::MultiplierKind.Z = 21 +2024-09-08 15:10:02,011 [main] TRACE ValueRange - '24' has no separator indicating range. +2024-09-08 15:10:02,011 [main] TRACE UmlAttribute - created (3833) WG10 IEC61850 literal <> DAEnums::MultiplierKind.Y = 24 +2024-09-08 15:10:02,011 [main] TRACE UmlClass - created (2035) WG10 IEC61850 enumeration <> DAEnums::PhaseFaultDirectionKind +2024-09-08 15:10:02,012 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-08 15:10:02,012 [main] TRACE UmlAttribute - created (3727) WG10 IEC61850 literal <> DAEnums::PhaseFaultDirectionKind.unknown = 0 +2024-09-08 15:10:02,012 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 15:10:02,012 [main] TRACE UmlAttribute - created (3728) WG10 IEC61850 literal <> DAEnums::PhaseFaultDirectionKind.forward = 1 +2024-09-08 15:10:02,012 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-08 15:10:02,012 [main] TRACE UmlAttribute - created (3729) WG10 IEC61850 literal <> DAEnums::PhaseFaultDirectionKind.backward = 2 +2024-09-08 15:10:02,012 [main] TRACE UmlClass - created (2039) WG10 IEC61850 enumeration <> DAEnums::PhaseAngleReferenceKind +2024-09-08 15:10:02,012 [main] TRACE UmlSkipped - created (2214) WG10 IEC61850 note link PhaseAngleReferenceKind. - ? - ? +2024-09-08 15:10:02,012 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-08 15:10:02,012 [main] TRACE UmlAttribute - created (3744) WG10 IEC61850 literal <> DAEnums::PhaseAngleReferenceKind.Va = 0 +2024-09-08 15:10:02,012 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 15:10:02,012 [main] TRACE UmlAttribute - created (3745) WG10 IEC61850 literal <> DAEnums::PhaseAngleReferenceKind.Vb = 1 +2024-09-08 15:10:02,012 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-08 15:10:02,012 [main] TRACE UmlAttribute - created (3746) WG10 IEC61850 literal <> DAEnums::PhaseAngleReferenceKind.Vc = 2 +2024-09-08 15:10:02,012 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-08 15:10:02,012 [main] TRACE UmlAttribute - created (3747) WG10 IEC61850 literal <> DAEnums::PhaseAngleReferenceKind.Aa = 3 +2024-09-08 15:10:02,012 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-08 15:10:02,012 [main] TRACE UmlAttribute - created (3748) WG10 IEC61850 literal <> DAEnums::PhaseAngleReferenceKind.Ab = 4 +2024-09-08 15:10:02,012 [main] TRACE ValueRange - '5' has no separator indicating range. +2024-09-08 15:10:02,013 [main] TRACE UmlAttribute - created (3749) WG10 IEC61850 literal <> DAEnums::PhaseAngleReferenceKind.Ac = 5 +2024-09-08 15:10:02,013 [main] TRACE ValueRange - '6' has no separator indicating range. +2024-09-08 15:10:02,013 [main] TRACE UmlAttribute - created (3750) WG10 IEC61850 literal <> DAEnums::PhaseAngleReferenceKind.Vab = 6 +2024-09-08 15:10:02,013 [main] TRACE ValueRange - '7' has no separator indicating range. +2024-09-08 15:10:02,013 [main] TRACE UmlAttribute - created (3751) WG10 IEC61850 literal <> DAEnums::PhaseAngleReferenceKind.Vbc = 7 +2024-09-08 15:10:02,013 [main] TRACE ValueRange - '8' has no separator indicating range. +2024-09-08 15:10:02,013 [main] TRACE UmlAttribute - created (3752) WG10 IEC61850 literal <> DAEnums::PhaseAngleReferenceKind.Vca = 8 +2024-09-08 15:10:02,013 [main] TRACE ValueRange - '9' has no separator indicating range. +2024-09-08 15:10:02,013 [main] TRACE UmlAttribute - created (3753) WG10 IEC61850 literal <> DAEnums::PhaseAngleReferenceKind.Vother = 9 +2024-09-08 15:10:02,013 [main] TRACE ValueRange - '10' has no separator indicating range. +2024-09-08 15:10:02,013 [main] TRACE UmlAttribute - created (3754) WG10 IEC61850 literal <> DAEnums::PhaseAngleReferenceKind.Aother = 10 +2024-09-08 15:10:02,013 [main] TRACE ValueRange - '11' has no separator indicating range. +2024-09-08 15:10:02,013 [main] TRACE UmlAttribute - created (3755) WG10 IEC61850 literal <> DAEnums::PhaseAngleReferenceKind.Synchrophasor = 11 +2024-09-08 15:10:02,013 [main] TRACE UmlClass - created (2086) WG10 IEC61850 coded enumeration <> ConstructedDAs::ValidityKind +2024-09-08 15:10:02,013 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-08 15:10:02,013 [main] TRACE UmlAttribute - created (4094) WG10 IEC61850 coded literal <> ConstructedDAs::ValidityKind.good = 0 +2024-09-08 15:10:02,013 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 15:10:02,013 [main] TRACE UmlAttribute - created (4095) WG10 IEC61850 coded literal <> ConstructedDAs::ValidityKind.invalid = 1 +2024-09-08 15:10:02,013 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-08 15:10:02,013 [main] TRACE UmlAttribute - created (4096) WG10 IEC61850 coded literal <> ConstructedDAs::ValidityKind.reserved = 2 +2024-09-08 15:10:02,014 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-08 15:10:02,014 [main] TRACE UmlAttribute - created (4097) WG10 IEC61850 coded literal <> ConstructedDAs::ValidityKind.questionable = 3 +2024-09-08 15:10:02,014 [main] TRACE UmlClass - created (2087) WG10 IEC61850 packed list <> ConstructedDAs::DetailQual +2024-09-08 15:10:02,014 [main] TRACE UmlClass - created (2088) WG10 IEC61850 coded enumeration <> ConstructedDAs::SourceKind +2024-09-08 15:10:02,014 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-08 15:10:02,014 [main] TRACE UmlAttribute - created (4106) WG10 IEC61850 coded literal <> ConstructedDAs::SourceKind.process = 0 +2024-09-08 15:10:02,014 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 15:10:02,014 [main] TRACE UmlAttribute - created (4107) WG10 IEC61850 coded literal <> ConstructedDAs::SourceKind.substituted = 1 +2024-09-08 15:10:02,014 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (3071) WG10 IEC61850 null CDCControl::SPC +2024-09-08 15:10:02,016 [main] TRACE UmlClass - created (3071) WG10 IEC61850 other 61850 CDCControl::SPC +2024-09-08 15:10:02,016 [main] TRACE UmlClass - created (1551) WG10 IEC61850 other 61850 IEC61850_7_4::IEC61850_7_4Namespace +2024-09-08 15:10:02,016 [main] TRACE UmlClass - created (2335) WG10 IEC61850 abbreviation enumeration <> Abbreviations::AbbrTermAny +2024-09-08 15:10:02,016 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,016 [main] TRACE UmlAttribute - created (4656) WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.A +2024-09-08 15:10:02,016 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,016 [main] TRACE UmlAttribute - created (5118) WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.Z +2024-09-08 15:10:02,016 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,017 [main] TRACE UmlAttribute - created (6659) WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.aDummy +2024-09-08 15:10:02,017 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,017 [main] TRACE UmlAttribute - created (4669) WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.Alm +2024-09-08 15:10:02,017 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,017 [main] TRACE UmlAttribute - created (5120) WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.Z1 +2024-09-08 15:10:02,017 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,017 [main] TRACE UmlAttribute - created (4670) WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.Amp +2024-09-08 15:10:02,017 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,017 [main] TRACE UmlAttribute - created (6660) WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.ppm +2024-09-08 15:10:02,017 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,017 [main] TRACE UmlAttribute - created (6661) WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.km +2024-09-08 15:10:02,017 [main] TRACE UmlClass - created (2359) WG10 IEC61850 abbreviation enumeration <> Abbreviations::AbbrTermZ +2024-09-08 15:10:02,017 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,017 [main] TRACE UmlAttribute - created (5119) WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermZ.Z0 +2024-09-08 15:10:02,017 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,018 [main] TRACE UmlAttribute - created (5123) WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermZ.Zro +2024-09-08 15:10:02,018 [main] TRACE UmlClass - created (2368) WG10 IEC61850 function ProtectionEq::BusbarProt +2024-09-08 15:10:02,018 [main] TRACE UmlClass - created (2374) WG10 IEC61850 function ProtectionEq::DirectionalProt +2024-09-08 15:10:02,018 [main] TRACE UmlClass - created (2375) WG10 IEC61850 function ProtectionEq::DirectionalPowerProt +2024-09-08 15:10:02,018 [main] TRACE UmlClass - created (2385) WG10 IEC61850 function ProtectionEq::LineDifferentialProt +2024-09-08 15:10:02,018 [main] TRACE UmlClass - created (2394) WG10 IEC61850 function ProtectionEq::PowerFactorProt +2024-09-08 15:10:02,018 [main] TRACE UmlClass - created (2420) WG10 IEC61850 function ControlEq::AlarmHandler +2024-09-08 15:10:02,018 [main] TRACE UmlClass - created (2465) WG10 IEC61850 function MeasurementsAndMetering::ThreePhaseMeasurement +2024-09-08 15:10:02,019 [main] TRACE UmlClass - created (2475) WG10 IEC61850 function SystemWide::LogicalDeviceData +2024-09-08 15:10:02,019 [main] TRACE UmlClass - created (2477) WG10 IEC61850 function SystemWide::PhysicalDeviceData +2024-09-08 15:10:02,019 [main] TRACE UmlClass - created (2487) WG10 IEC61850 function PrimaryEq::AuxiliaryNetwork +2024-09-08 15:10:02,019 [main] TRACE UmlClass - created (2501) WG10 IEC61850 function PrimaryEq::GenericIO +2024-09-08 15:10:02,019 [main] TRACE UmlClass - created (2568) WG10 IEC61850 enumeration <> DOEnums::HealthKind +2024-09-08 15:10:02,019 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 15:10:02,019 [main] TRACE UmlAttribute - created (5150) WG10 IEC61850 literal <> DOEnums::HealthKind.Ok = 1 +2024-09-08 15:10:02,019 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-08 15:10:02,019 [main] TRACE UmlAttribute - created (5151) WG10 IEC61850 literal <> DOEnums::HealthKind.Warning = 2 +2024-09-08 15:10:02,019 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-08 15:10:02,019 [main] TRACE UmlAttribute - created (5152) WG10 IEC61850 literal <> DOEnums::HealthKind.Alarm = 3 +2024-09-08 15:10:02,020 [main] TRACE UmlClass - created (2564) WG10 IEC61850 enumeration <> DOEnums::BehaviourModeKind +2024-09-08 15:10:02,020 [main] TRACE UmlSkipped - created (2230) WG10 IEC61850 note link BehaviourModeKind. - ? - ? +2024-09-08 15:10:02,020 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 15:10:02,020 [main] TRACE UmlAttribute - created (5124) WG10 IEC61850 literal <> DOEnums::BehaviourModeKind.on = 1 +2024-09-08 15:10:02,020 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-08 15:10:02,020 [main] TRACE UmlAttribute - created (5125) WG10 IEC61850 literal <> DOEnums::BehaviourModeKind.on-blocked = 2 +2024-09-08 15:10:02,020 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-08 15:10:02,020 [main] TRACE UmlAttribute - created (5126) WG10 IEC61850 literal <> DOEnums::BehaviourModeKind.test = 3 +2024-09-08 15:10:02,020 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-08 15:10:02,020 [main] TRACE UmlAttribute - created (5127) WG10 IEC61850 literal <> DOEnums::BehaviourModeKind.test/blocked = 4 +2024-09-08 15:10:02,020 [main] TRACE ValueRange - '5' has no separator indicating range. +2024-09-08 15:10:02,020 [main] TRACE UmlAttribute - created (5128) WG10 IEC61850 literal <> DOEnums::BehaviourModeKind.off = 5 +2024-09-08 15:10:02,020 [main] TRACE UmlClass - created (2567) WG10 IEC61850 enumeration <> DOEnums::CalcMethodKind +2024-09-08 15:10:02,020 [main] TRACE UmlSkipped - created (2229) WG10 IEC61850 note link CalcMethodKind. - ? - ? +2024-09-08 15:10:02,020 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 15:10:02,020 [main] TRACE UmlAttribute - created (5140) WG10 IEC61850 literal <> DOEnums::CalcMethodKind.UNSPECIFIED = 1 +2024-09-08 15:10:02,020 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-08 15:10:02,020 [main] TRACE UmlAttribute - created (5141) WG10 IEC61850 literal <> DOEnums::CalcMethodKind.TRUE_RMS = 2 +2024-09-08 15:10:02,020 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-08 15:10:02,021 [main] TRACE UmlAttribute - created (5142) WG10 IEC61850 literal <> DOEnums::CalcMethodKind.PEAK_FUNDAMENTAL = 3 +2024-09-08 15:10:02,021 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-08 15:10:02,021 [main] TRACE UmlAttribute - created (5143) WG10 IEC61850 literal <> DOEnums::CalcMethodKind.RMS_FUNDAMENTAL = 4 +2024-09-08 15:10:02,021 [main] TRACE ValueRange - '5' has no separator indicating range. +2024-09-08 15:10:02,021 [main] TRACE UmlAttribute - created (5144) WG10 IEC61850 literal <> DOEnums::CalcMethodKind.MIN = 5 +2024-09-08 15:10:02,021 [main] TRACE ValueRange - '6' has no separator indicating range. +2024-09-08 15:10:02,021 [main] TRACE UmlAttribute - created (5145) WG10 IEC61850 literal <> DOEnums::CalcMethodKind.MAX = 6 +2024-09-08 15:10:02,021 [main] TRACE ValueRange - '7' has no separator indicating range. +2024-09-08 15:10:02,021 [main] TRACE UmlAttribute - created (5146) WG10 IEC61850 literal <> DOEnums::CalcMethodKind.AVG = 7 +2024-09-08 15:10:02,021 [main] TRACE ValueRange - '8' has no separator indicating range. +2024-09-08 15:10:02,021 [main] TRACE UmlAttribute - created (5147) WG10 IEC61850 literal <> DOEnums::CalcMethodKind.SDV = 8 +2024-09-08 15:10:02,021 [main] TRACE ValueRange - '9' has no separator indicating range. +2024-09-08 15:10:02,021 [main] TRACE UmlAttribute - created (5148) WG10 IEC61850 literal <> DOEnums::CalcMethodKind.PREDICTION = 9 +2024-09-08 15:10:02,021 [main] TRACE ValueRange - '10' has no separator indicating range. +2024-09-08 15:10:02,021 [main] TRACE UmlAttribute - created (5149) WG10 IEC61850 literal <> DOEnums::CalcMethodKind.RATE = 10 +2024-09-08 15:10:02,021 [main] TRACE UmlClass - created (3090) WG10 IEC61850 enumeration <> DOEnums::BaseKind +2024-09-08 15:10:02,021 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,021 [main] TRACE UmlAttribute - created (6714) WG10 IEC61850 literal <> DOEnums::BaseKind.bk1 +2024-09-08 15:10:02,021 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,021 [main] TRACE UmlAttribute - created (6715) WG10 IEC61850 literal <> DOEnums::BaseKind.bk2 +2024-09-08 15:10:02,021 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,022 [main] TRACE UmlAttribute - created (6716) WG10 IEC61850 literal <> DOEnums::BaseKind.bk3 +2024-09-08 15:10:02,022 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (2671) WG10 IEC61850 null DerivedCDCs::ACTTransient +2024-09-08 15:10:02,022 [main] TRACE UmlClass - created (2671) WG10 IEC61850 other 61850 DerivedCDCs::ACTTransient +2024-09-08 15:10:02,023 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (2721) WG10 IEC61850 null DerivedCDCs::SPSTransient +2024-09-08 15:10:02,023 [main] TRACE UmlClass - created (2721) WG10 IEC61850 other 61850 DerivedCDCs::SPSTransient +2024-09-08 15:10:02,023 [main] TRACE UmlSkipped - created (3466) WG10 IEC61850 note link SPSTransient. - ? - ? +2024-09-08 15:10:02,023 [main] TRACE UmlClass - created (3070) WG17 IEC61850 other 61850 WG17::WG17UMLVersion +2024-09-08 15:10:02,023 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (3067) WG17 IEC61850 null IEC51850_7_420::IEC61850_7_420Namespace +2024-09-08 15:10:02,024 [main] TRACE UmlClass - created (3067) WG17 IEC61850 other 61850 IEC51850_7_420::IEC61850_7_420Namespace +2024-09-08 15:10:02,024 [main] TRACE UmlClass - created (3053) WG17 IEC61850 enumeration <> DOEnums_7_420::MaterialKind +2024-09-08 15:10:02,024 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 15:10:02,024 [main] TRACE UmlAttribute - created (6683) WG17 IEC61850 literal <> DOEnums_7_420::MaterialKind.mat1 = 1 +2024-09-08 15:10:02,024 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-08 15:10:02,024 [main] TRACE UmlAttribute - created (6684) WG17 IEC61850 literal <> DOEnums_7_420::MaterialKind.mat2 = 2 +2024-09-08 15:10:02,024 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-08 15:10:02,024 [main] TRACE UmlAttribute - created (6685) WG17 IEC61850 literal <> DOEnums_7_420::MaterialKind.mat3 = 3 +2024-09-08 15:10:02,024 [main] TRACE UmlClass - created (3087) WG17 IEC61850 enumeration <> DOEnums_7_420::MaterialTransitionKind +2024-09-08 15:10:02,024 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,024 [main] TRACE UmlAttribute - created (6710) WG17 IEC61850 literal DOEnums_7_420::MaterialTransitionKind.trans1 +2024-09-08 15:10:02,024 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,024 [main] TRACE UmlAttribute - created (6711) WG17 IEC61850 literal DOEnums_7_420::MaterialTransitionKind.trans2 +2024-09-08 15:10:02,024 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,024 [main] TRACE UmlAttribute - created (6712) WG17 IEC61850 literal DOEnums_7_420::MaterialTransitionKind.trans3 +2024-09-08 15:10:02,024 [main] TRACE UmlClass - created (3054) WG17 IEC61850 enumeration <> DOEnums_7_420::OtherKind +2024-09-08 15:10:02,024 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 15:10:02,025 [main] TRACE UmlAttribute - created (6686) WG17 IEC61850 literal <> DOEnums_7_420::OtherKind.mat1 = 1 +2024-09-08 15:10:02,025 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-08 15:10:02,025 [main] TRACE UmlAttribute - created (6687) WG17 IEC61850 literal <> DOEnums_7_420::OtherKind.mat2 = 2 +2024-09-08 15:10:02,025 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-08 15:10:02,025 [main] TRACE UmlAttribute - created (6688) WG17 IEC61850 literal <> DOEnums_7_420::OtherKind.mat3 = 3 +2024-09-08 15:10:02,025 [main] TRACE UmlClass - created (3026) WG18 IEC61850 abbreviation enumeration <> Abbreviations_410::AbbrTermA +2024-09-08 15:10:02,025 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,025 [main] TRACE UmlAttribute - created (6640) WG18 IEC61850 abbreviated term <> Abbreviations_410::AbbrTermA.Abc +2024-09-08 15:10:02,025 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,025 [main] TRACE UmlAttribute - created (6641) WG18 IEC61850 abbreviated term <> Abbreviations_410::AbbrTermA.Alm2 +2024-09-08 15:10:02,025 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,025 [main] TRACE UmlAttribute - created (6642) WG18 IEC61850 abbreviated term <> Abbreviations_410::AbbrTermA.Amp +2024-09-08 15:10:02,025 [main] TRACE UmlClass - created (3077) OTHER_CIM CIM root class <> MyCimExtensions::DFD_External1 +2024-09-08 15:10:02,026 [main] TRACE UmlSkipped - created (3462) OTHER_CIM CIM other DFD_External1. - ? - ? +2024-09-08 15:10:02,026 [main] TRACE UmlClass - created (3078) OTHER_CIM CIM root class <> MyCimExtensions::DFD_DataStore1 +2024-09-08 15:10:02,026 [main] TRACE UmlSkipped - created (3461) OTHER_CIM CIM other DFD_DataStore1. - ? - ? +2024-09-08 15:10:02,026 [main] TRACE UmlClass - created (1489) OTHER_CIM CIM root class Ext1::Fruit +2024-09-08 15:10:02,026 [main] TRACE UmlClass - created (3034) OTHER_CIM CIM enumeration <> Ext1::FruitBinKind +2024-09-08 15:10:02,026 [main] TRACE UmlSkipped - created (3035) OTHER_CIM CIM other FruitBinKind.Strawberry +2024-09-08 15:10:02,026 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,026 [main] TRACE UmlAttribute - created (6650) OTHER_CIM CIM literal <> Ext1::FruitBinKind.plastic +2024-09-08 15:10:02,026 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,026 [main] TRACE UmlAttribute - created (6651) OTHER_CIM CIM literal <> Ext1::FruitBinKind.straw +2024-09-08 15:10:02,026 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,026 [main] TRACE UmlAttribute - created (6652) OTHER_CIM CIM literal <> Ext1::FruitBinKind.glass +2024-09-08 15:10:02,026 [main] TRACE UmlClass - created (3036) OTHER_CIM CIM root class Ext1::Village +2024-09-08 15:10:02,026 [main] TRACE UmlClass - created (1542) OTHER_CIM CIM root class Package with space::My class +2024-09-08 15:10:02,027 [main] TRACE UmlClass - created (1543) OTHER_CIM CIM root class Package with space::Other-with_invalid name +2024-09-08 15:10:02,027 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1491) OTHER_IEC61850 IEC61850 null Ext2::Animal +2024-09-08 15:10:02,028 [main] TRACE UmlClass - created (1491) OTHER_IEC61850 IEC61850 other 61850 Ext2::Animal +2024-09-08 15:10:02,028 [main] INFO EaModelBuilder - creating in-memory sub-classes recursively ... +2024-09-08 15:10:02,028 [main] TRACE UmlClass - created (797) WG13 CIM class <> Topology::BusNameMarker, 2 superclasses=[IdentifiedObject, InfClass2] +2024-09-08 15:10:02,028 [main] TRACE UmlSkipped - created (3) WG13 CIM note link BusNameMarker. - ? - ? +2024-09-08 15:10:02,028 [main] TRACE UmlSkipped - created (2093) WG13 CIM note link BusNameMarker. - ? - ? +2024-09-08 15:10:02,028 [main] TRACE UmlSkipped - created (2094) WG13 CIM note link BusNameMarker. - ? - ? +2024-09-08 15:10:02,028 [main] TRACE UmlClass - created (853) WG13 CIM class Core::Terminal, 1 superclasses=[IdentifiedObject] +2024-09-08 15:10:02,028 [main] TRACE UmlClass - created (3080) WG13 CIM class Topology::DumbSubterminal, 1 superclasses=[Terminal] +2024-09-08 15:10:02,028 [main] TRACE UmlClass - created (855) WG13 CIM class Core::BaseVoltage, 2 superclasses=[IdentifiedObject, BadDatatypes] +2024-09-08 15:10:02,029 [main] TRACE UmlClass - created (867) WG13 CIM class Core::BasePower, 1 superclasses=[IdentifiedObject] +2024-09-08 15:10:02,029 [main] TRACE UmlClass - created (875) WG13 CIM class Core::SubGeographicalRegion, 1 superclasses=[IdentifiedObject] +2024-09-08 15:10:02,029 [main] TRACE UmlClass - created (883) WG13 CIM class Core::geographicalRegion, 1 superclasses=[IdentifiedObject] +2024-09-08 15:10:02,029 [main] TRACE UmlClass - created (850) WG13 CIM compound <> Core::OperatingParticipant, 1 superclasses=[IdentifiedObject] +2024-09-08 15:10:02,029 [main] TRACE UmlClass - created (849) WG13 CIM class Core::PowerSystemResource, 1 superclasses=[IdentifiedObject] +2024-09-08 15:10:02,029 [main] TRACE UmlSkipped - created (1444) WG13 CIM state PowerSystemResource.DummyState +2024-09-08 15:10:02,029 [main] TRACE UmlDiagram - created (156) WG13 CIM statechart PowerSystemResource.PSR-statechart +2024-09-08 15:10:02,029 [main] TRACE UmlClass - created (871) WG13 CIM class Core::ConnectivityNodeContainer, 1 superclasses=[PowerSystemResource] +2024-09-08 15:10:02,029 [main] TRACE UmlClass - created (1490) OTHER_CIM CIM class <> Ext1::Pear, 1 superclasses=[Fruit] +2024-09-08 15:10:02,029 [main] TRACE UmlClass - created (881) WG13 CIM class Core::EquipmentContainer, 2 superclasses=[ConnectivityNodeContainer, Pear] +2024-09-08 15:10:02,029 [main] TRACE UmlClass - created (860) WG13 CIM class Core::Bay, 1 superclasses=[EquipmentContainer] +2024-09-08 15:10:02,029 [main] TRACE UmlClass - created (877) WG13 CIM class Core::Substation, 1 superclasses=[EquipmentContainer] +2024-09-08 15:10:02,029 [main] TRACE UmlClass - created (870) WG13 CIM class Core::VoltageLevel, 1 superclasses=[EquipmentContainer] +2024-09-08 15:10:02,029 [main] TRACE UmlClass - created (882) WG13 CIM class Core::Equipment, 1 superclasses=[PowerSystemResource] +2024-09-08 15:10:02,030 [main] TRACE UmlClass - created (864) WG13 CIM class Core::ConductingEquipment, 1 superclasses=[Equipment] +2024-09-08 15:10:02,030 [main] TRACE UmlSkipped - created (3470) WG13 CIM note link ConductingEquipment. - ? - ? +2024-09-08 15:10:02,030 [main] TRACE UmlClass - created (796) WG13 CIM class Topology::ConnectivityNode, 1 superclasses=[IdentifiedObject] +2024-09-08 15:10:02,030 [main] TRACE UmlSkipped - created (1) WG13 CIM note link ConnectivityNode.Switch/Node static Model - ? - ? +2024-09-08 15:10:02,030 [main] TRACE UmlClass - created (794) WG13 CIM class Topology::TopologicalIsland, 1 superclasses=[IdentifiedObject] +2024-09-08 15:10:02,030 [main] TRACE UmlSkipped - created (2095) WG13 CIM note link TopologicalIsland. - ? - ? +2024-09-08 15:10:02,030 [main] TRACE UmlClass - created (795) WG13 CIM class Topology::TopologicalNode, 1 superclasses=[IdentifiedObject] +2024-09-08 15:10:02,030 [main] TRACE UmlSkipped - created (2) WG13 CIM note link TopologicalNode.Bus/Branch calculated Model - ? - ? +2024-09-08 15:10:02,030 [main] TRACE UmlClass - created (1454) WG14 CIM abstract class class <> Other::MyClass, 1 superclasses=[BadDatatypes] +2024-09-08 15:10:02,030 [main] TRACE UmlSkipped - created (2114) WG14 CIM note link MyClass. - ? - ? +2024-09-08 15:10:02,030 [main] TRACE UmlSkipped - created (2119) WG14 CIM note link MyClass. - ? - ? +2024-09-08 15:10:02,030 [main] TRACE UmlClass - created (1482) WG14 CIM class Other::AttrDuplication, 1 superclasses=[MyClass] +2024-09-08 15:10:02,030 [main] TRACE UmlSkipped - created (2120) WG14 CIM note link AttrDuplication. - ? - ? +2024-09-08 15:10:02,030 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1617) WG10 IEC61850 null GenericModel::ServiceAccessPoint, 1 superclasses=[AccessPoint] +2024-09-08 15:10:02,030 [main] TRACE UmlClass - created (1617) WG10 IEC61850 other 61850 GenericModel::ServiceAccessPoint, 1 superclasses=[AccessPoint] +2024-09-08 15:10:02,031 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1603) WG10 IEC61850 null GenericModel::GenLN0, 1 superclasses=[GenLogicalNode] +2024-09-08 15:10:02,031 [main] TRACE UmlClass - created (1603) WG10 IEC61850 other 61850 GenericModel::GenLN0, 1 superclasses=[GenLogicalNode] +2024-09-08 15:10:02,031 [main] DEBUG UmlClass - unclassified 7-2 class: (1693) WG10 IEC61850 null ObjectReferences::FILEReference, 1 superclasses=[P_ObjectReference] +2024-09-08 15:10:02,031 [main] TRACE UmlClass - created (1693) WG10 IEC61850 other 61850 ObjectReferences::FILEReference, 1 superclasses=[P_ObjectReference] +2024-09-08 15:10:02,031 [main] DEBUG UmlClass - unclassified 7-2 class: (1694) WG10 IEC61850 null ObjectReferences::LDReference, 1 superclasses=[P_ObjectReference] +2024-09-08 15:10:02,032 [main] TRACE UmlClass - created (1694) WG10 IEC61850 other 61850 ObjectReferences::LDReference, 1 superclasses=[P_ObjectReference] +2024-09-08 15:10:02,032 [main] DEBUG UmlClass - unclassified 7-2 class: (1696) WG10 IEC61850 null ObjectReferences::LNReference, 1 superclasses=[LDReference] +2024-09-08 15:10:02,032 [main] TRACE UmlClass - created (1696) WG10 IEC61850 other 61850 ObjectReferences::LNReference, 1 superclasses=[LDReference] +2024-09-08 15:10:02,032 [main] DEBUG UmlClass - unclassified 7-2 class: (1697) WG10 IEC61850 null ObjectReferences::CDCReference, 1 superclasses=[LNReference] +2024-09-08 15:10:02,032 [main] TRACE UmlClass - created (1697) WG10 IEC61850 other 61850 ObjectReferences::CDCReference, 1 superclasses=[LNReference] +2024-09-08 15:10:02,032 [main] TRACE UmlSkipped - created (2192) WG10 IEC61850 note link CDCReference. - ? - ? +2024-09-08 15:10:02,032 [main] TRACE UmlSkipped - created (2200) WG10 IEC61850 note link CDCReference. - ? - ? +2024-09-08 15:10:02,032 [main] DEBUG UmlClass - unclassified 7-2 class: (1702) WG10 IEC61850 null ObjectReferences::FCDReference, 1 superclasses=[CDCReference] +2024-09-08 15:10:02,032 [main] TRACE UmlClass - created (1702) WG10 IEC61850 other 61850 ObjectReferences::FCDReference, 1 superclasses=[CDCReference] +2024-09-08 15:10:02,033 [main] DEBUG UmlClass - unclassified 7-2 class: (1703) WG10 IEC61850 null ObjectReferences::FCDAReference, 1 superclasses=[FCDReference] +2024-09-08 15:10:02,033 [main] TRACE UmlClass - created (1703) WG10 IEC61850 other 61850 ObjectReferences::FCDAReference, 1 superclasses=[FCDReference] +2024-09-08 15:10:02,033 [main] DEBUG UmlClass - unclassified 7-2 class: (1698) WG10 IEC61850 null ObjectReferences::CBReference, 1 superclasses=[LNReference] +2024-09-08 15:10:02,033 [main] TRACE UmlClass - created (1698) WG10 IEC61850 other 61850 ObjectReferences::CBReference, 1 superclasses=[LNReference] +2024-09-08 15:10:02,033 [main] DEBUG UmlClass - unclassified 7-2 class: (1700) WG10 IEC61850 null ObjectReferences::LOGReference, 1 superclasses=[LNReference] +2024-09-08 15:10:02,033 [main] TRACE UmlClass - created (1700) WG10 IEC61850 other 61850 ObjectReferences::LOGReference, 1 superclasses=[LNReference] +2024-09-08 15:10:02,033 [main] DEBUG UmlClass - unclassified 7-2 class: (1701) WG10 IEC61850 null ObjectReferences::LNOwnedDSReference, 1 superclasses=[LNReference] +2024-09-08 15:10:02,033 [main] TRACE UmlClass - created (1701) WG10 IEC61850 other 61850 ObjectReferences::LNOwnedDSReference, 1 superclasses=[LNReference] +2024-09-08 15:10:02,033 [main] TRACE UmlSkipped - created (2197) WG10 IEC61850 note link LNOwnedDSReference. - ? - ? +2024-09-08 15:10:02,033 [main] DEBUG UmlClass - unclassified 7-2 class: (1695) WG10 IEC61850 null ObjectReferences::NonPersistentDSReference, 1 superclasses=[P_ObjectReference] +2024-09-08 15:10:02,034 [main] TRACE UmlClass - created (1695) WG10 IEC61850 other 61850 ObjectReferences::NonPersistentDSReference, 1 superclasses=[P_ObjectReference] +2024-09-08 15:10:02,034 [main] DEBUG UmlClass - unclassified 7-2 class: (1836) WG10 IEC61850 abstract class null MetaModel::HierarchyIEC61850Object, 1 superclasses=[IEC61850Object] +2024-09-08 15:10:02,034 [main] TRACE UmlClass - created (1836) WG10 IEC61850 abstract class other 61850 MetaModel::HierarchyIEC61850Object, 1 superclasses=[IEC61850Object] +2024-09-08 15:10:02,034 [main] DEBUG UmlClass - unclassified 7-2 class: (1837) WG10 IEC61850 abstract class null MetaModel::NamedIEC61850Object, 1 superclasses=[HierarchyIEC61850Object] +2024-09-08 15:10:02,034 [main] TRACE UmlClass - created (1837) WG10 IEC61850 abstract class other 61850 MetaModel::NamedIEC61850Object, 1 superclasses=[HierarchyIEC61850Object] +2024-09-08 15:10:02,034 [main] DEBUG UmlClass - unclassified 7-2 class: (1842) WG10 IEC61850 null MetaModel::LD, 1 superclasses=[NamedIEC61850Object] +2024-09-08 15:10:02,034 [main] TRACE UmlClass - created (1842) WG10 IEC61850 other 61850 MetaModel::LD, 1 superclasses=[NamedIEC61850Object] +2024-09-08 15:10:02,034 [main] TRACE UmlClass - created (1843) WG10 IEC61850 abstract class LN MetaModel::LN, 1 superclasses=[NamedIEC61850Object] +2024-09-08 15:10:02,034 [main] TRACE UmlClass - created (1844) WG10 IEC61850 abstract class LN MetaModel::LNPHD, 1 superclasses=[LN] +2024-09-08 15:10:02,034 [main] TRACE UmlClass - created (2764) WG10 IEC61850 LN LNGroupL::LPHD, 1 superclasses=[LNPHD] +2024-09-08 15:10:02,034 [main] TRACE UmlSkipped - created (3454) WG10 IEC61850 note link LPHD. - ? - ? +2024-09-08 15:10:02,034 [main] TRACE UmlClass - created (1845) WG10 IEC61850 abstract class LN MetaModel::LN0, 1 superclasses=[LN] +2024-09-08 15:10:02,034 [main] TRACE UmlClass - created (2765) WG10 IEC61850 LN LNGroupL::LLN0, 1 superclasses=[LN0] +2024-09-08 15:10:02,035 [main] TRACE UmlClass - created (1846) WG10 IEC61850 abstract class LN MetaModel::LNDOM, 1 superclasses=[LN] +2024-09-08 15:10:02,035 [main] TRACE UmlClass - created (2728) WG10 IEC61850 abstract class LN <> LogicalNodes::DomainLN, 1 superclasses=[LNDOM] +2024-09-08 15:10:02,035 [main] TRACE UmlSkipped - created (2729) WG10 IEC61850 state machine DomainLN.behStateMachine +2024-09-08 15:10:02,035 [main] TRACE UmlDiagram - created (292) WG10 IEC61850 statechart DomainLN.Beh +2024-09-08 15:10:02,035 [main] TRACE UmlClass - created (2735) WG10 IEC61850 abstract class LN <> LogicalNodes::StatisticsLN, 1 superclasses=[DomainLN] +2024-09-08 15:10:02,035 [main] TRACE UmlSkipped - created (3465) WG10 IEC61850 note link StatisticsLN. - ? - ? +2024-09-08 15:10:02,035 [main] TRACE UmlClass - created (2815) WG10 IEC61850 LN LNGroupG::GGIO, 1 superclasses=[StatisticsLN] +2024-09-08 15:10:02,035 [main] TRACE UmlClass - created (2856) WG10 IEC61850 LN LNGroupM::MMXU, 1 superclasses=[StatisticsLN] +2024-09-08 15:10:02,035 [main] TRACE UmlSkipped - created (2154) WG10 IEC61850 note link MMXU. - ? - ? +2024-09-08 15:10:02,035 [main] TRACE UmlClass - created (2736) WG10 IEC61850 abstract class LN LogicalNodes::EquipmentInterfaceLN, 1 superclasses=[DomainLN] +2024-09-08 15:10:02,035 [main] TRACE UmlClass - created (3021) WG10 IEC61850 LN LNGroupZ::ZAXN, 1 superclasses=[EquipmentInterfaceLN] +2024-09-08 15:10:02,035 [main] TRACE UmlSkipped - created (3437) WG10 IEC61850 note link ZAXN. - ? - ? +2024-09-08 15:10:02,035 [main] TRACE UmlClass - created (3030) WG10 IEC61850 LN LNGroupL::KXYZ, 1 superclasses=[DomainLN] +2024-09-08 15:10:02,035 [main] TRACE UmlSkipped - created (3425) WG10 IEC61850 note link KXYZ. - ? - ? +2024-09-08 15:10:02,035 [main] TRACE UmlClass - created (2788) WG10 IEC61850 LN LNGroupC::CALH, 1 superclasses=[DomainLN] +2024-09-08 15:10:02,035 [main] TRACE UmlSkipped - created (3438) WG10 IEC61850 note link CALH. - ? - ? +2024-09-08 15:10:02,036 [main] TRACE UmlClass - created (2872) WG10 IEC61850 abstract class LN LNGroupP::ProtectionLN, 1 superclasses=[DomainLN] +2024-09-08 15:10:02,036 [main] TRACE UmlClass - created (2881) WG10 IEC61850 LN LNGroupP::PDIF, 1 superclasses=[ProtectionLN] +2024-09-08 15:10:02,036 [main] TRACE UmlClass - created (2883) WG10 IEC61850 LN LNGroupP::PDIS, 1 superclasses=[ProtectionLN] +2024-09-08 15:10:02,036 [main] TRACE UmlSkipped - created (2884) WG10 IEC61850 boundary PDIS. +2024-09-08 15:10:02,036 [main] TRACE UmlSkipped - created (2885) WG10 IEC61850 boundary PDIS. +2024-09-08 15:10:02,036 [main] TRACE UmlSkipped - created (2886) WG10 IEC61850 boundary PDIS. +2024-09-08 15:10:02,036 [main] TRACE UmlDiagram - created (307) WG10 IEC61850 custom PDIS.Load area and reach settings +2024-09-08 15:10:02,036 [main] TRACE UmlClass - created (3041) WG10 IEC61850 LN LNGroupP::PDISExt, 1 superclasses=[PDIS] +2024-09-08 15:10:02,036 [main] TRACE UmlClass - created (3042) WG10 IEC61850 LN LNGroupP::PDF2, 1 superclasses=[ProtectionLN] +2024-09-08 15:10:02,036 [main] TRACE UmlClass - created (2938) WG10 IEC61850 LN LNGroupR::RDIR, 1 superclasses=[DomainLN] +2024-09-08 15:10:02,036 [main] DEBUG UmlClass - unclassified 7-2 class: (1847) WG10 IEC61850 abstract class null MetaModel::CDC, 1 superclasses=[NamedIEC61850Object] +2024-09-08 15:10:02,036 [main] TRACE UmlClass - created (1847) WG10 IEC61850 abstract class other 61850 MetaModel::CDC, 1 superclasses=[NamedIEC61850Object] +2024-09-08 15:10:02,036 [main] TRACE UmlClass - created (1848) WG10 IEC61850 abstract class primitive CDC MetaModel::PrimitiveCDC, 1 superclasses=[CDC] +2024-09-08 15:10:02,036 [main] TRACE UmlClass - created (2234) WG10 IEC61850 abstract class primitive CDC CommonDataClasses::BasePrimitiveCDC, 1 superclasses=[PrimitiveCDC] +2024-09-08 15:10:02,036 [main] TRACE UmlSkipped - created (2163) WG10 IEC61850 note link BasePrimitiveCDC. - ? - ? +2024-09-08 15:10:02,036 [main] TRACE UmlClass - created (1995) WG10 IEC61850 abstract class primitive CDC CDCServiceTracking::CST, 1 superclasses=[BasePrimitiveCDC] +2024-09-08 15:10:02,036 [main] TRACE UmlSkipped - created (2204) WG10 IEC61850 note link CST. - ? - ? +2024-09-08 15:10:02,037 [main] TRACE UmlClass - created (1996) WG10 IEC61850 primitive CDC CDCServiceTracking::BTS, 1 superclasses=[CST] +2024-09-08 15:10:02,037 [main] TRACE UmlClass - created (1997) WG10 IEC61850 control tracking CDC CDCServiceTracking::CTS, 1 superclasses=[CST] +2024-09-08 15:10:02,037 [main] TRACE UmlClass - created (1998) WG10 IEC61850 primitive CDC CDCServiceTracking::GTS, 1 superclasses=[CST] +2024-09-08 15:10:02,037 [main] TRACE UmlClass - created (1999) WG10 IEC61850 primitive CDC CDCServiceTracking::LTS, 1 superclasses=[CST] +2024-09-08 15:10:02,037 [main] TRACE UmlClass - created (2000) WG10 IEC61850 primitive CDC CDCServiceTracking::MTS, 1 superclasses=[CST] +2024-09-08 15:10:02,037 [main] TRACE UmlClass - created (2001) WG10 IEC61850 primitive CDC CDCServiceTracking::NTS, 1 superclasses=[CST] +2024-09-08 15:10:02,037 [main] TRACE UmlClass - created (2002) WG10 IEC61850 primitive CDC CDCServiceTracking::OTS, 1 superclasses=[CST] +2024-09-08 15:10:02,037 [main] TRACE UmlClass - created (2003) WG10 IEC61850 primitive CDC CDCServiceTracking::STS, 1 superclasses=[CST] +2024-09-08 15:10:02,037 [main] TRACE UmlClass - created (2004) WG10 IEC61850 primitive CDC CDCServiceTracking::UTS, 1 superclasses=[CST] +2024-09-08 15:10:02,037 [main] TRACE UmlClass - created (2236) WG10 IEC61850 abstract class primitive CDC CommonDataClasses::SubstitutionCDC, 1 superclasses=[BasePrimitiveCDC] +2024-09-08 15:10:02,037 [main] TRACE UmlSkipped - created (2237) WG10 IEC61850 boundary SubstitutionCDC. +2024-09-08 15:10:02,037 [main] TRACE UmlDiagram - created (246) WG10 IEC61850 custom SubstitutionCDC.Concept of substitution +2024-09-08 15:10:02,037 [main] TRACE UmlClass - created (2248) WG10 IEC61850 primitive CDC CDCStatusInfo::DPS, 1 superclasses=[SubstitutionCDC] +2024-09-08 15:10:02,037 [main] TRACE UmlClass - created (2250) WG10 IEC61850 abstract class enumeration CDC CDCStatusInfo::ENS, 1 superclasses=[SubstitutionCDC] +2024-09-08 15:10:02,037 [main] TRACE UmlClass - created (2707) WG10 IEC61850 enumeration CDC DerivedCDCs::ENSBehaviourMode, 1 superclasses=[ENS] +2024-09-08 15:10:02,037 [main] TRACE UmlClass - created (2712) WG10 IEC61850 enumeration CDC DerivedCDCs::ENSHealth, 1 superclasses=[ENS] +2024-09-08 15:10:02,037 [main] TRACE UmlClass - created (3073) WG10 IEC61850 abstract class enumeration CDC DerivedCDCs::ENSEnumDA, 1 superclasses=[ENS] +2024-09-08 15:10:02,041 [main] TRACE UmlClass - created (3060) WG17 IEC61850 enumeration CDC DerivedCDCs_7_420::ENSMaterial, 1 superclasses=[ENS] +2024-09-08 15:10:02,041 [main] TRACE UmlClass - created (3062) WG17 IEC61850 enumeration CDC DerivedCDCs_7_420::ENSOther, 1 superclasses=[ENS] +2024-09-08 15:10:02,041 [main] TRACE UmlClass - created (2266) WG10 IEC61850 primitive CDC <> CDCAnalogueInfo::CMV, 1 superclasses=[SubstitutionCDC] +2024-09-08 15:10:02,041 [main] TRACE UmlSkipped - created (2161) WG10 IEC61850 note link CMV. - ? - ? +2024-09-08 15:10:02,041 [main] TRACE UmlSkipped - created (2165) WG10 IEC61850 note link CMV. - ? - ? +2024-09-08 15:10:02,041 [main] TRACE UmlClass - created (2278) WG10 IEC61850 abstract class primitive CDC CDCControl::ControllableCDC, 1 superclasses=[SubstitutionCDC] +2024-09-08 15:10:02,041 [main] TRACE UmlSkipped - created (2279) WG10 IEC61850 boundary ControllableCDC. +2024-09-08 15:10:02,041 [main] TRACE UmlDiagram - created (256) WG10 IEC61850 custom ControllableCDC.Attributes for command testing +2024-09-08 15:10:02,041 [main] TRACE UmlClass - created (2283) WG10 IEC61850 abstract class enumeration CDC CDCControl::ENC, 1 superclasses=[ControllableCDC] +2024-09-08 15:10:02,041 [main] TRACE UmlClass - created (2673) WG10 IEC61850 enumeration CDC DerivedCDCs::ENCBehaviourMode, 1 superclasses=[ENC] +2024-09-08 15:10:02,041 [main] TRACE UmlClass - created (3059) WG17 IEC61850 enumeration CDC DerivedCDCs_7_420::ENCMaterial, 1 superclasses=[ENC] +2024-09-08 15:10:02,041 [main] TRACE UmlClass - created (2287) WG10 IEC61850 primitive CDC <> CDCControl::BAC, 1 superclasses=[ControllableCDC] +2024-09-08 15:10:02,041 [main] TRACE UmlClass - created (3038) WG10 IEC61850 primitive CDC CDCStatusInfo::EXY, 1 superclasses=[BasePrimitiveCDC] +2024-09-08 15:10:02,042 [main] TRACE UmlClass - created (3039) WG10 IEC61850 primitive CDC DerivedCDCs::EXYBehaviourMode, 1 superclasses=[EXY] +2024-09-08 15:10:02,042 [main] TRACE UmlClass - created (2252) WG10 IEC61850 primitive CDC CDCStatusInfo::ACD, 1 superclasses=[BasePrimitiveCDC] +2024-09-08 15:10:02,042 [main] TRACE UmlClass - created (2255) WG10 IEC61850 primitive CDC CDCStatusInfo::HST, 1 superclasses=[BasePrimitiveCDC] +2024-09-08 15:10:02,042 [main] TRACE UmlSkipped - created (2256) WG10 IEC61850 boundary HST. +2024-09-08 15:10:02,042 [main] TRACE UmlSkipped - created (2257) WG10 IEC61850 boundary HST. +2024-09-08 15:10:02,042 [main] TRACE UmlDiagram - created (249) WG10 IEC61850 custom HST.One-dimensional histogram +2024-09-08 15:10:02,042 [main] TRACE UmlDiagram - created (250) WG10 IEC61850 custom HST.Two-dimensional histogram +2024-09-08 15:10:02,042 [main] TRACE UmlClass - created (2295) WG10 IEC61850 abstract class enumeration CDC CDCStatusSet::ENG, 1 superclasses=[BasePrimitiveCDC] +2024-09-08 15:10:02,042 [main] TRACE UmlClass - created (2677) WG10 IEC61850 enumeration CDC DerivedCDCs::ENGCalcMethod, 1 superclasses=[ENG] +2024-09-08 15:10:02,042 [main] TRACE UmlClass - created (2314) WG10 IEC61850 primitive CDC CDCDescription::LPL, 1 superclasses=[BasePrimitiveCDC] +2024-09-08 15:10:02,042 [main] TRACE UmlClass - created (1849) WG10 IEC61850 abstract class composed CDC MetaModel::ComposedCDC, 1 superclasses=[CDC] +2024-09-08 15:10:02,042 [main] TRACE UmlClass - created (2235) WG10 IEC61850 abstract class composed CDC CommonDataClasses::BaseComposedCDC, 1 superclasses=[ComposedCDC] +2024-09-08 15:10:02,042 [main] TRACE UmlClass - created (2263) WG10 IEC61850 abstract class composed CDC <> CDCAnalogueInfo::HarmonicMeasurandCDC, 1 superclasses=[BaseComposedCDC] +2024-09-08 15:10:02,042 [main] TRACE UmlClass - created (2273) WG10 IEC61850 composed CDC CDCAnalogueInfo::HWYE, 1 superclasses=[HarmonicMeasurandCDC] +2024-09-08 15:10:02,042 [main] TRACE UmlClass - created (1851) WG10 IEC61850 abstract class FCDA MetaModel::FCDA, 1 superclasses=[NamedIEC61850Object] +2024-09-08 15:10:02,042 [main] TRACE UmlClass - created (1916) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_BL, 1 superclasses=[FCDA] +2024-09-08 15:10:02,042 [main] TRACE UmlClass - created (2122) WG10 IEC61850 FCDA FCDAs::BOOLEAN_BL, 1 superclasses=[FCDA_BL] +2024-09-08 15:10:02,042 [main] TRACE UmlClass - created (1917) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_CF, 1 superclasses=[FCDA] +2024-09-08 15:10:02,043 [main] TRACE UmlClass - created (1903) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_CF, 1 superclasses=[FCDA_CF] +2024-09-08 15:10:02,043 [main] TRACE UmlClass - created (1918) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_CF_dchg, 1 superclasses=[FCDA_CF] +2024-09-08 15:10:02,043 [main] TRACE UmlClass - created (1904) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_CF_dchg, 1 superclasses=[FCDA_CF_dchg] +2024-09-08 15:10:02,043 [main] TRACE UmlClass - created (2144) WG10 IEC61850 abstract class enumeration FCDA FCDAs::EnumDA_CF_dchg, 1 superclasses=[EnumFCDA_CF_dchg] +2024-09-08 15:10:02,043 [main] TRACE UmlClass - created (2183) WG10 IEC61850 enumeration FCDA FCDAs::PhaseAngleReference_CF_dchg, 1 superclasses=[EnumFCDA_CF_dchg] +2024-09-08 15:10:02,043 [main] TRACE UmlClass - created (2123) WG10 IEC61850 FCDA FCDAs::BOOLEAN_CF_dchg, 1 superclasses=[FCDA_CF_dchg] +2024-09-08 15:10:02,043 [main] TRACE UmlClass - created (2160) WG10 IEC61850 FCDA FCDAs::INT16U_CF_dchg, 1 superclasses=[FCDA_CF_dchg] +2024-09-08 15:10:02,043 [main] TRACE UmlClass - created (2165) WG10 IEC61850 FCDA FCDAs::INT32U_CF_dchg, 1 superclasses=[FCDA_CF_dchg] +2024-09-08 15:10:02,043 [main] TRACE UmlClass - created (2167) WG10 IEC61850 FCDA FCDAs::INT32_CF_dchg, 1 superclasses=[FCDA_CF_dchg] +2024-09-08 15:10:02,043 [main] TRACE UmlClass - created (2194) WG10 IEC61850 FCDA FCDAs::RangeConfig_CF_dchg, 1 superclasses=[FCDA_CF_dchg] +2024-09-08 15:10:02,043 [main] TRACE UmlClass - created (2159) WG10 IEC61850 FCDA FCDAs::INT16U_CF, 1 superclasses=[FCDA_CF] +2024-09-08 15:10:02,043 [main] TRACE UmlClass - created (1919) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_DC, 1 superclasses=[FCDA] +2024-09-08 15:10:02,044 [main] TRACE UmlClass - created (2186) WG10 IEC61850 FCDA FCDAs::Point_DC, 1 superclasses=[FCDA_DC] +2024-09-08 15:10:02,044 [main] TRACE UmlClass - created (2207) WG10 IEC61850 FCDA FCDAs::UNICODE_STRING255_DC, 1 superclasses=[FCDA_DC] +2024-09-08 15:10:02,044 [main] TRACE UmlClass - created (1920) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_EX, 1 superclasses=[FCDA] +2024-09-08 15:10:02,044 [main] TRACE UmlClass - created (2217) WG10 IEC61850 FCDA FCDAs::VISIBLE_STRING255_EX, 1 superclasses=[FCDA_EX] +2024-09-08 15:10:02,044 [main] TRACE UmlClass - created (1921) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_MX, 1 superclasses=[FCDA] +2024-09-08 15:10:02,044 [main] TRACE UmlClass - created (1905) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_MX, 1 superclasses=[FCDA_MX] +2024-09-08 15:10:02,044 [main] TRACE UmlClass - created (1922) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_MX_dchg, 1 superclasses=[FCDA_MX] +2024-09-08 15:10:02,044 [main] TRACE UmlClass - created (2116) WG10 IEC61850 FCDA FCDAs::AnalogueValue_MX_dchg, 1 superclasses=[FCDA_MX_dchg] +2024-09-08 15:10:02,044 [main] TRACE UmlClass - created (2124) WG10 IEC61850 FCDA FCDAs::BOOLEAN_MX_dchg, 1 superclasses=[FCDA_MX_dchg] +2024-09-08 15:10:02,044 [main] TRACE UmlClass - created (1923) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_MX_dchg_dupd, 1 superclasses=[FCDA_MX] +2024-09-08 15:10:02,044 [main] TRACE UmlClass - created (2117) WG10 IEC61850 FCDA FCDAs::AnalogueValue_MX_dchg_dupd, 1 superclasses=[FCDA_MX_dchg_dupd] +2024-09-08 15:10:02,044 [main] TRACE UmlClass - created (1924) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_MX_qchg, 1 superclasses=[FCDA_MX] +2024-09-08 15:10:02,044 [main] TRACE UmlClass - created (2191) WG10 IEC61850 FCDA FCDAs::Quality_MX_qchg, 1 superclasses=[FCDA_MX_qchg] +2024-09-08 15:10:02,044 [main] TRACE UmlClass - created (2115) WG10 IEC61850 FCDA FCDAs::AnalogueValue_MX, 1 superclasses=[FCDA_MX] +2024-09-08 15:10:02,044 [main] TRACE UmlSkipped - created (2159) WG10 IEC61850 note link AnalogueValue_MX. - ? - ? +2024-09-08 15:10:02,044 [main] TRACE UmlSkipped - created (2171) WG10 IEC61850 note link AnalogueValue_MX. - ? - ? +2024-09-08 15:10:02,045 [main] TRACE UmlClass - created (1925) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_OR, 1 superclasses=[FCDA] +2024-09-08 15:10:02,045 [main] TRACE UmlClass - created (1926) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_OR_dchg, 1 superclasses=[FCDA_OR] +2024-09-08 15:10:02,045 [main] TRACE UmlClass - created (2125) WG10 IEC61850 FCDA FCDAs::BOOLEAN_OR_dchg, 1 superclasses=[FCDA_OR_dchg] +2024-09-08 15:10:02,045 [main] TRACE UmlClass - created (1927) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_SE, 1 superclasses=[FCDA] +2024-09-08 15:10:02,045 [main] TRACE UmlSkipped - created (2203) WG10 IEC61850 note link FCDA_SE. - ? - ? +2024-09-08 15:10:02,045 [main] TRACE UmlClass - created (1928) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_SE_dchg, 1 superclasses=[FCDA_SE] +2024-09-08 15:10:02,045 [main] TRACE UmlClass - created (1908) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_SE_dchg, 1 superclasses=[FCDA_SE_dchg] +2024-09-08 15:10:02,045 [main] TRACE UmlClass - created (2126) WG10 IEC61850 FCDA FCDAs::BOOLEAN_SE, 1 superclasses=[FCDA_SE] +2024-09-08 15:10:02,045 [main] TRACE UmlClass - created (2187) WG10 IEC61850 FCDA FCDAs::Point_SE, 1 superclasses=[FCDA_SE] +2024-09-08 15:10:02,045 [main] TRACE UmlClass - created (1929) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_SG, 1 superclasses=[FCDA] +2024-09-08 15:10:02,045 [main] TRACE UmlClass - created (1930) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_SG_dchg, 1 superclasses=[FCDA_SG] +2024-09-08 15:10:02,045 [main] TRACE UmlClass - created (1910) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_SG_dchg, 1 superclasses=[FCDA_SG_dchg] +2024-09-08 15:10:02,046 [main] TRACE UmlClass - created (2127) WG10 IEC61850 FCDA FCDAs::BOOLEAN_SG, 1 superclasses=[FCDA_SG] +2024-09-08 15:10:02,046 [main] TRACE UmlClass - created (2188) WG10 IEC61850 FCDA FCDAs::Point_SG, 1 superclasses=[FCDA_SG] +2024-09-08 15:10:02,046 [main] TRACE UmlClass - created (1931) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_SP, 1 superclasses=[FCDA] +2024-09-08 15:10:02,046 [main] TRACE UmlClass - created (1932) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_SP_dchg, 1 superclasses=[FCDA_SP] +2024-09-08 15:10:02,046 [main] TRACE UmlClass - created (2128) WG10 IEC61850 FCDA FCDAs::BOOLEAN_SP_dchg, 1 superclasses=[FCDA_SP_dchg] +2024-09-08 15:10:02,046 [main] TRACE UmlClass - created (2189) WG10 IEC61850 FCDA FCDAs::Point_SP, 1 superclasses=[FCDA_SP] +2024-09-08 15:10:02,046 [main] TRACE UmlClass - created (1933) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_ST, 1 superclasses=[FCDA] +2024-09-08 15:10:02,046 [main] TRACE UmlClass - created (1912) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_ST, 1 superclasses=[FCDA_ST] +2024-09-08 15:10:02,046 [main] TRACE UmlClass - created (1934) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_ST_dchg, 1 superclasses=[FCDA_ST] +2024-09-08 15:10:02,046 [main] TRACE UmlClass - created (1913) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_ST_dchg, 1 superclasses=[FCDA_ST_dchg] +2024-09-08 15:10:02,046 [main] TRACE UmlClass - created (1939) WG10 IEC61850 abstract class coded enumeration FCDA MetaModelFCsAndTrgOps::PackedEnumFCDA_SP_dchg, 1 superclasses=[EnumFCDA_ST_dchg] +2024-09-08 15:10:02,046 [main] TRACE UmlClass - created (2142) WG10 IEC61850 coded enumeration FCDA FCDAs::DpStatus_ST_dchg, 1 superclasses=[PackedEnumFCDA_SP_dchg] +2024-09-08 15:10:02,046 [main] TRACE UmlClass - created (2148) WG10 IEC61850 abstract class enumeration FCDA FCDAs::EnumDA_ST_dchg, 1 superclasses=[EnumFCDA_ST_dchg] +2024-09-08 15:10:02,046 [main] TRACE UmlClass - created (2184) WG10 IEC61850 enumeration FCDA FCDAs::PhaseFaultDirection_ST_dchg, 1 superclasses=[EnumFCDA_ST_dchg] +2024-09-08 15:10:02,047 [main] TRACE UmlClass - created (2129) WG10 IEC61850 FCDA FCDAs::BOOLEAN_ST_dchg, 1 superclasses=[FCDA_ST_dchg] +2024-09-08 15:10:02,047 [main] TRACE UmlClass - created (2171) WG10 IEC61850 FCDA FCDAs::INT32_ST_dchg, 1 superclasses=[FCDA_ST_dchg] +2024-09-08 15:10:02,047 [main] TRACE UmlClass - created (1935) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_ST_dchg_dupd, 1 superclasses=[FCDA_ST] +2024-09-08 15:10:02,047 [main] TRACE UmlClass - created (1914) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_ST_dchg_dupd, 1 superclasses=[FCDA_ST_dchg_dupd] +2024-09-08 15:10:02,047 [main] TRACE UmlClass - created (2149) WG10 IEC61850 abstract class enumeration FCDA FCDAs::EnumDA_ST_dchg_dupd, 1 superclasses=[EnumFCDA_ST_dchg_dupd] +2024-09-08 15:10:02,047 [main] TRACE UmlClass - created (2172) WG10 IEC61850 FCDA FCDAs::INT32_ST_dchg_dupd, 1 superclasses=[FCDA_ST_dchg_dupd] +2024-09-08 15:10:02,047 [main] TRACE UmlClass - created (1936) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_ST_dupd, 1 superclasses=[FCDA_ST] +2024-09-08 15:10:02,047 [main] TRACE UmlClass - created (1937) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_ST_qchg, 1 superclasses=[FCDA_ST] +2024-09-08 15:10:02,047 [main] TRACE UmlClass - created (2192) WG10 IEC61850 FCDA FCDAs::Quality_ST_qchg, 1 superclasses=[FCDA_ST_qchg] +2024-09-08 15:10:02,047 [main] TRACE UmlClass - created (2206) WG10 IEC61850 FCDA FCDAs::TimeStamp_ST, 1 superclasses=[FCDA_ST] +2024-09-08 15:10:02,047 [main] TRACE UmlClass - created (1938) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_SV, 1 superclasses=[FCDA] +2024-09-08 15:10:02,047 [main] TRACE UmlClass - created (1915) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_SV, 1 superclasses=[FCDA_SV] +2024-09-08 15:10:02,048 [main] TRACE UmlClass - created (1940) WG10 IEC61850 abstract class coded enumeration FCDA MetaModelFCsAndTrgOps::PackedEnumFCDA_SV, 1 superclasses=[EnumFCDA_SV] +2024-09-08 15:10:02,048 [main] TRACE UmlClass - created (2143) WG10 IEC61850 coded enumeration FCDA FCDAs::DpStatus_SV, 1 superclasses=[PackedEnumFCDA_SV] +2024-09-08 15:10:02,048 [main] TRACE UmlClass - created (2150) WG10 IEC61850 abstract class enumeration FCDA FCDAs::EnumDA_SV, 1 superclasses=[EnumFCDA_SV] +2024-09-08 15:10:02,048 [main] TRACE UmlClass - created (2130) WG10 IEC61850 FCDA FCDAs::BOOLEAN_SV, 1 superclasses=[FCDA_SV] +2024-09-08 15:10:02,048 [main] TRACE UmlClass - created (2193) WG10 IEC61850 FCDA FCDAs::Quality_SV, 1 superclasses=[FCDA_SV] +2024-09-08 15:10:02,048 [main] DEBUG UmlClass - unclassified 7-2 class: (1852) WG10 IEC61850 abstract class null MetaModel::DA, 1 superclasses=[NamedIEC61850Object] +2024-09-08 15:10:02,048 [main] TRACE UmlClass - created (1852) WG10 IEC61850 abstract class other 61850 MetaModel::DA, 1 superclasses=[NamedIEC61850Object] +2024-09-08 15:10:02,049 [main] TRACE UmlClass - created (1853) WG10 IEC61850 abstract class primitive DA MetaModel::PrimitiveDA, 1 superclasses=[DA] +2024-09-08 15:10:02,049 [main] TRACE UmlClass - created (1755) WG10 IEC61850 primitive DA BasicDAs::PHYCOMADDR, 1 superclasses=[PrimitiveDA] +2024-09-08 15:10:02,049 [main] TRACE UmlClass - created (1754) WG10 IEC61850 primitive DA BasicDAs::ObjectReference, 1 superclasses=[PrimitiveDA] +2024-09-08 15:10:02,049 [main] TRACE UmlClass - created (1752) WG10 IEC61850 primitive DA BasicDAs::VISIBLE_STRING255, 1 superclasses=[PrimitiveDA] +2024-09-08 15:10:02,049 [main] TRACE UmlSkipped - created (2166) WG10 IEC61850 note link VISIBLE_STRING255. - ? - ? +2024-09-08 15:10:02,049 [main] TRACE UmlClass - created (1751) WG10 IEC61850 primitive DA BasicDAs::UNICODE_STRING255, 1 superclasses=[PrimitiveDA] +2024-09-08 15:10:02,049 [main] TRACE UmlClass - created (1746) WG10 IEC61850 primitive DA BasicDAs::INT32U, 1 superclasses=[PrimitiveDA] +2024-09-08 15:10:02,049 [main] TRACE UmlClass - created (1745) WG10 IEC61850 primitive DA BasicDAs::INT32, 1 superclasses=[PrimitiveDA] +2024-09-08 15:10:02,049 [main] TRACE UmlClass - created (1743) WG10 IEC61850 primitive DA BasicDAs::INT16U, 1 superclasses=[PrimitiveDA] +2024-09-08 15:10:02,049 [main] TRACE UmlClass - created (1741) WG10 IEC61850 primitive DA BasicDAs::FLOAT32, 1 superclasses=[PrimitiveDA] +2024-09-08 15:10:02,049 [main] TRACE UmlSkipped - created (2168) WG10 IEC61850 note link FLOAT32. - ? - ? +2024-09-08 15:10:02,049 [main] TRACE UmlClass - created (1740) WG10 IEC61850 primitive DA BasicDAs::BOOLEAN, 1 superclasses=[PrimitiveDA] +2024-09-08 15:10:02,050 [main] TRACE UmlClass - created (1854) WG10 IEC61850 abstract class packed list DA MetaModel::PackedPrimitiveDA, 1 superclasses=[PrimitiveDA] +2024-09-08 15:10:02,050 [main] TRACE UmlClass - created (1757) WG10 IEC61850 packed list DA BasicDAs::TriggerConditions, 1 superclasses=[PackedPrimitiveDA] +2024-09-08 15:10:02,050 [main] TRACE UmlSkipped - created (1758) WG10 IEC61850 boundary TriggerConditions. +2024-09-08 15:10:02,050 [main] TRACE UmlDiagram - created (206) WG10 IEC61850 custom TriggerConditions.Relation between trigger conditions, applicable trigger options and reporting +2024-09-08 15:10:02,050 [main] TRACE UmlClass - created (1756) WG10 IEC61850 packed list DA BasicDAs::TimeStamp, 1 superclasses=[PackedPrimitiveDA] +2024-09-08 15:10:02,050 [main] TRACE UmlClass - created (2080) WG10 IEC61850 packed list DA ConstructedDAs::Quality, 1 superclasses=[PackedPrimitiveDA] +2024-09-08 15:10:02,050 [main] TRACE UmlSkipped - created (2081) WG10 IEC61850 state machine Quality.validityStateMachine +2024-09-08 15:10:02,050 [main] TRACE UmlDiagram - created (232) WG10 IEC61850 statechart Quality.Quality.validity +2024-09-08 15:10:02,050 [main] TRACE UmlClass - created (1855) WG10 IEC61850 abstract class enumeration DA MetaModel::EnumDA, 1 superclasses=[PrimitiveDA] +2024-09-08 15:10:02,050 [main] TRACE UmlClass - created (1856) WG10 IEC61850 abstract class coded enumeration DA MetaModel::PackedEnumDA, 1 superclasses=[EnumDA] +2024-09-08 15:10:02,050 [main] TRACE UmlClass - created (1760) WG10 IEC61850 coded enumeration DA BasicDAs::BsControl, 1 superclasses=[PackedEnumDA] +2024-09-08 15:10:02,050 [main] TRACE UmlClass - created (1759) WG10 IEC61850 coded enumeration DA BasicDAs::DpStatus, 1 superclasses=[PackedEnumDA] +2024-09-08 15:10:02,050 [main] TRACE UmlClass - created (2072) WG10 IEC61850 enumeration DA ImplicitDAs::SIUnit, 1 superclasses=[EnumDA] +2024-09-08 15:10:02,050 [main] TRACE UmlClass - created (2061) WG10 IEC61850 enumeration DA ImplicitDAs::Multiplier, 1 superclasses=[EnumDA] +2024-09-08 15:10:02,050 [main] TRACE UmlClass - created (2066) WG10 IEC61850 enumeration DA ImplicitDAs::PhaseFaultDirection, 1 superclasses=[EnumDA] +2024-09-08 15:10:02,050 [main] TRACE UmlClass - created (2065) WG10 IEC61850 enumeration DA ImplicitDAs::PhaseAngleReference, 1 superclasses=[EnumDA] +2024-09-08 15:10:02,050 [main] TRACE UmlClass - created (2622) WG10 IEC61850 enumeration DA DerivedDAs::BehaviourMode, 1 superclasses=[EnumDA] +2024-09-08 15:10:02,050 [main] TRACE UmlClass - created (2625) WG10 IEC61850 enumeration DA DerivedDAs::CalcMethod, 1 superclasses=[EnumDA] +2024-09-08 15:10:02,050 [main] TRACE UmlClass - created (2634) WG10 IEC61850 enumeration DA DerivedDAs::Health, 1 superclasses=[EnumDA] +2024-09-08 15:10:02,051 [main] TRACE UmlClass - created (3055) WG17 IEC61850 enumeration DA DerivedDAs_7_420::Material, 1 superclasses=[EnumDA] +2024-09-08 15:10:02,051 [main] TRACE UmlSkipped - created (3433) WG17 IEC61850 note link Material. - ? - ? +2024-09-08 15:10:02,051 [main] TRACE UmlClass - created (3088) WG17 IEC61850 enumeration DA DerivedDAs_7_420::Material_control, 1 superclasses=[EnumDA] +2024-09-08 15:10:02,051 [main] TRACE UmlSkipped - created (3474) WG17 IEC61850 note link Material_control. - ? - ? +2024-09-08 15:10:02,051 [main] TRACE UmlClass - created (3056) WG17 IEC61850 enumeration DA DerivedDAs_7_420::Other, 1 superclasses=[EnumDA] +2024-09-08 15:10:02,051 [main] TRACE UmlSkipped - created (3432) WG17 IEC61850 note link Other. - ? - ? +2024-09-08 15:10:02,051 [main] TRACE UmlClass - created (1857) WG10 IEC61850 abstract class composed DA MetaModel::ComposedDA, 1 superclasses=[DA] +2024-09-08 15:10:02,051 [main] TRACE UmlClass - created (2089) WG10 IEC61850 composed DA ConstructedDAs::AnalogueValue, 1 superclasses=[ComposedDA] +2024-09-08 15:10:02,051 [main] TRACE UmlSkipped - created (2152) WG10 IEC61850 note link AnalogueValue. - ? - ? +2024-09-08 15:10:02,051 [main] TRACE UmlSkipped - created (2158) WG10 IEC61850 note link AnalogueValue. - ? - ? +2024-09-08 15:10:02,051 [main] TRACE UmlSkipped - created (2169) WG10 IEC61850 note link AnalogueValue. - ? - ? +2024-09-08 15:10:02,051 [main] TRACE UmlClass - created (2091) WG10 IEC61850 composed DA ConstructedDAs::RangeConfig, 1 superclasses=[ComposedDA] +2024-09-08 15:10:02,051 [main] TRACE UmlDiagram - created (235) WG10 IEC61850 custom RangeConfig.Range configuration +2024-09-08 15:10:02,051 [main] TRACE UmlClass - created (2096) WG10 IEC61850 composed DA ConstructedDAs::Unit, 1 superclasses=[ComposedDA] +2024-09-08 15:10:02,051 [main] TRACE UmlClass - created (2098) WG10 IEC61850 composed DA ConstructedDAs::Point, 1 superclasses=[ComposedDA] +2024-09-08 15:10:02,051 [main] DEBUG UmlClass - unclassified 7-2 class: (1858) WG10 IEC61850 abstract class null MetaModel::DS, 1 superclasses=[NamedIEC61850Object] +2024-09-08 15:10:02,051 [main] TRACE UmlClass - created (1858) WG10 IEC61850 abstract class other 61850 MetaModel::DS, 1 superclasses=[NamedIEC61850Object] +2024-09-08 15:10:02,051 [main] DEBUG UmlClass - unclassified 7-2 class: (1859) WG10 IEC61850 abstract class null MetaModel::LNOwnedDS, 1 superclasses=[DS] +2024-09-08 15:10:02,051 [main] TRACE UmlClass - created (1859) WG10 IEC61850 abstract class other 61850 MetaModel::LNOwnedDS, 1 superclasses=[DS] +2024-09-08 15:10:02,051 [main] DEBUG UmlClass - unclassified 7-2 class: (1861) WG10 IEC61850 null MetaModel::ConfiguredDS, 1 superclasses=[LNOwnedDS] +2024-09-08 15:10:02,052 [main] TRACE UmlClass - created (1861) WG10 IEC61850 other 61850 MetaModel::ConfiguredDS, 1 superclasses=[LNOwnedDS] +2024-09-08 15:10:02,052 [main] DEBUG UmlClass - unclassified 7-2 class: (1862) WG10 IEC61850 null MetaModel::PersistentDS, 1 superclasses=[LNOwnedDS] +2024-09-08 15:10:02,052 [main] TRACE UmlClass - created (1862) WG10 IEC61850 other 61850 MetaModel::PersistentDS, 1 superclasses=[LNOwnedDS] +2024-09-08 15:10:02,052 [main] DEBUG UmlClass - unclassified 7-2 class: (1860) WG10 IEC61850 null MetaModel::NonPersistentDS, 1 superclasses=[DS] +2024-09-08 15:10:02,052 [main] TRACE UmlClass - created (1860) WG10 IEC61850 other 61850 MetaModel::NonPersistentDS, 1 superclasses=[DS] +2024-09-08 15:10:02,052 [main] DEBUG UmlClass - unclassified 7-2 class: (1864) WG10 IEC61850 abstract class null MetaModel::ControlBlock, 1 superclasses=[NamedIEC61850Object] +2024-09-08 15:10:02,052 [main] TRACE UmlClass - created (1864) WG10 IEC61850 abstract class other 61850 MetaModel::ControlBlock, 1 superclasses=[NamedIEC61850Object] +2024-09-08 15:10:02,052 [main] DEBUG UmlClass - unclassified 7-2 class: (1865) WG10 IEC61850 abstract class null MetaModel::RCB, 1 superclasses=[ControlBlock] +2024-09-08 15:10:02,052 [main] TRACE UmlClass - created (1865) WG10 IEC61850 abstract class other 61850 MetaModel::RCB, 1 superclasses=[ControlBlock] +2024-09-08 15:10:02,052 [main] DEBUG UmlClass - unclassified 7-2 class: (1866) WG10 IEC61850 abstract class null MetaModel::BRCB, 1 superclasses=[RCB] +2024-09-08 15:10:02,052 [main] TRACE UmlClass - created (1866) WG10 IEC61850 abstract class other 61850 MetaModel::BRCB, 1 superclasses=[RCB] +2024-09-08 15:10:02,052 [main] DEBUG UmlClass - unclassified 7-2 class: (1867) WG10 IEC61850 abstract class null MetaModel::URCB, 1 superclasses=[RCB] +2024-09-08 15:10:02,052 [main] TRACE UmlClass - created (1867) WG10 IEC61850 abstract class other 61850 MetaModel::URCB, 1 superclasses=[RCB] +2024-09-08 15:10:02,052 [main] DEBUG UmlClass - unclassified 7-2 class: (1868) WG10 IEC61850 null MetaModel::LCB, 1 superclasses=[ControlBlock] +2024-09-08 15:10:02,052 [main] TRACE UmlClass - created (1868) WG10 IEC61850 other 61850 MetaModel::LCB, 1 superclasses=[ControlBlock] +2024-09-08 15:10:02,052 [main] DEBUG UmlClass - unclassified 7-2 class: (1870) WG10 IEC61850 null MetaModel::GCB, 1 superclasses=[ControlBlock] +2024-09-08 15:10:02,052 [main] TRACE UmlClass - created (1870) WG10 IEC61850 other 61850 MetaModel::GCB, 1 superclasses=[ControlBlock] +2024-09-08 15:10:02,052 [main] DEBUG UmlClass - unclassified 7-2 class: (1871) WG10 IEC61850 abstract class null MetaModel::SVCB, 1 superclasses=[ControlBlock] +2024-09-08 15:10:02,052 [main] TRACE UmlClass - created (1871) WG10 IEC61850 abstract class other 61850 MetaModel::SVCB, 1 superclasses=[ControlBlock] +2024-09-08 15:10:02,053 [main] DEBUG UmlClass - unclassified 7-2 class: (1872) WG10 IEC61850 abstract class null MetaModel::MSVCB, 1 superclasses=[SVCB] +2024-09-08 15:10:02,053 [main] TRACE UmlClass - created (1872) WG10 IEC61850 abstract class other 61850 MetaModel::MSVCB, 1 superclasses=[SVCB] +2024-09-08 15:10:02,053 [main] DEBUG UmlClass - unclassified 7-2 class: (1873) WG10 IEC61850 abstract class null MetaModel::USVCB, 1 superclasses=[SVCB] +2024-09-08 15:10:02,053 [main] TRACE UmlClass - created (1873) WG10 IEC61850 abstract class other 61850 MetaModel::USVCB, 1 superclasses=[SVCB] +2024-09-08 15:10:02,053 [main] DEBUG UmlClass - unclassified 7-2 class: (1874) WG10 IEC61850 null MetaModel::SGCB, 1 superclasses=[ControlBlock] +2024-09-08 15:10:02,053 [main] TRACE UmlClass - created (1874) WG10 IEC61850 other 61850 MetaModel::SGCB, 1 superclasses=[ControlBlock] +2024-09-08 15:10:02,053 [main] DEBUG UmlClass - unclassified 7-2 class: (1869) WG10 IEC61850 null MetaModel::LOG, 1 superclasses=[NamedIEC61850Object] +2024-09-08 15:10:02,053 [main] TRACE UmlClass - created (1869) WG10 IEC61850 other 61850 MetaModel::LOG, 1 superclasses=[NamedIEC61850Object] +2024-09-08 15:10:02,053 [main] DEBUG UmlClass - unclassified 7-2 class: (1838) WG10 IEC61850 null MetaModel::IED, 1 superclasses=[HierarchyIEC61850Object] +2024-09-08 15:10:02,053 [main] TRACE UmlClass - created (1838) WG10 IEC61850 other 61850 MetaModel::IED, 1 superclasses=[HierarchyIEC61850Object] +2024-09-08 15:10:02,053 [main] DEBUG UmlClass - unclassified 7-2 class: (1839) WG10 IEC61850 null MetaModel::SERVER, 1 superclasses=[HierarchyIEC61850Object] +2024-09-08 15:10:02,053 [main] TRACE UmlClass - created (1839) WG10 IEC61850 other 61850 MetaModel::SERVER, 1 superclasses=[HierarchyIEC61850Object] +2024-09-08 15:10:02,053 [main] DEBUG UmlClass - unclassified 7-2 class: (1850) WG10 IEC61850 null MetaModel::FCD, 1 superclasses=[HierarchyIEC61850Object] +2024-09-08 15:10:02,053 [main] TRACE UmlClass - created (1850) WG10 IEC61850 other 61850 MetaModel::FCD, 1 superclasses=[HierarchyIEC61850Object] +2024-09-08 15:10:02,053 [main] DEBUG UmlClass - unclassified 7-2 class: (1877) WG10 IEC61850 null MetaModel::FILE, 1 superclasses=[HierarchyIEC61850Object] +2024-09-08 15:10:02,053 [main] TRACE UmlClass - created (1877) WG10 IEC61850 other 61850 MetaModel::FILE, 1 superclasses=[HierarchyIEC61850Object] +2024-09-08 15:10:02,053 [main] DEBUG UmlClass - unclassified 7-2 class: (1840) WG10 IEC61850 null MetaModel::TPAA, 1 superclasses=[IEC61850Object] +2024-09-08 15:10:02,053 [main] TRACE UmlClass - created (1840) WG10 IEC61850 other 61850 MetaModel::TPAA, 1 superclasses=[IEC61850Object] +2024-09-08 15:10:02,053 [main] DEBUG UmlClass - unclassified 7-2 class: (1841) WG10 IEC61850 null MetaModel::MCAA, 1 superclasses=[IEC61850Object] +2024-09-08 15:10:02,053 [main] TRACE UmlClass - created (1841) WG10 IEC61850 other 61850 MetaModel::MCAA, 1 superclasses=[IEC61850Object] +2024-09-08 15:10:02,053 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (2720) WG10 IEC61850 null DerivedCDCs::SPCTransient, 1 superclasses=[SPC] +2024-09-08 15:10:02,053 [main] TRACE UmlClass - created (2720) WG10 IEC61850 other 61850 DerivedCDCs::SPCTransient, 1 superclasses=[SPC] +2024-09-08 15:10:02,054 [main] TRACE UmlClass - created (3091) WG17 IEC61850 enumeration <> DOEnums_7_420::ExtBaseKind, 1 superclasses=[BaseKind] +2024-09-08 15:10:02,054 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,054 [main] TRACE UmlAttribute - created (6717) WG17 IEC61850 literal <> DOEnums_7_420::ExtBaseKind.ebk1 +2024-09-08 15:10:02,054 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,054 [main] TRACE UmlAttribute - created (6718) WG17 IEC61850 literal <> DOEnums_7_420::ExtBaseKind.ebk2 +2024-09-08 15:10:02,054 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,055 [main] TRACE UmlAttribute - created (6719) WG17 IEC61850 literal <> DOEnums_7_420::ExtBaseKind.ebk3 +2024-09-08 15:10:02,055 [main] TRACE UmlClass - created (1488) OTHER_CIM CIM class Ext1::Apple, 1 superclasses=[Fruit] +2024-09-08 15:10:02,055 [main] TRACE UmlSkipped - created (3458) OTHER_CIM CIM other Apple. - ? - ? +2024-09-08 15:10:02,055 [main] TRACE UmlSkipped - created (3459) OTHER_CIM CIM other Apple. - ? - ? +2024-09-08 15:10:02,055 [main] TRACE UmlClass - created (3035) OTHER_CIM CIM class Ext1::Strawberry, 1 superclasses=[Fruit] +2024-09-08 15:10:02,055 [main] TRACE UmlSkipped - created (3419) OTHER_CIM CIM note link Strawberry. - ? - ? +2024-09-08 15:10:02,055 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1492) OTHER_IEC61850 IEC61850 null Ext2::Dog, 1 superclasses=[Animal] +2024-09-08 15:10:02,055 [main] TRACE UmlClass - created (1492) OTHER_IEC61850 IEC61850 other 61850 Ext2::Dog, 1 superclasses=[Animal] +2024-09-08 15:10:02,055 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1493) OTHER_IEC61850 IEC61850 null Ext2::Horse, 1 superclasses=[Animal] +2024-09-08 15:10:02,055 [main] TRACE UmlClass - created (1493) OTHER_IEC61850 IEC61850 other 61850 Ext2::Horse, 1 superclasses=[Animal] +2024-09-08 15:10:02,055 [main] INFO EaModelBuilder - reordering in-memory classes in packages ... +2024-09-08 15:10:02,056 [main] INFO EaModelBuilder - creating in-memory class' attributes, operations and constraints ... +2024-09-08 15:10:02,057 [main] ERROR UmlAttribute - unclassified CIM attribute: (3284) OTHER_CIM CIM INF [0..1] null Informative::HasIllegalTypeForAttr.dummy: Core::Bay +2024-09-08 15:10:02,057 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,057 [main] TRACE UmlAttribute - created (3284) OTHER_CIM CIM INF [0..1] attribute Informative::HasIllegalTypeForAttr.dummy: Core::Bay +2024-09-08 15:10:02,057 [main] TRACE ValueRange - '20119-08-01' has no separator indicating range. +2024-09-08 15:10:02,057 [main] TRACE UmlAttribute - created (1271) WG13 CIM static const [0..1] CIMDatatype attribute IEC61970::IEC61970CIMVersion.date: Domain::AbsoluteDateTime = 20119-08-01 +2024-09-08 15:10:02,057 [main] TRACE ValueRange - 'IEC61970CIM14v12' has no separator indicating range. +2024-09-08 15:10:02,057 [main] TRACE UmlAttribute - created (1272) WG13 CIM static const [0..1] Primitive attribute IEC61970::IEC61970CIMVersion.version: Domain::String = IEC61970CIM14v12 +2024-09-08 15:10:02,057 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,057 [main] TRACE UmlAttribute - created (6709) WG13 CIM INF [1..1] Primitive attribute InformativeAndPrivate::InfClass2.isToto: Domain::Boolean +2024-09-08 15:10:02,057 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,057 [main] TRACE UmlAttribute - created (1440) WG13 CIM protected [2..5] Primitive attribute Domain::AbsoluteDateTime.protectedAttribute: Domain::String +2024-09-08 15:10:02,057 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,057 [main] TRACE UmlAttribute - created (1436) WG13 CIM [0..1] Primitive attribute <> Domain::ActivePower.value: Domain::Float +2024-09-08 15:10:02,057 [main] TRACE ValueRange - 'W' has no separator indicating range. +2024-09-08 15:10:02,058 [main] TRACE UmlAttribute - created (1435) WG13 CIM static const [0..1] enumeration attribute <> Domain::ActivePower.unit: Domain::UnitSymbol = W +2024-09-08 15:10:02,058 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,058 [main] TRACE UmlAttribute - created (1434) WG13 CIM [0..1] enumeration attribute <> Domain::ActivePower.multiplier: Domain::UnitMultiplier +2024-09-08 15:10:02,058 [main] ERROR UmlAttribute - unclassified CIM attribute: (1404) WG13 CIM [0..1] null Domain::ActivePowerChangeRate.value: NullCIM::NullCIM +2024-09-08 15:10:02,058 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,058 [main] TRACE UmlAttribute - created (1404) WG13 CIM [0..1] attribute Domain::ActivePowerChangeRate.value: NullCIM::NullCIM +2024-09-08 15:10:02,058 [main] TRACE ValueRange - 'W/s' has no separator indicating range. +2024-09-08 15:10:02,058 [main] TRACE UmlAttribute - created (1403) WG13 CIM static [0..1] enumeration attribute Domain::ActivePowerChangeRate.unit: Domain::UnitSymbol = W/s +2024-09-08 15:10:02,058 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,058 [main] TRACE UmlAttribute - created (1402) WG13 CIM [0..1] enumeration attribute Domain::ActivePowerChangeRate.multiplier: Domain::UnitMultiplier +2024-09-08 15:10:02,058 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,059 [main] TRACE UmlAttribute - created (1370) WG13 CIM [0..1] Primitive attribute Domain::ApparentPower.value: Domain::Float +2024-09-08 15:10:02,059 [main] TRACE ValueRange - 'VA' has no separator indicating range. +2024-09-08 15:10:02,059 [main] TRACE UmlAttribute - created (1369) WG13 CIM static const [0..1] enumeration attribute Domain::ApparentPower.unit: Domain::UnitSymbol = VA +2024-09-08 15:10:02,059 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,059 [main] TRACE UmlAttribute - created (1368) WG13 CIM [0..1] enumeration attribute Domain::ApparentPower.multiplier: Domain::UnitMultiplier +2024-09-08 15:10:02,059 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,059 [main] TRACE UmlAttribute - created (1325) WG13 CIM [0..1] Primitive attribute Domain::Money.value: Domain::Float +2024-09-08 15:10:02,059 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,060 [main] TRACE UmlAttribute - created (1324) WG13 CIM [0..1] enumeration attribute Domain::Money.unit: Domain::Currency +2024-09-08 15:10:02,060 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,060 [main] TRACE UmlAttribute - created (1323) WG13 CIM [0..1] enumeration attribute Domain::Money.multiplier: Domain::UnitMultiplier +2024-09-08 15:10:02,060 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,060 [main] TRACE UmlAttribute - created (1367) WG13 CIM [0..1] Primitive attribute Domain::PerCent.value: Domain::Float +2024-09-08 15:10:02,060 [main] TRACE ValueRange - 'none' has no separator indicating range. +2024-09-08 15:10:02,060 [main] TRACE UmlAttribute - created (1366) WG13 CIM static const [0..1] enumeration attribute Domain::PerCent.unit: Domain::UnitSymbol = none +2024-09-08 15:10:02,060 [main] TRACE ValueRange - 'none' has no separator indicating range. +2024-09-08 15:10:02,060 [main] TRACE UmlAttribute - created (1365) WG13 CIM static const [0..1] enumeration attribute Domain::PerCent.multiplier: Domain::UnitMultiplier = none +2024-09-08 15:10:02,060 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,060 [main] TRACE UmlAttribute - created (1379) WG13 CIM [0..1] Primitive attribute Domain::Seconds.value: Domain::Float +2024-09-08 15:10:02,060 [main] TRACE ValueRange - 's' has no separator indicating range. +2024-09-08 15:10:02,060 [main] TRACE UmlAttribute - created (1378) WG13 CIM static const [0..1] enumeration attribute Domain::Seconds.unit: Domain::UnitSymbol = s +2024-09-08 15:10:02,060 [main] TRACE ValueRange - 'none' has no separator indicating range. +2024-09-08 15:10:02,060 [main] TRACE UmlAttribute - created (1377) WG13 CIM static const [0..1] enumeration attribute Domain::Seconds.multiplier: Domain::UnitMultiplier = none +2024-09-08 15:10:02,061 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,061 [main] TRACE UmlAttribute - created (1306) WG13 CIM [0..1] Primitive attribute Domain::Voltage.value: Domain::Float +2024-09-08 15:10:02,061 [main] TRACE ValueRange - 'V' has no separator indicating range. +2024-09-08 15:10:02,061 [main] TRACE UmlAttribute - created (1305) WG13 CIM static const [0..1] enumeration attribute Domain::Voltage.unit: Domain::UnitSymbol = V +2024-09-08 15:10:02,061 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,061 [main] TRACE UmlAttribute - created (1304) WG13 CIM [0..1] enumeration attribute Domain::Voltage.multiplier: Domain::UnitMultiplier +2024-09-08 15:10:02,061 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,061 [main] TRACE UmlAttribute - created (2100) WG13 CIM [0..1] CIMDatatype attribute Core::BasePower.basePower: Domain::ApparentPower +2024-09-08 15:10:02,061 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,062 [main] TRACE UmlAttribute - created (3317) WG13 CIM private [0..1] Primitive attribute Core::BaseVoltage.privateDummy: Domain::Boolean +2024-09-08 15:10:02,062 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,062 [main] TRACE UmlAttribute - created (2981) WG13 CIM package [0..1] Primitive attribute Core::BaseVoltage.packagePrivateIsDC: Domain::Boolean +2024-09-08 15:10:02,062 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,062 [main] TRACE UmlAttribute - created (2053) WG13 CIM protected [0..1] CIMDatatype attribute Core::BaseVoltage.protectedNominalVoltage: Domain::Voltage +2024-09-08 15:10:02,062 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,062 [main] TRACE UmlAttribute - created (3249) WG13 CIM [0..1] Primitive attribute Core::BaseVoltage.basePower: Domain::Boolean +2024-09-08 15:10:02,062 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,062 [main] TRACE UmlAttribute - created (2077) WG13 CIM [0..1] Primitive attribute Core::Bay.bayEnergyMeasFlag: Domain::Boolean +2024-09-08 15:10:02,062 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,062 [main] TRACE UmlAttribute - created (2078) WG13 CIM [0..1] Primitive attribute Core::Bay.bayPowerMeasFlag: Domain::Boolean +2024-09-08 15:10:02,062 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,062 [main] TRACE UmlAttribute - created (2079) WG13 CIM [0..1] enumeration attribute Core::Bay.breakerConfiguration: Core::BreakerConfiguration +2024-09-08 15:10:02,062 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,062 [main] TRACE UmlAttribute - created (2080) WG13 CIM [0..1] enumeration attribute Core::Bay.busBarConfiguration: Core::BusbarConfiguration +2024-09-08 15:10:02,062 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,062 [main] TRACE UmlAttribute - created (3301) WG13 CIM [0..1] enumeration attribute Core::Bay.TestYesNo1: Domain::YesNo +2024-09-08 15:10:02,062 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,062 [main] TRACE UmlAttribute - created (3302) WG13 CIM [0..1] enumeration attribute Core::Bay.testYesNo2: Domain::YesNo +2024-09-08 15:10:02,063 [main] TRACE UmlConstraint - created class attributes constraint Core::BreakerConfiguration {ConstraintOnEnum = [text]} +2024-09-08 15:10:02,063 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,063 [main] TRACE UmlAttribute - created (2091) WG13 CIM [0..1] enumeration attribute Core::ConductingEquipment.phases: Core::PhaseCode +2024-09-08 15:10:02,063 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,063 [main] TRACE UmlAttribute - created (2117) WG13 CIM [0..1] Primitive attribute Core::Equipment.normaIlyInService: Domain::Boolean +2024-09-08 15:10:02,063 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,063 [main] TRACE UmlAttribute - created (2109) WG13 CIM [0..1] CIMDatatype attribute Core::OperatingShare.percentage: Domain::PerCent +2024-09-08 15:10:02,063 [main] TRACE UmlConstraint - created attribute index constraint Core::OperatingShare.percentage {constraintProcess = constraint description} +2024-09-08 15:10:02,063 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,063 [main] TRACE UmlAttribute - created (6708) WG13 CIM [0..1] Primitive attribute <> Core::PowerSystemResource.attr: Domain::String +2024-09-08 15:10:02,063 [main] TRACE UmlConstraint - created class attributes constraint Core::PowerSystemResource {R.1.2.3 PSR process constraint = [Here the text for process constraint.]} +2024-09-08 15:10:02,063 [main] TRACE UmlConstraint - created class attributes constraint Core::PowerSystemResource {ruleAsInQoCDC = [text only]} +2024-09-08 15:10:02,063 [main] TRACE UmlConstraint - created class attributes constraint Core::PowerSystemResource {anotherOclRule = [{ocl]} +2024-09-08 15:10:02,068 [main] TRACE UmlOperation - created (1) WG13 CIM Core::PowerSystemResource operation abstract public NullCIM[] GetWhatevers() +2024-09-08 15:10:02,071 [main] TRACE UmlParameter - created <> null(...<> BasePower[] multiples...) +2024-09-08 15:10:02,071 [main] TRACE UmlOperation - created (2) WG13 CIM Core::PowerSystemResource operation <> public void setSomething() +2024-09-08 15:10:02,071 [main] TRACE UmlParameter - created null(... String name...) +2024-09-08 15:10:02,071 [main] TRACE UmlOperation - created (5) WG13 CIM Core::PowerSystemResource operation <> public NullCIM bar() +2024-09-08 15:10:02,072 [main] TRACE UmlParameter - created null(... NullCIM par3...) +2024-09-08 15:10:02,072 [main] TRACE UmlParameter - created null(... Float par2...) +2024-09-08 15:10:02,072 [main] TRACE UmlParameter - created null(... NullCIM par...) +2024-09-08 15:10:02,072 [main] TRACE UmlOperation - created (4) WG13 CIM Core::PowerSystemResource operation public NullCIM foo() +2024-09-08 15:10:02,072 [main] TRACE UmlParameter - created null(... NullCIM par3...) +2024-09-08 15:10:02,072 [main] TRACE UmlParameter - created <> null(...<> Float par2...) +2024-09-08 15:10:02,072 [main] TRACE UmlParameter - created null(... NullCIM par...) +2024-09-08 15:10:02,072 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,072 [main] TRACE UmlAttribute - created (3125) WG13 CIM [0..1] Primitive attribute Core::Terminal.connected: Domain::Boolean +2024-09-08 15:10:02,072 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,072 [main] TRACE UmlAttribute - created (3188) WG13 CIM [0..1] Primitive attribute Core::Terminal.sequenceNumber: Domain::Integer +2024-09-08 15:10:02,072 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,072 [main] TRACE UmlAttribute - created (2106) WG13 CIM [0..1] CIMDatatype attribute Core::VoltageLevel.highVoltageLimit: Domain::Voltage +2024-09-08 15:10:02,072 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,072 [main] TRACE UmlAttribute - created (2107) WG13 CIM [0..1] CIMDatatype attribute Core::VoltageLevel.lowVoltageLimit: Domain::Voltage +2024-09-08 15:10:02,072 [main] TRACE UmlOperation - created (3) WG13 CIM Core::VoltageLevel operation public Voltage getVoltage() +2024-09-08 15:10:02,072 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,072 [main] TRACE UmlAttribute - created (6646) WG13 CIM [0..1] Primitive attribute Core::IdentifiedObject.aliasName: Domain::String +2024-09-08 15:10:02,072 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,072 [main] TRACE UmlAttribute - created (6647) WG13 CIM [0..1] Primitive attribute Core::IdentifiedObject.mRID: Domain::String +2024-09-08 15:10:02,072 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,072 [main] TRACE UmlAttribute - created (6648) WG13 CIM [0..1] Primitive attribute Core::IdentifiedObject.name: Domain::String +2024-09-08 15:10:02,073 [main] WARN AbstractUmlObject - Primitive attribute ({870F033B-EDA6-4a32-A5AD-47DCBBFE2997}) Core::IdentifiedObject.name already in Core::IdentifiedObject. +2024-09-08 15:10:02,073 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,073 [main] TRACE UmlAttribute - created (3250) WG13 CIM [0..1] Primitive attribute Topology::BusNameMarker.constrained1: Domain::Integer +2024-09-08 15:10:02,073 [main] TRACE UmlConstraint - created attribute index constraint Topology::BusNameMarker.constrained1 {maxIdx = count+1} +2024-09-08 15:10:02,073 [main] TRACE UmlConstraint - created attribute index constraint Topology::BusNameMarker.constrained1 {minIdx = 0} +2024-09-08 15:10:02,073 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,073 [main] TRACE UmlAttribute - created (3251) WG13 CIM [0..1] Primitive attribute Topology::BusNameMarker.constrained2: Domain::Integer +2024-09-08 15:10:02,073 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,073 [main] TRACE UmlAttribute - created (3252) WG13 CIM [0..1] Primitive attribute Topology::BusNameMarker.constrained3: Domain::Integer +2024-09-08 15:10:02,073 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,073 [main] TRACE UmlAttribute - created (3253) WG13 CIM [0..1] Primitive attribute Topology::BusNameMarker.constrained4: Domain::Integer +2024-09-08 15:10:02,073 [main] TRACE UmlConstraint - created class attributes constraint Topology::BusNameMarker {C2_1 = [constrained1, constrained2]} +2024-09-08 15:10:02,074 [main] TRACE UmlConstraint - created class attributes constraint Topology::BusNameMarker {C2_2 = [constrained3, constrained4]} +2024-09-08 15:10:02,074 [main] TRACE UmlConstraint - created class attributes constraint Topology::BusNameMarker {C2_3 = [constrained1, constrained4]} +2024-09-08 15:10:02,074 [main] TRACE UmlConstraint - created class attributes constraint Topology::BusNameMarker {EMPTY = []} +2024-09-08 15:10:02,074 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,074 [main] TRACE UmlAttribute - created (3254) WG13 CIM [0..1] Primitive attribute Topology::TopologicalIsland.constrained5: Domain::Integer +2024-09-08 15:10:02,074 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,074 [main] TRACE UmlAttribute - created (3255) WG13 CIM [0..1] Primitive attribute Topology::TopologicalIsland.nonConstrained: Domain::Integer +2024-09-08 15:10:02,074 [main] TRACE UmlConstraint - created class attributes constraint Topology::TopologicalIsland {PICS_SUBST = [constrained5]} +2024-09-08 15:10:02,074 [main] TRACE ValueRange - '2010-05-07' has no separator indicating range. +2024-09-08 15:10:02,074 [main] TRACE UmlAttribute - created (3256) WG14 CIM static const [0..1] CIMDatatype attribute IEC61968::IEC61968Version.date: Domain::AbsoluteDateTime = 2010-05-07 +2024-09-08 15:10:02,074 [main] TRACE ValueRange - 'IEC62325CIM01v02' has no separator indicating range. +2024-09-08 15:10:02,074 [main] TRACE UmlAttribute - created (3257) WG14 CIM static const [0..1] Primitive attribute IEC61968::IEC61968Version.version: Domain::String = IEC62325CIM01v02 +2024-09-08 15:10:02,074 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,074 [main] TRACE UmlAttribute - created (3263) WG14 CIM [0..1] Primitive attribute Other::MyClass.value: Domain::Float +2024-09-08 15:10:02,074 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,074 [main] TRACE UmlAttribute - created (3264) WG14 CIM [0..1] Primitive attribute Other::MyClass.normaIlyInService: Domain::Boolean +2024-09-08 15:10:02,074 [main] ERROR UmlAttribute - unclassified CIM attribute: (3265) WG14 CIM [0..1] null Other::MyClass.curveStyle: NullCIM::NullCIM +2024-09-08 15:10:02,074 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,074 [main] TRACE UmlAttribute - created (3265) WG14 CIM [0..1] attribute Other::MyClass.curveStyle: NullCIM::NullCIM +2024-09-08 15:10:02,074 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,075 [main] TRACE UmlAttribute - created (3261) WG14 CIM [0..1] CIMDatatype attribute Other::BadDatatypes.value: Other::BadDatatypes +2024-09-08 15:10:02,075 [main] TRACE ValueRange - 'badEnumVal' has no separator indicating range. +2024-09-08 15:10:02,075 [main] TRACE UmlAttribute - created (3268) WG14 CIM [0..1] enumeration attribute Other::BadDatatypes.unit: Domain::UnitSymbol = badEnumVal +2024-09-08 15:10:02,075 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,075 [main] TRACE UmlAttribute - created (6707) WG14 CIM [0..1] Primitive attribute Other::Equipment.myExtension: Domain::Integer +2024-09-08 15:10:02,075 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,075 [main] TRACE UmlAttribute - created (3303) WG14 CIM [0..1] enumeration attribute Other::Equipment.testYesNo1: Domain::YesNo +2024-09-08 15:10:02,075 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,075 [main] TRACE UmlAttribute - created (3262) WG14 CIM [0..1] Primitive attribute Other::NonEmptyPrimitive.value: Domain::Float +2024-09-08 15:10:02,075 [main] ERROR UmlAttribute - unclassified CIM attribute: (3266) WG14 CIM [0..1] null Other::AttrDuplication.curveStyle: NullCIM::NullCIM +2024-09-08 15:10:02,075 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,075 [main] TRACE UmlAttribute - created (3266) WG14 CIM [0..1] attribute Other::AttrDuplication.curveStyle: NullCIM::NullCIM +2024-09-08 15:10:02,075 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,075 [main] TRACE UmlAttribute - created (3267) WG14 CIM [0..1] Primitive attribute Other::AttrDuplication.normaIlyInService: Domain::Boolean +2024-09-08 15:10:02,075 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,075 [main] TRACE UmlAttribute - created (3296) WG14 CIM [0..1] enumeration attribute Other::AnotherBadDatatype.value: Domain::UnitSymbol +2024-09-08 15:10:02,075 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,075 [main] TRACE UmlAttribute - created (3297) WG14 CIM [0..1] Primitive attribute <> Other::AnotherBadDatatype.unit: Domain::Integer +2024-09-08 15:10:02,075 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,075 [main] TRACE UmlAttribute - created (3298) WG14 CIM const [0..1] Compound attribute Other::AnotherBadDatatype.multiplier: Other::EmptyCompound +2024-09-08 15:10:02,075 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3318) WG10 IEC61850 static const [1..1] null WG10::WG10UMLVersion.version: NullIEC61850::NullIEC61850 = IEC61850UML02v07 +2024-09-08 15:10:02,076 [main] TRACE ValueRange - 'IEC61850UML02v07' has no separator indicating range. +2024-09-08 15:10:02,076 [main] TRACE UmlAttribute - created (3318) WG10 IEC61850 static const [1..1] attribute WG10::WG10UMLVersion.version: NullIEC61850::NullIEC61850 = IEC61850UML02v07 +2024-09-08 15:10:02,076 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3319) WG10 IEC61850 static const [1..1] null WG10::WG10UMLVersion.date: NullIEC61850::NullIEC61850 = 2011-07-02 +2024-09-08 15:10:02,076 [main] TRACE ValueRange - '2011-07-02' has no separator indicating range. +2024-09-08 15:10:02,076 [main] TRACE UmlAttribute - created (3319) WG10 IEC61850 static const [1..1] attribute WG10::WG10UMLVersion.date: NullIEC61850::NullIEC61850 = 2011-07-02 +2024-09-08 15:10:02,076 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3320) WG10 IEC61850 [0..*] null GenericModel::AccessPoint.Address: GenericModel::CommAddress +2024-09-08 15:10:02,076 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,076 [main] TRACE UmlAttribute - created (3320) WG10 IEC61850 [0..*] attribute GenericModel::AccessPoint.Address: GenericModel::CommAddress +2024-09-08 15:10:02,076 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3321) WG10 IEC61850 [1..1] null GenericModel::GenCommonDataClass.CDC-ID: GenericModel::GenObjectName +2024-09-08 15:10:02,076 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,077 [main] TRACE UmlAttribute - created (3321) WG10 IEC61850 [1..1] attribute GenericModel::GenCommonDataClass.CDC-ID: GenericModel::GenObjectName +2024-09-08 15:10:02,077 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3322) WG10 IEC61850 [1..1] null GenericModel::GenConstructedType.DA-ID: GenericModel::GenObjectName +2024-09-08 15:10:02,077 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,077 [main] TRACE UmlAttribute - created (3322) WG10 IEC61850 [1..1] attribute GenericModel::GenConstructedType.DA-ID: GenericModel::GenObjectName +2024-09-08 15:10:02,077 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3323) WG10 IEC61850 [1..1] null GenericModel::GenDataAttribute.DAName: GenericModel::GenObjectName +2024-09-08 15:10:02,077 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,077 [main] TRACE UmlAttribute - created (3323) WG10 IEC61850 [1..1] attribute GenericModel::GenDataAttribute.DAName: GenericModel::GenObjectName +2024-09-08 15:10:02,077 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3324) WG10 IEC61850 [1..1] null GenericModel::GenDataAttribute.DARef: GenericModel::GenObjRef +2024-09-08 15:10:02,077 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,077 [main] TRACE UmlAttribute - created (3324) WG10 IEC61850 [1..1] attribute GenericModel::GenDataAttribute.DARef: GenericModel::GenObjRef +2024-09-08 15:10:02,077 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,078 [main] TRACE UmlAttribute - created (3325) WG10 IEC61850 [1..1] enumeration attribute GenericModel::GenDataAttribute.FC: GenericModel::GenFC +2024-09-08 15:10:02,078 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3326) WG10 IEC61850 [1..1] null GenericModel::GenDataAttribute.TrgOp: GenericModel::GenTriggerConditions +2024-09-08 15:10:02,078 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,078 [main] TRACE UmlAttribute - created (3326) WG10 IEC61850 [1..1] attribute GenericModel::GenDataAttribute.TrgOp: GenericModel::GenTriggerConditions +2024-09-08 15:10:02,078 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,078 [main] TRACE UmlAttribute - created (3327) WG10 IEC61850 [1..1] enumeration attribute GenericModel::GenDataAttribute.Presence: GenericModel::GenPresenceConditions +2024-09-08 15:10:02,078 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3328) WG10 IEC61850 [0..1] null GenericModel::GenDataAttribute.Index: GenericModel::GenINT32U +2024-09-08 15:10:02,078 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,079 [main] TRACE UmlAttribute - created (3328) WG10 IEC61850 [0..1] attribute GenericModel::GenDataAttribute.Index: GenericModel::GenINT32U +2024-09-08 15:10:02,079 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3329) WG10 IEC61850 [1..1] null GenericModel::GenDataObject.DOName: GenericModel::GenObjectName +2024-09-08 15:10:02,079 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,079 [main] TRACE UmlAttribute - created (3329) WG10 IEC61850 [1..1] attribute GenericModel::GenDataObject.DOName: GenericModel::GenObjectName +2024-09-08 15:10:02,080 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3330) WG10 IEC61850 [1..1] null GenericModel::GenDataObject.DORef: GenericModel::GenObjRef +2024-09-08 15:10:02,080 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,080 [main] TRACE UmlAttribute - created (3330) WG10 IEC61850 [1..1] attribute GenericModel::GenDataObject.DORef: GenericModel::GenObjRef +2024-09-08 15:10:02,080 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3331) WG10 IEC61850 [1..1] null GenericModel::GenDataObject.Transient: GenericModel::GenBOOLEAN +2024-09-08 15:10:02,080 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,080 [main] TRACE UmlAttribute - created (3331) WG10 IEC61850 [1..1] attribute GenericModel::GenDataObject.Transient: GenericModel::GenBOOLEAN +2024-09-08 15:10:02,081 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,081 [main] TRACE UmlAttribute - created (3332) WG10 IEC61850 [1..1] enumeration attribute GenericModel::GenDataObject.Presence: GenericModel::GenPresenceConditions +2024-09-08 15:10:02,081 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3333) WG10 IEC61850 [1..1] null GenericModel::GenDataSet.DSName: GenericModel::GenObjectName +2024-09-08 15:10:02,081 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,082 [main] TRACE UmlAttribute - created (3333) WG10 IEC61850 [1..1] attribute GenericModel::GenDataSet.DSName: GenericModel::GenObjectName +2024-09-08 15:10:02,082 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,082 [main] TRACE UmlAttribute - created (3334) WG10 IEC61850 [1..1] enumeration attribute GenericModel::GenFCD.FC: GenericModel::GenFC +2024-09-08 15:10:02,082 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,082 [main] TRACE UmlAttribute - created (3335) WG10 IEC61850 [1..1] enumeration attribute GenericModel::GenFCDA.FC: GenericModel::GenFC +2024-09-08 15:10:02,085 [main] WARN PresenceCondition - presence condition literal not found, or invalid class constraint name format (should be 'name(arguments)'): WG10 IEC61850 class attributes constraint GenericModel::GenFCDA {FCConstraint = [inv]} +2024-09-08 15:10:02,085 [main] TRACE UmlConstraint - created class attributes constraint GenericModel::GenFCDA {FCConstraint = [inv]} (null) +2024-09-08 15:10:02,086 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3336) WG10 IEC61850 [1..1] null GenericModel::GenFile.FileRef: GenericModel::GenVisString255 +2024-09-08 15:10:02,086 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,086 [main] TRACE UmlAttribute - created (3336) WG10 IEC61850 [1..1] attribute GenericModel::GenFile.FileRef: GenericModel::GenVisString255 +2024-09-08 15:10:02,086 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3337) WG10 IEC61850 [1..1] null GenericModel::GenFile.FileSize: GenericModel::GenINT32U +2024-09-08 15:10:02,086 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,086 [main] TRACE UmlAttribute - created (3337) WG10 IEC61850 [1..1] attribute GenericModel::GenFile.FileSize: GenericModel::GenINT32U +2024-09-08 15:10:02,086 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3338) WG10 IEC61850 [1..1] null GenericModel::GenFile.LastModified: GenericModel::GenTimeStamp +2024-09-08 15:10:02,086 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,086 [main] TRACE UmlAttribute - created (3338) WG10 IEC61850 [1..1] attribute GenericModel::GenFile.LastModified: GenericModel::GenTimeStamp +2024-09-08 15:10:02,087 [main] WARN PresenceCondition - presence condition literal not found, or invalid class constraint name format (should be 'name(arguments)'): WG10 IEC61850 class attributes constraint GenericModel::GenLN0 {inv: self.LNName = "LLN0" = []} +2024-09-08 15:10:02,087 [main] TRACE UmlConstraint - created class attributes constraint GenericModel::GenLN0 {inv: self.LNName = "LLN0" = []} (null) +2024-09-08 15:10:02,087 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3339) WG10 IEC61850 [1..1] null GenericModel::GenLogicalDevice.LDName: GenericModel::GenObjectName +2024-09-08 15:10:02,087 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,087 [main] TRACE UmlAttribute - created (3339) WG10 IEC61850 [1..1] attribute GenericModel::GenLogicalDevice.LDName: GenericModel::GenObjectName +2024-09-08 15:10:02,087 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3340) WG10 IEC61850 [1..1] null GenericModel::GenLogicalNode.LNName: GenericModel::GenObjectName +2024-09-08 15:10:02,087 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,087 [main] TRACE UmlAttribute - created (3340) WG10 IEC61850 [1..1] attribute GenericModel::GenLogicalNode.LNName: GenericModel::GenObjectName +2024-09-08 15:10:02,087 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3341) WG10 IEC61850 [1..1] null GenericModel::GenLogicalNode.LNRef: GenericModel::GenObjRef +2024-09-08 15:10:02,087 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,087 [main] TRACE UmlAttribute - created (3341) WG10 IEC61850 [1..1] attribute GenericModel::GenLogicalNode.LNRef: GenericModel::GenObjRef +2024-09-08 15:10:02,087 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3342) WG10 IEC61850 [1..1] null GenericModel::GenSubDataAttribute.SubDAName: GenericModel::GenObjectName +2024-09-08 15:10:02,087 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,087 [main] TRACE UmlAttribute - created (3342) WG10 IEC61850 [1..1] attribute GenericModel::GenSubDataAttribute.SubDAName: GenericModel::GenObjectName +2024-09-08 15:10:02,087 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3343) WG10 IEC61850 [1..1] null GenericModel::GenSubDataAttribute.SubDARef: GenericModel::GenObjRef +2024-09-08 15:10:02,088 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,088 [main] TRACE UmlAttribute - created (3343) WG10 IEC61850 [1..1] attribute GenericModel::GenSubDataAttribute.SubDARef: GenericModel::GenObjRef +2024-09-08 15:10:02,088 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,088 [main] TRACE UmlAttribute - created (3344) WG10 IEC61850 [1..1] enumeration attribute GenericModel::GenSubDataAttribute.FC: GenericModel::GenFC +2024-09-08 15:10:02,088 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,088 [main] TRACE UmlAttribute - created (3345) WG10 IEC61850 [1..1] enumeration attribute GenericModel::GenSubDataAttribute.Presence: GenericModel::GenPresenceConditions +2024-09-08 15:10:02,088 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3346) WG10 IEC61850 [0..1] null GenericModel::GenSubDataAttribute.Index: GenericModel::GenINT32U +2024-09-08 15:10:02,088 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,088 [main] TRACE UmlAttribute - created (3346) WG10 IEC61850 [0..1] attribute GenericModel::GenSubDataAttribute.Index: GenericModel::GenINT32U +2024-09-08 15:10:02,088 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3347) WG10 IEC61850 [1..1] null GenericModel::GenSubDataObject.SDOName: GenericModel::GenObjectName +2024-09-08 15:10:02,088 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,088 [main] TRACE UmlAttribute - created (3347) WG10 IEC61850 [1..1] attribute GenericModel::GenSubDataObject.SDOName: GenericModel::GenObjectName +2024-09-08 15:10:02,088 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3348) WG10 IEC61850 [1..1] null GenericModel::GenSubDataObject.SDORef: GenericModel::GenObjRef +2024-09-08 15:10:02,089 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,089 [main] TRACE UmlAttribute - created (3348) WG10 IEC61850 [1..1] attribute GenericModel::GenSubDataObject.SDORef: GenericModel::GenObjRef +2024-09-08 15:10:02,089 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,089 [main] TRACE UmlAttribute - created (3349) WG10 IEC61850 [1..1] enumeration attribute GenericModel::GenSubDataObject.Presence: GenericModel::GenPresenceConditions +2024-09-08 15:10:02,089 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3350) WG10 IEC61850 [0..1] null GenericModel::GenSubDataObject.Index: GenericModel::GenINT32U +2024-09-08 15:10:02,089 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,089 [main] TRACE UmlAttribute - created (3350) WG10 IEC61850 [0..1] attribute GenericModel::GenSubDataObject.Index: GenericModel::GenINT32U +2024-09-08 15:10:02,089 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3351) WG10 IEC61850 [1..1] null GenericModel::GenTPAA.AssociationId: GenericModel::GenAssociationID +2024-09-08 15:10:02,089 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,090 [main] TRACE UmlAttribute - created (3351) WG10 IEC61850 [1..1] attribute GenericModel::GenTPAA.AssociationId: GenericModel::GenAssociationID +2024-09-08 15:10:02,090 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3305) WG10 IEC61850 [1..1] null IEC61850_7_2::IEC61850_7_2Namespace.id: NullIEC61850::NullIEC61850 = IEC61850-7-2 +2024-09-08 15:10:02,090 [main] TRACE ValueRange - 'IEC61850-7-2' has no separator indicating range. +2024-09-08 15:10:02,090 [main] TRACE UmlAttribute - created (3305) WG10 IEC61850 [1..1] attribute IEC61850_7_2::IEC61850_7_2Namespace.id: NullIEC61850::NullIEC61850 = IEC61850-7-2 +2024-09-08 15:10:02,090 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3306) WG10 IEC61850 [1..1] null IEC61850_7_2::IEC61850_7_2Namespace.version: NullIEC61850::NullIEC61850 = 2007 +2024-09-08 15:10:02,090 [main] TRACE ValueRange - '2007' has no separator indicating range. +2024-09-08 15:10:02,090 [main] TRACE UmlAttribute - created (3306) WG10 IEC61850 [1..1] attribute IEC61850_7_2::IEC61850_7_2Namespace.version: NullIEC61850::NullIEC61850 = 2007 +2024-09-08 15:10:02,090 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3307) WG10 IEC61850 [1..1] null IEC61850_7_2::IEC61850_7_2Namespace.revision: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,090 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,090 [main] TRACE UmlAttribute - created (3307) WG10 IEC61850 [1..1] attribute IEC61850_7_2::IEC61850_7_2Namespace.revision: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,090 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3308) WG10 IEC61850 [1..1] null IEC61850_7_2::IEC61850_7_2Namespace.date: NullIEC61850::NullIEC61850 = 2011-08-01 +2024-09-08 15:10:02,090 [main] TRACE ValueRange - '2011-08-01' has no separator indicating range. +2024-09-08 15:10:02,090 [main] TRACE UmlAttribute - created (3308) WG10 IEC61850 [1..1] attribute IEC61850_7_2::IEC61850_7_2Namespace.date: NullIEC61850::NullIEC61850 = 2011-08-01 +2024-09-08 15:10:02,090 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (6701) WG10 IEC61850 [1..1] null IEC61850_7_2::IEC61850_7_2Namespace.name: NullIEC61850::NullIEC61850 = IEC61850-7-2:2007 +2024-09-08 15:10:02,090 [main] TRACE ValueRange - 'IEC61850-7-2:2007' has no separator indicating range. +2024-09-08 15:10:02,090 [main] TRACE UmlAttribute - created (6701) WG10 IEC61850 [1..1] attribute IEC61850_7_2::IEC61850_7_2Namespace.name: NullIEC61850::NullIEC61850 = IEC61850-7-2:2007 +2024-09-08 15:10:02,090 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3381) WG10 IEC61850 private [1..1] null CoreTypes::ObjectName.val: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,090 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,090 [main] TRACE UmlAttribute - created (3381) WG10 IEC61850 private [1..1] attribute CoreTypes::ObjectName.val: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,091 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3382) WG10 IEC61850 private [1..1] null CoreTypes::P_ObjectReference.val: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,091 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,091 [main] TRACE UmlAttribute - created (3382) WG10 IEC61850 private [1..1] attribute CoreTypes::P_ObjectReference.val: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,091 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,091 [main] TRACE UmlAttribute - created (3383) WG10 IEC61850 [1..1] basic attribute CoreTypes::P_TimeStamp.SecondSinceEpoch: CoreTypes::P_INT32 +2024-09-08 15:10:02,091 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3384) WG10 IEC61850 [1..1] null CoreTypes::P_TimeStamp.FractionOfSecond: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,091 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,091 [main] TRACE UmlAttribute - created (3384) WG10 IEC61850 [1..1] attribute CoreTypes::P_TimeStamp.FractionOfSecond: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,091 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,091 [main] TRACE UmlAttribute - created (3385) WG10 IEC61850 [1..1] packed attribute CoreTypes::P_TimeStamp.TimeQuality: CoreTypes::TimeQuality +2024-09-08 15:10:02,091 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,091 [main] TRACE UmlAttribute - created (3386) WG10 IEC61850 [1..1] basic attribute CoreTypes::TimeQuality.LeapSecondsKnown: CoreTypes::P_BOOLEAN +2024-09-08 15:10:02,091 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,091 [main] TRACE UmlAttribute - created (3387) WG10 IEC61850 [1..1] basic attribute CoreTypes::TimeQuality.ClockFailure: CoreTypes::P_BOOLEAN +2024-09-08 15:10:02,091 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,091 [main] TRACE UmlAttribute - created (3388) WG10 IEC61850 [1..1] basic attribute CoreTypes::TimeQuality.ClockNotSynchronized: CoreTypes::P_BOOLEAN +2024-09-08 15:10:02,092 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,092 [main] TRACE UmlAttribute - created (3389) WG10 IEC61850 [1..1] packed,enumeration attribute CoreTypes::TimeQuality.TimeAccuracy: CoreTypes::TimeAccuracyKind +2024-09-08 15:10:02,092 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,092 [main] TRACE UmlAttribute - created (3397) WG10 IEC61850 [1..1] basic attribute CoreTypes::P_TriggerConditions.data-change: CoreTypes::P_BOOLEAN +2024-09-08 15:10:02,092 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,092 [main] TRACE UmlAttribute - created (3398) WG10 IEC61850 [1..1] basic attribute CoreTypes::P_TriggerConditions.quality-change: CoreTypes::P_BOOLEAN +2024-09-08 15:10:02,092 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,092 [main] TRACE UmlAttribute - created (3399) WG10 IEC61850 [1..1] basic attribute CoreTypes::P_TriggerConditions.data-update: CoreTypes::P_BOOLEAN +2024-09-08 15:10:02,092 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,092 [main] TRACE UmlAttribute - created (3400) WG10 IEC61850 [1..1] basic attribute CoreTypes::P_TriggerConditions.integrity: CoreTypes::P_BOOLEAN +2024-09-08 15:10:02,092 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,092 [main] TRACE UmlAttribute - created (3401) WG10 IEC61850 [1..1] basic attribute CoreTypes::P_TriggerConditions.general-interrogation: CoreTypes::P_BOOLEAN +2024-09-08 15:10:02,092 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3402) WG10 IEC61850 [1..1] null ObjectReferences::FILEReference.FileRef: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,092 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,092 [main] TRACE UmlAttribute - created (3402) WG10 IEC61850 [1..1] attribute ObjectReferences::FILEReference.FileRef: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,092 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3403) WG10 IEC61850 [0..1] null ObjectReferences::FILEReference.FileName: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,092 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,092 [main] TRACE UmlAttribute - created (3403) WG10 IEC61850 [0..1] attribute ObjectReferences::FILEReference.FileName: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,092 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3404) WG10 IEC61850 [1..1] null ObjectReferences::LDReference.LDRef: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,092 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,092 [main] TRACE UmlAttribute - created (3404) WG10 IEC61850 [1..1] attribute ObjectReferences::LDReference.LDRef: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,092 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,092 [main] TRACE UmlAttribute - created (3405) WG10 IEC61850 [0..1] basic attribute ObjectReferences::LDReference.LDName: CoreTypes::ObjectName +2024-09-08 15:10:02,092 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3406) WG10 IEC61850 [1..1] null ObjectReferences::NonPersistentDSReference.DSRef: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,092 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,092 [main] TRACE UmlAttribute - created (3406) WG10 IEC61850 [1..1] attribute ObjectReferences::NonPersistentDSReference.DSRef: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,093 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,093 [main] TRACE UmlAttribute - created (3407) WG10 IEC61850 [0..1] basic attribute ObjectReferences::NonPersistentDSReference.DSName: CoreTypes::ObjectName +2024-09-08 15:10:02,093 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3408) WG10 IEC61850 [1..1] null ObjectReferences::LNReference.LNRef: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,093 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,093 [main] TRACE UmlAttribute - created (3408) WG10 IEC61850 [1..1] attribute ObjectReferences::LNReference.LNRef: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,093 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,093 [main] TRACE UmlAttribute - created (3409) WG10 IEC61850 [0..1] basic attribute ObjectReferences::LNReference.LNName: CoreTypes::ObjectName +2024-09-08 15:10:02,093 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3410) WG10 IEC61850 [1..1] null ObjectReferences::CDCReference.DataRef: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,093 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,093 [main] TRACE UmlAttribute - created (3410) WG10 IEC61850 [1..1] attribute ObjectReferences::CDCReference.DataRef: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,093 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,093 [main] TRACE UmlAttribute - created (3411) WG10 IEC61850 [0..1] basic attribute ObjectReferences::CDCReference.DataName: CoreTypes::ObjectName +2024-09-08 15:10:02,093 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,093 [main] TRACE UmlAttribute - created (3412) WG10 IEC61850 [0..1] basic attribute ObjectReferences::CDCReference.SubDataName: CoreTypes::ObjectName +2024-09-08 15:10:02,093 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3413) WG10 IEC61850 [1..1] null ObjectReferences::CBReference.CBRef: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,093 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,093 [main] TRACE UmlAttribute - created (3413) WG10 IEC61850 [1..1] attribute ObjectReferences::CBReference.CBRef: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,093 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,093 [main] TRACE UmlAttribute - created (3414) WG10 IEC61850 [0..1] basic attribute ObjectReferences::CBReference.CBName: CoreTypes::ObjectName +2024-09-08 15:10:02,093 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,093 [main] TRACE UmlAttribute - created (3415) WG10 IEC61850 [0..1] enumeration attribute ObjectReferences::CBReference.FC: ObjectReferences::ServiceFcKind +2024-09-08 15:10:02,094 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3424) WG10 IEC61850 [1..1] null ObjectReferences::LOGReference.LogRef: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,094 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,094 [main] TRACE UmlAttribute - created (3424) WG10 IEC61850 [1..1] attribute ObjectReferences::LOGReference.LogRef: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,094 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,094 [main] TRACE UmlAttribute - created (3425) WG10 IEC61850 [0..1] basic attribute ObjectReferences::LOGReference.LogName: CoreTypes::ObjectName +2024-09-08 15:10:02,094 [main] TRACE ValueRange - 'LG' has no separator indicating range. +2024-09-08 15:10:02,094 [main] TRACE UmlAttribute - created (3426) WG10 IEC61850 static const [0..1] enumeration attribute ObjectReferences::LOGReference.FC: ObjectReferences::ServiceFcKind = LG +2024-09-08 15:10:02,094 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3427) WG10 IEC61850 [1..1] null ObjectReferences::LNOwnedDSReference.DSRef: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,094 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,094 [main] TRACE UmlAttribute - created (3427) WG10 IEC61850 [1..1] attribute ObjectReferences::LNOwnedDSReference.DSRef: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,094 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,094 [main] TRACE UmlAttribute - created (3428) WG10 IEC61850 [0..1] basic attribute ObjectReferences::LNOwnedDSReference.DSName: CoreTypes::ObjectName +2024-09-08 15:10:02,094 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3429) WG10 IEC61850 [1..1] null ObjectReferences::FCDReference.FCDRef: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,094 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,094 [main] TRACE UmlAttribute - created (3429) WG10 IEC61850 [1..1] attribute ObjectReferences::FCDReference.FCDRef: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,094 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3430) WG10 IEC61850 [0..1] null ObjectReferences::FCDReference.FCDRefWithoutFC: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,094 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,094 [main] TRACE UmlAttribute - created (3430) WG10 IEC61850 [0..1] attribute ObjectReferences::FCDReference.FCDRefWithoutFC: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,094 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,095 [main] TRACE UmlAttribute - created (3431) WG10 IEC61850 [0..1] enumeration attribute ObjectReferences::FCDReference.FC: FunctionalConstraints::FcKind +2024-09-08 15:10:02,095 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3432) WG10 IEC61850 [1..1] null ObjectReferences::FCDAReference.FCDARef: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,095 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,095 [main] TRACE UmlAttribute - created (3432) WG10 IEC61850 [1..1] attribute ObjectReferences::FCDAReference.FCDARef: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,095 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,095 [main] TRACE UmlAttribute - created (3433) WG10 IEC61850 [0..1] basic attribute ObjectReferences::FCDAReference.FCDARefWithoutFC: CoreTypes::P_VISIBLE_STRING255 +2024-09-08 15:10:02,095 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,095 [main] TRACE UmlAttribute - created (3434) WG10 IEC61850 [0..1] basic attribute ObjectReferences::FCDAReference.LeafAttrName: CoreTypes::ObjectName +2024-09-08 15:10:02,095 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,095 [main] TRACE UmlAttribute - created (3435) WG10 IEC61850 [0..1] basic attribute ObjectReferences::FCDAReference.NumArrayElement: CoreTypes::P_INT32U +2024-09-08 15:10:02,095 [main] TRACE UmlOperation - created (7) WG10 IEC61850 AttrValues::AttrValue operation abstract public AttrValueKind getType() +2024-09-08 15:10:02,095 [main] TRACE UmlOperation - created (46) WG10 IEC61850 AttrValues::AttrDefinition operation public FCDAReference getFcdaRef() +2024-09-08 15:10:02,095 [main] TRACE UmlOperation - created (47) WG10 IEC61850 AttrValues::AttrDefinition operation public AttrValueKind getValType() +2024-09-08 15:10:02,095 [main] TRACE UmlOperation - created (48) WG10 IEC61850 AttrValues::NamedAttrValue operation public FCDAReference getFcdaRef() +2024-09-08 15:10:02,095 [main] TRACE UmlOperation - created (49) WG10 IEC61850 AttrValues::NamedAttrValue operation public AttrValue getVal() +2024-09-08 15:10:02,095 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,095 [main] TRACE UmlAttribute - created (3455) WG10 IEC61850 private [1..1] basic attribute BasicDAs::BOOLEAN.val: CoreTypes::P_BOOLEAN +2024-09-08 15:10:02,095 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,095 [main] TRACE UmlAttribute - created (3458) WG10 IEC61850 private [1..1] basic attribute BasicDAs::INT16U.val: CoreTypes::P_INT16U +2024-09-08 15:10:02,095 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,095 [main] TRACE UmlAttribute - created (3460) WG10 IEC61850 private [1..1] basic attribute BasicDAs::INT32.val: CoreTypes::P_INT32 +2024-09-08 15:10:02,095 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,095 [main] TRACE UmlAttribute - created (3461) WG10 IEC61850 private [1..1] basic attribute BasicDAs::INT32U.val: CoreTypes::P_INT32U +2024-09-08 15:10:02,095 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,096 [main] TRACE UmlAttribute - created (3456) WG10 IEC61850 private [1..1] basic attribute BasicDAs::FLOAT32.val: CoreTypes::P_FLOAT32 +2024-09-08 15:10:02,096 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,096 [main] TRACE UmlAttribute - created (3466) WG10 IEC61850 private [1..1] basic attribute BasicDAs::UNICODE_STRING255.val: CoreTypes::P_UNICODE_STRING255 +2024-09-08 15:10:02,096 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,096 [main] TRACE UmlAttribute - created (3467) WG10 IEC61850 private [1..1] basic attribute BasicDAs::VISIBLE_STRING255.val: CoreTypes::P_VISIBLE_STRING255 +2024-09-08 15:10:02,096 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,096 [main] TRACE UmlAttribute - created (3469) WG10 IEC61850 private [1..1] basic attribute BasicDAs::ObjectReference.val: CoreTypes::P_ObjectReference +2024-09-08 15:10:02,096 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,096 [main] TRACE UmlAttribute - created (3470) WG10 IEC61850 private [1..1] basic attribute BasicDAs::PHYCOMADDR.val: CoreTypes::P_PHYCOMADDR +2024-09-08 15:10:02,096 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,096 [main] TRACE UmlAttribute - created (3471) WG10 IEC61850 private [1..1] packed attribute BasicDAs::TimeStamp.val: CoreTypes::P_TimeStamp +2024-09-08 15:10:02,096 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,096 [main] TRACE UmlAttribute - created (3472) WG10 IEC61850 private [1..1] packed attribute BasicDAs::TriggerConditions.val: CoreTypes::P_TriggerConditions +2024-09-08 15:10:02,096 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,096 [main] TRACE UmlAttribute - created (3473) WG10 IEC61850 private [1..1] packed,enumeration attribute BasicDAs::DpStatus.val: ACSIEnums::DpStatusKind +2024-09-08 15:10:02,096 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,096 [main] TRACE UmlAttribute - created (3474) WG10 IEC61850 private [1..1] packed,enumeration attribute BasicDAs::BsControl.val: ACSIEnums::BsControlKind +2024-09-08 15:10:02,096 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3475) WG10 IEC61850 [1..1] null CommonAcsiTypes::IPAddress.address: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,096 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,096 [main] TRACE UmlAttribute - created (3475) WG10 IEC61850 [1..1] attribute CommonAcsiTypes::IPAddress.address: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,096 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3476) WG10 IEC61850 [1..1] null CommonAcsiTypes::MulticastAddress.address: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,096 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,096 [main] TRACE UmlAttribute - created (3476) WG10 IEC61850 [1..1] attribute CommonAcsiTypes::MulticastAddress.address: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,097 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3477) WG10 IEC61850 [1..1] null CommonAcsiTypes::MulticastAddress.priority: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,097 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,097 [main] TRACE UmlAttribute - created (3477) WG10 IEC61850 [1..1] attribute CommonAcsiTypes::MulticastAddress.priority: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,097 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,097 [main] TRACE UmlAttribute - created (3478) WG10 IEC61850 [1..1] basic attribute CommonAcsiTypes::MulticastAddress.vid: CoreTypes::P_INT16U +2024-09-08 15:10:02,097 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,097 [main] TRACE UmlAttribute - created (3479) WG10 IEC61850 [1..1] basic attribute CommonAcsiTypes::MulticastAddress.appid: CoreTypes::P_INT16U +2024-09-08 15:10:02,097 [main] TRACE UmlOperation - created (50) WG10 IEC61850 CommonAcsiTypes::Authentication operation public NullIEC61850 getPassword() +2024-09-08 15:10:02,097 [main] TRACE UmlOperation - created (51) WG10 IEC61850 CommonAcsiTypes::Authentication operation public NullIEC61850 geUserID() +2024-09-08 15:10:02,097 [main] TRACE UmlOperation - created (52) WG10 IEC61850 CommonAcsiTypes::Authentication operation public AccessView[] getViews() +2024-09-08 15:10:02,097 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3480) WG10 IEC61850 private [1..1] null CommonAcsiTypes::ReportID.val: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,097 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,097 [main] TRACE UmlAttribute - created (3480) WG10 IEC61850 private [1..1] attribute CommonAcsiTypes::ReportID.val: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,097 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,097 [main] TRACE UmlAttribute - created (3481) WG10 IEC61850 private [1..1] basic attribute CommonAcsiTypes::EntryID.val: CommonAcsiTypes::P_OCTET_STRING +2024-09-08 15:10:02,097 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3584) WG10 IEC61850 [1..1] null MetaModel::HierarchyIEC61850Object.parent: MetaModel::IEC61850Object +2024-09-08 15:10:02,097 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,097 [main] TRACE UmlAttribute - created (3584) WG10 IEC61850 [1..1] attribute MetaModel::HierarchyIEC61850Object.parent: MetaModel::IEC61850Object +2024-09-08 15:10:02,097 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,097 [main] TRACE UmlAttribute - created (3585) WG10 IEC61850 [1..1] basic attribute MetaModel::NamedIEC61850Object.objName: CoreTypes::ObjectName +2024-09-08 15:10:02,097 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3586) WG10 IEC61850 [1..1] null MetaModel::IED.name: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,097 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,097 [main] TRACE UmlAttribute - created (3586) WG10 IEC61850 [1..1] attribute MetaModel::IED.name: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,097 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3587) WG10 IEC61850 [1..1] null MetaModel::SERVER.name: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,097 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,097 [main] TRACE UmlAttribute - created (3587) WG10 IEC61850 [1..1] attribute MetaModel::SERVER.name: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,098 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3588) WG10 IEC61850 [1..*] null MetaModel::SERVER.serviceAccessPoints: CommonAcsiTypes::IPAddress +2024-09-08 15:10:02,098 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,098 [main] TRACE UmlAttribute - created (3588) WG10 IEC61850 [1..*] attribute MetaModel::SERVER.serviceAccessPoints: CommonAcsiTypes::IPAddress +2024-09-08 15:10:02,098 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3589) WG10 IEC61850 [1..1] null MetaModel::LD.objRef: ObjectReferences::LDReference +2024-09-08 15:10:02,098 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,098 [main] TRACE UmlAttribute - created (3589) WG10 IEC61850 [1..1] attribute MetaModel::LD.objRef: ObjectReferences::LDReference +2024-09-08 15:10:02,098 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3590) WG10 IEC61850 [1..1] null MetaModel::LN.objRef: ObjectReferences::LNReference +2024-09-08 15:10:02,098 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,098 [main] TRACE UmlAttribute - created (3590) WG10 IEC61850 [1..1] attribute MetaModel::LN.objRef: ObjectReferences::LNReference +2024-09-08 15:10:02,098 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3591) WG10 IEC61850 [1..1] null MetaModel::CDC.objRef: ObjectReferences::CDCReference +2024-09-08 15:10:02,098 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,098 [main] TRACE UmlAttribute - created (3591) WG10 IEC61850 [1..1] attribute MetaModel::CDC.objRef: ObjectReferences::CDCReference +2024-09-08 15:10:02,098 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3592) WG10 IEC61850 [1..1] null MetaModel::FCD.objRef: ObjectReferences::FCDReference +2024-09-08 15:10:02,098 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,098 [main] TRACE UmlAttribute - created (3592) WG10 IEC61850 [1..1] attribute MetaModel::FCD.objRef: ObjectReferences::FCDReference +2024-09-08 15:10:02,098 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,099 [main] TRACE UmlAttribute - created (3593) WG10 IEC61850 [1..1] enumeration attribute MetaModel::FCD.fc: FunctionalConstraints::FcKind +2024-09-08 15:10:02,099 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3594) WG10 IEC61850 [1..1] null MetaModel::FCDA.objRef: ObjectReferences::FCDAReference +2024-09-08 15:10:02,099 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,099 [main] TRACE UmlAttribute - created (3594) WG10 IEC61850 [1..1] attribute MetaModel::FCDA.objRef: ObjectReferences::FCDAReference +2024-09-08 15:10:02,099 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3595) WG10 IEC61850 [1..1] null MetaModel::DA.objRef: ObjectReferences::FCDAReference +2024-09-08 15:10:02,099 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,099 [main] TRACE UmlAttribute - created (3595) WG10 IEC61850 [1..1] attribute MetaModel::DA.objRef: ObjectReferences::FCDAReference +2024-09-08 15:10:02,099 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3596) WG10 IEC61850 [1..1] null MetaModel::PrimitiveDA.attrVal: AttrValues::AttrValue +2024-09-08 15:10:02,099 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,099 [main] TRACE UmlAttribute - created (3596) WG10 IEC61850 [1..1] attribute MetaModel::PrimitiveDA.attrVal: AttrValues::AttrValue +2024-09-08 15:10:02,099 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3597) WG10 IEC61850 [1..1] null MetaModel::LNOwnedDS.objRef: ObjectReferences::LNOwnedDSReference +2024-09-08 15:10:02,099 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,100 [main] TRACE UmlAttribute - created (3597) WG10 IEC61850 [1..1] attribute MetaModel::LNOwnedDS.objRef: ObjectReferences::LNOwnedDSReference +2024-09-08 15:10:02,100 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,100 [main] TRACE UmlAttribute - created (3598) WG10 IEC61850 [1..1] basic attribute MetaModel::NonPersistentDS.isReferenced: CoreTypes::P_BOOLEAN +2024-09-08 15:10:02,100 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3599) WG10 IEC61850 [1..1] null MetaModel::NonPersistentDS.objRef: ObjectReferences::NonPersistentDSReference +2024-09-08 15:10:02,100 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,100 [main] TRACE UmlAttribute - created (3599) WG10 IEC61850 [1..1] attribute MetaModel::NonPersistentDS.objRef: ObjectReferences::NonPersistentDSReference +2024-09-08 15:10:02,100 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,100 [main] TRACE UmlAttribute - created (3600) WG10 IEC61850 [1..1] basic attribute MetaModel::PersistentDS.isReferenced: CoreTypes::P_BOOLEAN +2024-09-08 15:10:02,100 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3601) WG10 IEC61850 [1..1] null MetaModel::ControlBlock.objRef: ObjectReferences::CBReference +2024-09-08 15:10:02,100 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,100 [main] TRACE UmlAttribute - created (3601) WG10 IEC61850 [1..1] attribute MetaModel::ControlBlock.objRef: ObjectReferences::CBReference +2024-09-08 15:10:02,100 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3602) WG10 IEC61850 [1..1] null MetaModel::BRCB.clientAddress: CommonAcsiTypes::IPAddress +2024-09-08 15:10:02,100 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,100 [main] TRACE UmlAttribute - created (3602) WG10 IEC61850 [1..1] attribute MetaModel::BRCB.clientAddress: CommonAcsiTypes::IPAddress +2024-09-08 15:10:02,100 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3603) WG10 IEC61850 [1..1] null MetaModel::URCB.clientAddress: CommonAcsiTypes::IPAddress +2024-09-08 15:10:02,100 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,100 [main] TRACE UmlAttribute - created (3603) WG10 IEC61850 [1..1] attribute MetaModel::URCB.clientAddress: CommonAcsiTypes::IPAddress +2024-09-08 15:10:02,100 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3604) WG10 IEC61850 [1..1] null MetaModel::LOG.objRef: ObjectReferences::LOGReference +2024-09-08 15:10:02,100 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,100 [main] TRACE UmlAttribute - created (3604) WG10 IEC61850 [1..1] attribute MetaModel::LOG.objRef: ObjectReferences::LOGReference +2024-09-08 15:10:02,100 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3605) WG10 IEC61850 [1..1] null MetaModel::GCB.destinationAddress: CommonAcsiTypes::MulticastAddress +2024-09-08 15:10:02,101 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,101 [main] TRACE UmlAttribute - created (3605) WG10 IEC61850 [1..1] attribute MetaModel::GCB.destinationAddress: CommonAcsiTypes::MulticastAddress +2024-09-08 15:10:02,101 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3606) WG10 IEC61850 [1..1] null MetaModel::MSVCB.destinationAddress: CommonAcsiTypes::MulticastAddress +2024-09-08 15:10:02,101 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,101 [main] TRACE UmlAttribute - created (3606) WG10 IEC61850 [1..1] attribute MetaModel::MSVCB.destinationAddress: CommonAcsiTypes::MulticastAddress +2024-09-08 15:10:02,101 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3607) WG10 IEC61850 [1..1] null MetaModel::USVCB.clientAddress: CommonAcsiTypes::IPAddress +2024-09-08 15:10:02,101 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,101 [main] TRACE UmlAttribute - created (3607) WG10 IEC61850 [1..1] attribute MetaModel::USVCB.clientAddress: CommonAcsiTypes::IPAddress +2024-09-08 15:10:02,101 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3608) WG10 IEC61850 [1..1] null MetaModel::FILE.objRef: ObjectReferences::FILEReference +2024-09-08 15:10:02,101 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,101 [main] TRACE UmlAttribute - created (3608) WG10 IEC61850 [1..1] attribute MetaModel::FILE.objRef: ObjectReferences::FILEReference +2024-09-08 15:10:02,102 [main] TRACE ValueRange - 'BL' has no separator indicating range. +2024-09-08 15:10:02,102 [main] TRACE UmlAttribute - created (3609) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_BL.fc: FunctionalConstraints::FcKind = BL +2024-09-08 15:10:02,102 [main] TRACE ValueRange - 'CF' has no separator indicating range. +2024-09-08 15:10:02,102 [main] TRACE UmlAttribute - created (3610) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_CF.fc: FunctionalConstraints::FcKind = CF +2024-09-08 15:10:02,102 [main] TRACE ValueRange - 'dchg' has no separator indicating range. +2024-09-08 15:10:02,102 [main] TRACE UmlAttribute - created (3611) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_CF_dchg.trgOp: TriggerOptions::TrgOpKind = dchg +2024-09-08 15:10:02,102 [main] TRACE ValueRange - 'DC' has no separator indicating range. +2024-09-08 15:10:02,102 [main] TRACE UmlAttribute - created (3612) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_DC.fc: FunctionalConstraints::FcKind = DC +2024-09-08 15:10:02,102 [main] TRACE ValueRange - 'EX' has no separator indicating range. +2024-09-08 15:10:02,102 [main] TRACE UmlAttribute - created (3613) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_EX.fc: FunctionalConstraints::FcKind = EX +2024-09-08 15:10:02,102 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-08 15:10:02,102 [main] TRACE UmlAttribute - created (3614) WG10 IEC61850 static const [1..1] basic attribute MetaModelFCsAndTrgOps::FCDA_EX.isWritable: CoreTypes::P_BOOLEAN = false +2024-09-08 15:10:02,102 [main] TRACE ValueRange - 'MX' has no separator indicating range. +2024-09-08 15:10:02,102 [main] TRACE UmlAttribute - created (3615) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_MX.fc: FunctionalConstraints::FcKind = MX +2024-09-08 15:10:02,102 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-08 15:10:02,102 [main] TRACE UmlAttribute - created (3616) WG10 IEC61850 static const [1..1] basic attribute MetaModelFCsAndTrgOps::FCDA_MX.isWritable: CoreTypes::P_BOOLEAN = false +2024-09-08 15:10:02,102 [main] TRACE ValueRange - 'dchg' has no separator indicating range. +2024-09-08 15:10:02,102 [main] TRACE UmlAttribute - created (3617) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_MX_dchg.trgOp: TriggerOptions::TrgOpKind = dchg +2024-09-08 15:10:02,102 [main] TRACE ValueRange - 'dchg, dupd' has no separator indicating range. +2024-09-08 15:10:02,103 [main] TRACE UmlAttribute - created (3618) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_MX_dchg_dupd.trgOp: TriggerOptions::TrgOpKind = dchg, dupd +2024-09-08 15:10:02,103 [main] TRACE ValueRange - 'qchg' has no separator indicating range. +2024-09-08 15:10:02,103 [main] TRACE UmlAttribute - created (3619) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_MX_qchg.trgOp: TriggerOptions::TrgOpKind = qchg +2024-09-08 15:10:02,103 [main] TRACE ValueRange - 'OR' has no separator indicating range. +2024-09-08 15:10:02,103 [main] TRACE UmlAttribute - created (3620) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_OR.fc: FunctionalConstraints::FcKind = OR +2024-09-08 15:10:02,103 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-08 15:10:02,103 [main] TRACE UmlAttribute - created (3621) WG10 IEC61850 static const [1..1] basic attribute MetaModelFCsAndTrgOps::FCDA_OR.isWritable: CoreTypes::P_BOOLEAN = false +2024-09-08 15:10:02,103 [main] TRACE ValueRange - 'dchg' has no separator indicating range. +2024-09-08 15:10:02,103 [main] TRACE UmlAttribute - created (3622) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_OR_dchg.trgOp: TriggerOptions::TrgOpKind = dchg +2024-09-08 15:10:02,103 [main] TRACE ValueRange - 'SE' has no separator indicating range. +2024-09-08 15:10:02,103 [main] TRACE UmlAttribute - created (3623) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_SE.fc: FunctionalConstraints::FcKind = SE +2024-09-08 15:10:02,103 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-08 15:10:02,103 [main] TRACE UmlAttribute - created (3624) WG10 IEC61850 static const [1..1] basic attribute MetaModelFCsAndTrgOps::FCDA_SE.isReadable: CoreTypes::P_BOOLEAN = false +2024-09-08 15:10:02,103 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-08 15:10:02,103 [main] TRACE UmlAttribute - created (3625) WG10 IEC61850 static const [1..1] basic attribute MetaModelFCsAndTrgOps::FCDA_SE.isWritable: CoreTypes::P_BOOLEAN = false +2024-09-08 15:10:02,103 [main] TRACE ValueRange - 'dchg' has no separator indicating range. +2024-09-08 15:10:02,103 [main] TRACE UmlAttribute - created (3626) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_SE_dchg.trgOp: TriggerOptions::TrgOpKind = dchg +2024-09-08 15:10:02,103 [main] TRACE ValueRange - 'SG' has no separator indicating range. +2024-09-08 15:10:02,103 [main] TRACE UmlAttribute - created (3627) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_SG.fc: FunctionalConstraints::FcKind = SG +2024-09-08 15:10:02,104 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-08 15:10:02,104 [main] TRACE UmlAttribute - created (3628) WG10 IEC61850 static const [1..1] basic attribute MetaModelFCsAndTrgOps::FCDA_SG.isWritable: CoreTypes::P_BOOLEAN = false +2024-09-08 15:10:02,104 [main] TRACE ValueRange - 'dchg' has no separator indicating range. +2024-09-08 15:10:02,104 [main] TRACE UmlAttribute - created (3629) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_SG_dchg.trgOp: TriggerOptions::TrgOpKind = dchg +2024-09-08 15:10:02,104 [main] TRACE ValueRange - 'SP' has no separator indicating range. +2024-09-08 15:10:02,104 [main] TRACE UmlAttribute - created (3630) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_SP.fc: FunctionalConstraints::FcKind = SP +2024-09-08 15:10:02,104 [main] TRACE ValueRange - 'dchg' has no separator indicating range. +2024-09-08 15:10:02,104 [main] TRACE UmlAttribute - created (3631) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_SP_dchg.trgOp: TriggerOptions::TrgOpKind = dchg +2024-09-08 15:10:02,104 [main] TRACE ValueRange - 'ST' has no separator indicating range. +2024-09-08 15:10:02,104 [main] TRACE UmlAttribute - created (3632) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_ST.fc: FunctionalConstraints::FcKind = ST +2024-09-08 15:10:02,104 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-08 15:10:02,104 [main] TRACE UmlAttribute - created (3633) WG10 IEC61850 static const [1..1] basic attribute MetaModelFCsAndTrgOps::FCDA_ST.isWritable: CoreTypes::P_BOOLEAN = false +2024-09-08 15:10:02,104 [main] TRACE ValueRange - 'dchg' has no separator indicating range. +2024-09-08 15:10:02,104 [main] TRACE UmlAttribute - created (3634) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_ST_dchg.trgOp: TriggerOptions::TrgOpKind = dchg +2024-09-08 15:10:02,104 [main] TRACE ValueRange - 'dchg, dupd' has no separator indicating range. +2024-09-08 15:10:02,104 [main] TRACE UmlAttribute - created (3635) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_ST_dchg_dupd.trgOp: TriggerOptions::TrgOpKind = dchg, dupd +2024-09-08 15:10:02,104 [main] TRACE ValueRange - 'dupd' has no separator indicating range. +2024-09-08 15:10:02,105 [main] TRACE UmlAttribute - created (3636) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_ST_dupd.trgOp: TriggerOptions::TrgOpKind = dupd +2024-09-08 15:10:02,105 [main] TRACE ValueRange - 'qchg' has no separator indicating range. +2024-09-08 15:10:02,105 [main] TRACE UmlAttribute - created (3637) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_ST_qchg.trgOp: TriggerOptions::TrgOpKind = qchg +2024-09-08 15:10:02,105 [main] TRACE ValueRange - 'SV' has no separator indicating range. +2024-09-08 15:10:02,105 [main] TRACE UmlAttribute - created (3638) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_SV.fc: FunctionalConstraints::FcKind = SV +2024-09-08 15:10:02,105 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3309) WG10 IEC61850 [1..1] null IEC61850_7_3::IEC61850_7_3Namespace.id: NullIEC61850::NullIEC61850 = IEC61850-7-3 +2024-09-08 15:10:02,105 [main] TRACE ValueRange - 'IEC61850-7-3' has no separator indicating range. +2024-09-08 15:10:02,105 [main] TRACE UmlAttribute - created (3309) WG10 IEC61850 [1..1] attribute IEC61850_7_3::IEC61850_7_3Namespace.id: NullIEC61850::NullIEC61850 = IEC61850-7-3 +2024-09-08 15:10:02,105 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3310) WG10 IEC61850 [1..1] null IEC61850_7_3::IEC61850_7_3Namespace.version: NullIEC61850::NullIEC61850 = 2011 +2024-09-08 15:10:02,105 [main] TRACE ValueRange - '2011' has no separator indicating range. +2024-09-08 15:10:02,105 [main] TRACE UmlAttribute - created (3310) WG10 IEC61850 [1..1] attribute IEC61850_7_3::IEC61850_7_3Namespace.version: NullIEC61850::NullIEC61850 = 2011 +2024-09-08 15:10:02,105 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3311) WG10 IEC61850 [1..1] null IEC61850_7_3::IEC61850_7_3Namespace.revision: NullIEC61850::NullIEC61850 = B +2024-09-08 15:10:02,106 [main] TRACE ValueRange - 'B' has no separator indicating range. +2024-09-08 15:10:02,106 [main] TRACE UmlAttribute - created (3311) WG10 IEC61850 [1..1] attribute IEC61850_7_3::IEC61850_7_3Namespace.revision: NullIEC61850::NullIEC61850 = B +2024-09-08 15:10:02,106 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3312) WG10 IEC61850 [1..1] null IEC61850_7_3::IEC61850_7_3Namespace.date: NullIEC61850::NullIEC61850 = 2011-08-01 +2024-09-08 15:10:02,106 [main] TRACE ValueRange - '2011-08-01' has no separator indicating range. +2024-09-08 15:10:02,106 [main] TRACE UmlAttribute - created (3312) WG10 IEC61850 [1..1] attribute IEC61850_7_3::IEC61850_7_3Namespace.date: NullIEC61850::NullIEC61850 = 2011-08-01 +2024-09-08 15:10:02,106 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (6703) WG10 IEC61850 [1..1] null IEC61850_7_3::IEC61850_7_3Namespace.name: NullIEC61850::NullIEC61850 = IEC61850-7-3 B 2011 +2024-09-08 15:10:02,106 [main] TRACE ValueRange - 'IEC61850-7-3 B 2011' has no separator indicating range. +2024-09-08 15:10:02,106 [main] TRACE UmlAttribute - created (6703) WG10 IEC61850 [1..1] attribute IEC61850_7_3::IEC61850_7_3Namespace.name: NullIEC61850::NullIEC61850 = IEC61850-7-3 B 2011 +2024-09-08 15:10:02,107 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,107 [main] TRACE UmlAttribute - created (4088) WG10 IEC61850 private [1..1] enumeration attribute ImplicitDAs::SIUnit.val: DAEnums::SIUnitKind +2024-09-08 15:10:02,107 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,107 [main] TRACE UmlAttribute - created (4077) WG10 IEC61850 private [1..1] enumeration attribute ImplicitDAs::Multiplier.val: DAEnums::MultiplierKind +2024-09-08 15:10:02,107 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,107 [main] TRACE UmlAttribute - created (4082) WG10 IEC61850 private [1..1] enumeration attribute ImplicitDAs::PhaseFaultDirection.val: DAEnums::PhaseFaultDirectionKind +2024-09-08 15:10:02,107 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,107 [main] TRACE UmlAttribute - created (4081) WG10 IEC61850 private [1..1] enumeration attribute ImplicitDAs::PhaseAngleReference.val: DAEnums::PhaseAngleReferenceKind +2024-09-08 15:10:02,107 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,107 [main] TRACE UmlAttribute - created (4089) WG10 IEC61850 [1..1] packed,enumeration attribute ConstructedDAs::Quality.validity: ConstructedDAs::ValidityKind +2024-09-08 15:10:02,107 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,107 [main] TRACE UmlAttribute - created (4090) WG10 IEC61850 [1..1] packed attribute ConstructedDAs::Quality.detailQual: ConstructedDAs::DetailQual +2024-09-08 15:10:02,107 [main] TRACE ValueRange - 'process' has no separator indicating range. +2024-09-08 15:10:02,107 [main] TRACE UmlAttribute - created (4091) WG10 IEC61850 [1..1] packed,enumeration attribute ConstructedDAs::Quality.source: ConstructedDAs::SourceKind = process +2024-09-08 15:10:02,107 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-08 15:10:02,108 [main] TRACE UmlAttribute - created (4092) WG10 IEC61850 [1..1] basic attribute ConstructedDAs::Quality.test: CoreTypes::P_BOOLEAN = false +2024-09-08 15:10:02,108 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-08 15:10:02,108 [main] TRACE UmlAttribute - created (4093) WG10 IEC61850 [1..1] basic attribute ConstructedDAs::Quality.operatorBlocked: CoreTypes::P_BOOLEAN = false +2024-09-08 15:10:02,108 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-08 15:10:02,108 [main] TRACE UmlAttribute - created (4098) WG10 IEC61850 [1..1] basic attribute ConstructedDAs::DetailQual.overflow: CoreTypes::P_BOOLEAN = false +2024-09-08 15:10:02,108 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-08 15:10:02,108 [main] TRACE UmlAttribute - created (4099) WG10 IEC61850 [1..1] basic attribute ConstructedDAs::DetailQual.outOfRange: CoreTypes::P_BOOLEAN = false +2024-09-08 15:10:02,108 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-08 15:10:02,108 [main] TRACE UmlAttribute - created (4100) WG10 IEC61850 [1..1] basic attribute ConstructedDAs::DetailQual.badReference: CoreTypes::P_BOOLEAN = false +2024-09-08 15:10:02,108 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-08 15:10:02,108 [main] TRACE UmlAttribute - created (4101) WG10 IEC61850 [1..1] basic attribute ConstructedDAs::DetailQual.oscillatory: CoreTypes::P_BOOLEAN = false +2024-09-08 15:10:02,108 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-08 15:10:02,108 [main] TRACE UmlAttribute - created (4102) WG10 IEC61850 [1..1] basic attribute ConstructedDAs::DetailQual.failure: CoreTypes::P_BOOLEAN = false +2024-09-08 15:10:02,108 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-08 15:10:02,108 [main] TRACE UmlAttribute - created (4103) WG10 IEC61850 [1..1] basic attribute ConstructedDAs::DetailQual.oldData: CoreTypes::P_BOOLEAN = false +2024-09-08 15:10:02,109 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-08 15:10:02,109 [main] TRACE UmlAttribute - created (4104) WG10 IEC61850 [1..1] basic attribute ConstructedDAs::DetailQual.inconsistent: CoreTypes::P_BOOLEAN = false +2024-09-08 15:10:02,109 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-08 15:10:02,109 [main] TRACE UmlAttribute - created (4105) WG10 IEC61850 [1..1] basic attribute ConstructedDAs::DetailQual.inaccurate: CoreTypes::P_BOOLEAN = false +2024-09-08 15:10:02,109 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,109 [main] TRACE UmlAttribute - created (4108) WG10 IEC61850 [0..1] PrimitiveDA attribute ConstructedDAs::AnalogueValue.i: BasicDAs::INT32 +2024-09-08 15:10:02,109 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,109 [main] TRACE UmlAttribute - created (4109) WG10 IEC61850 [0..1] PrimitiveDA attribute ConstructedDAs::AnalogueValue.f: BasicDAs::FLOAT32 +2024-09-08 15:10:02,109 [main] WARN PresenceCondition - presence condition literal not found, or invalid class constraint name format (should be 'name(arguments)'): WG10 IEC61850 class attributes constraint ConstructedDAs::AnalogueValue {AtLeastOne = [i, f]} +2024-09-08 15:10:02,109 [main] TRACE UmlConstraint - created class attributes constraint ConstructedDAs::AnalogueValue {AtLeastOne = [i, f]} (null) +2024-09-08 15:10:02,109 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,109 [main] TRACE UmlAttribute - created (4112) WG10 IEC61850 [1..1] ComposedDA attribute ConstructedDAs::RangeConfig.hhLim: ConstructedDAs::AnalogueValue +2024-09-08 15:10:02,109 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,110 [main] TRACE UmlAttribute - created (4113) WG10 IEC61850 [1..1] ComposedDA attribute ConstructedDAs::RangeConfig.hLim: ConstructedDAs::AnalogueValue +2024-09-08 15:10:02,110 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,110 [main] TRACE UmlAttribute - created (4114) WG10 IEC61850 [1..1] ComposedDA attribute ConstructedDAs::RangeConfig.lLim: ConstructedDAs::AnalogueValue +2024-09-08 15:10:02,110 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,110 [main] TRACE UmlAttribute - created (4115) WG10 IEC61850 [1..1] ComposedDA attribute ConstructedDAs::RangeConfig.llLim: ConstructedDAs::AnalogueValue +2024-09-08 15:10:02,110 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,110 [main] TRACE UmlAttribute - created (4116) WG10 IEC61850 [1..1] ComposedDA attribute ConstructedDAs::RangeConfig.min: ConstructedDAs::AnalogueValue +2024-09-08 15:10:02,110 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,115 [main] TRACE UmlAttribute - created (4117) WG10 IEC61850 [1..1] ComposedDA attribute ConstructedDAs::RangeConfig.max: ConstructedDAs::AnalogueValue +2024-09-08 15:10:02,115 [main] TRACE UmlAttribute - created (4118) WG10 IEC61850 [0..1] PrimitiveDA attribute ConstructedDAs::RangeConfig.limDb: BasicDAs::INT32U = 0...100000 +2024-09-08 15:10:02,116 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,116 [main] TRACE UmlAttribute - created (4127) WG10 IEC61850 [1..1] EnumDA attribute ConstructedDAs::Unit.SIUnit: ImplicitDAs::SIUnit +2024-09-08 15:10:02,116 [main] TRACE ValueRange - 'none' has no separator indicating range. +2024-09-08 15:10:02,116 [main] TRACE UmlAttribute - created (4128) WG10 IEC61850 [0..1] EnumDA attribute ConstructedDAs::Unit.multiplier: ImplicitDAs::Multiplier = none +2024-09-08 15:10:02,116 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,116 [main] TRACE UmlAttribute - created (4131) WG10 IEC61850 [1..1] PrimitiveDA attribute ConstructedDAs::Point.xVal: BasicDAs::FLOAT32 +2024-09-08 15:10:02,116 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,116 [main] TRACE UmlAttribute - created (4132) WG10 IEC61850 [1..1] PrimitiveDA attribute ConstructedDAs::Point.yVal: BasicDAs::FLOAT32 +2024-09-08 15:10:02,116 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,116 [main] TRACE UmlAttribute - created (4133) WG10 IEC61850 [0..1] PrimitiveDA attribute ConstructedDAs::Point.zVal: BasicDAs::FLOAT32 +2024-09-08 15:10:02,116 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,116 [main] TRACE UmlAttribute - created (4148) WG10 IEC61850 private [1..1] ComposedDA attribute FCDAs::AnalogueValue_MX.attr: ConstructedDAs::AnalogueValue +2024-09-08 15:10:02,116 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,116 [main] TRACE UmlAttribute - created (4149) WG10 IEC61850 private [1..1] ComposedDA attribute FCDAs::AnalogueValue_MX_dchg.attr: ConstructedDAs::AnalogueValue +2024-09-08 15:10:02,116 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,116 [main] TRACE UmlAttribute - created (4150) WG10 IEC61850 private [1..1] ComposedDA attribute FCDAs::AnalogueValue_MX_dchg_dupd.attr: ConstructedDAs::AnalogueValue +2024-09-08 15:10:02,116 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,116 [main] TRACE UmlAttribute - created (4155) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::BOOLEAN_BL.attr: BasicDAs::BOOLEAN +2024-09-08 15:10:02,116 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,116 [main] TRACE UmlAttribute - created (4156) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::BOOLEAN_CF_dchg.attr: BasicDAs::BOOLEAN +2024-09-08 15:10:02,116 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,116 [main] TRACE UmlAttribute - created (4157) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::BOOLEAN_MX_dchg.attr: BasicDAs::BOOLEAN +2024-09-08 15:10:02,116 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,116 [main] TRACE UmlAttribute - created (4158) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::BOOLEAN_OR_dchg.attr: BasicDAs::BOOLEAN +2024-09-08 15:10:02,116 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,116 [main] TRACE UmlAttribute - created (4159) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::BOOLEAN_SE.attr: BasicDAs::BOOLEAN +2024-09-08 15:10:02,116 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,117 [main] TRACE UmlAttribute - created (4160) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::BOOLEAN_SG.attr: BasicDAs::BOOLEAN +2024-09-08 15:10:02,117 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,117 [main] TRACE UmlAttribute - created (4161) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::BOOLEAN_SP_dchg.attr: BasicDAs::BOOLEAN +2024-09-08 15:10:02,117 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,117 [main] TRACE UmlAttribute - created (4162) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::BOOLEAN_ST_dchg.attr: BasicDAs::BOOLEAN +2024-09-08 15:10:02,117 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,117 [main] TRACE UmlAttribute - created (4163) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::BOOLEAN_SV.attr: BasicDAs::BOOLEAN +2024-09-08 15:10:02,117 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,117 [main] TRACE UmlAttribute - created (4175) WG10 IEC61850 private [1..1] PackedEnumDA attribute FCDAs::DpStatus_ST_dchg.attr: BasicDAs::DpStatus +2024-09-08 15:10:02,117 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,117 [main] TRACE UmlAttribute - created (4176) WG10 IEC61850 private [1..1] PackedEnumDA attribute FCDAs::DpStatus_SV.attr: BasicDAs::DpStatus +2024-09-08 15:10:02,117 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,117 [main] TRACE UmlAttribute - created (4177) WG10 IEC61850 private [1..1] EnumDA attribute FCDAs::EnumDA_CF_dchg.attr: MetaModel::EnumDA +2024-09-08 15:10:02,117 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,117 [main] TRACE UmlAttribute - created (4181) WG10 IEC61850 private [1..1] EnumDA attribute FCDAs::EnumDA_ST_dchg.attr: MetaModel::EnumDA +2024-09-08 15:10:02,117 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,117 [main] TRACE UmlAttribute - created (4182) WG10 IEC61850 private [1..1] EnumDA attribute FCDAs::EnumDA_ST_dchg_dupd.attr: MetaModel::EnumDA +2024-09-08 15:10:02,117 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,117 [main] TRACE UmlAttribute - created (4183) WG10 IEC61850 private [1..1] EnumDA attribute FCDAs::EnumDA_SV.attr: MetaModel::EnumDA +2024-09-08 15:10:02,117 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,117 [main] TRACE UmlAttribute - created (4192) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::INT16U_CF.attr: BasicDAs::INT16U +2024-09-08 15:10:02,117 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,117 [main] TRACE UmlAttribute - created (4193) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::INT16U_CF_dchg.attr: BasicDAs::INT16U +2024-09-08 15:10:02,117 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,118 [main] TRACE UmlAttribute - created (4198) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::INT32U_CF_dchg.attr: BasicDAs::INT32U +2024-09-08 15:10:02,118 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,118 [main] TRACE UmlAttribute - created (4200) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::INT32_CF_dchg.attr: BasicDAs::INT32 +2024-09-08 15:10:02,118 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,118 [main] TRACE UmlAttribute - created (4204) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::INT32_ST_dchg.attr: BasicDAs::INT32 +2024-09-08 15:10:02,118 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,118 [main] TRACE UmlAttribute - created (4205) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::INT32_ST_dchg_dupd.attr: BasicDAs::INT32 +2024-09-08 15:10:02,118 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,118 [main] TRACE UmlAttribute - created (4216) WG10 IEC61850 private [1..1] EnumDA attribute FCDAs::PhaseAngleReference_CF_dchg.attr: ImplicitDAs::PhaseAngleReference +2024-09-08 15:10:02,118 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,118 [main] TRACE UmlAttribute - created (4217) WG10 IEC61850 private [1..1] EnumDA attribute FCDAs::PhaseFaultDirection_ST_dchg.attr: ImplicitDAs::PhaseFaultDirection +2024-09-08 15:10:02,118 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,118 [main] TRACE UmlAttribute - created (4219) WG10 IEC61850 private [1..1] ComposedDA attribute FCDAs::Point_DC.attr: ConstructedDAs::Point +2024-09-08 15:10:02,118 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,118 [main] TRACE UmlAttribute - created (4220) WG10 IEC61850 private [1..1] ComposedDA attribute FCDAs::Point_SE.attr: ConstructedDAs::Point +2024-09-08 15:10:02,118 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,118 [main] TRACE UmlAttribute - created (4221) WG10 IEC61850 private [1..1] ComposedDA attribute FCDAs::Point_SG.attr: ConstructedDAs::Point +2024-09-08 15:10:02,118 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,118 [main] TRACE UmlAttribute - created (4222) WG10 IEC61850 private [1..1] ComposedDA attribute FCDAs::Point_SP.attr: ConstructedDAs::Point +2024-09-08 15:10:02,118 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,119 [main] TRACE UmlAttribute - created (4224) WG10 IEC61850 private [1..1] PackedPrimitiveDA attribute FCDAs::Quality_MX_qchg.attr: ConstructedDAs::Quality +2024-09-08 15:10:02,119 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,119 [main] TRACE UmlAttribute - created (4225) WG10 IEC61850 private [1..1] PackedPrimitiveDA attribute FCDAs::Quality_ST_qchg.attr: ConstructedDAs::Quality +2024-09-08 15:10:02,119 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,119 [main] TRACE UmlAttribute - created (4226) WG10 IEC61850 private [1..1] PackedPrimitiveDA attribute FCDAs::Quality_SV.attr: ConstructedDAs::Quality +2024-09-08 15:10:02,119 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,119 [main] TRACE UmlAttribute - created (4227) WG10 IEC61850 private [1..1] ComposedDA attribute FCDAs::RangeConfig_CF_dchg.attr: ConstructedDAs::RangeConfig +2024-09-08 15:10:02,119 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,119 [main] TRACE UmlAttribute - created (4239) WG10 IEC61850 private [1..1] PackedPrimitiveDA attribute FCDAs::TimeStamp_ST.attr: BasicDAs::TimeStamp +2024-09-08 15:10:02,119 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,119 [main] TRACE UmlAttribute - created (4240) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::UNICODE_STRING255_DC.attr: BasicDAs::UNICODE_STRING255 +2024-09-08 15:10:02,119 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,119 [main] TRACE UmlAttribute - created (4250) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::VISIBLE_STRING255_EX.attr: BasicDAs::VISIBLE_STRING255 +2024-09-08 15:10:02,119 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,119 [main] TRACE UmlAttribute - created (4259) WG10 IEC61850 [0..1] FCDA attribute CommonDataClasses::BasePrimitiveCDC.dU: FCDAs::UNICODE_STRING255_DC +2024-09-08 15:10:02,119 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,119 [main] TRACE UmlAttribute - created (4260) WG10 IEC61850 [0..1] FCDA attribute CommonDataClasses::BasePrimitiveCDC.cdcNs: FCDAs::VISIBLE_STRING255_EX +2024-09-08 15:10:02,119 [main] TRACE UmlConstraint - created class attributes constraint CommonDataClasses::BasePrimitiveCDC {MOcdcNs = [cdcNs, cdcName]} (MOcdcNs) +2024-09-08 15:10:02,119 [main] TRACE UmlConstraint - created class attributes constraint CommonDataClasses::BasePrimitiveCDC {MOdataNs = [dataNs]} (MOdataNs) +2024-09-08 15:10:02,119 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,120 [main] TRACE UmlAttribute - created (4264) WG10 IEC61850 [0..1] FCDA attribute CommonDataClasses::BaseComposedCDC.dU: FCDAs::UNICODE_STRING255_DC +2024-09-08 15:10:02,120 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,120 [main] TRACE UmlAttribute - created (4265) WG10 IEC61850 [0..1] FCDA attribute CommonDataClasses::BaseComposedCDC.cdcNs: FCDAs::VISIBLE_STRING255_EX +2024-09-08 15:10:02,120 [main] TRACE UmlConstraint - created class attributes constraint CommonDataClasses::BaseComposedCDC {MOcdcNs = [cdcNs, cdcName]} (MOcdcNs) +2024-09-08 15:10:02,120 [main] TRACE UmlConstraint - created class attributes constraint CommonDataClasses::BaseComposedCDC {MOdataNs = [dataNs]} (MOdataNs) +2024-09-08 15:10:02,120 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,120 [main] TRACE UmlAttribute - created (4268) WG10 IEC61850 [0..1] FCDA attribute CommonDataClasses::SubstitutionCDC.subEna: FCDAs::BOOLEAN_SV +2024-09-08 15:10:02,120 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,120 [main] TRACE UmlAttribute - created (4269) WG10 IEC61850 [0..1] FCDA attribute CommonDataClasses::SubstitutionCDC.subQ: FCDAs::Quality_SV +2024-09-08 15:10:02,120 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,120 [main] TRACE UmlAttribute - created (4271) WG10 IEC61850 [0..1] FCDA attribute CommonDataClasses::SubstitutionCDC.blkEna: FCDAs::BOOLEAN_BL +2024-09-08 15:10:02,120 [main] TRACE UmlConstraint - created class attributes constraint CommonDataClasses::SubstitutionCDC {MFsubst = [subEna, subQ, subID]} (MFsubst) +2024-09-08 15:10:02,120 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,120 [main] TRACE UmlAttribute - created (4276) WG10 IEC61850 [1..1] PackedEnumFCDA attribute CDCStatusInfo::DPS.stVal: FCDAs::DpStatus_ST_dchg +2024-09-08 15:10:02,120 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,120 [main] TRACE UmlAttribute - created (4277) WG10 IEC61850 [1..1] FCDA attribute CDCStatusInfo::DPS.q: FCDAs::Quality_ST_qchg +2024-09-08 15:10:02,120 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,120 [main] TRACE UmlAttribute - created (4278) WG10 IEC61850 [1..1] FCDA attribute CDCStatusInfo::DPS.t: FCDAs::TimeStamp_ST +2024-09-08 15:10:02,120 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,120 [main] TRACE UmlAttribute - created (4279) WG10 IEC61850 [0..1] PackedEnumFCDA attribute CDCStatusInfo::DPS.subVal: FCDAs::DpStatus_SV +2024-09-08 15:10:02,120 [main] TRACE UmlConstraint - created class attributes constraint CDCStatusInfo::DPS {MFsubst = [subVal]} (MFsubst) +2024-09-08 15:10:02,120 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,120 [main] TRACE UmlAttribute - created (4285) WG10 IEC61850 [1..1] EnumFCDA attribute CDCStatusInfo::ENS.stVal: FCDAs::EnumDA_ST_dchg_dupd +2024-09-08 15:10:02,120 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,120 [main] TRACE UmlAttribute - created (4286) WG10 IEC61850 [1..1] FCDA attribute CDCStatusInfo::ENS.q: FCDAs::Quality_ST_qchg +2024-09-08 15:10:02,121 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,121 [main] TRACE UmlAttribute - created (4287) WG10 IEC61850 [1..1] FCDA attribute CDCStatusInfo::ENS.t: FCDAs::TimeStamp_ST +2024-09-08 15:10:02,121 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,121 [main] TRACE UmlAttribute - created (4288) WG10 IEC61850 [0..1] EnumFCDA attribute CDCStatusInfo::ENS.subVal: FCDAs::EnumDA_SV +2024-09-08 15:10:02,121 [main] TRACE UmlConstraint - created class attributes constraint CDCStatusInfo::ENS {MFsubst = [subVal]} (MFsubst) +2024-09-08 15:10:02,121 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,121 [main] TRACE UmlAttribute - created (6653) WG10 IEC61850 [1..1] EnumFCDA attribute CDCStatusInfo::EXY.stVal: FCDAs::EnumDA_ST_dchg_dupd +2024-09-08 15:10:02,121 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,121 [main] TRACE UmlAttribute - created (6654) WG10 IEC61850 [1..1] FCDA attribute CDCStatusInfo::EXY.q: FCDAs::Quality_ST_qchg +2024-09-08 15:10:02,121 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,121 [main] TRACE UmlAttribute - created (6655) WG10 IEC61850 [1..1] FCDA attribute CDCStatusInfo::EXY.t: FCDAs::TimeStamp_ST +2024-09-08 15:10:02,121 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (4301) WG10 IEC61850 [1..1] null CDCStatusInfo::ACD.dirGeneral: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,121 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,121 [main] TRACE UmlAttribute - created (4301) WG10 IEC61850 [1..1] attribute CDCStatusInfo::ACD.dirGeneral: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,121 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,121 [main] TRACE UmlAttribute - created (4302) WG10 IEC61850 [0..1] FCDA attribute CDCStatusInfo::ACD.phsA: FCDAs::BOOLEAN_ST_dchg +2024-09-08 15:10:02,121 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,122 [main] TRACE UmlAttribute - created (4304) WG10 IEC61850 [0..1] FCDA attribute CDCStatusInfo::ACD.phsB: FCDAs::BOOLEAN_ST_dchg +2024-09-08 15:10:02,122 [main] TRACE UmlConstraint - created class attributes constraint CDCStatusInfo::ACD {AllOrNonePerGroup(1) = [phsA, dirPhsA]} (AllOrNonePerGroup(n)) +2024-09-08 15:10:02,122 [main] TRACE UmlConstraint - created class attributes constraint CDCStatusInfo::ACD {AllOrNonePerGroup(2) = [phsB, dirPhsB]} (AllOrNonePerGroup(n)) +2024-09-08 15:10:02,122 [main] TRACE UmlConstraint - created class attributes constraint CDCStatusInfo::ACD {AllOrNonePerGroup(3) = [phsC, dirPhsC]} (AllOrNonePerGroup(n)) +2024-09-08 15:10:02,122 [main] TRACE UmlConstraint - created class attributes constraint CDCStatusInfo::ACD {AllOrNonePerGroup(4) = [neut, dirNeut]} (AllOrNonePerGroup(n)) +2024-09-08 15:10:02,122 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,122 [main] TRACE UmlAttribute - created (4328) WG10 IEC61850 [1..*] FCDA attribute CDCStatusInfo::HST.hstVal: FCDAs::INT32_ST_dchg_dupd +2024-09-08 15:10:02,122 [main] TRACE UmlConstraint - created attribute index constraint CDCStatusInfo::HST.hstVal {maxIdx = maxPts-1} +2024-09-08 15:10:02,123 [main] TRACE UmlAttribute - created (4331) WG10 IEC61850 [1..1] FCDA attribute CDCStatusInfo::HST.numPts: FCDAs::INT16U_CF = 1...maxPts +2024-09-08 15:10:02,123 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,123 [main] TRACE UmlAttribute - created (4346) WG10 IEC61850 [1..1] FCDA attribute CDCAnalogueInfo::HarmonicMeasurandCDC.evalTm: FCDAs::INT16U_CF_dchg +2024-09-08 15:10:02,123 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,123 [main] TRACE UmlAttribute - created (4347) WG10 IEC61850 [0..1] FCDA attribute CDCAnalogueInfo::HarmonicMeasurandCDC.smpRate: FCDAs::INT32U_CF_dchg +2024-09-08 15:10:02,123 [main] TRACE UmlConstraint - created class attributes constraint CDCAnalogueInfo::HarmonicMeasurandCDC {MFrms = [rmsCyc]} (MFrms) +2024-09-08 15:10:02,123 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (4363) WG10 IEC61850 [0..1] null CDCAnalogueInfo::CMV.instCVal: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,123 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,123 [main] TRACE UmlAttribute - created (4363) WG10 IEC61850 [0..1] attribute CDCAnalogueInfo::CMV.instCVal: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,123 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (4369) WG10 IEC61850 [0..1] null CDCAnalogueInfo::CMV.subCVal: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,123 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,123 [main] TRACE UmlAttribute - created (4369) WG10 IEC61850 [0..1] attribute CDCAnalogueInfo::CMV.subCVal: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,123 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,123 [main] TRACE UmlAttribute - created (4374) WG10 IEC61850 [0..1] FCDA attribute CDCAnalogueInfo::CMV.rangeC: FCDAs::RangeConfig_CF_dchg +2024-09-08 15:10:02,123 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,124 [main] TRACE UmlAttribute - created (4375) WG10 IEC61850 [0..1] FCDA attribute CDCAnalogueInfo::CMV.rangeAngC: FCDAs::RangeConfig_CF_dchg +2024-09-08 15:10:02,124 [main] TRACE UmlConstraint - created class attributes constraint CDCAnalogueInfo::CMV {MF(range) = [rangeC]} (MF(sibling)) +2024-09-08 15:10:02,124 [main] TRACE UmlConstraint - created class attributes constraint CDCAnalogueInfo::CMV {MF(rangeAng) = [rangeAngC]} (MF(sibling)) +2024-09-08 15:10:02,124 [main] TRACE UmlConstraint - created class attributes constraint CDCAnalogueInfo::CMV {MFscaledAngV = [angSVC]} (MFscaledAngV) +2024-09-08 15:10:02,124 [main] TRACE UmlConstraint - created class attributes constraint CDCAnalogueInfo::CMV {MFscaledMagV = [magSVC]} (MFscaledMagV) +2024-09-08 15:10:02,124 [main] TRACE UmlConstraint - created class attributes constraint CDCAnalogueInfo::CMV {MFsubst = [subCVal]} (MFsubst) +2024-09-08 15:10:02,124 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,124 [main] TRACE UmlAttribute - created (4405) WG10 IEC61850 [1..*] sub-data object CDCAnalogueInfo::HWYE.phsAHar: CDCAnalogueInfo::CMV +2024-09-08 15:10:02,124 [main] TRACE UmlConstraint - created attribute index constraint CDCAnalogueInfo::HWYE.phsAHar {maxIdx = numHar} +2024-09-08 15:10:02,124 [main] TRACE UmlConstraint - created attribute index constraint CDCAnalogueInfo::HWYE.phsAHar {minIdx = 0} +2024-09-08 15:10:02,124 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,124 [main] TRACE UmlAttribute - created (4411) WG10 IEC61850 [0..1] EnumFCDA attribute CDCAnalogueInfo::HWYE.angRef: FCDAs::PhaseAngleReference_CF_dchg +2024-09-08 15:10:02,124 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,124 [main] TRACE UmlAttribute - created (4417) WG10 IEC61850 [0..1] FCDA attribute CDCControl::ControllableCDC.opOk: FCDAs::BOOLEAN_OR_dchg +2024-09-08 15:10:02,125 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,125 [main] TRACE UmlAttribute - created (4463) WG10 IEC61850 [1..1] EnumFCDA attribute CDCControl::ENC.stVal: FCDAs::EnumDA_ST_dchg +2024-09-08 15:10:02,125 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,125 [main] TRACE UmlAttribute - created (4467) WG10 IEC61850 [0..1] EnumFCDA attribute CDCControl::ENC.subVal: FCDAs::EnumDA_SV +2024-09-08 15:10:02,125 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,125 [main] TRACE UmlAttribute - created (4472) WG10 IEC61850 [1..1] EnumDA attribute CDCControl::ENC.ctlVal: MetaModel::EnumDA +2024-09-08 15:10:02,125 [main] TRACE UmlConstraint - created class attributes constraint CDCControl::ENC {MFsubst = [subVal]} (MFsubst) +2024-09-08 15:10:02,125 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,125 [main] TRACE UmlAttribute - created (4522) WG10 IEC61850 [0..1] FCDA attribute CDCControl::BAC.mxVal: FCDAs::AnalogueValue_MX_dchg +2024-09-08 15:10:02,125 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (4526) WG10 IEC61850 [0..1] null CDCControl::BAC.subVal: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,126 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,126 [main] TRACE UmlAttribute - created (4526) WG10 IEC61850 [0..1] attribute CDCControl::BAC.subVal: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,126 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,126 [main] TRACE UmlAttribute - created (4538) WG10 IEC61850 [1..1] PackedEnumDA attribute CDCControl::BAC.ctlVal: BasicDAs::BsControl +2024-09-08 15:10:02,126 [main] TRACE UmlConstraint - created class attributes constraint CDCControl::BAC {AllOrNonePerGroup(1) = [mxVal, q, t]} (AllOrNonePerGroup(n)) +2024-09-08 15:10:02,126 [main] TRACE UmlConstraint - created class attributes constraint CDCControl::BAC {MFscaledAV = [sVC]} (MFscaledAV) +2024-09-08 15:10:02,126 [main] TRACE UmlConstraint - created class attributes constraint CDCControl::BAC {MFsubst = [subVal]} (MFsubst) +2024-09-08 15:10:02,126 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (4549) WG10 IEC61850 [0..1] null CDCStatusSet::ENG.setVal: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,126 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,126 [main] TRACE UmlAttribute - created (4549) WG10 IEC61850 [0..1] attribute CDCStatusSet::ENG.setVal: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,126 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (4550) WG10 IEC61850 [0..1] null CDCStatusSet::ENG._setVal: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,127 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,127 [main] TRACE UmlAttribute - created (4550) WG10 IEC61850 [0..1] attribute CDCStatusSet::ENG._setVal: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,127 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (4551) WG10 IEC61850 [0..1] null CDCStatusSet::ENG.__setVal: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,127 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,127 [main] TRACE UmlAttribute - created (4551) WG10 IEC61850 [0..1] attribute CDCStatusSet::ENG.__setVal: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,127 [main] TRACE UmlConstraint - created class attributes constraint CDCStatusSet::ENG {MFnsg = [setVal]} (MFnsg) +2024-09-08 15:10:02,127 [main] TRACE UmlConstraint - created class attributes constraint CDCStatusSet::ENG {MFsg = [_setVal, __setVal]} (MFsg) +2024-09-08 15:10:02,127 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,127 [main] TRACE UmlAttribute - created (4639) WG10 IEC61850 [0..1] FCDA attribute CDCDescription::LPL.ldNs: FCDAs::VISIBLE_STRING255_EX +2024-09-08 15:10:02,127 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,127 [main] TRACE UmlAttribute - created (4640) WG10 IEC61850 [0..1] FCDA attribute CDCDescription::LPL.lnNs: FCDAs::VISIBLE_STRING255_EX +2024-09-08 15:10:02,127 [main] TRACE UmlConstraint - created class attributes constraint CDCDescription::LPL {MFln0 = [ldNs]} (MFln0) +2024-09-08 15:10:02,127 [main] TRACE UmlConstraint - created class attributes constraint CDCDescription::LPL {MOln0 = [configRev]} (MOln0) +2024-09-08 15:10:02,127 [main] TRACE UmlConstraint - created class attributes constraint CDCDescription::LPL {MOlnNs = [lnNs]} (MOlnNs) +2024-09-08 15:10:02,127 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3313) WG10 IEC61850 [1..1] null IEC61850_7_4::IEC61850_7_4Namespace.id: NullIEC61850::NullIEC61850 = IEC61850-7-4 +2024-09-08 15:10:02,127 [main] TRACE ValueRange - 'IEC61850-7-4' has no separator indicating range. +2024-09-08 15:10:02,127 [main] TRACE UmlAttribute - created (3313) WG10 IEC61850 [1..1] attribute IEC61850_7_4::IEC61850_7_4Namespace.id: NullIEC61850::NullIEC61850 = IEC61850-7-4 +2024-09-08 15:10:02,128 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3314) WG10 IEC61850 [1..1] null IEC61850_7_4::IEC61850_7_4Namespace.version: NullIEC61850::NullIEC61850 = 2009 +2024-09-08 15:10:02,128 [main] TRACE ValueRange - '2009' has no separator indicating range. +2024-09-08 15:10:02,128 [main] TRACE UmlAttribute - created (3314) WG10 IEC61850 [1..1] attribute IEC61850_7_4::IEC61850_7_4Namespace.version: NullIEC61850::NullIEC61850 = 2009 +2024-09-08 15:10:02,128 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3315) WG10 IEC61850 [1..1] null IEC61850_7_4::IEC61850_7_4Namespace.revision: NullIEC61850::NullIEC61850 = A +2024-09-08 15:10:02,128 [main] TRACE ValueRange - 'A' has no separator indicating range. +2024-09-08 15:10:02,128 [main] TRACE UmlAttribute - created (3315) WG10 IEC61850 [1..1] attribute IEC61850_7_4::IEC61850_7_4Namespace.revision: NullIEC61850::NullIEC61850 = A +2024-09-08 15:10:02,128 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3316) WG10 IEC61850 [1..1] null IEC61850_7_4::IEC61850_7_4Namespace.date: NullIEC61850::NullIEC61850 = 2011-08-01 +2024-09-08 15:10:02,128 [main] TRACE ValueRange - '2011-08-01' has no separator indicating range. +2024-09-08 15:10:02,128 [main] TRACE UmlAttribute - created (3316) WG10 IEC61850 [1..1] attribute IEC61850_7_4::IEC61850_7_4Namespace.date: NullIEC61850::NullIEC61850 = 2011-08-01 +2024-09-08 15:10:02,128 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (6702) WG10 IEC61850 [1..1] null IEC61850_7_4::IEC61850_7_4Namespace.name: NullIEC61850::NullIEC61850 = IEC61850-7-4:2009A +2024-09-08 15:10:02,128 [main] TRACE ValueRange - 'IEC61850-7-4:2009A' has no separator indicating range. +2024-09-08 15:10:02,128 [main] TRACE UmlAttribute - created (6702) WG10 IEC61850 [1..1] attribute IEC61850_7_4::IEC61850_7_4Namespace.name: NullIEC61850::NullIEC61850 = IEC61850-7-4:2009A +2024-09-08 15:10:02,128 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,128 [main] TRACE UmlAttribute - created (5360) WG10 IEC61850 private [1..1] enumeration attribute DerivedDAs::BehaviourMode.val: DOEnums::BehaviourModeKind +2024-09-08 15:10:02,128 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,128 [main] TRACE UmlAttribute - created (5363) WG10 IEC61850 private [1..1] enumeration attribute DerivedDAs::CalcMethod.val: DOEnums::CalcMethodKind +2024-09-08 15:10:02,129 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,129 [main] TRACE UmlAttribute - created (5372) WG10 IEC61850 private [1..1] enumeration attribute DerivedDAs::Health.val: DOEnums::HealthKind +2024-09-08 15:10:02,129 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,129 [main] TRACE UmlAttribute - created (5404) WG10 IEC61850 [0..1] data object LogicalNodes::DomainLN.NamPlt: CDCDescription::LPL +2024-09-08 15:10:02,129 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,129 [main] TRACE UmlAttribute - created (5406) WG10 IEC61850 [0..1] enumerated DO LogicalNodes::DomainLN.Health: DerivedCDCs::ENSHealth +2024-09-08 15:10:02,129 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,129 [main] TRACE UmlAttribute - created (5408) WG10 IEC61850 [0..1] enumerated DO LogicalNodes::DomainLN.Mod: DerivedCDCs::ENCBehaviourMode +2024-09-08 15:10:02,129 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,129 [main] TRACE UmlAttribute - created (6644) WG10 IEC61850 [0..1] data object LogicalNodes::DomainLN.CntRs: CDCAnalogueInfo::CMV +2024-09-08 15:10:02,129 [main] TRACE UmlConstraint - created class attributes constraint LogicalNodes::DomainLN {MOcond(1) = [CntRs]} (MOcond(condID)) +2024-09-08 15:10:02,129 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (5411) WG10 IEC61850 [0..1] null LogicalNodes::StatisticsLN.ClcExp: DerivedCDCs::SPSTransient +2024-09-08 15:10:02,130 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,130 [main] TRACE UmlAttribute - created (5411) WG10 IEC61850 [0..1] attribute LogicalNodes::StatisticsLN.ClcExp: DerivedCDCs::SPSTransient +2024-09-08 15:10:02,130 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,130 [main] TRACE UmlAttribute - created (5413) WG10 IEC61850 [0..1] enumerated DO LogicalNodes::StatisticsLN.ClcMth: DerivedCDCs::ENGCalcMethod +2024-09-08 15:10:02,130 [main] TRACE UmlConstraint - created class attributes constraint LogicalNodes::StatisticsLN {MF(ClcMth) = [ClcExp, ClcMod, ClcIntvPer, ClcIntvTyp]} (MF(sibling)) +2024-09-08 15:10:02,130 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,130 [main] TRACE UmlAttribute - created (5423) WG10 IEC61850 [0..1] enumerated DO LogicalNodes::EquipmentInterfaceLN.EEHealthAlmClc: DerivedCDCs::ENSHealth +2024-09-08 15:10:02,130 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,130 [main] TRACE UmlAttribute - created (6662) WG10 IEC61850 [0..1] data object LNGroupL::KXYZ.aDummyAlm: CDCAnalogueInfo::CMV +2024-09-08 15:10:02,130 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,130 [main] TRACE UmlAttribute - created (6643) WG10 IEC61850 [0..1] data object LNGroupL::KXYZ.TotW: CDCAnalogueInfo::CMV +2024-09-08 15:10:02,130 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,131 [main] TRACE UmlAttribute - created (6705) WG10 IEC61850 [0..1] enumerated DO LNGroupL::KXYZ.WrongA: CDCStatusInfo::ENS +2024-09-08 15:10:02,131 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,131 [main] TRACE UmlAttribute - created (6706) WG10 IEC61850 [0..1] enumerated DO LNGroupL::KXYZ.CorrectA: DerivedCDCs::ENSEnumDA +2024-09-08 15:10:02,131 [main] TRACE UmlConstraint - created class attributes constraint LNGroupL::KXYZ {MOcond(2) = [TotW]} (MOcond(condID)) +2024-09-08 15:10:02,131 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,131 [main] TRACE UmlAttribute - created (5434) WG10 IEC61850 [1..1] enumerated DO LNGroupL::LPHD.PhyHealth: DerivedCDCs::ENSHealth +2024-09-08 15:10:02,131 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (5445) WG10 IEC61850 [0..1] null LNGroupL::LPHD.RsStatAlmMthClc: DerivedCDCs::SPCTransient +2024-09-08 15:10:02,132 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,132 [main] TRACE UmlAttribute - created (5445) WG10 IEC61850 [0..1] attribute LNGroupL::LPHD.RsStatAlmMthClc: DerivedCDCs::SPCTransient +2024-09-08 15:10:02,132 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (6704) WG10 IEC61850 [0..1] null LNGroupL::LPHD.StatAlmMthClc: DerivedCDCs::SPSTransient +2024-09-08 15:10:02,132 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,132 [main] TRACE UmlAttribute - created (6704) WG10 IEC61850 [0..1] attribute LNGroupL::LPHD.StatAlmMthClc: DerivedCDCs::SPSTransient +2024-09-08 15:10:02,133 [main] TRACE UmlConstraint - created class attributes constraint LNGroupL::LPHD {MF(2) = [RsstatAlmMthClc]} (MF(condID)) +2024-09-08 15:10:02,133 [main] TRACE UmlConstraint - created class attributes constraint LNGroupL::LPHD {MOcond(1) = [PhyHealth]} (MOcond(condID)) +2024-09-08 15:10:02,133 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,133 [main] TRACE UmlAttribute - created (5447) WG10 IEC61850 [0..1] data object LNGroupL::LLN0.NamPlt: CDCDescription::LPL +2024-09-08 15:10:02,133 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,134 [main] TRACE UmlAttribute - created (5448) WG10 IEC61850 [1..1] enumerated DO LNGroupL::LLN0.Beh: DerivedCDCs::ENSBehaviourMode +2024-09-08 15:10:02,134 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,134 [main] TRACE UmlAttribute - created (5449) WG10 IEC61850 [0..1] enumerated DO LNGroupL::LLN0.Health: DerivedCDCs::ENSHealth +2024-09-08 15:10:02,134 [main] TRACE UmlConstraint - created class attributes constraint LNGroupL::LLN0 {MOcond(1) = [NamPlt, Beh]} (MOcond(condID)) +2024-09-08 15:10:02,134 [main] TRACE UmlConstraint - created class attributes constraint LNGroupL::LLN0 {MOrootLD = [Mod, Health, NamPlt]} (MOrootLD) +2024-09-08 15:10:02,134 [main] TRACE UmlConstraint - created class attributes constraint LNGroupL::LLN0 {Omulti = [InRef]} (Omulti) +2024-09-08 15:10:02,134 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,134 [main] TRACE UmlAttribute - created (5599) WG10 IEC61850 [1..1] data object LNGroupC::CALH.GrAlm: CDCStatusInfo::DPS +2024-09-08 15:10:02,134 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,134 [main] TRACE UmlAttribute - created (5600) WG10 IEC61850 [0..1] data object LNGroupC::CALH.GrWrn: CDCStatusInfo::DPS +2024-09-08 15:10:02,134 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,134 [main] TRACE UmlAttribute - created (6657) WG10 IEC61850 [0..1] data object LNGroupC::CALH.ModBeh: DerivedCDCs::EXYBehaviourMode +2024-09-08 15:10:02,134 [main] TRACE UmlConstraint - created class attributes constraint LNGroupC::CALH {AtLeastOne(1) = [GrAlm, GrWrn, GrInd]} (AtLeastOne(n)) +2024-09-08 15:10:02,135 [main] TRACE UmlConstraint - created class attributes constraint LNGroupC::CALH {AtLeastOne(2) = [CntRs]} (AtLeastOne(n)) +2024-09-08 15:10:02,135 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,135 [main] TRACE UmlAttribute - created (5775) WG10 IEC61850 [0..1] enumerated DO LNGroupG::GGIO.EEHealth: DerivedCDCs::ENSHealth +2024-09-08 15:10:02,135 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,135 [main] TRACE UmlAttribute - created (5782) WG10 IEC61850 [0..1] data object LNGroupG::GGIO.AnIn: CDCAnalogueInfo::CMV +2024-09-08 15:10:02,135 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (5788) WG10 IEC61850 [0..1] null LNGroupG::GGIO.DPCSO: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,135 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,135 [main] TRACE UmlAttribute - created (5788) WG10 IEC61850 [0..1] attribute LNGroupG::GGIO.DPCSO: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,135 [main] TRACE UmlConstraint - created class attributes constraint LNGroupG::GGIO {Omulti = [AnIn, AnOut, DPCSO]} (Omulti) +2024-09-08 15:10:02,135 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,135 [main] TRACE UmlAttribute - created (6044) WG10 IEC61850 [0..1] data object LNGroupM::MMXU.A: CDCAnalogueInfo::HWYE +2024-09-08 15:10:02,135 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,135 [main] TRACE UmlAttribute - created (6036) WG10 IEC61850 [0..1] data object LNGroupM::MMXU.TotW: CDCAnalogueInfo::CMV +2024-09-08 15:10:02,135 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,135 [main] TRACE UmlAttribute - created (6645) WG10 IEC61850 [0..1] data object LNGroupM::MMXU.Desc: CDCStatusInfo::HST +2024-09-08 15:10:02,136 [main] TRACE UmlConstraint - created class attributes constraint LNGroupM::MMXU {MO(1) = [TotW]} (MOcond(condID)) +2024-09-08 15:10:02,136 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (6089) WG10 IEC61850 [0..1] null LNGroupP::ProtectionLN.OpCntRs: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,136 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,136 [main] TRACE UmlAttribute - created (6089) WG10 IEC61850 [0..1] attribute LNGroupP::ProtectionLN.OpCntRs: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,136 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,136 [main] TRACE UmlAttribute - created (6139) WG10 IEC61850 [0..1] data object LNGroupP::PDIF.Str: CDCStatusInfo::ACD +2024-09-08 15:10:02,136 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (6140) WG10 IEC61850 [1..1] null LNGroupP::PDIF.Op: DerivedCDCs::ACTTransient +2024-09-08 15:10:02,136 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,136 [main] TRACE UmlAttribute - created (6140) WG10 IEC61850 [1..1] attribute LNGroupP::PDIF.Op: DerivedCDCs::ACTTransient +2024-09-08 15:10:02,136 [main] TRACE UmlConstraint - created class attributes constraint LNGroupP::PDIF {AtMostOne = [LoSet, HiSet]} (AtMostOne) +2024-09-08 15:10:02,136 [main] TRACE UmlConstraint - created class attributes constraint LNGroupP::PDIF {OmultiRange(33, 48) = [Str]} (OmultiRange(min, max)) +2024-09-08 15:10:02,136 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,137 [main] TRACE UmlAttribute - created (6156) WG10 IEC61850 [1..1] data object LNGroupP::PDIS.Str: CDCStatusInfo::ACD +2024-09-08 15:10:02,137 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (6157) WG10 IEC61850 [1..1] null LNGroupP::PDIS.Op: DerivedCDCs::ACTTransient +2024-09-08 15:10:02,137 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,137 [main] TRACE UmlAttribute - created (6157) WG10 IEC61850 [1..1] attribute LNGroupP::PDIS.Op: DerivedCDCs::ACTTransient +2024-09-08 15:10:02,137 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,137 [main] TRACE UmlAttribute - created (6339) WG10 IEC61850 [1..1] data object LNGroupR::RDIR.Dir: CDCStatusInfo::ACD +2024-09-08 15:10:02,137 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (6658) WG10 IEC61850 [0..1] null LNGroupR::RDIR.TotW: DerivedCDCs::SPSTransient +2024-09-08 15:10:02,137 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,137 [main] TRACE UmlAttribute - created (6658) WG10 IEC61850 [0..1] attribute LNGroupR::RDIR.TotW: DerivedCDCs::SPSTransient +2024-09-08 15:10:02,137 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,137 [main] TRACE UmlAttribute - created (6638) WG10 IEC61850 [0..1] data object LNGroupZ::ZAXN.Vol: CDCAnalogueInfo::CMV +2024-09-08 15:10:02,137 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (6639) WG10 IEC61850 [0..1] null LNGroupZ::ZAXN.Amp: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,137 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,137 [main] TRACE UmlAttribute - created (6639) WG10 IEC61850 [0..1] attribute LNGroupZ::ZAXN.Amp: NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,138 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,138 [main] TRACE UmlAttribute - created (6691) WG10 IEC61850 [1..1] enumerated DO LNGroupZ::ZAXN.Mat: DerivedCDCs_7_420::ENSMaterial +2024-09-08 15:10:02,138 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,138 [main] TRACE UmlAttribute - created (6692) WG10 IEC61850 [1..1] enumerated DO LNGroupZ::ZAXN.MatCtl: DerivedCDCs_7_420::ENCMaterial +2024-09-08 15:10:02,138 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,138 [main] TRACE UmlAttribute - created (6693) WG10 IEC61850 [1..1] enumerated DO LNGroupZ::ZAXN.Oth: DerivedCDCs_7_420::ENSOther +2024-09-08 15:10:02,138 [main] TRACE UmlConstraint - created class attributes constraint LNGroupZ::ZAXN {MOcond(condID) = [Vol]} (MOcond(condID)) +2024-09-08 15:10:02,138 [main] TRACE UmlConstraint - created class attributes constraint LNGroupZ::ZAXN {AtLeastOne(n) = [Amp]} (AtLeastOne(n)) +2024-09-08 15:10:02,138 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (6699) WG17 IEC61850 static const [1..1] null WG17::WG17UMLVersion.version: NullIEC61850::NullIEC61850 = IEC61850UML02v07 +2024-09-08 15:10:02,138 [main] TRACE ValueRange - 'IEC61850UML02v07' has no separator indicating range. +2024-09-08 15:10:02,138 [main] TRACE UmlAttribute - created (6699) WG17 IEC61850 static const [1..1] attribute WG17::WG17UMLVersion.version: NullIEC61850::NullIEC61850 = IEC61850UML02v07 +2024-09-08 15:10:02,138 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (6700) WG17 IEC61850 static const [1..1] null WG17::WG17UMLVersion.date: NullIEC61850::NullIEC61850 = 2011-07-02 +2024-09-08 15:10:02,138 [main] TRACE ValueRange - '2011-07-02' has no separator indicating range. +2024-09-08 15:10:02,138 [main] TRACE UmlAttribute - created (6700) WG17 IEC61850 static const [1..1] attribute WG17::WG17UMLVersion.date: NullIEC61850::NullIEC61850 = 2011-07-02 +2024-09-08 15:10:02,138 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (6694) WG17 IEC61850 [1..1] null IEC51850_7_420::IEC61850_7_420Namespace.id: NullIEC61850::NullIEC61850 = IEC61850-7-4 +2024-09-08 15:10:02,138 [main] TRACE ValueRange - 'IEC61850-7-4' has no separator indicating range. +2024-09-08 15:10:02,139 [main] TRACE UmlAttribute - created (6694) WG17 IEC61850 [1..1] attribute IEC51850_7_420::IEC61850_7_420Namespace.id: NullIEC61850::NullIEC61850 = IEC61850-7-4 +2024-09-08 15:10:02,139 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (6695) WG17 IEC61850 [1..1] null IEC51850_7_420::IEC61850_7_420Namespace.version: NullIEC61850::NullIEC61850 = 2009 +2024-09-08 15:10:02,139 [main] TRACE ValueRange - '2009' has no separator indicating range. +2024-09-08 15:10:02,139 [main] TRACE UmlAttribute - created (6695) WG17 IEC61850 [1..1] attribute IEC51850_7_420::IEC61850_7_420Namespace.version: NullIEC61850::NullIEC61850 = 2009 +2024-09-08 15:10:02,139 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (6696) WG17 IEC61850 [1..1] null IEC51850_7_420::IEC61850_7_420Namespace.revision: NullIEC61850::NullIEC61850 = A +2024-09-08 15:10:02,139 [main] TRACE ValueRange - 'A' has no separator indicating range. +2024-09-08 15:10:02,139 [main] TRACE UmlAttribute - created (6696) WG17 IEC61850 [1..1] attribute IEC51850_7_420::IEC61850_7_420Namespace.revision: NullIEC61850::NullIEC61850 = A +2024-09-08 15:10:02,139 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (6697) WG17 IEC61850 [1..1] null IEC51850_7_420::IEC61850_7_420Namespace.date: NullIEC61850::NullIEC61850 = 2011-08-01 +2024-09-08 15:10:02,139 [main] TRACE ValueRange - '2011-08-01' has no separator indicating range. +2024-09-08 15:10:02,139 [main] TRACE UmlAttribute - created (6697) WG17 IEC61850 [1..1] attribute IEC51850_7_420::IEC61850_7_420Namespace.date: NullIEC61850::NullIEC61850 = 2011-08-01 +2024-09-08 15:10:02,139 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (6698) WG17 IEC61850 [1..1] null IEC51850_7_420::IEC61850_7_420Namespace.tissuesApplied: NullIEC61850::NullIEC61850 = 1,2, 3, 127,200 +2024-09-08 15:10:02,139 [main] TRACE ValueRange - '1,2, 3, 127,200' has no separator indicating range. +2024-09-08 15:10:02,139 [main] TRACE UmlAttribute - created (6698) WG17 IEC61850 [1..1] attribute IEC51850_7_420::IEC61850_7_420Namespace.tissuesApplied: NullIEC61850::NullIEC61850 = 1,2, 3, 127,200 +2024-09-08 15:10:02,139 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,139 [main] TRACE UmlAttribute - created (6689) WG17 IEC61850 private [1..1] enumeration attribute DerivedDAs_7_420::Material.val: DOEnums_7_420::MaterialKind +2024-09-08 15:10:02,139 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,140 [main] TRACE UmlAttribute - created (6713) WG17 IEC61850 private [1..1] enumeration attribute DerivedDAs_7_420::Material_control.ctlVal: DOEnums_7_420::MaterialTransitionKind +2024-09-08 15:10:02,140 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,140 [main] TRACE UmlAttribute - created (6690) WG17 IEC61850 [1..1] enumeration attribute DerivedDAs_7_420::Other.val: DOEnums_7_420::OtherKind +2024-09-08 15:10:02,140 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,140 [main] TRACE UmlAttribute - created (3286) OTHER_CIM CIM private [1..1] Primitive attribute <> Ext1::Apple.shouldNotBeEnum: Domain::Integer +2024-09-08 15:10:02,140 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,140 [main] TRACE UmlAttribute - created (3287) OTHER_CIM CIM INF [0..1] Compound attribute <> Ext1::Pear.typeIsInformative: Informative::SomeSimpleType +2024-09-08 15:10:02,140 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:10:02,140 [main] TRACE UmlAttribute - created (3304) OTHER_CIM CIM [0..1] CIMDatatype attribute Package with space::My class._attr: Domain::AbsoluteDateTime +2024-09-08 15:10:02,140 [main] TRACE UmlConstraint - created attribute index constraint Package with space::My class._attr { attr-constraint = lala} +2024-09-08 15:10:02,140 [main] TRACE UmlOperation - created (6) OTHER_CIM CIM Package with space::My class operation public void ope-ration() +2024-09-08 15:10:02,140 [main] TRACE UmlParameter - created null(... Boolean other param...) +2024-09-08 15:10:02,140 [main] TRACE UmlParameter - created null(... ApparentPower _par...) +2024-09-08 15:10:02,140 [main] INFO EaModelBuilder - creating in-memory associations ... +2024-09-08 15:10:02,144 [main] TRACE UmlAssociationEnd - created null [1..1] null.MyClass +2024-09-08 15:10:02,144 [main] TRACE UmlAssociationEnd - created null [0..1] null.Class1 +2024-09-08 15:10:02,149 [main] TRACE UmlAssociation - created (2130) OTHER_CIM CIM association, qname='MyClass.Class1 - Class1.MyClass', endAsSrc: myEnd: OTHER_CIM [1..1] Class1.MyClass; otherEnd: OTHER_CIM [0..1] MyClass.Class1, endAsTgt: myEnd: OTHER_CIM [0..1] MyClass.Class1; otherEnd: OTHER_CIM [1..1] Class1.MyClass +2024-09-08 15:10:02,149 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> +2024-09-08 15:10:02,149 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> +2024-09-08 15:10:02,149 [main] TRACE UmlAssociation - created (2133) OTHER_CIM CIM association, qname='End1ForAssocClass.<> - End2ForAssocClass.<>', endAsSrc: myEnd: OTHER_CIM [?..?] End2ForAssocClass.<>; otherEnd: OTHER_CIM [?..?] End1ForAssocClass.<>, endAsTgt: myEnd: OTHER_CIM [?..?] End1ForAssocClass.<>; otherEnd: OTHER_CIM [?..?] End2ForAssocClass.<> +2024-09-08 15:10:02,149 [main] TRACE UmlAssociationEnd - created null [0..1] null.C1 +2024-09-08 15:10:02,149 [main] TRACE UmlAssociationEnd - created null [0..1] null.C2 +2024-09-08 15:10:02,149 [main] TRACE UmlAssociation - created (2096) WG13 CIM association, qname='InfClassContainingEmbeddedClass.C2 - InfClass2.C1', endAsSrc: myEnd: WG13 [0..1] InfClass2.C1; tags={srcTag=a2}; otherEnd: WG13 [0..1] InfClassContainingEmbeddedClass.C2, endAsTgt: myEnd: WG13 [0..1] InfClassContainingEmbeddedClass.C2; otherEnd: WG13 [0..1] InfClass2.C1; tags={srcTag=a2} +2024-09-08 15:10:02,149 [main] TRACE UmlAssociationEnd - created null [0..*] null.VoltageLevel +2024-09-08 15:10:02,149 [main] TRACE UmlAssociationEnd - created null [1..1] null.BaseVoltage +2024-09-08 15:10:02,149 [main] TRACE UmlAssociation - created (120) WG13 CIM association <>, qname='VoltageLevel.BaseVoltage - BaseVoltage.VoltageLevel', endAsSrc: myEnd: WG13 [0..*] BaseVoltage.VoltageLevel; otherEnd: WG13 [1..1] VoltageLevel.BaseVoltage, endAsTgt: myEnd: WG13 [1..1] VoltageLevel.BaseVoltage; otherEnd: WG13 [0..*] BaseVoltage.VoltageLevel +2024-09-08 15:10:02,149 [main] TRACE UmlAssociationEnd - created null (protected) [0..1] null.ProtectedBaseVoltage +2024-09-08 15:10:02,149 [main] TRACE UmlAssociationEnd - created null [0..*] null.ConductingEquipment +2024-09-08 15:10:02,149 [main] TRACE UmlAssociation - created (121) WG13 CIM association <>, qname='BaseVoltage.ConductingEquipment - ConductingEquipment.ProtectedBaseVoltage', endAsSrc: myEnd: WG13 (protected) [0..1] ConductingEquipment.ProtectedBaseVoltage; otherEnd: WG13 [0..*] BaseVoltage.ConductingEquipment, endAsTgt: myEnd: WG13 [0..*] BaseVoltage.ConductingEquipment; otherEnd: WG13 (protected) [0..1] ConductingEquipment.ProtectedBaseVoltage +2024-09-08 15:10:02,149 [main] TRACE UmlAssociationEnd - created null [0..*] null.TopologicalNode +2024-09-08 15:10:02,149 [main] TRACE UmlAssociationEnd - created null [0..1] null.BaseVoltage +2024-09-08 15:10:02,150 [main] TRACE UmlAssociation - created (2092) WG13 CIM association, qname='TopologicalNode.BaseVoltage - BaseVoltage.TopologicalNode', endAsSrc: myEnd: WG13 [0..*] BaseVoltage.TopologicalNode; otherEnd: WG13 [0..1] TopologicalNode.BaseVoltage, endAsTgt: myEnd: WG13 [0..1] TopologicalNode.BaseVoltage; otherEnd: WG13 [0..*] BaseVoltage.TopologicalNode +2024-09-08 15:10:02,150 [main] TRACE UmlAssociationEnd - created null <> [0..1] null.VoltageLevel +2024-09-08 15:10:02,150 [main] TRACE UmlAssociationEnd - created null <> [0..*] null.Bays +2024-09-08 15:10:02,150 [main] TRACE UmlAssociation - created (115) WG13 CIM aggregation, qname='VoltageLevel.Bays - Bay.VoltageLevel', endAsSrc: myEnd: WG13 <> [0..1] Bay.VoltageLevel; otherEnd: WG13 <> [0..*] VoltageLevel.Bays, endAsTgt: myEnd: WG13 <> [0..*] VoltageLevel.Bays; otherEnd: WG13 <> [0..1] Bay.VoltageLevel +2024-09-08 15:10:02,150 [main] TRACE UmlAssociationEnd - created null [0..*] null.bays (navigable) +2024-09-08 15:10:02,150 [main] TRACE UmlAssociationEnd - created null [0..1] null.Substation (navigable) +2024-09-08 15:10:02,150 [main] TRACE UmlAssociation - created (116) WG13 CIM aggregation <>, qname='Bay.Substation - Substation.bays', endAsSrc: myEnd: WG13 [0..*] Substation.bays (navigable); otherEnd: WG13 [0..1] Bay.Substation (navigable), endAsTgt: myEnd: WG13 [0..1] Bay.Substation (navigable); otherEnd: WG13 [0..*] Substation.bays (navigable) +2024-09-08 15:10:02,150 [main] TRACE UmlAssociationEnd - created null [0..*] null.Terminals +2024-09-08 15:10:02,150 [main] TRACE UmlAssociationEnd - created null [1..1] null.ConductingEquipment +2024-09-08 15:10:02,150 [main] TRACE UmlAssociation - created (123) WG13 CIM association NamedWithTagsEverywhere, qname='Terminal.ConductingEquipment - ConductingEquipment.Terminals', endAsSrc: myEnd: WG13 [0..*] ConductingEquipment.Terminals; tags={Role1=abc}; otherEnd: WG13 [1..1] Terminal.ConductingEquipment; tags={AnotherRole2=abc, targetEndTag=blah, Role2=xyz}, endAsTgt: myEnd: WG13 [1..1] Terminal.ConductingEquipment; tags={AnotherRole2=abc, targetEndTag=blah, Role2=xyz}; otherEnd: WG13 [0..*] ConductingEquipment.Terminals; tags={Role1=abc} +2024-09-08 15:10:02,150 [main] TRACE UmlAssociationEnd - created null [0..*] null.ConnectivityNodes +2024-09-08 15:10:02,150 [main] TRACE UmlAssociationEnd - created null [1..1] null.ConnectivityNodeContainer +2024-09-08 15:10:02,150 [main] TRACE UmlAssociation - created (234) WG13 CIM association, qname='ConnectivityNode.ConnectivityNodeContainer - ConnectivityNodeContainer.ConnectivityNodes', endAsSrc: myEnd: WG13 [0..*] ConnectivityNodeContainer.ConnectivityNodes; otherEnd: WG13 [1..1] ConnectivityNode.ConnectivityNodeContainer, endAsTgt: myEnd: WG13 [1..1] ConnectivityNode.ConnectivityNodeContainer; otherEnd: WG13 [0..*] ConnectivityNodeContainer.ConnectivityNodes +2024-09-08 15:10:02,150 [main] TRACE UmlAssociationEnd - created null [0..*] null.TopologicalNode +2024-09-08 15:10:02,150 [main] TRACE UmlAssociationEnd - created null [0..1] null.ConnectivityNodeContainer +2024-09-08 15:10:02,150 [main] TRACE UmlAssociation - created (1974) WG13 CIM association, qname='TopologicalNode.ConnectivityNodeContainer - ConnectivityNodeContainer.TopologicalNode', endAsSrc: myEnd: WG13 [0..*] ConnectivityNodeContainer.TopologicalNode; otherEnd: WG13 [0..1] TopologicalNode.ConnectivityNodeContainer, endAsTgt: myEnd: WG13 [0..1] TopologicalNode.ConnectivityNodeContainer; otherEnd: WG13 [0..*] ConnectivityNodeContainer.TopologicalNode +2024-09-08 15:10:02,150 [main] TRACE UmlAssociationEnd - created null [0..1] null.EquipmentContainer +2024-09-08 15:10:02,150 [main] TRACE UmlAssociationEnd - created null [0..*] null.Equipments +2024-09-08 15:10:02,150 [main] TRACE UmlAssociation - created (88) WG13 CIM aggregation <>, qname='EquipmentContainer.Equipments - Equipment.EquipmentContainer', endAsSrc: myEnd: WG13 [0..1] Equipment.EquipmentContainer; otherEnd: WG13 [0..*] EquipmentContainer.Equipments, endAsTgt: myEnd: WG13 [0..*] EquipmentContainer.Equipments; otherEnd: WG13 [0..1] Equipment.EquipmentContainer +2024-09-08 15:10:02,150 [main] TRACE UmlAssociationEnd - created null [0..1] null.Region +2024-09-08 15:10:02,150 [main] TRACE UmlAssociationEnd - created null [0..*] null.Regions +2024-09-08 15:10:02,150 [main] TRACE UmlAssociation - created (90) WG13 CIM aggregation, qname='geographicalRegion.Regions - SubGeographicalRegion.Region', endAsSrc: myEnd: WG13 [0..1] SubGeographicalRegion.Region; otherEnd: WG13 [0..*] geographicalRegion.Regions, endAsTgt: myEnd: WG13 [0..*] geographicalRegion.Regions; otherEnd: WG13 [0..1] SubGeographicalRegion.Region +2024-09-08 15:10:02,150 [main] TRACE UmlAssociationEnd - created null [0..*] null.OperatingShare +2024-09-08 15:10:02,150 [main] TRACE UmlAssociationEnd - created null [1..1] null.OperatingParticipant +2024-09-08 15:10:02,150 [main] TRACE UmlAssociation - created (157) WG13 CIM association, qname='OperatingShare.OperatingParticipant - OperatingParticipant.OperatingShare', endAsSrc: myEnd: WG13 [0..*] OperatingParticipant.OperatingShare; otherEnd: WG13 [1..1] OperatingShare.OperatingParticipant, endAsTgt: myEnd: WG13 [1..1] OperatingShare.OperatingParticipant; otherEnd: WG13 [0..*] OperatingParticipant.OperatingShare +2024-09-08 15:10:02,150 [main] TRACE UmlAssociationEnd - created null [0..*] null.OperatingShare +2024-09-08 15:10:02,150 [main] TRACE UmlAssociationEnd - created null [1..1] null.PowerSystemResource +2024-09-08 15:10:02,151 [main] TRACE UmlAssociation - created (163) WG13 CIM association, qname='OperatingShare.PowerSystemResource - PowerSystemResource.OperatingShare', endAsSrc: myEnd: WG13 [0..*] PowerSystemResource.OperatingShare; otherEnd: WG13 [1..1] OperatingShare.PowerSystemResource, endAsTgt: myEnd: WG13 [1..1] OperatingShare.PowerSystemResource; otherEnd: WG13 [0..*] PowerSystemResource.OperatingShare +2024-09-08 15:10:02,151 [main] TRACE UmlAssociationEnd - created null [0..*] null.AssetInfos +2024-09-08 15:10:02,151 [main] TRACE UmlAssociationEnd - created null [0..*] null.PSRs +2024-09-08 15:10:02,151 [main] TRACE UmlAssociation - created (2148) WG14 CIM association, qname='AssetInfo.PSRs - PowerSystemResource.AssetInfos', endAsSrc: myEnd: WG14 [0..*] PowerSystemResource.AssetInfos; otherEnd: WG14 [0..*] AssetInfo.PSRs, endAsTgt: myEnd: WG14 [0..*] AssetInfo.PSRs; otherEnd: WG14 [0..*] PowerSystemResource.AssetInfos +2024-09-08 15:10:02,151 [main] TRACE UmlAssociationEnd - created null [0..1] null.PSR (navigable) +2024-09-08 15:10:02,151 [main] TRACE UmlAssociationEnd - created null [0..1] null.Terminal +2024-09-08 15:10:02,151 [main] TRACE UmlAssociation - created (3463) WG13 CIM association <>, qname='PowerSystemResource.Terminal - Terminal.PSR', endAsSrc: myEnd: WG13 [0..1] Terminal.PSR (navigable); otherEnd: WG13 [0..1] PowerSystemResource.Terminal, endAsTgt: myEnd: WG13 [0..1] PowerSystemResource.Terminal; otherEnd: WG13 [0..1] Terminal.PSR (navigable) +2024-09-08 15:10:02,151 [main] TRACE UmlAssociationEnd - created null [0..1] null.Region +2024-09-08 15:10:02,151 [main] TRACE UmlAssociationEnd - created null [0..*] null.Substations +2024-09-08 15:10:02,151 [main] TRACE UmlAssociation - created (91) WG13 CIM aggregation, qname='SubGeographicalRegion.Substations - Substation.Region', endAsSrc: myEnd: WG13 [0..1] Substation.Region; otherEnd: WG13 [0..*] SubGeographicalRegion.Substations, endAsTgt: myEnd: WG13 [0..*] SubGeographicalRegion.Substations; otherEnd: WG13 [0..1] Substation.Region +2024-09-08 15:10:02,151 [main] TRACE UmlAssociationEnd - created null [1..1] null.Substation +2024-09-08 15:10:02,151 [main] TRACE UmlAssociationEnd - created null [0..*] null.VoltageLevels +2024-09-08 15:10:02,151 [main] TRACE UmlAssociation - created (94) WG13 CIM aggregation, qname='Substation.VoltageLevels - VoltageLevel.Substation', endAsSrc: myEnd: WG13 [1..1] VoltageLevel.Substation; otherEnd: WG13 [0..*] Substation.VoltageLevels, endAsTgt: myEnd: WG13 [0..*] Substation.VoltageLevels; otherEnd: WG13 [1..1] VoltageLevel.Substation +2024-09-08 15:10:02,151 [main] TRACE UmlAssociationEnd - created null [0..*] null.Terminals +2024-09-08 15:10:02,151 [main] TRACE UmlAssociationEnd - created null [0..1] null.ConnectivityNode +2024-09-08 15:10:02,151 [main] TRACE UmlAssociation - created (229) WG13 CIM association, qname='Terminal.ConnectivityNode - ConnectivityNode.Terminals', endAsSrc: myEnd: WG13 [0..*] ConnectivityNode.Terminals; otherEnd: WG13 [0..1] Terminal.ConnectivityNode, endAsTgt: myEnd: WG13 [0..1] Terminal.ConnectivityNode; otherEnd: WG13 [0..*] ConnectivityNode.Terminals +2024-09-08 15:10:02,151 [main] TRACE UmlAssociationEnd - created null [0..*] null.Terminal +2024-09-08 15:10:02,151 [main] TRACE UmlAssociationEnd - created null [0..1] null.TopologicalNode +2024-09-08 15:10:02,151 [main] TRACE UmlAssociation - created (1961) WG13 CIM aggregation, qname='Terminal.TopologicalNode - TopologicalNode.Terminal', endAsSrc: myEnd: WG13 [0..*] TopologicalNode.Terminal; otherEnd: WG13 [0..1] Terminal.TopologicalNode, endAsTgt: myEnd: WG13 [0..1] Terminal.TopologicalNode; otherEnd: WG13 [0..*] TopologicalNode.Terminal +2024-09-08 15:10:02,151 [main] TRACE UmlAssociationEnd - created null <> [0..1] null.BusNameMarker +2024-09-08 15:10:02,151 [main] TRACE UmlAssociationEnd - created null (private) <> [0..*] null.PrivateConnectivityNode +2024-09-08 15:10:02,151 [main] TRACE UmlAssociation - created (228) WG13 CIM association <>, qname='BusNameMarker.PrivateConnectivityNode - ConnectivityNode.BusNameMarker', endAsSrc: myEnd: WG13 <> [0..1] ConnectivityNode.BusNameMarker; tags={srcTag=valueSrcTag}; otherEnd: WG13 (private) <> [0..*] BusNameMarker.PrivateConnectivityNode; tags={endTag=valueEndTag}, endAsTgt: myEnd: WG13 (private) <> [0..*] BusNameMarker.PrivateConnectivityNode; tags={endTag=valueEndTag}; otherEnd: WG13 <> [0..1] ConnectivityNode.BusNameMarker; tags={srcTag=valueSrcTag} +2024-09-08 15:10:02,151 [main] TRACE UmlAssociationEnd - created null [0..*] null.ConnectivityNodes +2024-09-08 15:10:02,151 [main] TRACE UmlAssociationEnd - created null [0..1] null.TopologicalNode +2024-09-08 15:10:02,151 [main] TRACE UmlAssociation - created (235) WG13 CIM aggregation, qname='ConnectivityNode.TopologicalNode - TopologicalNode.ConnectivityNodes', endAsSrc: myEnd: WG13 [0..*] TopologicalNode.ConnectivityNodes; otherEnd: WG13 [0..1] ConnectivityNode.TopologicalNode, endAsTgt: myEnd: WG13 [0..1] ConnectivityNode.TopologicalNode; otherEnd: WG13 [0..*] TopologicalNode.ConnectivityNodes +2024-09-08 15:10:02,151 [main] TRACE UmlAssociationEnd - created null [?..?] null.TopologicalNodes +2024-09-08 15:10:02,151 [main] TRACE UmlAssociationEnd - created null [1..1] null.TopologicalIsland +2024-09-08 15:10:02,151 [main] TRACE UmlAssociation - created (237) WG13 CIM aggregation, qname='TopologicalNode.TopologicalIsland - TopologicalIsland.TopologicalNodes', endAsSrc: myEnd: WG13 [?..?] TopologicalIsland.TopologicalNodes; otherEnd: WG13 [1..1] TopologicalNode.TopologicalIsland, endAsTgt: myEnd: WG13 [1..1] TopologicalNode.TopologicalIsland; otherEnd: WG13 [?..?] TopologicalIsland.TopologicalNodes +2024-09-08 15:10:02,151 [main] TRACE UmlAssociationEnd - created null [0..1] null.AngleRef_TopologicalIsland +2024-09-08 15:10:02,151 [main] TRACE UmlAssociationEnd - created null [0..1] null.AngleRef_TopologicalNode +2024-09-08 15:10:02,151 [main] TRACE UmlAssociation - created (1947) WG13 CIM association, qname='TopologicalIsland.AngleRef_TopologicalNode - TopologicalNode.AngleRef_TopologicalIsland', endAsSrc: myEnd: WG13 [0..1] TopologicalNode.AngleRef_TopologicalIsland; otherEnd: WG13 [0..1] TopologicalIsland.AngleRef_TopologicalNode, endAsTgt: myEnd: WG13 [0..1] TopologicalIsland.AngleRef_TopologicalNode; otherEnd: WG13 [0..1] TopologicalNode.AngleRef_TopologicalIsland +2024-09-08 15:10:02,151 [main] TRACE UmlAssociationEnd - created null [0..1] null.T1 +2024-09-08 15:10:02,152 [main] TRACE UmlAssociationEnd - created null [0..1] null.T2 +2024-09-08 15:10:02,152 [main] TRACE UmlAssociation - created (2110) WG14 CIM association, qname='BadDatatypes.T2 - MyClass.T1', endAsSrc: myEnd: WG14 [0..1] MyClass.T1; otherEnd: WG14 [0..1] BadDatatypes.T2, endAsTgt: myEnd: WG14 [0..1] BadDatatypes.T2; otherEnd: WG14 [0..1] MyClass.T1 +2024-09-08 15:10:02,152 [main] TRACE UmlAssociationEnd - created null [0..1] null.From +2024-09-08 15:10:02,152 [main] TRACE UmlAssociationEnd - created null [0..1] null.To +2024-09-08 15:10:02,152 [main] TRACE UmlAssociation - created (2124) WG14 CIM association, qname='MyClass.To - MyClass.From', endAsSrc: myEnd: WG14 [0..1] MyClass.From; otherEnd: WG14 [0..1] MyClass.To, endAsTgt: myEnd: WG14 [0..1] MyClass.To; otherEnd: WG14 [0..1] MyClass.From +2024-09-08 15:10:02,152 [main] TRACE UmlAssociationEnd - created null [0..1] null.Something (non-navigable) +2024-09-08 15:10:02,152 [main] TRACE UmlAssociationEnd - created null [0..1] null.T1 +2024-09-08 15:10:02,152 [main] TRACE UmlAssociation - created (2122) WG14 CIM association, qname='AttrDuplication.T1 - BadDatatypes.Something', endAsSrc: myEnd: WG14 [0..1] BadDatatypes.Something (non-navigable); otherEnd: WG14 [0..1] AttrDuplication.T1, endAsTgt: myEnd: WG14 [0..1] AttrDuplication.T1; otherEnd: WG14 [0..1] BadDatatypes.Something (non-navigable) +2024-09-08 15:10:02,152 [main] TRACE UmlAssociationEnd - created null [0..1] null.From +2024-09-08 15:10:02,152 [main] TRACE UmlAssociationEnd - created null [0..1] null.To +2024-09-08 15:10:02,152 [main] TRACE UmlAssociation - created (2123) WG14 CIM association, qname='AttrDuplication.To - AttrDuplication.From', endAsSrc: myEnd: WG14 [0..1] AttrDuplication.From; otherEnd: WG14 [0..1] AttrDuplication.To, endAsTgt: myEnd: WG14 [0..1] AttrDuplication.To; otherEnd: WG14 [0..1] AttrDuplication.From +2024-09-08 15:10:02,152 [main] TRACE UmlAssociationEnd - created null [0..1] null.From +2024-09-08 15:10:02,152 [main] TRACE UmlAssociationEnd - created null [0..1] null.To +2024-09-08 15:10:02,152 [main] TRACE UmlAssociation - created (2125) WG14 CIM association, qname='AttrDuplication.To - AttrDuplication.From', endAsSrc: myEnd: WG14 [0..1] AttrDuplication.From; otherEnd: WG14 [0..1] AttrDuplication.To, endAsTgt: myEnd: WG14 [0..1] AttrDuplication.To; otherEnd: WG14 [0..1] AttrDuplication.From +2024-09-08 15:10:02,152 [main] TRACE UmlAssociationEnd - created null [0..1] null.IED +2024-09-08 15:10:02,152 [main] TRACE UmlAssociationEnd - created null [1..*] null.AP +2024-09-08 15:10:02,152 [main] TRACE UmlAssociation - created (3400) WG10 IEC61850 association, qname='GenIED.AP - AccessPoint.IED', endAsSrc: myEnd: WG10 [0..1] AccessPoint.IED; otherEnd: WG10 [1..*] GenIED.AP, endAsTgt: myEnd: WG10 [1..*] GenIED.AP; otherEnd: WG10 [0..1] AccessPoint.IED +2024-09-08 15:10:02,152 [main] TRACE UmlAssociationEnd - created null [1..1] null.Server +2024-09-08 15:10:02,152 [main] TRACE UmlAssociationEnd - created null [0..1] null.FileSystem +2024-09-08 15:10:02,152 [main] TRACE UmlAssociation - created (3398) WG10 IEC61850 association, qname='GenServer.FileSystem - FileSystem.Server', endAsSrc: myEnd: WG10 [1..1] FileSystem.Server; otherEnd: WG10 [0..1] GenServer.FileSystem, endAsTgt: myEnd: WG10 [0..1] GenServer.FileSystem; otherEnd: WG10 [1..1] FileSystem.Server +2024-09-08 15:10:02,152 [main] TRACE UmlAssociationEnd - created null [1..1] null.FileSystem +2024-09-08 15:10:02,152 [main] TRACE UmlAssociationEnd - created null [0..*] null.Files +2024-09-08 15:10:02,152 [main] TRACE UmlAssociation - created (3399) WG10 IEC61850 association, qname='FileSystem.Files - GenFile.FileSystem', endAsSrc: myEnd: WG10 [1..1] GenFile.FileSystem; otherEnd: WG10 [0..*] FileSystem.Files, endAsTgt: myEnd: WG10 [0..*] FileSystem.Files; otherEnd: WG10 [1..1] GenFile.FileSystem +2024-09-08 15:10:02,152 [main] TRACE UmlAssociationEnd - created null [1..1] null.CommonDataClass +2024-09-08 15:10:02,152 [main] TRACE UmlAssociationEnd - created null [1..*] null.DataAttribute +2024-09-08 15:10:02,152 [main] TRACE UmlAssociation - created (3396) WG10 IEC61850 association, qname='GenCommonDataClass.DataAttribute - GenDataAttribute.CommonDataClass', endAsSrc: myEnd: WG10 [1..1] GenDataAttribute.CommonDataClass; otherEnd: WG10 [1..*] GenCommonDataClass.DataAttribute, endAsTgt: myEnd: WG10 [1..*] GenCommonDataClass.DataAttribute; otherEnd: WG10 [1..1] GenDataAttribute.CommonDataClass +2024-09-08 15:10:02,152 [main] TRACE UmlAssociationEnd - created null [1..1] null.CommonDataClass +2024-09-08 15:10:02,152 [main] TRACE UmlAssociationEnd - created null [0..*] null.SubDataObject +2024-09-08 15:10:02,153 [main] TRACE UmlAssociation - created (3397) WG10 IEC61850 association, qname='GenCommonDataClass.SubDataObject - GenSubDataObject.CommonDataClass', endAsSrc: myEnd: WG10 [1..1] GenSubDataObject.CommonDataClass; otherEnd: WG10 [0..*] GenCommonDataClass.SubDataObject, endAsTgt: myEnd: WG10 [0..*] GenCommonDataClass.SubDataObject; otherEnd: WG10 [1..1] GenSubDataObject.CommonDataClass +2024-09-08 15:10:02,153 [main] TRACE UmlAssociationEnd - created null [1..1] null.DataAttribute +2024-09-08 15:10:02,153 [main] TRACE UmlAssociationEnd - created null [1..*] null.SubDataAttribute +2024-09-08 15:10:02,153 [main] TRACE UmlAssociation - created (3395) WG10 IEC61850 association, qname='GenConstructedType.SubDataAttribute - GenSubDataAttribute.DataAttribute', endAsSrc: myEnd: WG10 [1..1] GenSubDataAttribute.DataAttribute; otherEnd: WG10 [1..*] GenConstructedType.SubDataAttribute, endAsTgt: myEnd: WG10 [1..*] GenConstructedType.SubDataAttribute; otherEnd: WG10 [1..1] GenSubDataAttribute.DataAttribute +2024-09-08 15:10:02,153 [main] TRACE UmlAssociationEnd - created null [0..*] null.FCDA +2024-09-08 15:10:02,153 [main] TRACE UmlAssociationEnd - created null [1..1] null.DataAttribute +2024-09-08 15:10:02,153 [main] TRACE UmlAssociation - created (3391) WG10 IEC61850 association, qname='GenFCDA.DataAttribute - GenDataAttribute.FCDA', endAsSrc: myEnd: WG10 [0..*] GenDataAttribute.FCDA; otherEnd: WG10 [1..1] GenFCDA.DataAttribute, endAsTgt: myEnd: WG10 [1..1] GenFCDA.DataAttribute; otherEnd: WG10 [0..*] GenDataAttribute.FCDA +2024-09-08 15:10:02,153 [main] TRACE UmlAssociationEnd - created null [1..1] null.LogicalNode +2024-09-08 15:10:02,153 [main] TRACE UmlAssociationEnd - created null [1..*] null.DataObject +2024-09-08 15:10:02,153 [main] TRACE UmlAssociation - created (3388) WG10 IEC61850 association, qname='GenLogicalNode.DataObject - GenDataObject.LogicalNode', endAsSrc: myEnd: WG10 [1..1] GenDataObject.LogicalNode; otherEnd: WG10 [1..*] GenLogicalNode.DataObject, endAsTgt: myEnd: WG10 [1..*] GenLogicalNode.DataObject; otherEnd: WG10 [1..1] GenDataObject.LogicalNode +2024-09-08 15:10:02,153 [main] TRACE UmlAssociationEnd - created null [0..*] null.FCD +2024-09-08 15:10:02,153 [main] TRACE UmlAssociationEnd - created null [1..1] null.DataObject +2024-09-08 15:10:02,153 [main] TRACE UmlAssociation - created (3389) WG10 IEC61850 association, qname='GenFCD.DataObject - GenDataObject.FCD', endAsSrc: myEnd: WG10 [0..*] GenDataObject.FCD; otherEnd: WG10 [1..1] GenFCD.DataObject, endAsTgt: myEnd: WG10 [1..1] GenFCD.DataObject; otherEnd: WG10 [0..*] GenDataObject.FCD +2024-09-08 15:10:02,153 [main] TRACE UmlAssociationEnd - created null [0..*] null.DataSet +2024-09-08 15:10:02,153 [main] TRACE UmlAssociationEnd - created null [0..*] null.FCDMember +2024-09-08 15:10:02,153 [main] TRACE UmlAssociation - created (3386) WG10 IEC61850 association, qname='GenDataSet.FCDMember - GenFCD.DataSet', endAsSrc: myEnd: WG10 [0..*] GenFCD.DataSet; otherEnd: WG10 [0..*] GenDataSet.FCDMember, endAsTgt: myEnd: WG10 [0..*] GenDataSet.FCDMember; otherEnd: WG10 [0..*] GenFCD.DataSet +2024-09-08 15:10:02,153 [main] TRACE UmlAssociationEnd - created null [0..*] null.DataSet +2024-09-08 15:10:02,153 [main] TRACE UmlAssociationEnd - created null [0..*] null.FCDAMember +2024-09-08 15:10:02,153 [main] TRACE UmlAssociation - created (3387) WG10 IEC61850 association, qname='GenDataSet.FCDAMember - GenFCDA.DataSet', endAsSrc: myEnd: WG10 [0..*] GenFCDA.DataSet; otherEnd: WG10 [0..*] GenDataSet.FCDAMember, endAsTgt: myEnd: WG10 [0..*] GenDataSet.FCDAMember; otherEnd: WG10 [0..*] GenFCDA.DataSet +2024-09-08 15:10:02,153 [main] TRACE UmlAssociationEnd - created null [0..*] null.FCD +2024-09-08 15:10:02,153 [main] TRACE UmlAssociationEnd - created null [1..1] null.SubDataObject +2024-09-08 15:10:02,153 [main] TRACE UmlAssociation - created (3385) WG10 IEC61850 association, qname='GenFCD.SubDataObject - GenSubDataObject.FCD', endAsSrc: myEnd: WG10 [0..*] GenSubDataObject.FCD; otherEnd: WG10 [1..1] GenFCD.SubDataObject, endAsTgt: myEnd: WG10 [1..1] GenFCD.SubDataObject; otherEnd: WG10 [0..*] GenSubDataObject.FCD +2024-09-08 15:10:02,153 [main] TRACE UmlAssociationEnd - created null [0..*] null.FCDA +2024-09-08 15:10:02,153 [main] TRACE UmlAssociationEnd - created null [1..1] null.SubDataAttribute +2024-09-08 15:10:02,153 [main] TRACE UmlAssociation - created (3384) WG10 IEC61850 association, qname='GenFCDA.SubDataAttribute - GenSubDataAttribute.FCDA', endAsSrc: myEnd: WG10 [0..*] GenSubDataAttribute.FCDA; otherEnd: WG10 [1..1] GenFCDA.SubDataAttribute, endAsTgt: myEnd: WG10 [1..1] GenFCDA.SubDataAttribute; otherEnd: WG10 [0..*] GenSubDataAttribute.FCDA +2024-09-08 15:10:02,153 [main] TRACE UmlAssociationEnd - created null [1..1] null.LogicalDevice +2024-09-08 15:10:02,153 [main] TRACE UmlAssociationEnd - created null [1..1] null.LN0 +2024-09-08 15:10:02,153 [main] TRACE UmlAssociation - created (3382) WG10 IEC61850 association, qname='GenLogicalDevice.LN0 - GenLN0.LogicalDevice', endAsSrc: myEnd: WG10 [1..1] GenLN0.LogicalDevice; otherEnd: WG10 [1..1] GenLogicalDevice.LN0, endAsTgt: myEnd: WG10 [1..1] GenLogicalDevice.LN0; otherEnd: WG10 [1..1] GenLN0.LogicalDevice +2024-09-08 15:10:02,153 [main] TRACE UmlAssociationEnd - created null [0..1] null.Server +2024-09-08 15:10:02,153 [main] TRACE UmlAssociationEnd - created null [1..*] null.LogicalDevice +2024-09-08 15:10:02,153 [main] TRACE UmlAssociation - created (3379) WG10 IEC61850 association, qname='GenServer.LogicalDevice - GenLogicalDevice.Server', endAsSrc: myEnd: WG10 [0..1] GenLogicalDevice.Server; otherEnd: WG10 [1..*] GenServer.LogicalDevice, endAsTgt: myEnd: WG10 [1..*] GenServer.LogicalDevice; otherEnd: WG10 [0..1] GenLogicalDevice.Server +2024-09-08 15:10:02,154 [main] TRACE UmlAssociationEnd - created null [1..1] null.LogicalDevice +2024-09-08 15:10:02,154 [main] TRACE UmlAssociationEnd - created null [0..*] null.LogicalNode +2024-09-08 15:10:02,154 [main] TRACE UmlAssociation - created (3380) WG10 IEC61850 association, qname='GenLogicalDevice.LogicalNode - GenLogicalNode.LogicalDevice', endAsSrc: myEnd: WG10 [1..1] GenLogicalNode.LogicalDevice; otherEnd: WG10 [0..*] GenLogicalDevice.LogicalNode, endAsTgt: myEnd: WG10 [0..*] GenLogicalDevice.LogicalNode; otherEnd: WG10 [1..1] GenLogicalNode.LogicalDevice +2024-09-08 15:10:02,154 [main] TRACE UmlAssociationEnd - created null [0..1] null.ParentLogicalDevice +2024-09-08 15:10:02,154 [main] TRACE UmlAssociationEnd - created null [0..*] null.ChildLogicalDevice +2024-09-08 15:10:02,154 [main] TRACE UmlAssociation - created (3381) WG10 IEC61850 association, qname='GenLogicalDevice.ChildLogicalDevice - GenLogicalDevice.ParentLogicalDevice', endAsSrc: myEnd: WG10 [0..1] GenLogicalDevice.ParentLogicalDevice; otherEnd: WG10 [0..*] GenLogicalDevice.ChildLogicalDevice, endAsTgt: myEnd: WG10 [0..*] GenLogicalDevice.ChildLogicalDevice; otherEnd: WG10 [0..1] GenLogicalDevice.ParentLogicalDevice +2024-09-08 15:10:02,154 [main] TRACE UmlAssociationEnd - created null [1..1] null.Server +2024-09-08 15:10:02,154 [main] TRACE UmlAssociationEnd - created null [0..*] null.MCAppAssociation +2024-09-08 15:10:02,154 [main] TRACE UmlAssociation - created (3378) WG10 IEC61850 association, qname='GenServer.MCAppAssociation - GenMCAA.Server', endAsSrc: myEnd: WG10 [1..1] GenMCAA.Server; otherEnd: WG10 [0..*] GenServer.MCAppAssociation, endAsTgt: myEnd: WG10 [0..*] GenServer.MCAppAssociation; otherEnd: WG10 [1..1] GenMCAA.Server +2024-09-08 15:10:02,154 [main] TRACE UmlAssociationEnd - created null [1..*] null.SAP +2024-09-08 15:10:02,154 [main] TRACE UmlAssociationEnd - created null [0..*] null.Server +2024-09-08 15:10:02,154 [main] TRACE UmlAssociation - created (3376) WG10 IEC61850 association, qname='ServiceAccessPoint.Server - GenServer.SAP', endAsSrc: myEnd: WG10 [1..*] GenServer.SAP; otherEnd: WG10 [0..*] ServiceAccessPoint.Server, endAsTgt: myEnd: WG10 [0..*] ServiceAccessPoint.Server; otherEnd: WG10 [1..*] GenServer.SAP +2024-09-08 15:10:02,154 [main] TRACE UmlAssociationEnd - created null [1..1] null.Server +2024-09-08 15:10:02,154 [main] TRACE UmlAssociationEnd - created null [0..*] null.TPAppAssociation +2024-09-08 15:10:02,154 [main] TRACE UmlAssociation - created (3377) WG10 IEC61850 association, qname='GenServer.TPAppAssociation - GenTPAA.Server', endAsSrc: myEnd: WG10 [1..1] GenTPAA.Server; otherEnd: WG10 [0..*] GenServer.TPAppAssociation, endAsTgt: myEnd: WG10 [0..*] GenServer.TPAppAssociation; otherEnd: WG10 [1..1] GenTPAA.Server +2024-09-08 15:10:02,154 [main] TRACE UmlAssociationEnd - created null (private) [0..*] null.<> +2024-09-08 15:10:02,154 [main] TRACE UmlAssociationEnd - created null (private) [1..1] null.<> +2024-09-08 15:10:02,154 [main] TRACE UmlAssociation - created (3289) WG10 IEC61850 association, qname='MCAA.<> - Authentication.<>', endAsSrc: myEnd: WG10 (private) [0..*] Authentication.<>; otherEnd: WG10 (private) [1..1] MCAA.<>, endAsTgt: myEnd: WG10 (private) [1..1] MCAA.<>; otherEnd: WG10 (private) [0..*] Authentication.<> +2024-09-08 15:10:02,154 [main] TRACE UmlAssociationEnd - created null (private) [0..*] null.<> +2024-09-08 15:10:02,154 [main] TRACE UmlAssociationEnd - created null (private) [1..1] null.<> +2024-09-08 15:10:02,154 [main] TRACE UmlAssociation - created (3290) WG10 IEC61850 association, qname='TPAA.<> - Authentication.<>', endAsSrc: myEnd: WG10 (private) [0..*] Authentication.<>; otherEnd: WG10 (private) [1..1] TPAA.<>, endAsTgt: myEnd: WG10 (private) [1..1] TPAA.<>; otherEnd: WG10 (private) [0..*] Authentication.<> +2024-09-08 15:10:02,154 [main] TRACE UmlAssociationEnd - created null (private) [?..?] null.<> (non-navigable) +2024-09-08 15:10:02,154 [main] TRACE UmlAssociationEnd - created null (private) [1..*] null.<> (navigable) +2024-09-08 15:10:02,154 [main] TRACE UmlAssociation - created (3291) WG10 IEC61850 association, qname='Authentication.<> - AccessView.<>', endAsSrc: myEnd: WG10 (private) [?..?] AccessView.<> (non-navigable); otherEnd: WG10 (private) [1..*] Authentication.<> (navigable), endAsTgt: myEnd: WG10 (private) [1..*] Authentication.<> (navigable); otherEnd: WG10 (private) [?..?] AccessView.<> (non-navigable) +2024-09-08 15:10:02,154 [main] TRACE UmlAssociationEnd - created null (private) [?..?] null.privateAuth +2024-09-08 15:10:02,154 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> +2024-09-08 15:10:02,154 [main] TRACE UmlAssociation - created (3422) WG10 IEC61850 association, qname='Authentication.<> - ReportID.privateAuth', endAsSrc: myEnd: WG10 (private) [?..?] ReportID.privateAuth; otherEnd: WG10 [?..?] Authentication.<>, endAsTgt: myEnd: WG10 [?..?] Authentication.<>; otherEnd: WG10 (private) [?..?] ReportID.privateAuth +2024-09-08 15:10:02,154 [main] TRACE UmlAssociationEnd - created null [?..?] null.publicAuth +2024-09-08 15:10:02,155 [main] TRACE UmlAssociationEnd - created null [?..?] null.publicEntryID +2024-09-08 15:10:02,155 [main] TRACE UmlAssociation - created (3423) WG10 IEC61850 association, qname='Authentication.publicEntryID - EntryID.publicAuth', endAsSrc: myEnd: WG10 [?..?] EntryID.publicAuth; otherEnd: WG10 [?..?] Authentication.publicEntryID, endAsTgt: myEnd: WG10 [?..?] Authentication.publicEntryID; otherEnd: WG10 [?..?] EntryID.publicAuth +2024-09-08 15:10:02,155 [main] TRACE UmlAssociationEnd - created null [0..1] null.IED +2024-09-08 15:10:02,155 [main] TRACE UmlAssociationEnd - created null [1..*] null.SERVERs +2024-09-08 15:10:02,155 [main] TRACE UmlAssociation - created (3249) WG10 IEC61850 composition, qname='IED.SERVERs - SERVER.IED', endAsSrc: myEnd: WG10 [0..1] SERVER.IED; otherEnd: WG10 [1..*] IED.SERVERs, endAsTgt: myEnd: WG10 [1..*] IED.SERVERs; otherEnd: WG10 [0..1] SERVER.IED +2024-09-08 15:10:02,155 [main] TRACE UmlAssociationEnd - created null (private) [0..1] null.<> +2024-09-08 15:10:02,155 [main] TRACE UmlAssociationEnd - created null [0..*] null.MCAAs +2024-09-08 15:10:02,155 [main] TRACE UmlAssociation - created (3244) WG10 IEC61850 composition, qname='SERVER.MCAAs - MCAA.<>', endAsSrc: myEnd: WG10 (private) [0..1] MCAA.<>; otherEnd: WG10 [0..*] SERVER.MCAAs, endAsTgt: myEnd: WG10 [0..*] SERVER.MCAAs; otherEnd: WG10 (private) [0..1] MCAA.<> +2024-09-08 15:10:02,155 [main] TRACE UmlAssociationEnd - created null (private) [0..1] null.<> +2024-09-08 15:10:02,155 [main] TRACE UmlAssociationEnd - created null [0..*] null.FILEs +2024-09-08 15:10:02,155 [main] TRACE UmlAssociation - created (3245) WG10 IEC61850 composition, qname='SERVER.FILEs - FILE.<>', endAsSrc: myEnd: WG10 (private) [0..1] FILE.<>; otherEnd: WG10 [0..*] SERVER.FILEs, endAsTgt: myEnd: WG10 [0..*] SERVER.FILEs; otherEnd: WG10 (private) [0..1] FILE.<> +2024-09-08 15:10:02,155 [main] TRACE UmlAssociationEnd - created null (private) [0..1] null.<> +2024-09-08 15:10:02,155 [main] TRACE UmlAssociationEnd - created null [0..*] null.TPAAs +2024-09-08 15:10:02,155 [main] TRACE UmlAssociation - created (3246) WG10 IEC61850 composition, qname='SERVER.TPAAs - TPAA.<>', endAsSrc: myEnd: WG10 (private) [0..1] TPAA.<>; otherEnd: WG10 [0..*] SERVER.TPAAs, endAsTgt: myEnd: WG10 [0..*] SERVER.TPAAs; otherEnd: WG10 (private) [0..1] TPAA.<> +2024-09-08 15:10:02,155 [main] TRACE UmlAssociationEnd - created null [0..1] null.SERVER +2024-09-08 15:10:02,155 [main] TRACE UmlAssociationEnd - created null [1..*] null.LDs +2024-09-08 15:10:02,155 [main] TRACE UmlAssociation - created (3247) WG10 IEC61850 composition, qname='SERVER.LDs - LD.SERVER', endAsSrc: myEnd: WG10 [0..1] LD.SERVER; otherEnd: WG10 [1..*] SERVER.LDs, endAsTgt: myEnd: WG10 [1..*] SERVER.LDs; otherEnd: WG10 [0..1] LD.SERVER +2024-09-08 15:10:02,155 [main] TRACE UmlAssociationEnd - created null [0..1] null.TPAA +2024-09-08 15:10:02,155 [main] TRACE UmlAssociationEnd - created null [0..*] null.NonPersistentDSs +2024-09-08 15:10:02,155 [main] TRACE UmlAssociation - created (3242) WG10 IEC61850 composition, qname='TPAA.NonPersistentDSs - NonPersistentDS.TPAA', endAsSrc: myEnd: WG10 [0..1] NonPersistentDS.TPAA; otherEnd: WG10 [0..*] TPAA.NonPersistentDSs, endAsTgt: myEnd: WG10 [0..*] TPAA.NonPersistentDSs; otherEnd: WG10 [0..1] NonPersistentDS.TPAA +2024-09-08 15:10:02,155 [main] TRACE UmlAssociationEnd - created null [0..1] null.LD +2024-09-08 15:10:02,155 [main] TRACE UmlAssociationEnd - created null [0..*] null.LNDOMs +2024-09-08 15:10:02,155 [main] TRACE UmlAssociation - created (3237) WG10 IEC61850 composition, qname='LD.LNDOMs - LNDOM.LD', endAsSrc: myEnd: WG10 [0..1] LNDOM.LD; otherEnd: WG10 [0..*] LD.LNDOMs, endAsTgt: myEnd: WG10 [0..*] LD.LNDOMs; otherEnd: WG10 [0..1] LNDOM.LD +2024-09-08 15:10:02,155 [main] TRACE UmlAssociationEnd - created null [0..1] null.LD +2024-09-08 15:10:02,155 [main] TRACE UmlAssociationEnd - created null [1..1] null.LN0 +2024-09-08 15:10:02,155 [main] TRACE UmlAssociation - created (3238) WG10 IEC61850 composition, qname='LD.LN0 - LN0.LD', endAsSrc: myEnd: WG10 [0..1] LN0.LD; otherEnd: WG10 [1..1] LD.LN0, endAsTgt: myEnd: WG10 [1..1] LD.LN0; otherEnd: WG10 [0..1] LN0.LD +2024-09-08 15:10:02,155 [main] TRACE UmlAssociationEnd - created null [0..1] null.LD +2024-09-08 15:10:02,155 [main] TRACE UmlAssociationEnd - created null [1..1] null.LNPHD +2024-09-08 15:10:02,155 [main] TRACE UmlAssociation - created (3239) WG10 IEC61850 composition, qname='LD.LNPHD - LNPHD.LD', endAsSrc: myEnd: WG10 [0..1] LNPHD.LD; otherEnd: WG10 [1..1] LD.LNPHD, endAsTgt: myEnd: WG10 [1..1] LD.LNPHD; otherEnd: WG10 [0..1] LNPHD.LD +2024-09-08 15:10:02,156 [main] TRACE UmlAssociationEnd - created null [0..1] null.LN +2024-09-08 15:10:02,156 [main] TRACE UmlAssociationEnd - created null [1..*] null.CDCs +2024-09-08 15:10:02,156 [main] TRACE UmlAssociation - created (3230) WG10 IEC61850 composition, qname='LN.CDCs - CDC.LN', endAsSrc: myEnd: WG10 [0..1] CDC.LN; otherEnd: WG10 [1..*] LN.CDCs, endAsTgt: myEnd: WG10 [1..*] LN.CDCs; otherEnd: WG10 [0..1] CDC.LN +2024-09-08 15:10:02,156 [main] TRACE UmlAssociationEnd - created null [?..?] null.LN +2024-09-08 15:10:02,156 [main] TRACE UmlAssociationEnd - created null [0..*] null.LNOwnedDSs +2024-09-08 15:10:02,156 [main] TRACE UmlAssociation - created (3231) WG10 IEC61850 association, qname='LN.LNOwnedDSs - LNOwnedDS.LN', endAsSrc: myEnd: WG10 [?..?] LNOwnedDS.LN; otherEnd: WG10 [0..*] LN.LNOwnedDSs, endAsTgt: myEnd: WG10 [0..*] LN.LNOwnedDSs; otherEnd: WG10 [?..?] LNOwnedDS.LN +2024-09-08 15:10:02,156 [main] TRACE UmlAssociationEnd - created null [?..?] null.LN +2024-09-08 15:10:02,156 [main] TRACE UmlAssociationEnd - created null [0..*] null.LOGs +2024-09-08 15:10:02,156 [main] TRACE UmlAssociation - created (3232) WG10 IEC61850 association, qname='LN.LOGs - LOG.LN', endAsSrc: myEnd: WG10 [?..?] LOG.LN; otherEnd: WG10 [0..*] LN.LOGs, endAsTgt: myEnd: WG10 [0..*] LN.LOGs; otherEnd: WG10 [?..?] LOG.LN +2024-09-08 15:10:02,156 [main] TRACE UmlAssociationEnd - created null [?..?] null.LN +2024-09-08 15:10:02,156 [main] TRACE UmlAssociationEnd - created null [0..*] null.LCBs +2024-09-08 15:10:02,156 [main] TRACE UmlAssociation - created (3233) WG10 IEC61850 association, qname='LN.LCBs - LCB.LN', endAsSrc: myEnd: WG10 [?..?] LCB.LN; otherEnd: WG10 [0..*] LN.LCBs, endAsTgt: myEnd: WG10 [0..*] LN.LCBs; otherEnd: WG10 [?..?] LCB.LN +2024-09-08 15:10:02,156 [main] TRACE UmlAssociationEnd - created null [0..1] null.LN +2024-09-08 15:10:02,156 [main] TRACE UmlAssociationEnd - created null [0..*] null.URCBs +2024-09-08 15:10:02,156 [main] TRACE UmlAssociation - created (3234) WG10 IEC61850 composition, qname='LN.URCBs - URCB.LN', endAsSrc: myEnd: WG10 [0..1] URCB.LN; otherEnd: WG10 [0..*] LN.URCBs, endAsTgt: myEnd: WG10 [0..*] LN.URCBs; otherEnd: WG10 [0..1] URCB.LN +2024-09-08 15:10:02,156 [main] TRACE UmlAssociationEnd - created null [0..1] null.LN +2024-09-08 15:10:02,156 [main] TRACE UmlAssociationEnd - created null [0..*] null.BRCBs +2024-09-08 15:10:02,156 [main] TRACE UmlAssociation - created (3235) WG10 IEC61850 composition, qname='LN.BRCBs - BRCB.LN', endAsSrc: myEnd: WG10 [0..1] BRCB.LN; otherEnd: WG10 [0..*] LN.BRCBs, endAsTgt: myEnd: WG10 [0..*] LN.BRCBs; otherEnd: WG10 [0..1] BRCB.LN +2024-09-08 15:10:02,156 [main] TRACE UmlAssociationEnd - created null [?..?] null.LN0 +2024-09-08 15:10:02,156 [main] TRACE UmlAssociationEnd - created null [0..*] null.USVCBs +2024-09-08 15:10:02,156 [main] TRACE UmlAssociation - created (3224) WG10 IEC61850 association, qname='LN0.USVCBs - USVCB.LN0', endAsSrc: myEnd: WG10 [?..?] USVCB.LN0; otherEnd: WG10 [0..*] LN0.USVCBs, endAsTgt: myEnd: WG10 [0..*] LN0.USVCBs; otherEnd: WG10 [?..?] USVCB.LN0 +2024-09-08 15:10:02,156 [main] TRACE UmlAssociationEnd - created null [?..?] null.LN0 +2024-09-08 15:10:02,156 [main] TRACE UmlAssociationEnd - created null [0..*] null.GCBs +2024-09-08 15:10:02,156 [main] TRACE UmlAssociation - created (3225) WG10 IEC61850 association, qname='LN0.GCBs - GCB.LN0', endAsSrc: myEnd: WG10 [?..?] GCB.LN0; otherEnd: WG10 [0..*] LN0.GCBs, endAsTgt: myEnd: WG10 [0..*] LN0.GCBs; otherEnd: WG10 [?..?] GCB.LN0 +2024-09-08 15:10:02,156 [main] TRACE UmlAssociationEnd - created null [?..?] null.LN0 +2024-09-08 15:10:02,156 [main] TRACE UmlAssociationEnd - created null [0..*] null.MSVCBs +2024-09-08 15:10:02,156 [main] TRACE UmlAssociation - created (3226) WG10 IEC61850 association, qname='LN0.MSVCBs - MSVCB.LN0', endAsSrc: myEnd: WG10 [?..?] MSVCB.LN0; otherEnd: WG10 [0..*] LN0.MSVCBs, endAsTgt: myEnd: WG10 [0..*] LN0.MSVCBs; otherEnd: WG10 [?..?] MSVCB.LN0 +2024-09-08 15:10:02,156 [main] TRACE UmlAssociationEnd - created null [?..?] null.LN0 +2024-09-08 15:10:02,156 [main] TRACE UmlAssociationEnd - created null [0..1] null.SGCB +2024-09-08 15:10:02,156 [main] TRACE UmlAssociation - created (3227) WG10 IEC61850 association, qname='LN0.SGCB - SGCB.LN0', endAsSrc: myEnd: WG10 [?..?] SGCB.LN0; otherEnd: WG10 [0..1] LN0.SGCB, endAsTgt: myEnd: WG10 [0..1] LN0.SGCB; otherEnd: WG10 [?..?] SGCB.LN0 +2024-09-08 15:10:02,157 [main] TRACE UmlAssociationEnd - created null [0..1] null.CDC +2024-09-08 15:10:02,157 [main] TRACE UmlAssociationEnd - created null [1..*] null.FCDAs +2024-09-08 15:10:02,157 [main] TRACE UmlAssociation - created (3220) WG10 IEC61850 composition, qname='CDC.FCDAs - FCDA.CDC', endAsSrc: myEnd: WG10 [0..1] FCDA.CDC; otherEnd: WG10 [1..*] CDC.FCDAs, endAsTgt: myEnd: WG10 [1..*] CDC.FCDAs; otherEnd: WG10 [0..1] FCDA.CDC +2024-09-08 15:10:02,157 [main] TRACE UmlAssociationEnd - created null [0..1] null.CDC +2024-09-08 15:10:02,157 [main] TRACE UmlAssociationEnd - created null [1..*] null.FCDs +2024-09-08 15:10:02,157 [main] TRACE UmlAssociation - created (3221) WG10 IEC61850 composition, qname='CDC.FCDs - FCD.CDC', endAsSrc: myEnd: WG10 [0..1] FCD.CDC; otherEnd: WG10 [1..*] CDC.FCDs, endAsTgt: myEnd: WG10 [1..*] CDC.FCDs; otherEnd: WG10 [0..1] FCD.CDC +2024-09-08 15:10:02,157 [main] TRACE UmlAssociationEnd - created null [0..1] null.ComposedCDC +2024-09-08 15:10:02,157 [main] TRACE UmlAssociationEnd - created null [1..*] null.PrimitiveCDCs +2024-09-08 15:10:02,157 [main] TRACE UmlAssociation - created (3217) WG10 IEC61850 composition, qname='ComposedCDC.PrimitiveCDCs - PrimitiveCDC.ComposedCDC', endAsSrc: myEnd: WG10 [0..1] PrimitiveCDC.ComposedCDC; otherEnd: WG10 [1..*] ComposedCDC.PrimitiveCDCs, endAsTgt: myEnd: WG10 [1..*] ComposedCDC.PrimitiveCDCs; otherEnd: WG10 [0..1] PrimitiveCDC.ComposedCDC +2024-09-08 15:10:02,157 [main] TRACE UmlAssociationEnd - created null [0..1] null.ControlCDC +2024-09-08 15:10:02,157 [main] TRACE UmlAssociationEnd - created null [0..1] null.ServiceParameter +2024-09-08 15:10:02,157 [main] TRACE UmlAssociation - created (3218) WG10 IEC61850 composition, qname='PrimitiveCDC.ServiceParameter - PrimitiveDA.ControlCDC', endAsSrc: myEnd: WG10 [0..1] PrimitiveDA.ControlCDC; otherEnd: WG10 [0..1] PrimitiveCDC.ServiceParameter, endAsTgt: myEnd: WG10 [0..1] PrimitiveCDC.ServiceParameter; otherEnd: WG10 [0..1] PrimitiveDA.ControlCDC +2024-09-08 15:10:02,157 [main] TRACE UmlAssociationEnd - created null [0..*] null.DataSetFCDMember +2024-09-08 15:10:02,157 [main] TRACE UmlAssociationEnd - created null [0..*] null.DSs +2024-09-08 15:10:02,157 [main] TRACE UmlAssociation - created (3213) WG10 IEC61850 association, qname='FCD.DSs - DS.DataSetFCDMember', endAsSrc: myEnd: WG10 [0..*] DS.DataSetFCDMember; otherEnd: WG10 [0..*] FCD.DSs, endAsTgt: myEnd: WG10 [0..*] FCD.DSs; otherEnd: WG10 [0..*] DS.DataSetFCDMember +2024-09-08 15:10:02,157 [main] TRACE UmlAssociationEnd - created null [1..1] null.FCD +2024-09-08 15:10:02,157 [main] TRACE UmlAssociationEnd - created null [1..*] null.FCDAs +2024-09-08 15:10:02,157 [main] TRACE UmlAssociation - created (3214) WG10 IEC61850 association, qname='FCD.FCDAs - FCDA.FCD', endAsSrc: myEnd: WG10 [1..1] FCDA.FCD; otherEnd: WG10 [1..*] FCD.FCDAs, endAsTgt: myEnd: WG10 [1..*] FCD.FCDAs; otherEnd: WG10 [1..1] FCDA.FCD +2024-09-08 15:10:02,157 [main] TRACE UmlAssociationEnd - created null [0..1] null.FCDA +2024-09-08 15:10:02,157 [main] TRACE UmlAssociationEnd - created null [1..1] null.DA +2024-09-08 15:10:02,157 [main] TRACE UmlAssociation - created (3210) WG10 IEC61850 composition, qname='FCDA.DA - DA.FCDA', endAsSrc: myEnd: WG10 [0..1] DA.FCDA; otherEnd: WG10 [1..1] FCDA.DA, endAsTgt: myEnd: WG10 [1..1] FCDA.DA; otherEnd: WG10 [0..1] DA.FCDA +2024-09-08 15:10:02,157 [main] TRACE UmlAssociationEnd - created null [0..*] null.DataSetFCDAMember +2024-09-08 15:10:02,157 [main] TRACE UmlAssociationEnd - created null [0..*] null.DSs +2024-09-08 15:10:02,157 [main] TRACE UmlAssociation - created (3211) WG10 IEC61850 association, qname='FCDA.DSs - DS.DataSetFCDAMember', endAsSrc: myEnd: WG10 [0..*] DS.DataSetFCDAMember; otherEnd: WG10 [0..*] FCDA.DSs, endAsTgt: myEnd: WG10 [0..*] FCDA.DSs; otherEnd: WG10 [0..*] DS.DataSetFCDAMember +2024-09-08 15:10:02,157 [main] TRACE UmlAssociationEnd - created null [0..1] null.ComposedDA +2024-09-08 15:10:02,157 [main] TRACE UmlAssociationEnd - created null [1..*] null.DAs +2024-09-08 15:10:02,157 [main] TRACE UmlAssociation - created (3208) WG10 IEC61850 composition, qname='ComposedDA.DAs - DA.ComposedDA', endAsSrc: myEnd: WG10 [0..1] DA.ComposedDA; otherEnd: WG10 [1..*] ComposedDA.DAs, endAsTgt: myEnd: WG10 [1..*] ComposedDA.DAs; otherEnd: WG10 [0..1] DA.ComposedDA +2024-09-08 15:10:02,158 [main] TRACE UmlAssociationEnd - created null (private) [0..*] null.<> +2024-09-08 15:10:02,158 [main] TRACE UmlAssociationEnd - created null [0..1] null.DS +2024-09-08 15:10:02,158 [main] TRACE UmlAssociation - created (3200) WG10 IEC61850 association, qname='URCB.DS - DS.<>', endAsSrc: myEnd: WG10 (private) [0..*] DS.<>; otherEnd: WG10 [0..1] URCB.DS, endAsTgt: myEnd: WG10 [0..1] URCB.DS; otherEnd: WG10 (private) [0..*] DS.<> +2024-09-08 15:10:02,158 [main] TRACE UmlAssociationEnd - created null (private) [0..*] null.<> +2024-09-08 15:10:02,158 [main] TRACE UmlAssociationEnd - created null [0..1] null.DS +2024-09-08 15:10:02,158 [main] TRACE UmlAssociation - created (3201) WG10 IEC61850 association, qname='USVCB.DS - DS.<>', endAsSrc: myEnd: WG10 (private) [0..*] DS.<>; otherEnd: WG10 [0..1] USVCB.DS, endAsTgt: myEnd: WG10 [0..1] USVCB.DS; otherEnd: WG10 (private) [0..*] DS.<> +2024-09-08 15:10:02,158 [main] TRACE UmlAssociationEnd - created null (private) [0..*] null.<> +2024-09-08 15:10:02,158 [main] TRACE UmlAssociationEnd - created null [0..1] null.LNOwnedDS +2024-09-08 15:10:02,158 [main] TRACE UmlAssociation - created (3195) WG10 IEC61850 association, qname='MSVCB.LNOwnedDS - LNOwnedDS.<>', endAsSrc: myEnd: WG10 (private) [0..*] LNOwnedDS.<>; otherEnd: WG10 [0..1] MSVCB.LNOwnedDS, endAsTgt: myEnd: WG10 [0..1] MSVCB.LNOwnedDS; otherEnd: WG10 (private) [0..*] LNOwnedDS.<> +2024-09-08 15:10:02,158 [main] TRACE UmlAssociationEnd - created null (private) [0..*] null.<> +2024-09-08 15:10:02,158 [main] TRACE UmlAssociationEnd - created null [0..1] null.LNOwnedDS +2024-09-08 15:10:02,158 [main] TRACE UmlAssociation - created (3196) WG10 IEC61850 association, qname='LCB.LNOwnedDS - LNOwnedDS.<>', endAsSrc: myEnd: WG10 (private) [0..*] LNOwnedDS.<>; otherEnd: WG10 [0..1] LCB.LNOwnedDS, endAsTgt: myEnd: WG10 [0..1] LCB.LNOwnedDS; otherEnd: WG10 (private) [0..*] LNOwnedDS.<> +2024-09-08 15:10:02,158 [main] TRACE UmlAssociationEnd - created null (private) [0..*] null.<> +2024-09-08 15:10:02,158 [main] TRACE UmlAssociationEnd - created null [0..1] null.LNOwnedDS +2024-09-08 15:10:02,158 [main] TRACE UmlAssociation - created (3197) WG10 IEC61850 association, qname='BRCB.LNOwnedDS - LNOwnedDS.<>', endAsSrc: myEnd: WG10 (private) [0..*] LNOwnedDS.<>; otherEnd: WG10 [0..1] BRCB.LNOwnedDS, endAsTgt: myEnd: WG10 [0..1] BRCB.LNOwnedDS; otherEnd: WG10 (private) [0..*] LNOwnedDS.<> +2024-09-08 15:10:02,158 [main] TRACE UmlAssociationEnd - created null (private) [0..*] null.<> +2024-09-08 15:10:02,158 [main] TRACE UmlAssociationEnd - created null [0..1] null.LNOwnedDS +2024-09-08 15:10:02,158 [main] TRACE UmlAssociation - created (3198) WG10 IEC61850 association, qname='GCB.LNOwnedDS - LNOwnedDS.<>', endAsSrc: myEnd: WG10 (private) [0..*] LNOwnedDS.<>; otherEnd: WG10 [0..1] GCB.LNOwnedDS, endAsTgt: myEnd: WG10 [0..1] GCB.LNOwnedDS; otherEnd: WG10 (private) [0..*] LNOwnedDS.<> +2024-09-08 15:10:02,158 [main] TRACE UmlAssociationEnd - created null (private) [0..*] null.<> +2024-09-08 15:10:02,158 [main] TRACE UmlAssociationEnd - created null [1..1] null.LOG +2024-09-08 15:10:02,158 [main] TRACE UmlAssociation - created (3186) WG10 IEC61850 association, qname='LCB.LOG - LOG.<>', endAsSrc: myEnd: WG10 (private) [0..*] LOG.<>; otherEnd: WG10 [1..1] LCB.LOG, endAsTgt: myEnd: WG10 [1..1] LCB.LOG; otherEnd: WG10 (private) [0..*] LOG.<> +2024-09-08 15:10:02,158 [main] TRACE UmlAssociationEnd - created null (private) [0..*] null.<> +2024-09-08 15:10:02,158 [main] TRACE UmlAssociationEnd - created null [1..*] null.ActiveFCDAs +2024-09-08 15:10:02,158 [main] TRACE UmlAssociation - created (3178) WG10 IEC61850 association, qname='SGCB.ActiveFCDAs - FCDA_SG.<>', endAsSrc: myEnd: WG10 (private) [0..*] FCDA_SG.<>; otherEnd: WG10 [1..*] SGCB.ActiveFCDAs, endAsTgt: myEnd: WG10 [1..*] SGCB.ActiveFCDAs; otherEnd: WG10 (private) [0..*] FCDA_SG.<> +2024-09-08 15:10:02,158 [main] TRACE UmlAssociationEnd - created null (private) [0..*] null.<> +2024-09-08 15:10:02,159 [main] TRACE UmlAssociationEnd - created null [1..*] null.EditFCDAs +2024-09-08 15:10:02,159 [main] TRACE UmlAssociation - created (3179) WG10 IEC61850 association, qname='SGCB.EditFCDAs - FCDA_SE.<>', endAsSrc: myEnd: WG10 (private) [0..*] FCDA_SE.<>; otherEnd: WG10 [1..*] SGCB.EditFCDAs, endAsTgt: myEnd: WG10 [1..*] SGCB.EditFCDAs; otherEnd: WG10 (private) [0..*] FCDA_SE.<> +2024-09-08 15:10:02,159 [main] TRACE UmlAssociationEnd - created null [0..1] null.SelfFromApple +2024-09-08 15:10:02,159 [main] TRACE UmlAssociationEnd - created null [0..*] null.SelfToApples +2024-09-08 15:10:02,159 [main] TRACE UmlAssociation - created (2140) OTHER_CIM CIM association, qname='Apple.SelfToApples - Apple.SelfFromApple', endAsSrc: myEnd: OTHER_CIM [0..1] Apple.SelfFromApple; otherEnd: OTHER_CIM [0..*] Apple.SelfToApples, endAsTgt: myEnd: OTHER_CIM [0..*] Apple.SelfToApples; otherEnd: OTHER_CIM [0..1] Apple.SelfFromApple +2024-09-08 15:10:02,159 [main] TRACE UmlAssociationEnd - created null [0..1] null.Pear +2024-09-08 15:10:02,159 [main] TRACE UmlAssociationEnd - created null [0..*] null.Apple +2024-09-08 15:10:02,159 [main] TRACE UmlAssociation - created (2141) OTHER_CIM CIM association <>, qname='Pear.Apple - Apple.Pear', endAsSrc: myEnd: OTHER_CIM [0..1] Apple.Pear; tags={assocEndTag=value}; otherEnd: OTHER_CIM [0..*] Pear.Apple; tags={targetEndTag=value2}, endAsTgt: myEnd: OTHER_CIM [0..*] Pear.Apple; tags={targetEndTag=value2}; otherEnd: OTHER_CIM [0..1] Apple.Pear; tags={assocEndTag=value} +2024-09-08 15:10:02,159 [main] TRACE UmlAssociationEnd - created null <> [0..1] null.SecondPear +2024-09-08 15:10:02,159 [main] TRACE UmlAssociationEnd - created null <> [1..1] null.SecondApple +2024-09-08 15:10:02,159 [main] TRACE UmlAssociation - created (2142) OTHER_CIM CIM association, qname='Pear.SecondApple - Apple.SecondPear', endAsSrc: myEnd: OTHER_CIM <> [0..1] Apple.SecondPear; otherEnd: OTHER_CIM <> [1..1] Pear.SecondApple, endAsTgt: myEnd: OTHER_CIM <> [1..1] Pear.SecondApple; otherEnd: OTHER_CIM <> [0..1] Apple.SecondPear +2024-09-08 15:10:02,159 [main] TRACE UmlAssociationEnd - created null [0..1] null.Animal +2024-09-08 15:10:02,159 [main] TRACE UmlAssociationEnd - created null [0..*] null.Fruit +2024-09-08 15:10:02,159 [main] TRACE UmlAssociation - created (2143) OTHER_IEC61850 IEC61850 association, qname='Animal.Fruit - Fruit.Animal', endAsSrc: myEnd: OTHER_IEC61850 [0..1] Fruit.Animal; otherEnd: OTHER_IEC61850 [0..*] Animal.Fruit, endAsTgt: myEnd: OTHER_IEC61850 [0..*] Animal.Fruit; otherEnd: OTHER_IEC61850 [0..1] Fruit.Animal +2024-09-08 15:10:02,159 [main] TRACE UmlAssociationEnd - created null [1..*] null.SecondAnimal +2024-09-08 15:10:02,159 [main] TRACE UmlAssociationEnd - created null [1..1] null.SecondFruit +2024-09-08 15:10:02,159 [main] TRACE UmlAssociation - created (2144) OTHER_IEC61850 IEC61850 association, qname='Animal.SecondFruit - Fruit.SecondAnimal', endAsSrc: myEnd: OTHER_IEC61850 [1..*] Fruit.SecondAnimal; otherEnd: OTHER_IEC61850 [1..1] Animal.SecondFruit, endAsTgt: myEnd: OTHER_IEC61850 [1..1] Animal.SecondFruit; otherEnd: OTHER_IEC61850 [1..*] Fruit.SecondAnimal +2024-09-08 15:10:02,159 [main] TRACE UmlAssociationEnd - created null [0..1] null.Vilage +2024-09-08 15:10:02,159 [main] TRACE UmlAssociationEnd - created null [0..*] null.Strawberries +2024-09-08 15:10:02,159 [main] TRACE UmlAssociation - created (3418) OTHER_CIM CIM association, qname='Village.Strawberries - Strawberry.Vilage', endAsSrc: myEnd: OTHER_CIM [0..1] Strawberry.Vilage; otherEnd: OTHER_CIM [0..*] Village.Strawberries, endAsTgt: myEnd: OTHER_CIM [0..*] Village.Strawberries; otherEnd: OTHER_CIM [0..1] Strawberry.Vilage +2024-09-08 15:10:02,159 [main] TRACE UmlAssociationEnd - created null [0..1] null.Role 1 +2024-09-08 15:10:02,159 [main] TRACE UmlAssociationEnd - created null [0..1] null._role 2&x +2024-09-08 15:10:02,159 [main] TRACE UmlAssociation - created (2147) OTHER_CIM CIM association <>, qname='My class._role 2&x - Other-with_invalid name.Role 1', endAsSrc: myEnd: OTHER_CIM [0..1] Other-with_invalid name.Role 1; otherEnd: OTHER_CIM [0..1] My class._role 2&x, endAsTgt: myEnd: OTHER_CIM [0..1] My class._role 2&x; otherEnd: OTHER_CIM [0..1] Other-with_invalid name.Role 1 +2024-09-08 15:10:02,159 [main] INFO EaModelBuilder - creating in-memory dependencies ... +2024-09-08 15:10:02,162 [main] TRACE UmlDependency - created (3446) WG14 CIM interPackage dependency= IEC61968::Other -> TC57CIM::IEC61970 +2024-09-08 15:10:02,162 [main] TRACE UmlDependency - created (3447) WG14 CIM interPackage dependency= TC57CIM::IEC61968 -> TC57CIM::IEC61970 +2024-09-08 15:10:02,162 [main] TRACE UmlDependency - created (3449) WG16 CIM interPackage dependency= TC57CIM::IEC62325 -> TC57CIM::IEC61970 +2024-09-08 15:10:02,162 [main] TRACE UmlDependency - created (485) WG13 CIM interPackage dependency <>= IEC61970::Core -> IEC61970::Domain +2024-09-08 15:10:02,162 [main] TRACE UmlDependency - created (480) WG13 CIM interPackage dependency= IEC61970::Topology -> IEC61970::Core +2024-09-08 15:10:02,163 [main] TRACE UmlDependency - created (2132) WG13 CIM interPackage dependency= IEC61970::Topology -> IEC61968::Other +2024-09-08 15:10:02,163 [main] TRACE UmlDependency - created (3448) WG16 CIM interPackage dependency= TC57CIM::IEC62325 -> TC57CIM::IEC61968 +2024-09-08 15:10:02,163 [main] TRACE UmlDependency - created (2111) WG14 CIM interClass dependency= Other::BadDatatypes -> Other::MyClass +2024-09-08 15:10:02,163 [main] TRACE UmlDependency - created (3375) WG10 IEC61850 interClass dependency <>= GenericModel::GenSubDataAttribute -> GenericModel::GenAtomicType +2024-09-08 15:10:02,163 [main] TRACE UmlDependency - created (3393) WG10 IEC61850 interClass dependency <>= GenericModel::GenDataAttribute -> GenericModel::GenAtomicType +2024-09-08 15:10:02,163 [main] TRACE UmlDependency - created (3372) WG10 IEC61850 interClass dependency <>= GenericModel::GenSubDataObject -> GenericModel::GenCommonDataClass +2024-09-08 15:10:02,163 [main] TRACE UmlDependency - created (3390) WG10 IEC61850 interClass dependency <>= GenericModel::GenDataObject -> GenericModel::GenCommonDataClass +2024-09-08 15:10:02,163 [main] TRACE UmlDependency - created (3374) WG10 IEC61850 interClass dependency <>= GenericModel::GenSubDataAttribute -> GenericModel::GenCompactType +2024-09-08 15:10:02,163 [main] TRACE UmlDependency - created (3394) WG10 IEC61850 interClass dependency <>= GenericModel::GenDataAttribute -> GenericModel::GenCompactType +2024-09-08 15:10:02,163 [main] TRACE UmlDependency - created (3373) WG10 IEC61850 interClass dependency <>= GenericModel::GenSubDataAttribute -> GenericModel::GenConstructedType +2024-09-08 15:10:02,163 [main] TRACE UmlDependency - created (3392) WG10 IEC61850 interClass dependency <>= GenericModel::GenDataAttribute -> GenericModel::GenConstructedType +2024-09-08 15:10:02,163 [main] TRACE UmlDependency - created (2896) WG10 IEC61850 interPackage dependency= WG10::IEC61850_7_4 -> WG10::IEC61850_7_2 +2024-09-08 15:10:02,163 [main] TRACE UmlDependency - created (3104) WG10 IEC61850 interPackage dependency= WG10::IEC61850_7_3 -> WG10::IEC61850_7_2 +2024-09-08 15:10:02,163 [main] TRACE UmlDependency - created (3175) WG10 IEC61850 interPackage dependency= IEC61850_7_2::MetaModel -> IEC61850_7_2::FunctionalConstraints +2024-09-08 15:10:02,163 [main] TRACE UmlDependency - created (3173) WG10 IEC61850 interPackage dependency= IEC61850_7_2::MetaModel -> IEC61850_7_2::TriggerOptions +2024-09-08 15:10:02,163 [main] TRACE UmlDependency - created (3298) WG10 IEC61850 interPackage dependency= IEC61850_7_2::BasicDAs -> IEC61850_7_2::ACSIEnums +2024-09-08 15:10:02,163 [main] TRACE UmlDependency - created (3064) WG10 IEC61850 interPackage dependency= IEC61850_7_3::ConstructedDAs -> IEC61850_7_2::CoreTypes +2024-09-08 15:10:02,163 [main] TRACE UmlDependency - created (3174) WG10 IEC61850 interPackage dependency= IEC61850_7_2::MetaModel -> IEC61850_7_2::CoreTypes +2024-09-08 15:10:02,163 [main] TRACE UmlDependency - created (3288) WG10 IEC61850 interPackage dependency= AcsiTypes::CommonAcsiTypes -> IEC61850_7_2::CoreTypes +2024-09-08 15:10:02,163 [main] TRACE UmlDependency - created (3297) WG10 IEC61850 interPackage dependency= IEC61850_7_2::AcsiTypes -> IEC61850_7_2::CoreTypes +2024-09-08 15:10:02,163 [main] TRACE UmlDependency - created (3301) WG10 IEC61850 interPackage dependency= IEC61850_7_2::BasicDAs -> IEC61850_7_2::CoreTypes +2024-09-08 15:10:02,163 [main] TRACE UmlDependency - created (3322) WG10 IEC61850 interPackage dependency= IEC61850_7_2::AttrValues -> IEC61850_7_2::CoreTypes +2024-09-08 15:10:02,163 [main] TRACE UmlDependency - created (3347) WG10 IEC61850 interPackage dependency= IEC61850_7_2::ObjectReferences -> IEC61850_7_2::CoreTypes +2024-09-08 15:10:02,163 [main] TRACE UmlDependency - created (3172) WG10 IEC61850 interPackage dependency= IEC61850_7_2::MetaModel -> IEC61850_7_2::ObjectReferences +2024-09-08 15:10:02,163 [main] TRACE UmlDependency - created (3323) WG10 IEC61850 interPackage dependency= IEC61850_7_2::AttrValues -> IEC61850_7_2::ObjectReferences +2024-09-08 15:10:02,163 [main] TRACE UmlDependency - created (3171) WG10 IEC61850 interPackage dependency= IEC61850_7_2::MetaModel -> IEC61850_7_2::AttrValues +2024-09-08 15:10:02,163 [main] TRACE UmlDependency - created (3300) WG10 IEC61850 interPackage dependency= IEC61850_7_2::BasicDAs -> IEC61850_7_2::AttrValues +2024-09-08 15:10:02,163 [main] TRACE UmlDependency - created (2947) WG10 IEC61850 interPackage dependency= IEC61850_7_3::FCDAs -> IEC61850_7_2::BasicDAs +2024-09-08 15:10:02,163 [main] TRACE UmlDependency - created (3063) WG10 IEC61850 interPackage dependency= IEC61850_7_3::ConstructedDAs -> IEC61850_7_2::BasicDAs +2024-09-08 15:10:02,163 [main] TRACE UmlDependency - created (3299) WG10 IEC61850 interPackage dependency= IEC61850_7_2::BasicDAs -> IEC61850_7_2::MetaModel +2024-09-08 15:10:02,164 [main] TRACE UmlDependency - created (3176) WG10 IEC61850 interPackage dependency= IEC61850_7_2::MetaModel -> IEC61850_7_2::AcsiTypes +2024-09-08 15:10:02,164 [main] TRACE UmlDependency - created (3424) WG10 IEC61850 interClass dependency= CommonAcsiTypes::MulticastAddress -> CommonAcsiTypes::P_OCTET_STRING +2024-09-08 15:10:02,164 [main] TRACE UmlDependency - created (2549) WG10 IEC61850 interPackage dependency= IEC61850_7_4::LogicalNodes -> IEC61850_7_2::MetaModel +2024-09-08 15:10:02,164 [main] TRACE UmlDependency - created (2612) WG10 IEC61850 interPackage dependency= IEC61850_7_4::DerivedDAs -> IEC61850_7_2::MetaModel +2024-09-08 15:10:02,164 [main] TRACE UmlDependency - created (2940) WG10 IEC61850 interPackage dependency= IEC61850_7_3::CommonDataClasses -> IEC61850_7_2::MetaModel +2024-09-08 15:10:02,164 [main] TRACE UmlDependency - created (2948) WG10 IEC61850 interPackage dependency= IEC61850_7_3::FCDAs -> IEC61850_7_2::MetaModel +2024-09-08 15:10:02,164 [main] TRACE UmlDependency - created (3061) WG10 IEC61850 interPackage dependency= IEC61850_7_3::ConstructedDAs -> IEC61850_7_2::MetaModel +2024-09-08 15:10:02,164 [main] TRACE UmlDependency - created (3105) WG10 IEC61850 interPackage dependency= IEC61850_7_2::CDCServiceTracking -> IEC61850_7_3::CommonDataClasses +2024-09-08 15:10:02,164 [main] TRACE UmlDependency - created (2897) WG10 IEC61850 interPackage dependency= WG10::IEC61850_7_4 -> WG10::IEC61850_7_3 +2024-09-08 15:10:02,164 [main] TRACE UmlDependency - created (3445) WG10 IEC61850 interPackage dependency= WG10::IEC61850_7_3 -> WG10::IEC61850_7_4 +2024-09-08 15:10:02,164 [main] TRACE UmlDependency - created (2558) WG10 IEC61850 interPackage dependency= IEC61850_7_4::DerivedCDCs -> IEC61850_7_3::DAEnums +2024-09-08 15:10:02,164 [main] TRACE UmlDependency - created (3082) WG10 IEC61850 interPackage dependency= IEC61850_7_3::ImplicitDAs -> IEC61850_7_3::DAEnums +2024-09-08 15:10:02,164 [main] TRACE UmlDependency - created (2945) WG10 IEC61850 interPackage dependency= IEC61850_7_3::FCDAs -> IEC61850_7_3::ImplicitDAs +2024-09-08 15:10:02,164 [main] TRACE UmlDependency - created (3062) WG10 IEC61850 interPackage dependency= IEC61850_7_3::ConstructedDAs -> IEC61850_7_3::ImplicitDAs +2024-09-08 15:10:02,164 [main] TRACE UmlDependency - created (2946) WG10 IEC61850 interPackage dependency= IEC61850_7_3::FCDAs -> IEC61850_7_3::ConstructedDAs +2024-09-08 15:10:02,164 [main] TRACE UmlDependency - created (2941) WG10 IEC61850 interPackage dependency= IEC61850_7_3::CommonDataClasses -> IEC61850_7_3::FCDAs +2024-09-08 15:10:02,164 [main] TRACE UmlDependency - created (2550) WG10 IEC61850 interPackage dependency= IEC61850_7_4::LogicalNodes -> IEC61850_7_3::CommonDataClasses +2024-09-08 15:10:02,164 [main] TRACE UmlDependency - created (2557) WG10 IEC61850 interPackage dependency= IEC61850_7_4::DerivedCDCs -> IEC61850_7_3::CommonDataClasses +2024-09-08 15:10:02,164 [main] TRACE UmlDependency - created (3452) WG10 IEC61850 interClass dependency= CDCControl::SPC -> CDCControl::ControllableCDC +2024-09-08 15:10:02,164 [main] TRACE UmlDependency - created (3439) WG17 IEC61850 interPackage dependency= IEC61850Domain::WG17 -> WG10::IEC61850_7_4 +2024-09-08 15:10:02,164 [main] TRACE UmlDependency - created (3451) WG10 IEC61850 interPackage dependency= WG10::IEC61850_7_4 -> WG17::IEC51850_7_420 +2024-09-08 15:10:02,164 [main] TRACE UmlDependency - created (2796) WG10 IEC61850 interPackage dependency= Functions::ProtectionEq -> LogicalNodes::LNGroupP +2024-09-08 15:10:02,165 [main] TRACE UmlDependency - created (2797) WG10 IEC61850 interPackage dependency= Functions::ProtectionEq -> LogicalNodes::LNGroupR +2024-09-08 15:10:02,165 [main] TRACE UmlDependency - created (2888) WG10 IEC61850 interClass dependency= ProtectionEq::BusbarProt -> LNGroupP::PDIF +2024-09-08 15:10:02,165 [main] TRACE UmlDependency - created (2876) WG10 IEC61850 interClass dependency= ProtectionEq::DirectionalProt -> LNGroupR::RDIR +2024-09-08 15:10:02,165 [main] TRACE UmlDependency - created (3401) WG10 IEC61850 interClass dependency= ProtectionEq::DirectionalProt -> LNGroupP::PDIS +2024-09-08 15:10:02,165 [main] TRACE UmlDependency - created (2872) WG10 IEC61850 interClass dependency= ProtectionEq::DirectionalPowerProt -> LNGroupR::RDIR +2024-09-08 15:10:02,165 [main] TRACE UmlDependency - created (2849) WG10 IEC61850 interClass dependency= ProtectionEq::LineDifferentialProt -> LNGroupP::PDIF +2024-09-08 15:10:02,165 [main] TRACE UmlDependency - created (2780) WG10 IEC61850 interPackage dependency= Functions::ControlEq -> LogicalNodes::LNGroupG +2024-09-08 15:10:02,165 [main] TRACE UmlDependency - created (2781) WG10 IEC61850 interPackage dependency= Functions::ControlEq -> LogicalNodes::LNGroupP +2024-09-08 15:10:02,165 [main] TRACE UmlDependency - created (2782) WG10 IEC61850 interPackage dependency= Functions::ControlEq -> LogicalNodes::LNGroupC +2024-09-08 15:10:02,165 [main] TRACE UmlDependency - created (2795) WG10 IEC61850 interClass dependency= ControlEq::AlarmHandler -> LNGroupC::CALH +2024-09-08 15:10:02,165 [main] TRACE UmlDependency - created (2742) WG10 IEC61850 interPackage dependency= Functions::MeasurementsAndMetering -> LogicalNodes::LNGroupM +2024-09-08 15:10:02,165 [main] TRACE UmlDependency - created (2748) WG10 IEC61850 interClass dependency= MeasurementsAndMetering::ThreePhaseMeasurement -> LNGroupM::MMXU +2024-09-08 15:10:02,166 [main] TRACE UmlDependency - created (2730) WG10 IEC61850 interPackage dependency= Functions::SystemWide -> LogicalNodes::LNGroupL +2024-09-08 15:10:02,166 [main] TRACE UmlDependency - created (2731) WG10 IEC61850 interPackage dependency= Functions::SystemWide -> LogicalNodes::LNGroupG +2024-09-08 15:10:02,166 [main] TRACE UmlDependency - created (2738) WG10 IEC61850 interClass dependency= SystemWide::LogicalDeviceData -> LNGroupL::LLN0 +2024-09-08 15:10:02,166 [main] TRACE UmlDependency - created (2735) WG10 IEC61850 interClass dependency= SystemWide::PhysicalDeviceData -> LNGroupL::LPHD +2024-09-08 15:10:02,166 [main] TRACE UmlDependency - created (2665) WG10 IEC61850 interPackage dependency= Functions::PrimaryEq -> LogicalNodes::LNGroupG +2024-09-08 15:10:02,166 [main] TRACE UmlDependency - created (2670) WG10 IEC61850 interPackage dependency= Functions::PrimaryEq -> LogicalNodes::LNGroupZ +2024-09-08 15:10:02,166 [main] TRACE UmlDependency - created (2727) WG10 IEC61850 interClass dependency= PrimaryEq::AuxiliaryNetwork -> LNGroupZ::ZAXN +2024-09-08 15:10:02,166 [main] TRACE UmlDependency - created (2713) WG10 IEC61850 interClass dependency= PrimaryEq::GenericIO -> LNGroupG::GGIO +2024-09-08 15:10:02,166 [main] TRACE UmlDependency - created (2611) WG10 IEC61850 interPackage dependency= IEC61850_7_4::DerivedDAs -> IEC61850_7_4::DOEnums +2024-09-08 15:10:02,166 [main] TRACE UmlDependency - created (2559) WG10 IEC61850 interPackage dependency= IEC61850_7_4::DerivedCDCs -> IEC61850_7_4::DerivedDAs +2024-09-08 15:10:02,166 [main] TRACE UmlDependency - created (2548) WG10 IEC61850 interPackage dependency= IEC61850_7_4::LogicalNodes -> IEC61850_7_4::DerivedCDCs +2024-09-08 15:10:02,166 [main] TRACE UmlDependency - created (2447) WG10 IEC61850 interClass dependency= LNGroupP::PDIS -> LNGroupR::RDIR +2024-09-08 15:10:02,166 [main] INFO Util - time=[0:00:01.622] created in-memory model and exported normative diagrams +2024-09-08 15:10:02,166 [main] INFO Util - +2024-09-08 15:10:02,166 [main] INFO Util - +2024-09-08 15:10:02,166 [main] INFO Util - ------------------------------------------------ +2024-09-08 15:10:02,167 [main] INFO Util - closing EA file 'C:\Users\gigi\git\jCleanCim\input\base-small.eap'... +2024-09-08 15:10:02,167 [main] INFO Util - time=[0:00:00.000] closed EA file. +2024-09-08 15:10:02,167 [main] INFO Util - +2024-09-08 15:10:02,167 [main] INFO Util - time=[0:00:02.857] built model from 'TC57CIMProfiles (CIM), TC57CIM (CIM), IEC61850Domain (IEC61850), MyCimExtensions (CIM), My61850Extensions (IEC61850), NewNature (CIM)' +2024-09-08 15:10:02,167 [main] INFO Util - +2024-09-08 15:10:02,168 [main] INFO Util - +2024-09-08 15:10:02,168 [main] INFO Util - ================================================ +2024-09-08 15:10:02,168 [main] INFO Util - validating packages [WG13, WG14, WG16, OTHER_CIM, WG10, WG17, WG18, JWG25, WG19, OTHER_IEC61850]... +2024-09-08 15:10:02,168 [main] INFO Util - ================================================ +2024-09-08 15:10:02,310 [main] INFO ModelValidator - Model validation - below are all available rules: +2024-09-08 15:10:02,310 [main] INFO ModelValidator - Available rules in PackageValidator = [PackageUnexpectedElements, PackageUnexpectedConnectors, PackagesWithSelfDependency, PackagesWithUnallowedStereotype, PackagesTopLevelWithoutVersionClass, Iec61850PackagesThatShouldHaveAliasAsTitle, PackagesWithUnallowedTagNames, PackagesMissingDoc, PackagesWithBadDocStart, PackagesWithBadDocEnd, PackagesWithBadCharacterInName, PackagesWithSameName] +2024-09-08 15:10:02,310 [main] INFO ModelValidator - Available rules in ClassValidator = [CimClassesWithUnexpectedElements, ClassesWithUnexpectedConnectors, EnumClassesWithNoLiterals, CimCompoundClassesWithNoAttributes, EnumClassesWithSingleLiteral, EnumClassesWithTwoLiterals, EnumClassesWithBadName, CimPrimitiveClassesWithAttributes, CimPrimitiveClassesWithIllegalOwner, ClassesWithDuplicateInheritedAttributeNames, ClassesWithDuplicateOwnOrInheritedAssociationEndNames, ClassesWithSelfInheritance, ClassesWithSelfDependency, ClassesWithLeafPropSet, ClassesWithRootPropSet, ClassesWithPersistentPropSet, ClassesWithMultipleSuperclasses, ClassesWithSuperclassesFromUnallowedOwner, ClassesThatShouldNotBeAssociationClass, ClassesWithUnallowedStereotype, CimClassesWithOldDatatypeStereotype, CimClassesUsedForAttributesButHaveAssociations, CimClassesUsedForAttributesButHaveSubclasses, CimClassesUsedForAttributesButHaveSuperclasses, CimClassesThatShouldNotBeAbstract, CimClassesThatShouldNotHaveOperations, CimClassesThatShouldNotHaveExplicitDependencies, ClassesThatShouldNotHaveNestingThroughAttribute, Iec61850ClassesThatShouldHaveAliasAsTitle, Iec61850ClassesThatShouldHaveTaggedValuesForDocgen, CimClassesNeverUsedInRelationships, ClassesWithUnallowedTagNames, Iec61850ClassesWithInvalidConstraints, Iec61850LNClassesWithSuperfluousConstraints, Iec61850ClassesWithMissingCondIDTextInConstraints, CimDatatypeClassesWithInvalidAttributes, ClassesMissingDoc, ClassesWithBadDocStart, ClassesWithBadDocEnd, ClassesWithBadCharacterInName, CimClassesNameStartingWithLowerCase, CimClassesNameShouldBeSingular, Iec61850LNClassesInWrongGroup, Iec61850LNClassesMalformedName, EnumClassesWithSomeCodesMissing, EnumClassesWithDuplicateCodes, ClassesWithSameName, CimClassesNeverUsedAsTypeForAttribute] +2024-09-08 15:10:02,310 [main] INFO ModelValidator - Available rules in AttributeValidator = [EnumLiteralsWithSuperfluousType, EnumLiteralsWithoutEnumStereotype, AttributesWithInvalidMultiplicity, CimAttributesThatShouldBeOptional, AttributesWithInvalidTypeNull, AttributesWithInvalidTypeString, AttributesWithTypeIdMismatch, CimAttributesThatShouldBePublic, AttributesThatAreStaticButNotConst, CimAttributesThatAreNotStaticNonConstWithInitVal, AttributesThatAreConstNonStatic, AttributesWithUnallowedStereotype, AttributesThatAreEnumsInNonEnumeratedClass, CimAttributesThatShouldBeReplacedWithAssociation, AttributesWhoseTypeIsInformative, AttributesWithUnallowedTagNames, Iec61850AttributesWithInexistingSibling, CimAttributesWithFlagInName, AttributesMissingDoc, AttributesWithBadDocStart, AttributesWithBadDocEnd, CimAttributesWithBadCharacterInName, Iec61850AttributesWithBadCharacterInName, Iec61850DOAttributesWithTooLongName, Iec61850FCDAAttributesWithMissingConstraint, AttributesWithInexistingEnumLiteralAsInitValue, Iec61850DOAttributesWithNameMissingAbbreviation, CimAttributesNameStartingWithUpperCase, CimAttributesNameShouldBeSingular, CimAttributesNameShouldNotStartWithClassName, Iec61850AbbreviationLiteralsNameStartingWithLowerCase, Iec61850DOAttributesNameStartingWithLowerCase, AttributesWithTypeFromUnallowedOwner, Iec61850DOAbbreviationLiteralsDuplicateName, Iec61850DOAbbreviationLiteralsDuplicateDescription, Iec61850DOAbbreviationLiteralsNeverUsedInDOName, Iec61850DOAttributesWithSameNameDifferentType, Iec61850ConditionLiteralsNeverUsedAsConstraints] +2024-09-08 15:10:02,311 [main] INFO ModelValidator - Available rules in OperationValidator = [OperationsWithUpperCaseName, OperationsWithUnallowedStereotype, OperationParametersWithUnallowedStereotype, OperationsWithInvalidReturnTypeNull, OperationsWithInvalidArgTypeNull, OperationsWithInvalidExcTypeNull, OperationsWithUnallowedTagNames, OperationParametersWithUnallowedTagNames, OperationsMissingDoc, OperationParametersMissingDoc, OperationsWithBadDocStart, OperationParametersWithBadDocStart, OperationsWithBadDocEnd, OperationParametersWithBadDocEnd, OperationsWithBadCharacterInName, OperationParametersWithBadCharacterInName] +2024-09-08 15:10:02,311 [main] INFO ModelValidator - Available rules in AssociationValidator = [AssociationsWithExplicitDirection, AssociationsWithRoleBadDirection, AssociationsWithDoc, AssociationsWithSameDocOnBothEnds, AssociationsWithName, AssociationsWithUnallowedStereotype, AssociationEndsWithUnallowedStereotype, AssociationsMissingInformativeStereotype, AssociationsWithUnallowedTagNames, AssociationEndsWithUnallowedTagNames, AssociationsWithNoMultiplicity, AssociationsWithWrongSource, Iec61850AssociationsThatShouldBePrivate, Iec61850AssociationsWithDifferentEndVisibility, AssociationEndsMissingDoc, AssociationEndsWithBadDocStart, AssociationEndsWithBadDocEnd, AssociationEndsWithBadCharacterInName, CimAssociationEndsNameStartingWithLowerCase, CimAssociationEndsNameShouldBePlural, CimAssociationEndsNameShouldBeSingular] +2024-09-08 15:10:02,311 [main] INFO ModelValidator - Available rules in DependencyValidator = [DependenciesWithUnallowedStereotype, DependenciesWithUnallowedDirection, DependenciesWithUnallowedTagNames] +2024-09-08 15:10:02,311 [main] INFO ModelValidator - Available rules in DiagramValidator = [DiagramsWithBadOrientation, DiagramsWithUnallowedStereotype, DiagramsMissingDoc, DiagramsWithBadDocStart, DiagramsWithBadDocEnd, DiagramsWithBadCharacterInName] +2024-09-08 15:10:02,311 [main] INFO ModelValidator - +2024-09-08 15:10:02,314 [main] DEBUG ModelValidator - Available rules per nature: + for CIM: + Available rules for CIM in PackageValidator (category, severity): + PackageUnexpectedElements (modellingRule, medium) + PackageUnexpectedConnectors (modellingRule, medium) + PackagesWithSelfDependency (permissiveTool, high) + PackagesWithUnallowedStereotype (modellingRule, high) + PackagesTopLevelWithoutVersionClass (modellingRule, high) + PackagesWithUnallowedTagNames (modellingRule, high) + PackagesMissingDoc (documentationRule, medium) + PackagesWithBadDocStart (documentationRule, low) + PackagesWithBadDocEnd (documentationRule, low) + PackagesWithBadCharacterInName (namingRule, high) + PackagesWithSameName (modellingRule, high) + Available rules for CIM in ClassValidator (category, severity): + CimClassesWithUnexpectedElements (permissiveTool, high) + ClassesWithUnexpectedConnectors (permissiveTool, high) + EnumClassesWithNoLiterals (modellingRule, high) + CimCompoundClassesWithNoAttributes (modellingRule, high) + EnumClassesWithSingleLiteral (modellingRule, medium) + EnumClassesWithTwoLiterals (modellingRule, low) + EnumClassesWithBadName (modellingRule, high) + CimPrimitiveClassesWithAttributes (modellingRule, high) + CimPrimitiveClassesWithIllegalOwner (modellingRule, high) + ClassesWithDuplicateInheritedAttributeNames (modellingRule, high) + ClassesWithDuplicateOwnOrInheritedAssociationEndNames (modellingRule, high) + ClassesWithSelfInheritance (permissiveTool, high) + ClassesWithSelfDependency (permissiveTool, high) + ClassesWithLeafPropSet (modellingRule, high) + ClassesWithRootPropSet (modellingRule, high) + ClassesWithPersistentPropSet (modellingRule, high) + ClassesWithMultipleSuperclasses (modellingRule, high) + ClassesWithSuperclassesFromUnallowedOwner (modellingRule, high) + ClassesThatShouldNotBeAssociationClass (modellingRule, high) + ClassesWithUnallowedStereotype (modellingRule, high) + CimClassesWithOldDatatypeStereotype (modellingRule, medium) + CimClassesUsedForAttributesButHaveAssociations (modellingRule, high) + CimClassesUsedForAttributesButHaveSubclasses (modellingRule, high) + CimClassesUsedForAttributesButHaveSuperclasses (modellingRule, high) + CimClassesThatShouldNotBeAbstract (modellingRule, high) + CimClassesThatShouldNotHaveOperations (modellingRule, high) + CimClassesThatShouldNotHaveExplicitDependencies (modellingRule, high) + ClassesThatShouldNotHaveNestingThroughAttribute (modellingRule, high) + CimClassesNeverUsedInRelationships (modellingRule, high) + ClassesWithUnallowedTagNames (modellingRule, high) + CimDatatypeClassesWithInvalidAttributes (modellingRule, high) + ClassesMissingDoc (documentationRule, medium) + ClassesWithBadDocStart (documentationRule, low) + ClassesWithBadDocEnd (documentationRule, low) + ClassesWithBadCharacterInName (namingRule, high) + CimClassesNameStartingWithLowerCase (namingRule, high) + CimClassesNameShouldBeSingular (namingRule, high) + EnumClassesWithSomeCodesMissing (modellingRule, high) + EnumClassesWithDuplicateCodes (modellingRule, high) + ClassesWithSameName (modellingRule, high) + CimClassesNeverUsedAsTypeForAttribute (modellingRule, high) + Available rules for CIM in AttributeValidator (category, severity): + EnumLiteralsWithSuperfluousType (modellingRule, high) + EnumLiteralsWithoutEnumStereotype (modellingRule, high) + AttributesWithInvalidMultiplicity (modellingRule, high) + CimAttributesThatShouldBeOptional (modellingRule, high) + AttributesWithInvalidTypeNull (modellingRule, high) + AttributesWithInvalidTypeString (modellingRule, high) + AttributesWithTypeIdMismatch (modellingRule, high) + CimAttributesThatShouldBePublic (modellingRule, high) + AttributesThatAreStaticButNotConst (modellingRule, high) + CimAttributesThatAreNotStaticNonConstWithInitVal (modellingRule, high) + AttributesThatAreConstNonStatic (modellingRule, high) + AttributesWithUnallowedStereotype (modellingRule, high) + AttributesThatAreEnumsInNonEnumeratedClass (modellingRule, high) + CimAttributesThatShouldBeReplacedWithAssociation (modellingRule, high) + AttributesWhoseTypeIsInformative (modellingRule, high) + AttributesWithUnallowedTagNames (modellingRule, high) + CimAttributesWithFlagInName (namingRule, medium) + AttributesMissingDoc (documentationRule, medium) + AttributesWithBadDocStart (documentationRule, low) + AttributesWithBadDocEnd (documentationRule, low) + CimAttributesWithBadCharacterInName (namingRule, high) + AttributesWithInexistingEnumLiteralAsInitValue (permissiveTool, high) + CimAttributesNameStartingWithUpperCase (namingRule, high) + CimAttributesNameShouldBeSingular (namingRule, high) + CimAttributesNameShouldNotStartWithClassName (namingRule, medium) + AttributesWithTypeFromUnallowedOwner (modellingRule, high) + Available rules for CIM in OperationValidator (category, severity): + OperationsWithUpperCaseName (namingRule, medium) + OperationsWithUnallowedStereotype (modellingRule, high) + OperationParametersWithUnallowedStereotype (modellingRule, high) + OperationsWithInvalidReturnTypeNull (modellingRule, high) + OperationsWithInvalidArgTypeNull (modellingRule, high) + OperationsWithInvalidExcTypeNull (modellingRule, high) + OperationsWithUnallowedTagNames (modellingRule, high) + OperationParametersWithUnallowedTagNames (modellingRule, high) + OperationsMissingDoc (documentationRule, medium) + OperationParametersMissingDoc (documentationRule, medium) + OperationsWithBadDocStart (documentationRule, low) + OperationParametersWithBadDocStart (documentationRule, low) + OperationsWithBadDocEnd (documentationRule, low) + OperationParametersWithBadDocEnd (documentationRule, low) + OperationsWithBadCharacterInName (namingRule, high) + OperationParametersWithBadCharacterInName (namingRule, high) + Available rules for CIM in AssociationValidator (category, severity): + AssociationsWithExplicitDirection (modellingRule, high) + AssociationsWithRoleBadDirection (modellingRule, high) + AssociationsWithDoc (documentationRule, low) + AssociationsWithSameDocOnBothEnds (documentationRule, medium) + AssociationsWithName (namingRule, medium) + AssociationsWithUnallowedStereotype (modellingRule, high) + AssociationEndsWithUnallowedStereotype (modellingRule, high) + AssociationsMissingInformativeStereotype (modellingRule, high) + AssociationsWithUnallowedTagNames (modellingRule, high) + AssociationEndsWithUnallowedTagNames (modellingRule, high) + AssociationsWithNoMultiplicity (modellingRule, high) + AssociationsWithWrongSource (modellingRule, high) + AssociationEndsMissingDoc (documentationRule, medium) + AssociationEndsWithBadDocStart (documentationRule, low) + AssociationEndsWithBadDocEnd (documentationRule, low) + AssociationEndsWithBadCharacterInName (namingRule, high) + CimAssociationEndsNameStartingWithLowerCase (namingRule, high) + CimAssociationEndsNameShouldBePlural (namingRule, high) + CimAssociationEndsNameShouldBeSingular (namingRule, high) + Available rules for CIM in DependencyValidator (category, severity): + DependenciesWithUnallowedStereotype (modellingRule, high) + DependenciesWithUnallowedDirection (modellingRule, high) + DependenciesWithUnallowedTagNames (modellingRule, high) + Available rules for CIM in DiagramValidator (category, severity): + DiagramsWithBadOrientation (formatting, low) + DiagramsWithUnallowedStereotype (modellingRule, high) + DiagramsMissingDoc (documentationRule, medium) + DiagramsWithBadDocStart (documentationRule, low) + DiagramsWithBadDocEnd (documentationRule, low) + DiagramsWithBadCharacterInName (namingRule, high) + for IEC61850: + Available rules for IEC61850 in PackageValidator (category, severity): + PackageUnexpectedElements (modellingRule, medium) + PackageUnexpectedConnectors (modellingRule, medium) + PackagesWithSelfDependency (permissiveTool, high) + PackagesWithUnallowedStereotype (modellingRule, high) + PackagesTopLevelWithoutVersionClass (modellingRule, high) + Iec61850PackagesThatShouldHaveAliasAsTitle (modellingRule, high) + PackagesWithUnallowedTagNames (modellingRule, high) + PackagesMissingDoc (documentationRule, medium) + PackagesWithBadDocStart (documentationRule, low) + PackagesWithBadDocEnd (documentationRule, low) + PackagesWithBadCharacterInName (namingRule, high) + PackagesWithSameName (modellingRule, high) + Available rules for IEC61850 in ClassValidator (category, severity): + ClassesWithUnexpectedConnectors (permissiveTool, high) + EnumClassesWithNoLiterals (modellingRule, high) + EnumClassesWithSingleLiteral (modellingRule, medium) + EnumClassesWithTwoLiterals (modellingRule, low) + EnumClassesWithBadName (modellingRule, high) + ClassesWithDuplicateInheritedAttributeNames (modellingRule, high) + ClassesWithDuplicateOwnOrInheritedAssociationEndNames (modellingRule, high) + ClassesWithSelfInheritance (permissiveTool, high) + ClassesWithSelfDependency (permissiveTool, high) + ClassesWithLeafPropSet (modellingRule, high) + ClassesWithRootPropSet (modellingRule, high) + ClassesWithPersistentPropSet (modellingRule, high) + ClassesWithMultipleSuperclasses (modellingRule, high) + ClassesWithSuperclassesFromUnallowedOwner (modellingRule, high) + ClassesThatShouldNotBeAssociationClass (modellingRule, high) + ClassesWithUnallowedStereotype (modellingRule, high) + ClassesThatShouldNotHaveNestingThroughAttribute (modellingRule, high) + Iec61850ClassesThatShouldHaveAliasAsTitle (modellingRule, high) + Iec61850ClassesThatShouldHaveTaggedValuesForDocgen (modellingRule, high) + ClassesWithUnallowedTagNames (modellingRule, high) + Iec61850ClassesWithInvalidConstraints (modellingRule, high) + Iec61850LNClassesWithSuperfluousConstraints (modellingRule, high) + Iec61850ClassesWithMissingCondIDTextInConstraints (modellingRule, high) + ClassesMissingDoc (documentationRule, medium) + ClassesWithBadDocStart (documentationRule, low) + ClassesWithBadDocEnd (documentationRule, low) + ClassesWithBadCharacterInName (namingRule, high) + Iec61850LNClassesInWrongGroup (namingRule, medium) + Iec61850LNClassesMalformedName (namingRule, high) + EnumClassesWithSomeCodesMissing (modellingRule, high) + EnumClassesWithDuplicateCodes (modellingRule, high) + ClassesWithSameName (modellingRule, high) + Available rules for IEC61850 in AttributeValidator (category, severity): + EnumLiteralsWithSuperfluousType (modellingRule, high) + EnumLiteralsWithoutEnumStereotype (modellingRule, high) + AttributesWithInvalidMultiplicity (modellingRule, high) + AttributesWithInvalidTypeNull (modellingRule, high) + AttributesWithInvalidTypeString (modellingRule, high) + AttributesWithTypeIdMismatch (modellingRule, high) + AttributesThatAreStaticButNotConst (modellingRule, high) + AttributesThatAreConstNonStatic (modellingRule, high) + AttributesWithUnallowedStereotype (modellingRule, high) + AttributesThatAreEnumsInNonEnumeratedClass (modellingRule, high) + AttributesWhoseTypeIsInformative (modellingRule, high) + AttributesWithUnallowedTagNames (modellingRule, high) + Iec61850AttributesWithInexistingSibling (modellingRule, high) + AttributesMissingDoc (documentationRule, medium) + AttributesWithBadDocStart (documentationRule, low) + AttributesWithBadDocEnd (documentationRule, low) + Iec61850AttributesWithBadCharacterInName (namingRule, high) + Iec61850DOAttributesWithTooLongName (namingRule, high) + Iec61850FCDAAttributesWithMissingConstraint (modellingRule, high) + AttributesWithInexistingEnumLiteralAsInitValue (permissiveTool, high) + Iec61850DOAttributesWithNameMissingAbbreviation (modellingRule, high) + Iec61850AbbreviationLiteralsNameStartingWithLowerCase (namingRule, high) + Iec61850DOAttributesNameStartingWithLowerCase (namingRule, high) + AttributesWithTypeFromUnallowedOwner (modellingRule, high) + Iec61850DOAbbreviationLiteralsDuplicateName (modellingRule, high) + Iec61850DOAbbreviationLiteralsDuplicateDescription (modellingRule, high) + Iec61850DOAbbreviationLiteralsNeverUsedInDOName (modellingRule, high) + Iec61850DOAttributesWithSameNameDifferentType (modellingRule, high) + Iec61850ConditionLiteralsNeverUsedAsConstraints (modellingRule, high) + Available rules for IEC61850 in OperationValidator (category, severity): + OperationsWithUpperCaseName (namingRule, medium) + OperationsWithUnallowedStereotype (modellingRule, high) + OperationParametersWithUnallowedStereotype (modellingRule, high) + OperationsWithInvalidReturnTypeNull (modellingRule, high) + OperationsWithInvalidArgTypeNull (modellingRule, high) + OperationsWithInvalidExcTypeNull (modellingRule, high) + OperationsWithUnallowedTagNames (modellingRule, high) + OperationParametersWithUnallowedTagNames (modellingRule, high) + OperationsMissingDoc (documentationRule, medium) + OperationParametersMissingDoc (documentationRule, medium) + OperationsWithBadDocStart (documentationRule, low) + OperationParametersWithBadDocStart (documentationRule, low) + OperationsWithBadDocEnd (documentationRule, low) + OperationParametersWithBadDocEnd (documentationRule, low) + OperationsWithBadCharacterInName (namingRule, high) + OperationParametersWithBadCharacterInName (namingRule, high) + Available rules for IEC61850 in AssociationValidator (category, severity): + AssociationsWithExplicitDirection (modellingRule, high) + AssociationsWithRoleBadDirection (modellingRule, high) + AssociationsWithDoc (documentationRule, low) + AssociationsWithSameDocOnBothEnds (documentationRule, medium) + AssociationsWithName (namingRule, medium) + AssociationsWithUnallowedStereotype (modellingRule, high) + AssociationEndsWithUnallowedStereotype (modellingRule, high) + AssociationsMissingInformativeStereotype (modellingRule, high) + AssociationsWithUnallowedTagNames (modellingRule, high) + AssociationEndsWithUnallowedTagNames (modellingRule, high) + AssociationsWithNoMultiplicity (modellingRule, high) + AssociationsWithWrongSource (modellingRule, high) + Iec61850AssociationsThatShouldBePrivate (modellingRule, high) + Iec61850AssociationsWithDifferentEndVisibility (modellingRule, high) + AssociationEndsMissingDoc (documentationRule, medium) + AssociationEndsWithBadDocStart (documentationRule, low) + AssociationEndsWithBadDocEnd (documentationRule, low) + AssociationEndsWithBadCharacterInName (namingRule, high) + Available rules for IEC61850 in DependencyValidator (category, severity): + DependenciesWithUnallowedStereotype (modellingRule, high) + DependenciesWithUnallowedDirection (modellingRule, high) + DependenciesWithUnallowedTagNames (modellingRule, high) + Available rules for IEC61850 in DiagramValidator (category, severity): + DiagramsWithBadOrientation (formatting, low) + DiagramsWithUnallowedStereotype (modellingRule, high) + DiagramsMissingDoc (documentationRule, medium) + DiagramsWithBadDocStart (documentationRule, low) + DiagramsWithBadDocEnd (documentationRule, low) + DiagramsWithBadCharacterInName (namingRule, high) + +Available rules - all: + Available rules in PackageValidator (category, severity): + PackageUnexpectedElements (modellingRule, medium) + PackageUnexpectedConnectors (modellingRule, medium) + PackagesWithSelfDependency (permissiveTool, high) + PackagesWithUnallowedStereotype (modellingRule, high) + PackagesTopLevelWithoutVersionClass (modellingRule, high) + Iec61850PackagesThatShouldHaveAliasAsTitle (modellingRule, high) + PackagesWithUnallowedTagNames (modellingRule, high) + PackagesMissingDoc (documentationRule, medium) + PackagesWithBadDocStart (documentationRule, low) + PackagesWithBadDocEnd (documentationRule, low) + PackagesWithBadCharacterInName (namingRule, high) + PackagesWithSameName (modellingRule, high) + Available rules in ClassValidator (category, severity): + CimClassesWithUnexpectedElements (permissiveTool, high) + ClassesWithUnexpectedConnectors (permissiveTool, high) + EnumClassesWithNoLiterals (modellingRule, high) + CimCompoundClassesWithNoAttributes (modellingRule, high) + EnumClassesWithSingleLiteral (modellingRule, medium) + EnumClassesWithTwoLiterals (modellingRule, low) + EnumClassesWithBadName (modellingRule, high) + CimPrimitiveClassesWithAttributes (modellingRule, high) + CimPrimitiveClassesWithIllegalOwner (modellingRule, high) + ClassesWithDuplicateInheritedAttributeNames (modellingRule, high) + ClassesWithDuplicateOwnOrInheritedAssociationEndNames (modellingRule, high) + ClassesWithSelfInheritance (permissiveTool, high) + ClassesWithSelfDependency (permissiveTool, high) + ClassesWithLeafPropSet (modellingRule, high) + ClassesWithRootPropSet (modellingRule, high) + ClassesWithPersistentPropSet (modellingRule, high) + ClassesWithMultipleSuperclasses (modellingRule, high) + ClassesWithSuperclassesFromUnallowedOwner (modellingRule, high) + ClassesThatShouldNotBeAssociationClass (modellingRule, high) + ClassesWithUnallowedStereotype (modellingRule, high) + CimClassesWithOldDatatypeStereotype (modellingRule, medium) + CimClassesUsedForAttributesButHaveAssociations (modellingRule, high) + CimClassesUsedForAttributesButHaveSubclasses (modellingRule, high) + CimClassesUsedForAttributesButHaveSuperclasses (modellingRule, high) + CimClassesThatShouldNotBeAbstract (modellingRule, high) + CimClassesThatShouldNotHaveOperations (modellingRule, high) + CimClassesThatShouldNotHaveExplicitDependencies (modellingRule, high) + ClassesThatShouldNotHaveNestingThroughAttribute (modellingRule, high) + Iec61850ClassesThatShouldHaveAliasAsTitle (modellingRule, high) + Iec61850ClassesThatShouldHaveTaggedValuesForDocgen (modellingRule, high) + CimClassesNeverUsedInRelationships (modellingRule, high) + ClassesWithUnallowedTagNames (modellingRule, high) + Iec61850ClassesWithInvalidConstraints (modellingRule, high) + Iec61850LNClassesWithSuperfluousConstraints (modellingRule, high) + Iec61850ClassesWithMissingCondIDTextInConstraints (modellingRule, high) + CimDatatypeClassesWithInvalidAttributes (modellingRule, high) + ClassesMissingDoc (documentationRule, medium) + ClassesWithBadDocStart (documentationRule, low) + ClassesWithBadDocEnd (documentationRule, low) + ClassesWithBadCharacterInName (namingRule, high) + CimClassesNameStartingWithLowerCase (namingRule, high) + CimClassesNameShouldBeSingular (namingRule, high) + Iec61850LNClassesInWrongGroup (namingRule, medium) + Iec61850LNClassesMalformedName (namingRule, high) + EnumClassesWithSomeCodesMissing (modellingRule, high) + EnumClassesWithDuplicateCodes (modellingRule, high) + ClassesWithSameName (modellingRule, high) + CimClassesNeverUsedAsTypeForAttribute (modellingRule, high) + Available rules in AttributeValidator (category, severity): + EnumLiteralsWithSuperfluousType (modellingRule, high) + EnumLiteralsWithoutEnumStereotype (modellingRule, high) + AttributesWithInvalidMultiplicity (modellingRule, high) + CimAttributesThatShouldBeOptional (modellingRule, high) + AttributesWithInvalidTypeNull (modellingRule, high) + AttributesWithInvalidTypeString (modellingRule, high) + AttributesWithTypeIdMismatch (modellingRule, high) + CimAttributesThatShouldBePublic (modellingRule, high) + AttributesThatAreStaticButNotConst (modellingRule, high) + CimAttributesThatAreNotStaticNonConstWithInitVal (modellingRule, high) + AttributesThatAreConstNonStatic (modellingRule, high) + AttributesWithUnallowedStereotype (modellingRule, high) + AttributesThatAreEnumsInNonEnumeratedClass (modellingRule, high) + CimAttributesThatShouldBeReplacedWithAssociation (modellingRule, high) + AttributesWhoseTypeIsInformative (modellingRule, high) + AttributesWithUnallowedTagNames (modellingRule, high) + Iec61850AttributesWithInexistingSibling (modellingRule, high) + CimAttributesWithFlagInName (namingRule, medium) + AttributesMissingDoc (documentationRule, medium) + AttributesWithBadDocStart (documentationRule, low) + AttributesWithBadDocEnd (documentationRule, low) + CimAttributesWithBadCharacterInName (namingRule, high) + Iec61850AttributesWithBadCharacterInName (namingRule, high) + Iec61850DOAttributesWithTooLongName (namingRule, high) + Iec61850FCDAAttributesWithMissingConstraint (modellingRule, high) + AttributesWithInexistingEnumLiteralAsInitValue (permissiveTool, high) + Iec61850DOAttributesWithNameMissingAbbreviation (modellingRule, high) + CimAttributesNameStartingWithUpperCase (namingRule, high) + CimAttributesNameShouldBeSingular (namingRule, high) + CimAttributesNameShouldNotStartWithClassName (namingRule, medium) + Iec61850AbbreviationLiteralsNameStartingWithLowerCase (namingRule, high) + Iec61850DOAttributesNameStartingWithLowerCase (namingRule, high) + AttributesWithTypeFromUnallowedOwner (modellingRule, high) + Iec61850DOAbbreviationLiteralsDuplicateName (modellingRule, high) + Iec61850DOAbbreviationLiteralsDuplicateDescription (modellingRule, high) + Iec61850DOAbbreviationLiteralsNeverUsedInDOName (modellingRule, high) + Iec61850DOAttributesWithSameNameDifferentType (modellingRule, high) + Iec61850ConditionLiteralsNeverUsedAsConstraints (modellingRule, high) + Available rules in OperationValidator (category, severity): + OperationsWithUpperCaseName (namingRule, medium) + OperationsWithUnallowedStereotype (modellingRule, high) + OperationParametersWithUnallowedStereotype (modellingRule, high) + OperationsWithInvalidReturnTypeNull (modellingRule, high) + OperationsWithInvalidArgTypeNull (modellingRule, high) + OperationsWithInvalidExcTypeNull (modellingRule, high) + OperationsWithUnallowedTagNames (modellingRule, high) + OperationParametersWithUnallowedTagNames (modellingRule, high) + OperationsMissingDoc (documentationRule, medium) + OperationParametersMissingDoc (documentationRule, medium) + OperationsWithBadDocStart (documentationRule, low) + OperationParametersWithBadDocStart (documentationRule, low) + OperationsWithBadDocEnd (documentationRule, low) + OperationParametersWithBadDocEnd (documentationRule, low) + OperationsWithBadCharacterInName (namingRule, high) + OperationParametersWithBadCharacterInName (namingRule, high) + Available rules in AssociationValidator (category, severity): + AssociationsWithExplicitDirection (modellingRule, high) + AssociationsWithRoleBadDirection (modellingRule, high) + AssociationsWithDoc (documentationRule, low) + AssociationsWithSameDocOnBothEnds (documentationRule, medium) + AssociationsWithName (namingRule, medium) + AssociationsWithUnallowedStereotype (modellingRule, high) + AssociationEndsWithUnallowedStereotype (modellingRule, high) + AssociationsMissingInformativeStereotype (modellingRule, high) + AssociationsWithUnallowedTagNames (modellingRule, high) + AssociationEndsWithUnallowedTagNames (modellingRule, high) + AssociationsWithNoMultiplicity (modellingRule, high) + AssociationsWithWrongSource (modellingRule, high) + Iec61850AssociationsThatShouldBePrivate (modellingRule, high) + Iec61850AssociationsWithDifferentEndVisibility (modellingRule, high) + AssociationEndsMissingDoc (documentationRule, medium) + AssociationEndsWithBadDocStart (documentationRule, low) + AssociationEndsWithBadDocEnd (documentationRule, low) + AssociationEndsWithBadCharacterInName (namingRule, high) + CimAssociationEndsNameStartingWithLowerCase (namingRule, high) + CimAssociationEndsNameShouldBePlural (namingRule, high) + CimAssociationEndsNameShouldBeSingular (namingRule, high) + Available rules in DependencyValidator (category, severity): + DependenciesWithUnallowedStereotype (modellingRule, high) + DependenciesWithUnallowedDirection (modellingRule, high) + DependenciesWithUnallowedTagNames (modellingRule, high) + Available rules in DiagramValidator (category, severity): + DiagramsWithBadOrientation (formatting, low) + DiagramsWithUnallowedStereotype (modellingRule, high) + DiagramsMissingDoc (documentationRule, medium) + DiagramsWithBadDocStart (documentationRule, low) + DiagramsWithBadDocEnd (documentationRule, low) + DiagramsWithBadCharacterInName (namingRule, high) + +2024-09-08 15:10:02,315 [main] DEBUG ModelValidator - +2024-09-08 15:10:02,315 [main] INFO AbstractValidator - +2024-09-08 15:10:02,315 [main] INFO AbstractValidator - ====== Validating 83 (of 83) packages: +2024-09-08 15:10:02,322 [main] WARN PackageValidator - Found 4 packages with unexpected embedded elements (they are present in the model repository, but not kept in the in-memory model) - remove unexpected embedded elements: +2024-09-08 15:10:02,322 [main] WARN PackageValidator - WG13 CIM top package TC57CIM::IEC61970 : [(1497) WG13 CIM state IEC61970::StateInPackage] +2024-09-08 15:10:02,322 [main] WARN PackageValidator - WG14 CIM package IEC61968::Assets : [(3064) WG14 CIM other Assets::Object1] +2024-09-08 15:10:02,322 [main] WARN PackageValidator - WG10 IEC61850 package NewIEC61850_7_2::GenericModel : [(1618) WG10 IEC61850 other <> GenericModel::, (1619) WG10 IEC61850 other <> GenericModel::, (1620) WG10 IEC61850 other <> GenericModel::, (1621) WG10 IEC61850 other <> GenericModel::] +2024-09-08 15:10:02,322 [main] WARN PackageValidator - OTHER_CIM CIM model package /MyCimExtensions : [(3076) OTHER_CIM CIM other <> MyCimExtensions::DFD_Process1] +2024-09-08 15:10:02,322 [main] WARN PackageValidator - Found 4 packages with unexpected embedded connectors (they are present in the model repository, but not kept in the in-memory model) - remove unexpected embedded elements: +2024-09-08 15:10:02,322 [main] WARN PackageValidator - WG13 CIM INF private package IEC61970::InformativeAndPrivate : [(2102) WG13 CIM INF other InformativeAndPrivate:: - Package 'Other'] +2024-09-08 15:10:02,322 [main] WARN PackageValidator - WG14 CIM package IEC61968::Other : [(2102) WG14 CIM other Other:: - Package 'InformativeAndPrivate'] +2024-09-08 15:10:02,322 [main] WARN PackageValidator - OTHER_CIM CIM top package <> MyCimExtensions::Ext1 : [(3458) OTHER_CIM CIM other Ext1:: - Class 'Apple', (3460) OTHER_CIM CIM other Ext1:: - Activity 'DFD_Process1'] +2024-09-08 15:10:02,322 [main] WARN PackageValidator - OTHER_CIM CIM top package MyCimExtensions::Package with space : [(3461) OTHER_CIM CIM other Package with space:: - Class 'DFD_DataStore1', (3462) OTHER_CIM CIM other Package with space:: - Class 'DFD_External1'] +2024-09-08 15:10:02,322 [main] ERROR PackageValidator - Found 3 packages with self-dependency (UML tool allows to create such links, but they are not kept in the the in-memory model - remove self-dependency: +2024-09-08 15:10:02,322 [main] ERROR PackageValidator - WG14 CIM package IEC61968::Other +2024-09-08 15:10:02,323 [main] ERROR PackageValidator - WG10 IEC61850 package WG10::IEC61850_7_3 +2024-09-08 15:10:02,323 [main] ERROR PackageValidator - WG10 IEC61850 package WG10::IEC61850_7_4 +2024-09-08 15:10:02,323 [main] ERROR PackageValidator - Found 3 packages with unallowed stereotype(s) - remove offending stereotype(s) OR use one or more of {CIM=[deprecated, informative], IEC61850=[deprecated, informative]}: +2024-09-08 15:10:02,323 [main] ERROR PackageValidator - OTHER_CIM CIM INF top package <> TC57CIM::Informative : offending stereotypes = [TempPckStereo, SecondPckStereo] +2024-09-08 15:10:02,323 [main] ERROR PackageValidator - WG13 CIM package <> IEC61970::Domain : offending stereotypes = [Global] +2024-09-08 15:10:02,323 [main] ERROR PackageValidator - OTHER_CIM CIM top package <> MyCimExtensions::Ext1 : offending stereotypes = [European] +2024-09-08 15:10:02,323 [main] ERROR PackageValidator - Found 8 top level packages without version class - add Version class: +2024-09-08 15:10:02,323 [main] ERROR PackageValidator - OTHER_CIM CIM INF top package <> TC57CIM::Informative : missing class 'InformativeCIMVersion' +2024-09-08 15:10:02,323 [main] ERROR PackageValidator - WG14 CIM top package TC57CIM::IEC61968 : missing class 'IEC61968CIMVersion' +2024-09-08 15:10:02,323 [main] ERROR PackageValidator - WG16 CIM top package TC57CIM::IEC62325 : missing class 'IEC62325CIMVersion' +2024-09-08 15:10:02,323 [main] ERROR PackageValidator - WG18 IEC61850 top package IEC61850Domain::WG18 : missing class 'WG18UMLVersion' +2024-09-08 15:10:02,323 [main] ERROR PackageValidator - JWG25 IEC61850 top package IEC61850Domain::JWG25 : missing class 'JWG25UMLVersion' +2024-09-08 15:10:02,323 [main] ERROR PackageValidator - OTHER_CIM CIM top package <> MyCimExtensions::Ext1 : missing class 'Ext1CIMVersion' +2024-09-08 15:10:02,324 [main] ERROR PackageValidator - OTHER_CIM CIM top package MyCimExtensions::Package with space : missing class 'Package with spaceCIMVersion' +2024-09-08 15:10:02,324 [main] ERROR PackageValidator - OTHER_IEC61850 IEC61850 top package My61850Extensions::Ext2 : missing class 'Ext2UMLVersion' +2024-09-08 15:10:02,324 [main] ERROR PackageValidator - Found 2 IEC61850 packages used for generating parts 7-3 or 7-4 that are missing alias - add UML alias that will be used for clause heading in auto-generated documents: +2024-09-08 15:10:02,324 [main] ERROR PackageValidator - WG10 IEC61850 package IEC61850_7_4::DOEnums +2024-09-08 15:10:02,324 [main] ERROR PackageValidator - WG17 IEC61850 package IEC51850_7_420::DOEnums_7_420 +2024-09-08 15:10:02,324 [main] ERROR PackageValidator - Found 1 packages with unallowed tag names - remove tags: +2024-09-08 15:10:02,324 [main] ERROR PackageValidator - WG10 IEC61850 package IEC61850_7_4::DOEnums : [dummyPackageTag] +2024-09-08 15:10:02,324 [main] WARN PackageValidator - Found 25 packages missing documentation - add documentation: +2024-09-08 15:10:02,325 [main] WARN PackageValidator - OTHER_CIM CIM model package /TC57CIMProfiles +2024-09-08 15:10:02,325 [main] WARN PackageValidator - OTHER_CIM CIM model package /TC57CIM +2024-09-08 15:10:02,325 [main] WARN PackageValidator - WG13 CIM top package TC57CIM::IEC61970 +2024-09-08 15:10:02,325 [main] WARN PackageValidator - WG13 CIM package Topology::TestEnums +2024-09-08 15:10:02,325 [main] WARN PackageValidator - WG14 CIM package IEC61968::EmbeddedExtension +2024-09-08 15:10:02,325 [main] WARN PackageValidator - WG14 CIM package IEC61968::Assets +2024-09-08 15:10:02,325 [main] WARN PackageValidator - WG14 CIM package IEC61968::Core +2024-09-08 15:10:02,325 [main] WARN PackageValidator - WG14 CIM package IEC61968::Other +2024-09-08 15:10:02,325 [main] WARN PackageValidator - WG14 CIM package IEC61968::Other +2024-09-08 15:10:02,325 [main] WARN PackageValidator - WG16 CIM top package TC57CIM::IEC62325 +2024-09-08 15:10:02,325 [main] WARN PackageValidator - OTHER_IEC61850 IEC61850 model package /IEC61850Domain +2024-09-08 15:10:02,325 [main] WARN PackageValidator - WG10 IEC61850 package WG10::NewIEC61850_7_2 +2024-09-08 15:10:02,326 [main] WARN PackageValidator - WG10 IEC61850 package NewIEC61850_7_2::GenericModel +2024-09-08 15:10:02,326 [main] WARN PackageValidator - WG17 IEC61850 top package IEC61850Domain::WG17 +2024-09-08 15:10:02,326 [main] WARN PackageValidator - WG17 IEC61850 package WG17::IEC51850_7_420 +2024-09-08 15:10:02,326 [main] WARN PackageValidator - WG17 IEC61850 package IEC51850_7_420::DOEnums_7_420 +2024-09-08 15:10:02,326 [main] WARN PackageValidator - WG17 IEC61850 package IEC51850_7_420::DerivedDAs_7_420 +2024-09-08 15:10:02,326 [main] WARN PackageValidator - WG17 IEC61850 package IEC51850_7_420::DerivedCDCs_7_420 +2024-09-08 15:10:02,326 [main] WARN PackageValidator - WG18 IEC61850 top package IEC61850Domain::WG18 +2024-09-08 15:10:02,326 [main] WARN PackageValidator - WG18 IEC61850 package WG18::Abbreviations_410 +2024-09-08 15:10:02,326 [main] WARN PackageValidator - JWG25 IEC61850 top package IEC61850Domain::JWG25 +2024-09-08 15:10:02,326 [main] WARN PackageValidator - OTHER_CIM CIM model package /MyCimExtensions +2024-09-08 15:10:02,326 [main] WARN PackageValidator - OTHER_IEC61850 IEC61850 model package /My61850Extensions +2024-09-08 15:10:02,326 [main] WARN PackageValidator - OTHER_IEC61850 IEC61850 top package My61850Extensions::Ext2 +2024-09-08 15:10:02,326 [main] WARN PackageValidator - OTHER_CIM CIM model package /NewNature +2024-09-08 15:10:02,326 [main] WARN PackageValidator - Found 1 packages whose documentation starts with unallowed character - fix the first character: valid ones are any upper case letter or punctuation marks [', ", (]: +2024-09-08 15:10:02,326 [main] WARN PackageValidator - WG13 CIM package <> IEC61970::Domain : doc='the domain package is a data d...' +2024-09-08 15:10:02,327 [main] WARN PackageValidator - Found 1 packages whose documentation does not end with a dot ('.') - fix the last character: add a dot: +2024-09-08 15:10:02,327 [main] WARN PackageValidator - WG14 CIM top package TC57CIM::IEC61968 : doc='Blah (not ending with ".")' +2024-09-08 15:10:02,327 [main] ERROR PackageValidator - Found 1 packages whose name contains illegal character(s) - rename by removing invalid character(s): +2024-09-08 15:10:02,327 [main] ERROR PackageValidator - OTHER_CIM CIM top package MyCimExtensions::Package with space : invalid characters = [ , ] +2024-09-08 15:10:02,327 [main] ERROR PackageValidator - Found 4 packages that have non-unique name - rename packages to have unique names within model: +2024-09-08 15:10:02,327 [main] ERROR PackageValidator - 1 WG13 CIM package IEC61970::Core : all with the same name = [WG13 IEC61970::Core, WG14 IEC61968::Core] +2024-09-08 15:10:02,327 [main] ERROR PackageValidator - 1 WG14 CIM package IEC61968::Core : all with the same name = [WG13 IEC61970::Core, WG14 IEC61968::Core] +2024-09-08 15:10:02,327 [main] ERROR PackageValidator - 2 WG14 CIM package IEC61968::Other : all with the same name = [WG14 IEC61968::Other, WG14 IEC61968::Other] +2024-09-08 15:10:02,327 [main] ERROR PackageValidator - 2 WG14 CIM package IEC61968::Other : all with the same name = [WG14 IEC61968::Other, WG14 IEC61968::Other] +2024-09-08 15:10:02,327 [main] INFO AbstractValidator - +2024-09-08 15:10:02,327 [main] INFO AbstractValidator - ====== Validating 386 (of 386) classes: +2024-09-08 15:10:02,375 [main] WARN ClassValidator - Found 3 classes with unexpected embedded elements (present in the model repository, but not kept in the in-memory model) - remove embedded elements, or move them out of class: +2024-09-08 15:10:02,376 [main] WARN ClassValidator - WG13 CIM INF root class InformativeAndPrivate::InfClassContainingEmbeddedClass : [(1496) WG13 CIM INF other InfClassContainingEmbeddedClass.EmbeddedClass] +2024-09-08 15:10:02,376 [main] WARN ClassValidator - OTHER_CIM CIM enumeration <> Ext1::FruitBinKind : [(3035) OTHER_CIM CIM other FruitBinKind.Strawberry] +2024-09-08 15:10:02,376 [main] WARN ClassValidator - WG13 CIM class Core::PowerSystemResource : [(1444) WG13 CIM state PowerSystemResource.DummyState] +2024-09-08 15:10:02,376 [main] WARN ClassValidator - Found 3 classes with unexpected embedded connectors (present in the model repository, but not kept in the in-memory model) - remove embedded connectors, or move them out of class: +2024-09-08 15:10:02,376 [main] WARN ClassValidator - OTHER_CIM CIM root class <> MyCimExtensions::DFD_External1 : [(3462) OTHER_CIM CIM other DFD_External1. - ?] +2024-09-08 15:10:02,376 [main] WARN ClassValidator - OTHER_CIM CIM root class <> MyCimExtensions::DFD_DataStore1 : [(3461) OTHER_CIM CIM other DFD_DataStore1. - ?] +2024-09-08 15:10:02,376 [main] WARN ClassValidator - OTHER_CIM CIM class Ext1::Apple : [(3458) OTHER_CIM CIM other Apple. - ?, (3459) OTHER_CIM CIM other Apple. - ?] +2024-09-08 15:10:02,376 [main] ERROR ClassValidator - Found 3 enumeration classes with no literals. Attributes with that type can only be null - add some literals OR remove enumeration class (ensure to change type of attributes that potentially use it): +2024-09-08 15:10:02,376 [main] ERROR ClassValidator - WG14 CIM enumeration <> Other::EmptyEnum : used by [] +2024-09-08 15:10:02,376 [main] ERROR ClassValidator - WG10 IEC61850 enumeration <> GenericModel::GenFC : used by [WG10 GenericModel::GenDataAttribute.FC, WG10 GenericModel::GenFCD.FC, WG10 GenericModel::GenFCDA.FC, WG10 GenericModel::GenSubDataAttribute.FC] +2024-09-08 15:10:02,376 [main] ERROR ClassValidator - WG10 IEC61850 enumeration <> GenericModel::GenPresenceConditions : used by [WG10 GenericModel::GenDataAttribute.Presence, WG10 GenericModel::GenDataObject.Presence, WG10 GenericModel::GenSubDataAttribute.Presence, WG10 GenericModel::GenSubDataObject.Presence] +2024-09-08 15:10:02,376 [main] ERROR ClassValidator - Found 3 CIM compound classes with no attributes. Attributes with that type can only be null - add some attributes OR remove coumpound class (ensure to change type of attributes that potentially use it): +2024-09-08 15:10:02,377 [main] ERROR ClassValidator - OTHER_CIM CIM INF compound <> Informative::SomeSimpleType : used by [OTHER_CIM Ext1::Pear.typeIsInformative] +2024-09-08 15:10:02,377 [main] ERROR ClassValidator - WG14 CIM compound <> Other::EmptyCompound : used by [WG14 Other::AnotherBadDatatype.multiplier] +2024-09-08 15:10:02,377 [main] ERROR ClassValidator - WG13 CIM compound <> Core::OperatingParticipant : used by [] +2024-09-08 15:10:02,377 [main] WARN ClassValidator - Found 1 enumeration classes with single literal. Does it make sense to keep the enumerated type with a single literal? - add some literals OR remove enumeration class (ensure to change type of attributes that potentially use it): +2024-09-08 15:10:02,377 [main] WARN ClassValidator - WG13 CIM enumeration <> Domain::WithSingleLiteral : used by [] +2024-09-08 15:10:02,377 [main] WARN ClassValidator - Found 3 enumeration classes with two literals. Could Boolean be used as type for attributes? - consider using Boolean instead (then remove the enumeration class): +2024-09-08 15:10:02,377 [main] WARN ClassValidator - WG13 CIM enumeration <> Domain::YesNo : used by [WG13 Core::Bay.TestYesNo1, WG13 Core::Bay.testYesNo2, WG14 Other::Equipment.testYesNo1] +2024-09-08 15:10:02,377 [main] WARN ClassValidator - WG13 CIM enumeration <> Topology::TestEnum : used by [] +2024-09-08 15:10:02,377 [main] WARN ClassValidator - WG10 IEC61850 coded enumeration <> ConstructedDAs::SourceKind : used by [WG10 ConstructedDAs::Quality.source] +2024-09-08 15:10:02,377 [main] ERROR ClassValidator - Found 15 enumeration classes with bad name: name should not contain 'type' and/or 'enum', and should end with 'Kind' - rename the enumeration class: +2024-09-08 15:10:02,377 [main] ERROR ClassValidator - WG13 CIM enumeration <> Domain::Currency +2024-09-08 15:10:02,377 [main] ERROR ClassValidator - WG13 CIM enumeration <> Domain::UnitMultiplier +2024-09-08 15:10:02,377 [main] ERROR ClassValidator - WG13 CIM enumeration <> Domain::UnitSymbol +2024-09-08 15:10:02,378 [main] ERROR ClassValidator - WG13 CIM enumeration <> Domain::WithSingleLiteral +2024-09-08 15:10:02,378 [main] ERROR ClassValidator - WG13 CIM enumeration <> Domain::YesNo +2024-09-08 15:10:02,378 [main] ERROR ClassValidator - WG13 CIM private enumeration <> Core::BreakerConfiguration +2024-09-08 15:10:02,378 [main] ERROR ClassValidator - WG13 CIM protected enumeration <> Core::BusbarConfiguration +2024-09-08 15:10:02,378 [main] ERROR ClassValidator - WG13 CIM enumeration <> Core::PhaseCode +2024-09-08 15:10:02,378 [main] ERROR ClassValidator - WG13 CIM enumeration <> Topology::TestEnum +2024-09-08 15:10:02,378 [main] ERROR ClassValidator - WG13 CIM enumeration <> TestEnums::EnumWithSomeIntCodes +2024-09-08 15:10:02,378 [main] ERROR ClassValidator - WG13 CIM enumeration <> TestEnums::EnumWithStringCodes +2024-09-08 15:10:02,378 [main] ERROR ClassValidator - WG13 CIM enumeration <> TestEnums::EnumWithNonUniqueCodes +2024-09-08 15:10:02,378 [main] ERROR ClassValidator - WG14 CIM enumeration <> Other::EmptyEnum +2024-09-08 15:10:02,379 [main] ERROR ClassValidator - WG10 IEC61850 enumeration <> GenericModel::GenFC +2024-09-08 15:10:02,379 [main] ERROR ClassValidator - WG10 IEC61850 enumeration <> GenericModel::GenPresenceConditions +2024-09-08 15:10:02,379 [main] ERROR ClassValidator - Found 1 CIM primitive classes that should, by definition, have no attributes - remove attributes if the class is primitive OR remove Primitivestereotype if attributes are needed: +2024-09-08 15:10:02,379 [main] ERROR ClassValidator - WG14 CIM primitive <> Other::NonEmptyPrimitive +2024-09-08 15:10:02,379 [main] ERROR ClassValidator - Found 1 CIM primitive classes that should belong to WG13, according to TC57 rules - move class to a WG13 package: +2024-09-08 15:10:02,379 [main] ERROR ClassValidator - WG14 CIM primitive <> Other::NonEmptyPrimitive +2024-09-08 15:10:02,379 [main] ERROR ClassValidator - Found 2 classes that have duplicate inherited attribute names - rename offending native attribute(s): +2024-09-08 15:10:02,379 [main] ERROR ClassValidator - WG14 CIM class <> Other::MyClass : duplicate attributes = [[WG14 Other::MyClass.value, WG14 Other::BadDatatypes.value]] +2024-09-08 15:10:02,379 [main] ERROR ClassValidator - WG14 CIM class Other::AttrDuplication : duplicate attributes = [[WG14 Other::AttrDuplication.normaIlyInService, WG14 Other::MyClass.normaIlyInService], [WG14 Other::AttrDuplication.curveStyle, WG14 Other::MyClass.curveStyle], [WG14 Other::MyClass.value, WG14 Other::BadDatatypes.value]] +2024-09-08 15:10:02,379 [main] ERROR ClassValidator - Found 2 classes that have duplicate own or inherited association end names - rename offending native association end(s): +2024-09-08 15:10:02,379 [main] ERROR ClassValidator - WG14 CIM class Other::AttrDuplication : duplicate association ends = [[WG14 AttrDuplication.To, WG14 AttrDuplication.To, WG14 MyClass.To], [WG14 AttrDuplication.From, WG14 AttrDuplication.From, WG14 MyClass.From], [WG14 AttrDuplication.T1, WG14 MyClass.T1]] +2024-09-08 15:10:02,379 [main] ERROR ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenLN0 : duplicate association ends = [[WG10 GenLN0.LogicalDevice, WG10 GenLogicalNode.LogicalDevice]] +2024-09-08 15:10:02,379 [main] DEBUG ClassValidator - Found 0 classes with self-inheritance; model repository allows to create such links, but they are not kept in the the in-memory model - remove self-inheritance connector. +2024-09-08 15:10:02,379 [main] DEBUG ClassValidator - Found 0 classes with self-dependency (UML tool allows to create such links, but they are not kept in the the in-memory model - remove self-dependency. +2024-09-08 15:10:02,379 [main] DEBUG ClassValidator - Found 0 classes with leaf property - remove the leaf property in EA class property editor->advanced. +2024-09-08 15:10:02,380 [main] ERROR ClassValidator - Found 20 classes with root property - remove the root property in EA class property editor->advanced: +2024-09-08 15:10:02,380 [main] ERROR ClassValidator - WG13 CIM root class IEC61970::IEC61970CIMVersion +2024-09-08 15:10:02,380 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::AbsoluteDateTime +2024-09-08 15:10:02,383 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::ActivePower +2024-09-08 15:10:02,383 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::ActivePowerChangeRate +2024-09-08 15:10:02,383 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::ApparentPower +2024-09-08 15:10:02,383 [main] ERROR ClassValidator - WG13 CIM primitive <> Domain::Boolean +2024-09-08 15:10:02,383 [main] ERROR ClassValidator - WG13 CIM enumeration <> Domain::Currency +2024-09-08 15:10:02,383 [main] ERROR ClassValidator - WG13 CIM primitive <> Domain::Float +2024-09-08 15:10:02,383 [main] ERROR ClassValidator - WG13 CIM primitive <> Domain::Integer +2024-09-08 15:10:02,383 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::Money +2024-09-08 15:10:02,383 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::PerCent +2024-09-08 15:10:02,383 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::Seconds +2024-09-08 15:10:02,384 [main] ERROR ClassValidator - WG13 CIM primitive <> Domain::String +2024-09-08 15:10:02,384 [main] ERROR ClassValidator - WG13 CIM enumeration <> Domain::UnitMultiplier +2024-09-08 15:10:02,384 [main] ERROR ClassValidator - WG13 CIM enumeration <> Domain::UnitSymbol +2024-09-08 15:10:02,384 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::Voltage +2024-09-08 15:10:02,384 [main] ERROR ClassValidator - WG13 CIM private enumeration <> Core::BreakerConfiguration +2024-09-08 15:10:02,384 [main] ERROR ClassValidator - WG13 CIM protected enumeration <> Core::BusbarConfiguration +2024-09-08 15:10:02,384 [main] ERROR ClassValidator - WG13 CIM enumeration <> Core::PhaseCode +2024-09-08 15:10:02,384 [main] ERROR ClassValidator - WG14 CIM root class IEC61968::IEC61968Version +2024-09-08 15:10:02,384 [main] DEBUG ClassValidator - Found 0 classes with persistence property - remove the persistence property in EA class property editor. +2024-09-08 15:10:02,384 [main] ERROR ClassValidator - Found 3 classes with multiple superclasses - multiple inheritance is prohibited in standard IEC TC57 - keep only one superclass: +2024-09-08 15:10:02,384 [main] ERROR ClassValidator - WG13 CIM class <> Topology::BusNameMarker : all superclasses = [Core::IdentifiedObject, InformativeAndPrivate::InfClass2] +2024-09-08 15:10:02,384 [main] ERROR ClassValidator - WG13 CIM class Core::BaseVoltage : all superclasses = [Core::IdentifiedObject, Other::BadDatatypes] +2024-09-08 15:10:02,384 [main] ERROR ClassValidator - WG13 CIM class Core::EquipmentContainer : all superclasses = [Core::ConnectivityNodeContainer, Ext1::Pear] +2024-09-08 15:10:02,385 [main] ERROR ClassValidator - Found 2 classes inheriting from classes of prohibited owner according to standard IEC TC57 rules (wrong direction for dependency) - remove inheritance OR move the class to that owner: +2024-09-08 15:10:02,385 [main] ERROR ClassValidator - WG13 CIM class Core::BaseVoltage : offending superclass(es) = [WG14 Other::BadDatatypes] +2024-09-08 15:10:02,385 [main] ERROR ClassValidator - WG13 CIM class Core::EquipmentContainer : offending superclass(es) = [OTHER_CIM Ext1::Pear] +2024-09-08 15:10:02,385 [main] ERROR ClassValidator - Found 1 association classes - transform into a regular class with two explicit associations: +2024-09-08 15:10:02,385 [main] ERROR ClassValidator - OTHER_CIM CIM INF root class Informative::AssocClass +2024-09-08 15:10:02,385 [main] ERROR ClassValidator - Found 11 classes with unallowed stereotype(s) - remove offending stereotype(s) OR use one or more of {CIM=[Primitive, CIMDatatype, deprecated, informative, Compound, enumeration, Datatype], IEC61850=[deprecated, structured, admin, informative, enumeration, interface, packed, basic, cond, abbr, statistics]}: +2024-09-08 15:10:02,385 [main] ERROR ClassValidator - OTHER_CIM CIM INF root class <> Informative::Class1 : offending stereotypes = [TmpInformative] +2024-09-08 15:10:02,385 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::ActivePower : offending stereotypes = [invalid, European, custom] +2024-09-08 15:10:02,385 [main] ERROR ClassValidator - WG13 CIM root class <> Core::OperatingShare : offending stereotypes = [WorkInProgress] +2024-09-08 15:10:02,385 [main] ERROR ClassValidator - WG10 IEC61850 unknown 61850 <> GenericModel::CommAddress : offending stereotypes = [compact] +2024-09-08 15:10:02,385 [main] ERROR ClassValidator - WG10 IEC61850 unknown 61850 <> GenericModel::GenAssociationID : offending stereotypes = [compact] +2024-09-08 15:10:02,386 [main] ERROR ClassValidator - WG10 IEC61850 unknown 61850 <> GenericModel::GenTimeStamp : offending stereotypes = [compact] +2024-09-08 15:10:02,386 [main] ERROR ClassValidator - OTHER_CIM CIM root class <> MyCimExtensions::DFD_External1 : offending stereotypes = [DFD_External] +2024-09-08 15:10:02,386 [main] ERROR ClassValidator - OTHER_CIM CIM root class <> MyCimExtensions::DFD_DataStore1 : offending stereotypes = [DFD_DataStore] +2024-09-08 15:10:02,386 [main] ERROR ClassValidator - OTHER_CIM CIM enumeration <> Ext1::FruitBinKind : offending stereotypes = [European] +2024-09-08 15:10:02,386 [main] ERROR ClassValidator - OTHER_CIM CIM class <> Ext1::Pear : offending stereotypes = [European] +2024-09-08 15:10:02,386 [main] ERROR ClassValidator - WG14 CIM class <> Other::MyClass : offending stereotypes = [packed] +2024-09-08 15:10:02,386 [main] WARN ClassValidator - Found 1 CIM classes with old (pre-CIM15) datatype stereotype 'Datatype' - change stereotype to 'CIMDatatype': +2024-09-08 15:10:02,386 [main] WARN ClassValidator - WG13 CIM datatype <> Domain::Seconds +2024-09-08 15:10:02,386 [main] ERROR ClassValidator - Found 2 CIM classes that should be used as type for attributes, but have associations - replace associations with attributes OR remove stereotype from this class: +2024-09-08 15:10:02,386 [main] ERROR ClassValidator - WG14 CIM datatype <> Other::BadDatatypes +2024-09-08 15:10:02,386 [main] ERROR ClassValidator - WG13 CIM compound <> Core::OperatingParticipant +2024-09-08 15:10:02,387 [main] ERROR ClassValidator - Found 1 CIM classes that should not participate in inheritance but have subclasses - remove inheritance links OR remove stereotype from this class: +2024-09-08 15:10:02,387 [main] ERROR ClassValidator - WG14 CIM datatype <> Other::BadDatatypes : offending subclass(es) = [WG13 Core::BaseVoltage, WG14 Other::MyClass] +2024-09-08 15:10:02,387 [main] ERROR ClassValidator - Found 1 CIM classes that should not participate in inheritance but have superclasses - remove inheritance links OR remove stereotype from this class: +2024-09-08 15:10:02,387 [main] ERROR ClassValidator - WG13 CIM compound <> Core::OperatingParticipant : offending superclass(es) = [WG13 Core::IdentifiedObject] +2024-09-08 15:10:02,387 [main] ERROR ClassValidator - Found 1 CIM classes that are abstract - in standard CIM, no classes should be abstract - edit class properties in EA and unselect 'abstract': +2024-09-08 15:10:02,387 [main] ERROR ClassValidator - WG14 CIM class <> Other::MyClass +2024-09-08 15:10:02,387 [main] ERROR ClassValidator - Found 3 CIM classes that have operations - in standard CIM, no classes should have operations - remove operations from the class: +2024-09-08 15:10:02,387 [main] ERROR ClassValidator - OTHER_CIM CIM root class Package with space::My class +2024-09-08 15:10:02,387 [main] ERROR ClassValidator - WG13 CIM class Core::PowerSystemResource +2024-09-08 15:10:02,387 [main] ERROR ClassValidator - WG13 CIM class Core::VoltageLevel +2024-09-08 15:10:02,387 [main] ERROR ClassValidator - Found 1 CIM classes that have explicit UML dependencies on other classes - in standard CIM, no classes should have explicit dependencies - remove inter-class UML dependencies: +2024-09-08 15:10:02,387 [main] ERROR ClassValidator - WG14 CIM class <> Other::MyClass +2024-09-08 15:10:02,387 [main] ERROR ClassValidator - Found 1 classes that use themselves as type for their attribute - nesting (recursion) through attributes is not allowed - change type for those attributes that has the same type as their containing class: +2024-09-08 15:10:02,388 [main] ERROR ClassValidator - WG14 CIM datatype <> Other::BadDatatypes +2024-09-08 15:10:02,388 [main] ERROR ClassValidator - Found 4 classes used for generating IEC61850 parts 7-3 or 7-4 that are missing alias - needed as title in the doc - add alias, otherwise the title in the doc will be odd: +2024-09-08 15:10:02,388 [main] ERROR ClassValidator - WG10 IEC61850 enumeration <> TriggerOptions::TrgOpKind +2024-09-08 15:10:02,388 [main] ERROR ClassValidator - WG10 IEC61850 coded enumeration <> CoreTypes::TimeAccuracyKind +2024-09-08 15:10:02,388 [main] ERROR ClassValidator - WG10 IEC61850 other 61850 CDCControl::SPC +2024-09-08 15:10:02,388 [main] ERROR ClassValidator - WG10 IEC61850 primitive CDC CDCStatusInfo::EXY +2024-09-08 15:10:02,388 [main] DEBUG ClassValidator - Found 0 classes used for generating LN mappings between IEC 61850-5 and IEC 61850-7-4 that are missing tagged values needed for doc geneneration - add required tagged values. +2024-09-08 15:10:02,388 [main] ERROR ClassValidator - Found 7 CIM classes never used in any association or inheritance - should this class be removed?: +2024-09-08 15:10:02,388 [main] ERROR ClassValidator - OTHER_CIM CIM INF root class Informative::AssocClass +2024-09-08 15:10:02,388 [main] ERROR ClassValidator - OTHER_CIM CIM INF root class Informative::HasIllegalTypeForAttr +2024-09-08 15:10:02,388 [main] ERROR ClassValidator - WG13 CIM INF root class InformativeAndPrivate::EmbeddedClass +2024-09-08 15:10:02,388 [main] ERROR ClassValidator - WG14 CIM root class IEC61968::IEC61968Version +2024-09-08 15:10:02,389 [main] ERROR ClassValidator - WG14 CIM root class Other::Equipment +2024-09-08 15:10:02,389 [main] ERROR ClassValidator - OTHER_CIM CIM root class <> MyCimExtensions::DFD_External1 +2024-09-08 15:10:02,389 [main] ERROR ClassValidator - OTHER_CIM CIM root class <> MyCimExtensions::DFD_DataStore1 +2024-09-08 15:10:02,389 [main] ERROR ClassValidator - Found 8 class with unallowed tag names - remove tags: +2024-09-08 15:10:02,389 [main] ERROR ClassValidator - WG10 IEC61850 enumeration <> DAEnums::SIUnitKind : [scl] +2024-09-08 15:10:02,389 [main] ERROR ClassValidator - WG10 IEC61850 enumeration <> DAEnums::MultiplierKind : [scl] +2024-09-08 15:10:02,389 [main] ERROR ClassValidator - WG10 IEC61850 enumeration <> DAEnums::PhaseAngleReferenceKind : [scl] +2024-09-08 15:10:02,389 [main] ERROR ClassValidator - WG10 IEC61850 enumeration <> DOEnums::HealthKind : [scl] +2024-09-08 15:10:02,389 [main] ERROR ClassValidator - WG10 IEC61850 enumeration <> DOEnums::BehaviourModeKind : [scl] +2024-09-08 15:10:02,389 [main] ERROR ClassValidator - WG10 IEC61850 enumeration <> DOEnums::CalcMethodKind : [scl] +2024-09-08 15:10:02,389 [main] ERROR ClassValidator - WG13 CIM class Core::Terminal : [dummyCimTag] +2024-09-08 15:10:02,389 [main] ERROR ClassValidator - WG13 CIM compound <> Core::OperatingParticipant : [dummyCimTag] +2024-09-08 15:10:02,389 [main] ERROR ClassValidator - Found 3 IEC61850 classes that have constraints not defined as literals - fix constraint(s) name OR add new presence condition: +2024-09-08 15:10:02,389 [main] ERROR ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenFCDA : offending constraints = [FCConstraint] +2024-09-08 15:10:02,389 [main] ERROR ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenLN0 : offending constraints = [inv: self.LNName = "LLN0"] +2024-09-08 15:10:02,389 [main] ERROR ClassValidator - WG10 IEC61850 composed DA ConstructedDAs::AnalogueValue : offending constraints = [AtLeastOne] +2024-09-08 15:10:02,390 [main] ERROR ClassValidator - Found 15 IEC61850 classes that have constraints with siblings that do not exist - fix constraint(s) argument OR add DO matching the argument OR remove constraint: +2024-09-08 15:10:02,390 [main] ERROR ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenFCDA : [constraint 'FCConstraint' for inexisting 'inv'] +2024-09-08 15:10:02,390 [main] ERROR ClassValidator - WG10 IEC61850 LN LNGroupL::LPHD : [constraint 'MF(2)' for inexisting 'RsstatAlmMthClc'] +2024-09-08 15:10:02,390 [main] ERROR ClassValidator - WG10 IEC61850 LN LNGroupL::LLN0 : [constraint 'MOrootLD' for inexisting 'Mod'][constraint 'Omulti' for inexisting 'InRef'] +2024-09-08 15:10:02,390 [main] ERROR ClassValidator - WG10 IEC61850 LN <> LogicalNodes::StatisticsLN : [constraint 'MF(ClcMth)' for inexisting 'ClcMod,ClcIntvPer,ClcIntvTyp'] +2024-09-08 15:10:02,390 [main] ERROR ClassValidator - WG10 IEC61850 LN LNGroupG::GGIO : [constraint 'Omulti' for inexisting 'AnOut'] +2024-09-08 15:10:02,390 [main] ERROR ClassValidator - WG10 IEC61850 LN LNGroupC::CALH : [constraint 'AtLeastOne(1)' for inexisting 'GrInd'] +2024-09-08 15:10:02,390 [main] ERROR ClassValidator - WG10 IEC61850 LN LNGroupP::PDIF : [constraint 'AtMostOne' for inexisting 'LoSet,HiSet'] +2024-09-08 15:10:02,390 [main] ERROR ClassValidator - WG10 IEC61850 primitive CDC CommonDataClasses::BasePrimitiveCDC : [constraint 'MOcdcNs' for inexisting 'cdcName'][constraint 'MOdataNs' for inexisting 'dataNs'] +2024-09-08 15:10:02,390 [main] ERROR ClassValidator - WG10 IEC61850 primitive CDC CommonDataClasses::SubstitutionCDC : [constraint 'MFsubst' for inexisting 'subID'] +2024-09-08 15:10:02,390 [main] ERROR ClassValidator - WG10 IEC61850 primitive CDC <> CDCAnalogueInfo::CMV : [constraint 'MFscaledAngV' for inexisting 'angSVC'][constraint 'MFscaledMagV' for inexisting 'magSVC'] +2024-09-08 15:10:02,390 [main] ERROR ClassValidator - WG10 IEC61850 primitive CDC <> CDCControl::BAC : [constraint 'AllOrNonePerGroup(1)' for inexisting 'q,t'][constraint 'MFscaledAV' for inexisting 'sVC'] +2024-09-08 15:10:02,391 [main] ERROR ClassValidator - WG10 IEC61850 primitive CDC CDCStatusInfo::ACD : [constraint 'AllOrNonePerGroup(1)' for inexisting 'dirPhsA'][constraint 'AllOrNonePerGroup(2)' for inexisting 'dirPhsB'][constraint 'AllOrNonePerGroup(3)' for inexisting 'phsC,dirPhsC'][constraint 'AllOrNonePerGroup(4)' for inexisting 'neut,dirNeut'] +2024-09-08 15:10:02,391 [main] ERROR ClassValidator - WG10 IEC61850 primitive CDC CDCDescription::LPL : [constraint 'MOln0' for inexisting 'configRev'] +2024-09-08 15:10:02,391 [main] ERROR ClassValidator - WG10 IEC61850 composed CDC CommonDataClasses::BaseComposedCDC : [constraint 'MOcdcNs' for inexisting 'cdcName'][constraint 'MOdataNs' for inexisting 'dataNs'] +2024-09-08 15:10:02,391 [main] ERROR ClassValidator - WG10 IEC61850 composed CDC <> CDCAnalogueInfo::HarmonicMeasurandCDC : [constraint 'MFrms' for inexisting 'rmsCyc'] +2024-09-08 15:10:02,391 [main] ERROR ClassValidator - Found 1 IEC61850 classes that have constraints with 'condID' argument, but no text associated with it - add text to constraint(s) note OR use presence condition that does not require 'condID': +2024-09-08 15:10:02,391 [main] ERROR ClassValidator - WG10 IEC61850 LN LNGroupL::LLN0 : offending constraints = [MOcond(1)] +2024-09-08 15:10:02,391 [main] ERROR ClassValidator - Found 4 CIM datatype classes that should have at least attributes with type kinds {value=PRIM, unit=ENUM, multiplier=ENUM} - remove stereotype OR add missing attributes: +2024-09-08 15:10:02,392 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::AbsoluteDateTime : [missing 'value'] [missing 'unit'] [missing 'multiplier'] +2024-09-08 15:10:02,392 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::ActivePowerChangeRate : [wrong kind 'NULL_CIM' for type of 'value'] +2024-09-08 15:10:02,392 [main] ERROR ClassValidator - WG14 CIM datatype <> Other::BadDatatypes : [wrong kind 'DT' for type of 'value'][missing 'multiplier'] +2024-09-08 15:10:02,392 [main] ERROR ClassValidator - WG14 CIM datatype <> Other::AnotherBadDatatype : [wrong kind 'ENUM' for type of 'value'][wrong kind 'PRIM' for type of 'unit'][wrong kind 'COMP' for type of 'multiplier'] +2024-09-08 15:10:02,392 [main] WARN ClassValidator - Found 134 classes missing documentation - add documentation: +2024-09-08 15:10:02,392 [main] WARN ClassValidator - WG13 CIM datatype <> Domain::ActivePowerChangeRate +2024-09-08 15:10:02,393 [main] WARN ClassValidator - WG13 CIM enumeration <> Domain::WithSingleLiteral +2024-09-08 15:10:02,393 [main] WARN ClassValidator - WG13 CIM enumeration <> Domain::YesNo +2024-09-08 15:10:02,393 [main] WARN ClassValidator - WG13 CIM enumeration <> TestEnums::EnumWithSomeIntCodes +2024-09-08 15:10:02,393 [main] WARN ClassValidator - WG13 CIM enumeration <> TestEnums::EnumWithStringCodes +2024-09-08 15:10:02,393 [main] WARN ClassValidator - WG13 CIM enumeration <> TestEnums::EnumWithNonUniqueCodes +2024-09-08 15:10:02,393 [main] WARN ClassValidator - WG14 CIM root class Assets::AssetInfo +2024-09-08 15:10:02,393 [main] WARN ClassValidator - WG14 CIM datatype <> Other::BadDatatypes +2024-09-08 15:10:02,393 [main] WARN ClassValidator - WG14 CIM root class Other::MyClass +2024-09-08 15:10:02,393 [main] WARN ClassValidator - WG14 CIM enumeration <> Other::EmptyEnum +2024-09-08 15:10:02,393 [main] WARN ClassValidator - WG14 CIM primitive <> Other::NonEmptyPrimitive +2024-09-08 15:10:02,393 [main] WARN ClassValidator - WG14 CIM datatype <> Other::AnotherBadDatatype +2024-09-08 15:10:02,393 [main] WARN ClassValidator - WG14 CIM compound <> Other::EmptyCompound +2024-09-08 15:10:02,393 [main] WARN ClassValidator - WG10 IEC61850 enumeration <> GenericModel::GenFC +2024-09-08 15:10:02,394 [main] WARN ClassValidator - WG10 IEC61850 enumeration <> GenericModel::GenPresenceConditions +2024-09-08 15:10:02,394 [main] WARN ClassValidator - WG10 IEC61850 unknown 61850 <> GenericModel::GenTimeStamp +2024-09-08 15:10:02,394 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::AccessPoint +2024-09-08 15:10:02,394 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::FileSystem +2024-09-08 15:10:02,394 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenBOOLEAN +2024-09-08 15:10:02,394 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenCommonDataClass +2024-09-08 15:10:02,394 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenConstructedType +2024-09-08 15:10:02,394 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenDataAttribute +2024-09-08 15:10:02,394 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenDataObject +2024-09-08 15:10:02,394 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenDataSet +2024-09-08 15:10:02,394 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenFCD +2024-09-08 15:10:02,394 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenFile +2024-09-08 15:10:02,394 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenIED +2024-09-08 15:10:02,394 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenINT32U +2024-09-08 15:10:02,394 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenLogicalDevice +2024-09-08 15:10:02,395 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenLogicalNode +2024-09-08 15:10:02,395 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenMCAA +2024-09-08 15:10:02,395 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenObjRef +2024-09-08 15:10:02,395 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenObjectName +2024-09-08 15:10:02,395 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenServer +2024-09-08 15:10:02,395 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenSubDataAttribute +2024-09-08 15:10:02,395 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenSubDataObject +2024-09-08 15:10:02,395 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenTPAA +2024-09-08 15:10:02,395 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenTriggerConditions +2024-09-08 15:10:02,395 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenVisString255 +2024-09-08 15:10:02,395 [main] WARN ClassValidator - WG10 IEC61850 other 61850 IEC61850_7_2::IEC61850_7_2Namespace +2024-09-08 15:10:02,395 [main] WARN ClassValidator - WG10 IEC61850 other 61850 IEC61850_7_3::IEC61850_7_3Namespace +2024-09-08 15:10:02,395 [main] WARN ClassValidator - WG10 IEC61850 enumeration <> DAEnums::PhaseFaultDirectionKind +2024-09-08 15:10:02,395 [main] WARN ClassValidator - WG10 IEC61850 enumeration <> DAEnums::PhaseAngleReferenceKind +2024-09-08 15:10:02,396 [main] WARN ClassValidator - WG10 IEC61850 other 61850 CDCControl::SPC +2024-09-08 15:10:02,396 [main] WARN ClassValidator - WG10 IEC61850 other 61850 IEC61850_7_4::IEC61850_7_4Namespace +2024-09-08 15:10:02,396 [main] WARN ClassValidator - WG10 IEC61850 enumeration <> DOEnums::BaseKind +2024-09-08 15:10:02,396 [main] WARN ClassValidator - WG17 IEC61850 other 61850 IEC51850_7_420::IEC61850_7_420Namespace +2024-09-08 15:10:02,396 [main] WARN ClassValidator - WG17 IEC61850 enumeration <> DOEnums_7_420::MaterialTransitionKind +2024-09-08 15:10:02,396 [main] WARN ClassValidator - OTHER_CIM CIM root class <> MyCimExtensions::DFD_External1 +2024-09-08 15:10:02,396 [main] WARN ClassValidator - OTHER_CIM CIM root class <> MyCimExtensions::DFD_DataStore1 +2024-09-08 15:10:02,396 [main] WARN ClassValidator - OTHER_CIM CIM root class Ext1::Fruit +2024-09-08 15:10:02,396 [main] WARN ClassValidator - OTHER_CIM CIM enumeration <> Ext1::FruitBinKind +2024-09-08 15:10:02,396 [main] WARN ClassValidator - OTHER_CIM CIM root class Ext1::Village +2024-09-08 15:10:02,396 [main] WARN ClassValidator - OTHER_CIM CIM root class Package with space::My class +2024-09-08 15:10:02,396 [main] WARN ClassValidator - OTHER_CIM CIM root class Package with space::Other-with_invalid name +2024-09-08 15:10:02,396 [main] WARN ClassValidator - OTHER_IEC61850 IEC61850 other 61850 Ext2::Animal +2024-09-08 15:10:02,396 [main] WARN ClassValidator - OTHER_CIM CIM class <> Ext1::Pear +2024-09-08 15:10:02,396 [main] WARN ClassValidator - WG14 CIM class <> Other::MyClass +2024-09-08 15:10:02,396 [main] WARN ClassValidator - WG14 CIM class Other::AttrDuplication +2024-09-08 15:10:02,396 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::ServiceAccessPoint +2024-09-08 15:10:02,397 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenLN0 +2024-09-08 15:10:02,397 [main] WARN ClassValidator - WG10 IEC61850 LN LNGroupL::KXYZ +2024-09-08 15:10:02,397 [main] WARN ClassValidator - WG10 IEC61850 primitive CDC CDCServiceTracking::BTS +2024-09-08 15:10:02,397 [main] WARN ClassValidator - WG10 IEC61850 control tracking CDC CDCServiceTracking::CTS +2024-09-08 15:10:02,397 [main] WARN ClassValidator - WG10 IEC61850 primitive CDC CDCServiceTracking::GTS +2024-09-08 15:10:02,397 [main] WARN ClassValidator - WG10 IEC61850 primitive CDC CDCServiceTracking::LTS +2024-09-08 15:10:02,397 [main] WARN ClassValidator - WG10 IEC61850 primitive CDC CDCServiceTracking::MTS +2024-09-08 15:10:02,397 [main] WARN ClassValidator - WG10 IEC61850 primitive CDC CDCServiceTracking::NTS +2024-09-08 15:10:02,397 [main] WARN ClassValidator - WG10 IEC61850 primitive CDC CDCServiceTracking::OTS +2024-09-08 15:10:02,398 [main] WARN ClassValidator - WG10 IEC61850 primitive CDC CDCServiceTracking::STS +2024-09-08 15:10:02,398 [main] WARN ClassValidator - WG10 IEC61850 primitive CDC CDCServiceTracking::UTS +2024-09-08 15:10:02,398 [main] WARN ClassValidator - WG10 IEC61850 enumeration CDC DerivedCDCs::ENSEnumDA +2024-09-08 15:10:02,398 [main] WARN ClassValidator - WG10 IEC61850 primitive CDC CDCStatusInfo::EXY +2024-09-08 15:10:02,398 [main] WARN ClassValidator - WG10 IEC61850 primitive CDC DerivedCDCs::EXYBehaviourMode +2024-09-08 15:10:02,398 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::BOOLEAN_BL +2024-09-08 15:10:02,398 [main] WARN ClassValidator - WG10 IEC61850 enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_CF +2024-09-08 15:10:02,398 [main] WARN ClassValidator - WG10 IEC61850 enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_CF_dchg +2024-09-08 15:10:02,398 [main] WARN ClassValidator - WG10 IEC61850 enumeration FCDA FCDAs::EnumDA_CF_dchg +2024-09-08 15:10:02,399 [main] WARN ClassValidator - WG10 IEC61850 enumeration FCDA FCDAs::PhaseAngleReference_CF_dchg +2024-09-08 15:10:02,399 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::BOOLEAN_CF_dchg +2024-09-08 15:10:02,399 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::INT16U_CF_dchg +2024-09-08 15:10:02,399 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::INT32U_CF_dchg +2024-09-08 15:10:02,399 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::INT32_CF_dchg +2024-09-08 15:10:02,399 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::RangeConfig_CF_dchg +2024-09-08 15:10:02,399 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::INT16U_CF +2024-09-08 15:10:02,399 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::Point_DC +2024-09-08 15:10:02,399 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::UNICODE_STRING255_DC +2024-09-08 15:10:02,399 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::VISIBLE_STRING255_EX +2024-09-08 15:10:02,399 [main] WARN ClassValidator - WG10 IEC61850 enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_MX +2024-09-08 15:10:02,399 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::AnalogueValue_MX_dchg +2024-09-08 15:10:02,399 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::BOOLEAN_MX_dchg +2024-09-08 15:10:02,400 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::AnalogueValue_MX_dchg_dupd +2024-09-08 15:10:02,400 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::Quality_MX_qchg +2024-09-08 15:10:02,400 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::AnalogueValue_MX +2024-09-08 15:10:02,400 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::BOOLEAN_OR_dchg +2024-09-08 15:10:02,400 [main] WARN ClassValidator - WG10 IEC61850 FCDA MetaModelFCsAndTrgOps::FCDA_SE_dchg +2024-09-08 15:10:02,400 [main] WARN ClassValidator - WG10 IEC61850 enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_SE_dchg +2024-09-08 15:10:02,400 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::BOOLEAN_SE +2024-09-08 15:10:02,400 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::Point_SE +2024-09-08 15:10:02,400 [main] WARN ClassValidator - WG10 IEC61850 FCDA MetaModelFCsAndTrgOps::FCDA_SG_dchg +2024-09-08 15:10:02,400 [main] WARN ClassValidator - WG10 IEC61850 enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_SG_dchg +2024-09-08 15:10:02,400 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::BOOLEAN_SG +2024-09-08 15:10:02,400 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::Point_SG +2024-09-08 15:10:02,400 [main] WARN ClassValidator - WG10 IEC61850 FCDA MetaModelFCsAndTrgOps::FCDA_SP_dchg +2024-09-08 15:10:02,400 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::BOOLEAN_SP_dchg +2024-09-08 15:10:02,400 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::Point_SP +2024-09-08 15:10:02,401 [main] WARN ClassValidator - WG10 IEC61850 enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_ST +2024-09-08 15:10:02,401 [main] WARN ClassValidator - WG10 IEC61850 enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_ST_dchg +2024-09-08 15:10:02,401 [main] WARN ClassValidator - WG10 IEC61850 coded enumeration FCDA MetaModelFCsAndTrgOps::PackedEnumFCDA_SP_dchg +2024-09-08 15:10:02,401 [main] WARN ClassValidator - WG10 IEC61850 coded enumeration FCDA FCDAs::DpStatus_ST_dchg +2024-09-08 15:10:02,401 [main] WARN ClassValidator - WG10 IEC61850 enumeration FCDA FCDAs::EnumDA_ST_dchg +2024-09-08 15:10:02,401 [main] WARN ClassValidator - WG10 IEC61850 enumeration FCDA FCDAs::PhaseFaultDirection_ST_dchg +2024-09-08 15:10:02,401 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::BOOLEAN_ST_dchg +2024-09-08 15:10:02,401 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::INT32_ST_dchg +2024-09-08 15:10:02,401 [main] WARN ClassValidator - WG10 IEC61850 FCDA MetaModelFCsAndTrgOps::FCDA_ST_dchg_dupd +2024-09-08 15:10:02,401 [main] WARN ClassValidator - WG10 IEC61850 enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_ST_dchg_dupd +2024-09-08 15:10:02,401 [main] WARN ClassValidator - WG10 IEC61850 enumeration FCDA FCDAs::EnumDA_ST_dchg_dupd +2024-09-08 15:10:02,401 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::INT32_ST_dchg_dupd +2024-09-08 15:10:02,401 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::Quality_ST_qchg +2024-09-08 15:10:02,402 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::TimeStamp_ST +2024-09-08 15:10:02,402 [main] WARN ClassValidator - WG10 IEC61850 enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_SV +2024-09-08 15:10:02,402 [main] WARN ClassValidator - WG10 IEC61850 coded enumeration FCDA MetaModelFCsAndTrgOps::PackedEnumFCDA_SV +2024-09-08 15:10:02,402 [main] WARN ClassValidator - WG10 IEC61850 coded enumeration FCDA FCDAs::DpStatus_SV +2024-09-08 15:10:02,402 [main] WARN ClassValidator - WG10 IEC61850 enumeration FCDA FCDAs::EnumDA_SV +2024-09-08 15:10:02,402 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::BOOLEAN_SV +2024-09-08 15:10:02,402 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::Quality_SV +2024-09-08 15:10:02,402 [main] WARN ClassValidator - WG10 IEC61850 packed list DA MetaModel::PackedPrimitiveDA +2024-09-08 15:10:02,402 [main] WARN ClassValidator - WG10 IEC61850 coded enumeration DA MetaModel::PackedEnumDA +2024-09-08 15:10:02,402 [main] WARN ClassValidator - WG17 IEC61850 enumeration DA DerivedDAs_7_420::Material_control +2024-09-08 15:10:02,402 [main] WARN ClassValidator - WG17 IEC61850 enumeration <> DOEnums_7_420::ExtBaseKind +2024-09-08 15:10:02,402 [main] WARN ClassValidator - OTHER_CIM CIM class Ext1::Apple +2024-09-08 15:10:02,402 [main] WARN ClassValidator - OTHER_CIM CIM class Ext1::Strawberry +2024-09-08 15:10:02,402 [main] WARN ClassValidator - OTHER_IEC61850 IEC61850 other 61850 Ext2::Dog +2024-09-08 15:10:02,402 [main] WARN ClassValidator - OTHER_IEC61850 IEC61850 other 61850 Ext2::Horse +2024-09-08 15:10:02,403 [main] WARN ClassValidator - Found 27 classes whose documentation starts with unallowed character - fix the first character: valid ones are any upper case letter or punctuation marks [', ", (]: +2024-09-08 15:10:02,403 [main] WARN ClassValidator - WG14 CIM root class Other::Equipment : doc='doc' +2024-09-08 15:10:02,403 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::SUBSTITUTION : doc='part 7-2, sec. 12 +Original do...' +2024-09-08 15:10:02,403 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::CONTROL : doc='part 7-2, sec. 17 +Original do...' +2024-09-08 15:10:02,403 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::TIME : doc='part 7-2, sec. 18 +Original do...' +2024-09-08 15:10:02,403 [main] WARN ClassValidator - WG13 CIM class Core::BasePower : doc='the BasePower class defines th...' +2024-09-08 15:10:02,403 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::LD : doc='part 7-2, sec. 8 +Original doc...' +2024-09-08 15:10:02,403 [main] WARN ClassValidator - WG10 IEC61850 LN MetaModel::LN : doc='part 7-2, sec. 9 +Original doc...' +2024-09-08 15:10:02,403 [main] WARN ClassValidator - WG10 IEC61850 LN MetaModel::LNPHD : doc='part 7-2, section 8.1.2.3 +Not...' +2024-09-08 15:10:02,403 [main] WARN ClassValidator - WG10 IEC61850 LN MetaModel::LN0 : doc='part 7-2, sec. 9 +IEC 61850-7-...' +2024-09-08 15:10:02,403 [main] WARN ClassValidator - WG10 IEC61850 LN MetaModel::LNDOM : doc='part 7-2, section 8.1.2.3 +Not...' +2024-09-08 15:10:02,404 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::CDC : doc='part 7-2, tab. 16 (DATA class)...' +2024-09-08 15:10:02,404 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::DA : doc='part 7-2, sec. 5.5.1 and tab. ...' +2024-09-08 15:10:02,404 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::DS : doc='part 7-2, sec. 11 +Original do...' +2024-09-08 15:10:02,404 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::RCB : doc='part 7-2, sec. 14 +Original do...' +2024-09-08 15:10:02,404 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::BRCB : doc='part 7-2, sec. 14 +Original do...' +2024-09-08 15:10:02,404 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::URCB : doc='part 7-2, sec. 14 +Original do...' +2024-09-08 15:10:02,404 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::LCB : doc='part 7-2, sec. 14 +Original do...' +2024-09-08 15:10:02,404 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::GCB : doc='part 7-2, sec. 15 +Original do...' +2024-09-08 15:10:02,404 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::SVCB : doc='part 7-2, sec. 16 +Original do...' +2024-09-08 15:10:02,404 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::MSVCB : doc='part 7-2, sec. 16' +2024-09-08 15:10:02,404 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::USVCB : doc='part 7-2, sec. 16' +2024-09-08 15:10:02,404 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::SGCB : doc='part 7-2, sec. 13 +Original do...' +2024-09-08 15:10:02,404 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::LOG : doc='part 7-2, sec. 14 +Original do...' +2024-09-08 15:10:02,404 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::SERVER : doc='part 7-2, sec. 6 +Original doc...' +2024-09-08 15:10:02,405 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::FILE : doc='part 7-2, sec. 20 +Original do...' +2024-09-08 15:10:02,405 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::TPAA : doc='part 7-2, sec. 7 +Original doc...' +2024-09-08 15:10:02,405 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::MCAA : doc='part 7-2, sec. 7 +Original doc...' +2024-09-08 15:10:02,405 [main] WARN ClassValidator - Found 15 classes whose documentation does not end with a dot ('.') - fix the last character: add a dot: +2024-09-08 15:10:02,405 [main] WARN ClassValidator - WG13 CIM datatype <> Domain::ActivePower : doc='...phase component of the current' +2024-09-08 15:10:02,405 [main] WARN ClassValidator - WG13 CIM datatype <> Domain::ApparentPower : doc='...d the RMS value of the current' +2024-09-08 15:10:02,405 [main] WARN ClassValidator - WG13 CIM datatype <> Domain::Money : doc='Amount of money' +2024-09-08 15:10:02,405 [main] WARN ClassValidator - WG13 CIM datatype <> Domain::PerCent : doc='...ally 0 - 100 on a defined base' +2024-09-08 15:10:02,405 [main] WARN ClassValidator - WG13 CIM datatype <> Domain::Seconds : doc='Time, in seconds' +2024-09-08 15:10:02,405 [main] WARN ClassValidator - WG13 CIM enumeration <> Domain::UnitMultiplier : doc='...ultipliers defined for the CIM' +2024-09-08 15:10:02,405 [main] WARN ClassValidator - WG13 CIM enumeration <> Domain::UnitSymbol : doc='...s defiend for usage in the CIM' +2024-09-08 15:10:02,405 [main] WARN ClassValidator - WG13 CIM enumeration <> Topology::TestEnum : doc='...pty paragraphs below.(paraEnd)' +2024-09-08 15:10:02,406 [main] WARN ClassValidator - WG14 CIM root class Other::Equipment : doc='doc' +2024-09-08 15:10:02,406 [main] WARN ClassValidator - WG10 IEC61850 other 61850 CommonAcsiTypes::Authentication : doc='... encrypted. How to model that?' +2024-09-08 15:10:02,406 [main] WARN ClassValidator - WG10 IEC61850 protected other 61850 CommonAcsiTypes::AccessView : doc='...ossible values for AccessView?' +2024-09-08 15:10:02,406 [main] WARN ClassValidator - WG13 CIM class Core::EquipmentContainer : doc='...lass for all Equipment classes' +2024-09-08 15:10:02,406 [main] WARN ClassValidator - WG13 CIM class Core::Equipment : doc='...ices, electronic or mechanical' +2024-09-08 15:10:02,406 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::MSVCB : doc='part 7-2, sec. 16' +2024-09-08 15:10:02,406 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::USVCB : doc='part 7-2, sec. 16' +2024-09-08 15:10:02,406 [main] ERROR ClassValidator - Found 4 classes whose name contains illegal character(s) - rename by removing invalid character(s): +2024-09-08 15:10:02,406 [main] ERROR ClassValidator - OTHER_CIM CIM root class <> MyCimExtensions::DFD_External1 : invalid characters = [_] +2024-09-08 15:10:02,406 [main] ERROR ClassValidator - OTHER_CIM CIM root class <> MyCimExtensions::DFD_DataStore1 : invalid characters = [_] +2024-09-08 15:10:02,406 [main] ERROR ClassValidator - OTHER_CIM CIM root class Package with space::My class : invalid characters = [ ] +2024-09-08 15:10:02,406 [main] ERROR ClassValidator - OTHER_CIM CIM root class Package with space::Other-with_invalid name : invalid characters = [-, _, ] +2024-09-08 15:10:02,406 [main] ERROR ClassValidator - Found 1 CIM classes whose name starts with a lower case letter - rename class(es) to start with upper case letter: +2024-09-08 15:10:02,406 [main] ERROR ClassValidator - WG13 CIM class Core::geographicalRegion +2024-09-08 15:10:02,407 [main] ERROR ClassValidator - Found 5 CIM classes that should be singular - rename class to singular: +2024-09-08 15:10:02,407 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::Seconds +2024-09-08 15:10:02,407 [main] ERROR ClassValidator - WG13 CIM enumeration <> TestEnums::EnumWithSomeIntCodes +2024-09-08 15:10:02,407 [main] ERROR ClassValidator - WG13 CIM enumeration <> TestEnums::EnumWithStringCodes +2024-09-08 15:10:02,407 [main] ERROR ClassValidator - WG13 CIM enumeration <> TestEnums::EnumWithNonUniqueCodes +2024-09-08 15:10:02,407 [main] ERROR ClassValidator - WG14 CIM datatype <> Other::BadDatatypes +2024-09-08 15:10:02,407 [main] ERROR ClassValidator - Found 1 IEC61850 concrete LN classes that, according to the first letter in the name, should be in another LN group - rename the LN OR move it to corresponding LN group: +2024-09-08 15:10:02,407 [main] ERROR ClassValidator - WG10 IEC61850 LN LNGroupL::KXYZ : expected to be in package 'LNGroupK' +2024-09-08 15:10:02,407 [main] ERROR ClassValidator - Found 2 IEC61850 concrete LN classes with name different than 4 upper case letters - rename the LN to 4 upper case letters: +2024-09-08 15:10:02,407 [main] ERROR ClassValidator - WG10 IEC61850 LN LNGroupP::PDISExt +2024-09-08 15:10:02,407 [main] ERROR ClassValidator - WG10 IEC61850 LN LNGroupP::PDF2 +2024-09-08 15:10:02,407 [main] ERROR ClassValidator - Found 2 enum classes that have some codes, but not for all literals - add missing code(s); alternatively, remove all codes: +2024-09-08 15:10:02,407 [main] ERROR ClassValidator - WG13 CIM enumeration <> TestEnums::EnumWithSomeIntCodes : literals missing code = [lit20noCode, lit60noCode] +2024-09-08 15:10:02,407 [main] ERROR ClassValidator - WG13 CIM enumeration <> TestEnums::EnumWithStringCodes : literals missing code = [str3noCode] +2024-09-08 15:10:02,408 [main] ERROR ClassValidator - Found 1 enum classes that have duplicate codes for some literals - change codes so as to have them unique: +2024-09-08 15:10:02,408 [main] ERROR ClassValidator - WG13 CIM enumeration <> TestEnums::EnumWithNonUniqueCodes : duplicate codes = {1=[[c1, c2, c5]], 4=[[c4, c7]]}; codes in use = [1, 3, 4, 6, 8], so pick some unused code to fix the problem +2024-09-08 15:10:02,408 [main] ERROR ClassValidator - Found 4 classes that have non-unique name - rename classes to have unique names within model: +2024-09-08 15:10:02,408 [main] ERROR ClassValidator - 1 WG14 CIM root class Other::Equipment : all with the same name = [WG14 Other::Equipment, WG13 Core::Equipment] +2024-09-08 15:10:02,408 [main] ERROR ClassValidator - 1 WG13 CIM class Core::Equipment : all with the same name = [WG14 Other::Equipment, WG13 Core::Equipment] +2024-09-08 15:10:02,408 [main] ERROR ClassValidator - 2 WG14 CIM root class Other::MyClass : all with the same name = [WG14 Other::MyClass, WG14 Other::MyClass] +2024-09-08 15:10:02,408 [main] ERROR ClassValidator - 2 WG14 CIM class <> Other::MyClass : all with the same name = [WG14 Other::MyClass, WG14 Other::MyClass] +2024-09-08 15:10:02,408 [main] ERROR ClassValidator - Found 14 CIM classes never used as type for attributes - if also not used in the larger scope: move class(es) to an informative package (if you anticipate future use) OR simply remove: +2024-09-08 15:10:02,408 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::ActivePower +2024-09-08 15:10:02,408 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::ActivePowerChangeRate +2024-09-08 15:10:02,408 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::Money +2024-09-08 15:10:02,408 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::Seconds +2024-09-08 15:10:02,409 [main] ERROR ClassValidator - WG13 CIM enumeration <> Domain::WithSingleLiteral +2024-09-08 15:10:02,409 [main] ERROR ClassValidator - WG13 CIM enumeration <> Topology::TestEnum +2024-09-08 15:10:02,409 [main] ERROR ClassValidator - WG13 CIM enumeration <> TestEnums::EnumWithSomeIntCodes +2024-09-08 15:10:02,409 [main] ERROR ClassValidator - WG13 CIM enumeration <> TestEnums::EnumWithStringCodes +2024-09-08 15:10:02,409 [main] ERROR ClassValidator - WG13 CIM enumeration <> TestEnums::EnumWithNonUniqueCodes +2024-09-08 15:10:02,409 [main] ERROR ClassValidator - WG14 CIM enumeration <> Other::EmptyEnum +2024-09-08 15:10:02,409 [main] ERROR ClassValidator - WG14 CIM primitive <> Other::NonEmptyPrimitive +2024-09-08 15:10:02,409 [main] ERROR ClassValidator - WG14 CIM datatype <> Other::AnotherBadDatatype +2024-09-08 15:10:02,409 [main] ERROR ClassValidator - OTHER_CIM CIM enumeration <> Ext1::FruitBinKind +2024-09-08 15:10:02,409 [main] ERROR ClassValidator - WG13 CIM compound <> Core::OperatingParticipant +2024-09-08 15:10:02,409 [main] INFO AbstractValidator - +2024-09-08 15:10:02,409 [main] INFO AbstractValidator - ====== Validating 761 (of 761) attributes: +2024-09-08 15:10:02,441 [main] ERROR AttributeValidator - Found 1 enum literals that should have no type - remove type: +2024-09-08 15:10:02,441 [main] ERROR AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.VAh : type = +2024-09-08 15:10:02,441 [main] ERROR AttributeValidator - Found 4 enum literals that are missing <> stereotype - add <> stereotype: +2024-09-08 15:10:02,441 [main] ERROR AttributeValidator - WG13 CIM literal Domain::UnitSymbol.Wh : stereotype = +2024-09-08 15:10:02,441 [main] ERROR AttributeValidator - WG17 IEC61850 literal DOEnums_7_420::MaterialTransitionKind.trans1 : stereotype = +2024-09-08 15:10:02,441 [main] ERROR AttributeValidator - WG17 IEC61850 literal DOEnums_7_420::MaterialTransitionKind.trans2 : stereotype = +2024-09-08 15:10:02,441 [main] ERROR AttributeValidator - WG17 IEC61850 literal DOEnums_7_420::MaterialTransitionKind.trans3 : stereotype = +2024-09-08 15:10:02,441 [main] ERROR AttributeValidator - Found 1 attributes that use custom multiplicity format - change bounds to [0..1]: +2024-09-08 15:10:02,442 [main] ERROR AttributeValidator - WG13 CIM protected Primitive attribute Domain::AbsoluteDateTime.protectedAttribute : multiplicity = [2..5] +2024-09-08 15:10:02,442 [main] ERROR AttributeValidator - Found 3 CIM attributes that should be optional - set multiplicity lower bound to 0: +2024-09-08 15:10:02,442 [main] ERROR AttributeValidator - WG13 CIM INF Primitive attribute InformativeAndPrivate::InfClass2.isToto : multiplicity = [1..1] +2024-09-08 15:10:02,442 [main] ERROR AttributeValidator - WG13 CIM protected Primitive attribute Domain::AbsoluteDateTime.protectedAttribute : multiplicity = [2..5] +2024-09-08 15:10:02,442 [main] ERROR AttributeValidator - OTHER_CIM CIM private Primitive attribute <> Ext1::Apple.shouldNotBeEnum : multiplicity = [1..1] +2024-09-08 15:10:02,442 [main] ERROR AttributeValidator - Found 1 attributes that have as type class not in the model, or the class that may be in the model, but EA interprets the classifierID of the attribute as 0 - locate class in the model from attribute's 'Type' combo-box: +2024-09-08 15:10:02,442 [main] ERROR AttributeValidator - WG13 CIM attribute Domain::ActivePowerChangeRate.value : EA info for attr type ('dummy' (id=0)) +2024-09-08 15:10:02,442 [main] ERROR AttributeValidator - Found 57 attributes that have as type class from the model, but retained in EA as string - locate class in the model from attribute's 'Type' combo-box: +2024-09-08 15:10:02,442 [main] ERROR AttributeValidator - WG14 CIM attribute Other::MyClass.curveStyle : EA info for attr type ('CurveStyle' (id=857)) +2024-09-08 15:10:02,442 [main] ERROR AttributeValidator - WG14 CIM attribute Other::AttrDuplication.curveStyle : EA info for attr type ('CurveStyle' (id=857)) +2024-09-08 15:10:02,442 [main] ERROR AttributeValidator - WG10 IEC61850 attribute WG10::WG10UMLVersion.version : EA info for attr type ('P_VISIBLE_STRING64' (id=1665)) +2024-09-08 15:10:02,443 [main] ERROR AttributeValidator - WG10 IEC61850 attribute WG10::WG10UMLVersion.date : EA info for attr type ('P_VISIBLE_STRING64' (id=1665)) +2024-09-08 15:10:02,443 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_2::IEC61850_7_2Namespace.id : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-08 15:10:02,443 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_2::IEC61850_7_2Namespace.version : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-08 15:10:02,443 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_2::IEC61850_7_2Namespace.revision : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-08 15:10:02,443 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_2::IEC61850_7_2Namespace.date : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-08 15:10:02,443 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_2::IEC61850_7_2Namespace.name : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-08 15:10:02,443 [main] ERROR AttributeValidator - WG10 IEC61850 private attribute CoreTypes::ObjectName.val : EA info for attr type ('P_VISIBLE_STRING64' (id=1665)) +2024-09-08 15:10:02,443 [main] ERROR AttributeValidator - WG10 IEC61850 private attribute CoreTypes::P_ObjectReference.val : EA info for attr type ('P_VISIBLE_STRING129' (id=1666)) +2024-09-08 15:10:02,443 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CoreTypes::P_TimeStamp.FractionOfSecond : EA info for attr type ('P_INT24U' (id=1660)) +2024-09-08 15:10:02,443 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::FILEReference.FileRef : EA info for attr type ('P_VISIBLE_STRING129' (id=1666)) +2024-09-08 15:10:02,444 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::FILEReference.FileName : EA info for attr type ('P_VISIBLE_STRING129' (id=1666)) +2024-09-08 15:10:02,444 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::LDReference.LDRef : EA info for attr type ('P_VISIBLE_STRING129' (id=1666)) +2024-09-08 15:10:02,444 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::NonPersistentDSReference.DSRef : EA info for attr type ('P_VISIBLE_STRING129' (id=1666)) +2024-09-08 15:10:02,444 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::LNReference.LNRef : EA info for attr type ('P_VISIBLE_STRING129' (id=1666)) +2024-09-08 15:10:02,444 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::CDCReference.DataRef : EA info for attr type ('P_VISIBLE_STRING129' (id=1666)) +2024-09-08 15:10:02,444 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::CBReference.CBRef : EA info for attr type ('P_VISIBLE_STRING129' (id=1666)) +2024-09-08 15:10:02,444 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::LOGReference.LogRef : EA info for attr type ('P_VISIBLE_STRING129' (id=1666)) +2024-09-08 15:10:02,444 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::LNOwnedDSReference.DSRef : EA info for attr type ('P_VISIBLE_STRING129' (id=1666)) +2024-09-08 15:10:02,445 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::FCDReference.FCDRef : EA info for attr type ('P_VISIBLE_STRING129' (id=1666)) +2024-09-08 15:10:02,445 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::FCDReference.FCDRefWithoutFC : EA info for attr type ('P_VISIBLE_STRING129' (id=1666)) +2024-09-08 15:10:02,445 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::FCDAReference.FCDARef : EA info for attr type ('P_VISIBLE_STRING129' (id=1666)) +2024-09-08 15:10:02,445 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CommonAcsiTypes::IPAddress.address : EA info for attr type ('P_VISIBLE_STRING64' (id=1665)) +2024-09-08 15:10:02,445 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CommonAcsiTypes::MulticastAddress.address : EA info for attr type ('P_VISIBLE_STRING64' (id=1665)) +2024-09-08 15:10:02,445 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CommonAcsiTypes::MulticastAddress.priority : EA info for attr type ('P_INT8U' (id=1658)) +2024-09-08 15:10:02,445 [main] ERROR AttributeValidator - WG10 IEC61850 private attribute CommonAcsiTypes::ReportID.val : EA info for attr type ('P_VISIBLE_STRING129' (id=1666)) +2024-09-08 15:10:02,445 [main] ERROR AttributeValidator - WG10 IEC61850 attribute MetaModel::IED.name : EA info for attr type ('P_VISIBLE_STRING64' (id=1665)) +2024-09-08 15:10:02,445 [main] ERROR AttributeValidator - WG10 IEC61850 attribute MetaModel::SERVER.name : EA info for attr type ('P_VISIBLE_STRING64' (id=1665)) +2024-09-08 15:10:02,445 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_3::IEC61850_7_3Namespace.id : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-08 15:10:02,445 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_3::IEC61850_7_3Namespace.version : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-08 15:10:02,445 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_3::IEC61850_7_3Namespace.revision : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-08 15:10:02,445 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_3::IEC61850_7_3Namespace.date : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-08 15:10:02,445 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_3::IEC61850_7_3Namespace.name : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-08 15:10:02,445 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CDCStatusInfo::ACD.dirGeneral : EA info for attr type ('FaultDirection_ST_dchg' (id=2151)) +2024-09-08 15:10:02,446 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CDCAnalogueInfo::CMV.instCVal : EA info for attr type ('Vector_MX' (id=2213)) +2024-09-08 15:10:02,446 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CDCAnalogueInfo::CMV.subCVal : EA info for attr type ('Vector_SV' (id=2215)) +2024-09-08 15:10:02,446 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CDCControl::BAC.subVal : EA info for attr type ('AnalogueValue_SV' (id=2121)) +2024-09-08 15:10:02,446 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CDCStatusSet::ENG.setVal : EA info for attr type ('EnumDA_SP_dchg' (id=2147)) +2024-09-08 15:10:02,446 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CDCStatusSet::ENG._setVal : EA info for attr type ('EnumDA_SG' (id=2146)) +2024-09-08 15:10:02,446 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CDCStatusSet::ENG.__setVal : EA info for attr type ('EnumDA_SE' (id=2145)) +2024-09-08 15:10:02,446 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_4::IEC61850_7_4Namespace.id : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-08 15:10:02,446 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_4::IEC61850_7_4Namespace.version : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-08 15:10:02,446 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_4::IEC61850_7_4Namespace.revision : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-08 15:10:02,446 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_4::IEC61850_7_4Namespace.date : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-08 15:10:02,446 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_4::IEC61850_7_4Namespace.name : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-08 15:10:02,446 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LNGroupG::GGIO.DPCSO : EA info for attr type ('DPC' (id=2281)) +2024-09-08 15:10:02,447 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LNGroupP::ProtectionLN.OpCntRs : EA info for attr type ('INC' (id=2282)) +2024-09-08 15:10:02,447 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LNGroupZ::ZAXN.Amp : EA info for attr type ('MV' (id=2264)) +2024-09-08 15:10:02,447 [main] ERROR AttributeValidator - WG17 IEC61850 attribute WG17::WG17UMLVersion.version : EA info for attr type ('P_VISIBLE_STRING64' (id=1665)) +2024-09-08 15:10:02,447 [main] ERROR AttributeValidator - WG17 IEC61850 attribute WG17::WG17UMLVersion.date : EA info for attr type ('P_VISIBLE_STRING64' (id=1665)) +2024-09-08 15:10:02,447 [main] ERROR AttributeValidator - WG17 IEC61850 attribute IEC51850_7_420::IEC61850_7_420Namespace.id : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-08 15:10:02,447 [main] ERROR AttributeValidator - WG17 IEC61850 attribute IEC51850_7_420::IEC61850_7_420Namespace.version : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-08 15:10:02,447 [main] ERROR AttributeValidator - WG17 IEC61850 attribute IEC51850_7_420::IEC61850_7_420Namespace.revision : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-08 15:10:02,447 [main] ERROR AttributeValidator - WG17 IEC61850 attribute IEC51850_7_420::IEC61850_7_420Namespace.date : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-08 15:10:02,447 [main] ERROR AttributeValidator - WG17 IEC61850 attribute IEC51850_7_420::IEC61850_7_420Namespace.tissuesApplied : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-08 15:10:02,448 [main] ERROR AttributeValidator - Found 1 attributes that have a type ID with the class from the model, but the displayed string (type name) is not the name of that class - locate class in the model from attribute's 'Type' combo-box: +2024-09-08 15:10:02,448 [main] ERROR AttributeValidator - WG10 IEC61850 data object LNGroupC::CALH.ModBeh : EA info for attr type ('ERYBehaviourMode' (id=3039)); ID-based info for attr type ((3039) WG10 IEC61850 primitive CDC DerivedCDCs::EXYBehaviourMode) +2024-09-08 15:10:02,448 [main] ERROR AttributeValidator - Found 5 CIM attributes that should be public - CIM attributes that should be public: +2024-09-08 15:10:02,448 [main] ERROR AttributeValidator - WG13 CIM protected Primitive attribute Domain::AbsoluteDateTime.protectedAttribute +2024-09-08 15:10:02,448 [main] ERROR AttributeValidator - WG13 CIM private Primitive attribute Core::BaseVoltage.privateDummy +2024-09-08 15:10:02,448 [main] ERROR AttributeValidator - WG13 CIM package Primitive attribute Core::BaseVoltage.packagePrivateIsDC +2024-09-08 15:10:02,448 [main] ERROR AttributeValidator - WG13 CIM protected CIMDatatype attribute Core::BaseVoltage.protectedNominalVoltage +2024-09-08 15:10:02,448 [main] ERROR AttributeValidator - OTHER_CIM CIM private Primitive attribute <> Ext1::Apple.shouldNotBeEnum +2024-09-08 15:10:02,448 [main] ERROR AttributeValidator - Found 1 attributes that are static but not const (i.e., undefined value for all instances of the class) - make attribute const: +2024-09-08 15:10:02,449 [main] ERROR AttributeValidator - WG13 CIM enumeration attribute Domain::ActivePowerChangeRate.unit +2024-09-08 15:10:02,449 [main] ERROR AttributeValidator - Found 1 CIM attributes that are not 'static const' but have init value - remove init value OR make the attribute static const: +2024-09-08 15:10:02,449 [main] ERROR AttributeValidator - WG14 CIM enumeration attribute Other::BadDatatypes.unit +2024-09-08 15:10:02,449 [main] ERROR AttributeValidator - Found 1 attributes that are const but not static (i.e., each instance of the class has same const value) - remove const qualifier OR make attribute static: +2024-09-08 15:10:02,450 [main] ERROR AttributeValidator - WG14 CIM Compound attribute Other::AnotherBadDatatype.multiplier +2024-09-08 15:10:02,450 [main] ERROR AttributeValidator - Found 6 attributes with unallowed stereotype(s) - remove offending stereotype(s) OR use one or more of {CIM=[deprecated, informative, enum], IEC61850=[deprecated, informative, enum]}: +2024-09-08 15:10:02,450 [main] ERROR AttributeValidator - WG13 CIM literal <> Core::BreakerConfiguration.noBreaker : offending stereotypes = [European] +2024-09-08 15:10:02,450 [main] ERROR AttributeValidator - OTHER_CIM CIM literal <> Ext1::FruitBinKind.plastic : offending stereotypes = [European] +2024-09-08 15:10:02,450 [main] ERROR AttributeValidator - WG13 CIM Primitive attribute <> Domain::ActivePower.value : offending stereotypes = [custom, invalid, European] +2024-09-08 15:10:02,450 [main] ERROR AttributeValidator - WG13 CIM enumeration attribute <> Domain::ActivePower.multiplier : offending stereotypes = [European] +2024-09-08 15:10:02,450 [main] ERROR AttributeValidator - WG14 CIM Primitive attribute <> Other::AnotherBadDatatype.unit : offending stereotypes = [unallowed] +2024-09-08 15:10:02,450 [main] ERROR AttributeValidator - OTHER_CIM CIM INF Compound attribute <> Ext1::Pear.typeIsInformative : offending stereotypes = [European] +2024-09-08 15:10:02,450 [main] ERROR AttributeValidator - Found 1 attributes that have enum stereotype, but belong to a class that is not an enumerated type - remove enum stereotype: +2024-09-08 15:10:02,450 [main] ERROR AttributeValidator - OTHER_CIM CIM private Primitive attribute <> Ext1::Apple.shouldNotBeEnum +2024-09-08 15:10:02,450 [main] ERROR AttributeValidator - Found 1 CIM attributes whose type is wrongly used as type for attribute - replace attribute with association, or change type for attribute: +2024-09-08 15:10:02,450 [main] ERROR AttributeValidator - OTHER_CIM CIM INF attribute Informative::HasIllegalTypeForAttr.dummy +2024-09-08 15:10:02,450 [main] DEBUG AttributeValidator - Found 0 normative attributes whose type is an informative class - promote class to normative or make attribute informative. +2024-09-08 15:10:02,450 [main] ERROR AttributeValidator - Found 2 attribute with unallowed tag names - remove tags: +2024-09-08 15:10:02,451 [main] ERROR AttributeValidator - WG13 CIM Primitive attribute Domain::ApparentPower.value : [tag] +2024-09-08 15:10:02,451 [main] ERROR AttributeValidator - WG10 IEC61850 PackedEnumFCDA attribute CDCStatusInfo::DPS.subVal : [secondTagName] +2024-09-08 15:10:02,451 [main] ERROR AttributeValidator - Found 1 IEC61850-7-3 (FCDA) attributes that have moveAfter tag, but its value is the name of inexisting sibling attribute - set value of moveAfter tag, to an inexisting sibling attribute: +2024-09-08 15:10:02,451 [main] ERROR AttributeValidator - WG10 IEC61850 PackedEnumFCDA attribute CDCStatusInfo::DPS.subVal : inexisting sibling 'wrongsubEna', use one of [stVal, q, t, subEna, subQ, blkEna, dU, cdcNs, objRef, objName, parent] +2024-09-08 15:10:02,451 [main] WARN AttributeValidator - Found 2 attributes that have word 'flag'. - rename (by removing word 'flag') and if they are not already Boolean, change their type: +2024-09-08 15:10:02,451 [main] WARN AttributeValidator - WG13 CIM Primitive attribute Core::Bay.bayEnergyMeasFlag +2024-09-08 15:10:02,451 [main] WARN AttributeValidator - WG13 CIM Primitive attribute Core::Bay.bayPowerMeasFlag +2024-09-08 15:10:02,451 [main] WARN AttributeValidator - Found 111 attributes missing documentation - add documentation: +2024-09-08 15:10:02,451 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitMultiplier.none +2024-09-08 15:10:02,451 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::WithSingleLiteral.singleLiteral +2024-09-08 15:10:02,451 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::YesNo.Yes +2024-09-08 15:10:02,452 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::YesNo.No +2024-09-08 15:10:02,452 [main] WARN AttributeValidator - WG13 CIM literal <> Core::BreakerConfiguration.singleBreaker +2024-09-08 15:10:02,452 [main] WARN AttributeValidator - WG13 CIM literal <> Core::BreakerConfiguration.breakerAndAHalf +2024-09-08 15:10:02,452 [main] WARN AttributeValidator - WG13 CIM literal <> Core::BreakerConfiguration.doubleBreaker +2024-09-08 15:10:02,452 [main] WARN AttributeValidator - WG13 CIM literal <> Core::BreakerConfiguration.noBreaker +2024-09-08 15:10:02,452 [main] WARN AttributeValidator - WG13 CIM literal <> Core::BusbarConfiguration.singleBus +2024-09-08 15:10:02,452 [main] WARN AttributeValidator - WG13 CIM literal <> Core::BusbarConfiguration.doubleBus +2024-09-08 15:10:02,452 [main] WARN AttributeValidator - WG13 CIM literal <> Core::BusbarConfiguration.mainWithTransfer +2024-09-08 15:10:02,452 [main] WARN AttributeValidator - WG13 CIM literal <> Core::BusbarConfiguration.ringBus +2024-09-08 15:10:02,452 [main] WARN AttributeValidator - WG13 CIM literal <> Core::PhaseCode.ABCN +2024-09-08 15:10:02,452 [main] WARN AttributeValidator - WG13 CIM literal <> Core::PhaseCode.ABC +2024-09-08 15:10:02,452 [main] WARN AttributeValidator - WG13 CIM literal <> Core::PhaseCode.ABN +2024-09-08 15:10:02,453 [main] WARN AttributeValidator - WG13 CIM literal <> Core::PhaseCode.ACN +2024-09-08 15:10:02,453 [main] WARN AttributeValidator - WG13 CIM literal <> Core::PhaseCode.BCN +2024-09-08 15:10:02,453 [main] WARN AttributeValidator - WG13 CIM literal <> Core::PhaseCode.AB +2024-09-08 15:10:02,453 [main] WARN AttributeValidator - WG13 CIM literal <> Core::PhaseCode.AC +2024-09-08 15:10:02,453 [main] WARN AttributeValidator - WG13 CIM literal <> Core::PhaseCode.BC +2024-09-08 15:10:02,453 [main] WARN AttributeValidator - WG13 CIM literal <> Core::PhaseCode.AN +2024-09-08 15:10:02,453 [main] WARN AttributeValidator - WG13 CIM literal <> Core::PhaseCode.BN +2024-09-08 15:10:02,453 [main] WARN AttributeValidator - WG13 CIM literal <> Core::PhaseCode.CN +2024-09-08 15:10:02,453 [main] WARN AttributeValidator - WG13 CIM literal <> Core::PhaseCode.A +2024-09-08 15:10:02,453 [main] WARN AttributeValidator - WG13 CIM literal <> Core::PhaseCode.B +2024-09-08 15:10:02,453 [main] WARN AttributeValidator - WG13 CIM literal <> Core::PhaseCode.C +2024-09-08 15:10:02,453 [main] WARN AttributeValidator - WG13 CIM literal <> Core::PhaseCode.N +2024-09-08 15:10:02,453 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithSomeIntCodes.lit10 +2024-09-08 15:10:02,453 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithSomeIntCodes.lit20noCode +2024-09-08 15:10:02,454 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithSomeIntCodes.lit30 +2024-09-08 15:10:02,454 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithSomeIntCodes.lit40 +2024-09-08 15:10:02,454 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithSomeIntCodes.lit50 +2024-09-08 15:10:02,454 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithSomeIntCodes.lit60noCode +2024-09-08 15:10:02,454 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithSomeIntCodes.lit70 +2024-09-08 15:10:02,454 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithStringCodes.str1 +2024-09-08 15:10:02,454 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithStringCodes.str2 +2024-09-08 15:10:02,454 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithStringCodes.str3noCode +2024-09-08 15:10:02,454 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithStringCodes.str4 +2024-09-08 15:10:02,454 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithStringCodes.str5 +2024-09-08 15:10:02,454 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c1 +2024-09-08 15:10:02,454 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c2 +2024-09-08 15:10:02,454 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c3 +2024-09-08 15:10:02,455 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c4 +2024-09-08 15:10:02,455 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c5 +2024-09-08 15:10:02,455 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c6 +2024-09-08 15:10:02,455 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c7 +2024-09-08 15:10:02,455 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c8 +2024-09-08 15:10:02,455 [main] WARN AttributeValidator - OTHER_CIM CIM literal <> Ext1::FruitBinKind.plastic +2024-09-08 15:10:02,455 [main] WARN AttributeValidator - OTHER_CIM CIM literal <> Ext1::FruitBinKind.straw +2024-09-08 15:10:02,455 [main] WARN AttributeValidator - OTHER_CIM CIM literal <> Ext1::FruitBinKind.glass +2024-09-08 15:10:02,455 [main] WARN AttributeValidator - WG13 CIM Primitive attribute Topology::TopologicalIsland.constrained5 +2024-09-08 15:10:02,455 [main] WARN AttributeValidator - WG13 CIM Primitive attribute Topology::TopologicalIsland.nonConstrained +2024-09-08 15:10:02,455 [main] WARN AttributeValidator - WG14 CIM Primitive attribute Other::MyClass.value +2024-09-08 15:10:02,455 [main] WARN AttributeValidator - WG14 CIM Primitive attribute Other::Equipment.myExtension +2024-09-08 15:10:02,455 [main] WARN AttributeValidator - WG14 CIM Primitive attribute Other::NonEmptyPrimitive.value +2024-09-08 15:10:02,455 [main] WARN AttributeValidator - WG10 IEC61850 attribute WG10::WG10UMLVersion.version +2024-09-08 15:10:02,455 [main] WARN AttributeValidator - WG10 IEC61850 attribute WG10::WG10UMLVersion.date +2024-09-08 15:10:02,456 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenCommonDataClass.CDC-ID +2024-09-08 15:10:02,456 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenConstructedType.DA-ID +2024-09-08 15:10:02,456 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenDataAttribute.DAName +2024-09-08 15:10:02,456 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenDataAttribute.DARef +2024-09-08 15:10:02,456 [main] WARN AttributeValidator - WG10 IEC61850 enumeration attribute GenericModel::GenDataAttribute.FC +2024-09-08 15:10:02,456 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenDataAttribute.TrgOp +2024-09-08 15:10:02,456 [main] WARN AttributeValidator - WG10 IEC61850 enumeration attribute GenericModel::GenDataAttribute.Presence +2024-09-08 15:10:02,456 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenDataObject.DOName +2024-09-08 15:10:02,456 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenDataObject.DORef +2024-09-08 15:10:02,456 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenDataObject.Transient +2024-09-08 15:10:02,456 [main] WARN AttributeValidator - WG10 IEC61850 enumeration attribute GenericModel::GenDataObject.Presence +2024-09-08 15:10:02,456 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenDataSet.DSName +2024-09-08 15:10:02,456 [main] WARN AttributeValidator - WG10 IEC61850 enumeration attribute GenericModel::GenFCD.FC +2024-09-08 15:10:02,456 [main] WARN AttributeValidator - WG10 IEC61850 enumeration attribute GenericModel::GenFCDA.FC +2024-09-08 15:10:02,456 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenFile.FileRef +2024-09-08 15:10:02,456 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenFile.FileSize +2024-09-08 15:10:02,457 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenFile.LastModified +2024-09-08 15:10:02,457 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenLogicalDevice.LDName +2024-09-08 15:10:02,457 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenLogicalNode.LNName +2024-09-08 15:10:02,457 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenLogicalNode.LNRef +2024-09-08 15:10:02,457 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenSubDataAttribute.SubDAName +2024-09-08 15:10:02,457 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenSubDataAttribute.SubDARef +2024-09-08 15:10:02,457 [main] WARN AttributeValidator - WG10 IEC61850 enumeration attribute GenericModel::GenSubDataAttribute.FC +2024-09-08 15:10:02,457 [main] WARN AttributeValidator - WG10 IEC61850 enumeration attribute GenericModel::GenSubDataAttribute.Presence +2024-09-08 15:10:02,457 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenSubDataObject.SDOName +2024-09-08 15:10:02,457 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenSubDataObject.SDORef +2024-09-08 15:10:02,457 [main] WARN AttributeValidator - WG10 IEC61850 enumeration attribute GenericModel::GenSubDataObject.Presence +2024-09-08 15:10:02,457 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenTPAA.AssociationId +2024-09-08 15:10:02,457 [main] WARN AttributeValidator - WG10 IEC61850 attribute IEC61850_7_2::IEC61850_7_2Namespace.id +2024-09-08 15:10:02,457 [main] WARN AttributeValidator - WG10 IEC61850 attribute IEC61850_7_2::IEC61850_7_2Namespace.version +2024-09-08 15:10:02,458 [main] WARN AttributeValidator - WG10 IEC61850 attribute IEC61850_7_2::IEC61850_7_2Namespace.revision +2024-09-08 15:10:02,458 [main] WARN AttributeValidator - WG10 IEC61850 attribute IEC61850_7_2::IEC61850_7_2Namespace.date +2024-09-08 15:10:02,458 [main] WARN AttributeValidator - WG10 IEC61850 attribute IEC61850_7_2::IEC61850_7_2Namespace.name +2024-09-08 15:10:02,458 [main] WARN AttributeValidator - WG10 IEC61850 enumeration attribute ObjectReferences::LOGReference.FC +2024-09-08 15:10:02,458 [main] WARN AttributeValidator - WG10 IEC61850 attribute IEC61850_7_3::IEC61850_7_3Namespace.id +2024-09-08 15:10:02,458 [main] WARN AttributeValidator - WG10 IEC61850 attribute IEC61850_7_3::IEC61850_7_3Namespace.version +2024-09-08 15:10:02,458 [main] WARN AttributeValidator - WG10 IEC61850 attribute IEC61850_7_3::IEC61850_7_3Namespace.revision +2024-09-08 15:10:02,458 [main] WARN AttributeValidator - WG10 IEC61850 attribute IEC61850_7_3::IEC61850_7_3Namespace.date +2024-09-08 15:10:02,458 [main] WARN AttributeValidator - WG10 IEC61850 attribute IEC61850_7_4::IEC61850_7_4Namespace.id +2024-09-08 15:10:02,458 [main] WARN AttributeValidator - WG10 IEC61850 attribute IEC61850_7_4::IEC61850_7_4Namespace.version +2024-09-08 15:10:02,458 [main] WARN AttributeValidator - WG10 IEC61850 attribute IEC61850_7_4::IEC61850_7_4Namespace.revision +2024-09-08 15:10:02,458 [main] WARN AttributeValidator - WG10 IEC61850 attribute IEC61850_7_4::IEC61850_7_4Namespace.date +2024-09-08 15:10:02,458 [main] WARN AttributeValidator - WG10 IEC61850 attribute IEC61850_7_4::IEC61850_7_4Namespace.name +2024-09-08 15:10:02,458 [main] WARN AttributeValidator - WG10 IEC61850 enumerated DO LNGroupL::LLN0.Beh +2024-09-08 15:10:02,459 [main] WARN AttributeValidator - WG17 IEC61850 attribute WG17::WG17UMLVersion.version +2024-09-08 15:10:02,459 [main] WARN AttributeValidator - WG17 IEC61850 attribute WG17::WG17UMLVersion.date +2024-09-08 15:10:02,459 [main] WARN AttributeValidator - WG17 IEC61850 attribute IEC51850_7_420::IEC61850_7_420Namespace.id +2024-09-08 15:10:02,459 [main] WARN AttributeValidator - WG17 IEC61850 attribute IEC51850_7_420::IEC61850_7_420Namespace.version +2024-09-08 15:10:02,459 [main] WARN AttributeValidator - WG17 IEC61850 attribute IEC51850_7_420::IEC61850_7_420Namespace.revision +2024-09-08 15:10:02,459 [main] WARN AttributeValidator - WG17 IEC61850 attribute IEC51850_7_420::IEC61850_7_420Namespace.date +2024-09-08 15:10:02,459 [main] WARN AttributeValidator - WG17 IEC61850 attribute IEC51850_7_420::IEC61850_7_420Namespace.tissuesApplied +2024-09-08 15:10:02,459 [main] WARN AttributeValidator - WG17 IEC61850 enumeration attribute DerivedDAs_7_420::Other.val +2024-09-08 15:10:02,459 [main] WARN AttributeValidator - OTHER_CIM CIM private Primitive attribute <> Ext1::Apple.shouldNotBeEnum +2024-09-08 15:10:02,459 [main] WARN AttributeValidator - OTHER_CIM CIM CIMDatatype attribute Package with space::My class._attr +2024-09-08 15:10:02,459 [main] WARN AttributeValidator - Found 5 attributes whose documentation starts with unallowed character - fix the first character: valid ones are any upper case letter or punctuation marks [', ", (]: +2024-09-08 15:10:02,460 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.s-1 : doc='per second' +2024-09-08 15:10:02,460 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.Hz-1 : doc='per Hertz' +2024-09-08 15:10:02,460 [main] WARN AttributeValidator - WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.ppm : doc='ppm' +2024-09-08 15:10:02,460 [main] WARN AttributeValidator - WG13 CIM CIMDatatype attribute Core::BasePower.basePower : doc='definition of base power.' +2024-09-08 15:10:02,460 [main] WARN AttributeValidator - WG10 IEC61850 attribute ObjectReferences::FILEReference.FileName : doc='name of a FILE instance, unamb...' +2024-09-08 15:10:02,460 [main] WARN AttributeValidator - Found 62 attributes whose documentation does not end with a dot ('.') - fix the last character: add a dot: +2024-09-08 15:10:02,460 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::Currency.USD : doc='US dollar' +2024-09-08 15:10:02,460 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::Currency.EUR : doc='European euro' +2024-09-08 15:10:02,460 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::Currency.AUD : doc='Australian dollar' +2024-09-08 15:10:02,460 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::Currency.CAD : doc='Canadian dollar' +2024-09-08 15:10:02,460 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::Currency.CHF : doc='Swiss francs' +2024-09-08 15:10:02,460 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::Currency.CNY : doc='Chinese yuan renminbi' +2024-09-08 15:10:02,461 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::Currency.DKK : doc='Danish crown' +2024-09-08 15:10:02,461 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::Currency.GBP : doc='British pound' +2024-09-08 15:10:02,461 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::Currency.JPY : doc='Japanese yen' +2024-09-08 15:10:02,461 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::Currency.NOK : doc='Norwegian crown' +2024-09-08 15:10:02,461 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::Currency.RUR : doc='Russian ruble' +2024-09-08 15:10:02,461 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::Currency.SEK : doc='Swedish crown' +2024-09-08 15:10:02,461 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::Currency.INR : doc='India rupees' +2024-09-08 15:10:02,461 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitMultiplier.p : doc='Pico 10-12' +2024-09-08 15:10:02,461 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitMultiplier.n : doc='Nano 10-9' +2024-09-08 15:10:02,461 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitMultiplier.micro : doc='Micro 10**-6' +2024-09-08 15:10:02,461 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitMultiplier.m : doc='Milli 10**-3' +2024-09-08 15:10:02,461 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitMultiplier.c : doc='Centi 10**-2' +2024-09-08 15:10:02,461 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitMultiplier.d : doc='Deci 10**-1' +2024-09-08 15:10:02,461 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitMultiplier.k : doc='Kilo 10**3' +2024-09-08 15:10:02,461 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitMultiplier.M : doc='Mega 10**6' +2024-09-08 15:10:02,461 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitMultiplier.G : doc='Giga 10**9' +2024-09-08 15:10:02,462 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitMultiplier.T : doc='Tera 10**12' +2024-09-08 15:10:02,462 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.VA : doc='Apparent power in volt ampere' +2024-09-08 15:10:02,462 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.W : doc='Active power in watt' +2024-09-08 15:10:02,462 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.VAr : doc='... power in volt ampere reactive' +2024-09-08 15:10:02,462 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.VAh : doc='...nt energy in volt ampere hours' +2024-09-08 15:10:02,462 [main] WARN AttributeValidator - WG13 CIM literal Domain::UnitSymbol.Wh : doc='Real energy in what hours' +2024-09-08 15:10:02,462 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.VArh : doc='... in volt ampere reactive hours' +2024-09-08 15:10:02,462 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.V : doc='Voltage in volt' +2024-09-08 15:10:02,462 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.ohm : doc='Resistance in ohm' +2024-09-08 15:10:02,462 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.A : doc='Current in ampere' +2024-09-08 15:10:02,462 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.F : doc='Capacitance in farad' +2024-09-08 15:10:02,462 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.H : doc='Inductance in henry' +2024-09-08 15:10:02,462 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.ºC : doc='...temperature in degrees Celsius' +2024-09-08 15:10:02,462 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.s : doc='Time in seconds' +2024-09-08 15:10:02,462 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.min : doc='Time in minutes' +2024-09-08 15:10:02,462 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.h : doc='Time in hours' +2024-09-08 15:10:02,462 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.deg : doc='Plane angle in degrees' +2024-09-08 15:10:02,463 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.rad : doc='Plane angle in radians' +2024-09-08 15:10:02,463 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.J : doc='Energy in joule' +2024-09-08 15:10:02,463 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.N : doc='Force in newton' +2024-09-08 15:10:02,463 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.S : doc='Conductance in siemens' +2024-09-08 15:10:02,463 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.Hz : doc='Frequency in hertz' +2024-09-08 15:10:02,463 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.g : doc='Mass in gram' +2024-09-08 15:10:02,463 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.Pa : doc='Pressure in pascal (n/m2)' +2024-09-08 15:10:02,463 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.m : doc='Length in meter' +2024-09-08 15:10:02,463 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.m2 : doc='Area in square meters' +2024-09-08 15:10:02,463 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.m3 : doc='Volume in cubic meters' +2024-09-08 15:10:02,464 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.V/VAr : doc='Volt per volt ampere reactive' +2024-09-08 15:10:02,464 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.W/Hz : doc='Watt per hertz' +2024-09-08 15:10:02,464 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.J/s : doc='Joule per second' +2024-09-08 15:10:02,464 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.s-1 : doc='per second' +2024-09-08 15:10:02,464 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.kg/J : doc='Mass per energy' +2024-09-08 15:10:02,464 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.W/s : doc='Watt per second' +2024-09-08 15:10:02,465 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.Hz-1 : doc='per Hertz' +2024-09-08 15:10:02,465 [main] WARN AttributeValidator - WG13 CIM literal <> Topology::TestEnum.µ : doc='(note) bold µ' +2024-09-08 15:10:02,465 [main] WARN AttributeValidator - WG13 CIM Primitive attribute Core::Terminal.connected : doc='... other aspect of the algorithm' +2024-09-08 15:10:02,465 [main] WARN AttributeValidator - WG13 CIM CIMDatatype attribute Core::VoltageLevel.highVoltageLimit : doc='...e bus bar's high voltage limit' +2024-09-08 15:10:02,465 [main] WARN AttributeValidator - WG13 CIM CIMDatatype attribute Core::VoltageLevel.lowVoltageLimit : doc='...he bus bar's low voltage limit' +2024-09-08 15:10:02,465 [main] WARN AttributeValidator - WG14 CIM CIMDatatype attribute IEC61968::IEC61968Version.date : doc='...09-01-05 (not ending with dot)' +2024-09-08 15:10:02,465 [main] WARN AttributeValidator - WG10 IEC61850 basic attribute ObjectReferences::FCDAReference.NumArrayElement : doc='...AttributeName(NumArrayElement)' +2024-09-08 15:10:02,465 [main] ERROR AttributeValidator - Found 11 CIM attributes whose name contains illegal character(s) - rename by removing invalid character(s): +2024-09-08 15:10:02,465 [main] ERROR AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.ºC : invalid characters = [º] +2024-09-08 15:10:02,465 [main] ERROR AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.V/VAr : invalid characters = [/] +2024-09-08 15:10:02,466 [main] ERROR AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.W/Hz : invalid characters = [/] +2024-09-08 15:10:02,466 [main] ERROR AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.J/s : invalid characters = [/] +2024-09-08 15:10:02,466 [main] ERROR AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.s-1 : invalid characters = [-] +2024-09-08 15:10:02,466 [main] ERROR AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.kg/J : invalid characters = [/] +2024-09-08 15:10:02,466 [main] ERROR AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.W/s : invalid characters = [/] +2024-09-08 15:10:02,466 [main] ERROR AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.Hz-1 : invalid characters = [-] +2024-09-08 15:10:02,466 [main] ERROR AttributeValidator - WG13 CIM literal <> Topology::TestEnum.J/m² : invalid characters = [/, ²] +2024-09-08 15:10:02,466 [main] ERROR AttributeValidator - WG13 CIM literal <> Topology::TestEnum.µ : invalid characters = [µ] +2024-09-08 15:10:02,466 [main] ERROR AttributeValidator - OTHER_CIM CIM CIMDatatype attribute Package with space::My class._attr : invalid characters = [_] +2024-09-08 15:10:02,466 [main] DEBUG AttributeValidator - Found 0 IEC61850 attributes whose name contains illegal character(s) - rename by removing invalid character(s). +2024-09-08 15:10:02,466 [main] ERROR AttributeValidator - Found 3 IEC61850-7-4xx attributes (DO) that have too long name - rename the DO: +2024-09-08 15:10:02,466 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LogicalNodes::EquipmentInterfaceLN.EEHealthAlmClc : (+2) +2024-09-08 15:10:02,467 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LNGroupL::LPHD.RsStatAlmMthClc : (+3) +2024-09-08 15:10:02,467 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LNGroupL::LPHD.StatAlmMthClc : (+1) +2024-09-08 15:10:02,467 [main] ERROR AttributeValidator - Found 1 IEC61850-7-3 (FCDA) multi-valued attributes that are missing minIdx and/or maxIdx constraint(s) - add the missing attribute constraint(s): +2024-09-08 15:10:02,467 [main] ERROR AttributeValidator - WG10 IEC61850 FCDA attribute CDCStatusInfo::HST.hstVal : missing minIdx +2024-09-08 15:10:02,467 [main] ERROR AttributeValidator - Found 1 attributes (whose type is enumerated type) that use an inexisting enum literal as initial value - change initial value to an existing enum literal: +2024-09-08 15:10:02,467 [main] ERROR AttributeValidator - WG14 CIM enumeration attribute Other::BadDatatypes.unit : valid literals = [VA, W, VAr, VAh, Wh, VArh, V, ohm, A, F, H, ºC, s, min, h, deg, rad, J, N, S, none, Hz, g, Pa, m, m2, m3, V/VAr, W/Hz, J/s, s-1, kg/J, W/s, Hz-1] +2024-09-08 15:10:02,467 [main] ERROR AttributeValidator - Found 35 (GROUP 1) IEC61850-7-4xx (DO) attributes with names containing undefined abbreviations - add missing abbreviation OR rename the DO (and create a Tissue): +2024-09-08 15:10:02,467 [main] ERROR AttributeValidator - WG10 IEC61850 data object LogicalNodes::DomainLN.NamPlt : [{NamPlt=?}] +2024-09-08 15:10:02,467 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LogicalNodes::DomainLN.Health : [{Health=?}] +2024-09-08 15:10:02,467 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LogicalNodes::DomainLN.Mod : [{Mod=?}] +2024-09-08 15:10:02,467 [main] ERROR AttributeValidator - WG10 IEC61850 data object LogicalNodes::DomainLN.CntRs : [{CntRs=?}] +2024-09-08 15:10:02,467 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LogicalNodes::StatisticsLN.ClcExp : [{ClcExp=?}] +2024-09-08 15:10:02,468 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LogicalNodes::StatisticsLN.ClcMth : [{ClcMth=?}] +2024-09-08 15:10:02,468 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LogicalNodes::EquipmentInterfaceLN.EEHealthAlmClc : [{EEHealth=?}, {Alm=Alarm}, {Clc=?}] +2024-09-08 15:10:02,468 [main] ERROR AttributeValidator - WG10 IEC61850 data object LNGroupL::KXYZ.TotW : [{TotW=?}] +2024-09-08 15:10:02,468 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LNGroupL::KXYZ.WrongA : [{Wrong=?}, {A=Current}] +2024-09-08 15:10:02,468 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LNGroupL::KXYZ.CorrectA : [{Correct=?}, {A=Current}] +2024-09-08 15:10:02,468 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LNGroupL::LPHD.PhyHealth : [{PhyHealth=?}] +2024-09-08 15:10:02,468 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LNGroupL::LPHD.RsStatAlmMthClc : [{RsStat=?}, {Alm=Alarm}, {MthClc=?}] +2024-09-08 15:10:02,468 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LNGroupL::LPHD.StatAlmMthClc : [{Stat=?}, {Alm=Alarm}, {MthClc=?}] +2024-09-08 15:10:02,468 [main] ERROR AttributeValidator - WG10 IEC61850 data object LNGroupL::LLN0.NamPlt : [{NamPlt=?}] +2024-09-08 15:10:02,468 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LNGroupL::LLN0.Beh : [{Beh=?}] +2024-09-08 15:10:02,468 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LNGroupL::LLN0.Health : [{Health=?}] +2024-09-08 15:10:02,468 [main] ERROR AttributeValidator - WG10 IEC61850 data object LNGroupC::CALH.GrAlm : [{Gr=?}, {Alm=Alarm}] +2024-09-08 15:10:02,468 [main] ERROR AttributeValidator - WG10 IEC61850 data object LNGroupC::CALH.GrWrn : [{GrWrn=?}] +2024-09-08 15:10:02,468 [main] ERROR AttributeValidator - WG10 IEC61850 data object LNGroupC::CALH.ModBeh : [{ModBeh=?}] +2024-09-08 15:10:02,469 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LNGroupG::GGIO.EEHealth : [{EEHealth=?}] +2024-09-08 15:10:02,469 [main] ERROR AttributeValidator - WG10 IEC61850 data object LNGroupG::GGIO.AnIn : [{A=Current}, {nIn=?}] +2024-09-08 15:10:02,469 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LNGroupG::GGIO.DPCSO : [{DPCSO=?}] +2024-09-08 15:10:02,469 [main] ERROR AttributeValidator - WG10 IEC61850 data object LNGroupM::MMXU.TotW : [{TotW=?}] +2024-09-08 15:10:02,469 [main] ERROR AttributeValidator - WG10 IEC61850 data object LNGroupM::MMXU.Desc : [{Desc=?}] +2024-09-08 15:10:02,469 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LNGroupP::ProtectionLN.OpCntRs : [{OpCntRs=?}] +2024-09-08 15:10:02,469 [main] ERROR AttributeValidator - WG10 IEC61850 data object LNGroupP::PDIF.Str : [{Str=?}] +2024-09-08 15:10:02,469 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LNGroupP::PDIF.Op : [{Op=?}] +2024-09-08 15:10:02,469 [main] ERROR AttributeValidator - WG10 IEC61850 data object LNGroupP::PDIS.Str : [{Str=?}] +2024-09-08 15:10:02,469 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LNGroupP::PDIS.Op : [{Op=?}] +2024-09-08 15:10:02,469 [main] ERROR AttributeValidator - WG10 IEC61850 data object LNGroupR::RDIR.Dir : [{Dir=?}] +2024-09-08 15:10:02,469 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LNGroupR::RDIR.TotW : [{TotW=?}] +2024-09-08 15:10:02,469 [main] ERROR AttributeValidator - WG10 IEC61850 data object LNGroupZ::ZAXN.Vol : [{Vol=?}] +2024-09-08 15:10:02,469 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LNGroupZ::ZAXN.Mat : [{Mat=?}] +2024-09-08 15:10:02,470 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LNGroupZ::ZAXN.MatCtl : [{MatCtl=?}] +2024-09-08 15:10:02,470 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LNGroupZ::ZAXN.Oth : [{Oth=?}] +2024-09-08 15:10:02,470 [main] ERROR AttributeValidator - Found 4 CIM attributes whose name starts with an upper case letter - rename attribute(s) to start with lower case letter: +2024-09-08 15:10:02,470 [main] ERROR AttributeValidator - WG13 CIM literal <> Domain::YesNo.Yes +2024-09-08 15:10:02,470 [main] ERROR AttributeValidator - WG13 CIM literal <> Domain::YesNo.No +2024-09-08 15:10:02,470 [main] ERROR AttributeValidator - WG13 CIM literal <> Topology::TestEnum.J/m² +2024-09-08 15:10:02,470 [main] ERROR AttributeValidator - WG13 CIM enumeration attribute Core::Bay.TestYesNo1 +2024-09-08 15:10:02,470 [main] ERROR AttributeValidator - Found 2 CIM attributes that should be singular - rename attribute to singular: +2024-09-08 15:10:02,470 [main] ERROR AttributeValidator - WG13 CIM literal <> Domain::YesNo.Yes +2024-09-08 15:10:02,470 [main] ERROR AttributeValidator - WG13 CIM enumeration attribute Core::ConductingEquipment.phases +2024-09-08 15:10:02,470 [main] WARN AttributeValidator - Found 3 CIM attributes whose name starts with the name of containing class - this is considered redundant, rename attribute by removing the containing class name at the start: +2024-09-08 15:10:02,471 [main] WARN AttributeValidator - WG13 CIM CIMDatatype attribute Core::BasePower.basePower +2024-09-08 15:10:02,471 [main] WARN AttributeValidator - WG13 CIM Primitive attribute Core::Bay.bayEnergyMeasFlag +2024-09-08 15:10:02,471 [main] WARN AttributeValidator - WG13 CIM Primitive attribute Core::Bay.bayPowerMeasFlag +2024-09-08 15:10:02,471 [main] ERROR AttributeValidator - Found 3 abbreviation terms starting with lower case letter; cannot be used as first term in DO name - rename it to start with upper case letter: +2024-09-08 15:10:02,471 [main] ERROR AttributeValidator - WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.aDummy +2024-09-08 15:10:02,471 [main] ERROR AttributeValidator - WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.ppm +2024-09-08 15:10:02,471 [main] ERROR AttributeValidator - WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.km +2024-09-08 15:10:02,471 [main] ERROR AttributeValidator - Found 1 IEC61850-7-4xx (DO) attributes with name starting with lower case letter - rename it to start with upper case letter: +2024-09-08 15:10:02,471 [main] ERROR AttributeValidator - WG10 IEC61850 data object LNGroupL::KXYZ.aDummyAlm +2024-09-08 15:10:02,471 [main] ERROR AttributeValidator - Found 61 attributes with type from prohibited owner according to standard IEC TC57 rules (wrong direction for dependency) - change attribute type OR move the containing class to that owner: +2024-09-08 15:10:02,471 [main] ERROR AttributeValidator - WG13 CIM attribute Domain::ActivePowerChangeRate.value : offending type = NullCIM::NullCIM +2024-09-08 15:10:02,471 [main] ERROR AttributeValidator - WG14 CIM attribute Other::MyClass.curveStyle : offending type = NullCIM::NullCIM +2024-09-08 15:10:02,472 [main] ERROR AttributeValidator - WG14 CIM attribute Other::AttrDuplication.curveStyle : offending type = NullCIM::NullCIM +2024-09-08 15:10:02,472 [main] ERROR AttributeValidator - WG10 IEC61850 attribute WG10::WG10UMLVersion.version : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,472 [main] ERROR AttributeValidator - WG10 IEC61850 attribute WG10::WG10UMLVersion.date : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,472 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_2::IEC61850_7_2Namespace.id : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,472 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_2::IEC61850_7_2Namespace.version : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,472 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_2::IEC61850_7_2Namespace.revision : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,472 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_2::IEC61850_7_2Namespace.date : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,472 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_2::IEC61850_7_2Namespace.name : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,472 [main] ERROR AttributeValidator - WG10 IEC61850 private attribute CoreTypes::ObjectName.val : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,472 [main] ERROR AttributeValidator - WG10 IEC61850 private attribute CoreTypes::P_ObjectReference.val : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,472 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CoreTypes::P_TimeStamp.FractionOfSecond : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,472 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::FILEReference.FileRef : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,472 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::FILEReference.FileName : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,472 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::LDReference.LDRef : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,473 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::NonPersistentDSReference.DSRef : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,473 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::LNReference.LNRef : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,473 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::CDCReference.DataRef : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,473 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::CBReference.CBRef : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,473 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::LOGReference.LogRef : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,473 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::LNOwnedDSReference.DSRef : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,473 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::FCDReference.FCDRef : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,473 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::FCDReference.FCDRefWithoutFC : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,473 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::FCDAReference.FCDARef : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,473 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CommonAcsiTypes::IPAddress.address : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,473 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CommonAcsiTypes::MulticastAddress.address : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,473 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CommonAcsiTypes::MulticastAddress.priority : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,473 [main] ERROR AttributeValidator - WG10 IEC61850 private attribute CommonAcsiTypes::ReportID.val : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,473 [main] ERROR AttributeValidator - WG10 IEC61850 attribute MetaModel::IED.name : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,474 [main] ERROR AttributeValidator - WG10 IEC61850 attribute MetaModel::SERVER.name : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,474 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_3::IEC61850_7_3Namespace.id : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,474 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_3::IEC61850_7_3Namespace.version : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,474 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_3::IEC61850_7_3Namespace.revision : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,474 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_3::IEC61850_7_3Namespace.date : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,474 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_3::IEC61850_7_3Namespace.name : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,474 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CDCStatusInfo::ACD.dirGeneral : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,474 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CDCAnalogueInfo::CMV.instCVal : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,474 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CDCAnalogueInfo::CMV.subCVal : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,474 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CDCControl::BAC.subVal : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,474 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CDCStatusSet::ENG.setVal : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,474 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CDCStatusSet::ENG._setVal : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,474 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CDCStatusSet::ENG.__setVal : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,475 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_4::IEC61850_7_4Namespace.id : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,475 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_4::IEC61850_7_4Namespace.version : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,475 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_4::IEC61850_7_4Namespace.revision : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,475 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_4::IEC61850_7_4Namespace.date : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,475 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_4::IEC61850_7_4Namespace.name : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,475 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LNGroupG::GGIO.DPCSO : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,475 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LNGroupP::ProtectionLN.OpCntRs : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,475 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LNGroupZ::ZAXN.Amp : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,475 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LNGroupZ::ZAXN.Mat : offending type = DerivedCDCs_7_420::ENSMaterial +2024-09-08 15:10:02,475 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LNGroupZ::ZAXN.MatCtl : offending type = DerivedCDCs_7_420::ENCMaterial +2024-09-08 15:10:02,475 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LNGroupZ::ZAXN.Oth : offending type = DerivedCDCs_7_420::ENSOther +2024-09-08 15:10:02,475 [main] ERROR AttributeValidator - WG17 IEC61850 attribute WG17::WG17UMLVersion.version : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,475 [main] ERROR AttributeValidator - WG17 IEC61850 attribute WG17::WG17UMLVersion.date : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,476 [main] ERROR AttributeValidator - WG17 IEC61850 attribute IEC51850_7_420::IEC61850_7_420Namespace.id : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,476 [main] ERROR AttributeValidator - WG17 IEC61850 attribute IEC51850_7_420::IEC61850_7_420Namespace.version : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,476 [main] ERROR AttributeValidator - WG17 IEC61850 attribute IEC51850_7_420::IEC61850_7_420Namespace.revision : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,476 [main] ERROR AttributeValidator - WG17 IEC61850 attribute IEC51850_7_420::IEC61850_7_420Namespace.date : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,476 [main] ERROR AttributeValidator - WG17 IEC61850 attribute IEC51850_7_420::IEC61850_7_420Namespace.tissuesApplied : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:10:02,476 [main] ERROR AttributeValidator - Found 2 (GROUP 2) IEC61850-7-4xx abbreviations present more than once - consolidate all definitions into one abbreviation OR create new abbreviation if definitions differ: +2024-09-08 15:10:02,476 [main] ERROR AttributeValidator - 1 WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.Amp : all definitions for the same name = [{WG10: Current non-phase-related}, {WG18: Duplicated definition: Current non-phase-related}] +2024-09-08 15:10:02,476 [main] ERROR AttributeValidator - 1 WG18 IEC61850 abbreviated term <> Abbreviations_410::AbbrTermA.Amp : all definitions for the same name = [{WG10: Current non-phase-related}, {WG18: Duplicated definition: Current non-phase-related}] +2024-09-08 15:10:02,476 [main] ERROR AttributeValidator - Found 2 (GROUP 5) IEC61850-7-4xx abbreviations with same definition - consolidate all definitions into one abbreviation OR create new abbreviation if definitions differ: +2024-09-08 15:10:02,476 [main] ERROR AttributeValidator - 1 Alarm : all terms for the same definition = [{WG10: Alm}, {WG18: Alm2}] +2024-09-08 15:10:02,476 [main] ERROR AttributeValidator - 1 Alarm : all terms for the same definition = [{WG10: Alm}, {WG18: Alm2}] +2024-09-08 15:10:02,477 [main] ERROR AttributeValidator - Found 8 (GROUP 3) IEC61850-7-4xx abbreviations never used (in name of DO attributes for the chosen scope) - remove unused abbreviations: +2024-09-08 15:10:02,477 [main] ERROR AttributeValidator - WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.Z +2024-09-08 15:10:02,477 [main] ERROR AttributeValidator - WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.Z1 +2024-09-08 15:10:02,477 [main] ERROR AttributeValidator - WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.ppm +2024-09-08 15:10:02,477 [main] ERROR AttributeValidator - WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.km +2024-09-08 15:10:02,477 [main] ERROR AttributeValidator - WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermZ.Z0 +2024-09-08 15:10:02,477 [main] ERROR AttributeValidator - WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermZ.Zro +2024-09-08 15:10:02,477 [main] ERROR AttributeValidator - WG18 IEC61850 abbreviated term <> Abbreviations_410::AbbrTermA.Abc +2024-09-08 15:10:02,477 [main] ERROR AttributeValidator - WG18 IEC61850 abbreviated term <> Abbreviations_410::AbbrTermA.Alm2 +2024-09-08 15:10:02,477 [main] ERROR AttributeValidator - Found 3 IEC61850-7-4xx (DO) attributes with same names but different type (CDC) - rename (DO) attribute OR change its type (CDC): +2024-09-08 15:10:02,477 [main] ERROR AttributeValidator - 1 TotW : [[WG10 LNGroupL::KXYZ.TotW, WG10 LNGroupM::MMXU.TotW] are CMV, [WG10 LNGroupR::RDIR.TotW] is SPSTransient] +2024-09-08 15:10:02,477 [main] ERROR AttributeValidator - 1 TotW : [[WG10 LNGroupL::KXYZ.TotW, WG10 LNGroupM::MMXU.TotW] are CMV, [WG10 LNGroupR::RDIR.TotW] is SPSTransient] +2024-09-08 15:10:02,478 [main] ERROR AttributeValidator - 1 TotW : [[WG10 LNGroupL::KXYZ.TotW, WG10 LNGroupM::MMXU.TotW] are CMV, [WG10 LNGroupR::RDIR.TotW] is SPSTransient] +2024-09-08 15:10:02,478 [main] ERROR AttributeValidator - Found 7 IEC61850 presence condition literals never used as class constraints - if also not used in the larger scope: remove unused presence condition literals: +2024-09-08 15:10:02,478 [main] ERROR AttributeValidator - WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.AllOnlyOneGroup(n) +2024-09-08 15:10:02,478 [main] ERROR AttributeValidator - WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.OFsg +2024-09-08 15:10:02,478 [main] ERROR AttributeValidator - WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MFsgAtLeastOne +2024-09-08 15:10:02,478 [main] ERROR AttributeValidator - WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.OFnsg +2024-09-08 15:10:02,478 [main] ERROR AttributeValidator - WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MFnsgAtLeastOne +2024-09-08 15:10:02,478 [main] ERROR AttributeValidator - WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.Mmulti +2024-09-08 15:10:02,478 [main] ERROR AttributeValidator - WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.OF(condID) +2024-09-08 15:10:02,478 [main] INFO AbstractValidator - +2024-09-08 15:10:02,478 [main] INFO AbstractValidator - ====== Validating 14 (of 14) operations: +2024-09-08 15:10:02,482 [main] WARN OperationValidator - Found 1 operations that should have name starting with lower case - operations that should have name starting with lower case: +2024-09-08 15:10:02,482 [main] WARN OperationValidator - WG13 CIM operation PowerSystemResource.GetWhatevers +2024-09-08 15:10:02,482 [main] ERROR OperationValidator - Found 1 operations with unallowed stereotype(s) - remove offending stereotype(s) OR use one or more of {CIM=[deprecated, informative, event], IEC61850=[deprecated, informative, event]}: +2024-09-08 15:10:02,482 [main] ERROR OperationValidator - WG13 CIM operation <> PowerSystemResource.setSomething : offending stereotypes = [someStereotype] +2024-09-08 15:10:02,483 [main] ERROR OperationValidator - Found 1 operation parameters with unallowed stereotype(s) - remove offending stereotype(s) OR use one or more of {CIM=[deprecated, informative], IEC61850=[deprecated, informative]}: +2024-09-08 15:10:02,483 [main] ERROR OperationValidator - WG13 CIM array <> PowerSystemResource.GetWhatevers(...BasePower[] multiples...) : offending stereotypes = [parStereo1, parStereo2] +2024-09-08 15:10:02,483 [main] ERROR OperationValidator - Found 5 operations that have as return type the class not present in the model - locate class in the model from the combo-box on operation return type: +2024-09-08 15:10:02,483 [main] ERROR OperationValidator - WG13 CIM operation PowerSystemResource.GetWhatevers : return type is inexisting class ''void' (id=0)' +2024-09-08 15:10:02,483 [main] ERROR OperationValidator - WG13 CIM operation <> PowerSystemResource.bar : return type is inexisting class ''Dumb' (id=0)' +2024-09-08 15:10:02,483 [main] ERROR OperationValidator - WG13 CIM operation PowerSystemResource.foo : return type is inexisting class ''Dumb' (id=0)' +2024-09-08 15:10:02,483 [main] ERROR OperationValidator - WG10 IEC61850 operation Authentication.getPassword : return type is inexisting class ''P_VISIBLE_STRING64' (id=1665)' +2024-09-08 15:10:02,483 [main] ERROR OperationValidator - WG10 IEC61850 operation Authentication.geUserID : return type is inexisting class ''P_VISIBLE_STRING64' (id=1665)' +2024-09-08 15:10:02,483 [main] ERROR OperationValidator - Found 2 operations that have parameters that use for their type classes not present in the model - locate class(es) in the model from the combo-box on operation parameter: +2024-09-08 15:10:02,483 [main] ERROR OperationValidator - (5) WG13 CIM Core::PowerSystemResource operation <> public NullCIM bar(NullCIM par3, Float par2, NullCIM par); tags={someTag=value} : inexisting class(es) = '['NonExisting' (id=0) used as type in parameter 'par3' (0), 'Par' (id=0) used as type in parameter 'par' (2)] +2024-09-08 15:10:02,483 [main] ERROR OperationValidator - (4) WG13 CIM Core::PowerSystemResource operation public NullCIM foo(NullCIM par3, Float par2, NullCIM par); tags={someTag=value} : inexisting class(es) = '['NonExisting' (id=0) used as type in parameter 'par3' (0), 'Par' (id=0) used as type in parameter 'par' (2)] +2024-09-08 15:10:02,483 [main] ERROR OperationValidator - Found 1 operations that have exceptions not present in the model - ensure that values in throws tag correspond to classes present in the model: +2024-09-08 15:10:02,483 [main] ERROR OperationValidator - (1) WG13 CIM Core::PowerSystemResource operation abstract public NullCIM[] GetWhatevers(BasePower[] multiples) throws Dummy,PSRType,Dummy2; tags={throws=Dummy,PSRType,Dummy2, dummyCimTag=on operation} : inexisting class(es) = '['Dummy', 'PSRType', 'Dummy2'] +2024-09-08 15:10:02,483 [main] ERROR OperationValidator - Found 3 operations with unallowed tag names - remove tags: +2024-09-08 15:10:02,483 [main] ERROR OperationValidator - WG13 CIM operation PowerSystemResource.GetWhatevers : [dummyCimTag] +2024-09-08 15:10:02,484 [main] ERROR OperationValidator - WG13 CIM operation <> PowerSystemResource.bar : [someTag] +2024-09-08 15:10:02,484 [main] ERROR OperationValidator - WG13 CIM operation PowerSystemResource.foo : [someTag] +2024-09-08 15:10:02,484 [main] DEBUG OperationValidator - Found 0 operation parameters with unallowed tag names - remove tags. +2024-09-08 15:10:02,484 [main] WARN OperationValidator - Found 5 operations missing documentation - add documentation: +2024-09-08 15:10:02,484 [main] WARN OperationValidator - WG13 CIM operation <> PowerSystemResource.bar +2024-09-08 15:10:02,484 [main] WARN OperationValidator - WG10 IEC61850 operation Authentication.getPassword +2024-09-08 15:10:02,484 [main] WARN OperationValidator - WG10 IEC61850 operation Authentication.geUserID +2024-09-08 15:10:02,484 [main] WARN OperationValidator - WG10 IEC61850 operation Authentication.getViews +2024-09-08 15:10:02,484 [main] WARN OperationValidator - OTHER_CIM CIM operation My class.ope-ration +2024-09-08 15:10:02,484 [main] WARN OperationValidator - Found 6 operation parameters missing documentation - add documentation: +2024-09-08 15:10:02,484 [main] WARN OperationValidator - WG13 CIM simple PowerSystemResource.setSomething(...String name...) +2024-09-08 15:10:02,484 [main] WARN OperationValidator - WG13 CIM simple PowerSystemResource.bar(...NullCIM par3...) +2024-09-08 15:10:02,484 [main] WARN OperationValidator - WG13 CIM simple PowerSystemResource.bar(...NullCIM par...) +2024-09-08 15:10:02,484 [main] WARN OperationValidator - WG10 IEC61850 operation Authentication.getPassword +2024-09-08 15:10:02,484 [main] WARN OperationValidator - WG10 IEC61850 operation Authentication.geUserID +2024-09-08 15:10:02,484 [main] WARN OperationValidator - WG10 IEC61850 operation Authentication.getViews +2024-09-08 15:10:02,485 [main] WARN OperationValidator - Found 1 operations whose documentation starts with unallowed character - fix the first character: valid ones are any upper case letter or punctuation marks [', ", (]: +2024-09-08 15:10:02,485 [main] WARN OperationValidator - WG13 CIM operation PowerSystemResource.GetWhatevers : doc='dummy operation - will be inhe...' +2024-09-08 15:10:02,485 [main] WARN OperationValidator - Found 2 operation parameters whose documentation starts with unallowed character - fix the first character: valid ones are any upper case letter or punctuation marks [', ", (]: +2024-09-08 15:10:02,485 [main] WARN OperationValidator - WG13 CIM simple PowerSystemResource.bar(...Float par2...) : doc='starting with lower case, miss...' +2024-09-08 15:10:02,485 [main] WARN OperationValidator - OTHER_CIM CIM simple My class.ope-ration(...ApparentPower _par...) : doc='doc' +2024-09-08 15:10:02,485 [main] WARN OperationValidator - Found 1 operations whose documentation does not end with a dot ('.') - fix the last character: add a dot: +2024-09-08 15:10:02,485 [main] WARN OperationValidator - WG13 CIM operation PowerSystemResource.GetWhatevers : doc='... end and starts with lowe case' +2024-09-08 15:10:02,485 [main] WARN OperationValidator - Found 3 operation parameters whose documentation does not end with a dot ('.') - fix the last character: add a dot: +2024-09-08 15:10:02,485 [main] WARN OperationValidator - WG13 CIM array <> PowerSystemResource.GetWhatevers(...BasePower[] multiples...) : doc='...nt (but does not end with ".")' +2024-09-08 15:10:02,485 [main] WARN OperationValidator - WG13 CIM simple PowerSystemResource.bar(...Float par2...) : doc='...r case, missing "." at the end' +2024-09-08 15:10:02,486 [main] WARN OperationValidator - OTHER_CIM CIM simple My class.ope-ration(...ApparentPower _par...) : doc='doc' +2024-09-08 15:10:02,486 [main] ERROR OperationValidator - Found 1 operations whose name contains illegal character(s) - rename by removing invalid character(s): +2024-09-08 15:10:02,486 [main] ERROR OperationValidator - OTHER_CIM CIM operation My class.ope-ration : invalid characters = [-] +2024-09-08 15:10:02,486 [main] ERROR OperationValidator - Found 2 operation parameters whose name contains illegal character(s) - rename by removing invalid character(s): +2024-09-08 15:10:02,486 [main] ERROR OperationValidator - OTHER_CIM CIM simple My class.ope-ration(...Boolean other param...) : invalid characters = [ ] +2024-09-08 15:10:02,486 [main] ERROR OperationValidator - OTHER_CIM CIM simple My class.ope-ration(...ApparentPower _par...) : invalid characters = [_] +2024-09-08 15:10:02,486 [main] INFO AbstractValidator - +2024-09-08 15:10:02,486 [main] INFO AbstractValidator - ====== Validating 99 (of 99) associations: +2024-09-08 15:10:02,492 [main] ERROR AssociationValidator - Found 2 associations that should have direction 'unspecified' - change associations direction to 'unspecified': +2024-09-08 15:10:02,492 [main] ERROR AssociationValidator - (116) WG13 CIM aggregation <>, qname='Bay.Substation - Substation.bays', endAsSrc: myEnd: WG13 [0..*] Substation.bays (navigable); otherEnd: WG13 [0..1] Bay.Substation (navigable), endAsTgt: myEnd: WG13 [0..1] Bay.Substation (navigable); otherEnd: WG13 [0..*] Substation.bays (navigable) : direction = 'biDirectional' +2024-09-08 15:10:02,492 [main] ERROR AssociationValidator - (3463) WG13 CIM association <>, qname='PowerSystemResource.Terminal - Terminal.PSR', endAsSrc: myEnd: WG13 [0..1] Terminal.PSR (navigable); otherEnd: WG13 [0..1] PowerSystemResource.Terminal, endAsTgt: myEnd: WG13 [0..1] PowerSystemResource.Terminal; otherEnd: WG13 [0..1] Terminal.PSR (navigable) : direction = 'directed' +2024-09-08 15:10:02,493 [main] ERROR AssociationValidator - Found 1 association ends that should have direction 'Unspecified' - change association end direction to 'Unspecified': +2024-09-08 15:10:02,493 [main] ERROR AssociationValidator - (2122) WG14 CIM association, qname='AttrDuplication.T1 - BadDatatypes.Something', endAsSrc: myEnd: WG14 [0..1] BadDatatypes.Something (non-navigable); otherEnd: WG14 [0..1] AttrDuplication.T1, endAsTgt: myEnd: WG14 [0..1] AttrDuplication.T1; otherEnd: WG14 [0..1] BadDatatypes.Something (non-navigable) : srcNavig='no', targetNavig='unspecified' +2024-09-08 15:10:02,493 [main] WARN AssociationValidator - Found 11 associations that should have empty doc (we document association ends, not association itself) - delete doc of association: +2024-09-08 15:10:02,493 [main] WARN AssociationValidator - (121) WG13 CIM association <>, qname='BaseVoltage.ConductingEquipment - ConductingEquipment.ProtectedBaseVoltage', endAsSrc: myEnd: WG13 (protected) [0..1] ConductingEquipment.ProtectedBaseVoltage; otherEnd: WG13 [0..*] BaseVoltage.ConductingEquipment, endAsTgt: myEnd: WG13 [0..*] BaseVoltage.ConductingEquipment; otherEnd: WG13 (protected) [0..1] ConductingEquipment.ProtectedBaseVoltage : Use association to ConductingE... +2024-09-08 15:10:02,493 [main] WARN AssociationValidator - (115) WG13 CIM aggregation, qname='VoltageLevel.Bays - Bay.VoltageLevel', endAsSrc: myEnd: WG13 <> [0..1] Bay.VoltageLevel; otherEnd: WG13 <> [0..*] VoltageLevel.Bays, endAsTgt: myEnd: WG13 <> [0..*] VoltageLevel.Bays; otherEnd: WG13 <> [0..1] Bay.VoltageLevel : The association is used in the... +2024-09-08 15:10:02,493 [main] WARN AssociationValidator - (116) WG13 CIM aggregation <>, qname='Bay.Substation - Substation.bays', endAsSrc: myEnd: WG13 [0..*] Substation.bays (navigable); otherEnd: WG13 [0..1] Bay.Substation (navigable), endAsTgt: myEnd: WG13 [0..1] Bay.Substation (navigable); otherEnd: WG13 [0..*] Substation.bays (navigable) : The association is used in the... +2024-09-08 15:10:02,493 [main] WARN AssociationValidator - (123) WG13 CIM association NamedWithTagsEverywhere, qname='Terminal.ConductingEquipment - ConductingEquipment.Terminals', tags={CE-TermAssoc=1, MoreAssoc=}, endAsSrc: myEnd: WG13 [0..*] ConductingEquipment.Terminals; tags={Role1=abc}; otherEnd: WG13 [1..1] Terminal.ConductingEquipment; tags={AnotherRole2=abc, targetEndTag=blah, Role2=xyz}, endAsTgt: myEnd: WG13 [1..1] Terminal.ConductingEquipment; tags={AnotherRole2=abc, targetEndTag=blah, Role2=xyz}; otherEnd: WG13 [0..*] ConductingEquipment.Terminals; tags={Role1=abc} : ConductingEquipment has 1 or 2... +2024-09-08 15:10:02,493 [main] WARN AssociationValidator - (88) WG13 CIM aggregation <>, qname='EquipmentContainer.Equipments - Equipment.EquipmentContainer', endAsSrc: myEnd: WG13 [0..1] Equipment.EquipmentContainer; otherEnd: WG13 [0..*] EquipmentContainer.Equipments, endAsTgt: myEnd: WG13 [0..*] EquipmentContainer.Equipments; otherEnd: WG13 [0..1] Equipment.EquipmentContainer : The association is used in the... +2024-09-08 15:10:02,493 [main] WARN AssociationValidator - (90) WG13 CIM aggregation, qname='geographicalRegion.Regions - SubGeographicalRegion.Region', endAsSrc: myEnd: WG13 [0..1] SubGeographicalRegion.Region; otherEnd: WG13 [0..*] geographicalRegion.Regions, endAsTgt: myEnd: WG13 [0..*] geographicalRegion.Regions; otherEnd: WG13 [0..1] SubGeographicalRegion.Region : The association is used in the... +2024-09-08 15:10:02,493 [main] WARN AssociationValidator - (91) WG13 CIM aggregation, qname='SubGeographicalRegion.Substations - Substation.Region', endAsSrc: myEnd: WG13 [0..1] Substation.Region; otherEnd: WG13 [0..*] SubGeographicalRegion.Substations, endAsTgt: myEnd: WG13 [0..*] SubGeographicalRegion.Substations; otherEnd: WG13 [0..1] Substation.Region : The association is used in the... +2024-09-08 15:10:02,494 [main] WARN AssociationValidator - (94) WG13 CIM aggregation, qname='Substation.VoltageLevels - VoltageLevel.Substation', endAsSrc: myEnd: WG13 [1..1] VoltageLevel.Substation; otherEnd: WG13 [0..*] Substation.VoltageLevels, endAsTgt: myEnd: WG13 [0..*] Substation.VoltageLevels; otherEnd: WG13 [1..1] VoltageLevel.Substation : The association is used in the... +2024-09-08 15:10:02,494 [main] WARN AssociationValidator - (229) WG13 CIM association, qname='Terminal.ConnectivityNode - ConnectivityNode.Terminals', endAsSrc: myEnd: WG13 [0..*] ConnectivityNode.Terminals; otherEnd: WG13 [0..1] Terminal.ConnectivityNode, endAsTgt: myEnd: WG13 [0..1] Terminal.ConnectivityNode; otherEnd: WG13 [0..*] ConnectivityNode.Terminals : Terminals interconnect with ze... +2024-09-08 15:10:02,494 [main] WARN AssociationValidator - (235) WG13 CIM aggregation, qname='ConnectivityNode.TopologicalNode - TopologicalNode.ConnectivityNodes', endAsSrc: myEnd: WG13 [0..*] TopologicalNode.ConnectivityNodes; otherEnd: WG13 [0..1] ConnectivityNode.TopologicalNode, endAsTgt: myEnd: WG13 [0..1] ConnectivityNode.TopologicalNode; otherEnd: WG13 [0..*] TopologicalNode.ConnectivityNodes : Several ConnectivityNode(s) ma... +2024-09-08 15:10:02,494 [main] WARN AssociationValidator - (237) WG13 CIM aggregation, qname='TopologicalNode.TopologicalIsland - TopologicalIsland.TopologicalNodes', endAsSrc: myEnd: WG13 [?..?] TopologicalIsland.TopologicalNodes; otherEnd: WG13 [1..1] TopologicalNode.TopologicalIsland, endAsTgt: myEnd: WG13 [1..1] TopologicalNode.TopologicalIsland; otherEnd: WG13 [?..?] TopologicalIsland.TopologicalNodes : A topological node belongs to ... +2024-09-08 15:10:02,496 [main] WARN AssociationValidator - Found 12 associations that have same documentation for both association ends - one side has the wrong focus - change documentation for one association end: +2024-09-08 15:10:02,496 [main] WARN AssociationValidator - (121) WG13 CIM association <>, qname='BaseVoltage.ConductingEquipment - ConductingEquipment.ProtectedBaseVoltage', endAsSrc: myEnd: WG13 (protected) [0..1] ConductingEquipment.ProtectedBaseVoltage; otherEnd: WG13 [0..*] BaseVoltage.ConductingEquipment, endAsTgt: myEnd: WG13 [0..*] BaseVoltage.ConductingEquipment; otherEnd: WG13 (protected) [0..1] ConductingEquipment.ProtectedBaseVoltage : Use association to ConductingE... +2024-09-08 15:10:02,496 [main] WARN AssociationValidator - (115) WG13 CIM aggregation, qname='VoltageLevel.Bays - Bay.VoltageLevel', endAsSrc: myEnd: WG13 <> [0..1] Bay.VoltageLevel; otherEnd: WG13 <> [0..*] VoltageLevel.Bays, endAsTgt: myEnd: WG13 <> [0..*] VoltageLevel.Bays; otherEnd: WG13 <> [0..1] Bay.VoltageLevel : The association is used in the... +2024-09-08 15:10:02,496 [main] WARN AssociationValidator - (116) WG13 CIM aggregation <>, qname='Bay.Substation - Substation.bays', endAsSrc: myEnd: WG13 [0..*] Substation.bays (navigable); otherEnd: WG13 [0..1] Bay.Substation (navigable), endAsTgt: myEnd: WG13 [0..1] Bay.Substation (navigable); otherEnd: WG13 [0..*] Substation.bays (navigable) : The association is used in the... +2024-09-08 15:10:02,496 [main] WARN AssociationValidator - (123) WG13 CIM association NamedWithTagsEverywhere, qname='Terminal.ConductingEquipment - ConductingEquipment.Terminals', tags={CE-TermAssoc=1, MoreAssoc=}, endAsSrc: myEnd: WG13 [0..*] ConductingEquipment.Terminals; tags={Role1=abc}; otherEnd: WG13 [1..1] Terminal.ConductingEquipment; tags={AnotherRole2=abc, targetEndTag=blah, Role2=xyz}, endAsTgt: myEnd: WG13 [1..1] Terminal.ConductingEquipment; tags={AnotherRole2=abc, targetEndTag=blah, Role2=xyz}; otherEnd: WG13 [0..*] ConductingEquipment.Terminals; tags={Role1=abc} : ConductingEquipment has 1 or 2... +2024-09-08 15:10:02,496 [main] WARN AssociationValidator - (88) WG13 CIM aggregation <>, qname='EquipmentContainer.Equipments - Equipment.EquipmentContainer', endAsSrc: myEnd: WG13 [0..1] Equipment.EquipmentContainer; otherEnd: WG13 [0..*] EquipmentContainer.Equipments, endAsTgt: myEnd: WG13 [0..*] EquipmentContainer.Equipments; otherEnd: WG13 [0..1] Equipment.EquipmentContainer : The association is used in the... +2024-09-08 15:10:02,496 [main] WARN AssociationValidator - (90) WG13 CIM aggregation, qname='geographicalRegion.Regions - SubGeographicalRegion.Region', endAsSrc: myEnd: WG13 [0..1] SubGeographicalRegion.Region; otherEnd: WG13 [0..*] geographicalRegion.Regions, endAsTgt: myEnd: WG13 [0..*] geographicalRegion.Regions; otherEnd: WG13 [0..1] SubGeographicalRegion.Region : The association is used in the... +2024-09-08 15:10:02,497 [main] WARN AssociationValidator - (91) WG13 CIM aggregation, qname='SubGeographicalRegion.Substations - Substation.Region', endAsSrc: myEnd: WG13 [0..1] Substation.Region; otherEnd: WG13 [0..*] SubGeographicalRegion.Substations, endAsTgt: myEnd: WG13 [0..*] SubGeographicalRegion.Substations; otherEnd: WG13 [0..1] Substation.Region : The association is used in the... +2024-09-08 15:10:02,497 [main] WARN AssociationValidator - (94) WG13 CIM aggregation, qname='Substation.VoltageLevels - VoltageLevel.Substation', endAsSrc: myEnd: WG13 [1..1] VoltageLevel.Substation; otherEnd: WG13 [0..*] Substation.VoltageLevels, endAsTgt: myEnd: WG13 [0..*] Substation.VoltageLevels; otherEnd: WG13 [1..1] VoltageLevel.Substation : The association is used in the... +2024-09-08 15:10:02,497 [main] WARN AssociationValidator - (229) WG13 CIM association, qname='Terminal.ConnectivityNode - ConnectivityNode.Terminals', endAsSrc: myEnd: WG13 [0..*] ConnectivityNode.Terminals; otherEnd: WG13 [0..1] Terminal.ConnectivityNode, endAsTgt: myEnd: WG13 [0..1] Terminal.ConnectivityNode; otherEnd: WG13 [0..*] ConnectivityNode.Terminals : Terminals interconnect with ze... +2024-09-08 15:10:02,497 [main] WARN AssociationValidator - (235) WG13 CIM aggregation, qname='ConnectivityNode.TopologicalNode - TopologicalNode.ConnectivityNodes', endAsSrc: myEnd: WG13 [0..*] TopologicalNode.ConnectivityNodes; otherEnd: WG13 [0..1] ConnectivityNode.TopologicalNode, endAsTgt: myEnd: WG13 [0..1] ConnectivityNode.TopologicalNode; otherEnd: WG13 [0..*] TopologicalNode.ConnectivityNodes : Several ConnectivityNode(s) ma... +2024-09-08 15:10:02,497 [main] WARN AssociationValidator - (237) WG13 CIM aggregation, qname='TopologicalNode.TopologicalIsland - TopologicalIsland.TopologicalNodes', endAsSrc: myEnd: WG13 [?..?] TopologicalIsland.TopologicalNodes; otherEnd: WG13 [1..1] TopologicalNode.TopologicalIsland, endAsTgt: myEnd: WG13 [1..1] TopologicalNode.TopologicalIsland; otherEnd: WG13 [?..?] TopologicalIsland.TopologicalNodes : A topological node belongs to ... +2024-09-08 15:10:02,497 [main] WARN AssociationValidator - (2122) WG14 CIM association, qname='AttrDuplication.T1 - BadDatatypes.Something', endAsSrc: myEnd: WG14 [0..1] BadDatatypes.Something (non-navigable); otherEnd: WG14 [0..1] AttrDuplication.T1, endAsTgt: myEnd: WG14 [0..1] AttrDuplication.T1; otherEnd: WG14 [0..1] BadDatatypes.Something (non-navigable) +2024-09-08 15:10:02,497 [main] ERROR AssociationValidator - Found 1 associations that should have empty name (we name association ends, not association itself) - remove association name: +2024-09-08 15:10:02,498 [main] ERROR AssociationValidator - WG13 CIM association Terminal.ConductingEquipment - ConductingEquipment.Terminals +2024-09-08 15:10:02,498 [main] ERROR AssociationValidator - Found 6 associations with unallowed stereotype(s) - remove offending stereotype(s) OR use one or more of {CIM=[deprecated, informative], IEC61850=[deprecated, informative]}: +2024-09-08 15:10:02,498 [main] ERROR AssociationValidator - WG13 CIM association <> BaseVoltage.ConductingEquipment - ConductingEquipment.ProtectedBaseVoltage : offending stereotypes = [builds] +2024-09-08 15:10:02,498 [main] ERROR AssociationValidator - WG13 CIM aggregation <> Bay.Substation - Substation.bays : offending stereotypes = [European] +2024-09-08 15:10:02,498 [main] ERROR AssociationValidator - WG13 CIM aggregation <> EquipmentContainer.Equipments - Equipment.EquipmentContainer : offending stereotypes = [European] +2024-09-08 15:10:02,498 [main] ERROR AssociationValidator - WG13 CIM association <> BusNameMarker.PrivateConnectivityNode - ConnectivityNode.BusNameMarker : offending stereotypes = [otherStereo] +2024-09-08 15:10:02,498 [main] ERROR AssociationValidator - OTHER_CIM CIM association <> Pear.Apple - Apple.Pear : offending stereotypes = [dumbStereotype, European] +2024-09-08 15:10:02,498 [main] ERROR AssociationValidator - OTHER_CIM CIM association <> My class._role 2&x - Other-with_invalid name.Role 1 : offending stereotypes = [European] +2024-09-08 15:10:02,498 [main] ERROR AssociationValidator - Found 6 association ends with unallowed stereotype(s) - remove offending stereotype(s) OR use one or more of {CIM=[deprecated, informative], IEC61850=[deprecated, informative]}: +2024-09-08 15:10:02,498 [main] ERROR AssociationValidator - WG13 CIM aggregation <> Bay.VoltageLevel : offending stereotypes = [endStereo1] +2024-09-08 15:10:02,498 [main] ERROR AssociationValidator - WG13 CIM association <> VoltageLevel.Bays : offending stereotypes = [endStereo2] +2024-09-08 15:10:02,499 [main] ERROR AssociationValidator - WG13 CIM association <> ConnectivityNode.BusNameMarker : offending stereotypes = [srcStereo1, srcStereo2] +2024-09-08 15:10:02,499 [main] ERROR AssociationValidator - WG13 CIM private association <> BusNameMarker.PrivateConnectivityNode : offending stereotypes = [endStereo1, endStereo2] +2024-09-08 15:10:02,499 [main] ERROR AssociationValidator - OTHER_CIM CIM association <> Apple.SecondPear : offending stereotypes = [sourceStereo] +2024-09-08 15:10:02,499 [main] ERROR AssociationValidator - OTHER_CIM CIM association <> Pear.SecondApple : offending stereotypes = [targetStereo, European] +2024-09-08 15:10:02,499 [main] ERROR AssociationValidator - Found 3 informative associations missing informative stereotype - add missing informative stereotype: +2024-09-08 15:10:02,499 [main] ERROR AssociationValidator - OTHER_CIM CIM association MyClass.Class1 - Class1.MyClass +2024-09-08 15:10:02,499 [main] ERROR AssociationValidator - OTHER_CIM CIM association End1ForAssocClass.<> - End2ForAssocClass.<> +2024-09-08 15:10:02,499 [main] ERROR AssociationValidator - WG13 CIM association InfClassContainingEmbeddedClass.C2 - InfClass2.C1 +2024-09-08 15:10:02,499 [main] ERROR AssociationValidator - Found 4 associations with unallowed tag names - remove tags: +2024-09-08 15:10:02,499 [main] ERROR AssociationValidator - WG13 CIM association InfClassContainingEmbeddedClass.C2 - InfClass2.C1 : [assocTag] +2024-09-08 15:10:02,499 [main] ERROR AssociationValidator - WG13 CIM association Terminal.ConductingEquipment - ConductingEquipment.Terminals : [CE-TermAssoc, MoreAssoc] +2024-09-08 15:10:02,499 [main] ERROR AssociationValidator - WG13 CIM association <> BusNameMarker.PrivateConnectivityNode - ConnectivityNode.BusNameMarker : [assocTag] +2024-09-08 15:10:02,499 [main] ERROR AssociationValidator - OTHER_CIM CIM association Pear.SecondApple - Apple.SecondPear : [assocTag] +2024-09-08 15:10:02,499 [main] ERROR AssociationValidator - Found 4 association ends with unallowed tag names - remove tags: +2024-09-08 15:10:02,499 [main] ERROR AssociationValidator - WG13 CIM association InfClassContainingEmbeddedClass.C2 - InfClass2.C1 : [assocTag] +2024-09-08 15:10:02,499 [main] ERROR AssociationValidator - WG13 CIM association Terminal.ConductingEquipment - ConductingEquipment.Terminals : [CE-TermAssoc, MoreAssoc] +2024-09-08 15:10:02,500 [main] ERROR AssociationValidator - WG13 CIM association <> BusNameMarker.PrivateConnectivityNode - ConnectivityNode.BusNameMarker : [assocTag] +2024-09-08 15:10:02,500 [main] ERROR AssociationValidator - OTHER_CIM CIM association Pear.SecondApple - Apple.SecondPear : [assocTag] +2024-09-08 15:10:02,500 [main] ERROR AssociationValidator - Found 10 associations missing multiplicity for named association ends - add multiplicity to the named association end(s): +2024-09-08 15:10:02,500 [main] ERROR AssociationValidator - WG13 CIM aggregation TopologicalNode.TopologicalIsland - TopologicalIsland.TopologicalNodes +2024-09-08 15:10:02,500 [main] ERROR AssociationValidator - WG10 IEC61850 association Authentication.<> - ReportID.privateAuth +2024-09-08 15:10:02,500 [main] ERROR AssociationValidator - WG10 IEC61850 association Authentication.publicEntryID - EntryID.publicAuth +2024-09-08 15:10:02,500 [main] ERROR AssociationValidator - WG10 IEC61850 association LN.LNOwnedDSs - LNOwnedDS.LN +2024-09-08 15:10:02,500 [main] ERROR AssociationValidator - WG10 IEC61850 association LN.LOGs - LOG.LN +2024-09-08 15:10:02,500 [main] ERROR AssociationValidator - WG10 IEC61850 association LN.LCBs - LCB.LN +2024-09-08 15:10:02,500 [main] ERROR AssociationValidator - WG10 IEC61850 association LN0.USVCBs - USVCB.LN0 +2024-09-08 15:10:02,500 [main] ERROR AssociationValidator - WG10 IEC61850 association LN0.GCBs - GCB.LN0 +2024-09-08 15:10:02,500 [main] ERROR AssociationValidator - WG10 IEC61850 association LN0.MSVCBs - MSVCB.LN0 +2024-09-08 15:10:02,501 [main] ERROR AssociationValidator - WG10 IEC61850 association LN0.SGCB - SGCB.LN0 +2024-09-08 15:10:02,501 [main] ERROR AssociationValidator - Found 1 associations that should have source and target swapped according to standard IEC TC57 rules (wrong direction for dependency) - swap source and target classes: +2024-09-08 15:10:02,501 [main] ERROR AssociationValidator - OTHER_CIM CIM association MyClass.Class1 - Class1.MyClass +2024-09-08 15:10:02,501 [main] DEBUG AssociationValidator - Found 0 IEC61850 associations that should have private ends - change visibility of association ends to private. +2024-09-08 15:10:02,501 [main] ERROR AssociationValidator - Found 1 IEC61850 associations that should have ends with the same visibility - change visibility on one association end: +2024-09-08 15:10:02,501 [main] ERROR AssociationValidator - WG10 IEC61850 association Authentication.<> - ReportID.privateAuth +2024-09-08 15:10:02,501 [main] WARN AssociationValidator - Found 61 association ends missing documentation - add documentation: +2024-09-08 15:10:02,501 [main] WARN AssociationValidator - WG14 CIM association MyClass.T1 +2024-09-08 15:10:02,501 [main] WARN AssociationValidator - WG14 CIM association BadDatatypes.T2 +2024-09-08 15:10:02,501 [main] WARN AssociationValidator - WG14 CIM association MyClass.From +2024-09-08 15:10:02,501 [main] WARN AssociationValidator - WG14 CIM association MyClass.To +2024-09-08 15:10:02,502 [main] WARN AssociationValidator - WG14 CIM association AttrDuplication.To +2024-09-08 15:10:02,502 [main] WARN AssociationValidator - WG14 CIM association AttrDuplication.From +2024-09-08 15:10:02,502 [main] WARN AssociationValidator - WG14 CIM association AttrDuplication.To +2024-09-08 15:10:02,502 [main] WARN AssociationValidator - WG10 IEC61850 association AccessPoint.IED +2024-09-08 15:10:02,502 [main] WARN AssociationValidator - WG10 IEC61850 association GenIED.AP +2024-09-08 15:10:02,502 [main] WARN AssociationValidator - WG10 IEC61850 association FileSystem.Server +2024-09-08 15:10:02,502 [main] WARN AssociationValidator - WG10 IEC61850 association GenServer.FileSystem +2024-09-08 15:10:02,502 [main] WARN AssociationValidator - WG10 IEC61850 association GenFile.FileSystem +2024-09-08 15:10:02,502 [main] WARN AssociationValidator - WG10 IEC61850 association FileSystem.Files +2024-09-08 15:10:02,502 [main] WARN AssociationValidator - WG10 IEC61850 association GenDataAttribute.CommonDataClass +2024-09-08 15:10:02,502 [main] WARN AssociationValidator - WG10 IEC61850 association GenCommonDataClass.DataAttribute +2024-09-08 15:10:02,502 [main] WARN AssociationValidator - WG10 IEC61850 association GenSubDataObject.CommonDataClass +2024-09-08 15:10:02,502 [main] WARN AssociationValidator - WG10 IEC61850 association GenCommonDataClass.SubDataObject +2024-09-08 15:10:02,503 [main] WARN AssociationValidator - WG10 IEC61850 association GenSubDataAttribute.DataAttribute +2024-09-08 15:10:02,503 [main] WARN AssociationValidator - WG10 IEC61850 association GenConstructedType.SubDataAttribute +2024-09-08 15:10:02,503 [main] WARN AssociationValidator - WG10 IEC61850 association GenDataAttribute.FCDA +2024-09-08 15:10:02,503 [main] WARN AssociationValidator - WG10 IEC61850 association GenFCDA.DataAttribute +2024-09-08 15:10:02,503 [main] WARN AssociationValidator - WG10 IEC61850 association GenDataObject.LogicalNode +2024-09-08 15:10:02,503 [main] WARN AssociationValidator - WG10 IEC61850 association GenLogicalNode.DataObject +2024-09-08 15:10:02,503 [main] WARN AssociationValidator - WG10 IEC61850 association GenDataObject.FCD +2024-09-08 15:10:02,504 [main] WARN AssociationValidator - WG10 IEC61850 association GenFCD.DataObject +2024-09-08 15:10:02,504 [main] WARN AssociationValidator - WG10 IEC61850 association GenFCD.DataSet +2024-09-08 15:10:02,504 [main] WARN AssociationValidator - WG10 IEC61850 association GenDataSet.FCDMember +2024-09-08 15:10:02,504 [main] WARN AssociationValidator - WG10 IEC61850 association GenFCDA.DataSet +2024-09-08 15:10:02,504 [main] WARN AssociationValidator - WG10 IEC61850 association GenDataSet.FCDAMember +2024-09-08 15:10:02,504 [main] WARN AssociationValidator - WG10 IEC61850 association GenSubDataObject.FCD +2024-09-08 15:10:02,504 [main] WARN AssociationValidator - WG10 IEC61850 association GenFCD.SubDataObject +2024-09-08 15:10:02,504 [main] WARN AssociationValidator - WG10 IEC61850 association GenSubDataAttribute.FCDA +2024-09-08 15:10:02,504 [main] WARN AssociationValidator - WG10 IEC61850 association GenFCDA.SubDataAttribute +2024-09-08 15:10:02,504 [main] WARN AssociationValidator - WG10 IEC61850 association GenLN0.LogicalDevice +2024-09-08 15:10:02,504 [main] WARN AssociationValidator - WG10 IEC61850 association GenLogicalDevice.LN0 +2024-09-08 15:10:02,504 [main] WARN AssociationValidator - WG10 IEC61850 association GenLogicalDevice.Server +2024-09-08 15:10:02,505 [main] WARN AssociationValidator - WG10 IEC61850 association GenServer.LogicalDevice +2024-09-08 15:10:02,505 [main] WARN AssociationValidator - WG10 IEC61850 association GenLogicalNode.LogicalDevice +2024-09-08 15:10:02,505 [main] WARN AssociationValidator - WG10 IEC61850 association GenLogicalDevice.LogicalNode +2024-09-08 15:10:02,505 [main] WARN AssociationValidator - WG10 IEC61850 association GenLogicalDevice.ParentLogicalDevice +2024-09-08 15:10:02,505 [main] WARN AssociationValidator - WG10 IEC61850 association GenLogicalDevice.ChildLogicalDevice +2024-09-08 15:10:02,505 [main] WARN AssociationValidator - WG10 IEC61850 association GenMCAA.Server +2024-09-08 15:10:02,505 [main] WARN AssociationValidator - WG10 IEC61850 association GenServer.MCAppAssociation +2024-09-08 15:10:02,505 [main] WARN AssociationValidator - WG10 IEC61850 association GenServer.SAP +2024-09-08 15:10:02,505 [main] WARN AssociationValidator - WG10 IEC61850 association ServiceAccessPoint.Server +2024-09-08 15:10:02,505 [main] WARN AssociationValidator - WG10 IEC61850 association GenTPAA.Server +2024-09-08 15:10:02,505 [main] WARN AssociationValidator - WG10 IEC61850 association GenServer.TPAppAssociation +2024-09-08 15:10:02,505 [main] WARN AssociationValidator - WG10 IEC61850 association EntryID.publicAuth +2024-09-08 15:10:02,506 [main] WARN AssociationValidator - WG10 IEC61850 association Authentication.publicEntryID +2024-09-08 15:10:02,506 [main] WARN AssociationValidator - OTHER_CIM CIM association Apple.SelfFromApple +2024-09-08 15:10:02,506 [main] WARN AssociationValidator - OTHER_CIM CIM association Apple.SelfToApples +2024-09-08 15:10:02,506 [main] WARN AssociationValidator - OTHER_CIM CIM association Apple.Pear +2024-09-08 15:10:02,506 [main] WARN AssociationValidator - OTHER_CIM CIM association Pear.Apple +2024-09-08 15:10:02,506 [main] WARN AssociationValidator - OTHER_CIM CIM association <> Apple.SecondPear +2024-09-08 15:10:02,506 [main] WARN AssociationValidator - OTHER_CIM CIM association <> Pear.SecondApple +2024-09-08 15:10:02,506 [main] WARN AssociationValidator - OTHER_IEC61850 IEC61850 association Fruit.Animal +2024-09-08 15:10:02,506 [main] WARN AssociationValidator - OTHER_IEC61850 CIM association Animal.Fruit +2024-09-08 15:10:02,506 [main] WARN AssociationValidator - OTHER_IEC61850 IEC61850 association Fruit.SecondAnimal +2024-09-08 15:10:02,506 [main] WARN AssociationValidator - OTHER_IEC61850 CIM association Animal.SecondFruit +2024-09-08 15:10:02,506 [main] WARN AssociationValidator - OTHER_CIM CIM association Other-with_invalid name.Role 1 +2024-09-08 15:10:02,506 [main] WARN AssociationValidator - OTHER_CIM CIM association My class._role 2&x +2024-09-08 15:10:02,507 [main] WARN AssociationValidator - Found 1 association ends whose documentation starts with unallowed character - fix the first character: valid ones are any upper case letter or punctuation marks [', ", (]: +2024-09-08 15:10:02,507 [main] WARN AssociationValidator - WG13 CIM association OperatingParticipant.OperatingShare : doc='the operating shares of an ope...' +2024-09-08 15:10:02,507 [main] WARN AssociationValidator - Found 8 association ends whose documentation does not end with a dot ('.') - fix the last character: add a dot: +2024-09-08 15:10:02,507 [main] WARN AssociationValidator - WG13 CIM association ConductingEquipment.Terminals : doc='...erminals via ConnectivityNodes' +2024-09-08 15:10:02,507 [main] WARN AssociationValidator - WG13 CIM association Terminal.ConductingEquipment : doc='...erminals via ConnectivityNodes' +2024-09-08 15:10:02,507 [main] WARN AssociationValidator - WG13 CIM association OperatingParticipant.OperatingShare : doc='...reused for any number of PSR's' +2024-09-08 15:10:02,507 [main] WARN AssociationValidator - WG14 CIM association PowerSystemResource.AssetInfos : doc='FooBar' +2024-09-08 15:10:02,507 [main] WARN AssociationValidator - WG14 CIM association AssetInfo.PSRs : doc='Blah' +2024-09-08 15:10:02,507 [main] WARN AssociationValidator - WG13 CIM association TopologicalIsland.TopologicalNodes : doc='...elongs to a topological island' +2024-09-08 15:10:02,507 [main] WARN AssociationValidator - WG13 CIM aggregation TopologicalNode.TopologicalIsland : doc='...elongs to a topological island' +2024-09-08 15:10:02,507 [main] WARN AssociationValidator - WG14 CIM association AttrDuplication.From : doc='Doc (not ending with ".")' +2024-09-08 15:10:02,507 [main] ERROR AssociationValidator - Found 4 association ends whose name contains illegal character(s) - rename by removing invalid character(s): +2024-09-08 15:10:02,507 [main] ERROR AssociationValidator - WG13 CIM association TopologicalNode.AngleRef_TopologicalIsland : invalid characters = [_] +2024-09-08 15:10:02,508 [main] ERROR AssociationValidator - WG13 CIM association TopologicalIsland.AngleRef_TopologicalNode : invalid characters = [_] +2024-09-08 15:10:02,508 [main] ERROR AssociationValidator - OTHER_CIM CIM association Other-with_invalid name.Role 1 : invalid characters = [ ] +2024-09-08 15:10:02,508 [main] ERROR AssociationValidator - OTHER_CIM CIM association My class._role 2&x : invalid characters = [_, , &] +2024-09-08 15:10:02,508 [main] ERROR AssociationValidator - Found 1 CIM association ends whose name starts with a lower case letter - rename association end(s) to start with upper case letter: +2024-09-08 15:10:02,508 [main] ERROR AssociationValidator - WG13 [0..*] Substation.bays (navigable) +2024-09-08 15:10:02,508 [main] ERROR AssociationValidator - Found 10 CIM association ends that should be plural according to multiplicity - rename association end(s) to plural: +2024-09-08 15:10:02,508 [main] ERROR AssociationValidator - WG13 [0..*] BaseVoltage.VoltageLevel +2024-09-08 15:10:02,508 [main] ERROR AssociationValidator - WG13 [0..*] BaseVoltage.ConductingEquipment +2024-09-08 15:10:02,508 [main] ERROR AssociationValidator - WG13 [0..*] BaseVoltage.TopologicalNode +2024-09-08 15:10:02,508 [main] ERROR AssociationValidator - WG13 [0..*] ConnectivityNodeContainer.TopologicalNode +2024-09-08 15:10:02,508 [main] ERROR AssociationValidator - WG13 [0..*] OperatingParticipant.OperatingShare +2024-09-08 15:10:02,508 [main] ERROR AssociationValidator - WG13 [0..*] PowerSystemResource.OperatingShare +2024-09-08 15:10:02,508 [main] ERROR AssociationValidator - WG13 [0..*] TopologicalNode.Terminal +2024-09-08 15:10:02,508 [main] ERROR AssociationValidator - WG13 (private) <> [0..*] BusNameMarker.PrivateConnectivityNode; tags={endTag=valueEndTag} +2024-09-08 15:10:02,508 [main] ERROR AssociationValidator - OTHER_CIM [0..*] Pear.Apple; tags={targetEndTag=value2} +2024-09-08 15:10:02,508 [main] ERROR AssociationValidator - OTHER_IEC61850 [0..*] Animal.Fruit +2024-09-08 15:10:02,508 [main] ERROR AssociationValidator - Found 1 CIM association ends that should be singular according to multiplicity - rename association end(s) to singular: +2024-09-08 15:10:02,509 [main] ERROR AssociationValidator - WG13 [?..?] TopologicalIsland.TopologicalNodes +2024-09-08 15:10:02,509 [main] INFO AbstractValidator - +2024-09-08 15:10:02,509 [main] INFO AbstractValidator - ====== Validating 81 (of 81) dependencies: +2024-09-08 15:10:02,509 [main] ERROR DependencyValidator - Found 8 dependencies with unallowed stereotype(s) - remove offending stereotype(s) OR use one or more of {CIM=[import, deprecated, IsBasedOn], IEC61850=[deprecated]}: +2024-09-08 15:10:02,509 [main] ERROR DependencyValidator - WG10 IEC61850 interClass dependency <> GenericModel::GenSubDataAttribute -> GenericModel::GenAtomicType : offending stereotypes = [typeOf] +2024-09-08 15:10:02,509 [main] ERROR DependencyValidator - WG10 IEC61850 interClass dependency <> GenericModel::GenDataAttribute -> GenericModel::GenAtomicType : offending stereotypes = [typeOf] +2024-09-08 15:10:02,509 [main] ERROR DependencyValidator - WG10 IEC61850 interClass dependency <> GenericModel::GenSubDataObject -> GenericModel::GenCommonDataClass : offending stereotypes = [typeOf] +2024-09-08 15:10:02,510 [main] ERROR DependencyValidator - WG10 IEC61850 interClass dependency <> GenericModel::GenDataObject -> GenericModel::GenCommonDataClass : offending stereotypes = [typeOf] +2024-09-08 15:10:02,510 [main] ERROR DependencyValidator - WG10 IEC61850 interClass dependency <> GenericModel::GenSubDataAttribute -> GenericModel::GenCompactType : offending stereotypes = [typeOf] +2024-09-08 15:10:02,510 [main] ERROR DependencyValidator - WG10 IEC61850 interClass dependency <> GenericModel::GenDataAttribute -> GenericModel::GenCompactType : offending stereotypes = [typeOf] +2024-09-08 15:10:02,510 [main] ERROR DependencyValidator - WG10 IEC61850 interClass dependency <> GenericModel::GenSubDataAttribute -> GenericModel::GenConstructedType : offending stereotypes = [typeOf] +2024-09-08 15:10:02,510 [main] ERROR DependencyValidator - WG10 IEC61850 interClass dependency <> GenericModel::GenDataAttribute -> GenericModel::GenConstructedType : offending stereotypes = [typeOf] +2024-09-08 15:10:02,510 [main] ERROR DependencyValidator - Found 2 dependencies on unallowed package according to standard IEC TC57 rules - remove dependency or reverse its direction: +2024-09-08 15:10:02,510 [main] ERROR DependencyValidator - WG13 CIM interPackage dependency IEC61970::Topology -> IEC61968::Other +2024-09-08 15:10:02,510 [main] ERROR DependencyValidator - WG10 IEC61850 interPackage dependency WG10::IEC61850_7_4 -> WG17::IEC51850_7_420 +2024-09-08 15:10:02,510 [main] DEBUG DependencyValidator - Found 0 dependencies with unallowed tag names - remove tags. +2024-09-08 15:10:02,510 [main] INFO AbstractValidator - +2024-09-08 15:10:02,510 [main] INFO AbstractValidator - ====== Validating 104 (of 104) diagrams: +2024-09-08 15:10:02,511 [main] WARN DiagramValidator - Found 1 diagrams with bad orientation, content may be unreadable when printed on A4 page - change orientation to potrait: +2024-09-08 15:10:02,512 [main] WARN DiagramValidator - WG13 CIM class IEC61970::Main +2024-09-08 15:10:02,512 [main] ERROR DiagramValidator - Found 5 diagrams with unallowed stereotype(s) - remove offending stereotype(s) OR use one or more of {CIM=[deprecated, informative], IEC61850=[deprecated, informative]}: +2024-09-08 15:10:02,512 [main] ERROR DiagramValidator - OTHER_CIM CIM class <> TC57CIM::Main : offending stereotypes = [diagStereotype, oneMoreDiagStereo] +2024-09-08 15:10:02,512 [main] ERROR DiagramValidator - WG13 CIM class <> Domain::BasicDatatypes : offending stereotypes = [oneDiaStero, secondDiaStereo] +2024-09-08 15:10:02,512 [main] ERROR DiagramValidator - WG13 CIM class <> Domain::TimeDatatypes : offending stereotypes = [docStero] +2024-09-08 15:10:02,512 [main] ERROR DiagramValidator - WG13 CIM class <> Core::Ownership : offending stereotypes = [Deprecated] +2024-09-08 15:10:02,512 [main] ERROR DiagramValidator - OTHER_CIM CIM class <> MyCimExtensions::MyCimExtensions : offending stereotypes = [European] +2024-09-08 15:10:02,512 [main] WARN DiagramValidator - Found 28 diagrams missing documentation - add documentation: +2024-09-08 15:10:02,512 [main] WARN DiagramValidator - OTHER_CIM CIM package TC57CIMProfiles::TC57CIMProfiles +2024-09-08 15:10:02,512 [main] WARN DiagramValidator - WG13 CIM class Topology::DiagramWithoutComment +2024-09-08 15:10:02,512 [main] WARN DiagramValidator - WG13 CIM class TestEnums::TestEnums +2024-09-08 15:10:02,512 [main] WARN DiagramValidator - WG14 CIM class IEC61968::IEC61968 +2024-09-08 15:10:02,512 [main] WARN DiagramValidator - WG14 CIM package EmbeddedExtension::EmbeddedExtension +2024-09-08 15:10:02,512 [main] WARN DiagramValidator - WG14 CIM class Assets::Assets +2024-09-08 15:10:02,512 [main] WARN DiagramValidator - WG14 CIM object Assets::AssetsObjDia +2024-09-08 15:10:02,513 [main] WARN DiagramValidator - WG14 CIM class Other::Other +2024-09-08 15:10:02,513 [main] WARN DiagramValidator - WG16 CIM class IEC62325::IEC62325 +2024-09-08 15:10:02,513 [main] WARN DiagramValidator - OTHER_IEC61850 IEC61850 class IEC61850Domain::IEC61850Domain +2024-09-08 15:10:02,513 [main] WARN DiagramValidator - WG10 IEC61850 package NewIEC61850_7_2::NewIEC61850_7_2 +2024-09-08 15:10:02,513 [main] WARN DiagramValidator - WG10 IEC61850 class GenericModel::GenericModel +2024-09-08 15:10:02,514 [main] WARN DiagramValidator - WG10 IEC61850 class GenericModel::GenericModelTypes +2024-09-08 15:10:02,514 [main] WARN DiagramValidator - WG10 IEC61850 class IEC61850_7_2::IEC61850_7_2ModellingNotes +2024-09-08 15:10:02,514 [main] WARN DiagramValidator - WG17 IEC61850 class WG17::WG17 +2024-09-08 15:10:02,514 [main] WARN DiagramValidator - WG17 IEC61850 package IEC51850_7_420::IEC51850_7_420 +2024-09-08 15:10:02,514 [main] WARN DiagramValidator - WG17 IEC61850 class DOEnums_7_420::DOEnums_7_420 +2024-09-08 15:10:02,514 [main] WARN DiagramValidator - WG17 IEC61850 class DerivedDAs_7_420::DerivedDAs_7_420 +2024-09-08 15:10:02,514 [main] WARN DiagramValidator - WG17 IEC61850 class DerivedCDCs_7_420::DerivedCDCs_7_420 +2024-09-08 15:10:02,514 [main] WARN DiagramValidator - WG18 IEC61850 class WG18::WG18 +2024-09-08 15:10:02,514 [main] WARN DiagramValidator - WG18 IEC61850 class Abbreviations_410::Abbreviations_410 +2024-09-08 15:10:02,514 [main] WARN DiagramValidator - JWG25 IEC61850 class JWG25::JWG25 +2024-09-08 15:10:02,515 [main] WARN DiagramValidator - OTHER_CIM CIM class <> MyCimExtensions::MyCimExtensions +2024-09-08 15:10:02,515 [main] WARN DiagramValidator - OTHER_CIM CIM class Ext1::Ext1 +2024-09-08 15:10:02,515 [main] WARN DiagramValidator - OTHER_IEC61850 IEC61850 package My61850Extensions::My61850Extensions +2024-09-08 15:10:02,515 [main] WARN DiagramValidator - OTHER_IEC61850 IEC61850 class Ext2::Ext2 +2024-09-08 15:10:02,515 [main] WARN DiagramValidator - OTHER_CIM CIM package NewNature::NewNature +2024-09-08 15:10:02,515 [main] WARN DiagramValidator - WG10 IEC61850 statechart DomainLN.Beh +2024-09-08 15:10:02,515 [main] WARN DiagramValidator - Found 1 diagrams whose documentation starts with unallowed character - fix the first character: valid ones are any upper case letter or punctuation marks [', ", (]: +2024-09-08 15:10:02,515 [main] WARN DiagramValidator - WG13 CIM class <> Core::Ownership : doc='doc present (but missing "." a...' +2024-09-08 15:10:02,515 [main] WARN DiagramValidator - Found 3 diagrams whose documentation does not end with a dot ('.') - fix the last character: add a dot: +2024-09-08 15:10:02,515 [main] WARN DiagramValidator - WG13 CIM class <> Domain::TimeDatatypes : doc='...m show time related data types' +2024-09-08 15:10:02,515 [main] WARN DiagramValidator - WG13 CIM class <> Core::Ownership : doc='...tarting with lower case letter' +2024-09-08 15:10:02,515 [main] WARN DiagramValidator - WG10 IEC61850 INF class DetailedDiagrams::ImplementationNotes-ComposedCDCs : doc='(no doc)' +2024-09-08 15:10:02,515 [main] ERROR DiagramValidator - Found 3 diagrams whose name contains illegal character(s) - rename by removing invalid character(s): +2024-09-08 15:10:02,515 [main] ERROR DiagramValidator - OTHER_CIM CIM class Package with space::Package with space : invalid characters = [ , ] +2024-09-08 15:10:02,515 [main] ERROR DiagramValidator - WG13 CIM statechart PowerSystemResource.PSR-statechart : invalid characters = [-] +2024-09-08 15:10:02,516 [main] ERROR DiagramValidator - WG10 IEC61850 statechart Quality.Quality.validity : invalid characters = [.] +2024-09-08 15:10:02,516 [main] INFO ModelValidator - +2024-09-08 15:10:02,516 [main] INFO ModelValidator - Saving report to file: C:\Users\gigi\git\jCleanCim\output\problemsReport-base-small.csv +2024-09-08 15:10:02,536 [main] INFO Util - time=[0:00:00.368] validated packages [WG13, WG14, WG16, OTHER_CIM, WG10, WG17, WG18, JWG25, WG19, OTHER_IEC61850]. +2024-09-08 15:10:02,536 [main] INFO Util - +2024-09-08 15:10:02,537 [main] INFO Util - +2024-09-08 15:10:02,537 [main] INFO Util - ================================================ +2024-09-08 15:10:02,537 [main] INFO Util - collecting statistics for packages [WG13, WG14, WG16, OTHER_CIM, WG10, WG17, WG18, JWG25, WG19, OTHER_IEC61850]... +2024-09-08 15:10:02,537 [main] INFO Util - ================================================ +2024-09-08 15:10:02,547 [main] INFO ModelStats - +2024-09-08 15:10:02,547 [main] INFO ModelStats - ====== Stats per nature and per owner for 83 packages (of 83): +2024-09-08 15:10:02,548 [main] INFO ModelStats - ------ CIM statistics: +2024-09-08 15:10:02,548 [main] INFO ModelStats - [WG13] +2024-09-08 15:10:02,548 [main] INFO ModelStats - 7 packages (83/83) - 2 informative: +2024-09-08 15:10:02,548 [main] INFO ModelStats - 1 top package (per WG) +2024-09-08 15:10:02,548 [main] INFO ModelStats - 6 sub-package (any below top) +2024-09-08 15:10:02,549 [main] INFO ModelStats - 49 classes (386/386) - 3 informative: +2024-09-08 15:10:02,549 [main] INFO ModelStats - 4 primitive class +2024-09-08 15:10:02,549 [main] INFO ModelStats - 12 enumeration class +2024-09-08 15:10:02,549 [main] INFO ModelStats - 8 CIM datatype class +2024-09-08 15:10:02,549 [main] INFO ModelStats - 1 compound class +2024-09-08 15:10:02,549 [main] INFO ModelStats - 6 root class +2024-09-08 15:10:02,549 [main] INFO ModelStats - 18 class +2024-09-08 15:10:02,549 [main] INFO ModelStats - 163 attributes (761/761) - 1 informative: +2024-09-08 15:10:02,549 [main] INFO ModelStats - 27 primitive attribute +2024-09-08 15:10:02,549 [main] INFO ModelStats - 6 CIM datatype attribute +2024-09-08 15:10:02,549 [main] INFO ModelStats - 19 enumerated attribute +2024-09-08 15:10:02,550 [main] INFO ModelStats - 110 other enumeration literal +2024-09-08 15:10:02,550 [main] INFO ModelStats - 1 other attribute +2024-09-08 15:10:02,550 [main] INFO ModelStats - 22 associations (99/99): +2024-09-08 15:10:02,550 [main] INFO ModelStats - 9 aggregation +2024-09-08 15:10:02,550 [main] INFO ModelStats - 13 simple association +2024-09-08 15:10:02,550 [main] INFO ModelStats - 5 operations (14/14): +2024-09-08 15:10:02,550 [main] INFO ModelStats - 1 void op() +2024-09-08 15:10:02,550 [main] INFO ModelStats - 1 T[] op() +2024-09-08 15:10:02,550 [main] INFO ModelStats - 3 T op() +2024-09-08 15:10:02,550 [main] INFO ModelStats - 3 dependencies (81/81): +2024-09-08 15:10:02,550 [main] INFO ModelStats - 3 interPackage dependency +2024-09-08 15:10:02,550 [main] INFO ModelStats - 11 diagrams (104/104) - 2 informative: +2024-09-08 15:10:02,550 [main] INFO ModelStats - 10 class diagram +2024-09-08 15:10:02,550 [main] INFO ModelStats - 1 statechart diagram +2024-09-08 15:10:02,550 [main] INFO ModelStats - 13 tag names (24/24): +2024-09-08 15:10:02,550 [main] INFO ModelStats - 3 dummyCimTag +2024-09-08 15:10:02,550 [main] INFO ModelStats - 1 tag +2024-09-08 15:10:02,551 [main] INFO ModelStats - 2 assocTag +2024-09-08 15:10:02,551 [main] INFO ModelStats - 2 srcTag +2024-09-08 15:10:02,551 [main] INFO ModelStats - 1 CE-TermAssoc +2024-09-08 15:10:02,551 [main] INFO ModelStats - 1 MoreAssoc +2024-09-08 15:10:02,551 [main] INFO ModelStats - 1 Role1 +2024-09-08 15:10:02,551 [main] INFO ModelStats - 1 AnotherRole2 +2024-09-08 15:10:02,551 [main] INFO ModelStats - 1 targetEndTag +2024-09-08 15:10:02,551 [main] INFO ModelStats - 1 Role2 +2024-09-08 15:10:02,551 [main] INFO ModelStats - 1 endTag +2024-09-08 15:10:02,551 [main] INFO ModelStats - 2 throws +2024-09-08 15:10:02,551 [main] INFO ModelStats - 2 someTag +2024-09-08 15:10:02,551 [main] INFO ModelStats - +2024-09-08 15:10:02,551 [main] INFO ModelStats - [WG14] +2024-09-08 15:10:02,551 [main] INFO ModelStats - 6 packages (83/83): +2024-09-08 15:10:02,551 [main] INFO ModelStats - 1 top package (per WG) +2024-09-08 15:10:02,551 [main] INFO ModelStats - 5 sub-package (any below top) +2024-09-08 15:10:02,551 [main] INFO ModelStats - 11 classes (386/386): +2024-09-08 15:10:02,552 [main] INFO ModelStats - 1 primitive class +2024-09-08 15:10:02,552 [main] INFO ModelStats - 1 enumeration class +2024-09-08 15:10:02,552 [main] INFO ModelStats - 2 CIM datatype class +2024-09-08 15:10:02,552 [main] INFO ModelStats - 1 compound class +2024-09-08 15:10:02,552 [main] INFO ModelStats - 4 root class +2024-09-08 15:10:02,552 [main] INFO ModelStats - 2 class +2024-09-08 15:10:02,552 [main] INFO ModelStats - 15 attributes (761/761): +2024-09-08 15:10:02,552 [main] INFO ModelStats - 7 primitive attribute +2024-09-08 15:10:02,552 [main] INFO ModelStats - 2 CIM datatype attribute +2024-09-08 15:10:02,552 [main] INFO ModelStats - 1 compound attribute +2024-09-08 15:10:02,552 [main] INFO ModelStats - 3 enumerated attribute +2024-09-08 15:10:02,552 [main] INFO ModelStats - 2 other attribute +2024-09-08 15:10:02,552 [main] INFO ModelStats - 6 associations (99/99): +2024-09-08 15:10:02,552 [main] INFO ModelStats - 6 simple association +2024-09-08 15:10:02,552 [main] INFO ModelStats - 0 operations (14/14): +2024-09-08 15:10:02,553 [main] INFO ModelStats - 3 dependencies (81/81): +2024-09-08 15:10:02,553 [main] INFO ModelStats - 2 interPackage dependency +2024-09-08 15:10:02,553 [main] INFO ModelStats - 1 interClass dependency +2024-09-08 15:10:02,553 [main] INFO ModelStats - 5 diagrams (104/104): +2024-09-08 15:10:02,553 [main] INFO ModelStats - 3 class diagram +2024-09-08 15:10:02,553 [main] INFO ModelStats - 1 package diagram +2024-09-08 15:10:02,553 [main] INFO ModelStats - 1 object diagram +2024-09-08 15:10:02,553 [main] INFO ModelStats - 2 tag names (24/24): +2024-09-08 15:10:02,553 [main] INFO ModelStats - 3 nsprefix +2024-09-08 15:10:02,553 [main] INFO ModelStats - 3 nsuri +2024-09-08 15:10:02,553 [main] INFO ModelStats - +2024-09-08 15:10:02,553 [main] INFO ModelStats - [WG16] +2024-09-08 15:10:02,554 [main] INFO ModelStats - 1 packages (83/83): +2024-09-08 15:10:02,554 [main] INFO ModelStats - 1 top package (per WG) +2024-09-08 15:10:02,554 [main] INFO ModelStats - 0 classes (386/386): +2024-09-08 15:10:02,554 [main] INFO ModelStats - 0 attributes (761/761): +2024-09-08 15:10:02,554 [main] INFO ModelStats - 0 associations (99/99): +2024-09-08 15:10:02,554 [main] INFO ModelStats - 0 operations (14/14): +2024-09-08 15:10:02,554 [main] INFO ModelStats - 2 dependencies (81/81): +2024-09-08 15:10:02,554 [main] INFO ModelStats - 2 interPackage dependency +2024-09-08 15:10:02,554 [main] INFO ModelStats - 1 diagrams (104/104): +2024-09-08 15:10:02,554 [main] INFO ModelStats - 1 class diagram +2024-09-08 15:10:02,554 [main] INFO ModelStats - 0 tag names (24/24): +2024-09-08 15:10:02,554 [main] INFO ModelStats - +2024-09-08 15:10:02,554 [main] INFO ModelStats - [OTHER_CIM] +2024-09-08 15:10:02,554 [main] INFO ModelStats - 7 packages (83/83) - 1 informative: +2024-09-08 15:10:02,554 [main] INFO ModelStats - 4 model package (with nature) +2024-09-08 15:10:02,555 [main] INFO ModelStats - 3 top package (per WG) +2024-09-08 15:10:02,555 [main] INFO ModelStats - 16 classes (386/386) - 6 informative: +2024-09-08 15:10:02,555 [main] INFO ModelStats - 1 enumeration class +2024-09-08 15:10:02,555 [main] INFO ModelStats - 1 compound class +2024-09-08 15:10:02,555 [main] INFO ModelStats - 11 root class +2024-09-08 15:10:02,555 [main] INFO ModelStats - 3 class +2024-09-08 15:10:02,555 [main] INFO ModelStats - 7 attributes (761/761) - 2 informative: +2024-09-08 15:10:02,555 [main] INFO ModelStats - 1 primitive attribute +2024-09-08 15:10:02,555 [main] INFO ModelStats - 1 CIM datatype attribute +2024-09-08 15:10:02,555 [main] INFO ModelStats - 1 compound attribute +2024-09-08 15:10:02,555 [main] INFO ModelStats - 3 other enumeration literal +2024-09-08 15:10:02,555 [main] INFO ModelStats - 1 other attribute +2024-09-08 15:10:02,555 [main] INFO ModelStats - 7 associations (99/99): +2024-09-08 15:10:02,555 [main] INFO ModelStats - 7 simple association +2024-09-08 15:10:02,556 [main] INFO ModelStats - 1 operations (14/14): +2024-09-08 15:10:02,556 [main] INFO ModelStats - 1 void op() +2024-09-08 15:10:02,556 [main] INFO ModelStats - 0 dependencies (81/81): +2024-09-08 15:10:02,556 [main] INFO ModelStats - 7 diagrams (104/104) - 1 informative: +2024-09-08 15:10:02,556 [main] INFO ModelStats - 5 class diagram +2024-09-08 15:10:02,556 [main] INFO ModelStats - 2 package diagram +2024-09-08 15:10:02,556 [main] INFO ModelStats - 5 tag names (24/24): +2024-09-08 15:10:02,556 [main] INFO ModelStats - 2 nsprefix +2024-09-08 15:10:02,557 [main] INFO ModelStats - 2 nsuri +2024-09-08 15:10:02,557 [main] INFO ModelStats - 1 assocEndTag +2024-09-08 15:10:02,557 [main] INFO ModelStats - 1 targetEndTag +2024-09-08 15:10:02,557 [main] INFO ModelStats - 1 assocTag +2024-09-08 15:10:02,557 [main] INFO ModelStats - +2024-09-08 15:10:02,557 [main] INFO ModelStats - +2024-09-08 15:10:02,557 [main] INFO ModelStats - ------ IEC61850 statistics: +2024-09-08 15:10:02,557 [main] INFO ModelStats - [WG10] +2024-09-08 15:10:02,557 [main] INFO ModelStats - 51 packages (83/83) - 3 informative: +2024-09-08 15:10:02,557 [main] INFO ModelStats - 1 top package (per WG) +2024-09-08 15:10:02,557 [main] INFO ModelStats - 50 sub-package (any below top) +2024-09-08 15:10:02,557 [main] INFO ModelStats - 294 classes (386/386): +2024-09-08 15:10:02,557 [main] INFO ModelStats - 14 basic class +2024-09-08 15:10:02,558 [main] INFO ModelStats - 4 packed class +2024-09-08 15:10:02,558 [main] INFO ModelStats - 14 enumeration class +2024-09-08 15:10:02,558 [main] INFO ModelStats - 5 coded enumeration class +2024-09-08 15:10:02,558 [main] INFO ModelStats - 2 abbreviation enumeration class +2024-09-08 15:10:02,558 [main] INFO ModelStats - 1 presence condition enumeration class +2024-09-08 15:10:02,558 [main] INFO ModelStats - 3 coded enumeration DA class +2024-09-08 15:10:02,558 [main] INFO ModelStats - 8 enumeration DA class +2024-09-08 15:10:02,558 [main] INFO ModelStats - 4 packed list DA class +2024-09-08 15:10:02,558 [main] INFO ModelStats - 10 primitive DA class +2024-09-08 15:10:02,558 [main] INFO ModelStats - 5 composed DA class +2024-09-08 15:10:02,558 [main] INFO ModelStats - 4 coded enumeration FCDA class +2024-09-08 15:10:02,558 [main] INFO ModelStats - 15 enumeration FCDA class +2024-09-08 15:10:02,558 [main] INFO ModelStats - 53 FCDA class +2024-09-08 15:10:02,558 [main] INFO ModelStats - 1 control tracking CDC class (derived) +2024-09-08 15:10:02,559 [main] INFO ModelStats - 8 enumeration CDC class (derived) +2024-09-08 15:10:02,559 [main] INFO ModelStats - 21 primitive CDC class +2024-09-08 15:10:02,559 [main] INFO ModelStats - 4 composed CDC class +2024-09-08 15:10:02,559 [main] INFO ModelStats - 20 LN class +2024-09-08 15:10:02,559 [main] INFO ModelStats - 11 function (61850-5) class +2024-09-08 15:10:02,559 [main] INFO ModelStats - 84 other 61850 class +2024-09-08 15:10:02,559 [main] INFO ModelStats - 3 unknown 61850 class +2024-09-08 15:10:02,559 [main] INFO ModelStats - 551 attributes (761/761): +2024-09-08 15:10:02,559 [main] INFO ModelStats - 174 other enumeration literal +2024-09-08 15:10:02,559 [main] INFO ModelStats - 97 other attribute +2024-09-08 15:10:02,559 [main] INFO ModelStats - 10 abbreviation enumeration literal +2024-09-08 15:10:02,559 [main] INFO ModelStats - 30 presence condition enumeration literal +2024-09-08 15:10:02,560 [main] INFO ModelStats - 21 coded enumeration literal +2024-09-08 15:10:02,560 [main] INFO ModelStats - 52 basic attribute +2024-09-08 15:10:02,560 [main] INFO ModelStats - 4 packed attribute +2024-09-08 15:10:02,560 [main] INFO ModelStats - 42 (61850) enumeration literal +2024-09-08 15:10:02,560 [main] INFO ModelStats - 5 coded enumeration literal +2024-09-08 15:10:02,560 [main] INFO ModelStats - 3 coded enumeration DA attribute +2024-09-08 15:10:02,560 [main] INFO ModelStats - 9 enumeration DA attribute +2024-09-08 15:10:02,560 [main] INFO ModelStats - 4 packed list DA class +2024-09-08 15:10:02,560 [main] INFO ModelStats - 23 attribute on any DA whose type is primitive +2024-09-08 15:10:02,561 [main] INFO ModelStats - 14 attribute on composed DA whose type is another compoased DA +2024-09-08 15:10:02,561 [main] INFO ModelStats - 2 coded enumeration FCDA attribute +2024-09-08 15:10:02,561 [main] INFO ModelStats - 6 enumeration FCDA attribute +2024-09-08 15:10:02,561 [main] INFO ModelStats - 25 FCDA attribute +2024-09-08 15:10:02,561 [main] INFO ModelStats - 1 sub-data object (attribute on composed CDC whose type is another CDC) +2024-09-08 15:10:02,561 [main] INFO ModelStats - 13 enumerated DO (derived) +2024-09-08 15:10:02,561 [main] INFO ModelStats - 16 data object (attribute on LN) +2024-09-08 15:10:02,561 [main] INFO ModelStats - 62 associations (99/99): +2024-09-08 15:10:02,561 [main] INFO ModelStats - 18 composition +2024-09-08 15:10:02,561 [main] INFO ModelStats - 44 simple association +2024-09-08 15:10:02,561 [main] INFO ModelStats - 8 operations (14/14): +2024-09-08 15:10:02,561 [main] INFO ModelStats - 1 T[] op() +2024-09-08 15:10:02,561 [main] INFO ModelStats - 7 T op() +2024-09-08 15:10:02,561 [main] INFO ModelStats - 72 dependencies (81/81): +2024-09-08 15:10:02,562 [main] INFO ModelStats - 50 interPackage dependency +2024-09-08 15:10:02,562 [main] INFO ModelStats - 22 interClass dependency +2024-09-08 15:10:02,562 [main] INFO ModelStats - 69 diagrams (104/104) - 4 informative: +2024-09-08 15:10:02,562 [main] INFO ModelStats - 7 custom diagram +2024-09-08 15:10:02,562 [main] INFO ModelStats - 53 class diagram +2024-09-08 15:10:02,562 [main] INFO ModelStats - 3 statechart diagram +2024-09-08 15:10:02,562 [main] INFO ModelStats - 6 package diagram +2024-09-08 15:10:02,562 [main] INFO ModelStats - 8 tag names (24/24): +2024-09-08 15:10:02,562 [main] INFO ModelStats - 1 dummyPackageTag +2024-09-08 15:10:02,562 [main] INFO ModelStats - 6 scl +2024-09-08 15:10:02,562 [main] INFO ModelStats - 11 iecRef +2024-09-08 15:10:02,562 [main] INFO ModelStats - 11 ieeeRef +2024-09-08 15:10:02,562 [main] INFO ModelStats - 11 rsName +2024-09-08 15:10:02,563 [main] INFO ModelStats - 2 scl:emptyValue +2024-09-08 15:10:02,563 [main] INFO ModelStats - 6 moveAfter +2024-09-08 15:10:02,563 [main] INFO ModelStats - 1 secondTagName +2024-09-08 15:10:02,563 [main] INFO ModelStats - +2024-09-08 15:10:02,563 [main] INFO ModelStats - [WG17] +2024-09-08 15:10:02,563 [main] INFO ModelStats - 5 packages (83/83): +2024-09-08 15:10:02,563 [main] INFO ModelStats - 1 top package (per WG) +2024-09-08 15:10:02,563 [main] INFO ModelStats - 4 sub-package (any below top) +2024-09-08 15:10:02,563 [main] INFO ModelStats - 12 classes (386/386): +2024-09-08 15:10:02,563 [main] INFO ModelStats - 4 enumeration class +2024-09-08 15:10:02,563 [main] INFO ModelStats - 3 enumeration DA class +2024-09-08 15:10:02,563 [main] INFO ModelStats - 3 enumeration CDC class (derived) +2024-09-08 15:10:02,563 [main] INFO ModelStats - 2 other 61850 class +2024-09-08 15:10:02,564 [main] INFO ModelStats - 22 attributes (761/761): +2024-09-08 15:10:02,564 [main] INFO ModelStats - 12 other enumeration literal +2024-09-08 15:10:02,564 [main] INFO ModelStats - 7 other attribute +2024-09-08 15:10:02,564 [main] INFO ModelStats - 3 (61850) enumeration literal +2024-09-08 15:10:02,564 [main] INFO ModelStats - 0 associations (99/99): +2024-09-08 15:10:02,564 [main] INFO ModelStats - 0 operations (14/14): +2024-09-08 15:10:02,564 [main] INFO ModelStats - 1 dependencies (81/81): +2024-09-08 15:10:02,564 [main] INFO ModelStats - 1 interPackage dependency +2024-09-08 15:10:02,564 [main] INFO ModelStats - 5 diagrams (104/104): +2024-09-08 15:10:02,564 [main] INFO ModelStats - 4 class diagram +2024-09-08 15:10:02,564 [main] INFO ModelStats - 1 package diagram +2024-09-08 15:10:02,564 [main] INFO ModelStats - 0 tag names (24/24): +2024-09-08 15:10:02,564 [main] INFO ModelStats - +2024-09-08 15:10:02,564 [main] INFO ModelStats - [WG18] +2024-09-08 15:10:02,565 [main] INFO ModelStats - 2 packages (83/83): +2024-09-08 15:10:02,565 [main] INFO ModelStats - 1 top package (per WG) +2024-09-08 15:10:02,565 [main] INFO ModelStats - 1 sub-package (any below top) +2024-09-08 15:10:02,565 [main] INFO ModelStats - 1 classes (386/386): +2024-09-08 15:10:02,565 [main] INFO ModelStats - 1 abbreviation enumeration class +2024-09-08 15:10:02,565 [main] INFO ModelStats - 3 attributes (761/761): +2024-09-08 15:10:02,565 [main] INFO ModelStats - 3 abbreviation enumeration literal +2024-09-08 15:10:02,565 [main] INFO ModelStats - 0 associations (99/99): +2024-09-08 15:10:02,565 [main] INFO ModelStats - 0 operations (14/14): +2024-09-08 15:10:02,565 [main] INFO ModelStats - 0 dependencies (81/81): +2024-09-08 15:10:02,565 [main] INFO ModelStats - 2 diagrams (104/104): +2024-09-08 15:10:02,565 [main] INFO ModelStats - 2 class diagram +2024-09-08 15:10:02,566 [main] INFO ModelStats - 0 tag names (24/24): +2024-09-08 15:10:02,566 [main] INFO ModelStats - +2024-09-08 15:10:02,566 [main] INFO ModelStats - [JWG25] +2024-09-08 15:10:02,566 [main] INFO ModelStats - 1 packages (83/83): +2024-09-08 15:10:02,566 [main] INFO ModelStats - 1 top package (per WG) +2024-09-08 15:10:02,566 [main] INFO ModelStats - 0 classes (386/386): +2024-09-08 15:10:02,566 [main] INFO ModelStats - 0 attributes (761/761): +2024-09-08 15:10:02,566 [main] INFO ModelStats - 0 associations (99/99): +2024-09-08 15:10:02,566 [main] INFO ModelStats - 0 operations (14/14): +2024-09-08 15:10:02,566 [main] INFO ModelStats - 0 dependencies (81/81): +2024-09-08 15:10:02,566 [main] INFO ModelStats - 1 diagrams (104/104): +2024-09-08 15:10:02,566 [main] INFO ModelStats - 1 class diagram +2024-09-08 15:10:02,566 [main] INFO ModelStats - 0 tag names (24/24): +2024-09-08 15:10:02,566 [main] INFO ModelStats - +2024-09-08 15:10:02,567 [main] INFO ModelStats - [OTHER_IEC61850] +2024-09-08 15:10:02,567 [main] INFO ModelStats - 3 packages (83/83): +2024-09-08 15:10:02,567 [main] INFO ModelStats - 2 model package (with nature) +2024-09-08 15:10:02,567 [main] INFO ModelStats - 1 top package (per WG) +2024-09-08 15:10:02,567 [main] INFO ModelStats - 3 classes (386/386): +2024-09-08 15:10:02,567 [main] INFO ModelStats - 3 other 61850 class +2024-09-08 15:10:02,567 [main] INFO ModelStats - 0 attributes (761/761): +2024-09-08 15:10:02,567 [main] INFO ModelStats - 2 associations (99/99): +2024-09-08 15:10:02,567 [main] INFO ModelStats - 2 simple association +2024-09-08 15:10:02,567 [main] INFO ModelStats - 0 operations (14/14): +2024-09-08 15:10:02,567 [main] INFO ModelStats - 0 dependencies (81/81): +2024-09-08 15:10:02,567 [main] INFO ModelStats - 3 diagrams (104/104): +2024-09-08 15:10:02,567 [main] INFO ModelStats - 2 class diagram +2024-09-08 15:10:02,567 [main] INFO ModelStats - 1 package diagram +2024-09-08 15:10:02,568 [main] INFO ModelStats - 0 tag names (24/24): +2024-09-08 15:10:02,568 [main] INFO ModelStats - +2024-09-08 15:10:02,568 [main] INFO ModelStats - +2024-09-08 15:10:02,573 [main] INFO CrossPackageStats - +2024-09-08 15:10:02,573 [main] INFO CrossPackageStats - ====== Cross-package stats for 83 packages (of 83): +2024-09-08 15:10:02,573 [main] INFO CrossPackageStats - Cross-owner links: +2024-09-08 15:10:02,573 [main] INFO CrossPackageStats - 9 class inheritance: +2024-09-08 15:10:02,573 [main] INFO CrossPackageStats - (excluded inheritance from IdentifiedObject) +2024-09-08 15:10:02,573 [main] INFO CrossPackageStats - [WG13 Core::BaseVoltage, WG14 Other::BadDatatypes] +2024-09-08 15:10:02,573 [main] INFO CrossPackageStats - [WG13 Core::EquipmentContainer, OTHER_CIM Ext1::Pear] +2024-09-08 15:10:02,574 [main] INFO CrossPackageStats - [WG17 DerivedCDCs_7_420::ENSMaterial, WG10 CDCStatusInfo::ENS] +2024-09-08 15:10:02,574 [main] INFO CrossPackageStats - [WG17 DerivedCDCs_7_420::ENSOther, WG10 CDCStatusInfo::ENS] +2024-09-08 15:10:02,574 [main] INFO CrossPackageStats - [WG17 DerivedCDCs_7_420::ENCMaterial, WG10 CDCControl::ENC] +2024-09-08 15:10:02,574 [main] INFO CrossPackageStats - [WG17 DerivedDAs_7_420::Material, WG10 MetaModel::EnumDA] +2024-09-08 15:10:02,574 [main] INFO CrossPackageStats - [WG17 DerivedDAs_7_420::Material_control, WG10 MetaModel::EnumDA] +2024-09-08 15:10:02,574 [main] INFO CrossPackageStats - [WG17 DerivedDAs_7_420::Other, WG10 MetaModel::EnumDA] +2024-09-08 15:10:02,574 [main] INFO CrossPackageStats - [WG17 DOEnums_7_420::ExtBaseKind, WG10 DOEnums::BaseKind] +2024-09-08 15:10:02,574 [main] INFO CrossPackageStats - 38 class's attribute types: +2024-09-08 15:10:02,574 [main] INFO CrossPackageStats - (excluded types from Domain package) +2024-09-08 15:10:02,574 [main] INFO CrossPackageStats - [OTHER_CIM Informative::HasIllegalTypeForAttr, WG13 Core::Bay] +2024-09-08 15:10:02,574 [main] INFO CrossPackageStats - [WG13 Domain::ActivePowerChangeRate, OTHER_CIM NullCIM::NullCIM] +2024-09-08 15:10:02,574 [main] INFO CrossPackageStats - [WG10 WG10::WG10UMLVersion, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:10:02,574 [main] INFO CrossPackageStats - [WG10 IEC61850_7_2::IEC61850_7_2Namespace, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:10:02,574 [main] INFO CrossPackageStats - [WG10 CoreTypes::ObjectName, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:10:02,574 [main] INFO CrossPackageStats - [WG10 CoreTypes::P_ObjectReference, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:10:02,574 [main] INFO CrossPackageStats - [WG10 CoreTypes::P_TimeStamp, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:10:02,574 [main] INFO CrossPackageStats - [WG10 CommonAcsiTypes::IPAddress, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:10:02,575 [main] INFO CrossPackageStats - [WG10 CommonAcsiTypes::MulticastAddress, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:10:02,575 [main] INFO CrossPackageStats - [WG10 CommonAcsiTypes::ReportID, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:10:02,575 [main] INFO CrossPackageStats - [WG10 IEC61850_7_3::IEC61850_7_3Namespace, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:10:02,575 [main] INFO CrossPackageStats - [WG10 IEC61850_7_4::IEC61850_7_4Namespace, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:10:02,575 [main] INFO CrossPackageStats - [WG17 WG17::WG17UMLVersion, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:10:02,575 [main] INFO CrossPackageStats - [WG17 IEC51850_7_420::IEC61850_7_420Namespace, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:10:02,575 [main] INFO CrossPackageStats - [WG14 Other::MyClass, OTHER_CIM NullCIM::NullCIM] +2024-09-08 15:10:02,575 [main] INFO CrossPackageStats - [WG14 Other::AttrDuplication, OTHER_CIM NullCIM::NullCIM] +2024-09-08 15:10:02,575 [main] INFO CrossPackageStats - [WG10 ObjectReferences::FILEReference, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:10:02,575 [main] INFO CrossPackageStats - [WG10 ObjectReferences::LDReference, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:10:02,575 [main] INFO CrossPackageStats - [WG10 ObjectReferences::LNReference, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:10:02,576 [main] INFO CrossPackageStats - [WG10 ObjectReferences::CDCReference, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:10:02,576 [main] INFO CrossPackageStats - [WG10 ObjectReferences::FCDReference, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:10:02,576 [main] INFO CrossPackageStats - [WG10 ObjectReferences::FCDAReference, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:10:02,576 [main] INFO CrossPackageStats - [WG10 ObjectReferences::CBReference, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:10:02,576 [main] INFO CrossPackageStats - [WG10 ObjectReferences::LOGReference, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:10:02,576 [main] INFO CrossPackageStats - [WG10 ObjectReferences::LNOwnedDSReference, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:10:02,576 [main] INFO CrossPackageStats - [WG10 ObjectReferences::NonPersistentDSReference, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:10:02,576 [main] INFO CrossPackageStats - [WG10 LNGroupG::GGIO, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:10:02,576 [main] INFO CrossPackageStats - [WG10 LNGroupZ::ZAXN, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:10:02,576 [main] INFO CrossPackageStats - [WG10 LNGroupZ::ZAXN, WG17 DerivedCDCs_7_420::ENSMaterial] +2024-09-08 15:10:02,576 [main] INFO CrossPackageStats - [WG10 LNGroupZ::ZAXN, WG17 DerivedCDCs_7_420::ENCMaterial] +2024-09-08 15:10:02,576 [main] INFO CrossPackageStats - [WG10 LNGroupZ::ZAXN, WG17 DerivedCDCs_7_420::ENSOther] +2024-09-08 15:10:02,577 [main] INFO CrossPackageStats - [WG10 LNGroupP::ProtectionLN, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:10:02,577 [main] INFO CrossPackageStats - [WG10 CDCAnalogueInfo::CMV, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:10:02,577 [main] INFO CrossPackageStats - [WG10 CDCControl::BAC, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:10:02,577 [main] INFO CrossPackageStats - [WG10 CDCStatusInfo::ACD, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:10:02,577 [main] INFO CrossPackageStats - [WG10 CDCStatusSet::ENG, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:10:02,577 [main] INFO CrossPackageStats - [WG10 MetaModel::IED, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:10:02,577 [main] INFO CrossPackageStats - [WG10 MetaModel::SERVER, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:10:02,577 [main] INFO CrossPackageStats - 2 class's operation parameters and exceptions: +2024-09-08 15:10:02,577 [main] INFO CrossPackageStats - [WG10 CommonAcsiTypes::Authentication, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:10:02,577 [main] INFO CrossPackageStats - [WG13 Core::PowerSystemResource, OTHER_CIM NullCIM::NullCIM] +2024-09-08 15:10:02,577 [main] INFO CrossPackageStats - 0 class-to-class (hand-drawn) dependency: +2024-09-08 15:10:02,577 [main] INFO CrossPackageStats - 4 class-to-class associations: +2024-09-08 15:10:02,578 [main] INFO CrossPackageStats - [WG14 Other::MyClass, OTHER_CIM Informative::Class1] +2024-09-08 15:10:02,578 [main] INFO CrossPackageStats - [WG14 Assets::AssetInfo, WG13 Core::PowerSystemResource] +2024-09-08 15:10:02,578 [main] INFO CrossPackageStats - [OTHER_IEC61850 Ext2::Animal, OTHER_CIM Ext1::Fruit] +2024-09-08 15:10:02,578 [main] INFO CrossPackageStats - [OTHER_IEC61850 Ext2::Animal, OTHER_CIM Ext1::Fruit] +2024-09-08 15:10:02,578 [main] INFO CrossPackageStats - 7 package-to-package (hand-drawn) dependency: +2024-09-08 15:10:02,578 [main] INFO CrossPackageStats - [WG13 TC57CIM::IEC61970, WG14 IEC61968::Other] +2024-09-08 15:10:02,578 [main] INFO CrossPackageStats - [WG13 TC57CIM::IEC61970, WG14 TC57CIM::IEC61968] +2024-09-08 15:10:02,578 [main] INFO CrossPackageStats - [WG13 TC57CIM::IEC61970, WG16 TC57CIM::IEC62325] +2024-09-08 15:10:02,578 [main] INFO CrossPackageStats - [WG13 IEC61970::Topology, WG14 IEC61968::Other] +2024-09-08 15:10:02,578 [main] INFO CrossPackageStats - [WG16 TC57CIM::IEC62325, WG14 TC57CIM::IEC61968] +2024-09-08 15:10:02,578 [main] INFO CrossPackageStats - [WG17 IEC61850Domain::WG17, WG10 WG10::IEC61850_7_4] +2024-09-08 15:10:02,578 [main] INFO CrossPackageStats - [WG10 WG10::IEC61850_7_4, WG17 WG17::IEC51850_7_420] +2024-09-08 15:10:02,581 [main] TRACE CrossPackageStats - Cross-package links (within same owner): +2024-09-08 15:10:02,581 [main] TRACE CrossPackageStats - 108 class inheritance: +2024-09-08 15:10:02,581 [main] TRACE CrossPackageStats - (excluded inheritance from IdentifiedObject) +2024-09-08 15:10:02,581 [main] TRACE CrossPackageStats - [WG13 Topology::BusNameMarker, WG13 InformativeAndPrivate::InfClass2] +2024-09-08 15:10:02,581 [main] TRACE CrossPackageStats - [WG13 Topology::DumbSubterminal, WG13 Core::Terminal] +2024-09-08 15:10:02,581 [main] TRACE CrossPackageStats - [WG10 ObjectReferences::FILEReference, WG10 CoreTypes::P_ObjectReference] +2024-09-08 15:10:02,581 [main] TRACE CrossPackageStats - [WG10 ObjectReferences::LDReference, WG10 CoreTypes::P_ObjectReference] +2024-09-08 15:10:02,581 [main] TRACE CrossPackageStats - [WG10 ObjectReferences::NonPersistentDSReference, WG10 CoreTypes::P_ObjectReference] +2024-09-08 15:10:02,581 [main] TRACE CrossPackageStats - [WG10 LNGroupL::LPHD, WG10 MetaModel::LNPHD] +2024-09-08 15:10:02,581 [main] TRACE CrossPackageStats - [WG10 LNGroupL::LLN0, WG10 MetaModel::LN0] +2024-09-08 15:10:02,581 [main] TRACE CrossPackageStats - [WG10 LogicalNodes::DomainLN, WG10 MetaModel::LNDOM] +2024-09-08 15:10:02,581 [main] TRACE CrossPackageStats - [WG10 LNGroupG::GGIO, WG10 LogicalNodes::StatisticsLN] +2024-09-08 15:10:02,581 [main] TRACE CrossPackageStats - [WG10 LNGroupM::MMXU, WG10 LogicalNodes::StatisticsLN] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 LNGroupZ::ZAXN, WG10 LogicalNodes::EquipmentInterfaceLN] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 LNGroupL::KXYZ, WG10 LogicalNodes::DomainLN] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 LNGroupC::CALH, WG10 LogicalNodes::DomainLN] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 LNGroupP::ProtectionLN, WG10 LogicalNodes::DomainLN] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 LNGroupR::RDIR, WG10 LogicalNodes::DomainLN] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 CommonDataClasses::BasePrimitiveCDC, WG10 MetaModel::PrimitiveCDC] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 CDCServiceTracking::CST, WG10 CommonDataClasses::BasePrimitiveCDC] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::DPS, WG10 CommonDataClasses::SubstitutionCDC] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::ENS, WG10 CommonDataClasses::SubstitutionCDC] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 DerivedCDCs::ENSBehaviourMode, WG10 CDCStatusInfo::ENS] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 DerivedCDCs::ENSHealth, WG10 CDCStatusInfo::ENS] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 DerivedCDCs::ENSEnumDA, WG10 CDCStatusInfo::ENS] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 CDCAnalogueInfo::CMV, WG10 CommonDataClasses::SubstitutionCDC] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 CDCControl::ControllableCDC, WG10 CommonDataClasses::SubstitutionCDC] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 DerivedCDCs::ENCBehaviourMode, WG10 CDCControl::ENC] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::EXY, WG10 CommonDataClasses::BasePrimitiveCDC] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 DerivedCDCs::EXYBehaviourMode, WG10 CDCStatusInfo::EXY] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::ACD, WG10 CommonDataClasses::BasePrimitiveCDC] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::HST, WG10 CommonDataClasses::BasePrimitiveCDC] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 CDCStatusSet::ENG, WG10 CommonDataClasses::BasePrimitiveCDC] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 DerivedCDCs::ENGCalcMethod, WG10 CDCStatusSet::ENG] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 CDCDescription::LPL, WG10 CommonDataClasses::BasePrimitiveCDC] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 CommonDataClasses::BaseComposedCDC, WG10 MetaModel::ComposedCDC] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 CDCAnalogueInfo::HarmonicMeasurandCDC, WG10 CommonDataClasses::BaseComposedCDC] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_BL, WG10 MetaModel::FCDA] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_BL, WG10 MetaModelFCsAndTrgOps::FCDA_BL] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_CF, WG10 MetaModel::FCDA] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 FCDAs::EnumDA_CF_dchg, WG10 MetaModelFCsAndTrgOps::EnumFCDA_CF_dchg] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 FCDAs::PhaseAngleReference_CF_dchg, WG10 MetaModelFCsAndTrgOps::EnumFCDA_CF_dchg] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_CF_dchg, WG10 MetaModelFCsAndTrgOps::FCDA_CF_dchg] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 FCDAs::INT16U_CF_dchg, WG10 MetaModelFCsAndTrgOps::FCDA_CF_dchg] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 FCDAs::INT32U_CF_dchg, WG10 MetaModelFCsAndTrgOps::FCDA_CF_dchg] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 FCDAs::INT32_CF_dchg, WG10 MetaModelFCsAndTrgOps::FCDA_CF_dchg] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 FCDAs::RangeConfig_CF_dchg, WG10 MetaModelFCsAndTrgOps::FCDA_CF_dchg] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 FCDAs::INT16U_CF, WG10 MetaModelFCsAndTrgOps::FCDA_CF] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_DC, WG10 MetaModel::FCDA] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 FCDAs::Point_DC, WG10 MetaModelFCsAndTrgOps::FCDA_DC] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 FCDAs::UNICODE_STRING255_DC, WG10 MetaModelFCsAndTrgOps::FCDA_DC] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_EX, WG10 MetaModel::FCDA] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 FCDAs::VISIBLE_STRING255_EX, WG10 MetaModelFCsAndTrgOps::FCDA_EX] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_MX, WG10 MetaModel::FCDA] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 FCDAs::AnalogueValue_MX_dchg, WG10 MetaModelFCsAndTrgOps::FCDA_MX_dchg] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_MX_dchg, WG10 MetaModelFCsAndTrgOps::FCDA_MX_dchg] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 FCDAs::AnalogueValue_MX_dchg_dupd, WG10 MetaModelFCsAndTrgOps::FCDA_MX_dchg_dupd] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 FCDAs::Quality_MX_qchg, WG10 MetaModelFCsAndTrgOps::FCDA_MX_qchg] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 FCDAs::AnalogueValue_MX, WG10 MetaModelFCsAndTrgOps::FCDA_MX] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_OR, WG10 MetaModel::FCDA] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_OR_dchg, WG10 MetaModelFCsAndTrgOps::FCDA_OR_dchg] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_SE, WG10 MetaModel::FCDA] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_SE, WG10 MetaModelFCsAndTrgOps::FCDA_SE] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 FCDAs::Point_SE, WG10 MetaModelFCsAndTrgOps::FCDA_SE] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_SG, WG10 MetaModel::FCDA] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_SG, WG10 MetaModelFCsAndTrgOps::FCDA_SG] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 FCDAs::Point_SG, WG10 MetaModelFCsAndTrgOps::FCDA_SG] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_SP, WG10 MetaModel::FCDA] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_SP_dchg, WG10 MetaModelFCsAndTrgOps::FCDA_SP_dchg] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 FCDAs::Point_SP, WG10 MetaModelFCsAndTrgOps::FCDA_SP] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_ST, WG10 MetaModel::FCDA] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 FCDAs::DpStatus_ST_dchg, WG10 MetaModelFCsAndTrgOps::PackedEnumFCDA_SP_dchg] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 FCDAs::EnumDA_ST_dchg, WG10 MetaModelFCsAndTrgOps::EnumFCDA_ST_dchg] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 FCDAs::PhaseFaultDirection_ST_dchg, WG10 MetaModelFCsAndTrgOps::EnumFCDA_ST_dchg] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_ST_dchg, WG10 MetaModelFCsAndTrgOps::FCDA_ST_dchg] +2024-09-08 15:10:02,582 [main] TRACE CrossPackageStats - [WG10 FCDAs::INT32_ST_dchg, WG10 MetaModelFCsAndTrgOps::FCDA_ST_dchg] +2024-09-08 15:10:02,584 [main] TRACE CrossPackageStats - [WG10 FCDAs::EnumDA_ST_dchg_dupd, WG10 MetaModelFCsAndTrgOps::EnumFCDA_ST_dchg_dupd] +2024-09-08 15:10:02,584 [main] TRACE CrossPackageStats - [WG10 FCDAs::INT32_ST_dchg_dupd, WG10 MetaModelFCsAndTrgOps::FCDA_ST_dchg_dupd] +2024-09-08 15:10:02,584 [main] TRACE CrossPackageStats - [WG10 FCDAs::Quality_ST_qchg, WG10 MetaModelFCsAndTrgOps::FCDA_ST_qchg] +2024-09-08 15:10:02,584 [main] TRACE CrossPackageStats - [WG10 FCDAs::TimeStamp_ST, WG10 MetaModelFCsAndTrgOps::FCDA_ST] +2024-09-08 15:10:02,584 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_SV, WG10 MetaModel::FCDA] +2024-09-08 15:10:02,584 [main] TRACE CrossPackageStats - [WG10 FCDAs::DpStatus_SV, WG10 MetaModelFCsAndTrgOps::PackedEnumFCDA_SV] +2024-09-08 15:10:02,584 [main] TRACE CrossPackageStats - [WG10 FCDAs::EnumDA_SV, WG10 MetaModelFCsAndTrgOps::EnumFCDA_SV] +2024-09-08 15:10:02,584 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_SV, WG10 MetaModelFCsAndTrgOps::FCDA_SV] +2024-09-08 15:10:02,584 [main] TRACE CrossPackageStats - [WG10 FCDAs::Quality_SV, WG10 MetaModelFCsAndTrgOps::FCDA_SV] +2024-09-08 15:10:02,584 [main] TRACE CrossPackageStats - [WG10 BasicDAs::PHYCOMADDR, WG10 MetaModel::PrimitiveDA] +2024-09-08 15:10:02,584 [main] TRACE CrossPackageStats - [WG10 BasicDAs::ObjectReference, WG10 MetaModel::PrimitiveDA] +2024-09-08 15:10:02,584 [main] TRACE CrossPackageStats - [WG10 BasicDAs::VISIBLE_STRING255, WG10 MetaModel::PrimitiveDA] +2024-09-08 15:10:02,584 [main] TRACE CrossPackageStats - [WG10 BasicDAs::UNICODE_STRING255, WG10 MetaModel::PrimitiveDA] +2024-09-08 15:10:02,584 [main] TRACE CrossPackageStats - [WG10 BasicDAs::INT32U, WG10 MetaModel::PrimitiveDA] +2024-09-08 15:10:02,584 [main] TRACE CrossPackageStats - [WG10 BasicDAs::INT32, WG10 MetaModel::PrimitiveDA] +2024-09-08 15:10:02,584 [main] TRACE CrossPackageStats - [WG10 BasicDAs::INT16U, WG10 MetaModel::PrimitiveDA] +2024-09-08 15:10:02,584 [main] TRACE CrossPackageStats - [WG10 BasicDAs::FLOAT32, WG10 MetaModel::PrimitiveDA] +2024-09-08 15:10:02,584 [main] TRACE CrossPackageStats - [WG10 BasicDAs::BOOLEAN, WG10 MetaModel::PrimitiveDA] +2024-09-08 15:10:02,584 [main] TRACE CrossPackageStats - [WG10 BasicDAs::TriggerConditions, WG10 MetaModel::PackedPrimitiveDA] +2024-09-08 15:10:02,584 [main] TRACE CrossPackageStats - [WG10 BasicDAs::TimeStamp, WG10 MetaModel::PackedPrimitiveDA] +2024-09-08 15:10:02,584 [main] TRACE CrossPackageStats - [WG10 ConstructedDAs::Quality, WG10 MetaModel::PackedPrimitiveDA] +2024-09-08 15:10:02,584 [main] TRACE CrossPackageStats - [WG10 BasicDAs::BsControl, WG10 MetaModel::PackedEnumDA] +2024-09-08 15:10:02,584 [main] TRACE CrossPackageStats - [WG10 BasicDAs::DpStatus, WG10 MetaModel::PackedEnumDA] +2024-09-08 15:10:02,584 [main] TRACE CrossPackageStats - [WG10 ImplicitDAs::SIUnit, WG10 MetaModel::EnumDA] +2024-09-08 15:10:02,584 [main] TRACE CrossPackageStats - [WG10 ImplicitDAs::Multiplier, WG10 MetaModel::EnumDA] +2024-09-08 15:10:02,584 [main] TRACE CrossPackageStats - [WG10 ImplicitDAs::PhaseFaultDirection, WG10 MetaModel::EnumDA] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 ImplicitDAs::PhaseAngleReference, WG10 MetaModel::EnumDA] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 DerivedDAs::BehaviourMode, WG10 MetaModel::EnumDA] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 DerivedDAs::CalcMethod, WG10 MetaModel::EnumDA] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 DerivedDAs::Health, WG10 MetaModel::EnumDA] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 ConstructedDAs::AnalogueValue, WG10 MetaModel::ComposedDA] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 ConstructedDAs::RangeConfig, WG10 MetaModel::ComposedDA] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 ConstructedDAs::Unit, WG10 MetaModel::ComposedDA] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 ConstructedDAs::Point, WG10 MetaModel::ComposedDA] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 DerivedCDCs::SPCTransient, WG10 CDCControl::SPC] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - 194 class's attribute types: +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - (excluded types from Domain package) +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 CommonAcsiTypes::MulticastAddress, WG10 CoreTypes::P_INT16U] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 ConstructedDAs::DetailQual, WG10 CoreTypes::P_BOOLEAN] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [OTHER_CIM Ext1::Pear, OTHER_CIM Informative::SomeSimpleType] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 ObjectReferences::LDReference, WG10 CoreTypes::ObjectName] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 ObjectReferences::LNReference, WG10 CoreTypes::ObjectName] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 ObjectReferences::CDCReference, WG10 CoreTypes::ObjectName] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 ObjectReferences::FCDReference, WG10 FunctionalConstraints::FcKind] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 ObjectReferences::FCDAReference, WG10 CoreTypes::P_VISIBLE_STRING255] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 ObjectReferences::FCDAReference, WG10 CoreTypes::ObjectName] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 ObjectReferences::FCDAReference, WG10 CoreTypes::P_INT32U] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 ObjectReferences::CBReference, WG10 CoreTypes::ObjectName] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 ObjectReferences::LOGReference, WG10 CoreTypes::ObjectName] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 ObjectReferences::LNOwnedDSReference, WG10 CoreTypes::ObjectName] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 ObjectReferences::NonPersistentDSReference, WG10 CoreTypes::ObjectName] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 MetaModel::NamedIEC61850Object, WG10 CoreTypes::ObjectName] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 MetaModel::LD, WG10 ObjectReferences::LDReference] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 MetaModel::LN, WG10 ObjectReferences::LNReference] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 LNGroupL::LPHD, WG10 DerivedCDCs::ENSHealth] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 LNGroupL::LPHD, WG10 DerivedCDCs::SPCTransient] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 LNGroupL::LPHD, WG10 DerivedCDCs::SPSTransient] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 LNGroupL::LLN0, WG10 CDCDescription::LPL] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 LNGroupL::LLN0, WG10 DerivedCDCs::ENSBehaviourMode] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 LNGroupL::LLN0, WG10 DerivedCDCs::ENSHealth] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 LogicalNodes::DomainLN, WG10 CDCDescription::LPL] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 LogicalNodes::DomainLN, WG10 DerivedCDCs::ENSHealth] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 LogicalNodes::DomainLN, WG10 DerivedCDCs::ENCBehaviourMode] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 LogicalNodes::DomainLN, WG10 CDCAnalogueInfo::CMV] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 LogicalNodes::StatisticsLN, WG10 DerivedCDCs::SPSTransient] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 LogicalNodes::StatisticsLN, WG10 DerivedCDCs::ENGCalcMethod] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 LNGroupG::GGIO, WG10 DerivedCDCs::ENSHealth] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 LNGroupG::GGIO, WG10 CDCAnalogueInfo::CMV] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 LNGroupM::MMXU, WG10 CDCAnalogueInfo::HWYE] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 LNGroupM::MMXU, WG10 CDCAnalogueInfo::CMV] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 LNGroupM::MMXU, WG10 CDCStatusInfo::HST] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 LogicalNodes::EquipmentInterfaceLN, WG10 DerivedCDCs::ENSHealth] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 LNGroupZ::ZAXN, WG10 CDCAnalogueInfo::CMV] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 LNGroupL::KXYZ, WG10 CDCAnalogueInfo::CMV] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 LNGroupL::KXYZ, WG10 CDCStatusInfo::ENS] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 LNGroupL::KXYZ, WG10 DerivedCDCs::ENSEnumDA] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 LNGroupC::CALH, WG10 CDCStatusInfo::DPS] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 LNGroupC::CALH, WG10 DerivedCDCs::EXYBehaviourMode] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 LNGroupP::PDIF, WG10 CDCStatusInfo::ACD] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 LNGroupP::PDIF, WG10 DerivedCDCs::ACTTransient] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 LNGroupP::PDIS, WG10 CDCStatusInfo::ACD] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 LNGroupP::PDIS, WG10 DerivedCDCs::ACTTransient] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 LNGroupR::RDIR, WG10 CDCStatusInfo::ACD] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 LNGroupR::RDIR, WG10 DerivedCDCs::SPSTransient] +2024-09-08 15:10:02,585 [main] TRACE CrossPackageStats - [WG10 MetaModel::CDC, WG10 ObjectReferences::CDCReference] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 CommonDataClasses::BasePrimitiveCDC, WG10 FCDAs::UNICODE_STRING255_DC] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 CommonDataClasses::BasePrimitiveCDC, WG10 FCDAs::VISIBLE_STRING255_EX] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 CommonDataClasses::SubstitutionCDC, WG10 FCDAs::BOOLEAN_SV] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 CommonDataClasses::SubstitutionCDC, WG10 FCDAs::Quality_SV] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 CommonDataClasses::SubstitutionCDC, WG10 FCDAs::BOOLEAN_BL] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::DPS, WG10 FCDAs::DpStatus_ST_dchg] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::DPS, WG10 FCDAs::Quality_ST_qchg] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::DPS, WG10 FCDAs::TimeStamp_ST] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::DPS, WG10 FCDAs::DpStatus_SV] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::ENS, WG10 FCDAs::EnumDA_ST_dchg_dupd] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::ENS, WG10 FCDAs::Quality_ST_qchg] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::ENS, WG10 FCDAs::TimeStamp_ST] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::ENS, WG10 FCDAs::EnumDA_SV] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 CDCAnalogueInfo::CMV, WG10 FCDAs::RangeConfig_CF_dchg] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 CDCControl::ControllableCDC, WG10 FCDAs::BOOLEAN_OR_dchg] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 CDCControl::ENC, WG10 FCDAs::EnumDA_ST_dchg] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 CDCControl::ENC, WG10 FCDAs::EnumDA_SV] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 CDCControl::ENC, WG10 MetaModel::EnumDA] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 CDCControl::BAC, WG10 FCDAs::AnalogueValue_MX_dchg] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 CDCControl::BAC, WG10 BasicDAs::BsControl] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::EXY, WG10 FCDAs::EnumDA_ST_dchg_dupd] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::EXY, WG10 FCDAs::Quality_ST_qchg] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::EXY, WG10 FCDAs::TimeStamp_ST] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::ACD, WG10 FCDAs::BOOLEAN_ST_dchg] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::HST, WG10 FCDAs::INT32_ST_dchg_dupd] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::HST, WG10 FCDAs::INT16U_CF] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 CDCDescription::LPL, WG10 FCDAs::VISIBLE_STRING255_EX] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 CommonDataClasses::BaseComposedCDC, WG10 FCDAs::UNICODE_STRING255_DC] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 CommonDataClasses::BaseComposedCDC, WG10 FCDAs::VISIBLE_STRING255_EX] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 CDCAnalogueInfo::HarmonicMeasurandCDC, WG10 FCDAs::INT16U_CF_dchg] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 CDCAnalogueInfo::HarmonicMeasurandCDC, WG10 FCDAs::INT32U_CF_dchg] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 CDCAnalogueInfo::HWYE, WG10 FCDAs::PhaseAngleReference_CF_dchg] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 MetaModel::FCDA, WG10 ObjectReferences::FCDAReference] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_BL, WG10 FunctionalConstraints::FcKind] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_BL, WG10 BasicDAs::BOOLEAN] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_CF, WG10 FunctionalConstraints::FcKind] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_CF_dchg, WG10 TriggerOptions::TrgOpKind] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 FCDAs::EnumDA_CF_dchg, WG10 MetaModel::EnumDA] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 FCDAs::PhaseAngleReference_CF_dchg, WG10 ImplicitDAs::PhaseAngleReference] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_CF_dchg, WG10 BasicDAs::BOOLEAN] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 FCDAs::INT16U_CF_dchg, WG10 BasicDAs::INT16U] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 FCDAs::INT32U_CF_dchg, WG10 BasicDAs::INT32U] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 FCDAs::INT32_CF_dchg, WG10 BasicDAs::INT32] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 FCDAs::RangeConfig_CF_dchg, WG10 ConstructedDAs::RangeConfig] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 FCDAs::INT16U_CF, WG10 BasicDAs::INT16U] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_DC, WG10 FunctionalConstraints::FcKind] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 FCDAs::Point_DC, WG10 ConstructedDAs::Point] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 FCDAs::UNICODE_STRING255_DC, WG10 BasicDAs::UNICODE_STRING255] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_EX, WG10 FunctionalConstraints::FcKind] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_EX, WG10 CoreTypes::P_BOOLEAN] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 FCDAs::VISIBLE_STRING255_EX, WG10 BasicDAs::VISIBLE_STRING255] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_MX, WG10 FunctionalConstraints::FcKind] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_MX, WG10 CoreTypes::P_BOOLEAN] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_MX_dchg, WG10 TriggerOptions::TrgOpKind] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 FCDAs::AnalogueValue_MX_dchg, WG10 ConstructedDAs::AnalogueValue] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_MX_dchg, WG10 BasicDAs::BOOLEAN] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_MX_dchg_dupd, WG10 TriggerOptions::TrgOpKind] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 FCDAs::AnalogueValue_MX_dchg_dupd, WG10 ConstructedDAs::AnalogueValue] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_MX_qchg, WG10 TriggerOptions::TrgOpKind] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 FCDAs::Quality_MX_qchg, WG10 ConstructedDAs::Quality] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 FCDAs::AnalogueValue_MX, WG10 ConstructedDAs::AnalogueValue] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_OR, WG10 FunctionalConstraints::FcKind] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_OR, WG10 CoreTypes::P_BOOLEAN] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_OR_dchg, WG10 TriggerOptions::TrgOpKind] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_OR_dchg, WG10 BasicDAs::BOOLEAN] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_SE, WG10 FunctionalConstraints::FcKind] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_SE, WG10 CoreTypes::P_BOOLEAN] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_SE_dchg, WG10 TriggerOptions::TrgOpKind] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_SE, WG10 BasicDAs::BOOLEAN] +2024-09-08 15:10:02,586 [main] TRACE CrossPackageStats - [WG10 FCDAs::Point_SE, WG10 ConstructedDAs::Point] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_SG, WG10 FunctionalConstraints::FcKind] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_SG, WG10 CoreTypes::P_BOOLEAN] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_SG_dchg, WG10 TriggerOptions::TrgOpKind] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_SG, WG10 BasicDAs::BOOLEAN] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 FCDAs::Point_SG, WG10 ConstructedDAs::Point] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_SP, WG10 FunctionalConstraints::FcKind] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_SP_dchg, WG10 TriggerOptions::TrgOpKind] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_SP_dchg, WG10 BasicDAs::BOOLEAN] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 FCDAs::Point_SP, WG10 ConstructedDAs::Point] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_ST, WG10 FunctionalConstraints::FcKind] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_ST, WG10 CoreTypes::P_BOOLEAN] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_ST_dchg, WG10 TriggerOptions::TrgOpKind] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 FCDAs::DpStatus_ST_dchg, WG10 BasicDAs::DpStatus] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 FCDAs::EnumDA_ST_dchg, WG10 MetaModel::EnumDA] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 FCDAs::PhaseFaultDirection_ST_dchg, WG10 ImplicitDAs::PhaseFaultDirection] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_ST_dchg, WG10 BasicDAs::BOOLEAN] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 FCDAs::INT32_ST_dchg, WG10 BasicDAs::INT32] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_ST_dchg_dupd, WG10 TriggerOptions::TrgOpKind] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 FCDAs::EnumDA_ST_dchg_dupd, WG10 MetaModel::EnumDA] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 FCDAs::INT32_ST_dchg_dupd, WG10 BasicDAs::INT32] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_ST_dupd, WG10 TriggerOptions::TrgOpKind] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_ST_qchg, WG10 TriggerOptions::TrgOpKind] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 FCDAs::Quality_ST_qchg, WG10 ConstructedDAs::Quality] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 FCDAs::TimeStamp_ST, WG10 BasicDAs::TimeStamp] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_SV, WG10 FunctionalConstraints::FcKind] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 FCDAs::DpStatus_SV, WG10 BasicDAs::DpStatus] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 FCDAs::EnumDA_SV, WG10 MetaModel::EnumDA] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_SV, WG10 BasicDAs::BOOLEAN] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 FCDAs::Quality_SV, WG10 ConstructedDAs::Quality] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 MetaModel::DA, WG10 ObjectReferences::FCDAReference] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 MetaModel::PrimitiveDA, WG10 AttrValues::AttrValue] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 BasicDAs::PHYCOMADDR, WG10 CoreTypes::P_PHYCOMADDR] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 BasicDAs::ObjectReference, WG10 CoreTypes::P_ObjectReference] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 BasicDAs::VISIBLE_STRING255, WG10 CoreTypes::P_VISIBLE_STRING255] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 BasicDAs::UNICODE_STRING255, WG10 CoreTypes::P_UNICODE_STRING255] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 BasicDAs::INT32U, WG10 CoreTypes::P_INT32U] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 BasicDAs::INT32, WG10 CoreTypes::P_INT32] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 BasicDAs::INT16U, WG10 CoreTypes::P_INT16U] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 BasicDAs::FLOAT32, WG10 CoreTypes::P_FLOAT32] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 BasicDAs::BOOLEAN, WG10 CoreTypes::P_BOOLEAN] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 BasicDAs::TriggerConditions, WG10 CoreTypes::P_TriggerConditions] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 BasicDAs::TimeStamp, WG10 CoreTypes::P_TimeStamp] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 ConstructedDAs::Quality, WG10 CoreTypes::P_BOOLEAN] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 BasicDAs::BsControl, WG10 ACSIEnums::BsControlKind] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 BasicDAs::DpStatus, WG10 ACSIEnums::DpStatusKind] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 ImplicitDAs::SIUnit, WG10 DAEnums::SIUnitKind] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 ImplicitDAs::Multiplier, WG10 DAEnums::MultiplierKind] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 ImplicitDAs::PhaseFaultDirection, WG10 DAEnums::PhaseFaultDirectionKind] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 ImplicitDAs::PhaseAngleReference, WG10 DAEnums::PhaseAngleReferenceKind] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 DerivedDAs::BehaviourMode, WG10 DOEnums::BehaviourModeKind] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 DerivedDAs::CalcMethod, WG10 DOEnums::CalcMethodKind] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 DerivedDAs::Health, WG10 DOEnums::HealthKind] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG17 DerivedDAs_7_420::Material, WG17 DOEnums_7_420::MaterialKind] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG17 DerivedDAs_7_420::Material_control, WG17 DOEnums_7_420::MaterialTransitionKind] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG17 DerivedDAs_7_420::Other, WG17 DOEnums_7_420::OtherKind] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 ConstructedDAs::AnalogueValue, WG10 BasicDAs::INT32] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 ConstructedDAs::AnalogueValue, WG10 BasicDAs::FLOAT32] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 ConstructedDAs::RangeConfig, WG10 BasicDAs::INT32U] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 ConstructedDAs::Unit, WG10 ImplicitDAs::SIUnit] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 ConstructedDAs::Unit, WG10 ImplicitDAs::Multiplier] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 ConstructedDAs::Point, WG10 BasicDAs::FLOAT32] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 MetaModel::LNOwnedDS, WG10 ObjectReferences::LNOwnedDSReference] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 MetaModel::PersistentDS, WG10 CoreTypes::P_BOOLEAN] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 MetaModel::NonPersistentDS, WG10 CoreTypes::P_BOOLEAN] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 MetaModel::NonPersistentDS, WG10 ObjectReferences::NonPersistentDSReference] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 MetaModel::ControlBlock, WG10 ObjectReferences::CBReference] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 MetaModel::BRCB, WG10 CommonAcsiTypes::IPAddress] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 MetaModel::URCB, WG10 CommonAcsiTypes::IPAddress] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 MetaModel::GCB, WG10 CommonAcsiTypes::MulticastAddress] +2024-09-08 15:10:02,587 [main] TRACE CrossPackageStats - [WG10 MetaModel::MSVCB, WG10 CommonAcsiTypes::MulticastAddress] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 MetaModel::USVCB, WG10 CommonAcsiTypes::IPAddress] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 MetaModel::LOG, WG10 ObjectReferences::LOGReference] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 MetaModel::SERVER, WG10 CommonAcsiTypes::IPAddress] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 MetaModel::FCD, WG10 ObjectReferences::FCDReference] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 MetaModel::FCD, WG10 FunctionalConstraints::FcKind] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 MetaModel::FILE, WG10 ObjectReferences::FILEReference] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - 3 class's operation parameters and exceptions: +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 AttrValues::AttrDefinition, WG10 ObjectReferences::FCDAReference] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 AttrValues::NamedAttrValue, WG10 ObjectReferences::FCDAReference] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG13 Core::VoltageLevel, WG13 Domain::Voltage] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - 12 class-to-class (hand-drawn) dependency: +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 ProtectionEq::BusbarProt, WG10 LNGroupP::PDIF] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 ProtectionEq::DirectionalProt, WG10 LNGroupR::RDIR] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 ProtectionEq::DirectionalProt, WG10 LNGroupP::PDIS] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 ProtectionEq::DirectionalPowerProt, WG10 LNGroupR::RDIR] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 ProtectionEq::LineDifferentialProt, WG10 LNGroupP::PDIF] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 ControlEq::AlarmHandler, WG10 LNGroupC::CALH] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 MeasurementsAndMetering::ThreePhaseMeasurement, WG10 LNGroupM::MMXU] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 SystemWide::LogicalDeviceData, WG10 LNGroupL::LLN0] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 SystemWide::PhysicalDeviceData, WG10 LNGroupL::LPHD] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 PrimaryEq::AuxiliaryNetwork, WG10 LNGroupZ::ZAXN] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 PrimaryEq::GenericIO, WG10 LNGroupG::GGIO] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 LNGroupP::PDIS, WG10 LNGroupR::RDIR] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - 9 class-to-class associations: +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG13 Topology::TopologicalNode, WG13 Core::BaseVoltage] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG13 Topology::ConnectivityNode, WG13 Core::ConnectivityNodeContainer] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG13 Topology::TopologicalNode, WG13 Core::ConnectivityNodeContainer] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG13 Core::Terminal, WG13 Topology::ConnectivityNode] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG13 Core::Terminal, WG13 Topology::TopologicalNode] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 MetaModel::MCAA, WG10 CommonAcsiTypes::Authentication] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 MetaModel::TPAA, WG10 CommonAcsiTypes::Authentication] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 MetaModel::SGCB, WG10 MetaModelFCsAndTrgOps::FCDA_SG] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 MetaModel::SGCB, WG10 MetaModelFCsAndTrgOps::FCDA_SE] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - 50 package-to-package (hand-drawn) dependency: +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG13 IEC61970::Core, WG13 IEC61970::Domain] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG13 IEC61970::Core, WG13 IEC61970::Topology] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 WG10::IEC61850_7_4, WG10 WG10::IEC61850_7_2] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 WG10::IEC61850_7_3, WG10 WG10::IEC61850_7_2] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::MetaModel, WG10 IEC61850_7_2::FunctionalConstraints] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::MetaModel, WG10 IEC61850_7_2::TriggerOptions] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::ACSIEnums, WG10 IEC61850_7_2::BasicDAs] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::CoreTypes, WG10 IEC61850_7_3::ConstructedDAs] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::CoreTypes, WG10 IEC61850_7_2::MetaModel] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 AcsiTypes::CommonAcsiTypes, WG10 IEC61850_7_2::CoreTypes] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::AcsiTypes, WG10 IEC61850_7_2::CoreTypes] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::CoreTypes, WG10 IEC61850_7_2::BasicDAs] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::AttrValues, WG10 IEC61850_7_2::CoreTypes] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::CoreTypes, WG10 IEC61850_7_2::ObjectReferences] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::MetaModel, WG10 IEC61850_7_2::ObjectReferences] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::AttrValues, WG10 IEC61850_7_2::ObjectReferences] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::AttrValues, WG10 IEC61850_7_2::MetaModel] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::AttrValues, WG10 IEC61850_7_2::BasicDAs] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::BasicDAs, WG10 IEC61850_7_3::FCDAs] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_3::ConstructedDAs, WG10 IEC61850_7_2::BasicDAs] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::MetaModel, WG10 IEC61850_7_2::BasicDAs] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::AcsiTypes, WG10 IEC61850_7_2::MetaModel] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_4::LogicalNodes, WG10 IEC61850_7_2::MetaModel] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::MetaModel, WG10 IEC61850_7_4::DerivedDAs] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::MetaModel, WG10 IEC61850_7_3::CommonDataClasses] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::MetaModel, WG10 IEC61850_7_3::FCDAs] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_3::ConstructedDAs, WG10 IEC61850_7_2::MetaModel] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::CDCServiceTracking, WG10 IEC61850_7_3::CommonDataClasses] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 WG10::IEC61850_7_3, WG10 WG10::IEC61850_7_4] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_3::DAEnums, WG10 IEC61850_7_4::DerivedCDCs] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_3::DAEnums, WG10 IEC61850_7_3::ImplicitDAs] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_3::ImplicitDAs, WG10 IEC61850_7_3::FCDAs] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_3::ConstructedDAs, WG10 IEC61850_7_3::ImplicitDAs] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_3::ConstructedDAs, WG10 IEC61850_7_3::FCDAs] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_3::CommonDataClasses, WG10 IEC61850_7_3::FCDAs] +2024-09-08 15:10:02,588 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_4::LogicalNodes, WG10 IEC61850_7_3::CommonDataClasses] +2024-09-08 15:10:02,589 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_4::DerivedCDCs, WG10 IEC61850_7_3::CommonDataClasses] +2024-09-08 15:10:02,589 [main] TRACE CrossPackageStats - [WG10 LogicalNodes::LNGroupP, WG10 Functions::ProtectionEq] +2024-09-08 15:10:02,589 [main] TRACE CrossPackageStats - [WG10 LogicalNodes::LNGroupR, WG10 Functions::ProtectionEq] +2024-09-08 15:10:02,589 [main] TRACE CrossPackageStats - [WG10 Functions::ControlEq, WG10 LogicalNodes::LNGroupG] +2024-09-08 15:10:02,589 [main] TRACE CrossPackageStats - [WG10 Functions::ControlEq, WG10 LogicalNodes::LNGroupP] +2024-09-08 15:10:02,589 [main] TRACE CrossPackageStats - [WG10 Functions::ControlEq, WG10 LogicalNodes::LNGroupC] +2024-09-08 15:10:02,589 [main] TRACE CrossPackageStats - [WG10 LogicalNodes::LNGroupM, WG10 Functions::MeasurementsAndMetering] +2024-09-08 15:10:02,589 [main] TRACE CrossPackageStats - [WG10 Functions::SystemWide, WG10 LogicalNodes::LNGroupL] +2024-09-08 15:10:02,589 [main] TRACE CrossPackageStats - [WG10 Functions::SystemWide, WG10 LogicalNodes::LNGroupG] +2024-09-08 15:10:02,589 [main] TRACE CrossPackageStats - [WG10 Functions::PrimaryEq, WG10 LogicalNodes::LNGroupG] +2024-09-08 15:10:02,589 [main] TRACE CrossPackageStats - [WG10 Functions::PrimaryEq, WG10 LogicalNodes::LNGroupZ] +2024-09-08 15:10:02,589 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_4::DOEnums, WG10 IEC61850_7_4::DerivedDAs] +2024-09-08 15:10:02,589 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_4::DerivedCDCs, WG10 IEC61850_7_4::DerivedDAs] +2024-09-08 15:10:02,589 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_4::LogicalNodes, WG10 IEC61850_7_4::DerivedCDCs] +2024-09-08 15:10:02,589 [main] DEBUG Util - +2024-09-08 15:10:02,589 [main] DEBUG Util - ======= 83 packages: ======== +2024-09-08 15:10:02,589 [main] DEBUG Util - (177) OTHER_CIM CIM model package /TC57CIMProfiles: 1 diagrams, 0 classes, 0 packages +2024-09-08 15:10:02,589 [main] DEBUG Util - (2) OTHER_CIM CIM model package /TC57CIM: 1 diagrams, 0 classes, 4 packages, ; tags={nsprefix=cim, nsuri=http://cim123} +2024-09-08 15:10:02,589 [main] DEBUG Util - (71) OTHER_CIM CIM INF top package <> TC57CIM::Informative: 1 diagrams, 6 classes, 0 packages +2024-09-08 15:10:02,589 [main] DEBUG UmlPackage - deduceAndFillNamespaceInfoDependencies for TC57CIM::IEC61970, targetPackages = [] +2024-09-08 15:10:02,589 [main] DEBUG Util - (39) WG13 CIM top package TC57CIM::IEC61970 (version={IEC61970CIM14v12, 20119-08-01}) (namespace IEC61970CIM14v12:2011, 20119-08-01; UML version 2011): 1 diagrams, 1 classes, 5 packages +2024-09-08 15:10:02,589 [main] DEBUG Util - (55) WG13 CIM INF private package IEC61970::InformativeAndPrivate: 1 diagrams, 2 classes, 0 packages +2024-09-08 15:10:02,589 [main] DEBUG Util - (166) WG13 CIM INF package IEC61970::DocIEC61970: 1 diagrams, 0 classes, 0 packages +2024-09-08 15:10:02,589 [main] DEBUG Util - (41) WG13 CIM package <> IEC61970::Domain: 2 diagrams, 17 classes, 0 packages +2024-09-08 15:10:02,589 [main] DEBUG Util - (54) WG13 CIM package IEC61970::Core: 2 diagrams, 19 classes, 0 packages, efferent=[Domain], afferent=[Domain] +2024-09-08 15:10:02,589 [main] DEBUG Util - (52) WG13 CIM package <> IEC61970::Topology: 2 diagrams, 6 classes, 1 packages, efferent=[Core, Other], afferent=[Core, Other] +2024-09-08 15:10:02,589 [main] DEBUG Util - (168) WG13 CIM package Topology::TestEnums: 1 diagrams, 3 classes, 0 packages +2024-09-08 15:10:02,589 [main] DEBUG Util - (56) WG14 CIM top package TC57CIM::IEC61968: 1 diagrams, 1 classes, 5 packages, efferent=[IEC61970], afferent=[IEC61970], ; tags={nsprefix=n14, nsuri=http://wg14/customNamespace} +2024-09-08 15:10:02,589 [main] DEBUG Util - (173) WG14 CIM package IEC61968::EmbeddedExtension: 1 diagrams, 0 classes, 0 packages, ; tags={nsuri=http://embeddedExt, nsprefix=eext} +2024-09-08 15:10:02,589 [main] DEBUG Util - (83) WG14 CIM package IEC61968::Assets: 2 diagrams, 1 classes, 0 packages +2024-09-08 15:10:02,589 [main] DEBUG Util - (67) WG14 CIM package IEC61968::Core: 0 diagrams, 0 classes, 0 packages +2024-09-08 15:10:02,589 [main] DEBUG Util - (66) WG14 CIM package IEC61968::Other: 0 diagrams, 0 classes, 0 packages +2024-09-08 15:10:02,589 [main] DEBUG Util - (57) WG14 CIM package IEC61968::Other: 1 diagrams, 9 classes, 0 packages, efferent=[IEC61970], afferent=[IEC61970] +2024-09-08 15:10:02,589 [main] DEBUG Util - (82) WG16 CIM top package TC57CIM::IEC62325: 1 diagrams, 0 classes, 0 packages, efferent=[IEC61970, IEC61968], afferent=[IEC61970, IEC61968] +2024-09-08 15:10:02,589 [main] DEBUG Util - (58) OTHER_IEC61850 IEC61850 model package /IEC61850Domain: 1 diagrams, 0 classes, 4 packages +2024-09-08 15:10:02,589 [main] DEBUG Util - (85) WG10 IEC61850 top package IEC61850Domain::WG10 (version={IEC61850UML02v07, 2011-07-02}): 3 diagrams, 1 classes, 4 packages +2024-09-08 15:10:02,590 [main] DEBUG Util - (86) WG10 IEC61850 package WG10::NewIEC61850_7_2: 1 diagrams, 0 classes, 1 packages +2024-09-08 15:10:02,590 [main] DEBUG Util - (87) WG10 IEC61850 package NewIEC61850_7_2::GenericModel: 2 diagrams, 33 classes, 0 packages +2024-09-08 15:10:02,590 [main] ERROR NamespaceInfo - Unexpected attribute 'name' in namespace class 'IEC61850_7_2Namespace'. +2024-09-08 15:10:02,590 [main] DEBUG UmlPackage - deduceAndFillNamespaceInfoDependencies for WG10::IEC61850_7_2, targetPackages = [] +2024-09-08 15:10:02,590 [main] DEBUG Util - (88) WG10 IEC61850 package WG10::IEC61850_7_2 (namespace IEC61850-7-2:2007, 2011-08-01; UML version IEC61850UML02v07): 2 diagrams, 1 classes, 10 packages +2024-09-08 15:10:02,590 [main] DEBUG Util - (90) WG10 IEC61850 package IEC61850_7_2::FunctionalConstraints: 1 diagrams, 1 classes, 0 packages +2024-09-08 15:10:02,590 [main] DEBUG Util - (91) WG10 IEC61850 package IEC61850_7_2::TriggerOptions: 1 diagrams, 1 classes, 0 packages +2024-09-08 15:10:02,590 [main] DEBUG Util - (92) WG10 IEC61850 package IEC61850_7_2::ACSIEnums: 1 diagrams, 2 classes, 0 packages +2024-09-08 15:10:02,590 [main] DEBUG Util - (93) WG10 IEC61850 package IEC61850_7_2::CoreTypes: 1 diagrams, 14 classes, 0 packages +2024-09-08 15:10:02,590 [main] DEBUG Util - (95) WG10 IEC61850 package IEC61850_7_2::ObjectReferences: 1 diagrams, 11 classes, 1 packages, efferent=[CoreTypes], afferent=[CoreTypes] +2024-09-08 15:10:02,590 [main] DEBUG Util - (96) WG10 IEC61850 INF package ObjectReferences::DetailedDiagrams: 1 diagrams, 0 classes, 0 packages +2024-09-08 15:10:02,590 [main] DEBUG Util - (97) WG10 IEC61850 package IEC61850_7_2::AttrValues: 1 diagrams, 4 classes, 0 packages, efferent=[CoreTypes, ObjectReferences], afferent=[CoreTypes, ObjectReferences] +2024-09-08 15:10:02,590 [main] DEBUG Util - (98) WG10 IEC61850 package IEC61850_7_2::BasicDAs: 1 diagrams, 13 classes, 0 packages, efferent=[ACSIEnums, CoreTypes, AttrValues, MetaModel], afferent=[ACSIEnums, CoreTypes, AttrValues, MetaModel] +2024-09-08 15:10:02,590 [main] DEBUG Util - (99) WG10 IEC61850 package IEC61850_7_2::AcsiTypes: 1 diagrams, 0 classes, 1 packages, efferent=[CoreTypes], afferent=[CoreTypes] +2024-09-08 15:10:02,590 [main] DEBUG Util - (100) WG10 IEC61850 package AcsiTypes::CommonAcsiTypes: 1 diagrams, 8 classes, 0 packages, efferent=[CoreTypes], afferent=[CoreTypes] +2024-09-08 15:10:02,590 [main] DEBUG Util - (109) WG10 IEC61850 package IEC61850_7_2::MetaModel: 5 diagrams, 43 classes, 1 packages, efferent=[FunctionalConstraints, TriggerOptions, CoreTypes, ObjectReferences, AttrValues, AcsiTypes], afferent=[FunctionalConstraints, TriggerOptions, CoreTypes, ObjectReferences, AttrValues, AcsiTypes] +2024-09-08 15:10:02,590 [main] DEBUG Util - (110) WG10 IEC61850 package MetaModel::MetaModelFCsAndTrgOps: 1 diagrams, 34 classes, 0 packages +2024-09-08 15:10:02,590 [main] DEBUG Util - (112) WG10 IEC61850 package IEC61850_7_2::CDCServiceTracking: 1 diagrams, 10 classes, 0 packages, efferent=[CommonDataClasses], afferent=[CommonDataClasses] +2024-09-08 15:10:02,590 [main] ERROR NamespaceInfo - Unexpected attribute 'name' in namespace class 'IEC61850_7_3Namespace'. +2024-09-08 15:10:02,590 [main] DEBUG UmlPackage - deduceAndFillNamespaceInfoDependencies for WG10::IEC61850_7_3, targetPackages = [] +2024-09-08 15:10:02,590 [main] DEBUG Util - (113) WG10 IEC61850 package WG10::IEC61850_7_3 (namespace IEC61850-7-3:2011B, 2011-08-01; UML version IEC61850UML02v07): 1 diagrams, 1 classes, 6 packages, efferent=[IEC61850_7_2, IEC61850_7_4], afferent=[IEC61850_7_2, IEC61850_7_4] +2024-09-08 15:10:02,590 [main] DEBUG Util - (114) WG10 IEC61850 package IEC61850_7_3::PresenceConditions: 1 diagrams, 1 classes, 0 packages +2024-09-08 15:10:02,590 [main] DEBUG Util - (115) WG10 IEC61850 package IEC61850_7_3::DAEnums: 1 diagrams, 4 classes, 0 packages +2024-09-08 15:10:02,590 [main] DEBUG Util - (116) WG10 IEC61850 package IEC61850_7_3::ImplicitDAs: 1 diagrams, 4 classes, 0 packages, efferent=[DAEnums], afferent=[DAEnums] +2024-09-08 15:10:02,590 [main] DEBUG Util - (117) WG10 IEC61850 package IEC61850_7_3::ConstructedDAs: 1 diagrams, 8 classes, 0 packages, efferent=[CoreTypes, BasicDAs, MetaModel, ImplicitDAs], afferent=[CoreTypes, BasicDAs, MetaModel, ImplicitDAs] +2024-09-08 15:10:02,590 [main] DEBUG Util - (118) WG10 IEC61850 package IEC61850_7_3::FCDAs: 1 diagrams, 37 classes, 0 packages, efferent=[BasicDAs, MetaModel, ImplicitDAs, ConstructedDAs], afferent=[BasicDAs, MetaModel, ImplicitDAs, ConstructedDAs] +2024-09-08 15:10:02,590 [main] DEBUG Util - (119) WG10 IEC61850 package IEC61850_7_3::CommonDataClasses: 2 diagrams, 3 classes, 6 packages, efferent=[MetaModel, FCDAs], afferent=[MetaModel, FCDAs] +2024-09-08 15:10:02,590 [main] DEBUG Util - (121) WG10 IEC61850 package CommonDataClasses::CDCStatusInfo: 1 diagrams, 5 classes, 0 packages +2024-09-08 15:10:02,591 [main] DEBUG Util - (122) WG10 IEC61850 package CommonDataClasses::CDCAnalogueInfo: 1 diagrams, 3 classes, 0 packages +2024-09-08 15:10:02,591 [main] DEBUG Util - (123) WG10 IEC61850 package CommonDataClasses::CDCControl: 1 diagrams, 4 classes, 0 packages +2024-09-08 15:10:02,591 [main] DEBUG Util - (124) WG10 IEC61850 package CommonDataClasses::CDCStatusSet: 1 diagrams, 1 classes, 0 packages +2024-09-08 15:10:02,591 [main] DEBUG Util - (125) WG10 IEC61850 package CommonDataClasses::CDCAnalogueSet: 1 diagrams, 0 classes, 0 packages +2024-09-08 15:10:02,591 [main] DEBUG Util - (126) WG10 IEC61850 package CommonDataClasses::CDCDescription: 1 diagrams, 1 classes, 0 packages +2024-09-08 15:10:02,591 [main] ERROR NamespaceInfo - Unexpected attribute 'name' in namespace class 'IEC61850_7_4Namespace'. +2024-09-08 15:10:02,591 [main] DEBUG UmlPackage - deduceAndFillNamespaceInfoDependencies for WG10::IEC61850_7_4, targetPackages = [] +2024-09-08 15:10:02,591 [main] DEBUG Util - (127) WG10 IEC61850 package WG10::IEC61850_7_4 (namespace IEC61850-7-4:2009A, 2011-08-01; UML version IEC61850UML02v07): 1 diagrams, 1 classes, 6 packages, efferent=[IEC61850_7_2, IEC61850_7_3, IEC51850_7_420], afferent=[IEC61850_7_2, IEC61850_7_3, IEC51850_7_420] +2024-09-08 15:10:02,591 [main] DEBUG Util - (131) WG10 IEC61850 package IEC61850_7_4::Abbreviations: 0 diagrams, 2 classes, 1 packages +2024-09-08 15:10:02,591 [main] DEBUG Util - (167) WG10 IEC61850 INF package Abbreviations::DetailedDiagrams: 1 diagrams, 0 classes, 0 packages +2024-09-08 15:10:02,591 [main] DEBUG Util - (132) WG10 IEC61850 package IEC61850_7_4::Functions: 0 diagrams, 0 classes, 5 packages +2024-09-08 15:10:02,591 [main] DEBUG Util - (133) WG10 IEC61850 package Functions::ProtectionEq: 1 diagrams, 5 classes, 0 packages, efferent=[LNGroupP, LNGroupR], afferent=[LNGroupP, LNGroupR] +2024-09-08 15:10:02,591 [main] DEBUG Util - (134) WG10 IEC61850 package Functions::ControlEq: 1 diagrams, 1 classes, 0 packages, efferent=[LNGroupG, LNGroupP, LNGroupC], afferent=[LNGroupG, LNGroupP, LNGroupC] +2024-09-08 15:10:02,591 [main] DEBUG Util - (137) WG10 IEC61850 package Functions::MeasurementsAndMetering: 1 diagrams, 1 classes, 0 packages, efferent=[LNGroupM], afferent=[LNGroupM] +2024-09-08 15:10:02,591 [main] DEBUG Util - (138) WG10 IEC61850 package Functions::SystemWide: 1 diagrams, 2 classes, 0 packages, efferent=[LNGroupL, LNGroupG], afferent=[LNGroupL, LNGroupG] +2024-09-08 15:10:02,591 [main] DEBUG Util - (139) WG10 IEC61850 package Functions::PrimaryEq: 1 diagrams, 2 classes, 0 packages, efferent=[LNGroupG, LNGroupZ], afferent=[LNGroupG, LNGroupZ] +2024-09-08 15:10:02,591 [main] DEBUG Util - (141) WG10 IEC61850 package IEC61850_7_4::DOEnums: 1 diagrams, 4 classes, 0 packages, ; tags={dummyPackageTag=tagValue} +2024-09-08 15:10:02,591 [main] DEBUG Util - (142) WG10 IEC61850 package IEC61850_7_4::DerivedDAs: 1 diagrams, 3 classes, 0 packages, efferent=[MetaModel, DOEnums], afferent=[MetaModel, DOEnums] +2024-09-08 15:10:02,591 [main] DEBUG Util - (143) WG10 IEC61850 package IEC61850_7_4::DerivedCDCs: 1 diagrams, 9 classes, 0 packages, efferent=[DAEnums, CommonDataClasses, DerivedDAs], afferent=[DAEnums, CommonDataClasses, DerivedDAs] +2024-09-08 15:10:02,591 [main] DEBUG Util - (144) WG10 IEC61850 package IEC61850_7_4::LogicalNodes: 2 diagrams, 3 classes, 8 packages, efferent=[MetaModel, CommonDataClasses, DerivedCDCs], afferent=[MetaModel, CommonDataClasses, DerivedCDCs] +2024-09-08 15:10:02,591 [main] DEBUG Util - (145) WG10 IEC61850 INF package LogicalNodes::DocLogicalNodes: 2 diagrams, 0 classes, 0 packages +2024-09-08 15:10:02,591 [main] DEBUG Util - (146) WG10 IEC61850 package LogicalNodes::LNGroupL: 1 diagrams, 3 classes, 0 packages +2024-09-08 15:10:02,591 [main] DEBUG Util - (148) WG10 IEC61850 package LogicalNodes::LNGroupC: 1 diagrams, 1 classes, 0 packages +2024-09-08 15:10:02,591 [main] DEBUG Util - (150) WG10 IEC61850 package LogicalNodes::LNGroupG: 1 diagrams, 1 classes, 0 packages +2024-09-08 15:10:02,591 [main] DEBUG Util - (153) WG10 IEC61850 package LogicalNodes::LNGroupM: 1 diagrams, 1 classes, 0 packages +2024-09-08 15:10:02,591 [main] DEBUG Util - (154) WG10 IEC61850 package LogicalNodes::LNGroupP: 1 diagrams, 5 classes, 0 packages +2024-09-08 15:10:02,591 [main] DEBUG Util - (156) WG10 IEC61850 package LogicalNodes::LNGroupR: 1 diagrams, 1 classes, 0 packages +2024-09-08 15:10:02,591 [main] DEBUG Util - (161) WG10 IEC61850 package LogicalNodes::LNGroupZ: 1 diagrams, 1 classes, 0 packages +2024-09-08 15:10:02,591 [main] DEBUG Util - (163) WG17 IEC61850 top package IEC61850Domain::WG17 (version={IEC61850UML02v07, 2011-07-02}): 1 diagrams, 1 classes, 1 packages, efferent=[IEC61850_7_4], afferent=[IEC61850_7_4] +2024-09-08 15:10:02,591 [main] DEBUG Util - (172) WG17 IEC61850 package WG17::IEC51850_7_420: 1 diagrams, 1 classes, 3 packages +2024-09-08 15:10:02,591 [main] DEBUG Util - (169) WG17 IEC61850 package IEC51850_7_420::DOEnums_7_420: 1 diagrams, 4 classes, 0 packages +2024-09-08 15:10:02,591 [main] DEBUG Util - (170) WG17 IEC61850 package IEC51850_7_420::DerivedDAs_7_420: 1 diagrams, 3 classes, 0 packages +2024-09-08 15:10:02,591 [main] DEBUG Util - (171) WG17 IEC61850 package IEC51850_7_420::DerivedCDCs_7_420: 1 diagrams, 3 classes, 0 packages +2024-09-08 15:10:02,591 [main] DEBUG Util - (164) WG18 IEC61850 top package IEC61850Domain::WG18: 1 diagrams, 0 classes, 1 packages +2024-09-08 15:10:02,591 [main] DEBUG Util - (165) WG18 IEC61850 package WG18::Abbreviations_410: 1 diagrams, 1 classes, 0 packages +2024-09-08 15:10:02,592 [main] DEBUG Util - (162) JWG25 IEC61850 top package IEC61850Domain::JWG25: 1 diagrams, 0 classes, 0 packages +2024-09-08 15:10:02,592 [main] DEBUG Util - (68) OTHER_CIM CIM model package /MyCimExtensions: 1 diagrams, 2 classes, 2 packages +2024-09-08 15:10:02,592 [main] DEBUG Util - (69) OTHER_CIM CIM top package <> MyCimExtensions::Ext1: 1 diagrams, 5 classes, 0 packages, ; tags={nsuri=http://toto, nsprefix=ext2} +2024-09-08 15:10:02,592 [main] DEBUG Util - (81) OTHER_CIM CIM top package MyCimExtensions::Package with space: 1 diagrams, 2 classes, 0 packages +2024-09-08 15:10:02,592 [main] DEBUG Util - (72) OTHER_IEC61850 IEC61850 model package /My61850Extensions: 1 diagrams, 0 classes, 1 packages +2024-09-08 15:10:02,592 [main] DEBUG Util - (70) OTHER_IEC61850 IEC61850 top package My61850Extensions::Ext2: 1 diagrams, 3 classes, 0 packages +2024-09-08 15:10:02,592 [main] DEBUG Util - (174) OTHER_CIM CIM model package /NewNature: 1 diagrams, 0 classes, 0 packages +2024-09-08 15:10:02,592 [main] DEBUG Util - +2024-09-08 15:10:02,592 [main] DEBUG Util - ======= 386 classes: ======== +2024-09-08 15:10:02,592 [main] DEBUG Util - (1495) OTHER_CIM CIM INF root class <> Informative::Class1, 1 associations; associated classes (bi-directional): asTarget=[Other::MyClass] +2024-09-08 15:10:02,592 [main] DEBUG Util - (1514) OTHER_CIM CIM INF root class Informative::End1ForAssocClass, 1 associations; associated classes (bi-directional): asSource=[Informative::End2ForAssocClass] +2024-09-08 15:10:02,592 [main] DEBUG Util - (1515) OTHER_CIM CIM INF root class Informative::End2ForAssocClass, 1 associations; associated classes (bi-directional): asTarget=[Informative::End1ForAssocClass] +2024-09-08 15:10:02,592 [main] DEBUG Util - (1517) OTHER_CIM CIM INF root class Informative::AssocClass +2024-09-08 15:10:02,593 [main] DEBUG Util - (1518) OTHER_CIM CIM INF root class Informative::HasIllegalTypeForAttr, 1 attributes; efferent classes: byAttr=[Bay] +2024-09-08 15:10:02,593 [main] DEBUG Util - (1532) OTHER_CIM CIM INF compound <> Informative::SomeSimpleType; afferent classes: byAttr=[Pear]; +2024-09-08 15:10:02,593 [main] DEBUG Util - (572) WG13 CIM root class IEC61970::IEC61970CIMVersion, 2 attributes; efferent classes: byAttr=[AbsoluteDateTime, String] +2024-09-08 15:10:02,593 [main] DEBUG Util - (1450) WG13 CIM INF root class InformativeAndPrivate::InfClass2, 1 subclasses=[BusNameMarker], 1 attributes, 1 associations; efferent classes: byAttr=[Boolean]; associated classes (bi-directional): asTarget=[InformativeAndPrivate::InfClassContainingEmbeddedClass] +2024-09-08 15:10:02,593 [main] DEBUG Util - (1449) WG13 CIM INF root class InformativeAndPrivate::InfClassContainingEmbeddedClass, 1 associations; associated classes (bi-directional): asSource=[InformativeAndPrivate::InfClass2] +2024-09-08 15:10:02,593 [main] DEBUG Util - (1496) WG13 CIM INF root class InformativeAndPrivate::EmbeddedClass +2024-09-08 15:10:02,593 [main] DEBUG Util - (640) WG13 CIM datatype <> Domain::AbsoluteDateTime, 1 attributes; afferent classes: byAttr=[IEC61970CIMVersion, IEC61968Version, My class];; efferent classes: byAttr=[String] +2024-09-08 15:10:02,593 [main] DEBUG Util - (638) WG13 CIM datatype <> Domain::ActivePower, 3 attributes; efferent classes: byAttr=[Float, UnitSymbol, UnitMultiplier] +2024-09-08 15:10:02,593 [main] DEBUG Util - (629) WG13 CIM datatype <> Domain::ActivePowerChangeRate, 3 attributes; efferent classes: byAttr=[NullCIM, UnitSymbol, UnitMultiplier] +2024-09-08 15:10:02,593 [main] DEBUG Util - (616) WG13 CIM datatype <> Domain::ApparentPower, 3 attributes; afferent classes: byAttr=[BasePower];; efferent classes: byAttr=[Float, UnitSymbol, UnitMultiplier] +2024-09-08 15:10:02,593 [main] DEBUG Util - (619) WG13 CIM primitive <> Domain::Boolean; afferent classes: byAttr=[InfClass2, BaseVoltage, Bay, Equipment, Terminal, MyClass, AttrDuplication]; +2024-09-08 15:10:02,593 [main] DEBUG Util - (600) WG13 CIM enumeration <> Domain::Currency, 14 enum literals; afferent classes: byAttr=[Money]; +2024-09-08 15:10:02,593 [main] DEBUG Util - (615) WG13 CIM primitive <> Domain::Float; afferent classes: byAttr=[ActivePower, ApparentPower, Money, PerCent, Seconds, Voltage, MyClass, NonEmptyPrimitive]; +2024-09-08 15:10:02,593 [main] DEBUG Util - (610) WG13 CIM primitive <> Domain::Integer; afferent classes: byAttr=[Terminal, BusNameMarker, TopologicalIsland, Equipment, AnotherBadDatatype, Apple]; +2024-09-08 15:10:02,593 [main] DEBUG Util - (609) WG13 CIM datatype <> Domain::Money, 3 attributes; efferent classes: byAttr=[Float, Currency, UnitMultiplier] +2024-09-08 15:10:02,593 [main] DEBUG Util - (614) WG13 CIM datatype <> Domain::PerCent, 3 attributes; afferent classes: byAttr=[OperatingShare];; efferent classes: byAttr=[Float, UnitSymbol, UnitMultiplier] +2024-09-08 15:10:02,593 [main] DEBUG Util - (620) WG13 CIM datatype <> Domain::Seconds, 3 attributes; efferent classes: byAttr=[Float, UnitSymbol, UnitMultiplier] +2024-09-08 15:10:02,593 [main] DEBUG Util - (637) WG13 CIM primitive <> Domain::String; afferent classes: byAttr=[IEC61970CIMVersion, AbsoluteDateTime, PowerSystemResource, IdentifiedObject, IEC61968Version]; +2024-09-08 15:10:02,593 [main] DEBUG Util - (634) WG13 CIM enumeration <> Domain::UnitMultiplier, 11 enum literals; afferent classes: byAttr=[ActivePower, ActivePowerChangeRate, ApparentPower, Money, PerCent, Seconds, Voltage]; +2024-09-08 15:10:02,593 [main] DEBUG Util - (613) WG13 CIM enumeration <> Domain::UnitSymbol, 34 enum literals; afferent classes: byAttr=[ActivePower, ActivePowerChangeRate, ApparentPower, PerCent, Seconds, Voltage, BadDatatypes, AnotherBadDatatype]; +2024-09-08 15:10:02,594 [main] DEBUG Util - (602) WG13 CIM datatype <> Domain::Voltage, 3 attributes; afferent classes: byAttr=[BaseVoltage, VoltageLevel] byOp=[VoltageLevel];; efferent classes: byAttr=[Float, UnitSymbol, UnitMultiplier] +2024-09-08 15:10:02,594 [main] DEBUG Util - (1533) WG13 CIM enumeration <> Domain::WithSingleLiteral, 1 enum literals +2024-09-08 15:10:02,594 [main] DEBUG Util - (1540) WG13 CIM enumeration <> Domain::YesNo, 2 enum literals; afferent classes: byAttr=[Bay, Equipment]; +2024-09-08 15:10:02,594 [main] DEBUG Util - (858) WG13 CIM private enumeration <> Core::BreakerConfiguration, 4 enum literals; afferent classes: byAttr=[Bay];,1 constraints: class attributes constraint Core::BreakerConfiguration {ConstraintOnEnum = [text]} +2024-09-08 15:10:02,594 [main] DEBUG Util - (878) WG13 CIM protected enumeration <> Core::BusbarConfiguration, 4 enum literals; afferent classes: byAttr=[Bay]; +2024-09-08 15:10:02,594 [main] DEBUG Util - (876) WG13 CIM root class <> Core::OperatingShare, 1 attributes, 2 associations; efferent classes: byAttr=[PerCent]; associated classes (bi-directional): asSource=[Core::OperatingParticipant, Core::PowerSystemResource] +2024-09-08 15:10:02,594 [main] DEBUG Util - (856) WG13 CIM enumeration <> Core::PhaseCode, 18 enum literals; afferent classes: byAttr=[ConductingEquipment]; +2024-09-08 15:10:02,594 [main] DEBUG Util - (851) WG13 CIM root class Core::IdentifiedObject, 11 subclasses=[BusNameMarker, Terminal, BaseVoltage, BasePower, SubGeographicalRegion, geographicalRegion, OperatingParticipant, PowerSystemResource, ConnectivityNode, TopologicalIsland, TopologicalNode], 3 attributes; efferent classes: byAttr=[String] +2024-09-08 15:10:02,594 [main] DEBUG Util - (1513) WG13 CIM enumeration <> Topology::TestEnum, 2 enum literals (codes used=[initial J/m², initial µ]) +2024-09-08 15:10:02,594 [main] DEBUG Util - (3045) WG13 CIM enumeration <> TestEnums::EnumWithSomeIntCodes, 7 enum literals (codes used=[, 1, 10, 2, 3, 4]) +2024-09-08 15:10:02,594 [main] DEBUG Util - (3047) WG13 CIM enumeration <> TestEnums::EnumWithStringCodes, 5 enum literals (codes used=[, 1, 3.14, another string, some string]) +2024-09-08 15:10:02,594 [main] DEBUG Util - (3049) WG13 CIM enumeration <> TestEnums::EnumWithNonUniqueCodes, 8 enum literals (codes used=[1, 3, 4, 6, 8]) +2024-09-08 15:10:02,594 [main] DEBUG Util - (1452) WG14 CIM root class IEC61968::IEC61968Version, 2 attributes; efferent classes: byAttr=[AbsoluteDateTime, String] +2024-09-08 15:10:02,594 [main] DEBUG Util - (1546) WG14 CIM root class Assets::AssetInfo, 1 associations; associated classes (bi-directional): asSource=[Core::PowerSystemResource] +2024-09-08 15:10:02,594 [main] DEBUG Util - (1467) WG14 CIM datatype <> Other::BadDatatypes, 2 subclasses=[BaseVoltage, MyClass], 2 attributes, 2 associations; afferent classes: byAttr=[BadDatatypes];; efferent classes: byDep=[MyClass] byAttr=[BadDatatypes, UnitSymbol]; associated classes (bi-directional): asTarget=[Other::AttrDuplication] asSource=[Other::MyClass] +2024-09-08 15:10:02,594 [main] DEBUG Util - (1472) WG14 CIM root class Other::Equipment, 2 attributes; efferent classes: byAttr=[Integer, YesNo] +2024-09-08 15:10:02,594 [main] DEBUG Util - (1474) WG14 CIM root class Other::MyClass, 1 associations; associated classes (bi-directional): asSource=[Informative::Class1] +2024-09-08 15:10:02,594 [main] DEBUG Util - (1480) WG14 CIM enumeration <> Other::EmptyEnum +2024-09-08 15:10:02,594 [main] DEBUG Util - (1481) WG14 CIM primitive <> Other::NonEmptyPrimitive, 1 attributes; efferent classes: byAttr=[Float] +2024-09-08 15:10:02,594 [main] DEBUG Util - (1537) WG14 CIM datatype <> Other::AnotherBadDatatype, 3 attributes; efferent classes: byAttr=[UnitSymbol, Integer, EmptyCompound] +2024-09-08 15:10:02,594 [main] DEBUG Util - (1538) WG14 CIM compound <> Other::EmptyCompound; afferent classes: byAttr=[AnotherBadDatatype]; +2024-09-08 15:10:02,595 [main] DEBUG Util - (1555) WG10 IEC61850 other 61850 WG10::WG10UMLVersion, 2 attributes; efferent classes: byAttr=[NullIEC61850] +2024-09-08 15:10:02,595 [main] DEBUG Util - (1586) WG10 IEC61850 unknown 61850 <> GenericModel::CommAddress; afferent classes: byAttr=[AccessPoint]; +2024-09-08 15:10:02,595 [main] DEBUG Util - (1588) WG10 IEC61850 unknown 61850 <> GenericModel::GenAssociationID; afferent classes: byAttr=[GenTPAA]; +2024-09-08 15:10:02,595 [main] DEBUG Util - (1597) WG10 IEC61850 enumeration <> GenericModel::GenFC; afferent classes: byAttr=[GenDataAttribute, GenFCD, GenFCDA, GenSubDataAttribute]; +2024-09-08 15:10:02,595 [main] DEBUG Util - (1609) WG10 IEC61850 enumeration <> GenericModel::GenPresenceConditions; afferent classes: byAttr=[GenDataAttribute, GenDataObject, GenSubDataAttribute, GenSubDataObject]; +2024-09-08 15:10:02,595 [main] DEBUG Util - (1614) WG10 IEC61850 unknown 61850 <> GenericModel::GenTimeStamp; afferent classes: byAttr=[GenFile]; +2024-09-08 15:10:02,595 [main] DEBUG Util - (1585) WG10 IEC61850 other 61850 GenericModel::AccessPoint, 1 subclasses=[ServiceAccessPoint], 1 attributes, 1 associations; efferent classes: byAttr=[CommAddress]; associated classes (bi-directional): asTarget=[GenericModel::GenIED] +2024-09-08 15:10:02,595 [main] DEBUG Util - (1587) WG10 IEC61850 other 61850 GenericModel::FileSystem, 2 associations; associated classes (bi-directional): asTarget=[GenericModel::GenServer] asSource=[GenericModel::GenFile] +2024-09-08 15:10:02,595 [main] DEBUG Util - (1589) WG10 IEC61850 other 61850 GenericModel::GenAtomicType; afferent classes: byDep=[GenSubDataAttribute, GenDataAttribute]; +2024-09-08 15:10:02,595 [main] DEBUG Util - (1590) WG10 IEC61850 other 61850 GenericModel::GenBOOLEAN; afferent classes: byAttr=[GenDataObject]; +2024-09-08 15:10:02,595 [main] DEBUG Util - (1591) WG10 IEC61850 other 61850 GenericModel::GenCommonDataClass, 1 attributes, 2 associations; afferent classes: byDep=[GenSubDataObject, GenDataObject];; efferent classes: byAttr=[GenObjectName]; associated classes (bi-directional): asSource=[GenericModel::GenDataAttribute, GenericModel::GenSubDataObject] +2024-09-08 15:10:02,595 [main] DEBUG Util - (1592) WG10 IEC61850 other 61850 GenericModel::GenCompactType; afferent classes: byDep=[GenSubDataAttribute, GenDataAttribute]; +2024-09-08 15:10:02,595 [main] DEBUG Util - (1593) WG10 IEC61850 other 61850 GenericModel::GenConstructedType, 1 attributes, 1 associations; afferent classes: byDep=[GenSubDataAttribute, GenDataAttribute];; efferent classes: byAttr=[GenObjectName]; associated classes (bi-directional): asSource=[GenericModel::GenSubDataAttribute] +2024-09-08 15:10:02,595 [main] DEBUG Util - (1594) WG10 IEC61850 other 61850 GenericModel::GenDataAttribute, 6 attributes, 2 associations; efferent classes: byDep=[GenAtomicType, GenCompactType, GenConstructedType] byAttr=[GenObjectName, GenObjRef, GenFC, GenTriggerConditions, GenPresenceConditions, GenINT32U]; associated classes (bi-directional): asTarget=[GenericModel::GenCommonDataClass, GenericModel::GenFCDA] +2024-09-08 15:10:02,595 [main] DEBUG Util - (1595) WG10 IEC61850 other 61850 GenericModel::GenDataObject, 4 attributes, 2 associations; efferent classes: byDep=[GenCommonDataClass] byAttr=[GenObjectName, GenObjRef, GenBOOLEAN, GenPresenceConditions]; associated classes (bi-directional): asTarget=[GenericModel::GenLogicalNode, GenericModel::GenFCD] +2024-09-08 15:10:02,595 [main] DEBUG Util - (1596) WG10 IEC61850 other 61850 GenericModel::GenDataSet, 1 attributes, 2 associations; efferent classes: byAttr=[GenObjectName]; associated classes (bi-directional): asSource=[GenericModel::GenFCD, GenericModel::GenFCDA] +2024-09-08 15:10:02,595 [main] DEBUG Util - (1598) WG10 IEC61850 other 61850 GenericModel::GenFCD, 1 attributes, 3 associations; efferent classes: byAttr=[GenFC]; associated classes (bi-directional): asTarget=[GenericModel::GenDataSet] asSource=[GenericModel::GenDataObject, GenericModel::GenSubDataObject] +2024-09-08 15:10:02,595 [main] DEBUG Util - (1599) WG10 IEC61850 other 61850 GenericModel::GenFCDA, 1 attributes, 3 associations; efferent classes: byAttr=[GenFC]; associated classes (bi-directional): asTarget=[GenericModel::GenDataSet] asSource=[GenericModel::GenDataAttribute, GenericModel::GenSubDataAttribute],1 constraints: class attributes constraint GenericModel::GenFCDA {FCConstraint = [inv]} (null) +2024-09-08 15:10:02,595 [main] DEBUG Util - (1600) WG10 IEC61850 other 61850 GenericModel::GenFile, 3 attributes, 1 associations; efferent classes: byAttr=[GenVisString255, GenINT32U, GenTimeStamp]; associated classes (bi-directional): asTarget=[GenericModel::FileSystem] +2024-09-08 15:10:02,595 [main] DEBUG Util - (1601) WG10 IEC61850 other 61850 GenericModel::GenIED, 1 associations; associated classes (bi-directional): asSource=[GenericModel::AccessPoint] +2024-09-08 15:10:02,595 [main] DEBUG Util - (1602) WG10 IEC61850 other 61850 GenericModel::GenINT32U; afferent classes: byAttr=[GenDataAttribute, GenFile, GenSubDataAttribute, GenSubDataObject]; +2024-09-08 15:10:02,595 [main] DEBUG Util - (1604) WG10 IEC61850 other 61850 GenericModel::GenLogicalDevice, 1 attributes, 4 associations; efferent classes: byAttr=[GenObjectName]; associated classes (bi-directional): asTarget=[GenericModel::GenServer, GenericModel::GenLogicalDevice] asSource=[GenericModel::GenLN0, GenericModel::GenLogicalNode, GenericModel::GenLogicalDevice] +2024-09-08 15:10:02,595 [main] DEBUG Util - (1605) WG10 IEC61850 other 61850 GenericModel::GenLogicalNode, 1 subclasses=[GenLN0], 2 attributes, 2 associations; efferent classes: byAttr=[GenObjectName, GenObjRef]; associated classes (bi-directional): asTarget=[GenericModel::GenLogicalDevice] asSource=[GenericModel::GenDataObject] +2024-09-08 15:10:02,595 [main] DEBUG Util - (1606) WG10 IEC61850 other 61850 GenericModel::GenMCAA, 1 associations; associated classes (bi-directional): asTarget=[GenericModel::GenServer] +2024-09-08 15:10:02,595 [main] DEBUG Util - (1607) WG10 IEC61850 other 61850 GenericModel::GenObjRef; afferent classes: byAttr=[GenDataAttribute, GenDataObject, GenLogicalNode, GenSubDataAttribute, GenSubDataObject]; +2024-09-08 15:10:02,596 [main] DEBUG Util - (1608) WG10 IEC61850 other 61850 GenericModel::GenObjectName; afferent classes: byAttr=[GenCommonDataClass, GenConstructedType, GenDataAttribute, GenDataObject, GenDataSet, GenLogicalDevice, GenLogicalNode, GenSubDataAttribute, GenSubDataObject]; +2024-09-08 15:10:02,596 [main] DEBUG Util - (1610) WG10 IEC61850 other 61850 GenericModel::GenServer, 5 associations; associated classes (bi-directional): asTarget=[GenericModel::ServiceAccessPoint] asSource=[GenericModel::FileSystem, GenericModel::GenLogicalDevice, GenericModel::GenMCAA, GenericModel::GenTPAA] +2024-09-08 15:10:02,596 [main] DEBUG Util - (1611) WG10 IEC61850 other 61850 GenericModel::GenSubDataAttribute, 5 attributes, 2 associations; efferent classes: byDep=[GenAtomicType, GenCompactType, GenConstructedType] byAttr=[GenObjectName, GenObjRef, GenFC, GenPresenceConditions, GenINT32U]; associated classes (bi-directional): asTarget=[GenericModel::GenConstructedType, GenericModel::GenFCDA] +2024-09-08 15:10:02,596 [main] DEBUG Util - (1612) WG10 IEC61850 other 61850 GenericModel::GenSubDataObject, 4 attributes, 2 associations; efferent classes: byDep=[GenCommonDataClass] byAttr=[GenObjectName, GenObjRef, GenPresenceConditions, GenINT32U]; associated classes (bi-directional): asTarget=[GenericModel::GenCommonDataClass, GenericModel::GenFCD] +2024-09-08 15:10:02,596 [main] DEBUG Util - (1613) WG10 IEC61850 other 61850 GenericModel::GenTPAA, 1 attributes, 1 associations; efferent classes: byAttr=[GenAssociationID]; associated classes (bi-directional): asTarget=[GenericModel::GenServer] +2024-09-08 15:10:02,596 [main] DEBUG Util - (1615) WG10 IEC61850 other 61850 GenericModel::GenTriggerConditions; afferent classes: byAttr=[GenDataAttribute]; +2024-09-08 15:10:02,596 [main] DEBUG Util - (1616) WG10 IEC61850 other 61850 GenericModel::GenVisString255; afferent classes: byAttr=[GenFile]; +2024-09-08 15:10:02,596 [main] DEBUG Util - (1547) WG10 IEC61850 other 61850 IEC61850_7_2::IEC61850_7_2Namespace, 5 attributes; efferent classes: byAttr=[NullIEC61850] +2024-09-08 15:10:02,596 [main] DEBUG Util - (1631) WG10 IEC61850 enumeration <> FunctionalConstraints::FcKind, 13 enum literals; afferent classes: byAttr=[FCDReference, FCD, FCDA_BL, FCDA_CF, FCDA_DC, FCDA_EX, FCDA_MX, FCDA_OR, FCDA_SE, FCDA_SG, FCDA_SP, FCDA_ST, FCDA_SV]; +2024-09-08 15:10:02,596 [main] DEBUG Util - (1633) WG10 IEC61850 enumeration <> TriggerOptions::TrgOpKind, 4 enum literals; afferent classes: byAttr=[FCDA_CF_dchg, FCDA_MX_dchg, FCDA_MX_dchg_dupd, FCDA_MX_qchg, FCDA_OR_dchg, FCDA_SE_dchg, FCDA_SG_dchg, FCDA_SP_dchg, FCDA_ST_dchg, FCDA_ST_dchg_dupd, FCDA_ST_dupd, FCDA_ST_qchg]; +2024-09-08 15:10:02,596 [main] DEBUG Util - (1635) WG10 IEC61850 coded enumeration <> ACSIEnums::BsControlKind, 4 attributes; afferent classes: byAttr=[BsControl]; +2024-09-08 15:10:02,596 [main] DEBUG Util - (1636) WG10 IEC61850 coded enumeration <> ACSIEnums::DpStatusKind, 4 attributes; afferent classes: byAttr=[DpStatus]; +2024-09-08 15:10:02,596 [main] DEBUG Util - (1653) WG10 IEC61850 basic <> CoreTypes::P_BOOLEAN; afferent classes: byAttr=[TimeQuality, P_TriggerConditions, BOOLEAN, NonPersistentDS, PersistentDS, FCDA_EX, FCDA_MX, FCDA_OR, FCDA_SE, FCDA_SG, FCDA_ST, Quality, DetailQual]; +2024-09-08 15:10:02,596 [main] DEBUG Util - (1659) WG10 IEC61850 basic <> CoreTypes::P_INT16U; afferent classes: byAttr=[INT16U, MulticastAddress]; +2024-09-08 15:10:02,596 [main] DEBUG Util - (1656) WG10 IEC61850 basic <> CoreTypes::P_INT32; afferent classes: byAttr=[P_TimeStamp, INT32]; +2024-09-08 15:10:02,596 [main] DEBUG Util - (1661) WG10 IEC61850 basic <> CoreTypes::P_INT32U; afferent classes: byAttr=[FCDAReference, INT32U]; +2024-09-08 15:10:02,596 [main] DEBUG Util - (1662) WG10 IEC61850 basic <> CoreTypes::P_FLOAT32; afferent classes: byAttr=[FLOAT32]; +2024-09-08 15:10:02,596 [main] DEBUG Util - (1663) WG10 IEC61850 basic <> CoreTypes::P_UNICODE_STRING255; afferent classes: byAttr=[UNICODE_STRING255]; +2024-09-08 15:10:02,596 [main] DEBUG Util - (1667) WG10 IEC61850 basic <> CoreTypes::P_VISIBLE_STRING255; afferent classes: byAttr=[FCDAReference, VISIBLE_STRING255]; +2024-09-08 15:10:02,596 [main] DEBUG Util - (1668) WG10 IEC61850 basic <> CoreTypes::ObjectName, 1 attributes; afferent classes: byAttr=[LDReference, NonPersistentDSReference, LNReference, CDCReference, CBReference, LOGReference, LNOwnedDSReference, FCDAReference, NamedIEC61850Object];; efferent classes: byAttr=[NullIEC61850] +2024-09-08 15:10:02,596 [main] DEBUG Util - (1669) WG10 IEC61850 abstract class basic <> CoreTypes::P_ObjectReference, 3 subclasses=[FILEReference, LDReference, NonPersistentDSReference], 1 attributes; afferent classes: byAttr=[ObjectReference];; efferent classes: byAttr=[NullIEC61850] +2024-09-08 15:10:02,596 [main] DEBUG Util - (1670) WG10 IEC61850 basic <> CoreTypes::P_PHYCOMADDR; afferent classes: byAttr=[PHYCOMADDR]; +2024-09-08 15:10:02,596 [main] DEBUG Util - (1671) WG10 IEC61850 packed list <> CoreTypes::P_TimeStamp, 3 attributes; afferent classes: byAttr=[TimeStamp];; efferent classes: byAttr=[P_INT32, NullIEC61850, TimeQuality] +2024-09-08 15:10:02,596 [main] DEBUG Util - (1672) WG10 IEC61850 packed list <> CoreTypes::TimeQuality, 4 attributes; afferent classes: byAttr=[P_TimeStamp];; efferent classes: byAttr=[P_BOOLEAN, TimeAccuracyKind] +2024-09-08 15:10:02,596 [main] DEBUG Util - (1673) WG10 IEC61850 coded enumeration <> CoreTypes::TimeAccuracyKind, 7 attributes; afferent classes: byAttr=[TimeQuality]; +2024-09-08 15:10:02,597 [main] DEBUG Util - (1674) WG10 IEC61850 packed list <> CoreTypes::P_TriggerConditions, 5 attributes; afferent classes: byAttr=[TriggerConditions];; efferent classes: byAttr=[P_BOOLEAN] +2024-09-08 15:10:02,597 [main] DEBUG Util - (1699) WG10 IEC61850 enumeration <> ObjectReferences::ServiceFcKind, 8 enum literals; afferent classes: byAttr=[CBReference, LOGReference]; +2024-09-08 15:10:02,597 [main] DEBUG Util - (1714) WG10 IEC61850 enumeration <> AttrValues::AttrValueKind, 19 enum literals; afferent classes: byOp=[AttrValue, AttrDefinition]; +2024-09-08 15:10:02,597 [main] DEBUG Util - (1715) WG10 IEC61850 abstract class other 61850 AttrValues::AttrValue, 1 operations; afferent classes: byAttr=[PrimitiveDA] byOp=[NamedAttrValue];; efferent classes: byOp=[AttrValueKind] +2024-09-08 15:10:02,597 [main] DEBUG Util - (1735) WG10 IEC61850 other 61850 AttrValues::AttrDefinition, 2 operations; efferent classes: byOp=[FCDAReference, AttrValueKind] +2024-09-08 15:10:02,597 [main] DEBUG Util - (1736) WG10 IEC61850 other 61850 AttrValues::NamedAttrValue, 2 operations; efferent classes: byOp=[FCDAReference, AttrValue] +2024-09-08 15:10:02,597 [main] DEBUG Util - (1770) WG10 IEC61850 basic <> CommonAcsiTypes::P_OCTET_STRING; afferent classes: byDep=[MulticastAddress] byAttr=[EntryID]; +2024-09-08 15:10:02,597 [main] DEBUG Util - (1771) WG10 IEC61850 other 61850 CommonAcsiTypes::IPAddress, 1 attributes; afferent classes: byAttr=[SERVER, BRCB, URCB, USVCB];; efferent classes: byAttr=[NullIEC61850] +2024-09-08 15:10:02,597 [main] DEBUG Util - (1772) WG10 IEC61850 other 61850 CommonAcsiTypes::MulticastAddress, 4 attributes; afferent classes: byAttr=[GCB, MSVCB];; efferent classes: byDep=[P_OCTET_STRING] byAttr=[NullIEC61850, P_INT16U] +2024-09-08 15:10:02,597 [main] DEBUG Util - (1773) WG10 IEC61850 other 61850 CommonAcsiTypes::Authentication, 3 operations, 5 associations; efferent classes: byOp=[NullIEC61850, AccessView]; associated classes (bi-directional): asTarget=[MetaModel::MCAA, MetaModel::TPAA] asSource=[CommonAcsiTypes::AccessView, CommonAcsiTypes::ReportID, CommonAcsiTypes::EntryID] +2024-09-08 15:10:02,597 [main] DEBUG Util - (1774) WG10 IEC61850 protected other 61850 CommonAcsiTypes::AccessView, 1 associations; afferent classes: byOp=[Authentication];; associated classes (bi-directional): asTarget=[CommonAcsiTypes::Authentication] +2024-09-08 15:10:02,597 [main] DEBUG Util - (1775) WG10 IEC61850 basic <> CommonAcsiTypes::ReportID, 1 attributes, 1 associations; efferent classes: byAttr=[NullIEC61850]; associated classes (bi-directional): asTarget=[CommonAcsiTypes::Authentication] +2024-09-08 15:10:02,597 [main] DEBUG Util - (1776) WG10 IEC61850 basic <> CommonAcsiTypes::EntryID, 1 attributes, 1 associations; efferent classes: byAttr=[P_OCTET_STRING]; associated classes (bi-directional): asTarget=[CommonAcsiTypes::Authentication] +2024-09-08 15:10:02,597 [main] DEBUG Util - (1777) WG10 IEC61850 basic <> CommonAcsiTypes::EntryTime +2024-09-08 15:10:02,597 [main] DEBUG Util - (1835) WG10 IEC61850 abstract class other 61850 MetaModel::IEC61850Object, 3 subclasses=[HierarchyIEC61850Object, TPAA, MCAA]; afferent classes: byAttr=[HierarchyIEC61850Object]; +2024-09-08 15:10:02,597 [main] DEBUG Util - (1863) WG10 IEC61850 abstract class other 61850 MetaModel::SUBSTITUTION +2024-09-08 15:10:02,597 [main] DEBUG Util - (1875) WG10 IEC61850 abstract class other 61850 MetaModel::CONTROL +2024-09-08 15:10:02,597 [main] DEBUG Util - (1876) WG10 IEC61850 other 61850 MetaModel::TIME +2024-09-08 15:10:02,598 [main] DEBUG Util - (1550) WG10 IEC61850 other 61850 IEC61850_7_3::IEC61850_7_3Namespace, 5 attributes; efferent classes: byAttr=[NullIEC61850] +2024-09-08 15:10:02,598 [main] DEBUG Util - (2011) WG10 IEC61850 presence condition enumeration <> PresenceConditions::PresenceCondition, 30 attributes +2024-09-08 15:10:02,598 [main] DEBUG Util - (2045) WG10 IEC61850 enumeration <> DAEnums::SIUnitKind, 73 enum literals (codes used=[1, 10, 11, 2, 21, 22, 23, 24, 25, 26, 27, 28, 29, 3, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 4, 41, 42, 43, 44, 45, 46, 47, 48, 49, 5, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 6, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 7, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 8, 80, 81, 82, 83, 9]); afferent classes: byAttr=[SIUnit];, tags={scl=SIUnit} +2024-09-08 15:10:02,598 [main] DEBUG Util - (2044) WG10 IEC61850 enumeration <> DAEnums::MultiplierKind, 21 enum literals (codes used=[-1, -12, -15, -18, -2, -21, -24, -3, -6, -9, 0, 1, 12, 15, 18, 2, 21, 24, 3, 6, 9]); afferent classes: byAttr=[Multiplier];, tags={scl=multiplier} +2024-09-08 15:10:02,598 [main] DEBUG Util - (2035) WG10 IEC61850 enumeration <> DAEnums::PhaseFaultDirectionKind, 3 enum literals (codes used=[0, 1, 2]); afferent classes: byAttr=[PhaseFaultDirection]; +2024-09-08 15:10:02,598 [main] DEBUG Util - (2039) WG10 IEC61850 enumeration <> DAEnums::PhaseAngleReferenceKind, 12 enum literals (codes used=[0, 1, 10, 11, 2, 3, 4, 5, 6, 7, 8, 9]); afferent classes: byAttr=[PhaseAngleReference];, tags={scl=angRef, angid} +2024-09-08 15:10:02,598 [main] DEBUG Util - (2086) WG10 IEC61850 coded enumeration <> ConstructedDAs::ValidityKind, 4 attributes; afferent classes: byAttr=[Quality]; +2024-09-08 15:10:02,598 [main] DEBUG Util - (2087) WG10 IEC61850 packed list <> ConstructedDAs::DetailQual, 8 attributes; afferent classes: byAttr=[Quality];; efferent classes: byAttr=[P_BOOLEAN] +2024-09-08 15:10:02,598 [main] DEBUG Util - (2088) WG10 IEC61850 coded enumeration <> ConstructedDAs::SourceKind, 2 attributes; afferent classes: byAttr=[Quality]; +2024-09-08 15:10:02,598 [main] DEBUG Util - (3071) WG10 IEC61850 other 61850 CDCControl::SPC, 1 subclasses=[SPCTransient]; efferent classes: byDep=[ControllableCDC] +2024-09-08 15:10:02,598 [main] DEBUG Util - (1551) WG10 IEC61850 other 61850 IEC61850_7_4::IEC61850_7_4Namespace, 5 attributes; efferent classes: byAttr=[NullIEC61850] +2024-09-08 15:10:02,598 [main] DEBUG Util - (2335) WG10 IEC61850 abbreviation enumeration <> Abbreviations::AbbrTermAny, 8 attributes +2024-09-08 15:10:02,598 [main] DEBUG Util - (2359) WG10 IEC61850 abbreviation enumeration <> Abbreviations::AbbrTermZ, 2 attributes +2024-09-08 15:10:02,598 [main] DEBUG Util - (2368) WG10 IEC61850 function ProtectionEq::BusbarProt; efferent classes: byDep=[PDIF], tags={iecRef=, ieeeRef=87B, rsName=PBDF} +2024-09-08 15:10:02,598 [main] DEBUG Util - (2374) WG10 IEC61850 function ProtectionEq::DirectionalProt; efferent classes: byDep=[RDIR, PDIS], tags={iecRef=, ieeeRef=87B, rsName=PDIR} +2024-09-08 15:10:02,598 [main] DEBUG Util - (2375) WG10 IEC61850 function ProtectionEq::DirectionalPowerProt; efferent classes: byDep=[RDIR], tags={iecRef=P>, ieeeRef=32, rsName=PDPR} +2024-09-08 15:10:02,599 [main] DEBUG Util - (2385) WG10 IEC61850 function ProtectionEq::LineDifferentialProt; efferent classes: byDep=[PDIF], tags={iecRef=, ieeeRef=87L, rsName=PLDF} +2024-09-08 15:10:02,599 [main] DEBUG Util - (2394) WG10 IEC61850 function ProtectionEq::PowerFactorProt, tags={iecRef=cos\u03C6>, cos\u03C6<, ieeeRef=55, rsName=PPFR} +2024-09-08 15:10:02,599 [main] DEBUG Util - (2420) WG10 IEC61850 function ControlEq::AlarmHandler; efferent classes: byDep=[CALH], tags={iecRef=, ieeeRef=, rsName=CALH} +2024-09-08 15:10:02,599 [main] DEBUG Util - (2465) WG10 IEC61850 function MeasurementsAndMetering::ThreePhaseMeasurement; efferent classes: byDep=[MMXU], tags={iecRef=, ieeeRef=, rsName=MMXU} +2024-09-08 15:10:02,599 [main] DEBUG Util - (2475) WG10 IEC61850 function SystemWide::LogicalDeviceData; efferent classes: byDep=[LLN0], tags={iecRef=, ieeeRef=, rsName=LLN0} +2024-09-08 15:10:02,599 [main] DEBUG Util - (2477) WG10 IEC61850 function SystemWide::PhysicalDeviceData; efferent classes: byDep=[LPHD], tags={iecRef=, ieeeRef=, rsName=LPHD} +2024-09-08 15:10:02,599 [main] DEBUG Util - (2487) WG10 IEC61850 function PrimaryEq::AuxiliaryNetwork; efferent classes: byDep=[ZAXN], tags={iecRef=, ieeeRef=, rsName=ZAXN} +2024-09-08 15:10:02,599 [main] DEBUG Util - (2501) WG10 IEC61850 function PrimaryEq::GenericIO; efferent classes: byDep=[GGIO], tags={iecRef=, ieeeRef=, rsName=GGIO} +2024-09-08 15:10:02,599 [main] DEBUG Util - (2568) WG10 IEC61850 enumeration <> DOEnums::HealthKind, 3 enum literals (codes used=[1, 2, 3]); afferent classes: byAttr=[Health];, tags={scl=EEHealth,Health,MechHealth,PhyHealth} +2024-09-08 15:10:02,599 [main] DEBUG Util - (2564) WG10 IEC61850 enumeration <> DOEnums::BehaviourModeKind, 5 enum literals (codes used=[1, 2, 3, 4, 5]); afferent classes: byAttr=[BehaviourMode];, tags={scl=Beh,Mod} +2024-09-08 15:10:02,599 [main] DEBUG Util - (2567) WG10 IEC61850 enumeration <> DOEnums::CalcMethodKind, 10 enum literals (codes used=[1, 10, 2, 3, 4, 5, 6, 7, 8, 9]); afferent classes: byAttr=[CalcMethod];, tags={scl=ClcMth} +2024-09-08 15:10:02,599 [main] DEBUG Util - (3090) WG10 IEC61850 enumeration <> DOEnums::BaseKind, 1 subclasses=[ExtBaseKind], 3 enum literals +2024-09-08 15:10:02,599 [main] DEBUG Util - (2671) WG10 IEC61850 other 61850 DerivedCDCs::ACTTransient; afferent classes: byAttr=[PDIF, PDIS]; +2024-09-08 15:10:02,599 [main] DEBUG Util - (2721) WG10 IEC61850 other 61850 DerivedCDCs::SPSTransient; afferent classes: byAttr=[StatisticsLN, LPHD, RDIR]; +2024-09-08 15:10:02,599 [main] DEBUG Util - (3070) WG17 IEC61850 other 61850 WG17::WG17UMLVersion, 2 attributes; efferent classes: byAttr=[NullIEC61850] +2024-09-08 15:10:02,599 [main] DEBUG Util - (3067) WG17 IEC61850 other 61850 IEC51850_7_420::IEC61850_7_420Namespace, 5 attributes; efferent classes: byAttr=[NullIEC61850] +2024-09-08 15:10:02,599 [main] DEBUG Util - (3053) WG17 IEC61850 enumeration <> DOEnums_7_420::MaterialKind, 3 enum literals (codes used=[1, 2, 3]); afferent classes: byAttr=[Material]; +2024-09-08 15:10:02,599 [main] DEBUG Util - (3087) WG17 IEC61850 enumeration <> DOEnums_7_420::MaterialTransitionKind, 3 enum literals; afferent classes: byAttr=[Material_control]; +2024-09-08 15:10:02,599 [main] DEBUG Util - (3054) WG17 IEC61850 enumeration <> DOEnums_7_420::OtherKind, 3 enum literals (codes used=[1, 2, 3]); afferent classes: byAttr=[Other]; +2024-09-08 15:10:02,599 [main] DEBUG Util - (3026) WG18 IEC61850 abbreviation enumeration <> Abbreviations_410::AbbrTermA, 3 attributes +2024-09-08 15:10:02,599 [main] DEBUG Util - (3077) OTHER_CIM CIM root class <> MyCimExtensions::DFD_External1 +2024-09-08 15:10:02,599 [main] DEBUG Util - (3078) OTHER_CIM CIM root class <> MyCimExtensions::DFD_DataStore1 +2024-09-08 15:10:02,599 [main] DEBUG Util - (1489) OTHER_CIM CIM root class Ext1::Fruit, 3 subclasses=[Pear, Apple, Strawberry], 2 associations; associated classes (bi-directional): asTarget=[Ext2::Animal, Ext2::Animal] +2024-09-08 15:10:02,599 [main] DEBUG Util - (3034) OTHER_CIM CIM enumeration <> Ext1::FruitBinKind, 3 enum literals +2024-09-08 15:10:02,599 [main] DEBUG Util - (3036) OTHER_CIM CIM root class Ext1::Village, 1 associations; associated classes (bi-directional): asSource=[Ext1::Strawberry] +2024-09-08 15:10:02,599 [main] DEBUG Util - (1542) OTHER_CIM CIM root class Package with space::My class, 1 attributes, 1 operations, 1 associations; efferent classes: byAttr=[AbsoluteDateTime]; associated classes (bi-directional): asSource=[Package with space::Other-with_invalid name] +2024-09-08 15:10:02,599 [main] DEBUG Util - (1543) OTHER_CIM CIM root class Package with space::Other-with_invalid name, 1 associations; associated classes (bi-directional): asTarget=[Package with space::My class] +2024-09-08 15:10:02,599 [main] DEBUG Util - (1491) OTHER_IEC61850 IEC61850 other 61850 Ext2::Animal, 2 subclasses=[Dog, Horse], 2 associations; associated classes (bi-directional): asSource=[Ext1::Fruit, Ext1::Fruit] +2024-09-08 15:10:02,600 [main] DEBUG Util - (797) WG13 CIM class <> Topology::BusNameMarker, 2 superclasses=[IdentifiedObject, InfClass2], 4 attributes, 1 associations; efferent classes: byAttr=[Integer]; associated classes (bi-directional): asSource=[Topology::ConnectivityNode],4 constraints: class attributes constraint Topology::BusNameMarker {C2_1 = [constrained1, constrained2]} class attributes constraint Topology::BusNameMarker {C2_2 = [constrained3, constrained4]} class attributes constraint Topology::BusNameMarker {C2_3 = [constrained1, constrained4]} class attributes constraint Topology::BusNameMarker {EMPTY = []} +2024-09-08 15:10:02,600 [main] DEBUG Util - (853) WG13 CIM class Core::Terminal, 1 superclasses=[IdentifiedObject], 1 subclasses=[DumbSubterminal], 2 attributes, 4 associations; efferent classes: byAttr=[Boolean, Integer]; associated classes (bi-directional): asTarget=[Core::PowerSystemResource] asSource=[Core::ConductingEquipment, Topology::ConnectivityNode, Topology::TopologicalNode], tags={dummyCimTag=on terminal} +2024-09-08 15:10:02,600 [main] DEBUG Util - (3080) WG13 CIM class Topology::DumbSubterminal, 1 superclasses=[Terminal] +2024-09-08 15:10:02,600 [main] DEBUG Util - (855) WG13 CIM class Core::BaseVoltage, 2 superclasses=[IdentifiedObject, BadDatatypes], 4 attributes, 3 associations; efferent classes: byAttr=[Boolean, Voltage]; associated classes (bi-directional): asTarget=[Core::VoltageLevel, Topology::TopologicalNode] asSource=[Core::ConductingEquipment] +2024-09-08 15:10:02,600 [main] DEBUG Util - (867) WG13 CIM class Core::BasePower, 1 superclasses=[IdentifiedObject], 1 attributes; efferent classes: byAttr=[ApparentPower] +2024-09-08 15:10:02,600 [main] DEBUG Util - (875) WG13 CIM class Core::SubGeographicalRegion, 1 superclasses=[IdentifiedObject], 2 associations; associated classes (bi-directional): asTarget=[Core::geographicalRegion] asSource=[Core::Substation] +2024-09-08 15:10:02,600 [main] DEBUG Util - (883) WG13 CIM class Core::geographicalRegion, 1 superclasses=[IdentifiedObject], 1 associations; associated classes (bi-directional): asSource=[Core::SubGeographicalRegion] +2024-09-08 15:10:02,600 [main] DEBUG Util - (850) WG13 CIM compound <> Core::OperatingParticipant, 1 superclasses=[IdentifiedObject], 1 associations; associated classes (bi-directional): asTarget=[Core::OperatingShare], tags={dummyCimTag=value} +2024-09-08 15:10:02,600 [main] DEBUG Util - (849) WG13 CIM class Core::PowerSystemResource, 1 superclasses=[IdentifiedObject], 2 subclasses=[ConnectivityNodeContainer, Equipment], 1 attributes, 4 operations, 1 diagrams, 3 associations; efferent classes: byAttr=[String] byOp=[NullCIM]; associated classes (bi-directional): asTarget=[Core::OperatingShare, Assets::AssetInfo] asSource=[Core::Terminal],3 constraints: class attributes constraint Core::PowerSystemResource {R.1.2.3 PSR process constraint = [Here the text for process constraint.]} class attributes constraint Core::PowerSystemResource {ruleAsInQoCDC = [text only]} class attributes constraint Core::PowerSystemResource {anotherOclRule = [{ocl]} +2024-09-08 15:10:02,600 [main] DEBUG Util - (871) WG13 CIM class Core::ConnectivityNodeContainer, 1 superclasses=[PowerSystemResource], 1 subclasses=[EquipmentContainer], 2 associations; associated classes (bi-directional): asTarget=[Topology::ConnectivityNode, Topology::TopologicalNode] +2024-09-08 15:10:02,600 [main] DEBUG Util - (1490) OTHER_CIM CIM class <> Ext1::Pear, 1 superclasses=[Fruit], 1 subclasses=[EquipmentContainer], 1 attributes, 2 associations; efferent classes: byAttr=[SomeSimpleType]; associated classes (bi-directional): asSource=[Ext1::Apple, Ext1::Apple] +2024-09-08 15:10:02,600 [main] DEBUG Util - (881) WG13 CIM class Core::EquipmentContainer, 2 superclasses=[ConnectivityNodeContainer, Pear], 3 subclasses=[Bay, Substation, VoltageLevel], 1 associations; associated classes (bi-directional): asSource=[Core::Equipment] +2024-09-08 15:10:02,600 [main] DEBUG Util - (860) WG13 CIM class Core::Bay, 1 superclasses=[EquipmentContainer], 6 attributes, 2 associations; afferent classes: byAttr=[HasIllegalTypeForAttr];; efferent classes: byAttr=[Boolean, BreakerConfiguration, BusbarConfiguration, YesNo]; associated classes (bi-directional): asTarget=[Core::VoltageLevel] asSource=[Core::Substation] +2024-09-08 15:10:02,600 [main] DEBUG Util - (877) WG13 CIM class Core::Substation, 1 superclasses=[EquipmentContainer], 3 associations; associated classes (bi-directional): asTarget=[Core::Bay, Core::SubGeographicalRegion] asSource=[Core::VoltageLevel] +2024-09-08 15:10:02,600 [main] DEBUG Util - (870) WG13 CIM class Core::VoltageLevel, 1 superclasses=[EquipmentContainer], 2 attributes, 1 operations, 3 associations; efferent classes: byAttr=[Voltage] byOp=[Voltage]; associated classes (bi-directional): asTarget=[Core::Substation] asSource=[Core::BaseVoltage, Core::Bay] +2024-09-08 15:10:02,600 [main] DEBUG Util - (882) WG13 CIM class Core::Equipment, 1 superclasses=[PowerSystemResource], 1 subclasses=[ConductingEquipment], 1 attributes, 1 associations; efferent classes: byAttr=[Boolean]; associated classes (bi-directional): asTarget=[Core::EquipmentContainer] +2024-09-08 15:10:02,600 [main] DEBUG Util - (864) WG13 CIM class Core::ConductingEquipment, 1 superclasses=[Equipment], 1 attributes, 2 associations; efferent classes: byAttr=[PhaseCode]; associated classes (bi-directional): asTarget=[Core::BaseVoltage, Core::Terminal] +2024-09-08 15:10:02,600 [main] DEBUG Util - (796) WG13 CIM class Topology::ConnectivityNode, 1 superclasses=[IdentifiedObject], 4 associations; associated classes (bi-directional): asTarget=[Core::Terminal, Topology::BusNameMarker] asSource=[Core::ConnectivityNodeContainer, Topology::TopologicalNode] +2024-09-08 15:10:02,600 [main] DEBUG Util - (794) WG13 CIM class Topology::TopologicalIsland, 1 superclasses=[IdentifiedObject], 2 attributes, 2 associations; efferent classes: byAttr=[Integer]; associated classes (bi-directional): asTarget=[Topology::TopologicalNode] asSource=[Topology::TopologicalNode],1 constraints: class attributes constraint Topology::TopologicalIsland {PICS_SUBST = [constrained5]} +2024-09-08 15:10:02,600 [main] DEBUG Util - (795) WG13 CIM class Topology::TopologicalNode, 1 superclasses=[IdentifiedObject], 6 associations; associated classes (bi-directional): asTarget=[Core::Terminal, Topology::ConnectivityNode, Topology::TopologicalIsland] asSource=[Core::BaseVoltage, Core::ConnectivityNodeContainer, Topology::TopologicalIsland] +2024-09-08 15:10:02,600 [main] DEBUG Util - (1454) WG14 CIM abstract class class <> Other::MyClass, 1 superclasses=[BadDatatypes], 1 subclasses=[AttrDuplication], 3 attributes, 2 associations; afferent classes: byDep=[BadDatatypes];; efferent classes: byAttr=[Float, Boolean, NullCIM]; associated classes (bi-directional): asTarget=[Other::BadDatatypes, Other::MyClass] asSource=[Other::MyClass] +2024-09-08 15:10:02,600 [main] DEBUG Util - (1482) WG14 CIM class Other::AttrDuplication, 1 superclasses=[MyClass], 2 attributes, 3 associations; efferent classes: byAttr=[NullCIM, Boolean]; associated classes (bi-directional): asTarget=[Other::AttrDuplication, Other::AttrDuplication] asSource=[Other::BadDatatypes, Other::AttrDuplication, Other::AttrDuplication] +2024-09-08 15:10:02,600 [main] DEBUG Util - (1617) WG10 IEC61850 other 61850 GenericModel::ServiceAccessPoint, 1 superclasses=[AccessPoint], 1 associations; associated classes (bi-directional): asSource=[GenericModel::GenServer] +2024-09-08 15:10:02,600 [main] DEBUG Util - (1603) WG10 IEC61850 other 61850 GenericModel::GenLN0, 1 superclasses=[GenLogicalNode], 1 associations; associated classes (bi-directional): asTarget=[GenericModel::GenLogicalDevice],1 constraints: class attributes constraint GenericModel::GenLN0 {inv: self.LNName = "LLN0" = []} (null) +2024-09-08 15:10:02,600 [main] DEBUG Util - (1693) WG10 IEC61850 other 61850 ObjectReferences::FILEReference, 1 superclasses=[P_ObjectReference], 2 attributes; afferent classes: byAttr=[FILE];; efferent classes: byAttr=[NullIEC61850] +2024-09-08 15:10:02,600 [main] DEBUG Util - (1694) WG10 IEC61850 other 61850 ObjectReferences::LDReference, 1 superclasses=[P_ObjectReference], 1 subclasses=[LNReference], 2 attributes; afferent classes: byAttr=[LD];; efferent classes: byAttr=[NullIEC61850, ObjectName] +2024-09-08 15:10:02,600 [main] DEBUG Util - (1696) WG10 IEC61850 other 61850 ObjectReferences::LNReference, 1 superclasses=[LDReference], 4 subclasses=[CDCReference, CBReference, LOGReference, LNOwnedDSReference], 2 attributes; afferent classes: byAttr=[LN];; efferent classes: byAttr=[NullIEC61850, ObjectName] +2024-09-08 15:10:02,601 [main] DEBUG Util - (1697) WG10 IEC61850 other 61850 ObjectReferences::CDCReference, 1 superclasses=[LNReference], 1 subclasses=[FCDReference], 3 attributes; afferent classes: byAttr=[CDC];; efferent classes: byAttr=[NullIEC61850, ObjectName] +2024-09-08 15:10:02,601 [main] DEBUG Util - (1702) WG10 IEC61850 other 61850 ObjectReferences::FCDReference, 1 superclasses=[CDCReference], 1 subclasses=[FCDAReference], 3 attributes; afferent classes: byAttr=[FCD];; efferent classes: byAttr=[NullIEC61850, FcKind] +2024-09-08 15:10:02,601 [main] DEBUG Util - (1703) WG10 IEC61850 other 61850 ObjectReferences::FCDAReference, 1 superclasses=[FCDReference], 4 attributes; afferent classes: byAttr=[FCDA, DA] byOp=[AttrDefinition, NamedAttrValue];; efferent classes: byAttr=[NullIEC61850, P_VISIBLE_STRING255, ObjectName, P_INT32U] +2024-09-08 15:10:02,601 [main] DEBUG Util - (1698) WG10 IEC61850 other 61850 ObjectReferences::CBReference, 1 superclasses=[LNReference], 3 attributes; afferent classes: byAttr=[ControlBlock];; efferent classes: byAttr=[NullIEC61850, ObjectName, ServiceFcKind] +2024-09-08 15:10:02,601 [main] DEBUG Util - (1700) WG10 IEC61850 other 61850 ObjectReferences::LOGReference, 1 superclasses=[LNReference], 3 attributes; afferent classes: byAttr=[LOG];; efferent classes: byAttr=[NullIEC61850, ObjectName, ServiceFcKind] +2024-09-08 15:10:02,601 [main] DEBUG Util - (1701) WG10 IEC61850 other 61850 ObjectReferences::LNOwnedDSReference, 1 superclasses=[LNReference], 2 attributes; afferent classes: byAttr=[LNOwnedDS];; efferent classes: byAttr=[NullIEC61850, ObjectName] +2024-09-08 15:10:02,601 [main] DEBUG Util - (1695) WG10 IEC61850 other 61850 ObjectReferences::NonPersistentDSReference, 1 superclasses=[P_ObjectReference], 2 attributes; afferent classes: byAttr=[NonPersistentDS];; efferent classes: byAttr=[NullIEC61850, ObjectName] +2024-09-08 15:10:02,601 [main] DEBUG Util - (1836) WG10 IEC61850 abstract class other 61850 MetaModel::HierarchyIEC61850Object, 1 superclasses=[IEC61850Object], 5 subclasses=[NamedIEC61850Object, IED, SERVER, FCD, FILE], 1 attributes; efferent classes: byAttr=[IEC61850Object] +2024-09-08 15:10:02,601 [main] DEBUG Util - (1837) WG10 IEC61850 abstract class other 61850 MetaModel::NamedIEC61850Object, 1 superclasses=[HierarchyIEC61850Object], 8 subclasses=[LD, LN, CDC, FCDA, DA, DS, ControlBlock, LOG], 1 attributes; efferent classes: byAttr=[ObjectName] +2024-09-08 15:10:02,601 [main] DEBUG Util - (1842) WG10 IEC61850 other 61850 MetaModel::LD, 1 superclasses=[NamedIEC61850Object], 1 attributes, 4 associations; efferent classes: byAttr=[LDReference]; associated classes (bi-directional): asTarget=[MetaModel::SERVER] asSource=[MetaModel::LNDOM, MetaModel::LN0, MetaModel::LNPHD] +2024-09-08 15:10:02,601 [main] DEBUG Util - (1843) WG10 IEC61850 abstract class LN MetaModel::LN, 1 superclasses=[NamedIEC61850Object], 3 subclasses=[LNPHD, LN0, LNDOM], 1 attributes, 6 associations; efferent classes: byAttr=[LNReference]; associated classes (bi-directional): asSource=[MetaModel::CDC, MetaModel::LNOwnedDS, MetaModel::LOG, MetaModel::LCB, MetaModel::URCB, MetaModel::BRCB] +2024-09-08 15:10:02,601 [main] DEBUG Util - (1844) WG10 IEC61850 abstract class LN MetaModel::LNPHD, 1 superclasses=[LN], 1 subclasses=[LPHD], 1 associations; associated classes (bi-directional): asTarget=[MetaModel::LD] +2024-09-08 15:10:02,601 [main] DEBUG Util - (2764) WG10 IEC61850 LN LNGroupL::LPHD, 1 superclasses=[LNPHD], 3 attributes; afferent classes: byDep=[PhysicalDeviceData];; efferent classes: byAttr=[ENSHealth, SPCTransient, SPSTransient],2 constraints: class attributes constraint LNGroupL::LPHD {MF(2) = [RsstatAlmMthClc]} (MF(condID))class attributes constraint LNGroupL::LPHD {MOcond(1) = [PhyHealth]} (MOcond(condID)) +2024-09-08 15:10:02,601 [main] DEBUG Util - (1845) WG10 IEC61850 abstract class LN MetaModel::LN0, 1 superclasses=[LN], 1 subclasses=[LLN0], 5 associations; associated classes (bi-directional): asTarget=[MetaModel::LD] asSource=[MetaModel::USVCB, MetaModel::GCB, MetaModel::MSVCB, MetaModel::SGCB] +2024-09-08 15:10:02,601 [main] DEBUG Util - (2765) WG10 IEC61850 LN LNGroupL::LLN0, 1 superclasses=[LN0], 3 attributes; afferent classes: byDep=[LogicalDeviceData];; efferent classes: byAttr=[LPL, ENSBehaviourMode, ENSHealth],3 constraints: class attributes constraint LNGroupL::LLN0 {MOcond(1) = [NamPlt, Beh]} (MOcond(condID))class attributes constraint LNGroupL::LLN0 {MOrootLD = [Mod, Health, NamPlt]} (MOrootLD)class attributes constraint LNGroupL::LLN0 {Omulti = [InRef]} (Omulti) +2024-09-08 15:10:02,601 [main] DEBUG Util - (1846) WG10 IEC61850 abstract class LN MetaModel::LNDOM, 1 superclasses=[LN], 1 subclasses=[DomainLN], 1 associations; associated classes (bi-directional): asTarget=[MetaModel::LD] +2024-09-08 15:10:02,601 [main] DEBUG Util - (2728) WG10 IEC61850 abstract class LN <> LogicalNodes::DomainLN, 1 superclasses=[LNDOM], 6 subclasses=[StatisticsLN, EquipmentInterfaceLN, KXYZ, CALH, ProtectionLN, RDIR], 4 attributes, 1 diagrams; efferent classes: byAttr=[LPL, ENSHealth, ENCBehaviourMode, CMV],1 constraints: class attributes constraint LogicalNodes::DomainLN {MOcond(1) = [CntRs]} (MOcond(condID)) +2024-09-08 15:10:02,601 [main] DEBUG Util - (2735) WG10 IEC61850 abstract class LN <> LogicalNodes::StatisticsLN, 1 superclasses=[DomainLN], 2 subclasses=[GGIO, MMXU], 2 attributes; efferent classes: byAttr=[SPSTransient, ENGCalcMethod],1 constraints: class attributes constraint LogicalNodes::StatisticsLN {MF(ClcMth) = [ClcExp, ClcMod, ClcIntvPer, ClcIntvTyp]} (MF(sibling)) +2024-09-08 15:10:02,601 [main] DEBUG Util - (2815) WG10 IEC61850 LN LNGroupG::GGIO, 1 superclasses=[StatisticsLN], 3 attributes; afferent classes: byDep=[GenericIO];; efferent classes: byAttr=[ENSHealth, CMV, NullIEC61850],1 constraints: class attributes constraint LNGroupG::GGIO {Omulti = [AnIn, AnOut, DPCSO]} (Omulti) +2024-09-08 15:10:02,601 [main] DEBUG Util - (2856) WG10 IEC61850 LN LNGroupM::MMXU, 1 superclasses=[StatisticsLN], 3 attributes; afferent classes: byDep=[ThreePhaseMeasurement];; efferent classes: byAttr=[HWYE, CMV, HST],1 constraints: class attributes constraint LNGroupM::MMXU {MO(1) = [TotW]} (MOcond(condID)) +2024-09-08 15:10:02,601 [main] DEBUG Util - (2736) WG10 IEC61850 abstract class LN LogicalNodes::EquipmentInterfaceLN, 1 superclasses=[DomainLN], 1 subclasses=[ZAXN], 1 attributes; efferent classes: byAttr=[ENSHealth] +2024-09-08 15:10:02,601 [main] DEBUG Util - (3021) WG10 IEC61850 LN LNGroupZ::ZAXN, 1 superclasses=[EquipmentInterfaceLN], 5 attributes; afferent classes: byDep=[AuxiliaryNetwork];; efferent classes: byAttr=[CMV, NullIEC61850, ENSMaterial, ENCMaterial, ENSOther],2 constraints: class attributes constraint LNGroupZ::ZAXN {MOcond(condID) = [Vol]} (MOcond(condID))class attributes constraint LNGroupZ::ZAXN {AtLeastOne(n) = [Amp]} (AtLeastOne(n)) +2024-09-08 15:10:02,601 [main] DEBUG Util - (3030) WG10 IEC61850 LN LNGroupL::KXYZ, 1 superclasses=[DomainLN], 4 attributes; efferent classes: byAttr=[CMV, ENS, ENSEnumDA],1 constraints: class attributes constraint LNGroupL::KXYZ {MOcond(2) = [TotW]} (MOcond(condID)) +2024-09-08 15:10:02,601 [main] DEBUG Util - (2788) WG10 IEC61850 LN LNGroupC::CALH, 1 superclasses=[DomainLN], 3 attributes; afferent classes: byDep=[AlarmHandler];; efferent classes: byAttr=[DPS, EXYBehaviourMode],2 constraints: class attributes constraint LNGroupC::CALH {AtLeastOne(1) = [GrAlm, GrWrn, GrInd]} (AtLeastOne(n))class attributes constraint LNGroupC::CALH {AtLeastOne(2) = [CntRs]} (AtLeastOne(n)) +2024-09-08 15:10:02,601 [main] DEBUG Util - (2872) WG10 IEC61850 abstract class LN LNGroupP::ProtectionLN, 1 superclasses=[DomainLN], 3 subclasses=[PDIF, PDIS, PDF2], 1 attributes; efferent classes: byAttr=[NullIEC61850] +2024-09-08 15:10:02,601 [main] DEBUG Util - (2881) WG10 IEC61850 LN LNGroupP::PDIF, 1 superclasses=[ProtectionLN], 2 attributes; afferent classes: byDep=[BusbarProt, LineDifferentialProt];; efferent classes: byAttr=[ACD, ACTTransient],2 constraints: class attributes constraint LNGroupP::PDIF {AtMostOne = [LoSet, HiSet]} (AtMostOne)class attributes constraint LNGroupP::PDIF {OmultiRange(33, 48) = [Str]} (OmultiRange(min, max)) +2024-09-08 15:10:02,601 [main] DEBUG Util - (2883) WG10 IEC61850 LN LNGroupP::PDIS, 1 superclasses=[ProtectionLN], 1 subclasses=[PDISExt], 2 attributes, 1 diagrams; afferent classes: byDep=[DirectionalProt];; efferent classes: byDep=[RDIR] byAttr=[ACD, ACTTransient] +2024-09-08 15:10:02,601 [main] DEBUG Util - (3041) WG10 IEC61850 LN LNGroupP::PDISExt, 1 superclasses=[PDIS] +2024-09-08 15:10:02,601 [main] DEBUG Util - (3042) WG10 IEC61850 LN LNGroupP::PDF2, 1 superclasses=[ProtectionLN] +2024-09-08 15:10:02,601 [main] DEBUG Util - (2938) WG10 IEC61850 LN LNGroupR::RDIR, 1 superclasses=[DomainLN], 2 attributes; afferent classes: byDep=[DirectionalProt, DirectionalPowerProt, PDIS];; efferent classes: byAttr=[ACD, SPSTransient] +2024-09-08 15:10:02,601 [main] DEBUG Util - (1847) WG10 IEC61850 abstract class other 61850 MetaModel::CDC, 1 superclasses=[NamedIEC61850Object], 2 subclasses=[PrimitiveCDC, ComposedCDC], 1 attributes, 3 associations; efferent classes: byAttr=[CDCReference]; associated classes (bi-directional): asTarget=[MetaModel::LN] asSource=[MetaModel::FCDA, MetaModel::FCD] +2024-09-08 15:10:02,601 [main] DEBUG Util - (1848) WG10 IEC61850 abstract class primitive CDC MetaModel::PrimitiveCDC, 1 superclasses=[CDC], 1 subclasses=[BasePrimitiveCDC], 2 associations; associated classes (bi-directional): asTarget=[MetaModel::ComposedCDC] asSource=[MetaModel::PrimitiveDA] +2024-09-08 15:10:02,602 [main] DEBUG Util - (2234) WG10 IEC61850 abstract class primitive CDC CommonDataClasses::BasePrimitiveCDC, 1 superclasses=[PrimitiveCDC], 7 subclasses=[CST, SubstitutionCDC, EXY, ACD, HST, ENG, LPL], 2 attributes; efferent classes: byAttr=[UNICODE_STRING255_DC, VISIBLE_STRING255_EX],2 constraints: class attributes constraint CommonDataClasses::BasePrimitiveCDC {MOcdcNs = [cdcNs, cdcName]} (MOcdcNs)class attributes constraint CommonDataClasses::BasePrimitiveCDC {MOdataNs = [dataNs]} (MOdataNs) +2024-09-08 15:10:02,602 [main] DEBUG Util - (1995) WG10 IEC61850 abstract class primitive CDC CDCServiceTracking::CST, 1 superclasses=[BasePrimitiveCDC], 9 subclasses=[BTS, CTS, GTS, LTS, MTS, NTS, OTS, STS, UTS] +2024-09-08 15:10:02,602 [main] DEBUG Util - (1996) WG10 IEC61850 primitive CDC CDCServiceTracking::BTS, 1 superclasses=[CST] +2024-09-08 15:10:02,602 [main] DEBUG Util - (1997) WG10 IEC61850 control tracking CDC CDCServiceTracking::CTS, 1 superclasses=[CST] +2024-09-08 15:10:02,602 [main] DEBUG Util - (1998) WG10 IEC61850 primitive CDC CDCServiceTracking::GTS, 1 superclasses=[CST] +2024-09-08 15:10:02,602 [main] DEBUG Util - (1999) WG10 IEC61850 primitive CDC CDCServiceTracking::LTS, 1 superclasses=[CST] +2024-09-08 15:10:02,602 [main] DEBUG Util - (2000) WG10 IEC61850 primitive CDC CDCServiceTracking::MTS, 1 superclasses=[CST] +2024-09-08 15:10:02,602 [main] DEBUG Util - (2001) WG10 IEC61850 primitive CDC CDCServiceTracking::NTS, 1 superclasses=[CST] +2024-09-08 15:10:02,602 [main] DEBUG Util - (2002) WG10 IEC61850 primitive CDC CDCServiceTracking::OTS, 1 superclasses=[CST] +2024-09-08 15:10:02,602 [main] DEBUG Util - (2003) WG10 IEC61850 primitive CDC CDCServiceTracking::STS, 1 superclasses=[CST] +2024-09-08 15:10:02,602 [main] DEBUG Util - (2004) WG10 IEC61850 primitive CDC CDCServiceTracking::UTS, 1 superclasses=[CST] +2024-09-08 15:10:02,602 [main] DEBUG Util - (2236) WG10 IEC61850 abstract class primitive CDC CommonDataClasses::SubstitutionCDC, 1 superclasses=[BasePrimitiveCDC], 4 subclasses=[DPS, ENS, CMV, ControllableCDC], 3 attributes, 1 diagrams; efferent classes: byAttr=[BOOLEAN_SV, Quality_SV, BOOLEAN_BL],1 constraints: class attributes constraint CommonDataClasses::SubstitutionCDC {MFsubst = [subEna, subQ, subID]} (MFsubst) +2024-09-08 15:10:02,602 [main] DEBUG Util - (2248) WG10 IEC61850 primitive CDC CDCStatusInfo::DPS, 1 superclasses=[SubstitutionCDC], 4 attributes; afferent classes: byAttr=[CALH];; efferent classes: byAttr=[DpStatus_ST_dchg, Quality_ST_qchg, TimeStamp_ST, DpStatus_SV],1 constraints: class attributes constraint CDCStatusInfo::DPS {MFsubst = [subVal]} (MFsubst) +2024-09-08 15:10:02,602 [main] DEBUG Util - (2250) WG10 IEC61850 abstract class enumeration CDC CDCStatusInfo::ENS, 1 superclasses=[SubstitutionCDC], 5 subclasses=[ENSBehaviourMode, ENSHealth, ENSEnumDA, ENSMaterial, ENSOther], 4 attributes; afferent classes: byAttr=[KXYZ];; efferent classes: byAttr=[EnumDA_ST_dchg_dupd, Quality_ST_qchg, TimeStamp_ST, EnumDA_SV],1 constraints: class attributes constraint CDCStatusInfo::ENS {MFsubst = [subVal]} (MFsubst) +2024-09-08 15:10:02,602 [main] DEBUG Util - (2707) WG10 IEC61850 enumeration CDC DerivedCDCs::ENSBehaviourMode, 1 superclasses=[ENS]; afferent classes: byAttr=[LLN0]; +2024-09-08 15:10:02,602 [main] DEBUG Util - (2712) WG10 IEC61850 enumeration CDC DerivedCDCs::ENSHealth, 1 superclasses=[ENS]; afferent classes: byAttr=[DomainLN, EquipmentInterfaceLN, LPHD, LLN0, GGIO]; +2024-09-08 15:10:02,602 [main] DEBUG Util - (3073) WG10 IEC61850 abstract class enumeration CDC DerivedCDCs::ENSEnumDA, 1 superclasses=[ENS]; afferent classes: byAttr=[KXYZ]; +2024-09-08 15:10:02,602 [main] DEBUG Util - (3060) WG17 IEC61850 enumeration CDC DerivedCDCs_7_420::ENSMaterial, 1 superclasses=[ENS]; afferent classes: byAttr=[ZAXN]; +2024-09-08 15:10:02,602 [main] DEBUG Util - (3062) WG17 IEC61850 enumeration CDC DerivedCDCs_7_420::ENSOther, 1 superclasses=[ENS]; afferent classes: byAttr=[ZAXN]; +2024-09-08 15:10:02,602 [main] DEBUG Util - (2266) WG10 IEC61850 primitive CDC <> CDCAnalogueInfo::CMV, 1 superclasses=[SubstitutionCDC], 4 attributes; afferent classes: byAttr=[HWYE, DomainLN, KXYZ, GGIO, MMXU, ZAXN];; efferent classes: byAttr=[NullIEC61850, RangeConfig_CF_dchg],5 constraints: class attributes constraint CDCAnalogueInfo::CMV {MF(range) = [rangeC]} (MF(sibling))class attributes constraint CDCAnalogueInfo::CMV {MF(rangeAng) = [rangeAngC]} (MF(sibling))class attributes constraint CDCAnalogueInfo::CMV {MFscaledAngV = [angSVC]} (MFscaledAngV)class attributes constraint CDCAnalogueInfo::CMV {MFscaledMagV = [magSVC]} (MFscaledMagV)class attributes constraint CDCAnalogueInfo::CMV {MFsubst = [subCVal]} (MFsubst) +2024-09-08 15:10:02,602 [main] DEBUG Util - (2278) WG10 IEC61850 abstract class primitive CDC CDCControl::ControllableCDC, 1 superclasses=[SubstitutionCDC], 2 subclasses=[ENC, BAC], 1 attributes, 1 diagrams; afferent classes: byDep=[SPC];; efferent classes: byAttr=[BOOLEAN_OR_dchg] +2024-09-08 15:10:02,602 [main] DEBUG Util - (2283) WG10 IEC61850 abstract class enumeration CDC CDCControl::ENC, 1 superclasses=[ControllableCDC], 2 subclasses=[ENCBehaviourMode, ENCMaterial], 3 attributes; efferent classes: byAttr=[EnumDA_ST_dchg, EnumDA_SV, EnumDA],1 constraints: class attributes constraint CDCControl::ENC {MFsubst = [subVal]} (MFsubst) +2024-09-08 15:10:02,602 [main] DEBUG Util - (2673) WG10 IEC61850 enumeration CDC DerivedCDCs::ENCBehaviourMode, 1 superclasses=[ENC]; afferent classes: byAttr=[DomainLN]; +2024-09-08 15:10:02,602 [main] DEBUG Util - (3059) WG17 IEC61850 enumeration CDC DerivedCDCs_7_420::ENCMaterial, 1 superclasses=[ENC]; afferent classes: byAttr=[ZAXN]; +2024-09-08 15:10:02,602 [main] DEBUG Util - (2287) WG10 IEC61850 primitive CDC <> CDCControl::BAC, 1 superclasses=[ControllableCDC], 3 attributes; efferent classes: byAttr=[AnalogueValue_MX_dchg, NullIEC61850, BsControl],3 constraints: class attributes constraint CDCControl::BAC {AllOrNonePerGroup(1) = [mxVal, q, t]} (AllOrNonePerGroup(n))class attributes constraint CDCControl::BAC {MFscaledAV = [sVC]} (MFscaledAV)class attributes constraint CDCControl::BAC {MFsubst = [subVal]} (MFsubst) +2024-09-08 15:10:02,602 [main] DEBUG Util - (3038) WG10 IEC61850 primitive CDC CDCStatusInfo::EXY, 1 superclasses=[BasePrimitiveCDC], 1 subclasses=[EXYBehaviourMode], 3 attributes; efferent classes: byAttr=[EnumDA_ST_dchg_dupd, Quality_ST_qchg, TimeStamp_ST] +2024-09-08 15:10:02,602 [main] DEBUG Util - (3039) WG10 IEC61850 primitive CDC DerivedCDCs::EXYBehaviourMode, 1 superclasses=[EXY]; afferent classes: byAttr=[CALH]; +2024-09-08 15:10:02,602 [main] DEBUG Util - (2252) WG10 IEC61850 primitive CDC CDCStatusInfo::ACD, 1 superclasses=[BasePrimitiveCDC], 3 attributes; afferent classes: byAttr=[PDIF, PDIS, RDIR];; efferent classes: byAttr=[NullIEC61850, BOOLEAN_ST_dchg],4 constraints: class attributes constraint CDCStatusInfo::ACD {AllOrNonePerGroup(1) = [phsA, dirPhsA]} (AllOrNonePerGroup(n))class attributes constraint CDCStatusInfo::ACD {AllOrNonePerGroup(2) = [phsB, dirPhsB]} (AllOrNonePerGroup(n))class attributes constraint CDCStatusInfo::ACD {AllOrNonePerGroup(3) = [phsC, dirPhsC]} (AllOrNonePerGroup(n))class attributes constraint CDCStatusInfo::ACD {AllOrNonePerGroup(4) = [neut, dirNeut]} (AllOrNonePerGroup(n)) +2024-09-08 15:10:02,602 [main] DEBUG Util - (2255) WG10 IEC61850 primitive CDC CDCStatusInfo::HST, 1 superclasses=[BasePrimitiveCDC], 2 attributes, 2 diagrams; afferent classes: byAttr=[MMXU];; efferent classes: byAttr=[INT32_ST_dchg_dupd, INT16U_CF] +2024-09-08 15:10:02,602 [main] DEBUG Util - (2295) WG10 IEC61850 abstract class enumeration CDC CDCStatusSet::ENG, 1 superclasses=[BasePrimitiveCDC], 1 subclasses=[ENGCalcMethod], 3 attributes; efferent classes: byAttr=[NullIEC61850],2 constraints: class attributes constraint CDCStatusSet::ENG {MFnsg = [setVal]} (MFnsg)class attributes constraint CDCStatusSet::ENG {MFsg = [_setVal, __setVal]} (MFsg) +2024-09-08 15:10:02,602 [main] DEBUG Util - (2677) WG10 IEC61850 enumeration CDC DerivedCDCs::ENGCalcMethod, 1 superclasses=[ENG]; afferent classes: byAttr=[StatisticsLN]; +2024-09-08 15:10:02,602 [main] DEBUG Util - (2314) WG10 IEC61850 primitive CDC CDCDescription::LPL, 1 superclasses=[BasePrimitiveCDC], 2 attributes; afferent classes: byAttr=[DomainLN, LLN0];; efferent classes: byAttr=[VISIBLE_STRING255_EX],3 constraints: class attributes constraint CDCDescription::LPL {MFln0 = [ldNs]} (MFln0)class attributes constraint CDCDescription::LPL {MOln0 = [configRev]} (MOln0)class attributes constraint CDCDescription::LPL {MOlnNs = [lnNs]} (MOlnNs) +2024-09-08 15:10:02,602 [main] DEBUG Util - (1849) WG10 IEC61850 abstract class composed CDC MetaModel::ComposedCDC, 1 superclasses=[CDC], 1 subclasses=[BaseComposedCDC], 1 associations; associated classes (bi-directional): asSource=[MetaModel::PrimitiveCDC] +2024-09-08 15:10:02,603 [main] DEBUG Util - (2235) WG10 IEC61850 abstract class composed CDC CommonDataClasses::BaseComposedCDC, 1 superclasses=[ComposedCDC], 1 subclasses=[HarmonicMeasurandCDC], 2 attributes; efferent classes: byAttr=[UNICODE_STRING255_DC, VISIBLE_STRING255_EX],2 constraints: class attributes constraint CommonDataClasses::BaseComposedCDC {MOcdcNs = [cdcNs, cdcName]} (MOcdcNs)class attributes constraint CommonDataClasses::BaseComposedCDC {MOdataNs = [dataNs]} (MOdataNs) +2024-09-08 15:10:02,603 [main] DEBUG Util - (2263) WG10 IEC61850 abstract class composed CDC <> CDCAnalogueInfo::HarmonicMeasurandCDC, 1 superclasses=[BaseComposedCDC], 1 subclasses=[HWYE], 2 attributes; efferent classes: byAttr=[INT16U_CF_dchg, INT32U_CF_dchg],1 constraints: class attributes constraint CDCAnalogueInfo::HarmonicMeasurandCDC {MFrms = [rmsCyc]} (MFrms) +2024-09-08 15:10:02,603 [main] DEBUG Util - (2273) WG10 IEC61850 composed CDC CDCAnalogueInfo::HWYE, 1 superclasses=[HarmonicMeasurandCDC], 2 attributes; afferent classes: byAttr=[MMXU];; efferent classes: byAttr=[CMV, PhaseAngleReference_CF_dchg] +2024-09-08 15:10:02,603 [main] DEBUG Util - (1851) WG10 IEC61850 abstract class FCDA MetaModel::FCDA, 1 superclasses=[NamedIEC61850Object], 11 subclasses=[FCDA_BL, FCDA_CF, FCDA_DC, FCDA_EX, FCDA_MX, FCDA_OR, FCDA_SE, FCDA_SG, FCDA_SP, FCDA_ST, FCDA_SV], 1 attributes, 4 associations; efferent classes: byAttr=[FCDAReference]; associated classes (bi-directional): asTarget=[MetaModel::CDC, MetaModel::FCD] asSource=[MetaModel::DA, MetaModel::DS] +2024-09-08 15:10:02,603 [main] DEBUG Util - (1916) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_BL, 1 superclasses=[FCDA], 1 subclasses=[BOOLEAN_BL], 1 attributes; efferent classes: byAttr=[FcKind] +2024-09-08 15:10:02,603 [main] DEBUG Util - (2122) WG10 IEC61850 FCDA FCDAs::BOOLEAN_BL, 1 superclasses=[FCDA_BL], 1 attributes; afferent classes: byAttr=[SubstitutionCDC];; efferent classes: byAttr=[BOOLEAN] +2024-09-08 15:10:02,603 [main] DEBUG Util - (1917) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_CF, 1 superclasses=[FCDA], 3 subclasses=[EnumFCDA_CF, FCDA_CF_dchg, INT16U_CF], 1 attributes; efferent classes: byAttr=[FcKind] +2024-09-08 15:10:02,603 [main] DEBUG Util - (1903) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_CF, 1 superclasses=[FCDA_CF] +2024-09-08 15:10:02,603 [main] DEBUG Util - (1918) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_CF_dchg, 1 superclasses=[FCDA_CF], 6 subclasses=[EnumFCDA_CF_dchg, BOOLEAN_CF_dchg, INT16U_CF_dchg, INT32U_CF_dchg, INT32_CF_dchg, RangeConfig_CF_dchg], 1 attributes; efferent classes: byAttr=[TrgOpKind] +2024-09-08 15:10:02,603 [main] DEBUG Util - (1904) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_CF_dchg, 1 superclasses=[FCDA_CF_dchg], 2 subclasses=[EnumDA_CF_dchg, PhaseAngleReference_CF_dchg] +2024-09-08 15:10:02,603 [main] DEBUG Util - (2144) WG10 IEC61850 abstract class enumeration FCDA FCDAs::EnumDA_CF_dchg, 1 superclasses=[EnumFCDA_CF_dchg], 1 attributes; efferent classes: byAttr=[EnumDA] +2024-09-08 15:10:02,603 [main] DEBUG Util - (2183) WG10 IEC61850 enumeration FCDA FCDAs::PhaseAngleReference_CF_dchg, 1 superclasses=[EnumFCDA_CF_dchg], 1 attributes; afferent classes: byAttr=[HWYE];; efferent classes: byAttr=[PhaseAngleReference] +2024-09-08 15:10:02,603 [main] DEBUG Util - (2123) WG10 IEC61850 FCDA FCDAs::BOOLEAN_CF_dchg, 1 superclasses=[FCDA_CF_dchg], 1 attributes; efferent classes: byAttr=[BOOLEAN] +2024-09-08 15:10:02,603 [main] DEBUG Util - (2160) WG10 IEC61850 FCDA FCDAs::INT16U_CF_dchg, 1 superclasses=[FCDA_CF_dchg], 1 attributes; afferent classes: byAttr=[HarmonicMeasurandCDC];; efferent classes: byAttr=[INT16U] +2024-09-08 15:10:02,603 [main] DEBUG Util - (2165) WG10 IEC61850 FCDA FCDAs::INT32U_CF_dchg, 1 superclasses=[FCDA_CF_dchg], 1 attributes; afferent classes: byAttr=[HarmonicMeasurandCDC];; efferent classes: byAttr=[INT32U] +2024-09-08 15:10:02,603 [main] DEBUG Util - (2167) WG10 IEC61850 FCDA FCDAs::INT32_CF_dchg, 1 superclasses=[FCDA_CF_dchg], 1 attributes; efferent classes: byAttr=[INT32] +2024-09-08 15:10:02,603 [main] DEBUG Util - (2194) WG10 IEC61850 FCDA FCDAs::RangeConfig_CF_dchg, 1 superclasses=[FCDA_CF_dchg], 1 attributes; afferent classes: byAttr=[CMV];; efferent classes: byAttr=[RangeConfig] +2024-09-08 15:10:02,603 [main] DEBUG Util - (2159) WG10 IEC61850 FCDA FCDAs::INT16U_CF, 1 superclasses=[FCDA_CF], 1 attributes; afferent classes: byAttr=[HST];; efferent classes: byAttr=[INT16U] +2024-09-08 15:10:02,603 [main] DEBUG Util - (1919) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_DC, 1 superclasses=[FCDA], 2 subclasses=[Point_DC, UNICODE_STRING255_DC], 1 attributes; efferent classes: byAttr=[FcKind] +2024-09-08 15:10:02,603 [main] DEBUG Util - (2186) WG10 IEC61850 FCDA FCDAs::Point_DC, 1 superclasses=[FCDA_DC], 1 attributes; efferent classes: byAttr=[Point] +2024-09-08 15:10:02,603 [main] DEBUG Util - (2207) WG10 IEC61850 FCDA FCDAs::UNICODE_STRING255_DC, 1 superclasses=[FCDA_DC], 1 attributes; afferent classes: byAttr=[BasePrimitiveCDC, BaseComposedCDC];; efferent classes: byAttr=[UNICODE_STRING255] +2024-09-08 15:10:02,603 [main] DEBUG Util - (1920) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_EX, 1 superclasses=[FCDA], 1 subclasses=[VISIBLE_STRING255_EX], 2 attributes; efferent classes: byAttr=[FcKind, P_BOOLEAN] +2024-09-08 15:10:02,603 [main] DEBUG Util - (2217) WG10 IEC61850 FCDA FCDAs::VISIBLE_STRING255_EX, 1 superclasses=[FCDA_EX], 1 attributes; afferent classes: byAttr=[BasePrimitiveCDC, BaseComposedCDC, LPL];; efferent classes: byAttr=[VISIBLE_STRING255] +2024-09-08 15:10:02,603 [main] DEBUG Util - (1921) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_MX, 1 superclasses=[FCDA], 5 subclasses=[EnumFCDA_MX, FCDA_MX_dchg, FCDA_MX_dchg_dupd, FCDA_MX_qchg, AnalogueValue_MX], 2 attributes; efferent classes: byAttr=[FcKind, P_BOOLEAN] +2024-09-08 15:10:02,603 [main] DEBUG Util - (1905) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_MX, 1 superclasses=[FCDA_MX] +2024-09-08 15:10:02,603 [main] DEBUG Util - (1922) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_MX_dchg, 1 superclasses=[FCDA_MX], 2 subclasses=[AnalogueValue_MX_dchg, BOOLEAN_MX_dchg], 1 attributes; efferent classes: byAttr=[TrgOpKind] +2024-09-08 15:10:02,603 [main] DEBUG Util - (2116) WG10 IEC61850 FCDA FCDAs::AnalogueValue_MX_dchg, 1 superclasses=[FCDA_MX_dchg], 1 attributes; afferent classes: byAttr=[BAC];; efferent classes: byAttr=[AnalogueValue] +2024-09-08 15:10:02,603 [main] DEBUG Util - (2124) WG10 IEC61850 FCDA FCDAs::BOOLEAN_MX_dchg, 1 superclasses=[FCDA_MX_dchg], 1 attributes; efferent classes: byAttr=[BOOLEAN] +2024-09-08 15:10:02,603 [main] DEBUG Util - (1923) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_MX_dchg_dupd, 1 superclasses=[FCDA_MX], 1 subclasses=[AnalogueValue_MX_dchg_dupd], 1 attributes; efferent classes: byAttr=[TrgOpKind] +2024-09-08 15:10:02,603 [main] DEBUG Util - (2117) WG10 IEC61850 FCDA FCDAs::AnalogueValue_MX_dchg_dupd, 1 superclasses=[FCDA_MX_dchg_dupd], 1 attributes; efferent classes: byAttr=[AnalogueValue] +2024-09-08 15:10:02,603 [main] DEBUG Util - (1924) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_MX_qchg, 1 superclasses=[FCDA_MX], 1 subclasses=[Quality_MX_qchg], 1 attributes; efferent classes: byAttr=[TrgOpKind] +2024-09-08 15:10:02,603 [main] DEBUG Util - (2191) WG10 IEC61850 FCDA FCDAs::Quality_MX_qchg, 1 superclasses=[FCDA_MX_qchg], 1 attributes; efferent classes: byAttr=[Quality] +2024-09-08 15:10:02,603 [main] DEBUG Util - (2115) WG10 IEC61850 FCDA FCDAs::AnalogueValue_MX, 1 superclasses=[FCDA_MX], 1 attributes; efferent classes: byAttr=[AnalogueValue] +2024-09-08 15:10:02,603 [main] DEBUG Util - (1925) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_OR, 1 superclasses=[FCDA], 1 subclasses=[FCDA_OR_dchg], 2 attributes; efferent classes: byAttr=[FcKind, P_BOOLEAN] +2024-09-08 15:10:02,603 [main] DEBUG Util - (1926) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_OR_dchg, 1 superclasses=[FCDA_OR], 1 subclasses=[BOOLEAN_OR_dchg], 1 attributes; efferent classes: byAttr=[TrgOpKind] +2024-09-08 15:10:02,603 [main] DEBUG Util - (2125) WG10 IEC61850 FCDA FCDAs::BOOLEAN_OR_dchg, 1 superclasses=[FCDA_OR_dchg], 1 attributes; afferent classes: byAttr=[ControllableCDC];; efferent classes: byAttr=[BOOLEAN] +2024-09-08 15:10:02,603 [main] DEBUG Util - (1927) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_SE, 1 superclasses=[FCDA], 3 subclasses=[FCDA_SE_dchg, BOOLEAN_SE, Point_SE], 3 attributes, 1 associations; efferent classes: byAttr=[FcKind, P_BOOLEAN]; associated classes (bi-directional): asTarget=[MetaModel::SGCB] +2024-09-08 15:10:02,603 [main] DEBUG Util - (1928) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_SE_dchg, 1 superclasses=[FCDA_SE], 1 subclasses=[EnumFCDA_SE_dchg], 1 attributes; efferent classes: byAttr=[TrgOpKind] +2024-09-08 15:10:02,603 [main] DEBUG Util - (1908) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_SE_dchg, 1 superclasses=[FCDA_SE_dchg] +2024-09-08 15:10:02,603 [main] DEBUG Util - (2126) WG10 IEC61850 FCDA FCDAs::BOOLEAN_SE, 1 superclasses=[FCDA_SE], 1 attributes; efferent classes: byAttr=[BOOLEAN] +2024-09-08 15:10:02,604 [main] DEBUG Util - (2187) WG10 IEC61850 FCDA FCDAs::Point_SE, 1 superclasses=[FCDA_SE], 1 attributes; efferent classes: byAttr=[Point] +2024-09-08 15:10:02,604 [main] DEBUG Util - (1929) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_SG, 1 superclasses=[FCDA], 3 subclasses=[FCDA_SG_dchg, BOOLEAN_SG, Point_SG], 2 attributes, 1 associations; efferent classes: byAttr=[FcKind, P_BOOLEAN]; associated classes (bi-directional): asTarget=[MetaModel::SGCB] +2024-09-08 15:10:02,604 [main] DEBUG Util - (1930) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_SG_dchg, 1 superclasses=[FCDA_SG], 1 subclasses=[EnumFCDA_SG_dchg], 1 attributes; efferent classes: byAttr=[TrgOpKind] +2024-09-08 15:10:02,604 [main] DEBUG Util - (1910) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_SG_dchg, 1 superclasses=[FCDA_SG_dchg] +2024-09-08 15:10:02,604 [main] DEBUG Util - (2127) WG10 IEC61850 FCDA FCDAs::BOOLEAN_SG, 1 superclasses=[FCDA_SG], 1 attributes; efferent classes: byAttr=[BOOLEAN] +2024-09-08 15:10:02,604 [main] DEBUG Util - (2188) WG10 IEC61850 FCDA FCDAs::Point_SG, 1 superclasses=[FCDA_SG], 1 attributes; efferent classes: byAttr=[Point] +2024-09-08 15:10:02,604 [main] DEBUG Util - (1931) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_SP, 1 superclasses=[FCDA], 2 subclasses=[FCDA_SP_dchg, Point_SP], 1 attributes; efferent classes: byAttr=[FcKind] +2024-09-08 15:10:02,604 [main] DEBUG Util - (1932) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_SP_dchg, 1 superclasses=[FCDA_SP], 1 subclasses=[BOOLEAN_SP_dchg], 1 attributes; efferent classes: byAttr=[TrgOpKind] +2024-09-08 15:10:02,604 [main] DEBUG Util - (2128) WG10 IEC61850 FCDA FCDAs::BOOLEAN_SP_dchg, 1 superclasses=[FCDA_SP_dchg], 1 attributes; efferent classes: byAttr=[BOOLEAN] +2024-09-08 15:10:02,604 [main] DEBUG Util - (2189) WG10 IEC61850 FCDA FCDAs::Point_SP, 1 superclasses=[FCDA_SP], 1 attributes; efferent classes: byAttr=[Point] +2024-09-08 15:10:02,604 [main] DEBUG Util - (1933) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_ST, 1 superclasses=[FCDA], 6 subclasses=[EnumFCDA_ST, FCDA_ST_dchg, FCDA_ST_dchg_dupd, FCDA_ST_dupd, FCDA_ST_qchg, TimeStamp_ST], 2 attributes; efferent classes: byAttr=[FcKind, P_BOOLEAN] +2024-09-08 15:10:02,604 [main] DEBUG Util - (1912) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_ST, 1 superclasses=[FCDA_ST] +2024-09-08 15:10:02,604 [main] DEBUG Util - (1934) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_ST_dchg, 1 superclasses=[FCDA_ST], 3 subclasses=[EnumFCDA_ST_dchg, BOOLEAN_ST_dchg, INT32_ST_dchg], 1 attributes; efferent classes: byAttr=[TrgOpKind] +2024-09-08 15:10:02,604 [main] DEBUG Util - (1913) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_ST_dchg, 1 superclasses=[FCDA_ST_dchg], 3 subclasses=[PackedEnumFCDA_SP_dchg, EnumDA_ST_dchg, PhaseFaultDirection_ST_dchg] +2024-09-08 15:10:02,604 [main] DEBUG Util - (1939) WG10 IEC61850 abstract class coded enumeration FCDA MetaModelFCsAndTrgOps::PackedEnumFCDA_SP_dchg, 1 superclasses=[EnumFCDA_ST_dchg], 1 subclasses=[DpStatus_ST_dchg] +2024-09-08 15:10:02,604 [main] DEBUG Util - (2142) WG10 IEC61850 coded enumeration FCDA FCDAs::DpStatus_ST_dchg, 1 superclasses=[PackedEnumFCDA_SP_dchg], 1 attributes; afferent classes: byAttr=[DPS];; efferent classes: byAttr=[DpStatus] +2024-09-08 15:10:02,604 [main] DEBUG Util - (2148) WG10 IEC61850 abstract class enumeration FCDA FCDAs::EnumDA_ST_dchg, 1 superclasses=[EnumFCDA_ST_dchg], 1 attributes; afferent classes: byAttr=[ENC];; efferent classes: byAttr=[EnumDA] +2024-09-08 15:10:02,604 [main] DEBUG Util - (2184) WG10 IEC61850 enumeration FCDA FCDAs::PhaseFaultDirection_ST_dchg, 1 superclasses=[EnumFCDA_ST_dchg], 1 attributes; efferent classes: byAttr=[PhaseFaultDirection] +2024-09-08 15:10:02,604 [main] DEBUG Util - (2129) WG10 IEC61850 FCDA FCDAs::BOOLEAN_ST_dchg, 1 superclasses=[FCDA_ST_dchg], 1 attributes; afferent classes: byAttr=[ACD];; efferent classes: byAttr=[BOOLEAN] +2024-09-08 15:10:02,604 [main] DEBUG Util - (2171) WG10 IEC61850 FCDA FCDAs::INT32_ST_dchg, 1 superclasses=[FCDA_ST_dchg], 1 attributes; efferent classes: byAttr=[INT32] +2024-09-08 15:10:02,604 [main] DEBUG Util - (1935) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_ST_dchg_dupd, 1 superclasses=[FCDA_ST], 2 subclasses=[EnumFCDA_ST_dchg_dupd, INT32_ST_dchg_dupd], 1 attributes; efferent classes: byAttr=[TrgOpKind] +2024-09-08 15:10:02,604 [main] DEBUG Util - (1914) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_ST_dchg_dupd, 1 superclasses=[FCDA_ST_dchg_dupd], 1 subclasses=[EnumDA_ST_dchg_dupd] +2024-09-08 15:10:02,604 [main] DEBUG Util - (2149) WG10 IEC61850 abstract class enumeration FCDA FCDAs::EnumDA_ST_dchg_dupd, 1 superclasses=[EnumFCDA_ST_dchg_dupd], 1 attributes; afferent classes: byAttr=[ENS, EXY];; efferent classes: byAttr=[EnumDA] +2024-09-08 15:10:02,604 [main] DEBUG Util - (2172) WG10 IEC61850 FCDA FCDAs::INT32_ST_dchg_dupd, 1 superclasses=[FCDA_ST_dchg_dupd], 1 attributes; afferent classes: byAttr=[HST];; efferent classes: byAttr=[INT32] +2024-09-08 15:10:02,604 [main] DEBUG Util - (1936) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_ST_dupd, 1 superclasses=[FCDA_ST], 1 attributes; efferent classes: byAttr=[TrgOpKind] +2024-09-08 15:10:02,604 [main] DEBUG Util - (1937) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_ST_qchg, 1 superclasses=[FCDA_ST], 1 subclasses=[Quality_ST_qchg], 1 attributes; efferent classes: byAttr=[TrgOpKind] +2024-09-08 15:10:02,604 [main] DEBUG Util - (2192) WG10 IEC61850 FCDA FCDAs::Quality_ST_qchg, 1 superclasses=[FCDA_ST_qchg], 1 attributes; afferent classes: byAttr=[DPS, ENS, EXY];; efferent classes: byAttr=[Quality] +2024-09-08 15:10:02,604 [main] DEBUG Util - (2206) WG10 IEC61850 FCDA FCDAs::TimeStamp_ST, 1 superclasses=[FCDA_ST], 1 attributes; afferent classes: byAttr=[DPS, ENS, EXY];; efferent classes: byAttr=[TimeStamp] +2024-09-08 15:10:02,604 [main] DEBUG Util - (1938) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_SV, 1 superclasses=[FCDA], 3 subclasses=[EnumFCDA_SV, BOOLEAN_SV, Quality_SV], 1 attributes; efferent classes: byAttr=[FcKind] +2024-09-08 15:10:02,604 [main] DEBUG Util - (1915) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_SV, 1 superclasses=[FCDA_SV], 2 subclasses=[PackedEnumFCDA_SV, EnumDA_SV] +2024-09-08 15:10:02,604 [main] DEBUG Util - (1940) WG10 IEC61850 abstract class coded enumeration FCDA MetaModelFCsAndTrgOps::PackedEnumFCDA_SV, 1 superclasses=[EnumFCDA_SV], 1 subclasses=[DpStatus_SV] +2024-09-08 15:10:02,604 [main] DEBUG Util - (2143) WG10 IEC61850 coded enumeration FCDA FCDAs::DpStatus_SV, 1 superclasses=[PackedEnumFCDA_SV], 1 attributes; afferent classes: byAttr=[DPS];; efferent classes: byAttr=[DpStatus] +2024-09-08 15:10:02,604 [main] DEBUG Util - (2150) WG10 IEC61850 abstract class enumeration FCDA FCDAs::EnumDA_SV, 1 superclasses=[EnumFCDA_SV], 1 attributes; afferent classes: byAttr=[ENS, ENC];; efferent classes: byAttr=[EnumDA] +2024-09-08 15:10:02,604 [main] DEBUG Util - (2130) WG10 IEC61850 FCDA FCDAs::BOOLEAN_SV, 1 superclasses=[FCDA_SV], 1 attributes; afferent classes: byAttr=[SubstitutionCDC];; efferent classes: byAttr=[BOOLEAN] +2024-09-08 15:10:02,604 [main] DEBUG Util - (2193) WG10 IEC61850 FCDA FCDAs::Quality_SV, 1 superclasses=[FCDA_SV], 1 attributes; afferent classes: byAttr=[SubstitutionCDC];; efferent classes: byAttr=[Quality] +2024-09-08 15:10:02,604 [main] DEBUG Util - (1852) WG10 IEC61850 abstract class other 61850 MetaModel::DA, 1 superclasses=[NamedIEC61850Object], 2 subclasses=[PrimitiveDA, ComposedDA], 1 attributes, 2 associations; efferent classes: byAttr=[FCDAReference]; associated classes (bi-directional): asTarget=[MetaModel::FCDA, MetaModel::ComposedDA] +2024-09-08 15:10:02,604 [main] DEBUG Util - (1853) WG10 IEC61850 abstract class primitive DA MetaModel::PrimitiveDA, 1 superclasses=[DA], 11 subclasses=[PHYCOMADDR, ObjectReference, VISIBLE_STRING255, UNICODE_STRING255, INT32U, INT32, INT16U, FLOAT32, BOOLEAN, PackedPrimitiveDA, EnumDA], 1 attributes, 1 associations; efferent classes: byAttr=[AttrValue]; associated classes (bi-directional): asTarget=[MetaModel::PrimitiveCDC] +2024-09-08 15:10:02,604 [main] DEBUG Util - (1755) WG10 IEC61850 primitive DA BasicDAs::PHYCOMADDR, 1 superclasses=[PrimitiveDA], 1 attributes; efferent classes: byAttr=[P_PHYCOMADDR] +2024-09-08 15:10:02,604 [main] DEBUG Util - (1754) WG10 IEC61850 primitive DA BasicDAs::ObjectReference, 1 superclasses=[PrimitiveDA], 1 attributes; efferent classes: byAttr=[P_ObjectReference] +2024-09-08 15:10:02,604 [main] DEBUG Util - (1752) WG10 IEC61850 primitive DA BasicDAs::VISIBLE_STRING255, 1 superclasses=[PrimitiveDA], 1 attributes; afferent classes: byAttr=[VISIBLE_STRING255_EX];; efferent classes: byAttr=[P_VISIBLE_STRING255] +2024-09-08 15:10:02,605 [main] DEBUG Util - (1751) WG10 IEC61850 primitive DA BasicDAs::UNICODE_STRING255, 1 superclasses=[PrimitiveDA], 1 attributes; afferent classes: byAttr=[UNICODE_STRING255_DC];; efferent classes: byAttr=[P_UNICODE_STRING255] +2024-09-08 15:10:02,605 [main] DEBUG Util - (1746) WG10 IEC61850 primitive DA BasicDAs::INT32U, 1 superclasses=[PrimitiveDA], 1 attributes; afferent classes: byAttr=[RangeConfig, INT32U_CF_dchg];; efferent classes: byAttr=[P_INT32U] +2024-09-08 15:10:02,605 [main] DEBUG Util - (1745) WG10 IEC61850 primitive DA BasicDAs::INT32, 1 superclasses=[PrimitiveDA], 1 attributes; afferent classes: byAttr=[AnalogueValue, INT32_CF_dchg, INT32_ST_dchg, INT32_ST_dchg_dupd];; efferent classes: byAttr=[P_INT32] +2024-09-08 15:10:02,605 [main] DEBUG Util - (1743) WG10 IEC61850 primitive DA BasicDAs::INT16U, 1 superclasses=[PrimitiveDA], 1 attributes; afferent classes: byAttr=[INT16U_CF, INT16U_CF_dchg];; efferent classes: byAttr=[P_INT16U] +2024-09-08 15:10:02,605 [main] DEBUG Util - (1741) WG10 IEC61850 primitive DA BasicDAs::FLOAT32, 1 superclasses=[PrimitiveDA], 1 attributes; afferent classes: byAttr=[AnalogueValue, Point];; efferent classes: byAttr=[P_FLOAT32] +2024-09-08 15:10:02,605 [main] DEBUG Util - (1740) WG10 IEC61850 primitive DA BasicDAs::BOOLEAN, 1 superclasses=[PrimitiveDA], 1 attributes; afferent classes: byAttr=[BOOLEAN_BL, BOOLEAN_CF_dchg, BOOLEAN_MX_dchg, BOOLEAN_OR_dchg, BOOLEAN_SE, BOOLEAN_SG, BOOLEAN_SP_dchg, BOOLEAN_ST_dchg, BOOLEAN_SV];; efferent classes: byAttr=[P_BOOLEAN] +2024-09-08 15:10:02,605 [main] DEBUG Util - (1854) WG10 IEC61850 abstract class packed list DA MetaModel::PackedPrimitiveDA, 1 superclasses=[PrimitiveDA], 3 subclasses=[TriggerConditions, TimeStamp, Quality] +2024-09-08 15:10:02,605 [main] DEBUG Util - (1757) WG10 IEC61850 packed list DA BasicDAs::TriggerConditions, 1 superclasses=[PackedPrimitiveDA], 1 attributes, 1 diagrams; efferent classes: byAttr=[P_TriggerConditions] +2024-09-08 15:10:02,605 [main] DEBUG Util - (1756) WG10 IEC61850 packed list DA BasicDAs::TimeStamp, 1 superclasses=[PackedPrimitiveDA], 1 attributes; afferent classes: byAttr=[TimeStamp_ST];; efferent classes: byAttr=[P_TimeStamp] +2024-09-08 15:10:02,605 [main] DEBUG Util - (2080) WG10 IEC61850 packed list DA ConstructedDAs::Quality, 1 superclasses=[PackedPrimitiveDA], 5 attributes, 1 diagrams; afferent classes: byAttr=[Quality_MX_qchg, Quality_ST_qchg, Quality_SV];; efferent classes: byAttr=[ValidityKind, DetailQual, SourceKind, P_BOOLEAN] +2024-09-08 15:10:02,605 [main] DEBUG Util - (1855) WG10 IEC61850 abstract class enumeration DA MetaModel::EnumDA, 1 superclasses=[PrimitiveDA], 11 subclasses=[PackedEnumDA, SIUnit, Multiplier, PhaseFaultDirection, PhaseAngleReference, BehaviourMode, CalcMethod, Health, Material, Material_control, Other]; afferent classes: byAttr=[EnumDA_CF_dchg, EnumDA_ST_dchg, EnumDA_ST_dchg_dupd, EnumDA_SV, ENC]; +2024-09-08 15:10:02,605 [main] DEBUG Util - (1856) WG10 IEC61850 abstract class coded enumeration DA MetaModel::PackedEnumDA, 1 superclasses=[EnumDA], 2 subclasses=[BsControl, DpStatus] +2024-09-08 15:10:02,605 [main] DEBUG Util - (1760) WG10 IEC61850 coded enumeration DA BasicDAs::BsControl, 1 superclasses=[PackedEnumDA], 1 attributes; afferent classes: byAttr=[BAC];; efferent classes: byAttr=[BsControlKind] +2024-09-08 15:10:02,605 [main] DEBUG Util - (1759) WG10 IEC61850 coded enumeration DA BasicDAs::DpStatus, 1 superclasses=[PackedEnumDA], 1 attributes; afferent classes: byAttr=[DpStatus_ST_dchg, DpStatus_SV];; efferent classes: byAttr=[DpStatusKind] +2024-09-08 15:10:02,605 [main] DEBUG Util - (2072) WG10 IEC61850 enumeration DA ImplicitDAs::SIUnit, 1 superclasses=[EnumDA], 1 attributes; afferent classes: byAttr=[Unit];; efferent classes: byAttr=[SIUnitKind] +2024-09-08 15:10:02,605 [main] DEBUG Util - (2061) WG10 IEC61850 enumeration DA ImplicitDAs::Multiplier, 1 superclasses=[EnumDA], 1 attributes; afferent classes: byAttr=[Unit];; efferent classes: byAttr=[MultiplierKind] +2024-09-08 15:10:02,605 [main] DEBUG Util - (2066) WG10 IEC61850 enumeration DA ImplicitDAs::PhaseFaultDirection, 1 superclasses=[EnumDA], 1 attributes; afferent classes: byAttr=[PhaseFaultDirection_ST_dchg];; efferent classes: byAttr=[PhaseFaultDirectionKind] +2024-09-08 15:10:02,605 [main] DEBUG Util - (2065) WG10 IEC61850 enumeration DA ImplicitDAs::PhaseAngleReference, 1 superclasses=[EnumDA], 1 attributes; afferent classes: byAttr=[PhaseAngleReference_CF_dchg];; efferent classes: byAttr=[PhaseAngleReferenceKind] +2024-09-08 15:10:02,605 [main] DEBUG Util - (2622) WG10 IEC61850 enumeration DA DerivedDAs::BehaviourMode, 1 superclasses=[EnumDA], 1 attributes; efferent classes: byAttr=[BehaviourModeKind] +2024-09-08 15:10:02,605 [main] DEBUG Util - (2625) WG10 IEC61850 enumeration DA DerivedDAs::CalcMethod, 1 superclasses=[EnumDA], 1 attributes; efferent classes: byAttr=[CalcMethodKind] +2024-09-08 15:10:02,605 [main] DEBUG Util - (2634) WG10 IEC61850 enumeration DA DerivedDAs::Health, 1 superclasses=[EnumDA], 1 attributes; efferent classes: byAttr=[HealthKind] +2024-09-08 15:10:02,605 [main] DEBUG Util - (3055) WG17 IEC61850 enumeration DA DerivedDAs_7_420::Material, 1 superclasses=[EnumDA], 1 attributes; efferent classes: byAttr=[MaterialKind] +2024-09-08 15:10:02,605 [main] DEBUG Util - (3088) WG17 IEC61850 enumeration DA DerivedDAs_7_420::Material_control, 1 superclasses=[EnumDA], 1 attributes; efferent classes: byAttr=[MaterialTransitionKind] +2024-09-08 15:10:02,605 [main] DEBUG Util - (3056) WG17 IEC61850 enumeration DA DerivedDAs_7_420::Other, 1 superclasses=[EnumDA], 1 attributes; efferent classes: byAttr=[OtherKind] +2024-09-08 15:10:02,605 [main] DEBUG Util - (1857) WG10 IEC61850 abstract class composed DA MetaModel::ComposedDA, 1 superclasses=[DA], 4 subclasses=[AnalogueValue, RangeConfig, Unit, Point], 1 associations; associated classes (bi-directional): asSource=[MetaModel::DA] +2024-09-08 15:10:02,605 [main] DEBUG Util - (2089) WG10 IEC61850 composed DA ConstructedDAs::AnalogueValue, 1 superclasses=[ComposedDA], 2 attributes; afferent classes: byAttr=[RangeConfig, AnalogueValue_MX, AnalogueValue_MX_dchg, AnalogueValue_MX_dchg_dupd];; efferent classes: byAttr=[INT32, FLOAT32],1 constraints: class attributes constraint ConstructedDAs::AnalogueValue {AtLeastOne = [i, f]} (null) +2024-09-08 15:10:02,605 [main] DEBUG Util - (2091) WG10 IEC61850 composed DA ConstructedDAs::RangeConfig, 1 superclasses=[ComposedDA], 7 attributes, 1 diagrams; afferent classes: byAttr=[RangeConfig_CF_dchg];; efferent classes: byAttr=[AnalogueValue, INT32U] +2024-09-08 15:10:02,605 [main] DEBUG Util - (2096) WG10 IEC61850 composed DA ConstructedDAs::Unit, 1 superclasses=[ComposedDA], 2 attributes; efferent classes: byAttr=[SIUnit, Multiplier] +2024-09-08 15:10:02,605 [main] DEBUG Util - (2098) WG10 IEC61850 composed DA ConstructedDAs::Point, 1 superclasses=[ComposedDA], 3 attributes; afferent classes: byAttr=[Point_DC, Point_SE, Point_SG, Point_SP];; efferent classes: byAttr=[FLOAT32] +2024-09-08 15:10:02,605 [main] DEBUG Util - (1858) WG10 IEC61850 abstract class other 61850 MetaModel::DS, 1 superclasses=[NamedIEC61850Object], 2 subclasses=[LNOwnedDS, NonPersistentDS], 4 associations; associated classes (bi-directional): asTarget=[MetaModel::FCD, MetaModel::FCDA, MetaModel::URCB, MetaModel::USVCB] +2024-09-08 15:10:02,605 [main] DEBUG Util - (1859) WG10 IEC61850 abstract class other 61850 MetaModel::LNOwnedDS, 1 superclasses=[DS], 2 subclasses=[ConfiguredDS, PersistentDS], 1 attributes, 5 associations; efferent classes: byAttr=[LNOwnedDSReference]; associated classes (bi-directional): asTarget=[MetaModel::LN, MetaModel::MSVCB, MetaModel::LCB, MetaModel::BRCB, MetaModel::GCB] +2024-09-08 15:10:02,605 [main] DEBUG Util - (1861) WG10 IEC61850 other 61850 MetaModel::ConfiguredDS, 1 superclasses=[LNOwnedDS] +2024-09-08 15:10:02,605 [main] DEBUG Util - (1862) WG10 IEC61850 other 61850 MetaModel::PersistentDS, 1 superclasses=[LNOwnedDS], 1 attributes; efferent classes: byAttr=[P_BOOLEAN] +2024-09-08 15:10:02,605 [main] DEBUG Util - (1860) WG10 IEC61850 other 61850 MetaModel::NonPersistentDS, 1 superclasses=[DS], 2 attributes, 1 associations; efferent classes: byAttr=[P_BOOLEAN, NonPersistentDSReference]; associated classes (bi-directional): asTarget=[MetaModel::TPAA] +2024-09-08 15:10:02,606 [main] DEBUG Util - (1864) WG10 IEC61850 abstract class other 61850 MetaModel::ControlBlock, 1 superclasses=[NamedIEC61850Object], 5 subclasses=[RCB, LCB, GCB, SVCB, SGCB], 1 attributes; efferent classes: byAttr=[CBReference] +2024-09-08 15:10:02,606 [main] DEBUG Util - (1865) WG10 IEC61850 abstract class other 61850 MetaModel::RCB, 1 superclasses=[ControlBlock], 2 subclasses=[BRCB, URCB] +2024-09-08 15:10:02,606 [main] DEBUG Util - (1866) WG10 IEC61850 abstract class other 61850 MetaModel::BRCB, 1 superclasses=[RCB], 1 attributes, 2 associations; efferent classes: byAttr=[IPAddress]; associated classes (bi-directional): asTarget=[MetaModel::LN] asSource=[MetaModel::LNOwnedDS] +2024-09-08 15:10:02,606 [main] DEBUG Util - (1867) WG10 IEC61850 abstract class other 61850 MetaModel::URCB, 1 superclasses=[RCB], 1 attributes, 2 associations; efferent classes: byAttr=[IPAddress]; associated classes (bi-directional): asTarget=[MetaModel::LN] asSource=[MetaModel::DS] +2024-09-08 15:10:02,606 [main] DEBUG Util - (1868) WG10 IEC61850 other 61850 MetaModel::LCB, 1 superclasses=[ControlBlock], 3 associations; associated classes (bi-directional): asTarget=[MetaModel::LN] asSource=[MetaModel::LNOwnedDS, MetaModel::LOG] +2024-09-08 15:10:02,606 [main] DEBUG Util - (1870) WG10 IEC61850 other 61850 MetaModel::GCB, 1 superclasses=[ControlBlock], 1 attributes, 2 associations; efferent classes: byAttr=[MulticastAddress]; associated classes (bi-directional): asTarget=[MetaModel::LN0] asSource=[MetaModel::LNOwnedDS] +2024-09-08 15:10:02,606 [main] DEBUG Util - (1871) WG10 IEC61850 abstract class other 61850 MetaModel::SVCB, 1 superclasses=[ControlBlock], 2 subclasses=[MSVCB, USVCB] +2024-09-08 15:10:02,606 [main] DEBUG Util - (1872) WG10 IEC61850 abstract class other 61850 MetaModel::MSVCB, 1 superclasses=[SVCB], 1 attributes, 2 associations; efferent classes: byAttr=[MulticastAddress]; associated classes (bi-directional): asTarget=[MetaModel::LN0] asSource=[MetaModel::LNOwnedDS] +2024-09-08 15:10:02,606 [main] DEBUG Util - (1873) WG10 IEC61850 abstract class other 61850 MetaModel::USVCB, 1 superclasses=[SVCB], 1 attributes, 2 associations; efferent classes: byAttr=[IPAddress]; associated classes (bi-directional): asTarget=[MetaModel::LN0] asSource=[MetaModel::DS] +2024-09-08 15:10:02,606 [main] DEBUG Util - (1874) WG10 IEC61850 other 61850 MetaModel::SGCB, 1 superclasses=[ControlBlock], 3 associations; associated classes (bi-directional): asTarget=[MetaModel::LN0] asSource=[MetaModelFCsAndTrgOps::FCDA_SG, MetaModelFCsAndTrgOps::FCDA_SE] +2024-09-08 15:10:02,606 [main] DEBUG Util - (1869) WG10 IEC61850 other 61850 MetaModel::LOG, 1 superclasses=[NamedIEC61850Object], 1 attributes, 2 associations; efferent classes: byAttr=[LOGReference]; associated classes (bi-directional): asTarget=[MetaModel::LN, MetaModel::LCB] +2024-09-08 15:10:02,606 [main] DEBUG Util - (1838) WG10 IEC61850 other 61850 MetaModel::IED, 1 superclasses=[HierarchyIEC61850Object], 1 attributes, 1 associations; efferent classes: byAttr=[NullIEC61850]; associated classes (bi-directional): asSource=[MetaModel::SERVER] +2024-09-08 15:10:02,606 [main] DEBUG Util - (1839) WG10 IEC61850 other 61850 MetaModel::SERVER, 1 superclasses=[HierarchyIEC61850Object], 2 attributes, 5 associations; efferent classes: byAttr=[NullIEC61850, IPAddress]; associated classes (bi-directional): asTarget=[MetaModel::IED] asSource=[MetaModel::MCAA, MetaModel::FILE, MetaModel::TPAA, MetaModel::LD] +2024-09-08 15:10:02,606 [main] DEBUG Util - (1850) WG10 IEC61850 other 61850 MetaModel::FCD, 1 superclasses=[HierarchyIEC61850Object], 2 attributes, 3 associations; efferent classes: byAttr=[FCDReference, FcKind]; associated classes (bi-directional): asTarget=[MetaModel::CDC] asSource=[MetaModel::DS, MetaModel::FCDA] +2024-09-08 15:10:02,606 [main] DEBUG Util - (1877) WG10 IEC61850 other 61850 MetaModel::FILE, 1 superclasses=[HierarchyIEC61850Object], 1 attributes, 1 associations; efferent classes: byAttr=[FILEReference]; associated classes (bi-directional): asTarget=[MetaModel::SERVER] +2024-09-08 15:10:02,606 [main] DEBUG Util - (1840) WG10 IEC61850 other 61850 MetaModel::TPAA, 1 superclasses=[IEC61850Object], 3 associations; associated classes (bi-directional): asTarget=[MetaModel::SERVER] asSource=[CommonAcsiTypes::Authentication, MetaModel::NonPersistentDS] +2024-09-08 15:10:02,606 [main] DEBUG Util - (1841) WG10 IEC61850 other 61850 MetaModel::MCAA, 1 superclasses=[IEC61850Object], 2 associations; associated classes (bi-directional): asTarget=[MetaModel::SERVER] asSource=[CommonAcsiTypes::Authentication] +2024-09-08 15:10:02,606 [main] DEBUG Util - (2720) WG10 IEC61850 other 61850 DerivedCDCs::SPCTransient, 1 superclasses=[SPC]; afferent classes: byAttr=[LPHD]; +2024-09-08 15:10:02,606 [main] DEBUG Util - (3091) WG17 IEC61850 enumeration <> DOEnums_7_420::ExtBaseKind, 1 superclasses=[BaseKind], 3 enum literals +2024-09-08 15:10:02,606 [main] DEBUG Util - (1488) OTHER_CIM CIM class Ext1::Apple, 1 superclasses=[Fruit], 1 attributes, 3 associations; efferent classes: byAttr=[Integer]; associated classes (bi-directional): asTarget=[Ext1::Pear, Ext1::Pear, Ext1::Apple] asSource=[Ext1::Apple] +2024-09-08 15:10:02,606 [main] DEBUG Util - (3035) OTHER_CIM CIM class Ext1::Strawberry, 1 superclasses=[Fruit], 1 associations; associated classes (bi-directional): asTarget=[Ext1::Village] +2024-09-08 15:10:02,606 [main] DEBUG Util - (1492) OTHER_IEC61850 IEC61850 other 61850 Ext2::Dog, 1 superclasses=[Animal] +2024-09-08 15:10:02,606 [main] DEBUG Util - (1493) OTHER_IEC61850 IEC61850 other 61850 Ext2::Horse, 1 superclasses=[Animal] +2024-09-08 15:10:02,606 [main] DEBUG Util - +2024-09-08 15:10:02,606 [main] DEBUG Util - ======= 14 operations: ======== +2024-09-08 15:10:02,606 [main] DEBUG Util - (1) WG13 CIM Core::PowerSystemResource operation abstract public NullCIM[] GetWhatevers(BasePower[] multiples) throws Dummy,PSRType,Dummy2; tags={throws=Dummy,PSRType,Dummy2, dummyCimTag=on operation} +2024-09-08 15:10:02,606 [main] DEBUG Util - (2) WG13 CIM Core::PowerSystemResource operation <> public void setSomething(String name) throws Unit; tags={throws=Unit} +2024-09-08 15:10:02,606 [main] DEBUG Util - (5) WG13 CIM Core::PowerSystemResource operation <> public NullCIM bar(NullCIM par3, Float par2, NullCIM par); tags={someTag=value} +2024-09-08 15:10:02,606 [main] DEBUG Util - (4) WG13 CIM Core::PowerSystemResource operation public NullCIM foo(NullCIM par3, Float par2, NullCIM par); tags={someTag=value} +2024-09-08 15:10:02,606 [main] DEBUG Util - (3) WG13 CIM Core::VoltageLevel operation public Voltage getVoltage() +2024-09-08 15:10:02,606 [main] DEBUG Util - (7) WG10 IEC61850 AttrValues::AttrValue operation abstract public AttrValueKind getType() +2024-09-08 15:10:02,606 [main] DEBUG Util - (46) WG10 IEC61850 AttrValues::AttrDefinition operation public FCDAReference getFcdaRef() +2024-09-08 15:10:02,606 [main] DEBUG Util - (47) WG10 IEC61850 AttrValues::AttrDefinition operation public AttrValueKind getValType() +2024-09-08 15:10:02,606 [main] DEBUG Util - (48) WG10 IEC61850 AttrValues::NamedAttrValue operation public FCDAReference getFcdaRef() +2024-09-08 15:10:02,606 [main] DEBUG Util - (49) WG10 IEC61850 AttrValues::NamedAttrValue operation public AttrValue getVal() +2024-09-08 15:10:02,606 [main] DEBUG Util - (50) WG10 IEC61850 CommonAcsiTypes::Authentication operation public NullIEC61850 getPassword() +2024-09-08 15:10:02,606 [main] DEBUG Util - (51) WG10 IEC61850 CommonAcsiTypes::Authentication operation public NullIEC61850 geUserID() +2024-09-08 15:10:02,606 [main] DEBUG Util - (52) WG10 IEC61850 CommonAcsiTypes::Authentication operation public AccessView[] getViews() +2024-09-08 15:10:02,607 [main] DEBUG Util - (6) OTHER_CIM CIM Package with space::My class operation public void ope-ration(Boolean other param, ApparentPower _par) +2024-09-08 15:10:02,607 [main] INFO Util - +2024-09-08 15:10:02,607 [main] INFO Util - ======= 2 associations between CIM and nonCIM packages: ======== +2024-09-08 15:10:02,607 [main] INFO Util - (2143) OTHER_IEC61850 IEC61850 association, qname='Animal.Fruit - Fruit.Animal', endAsSrc: myEnd: OTHER_IEC61850 [0..1] Fruit.Animal; otherEnd: OTHER_IEC61850 [0..*] Animal.Fruit, endAsTgt: myEnd: OTHER_IEC61850 [0..*] Animal.Fruit; otherEnd: OTHER_IEC61850 [0..1] Fruit.Animal +2024-09-08 15:10:02,607 [main] INFO Util - (2144) OTHER_IEC61850 IEC61850 association, qname='Animal.SecondFruit - Fruit.SecondAnimal', endAsSrc: myEnd: OTHER_IEC61850 [1..*] Fruit.SecondAnimal; otherEnd: OTHER_IEC61850 [1..1] Animal.SecondFruit, endAsTgt: myEnd: OTHER_IEC61850 [1..1] Animal.SecondFruit; otherEnd: OTHER_IEC61850 [1..*] Fruit.SecondAnimal +2024-09-08 15:10:02,607 [main] INFO Util - +2024-09-08 15:10:02,607 [main] INFO Util - ======= 29 classes with constraints: ======== +2024-09-08 15:10:02,607 [main] INFO Util - (858) WG13 CIM private enumeration <> Core::BreakerConfiguration, 4 enum literals; afferent classes: byAttr=[Bay];,1 constraints: class attributes constraint Core::BreakerConfiguration {ConstraintOnEnum = [text]} +2024-09-08 15:10:02,608 [main] INFO Util - (1599) WG10 IEC61850 other 61850 GenericModel::GenFCDA, 1 attributes, 3 associations; efferent classes: byAttr=[GenFC]; associated classes (bi-directional): asTarget=[GenericModel::GenDataSet] asSource=[GenericModel::GenDataAttribute, GenericModel::GenSubDataAttribute],1 constraints: class attributes constraint GenericModel::GenFCDA {FCConstraint = [inv]} (null) +2024-09-08 15:10:02,608 [main] INFO Util - (797) WG13 CIM class <> Topology::BusNameMarker, 2 superclasses=[IdentifiedObject, InfClass2], 4 attributes, 1 associations; efferent classes: byAttr=[Integer]; associated classes (bi-directional): asSource=[Topology::ConnectivityNode],4 constraints: class attributes constraint Topology::BusNameMarker {C2_1 = [constrained1, constrained2]} class attributes constraint Topology::BusNameMarker {C2_2 = [constrained3, constrained4]} class attributes constraint Topology::BusNameMarker {C2_3 = [constrained1, constrained4]} class attributes constraint Topology::BusNameMarker {EMPTY = []} +2024-09-08 15:10:02,608 [main] INFO Util - (849) WG13 CIM class Core::PowerSystemResource, 1 superclasses=[IdentifiedObject], 2 subclasses=[ConnectivityNodeContainer, Equipment], 1 attributes, 4 operations, 1 diagrams, 3 associations; efferent classes: byAttr=[String] byOp=[NullCIM]; associated classes (bi-directional): asTarget=[Core::OperatingShare, Assets::AssetInfo] asSource=[Core::Terminal],3 constraints: class attributes constraint Core::PowerSystemResource {R.1.2.3 PSR process constraint = [Here the text for process constraint.]} class attributes constraint Core::PowerSystemResource {ruleAsInQoCDC = [text only]} class attributes constraint Core::PowerSystemResource {anotherOclRule = [{ocl]} +2024-09-08 15:10:02,608 [main] INFO Util - (794) WG13 CIM class Topology::TopologicalIsland, 1 superclasses=[IdentifiedObject], 2 attributes, 2 associations; efferent classes: byAttr=[Integer]; associated classes (bi-directional): asTarget=[Topology::TopologicalNode] asSource=[Topology::TopologicalNode],1 constraints: class attributes constraint Topology::TopologicalIsland {PICS_SUBST = [constrained5]} +2024-09-08 15:10:02,608 [main] INFO Util - (1603) WG10 IEC61850 other 61850 GenericModel::GenLN0, 1 superclasses=[GenLogicalNode], 1 associations; associated classes (bi-directional): asTarget=[GenericModel::GenLogicalDevice],1 constraints: class attributes constraint GenericModel::GenLN0 {inv: self.LNName = "LLN0" = []} (null) +2024-09-08 15:10:02,608 [main] INFO Util - (2764) WG10 IEC61850 LN LNGroupL::LPHD, 1 superclasses=[LNPHD], 3 attributes; afferent classes: byDep=[PhysicalDeviceData];; efferent classes: byAttr=[ENSHealth, SPCTransient, SPSTransient],2 constraints: class attributes constraint LNGroupL::LPHD {MF(2) = [RsstatAlmMthClc]} (MF(condID))class attributes constraint LNGroupL::LPHD {MOcond(1) = [PhyHealth]} (MOcond(condID)) +2024-09-08 15:10:02,608 [main] INFO Util - (2765) WG10 IEC61850 LN LNGroupL::LLN0, 1 superclasses=[LN0], 3 attributes; afferent classes: byDep=[LogicalDeviceData];; efferent classes: byAttr=[LPL, ENSBehaviourMode, ENSHealth],3 constraints: class attributes constraint LNGroupL::LLN0 {MOcond(1) = [NamPlt, Beh]} (MOcond(condID))class attributes constraint LNGroupL::LLN0 {MOrootLD = [Mod, Health, NamPlt]} (MOrootLD)class attributes constraint LNGroupL::LLN0 {Omulti = [InRef]} (Omulti) +2024-09-08 15:10:02,609 [main] INFO Util - (2728) WG10 IEC61850 abstract class LN <> LogicalNodes::DomainLN, 1 superclasses=[LNDOM], 6 subclasses=[StatisticsLN, EquipmentInterfaceLN, KXYZ, CALH, ProtectionLN, RDIR], 4 attributes, 1 diagrams; efferent classes: byAttr=[LPL, ENSHealth, ENCBehaviourMode, CMV],1 constraints: class attributes constraint LogicalNodes::DomainLN {MOcond(1) = [CntRs]} (MOcond(condID)) +2024-09-08 15:10:02,609 [main] INFO Util - (2735) WG10 IEC61850 abstract class LN <> LogicalNodes::StatisticsLN, 1 superclasses=[DomainLN], 2 subclasses=[GGIO, MMXU], 2 attributes; efferent classes: byAttr=[SPSTransient, ENGCalcMethod],1 constraints: class attributes constraint LogicalNodes::StatisticsLN {MF(ClcMth) = [ClcExp, ClcMod, ClcIntvPer, ClcIntvTyp]} (MF(sibling)) +2024-09-08 15:10:02,609 [main] INFO Util - (2815) WG10 IEC61850 LN LNGroupG::GGIO, 1 superclasses=[StatisticsLN], 3 attributes; afferent classes: byDep=[GenericIO];; efferent classes: byAttr=[ENSHealth, CMV, NullIEC61850],1 constraints: class attributes constraint LNGroupG::GGIO {Omulti = [AnIn, AnOut, DPCSO]} (Omulti) +2024-09-08 15:10:02,609 [main] INFO Util - (2856) WG10 IEC61850 LN LNGroupM::MMXU, 1 superclasses=[StatisticsLN], 3 attributes; afferent classes: byDep=[ThreePhaseMeasurement];; efferent classes: byAttr=[HWYE, CMV, HST],1 constraints: class attributes constraint LNGroupM::MMXU {MO(1) = [TotW]} (MOcond(condID)) +2024-09-08 15:10:02,609 [main] INFO Util - (3021) WG10 IEC61850 LN LNGroupZ::ZAXN, 1 superclasses=[EquipmentInterfaceLN], 5 attributes; afferent classes: byDep=[AuxiliaryNetwork];; efferent classes: byAttr=[CMV, NullIEC61850, ENSMaterial, ENCMaterial, ENSOther],2 constraints: class attributes constraint LNGroupZ::ZAXN {MOcond(condID) = [Vol]} (MOcond(condID))class attributes constraint LNGroupZ::ZAXN {AtLeastOne(n) = [Amp]} (AtLeastOne(n)) +2024-09-08 15:10:02,609 [main] INFO Util - (3030) WG10 IEC61850 LN LNGroupL::KXYZ, 1 superclasses=[DomainLN], 4 attributes; efferent classes: byAttr=[CMV, ENS, ENSEnumDA],1 constraints: class attributes constraint LNGroupL::KXYZ {MOcond(2) = [TotW]} (MOcond(condID)) +2024-09-08 15:10:02,609 [main] INFO Util - (2788) WG10 IEC61850 LN LNGroupC::CALH, 1 superclasses=[DomainLN], 3 attributes; afferent classes: byDep=[AlarmHandler];; efferent classes: byAttr=[DPS, EXYBehaviourMode],2 constraints: class attributes constraint LNGroupC::CALH {AtLeastOne(1) = [GrAlm, GrWrn, GrInd]} (AtLeastOne(n))class attributes constraint LNGroupC::CALH {AtLeastOne(2) = [CntRs]} (AtLeastOne(n)) +2024-09-08 15:10:02,609 [main] INFO Util - (2881) WG10 IEC61850 LN LNGroupP::PDIF, 1 superclasses=[ProtectionLN], 2 attributes; afferent classes: byDep=[BusbarProt, LineDifferentialProt];; efferent classes: byAttr=[ACD, ACTTransient],2 constraints: class attributes constraint LNGroupP::PDIF {AtMostOne = [LoSet, HiSet]} (AtMostOne)class attributes constraint LNGroupP::PDIF {OmultiRange(33, 48) = [Str]} (OmultiRange(min, max)) +2024-09-08 15:10:02,610 [main] INFO Util - (2234) WG10 IEC61850 abstract class primitive CDC CommonDataClasses::BasePrimitiveCDC, 1 superclasses=[PrimitiveCDC], 7 subclasses=[CST, SubstitutionCDC, EXY, ACD, HST, ENG, LPL], 2 attributes; efferent classes: byAttr=[UNICODE_STRING255_DC, VISIBLE_STRING255_EX],2 constraints: class attributes constraint CommonDataClasses::BasePrimitiveCDC {MOcdcNs = [cdcNs, cdcName]} (MOcdcNs)class attributes constraint CommonDataClasses::BasePrimitiveCDC {MOdataNs = [dataNs]} (MOdataNs) +2024-09-08 15:10:02,610 [main] INFO Util - (2236) WG10 IEC61850 abstract class primitive CDC CommonDataClasses::SubstitutionCDC, 1 superclasses=[BasePrimitiveCDC], 4 subclasses=[DPS, ENS, CMV, ControllableCDC], 3 attributes, 1 diagrams; efferent classes: byAttr=[BOOLEAN_SV, Quality_SV, BOOLEAN_BL],1 constraints: class attributes constraint CommonDataClasses::SubstitutionCDC {MFsubst = [subEna, subQ, subID]} (MFsubst) +2024-09-08 15:10:02,610 [main] INFO Util - (2248) WG10 IEC61850 primitive CDC CDCStatusInfo::DPS, 1 superclasses=[SubstitutionCDC], 4 attributes; afferent classes: byAttr=[CALH];; efferent classes: byAttr=[DpStatus_ST_dchg, Quality_ST_qchg, TimeStamp_ST, DpStatus_SV],1 constraints: class attributes constraint CDCStatusInfo::DPS {MFsubst = [subVal]} (MFsubst) +2024-09-08 15:10:02,610 [main] INFO Util - (2250) WG10 IEC61850 abstract class enumeration CDC CDCStatusInfo::ENS, 1 superclasses=[SubstitutionCDC], 5 subclasses=[ENSBehaviourMode, ENSHealth, ENSEnumDA, ENSMaterial, ENSOther], 4 attributes; afferent classes: byAttr=[KXYZ];; efferent classes: byAttr=[EnumDA_ST_dchg_dupd, Quality_ST_qchg, TimeStamp_ST, EnumDA_SV],1 constraints: class attributes constraint CDCStatusInfo::ENS {MFsubst = [subVal]} (MFsubst) +2024-09-08 15:10:02,610 [main] INFO Util - (2266) WG10 IEC61850 primitive CDC <> CDCAnalogueInfo::CMV, 1 superclasses=[SubstitutionCDC], 4 attributes; afferent classes: byAttr=[HWYE, DomainLN, KXYZ, GGIO, MMXU, ZAXN];; efferent classes: byAttr=[NullIEC61850, RangeConfig_CF_dchg],5 constraints: class attributes constraint CDCAnalogueInfo::CMV {MF(range) = [rangeC]} (MF(sibling))class attributes constraint CDCAnalogueInfo::CMV {MF(rangeAng) = [rangeAngC]} (MF(sibling))class attributes constraint CDCAnalogueInfo::CMV {MFscaledAngV = [angSVC]} (MFscaledAngV)class attributes constraint CDCAnalogueInfo::CMV {MFscaledMagV = [magSVC]} (MFscaledMagV)class attributes constraint CDCAnalogueInfo::CMV {MFsubst = [subCVal]} (MFsubst) +2024-09-08 15:10:02,610 [main] INFO Util - (2283) WG10 IEC61850 abstract class enumeration CDC CDCControl::ENC, 1 superclasses=[ControllableCDC], 2 subclasses=[ENCBehaviourMode, ENCMaterial], 3 attributes; efferent classes: byAttr=[EnumDA_ST_dchg, EnumDA_SV, EnumDA],1 constraints: class attributes constraint CDCControl::ENC {MFsubst = [subVal]} (MFsubst) +2024-09-08 15:10:02,610 [main] INFO Util - (2287) WG10 IEC61850 primitive CDC <> CDCControl::BAC, 1 superclasses=[ControllableCDC], 3 attributes; efferent classes: byAttr=[AnalogueValue_MX_dchg, NullIEC61850, BsControl],3 constraints: class attributes constraint CDCControl::BAC {AllOrNonePerGroup(1) = [mxVal, q, t]} (AllOrNonePerGroup(n))class attributes constraint CDCControl::BAC {MFscaledAV = [sVC]} (MFscaledAV)class attributes constraint CDCControl::BAC {MFsubst = [subVal]} (MFsubst) +2024-09-08 15:10:02,611 [main] INFO Util - (2252) WG10 IEC61850 primitive CDC CDCStatusInfo::ACD, 1 superclasses=[BasePrimitiveCDC], 3 attributes; afferent classes: byAttr=[PDIF, PDIS, RDIR];; efferent classes: byAttr=[NullIEC61850, BOOLEAN_ST_dchg],4 constraints: class attributes constraint CDCStatusInfo::ACD {AllOrNonePerGroup(1) = [phsA, dirPhsA]} (AllOrNonePerGroup(n))class attributes constraint CDCStatusInfo::ACD {AllOrNonePerGroup(2) = [phsB, dirPhsB]} (AllOrNonePerGroup(n))class attributes constraint CDCStatusInfo::ACD {AllOrNonePerGroup(3) = [phsC, dirPhsC]} (AllOrNonePerGroup(n))class attributes constraint CDCStatusInfo::ACD {AllOrNonePerGroup(4) = [neut, dirNeut]} (AllOrNonePerGroup(n)) +2024-09-08 15:10:02,611 [main] INFO Util - (2295) WG10 IEC61850 abstract class enumeration CDC CDCStatusSet::ENG, 1 superclasses=[BasePrimitiveCDC], 1 subclasses=[ENGCalcMethod], 3 attributes; efferent classes: byAttr=[NullIEC61850],2 constraints: class attributes constraint CDCStatusSet::ENG {MFnsg = [setVal]} (MFnsg)class attributes constraint CDCStatusSet::ENG {MFsg = [_setVal, __setVal]} (MFsg) +2024-09-08 15:10:02,611 [main] INFO Util - (2314) WG10 IEC61850 primitive CDC CDCDescription::LPL, 1 superclasses=[BasePrimitiveCDC], 2 attributes; afferent classes: byAttr=[DomainLN, LLN0];; efferent classes: byAttr=[VISIBLE_STRING255_EX],3 constraints: class attributes constraint CDCDescription::LPL {MFln0 = [ldNs]} (MFln0)class attributes constraint CDCDescription::LPL {MOln0 = [configRev]} (MOln0)class attributes constraint CDCDescription::LPL {MOlnNs = [lnNs]} (MOlnNs) +2024-09-08 15:10:02,611 [main] INFO Util - (2235) WG10 IEC61850 abstract class composed CDC CommonDataClasses::BaseComposedCDC, 1 superclasses=[ComposedCDC], 1 subclasses=[HarmonicMeasurandCDC], 2 attributes; efferent classes: byAttr=[UNICODE_STRING255_DC, VISIBLE_STRING255_EX],2 constraints: class attributes constraint CommonDataClasses::BaseComposedCDC {MOcdcNs = [cdcNs, cdcName]} (MOcdcNs)class attributes constraint CommonDataClasses::BaseComposedCDC {MOdataNs = [dataNs]} (MOdataNs) +2024-09-08 15:10:02,611 [main] INFO Util - (2263) WG10 IEC61850 abstract class composed CDC <> CDCAnalogueInfo::HarmonicMeasurandCDC, 1 superclasses=[BaseComposedCDC], 1 subclasses=[HWYE], 2 attributes; efferent classes: byAttr=[INT16U_CF_dchg, INT32U_CF_dchg],1 constraints: class attributes constraint CDCAnalogueInfo::HarmonicMeasurandCDC {MFrms = [rmsCyc]} (MFrms) +2024-09-08 15:10:02,611 [main] INFO Util - (2089) WG10 IEC61850 composed DA ConstructedDAs::AnalogueValue, 1 superclasses=[ComposedDA], 2 attributes; afferent classes: byAttr=[RangeConfig, AnalogueValue_MX, AnalogueValue_MX_dchg, AnalogueValue_MX_dchg_dupd];; efferent classes: byAttr=[INT32, FLOAT32],1 constraints: class attributes constraint ConstructedDAs::AnalogueValue {AtLeastOne = [i, f]} (null) +2024-09-08 15:10:02,612 [main] INFO Util - +2024-09-08 15:10:02,612 [main] INFO Util - ======= 46 attributes with constraints: ======== +2024-09-08 15:10:02,613 [main] INFO Util - (2073) WG13 CIM literal <> Core::BreakerConfiguration.singleBreaker +2024-09-08 15:10:02,613 [main] INFO Util - (2109) WG13 CIM [0..1] CIMDatatype attribute Core::OperatingShare.percentage: Domain::PerCent +2024-09-08 15:10:02,613 [main] INFO Util - (3250) WG13 CIM [0..1] Primitive attribute Topology::BusNameMarker.constrained1: Domain::Integer, presence conditions=[C2_1, C2_3], array bounds=0...count+1 +2024-09-08 15:10:02,613 [main] INFO Util - (3251) WG13 CIM [0..1] Primitive attribute Topology::BusNameMarker.constrained2: Domain::Integer, presence conditions=[C2_1] +2024-09-08 15:10:02,613 [main] INFO Util - (3252) WG13 CIM [0..1] Primitive attribute Topology::BusNameMarker.constrained3: Domain::Integer, presence conditions=[C2_2] +2024-09-08 15:10:02,613 [main] INFO Util - (3253) WG13 CIM [0..1] Primitive attribute Topology::BusNameMarker.constrained4: Domain::Integer, presence conditions=[C2_2, C2_3] +2024-09-08 15:10:02,614 [main] INFO Util - (3254) WG13 CIM [0..1] Primitive attribute Topology::TopologicalIsland.constrained5: Domain::Integer, presence conditions=[PICS_SUBST] +2024-09-08 15:10:02,614 [main] INFO Util - (4108) WG10 IEC61850 [0..1] PrimitiveDA attribute ConstructedDAs::AnalogueValue.i: BasicDAs::INT32, presence conditions=[AtLeastOne] +2024-09-08 15:10:02,614 [main] INFO Util - (4109) WG10 IEC61850 [0..1] PrimitiveDA attribute ConstructedDAs::AnalogueValue.f: BasicDAs::FLOAT32, presence conditions=[AtLeastOne] +2024-09-08 15:10:02,614 [main] INFO Util - (4260) WG10 IEC61850 [0..1] FCDA attribute CommonDataClasses::BasePrimitiveCDC.cdcNs: FCDAs::VISIBLE_STRING255_EX, presence conditions=[MOcdcNs] +2024-09-08 15:10:02,615 [main] INFO Util - (4265) WG10 IEC61850 [0..1] FCDA attribute CommonDataClasses::BaseComposedCDC.cdcNs: FCDAs::VISIBLE_STRING255_EX, presence conditions=[MOcdcNs] +2024-09-08 15:10:02,615 [main] INFO Util - (4268) WG10 IEC61850 [0..1] FCDA attribute CommonDataClasses::SubstitutionCDC.subEna: FCDAs::BOOLEAN_SV, presence conditions=[MFsubst] +2024-09-08 15:10:02,615 [main] INFO Util - (4269) WG10 IEC61850 [0..1] FCDA attribute CommonDataClasses::SubstitutionCDC.subQ: FCDAs::Quality_SV, presence conditions=[MFsubst] +2024-09-08 15:10:02,615 [main] INFO Util - (4279) WG10 IEC61850 [0..1] PackedEnumFCDA attribute CDCStatusInfo::DPS.subVal: FCDAs::DpStatus_SV, presence conditions=[MFsubst], tags={moveAfter=wrongsubEna, secondTagName=secondTagValue} +2024-09-08 15:10:02,615 [main] INFO Util - (4288) WG10 IEC61850 [0..1] EnumFCDA attribute CDCStatusInfo::ENS.subVal: FCDAs::EnumDA_SV, presence conditions=[MFsubst], tags={moveAfter=subEna} +2024-09-08 15:10:02,615 [main] INFO Util - (4302) WG10 IEC61850 [0..1] FCDA attribute CDCStatusInfo::ACD.phsA: FCDAs::BOOLEAN_ST_dchg, presence conditions=[AllOrNonePerGroup(1)] +2024-09-08 15:10:02,615 [main] INFO Util - (4304) WG10 IEC61850 [0..1] FCDA attribute CDCStatusInfo::ACD.phsB: FCDAs::BOOLEAN_ST_dchg, presence conditions=[AllOrNonePerGroup(2)] +2024-09-08 15:10:02,615 [main] INFO Util - (4328) WG10 IEC61850 [1..*] FCDA attribute CDCStatusInfo::HST.hstVal: FCDAs::INT32_ST_dchg_dupd, array bounds=...maxPts-1 +2024-09-08 15:10:02,615 [main] INFO Util - (4369) WG10 IEC61850 [0..1] attribute CDCAnalogueInfo::CMV.subCVal: NullIEC61850::NullIEC61850, presence conditions=[MFsubst], tags={moveAfter=subEna} +2024-09-08 15:10:02,615 [main] INFO Util - (4374) WG10 IEC61850 [0..1] FCDA attribute CDCAnalogueInfo::CMV.rangeC: FCDAs::RangeConfig_CF_dchg, presence conditions=[MF(range)] +2024-09-08 15:10:02,615 [main] INFO Util - (4375) WG10 IEC61850 [0..1] FCDA attribute CDCAnalogueInfo::CMV.rangeAngC: FCDAs::RangeConfig_CF_dchg, presence conditions=[MF(rangeAng)] +2024-09-08 15:10:02,615 [main] INFO Util - (4405) WG10 IEC61850 [1..*] sub-data object CDCAnalogueInfo::HWYE.phsAHar: CDCAnalogueInfo::CMV, array bounds=0...numHar +2024-09-08 15:10:02,616 [main] INFO Util - (4467) WG10 IEC61850 [0..1] EnumFCDA attribute CDCControl::ENC.subVal: FCDAs::EnumDA_SV, presence conditions=[MFsubst], tags={moveAfter=subEna} +2024-09-08 15:10:02,616 [main] INFO Util - (4522) WG10 IEC61850 [0..1] FCDA attribute CDCControl::BAC.mxVal: FCDAs::AnalogueValue_MX_dchg, presence conditions=[AllOrNonePerGroup(1)] +2024-09-08 15:10:02,616 [main] INFO Util - (4526) WG10 IEC61850 [0..1] attribute CDCControl::BAC.subVal: NullIEC61850::NullIEC61850, presence conditions=[MFsubst], tags={moveAfter=subEna} +2024-09-08 15:10:02,616 [main] INFO Util - (4549) WG10 IEC61850 [0..1] attribute CDCStatusSet::ENG.setVal: NullIEC61850::NullIEC61850, presence conditions=[MFnsg] +2024-09-08 15:10:02,616 [main] INFO Util - (4550) WG10 IEC61850 [0..1] attribute CDCStatusSet::ENG._setVal: NullIEC61850::NullIEC61850, presence conditions=[MFsg] +2024-09-08 15:10:02,616 [main] INFO Util - (4551) WG10 IEC61850 [0..1] attribute CDCStatusSet::ENG.__setVal: NullIEC61850::NullIEC61850, presence conditions=[MFsg] +2024-09-08 15:10:02,616 [main] INFO Util - (4639) WG10 IEC61850 [0..1] FCDA attribute CDCDescription::LPL.ldNs: FCDAs::VISIBLE_STRING255_EX, presence conditions=[MFln0] +2024-09-08 15:10:02,616 [main] INFO Util - (4640) WG10 IEC61850 [0..1] FCDA attribute CDCDescription::LPL.lnNs: FCDAs::VISIBLE_STRING255_EX, presence conditions=[MOlnNs] +2024-09-08 15:10:02,616 [main] INFO Util - (6644) WG10 IEC61850 [0..1] data object LogicalNodes::DomainLN.CntRs: CDCAnalogueInfo::CMV, presence conditions=[MOcond(1)] +2024-09-08 15:10:02,616 [main] INFO Util - (5411) WG10 IEC61850 [0..1] attribute LogicalNodes::StatisticsLN.ClcExp: DerivedCDCs::SPSTransient, presence conditions=[MF(ClcMth)] +2024-09-08 15:10:02,616 [main] INFO Util - (6643) WG10 IEC61850 [0..1] data object LNGroupL::KXYZ.TotW: CDCAnalogueInfo::CMV, presence conditions=[MOcond(2)] +2024-09-08 15:10:02,616 [main] INFO Util - (5434) WG10 IEC61850 [1..1] enumerated DO LNGroupL::LPHD.PhyHealth: DerivedCDCs::ENSHealth, presence conditions=[MOcond(1)] +2024-09-08 15:10:02,616 [main] INFO Util - (5447) WG10 IEC61850 [0..1] data object LNGroupL::LLN0.NamPlt: CDCDescription::LPL, presence conditions=[MOcond(1), MOrootLD] +2024-09-08 15:10:02,616 [main] INFO Util - (5448) WG10 IEC61850 [1..1] enumerated DO LNGroupL::LLN0.Beh: DerivedCDCs::ENSBehaviourMode, presence conditions=[MOcond(1)] +2024-09-08 15:10:02,616 [main] INFO Util - (5449) WG10 IEC61850 [0..1] enumerated DO LNGroupL::LLN0.Health: DerivedCDCs::ENSHealth, presence conditions=[MOrootLD] +2024-09-08 15:10:02,617 [main] INFO Util - (5599) WG10 IEC61850 [1..1] data object LNGroupC::CALH.GrAlm: CDCStatusInfo::DPS, presence conditions=[AtLeastOne(1)] +2024-09-08 15:10:02,617 [main] INFO Util - (5600) WG10 IEC61850 [0..1] data object LNGroupC::CALH.GrWrn: CDCStatusInfo::DPS, presence conditions=[AtLeastOne(1)] +2024-09-08 15:10:02,617 [main] INFO Util - (5782) WG10 IEC61850 [0..1] data object LNGroupG::GGIO.AnIn: CDCAnalogueInfo::CMV, presence conditions=[Omulti] +2024-09-08 15:10:02,617 [main] INFO Util - (5788) WG10 IEC61850 [0..1] attribute LNGroupG::GGIO.DPCSO: NullIEC61850::NullIEC61850, presence conditions=[Omulti] +2024-09-08 15:10:02,617 [main] INFO Util - (6036) WG10 IEC61850 [0..1] data object LNGroupM::MMXU.TotW: CDCAnalogueInfo::CMV, presence conditions=[MO(1)] +2024-09-08 15:10:02,617 [main] INFO Util - (6139) WG10 IEC61850 [0..1] data object LNGroupP::PDIF.Str: CDCStatusInfo::ACD, presence conditions=[OmultiRange(33, 48)] +2024-09-08 15:10:02,617 [main] INFO Util - (6638) WG10 IEC61850 [0..1] data object LNGroupZ::ZAXN.Vol: CDCAnalogueInfo::CMV, presence conditions=[MOcond(condID)] +2024-09-08 15:10:02,617 [main] INFO Util - (6639) WG10 IEC61850 [0..1] attribute LNGroupZ::ZAXN.Amp: NullIEC61850::NullIEC61850, presence conditions=[AtLeastOne(n)] +2024-09-08 15:10:02,617 [main] INFO Util - (3304) OTHER_CIM CIM [0..1] CIMDatatype attribute Package with space::My class._attr: Domain::AbsoluteDateTime +2024-09-08 15:10:02,618 [main] INFO Util - +2024-09-08 15:10:02,618 [main] INFO Util - ======= 5 multi-valued attributes: ======== +2024-09-08 15:10:02,618 [main] INFO Util - (1440) WG13 CIM protected [2..5] Primitive attribute Domain::AbsoluteDateTime.protectedAttribute: Domain::String +2024-09-08 15:10:02,618 [main] INFO Util - (3320) WG10 IEC61850 [0..*] attribute GenericModel::AccessPoint.Address: GenericModel::CommAddress +2024-09-08 15:10:02,618 [main] INFO Util - (3588) WG10 IEC61850 [1..*] attribute MetaModel::SERVER.serviceAccessPoints: CommonAcsiTypes::IPAddress +2024-09-08 15:10:02,618 [main] INFO Util - (4328) WG10 IEC61850 [1..*] FCDA attribute CDCStatusInfo::HST.hstVal: FCDAs::INT32_ST_dchg_dupd, array bounds=...maxPts-1 +2024-09-08 15:10:02,618 [main] INFO Util - (4405) WG10 IEC61850 [1..*] sub-data object CDCAnalogueInfo::HWYE.phsAHar: CDCAnalogueInfo::CMV, array bounds=0...numHar +2024-09-08 15:10:02,619 [main] INFO Util - +2024-09-08 15:10:02,619 [main] INFO Util - ======= 4 name spaces: ======== +2024-09-08 15:10:02,619 [main] INFO Util - namespace IEC61970CIM14v12:2011, 20119-08-01; UML version 2011 +2024-09-08 15:10:02,619 [main] INFO Util - namespace IEC61850-7-2:2007, 2011-08-01; UML version IEC61850UML02v07 +2024-09-08 15:10:02,619 [main] INFO Util - namespace IEC61850-7-3:2011B, 2011-08-01; UML version IEC61850UML02v07 +2024-09-08 15:10:02,619 [main] INFO Util - namespace IEC61850-7-4:2009A, 2011-08-01; UML version IEC61850UML02v07 +2024-09-08 15:10:02,619 [main] INFO Util - +2024-09-08 15:10:02,619 [main] INFO Util - ======= 3 versions: ======== +2024-09-08 15:10:02,619 [main] INFO Util - version={IEC61970CIM14v12, 20119-08-01} +2024-09-08 15:10:02,619 [main] INFO Util - version={IEC61850UML02v07, 2011-07-02} +2024-09-08 15:10:02,620 [main] INFO Util - version={IEC61850UML02v07, 2011-07-02} +2024-09-08 15:10:02,620 [main] INFO Util - +2024-09-08 15:10:02,620 [main] INFO Util - ======= 25 tag names (not listed objects using GUIDBasedOn): ======== +2024-09-08 15:10:02,620 [main] INFO Util - MoreAssoc: +2024-09-08 15:10:02,620 [main] INFO Util - (123) WG13 CIM association NamedWithTagsEverywhere, qname='Terminal.ConductingEquipment - ConductingEquipment.Terminals', tags={CE-TermAssoc=1, MoreAssoc=}, endAsSrc: myEnd: WG13 [0..*] ConductingEquipment.Terminals; tags={Role1=abc}; otherEnd: WG13 [1..1] Terminal.ConductingEquipment; tags={AnotherRole2=abc, targetEndTag=blah, Role2=xyz}, endAsTgt: myEnd: WG13 [1..1] Terminal.ConductingEquipment; tags={AnotherRole2=abc, targetEndTag=blah, Role2=xyz}; otherEnd: WG13 [0..*] ConductingEquipment.Terminals; tags={Role1=abc} +2024-09-08 15:10:02,620 [main] INFO Util - nsuri: +2024-09-08 15:10:02,621 [main] INFO Util - (2) OTHER_CIM CIM model package /TC57CIM: 1 diagrams, 0 classes, 4 packages, ; tags={nsprefix=cim, nsuri=http://cim123} +2024-09-08 15:10:02,621 [main] INFO Util - (56) WG14 CIM top package TC57CIM::IEC61968: 1 diagrams, 1 classes, 5 packages, efferent=[IEC61970], afferent=[IEC61970], ; tags={nsprefix=n14, nsuri=http://wg14/customNamespace} +2024-09-08 15:10:02,621 [main] INFO Util - (173) WG14 CIM package IEC61968::EmbeddedExtension: 1 diagrams, 0 classes, 0 packages, ; tags={nsuri=http://embeddedExt, nsprefix=eext} +2024-09-08 15:10:02,621 [main] INFO Util - (69) OTHER_CIM CIM top package <> MyCimExtensions::Ext1: 1 diagrams, 5 classes, 0 packages, ; tags={nsuri=http://toto, nsprefix=ext2} +2024-09-08 15:10:02,621 [main] INFO Util - (6707) WG14 CIM [0..1] Primitive attribute Other::Equipment.myExtension: Domain::Integer, tags={nsuri=http://extensions, nsprefix=eext} +2024-09-08 15:10:02,621 [main] INFO Util - assocTag: +2024-09-08 15:10:02,621 [main] INFO Util - (2096) WG13 CIM association, qname='InfClassContainingEmbeddedClass.C2 - InfClass2.C1', tags={assocTag=a1}, endAsSrc: myEnd: WG13 [0..1] InfClass2.C1; tags={srcTag=a2}; otherEnd: WG13 [0..1] InfClassContainingEmbeddedClass.C2, endAsTgt: myEnd: WG13 [0..1] InfClassContainingEmbeddedClass.C2; otherEnd: WG13 [0..1] InfClass2.C1; tags={srcTag=a2} +2024-09-08 15:10:02,621 [main] INFO Util - (228) WG13 CIM association <>, qname='BusNameMarker.PrivateConnectivityNode - ConnectivityNode.BusNameMarker', tags={assocTag=val}, endAsSrc: myEnd: WG13 <> [0..1] ConnectivityNode.BusNameMarker; tags={srcTag=valueSrcTag}; otherEnd: WG13 (private) <> [0..*] BusNameMarker.PrivateConnectivityNode; tags={endTag=valueEndTag}, endAsTgt: myEnd: WG13 (private) <> [0..*] BusNameMarker.PrivateConnectivityNode; tags={endTag=valueEndTag}; otherEnd: WG13 <> [0..1] ConnectivityNode.BusNameMarker; tags={srcTag=valueSrcTag} +2024-09-08 15:10:02,621 [main] INFO Util - (2142) OTHER_CIM CIM association, qname='Pear.SecondApple - Apple.SecondPear', tags={assocTag=value0}, endAsSrc: myEnd: OTHER_CIM <> [0..1] Apple.SecondPear; otherEnd: OTHER_CIM <> [1..1] Pear.SecondApple, endAsTgt: myEnd: OTHER_CIM <> [1..1] Pear.SecondApple; otherEnd: OTHER_CIM <> [0..1] Apple.SecondPear +2024-09-08 15:10:02,621 [main] INFO Util - someTag: +2024-09-08 15:10:02,622 [main] INFO Util - (5) WG13 CIM Core::PowerSystemResource operation <> public NullCIM bar(NullCIM par3, Float par2, NullCIM par); tags={someTag=value} +2024-09-08 15:10:02,622 [main] INFO Util - (4) WG13 CIM Core::PowerSystemResource operation public NullCIM foo(NullCIM par3, Float par2, NullCIM par); tags={someTag=value} +2024-09-08 15:10:02,622 [main] INFO Util - moveAfter: +2024-09-08 15:10:02,622 [main] INFO Util - (4279) WG10 IEC61850 [0..1] PackedEnumFCDA attribute CDCStatusInfo::DPS.subVal: FCDAs::DpStatus_SV, presence conditions=[MFsubst], tags={moveAfter=wrongsubEna, secondTagName=secondTagValue} +2024-09-08 15:10:02,622 [main] INFO Util - (4288) WG10 IEC61850 [0..1] EnumFCDA attribute CDCStatusInfo::ENS.subVal: FCDAs::EnumDA_SV, presence conditions=[MFsubst], tags={moveAfter=subEna} +2024-09-08 15:10:02,622 [main] INFO Util - (4369) WG10 IEC61850 [0..1] attribute CDCAnalogueInfo::CMV.subCVal: NullIEC61850::NullIEC61850, presence conditions=[MFsubst], tags={moveAfter=subEna} +2024-09-08 15:10:02,622 [main] INFO Util - (4411) WG10 IEC61850 [0..1] EnumFCDA attribute CDCAnalogueInfo::HWYE.angRef: FCDAs::PhaseAngleReference_CF_dchg, tags={moveAfter=evalTm} +2024-09-08 15:10:02,622 [main] INFO Util - (4467) WG10 IEC61850 [0..1] EnumFCDA attribute CDCControl::ENC.subVal: FCDAs::EnumDA_SV, presence conditions=[MFsubst], tags={moveAfter=subEna} +2024-09-08 15:10:02,622 [main] INFO Util - (4526) WG10 IEC61850 [0..1] attribute CDCControl::BAC.subVal: NullIEC61850::NullIEC61850, presence conditions=[MFsubst], tags={moveAfter=subEna} +2024-09-08 15:10:02,622 [main] INFO Util - secondTagName: +2024-09-08 15:10:02,623 [main] INFO Util - (4279) WG10 IEC61850 [0..1] PackedEnumFCDA attribute CDCStatusInfo::DPS.subVal: FCDAs::DpStatus_SV, presence conditions=[MFsubst], tags={moveAfter=wrongsubEna, secondTagName=secondTagValue} +2024-09-08 15:10:02,623 [main] INFO Util - dummyCimTag: +2024-09-08 15:10:02,623 [main] INFO Util - (853) WG13 CIM class Core::Terminal, 1 superclasses=[IdentifiedObject], 1 subclasses=[DumbSubterminal], 2 attributes, 4 associations; efferent classes: byAttr=[Boolean, Integer]; associated classes (bi-directional): asTarget=[Core::PowerSystemResource] asSource=[Core::ConductingEquipment, Topology::ConnectivityNode, Topology::TopologicalNode], tags={dummyCimTag=on terminal} +2024-09-08 15:10:02,624 [main] INFO Util - (850) WG13 CIM compound <> Core::OperatingParticipant, 1 superclasses=[IdentifiedObject], 1 associations; associated classes (bi-directional): asTarget=[Core::OperatingShare], tags={dummyCimTag=value} +2024-09-08 15:10:02,624 [main] INFO Util - (1) WG13 CIM Core::PowerSystemResource operation abstract public NullCIM[] GetWhatevers(BasePower[] multiples) throws Dummy,PSRType,Dummy2; tags={throws=Dummy,PSRType,Dummy2, dummyCimTag=on operation} +2024-09-08 15:10:02,624 [main] INFO Util - AnotherRole2: +2024-09-08 15:10:02,624 [main] INFO Util - WG13 [1..1] Terminal.ConductingEquipment; tags={AnotherRole2=abc, targetEndTag=blah, Role2=xyz} +2024-09-08 15:10:02,624 [main] INFO Util - nsprefix: +2024-09-08 15:10:02,625 [main] INFO Util - (2) OTHER_CIM CIM model package /TC57CIM: 1 diagrams, 0 classes, 4 packages, ; tags={nsprefix=cim, nsuri=http://cim123} +2024-09-08 15:10:02,625 [main] INFO Util - (56) WG14 CIM top package TC57CIM::IEC61968: 1 diagrams, 1 classes, 5 packages, efferent=[IEC61970], afferent=[IEC61970], ; tags={nsprefix=n14, nsuri=http://wg14/customNamespace} +2024-09-08 15:10:02,625 [main] INFO Util - (173) WG14 CIM package IEC61968::EmbeddedExtension: 1 diagrams, 0 classes, 0 packages, ; tags={nsuri=http://embeddedExt, nsprefix=eext} +2024-09-08 15:10:02,625 [main] INFO Util - (69) OTHER_CIM CIM top package <> MyCimExtensions::Ext1: 1 diagrams, 5 classes, 0 packages, ; tags={nsuri=http://toto, nsprefix=ext2} +2024-09-08 15:10:02,625 [main] INFO Util - (6707) WG14 CIM [0..1] Primitive attribute Other::Equipment.myExtension: Domain::Integer, tags={nsuri=http://extensions, nsprefix=eext} +2024-09-08 15:10:02,625 [main] INFO Util - dummyPackageTag: +2024-09-08 15:10:02,625 [main] INFO Util - (141) WG10 IEC61850 package IEC61850_7_4::DOEnums: 1 diagrams, 4 classes, 0 packages, ; tags={dummyPackageTag=tagValue} +2024-09-08 15:10:02,626 [main] INFO Util - CE-TermAssoc: +2024-09-08 15:10:02,626 [main] INFO Util - (123) WG13 CIM association NamedWithTagsEverywhere, qname='Terminal.ConductingEquipment - ConductingEquipment.Terminals', tags={CE-TermAssoc=1, MoreAssoc=}, endAsSrc: myEnd: WG13 [0..*] ConductingEquipment.Terminals; tags={Role1=abc}; otherEnd: WG13 [1..1] Terminal.ConductingEquipment; tags={AnotherRole2=abc, targetEndTag=blah, Role2=xyz}, endAsTgt: myEnd: WG13 [1..1] Terminal.ConductingEquipment; tags={AnotherRole2=abc, targetEndTag=blah, Role2=xyz}; otherEnd: WG13 [0..*] ConductingEquipment.Terminals; tags={Role1=abc} +2024-09-08 15:10:02,626 [main] INFO Util - tag: +2024-09-08 15:10:02,626 [main] INFO Util - (1370) WG13 CIM [0..1] Primitive attribute Domain::ApparentPower.value: Domain::Float, tags={tag=val} +2024-09-08 15:10:02,626 [main] INFO Util - scl: +2024-09-08 15:10:02,627 [main] INFO Util - (2045) WG10 IEC61850 enumeration <> DAEnums::SIUnitKind, 73 enum literals (codes used=[1, 10, 11, 2, 21, 22, 23, 24, 25, 26, 27, 28, 29, 3, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 4, 41, 42, 43, 44, 45, 46, 47, 48, 49, 5, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 6, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 7, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 8, 80, 81, 82, 83, 9]); afferent classes: byAttr=[SIUnit];, tags={scl=SIUnit} +2024-09-08 15:10:02,627 [main] INFO Util - (2044) WG10 IEC61850 enumeration <> DAEnums::MultiplierKind, 21 enum literals (codes used=[-1, -12, -15, -18, -2, -21, -24, -3, -6, -9, 0, 1, 12, 15, 18, 2, 21, 24, 3, 6, 9]); afferent classes: byAttr=[Multiplier];, tags={scl=multiplier} +2024-09-08 15:10:02,628 [main] INFO Util - (2039) WG10 IEC61850 enumeration <> DAEnums::PhaseAngleReferenceKind, 12 enum literals (codes used=[0, 1, 10, 11, 2, 3, 4, 5, 6, 7, 8, 9]); afferent classes: byAttr=[PhaseAngleReference];, tags={scl=angRef, angid} +2024-09-08 15:10:02,628 [main] INFO Util - (2568) WG10 IEC61850 enumeration <> DOEnums::HealthKind, 3 enum literals (codes used=[1, 2, 3]); afferent classes: byAttr=[Health];, tags={scl=EEHealth,Health,MechHealth,PhyHealth} +2024-09-08 15:10:02,628 [main] INFO Util - (2564) WG10 IEC61850 enumeration <> DOEnums::BehaviourModeKind, 5 enum literals (codes used=[1, 2, 3, 4, 5]); afferent classes: byAttr=[BehaviourMode];, tags={scl=Beh,Mod} +2024-09-08 15:10:02,628 [main] INFO Util - (2567) WG10 IEC61850 enumeration <> DOEnums::CalcMethodKind, 10 enum literals (codes used=[1, 10, 2, 3, 4, 5, 6, 7, 8, 9]); afferent classes: byAttr=[CalcMethod];, tags={scl=ClcMth} +2024-09-08 15:10:02,628 [main] INFO Util - GUIDBasedOn: +2024-09-08 15:10:02,628 [main] INFO Util - scl:emptyValue: +2024-09-08 15:10:02,628 [main] INFO Util - (3834) WG10 IEC61850 literal <> DAEnums::SIUnitKind.none = 1, tags={scl:emptyValue=} +2024-09-08 15:10:02,629 [main] INFO Util - (3823) WG10 IEC61850 literal <> DAEnums::MultiplierKind.none = 0, tags={scl:emptyValue=} +2024-09-08 15:10:02,629 [main] INFO Util - srcTag: +2024-09-08 15:10:02,629 [main] INFO Util - WG13 [0..1] InfClass2.C1; tags={srcTag=a2} +2024-09-08 15:10:02,629 [main] INFO Util - WG13 <> [0..1] ConnectivityNode.BusNameMarker; tags={srcTag=valueSrcTag} +2024-09-08 15:10:02,629 [main] INFO Util - iecRef: +2024-09-08 15:10:02,629 [main] INFO Util - (2368) WG10 IEC61850 function ProtectionEq::BusbarProt; efferent classes: byDep=[PDIF], tags={iecRef=, ieeeRef=87B, rsName=PBDF} +2024-09-08 15:10:02,629 [main] INFO Util - (2374) WG10 IEC61850 function ProtectionEq::DirectionalProt; efferent classes: byDep=[RDIR, PDIS], tags={iecRef=, ieeeRef=87B, rsName=PDIR} +2024-09-08 15:10:02,629 [main] INFO Util - (2375) WG10 IEC61850 function ProtectionEq::DirectionalPowerProt; efferent classes: byDep=[RDIR], tags={iecRef=P>, ieeeRef=32, rsName=PDPR} +2024-09-08 15:10:02,629 [main] INFO Util - (2385) WG10 IEC61850 function ProtectionEq::LineDifferentialProt; efferent classes: byDep=[PDIF], tags={iecRef=, ieeeRef=87L, rsName=PLDF} +2024-09-08 15:10:02,629 [main] INFO Util - (2394) WG10 IEC61850 function ProtectionEq::PowerFactorProt, tags={iecRef=cos\u03C6>, cos\u03C6<, ieeeRef=55, rsName=PPFR} +2024-09-08 15:10:02,630 [main] INFO Util - (2420) WG10 IEC61850 function ControlEq::AlarmHandler; efferent classes: byDep=[CALH], tags={iecRef=, ieeeRef=, rsName=CALH} +2024-09-08 15:10:02,631 [main] INFO Util - (2465) WG10 IEC61850 function MeasurementsAndMetering::ThreePhaseMeasurement; efferent classes: byDep=[MMXU], tags={iecRef=, ieeeRef=, rsName=MMXU} +2024-09-08 15:10:02,631 [main] INFO Util - (2475) WG10 IEC61850 function SystemWide::LogicalDeviceData; efferent classes: byDep=[LLN0], tags={iecRef=, ieeeRef=, rsName=LLN0} +2024-09-08 15:10:02,631 [main] INFO Util - (2477) WG10 IEC61850 function SystemWide::PhysicalDeviceData; efferent classes: byDep=[LPHD], tags={iecRef=, ieeeRef=, rsName=LPHD} +2024-09-08 15:10:02,631 [main] INFO Util - (2487) WG10 IEC61850 function PrimaryEq::AuxiliaryNetwork; efferent classes: byDep=[ZAXN], tags={iecRef=, ieeeRef=, rsName=ZAXN} +2024-09-08 15:10:02,631 [main] INFO Util - (2501) WG10 IEC61850 function PrimaryEq::GenericIO; efferent classes: byDep=[GGIO], tags={iecRef=, ieeeRef=, rsName=GGIO} +2024-09-08 15:10:02,631 [main] INFO Util - endTag: +2024-09-08 15:10:02,632 [main] INFO Util - WG13 (private) <> [0..*] BusNameMarker.PrivateConnectivityNode; tags={endTag=valueEndTag} +2024-09-08 15:10:02,632 [main] INFO Util - Role2: +2024-09-08 15:10:02,632 [main] INFO Util - WG13 [1..1] Terminal.ConductingEquipment; tags={AnotherRole2=abc, targetEndTag=blah, Role2=xyz} +2024-09-08 15:10:02,632 [main] INFO Util - Role1: +2024-09-08 15:10:02,632 [main] INFO Util - WG13 [0..*] ConductingEquipment.Terminals; tags={Role1=abc} +2024-09-08 15:10:02,632 [main] INFO Util - throws: +2024-09-08 15:10:02,632 [main] INFO Util - (1) WG13 CIM Core::PowerSystemResource operation abstract public NullCIM[] GetWhatevers(BasePower[] multiples) throws Dummy,PSRType,Dummy2; tags={throws=Dummy,PSRType,Dummy2, dummyCimTag=on operation} +2024-09-08 15:10:02,632 [main] INFO Util - (2) WG13 CIM Core::PowerSystemResource operation <> public void setSomething(String name) throws Unit; tags={throws=Unit} +2024-09-08 15:10:02,632 [main] INFO Util - rsName: +2024-09-08 15:10:02,632 [main] INFO Util - (2368) WG10 IEC61850 function ProtectionEq::BusbarProt; efferent classes: byDep=[PDIF], tags={iecRef=, ieeeRef=87B, rsName=PBDF} +2024-09-08 15:10:02,632 [main] INFO Util - (2374) WG10 IEC61850 function ProtectionEq::DirectionalProt; efferent classes: byDep=[RDIR, PDIS], tags={iecRef=, ieeeRef=87B, rsName=PDIR} +2024-09-08 15:10:02,632 [main] INFO Util - (2375) WG10 IEC61850 function ProtectionEq::DirectionalPowerProt; efferent classes: byDep=[RDIR], tags={iecRef=P>, ieeeRef=32, rsName=PDPR} +2024-09-08 15:10:02,632 [main] INFO Util - (2385) WG10 IEC61850 function ProtectionEq::LineDifferentialProt; efferent classes: byDep=[PDIF], tags={iecRef=, ieeeRef=87L, rsName=PLDF} +2024-09-08 15:10:02,632 [main] INFO Util - (2394) WG10 IEC61850 function ProtectionEq::PowerFactorProt, tags={iecRef=cos\u03C6>, cos\u03C6<, ieeeRef=55, rsName=PPFR} +2024-09-08 15:10:02,633 [main] INFO Util - (2420) WG10 IEC61850 function ControlEq::AlarmHandler; efferent classes: byDep=[CALH], tags={iecRef=, ieeeRef=, rsName=CALH} +2024-09-08 15:10:02,634 [main] INFO Util - (2465) WG10 IEC61850 function MeasurementsAndMetering::ThreePhaseMeasurement; efferent classes: byDep=[MMXU], tags={iecRef=, ieeeRef=, rsName=MMXU} +2024-09-08 15:10:02,634 [main] INFO Util - (2475) WG10 IEC61850 function SystemWide::LogicalDeviceData; efferent classes: byDep=[LLN0], tags={iecRef=, ieeeRef=, rsName=LLN0} +2024-09-08 15:10:02,635 [main] INFO Util - (2477) WG10 IEC61850 function SystemWide::PhysicalDeviceData; efferent classes: byDep=[LPHD], tags={iecRef=, ieeeRef=, rsName=LPHD} +2024-09-08 15:10:02,635 [main] INFO Util - (2487) WG10 IEC61850 function PrimaryEq::AuxiliaryNetwork; efferent classes: byDep=[ZAXN], tags={iecRef=, ieeeRef=, rsName=ZAXN} +2024-09-08 15:10:02,635 [main] INFO Util - (2501) WG10 IEC61850 function PrimaryEq::GenericIO; efferent classes: byDep=[GGIO], tags={iecRef=, ieeeRef=, rsName=GGIO} +2024-09-08 15:10:02,635 [main] INFO Util - ieeeRef: +2024-09-08 15:10:02,635 [main] INFO Util - (2368) WG10 IEC61850 function ProtectionEq::BusbarProt; efferent classes: byDep=[PDIF], tags={iecRef=, ieeeRef=87B, rsName=PBDF} +2024-09-08 15:10:02,635 [main] INFO Util - (2374) WG10 IEC61850 function ProtectionEq::DirectionalProt; efferent classes: byDep=[RDIR, PDIS], tags={iecRef=, ieeeRef=87B, rsName=PDIR} +2024-09-08 15:10:02,635 [main] INFO Util - (2375) WG10 IEC61850 function ProtectionEq::DirectionalPowerProt; efferent classes: byDep=[RDIR], tags={iecRef=P>, ieeeRef=32, rsName=PDPR} +2024-09-08 15:10:02,635 [main] INFO Util - (2385) WG10 IEC61850 function ProtectionEq::LineDifferentialProt; efferent classes: byDep=[PDIF], tags={iecRef=, ieeeRef=87L, rsName=PLDF} +2024-09-08 15:10:02,635 [main] INFO Util - (2394) WG10 IEC61850 function ProtectionEq::PowerFactorProt, tags={iecRef=cos\u03C6>, cos\u03C6<, ieeeRef=55, rsName=PPFR} +2024-09-08 15:10:02,635 [main] INFO Util - (2420) WG10 IEC61850 function ControlEq::AlarmHandler; efferent classes: byDep=[CALH], tags={iecRef=, ieeeRef=, rsName=CALH} +2024-09-08 15:10:02,635 [main] INFO Util - (2465) WG10 IEC61850 function MeasurementsAndMetering::ThreePhaseMeasurement; efferent classes: byDep=[MMXU], tags={iecRef=, ieeeRef=, rsName=MMXU} +2024-09-08 15:10:02,635 [main] INFO Util - (2475) WG10 IEC61850 function SystemWide::LogicalDeviceData; efferent classes: byDep=[LLN0], tags={iecRef=, ieeeRef=, rsName=LLN0} +2024-09-08 15:10:02,636 [main] INFO Util - (2477) WG10 IEC61850 function SystemWide::PhysicalDeviceData; efferent classes: byDep=[LPHD], tags={iecRef=, ieeeRef=, rsName=LPHD} +2024-09-08 15:10:02,636 [main] INFO Util - (2487) WG10 IEC61850 function PrimaryEq::AuxiliaryNetwork; efferent classes: byDep=[ZAXN], tags={iecRef=, ieeeRef=, rsName=ZAXN} +2024-09-08 15:10:02,636 [main] INFO Util - (2501) WG10 IEC61850 function PrimaryEq::GenericIO; efferent classes: byDep=[GGIO], tags={iecRef=, ieeeRef=, rsName=GGIO} +2024-09-08 15:10:02,636 [main] INFO Util - targetEndTag: +2024-09-08 15:10:02,636 [main] INFO Util - WG13 [1..1] Terminal.ConductingEquipment; tags={AnotherRole2=abc, targetEndTag=blah, Role2=xyz} +2024-09-08 15:10:02,636 [main] INFO Util - OTHER_CIM [0..*] Pear.Apple; tags={targetEndTag=value2} +2024-09-08 15:10:02,636 [main] INFO Util - assocEndTag: +2024-09-08 15:10:02,636 [main] INFO Util - OTHER_CIM [0..1] Apple.Pear; tags={assocEndTag=value} +2024-09-08 15:10:02,637 [main] INFO Util - +2024-09-08 15:10:02,637 [main] INFO Util - ======= 38 DO name decompositions: ======== +2024-09-08 15:10:02,637 [main] INFO Util - WG10 LogicalNodes::DomainLN.NamPlt ("Name plate of the logical node."): NamPlt = [{NamPlt=?}] +2024-09-08 15:10:02,637 [main] INFO Util - WG10 LogicalNodes::DomainLN.Health ("'Health.stVal' reflects the state of the logical node related hardware and softw..."): Health = [{Health=?}] +2024-09-08 15:10:02,637 [main] INFO Util - WG10 LogicalNodes::DomainLN.Mod ("'DomainLN.Mod.ctlVal' is used by operator to initiate the change in the operatin..."): Mod = [{Mod=?}] +2024-09-08 15:10:02,637 [main] INFO Util - WG10 LogicalNodes::DomainLN.CntRs ("Dumb DO, of type CMV for testing inheriting statistics-derived presence conditio..."): CntRs = [{CntRs=?}] +2024-09-08 15:10:02,637 [main] INFO Util - WG10 LogicalNodes::StatisticsLN.ClcExp ("If 'ClcExp.stVal=true', the calculation period of a statistical logical node has..."): ClcExp = [{ClcExp=?}] +2024-09-08 15:10:02,637 [main] INFO Util - WG10 LogicalNodes::StatisticsLN.ClcMth ("'ClcMth.setVal' is the kind of statistical calculation, specifying how the data ..."): ClcMth = [{ClcMth=?}] +2024-09-08 15:10:02,637 [main] INFO Util - WG10 LogicalNodes::EquipmentInterfaceLN.EEHealthAlmClc ("(too long name) State of external (electrical, mechanical or communication) equi..."): EEHealthAlmClc = [{EEHealth=?}, {Alm=Alarm}, {Clc=?}] +2024-09-08 15:10:02,637 [main] INFO Util - WG10 LNGroupL::KXYZ.aDummyAlm ("Whatever (testing lower case DO name)."): aDummyAlm = [{aDummy=Dummy lower-case term.}, {Alm=Alarm}] +2024-09-08 15:10:02,638 [main] INFO Util - WG10 LNGroupL::KXYZ.TotW ("'TotW.mag.f' is the total real power in a three-phase circuit [W]."): TotW = [{TotW=?}] +2024-09-08 15:10:02,638 [main] INFO Util - WG10 LNGroupL::KXYZ.WrongA ("Misused ENS (or ENG or ENC). Use derived CDC instead."): WrongA = [{Wrong=?}, {A=Current}] +2024-09-08 15:10:02,638 [main] INFO Util - WG10 LNGroupL::KXYZ.CorrectA ("Correctly using derived CDC for enums."): CorrectA = [{Correct=?}, {A=Current}] +2024-09-08 15:10:02,638 [main] INFO Util - WG10 LNGroupL::LPHD.PhyHealth ("'PhyHealth.stVal' reflects the state of the physical device related hardware and..."): PhyHealth = [{PhyHealth=?}] +2024-09-08 15:10:02,638 [main] INFO Util - WG10 LNGroupL::LPHD.RsStatAlmMthClc ("(too long name) 'RsStat.ctlVal=true' initiates the resetting of the IED statisti..."): RsStatAlmMthClc = [{RsStat=?}, {Alm=Alarm}, {MthClc=?}] +2024-09-08 15:10:02,638 [main] INFO Util - WG10 LNGroupL::LPHD.StatAlmMthClc ("(too long name) 'RsStat.ctlVal=true' initiates the resetting of the IED statisti..."): StatAlmMthClc = [{Stat=?}, {Alm=Alarm}, {MthClc=?}] +2024-09-08 15:10:02,638 [main] INFO Util - WG10 LNGroupL::LLN0.NamPlt ("Name plate of the logical device."): NamPlt = [{NamPlt=?}] +2024-09-08 15:10:02,638 [main] INFO Util - WG10 LNGroupL::LLN0.Beh (""): Beh = [{Beh=?}] +2024-09-08 15:10:02,638 [main] INFO Util - WG10 LNGroupL::LLN0.Health ("'Health.stVal' reflects the state of the logical device related hardware and sof..."): Health = [{Health=?}] +2024-09-08 15:10:02,638 [main] INFO Util - WG10 LNGroupC::CALH.GrAlm ("If 'GrAlm.stVal=true', a new group alarm has been activated by one of individual..."): GrAlm = [{Gr=?}, {Alm=Alarm}] +2024-09-08 15:10:02,638 [main] INFO Util - WG10 LNGroupC::CALH.GrWrn ("If 'GrWrn.stVal=true', a new group warning has been activated by one of individu..."): GrWrn = [{GrWrn=?}] +2024-09-08 15:10:02,638 [main] INFO Util - WG10 LNGroupC::CALH.ModBeh ("If 'GrWrn.stVal=true', a new group warning has been activated by one of individu..."): ModBeh = [{ModBeh=?}] +2024-09-08 15:10:02,639 [main] INFO Util - WG10 LNGroupG::GGIO.EEHealth ("'EEHealth.stVal' reflects the state of external (primary) equipment to which the..."): EEHealth = [{EEHealth=?}] +2024-09-08 15:10:02,639 [main] INFO Util - WG10 LNGroupG::GGIO.AnIn ("'AnIn.mag.f' is the generic analogue input n."): AnIn = [{A=Current}, {nIn=?}] +2024-09-08 15:10:02,639 [main] INFO Util - WG10 LNGroupG::GGIO.DPCSO ("'DPCSO.ctlVal=true' or 'DPCSO.ctlVal=false' controls the generic double point co..."): DPCSO = [{DPCSO=?}] +2024-09-08 15:10:02,639 [main] INFO Util - WG10 LNGroupM::MMXU.A ("'A' holds the currents for three phases."): A = [{A=Current}] +2024-09-08 15:10:02,639 [main] INFO Util - WG10 LNGroupM::MMXU.TotW ("'TotW.mag.f' is the total real power in a three-phase circuit [W]."): TotW = [{TotW=?}] +2024-09-08 15:10:02,639 [main] INFO Util - WG10 LNGroupM::MMXU.Desc ("Dummy native DO of non-statistical type."): Desc = [{Desc=?}] +2024-09-08 15:10:02,639 [main] INFO Util - WG10 LNGroupP::ProtectionLN.OpCntRs ("'OpCntRs.stVal' is the count of operations. It can be reset from remote, with th..."): OpCntRs = [{OpCntRs=?}] +2024-09-08 15:10:02,639 [main] INFO Util - WG10 LNGroupP::PDIF.Str ("If 'Str.general=true', a fault has been detected."): Str = [{Str=?}] +2024-09-08 15:10:02,639 [main] INFO Util - WG10 LNGroupP::PDIF.Op ("If 'Op.general=true', the function decided to trip. The trip itself is issued by..."): Op = [{Op=?}] +2024-09-08 15:10:02,639 [main] INFO Util - WG10 LNGroupP::PDIS.Str ("If 'Str.general=true', a distance fault has been detected."): Str = [{Str=?}] +2024-09-08 15:10:02,640 [main] INFO Util - WG10 LNGroupP::PDIS.Op ("If 'Op.general=true', the function decided to trip due to distance fault. The tr..."): Op = [{Op=?}] +2024-09-08 15:10:02,640 [main] INFO Util - WG10 LNGroupR::RDIR.Dir ("If 'Dir.general=true', a fault has been detected. 'Dir.dirGeneral' is the direct..."): Dir = [{Dir=?}] +2024-09-08 15:10:02,640 [main] INFO Util - WG10 LNGroupR::RDIR.TotW ("'TotW.mag.f' is the total real power in a three-phase circuit [W]."): TotW = [{TotW=?}] +2024-09-08 15:10:02,640 [main] INFO Util - WG10 LNGroupZ::ZAXN.Vol ("'Vol.mag.f' is the non-phase-related or DC voltage of the auxiliary network."): Vol = [{Vol=?}] +2024-09-08 15:10:02,640 [main] INFO Util - WG10 LNGroupZ::ZAXN.Amp ("'Amp.mag.f' is the non-phase-related current of the auxiliary network."): Amp = [{Amp=Current non-phase-related/Duplicated definition: Current non-phase-related}] +2024-09-08 15:10:02,640 [main] INFO Util - WG10 LNGroupZ::ZAXN.Mat ("For testing usage of class from other namespace."): Mat = [{Mat=?}] +2024-09-08 15:10:02,640 [main] INFO Util - WG10 LNGroupZ::ZAXN.MatCtl ("One more, for testing usage of class from other namespace."): MatCtl = [{MatCtl=?}] +2024-09-08 15:10:02,640 [main] INFO Util - WG10 LNGroupZ::ZAXN.Oth ("One more, for testing usage of class from other namespace and also underlying ty..."): Oth = [{Oth=?}] +2024-09-08 15:10:02,641 [main] INFO Util - +2024-09-08 15:10:02,641 [main] INFO Util - ======= 12 Abbreviated terms usage: ======== +2024-09-08 15:10:02,641 [main] INFO Util - A: +2024-09-08 15:10:02,641 [main] INFO Util - WG10 LNGroupL::KXYZ.WrongA +2024-09-08 15:10:02,641 [main] INFO Util - WG10 LNGroupL::KXYZ.CorrectA +2024-09-08 15:10:02,641 [main] INFO Util - WG10 LNGroupG::GGIO.AnIn +2024-09-08 15:10:02,641 [main] INFO Util - WG10 LNGroupM::MMXU.A +2024-09-08 15:10:02,641 [main] INFO Util - Abc: +2024-09-08 15:10:02,641 [main] INFO Util - Alm: +2024-09-08 15:10:02,641 [main] INFO Util - WG10 LogicalNodes::EquipmentInterfaceLN.EEHealthAlmClc +2024-09-08 15:10:02,641 [main] INFO Util - WG10 LNGroupL::KXYZ.aDummyAlm +2024-09-08 15:10:02,641 [main] INFO Util - WG10 LNGroupL::LPHD.RsStatAlmMthClc +2024-09-08 15:10:02,641 [main] INFO Util - WG10 LNGroupL::LPHD.StatAlmMthClc +2024-09-08 15:10:02,641 [main] INFO Util - WG10 LNGroupC::CALH.GrAlm +2024-09-08 15:10:02,641 [main] INFO Util - Alm2: +2024-09-08 15:10:02,642 [main] INFO Util - Amp: +2024-09-08 15:10:02,642 [main] INFO Util - WG10 LNGroupZ::ZAXN.Amp +2024-09-08 15:10:02,642 [main] INFO Util - Z: +2024-09-08 15:10:02,642 [main] INFO Util - Z0: +2024-09-08 15:10:02,642 [main] INFO Util - Z1: +2024-09-08 15:10:02,642 [main] INFO Util - Zro: +2024-09-08 15:10:02,642 [main] INFO Util - aDummy: +2024-09-08 15:10:02,642 [main] INFO Util - WG10 LNGroupL::KXYZ.aDummyAlm +2024-09-08 15:10:02,642 [main] INFO Util - km: +2024-09-08 15:10:02,642 [main] INFO Util - ppm: +2024-09-08 15:10:02,642 [main] INFO Util - time=[0:00:00.105] collected statistics for [WG13, WG14, WG16, OTHER_CIM, WG10, WG17, WG18, JWG25, WG19, OTHER_IEC61850] packages. +2024-09-08 15:10:02,642 [main] INFO Util - +2024-09-08 15:10:02,642 [main] INFO Util - +2024-09-08 15:10:02,642 [main] INFO Util - ================================================ +2024-09-08 15:10:02,642 [main] INFO Util - generating doc from TC57CIMProfiles (CIM), TC57CIM (CIM), IEC61850Domain (IEC61850), MyCimExtensions (CIM), My61850Extensions (IEC61850), NewNature (CIM) +2024-09-08 15:10:02,643 [main] INFO Util - ================================================ +2024-09-08 15:10:02,643 [main] INFO Util - +2024-09-08 15:10:02,643 [main] INFO Util - ------------------------------------------------ +2024-09-08 15:10:02,643 [main] INFO Util - collecting documentation content ... +2024-09-08 15:10:02,649 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Informative::Class1': UML1 +2024-09-08 15:10:02,649 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Informative::End1ForAssocClass': UML2 +2024-09-08 15:10:02,649 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Informative::End2ForAssocClass': UML3 +2024-09-08 15:10:02,649 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Informative::AssocClass': UML4 +2024-09-08 15:10:02,649 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Informative::HasIllegalTypeForAttr': UML5 +2024-09-08 15:10:02,649 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Informative::SomeSimpleType': UML6 +2024-09-08 15:10:02,649 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEC61970::IEC61970CIMVersion': UML7 +2024-09-08 15:10:02,649 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'InformativeAndPrivate::InfClass2': UML8 +2024-09-08 15:10:02,649 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'InformativeAndPrivate::InfClassContainingEmbeddedClass': UML9 +2024-09-08 15:10:02,649 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'InformativeAndPrivate::EmbeddedClass': UML10 +2024-09-08 15:10:02,649 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::AbsoluteDateTime': UML11 +2024-09-08 15:10:02,649 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::ActivePower': UML12 +2024-09-08 15:10:02,649 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::ActivePowerChangeRate': UML13 +2024-09-08 15:10:02,649 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::ApparentPower': UML14 +2024-09-08 15:10:02,649 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Boolean': UML15 +2024-09-08 15:10:02,649 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Currency': UML16 +2024-09-08 15:10:02,649 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Float': UML17 +2024-09-08 15:10:02,649 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Integer': UML18 +2024-09-08 15:10:02,649 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Money': UML19 +2024-09-08 15:10:02,649 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::PerCent': UML20 +2024-09-08 15:10:02,649 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Seconds': UML21 +2024-09-08 15:10:02,649 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::String': UML22 +2024-09-08 15:10:02,649 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitMultiplier': UML23 +2024-09-08 15:10:02,649 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol': UML24 +2024-09-08 15:10:02,649 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Voltage': UML25 +2024-09-08 15:10:02,649 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::WithSingleLiteral': UML26 +2024-09-08 15:10:02,649 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::YesNo': UML27 +2024-09-08 15:10:02,649 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::BreakerConfiguration': UML28 +2024-09-08 15:10:02,649 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::BusbarConfiguration': UML29 +2024-09-08 15:10:02,649 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::OperatingShare': UML30 +2024-09-08 15:10:02,649 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode': UML31 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::IdentifiedObject': UML32 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Topology::TestEnum': UML33 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithSomeIntCodes': UML34 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithStringCodes': UML35 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithNonUniqueCodes': UML36 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEC61968::IEC61968Version': UML37 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Assets::AssetInfo': UML38 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Other::BadDatatypes': UML39 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Other::Equipment': UML40 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Other::MyClass': UML41 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Other::EmptyEnum': UML42 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Other::NonEmptyPrimitive': UML43 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Other::AnotherBadDatatype': UML44 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Other::EmptyCompound': UML45 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'WG10::WG10UMLVersion': UML46 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::CommAddress': UML47 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenAssociationID': UML48 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenFC': UML49 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenPresenceConditions': UML50 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenTimeStamp': UML51 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::AccessPoint': UML52 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::FileSystem': UML53 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenAtomicType': UML54 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenBOOLEAN': UML55 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenCommonDataClass': UML56 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenCompactType': UML57 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenConstructedType': UML58 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenDataAttribute': UML59 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenDataObject': UML60 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenDataSet': UML61 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenFCD': UML62 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenFCDA': UML63 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenFile': UML64 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenIED': UML65 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenINT32U': UML66 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenLogicalDevice': UML67 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenLogicalNode': UML68 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenMCAA': UML69 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenObjRef': UML70 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenObjectName': UML71 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenServer': UML72 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenSubDataAttribute': UML73 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenSubDataObject': UML74 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenTPAA': UML75 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenTriggerConditions': UML76 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenVisString255': UML77 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEC61850_7_2::IEC61850_7_2Namespace': UML78 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FunctionalConstraints::FcKind': UML79 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TriggerOptions::TrgOpKind': UML80 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ACSIEnums::BsControlKind': UML81 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ACSIEnums::DpStatusKind': UML82 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::P_BOOLEAN': UML83 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::P_INT16U': UML84 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::P_INT32': UML85 +2024-09-08 15:10:02,650 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::P_INT32U': UML86 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::P_FLOAT32': UML87 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::P_UNICODE_STRING255': UML88 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::P_VISIBLE_STRING255': UML89 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::ObjectName': UML90 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::P_ObjectReference': UML91 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::P_PHYCOMADDR': UML92 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::P_TimeStamp': UML93 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::TimeQuality': UML94 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::TimeAccuracyKind': UML95 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::P_TriggerConditions': UML96 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::ServiceFcKind': UML97 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind': UML98 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValue': UML99 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrDefinition': UML100 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::NamedAttrValue': UML101 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CommonAcsiTypes::P_OCTET_STRING': UML102 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CommonAcsiTypes::IPAddress': UML103 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CommonAcsiTypes::MulticastAddress': UML104 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CommonAcsiTypes::Authentication': UML105 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CommonAcsiTypes::AccessView': UML106 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CommonAcsiTypes::ReportID': UML107 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CommonAcsiTypes::EntryID': UML108 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CommonAcsiTypes::EntryTime': UML109 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::IEC61850Object': UML110 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::SUBSTITUTION': UML111 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::CONTROL': UML112 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::TIME': UML113 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEC61850_7_3::IEC61850_7_3Namespace': UML114 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition': UML115 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind': UML116 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind': UML117 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseFaultDirectionKind': UML118 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseAngleReferenceKind': UML119 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ConstructedDAs::ValidityKind': UML120 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ConstructedDAs::DetailQual': UML121 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ConstructedDAs::SourceKind': UML122 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCControl::SPC': UML123 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEC61850_7_4::IEC61850_7_4Namespace': UML124 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations::AbbrTermAny': UML125 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations::AbbrTermZ': UML126 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ProtectionEq::BusbarProt': UML127 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ProtectionEq::DirectionalProt': UML128 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ProtectionEq::DirectionalPowerProt': UML129 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ProtectionEq::LineDifferentialProt': UML130 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ProtectionEq::PowerFactorProt': UML131 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ControlEq::AlarmHandler': UML132 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MeasurementsAndMetering::ThreePhaseMeasurement': UML133 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'SystemWide::LogicalDeviceData': UML134 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'SystemWide::PhysicalDeviceData': UML135 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PrimaryEq::AuxiliaryNetwork': UML136 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PrimaryEq::GenericIO': UML137 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::HealthKind': UML138 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::BehaviourModeKind': UML139 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::CalcMethodKind': UML140 +2024-09-08 15:10:02,651 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::BaseKind': UML141 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedCDCs::ACTTransient': UML142 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedCDCs::SPSTransient': UML143 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'WG17::WG17UMLVersion': UML144 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEC51850_7_420::IEC61850_7_420Namespace': UML145 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::MaterialKind': UML146 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::MaterialTransitionKind': UML147 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::OtherKind': UML148 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations_410::AbbrTermA': UML149 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MyCimExtensions::DFD_External1': UML150 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MyCimExtensions::DFD_DataStore1': UML151 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Ext1::Fruit': UML152 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Ext1::FruitBinKind': UML153 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Ext1::Village': UML154 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Package with space::My class': UML155 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Package with space::Other-with_invalid name': UML156 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Ext2::Animal': UML157 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Topology::BusNameMarker': UML158 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::Terminal': UML159 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Topology::DumbSubterminal': UML160 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::BaseVoltage': UML161 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::BasePower': UML162 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::SubGeographicalRegion': UML163 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::geographicalRegion': UML164 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::OperatingParticipant': UML165 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PowerSystemResource': UML166 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::ConnectivityNodeContainer': UML167 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Ext1::Pear': UML168 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::EquipmentContainer': UML169 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::Bay': UML170 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::Substation': UML171 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::VoltageLevel': UML172 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::Equipment': UML173 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::ConductingEquipment': UML174 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Topology::ConnectivityNode': UML175 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Topology::TopologicalIsland': UML176 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Topology::TopologicalNode': UML177 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Other::MyClass': UML178 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Other::AttrDuplication': UML179 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::ServiceAccessPoint': UML180 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenLN0': UML181 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::FILEReference': UML182 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::LDReference': UML183 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::LNReference': UML184 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::CDCReference': UML185 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::FCDReference': UML186 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::FCDAReference': UML187 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::CBReference': UML188 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::LOGReference': UML189 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::LNOwnedDSReference': UML190 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::NonPersistentDSReference': UML191 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::HierarchyIEC61850Object': UML192 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::NamedIEC61850Object': UML193 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::LD': UML194 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::LN': UML195 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::LNPHD': UML196 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LNGroupL::LPHD': UML197 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::LN0': UML198 +2024-09-08 15:10:02,652 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LNGroupL::LLN0': UML199 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::LNDOM': UML200 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LogicalNodes::DomainLN': UML201 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LogicalNodes::StatisticsLN': UML202 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LNGroupG::GGIO': UML203 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LNGroupM::MMXU': UML204 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LogicalNodes::EquipmentInterfaceLN': UML205 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LNGroupZ::ZAXN': UML206 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LNGroupL::KXYZ': UML207 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LNGroupC::CALH': UML208 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LNGroupP::ProtectionLN': UML209 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LNGroupP::PDIF': UML210 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LNGroupP::PDIS': UML211 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LNGroupP::PDISExt': UML212 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LNGroupP::PDF2': UML213 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LNGroupR::RDIR': UML214 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::CDC': UML215 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::PrimitiveCDC': UML216 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CommonDataClasses::BasePrimitiveCDC': UML217 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCServiceTracking::CST': UML218 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCServiceTracking::BTS': UML219 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCServiceTracking::CTS': UML220 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCServiceTracking::GTS': UML221 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCServiceTracking::LTS': UML222 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCServiceTracking::MTS': UML223 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCServiceTracking::NTS': UML224 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCServiceTracking::OTS': UML225 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCServiceTracking::STS': UML226 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCServiceTracking::UTS': UML227 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CommonDataClasses::SubstitutionCDC': UML228 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCStatusInfo::DPS': UML229 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCStatusInfo::ENS': UML230 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedCDCs::ENSBehaviourMode': UML231 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedCDCs::ENSHealth': UML232 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedCDCs::ENSEnumDA': UML233 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedCDCs_7_420::ENSMaterial': UML234 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedCDCs_7_420::ENSOther': UML235 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCAnalogueInfo::CMV': UML236 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCControl::ControllableCDC': UML237 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCControl::ENC': UML238 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedCDCs::ENCBehaviourMode': UML239 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedCDCs_7_420::ENCMaterial': UML240 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCControl::BAC': UML241 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCStatusInfo::EXY': UML242 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedCDCs::EXYBehaviourMode': UML243 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCStatusInfo::ACD': UML244 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCStatusInfo::HST': UML245 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCStatusSet::ENG': UML246 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedCDCs::ENGCalcMethod': UML247 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCDescription::LPL': UML248 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::ComposedCDC': UML249 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CommonDataClasses::BaseComposedCDC': UML250 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCAnalogueInfo::HarmonicMeasurandCDC': UML251 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCAnalogueInfo::HWYE': UML252 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::FCDA': UML253 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_BL': UML254 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::BOOLEAN_BL': UML255 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_CF': UML256 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::EnumFCDA_CF': UML257 +2024-09-08 15:10:02,653 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_CF_dchg': UML258 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::EnumFCDA_CF_dchg': UML259 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::EnumDA_CF_dchg': UML260 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::PhaseAngleReference_CF_dchg': UML261 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::BOOLEAN_CF_dchg': UML262 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::INT16U_CF_dchg': UML263 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::INT32U_CF_dchg': UML264 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::INT32_CF_dchg': UML265 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::RangeConfig_CF_dchg': UML266 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::INT16U_CF': UML267 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_DC': UML268 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::Point_DC': UML269 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::UNICODE_STRING255_DC': UML270 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_EX': UML271 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::VISIBLE_STRING255_EX': UML272 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_MX': UML273 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::EnumFCDA_MX': UML274 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_MX_dchg': UML275 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::AnalogueValue_MX_dchg': UML276 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::BOOLEAN_MX_dchg': UML277 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_MX_dchg_dupd': UML278 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::AnalogueValue_MX_dchg_dupd': UML279 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_MX_qchg': UML280 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::Quality_MX_qchg': UML281 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::AnalogueValue_MX': UML282 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_OR': UML283 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_OR_dchg': UML284 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::BOOLEAN_OR_dchg': UML285 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_SE': UML286 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_SE_dchg': UML287 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::EnumFCDA_SE_dchg': UML288 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::BOOLEAN_SE': UML289 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::Point_SE': UML290 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_SG': UML291 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_SG_dchg': UML292 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::EnumFCDA_SG_dchg': UML293 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::BOOLEAN_SG': UML294 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::Point_SG': UML295 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_SP': UML296 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_SP_dchg': UML297 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::BOOLEAN_SP_dchg': UML298 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::Point_SP': UML299 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_ST': UML300 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::EnumFCDA_ST': UML301 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_ST_dchg': UML302 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::EnumFCDA_ST_dchg': UML303 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::PackedEnumFCDA_SP_dchg': UML304 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::DpStatus_ST_dchg': UML305 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::EnumDA_ST_dchg': UML306 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::PhaseFaultDirection_ST_dchg': UML307 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::BOOLEAN_ST_dchg': UML308 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::INT32_ST_dchg': UML309 +2024-09-08 15:10:02,654 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_ST_dchg_dupd': UML310 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::EnumFCDA_ST_dchg_dupd': UML311 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::EnumDA_ST_dchg_dupd': UML312 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::INT32_ST_dchg_dupd': UML313 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_ST_dupd': UML314 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_ST_qchg': UML315 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::Quality_ST_qchg': UML316 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::TimeStamp_ST': UML317 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_SV': UML318 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::EnumFCDA_SV': UML319 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::PackedEnumFCDA_SV': UML320 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::DpStatus_SV': UML321 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::EnumDA_SV': UML322 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::BOOLEAN_SV': UML323 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::Quality_SV': UML324 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::DA': UML325 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::PrimitiveDA': UML326 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BasicDAs::PHYCOMADDR': UML327 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BasicDAs::ObjectReference': UML328 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BasicDAs::VISIBLE_STRING255': UML329 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BasicDAs::UNICODE_STRING255': UML330 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BasicDAs::INT32U': UML331 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BasicDAs::INT32': UML332 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BasicDAs::INT16U': UML333 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BasicDAs::FLOAT32': UML334 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BasicDAs::BOOLEAN': UML335 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::PackedPrimitiveDA': UML336 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BasicDAs::TriggerConditions': UML337 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BasicDAs::TimeStamp': UML338 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ConstructedDAs::Quality': UML339 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::EnumDA': UML340 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::PackedEnumDA': UML341 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BasicDAs::BsControl': UML342 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BasicDAs::DpStatus': UML343 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ImplicitDAs::SIUnit': UML344 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ImplicitDAs::Multiplier': UML345 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ImplicitDAs::PhaseFaultDirection': UML346 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ImplicitDAs::PhaseAngleReference': UML347 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedDAs::BehaviourMode': UML348 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedDAs::CalcMethod': UML349 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedDAs::Health': UML350 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedDAs_7_420::Material': UML351 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedDAs_7_420::Material_control': UML352 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedDAs_7_420::Other': UML353 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::ComposedDA': UML354 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ConstructedDAs::AnalogueValue': UML355 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ConstructedDAs::RangeConfig': UML356 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ConstructedDAs::Unit': UML357 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ConstructedDAs::Point': UML358 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::DS': UML359 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::LNOwnedDS': UML360 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::ConfiguredDS': UML361 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::PersistentDS': UML362 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::NonPersistentDS': UML363 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::ControlBlock': UML364 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::RCB': UML365 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::BRCB': UML366 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::URCB': UML367 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::LCB': UML368 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::GCB': UML369 +2024-09-08 15:10:02,655 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::SVCB': UML370 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::MSVCB': UML371 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::USVCB': UML372 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::SGCB': UML373 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::LOG': UML374 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::IED': UML375 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::SERVER': UML376 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::FCD': UML377 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::FILE': UML378 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::TPAA': UML379 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::MCAA': UML380 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedCDCs::SPCTransient': UML381 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::ExtBaseKind': UML382 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Ext1::Apple': UML383 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Ext1::Strawberry': UML384 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Ext2::Dog': UML385 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Ext2::Horse': UML386 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Currency.USD': UML387 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Currency.EUR': UML388 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Currency.AUD': UML389 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Currency.CAD': UML390 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Currency.CHF': UML391 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Currency.CNY': UML392 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Currency.DKK': UML393 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Currency.GBP': UML394 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Currency.JPY': UML395 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Currency.NOK': UML396 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Currency.RUR': UML397 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Currency.SEK': UML398 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Currency.INR': UML399 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Currency.other': UML400 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitMultiplier.p': UML401 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitMultiplier.n': UML402 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitMultiplier.micro': UML403 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitMultiplier.m': UML404 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitMultiplier.c': UML405 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitMultiplier.d': UML406 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitMultiplier.k': UML407 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitMultiplier.M': UML408 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitMultiplier.G': UML409 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitMultiplier.T': UML410 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitMultiplier.none': UML411 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.VA': UML412 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.W': UML413 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.VAr': UML414 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.VAh': UML415 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.Wh': UML416 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.VArh': UML417 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.V': UML418 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.ohm': UML419 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.A': UML420 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.F': UML421 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.H': UML422 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.ºC': UML423 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.s': UML424 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.min': UML425 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.h': UML426 +2024-09-08 15:10:02,656 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.deg': UML427 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.rad': UML428 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.J': UML429 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.N': UML430 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.S': UML431 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.none': UML432 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.Hz': UML433 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.g': UML434 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.Pa': UML435 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.m': UML436 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.m2': UML437 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.m3': UML438 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.V/VAr': UML439 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.W/Hz': UML440 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.J/s': UML441 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.s-1': UML442 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.kg/J': UML443 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.W/s': UML444 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.Hz-1': UML445 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::WithSingleLiteral.singleLiteral': UML446 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::YesNo.Yes': UML447 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::YesNo.No': UML448 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::BreakerConfiguration.singleBreaker': UML449 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::BreakerConfiguration.breakerAndAHalf': UML450 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::BreakerConfiguration.doubleBreaker': UML451 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::BreakerConfiguration.noBreaker': UML452 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::BusbarConfiguration.singleBus': UML453 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::BusbarConfiguration.doubleBus': UML454 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::BusbarConfiguration.mainWithTransfer': UML455 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::BusbarConfiguration.ringBus': UML456 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.ABCN': UML457 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.ABC': UML458 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.ABN': UML459 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.ACN': UML460 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.BCN': UML461 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.AB': UML462 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.AC': UML463 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.BC': UML464 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.AN': UML465 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.BN': UML466 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.CN': UML467 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.A': UML468 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.B': UML469 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.C': UML470 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.N': UML471 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.splitSecondary1N': UML472 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.splitSecondary2N': UML473 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.splitSecondary12N': UML474 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Topology::TestEnum.J/m²': UML475 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Topology::TestEnum.µ': UML476 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithSomeIntCodes.lit10': UML477 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithSomeIntCodes.lit20noCode': UML478 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithSomeIntCodes.lit30': UML479 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithSomeIntCodes.lit40': UML480 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithSomeIntCodes.lit50': UML481 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithSomeIntCodes.lit60noCode': UML482 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithSomeIntCodes.lit70': UML483 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithStringCodes.str1': UML484 +2024-09-08 15:10:02,657 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithStringCodes.str2': UML485 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithStringCodes.str3noCode': UML486 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithStringCodes.str4': UML487 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithStringCodes.str5': UML488 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithNonUniqueCodes.c1': UML489 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithNonUniqueCodes.c2': UML490 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithNonUniqueCodes.c3': UML491 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithNonUniqueCodes.c4': UML492 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithNonUniqueCodes.c5': UML493 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithNonUniqueCodes.c6': UML494 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithNonUniqueCodes.c7': UML495 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithNonUniqueCodes.c8': UML496 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FunctionalConstraints::FcKind.ST': UML497 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FunctionalConstraints::FcKind.MX': UML498 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FunctionalConstraints::FcKind.SP': UML499 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FunctionalConstraints::FcKind.SV': UML500 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FunctionalConstraints::FcKind.CF': UML501 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FunctionalConstraints::FcKind.DC': UML502 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FunctionalConstraints::FcKind.SG': UML503 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FunctionalConstraints::FcKind.SE': UML504 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FunctionalConstraints::FcKind.SR': UML505 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FunctionalConstraints::FcKind.OR': UML506 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FunctionalConstraints::FcKind.BL': UML507 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FunctionalConstraints::FcKind.EX': UML508 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FunctionalConstraints::FcKind.XX': UML509 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TriggerOptions::TrgOpKind.dchg': UML510 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TriggerOptions::TrgOpKind.qchg': UML511 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TriggerOptions::TrgOpKind.dupd': UML512 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TriggerOptions::TrgOpKind.dchg, dupd': UML513 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ACSIEnums::BsControlKind.stop': UML514 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ACSIEnums::BsControlKind.lower': UML515 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ACSIEnums::BsControlKind.higher': UML516 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ACSIEnums::BsControlKind.reserved': UML517 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ACSIEnums::DpStatusKind.intermediateState': UML518 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ACSIEnums::DpStatusKind.offOrFalse': UML519 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ACSIEnums::DpStatusKind.onOrTrue': UML520 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ACSIEnums::DpStatusKind.badState': UML521 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::TimeAccuracyKind.T0': UML522 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::TimeAccuracyKind.T1': UML523 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::TimeAccuracyKind.T2': UML524 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::TimeAccuracyKind.T3': UML525 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::TimeAccuracyKind.T4': UML526 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::TimeAccuracyKind.T5': UML527 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::TimeAccuracyKind.unspecified': UML528 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::ServiceFcKind.SP': UML529 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::ServiceFcKind.BR': UML530 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::ServiceFcKind.RP': UML531 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::ServiceFcKind.LG': UML532 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::ServiceFcKind.GO': UML533 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::ServiceFcKind.MS': UML534 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::ServiceFcKind.US': UML535 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::ServiceFcKind.XX': UML536 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_BOOLEAN': UML537 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_INT8': UML538 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_INT8U': UML539 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_INT16': UML540 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_INT16U': UML541 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_INT24U': UML542 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_INT32': UML543 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_INT32U': UML544 +2024-09-08 15:10:02,658 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_INT64': UML545 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_FLOAT32': UML546 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_OCTET_STRING64': UML547 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_VISIBLE_STRING64': UML548 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_VISIBLE_STRING255': UML549 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_UNICODE_STRING255': UML550 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_TimeStamp': UML551 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.Quality': UML552 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_ObjectReference': UML553 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_PHYCOMADDR': UML554 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_TriggerConditions': UML555 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.M': UML556 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.O': UML557 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MFsubst': UML558 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.AtLeastOne(n)': UML559 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.AllOrNonePerGroup(n)': UML560 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.AtMostOne': UML561 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MF(sibling)': UML562 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.AllOnlyOneGroup(n)': UML563 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MOln0': UML564 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MFln0': UML565 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MOlnNs': UML566 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MOdataNs': UML567 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MOcdcNs': UML568 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MFscaledAV': UML569 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MFscaledMagV': UML570 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MFscaledAngV': UML571 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MFsg': UML572 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.OFsg': UML573 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MFsgAtLeastOne': UML574 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MFnsg': UML575 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.OFnsg': UML576 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MFnsgAtLeastOne': UML577 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MFrms': UML578 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.Mmulti': UML579 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.Omulti': UML580 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.OmultiRange(min, max)': UML581 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MOcond(condID)': UML582 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MF(condID)': UML583 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.OF(condID)': UML584 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MOrootLD': UML585 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.none': UML586 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.m': UML587 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.kg': UML588 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.s': UML589 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.A': UML590 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.K': UML591 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.mol': UML592 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.cd': UML593 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.deg': UML594 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.rad': UML595 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.sr': UML596 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.Gy': UML597 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.Bq': UML598 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.°C': UML599 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.Sv': UML600 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.F': UML601 +2024-09-08 15:10:02,659 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.C': UML602 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.S': UML603 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.H': UML604 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.V': UML605 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.ohm': UML606 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.J': UML607 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.N': UML608 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.Hz': UML609 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.lx': UML610 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.Lm': UML611 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.Wb': UML612 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.T': UML613 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.W': UML614 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.Pa': UML615 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.m²': UML616 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.m³': UML617 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.m/s': UML618 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.m/s²': UML619 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.m³/s': UML620 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.m/m³': UML621 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.M': UML622 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.kg/m³': UML623 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.m²/s': UML624 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.W/m K': UML625 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.J/K': UML626 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.ppm': UML627 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.1/s': UML628 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.rad/s': UML629 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.W/m²': UML630 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.J/m²': UML631 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.S/m': UML632 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.K/s': UML633 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.Pa/s': UML634 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.J/kg K': UML635 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.VA': UML636 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.Watts': UML637 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.VAr': UML638 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.phi': UML639 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.cos(phi)': UML640 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.Vs': UML641 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.V²': UML642 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.As': UML643 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.A²': UML644 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.A²t': UML645 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.VAh': UML646 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.Wh': UML647 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.VArh': UML648 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.V/Hz': UML649 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.Hz/s': UML650 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.char': UML651 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.char/s': UML652 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.kgm²': UML653 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.dB': UML654 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.J/Wh': UML655 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.W/s': UML656 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.l/s': UML657 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.dBm': UML658 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.y': UML659 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.z': UML660 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.a': UML661 +2024-09-08 15:10:02,660 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.f': UML662 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.p': UML663 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.n': UML664 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.µ': UML665 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.m': UML666 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.c': UML667 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.d': UML668 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.none': UML669 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.da': UML670 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.h': UML671 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.k': UML672 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.M': UML673 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.G': UML674 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.T': UML675 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.P': UML676 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.E': UML677 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.Z': UML678 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.Y': UML679 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseFaultDirectionKind.unknown': UML680 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseFaultDirectionKind.forward': UML681 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseFaultDirectionKind.backward': UML682 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseAngleReferenceKind.Va': UML683 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseAngleReferenceKind.Vb': UML684 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseAngleReferenceKind.Vc': UML685 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseAngleReferenceKind.Aa': UML686 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseAngleReferenceKind.Ab': UML687 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseAngleReferenceKind.Ac': UML688 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseAngleReferenceKind.Vab': UML689 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseAngleReferenceKind.Vbc': UML690 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseAngleReferenceKind.Vca': UML691 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseAngleReferenceKind.Vother': UML692 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseAngleReferenceKind.Aother': UML693 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseAngleReferenceKind.Synchrophasor': UML694 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ConstructedDAs::ValidityKind.good': UML695 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ConstructedDAs::ValidityKind.invalid': UML696 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ConstructedDAs::ValidityKind.reserved': UML697 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ConstructedDAs::ValidityKind.questionable': UML698 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ConstructedDAs::SourceKind.process': UML699 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ConstructedDAs::SourceKind.substituted': UML700 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations::AbbrTermAny.A': UML701 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations::AbbrTermAny.Z': UML702 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations::AbbrTermAny.aDummy': UML703 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations::AbbrTermAny.Alm': UML704 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations::AbbrTermAny.Z1': UML705 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations::AbbrTermAny.Amp': UML706 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations::AbbrTermAny.ppm': UML707 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations::AbbrTermAny.km': UML708 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations::AbbrTermZ.Z0': UML709 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations::AbbrTermZ.Zro': UML710 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::HealthKind.Ok': UML711 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::HealthKind.Warning': UML712 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::HealthKind.Alarm': UML713 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::BehaviourModeKind.on': UML714 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::BehaviourModeKind.on-blocked': UML715 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::BehaviourModeKind.test': UML716 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::BehaviourModeKind.test/blocked': UML717 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::BehaviourModeKind.off': UML718 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::CalcMethodKind.UNSPECIFIED': UML719 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::CalcMethodKind.TRUE_RMS': UML720 +2024-09-08 15:10:02,661 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::CalcMethodKind.PEAK_FUNDAMENTAL': UML721 +2024-09-08 15:10:02,662 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::CalcMethodKind.RMS_FUNDAMENTAL': UML722 +2024-09-08 15:10:02,662 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::CalcMethodKind.MIN': UML723 +2024-09-08 15:10:02,662 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::CalcMethodKind.MAX': UML724 +2024-09-08 15:10:02,662 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::CalcMethodKind.AVG': UML725 +2024-09-08 15:10:02,662 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::CalcMethodKind.SDV': UML726 +2024-09-08 15:10:02,662 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::CalcMethodKind.PREDICTION': UML727 +2024-09-08 15:10:02,662 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::CalcMethodKind.RATE': UML728 +2024-09-08 15:10:02,662 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::BaseKind.bk1': UML729 +2024-09-08 15:10:02,662 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::BaseKind.bk2': UML730 +2024-09-08 15:10:02,662 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::BaseKind.bk3': UML731 +2024-09-08 15:10:02,662 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::MaterialKind.mat1': UML732 +2024-09-08 15:10:02,662 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::MaterialKind.mat2': UML733 +2024-09-08 15:10:02,662 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::MaterialKind.mat3': UML734 +2024-09-08 15:10:02,662 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::MaterialTransitionKind.trans1': UML735 +2024-09-08 15:10:02,662 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::MaterialTransitionKind.trans2': UML736 +2024-09-08 15:10:02,662 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::MaterialTransitionKind.trans3': UML737 +2024-09-08 15:10:02,662 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::OtherKind.mat1': UML738 +2024-09-08 15:10:02,662 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::OtherKind.mat2': UML739 +2024-09-08 15:10:02,662 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::OtherKind.mat3': UML740 +2024-09-08 15:10:02,662 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations_410::AbbrTermA.Abc': UML741 +2024-09-08 15:10:02,662 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations_410::AbbrTermA.Alm2': UML742 +2024-09-08 15:10:02,662 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations_410::AbbrTermA.Amp': UML743 +2024-09-08 15:10:02,662 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Ext1::FruitBinKind.plastic': UML744 +2024-09-08 15:10:02,662 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Ext1::FruitBinKind.straw': UML745 +2024-09-08 15:10:02,662 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Ext1::FruitBinKind.glass': UML746 +2024-09-08 15:10:02,662 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::ExtBaseKind.ebk1': UML747 +2024-09-08 15:10:02,662 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::ExtBaseKind.ebk2': UML748 +2024-09-08 15:10:02,662 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::ExtBaseKind.ebk3': UML749 +2024-09-08 15:10:02,671 [main] INFO PackageDocImpl - collecting doc for package TC57CIMProfiles ... +2024-09-08 15:10:02,674 [main] INFO PackageDocImpl - collecting doc for package TC57CIM ... +2024-09-08 15:10:02,674 [main] INFO PackageDocImpl - collecting doc for package IEC61970 ... +2024-09-08 15:10:02,674 [main] INFO DocCollectorImpl - >> retained scoped CIM/IEC61970CIM14v12/IEC61970 +2024-09-08 15:10:02,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbsoluteDateTime, hphSpec = 'aaùAbsoluteDateTimeùUML11ùdd' +2024-09-08 15:10:02,688 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,690 [main] INFO PackageDocImpl - collecting doc for package Domain ... +2024-09-08 15:10:02,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Float, hphSpec = 'aaùFloatùUML17ùdd' +2024-09-08 15:10:02,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitSymbol, hphSpec = 'aaùUnitSymbolùUML24ùdd' +2024-09-08 15:10:02,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitMultiplier, hphSpec = 'aaùUnitMultiplierùUML23ùdd' +2024-09-08 15:10:02,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitSymbol, hphSpec = 'aaùUnitSymbolùUML24ùdd' +2024-09-08 15:10:02,691 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitMultiplier, hphSpec = 'aaùUnitMultiplierùUML23ùdd' +2024-09-08 15:10:02,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Float, hphSpec = 'aaùFloatùUML17ùdd' +2024-09-08 15:10:02,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitSymbol, hphSpec = 'aaùUnitSymbolùUML24ùdd' +2024-09-08 15:10:02,692 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitMultiplier, hphSpec = 'aaùUnitMultiplierùUML23ùdd' +2024-09-08 15:10:02,694 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Float, hphSpec = 'aaùFloatùUML17ùdd' +2024-09-08 15:10:02,694 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Currency, hphSpec = 'aaùCurrencyùUML16ùdd' +2024-09-08 15:10:02,694 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitMultiplier, hphSpec = 'aaùUnitMultiplierùUML23ùdd' +2024-09-08 15:10:02,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Float, hphSpec = 'aaùFloatùUML17ùdd' +2024-09-08 15:10:02,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitSymbol, hphSpec = 'aaùUnitSymbolùUML24ùdd' +2024-09-08 15:10:02,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitMultiplier, hphSpec = 'aaùUnitMultiplierùUML23ùdd' +2024-09-08 15:10:02,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Float, hphSpec = 'aaùFloatùUML17ùdd' +2024-09-08 15:10:02,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitSymbol, hphSpec = 'aaùUnitSymbolùUML24ùdd' +2024-09-08 15:10:02,695 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitMultiplier, hphSpec = 'aaùUnitMultiplierùUML23ùdd' +2024-09-08 15:10:02,698 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Float, hphSpec = 'aaùFloatùUML17ùdd' +2024-09-08 15:10:02,698 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitSymbol, hphSpec = 'aaùUnitSymbolùUML24ùdd' +2024-09-08 15:10:02,699 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitMultiplier, hphSpec = 'aaùUnitMultiplierùUML23ùdd' +2024-09-08 15:10:02,699 [main] INFO PackageDocImpl - collecting doc for package Core ... +2024-09-08 15:10:02,699 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,699 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ApparentPower, hphSpec = 'aaùApparentPowerùUML14ùdd' +2024-09-08 15:10:02,699 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,700 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,700 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,700 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,700 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,700 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,700 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,700 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-08 15:10:02,700 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-08 15:10:02,700 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,700 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,700 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,700 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,700 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,700 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,700 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-08 15:10:02,700 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-08 15:10:02,700 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitSymbol, hphSpec = 'aaùUnitSymbolùUML24ùdd' +2024-09-08 15:10:02,700 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-08 15:10:02,701 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConductingEquipment, hphSpec = 'aaùConductingEquipmentùUML174ùdd' +2024-09-08 15:10:02,701 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VoltageLevel, hphSpec = 'aaùVoltageLevelùUML172ùdd' +2024-09-08 15:10:02,701 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TopologicalNode, hphSpec = 'aaùTopologicalNodeùUML177ùdd' +2024-09-08 15:10:02,701 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MyClass, hphSpec = 'aaùMyClassùUML178ùdd' +2024-09-08 15:10:02,701 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-08 15:10:02,701 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AttrDuplication, hphSpec = 'aaùAttrDuplicationùUML179ùdd' +2024-09-08 15:10:02,701 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-08 15:10:02,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EquipmentContainer, hphSpec = 'aaùEquipmentContainerùUML169ùdd' +2024-09-08 15:10:02,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNodeContainer, hphSpec = 'aaùConnectivityNodeContainerùUML167ùdd' +2024-09-08 15:10:02,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Pear, hphSpec = 'aaùPearùUML168ùdd' +2024-09-08 15:10:02,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Fruit, hphSpec = 'aaùFruitùUML152ùdd' +2024-09-08 15:10:02,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-08 15:10:02,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-08 15:10:02,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BreakerConfiguration, hphSpec = 'aaùBreakerConfigurationùUML28ùdd' +2024-09-08 15:10:02,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BusbarConfiguration, hphSpec = 'aaùBusbarConfigurationùUML29ùdd' +2024-09-08 15:10:02,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = YesNo, hphSpec = 'aaùYesNoùUML27ùdd' +2024-09-08 15:10:02,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = YesNo, hphSpec = 'aaùYesNoùUML27ùdd' +2024-09-08 15:10:02,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,702 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,703 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,705 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Substation, hphSpec = 'aaùSubstationùUML171ùdd' +2024-09-08 15:10:02,705 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VoltageLevel, hphSpec = 'aaùVoltageLevelùUML172ùdd' +2024-09-08 15:10:02,705 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Equipment, hphSpec = 'aaùEquipmentùUML173ùdd' +2024-09-08 15:10:02,705 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EquipmentContainer, hphSpec = 'aaùEquipmentContainerùUML169ùdd' +2024-09-08 15:10:02,705 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNode, hphSpec = 'aaùConnectivityNodeùUML175ùdd' +2024-09-08 15:10:02,705 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNodeContainer, hphSpec = 'aaùConnectivityNodeContainerùUML167ùdd' +2024-09-08 15:10:02,705 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TopologicalNode, hphSpec = 'aaùTopologicalNodeùUML177ùdd' +2024-09-08 15:10:02,705 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNodeContainer, hphSpec = 'aaùConnectivityNodeContainerùUML167ùdd' +2024-09-08 15:10:02,705 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OperatingShare, hphSpec = 'aaùOperatingShareùUML30ùdd' +2024-09-08 15:10:02,705 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,705 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Apple, hphSpec = 'aaùAppleùUML383ùdd' +2024-09-08 15:10:02,705 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Pear, hphSpec = 'aaùPearùUML168ùdd' +2024-09-08 15:10:02,705 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Apple, hphSpec = 'aaùAppleùUML383ùdd' +2024-09-08 15:10:02,705 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Pear, hphSpec = 'aaùPearùUML168ùdd' +2024-09-08 15:10:02,705 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,705 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,705 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,705 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Equipment, hphSpec = 'aaùEquipmentùUML173ùdd' +2024-09-08 15:10:02,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PhaseCode, hphSpec = 'aaùPhaseCodeùUML31ùdd' +2024-09-08 15:10:02,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-08 15:10:02,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Equipment, hphSpec = 'aaùEquipmentùUML173ùdd' +2024-09-08 15:10:02,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Terminal, hphSpec = 'aaùTerminalùUML159ùdd' +2024-09-08 15:10:02,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EquipmentContainer, hphSpec = 'aaùEquipmentContainerùUML169ùdd' +2024-09-08 15:10:02,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Equipment, hphSpec = 'aaùEquipmentùUML173ùdd' +2024-09-08 15:10:02,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OperatingShare, hphSpec = 'aaùOperatingShareùUML30ùdd' +2024-09-08 15:10:02,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,706 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNode, hphSpec = 'aaùConnectivityNodeùUML175ùdd' +2024-09-08 15:10:02,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TopologicalNode, hphSpec = 'aaùTopologicalNodeùUML177ùdd' +2024-09-08 15:10:02,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OperatingShare, hphSpec = 'aaùOperatingShareùUML30ùdd' +2024-09-08 15:10:02,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,707 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-08 15:10:02,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EquipmentContainer, hphSpec = 'aaùEquipmentContainerùUML169ùdd' +2024-09-08 15:10:02,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OperatingShare, hphSpec = 'aaùOperatingShareùUML30ùdd' +2024-09-08 15:10:02,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNodeContainer, hphSpec = 'aaùConnectivityNodeContainerùUML167ùdd' +2024-09-08 15:10:02,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Pear, hphSpec = 'aaùPearùUML168ùdd' +2024-09-08 15:10:02,708 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Fruit, hphSpec = 'aaùFruitùUML152ùdd' +2024-09-08 15:10:02,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Equipment, hphSpec = 'aaùEquipmentùUML173ùdd' +2024-09-08 15:10:02,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNode, hphSpec = 'aaùConnectivityNodeùUML175ùdd' +2024-09-08 15:10:02,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNodeContainer, hphSpec = 'aaùConnectivityNodeContainerùUML167ùdd' +2024-09-08 15:10:02,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TopologicalNode, hphSpec = 'aaùTopologicalNodeùUML177ùdd' +2024-09-08 15:10:02,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNodeContainer, hphSpec = 'aaùConnectivityNodeContainerùUML167ùdd' +2024-09-08 15:10:02,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OperatingShare, hphSpec = 'aaùOperatingShareùUML30ùdd' +2024-09-08 15:10:02,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Apple, hphSpec = 'aaùAppleùUML383ùdd' +2024-09-08 15:10:02,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Pear, hphSpec = 'aaùPearùUML168ùdd' +2024-09-08 15:10:02,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Apple, hphSpec = 'aaùAppleùUML383ùdd' +2024-09-08 15:10:02,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Pear, hphSpec = 'aaùPearùUML168ùdd' +2024-09-08 15:10:02,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,709 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubGeographicalRegion, hphSpec = 'aaùSubGeographicalRegionùUML163ùdd' +2024-09-08 15:10:02,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OperatingShare, hphSpec = 'aaùOperatingShareùUML30ùdd' +2024-09-08 15:10:02,710 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PerCent, hphSpec = 'aaùPerCentùUML20ùdd' +2024-09-08 15:10:02,711 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OperatingParticipant, hphSpec = 'aaùOperatingParticipantùUML165ùdd' +2024-09-08 15:10:02,711 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,711 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,711 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,711 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,711 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,712 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,712 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,712 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,712 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,712 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OperatingShare, hphSpec = 'aaùOperatingShareùUML30ùdd' +2024-09-08 15:10:02,712 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,712 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,712 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,712 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,712 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,712 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,712 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,712 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Substation, hphSpec = 'aaùSubstationùUML171ùdd' +2024-09-08 15:10:02,712 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = geographicalRegion, hphSpec = 'aaùgeographicalRegionùUML164ùdd' +2024-09-08 15:10:02,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EquipmentContainer, hphSpec = 'aaùEquipmentContainerùUML169ùdd' +2024-09-08 15:10:02,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNodeContainer, hphSpec = 'aaùConnectivityNodeContainerùUML167ùdd' +2024-09-08 15:10:02,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Pear, hphSpec = 'aaùPearùUML168ùdd' +2024-09-08 15:10:02,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Fruit, hphSpec = 'aaùFruitùUML152ùdd' +2024-09-08 15:10:02,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,713 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VoltageLevel, hphSpec = 'aaùVoltageLevelùUML172ùdd' +2024-09-08 15:10:02,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Bay, hphSpec = 'aaùBayùUML170ùdd' +2024-09-08 15:10:02,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubGeographicalRegion, hphSpec = 'aaùSubGeographicalRegionùUML163ùdd' +2024-09-08 15:10:02,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Equipment, hphSpec = 'aaùEquipmentùUML173ùdd' +2024-09-08 15:10:02,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EquipmentContainer, hphSpec = 'aaùEquipmentContainerùUML169ùdd' +2024-09-08 15:10:02,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNode, hphSpec = 'aaùConnectivityNodeùUML175ùdd' +2024-09-08 15:10:02,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNodeContainer, hphSpec = 'aaùConnectivityNodeContainerùUML167ùdd' +2024-09-08 15:10:02,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TopologicalNode, hphSpec = 'aaùTopologicalNodeùUML177ùdd' +2024-09-08 15:10:02,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNodeContainer, hphSpec = 'aaùConnectivityNodeContainerùUML167ùdd' +2024-09-08 15:10:02,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OperatingShare, hphSpec = 'aaùOperatingShareùUML30ùdd' +2024-09-08 15:10:02,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Apple, hphSpec = 'aaùAppleùUML383ùdd' +2024-09-08 15:10:02,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Pear, hphSpec = 'aaùPearùUML168ùdd' +2024-09-08 15:10:02,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Apple, hphSpec = 'aaùAppleùUML383ùdd' +2024-09-08 15:10:02,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Pear, hphSpec = 'aaùPearùUML168ùdd' +2024-09-08 15:10:02,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,714 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,715 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-08 15:10:02,715 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML18ùdd' +2024-09-08 15:10:02,715 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,715 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,715 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,715 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,715 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,715 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,715 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConductingEquipment, hphSpec = 'aaùConductingEquipmentùUML174ùdd' +2024-09-08 15:10:02,715 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNode, hphSpec = 'aaùConnectivityNodeùUML175ùdd' +2024-09-08 15:10:02,715 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TopologicalNode, hphSpec = 'aaùTopologicalNodeùUML177ùdd' +2024-09-08 15:10:02,715 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,715 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EquipmentContainer, hphSpec = 'aaùEquipmentContainerùUML169ùdd' +2024-09-08 15:10:02,715 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNodeContainer, hphSpec = 'aaùConnectivityNodeContainerùUML167ùdd' +2024-09-08 15:10:02,715 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,715 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,715 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Pear, hphSpec = 'aaùPearùUML168ùdd' +2024-09-08 15:10:02,715 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Fruit, hphSpec = 'aaùFruitùUML152ùdd' +2024-09-08 15:10:02,715 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Voltage, hphSpec = 'aaùVoltageùUML25ùdd' +2024-09-08 15:10:02,715 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Voltage, hphSpec = 'aaùVoltageùUML25ùdd' +2024-09-08 15:10:02,715 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,715 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,716 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,716 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,716 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,716 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,716 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,716 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,716 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseVoltage, hphSpec = 'aaùBaseVoltageùUML161ùdd' +2024-09-08 15:10:02,716 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Bay, hphSpec = 'aaùBayùUML170ùdd' +2024-09-08 15:10:02,716 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Substation, hphSpec = 'aaùSubstationùUML171ùdd' +2024-09-08 15:10:02,716 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Equipment, hphSpec = 'aaùEquipmentùUML173ùdd' +2024-09-08 15:10:02,716 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EquipmentContainer, hphSpec = 'aaùEquipmentContainerùUML169ùdd' +2024-09-08 15:10:02,716 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNode, hphSpec = 'aaùConnectivityNodeùUML175ùdd' +2024-09-08 15:10:02,716 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNodeContainer, hphSpec = 'aaùConnectivityNodeContainerùUML167ùdd' +2024-09-08 15:10:02,716 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TopologicalNode, hphSpec = 'aaùTopologicalNodeùUML177ùdd' +2024-09-08 15:10:02,716 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNodeContainer, hphSpec = 'aaùConnectivityNodeContainerùUML167ùdd' +2024-09-08 15:10:02,716 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OperatingShare, hphSpec = 'aaùOperatingShareùUML30ùdd' +2024-09-08 15:10:02,716 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,716 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Apple, hphSpec = 'aaùAppleùUML383ùdd' +2024-09-08 15:10:02,716 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Pear, hphSpec = 'aaùPearùUML168ùdd' +2024-09-08 15:10:02,716 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Apple, hphSpec = 'aaùAppleùUML383ùdd' +2024-09-08 15:10:02,716 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Pear, hphSpec = 'aaùPearùUML168ùdd' +2024-09-08 15:10:02,716 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,716 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,716 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,716 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,717 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,717 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,717 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,720 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Bay, hphSpec = 'aaùBayùUML170ùdd' +2024-09-08 15:10:02,720 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = YesNo, hphSpec = 'aaùYesNoùUML27ùdd' +2024-09-08 15:10:02,720 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,720 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,720 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,720 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,720 [main] DEBUG DataIndexDoc - Attribute 'basePower' defined on multiple classes in and under 'Core' - may be possible to avoid duplication by using inheritance. +2024-09-08 15:10:02,720 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseVoltage, hphSpec = 'aaùBaseVoltageùUML161ùdd' +2024-09-08 15:10:02,720 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePower, hphSpec = 'aaùBasePowerùUML162ùdd' +2024-09-08 15:10:02,720 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-08 15:10:02,720 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ApparentPower, hphSpec = 'aaùApparentPowerùUML14ùdd' +2024-09-08 15:10:02,720 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Bay, hphSpec = 'aaùBayùUML170ùdd' +2024-09-08 15:10:02,720 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-08 15:10:02,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Bay, hphSpec = 'aaùBayùUML170ùdd' +2024-09-08 15:10:02,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-08 15:10:02,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Bay, hphSpec = 'aaùBayùUML170ùdd' +2024-09-08 15:10:02,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BreakerConfiguration, hphSpec = 'aaùBreakerConfigurationùUML28ùdd' +2024-09-08 15:10:02,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Bay, hphSpec = 'aaùBayùUML170ùdd' +2024-09-08 15:10:02,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BusbarConfiguration, hphSpec = 'aaùBusbarConfigurationùUML29ùdd' +2024-09-08 15:10:02,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Terminal, hphSpec = 'aaùTerminalùUML159ùdd' +2024-09-08 15:10:02,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-08 15:10:02,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VoltageLevel, hphSpec = 'aaùVoltageLevelùUML172ùdd' +2024-09-08 15:10:02,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Voltage, hphSpec = 'aaùVoltageùUML25ùdd' +2024-09-08 15:10:02,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VoltageLevel, hphSpec = 'aaùVoltageLevelùUML172ùdd' +2024-09-08 15:10:02,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Voltage, hphSpec = 'aaùVoltageùUML25ùdd' +2024-09-08 15:10:02,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Equipment, hphSpec = 'aaùEquipmentùUML173ùdd' +2024-09-08 15:10:02,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-08 15:10:02,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OperatingShare, hphSpec = 'aaùOperatingShareùUML30ùdd' +2024-09-08 15:10:02,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PerCent, hphSpec = 'aaùPerCentùUML20ùdd' +2024-09-08 15:10:02,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConductingEquipment, hphSpec = 'aaùConductingEquipmentùUML174ùdd' +2024-09-08 15:10:02,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PhaseCode, hphSpec = 'aaùPhaseCodeùUML31ùdd' +2024-09-08 15:10:02,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Terminal, hphSpec = 'aaùTerminalùUML159ùdd' +2024-09-08 15:10:02,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML18ùdd' +2024-09-08 15:10:02,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Bay, hphSpec = 'aaùBayùUML170ùdd' +2024-09-08 15:10:02,721 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = YesNo, hphSpec = 'aaùYesNoùUML27ùdd' +2024-09-08 15:10:02,721 [main] INFO PackageDocImpl - collected data index for Core ... +2024-09-08 15:10:02,721 [main] TRACE PackageDocImpl - org.tanjakostic.jcleancim.docgen.collector.impl.DataIndexDoc@1b7f657Data semantics + + shows all attributes defined on classes of Core package. +Attributes defined on classes of Core package +"Name" | "Type" | "(Used in) Description" +"TestYesNo1" | "aaùYesNoùUML27ùdd" | "(aaùBayùUML170ùdd) Indicates the presence/absence of energy measurements." +"aliasName" | "aaùStringùUML22ùdd" | "(aaùIdentifiedObjectùUML32ùdd) The aliasName is free text human readable name of the object alternative to IdentifiedObject.name. It may be non unique and may not correlate to a naming hierarchy. +The attribute aliasName is retained because of backwards compatibility between CIM relases. It is however recommended to replace aliasName with the Name class as aliasName is planned for retirement at a future time." +"attr" | "aaùStringùUML22ùdd" | "(aaùPowerSystemResourceùUML166ùdd) (deprecated) This is to test whether deprecated attribute gets its (deprecated) printed in Word." +"basePower" | "aaùBooleanùUML15ùdd, aaùApparentPowerùUML14ùdd" | "(aaùBaseVoltageùUML161ùdd) This is to test whether we print correctly multiple attributes of the same name (defined on different classes) within the data index table. +(aaùBasePowerùUML162ùdd) definition of base power." +"bayEnergyMeasFlag" | "aaùBooleanùUML15ùdd" | "(aaùBayùUML170ùdd) Indicates the presence/absence of energy measurements." +"bayPowerMeasFlag" | "aaùBooleanùUML15ùdd" | "(aaùBayùUML170ùdd) Indicates the presence/absence of active/reactive power measurements." +"breakerConfiguration" | "aaùBreakerConfigurationùUML28ùdd" | "(aaùBayùUML170ùdd) Breaker configuration." +"busBarConfiguration" | "aaùBusbarConfigurationùUML29ùdd" | "(aaùBayùUML170ùdd) Bus bar configuration." +"connected" | "aaùBooleanùUML15ùdd" | "(aaùTerminalùUML159ùdd) The terminal connection status. True implies the terminal is connected, and false implies the terminal is not connected. This is the result of topoplogical processing of a detailed Connectivity node and Switch model whether present in the model or not. A terminal that is not connected cannot support a current flow. A terminal that is connected may have flow. In general a multi-terminal device may simultaneously have connected and disconnected terminals. No other aspect of the algorithm" +"highVoltageLimit" | "aaùVoltageùUML25ùdd" | "(aaùVoltageLevelùUML172ùdd) The bus bar's high voltage limit" +"lowVoltageLimit" | "aaùVoltageùUML25ùdd" | "(aaùVoltageLevelùUML172ùdd) The bus bar's low voltage limit" +"mRID" | "aaùStringùUML22ùdd" | "(aaùIdentifiedObjectùUML32ùdd) Master resource identifier issued by a model authority. The mRID must semantically be a UUID as specified in RFC 4122. The mRID is globally unique. +For CIMXML data files in RDF syntax, the mRID is mapped to rdf:ID or rdf:about attributes that identify CIM object elements." +"name" | "aaùStringùUML22ùdd" | "(aaùIdentifiedObjectùUML32ùdd) The name is any free human readable and possibly non unique text naming the object." +"normaIlyInService" | "aaùBooleanùUML15ùdd" | "(aaùEquipmentùUML173ùdd) The equipment is normally in service." +"packagePrivateIsDC" | "" | "" +"percentage" | "aaùPerCentùUML20ùdd" | "(aaùOperatingShareùUML30ùdd) Percentage ownership for this device. The percentage indicates the percentage ownership of the PSROwner for the PowerSystemResource. The total percentage ownership for a PowerSystemResource should add to 100%." +"phases" | "aaùPhaseCodeùUML31ùdd" | "(aaùConductingEquipmentùUML174ùdd) Describes the phases carried by a conducting equipment." +"privateDummy" | "" | "" +"protectedNominalVoltage" | "" | "" +"sequenceNumber" | "aaùIntegerùUML18ùdd" | "(aaùTerminalùUML159ùdd) The orientation of the terminal connections for a multiple terminal conducting equipment. The sequence numbering starts with 1 and additional terminals should follow in increasing order. The first terminal is the "starting point" for a two terminal branch. In the case of class TransformerWinding only one terminal is used so its sequenceNumber must be 1." +"testYesNo2" | "aaùYesNoùUML27ùdd" | "(aaùBayùUML170ùdd) Indicates the presence/absence of energy measurements." + +2024-09-08 15:10:02,722 [main] INFO PackageDocImpl - collecting doc for package Topology ... +2024-09-08 15:10:02,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Terminal, hphSpec = 'aaùTerminalùUML159ùdd' +2024-09-08 15:10:02,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-08 15:10:02,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Terminal, hphSpec = 'aaùTerminalùUML159ùdd' +2024-09-08 15:10:02,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML18ùdd' +2024-09-08 15:10:02,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Terminal, hphSpec = 'aaùTerminalùUML159ùdd' +2024-09-08 15:10:02,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConductingEquipment, hphSpec = 'aaùConductingEquipmentùUML174ùdd' +2024-09-08 15:10:02,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Terminal, hphSpec = 'aaùTerminalùUML159ùdd' +2024-09-08 15:10:02,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNode, hphSpec = 'aaùConnectivityNodeùUML175ùdd' +2024-09-08 15:10:02,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Terminal, hphSpec = 'aaùTerminalùUML159ùdd' +2024-09-08 15:10:02,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TopologicalNode, hphSpec = 'aaùTopologicalNodeùUML177ùdd' +2024-09-08 15:10:02,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Terminal, hphSpec = 'aaùTerminalùUML159ùdd' +2024-09-08 15:10:02,722 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Terminal, hphSpec = 'aaùTerminalùUML159ùdd' +2024-09-08 15:10:02,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML18ùdd' +2024-09-08 15:10:02,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML18ùdd' +2024-09-08 15:10:02,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML18ùdd' +2024-09-08 15:10:02,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML18ùdd' +2024-09-08 15:10:02,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,723 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,724 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNodeContainer, hphSpec = 'aaùConnectivityNodeContainerùUML167ùdd' +2024-09-08 15:10:02,724 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TopologicalNode, hphSpec = 'aaùTopologicalNodeùUML177ùdd' +2024-09-08 15:10:02,724 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Terminal, hphSpec = 'aaùTerminalùUML159ùdd' +2024-09-08 15:10:02,724 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BusNameMarker, hphSpec = 'aaùBusNameMarkerùUML158ùdd' +2024-09-08 15:10:02,724 [main] INFO ClassDocImpl - ----------------------- in ClassDocImpl() ctor: +2024-09-08 15:10:02,724 [main] INFO ClassDocImpl - RAW: +(paraStart)Some intro - next 2 lines are empty.(paraEnd) +(paraStart)This is a (red) test class to exercise the "quasi" mark-up that EA java API returns from its various getNotes() methods. Using its provided method to return raw text is very slow.(paraEnd) +(paraStart)Here is the unordered list with two items:(paraEnd) +- list test +- bold list test +(paraStart)This the paragraph after a list.(paraEnd) +(paraStart)Follows the numbered list:(paraEnd) +1. first numbered item +2. italic numbered test +3. RTY-8-dws2=56 (RTY**-8-dws subscript 2=56 +(paraStart)Below we test one bulleted and one numbered item:(paraEnd) +- bulleted +1. numbered +(paraStart)And the inverse, with two numbered items (second is empty) and two bulleted items (first is empty):(paraEnd) +1. this one is numbered +2. +- +- and this one is bulleted +(paraStart)Last normal para test - there are two empty paragraphs below.(paraEnd) +2024-09-08 15:10:02,724 [main] INFO ClassDocImpl - ----------------------- +2024-09-08 15:10:02,724 [main] INFO ClassDocImpl - HTML: +

(paraStart)Some intro - next 2 lines are empty.(paraEnd)

(paraStart)This is a (red) test class to exercise the "quasi" mark-up that EA java API returns from its various getNotes() methods. Using its provided method to return raw text is very slow.(paraEnd)

(paraStart)Here is the unordered list with two items:(paraEnd)

  • list test
  • bold list test

(paraStart)This the paragraph after a list.(paraEnd)

(paraStart)Follows the numbered list:(paraEnd)

  1. first numbered item
  2. italic numbered test
  3. RTY-8-dws2=56 (RTY**-8-dws subscript 2=56

(paraStart)Below we test one bulleted and one numbered item:(paraEnd)

  • bulleted
  1. numbered

(paraStart)And the inverse, with two numbered items (second is empty) and two bulleted items (first is empty):(paraEnd)

  1. this one is numbered
  2.  
  •  
  • and this one is bulleted

(paraStart)Last normal para test - there are two empty paragraphs below.(paraEnd)

+2024-09-08 15:10:02,724 [main] INFO ClassDocImpl - ----------------------- +2024-09-08 15:10:02,725 [main] INFO ClassDocImpl - HTML unesc Java: +<p>(paraStart)Some intro - next 2 lines are empty.(paraEnd)</p><p>(paraStart)This is a <font color="#ff0000">(red)</font> test class to exercise the "quasi" mark-up that EA java API returns from its various getNotes() methods. Using its provided method to return raw text is very slow.(paraEnd)</p><p>(paraStart)Here is the unordered list with two items:(paraEnd)</p><ul><li>list test</li><li><b>bold</b> list test</li></ul><p>(paraStart)This the paragraph after a list.(paraEnd)</p><p>(paraStart)Follows the numbered list:(paraEnd)</p><ol><li>first numbered item</li><li><i>italic</i> numbered test</li><li><i>RTY</i><sup>-8</sup>-dws<i><sub>2</sub></i>=56 (RTY**-8-dws subscript 2=56</li></ol><p>(paraStart)Below we test one bulleted and one numbered item:(paraEnd)</p><ul><li>bulleted</li></ul><ol><li>numbered</li></ol><p>(paraStart)And the inverse, with two numbered items (second is empty) and two bulleted items (first is empty):(paraEnd)</p><ol><li>this one is numbered</li><li>&nbsp;</li></ol><ul><li>&nbsp;</li><li>and this one is bulleted</li></ul><p>(paraStart)Last <i><u>normal </u></i>para test - there are two empty paragraphs below.(paraEnd)</p> +2024-09-08 15:10:02,725 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,726 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML18ùdd' +2024-09-08 15:10:02,726 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML18ùdd' +2024-09-08 15:10:02,726 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,726 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,726 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,726 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,726 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,726 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,726 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TopologicalNode, hphSpec = 'aaùTopologicalNodeùUML177ùdd' +2024-09-08 15:10:02,726 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TopologicalNode, hphSpec = 'aaùTopologicalNodeùUML177ùdd' +2024-09-08 15:10:02,726 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,727 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,727 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,727 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,727 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,727 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,727 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,727 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseVoltage, hphSpec = 'aaùBaseVoltageùUML161ùdd' +2024-09-08 15:10:02,727 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNodeContainer, hphSpec = 'aaùConnectivityNodeContainerùUML167ùdd' +2024-09-08 15:10:02,727 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TopologicalIsland, hphSpec = 'aaùTopologicalIslandùUML176ùdd' +2024-09-08 15:10:02,727 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Terminal, hphSpec = 'aaùTerminalùUML159ùdd' +2024-09-08 15:10:02,727 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNode, hphSpec = 'aaùConnectivityNodeùUML175ùdd' +2024-09-08 15:10:02,727 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TopologicalIsland, hphSpec = 'aaùTopologicalIslandùUML176ùdd' +2024-09-08 15:10:02,727 [main] INFO PackageDocImpl - collecting doc for package TestEnums ... +2024-09-08 15:10:02,729 [main] INFO PackageDocImpl - collecting doc for package IEC61968 ... +2024-09-08 15:10:02,729 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbsoluteDateTime, hphSpec = 'aaùAbsoluteDateTimeùUML11ùdd' +2024-09-08 15:10:02,730 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,730 [main] INFO PackageDocImpl - collecting doc for package EmbeddedExtension ... +2024-09-08 15:10:02,731 [main] INFO PackageDocImpl - collecting doc for package Assets ... +2024-09-08 15:10:02,731 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,731 [main] INFO PackageDocImpl - collecting doc for package Core ... +2024-09-08 15:10:02,732 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Bay, hphSpec = 'aaùBayùUML170ùdd' +2024-09-08 15:10:02,732 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = YesNo, hphSpec = 'aaùYesNoùUML27ùdd' +2024-09-08 15:10:02,732 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,732 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,732 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:10:02,732 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,732 [main] DEBUG DataIndexDoc - Attribute 'basePower' defined on multiple classes in and under 'Core' - may be possible to avoid duplication by using inheritance. +2024-09-08 15:10:02,732 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseVoltage, hphSpec = 'aaùBaseVoltageùUML161ùdd' +2024-09-08 15:10:02,732 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePower, hphSpec = 'aaùBasePowerùUML162ùdd' +2024-09-08 15:10:02,732 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-08 15:10:02,732 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ApparentPower, hphSpec = 'aaùApparentPowerùUML14ùdd' +2024-09-08 15:10:02,732 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Bay, hphSpec = 'aaùBayùUML170ùdd' +2024-09-08 15:10:02,732 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-08 15:10:02,732 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Bay, hphSpec = 'aaùBayùUML170ùdd' +2024-09-08 15:10:02,732 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-08 15:10:02,732 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Bay, hphSpec = 'aaùBayùUML170ùdd' +2024-09-08 15:10:02,732 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BreakerConfiguration, hphSpec = 'aaùBreakerConfigurationùUML28ùdd' +2024-09-08 15:10:02,732 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Bay, hphSpec = 'aaùBayùUML170ùdd' +2024-09-08 15:10:02,732 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BusbarConfiguration, hphSpec = 'aaùBusbarConfigurationùUML29ùdd' +2024-09-08 15:10:02,733 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Terminal, hphSpec = 'aaùTerminalùUML159ùdd' +2024-09-08 15:10:02,733 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-08 15:10:02,733 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VoltageLevel, hphSpec = 'aaùVoltageLevelùUML172ùdd' +2024-09-08 15:10:02,733 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Voltage, hphSpec = 'aaùVoltageùUML25ùdd' +2024-09-08 15:10:02,733 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VoltageLevel, hphSpec = 'aaùVoltageLevelùUML172ùdd' +2024-09-08 15:10:02,733 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Voltage, hphSpec = 'aaùVoltageùUML25ùdd' +2024-09-08 15:10:02,733 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,733 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,733 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:10:02,733 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:10:02,733 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Equipment, hphSpec = 'aaùEquipmentùUML173ùdd' +2024-09-08 15:10:02,733 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-08 15:10:02,733 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OperatingShare, hphSpec = 'aaùOperatingShareùUML30ùdd' +2024-09-08 15:10:02,733 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PerCent, hphSpec = 'aaùPerCentùUML20ùdd' +2024-09-08 15:10:02,733 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConductingEquipment, hphSpec = 'aaùConductingEquipmentùUML174ùdd' +2024-09-08 15:10:02,733 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PhaseCode, hphSpec = 'aaùPhaseCodeùUML31ùdd' +2024-09-08 15:10:02,733 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Terminal, hphSpec = 'aaùTerminalùUML159ùdd' +2024-09-08 15:10:02,733 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML18ùdd' +2024-09-08 15:10:02,733 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Bay, hphSpec = 'aaùBayùUML170ùdd' +2024-09-08 15:10:02,733 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = YesNo, hphSpec = 'aaùYesNoùUML27ùdd' +2024-09-08 15:10:02,736 [main] INFO PackageDocImpl - collected data index for Core ... +2024-09-08 15:10:02,736 [main] TRACE PackageDocImpl - org.tanjakostic.jcleancim.docgen.collector.impl.DataIndexDoc@9c4eb1Data semantics + + shows all attributes defined on classes of Core package. +Attributes defined on classes of Core package +"Name" | "Type" | "(Used in) Description" +"TestYesNo1" | "aaùYesNoùUML27ùdd" | "(aaùBayùUML170ùdd) Indicates the presence/absence of energy measurements." +"aliasName" | "aaùStringùUML22ùdd" | "(aaùIdentifiedObjectùUML32ùdd) The aliasName is free text human readable name of the object alternative to IdentifiedObject.name. It may be non unique and may not correlate to a naming hierarchy. +The attribute aliasName is retained because of backwards compatibility between CIM relases. It is however recommended to replace aliasName with the Name class as aliasName is planned for retirement at a future time." +"attr" | "aaùStringùUML22ùdd" | "(aaùPowerSystemResourceùUML166ùdd) (deprecated) This is to test whether deprecated attribute gets its (deprecated) printed in Word." +"basePower" | "aaùBooleanùUML15ùdd, aaùApparentPowerùUML14ùdd" | "(aaùBaseVoltageùUML161ùdd) This is to test whether we print correctly multiple attributes of the same name (defined on different classes) within the data index table. +(aaùBasePowerùUML162ùdd) definition of base power." +"bayEnergyMeasFlag" | "aaùBooleanùUML15ùdd" | "(aaùBayùUML170ùdd) Indicates the presence/absence of energy measurements." +"bayPowerMeasFlag" | "aaùBooleanùUML15ùdd" | "(aaùBayùUML170ùdd) Indicates the presence/absence of active/reactive power measurements." +"breakerConfiguration" | "aaùBreakerConfigurationùUML28ùdd" | "(aaùBayùUML170ùdd) Breaker configuration." +"busBarConfiguration" | "aaùBusbarConfigurationùUML29ùdd" | "(aaùBayùUML170ùdd) Bus bar configuration." +"connected" | "aaùBooleanùUML15ùdd" | "(aaùTerminalùUML159ùdd) The terminal connection status. True implies the terminal is connected, and false implies the terminal is not connected. This is the result of topoplogical processing of a detailed Connectivity node and Switch model whether present in the model or not. A terminal that is not connected cannot support a current flow. A terminal that is connected may have flow. In general a multi-terminal device may simultaneously have connected and disconnected terminals. No other aspect of the algorithm" +"highVoltageLimit" | "aaùVoltageùUML25ùdd" | "(aaùVoltageLevelùUML172ùdd) The bus bar's high voltage limit" +"lowVoltageLimit" | "aaùVoltageùUML25ùdd" | "(aaùVoltageLevelùUML172ùdd) The bus bar's low voltage limit" +"mRID" | "aaùStringùUML22ùdd" | "(aaùIdentifiedObjectùUML32ùdd) Master resource identifier issued by a model authority. The mRID must semantically be a UUID as specified in RFC 4122. The mRID is globally unique. +For CIMXML data files in RDF syntax, the mRID is mapped to rdf:ID or rdf:about attributes that identify CIM object elements." +"name" | "aaùStringùUML22ùdd" | "(aaùIdentifiedObjectùUML32ùdd) The name is any free human readable and possibly non unique text naming the object." +"normaIlyInService" | "aaùBooleanùUML15ùdd" | "(aaùEquipmentùUML173ùdd) The equipment is normally in service." +"packagePrivateIsDC" | "" | "" +"percentage" | "aaùPerCentùUML20ùdd" | "(aaùOperatingShareùUML30ùdd) Percentage ownership for this device. The percentage indicates the percentage ownership of the PSROwner for the PowerSystemResource. The total percentage ownership for a PowerSystemResource should add to 100%." +"phases" | "aaùPhaseCodeùUML31ùdd" | "(aaùConductingEquipmentùUML174ùdd) Describes the phases carried by a conducting equipment." +"privateDummy" | "" | "" +"protectedNominalVoltage" | "" | "" +"sequenceNumber" | "aaùIntegerùUML18ùdd" | "(aaùTerminalùUML159ùdd) The orientation of the terminal connections for a multiple terminal conducting equipment. The sequence numbering starts with 1 and additional terminals should follow in increasing order. The first terminal is the "starting point" for a two terminal branch. In the case of class TransformerWinding only one terminal is used so its sequenceNumber must be 1." +"testYesNo2" | "aaùYesNoùUML27ùdd" | "(aaùBayùUML170ùdd) Indicates the presence/absence of energy measurements." + +2024-09-08 15:10:02,736 [main] INFO PackageDocImpl - collecting doc for package Other ... +2024-09-08 15:10:02,736 [main] INFO PackageDocImpl - collecting doc for package Other ... +2024-09-08 15:10:02,737 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-08 15:10:02,737 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Float, hphSpec = 'aaùFloatùUML17ùdd' +2024-09-08 15:10:02,737 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-08 15:10:02,737 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-08 15:10:02,737 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-08 15:10:02,737 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitSymbol, hphSpec = 'aaùUnitSymbolùUML24ùdd' +2024-09-08 15:10:02,737 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-08 15:10:02,737 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MyClass, hphSpec = 'aaùMyClassùUML178ùdd' +2024-09-08 15:10:02,737 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-08 15:10:02,737 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MyClass, hphSpec = 'aaùMyClassùUML178ùdd' +2024-09-08 15:10:02,737 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MyClass, hphSpec = 'aaùMyClassùUML178ùdd' +2024-09-08 15:10:02,737 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-08 15:10:02,737 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AttrDuplication, hphSpec = 'aaùAttrDuplicationùUML179ùdd' +2024-09-08 15:10:02,737 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-08 15:10:02,737 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-08 15:10:02,738 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitSymbol, hphSpec = 'aaùUnitSymbolùUML24ùdd' +2024-09-08 15:10:02,738 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MyClass, hphSpec = 'aaùMyClassùUML178ùdd' +2024-09-08 15:10:02,738 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AttrDuplication, hphSpec = 'aaùAttrDuplicationùUML179ùdd' +2024-09-08 15:10:02,738 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML18ùdd' +2024-09-08 15:10:02,738 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = YesNo, hphSpec = 'aaùYesNoùUML27ùdd' +2024-09-08 15:10:02,739 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Float, hphSpec = 'aaùFloatùUML17ùdd' +2024-09-08 15:10:02,739 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MyClass, hphSpec = 'aaùMyClassùUML178ùdd' +2024-09-08 15:10:02,739 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-08 15:10:02,739 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-08 15:10:02,739 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Float, hphSpec = 'aaùFloatùUML17ùdd' +2024-09-08 15:10:02,739 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MyClass, hphSpec = 'aaùMyClassùUML178ùdd' +2024-09-08 15:10:02,739 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-08 15:10:02,739 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MyClass, hphSpec = 'aaùMyClassùUML178ùdd' +2024-09-08 15:10:02,739 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MyClass, hphSpec = 'aaùMyClassùUML178ùdd' +2024-09-08 15:10:02,739 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-08 15:10:02,739 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-08 15:10:02,739 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitSymbol, hphSpec = 'aaùUnitSymbolùUML24ùdd' +2024-09-08 15:10:02,739 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-08 15:10:02,740 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-08 15:10:02,740 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AttrDuplication, hphSpec = 'aaùAttrDuplicationùUML179ùdd' +2024-09-08 15:10:02,740 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AttrDuplication, hphSpec = 'aaùAttrDuplicationùUML179ùdd' +2024-09-08 15:10:02,740 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AttrDuplication, hphSpec = 'aaùAttrDuplicationùUML179ùdd' +2024-09-08 15:10:02,740 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AttrDuplication, hphSpec = 'aaùAttrDuplicationùUML179ùdd' +2024-09-08 15:10:02,740 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MyClass, hphSpec = 'aaùMyClassùUML178ùdd' +2024-09-08 15:10:02,740 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MyClass, hphSpec = 'aaùMyClassùUML178ùdd' +2024-09-08 15:10:02,740 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-08 15:10:02,740 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MyClass, hphSpec = 'aaùMyClassùUML178ùdd' +2024-09-08 15:10:02,740 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MyClass, hphSpec = 'aaùMyClassùUML178ùdd' +2024-09-08 15:10:02,740 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MyClass, hphSpec = 'aaùMyClassùUML178ùdd' +2024-09-08 15:10:02,740 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MyClass, hphSpec = 'aaùMyClassùUML178ùdd' +2024-09-08 15:10:02,740 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-08 15:10:02,740 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AttrDuplication, hphSpec = 'aaùAttrDuplicationùUML179ùdd' +2024-09-08 15:10:02,740 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-08 15:10:02,741 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitSymbol, hphSpec = 'aaùUnitSymbolùUML24ùdd' +2024-09-08 15:10:02,741 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML18ùdd' +2024-09-08 15:10:02,741 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EmptyCompound, hphSpec = 'aaùEmptyCompoundùUML45ùdd' +2024-09-08 15:10:02,741 [main] INFO PackageDocImpl - collecting doc for package IEC62325 ... +2024-09-08 15:10:02,741 [main] INFO PackageDocImpl - collecting doc for package IEC61850Domain ... +2024-09-08 15:10:02,742 [main] INFO PackageDocImpl - collecting doc for package WG10 ... +2024-09-08 15:10:02,747 [main] INFO PackageDocImpl - collecting doc for package NewIEC61850_7_2 ... +2024-09-08 15:10:02,748 [main] INFO PackageDocImpl - collecting doc for package GenericModel ... +2024-09-08 15:10:02,751 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommAddress, hphSpec = 'aaùCommAddressùUML47ùdd' +2024-09-08 15:10:02,751 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenIED, hphSpec = 'aaùGenIEDùUML65ùdd' +2024-09-08 15:10:02,752 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenFile, hphSpec = 'aaùGenFileùUML64ùdd' +2024-09-08 15:10:02,752 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenServer, hphSpec = 'aaùGenServerùUML72ùdd' +2024-09-08 15:10:02,752 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjectName, hphSpec = 'aaùGenObjectNameùUML71ùdd' +2024-09-08 15:10:02,752 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenDataAttribute, hphSpec = 'aaùGenDataAttributeùUML59ùdd' +2024-09-08 15:10:02,752 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenSubDataObject, hphSpec = 'aaùGenSubDataObjectùUML74ùdd' +2024-09-08 15:10:02,753 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjectName, hphSpec = 'aaùGenObjectNameùUML71ùdd' +2024-09-08 15:10:02,753 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenSubDataAttribute, hphSpec = 'aaùGenSubDataAttributeùUML73ùdd' +2024-09-08 15:10:02,753 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjectName, hphSpec = 'aaùGenObjectNameùUML71ùdd' +2024-09-08 15:10:02,753 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjRef, hphSpec = 'aaùGenObjRefùUML70ùdd' +2024-09-08 15:10:02,753 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenFC, hphSpec = 'aaùGenFCùUML49ùdd' +2024-09-08 15:10:02,753 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenTriggerConditions, hphSpec = 'aaùGenTriggerConditionsùUML76ùdd' +2024-09-08 15:10:02,754 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenPresenceConditions, hphSpec = 'aaùGenPresenceConditionsùUML50ùdd' +2024-09-08 15:10:02,754 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenINT32U, hphSpec = 'aaùGenINT32UùUML66ùdd' +2024-09-08 15:10:02,754 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenCommonDataClass, hphSpec = 'aaùGenCommonDataClassùUML56ùdd' +2024-09-08 15:10:02,754 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenFCDA, hphSpec = 'aaùGenFCDAùUML63ùdd' +2024-09-08 15:10:02,754 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjectName, hphSpec = 'aaùGenObjectNameùUML71ùdd' +2024-09-08 15:10:02,754 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjRef, hphSpec = 'aaùGenObjRefùUML70ùdd' +2024-09-08 15:10:02,754 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenBOOLEAN, hphSpec = 'aaùGenBOOLEANùUML55ùdd' +2024-09-08 15:10:02,754 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenPresenceConditions, hphSpec = 'aaùGenPresenceConditionsùUML50ùdd' +2024-09-08 15:10:02,754 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenLogicalNode, hphSpec = 'aaùGenLogicalNodeùUML68ùdd' +2024-09-08 15:10:02,754 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenFCD, hphSpec = 'aaùGenFCDùUML62ùdd' +2024-09-08 15:10:02,755 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjectName, hphSpec = 'aaùGenObjectNameùUML71ùdd' +2024-09-08 15:10:02,755 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenFCD, hphSpec = 'aaùGenFCDùUML62ùdd' +2024-09-08 15:10:02,755 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenFCDA, hphSpec = 'aaùGenFCDAùUML63ùdd' +2024-09-08 15:10:02,755 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenFC, hphSpec = 'aaùGenFCùUML49ùdd' +2024-09-08 15:10:02,755 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenDataObject, hphSpec = 'aaùGenDataObjectùUML60ùdd' +2024-09-08 15:10:02,755 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenSubDataObject, hphSpec = 'aaùGenSubDataObjectùUML74ùdd' +2024-09-08 15:10:02,755 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenDataSet, hphSpec = 'aaùGenDataSetùUML61ùdd' +2024-09-08 15:10:02,755 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenFC, hphSpec = 'aaùGenFCùUML49ùdd' +2024-09-08 15:10:02,755 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenDataAttribute, hphSpec = 'aaùGenDataAttributeùUML59ùdd' +2024-09-08 15:10:02,755 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenSubDataAttribute, hphSpec = 'aaùGenSubDataAttributeùUML73ùdd' +2024-09-08 15:10:02,755 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenDataSet, hphSpec = 'aaùGenDataSetùUML61ùdd' +2024-09-08 15:10:02,756 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenVisString255, hphSpec = 'aaùGenVisString255ùUML77ùdd' +2024-09-08 15:10:02,756 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenINT32U, hphSpec = 'aaùGenINT32UùUML66ùdd' +2024-09-08 15:10:02,756 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenTimeStamp, hphSpec = 'aaùGenTimeStampùUML51ùdd' +2024-09-08 15:10:02,756 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FileSystem, hphSpec = 'aaùFileSystemùUML53ùdd' +2024-09-08 15:10:02,756 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AccessPoint, hphSpec = 'aaùAccessPointùUML52ùdd' +2024-09-08 15:10:02,756 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenLogicalNode, hphSpec = 'aaùGenLogicalNodeùUML68ùdd' +2024-09-08 15:10:02,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenLogicalNode, hphSpec = 'aaùGenLogicalNodeùUML68ùdd' +2024-09-08 15:10:02,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjectName, hphSpec = 'aaùGenObjectNameùUML71ùdd' +2024-09-08 15:10:02,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenLogicalNode, hphSpec = 'aaùGenLogicalNodeùUML68ùdd' +2024-09-08 15:10:02,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjRef, hphSpec = 'aaùGenObjRefùUML70ùdd' +2024-09-08 15:10:02,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenLogicalDevice, hphSpec = 'aaùGenLogicalDeviceùUML67ùdd' +2024-09-08 15:10:02,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenDataObject, hphSpec = 'aaùGenDataObjectùUML60ùdd' +2024-09-08 15:10:02,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenLogicalNode, hphSpec = 'aaùGenLogicalNodeùUML68ùdd' +2024-09-08 15:10:02,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenLogicalDevice, hphSpec = 'aaùGenLogicalDeviceùUML67ùdd' +2024-09-08 15:10:02,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenLogicalNode, hphSpec = 'aaùGenLogicalNodeùUML68ùdd' +2024-09-08 15:10:02,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjectName, hphSpec = 'aaùGenObjectNameùUML71ùdd' +2024-09-08 15:10:02,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenLN0, hphSpec = 'aaùGenLN0ùUML181ùdd' +2024-09-08 15:10:02,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenLogicalNode, hphSpec = 'aaùGenLogicalNodeùUML68ùdd' +2024-09-08 15:10:02,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenLogicalDevice, hphSpec = 'aaùGenLogicalDeviceùUML67ùdd' +2024-09-08 15:10:02,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenServer, hphSpec = 'aaùGenServerùUML72ùdd' +2024-09-08 15:10:02,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenLogicalDevice, hphSpec = 'aaùGenLogicalDeviceùUML67ùdd' +2024-09-08 15:10:02,757 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjectName, hphSpec = 'aaùGenObjectNameùUML71ùdd' +2024-09-08 15:10:02,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjRef, hphSpec = 'aaùGenObjRefùUML70ùdd' +2024-09-08 15:10:02,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenDataObject, hphSpec = 'aaùGenDataObjectùUML60ùdd' +2024-09-08 15:10:02,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenLogicalDevice, hphSpec = 'aaùGenLogicalDeviceùUML67ùdd' +2024-09-08 15:10:02,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenServer, hphSpec = 'aaùGenServerùUML72ùdd' +2024-09-08 15:10:02,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FileSystem, hphSpec = 'aaùFileSystemùUML53ùdd' +2024-09-08 15:10:02,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenLogicalDevice, hphSpec = 'aaùGenLogicalDeviceùUML67ùdd' +2024-09-08 15:10:02,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenMCAA, hphSpec = 'aaùGenMCAAùUML69ùdd' +2024-09-08 15:10:02,758 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenTPAA, hphSpec = 'aaùGenTPAAùUML75ùdd' +2024-09-08 15:10:02,759 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ServiceAccessPoint, hphSpec = 'aaùServiceAccessPointùUML180ùdd' +2024-09-08 15:10:02,759 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjectName, hphSpec = 'aaùGenObjectNameùUML71ùdd' +2024-09-08 15:10:02,759 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjRef, hphSpec = 'aaùGenObjRefùUML70ùdd' +2024-09-08 15:10:02,759 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenFC, hphSpec = 'aaùGenFCùUML49ùdd' +2024-09-08 15:10:02,759 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenPresenceConditions, hphSpec = 'aaùGenPresenceConditionsùUML50ùdd' +2024-09-08 15:10:02,759 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenINT32U, hphSpec = 'aaùGenINT32UùUML66ùdd' +2024-09-08 15:10:02,759 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenConstructedType, hphSpec = 'aaùGenConstructedTypeùUML58ùdd' +2024-09-08 15:10:02,759 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenFCDA, hphSpec = 'aaùGenFCDAùUML63ùdd' +2024-09-08 15:10:02,759 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjectName, hphSpec = 'aaùGenObjectNameùUML71ùdd' +2024-09-08 15:10:02,760 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjRef, hphSpec = 'aaùGenObjRefùUML70ùdd' +2024-09-08 15:10:02,760 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenPresenceConditions, hphSpec = 'aaùGenPresenceConditionsùUML50ùdd' +2024-09-08 15:10:02,760 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenINT32U, hphSpec = 'aaùGenINT32UùUML66ùdd' +2024-09-08 15:10:02,760 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenCommonDataClass, hphSpec = 'aaùGenCommonDataClassùUML56ùdd' +2024-09-08 15:10:02,760 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenFCD, hphSpec = 'aaùGenFCDùUML62ùdd' +2024-09-08 15:10:02,760 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenAssociationID, hphSpec = 'aaùGenAssociationIDùUML48ùdd' +2024-09-08 15:10:02,760 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenServer, hphSpec = 'aaùGenServerùUML72ùdd' +2024-09-08 15:10:02,760 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AccessPoint, hphSpec = 'aaùAccessPointùUML52ùdd' +2024-09-08 15:10:02,760 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AccessPoint, hphSpec = 'aaùAccessPointùUML52ùdd' +2024-09-08 15:10:02,761 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommAddress, hphSpec = 'aaùCommAddressùUML47ùdd' +2024-09-08 15:10:02,761 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenServer, hphSpec = 'aaùGenServerùUML72ùdd' +2024-09-08 15:10:02,761 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenIED, hphSpec = 'aaùGenIEDùUML65ùdd' +2024-09-08 15:10:02,761 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AccessPoint, hphSpec = 'aaùAccessPointùUML52ùdd' +2024-09-08 15:10:02,761 [main] INFO PackageDocImpl - collecting doc for package IEC61850_7_2 ... +2024-09-08 15:10:02,761 [main] INFO PackageDocImpl - collecting doc for package FunctionalConstraints ... +2024-09-08 15:10:02,761 [main] INFO DocCollectorImpl - >> retained scoped IEC61850/IEC61850-7-2/FunctionalConstraints +2024-09-08 15:10:02,766 [main] INFO PackageDocImpl - collected functional constraints from FunctionalConstraints ... +2024-09-08 15:10:02,767 [main] TRACE PackageDocImpl - org.tanjakostic.jcleancim.docgen.collector.impl.FcPackageDoc@1898981Functional constraints +From an application point of view, the DataAttributes are classified according to their specific use. Some attributes are used for controlling, other for reporting and logging, or measurements or setting groups, or the description of a specific DataAttribute. +The functional constraint (FC) serves as a data filter in the sense of defining the services applicable to specific DataAttributes of CommonDataClasses (defined in part IEC 61850-7-3). +NOTE: The possibility to write an Attribute or a DataAttribute may be further constrained by a view or an implementation, as discussed in clause 7. +EXAMPLE: The CommonDataClass single point status (SPS) according to IEC 61850-7-3 has the following DataAttributes: stVal (status value), q (quality), and t (time stamp) with the functional constraint ST (status information). +shows all functional constraints. +Functional constraints +"Functional constraints" | "" | "" +"FC" | "Semantic" | "Description (services allowed, initial values, storage)" +"ST" | "Status information" | "DataAttribute shall represent status information whose value may be read, substituted, reported, and logged but shall not be writeable. +Initial value shall be taken from the process. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- if member of dataset, may be contained in the Report, GOOSEMessage and SVMessage." +"MX" | "Measurands (analogue values)" | "DataAttribute shall represent measurand information whose value may be read, substituted, reported, and logged but shall not be writeable. +Initial value shall be taken from the process. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- if member of dataset, may be contained in the Report, GOOSEMessage and SVMessage." +"SP" | "Setting (outside setting group)" | "DataAttribute shall represent setting parameter information whose value is read and may be written. Changes of values shall become effective immediately, and may be reported. +Initial value shall be as configured; value shall be non-volatile. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.setDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- if member of dataset, may be contained in the Report, GOOSEMessage." +"SV" | "Substitution" | "DataAttribute shall represent substitution information whose value may be written to substitute the value attribute and read. A value change may be reported. +If the value is volatile then the initial value shall be false, otherwise the value should be as set or configured. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.setDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- AcsiDS.setDataSetValues() +- if member of dataset, may be contained in the Report." +"CF" | "Configuration" | "DataAttribute shall represent configuration information whose value may be written and read. Values written may become effective immediately or deferred by reasons outside the scope of this standard. Value changes may be reported. +Initial value shall be as configured; value shall be non-volatile. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.setDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- AcsiDS.setDataSetValues() +- if member of dataset, may be contained in the Report." +"DC" | "Description" | "DataAttribute shall represent description information whose value may be written and read. +Initial value shall be as configured; value shall be non-volatile. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.setDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- AcsiDS.setDataSetValues() +- if member of dataset, may be contained in the Report." +"SG" | "Setting group" | "Logical devices that implement the SGCB class maintain multiple grouped values of all instances of DataAttributes with functional constraint SG. Each group contains one value for each DataAttribute. DataAttributes with functional constraint SG shall be the current active value. DataAttributes with FC=SG shall not be writeable. +Initial value shall be as configured; value shall be non-volatile. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- AcsiSGCB.getSGValues() +- if member of dataset, may be contained in the Report." +"SE" | "Setting group editable" | "DataAttribute that can be edited by SGCB services. Defines the edit buffer for the value sets belonging to attributes with FC=SG. +Value shall be as resulting from the chain of SGCB services: selectEditSG() -> setSGValues() -> confirmEditSGValues(). +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiSGCB.getSGValues() +- AcsiSGCB.setSGValues()" +"SR" | "Service response" | "DataAttribute shall represent data from different process objects with the same tracking object whose values can be used to be reported and logged; the values shall not be writeable. These attributes are used for service tracking (see 15.3.2). +Initial value of the DataAttribute are a private issue, e.g., all zero (except for times stamp). +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- if member of dataset, may be contained in the Report." +"OR" | "Operate received" | "DataAttribute shall represent the result of an Operate request at the data object receiving the Operate request, even if the execution of the Operate is blocked. +Initial value is irrelevant / arbitrary. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- if member of dataset, may be contained in the Report." +"BL" | "Blocking" | "DataAttribute is used for blocking value updates. +If the value of the DataAttribute is volatile then the initial value shall be false, otherwise the value should be as set or configured. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.setDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- AcsiDS.setDataSetValues() +- if member of dataset, may be contained in the Report." +"EX" | "Extended definition (application name space)" | "DataAttribute shall represent an application name space. Application name spaces are used to define the semantic definitions of LNs, data object class, and DataAttributes as specified in 61850-7-3 and IEC 61850-7-4. DataAttributes with FC=EX shall not be writeable, +Note that private extensions of control blocks may use the FC EX at SCSM level. +Value of the DataAttribute shall be as configured; value shall be non-volatile. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- if member of dataset, may be contained in the Report." +"XX" | "" | "Used as a wildcard in services only, with the semantics: representing DataAttributes of any functional constraint." + +2024-09-08 15:10:02,767 [main] INFO PackageDocImpl - collecting doc for package TriggerOptions ... +2024-09-08 15:10:02,767 [main] INFO DocCollectorImpl - >> retained scoped IEC61850/IEC61850-7-2/TriggerOptions +2024-09-08 15:10:02,769 [main] INFO PackageDocImpl - collected trigger options from TriggerOptions ... +2024-09-08 15:10:02,769 [main] TRACE PackageDocImpl - org.tanjakostic.jcleancim.docgen.collector.impl.TrgOpPackageDoc@f9390fTrigger options +To support reporting and logging control logic (see clause 17) related to process data changes, one of these values can be associated as a trigger option, TrgOp, to a data attribute within a data object or sub-data object. +shows all trigger options. +Trigger options +"Trigger options" | "" | "" +"TrgOp" | "Semantic" | "Description" +"dchg" | "data-change" | "The reason for report or log entry generation is the change of the value of a process-related data attribute with trigger option dchg." +"qchg" | "quality-change" | "The reason for report or log entry generation is the change of the value of a quality-related data attribute with trigger option qchg." +"dupd" | "data-update" | "The reason for report or log entry generation is an update of the value of a data attribute with trigger option dupd. The updated value may be the same as the old value. An example is freezing the value of a freezable data attribute updating the value of another data attribute, which could lead to the same value it already has." +"dchg, dupd" | "dchg or dupd" | "Either dchg or dupd." + +2024-09-08 15:10:02,769 [main] INFO PackageDocImpl - collecting doc for package ACSIEnums ... +2024-09-08 15:10:02,769 [main] INFO DocCollectorImpl - >> retained scoped IEC61850/IEC61850-7-2/ACSIEnums +2024-09-08 15:10:02,770 [main] INFO PackageDocImpl - collecting doc for package CoreTypes ... +2024-09-08 15:10:02,770 [main] INFO DocCollectorImpl - >> retained scoped IEC61850/IEC61850-7-2/CoreTypes +2024-09-08 15:10:02,772 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT32, hphSpec = 'aaùINT32ùUML85ùdd' +2024-09-08 15:10:02,772 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimeQuality, hphSpec = 'aaùTimeQualityùUML94ùdd' +2024-09-08 15:10:02,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimeAccuracyKind, hphSpec = 'aaùTimeAccuracyKindùUML95ùdd' +2024-09-08 15:10:02,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,773 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,774 [main] INFO PackageDocImpl - collecting doc for package ObjectReferences ... +2024-09-08 15:10:02,774 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = P_ObjectReference, hphSpec = 'aaùP_ObjectReferenceùUML91ùdd' +2024-09-08 15:10:02,774 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = P_ObjectReference, hphSpec = 'aaùP_ObjectReferenceùUML91ùdd' +2024-09-08 15:10:02,774 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = P_ObjectReference, hphSpec = 'aaùP_ObjectReferenceùUML91ùdd' +2024-09-08 15:10:02,775 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LDReference, hphSpec = 'aaùLDReferenceùUML183ùdd' +2024-09-08 15:10:02,775 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = P_ObjectReference, hphSpec = 'aaùP_ObjectReferenceùUML91ùdd' +2024-09-08 15:10:02,775 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNReference, hphSpec = 'aaùLNReferenceùUML184ùdd' +2024-09-08 15:10:02,775 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LDReference, hphSpec = 'aaùLDReferenceùUML183ùdd' +2024-09-08 15:10:02,775 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = P_ObjectReference, hphSpec = 'aaùP_ObjectReferenceùUML91ùdd' +2024-09-08 15:10:02,775 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNReference, hphSpec = 'aaùLNReferenceùUML184ùdd' +2024-09-08 15:10:02,776 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LDReference, hphSpec = 'aaùLDReferenceùUML183ùdd' +2024-09-08 15:10:02,776 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = P_ObjectReference, hphSpec = 'aaùP_ObjectReferenceùUML91ùdd' +2024-09-08 15:10:02,776 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ServiceFcKind, hphSpec = 'aaùServiceFcKindùUML97ùdd' +2024-09-08 15:10:02,776 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNReference, hphSpec = 'aaùLNReferenceùUML184ùdd' +2024-09-08 15:10:02,776 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LDReference, hphSpec = 'aaùLDReferenceùUML183ùdd' +2024-09-08 15:10:02,776 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = P_ObjectReference, hphSpec = 'aaùP_ObjectReferenceùUML91ùdd' +2024-09-08 15:10:02,776 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ServiceFcKind, hphSpec = 'aaùServiceFcKindùUML97ùdd' +2024-09-08 15:10:02,777 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNReference, hphSpec = 'aaùLNReferenceùUML184ùdd' +2024-09-08 15:10:02,777 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LDReference, hphSpec = 'aaùLDReferenceùUML183ùdd' +2024-09-08 15:10:02,777 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = P_ObjectReference, hphSpec = 'aaùP_ObjectReferenceùUML91ùdd' +2024-09-08 15:10:02,777 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDCReference, hphSpec = 'aaùCDCReferenceùUML185ùdd' +2024-09-08 15:10:02,777 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNReference, hphSpec = 'aaùLNReferenceùUML184ùdd' +2024-09-08 15:10:02,777 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LDReference, hphSpec = 'aaùLDReferenceùUML183ùdd' +2024-09-08 15:10:02,777 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = P_ObjectReference, hphSpec = 'aaùP_ObjectReferenceùUML91ùdd' +2024-09-08 15:10:02,777 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FcKind, hphSpec = 'aaùFcKindùUML79ùdd' +2024-09-08 15:10:02,777 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDReference, hphSpec = 'aaùFCDReferenceùUML186ùdd' +2024-09-08 15:10:02,777 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDCReference, hphSpec = 'aaùCDCReferenceùUML185ùdd' +2024-09-08 15:10:02,777 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNReference, hphSpec = 'aaùLNReferenceùUML184ùdd' +2024-09-08 15:10:02,777 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LDReference, hphSpec = 'aaùLDReferenceùUML183ùdd' +2024-09-08 15:10:02,777 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = P_ObjectReference, hphSpec = 'aaùP_ObjectReferenceùUML91ùdd' +2024-09-08 15:10:02,777 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:10:02,777 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT32U, hphSpec = 'aaùINT32UùUML86ùdd' +2024-09-08 15:10:02,778 [main] INFO PackageDocImpl - collecting doc for package AttrValues ... +2024-09-08 15:10:02,779 [main] INFO PackageDocImpl - collecting doc for package BasicDAs ... +2024-09-08 15:10:02,780 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:10:02,780 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:10:02,780 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,780 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,780 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,781 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:10:02,781 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:10:02,781 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,781 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,781 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,782 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:10:02,782 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:10:02,782 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,782 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,782 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,782 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:10:02,782 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:10:02,782 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,782 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,782 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,783 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:10:02,783 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:10:02,783 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,783 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,783 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,783 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:10:02,783 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:10:02,783 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,783 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,783 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,783 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:10:02,783 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:10:02,783 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,783 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,783 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,784 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:10:02,784 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:10:02,784 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,784 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,784 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,784 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:10:02,784 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:10:02,784 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,784 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,784 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,784 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PackedPrimitiveDA, hphSpec = 'aaùPackedPrimitiveDAùUML336ùdd' +2024-09-08 15:10:02,784 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:10:02,784 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:10:02,784 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,784 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,784 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,784 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PackedPrimitiveDA, hphSpec = 'aaùPackedPrimitiveDAùUML336ùdd' +2024-09-08 15:10:02,784 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:10:02,784 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:10:02,784 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,784 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,784 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,785 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PackedEnumDA, hphSpec = 'aaùPackedEnumDAùUML341ùdd' +2024-09-08 15:10:02,785 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:10:02,785 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:10:02,785 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:10:02,785 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,785 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,785 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,785 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PackedEnumDA, hphSpec = 'aaùPackedEnumDAùUML341ùdd' +2024-09-08 15:10:02,785 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:10:02,785 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:10:02,785 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:10:02,785 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,785 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,785 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,785 [main] INFO PackageDocImpl - collecting doc for package AcsiTypes ... +2024-09-08 15:10:02,786 [main] INFO PackageDocImpl - collecting doc for package CommonAcsiTypes ... +2024-09-08 15:10:02,805 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT16U, hphSpec = 'aaùINT16UùUML84ùdd' +2024-09-08 15:10:02,805 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT16U, hphSpec = 'aaùINT16UùUML84ùdd' +2024-09-08 15:10:02,806 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ReportID, hphSpec = 'aaùReportIDùUML107ùdd' +2024-09-08 15:10:02,806 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntryID, hphSpec = 'aaùEntryIDùUML108ùdd' +2024-09-08 15:10:02,806 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Authentication, hphSpec = 'aaùAuthenticationùUML105ùdd' +2024-09-08 15:10:02,806 [main] INFO PackageDocImpl - collecting doc for package MetaModel ... +2024-09-08 15:10:02,806 [main] INFO DocCollectorImpl - >> retained scoped IEC61850/IEC61850-7-2/MetaModel +2024-09-08 15:10:02,807 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,807 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,807 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,807 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,808 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,808 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,808 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SERVER, hphSpec = 'aaùSERVERùUML376ùdd' +2024-09-08 15:10:02,808 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,808 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,808 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IPAddress, hphSpec = 'aaùIPAddressùUML103ùdd' +2024-09-08 15:10:02,808 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MCAA, hphSpec = 'aaùMCAAùUML380ùdd' +2024-09-08 15:10:02,808 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FILE, hphSpec = 'aaùFILEùUML378ùdd' +2024-09-08 15:10:02,808 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TPAA, hphSpec = 'aaùTPAAùUML379ùdd' +2024-09-08 15:10:02,808 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LD, hphSpec = 'aaùLDùUML194ùdd' +2024-09-08 15:10:02,808 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IED, hphSpec = 'aaùIEDùUML375ùdd' +2024-09-08 15:10:02,808 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,809 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NonPersistentDS, hphSpec = 'aaùNonPersistentDSùUML363ùdd' +2024-09-08 15:10:02,809 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,809 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,809 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,809 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,809 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LDReference, hphSpec = 'aaùLDReferenceùUML183ùdd' +2024-09-08 15:10:02,809 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNDOM, hphSpec = 'aaùLNDOMùUML200ùdd' +2024-09-08 15:10:02,809 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN0, hphSpec = 'aaùLN0ùUML198ùdd' +2024-09-08 15:10:02,809 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNPHD, hphSpec = 'aaùLNPHDùUML196ùdd' +2024-09-08 15:10:02,809 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SERVER, hphSpec = 'aaùSERVERùUML376ùdd' +2024-09-08 15:10:02,809 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,809 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,809 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,809 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNReference, hphSpec = 'aaùLNReferenceùUML184ùdd' +2024-09-08 15:10:02,810 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:10:02,810 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNOwnedDS, hphSpec = 'aaùLNOwnedDSùUML360ùdd' +2024-09-08 15:10:02,810 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LOG, hphSpec = 'aaùLOGùUML374ùdd' +2024-09-08 15:10:02,810 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LCB, hphSpec = 'aaùLCBùUML368ùdd' +2024-09-08 15:10:02,810 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = URCB, hphSpec = 'aaùURCBùUML367ùdd' +2024-09-08 15:10:02,810 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BRCB, hphSpec = 'aaùBRCBùUML366ùdd' +2024-09-08 15:10:02,810 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:10:02,810 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,810 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,810 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,810 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LD, hphSpec = 'aaùLDùUML194ùdd' +2024-09-08 15:10:02,810 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:10:02,810 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,810 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,810 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,811 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = USVCB, hphSpec = 'aaùUSVCBùUML372ùdd' +2024-09-08 15:10:02,811 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GCB, hphSpec = 'aaùGCBùUML369ùdd' +2024-09-08 15:10:02,811 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MSVCB, hphSpec = 'aaùMSVCBùUML371ùdd' +2024-09-08 15:10:02,811 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SGCB, hphSpec = 'aaùSGCBùUML373ùdd' +2024-09-08 15:10:02,811 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LD, hphSpec = 'aaùLDùUML194ùdd' +2024-09-08 15:10:02,811 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:10:02,811 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,811 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,811 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,812 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LD, hphSpec = 'aaùLDùUML194ùdd' +2024-09-08 15:10:02,812 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,812 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,812 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,816 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,816 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCD, hphSpec = 'aaùFCDùUML377ùdd' +2024-09-08 15:10:02,816 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:10:02,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:10:02,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:10:02,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ComposedCDC, hphSpec = 'aaùComposedCDCùUML249ùdd' +2024-09-08 15:10:02,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:10:02,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:10:02,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDReference, hphSpec = 'aaùFCDReferenceùUML186ùdd' +2024-09-08 15:10:02,817 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FcKind, hphSpec = 'aaùFcKindùUML79ùdd' +2024-09-08 15:10:02,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DS, hphSpec = 'aaùDSùUML359ùdd' +2024-09-08 15:10:02,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:10:02,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDAReference, hphSpec = 'aaùFCDAReferenceùUML187ùdd' +2024-09-08 15:10:02,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:10:02,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DS, hphSpec = 'aaùDSùUML359ùdd' +2024-09-08 15:10:02,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:10:02,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCD, hphSpec = 'aaùFCDùUML377ùdd' +2024-09-08 15:10:02,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDAReference, hphSpec = 'aaùFCDAReferenceùUML187ùdd' +2024-09-08 15:10:02,818 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ComposedDA, hphSpec = 'aaùComposedDAùUML354ùdd' +2024-09-08 15:10:02,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:10:02,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AttrValue, hphSpec = 'aaùAttrValueùUML99ùdd' +2024-09-08 15:10:02,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:10:02,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:10:02,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:10:02,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:10:02,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:10:02,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,819 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,820 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:10:02,820 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:10:02,820 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:10:02,820 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,820 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,820 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,820 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:10:02,820 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,820 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,820 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,820 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:10:02,820 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,820 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,820 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,820 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCD, hphSpec = 'aaùFCDùUML377ùdd' +2024-09-08 15:10:02,820 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,820 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DS, hphSpec = 'aaùDSùUML359ùdd' +2024-09-08 15:10:02,820 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,821 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,821 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,821 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNOwnedDSReference, hphSpec = 'aaùLNOwnedDSReferenceùUML190ùdd' +2024-09-08 15:10:02,821 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:10:02,821 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DS, hphSpec = 'aaùDSùUML359ùdd' +2024-09-08 15:10:02,821 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,821 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,821 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,821 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,821 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NonPersistentDSReference, hphSpec = 'aaùNonPersistentDSReferenceùUML191ùdd' +2024-09-08 15:10:02,821 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TPAA, hphSpec = 'aaùTPAAùUML379ùdd' +2024-09-08 15:10:02,821 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNOwnedDS, hphSpec = 'aaùLNOwnedDSùUML360ùdd' +2024-09-08 15:10:02,821 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DS, hphSpec = 'aaùDSùUML359ùdd' +2024-09-08 15:10:02,821 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,821 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,821 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNOwnedDS, hphSpec = 'aaùLNOwnedDSùUML360ùdd' +2024-09-08 15:10:02,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DS, hphSpec = 'aaùDSùUML359ùdd' +2024-09-08 15:10:02,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CBReference, hphSpec = 'aaùCBReferenceùUML188ùdd' +2024-09-08 15:10:02,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControlBlock, hphSpec = 'aaùControlBlockùUML364ùdd' +2024-09-08 15:10:02,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,822 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = RCB, hphSpec = 'aaùRCBùUML365ùdd' +2024-09-08 15:10:02,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControlBlock, hphSpec = 'aaùControlBlockùUML364ùdd' +2024-09-08 15:10:02,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IPAddress, hphSpec = 'aaùIPAddressùUML103ùdd' +2024-09-08 15:10:02,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNOwnedDS, hphSpec = 'aaùLNOwnedDSùUML360ùdd' +2024-09-08 15:10:02,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:10:02,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = RCB, hphSpec = 'aaùRCBùUML365ùdd' +2024-09-08 15:10:02,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControlBlock, hphSpec = 'aaùControlBlockùUML364ùdd' +2024-09-08 15:10:02,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IPAddress, hphSpec = 'aaùIPAddressùUML103ùdd' +2024-09-08 15:10:02,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DS, hphSpec = 'aaùDSùUML359ùdd' +2024-09-08 15:10:02,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:10:02,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControlBlock, hphSpec = 'aaùControlBlockùUML364ùdd' +2024-09-08 15:10:02,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,823 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNOwnedDS, hphSpec = 'aaùLNOwnedDSùUML360ùdd' +2024-09-08 15:10:02,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LOG, hphSpec = 'aaùLOGùUML374ùdd' +2024-09-08 15:10:02,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:10:02,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LOGReference, hphSpec = 'aaùLOGReferenceùUML189ùdd' +2024-09-08 15:10:02,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:10:02,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControlBlock, hphSpec = 'aaùControlBlockùUML364ùdd' +2024-09-08 15:10:02,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MulticastAddress, hphSpec = 'aaùMulticastAddressùUML104ùdd' +2024-09-08 15:10:02,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNOwnedDS, hphSpec = 'aaùLNOwnedDSùUML360ùdd' +2024-09-08 15:10:02,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN0, hphSpec = 'aaùLN0ùUML198ùdd' +2024-09-08 15:10:02,824 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControlBlock, hphSpec = 'aaùControlBlockùUML364ùdd' +2024-09-08 15:10:02,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SVCB, hphSpec = 'aaùSVCBùUML370ùdd' +2024-09-08 15:10:02,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControlBlock, hphSpec = 'aaùControlBlockùUML364ùdd' +2024-09-08 15:10:02,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MulticastAddress, hphSpec = 'aaùMulticastAddressùUML104ùdd' +2024-09-08 15:10:02,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNOwnedDS, hphSpec = 'aaùLNOwnedDSùUML360ùdd' +2024-09-08 15:10:02,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN0, hphSpec = 'aaùLN0ùUML198ùdd' +2024-09-08 15:10:02,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SVCB, hphSpec = 'aaùSVCBùUML370ùdd' +2024-09-08 15:10:02,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControlBlock, hphSpec = 'aaùControlBlockùUML364ùdd' +2024-09-08 15:10:02,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IPAddress, hphSpec = 'aaùIPAddressùUML103ùdd' +2024-09-08 15:10:02,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DS, hphSpec = 'aaùDSùUML359ùdd' +2024-09-08 15:10:02,825 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN0, hphSpec = 'aaùLN0ùUML198ùdd' +2024-09-08 15:10:02,826 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControlBlock, hphSpec = 'aaùControlBlockùUML364ùdd' +2024-09-08 15:10:02,826 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,826 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,826 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,826 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SG, hphSpec = 'aaùFCDA_SGùUML291ùdd' +2024-09-08 15:10:02,826 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SE, hphSpec = 'aaùFCDA_SEùUML286ùdd' +2024-09-08 15:10:02,826 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN0, hphSpec = 'aaùLN0ùUML198ùdd' +2024-09-08 15:10:02,826 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,826 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,826 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FILEReference, hphSpec = 'aaùFILEReferenceùUML182ùdd' +2024-09-08 15:10:02,826 [main] INFO PackageDocImpl - collecting doc for package MetaModelFCsAndTrgOps ... +2024-09-08 15:10:02,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF, hphSpec = 'aaùFCDA_CFùUML256ùdd' +2024-09-08 15:10:02,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,828 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF_dchg, hphSpec = 'aaùFCDA_CF_dchgùUML258ùdd' +2024-09-08 15:10:02,829 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF, hphSpec = 'aaùFCDA_CFùUML256ùdd' +2024-09-08 15:10:02,829 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,829 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,829 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,829 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,830 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_MX, hphSpec = 'aaùFCDA_MXùUML273ùdd' +2024-09-08 15:10:02,830 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,830 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,830 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,830 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,831 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SE_dchg, hphSpec = 'aaùFCDA_SE_dchgùUML287ùdd' +2024-09-08 15:10:02,831 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SE, hphSpec = 'aaùFCDA_SEùUML286ùdd' +2024-09-08 15:10:02,831 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,831 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,831 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,831 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,831 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SG_dchg, hphSpec = 'aaùFCDA_SG_dchgùUML292ùdd' +2024-09-08 15:10:02,831 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SG, hphSpec = 'aaùFCDA_SGùUML291ùdd' +2024-09-08 15:10:02,831 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,831 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,831 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,831 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,831 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-08 15:10:02,831 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,831 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,831 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,831 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,831 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST_dchg, hphSpec = 'aaùFCDA_ST_dchgùUML302ùdd' +2024-09-08 15:10:02,832 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-08 15:10:02,832 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,832 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,832 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,832 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,832 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST_dchg_dupd, hphSpec = 'aaùFCDA_ST_dchg_dupdùUML310ùdd' +2024-09-08 15:10:02,832 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-08 15:10:02,832 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,832 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,832 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,832 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,832 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SV, hphSpec = 'aaùFCDA_SVùUML318ùdd' +2024-09-08 15:10:02,832 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,832 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,832 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,832 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,832 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,832 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,832 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,832 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,833 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FcKind, hphSpec = 'aaùFcKindùUML79ùdd' +2024-09-08 15:10:02,833 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,833 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,833 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,833 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,833 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FcKind, hphSpec = 'aaùFcKindùUML79ùdd' +2024-09-08 15:10:02,833 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF, hphSpec = 'aaùFCDA_CFùUML256ùdd' +2024-09-08 15:10:02,833 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,833 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,833 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,833 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,833 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TrgOpKind, hphSpec = 'aaùTrgOpKindùUML80ùdd' +2024-09-08 15:10:02,833 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,833 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,833 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,833 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,834 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FcKind, hphSpec = 'aaùFcKindùUML79ùdd' +2024-09-08 15:10:02,834 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,834 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,834 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,834 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,834 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FcKind, hphSpec = 'aaùFcKindùUML79ùdd' +2024-09-08 15:10:02,834 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,834 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,834 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,834 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,834 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,834 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FcKind, hphSpec = 'aaùFcKindùUML79ùdd' +2024-09-08 15:10:02,834 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,834 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_MX, hphSpec = 'aaùFCDA_MXùUML273ùdd' +2024-09-08 15:10:02,834 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,834 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,834 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,835 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,835 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TrgOpKind, hphSpec = 'aaùTrgOpKindùUML80ùdd' +2024-09-08 15:10:02,835 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_MX, hphSpec = 'aaùFCDA_MXùUML273ùdd' +2024-09-08 15:10:02,835 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,835 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,835 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,835 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,835 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TrgOpKind, hphSpec = 'aaùTrgOpKindùUML80ùdd' +2024-09-08 15:10:02,835 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_MX, hphSpec = 'aaùFCDA_MXùUML273ùdd' +2024-09-08 15:10:02,835 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,835 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,835 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,835 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,835 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TrgOpKind, hphSpec = 'aaùTrgOpKindùUML80ùdd' +2024-09-08 15:10:02,835 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,835 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,835 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,835 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,836 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FcKind, hphSpec = 'aaùFcKindùUML79ùdd' +2024-09-08 15:10:02,836 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,836 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_OR, hphSpec = 'aaùFCDA_ORùUML283ùdd' +2024-09-08 15:10:02,836 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,836 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,836 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,836 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,836 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TrgOpKind, hphSpec = 'aaùTrgOpKindùUML80ùdd' +2024-09-08 15:10:02,836 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,836 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,836 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,836 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,836 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FcKind, hphSpec = 'aaùFcKindùUML79ùdd' +2024-09-08 15:10:02,836 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,836 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,837 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SE, hphSpec = 'aaùFCDA_SEùUML286ùdd' +2024-09-08 15:10:02,837 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,837 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,837 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,837 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,837 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TrgOpKind, hphSpec = 'aaùTrgOpKindùUML80ùdd' +2024-09-08 15:10:02,837 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,837 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,837 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,837 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,837 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FcKind, hphSpec = 'aaùFcKindùUML79ùdd' +2024-09-08 15:10:02,837 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,837 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SG, hphSpec = 'aaùFCDA_SGùUML291ùdd' +2024-09-08 15:10:02,837 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,837 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,837 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,837 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,837 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TrgOpKind, hphSpec = 'aaùTrgOpKindùUML80ùdd' +2024-09-08 15:10:02,838 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,838 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,838 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,838 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,838 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FcKind, hphSpec = 'aaùFcKindùUML79ùdd' +2024-09-08 15:10:02,838 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SP, hphSpec = 'aaùFCDA_SPùUML296ùdd' +2024-09-08 15:10:02,838 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,838 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,838 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,838 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,838 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TrgOpKind, hphSpec = 'aaùTrgOpKindùUML80ùdd' +2024-09-08 15:10:02,838 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,838 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,838 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,838 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,838 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FcKind, hphSpec = 'aaùFcKindùUML79ùdd' +2024-09-08 15:10:02,838 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-08 15:10:02,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TrgOpKind, hphSpec = 'aaùTrgOpKindùUML80ùdd' +2024-09-08 15:10:02,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-08 15:10:02,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TrgOpKind, hphSpec = 'aaùTrgOpKindùUML80ùdd' +2024-09-08 15:10:02,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-08 15:10:02,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,839 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TrgOpKind, hphSpec = 'aaùTrgOpKindùUML80ùdd' +2024-09-08 15:10:02,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-08 15:10:02,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TrgOpKind, hphSpec = 'aaùTrgOpKindùUML80ùdd' +2024-09-08 15:10:02,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FcKind, hphSpec = 'aaùFcKindùUML79ùdd' +2024-09-08 15:10:02,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumFCDA_ST_dchg, hphSpec = 'aaùEnumFCDA_ST_dchgùUML303ùdd' +2024-09-08 15:10:02,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST_dchg, hphSpec = 'aaùFCDA_ST_dchgùUML302ùdd' +2024-09-08 15:10:02,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-08 15:10:02,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,840 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumFCDA_SV, hphSpec = 'aaùEnumFCDA_SVùUML319ùdd' +2024-09-08 15:10:02,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SV, hphSpec = 'aaùFCDA_SVùUML318ùdd' +2024-09-08 15:10:02,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,841 [main] INFO PackageDocImpl - collecting doc for package CDCServiceTracking ... +2024-09-08 15:10:02,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:10:02,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:10:02,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,841 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:10:02,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:10:02,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:10:02,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CST, hphSpec = 'aaùCSTùUML218ùdd' +2024-09-08 15:10:02,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:10:02,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:10:02,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,843 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,844 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:10:02,844 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,844 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:10:02,844 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:10:02,844 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,844 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CST, hphSpec = 'aaùCSTùUML218ùdd' +2024-09-08 15:10:02,844 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,844 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:10:02,844 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:10:02,844 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,844 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,844 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,844 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:10:02,844 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,844 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:10:02,844 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:10:02,844 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,845 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CST, hphSpec = 'aaùCSTùUML218ùdd' +2024-09-08 15:10:02,845 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,845 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:10:02,845 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:10:02,845 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,845 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,845 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,845 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:10:02,845 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,845 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:10:02,845 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:10:02,845 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,845 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CST, hphSpec = 'aaùCSTùUML218ùdd' +2024-09-08 15:10:02,845 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,845 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:10:02,845 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:10:02,845 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,845 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,845 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,845 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:10:02,845 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,846 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:10:02,846 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:10:02,846 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,846 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CST, hphSpec = 'aaùCSTùUML218ùdd' +2024-09-08 15:10:02,846 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,846 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:10:02,846 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:10:02,846 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,846 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,846 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,846 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:10:02,846 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,846 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:10:02,846 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:10:02,846 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CST, hphSpec = 'aaùCSTùUML218ùdd' +2024-09-08 15:10:02,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:10:02,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:10:02,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:10:02,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:10:02,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:10:02,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CST, hphSpec = 'aaùCSTùUML218ùdd' +2024-09-08 15:10:02,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:10:02,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:10:02,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,847 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:10:02,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:10:02,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:10:02,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CST, hphSpec = 'aaùCSTùUML218ùdd' +2024-09-08 15:10:02,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:10:02,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:10:02,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:10:02,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:10:02,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:10:02,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CST, hphSpec = 'aaùCSTùUML218ùdd' +2024-09-08 15:10:02,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:10:02,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:10:02,848 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,849 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:10:02,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:10:02,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:10:02,851 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,851 [main] INFO PackageDocImpl - collecting doc for package IEC61850_7_3 ... +2024-09-08 15:10:02,852 [main] INFO PackageDocImpl - collecting doc for package PresenceConditions ... +2024-09-08 15:10:02,852 [main] INFO DocCollectorImpl - >> retained scoped IEC61850/IEC61850-7-3/PresenceConditions +2024-09-08 15:10:02,855 [main] INFO PackageDocImpl - collected presence conditions from PresenceConditions ... +2024-09-08 15:10:02,855 [main] TRACE PackageDocImpl - org.tanjakostic.jcleancim.docgen.collector.impl.PresCondPackageDoc@50b9f2Conditions for element inclusion +This clause introduces conditions that specify presence of elements in a given context (one LN, or one CDC, or one data object for dataNs). +shows presence conditions. +Conditions for presence of elements within a context +"Condition name" | "Definition" +"M" | "Element is mandatory." +"O" | "Element is optional." +"MFsubst" | "Element is mandatory if substitution is supported (for substitution, see IEC 61850-7-2), otherwise forbidden." +"AtLeastOne(n)" | "At least one of marked elements shall be present." +"AllOrNonePerGroup(n)" | "Parameter n: group number (>0). +All or none of the elements of a group n shall be present." +"AtMostOne" | "At most one of marked elements shall be present." +"MF(sibling)" | "Parameter sibling: sibling element name. +Mandatory if sibling element is present, otherwise forbidden." +"AllOnlyOneGroup(n)" | "Parameter n: group number (>0). +All elements of only one group n shall be present." +"MOln0" | "The element is mandatory in the context of LLN0; otherwise optional." +"MFln0" | "The element is mandatory in the context of LLN0; otherwise forbidden." +"MOlnNs" | "The element is mandatory if the name space of its logical node deviates from the name space of the containing logical device, otherwise optional. +Notes: +- The logical device name space is given in LLN0.NamPlt.ldNs. +- Applies to LPL.lnNs only." +"MOdataNs" | "The element is mandatory if the name space of its data object deviates from the name space of its logical node, otherwise optional. +Notes: +- The name space a logical node LN belongs to is given by: +- The data attribute NamPlt.lnNs if available, otherwise +- The containing logical device name space, i.e., the data attribute NamPlt.ldNs of the relevant LLN0. +- Applies to the data attribute dataNs of any CDC only." +"MOcdcNs" | "The element is mandatory if the name space of its CDC deviates from the name space of its data object, otherwise optional. +Notes: +- The name space a data object belongs to is given by: +- The data attribute dataNs in the same CDC if it exists, otherwise +- The containing logical node’s namespace, i.e., the attribute NamPlt.lnNs if it exist, otherwise +- The containing logical device name space, i.e., the data attribute NamPlt.ldNs of the relevant LLN0. +- Applies to data attributes 'cdcNs' and 'cdcName' only. +- From Ed. 2 on shall only be used for logical node definitions of other name spaces (e.g., Wind) to refer to the standardized CDC definitions." +"MFscaledAV" | "The element is mandatory if any sibling elements of type AnalogueValue include 'i' as a child, otherwise forbidden." +"MFscaledMagV" | "The element is mandatory if any sibling elements of type Vector include 'i' as a child of their 'mag' attribute, otherwise forbidden." +"MFscaledAngV" | "The element is mandatory if any sibling elements of type Vector include 'i' as a child of their 'ang' attribute, otherwise forbidden." +"MFsg" | "The element is mandatory if it is member of setting group, otherwise forbidden. +Note: MFsg, OFsg, and MFsgAtLeastOne always all apply or all do not apply in a given context." +"OFsg" | "The element is optional and may be used only if it is member of setting groups, otherwise forbidden. +Note: MFsg, OFsg, and MFsgAtLeastOne always all apply or all do not apply in a given context." +"MFsgAtLeastOne" | "At least one of the elements is mandatory if it is member of setting group (the others are optional). Otherwise, they are all forbidden. +Note: MFsg, OFsg, and MFsgAtLeastOne always all apply or all do not apply in a given context." +"MFnsg" | "The element is mandatory for settings outside setting groups, otherwise forbidden. +Note: MFnsg, OFnsg, and MFnsgAtLeastOne always all apply or all do not apply in a given context." +"OFnsg" | "The element is optional and may be used only for settings outside setting groups, otherwise forbidden. +Note: MFnsg, OFnsg, and MFnsgAtLeastOne always all apply or all do not apply in a given context." +"MFnsgAtLeastOne" | "At least one of the elements is mandatory for settings outside setting groups (the others are optional). Otherwise, they are all forbidden. +Note: MFnsg, OFnsg, and MFnsgAtLeastOne always all apply or all do not apply in a given context." +"MFrms" | "The element is mandatory if the harmonic values in the context are calculated as a ratio to RMS value (value of data attribute 'hvRef' is 'rms'), forbidden otherwise." +"Mmulti" | "At least one element shall be present; all instances have an instance number within range [1, 99] (see Part 7-1)." +"Omulti" | "Zero or more elements may be present; all instances have an instance number within range [1, 99] (see Part 7-1)." +"OmultiRange(min, max)" | "Parameters min, max: limits for instance number (>0). +Zero or more elements may be present; all instances have an instance number within range [min, max] (see Part 7-1)." +"MOcond(condID)" | "Parameter condID: condition number (>0). +Textual presence condition (non-machine processable) with reference condID to context specific text. If satisfied, the element is mandatory, otherwise optional." +"MF(condID)" | "Parameter condID: condition number (>0). +Textual presence condition (non-machine processable) with reference condID to context specific text. If satisfied, the element is mandatory, otherwise forbidden." +"OF(condID)" | "Parameter condID: condition number (>0). +Textual presence condition (non-machine processable) with reference condID to context specific text. If satisfied, the element is optional, otherwise forbidden." +"MOrootLD" | "The element is mandatory in the context of a root logical device; otherwise it is optional." + +2024-09-08 15:10:02,855 [main] INFO PackageDocImpl - collecting doc for package DAEnums ... +2024-09-08 15:10:02,855 [main] INFO DocCollectorImpl - >> retained scoped IEC61850/IEC61850-7-3/DAEnums +2024-09-08 15:10:02,859 [main] TRACE EnumsScl - ---- collecting XML doc for enums in DAEnums ... +2024-09-08 15:10:02,861 [main] INFO PackageDocImpl - collected SCL from DAEnums ... +2024-09-08 15:10:02,861 [main] TRACE PackageDocImpl - + + m + kg + s + A + K + mol + cd + deg + rad + sr + Gy + Bq + °C + Sv + F + C + S + H + V + ohm + J + N + Hz + lx + Lm + Wb + T + W + Pa + + + m/s + m/s² + m³/s + m/m³ + M + kg/m³ + m²/s + W/m K + J/K + ppm + 1/s + rad/s + W/m² + J/m² + S/m + K/s + Pa/s + J/kg K + VA + Watts + VAr + phi + cos(phi) + Vs + + As + + A²t + VAh + Wh + VArh + V/Hz + Hz/s + char + char/s + kgm² + dB + J/Wh + W/s + l/s + dBm + + + y + z + a + f + p + n + µ + m + c + d + + da + h + k + M + G + T + P + E + Z + Y + + + unknown + forward + backward + + + Va + Vb + Vc + Aa + Ab + Ac + Vab + Vbc + Vca + Vother + Aother + Synchrophasor + + + +2024-09-08 15:10:02,861 [main] INFO PackageDocImpl - collecting doc for package ImplicitDAs ... +2024-09-08 15:10:02,862 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:10:02,862 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:10:02,862 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:10:02,862 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,862 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,862 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,863 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:10:02,863 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:10:02,863 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:10:02,863 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,863 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,863 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,863 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:10:02,863 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:10:02,864 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:10:02,864 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,864 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,864 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,864 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:10:02,864 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:10:02,864 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:10:02,864 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,864 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,864 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,865 [main] INFO PackageDocImpl - collecting doc for package ConstructedDAs ... +2024-09-08 15:10:02,865 [main] INFO DocCollectorImpl - >> retained scoped IEC61850/IEC61850-7-3/ConstructedDAs +2024-09-08 15:10:02,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PackedPrimitiveDA, hphSpec = 'aaùPackedPrimitiveDAùUML336ùdd' +2024-09-08 15:10:02,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:10:02,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:10:02,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ValidityKind, hphSpec = 'aaùValidityKindùUML120ùdd' +2024-09-08 15:10:02,865 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DetailQual, hphSpec = 'aaùDetailQualùUML121ùdd' +2024-09-08 15:10:02,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SourceKind, hphSpec = 'aaùSourceKindùUML122ùdd' +2024-09-08 15:10:02,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,866 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,867 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,867 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,867 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,867 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,867 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,867 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,867 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,867 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,868 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ComposedDA, hphSpec = 'aaùComposedDAùUML354ùdd' +2024-09-08 15:10:02,868 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:10:02,868 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,868 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,868 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,868 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT32, hphSpec = 'aaùINT32ùUML85ùdd' +2024-09-08 15:10:02,868 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FLOAT32, hphSpec = 'aaùFLOAT32ùUML87ùdd' +2024-09-08 15:10:02,868 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ComposedDA, hphSpec = 'aaùComposedDAùUML354ùdd' +2024-09-08 15:10:02,868 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:10:02,869 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,869 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,869 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,869 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AnalogueValue, hphSpec = 'aaùAnalogueValueùUML355ùdd' +2024-09-08 15:10:02,869 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AnalogueValue, hphSpec = 'aaùAnalogueValueùUML355ùdd' +2024-09-08 15:10:02,869 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AnalogueValue, hphSpec = 'aaùAnalogueValueùUML355ùdd' +2024-09-08 15:10:02,869 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AnalogueValue, hphSpec = 'aaùAnalogueValueùUML355ùdd' +2024-09-08 15:10:02,869 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AnalogueValue, hphSpec = 'aaùAnalogueValueùUML355ùdd' +2024-09-08 15:10:02,869 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AnalogueValue, hphSpec = 'aaùAnalogueValueùUML355ùdd' +2024-09-08 15:10:02,869 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT32U, hphSpec = 'aaùINT32UùUML86ùdd' +2024-09-08 15:10:02,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ComposedDA, hphSpec = 'aaùComposedDAùUML354ùdd' +2024-09-08 15:10:02,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:10:02,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SIUnitKind, hphSpec = 'aaùSIUnitKindùUML116ùdd' +2024-09-08 15:10:02,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MultiplierKind, hphSpec = 'aaùMultiplierKindùUML117ùdd' +2024-09-08 15:10:02,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ComposedDA, hphSpec = 'aaùComposedDAùUML354ùdd' +2024-09-08 15:10:02,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:10:02,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,870 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FLOAT32, hphSpec = 'aaùFLOAT32ùUML87ùdd' +2024-09-08 15:10:02,871 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FLOAT32, hphSpec = 'aaùFLOAT32ùUML87ùdd' +2024-09-08 15:10:02,871 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FLOAT32, hphSpec = 'aaùFLOAT32ùUML87ùdd' +2024-09-08 15:10:02,871 [main] INFO PackageDocImpl - collecting doc for package FCDAs ... +2024-09-08 15:10:02,871 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_MX, hphSpec = 'aaùFCDA_MXùUML273ùdd' +2024-09-08 15:10:02,871 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,871 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,871 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,871 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_MX_dchg, hphSpec = 'aaùFCDA_MX_dchgùUML275ùdd' +2024-09-08 15:10:02,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_MX, hphSpec = 'aaùFCDA_MXùUML273ùdd' +2024-09-08 15:10:02,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_MX_dchg_dupd, hphSpec = 'aaùFCDA_MX_dchg_dupdùUML278ùdd' +2024-09-08 15:10:02,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_MX, hphSpec = 'aaùFCDA_MXùUML273ùdd' +2024-09-08 15:10:02,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_BL, hphSpec = 'aaùFCDA_BLùUML254ùdd' +2024-09-08 15:10:02,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,872 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,873 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF_dchg, hphSpec = 'aaùFCDA_CF_dchgùUML258ùdd' +2024-09-08 15:10:02,873 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF, hphSpec = 'aaùFCDA_CFùUML256ùdd' +2024-09-08 15:10:02,873 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,873 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,873 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,873 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,873 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_MX_dchg, hphSpec = 'aaùFCDA_MX_dchgùUML275ùdd' +2024-09-08 15:10:02,873 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_MX, hphSpec = 'aaùFCDA_MXùUML273ùdd' +2024-09-08 15:10:02,873 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,873 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,873 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,873 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,873 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_OR_dchg, hphSpec = 'aaùFCDA_OR_dchgùUML284ùdd' +2024-09-08 15:10:02,873 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_OR, hphSpec = 'aaùFCDA_ORùUML283ùdd' +2024-09-08 15:10:02,873 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SE, hphSpec = 'aaùFCDA_SEùUML286ùdd' +2024-09-08 15:10:02,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SG, hphSpec = 'aaùFCDA_SGùUML291ùdd' +2024-09-08 15:10:02,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SP_dchg, hphSpec = 'aaùFCDA_SP_dchgùUML297ùdd' +2024-09-08 15:10:02,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SP, hphSpec = 'aaùFCDA_SPùUML296ùdd' +2024-09-08 15:10:02,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,874 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST_dchg, hphSpec = 'aaùFCDA_ST_dchgùUML302ùdd' +2024-09-08 15:10:02,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-08 15:10:02,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SV, hphSpec = 'aaùFCDA_SVùUML318ùdd' +2024-09-08 15:10:02,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PackedEnumFCDA_SP_dchg, hphSpec = 'aaùPackedEnumFCDA_SP_dchgùUML304ùdd' +2024-09-08 15:10:02,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumFCDA_ST_dchg, hphSpec = 'aaùEnumFCDA_ST_dchgùUML303ùdd' +2024-09-08 15:10:02,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST_dchg, hphSpec = 'aaùFCDA_ST_dchgùUML302ùdd' +2024-09-08 15:10:02,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-08 15:10:02,875 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,876 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,876 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,876 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,878 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PackedEnumFCDA_SV, hphSpec = 'aaùPackedEnumFCDA_SVùUML320ùdd' +2024-09-08 15:10:02,878 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumFCDA_SV, hphSpec = 'aaùEnumFCDA_SVùUML319ùdd' +2024-09-08 15:10:02,878 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SV, hphSpec = 'aaùFCDA_SVùUML318ùdd' +2024-09-08 15:10:02,878 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,878 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,878 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,878 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,878 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumFCDA_CF_dchg, hphSpec = 'aaùEnumFCDA_CF_dchgùUML259ùdd' +2024-09-08 15:10:02,879 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF_dchg, hphSpec = 'aaùFCDA_CF_dchgùUML258ùdd' +2024-09-08 15:10:02,879 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF, hphSpec = 'aaùFCDA_CFùUML256ùdd' +2024-09-08 15:10:02,879 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,879 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,879 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,879 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,879 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumFCDA_ST_dchg, hphSpec = 'aaùEnumFCDA_ST_dchgùUML303ùdd' +2024-09-08 15:10:02,879 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST_dchg, hphSpec = 'aaùFCDA_ST_dchgùUML302ùdd' +2024-09-08 15:10:02,879 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-08 15:10:02,879 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,879 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,879 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,879 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,879 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumFCDA_ST_dchg_dupd, hphSpec = 'aaùEnumFCDA_ST_dchg_dupdùUML311ùdd' +2024-09-08 15:10:02,879 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST_dchg_dupd, hphSpec = 'aaùFCDA_ST_dchg_dupdùUML310ùdd' +2024-09-08 15:10:02,879 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-08 15:10:02,880 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,880 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,880 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,880 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,880 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumFCDA_SV, hphSpec = 'aaùEnumFCDA_SVùUML319ùdd' +2024-09-08 15:10:02,880 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SV, hphSpec = 'aaùFCDA_SVùUML318ùdd' +2024-09-08 15:10:02,880 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,880 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,880 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,880 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,880 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF, hphSpec = 'aaùFCDA_CFùUML256ùdd' +2024-09-08 15:10:02,880 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,880 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,880 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,880 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF_dchg, hphSpec = 'aaùFCDA_CF_dchgùUML258ùdd' +2024-09-08 15:10:02,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF, hphSpec = 'aaùFCDA_CFùUML256ùdd' +2024-09-08 15:10:02,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF_dchg, hphSpec = 'aaùFCDA_CF_dchgùUML258ùdd' +2024-09-08 15:10:02,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF, hphSpec = 'aaùFCDA_CFùUML256ùdd' +2024-09-08 15:10:02,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF_dchg, hphSpec = 'aaùFCDA_CF_dchgùUML258ùdd' +2024-09-08 15:10:02,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF, hphSpec = 'aaùFCDA_CFùUML256ùdd' +2024-09-08 15:10:02,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST_dchg, hphSpec = 'aaùFCDA_ST_dchgùUML302ùdd' +2024-09-08 15:10:02,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-08 15:10:02,881 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST_dchg_dupd, hphSpec = 'aaùFCDA_ST_dchg_dupdùUML310ùdd' +2024-09-08 15:10:02,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-08 15:10:02,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumFCDA_CF_dchg, hphSpec = 'aaùEnumFCDA_CF_dchgùUML259ùdd' +2024-09-08 15:10:02,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF_dchg, hphSpec = 'aaùFCDA_CF_dchgùUML258ùdd' +2024-09-08 15:10:02,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF, hphSpec = 'aaùFCDA_CFùUML256ùdd' +2024-09-08 15:10:02,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumFCDA_ST_dchg, hphSpec = 'aaùEnumFCDA_ST_dchgùUML303ùdd' +2024-09-08 15:10:02,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST_dchg, hphSpec = 'aaùFCDA_ST_dchgùUML302ùdd' +2024-09-08 15:10:02,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-08 15:10:02,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,882 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_DC, hphSpec = 'aaùFCDA_DCùUML268ùdd' +2024-09-08 15:10:02,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SE, hphSpec = 'aaùFCDA_SEùUML286ùdd' +2024-09-08 15:10:02,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SG, hphSpec = 'aaùFCDA_SGùUML291ùdd' +2024-09-08 15:10:02,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SP, hphSpec = 'aaùFCDA_SPùUML296ùdd' +2024-09-08 15:10:02,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,883 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,884 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,884 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,884 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_MX_qchg, hphSpec = 'aaùFCDA_MX_qchgùUML280ùdd' +2024-09-08 15:10:02,884 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_MX, hphSpec = 'aaùFCDA_MXùUML273ùdd' +2024-09-08 15:10:02,884 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,884 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,884 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,884 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,884 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST_qchg, hphSpec = 'aaùFCDA_ST_qchgùUML315ùdd' +2024-09-08 15:10:02,884 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-08 15:10:02,884 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,884 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,884 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,884 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,884 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SV, hphSpec = 'aaùFCDA_SVùUML318ùdd' +2024-09-08 15:10:02,884 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,884 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,884 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,884 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,884 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF_dchg, hphSpec = 'aaùFCDA_CF_dchgùUML258ùdd' +2024-09-08 15:10:02,885 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF, hphSpec = 'aaùFCDA_CFùUML256ùdd' +2024-09-08 15:10:02,885 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,885 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,885 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,885 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,885 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-08 15:10:02,885 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,885 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,885 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,885 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,885 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_DC, hphSpec = 'aaùFCDA_DCùUML268ùdd' +2024-09-08 15:10:02,885 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,885 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,885 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,885 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,885 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_EX, hphSpec = 'aaùFCDA_EXùUML271ùdd' +2024-09-08 15:10:02,885 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:10:02,885 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,885 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,885 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,886 [main] INFO PackageDocImpl - collecting doc for package CommonDataClasses ... +2024-09-08 15:10:02,886 [main] INFO DocCollectorImpl - >> retained scoped IEC61850/IEC61850-7-3/CommonDataClasses +2024-09-08 15:10:02,886 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:10:02,886 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:10:02,886 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,886 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,886 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,886 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:10:02,886 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:10:02,886 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:10:02,887 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ComposedCDC, hphSpec = 'aaùComposedCDCùUML249ùdd' +2024-09-08 15:10:02,887 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:10:02,887 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,887 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,887 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,887 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:10:02,887 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:10:02,887 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:10:02,887 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,887 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:10:02,887 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:10:02,887 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,887 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,887 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,888 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,888 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:10:02,888 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:10:02,888 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:10:02,888 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,888 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:10:02,888 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,888 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:10:02,888 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:10:02,888 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,888 [main] INFO PackageDocImpl - collecting doc for package CDCStatusInfo ... +2024-09-08 15:10:02,889 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,889 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,889 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:10:02,889 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:10:02,889 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,889 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,889 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,889 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DpStatusKind, hphSpec = 'aaùDpStatusKindùUML82ùdd' +2024-09-08 15:10:02,889 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:10:02,889 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimeStamp, hphSpec = 'aaùTimeStampùUML93ùdd' +2024-09-08 15:10:02,889 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DpStatusKind, hphSpec = 'aaùDpStatusKindùUML82ùdd' +2024-09-08 15:10:02,889 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:10:02,889 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,889 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:10:02,889 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,889 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:10:02,889 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:10:02,889 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,890 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,890 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,890 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:10:02,890 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,890 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:10:02,890 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:10:02,890 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,890 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,890 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,890 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:10:02,890 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:10:02,890 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,890 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,890 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,890 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:10:02,891 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:10:02,891 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimeStamp, hphSpec = 'aaùTimeStampùUML93ùdd' +2024-09-08 15:10:02,891 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:10:02,891 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:10:02,891 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,891 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:10:02,891 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,891 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:10:02,891 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:10:02,891 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,891 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,891 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,891 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:10:02,891 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,891 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:10:02,891 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:10:02,891 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,892 [main] INFO Reordering - adding reordering spec: MOVE "subVal" AFTER "subEna" +2024-09-08 15:10:02,893 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,893 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:10:02,893 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:10:02,893 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,893 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,893 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,894 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:10:02,894 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:10:02,894 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimeStamp, hphSpec = 'aaùTimeStampùUML93ùdd' +2024-09-08 15:10:02,894 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:10:02,894 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,894 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:10:02,894 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:10:02,894 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,894 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,894 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:10:02,894 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:10:02,895 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,895 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,895 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,895 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,895 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AllOrNonePerGroup(1), hphSpec = 'aaùAllOrNonePerGroup(1)ùUML560ùdd' +2024-09-08 15:10:02,895 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,895 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AllOrNonePerGroup(2), hphSpec = 'aaùAllOrNonePerGroup(2)ùUML560ùdd' +2024-09-08 15:10:02,895 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:10:02,895 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,895 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:10:02,895 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:10:02,895 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,896 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,896 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:10:02,896 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:10:02,896 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,896 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,896 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,896 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT32, hphSpec = 'aaùINT32ùUML85ùdd' +2024-09-08 15:10:02,897 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT16U, hphSpec = 'aaùINT16UùUML84ùdd' +2024-09-08 15:10:02,897 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:10:02,897 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,897 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:10:02,897 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:10:02,897 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,897 [main] INFO PackageDocImpl - collecting doc for package CDCAnalogueInfo ... +2024-09-08 15:10:02,898 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseComposedCDC, hphSpec = 'aaùBaseComposedCDCùUML250ùdd' +2024-09-08 15:10:02,898 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ComposedCDC, hphSpec = 'aaùComposedCDCùUML249ùdd' +2024-09-08 15:10:02,898 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:10:02,898 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,898 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,898 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,898 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT16U, hphSpec = 'aaùINT16UùUML84ùdd' +2024-09-08 15:10:02,898 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT32U, hphSpec = 'aaùINT32UùUML86ùdd' +2024-09-08 15:10:02,898 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:10:02,898 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseComposedCDC, hphSpec = 'aaùBaseComposedCDCùUML250ùdd' +2024-09-08 15:10:02,898 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:10:02,898 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:10:02,898 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseComposedCDC, hphSpec = 'aaùBaseComposedCDCùUML250ùdd' +2024-09-08 15:10:02,899 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,899 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,899 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:10:02,899 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:10:02,899 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,899 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,899 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,899 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,899 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:10:02,899 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,899 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:10:02,899 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:10:02,899 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,899 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,899 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,900 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = RangeConfig, hphSpec = 'aaùRangeConfigùUML356ùdd' +2024-09-08 15:10:02,900 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MF(range), hphSpec = 'aaùMF(range)ùUML562ùdd' +2024-09-08 15:10:02,900 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = RangeConfig, hphSpec = 'aaùRangeConfigùUML356ùdd' +2024-09-08 15:10:02,900 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MF(rangeAng), hphSpec = 'aaùMF(rangeAng)ùUML562ùdd' +2024-09-08 15:10:02,900 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:10:02,900 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,900 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:10:02,900 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:10:02,900 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,901 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HarmonicMeasurandCDC, hphSpec = 'aaùHarmonicMeasurandCDCùUML251ùdd' +2024-09-08 15:10:02,901 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseComposedCDC, hphSpec = 'aaùBaseComposedCDCùUML250ùdd' +2024-09-08 15:10:02,901 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ComposedCDC, hphSpec = 'aaùComposedCDCùUML249ùdd' +2024-09-08 15:10:02,901 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:10:02,901 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,901 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,901 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,901 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CMV, hphSpec = 'aaùCMVùUML236ùdd' +2024-09-08 15:10:02,901 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PhaseAngleReferenceKind, hphSpec = 'aaùPhaseAngleReferenceKindùUML119ùdd' +2024-09-08 15:10:02,902 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT16U, hphSpec = 'aaùINT16UùUML84ùdd' +2024-09-08 15:10:02,902 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HarmonicMeasurandCDC, hphSpec = 'aaùHarmonicMeasurandCDCùUML251ùdd' +2024-09-08 15:10:02,902 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT32U, hphSpec = 'aaùINT32UùUML86ùdd' +2024-09-08 15:10:02,902 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HarmonicMeasurandCDC, hphSpec = 'aaùHarmonicMeasurandCDCùUML251ùdd' +2024-09-08 15:10:02,902 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:10:02,902 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseComposedCDC, hphSpec = 'aaùBaseComposedCDCùUML250ùdd' +2024-09-08 15:10:02,902 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:10:02,902 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:10:02,902 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseComposedCDC, hphSpec = 'aaùBaseComposedCDCùUML250ùdd' +2024-09-08 15:10:02,902 [main] INFO Reordering - adding reordering spec: MOVE "angRef" AFTER "evalTm" +2024-09-08 15:10:02,902 [main] INFO PackageDocImpl - collecting doc for package CDCControl ... +2024-09-08 15:10:02,903 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,903 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,903 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:10:02,903 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:10:02,903 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,903 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,903 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,903 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,905 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,905 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:10:02,905 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,905 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:10:02,905 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:10:02,905 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,906 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,906 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,906 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:10:02,906 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,906 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:10:02,906 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:10:02,906 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,907 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControllableCDC, hphSpec = 'aaùControllableCDCùUML237ùdd' +2024-09-08 15:10:02,907 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,907 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,907 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:10:02,907 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:10:02,907 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,907 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,907 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,907 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:10:02,907 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,907 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControllableCDC, hphSpec = 'aaùControllableCDCùUML237ùdd' +2024-09-08 15:10:02,907 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:10:02,907 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:10:02,907 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,907 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:10:02,907 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,907 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:10:02,907 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:10:02,907 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,907 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,907 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,907 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:10:02,907 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,907 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:10:02,908 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:10:02,908 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,908 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:10:02,908 [main] INFO Reordering - adding reordering spec: MOVE "subVal" AFTER "subEna" +2024-09-08 15:10:02,908 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControllableCDC, hphSpec = 'aaùControllableCDCùUML237ùdd' +2024-09-08 15:10:02,908 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,908 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,908 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:10:02,908 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:10:02,908 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,908 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,908 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,908 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AnalogueValue, hphSpec = 'aaùAnalogueValueùUML355ùdd' +2024-09-08 15:10:02,908 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AllOrNonePerGroup(1), hphSpec = 'aaùAllOrNonePerGroup(1)ùUML560ùdd' +2024-09-08 15:10:02,909 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,909 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControllableCDC, hphSpec = 'aaùControllableCDCùUML237ùdd' +2024-09-08 15:10:02,909 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,909 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:10:02,909 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,909 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:10:02,909 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:10:02,909 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,909 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,909 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,909 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:10:02,909 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,909 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:10:02,909 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:10:02,909 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,909 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BsControlKind, hphSpec = 'aaùBsControlKindùUML81ùdd' +2024-09-08 15:10:02,910 [main] INFO PackageDocImpl - collecting doc for package CDCStatusSet ... +2024-09-08 15:10:02,910 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,910 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:10:02,910 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:10:02,910 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,910 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,910 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,910 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:10:02,910 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,910 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:10:02,910 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:10:02,910 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,911 [main] INFO PackageDocImpl - collecting doc for package CDCAnalogueSet ... +2024-09-08 15:10:02,911 [main] INFO PackageDocImpl - collecting doc for package CDCDescription ... +2024-09-08 15:10:02,911 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,911 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:10:02,911 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:10:02,911 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,911 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,911 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,911 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:10:02,911 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFln0, hphSpec = 'aaùMFln0ùUML565ùdd' +2024-09-08 15:10:02,911 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:10:02,911 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOlnNs, hphSpec = 'aaùMOlnNsùUML566ùdd' +2024-09-08 15:10:02,911 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:10:02,912 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,912 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:10:02,912 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:10:02,912 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,913 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENG, hphSpec = 'aaùENGùUML246ùdd' +2024-09-08 15:10:02,913 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENG, hphSpec = 'aaùENGùUML246ùdd' +2024-09-08 15:10:02,913 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HWYE, hphSpec = 'aaùHWYEùUML252ùdd' +2024-09-08 15:10:02,913 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PhaseAngleReferenceKind, hphSpec = 'aaùPhaseAngleReferenceKindùUML119ùdd' +2024-09-08 15:10:02,913 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,913 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,913 [main] DEBUG DataIndexDoc - Attribute 'cdcNs' defined on multiple classes in and under 'CommonDataClasses' - may be possible to avoid duplication by using inheritance. +2024-09-08 15:10:02,913 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,913 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseComposedCDC, hphSpec = 'aaùBaseComposedCDCùUML250ùdd' +2024-09-08 15:10:02,913 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:10:02,913 [main] DEBUG DataIndexDoc - Attribute 'ctlVal' defined on multiple classes in and under 'CommonDataClasses' - may be possible to avoid duplication by using inheritance. +2024-09-08 15:10:02,913 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:10:02,913 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BAC, hphSpec = 'aaùBACùUML241ùdd' +2024-09-08 15:10:02,913 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:10:02,913 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BsControlKind, hphSpec = 'aaùBsControlKindùUML81ùdd' +2024-09-08 15:10:02,914 [main] DEBUG DataIndexDoc - Attribute 'dU' defined on multiple classes in and under 'CommonDataClasses' - may be possible to avoid duplication by using inheritance. +2024-09-08 15:10:02,914 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,914 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseComposedCDC, hphSpec = 'aaùBaseComposedCDCùUML250ùdd' +2024-09-08 15:10:02,914 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:10:02,914 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ACD, hphSpec = 'aaùACDùUML244ùdd' +2024-09-08 15:10:02,914 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HarmonicMeasurandCDC, hphSpec = 'aaùHarmonicMeasurandCDCùUML251ùdd' +2024-09-08 15:10:02,914 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT16U, hphSpec = 'aaùINT16UùUML84ùdd' +2024-09-08 15:10:02,914 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HST, hphSpec = 'aaùHSTùUML245ùdd' +2024-09-08 15:10:02,914 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT32, hphSpec = 'aaùINT32ùUML85ùdd' +2024-09-08 15:10:02,914 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CMV, hphSpec = 'aaùCMVùUML236ùdd' +2024-09-08 15:10:02,914 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LPL, hphSpec = 'aaùLPLùUML248ùdd' +2024-09-08 15:10:02,914 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:10:02,914 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LPL, hphSpec = 'aaùLPLùUML248ùdd' +2024-09-08 15:10:02,914 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:10:02,914 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BAC, hphSpec = 'aaùBACùUML241ùdd' +2024-09-08 15:10:02,914 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AnalogueValue, hphSpec = 'aaùAnalogueValueùUML355ùdd' +2024-09-08 15:10:02,914 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HST, hphSpec = 'aaùHSTùUML245ùdd' +2024-09-08 15:10:02,914 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT16U, hphSpec = 'aaùINT16UùUML84ùdd' +2024-09-08 15:10:02,914 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControllableCDC, hphSpec = 'aaùControllableCDCùUML237ùdd' +2024-09-08 15:10:02,914 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,914 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ACD, hphSpec = 'aaùACDùUML244ùdd' +2024-09-08 15:10:02,914 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,914 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HWYE, hphSpec = 'aaùHWYEùUML252ùdd' +2024-09-08 15:10:02,914 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CMV, hphSpec = 'aaùCMVùUML236ùdd' +2024-09-08 15:10:02,914 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ACD, hphSpec = 'aaùACDùUML244ùdd' +2024-09-08 15:10:02,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,915 [main] DEBUG DataIndexDoc - Attribute 'q' defined on multiple classes in and under 'CommonDataClasses' - may be possible to avoid duplication by using inheritance. +2024-09-08 15:10:02,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DPS, hphSpec = 'aaùDPSùUML229ùdd' +2024-09-08 15:10:02,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EXY, hphSpec = 'aaùEXYùUML242ùdd' +2024-09-08 15:10:02,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:10:02,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CMV, hphSpec = 'aaùCMVùUML236ùdd' +2024-09-08 15:10:02,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = RangeConfig, hphSpec = 'aaùRangeConfigùUML356ùdd' +2024-09-08 15:10:02,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CMV, hphSpec = 'aaùCMVùUML236ùdd' +2024-09-08 15:10:02,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = RangeConfig, hphSpec = 'aaùRangeConfigùUML356ùdd' +2024-09-08 15:10:02,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENG, hphSpec = 'aaùENGùUML246ùdd' +2024-09-08 15:10:02,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HarmonicMeasurandCDC, hphSpec = 'aaùHarmonicMeasurandCDCùUML251ùdd' +2024-09-08 15:10:02,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT32U, hphSpec = 'aaùINT32UùUML86ùdd' +2024-09-08 15:10:02,915 [main] DEBUG DataIndexDoc - Attribute 'stVal' defined on multiple classes in and under 'CommonDataClasses' - may be possible to avoid duplication by using inheritance. +2024-09-08 15:10:02,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DPS, hphSpec = 'aaùDPSùUML229ùdd' +2024-09-08 15:10:02,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:10:02,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EXY, hphSpec = 'aaùEXYùUML242ùdd' +2024-09-08 15:10:02,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DpStatusKind, hphSpec = 'aaùDpStatusKindùUML82ùdd' +2024-09-08 15:10:02,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:10:02,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:10:02,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:10:02,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CMV, hphSpec = 'aaùCMVùUML236ùdd' +2024-09-08 15:10:02,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:10:02,915 [main] DEBUG DataIndexDoc - Attribute 'subVal' defined on multiple classes in and under 'CommonDataClasses' - may be possible to avoid duplication by using inheritance. +2024-09-08 15:10:02,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DPS, hphSpec = 'aaùDPSùUML229ùdd' +2024-09-08 15:10:02,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:10:02,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BAC, hphSpec = 'aaùBACùUML241ùdd' +2024-09-08 15:10:02,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DpStatusKind, hphSpec = 'aaùDpStatusKindùUML82ùdd' +2024-09-08 15:10:02,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:10:02,915 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:10:02,916 [main] DEBUG DataIndexDoc - Attribute 't' defined on multiple classes in and under 'CommonDataClasses' - may be possible to avoid duplication by using inheritance. +2024-09-08 15:10:02,916 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DPS, hphSpec = 'aaùDPSùUML229ùdd' +2024-09-08 15:10:02,916 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,916 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EXY, hphSpec = 'aaùEXYùUML242ùdd' +2024-09-08 15:10:02,916 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimeStamp, hphSpec = 'aaùTimeStampùUML93ùdd' +2024-09-08 15:10:02,916 [main] INFO PackageDocImpl - collected data index for CommonDataClasses ... +2024-09-08 15:10:02,916 [main] TRACE PackageDocImpl - org.tanjakostic.jcleancim.docgen.collector.impl.DataIndexDoc@19f6567Data semantics + + shows all attributes defined on classes of CommonDataClasses package. +Attributes defined on classes of CommonDataClasses package +"Name" | "Type" | "(Used in) Description" +"__setVal" | "NullIEC61850" | "(aaùENGùUML246ùdd) See 'setVal'." +"_setVal" | "NullIEC61850" | "(aaùENGùUML246ùdd) See 'setVal'." +"angRef" | "aaùPhaseAngleReferenceKindùUML119ùdd" | "(aaùHWYEùUML252ùdd) Angle reference, indicating the quantity that is used as reference for the phase angles {'phsAHar', 'phsBHar', 'phsCHar', 'neutHar', 'netHar', 'resHar'}[i].ang', instead of their own 'angRef'. For the indicated quantity, the fundamental frequency (index = 1) is used as reference by convention." +"blkEna" | "aaùBOOLEANùUML83ùdd" | "(aaùSubstitutionCDCùUML228ùdd) If true, 'q.operatorBlocked'=true, and the process value is no longer updated." +"cdcNs" | "aaùVISIBLE_STRING255ùUML89ùdd" | "(aaùBasePrimitiveCDCùUML217ùdd) Common data class name space. Scope of the standard specified with the attribute is CDC definition. For details see IEC 61850-7-1. +(aaùBaseComposedCDCùUML250ùdd) See 'BasePrimitiveCDC.cdcNs'." +"ctlVal" | "aaùEnumDAùUML340ùdd, aaùBsControlKindùUML81ùdd" | "(aaùENCùUML238ùdd) Service parameter that determines the control activity, containing the new value for 'stVal'. +(aaùBACùUML241ùdd) Service parameter that determines the control activity, containing the desired change for 'mxVal'. If 'persistent'=false, 'ctlVal'='higher'|'lower' refers to one step in 'mxVal'." +"dU" | "aaùUNICODE_STRING255ùUML88ùdd" | "(aaùBasePrimitiveCDCùUML217ùdd) Textual description of the data using unicode characters. In case of LPL, the description refers to the logical node. +(aaùBaseComposedCDCùUML250ùdd) See 'BasePrimitiveCDC.dU'." +"dirGeneral" | "NullIEC61850" | "(aaùACDùUML244ùdd) General direction of the fault. If the faults of individual phases have different directions, this attribute shall be set to 'dirGeneral'='both'." +"evalTm" | "aaùINT16UùUML84ùdd" | "(aaùHarmonicMeasurandCDCùUML251ùdd) Time window [ms] applied to interharmonic calculations. See 'numHar'." +"hstVal" | "aaùINT32ùUML85ùdd" | "(aaùHSTùUML245ùdd) Array of data values for the histogram entries." +"instCVal" | "NullIEC61850" | "(aaùCMVùUML236ùdd) Instantaneous complex (phasor) value, with magnitude and angle." +"ldNs" | "aaùVISIBLE_STRING255ùUML89ùdd" | "(aaùLPLùUML248ùdd) Logical device name space. Scope of the standard specified with the attribute is LN class definition (CDC definition by reference), for example "IEC 61850-7-4:2010". For details see IEC 61850-7-1." +"lnNs" | "aaùVISIBLE_STRING255ùUML89ùdd" | "(aaùLPLùUML248ùdd) Logical node name space. Scope of the standard specified with the attribute is LN class definition (CDC definition by reference). For details see IEC 61850-7-1." +"mxVal" | "aaùAnalogueValueùUML355ùdd" | "(aaùBACùUML241ùdd) See 'APC.mxVal'." +"numPts" | "aaùINT16UùUML84ùdd" | "(aaùHSTùUML245ùdd) Actual size of 'hstVal[]', 'hstRangeC[]'." +"opOk" | "aaùBOOLEANùUML83ùdd" | "(aaùControllableCDCùUML237ùdd) True indicates that an operate command for a controllable data object has been evaluated and accepted." +"phsA" | "aaùBOOLEANùUML83ùdd" | "(aaùACDùUML244ùdd) See 'ACT.phsA'." +"phsAHar" | "aaùCMVùUML236ùdd" | "(aaùHWYEùUML252ùdd) Array of harmonic and subharmonics, or interharmonic values related to phase A." +"phsB" | "aaùBOOLEANùUML83ùdd" | "(aaùACDùUML244ùdd) See 'ACT.phsB." +"q" | "aaùQualityùUML339ùdd" | "(aaùDPSùUML229ùdd) Quality of the data value 'stVal'. +(aaùENSùUML230ùdd) Quality of the data value 'stVal'. +(aaùEXYùUML242ùdd) Quality of the data value 'stVal'." +"rangeAngC" | "aaùRangeConfigùUML356ùdd" | "(aaùCMVùUML236ùdd) Configuration for 'rangeAng'." +"rangeC" | "aaùRangeConfigùUML356ùdd" | "(aaùCMVùUML236ùdd) Configuration for 'range'." +"setVal" | "NullIEC61850" | "(aaùENGùUML246ùdd) The value of the status setting." +"smpRate" | "aaùINT32UùUML86ùdd" | "(aaùHarmonicMeasurandCDCùUML251ùdd) Determines the highest possible harmonic or interharmonic detectable, according to the sampling theorem; the minimum value is 'smpRate'=2 * 'frequency'. 'smpRate' is the number of samples per nominal period. In the case of a dc system, it is number of samples per s." +"stVal" | "aaùDpStatusKindùUML82ùdd, aaùEnumDAùUML340ùdd, aaùEnumDAùUML340ùdd, aaùEnumDAùUML340ùdd" | "(aaùDPSùUML229ùdd) Status data value. +(aaùENSùUML230ùdd) Status data value. +(aaùENCùUML238ùdd) Status data value. +(aaùEXYùUML242ùdd) Status data value." +"subCVal" | "NullIEC61850" | "(aaùCMVùUML236ùdd) Value used to substitute 'instCVal'." +"subEna" | "aaùBOOLEANùUML83ùdd" | "(aaùSubstitutionCDCùUML228ùdd) Used to enable and disable substitution. If 'subEna'=true, the main data value and quality shall always be set to the same value as the attributes used to store the substitution data value and quality, as follows: +- for SPS, DPS, INS, ENS, SPC, DPC, INC, ENC: 'stVal' to 'subVal', 'q' to 'subQ'; +- for MV: 'instMag' to 'subMag', 'q' to 'subQ'; +- for CMV: 'instCVal' to 'subCVal', 'q' to 'subQ'; +- for BSC, ISC: 'valWTr' to 'subVal, 'q' to 'subQ'; and, +- for APC, BAC: 'mxVal' to 'subVal; 'q' to 'subQ'. +Otherwise, the data value shall be based on the process value." +"subQ" | "aaùQualityùUML339ùdd" | "(aaùSubstitutionCDCùUML228ùdd) Value used to substitute 'q'." +"subVal" | "aaùDpStatusKindùUML82ùdd, aaùEnumDAùUML340ùdd, aaùEnumDAùUML340ùdd, NullIEC61850" | "(aaùDPSùUML229ùdd) Value used to substitute 'stVal'. +(aaùENSùUML230ùdd) Value used to substitute 'stVal'. +(aaùENCùUML238ùdd) Value used to substitute 'stVal'. +(aaùBACùUML241ùdd) Value used to substitute 'mxVal'." +"t" | "aaùTimeStampùUML93ùdd" | "(aaùDPSùUML229ùdd) Timestamp of the last change of the data value 'stVal' or quality 'q'. +(aaùENSùUML230ùdd) Timestamp of the last change of the data value 'stVal' or quality 'q'. +(aaùEXYùUML242ùdd) Timestamp of the last change of the data value 'stVal' or quality 'q'." + +2024-09-08 15:10:02,916 [main] INFO PackageDocImpl - collecting doc for package IEC61850_7_4 ... +2024-09-08 15:10:02,916 [main] INFO PackageDocImpl - collecting doc for package Abbreviations ... +2024-09-08 15:10:02,917 [main] INFO DocCollectorImpl - >> retained scoped IEC61850/IEC61850-7-4/Abbreviations +2024-09-08 15:10:02,918 [main] INFO PackageDocImpl - collected abbreviations from Abbreviations ... +2024-09-08 15:10:02,919 [main] TRACE PackageDocImpl - org.tanjakostic.jcleancim.docgen.collector.impl.AbbrPackageDoc@17d2e85Abbreviated terms +The following terms are used to build concatenated data object names. For example, ChNum is constructed by using two terms "Ch" which stands for "Channel" and "Num" which stands for "Number". Thus the concatenated name represents a "channel number". + shows normative terms that are combined to create data object names. +Normative abbreviations for data object names +"Term" | "Description" +"A" | "Current" +"Alm" | "Alarm" +"Amp" | "Current non-phase-related" +"Z" | "Impedance" +"Z0" | "Zero sequence impedance" +"Z1" | "Positive sequence impedance" +"Zro" | "Zero sequence method" +"aDummy" | "Dummy lower-case term." +"km" | "Kilometer" +"ppm" | "ppm" + +2024-09-08 15:10:02,919 [main] INFO PackageDocImpl - collecting doc for package Functions ... +2024-09-08 15:10:02,919 [main] INFO DocCollectorImpl - >> retained scoped IEC61850/IEC61850-7-4/Functions +2024-09-08 15:10:02,919 [main] INFO PackageDocImpl - collecting doc for package ProtectionEq ... +2024-09-08 15:10:02,920 [main] INFO PackageDocImpl - collecting doc for package ControlEq ... +2024-09-08 15:10:02,920 [main] INFO PackageDocImpl - collecting doc for package MeasurementsAndMetering ... +2024-09-08 15:10:02,921 [main] INFO PackageDocImpl - collecting doc for package SystemWide ... +2024-09-08 15:10:02,921 [main] INFO PackageDocImpl - collecting doc for package PrimaryEq ... +2024-09-08 15:10:02,923 [main] INFO PackageDocImpl - collected LN mappings for Functions ... +2024-09-08 15:10:02,923 [main] TRACE PackageDocImpl - org.tanjakostic.jcleancim.docgen.collector.impl.LnMapPackageDoc@1fddc9aRelationship between this standard and IEC 61850-5 +This subclause presents the mappings between the logical nodes defined in IEC61850-5 (as functional requirements) and the concrete logical nodes in this IEC 61850-7-4, in form of table. +The meaning of the table columns is as follows: +- Functionality: Domain concept represented by the function. +- IEEE C37.2: Device function numbers and contact designations used in IEEE C37.2-2008, if applicable. Note that the reference to the IEEE device number does not mean the related device, but its core functionality in the context of the IEC 61850. Because of their device related definition there is not always a 1:1 relation to the function related definition of logical nodes. +- IEC 60617: Alphanumeric representation of graphical symbols according to IEC 60617, if applicable. +- LN IEC 61850-5: "requirements" logical node designation. +- LN IEC 61850-7-4: Standard (concrete) logical node designation. Note that mappings may not be one-to-one. +- Description: slightly modified description of the IEEE device number if applicable, or/and other descriptive text. + shows mappings between IEC 61850-5 and IEC 61850-7-4 logical nodes. +Logical nodes mappings +"Functionality" | "IEEE C37.2" | "IEC 60617" | "LN IEC 61850-5" | "LN IEC 61850-7-4" | "Description" +"PowerFactorProt" | "55" | "cos\u03C6>, cos\u03C6<" | "PPFR" | "" | "A function that operates when the power factor in an ac circuit rises above or falls below a predetermined value." +"AlarmHandler" | "" | "" | "CALH" | "CALH" | "Alarm handler, responsible for creating group alarms and group events. For the communication, there is no difference between alarms and events, if a time tag is added to any data transmitted. +If several events or alarms have to be combined to group alarms, a separate, configurable function is needed, which may be used to calculate new data out of individual data from different other functions. Remote acknowledgement with different priority and authority shall be possible. +The definition and handling of alarms is an engineering issue." +"GenericIO" | "" | "" | "GGIO" | "GGIO" | "Generic process IO, as seen by the substation automation system (i.e., group of I/Os), used to represent primary or auxiliary equipment non-predefined in groups X, Y or Z: (1) outputs such as analogue outputs, auxiliary relays, etc., (2) IOs representing devices such as horn, bell, target value etc., and (3) IOs from non-defined auxiliary devices." +"LogicalDeviceData" | "" | "" | "LLN0" | "LLN0" | "Logical device data, independent from all application function related functions, such as device identification/name plate, messages from device self-supervision, etc. It may be used also for actions common to all included functions (mode setting, settings, etc.) if applicable. It does not restrict the dedicated access to any single function by definition; Possible restrictions are a matter of implementation and engineering." +"PhysicalDeviceData" | "" | "" | "LPHD" | "LPHD" | "Models common features of physical device (IED)." +"ThreePhaseMeasurement" | "" | "" | "MMXU" | "MMXU" | "Acquires sampled values from CTs and VTs and calculates 3-phase measurands like rms values for current and voltage or power flows. These values are normally used for operational purposes like power flow supervision and management, screen displays, state estimation, etc. The requested accuracy for these functions has to be provided. +Note: The measuring procedures in the protection devices are part of the dedicated protection algorithm represented by the protection functions, and thus outside the scope of the communication standard. Therefore, measurement functions shall not be used as input for protection algorithms. Fault related data like fault peak value, etc. are always provided by the protection functions, and not measurement functions." +"BusbarProt" | "87B" | "" | "PBDF" | "PDIF" | "See DifferentialProt. The complexity of the busbar node with changing topology up to a split into two or more nodes needs special means like a dynamic busbar image. It has to be considered that at least a second busbar protection algorithm exists which is based on the direction comparison of the fault direction in all feeders. +NOTE The decentralized busbar protection consists of an instance of this function per bay with appropriate preprocessing and trip output, in addition to the central decision making instance." +"LineDifferentialProt" | "87L" | "" | "PLDF" | "PDIF" | "See DifferentialProt." +"DirectionalPowerProt" | "32" | "P>" | "PDPR" | "RDIR" | "A function that operates on a predetermined value of power flow in a given direction, such as reverse power flow resulting from the motoring of a generator upon loss of its prime mover." +"DirectionalProt" | "87B" | "" | "PDIR" | "RDIR, PDIS" | "A function that operates based on an agreement of the fault direction signals from all directional fault sensors (for example directional relays) surrounding the fault. The directional comparison for lines is made in combination with protection scheme (DistanceProt). +Note: In the comparison table provided in IEEE C37.2-2008 PDIR has the IEEE device number 87B associated." +"AuxiliaryNetwork" | "" | "" | "ZAXN" | "ZAXN" | "Generic auxiliary network (power supply), as seen by the substation automation system (i.e., group of IOs)." + +2024-09-08 15:10:02,923 [main] INFO PackageDocImpl - collecting doc for package DOEnums ... +2024-09-08 15:10:02,923 [main] INFO DocCollectorImpl - >> retained scoped IEC61850/IEC61850-7-4/DOEnums +2024-09-08 15:10:02,926 [main] TRACE EnumsScl - ---- collecting XML doc for enums in DOEnums ... +2024-09-08 15:10:02,926 [main] INFO PackageDocImpl - collected SCL from DOEnums ... +2024-09-08 15:10:02,926 [main] TRACE PackageDocImpl - + Ok + Warning + Alarm + + + on + on-blocked + test + test/blocked + off + + + UNSPECIFIED + TRUE_RMS + PEAK_FUNDAMENTAL + RMS_FUNDAMENTAL + MIN + MAX + AVG + SDV + PREDICTION + RATE + + + bk1 + bk2 + bk3 + + + +2024-09-08 15:10:02,926 [main] INFO PackageDocImpl - collecting doc for package DerivedDAs ... +2024-09-08 15:10:02,927 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:10:02,927 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:10:02,927 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:10:02,927 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,927 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,927 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,927 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:10:02,927 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:10:02,927 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:10:02,927 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,927 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,927 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,928 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:10:02,928 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:10:02,928 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:10:02,928 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,928 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,928 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,928 [main] INFO PackageDocImpl - collecting doc for package DerivedCDCs ... +2024-09-08 15:10:02,929 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:10:02,929 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControllableCDC, hphSpec = 'aaùControllableCDCùUML237ùdd' +2024-09-08 15:10:02,929 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,929 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,929 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:10:02,929 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:10:02,929 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,929 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,929 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,930 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:10:02,930 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:10:02,930 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,930 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControllableCDC, hphSpec = 'aaùControllableCDCùUML237ùdd' +2024-09-08 15:10:02,930 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:10:02,930 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:10:02,930 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:10:02,930 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,930 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:10:02,930 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,930 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:10:02,930 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:10:02,930 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,930 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,931 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,931 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:10:02,931 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,931 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:10:02,931 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:10:02,931 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,931 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:10:02,931 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:10:02,931 [main] INFO Reordering - adding reordering spec: MOVE "subVal" AFTER "subEna" +2024-09-08 15:10:02,931 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENG, hphSpec = 'aaùENGùUML246ùdd' +2024-09-08 15:10:02,931 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,931 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:10:02,931 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:10:02,931 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,931 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,931 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,933 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:10:02,933 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,933 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:10:02,933 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:10:02,933 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,934 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,934 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,934 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,934 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:10:02,934 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:10:02,934 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,934 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,934 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,934 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:10:02,934 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,934 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:10:02,934 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,934 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimeStamp, hphSpec = 'aaùTimeStampùUML93ùdd' +2024-09-08 15:10:02,934 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,934 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:10:02,934 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:10:02,934 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,934 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,934 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:10:02,934 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,934 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:10:02,934 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:10:02,934 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,934 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,934 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,935 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:10:02,935 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,935 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:10:02,935 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:10:02,935 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,935 [main] INFO Reordering - adding reordering spec: MOVE "subVal" AFTER "subEna" +2024-09-08 15:10:02,935 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,935 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,935 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,935 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:10:02,935 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:10:02,935 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,935 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,935 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,935 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:10:02,935 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,935 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:10:02,935 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,935 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimeStamp, hphSpec = 'aaùTimeStampùUML93ùdd' +2024-09-08 15:10:02,935 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,935 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:10:02,936 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:10:02,936 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,936 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,936 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:10:02,936 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,936 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:10:02,936 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:10:02,936 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,936 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,936 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,936 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:10:02,936 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,936 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:10:02,936 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:10:02,936 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,936 [main] INFO Reordering - adding reordering spec: MOVE "subVal" AFTER "subEna" +2024-09-08 15:10:02,936 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SPC, hphSpec = 'aaùSPCùUML123ùdd' +2024-09-08 15:10:02,937 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EXY, hphSpec = 'aaùEXYùUML242ùdd' +2024-09-08 15:10:02,937 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,937 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:10:02,937 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:10:02,937 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,937 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,937 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,937 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:10:02,937 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EXY, hphSpec = 'aaùEXYùUML242ùdd' +2024-09-08 15:10:02,937 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:10:02,937 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EXY, hphSpec = 'aaùEXYùUML242ùdd' +2024-09-08 15:10:02,937 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimeStamp, hphSpec = 'aaùTimeStampùUML93ùdd' +2024-09-08 15:10:02,937 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EXY, hphSpec = 'aaùEXYùUML242ùdd' +2024-09-08 15:10:02,937 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:10:02,937 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,937 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:10:02,937 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:10:02,937 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:10:02,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:10:02,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:10:02,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:10:02,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimeStamp, hphSpec = 'aaùTimeStampùUML93ùdd' +2024-09-08 15:10:02,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:10:02,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:10:02,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:10:02,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:10:02,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:10:02,938 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,939 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,939 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,939 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:10:02,939 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,939 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:10:02,939 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:10:02,939 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,939 [main] INFO Reordering - adding reordering spec: MOVE "subVal" AFTER "subEna" +2024-09-08 15:10:02,939 [main] INFO PackageDocImpl - collecting doc for package LogicalNodes ... +2024-09-08 15:10:02,939 [main] INFO DocCollectorImpl - >> retained scoped IEC61850/IEC61850-7-4/LogicalNodes +2024-09-08 15:10:02,940 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNDOM, hphSpec = 'aaùLNDOMùUML200ùdd' +2024-09-08 15:10:02,940 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:10:02,940 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,940 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,940 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,943 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,944 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-08 15:10:02,944 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-08 15:10:02,944 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-08 15:10:02,944 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:10:02,944 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-08 15:10:02,944 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,944 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNDOM, hphSpec = 'aaùLNDOMùUML200ùdd' +2024-09-08 15:10:02,944 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:10:02,944 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,944 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,944 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,944 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,944 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,944 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,944 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-08 15:10:02,945 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,945 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-08 15:10:02,945 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-08 15:10:02,945 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,945 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:10:02,945 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-08 15:10:02,945 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENG, hphSpec = 'aaùENGùUML246ùdd' +2024-09-08 15:10:02,945 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CalcMethodKind, hphSpec = 'aaùCalcMethodKindùUML140ùdd' +2024-09-08 15:10:02,945 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,945 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNDOM, hphSpec = 'aaùLNDOMùUML200ùdd' +2024-09-08 15:10:02,945 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:10:02,945 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,945 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,945 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,945 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,946 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,946 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-08 15:10:02,946 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,946 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,946 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-08 15:10:02,946 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,946 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-08 15:10:02,946 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,946 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:10:02,946 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-08 15:10:02,947 [main] INFO PackageDocImpl - collecting doc for package LNGroupL ... +2024-09-08 15:10:02,947 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,947 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNDOM, hphSpec = 'aaùLNDOMùUML200ùdd' +2024-09-08 15:10:02,947 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:10:02,947 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,947 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,947 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,947 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,947 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,947 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,947 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,947 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:10:02,947 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,947 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,948 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-08 15:10:02,948 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(2), hphSpec = 'aaùMOcond(2)ùUML582ùdd' +2024-09-08 15:10:02,948 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,948 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-08 15:10:02,948 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,948 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:10:02,948 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-08 15:10:02,948 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNPHD, hphSpec = 'aaùLNPHDùUML196ùdd' +2024-09-08 15:10:02,948 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:10:02,948 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,948 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,948 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,948 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,948 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-08 15:10:02,948 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-08 15:10:02,949 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN0, hphSpec = 'aaùLN0ùUML198ùdd' +2024-09-08 15:10:02,949 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:10:02,949 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,949 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,949 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,949 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-08 15:10:02,949 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,949 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-08 15:10:02,949 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-08 15:10:02,949 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,949 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-08 15:10:02,949 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOrootLD, hphSpec = 'aaùMOrootLDùUML585ùdd' +2024-09-08 15:10:02,949 [main] INFO PackageDocImpl - collecting doc for package LNGroupC ... +2024-09-08 15:10:02,950 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,950 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNDOM, hphSpec = 'aaùLNDOMùUML200ùdd' +2024-09-08 15:10:02,950 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:10:02,950 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,950 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,950 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,950 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,950 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AtLeastOne(1), hphSpec = 'aaùAtLeastOne(1)ùUML559ùdd' +2024-09-08 15:10:02,950 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AtLeastOne(1), hphSpec = 'aaùAtLeastOne(1)ùUML559ùdd' +2024-09-08 15:10:02,950 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,950 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,951 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-08 15:10:02,951 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,951 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-08 15:10:02,951 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,951 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:10:02,951 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-08 15:10:02,951 [main] INFO PackageDocImpl - collecting doc for package LNGroupG ... +2024-09-08 15:10:02,951 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = StatisticsLN, hphSpec = 'aaùStatisticsLNùUML202ùdd' +2024-09-08 15:10:02,952 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,952 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNDOM, hphSpec = 'aaùLNDOMùUML200ùdd' +2024-09-08 15:10:02,952 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:10:02,952 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,952 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,952 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,952 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,952 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,952 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-08 15:10:02,952 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,952 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,953 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-08 15:10:02,953 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Omulti, hphSpec = 'aaùOmultiùUML580ùdd' +2024-09-08 15:10:02,953 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,953 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-08 15:10:02,953 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-08 15:10:02,953 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,953 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:10:02,953 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-08 15:10:02,953 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = StatisticsLN, hphSpec = 'aaùStatisticsLNùUML202ùdd' +2024-09-08 15:10:02,953 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENG, hphSpec = 'aaùENGùUML246ùdd' +2024-09-08 15:10:02,953 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CalcMethodKind, hphSpec = 'aaùCalcMethodKindùUML140ùdd' +2024-09-08 15:10:02,953 [main] INFO PackageDocImpl - collecting doc for package LNGroupM ... +2024-09-08 15:10:02,954 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = StatisticsLN, hphSpec = 'aaùStatisticsLNùUML202ùdd' +2024-09-08 15:10:02,954 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,954 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNDOM, hphSpec = 'aaùLNDOMùUML200ùdd' +2024-09-08 15:10:02,954 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:10:02,954 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,954 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,954 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,954 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,954 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,954 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,954 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-08 15:10:02,955 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MO(1), hphSpec = 'aaùMO(1)ùUML582ùdd' +2024-09-08 15:10:02,955 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,955 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-08 15:10:02,955 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-08 15:10:02,955 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,955 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:10:02,955 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-08 15:10:02,955 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = StatisticsLN, hphSpec = 'aaùStatisticsLNùUML202ùdd' +2024-09-08 15:10:02,955 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENG, hphSpec = 'aaùENGùUML246ùdd' +2024-09-08 15:10:02,955 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CalcMethodKind, hphSpec = 'aaùCalcMethodKindùUML140ùdd' +2024-09-08 15:10:02,955 [main] INFO PackageDocImpl - collecting doc for package LNGroupP ... +2024-09-08 15:10:02,956 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PDIS, hphSpec = 'aaùPDISùUML211ùdd' +2024-09-08 15:10:02,956 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ProtectionLN, hphSpec = 'aaùProtectionLNùUML209ùdd' +2024-09-08 15:10:02,956 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,956 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNDOM, hphSpec = 'aaùLNDOMùUML200ùdd' +2024-09-08 15:10:02,956 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:10:02,956 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,956 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,956 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,956 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,956 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PDIS, hphSpec = 'aaùPDISùUML211ùdd' +2024-09-08 15:10:02,956 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,956 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,956 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-08 15:10:02,956 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,956 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-08 15:10:02,956 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,957 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:10:02,957 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-08 15:10:02,958 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,958 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNDOM, hphSpec = 'aaùLNDOMùUML200ùdd' +2024-09-08 15:10:02,958 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:10:02,958 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,958 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,958 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,958 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,958 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,958 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,959 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-08 15:10:02,959 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,959 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-08 15:10:02,959 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,959 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:10:02,959 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-08 15:10:02,959 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ProtectionLN, hphSpec = 'aaùProtectionLNùUML209ùdd' +2024-09-08 15:10:02,959 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,959 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNDOM, hphSpec = 'aaùLNDOMùUML200ùdd' +2024-09-08 15:10:02,959 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:10:02,959 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,959 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,959 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,959 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,959 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OmultiRange(33, 48), hphSpec = 'aaùOmultiRange(33, 48)ùUML581ùdd' +2024-09-08 15:10:02,959 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,959 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,959 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-08 15:10:02,960 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,960 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-08 15:10:02,960 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,960 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:10:02,960 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-08 15:10:02,960 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ProtectionLN, hphSpec = 'aaùProtectionLNùUML209ùdd' +2024-09-08 15:10:02,960 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,960 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNDOM, hphSpec = 'aaùLNDOMùUML200ùdd' +2024-09-08 15:10:02,960 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:10:02,960 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,960 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,960 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,960 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,960 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,960 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,960 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-08 15:10:02,960 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,960 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-08 15:10:02,960 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,960 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:10:02,960 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-08 15:10:02,961 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ProtectionLN, hphSpec = 'aaùProtectionLNùUML209ùdd' +2024-09-08 15:10:02,961 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,961 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNDOM, hphSpec = 'aaùLNDOMùUML200ùdd' +2024-09-08 15:10:02,961 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:10:02,961 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,961 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,961 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,961 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,961 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,961 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,961 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-08 15:10:02,961 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,961 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-08 15:10:02,961 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,961 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:10:02,961 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-08 15:10:02,961 [main] INFO PackageDocImpl - collecting doc for package LNGroupR ... +2024-09-08 15:10:02,961 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,961 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNDOM, hphSpec = 'aaùLNDOMùUML200ùdd' +2024-09-08 15:10:02,961 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:10:02,961 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,961 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,961 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,962 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,962 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,962 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,962 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-08 15:10:02,962 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,962 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-08 15:10:02,962 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,962 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:10:02,962 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-08 15:10:02,962 [main] INFO PackageDocImpl - collecting doc for package LNGroupZ ... +2024-09-08 15:10:02,963 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EquipmentInterfaceLN, hphSpec = 'aaùEquipmentInterfaceLNùUML205ùdd' +2024-09-08 15:10:02,963 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,963 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNDOM, hphSpec = 'aaùLNDOMùUML200ùdd' +2024-09-08 15:10:02,963 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:10:02,963 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,963 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,963 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,963 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,963 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,963 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MaterialKind, hphSpec = 'aaùMaterialKindùUML146ùdd' +2024-09-08 15:10:02,963 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,963 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Other, hphSpec = 'aaùOtherùUML353ùdd' +2024-09-08 15:10:02,963 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EquipmentInterfaceLN, hphSpec = 'aaùEquipmentInterfaceLNùUML205ùdd' +2024-09-08 15:10:02,963 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,963 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-08 15:10:02,964 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,964 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,964 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-08 15:10:02,964 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(condID), hphSpec = 'aaùMOcond(condID)ùUML582ùdd' +2024-09-08 15:10:02,964 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,964 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-08 15:10:02,964 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:10:02,964 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MaterialKind, hphSpec = 'aaùMaterialKindùUML146ùdd' +2024-09-08 15:10:02,964 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MaterialTransitionKind, hphSpec = 'aaùMaterialTransitionKindùUML147ùdd' +2024-09-08 15:10:02,964 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,964 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:10:02,964 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-08 15:10:02,965 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMXU, hphSpec = 'aaùMMXUùUML204ùdd' +2024-09-08 15:10:02,965 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HWYE, hphSpec = 'aaùHWYEùUML252ùdd' +2024-09-08 15:10:02,965 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ZAXN, hphSpec = 'aaùZAXNùUML206ùdd' +2024-09-08 15:10:02,965 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GGIO, hphSpec = 'aaùGGIOùUML203ùdd' +2024-09-08 15:10:02,965 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CMV, hphSpec = 'aaùCMVùUML236ùdd' +2024-09-08 15:10:02,965 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LLN0, hphSpec = 'aaùLLN0ùUML199ùdd' +2024-09-08 15:10:02,965 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,965 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-08 15:10:02,965 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = StatisticsLN, hphSpec = 'aaùStatisticsLNùUML202ùdd' +2024-09-08 15:10:02,965 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SPSTransient, hphSpec = 'aaùSPSTransientùUML143ùdd' +2024-09-08 15:10:02,965 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = StatisticsLN, hphSpec = 'aaùStatisticsLNùUML202ùdd' +2024-09-08 15:10:02,965 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENG, hphSpec = 'aaùENGùUML246ùdd' +2024-09-08 15:10:02,965 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CalcMethodKind, hphSpec = 'aaùCalcMethodKindùUML140ùdd' +2024-09-08 15:10:02,965 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,965 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CMV, hphSpec = 'aaùCMVùUML236ùdd' +2024-09-08 15:10:02,965 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = KXYZ, hphSpec = 'aaùKXYZùUML207ùdd' +2024-09-08 15:10:02,965 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,965 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:10:02,965 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GGIO, hphSpec = 'aaùGGIOùUML203ùdd' +2024-09-08 15:10:02,965 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMXU, hphSpec = 'aaùMMXUùUML204ùdd' +2024-09-08 15:10:02,965 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HST, hphSpec = 'aaùHSTùUML245ùdd' +2024-09-08 15:10:02,965 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = RDIR, hphSpec = 'aaùRDIRùUML214ùdd' +2024-09-08 15:10:02,965 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ACD, hphSpec = 'aaùACDùUML244ùdd' +2024-09-08 15:10:02,965 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GGIO, hphSpec = 'aaùGGIOùUML203ùdd' +2024-09-08 15:10:02,965 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,965 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-08 15:10:02,965 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EquipmentInterfaceLN, hphSpec = 'aaùEquipmentInterfaceLNùUML205ùdd' +2024-09-08 15:10:02,966 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,966 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-08 15:10:02,966 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CALH, hphSpec = 'aaùCALHùUML208ùdd' +2024-09-08 15:10:02,966 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DPS, hphSpec = 'aaùDPSùUML229ùdd' +2024-09-08 15:10:02,966 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CALH, hphSpec = 'aaùCALHùUML208ùdd' +2024-09-08 15:10:02,967 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DPS, hphSpec = 'aaùDPSùUML229ùdd' +2024-09-08 15:10:02,967 [main] DEBUG DataIndexDoc - Attribute 'Health' defined on multiple classes in and under 'LogicalNodes' - may be possible to avoid duplication by using inheritance. +2024-09-08 15:10:02,967 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LLN0, hphSpec = 'aaùLLN0ùUML199ùdd' +2024-09-08 15:10:02,967 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,967 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,968 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-08 15:10:02,968 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ZAXN, hphSpec = 'aaùZAXNùUML206ùdd' +2024-09-08 15:10:02,968 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,968 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MaterialKind, hphSpec = 'aaùMaterialKindùUML146ùdd' +2024-09-08 15:10:02,968 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ZAXN, hphSpec = 'aaùZAXNùUML206ùdd' +2024-09-08 15:10:02,968 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:10:02,968 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MaterialKind, hphSpec = 'aaùMaterialKindùUML146ùdd' +2024-09-08 15:10:02,968 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MaterialTransitionKind, hphSpec = 'aaùMaterialTransitionKindùUML147ùdd' +2024-09-08 15:10:02,968 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,968 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:10:02,968 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-08 15:10:02,968 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CALH, hphSpec = 'aaùCALHùUML208ùdd' +2024-09-08 15:10:02,968 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EXYBehaviourMode, hphSpec = 'aaùEXYBehaviourModeùUML243ùdd' +2024-09-08 15:10:02,968 [main] DEBUG DataIndexDoc - Attribute 'NamPlt' defined on multiple classes in and under 'LogicalNodes' - may be possible to avoid duplication by using inheritance. +2024-09-08 15:10:02,968 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LLN0, hphSpec = 'aaùLLN0ùUML199ùdd' +2024-09-08 15:10:02,968 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:10:02,968 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LPL, hphSpec = 'aaùLPLùUML248ùdd' +2024-09-08 15:10:02,968 [main] DEBUG DataIndexDoc - Attribute 'Op' defined on multiple classes in and under 'LogicalNodes' - may be possible to avoid duplication by using inheritance. +2024-09-08 15:10:02,968 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PDIF, hphSpec = 'aaùPDIFùUML210ùdd' +2024-09-08 15:10:02,968 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PDIS, hphSpec = 'aaùPDISùUML211ùdd' +2024-09-08 15:10:02,968 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ACTTransient, hphSpec = 'aaùACTTransientùUML142ùdd' +2024-09-08 15:10:02,968 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ProtectionLN, hphSpec = 'aaùProtectionLNùUML209ùdd' +2024-09-08 15:10:02,968 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ZAXN, hphSpec = 'aaùZAXNùUML206ùdd' +2024-09-08 15:10:02,968 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,968 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Other, hphSpec = 'aaùOtherùUML353ùdd' +2024-09-08 15:10:02,968 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LPHD, hphSpec = 'aaùLPHDùUML197ùdd' +2024-09-08 15:10:02,968 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,968 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-08 15:10:02,968 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LPHD, hphSpec = 'aaùLPHDùUML197ùdd' +2024-09-08 15:10:02,969 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SPCTransient, hphSpec = 'aaùSPCTransientùUML381ùdd' +2024-09-08 15:10:02,969 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LPHD, hphSpec = 'aaùLPHDùUML197ùdd' +2024-09-08 15:10:02,969 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SPSTransient, hphSpec = 'aaùSPSTransientùUML143ùdd' +2024-09-08 15:10:02,969 [main] DEBUG DataIndexDoc - Attribute 'Str' defined on multiple classes in and under 'LogicalNodes' - may be possible to avoid duplication by using inheritance. +2024-09-08 15:10:02,969 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PDIF, hphSpec = 'aaùPDIFùUML210ùdd' +2024-09-08 15:10:02,969 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PDIS, hphSpec = 'aaùPDISùUML211ùdd' +2024-09-08 15:10:02,969 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ACD, hphSpec = 'aaùACDùUML244ùdd' +2024-09-08 15:10:02,969 [main] DEBUG DataIndexDoc - Attribute 'TotW' defined on multiple classes in and under 'LogicalNodes' - may be possible to avoid duplication by using inheritance. +2024-09-08 15:10:02,969 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMXU, hphSpec = 'aaùMMXUùUML204ùdd' +2024-09-08 15:10:02,969 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = KXYZ, hphSpec = 'aaùKXYZùUML207ùdd' +2024-09-08 15:10:02,969 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = RDIR, hphSpec = 'aaùRDIRùUML214ùdd' +2024-09-08 15:10:02,969 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CMV, hphSpec = 'aaùCMVùUML236ùdd' +2024-09-08 15:10:02,969 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CMV, hphSpec = 'aaùCMVùUML236ùdd' +2024-09-08 15:10:02,969 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SPSTransient, hphSpec = 'aaùSPSTransientùUML143ùdd' +2024-09-08 15:10:02,969 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ZAXN, hphSpec = 'aaùZAXNùUML206ùdd' +2024-09-08 15:10:02,969 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CMV, hphSpec = 'aaùCMVùUML236ùdd' +2024-09-08 15:10:02,969 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = KXYZ, hphSpec = 'aaùKXYZùUML207ùdd' +2024-09-08 15:10:02,969 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,969 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,969 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = KXYZ, hphSpec = 'aaùKXYZùUML207ùdd' +2024-09-08 15:10:02,969 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CMV, hphSpec = 'aaùCMVùUML236ùdd' +2024-09-08 15:10:02,969 [main] INFO PackageDocImpl - collected data index for LogicalNodes ... +2024-09-08 15:10:02,969 [main] TRACE PackageDocImpl - org.tanjakostic.jcleancim.docgen.collector.impl.DataIndexDoc@118aa28Data semantics + + shows all attributes defined on classes of LogicalNodes package. +Attributes defined on classes of LogicalNodes package +"Name" | "Type" | "(Used in) Description" +"A" | "aaùHWYEùUML252ùdd" | "(aaùMMXUùUML204ùdd) 'A' holds the currents for three phases." +"Amp" | "NullIEC61850" | "(aaùZAXNùUML206ùdd) 'Amp.mag.f' is the non-phase-related current of the auxiliary network." +"AnIn" | "aaùCMVùUML236ùdd" | "(aaùGGIOùUML203ùdd) 'AnIn.mag.f' is the generic analogue input n." +"Beh" | "aaùENSùUML230ùdd (aaùBehaviourModeKindùUML139ùdd)" | "(aaùLLN0ùUML199ùdd)" +"ClcExp" | "aaùSPSTransientùUML143ùdd" | "(aaùStatisticsLNùUML202ùdd) If 'ClcExp.stVal=true', the calculation period of a statistical logical node has expired." +"ClcMth" | "aaùENGùUML246ùdd (aaùCalcMethodKindùUML140ùdd)" | "(aaùStatisticsLNùUML202ùdd) 'ClcMth.setVal' is the kind of statistical calculation, specifying how the data attributes that represent analogue values have been calculated. The calculation method shall be the same for all data objects of the logical node instance. +If the value is 'PEAK_FUNDAMENTAL', angle may be present in a data object of complex measured value type (CMV, such as in WYE, DEL, etc.), otherwise angle is not used (if ‘TRUE_RMS’ and ‘RMS_FUNDAMENTAL’). +The dependent data objects may be meaningless in case the value of 'ClcMth' is 'unspecified'." +"CntRs" | "aaùCMVùUML236ùdd" | "(aaùDomainLNùUML201ùdd) Dumb DO, of type CMV for testing inheriting statistics-derived presence conditions." +"CorrectA" | "aaùENSùUML230ùdd (aaùEnumDAùUML340ùdd)" | "(aaùKXYZùUML207ùdd) Correctly using derived CDC for enums." +"DPCSO" | "NullIEC61850" | "(aaùGGIOùUML203ùdd) 'DPCSO.ctlVal=true' or 'DPCSO.ctlVal=false' controls the generic double point controllable status output n. The resulting status is 'DPCSO.stVal'." +"Desc" | "aaùHSTùUML245ùdd" | "(aaùMMXUùUML204ùdd) Dummy native DO of non-statistical type." +"Dir" | "aaùACDùUML244ùdd" | "(aaùRDIRùUML214ùdd) If 'Dir.general=true', a fault has been detected. 'Dir.dirGeneral' is the direction of the fault." +"EEHealth" | "aaùENSùUML230ùdd (aaùHealthKindùUML138ùdd)" | "(aaùGGIOùUML203ùdd) 'EEHealth.stVal' reflects the state of external (primary) equipment to which the logical node is associated." +"EEHealthAlmClc" | "aaùENSùUML230ùdd (aaùHealthKindùUML138ùdd)" | "(aaùEquipmentInterfaceLNùUML205ùdd) (too long name) State of external (electrical, mechanical or communication) equipment to which the logical node is associated." +"GrAlm" | "aaùDPSùUML229ùdd" | "(aaùCALHùUML208ùdd) If 'GrAlm.stVal=true', a new group alarm has been activated by one of individual alarms. Group alarm summarises different alarms, as assigned via configuration." +"GrWrn" | "aaùDPSùUML229ùdd" | "(aaùCALHùUML208ùdd) If 'GrWrn.stVal=true', a new group warning has been activated by one of individual warnings. Group warning summarises different warnings, as assigned via configuration." +"Health" | "aaùENSùUML230ùdd (aaùHealthKindùUML138ùdd)" | "(aaùLLN0ùUML199ùdd) 'Health.stVal' reflects the state of the logical device related hardware and software. It is derived from the worst (most critical) value of the health attribute of all the domain logical nodes contained in the logical device: 'Health.stVal' = max('DomainLN[i].Health.stVal'). +(aaùDomainLNùUML201ùdd) 'Health.stVal' reflects the state of the logical node related hardware and software. More detailed information related to the source of the problem may be provided by specific attribute of the logical node." +"Mat" | "aaùENSùUML230ùdd (aaùMaterialKindùUML146ùdd)" | "(aaùZAXNùUML206ùdd) For testing usage of class from other namespace." +"MatCtl" | "aaùENCùUML238ùdd (aaùMaterialKindùUML146ùdd, aaùMaterialTransitionKindùUML147ùdd)" | "(aaùZAXNùUML206ùdd) One more, for testing usage of class from other namespace." +"Mod" | "aaùENCùUML238ùdd (aaùBehaviourModeKindùUML139ùdd)" | "(aaùDomainLNùUML201ùdd) 'DomainLN.Mod.ctlVal' is used by operator to initiate the change in the operating mode of the domain logical node. The resulting operating mode is 'DomainLN.Mod.stVal'. Processing of the quality status (q) of the received data is the prerequisite for correct interpretation of 'DomainLN.Mod.stVal'. See statechart diagram 'DomainLN.behStateMachine'." +"ModBeh" | "aaùEXYBehaviourModeùUML243ùdd" | "(aaùCALHùUML208ùdd) If 'GrWrn.stVal=true', a new group warning has been activated by one of individual warnings. Group warning summarises different warnings, as assigned via configuration." +"NamPlt" | "aaùLPLùUML248ùdd" | "(aaùLLN0ùUML199ùdd) Name plate of the logical device. +(aaùDomainLNùUML201ùdd) Name plate of the logical node." +"Op" | "aaùACTTransientùUML142ùdd" | "(aaùPDIFùUML210ùdd) If 'Op.general=true', the function decided to trip. The trip itself is issued by PTRC. +(aaùPDISùUML211ùdd) If 'Op.general=true', the function decided to trip due to distance fault. The trip itself is issued by PTRC." +"OpCntRs" | "NullIEC61850" | "(aaùProtectionLNùUML209ùdd) 'OpCntRs.stVal' is the count of operations. It can be reset from remote, with the specified new counter value 'OpCntRs.ctlVal', which may be other than 0." +"Oth" | "aaùENSùUML230ùdd (aaùOtherùUML353ùdd)" | "(aaùZAXNùUML206ùdd) One more, for testing usage of class from other namespace and also underlying type (where initially 'val' defined as public)." +"PhyHealth" | "aaùENSùUML230ùdd (aaùHealthKindùUML138ùdd)" | "(aaùLPHDùUML197ùdd) 'PhyHealth.stVal' reflects the state of the physical device related hardware and software." +"RsStatAlmMthClc" | "aaùSPCTransientùUML381ùdd" | "(aaùLPHDùUML197ùdd) (too long name) 'RsStat.ctlVal=true' initiates the resetting of the IED statistics." +"StatAlmMthClc" | "aaùSPSTransientùUML143ùdd" | "(aaùLPHDùUML197ùdd) (too long name) 'RsStat.ctlVal=true' initiates the resetting of the IED statistics." +"Str" | "aaùACDùUML244ùdd" | "(aaùPDIFùUML210ùdd) If 'Str.general=true', a fault has been detected. +(aaùPDISùUML211ùdd) If 'Str.general=true', a distance fault has been detected." +"TotW" | "aaùCMVùUML236ùdd, aaùCMVùUML236ùdd, aaùSPSTransientùUML143ùdd" | "(aaùMMXUùUML204ùdd) 'TotW.mag.f' is the total real power in a three-phase circuit [W]. +(aaùKXYZùUML207ùdd) 'TotW.mag.f' is the total real power in a three-phase circuit [W]. +(aaùRDIRùUML214ùdd) 'TotW.mag.f' is the total real power in a three-phase circuit [W]." +"Vol" | "aaùCMVùUML236ùdd" | "(aaùZAXNùUML206ùdd) 'Vol.mag.f' is the non-phase-related or DC voltage of the auxiliary network." +"WrongA" | "aaùSubstitutionCDCùUML228ùdd (aaùENSùUML230ùdd)" | "(aaùKXYZùUML207ùdd) Misused ENS (or ENG or ENC). Use derived CDC instead." +"aDummyAlm" | "aaùCMVùUML236ùdd" | "(aaùKXYZùUML207ùdd) Whatever (testing lower case DO name)." + +2024-09-08 15:10:02,970 [main] INFO PackageDocImpl - collecting doc for package WG17 ... +2024-09-08 15:10:02,970 [main] INFO PackageDocImpl - collecting doc for package IEC51850_7_420 ... +2024-09-08 15:10:02,971 [main] INFO PackageDocImpl - collecting doc for package DOEnums_7_420 ... +2024-09-08 15:10:02,971 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseKind, hphSpec = 'aaùBaseKindùUML141ùdd' +2024-09-08 15:10:02,971 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseKind, hphSpec = 'aaùBaseKindùUML141ùdd' +2024-09-08 15:10:02,971 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseKind, hphSpec = 'aaùBaseKindùUML141ùdd' +2024-09-08 15:10:02,971 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseKind, hphSpec = 'aaùBaseKindùUML141ùdd' +2024-09-08 15:10:02,972 [main] TRACE EnumsScl - ---- collecting XML doc for enums in DOEnums_7_420 ... +2024-09-08 15:10:02,972 [main] INFO PackageDocImpl - collected SCL from DOEnums_7_420 ... +2024-09-08 15:10:02,972 [main] TRACE PackageDocImpl - + ebk1 + ebk2 + ebk3 + + + mat1 + mat2 + mat3 + + + trans1 + trans2 + trans3 + + + mat1 + mat2 + mat3 + + + +2024-09-08 15:10:02,972 [main] INFO PackageDocImpl - collecting doc for package DerivedDAs_7_420 ... +2024-09-08 15:10:02,972 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:10:02,972 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:10:02,972 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:10:02,972 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,972 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,972 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,973 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:10:02,973 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:10:02,973 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:10:02,973 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,973 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,973 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,974 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:10:02,974 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:10:02,974 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:10:02,974 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,974 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,974 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,974 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OtherKind, hphSpec = 'aaùOtherKindùUML148ùdd' +2024-09-08 15:10:02,974 [main] INFO PackageDocImpl - collecting doc for package DerivedCDCs_7_420 ... +2024-09-08 15:10:02,974 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:10:02,974 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControllableCDC, hphSpec = 'aaùControllableCDCùUML237ùdd' +2024-09-08 15:10:02,974 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,974 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,974 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:10:02,974 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:10:02,974 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,975 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,975 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,975 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:10:02,975 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:10:02,975 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,975 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControllableCDC, hphSpec = 'aaùControllableCDCùUML237ùdd' +2024-09-08 15:10:02,975 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:10:02,975 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:10:02,975 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:10:02,975 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,975 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:10:02,975 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,975 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:10:02,975 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:10:02,975 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,975 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,975 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,975 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:10:02,975 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,975 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:10:02,976 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:10:02,976 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,976 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:10:02,976 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:10:02,976 [main] INFO Reordering - adding reordering spec: MOVE "subVal" AFTER "subEna" +2024-09-08 15:10:02,976 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,976 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,976 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,976 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:10:02,976 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:10:02,976 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,976 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,976 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,977 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:10:02,977 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,977 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:10:02,977 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,977 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimeStamp, hphSpec = 'aaùTimeStampùUML93ùdd' +2024-09-08 15:10:02,977 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,977 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:10:02,977 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:10:02,977 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,977 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,977 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:10:02,977 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,977 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:10:02,977 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:10:02,977 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,977 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,977 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,977 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:10:02,977 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,977 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:10:02,977 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:10:02,978 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,978 [main] INFO Reordering - adding reordering spec: MOVE "subVal" AFTER "subEna" +2024-09-08 15:10:02,978 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,978 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,978 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,978 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:10:02,978 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:10:02,978 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:10:02,978 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:10:02,978 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:10:02,978 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:10:02,978 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,978 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:10:02,978 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,978 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimeStamp, hphSpec = 'aaùTimeStampùUML93ùdd' +2024-09-08 15:10:02,978 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,978 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:10:02,978 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:10:02,978 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:10:02,979 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,979 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:10:02,979 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,979 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:10:02,979 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:10:02,979 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,979 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:10:02,979 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:10:02,979 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:10:02,979 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,979 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:10:02,979 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:10:02,979 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:10:02,979 [main] INFO Reordering - adding reordering spec: MOVE "subVal" AFTER "subEna" +2024-09-08 15:10:02,980 [main] INFO PackageDocImpl - collecting doc for package WG18 ... +2024-09-08 15:10:02,980 [main] INFO PackageDocImpl - collecting doc for package Abbreviations_410 ... +2024-09-08 15:10:02,981 [main] INFO PackageDocImpl - collecting doc for package JWG25 ... +2024-09-08 15:10:02,981 [main] INFO PackageDocImpl - collecting doc for package MyCimExtensions ... +2024-09-08 15:10:02,982 [main] INFO PackageDocImpl - collecting doc for package Ext1 ... +2024-09-08 15:10:02,982 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Fruit, hphSpec = 'aaùFruitùUML152ùdd' +2024-09-08 15:10:02,982 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Apple, hphSpec = 'aaùAppleùUML383ùdd' +2024-09-08 15:10:02,982 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Pear, hphSpec = 'aaùPearùUML168ùdd' +2024-09-08 15:10:02,982 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Pear, hphSpec = 'aaùPearùUML168ùdd' +2024-09-08 15:10:02,982 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Apple, hphSpec = 'aaùAppleùUML383ùdd' +2024-09-08 15:10:02,983 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Fruit, hphSpec = 'aaùFruitùUML152ùdd' +2024-09-08 15:10:02,983 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Apple, hphSpec = 'aaùAppleùUML383ùdd' +2024-09-08 15:10:02,983 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Apple, hphSpec = 'aaùAppleùUML383ùdd' +2024-09-08 15:10:02,984 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Strawberry, hphSpec = 'aaùStrawberryùUML384ùdd' +2024-09-08 15:10:02,984 [main] INFO PackageDocImpl - collecting doc for package Package with space ... +2024-09-08 15:10:02,984 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbsoluteDateTime, hphSpec = 'aaùAbsoluteDateTimeùUML11ùdd' +2024-09-08 15:10:02,984 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Other-with_invalid name, hphSpec = 'aaùOther-with_invalid nameùUML156ùdd' +2024-09-08 15:10:02,984 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = My class, hphSpec = 'aaùMy classùUML155ùdd' +2024-09-08 15:10:02,984 [main] INFO PackageDocImpl - collecting doc for package My61850Extensions ... +2024-09-08 15:10:02,985 [main] INFO PackageDocImpl - collecting doc for package Ext2 ... +2024-09-08 15:10:02,985 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Fruit, hphSpec = 'aaùFruitùUML152ùdd' +2024-09-08 15:10:02,985 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Fruit, hphSpec = 'aaùFruitùUML152ùdd' +2024-09-08 15:10:02,985 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Animal, hphSpec = 'aaùAnimalùUML157ùdd' +2024-09-08 15:10:02,985 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Fruit, hphSpec = 'aaùFruitùUML152ùdd' +2024-09-08 15:10:02,985 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Animal, hphSpec = 'aaùAnimalùUML157ùdd' +2024-09-08 15:10:02,985 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Fruit, hphSpec = 'aaùFruitùUML152ùdd' +2024-09-08 15:10:02,985 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Animal, hphSpec = 'aaùAnimalùUML157ùdd' +2024-09-08 15:10:02,986 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Animal, hphSpec = 'aaùAnimalùUML157ùdd' +2024-09-08 15:10:02,986 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Fruit, hphSpec = 'aaùFruitùUML152ùdd' +2024-09-08 15:10:02,986 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Animal, hphSpec = 'aaùAnimalùUML157ùdd' +2024-09-08 15:10:02,986 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Fruit, hphSpec = 'aaùFruitùUML152ùdd' +2024-09-08 15:10:02,986 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Animal, hphSpec = 'aaùAnimalùUML157ùdd' +2024-09-08 15:10:02,986 [main] INFO PackageDocImpl - collecting doc for package NewNature ... +2024-09-08 15:10:02,986 [main] INFO Util - time=[0:00:00.343] collected documentation content for 'model packages=[TC57CIMProfiles, TC57CIM, IEC61850Domain, MyCimExtensions, My61850Extensions, NewNature]; retained=[TC57CIMProfiles, TC57CIM, IEC61970, Domain, Core, Topology, TestEnums, IEC61968, EmbeddedExtension, Assets, Other, IEC62325, IEC61850Domain, WG10, NewIEC61850_7_2, GenericModel, IEC61850_7_2, FunctionalConstraints, TriggerOptions, ACSIEnums, CoreTypes, ObjectReferences, AttrValues, BasicDAs, AcsiTypes, CommonAcsiTypes, MetaModel, MetaModelFCsAndTrgOps, CDCServiceTracking, IEC61850_7_3, PresenceConditions, DAEnums, ImplicitDAs, ConstructedDAs, FCDAs, CommonDataClasses, CDCStatusInfo, CDCAnalogueInfo, CDCControl, CDCStatusSet, CDCAnalogueSet, CDCDescription, IEC61850_7_4, Abbreviations, Functions, ProtectionEq, ControlEq, MeasurementsAndMetering, SystemWide, PrimaryEq, DOEnums, DerivedDAs, DerivedCDCs, LogicalNodes, LNGroupL, LNGroupC, LNGroupG, LNGroupM, LNGroupP, LNGroupR, LNGroupZ, WG17, IEC51850_7_420, DOEnums_7_420, DerivedDAs_7_420, DerivedCDCs_7_420, WG18, Abbreviations_410, JWG25, MyCimExtensions, Ext1, Package with space, My61850Extensions, Ext2, NewNature]; skipped=[TC57CIM::Informative, IEC61970::InformativeAndPrivate, IEC61970::DocIEC61970, ObjectReferences::DetailedDiagrams, Abbreviations::DetailedDiagrams, LogicalNodes::DocLogicalNodes]'. +2024-09-08 15:10:02,986 [main] INFO Util - +2024-09-08 15:10:02,986 [main] INFO Util - +2024-09-08 15:10:02,986 [main] INFO Util - ------------------------------------------------ +2024-09-08 15:10:02,986 [main] INFO Util - writing documentation ... +2024-09-08 15:10:02,989 [main] WARN DocCollectorImpl - Multiple packages with name 'Core' - retaining first one in case you use its placeholder. +2024-09-08 15:10:02,989 [main] WARN DocCollectorImpl - Multiple packages with name 'Other' - retaining first one in case you use its placeholder. +2024-09-08 15:10:02,990 [main] WARN DocCollectorImpl - Multiple classes with Qname 'startUmlClass.Other.MyClass.endUml' - retaining first one in case you use its placeholder. +2024-09-08 15:10:03,030 [main] INFO AbstractWriter - creating DocWordWriter +2024-09-08 15:10:03,032 [main] TRACE Style - === before para.addPreferredStyles([PARAGRAPH, Normal, Standard, Normal]): +Style.para=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:10:03,032 [main] TRACE Style - === after +Style.para=null; cfg-preferred names=[PARAGRAPH, Normal, Standard]; doc-usable styles={}; all recognised names=[PARAGRAPH, Standard, Normal] + +2024-09-08 15:10:03,032 [main] TRACE Style - === before fig.addPreferredStyles([FIGURE, Picture, Normal, Standard, Normal]): +Style.fig=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:10:03,032 [main] TRACE Style - === after +Style.fig=null; cfg-preferred names=[FIGURE, Picture, Normal, Standard]; doc-usable styles={}; all recognised names=[Picture, Standard, Normal, FIGURE] + +2024-09-08 15:10:03,032 [main] TRACE Style - === before tabhead.addPreferredStyles([TABLE-col-heading, Normal, Standard, Normal]): +Style.tabhead=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:10:03,032 [main] TRACE Style - === after +Style.tabhead=null; cfg-preferred names=[TABLE-col-heading, Normal, Standard]; doc-usable styles={}; all recognised names=[TABLE-col-heading, Standard, Normal] + +2024-09-08 15:10:03,032 [main] TRACE Style - === before tabcell.addPreferredStyles([TABLE-cell, Normal, Standard, Normal]): +Style.tabcell=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:10:03,032 [main] TRACE Style - === after +Style.tabcell=null; cfg-preferred names=[TABLE-cell, Normal, Standard]; doc-usable styles={}; all recognised names=[TABLE-cell, Standard, Normal] + +2024-09-08 15:10:03,032 [main] TRACE Style - === before figcapt.addPreferredStyles([FIGURE-title, Caption, Beschriftung, Légende]): +Style.figcapt=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:10:03,032 [main] TRACE Style - === after +Style.figcapt=null; cfg-preferred names=[FIGURE-title, Caption, Beschriftung, Légende]; doc-usable styles={}; all recognised names=[FIGURE-title, Beschriftung, Légende, Caption] + +2024-09-08 15:10:03,032 [main] TRACE Style - === before tabcapt.addPreferredStyles([TABLE-title, Caption, Beschriftung, Légende]): +Style.tabcapt=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:10:03,032 [main] TRACE Style - === after +Style.tabcapt=null; cfg-preferred names=[TABLE-title, Caption, Beschriftung, Légende]; doc-usable styles={}; all recognised names=[TABLE-title, Beschriftung, Légende, Caption] + +2024-09-08 15:10:03,032 [main] TRACE Style - === before toc1.addPreferredStyles([TOC]): +Style.toc1=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:10:03,032 [main] TRACE Style - === after +Style.toc1=null; cfg-preferred names=[TOC 1]; doc-usable styles={}; all recognised names=[TOC 1] + +2024-09-08 15:10:03,032 [main] TRACE Style - === before toc2.addPreferredStyles([TOC]): +Style.toc2=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:10:03,032 [main] TRACE Style - === after +Style.toc2=null; cfg-preferred names=[TOC 2]; doc-usable styles={}; all recognised names=[TOC 2] + +2024-09-08 15:10:03,032 [main] TRACE Style - === before toc3.addPreferredStyles([TOC]): +Style.toc3=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:10:03,032 [main] TRACE Style - === after +Style.toc3=null; cfg-preferred names=[TOC 3]; doc-usable styles={}; all recognised names=[TOC 3] + +2024-09-08 15:10:03,032 [main] TRACE Style - === before toc4.addPreferredStyles([TOC]): +Style.toc4=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:10:03,032 [main] TRACE Style - === after +Style.toc4=null; cfg-preferred names=[TOC 4]; doc-usable styles={}; all recognised names=[TOC 4] + +2024-09-08 15:10:03,032 [main] TRACE Style - === before toc5.addPreferredStyles([TOC]): +Style.toc5=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:10:03,032 [main] TRACE Style - === after +Style.toc5=null; cfg-preferred names=[TOC 5]; doc-usable styles={}; all recognised names=[TOC 5] + +2024-09-08 15:10:03,034 [main] TRACE Style - === before toc6.addPreferredStyles([TOC]): +Style.toc6=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:10:03,034 [main] TRACE Style - === after +Style.toc6=null; cfg-preferred names=[TOC 6]; doc-usable styles={}; all recognised names=[TOC 6] + +2024-09-08 15:10:03,034 [main] TRACE Style - === before toc7.addPreferredStyles([TOC]): +Style.toc7=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:10:03,034 [main] TRACE Style - === after +Style.toc7=null; cfg-preferred names=[TOC 7]; doc-usable styles={}; all recognised names=[TOC 7] + +2024-09-08 15:10:03,035 [main] TRACE Style - === before toc8.addPreferredStyles([TOC]): +Style.toc8=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:10:03,035 [main] TRACE Style - === after +Style.toc8=null; cfg-preferred names=[TOC 8]; doc-usable styles={}; all recognised names=[TOC 8] + +2024-09-08 15:10:03,035 [main] TRACE Style - === before toc9.addPreferredStyles([TOC]): +Style.toc9=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:10:03,035 [main] TRACE Style - === after +Style.toc9=null; cfg-preferred names=[TOC 9]; doc-usable styles={}; all recognised names=[TOC 9] + +2024-09-08 15:10:03,035 [main] TRACE Style - === before h1.addPreferredStyles([Heading]): +Style.h1=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:10:03,035 [main] TRACE Style - === after +Style.h1=null; cfg-preferred names=[Heading 1]; doc-usable styles={}; all recognised names=[Heading 1] + +2024-09-08 15:10:03,035 [main] TRACE Style - === before h2.addPreferredStyles([Heading]): +Style.h2=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:10:03,036 [main] TRACE Style - === after +Style.h2=null; cfg-preferred names=[Heading 2]; doc-usable styles={}; all recognised names=[Heading 2] + +2024-09-08 15:10:03,036 [main] TRACE Style - === before h3.addPreferredStyles([Heading]): +Style.h3=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:10:03,036 [main] TRACE Style - === after +Style.h3=null; cfg-preferred names=[Heading 3]; doc-usable styles={}; all recognised names=[Heading 3] + +2024-09-08 15:10:03,036 [main] TRACE Style - === before h4.addPreferredStyles([Heading]): +Style.h4=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:10:03,036 [main] TRACE Style - === after +Style.h4=null; cfg-preferred names=[Heading 4]; doc-usable styles={}; all recognised names=[Heading 4] + +2024-09-08 15:10:03,036 [main] TRACE Style - === before h5.addPreferredStyles([Heading]): +Style.h5=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:10:03,036 [main] TRACE Style - === after +Style.h5=null; cfg-preferred names=[Heading 5]; doc-usable styles={}; all recognised names=[Heading 5] + +2024-09-08 15:10:03,036 [main] TRACE Style - === before h6.addPreferredStyles([Heading]): +Style.h6=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:10:03,037 [main] TRACE Style - === after +Style.h6=null; cfg-preferred names=[Heading 6]; doc-usable styles={}; all recognised names=[Heading 6] + +2024-09-08 15:10:03,037 [main] TRACE Style - === before h7.addPreferredStyles([Heading]): +Style.h7=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:10:03,037 [main] TRACE Style - === after +Style.h7=null; cfg-preferred names=[Heading 7]; doc-usable styles={}; all recognised names=[Heading 7] + +2024-09-08 15:10:03,037 [main] TRACE Style - === before h8.addPreferredStyles([Heading]): +Style.h8=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:10:03,037 [main] TRACE Style - === after +Style.h8=null; cfg-preferred names=[Heading 8]; doc-usable styles={}; all recognised names=[Heading 8] + +2024-09-08 15:10:03,037 [main] TRACE Style - === before h9.addPreferredStyles([Heading]): +Style.h9=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:10:03,037 [main] TRACE Style - === after +Style.h9=null; cfg-preferred names=[Heading 9]; doc-usable styles={}; all recognised names=[Heading 9] + +2024-09-08 15:10:03,039 [main] INFO AbstractWordWriter - Created DocWordWriter. +2024-09-08 15:10:03,039 [main] INFO JCleanCim - from C:\Users\gigi\git\jCleanCim\input\base-small-template.docx +2024-09-08 15:10:03,039 [main] INFO JCleanCim - into C:\Users\gigi\git\jCleanCim\output\base-small-tool02v03.docx +2024-09-08 15:10:03,039 [main] INFO DocWordWriter - creating MSWord application +2024-09-08 15:10:06,526 [main] INFO DocWordWriter - opening MSWord file 'C:\Users\gigi\git\jCleanCim\output\base-small-tool02v03.docx' +2024-09-08 15:10:07,095 [main] INFO AbstractWordWriter - Microsoft Word version: 15.0 + +2024-09-08 15:10:07,291 [main] DEBUG DocWordWriter - original(_initialOptions): OptimOptions [viewId=3, normView=false, paginate=true, updFld=true, updScr=true, fastSave=false, spelling=false, grammar=false] +2024-09-08 15:10:07,301 [main] DEBUG DocWordWriter - setting existing custom property: uml = base-small.eap +2024-09-08 15:10:07,304 [main] INFO DocWordWriter - adding new custom property: jCleanCim = 02v03 +2024-09-08 15:10:07,306 [main] INFO OptimOptions - setting view to normal +2024-09-08 15:10:07,341 [main] INFO OptimOptions - disabling pagination +2024-09-08 15:10:07,489 [main] INFO OptimOptions - disabling field update +2024-09-08 15:10:07,535 [main] INFO OptimOptions - disabling screen updating +2024-09-08 15:10:07,549 [main] DEBUG DocWordWriter - current(_optimisedOptions): OptimOptions [viewId=1, normView=true, paginate=false, updFld=false, updScr=false, fastSave=false, spelling=false, grammar=false] +2024-09-08 15:10:07,549 [main] INFO Util - +2024-09-08 15:10:07,549 [main] INFO Util - ------------------------------------------------ +2024-09-08 15:10:07,549 [main] INFO Util - collecting existing and retaining usable styles from open MS Word document.... +2024-09-08 15:10:07,565 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Normal, id=-1, outline = 0, kind=normal +2024-09-08 15:10:07,573 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 1, id=-2, outline = 1, kind=heading +2024-09-08 15:10:07,589 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 2, id=-3, outline = 2, kind=heading +2024-09-08 15:10:07,601 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 3, id=-4, outline = 3, kind=heading +2024-09-08 15:10:07,613 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 4, id=-5, outline = 4, kind=heading +2024-09-08 15:10:07,619 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 5, id=-6, outline = 5, kind=heading +2024-09-08 15:10:07,624 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 6, id=-7, outline = 6, kind=heading +2024-09-08 15:10:07,635 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 7, id=-8, outline = 7, kind=heading +2024-09-08 15:10:07,651 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 8, id=-9, outline = 8, kind=heading +2024-09-08 15:10:07,657 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 9, id=-10, outline = 9, kind=heading +2024-09-08 15:10:07,664 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 1, id=-20, outline = 1, kind=toc +2024-09-08 15:10:07,670 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 2, id=-21, outline = 2, kind=toc +2024-09-08 15:10:07,673 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 3, id=-22, outline = 3, kind=toc +2024-09-08 15:10:07,678 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 4, id=-23, outline = 4, kind=toc +2024-09-08 15:10:07,682 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 5, id=-24, outline = 5, kind=toc +2024-09-08 15:10:07,686 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 6, id=-25, outline = 6, kind=toc +2024-09-08 15:10:07,693 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 7, id=-26, outline = 7, kind=toc +2024-09-08 15:10:07,699 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 8, id=-27, outline = 8, kind=toc +2024-09-08 15:10:07,703 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 9, id=-28, outline = 9, kind=toc +2024-09-08 15:10:07,709 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Caption, id=-35, outline = 0, kind=caption +2024-09-08 15:10:10,951 [main] INFO DocWordWriter - Caption (builtIn, id=-35: CAPT) +2024-09-08 15:10:10,951 [main] INFO DocWordWriter - FIGURE-title (custom, id=0: OTHER) +2024-09-08 15:10:10,951 [main] INFO DocWordWriter - Heading 1 (builtIn, id=-2: HEAD) +2024-09-08 15:10:10,951 [main] INFO DocWordWriter - Heading 2 (builtIn, id=-3: HEAD) +2024-09-08 15:10:10,951 [main] INFO DocWordWriter - Heading 3 (builtIn, id=-4: HEAD) +2024-09-08 15:10:10,951 [main] INFO DocWordWriter - Heading 4 (builtIn, id=-5: HEAD) +2024-09-08 15:10:10,951 [main] INFO DocWordWriter - Heading 5 (builtIn, id=-6: HEAD) +2024-09-08 15:10:10,952 [main] INFO DocWordWriter - Heading 6 (builtIn, id=-7: HEAD) +2024-09-08 15:10:10,952 [main] INFO DocWordWriter - Heading 7 (builtIn, id=-8: HEAD) +2024-09-08 15:10:10,952 [main] INFO DocWordWriter - Heading 8 (builtIn, id=-9: HEAD) +2024-09-08 15:10:10,952 [main] INFO DocWordWriter - Heading 9 (builtIn, id=-10: HEAD) +2024-09-08 15:10:10,952 [main] INFO DocWordWriter - Normal (builtIn, id=-1: NORM) +2024-09-08 15:10:10,952 [main] INFO DocWordWriter - Picture (custom, id=0: OTHER) +2024-09-08 15:10:10,952 [main] INFO DocWordWriter - TABLE-cell (custom, id=0: OTHER) +2024-09-08 15:10:10,952 [main] INFO DocWordWriter - TABLE-col-heading (custom, id=0: OTHER) +2024-09-08 15:10:10,952 [main] INFO DocWordWriter - TABLE-title (custom, id=0: OTHER) +2024-09-08 15:10:10,953 [main] INFO DocWordWriter - TOC 1 (builtIn, id=-20: TOC) +2024-09-08 15:10:10,953 [main] INFO DocWordWriter - TOC 2 (builtIn, id=-21: TOC) +2024-09-08 15:10:10,953 [main] INFO DocWordWriter - TOC 3 (builtIn, id=-22: TOC) +2024-09-08 15:10:10,953 [main] INFO DocWordWriter - TOC 4 (builtIn, id=-23: TOC) +2024-09-08 15:10:10,953 [main] INFO DocWordWriter - TOC 5 (builtIn, id=-24: TOC) +2024-09-08 15:10:10,953 [main] INFO DocWordWriter - TOC 6 (builtIn, id=-25: TOC) +2024-09-08 15:10:10,953 [main] INFO DocWordWriter - TOC 7 (builtIn, id=-26: TOC) +2024-09-08 15:10:10,953 [main] INFO DocWordWriter - TOC 8 (builtIn, id=-27: TOC) +2024-09-08 15:10:10,953 [main] INFO DocWordWriter - TOC 9 (builtIn, id=-28: TOC) +2024-09-08 15:10:10,953 [main] INFO Util - time=[0:00:03.404] collected existing and retained usable styles +2024-09-08 15:10:10,953 [main] INFO Util - +2024-09-08 15:10:10,953 [main] TRACE Style - === before para.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.para=null; cfg-preferred names=[PARAGRAPH, Normal, Standard]; doc-usable styles={}; all recognised names=[PARAGRAPH, Standard, Normal] +2024-09-08 15:10:10,953 [main] INFO Style - Assigned from preferred names [full match]: Style.para=Normal; cfg-preferred names=[PARAGRAPH, Normal, Standard] +2024-09-08 15:10:10,954 [main] TRACE Style - === after +Style.para=Normal; cfg-preferred names=[PARAGRAPH, Normal, Standard]; doc-usable styles={Normal=Normal (builtIn, id=-1: PARA)}; all recognised names=[PARAGRAPH, Standard, Normal] + +2024-09-08 15:10:10,954 [main] TRACE Style - === before fig.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.fig=null; cfg-preferred names=[FIGURE, Picture, Normal, Standard]; doc-usable styles={}; all recognised names=[Picture, Standard, Normal, FIGURE] +2024-09-08 15:10:10,954 [main] INFO Style - Assigned from preferred names [full match]: Style.fig=Picture; cfg-preferred names=[FIGURE, Picture, Normal, Standard] +2024-09-08 15:10:10,954 [main] TRACE Style - === after +Style.fig=Picture; cfg-preferred names=[FIGURE, Picture, Normal, Standard]; doc-usable styles={Picture=Picture (custom, id=0: FIG), Normal=Normal (builtIn, id=-1: PARA)}; all recognised names=[Picture, Standard, Normal, FIGURE] + +2024-09-08 15:10:10,954 [main] TRACE Style - === before tabhead.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.tabhead=null; cfg-preferred names=[TABLE-col-heading, Normal, Standard]; doc-usable styles={}; all recognised names=[TABLE-col-heading, Standard, Normal] +2024-09-08 15:10:10,954 [main] INFO Style - Assigned from preferred names [full match]: Style.tabhead=TABLE-col-heading; cfg-preferred names=[TABLE-col-heading, Normal, Standard] +2024-09-08 15:10:10,954 [main] TRACE Style - === after +Style.tabhead=TABLE-col-heading; cfg-preferred names=[TABLE-col-heading, Normal, Standard]; doc-usable styles={TABLE-col-heading=TABLE-col-heading (custom, id=0: TABHEAD), Normal=Normal (builtIn, id=-1: PARA)}; all recognised names=[TABLE-col-heading, Standard, Normal] + +2024-09-08 15:10:10,954 [main] TRACE Style - === before tabcell.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.tabcell=null; cfg-preferred names=[TABLE-cell, Normal, Standard]; doc-usable styles={}; all recognised names=[TABLE-cell, Standard, Normal] +2024-09-08 15:10:10,954 [main] INFO Style - Assigned from preferred names [full match]: Style.tabcell=TABLE-cell; cfg-preferred names=[TABLE-cell, Normal, Standard] +2024-09-08 15:10:10,954 [main] TRACE Style - === after +Style.tabcell=TABLE-cell; cfg-preferred names=[TABLE-cell, Normal, Standard]; doc-usable styles={TABLE-cell=TABLE-cell (custom, id=0: TABCELL), Normal=Normal (builtIn, id=-1: PARA)}; all recognised names=[TABLE-cell, Standard, Normal] + +2024-09-08 15:10:10,954 [main] TRACE Style - === before figcapt.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.figcapt=null; cfg-preferred names=[FIGURE-title, Caption, Beschriftung, Légende]; doc-usable styles={}; all recognised names=[FIGURE-title, Beschriftung, Légende, Caption] +2024-09-08 15:10:10,954 [main] INFO Style - Assigned from preferred names [full match]: Style.figcapt=FIGURE-title; cfg-preferred names=[FIGURE-title, Caption, Beschriftung, Légende] +2024-09-08 15:10:10,954 [main] TRACE Style - === after +Style.figcapt=FIGURE-title; cfg-preferred names=[FIGURE-title, Caption, Beschriftung, Légende]; doc-usable styles={FIGURE-title=FIGURE-title (custom, id=0: FIGCAPT), Caption=Caption (builtIn, id=-35: CAPT)}; all recognised names=[FIGURE-title, Beschriftung, Légende, Caption] + +2024-09-08 15:10:10,954 [main] TRACE Style - === before tabcapt.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.tabcapt=null; cfg-preferred names=[TABLE-title, Caption, Beschriftung, Légende]; doc-usable styles={}; all recognised names=[TABLE-title, Beschriftung, Légende, Caption] +2024-09-08 15:10:10,954 [main] INFO Style - Assigned from preferred names [full match]: Style.tabcapt=TABLE-title; cfg-preferred names=[TABLE-title, Caption, Beschriftung, Légende] +2024-09-08 15:10:10,954 [main] TRACE Style - === after +Style.tabcapt=TABLE-title; cfg-preferred names=[TABLE-title, Caption, Beschriftung, Légende]; doc-usable styles={TABLE-title=TABLE-title (custom, id=0: TABCAPT), Caption=Caption (builtIn, id=-35: CAPT)}; all recognised names=[TABLE-title, Beschriftung, Légende, Caption] + +2024-09-08 15:10:10,954 [main] TRACE Style - === before toc1.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.toc1=null; cfg-preferred names=[TOC 1]; doc-usable styles={}; all recognised names=[TOC 1] +2024-09-08 15:10:10,954 [main] INFO Style - Assigned from preferred names [full match]: Style.toc1=TOC 1; cfg-preferred names=[TOC 1] +2024-09-08 15:10:10,954 [main] TRACE Style - === after +Style.toc1=TOC 1; cfg-preferred names=[TOC 1]; doc-usable styles={TOC 1=TOC 1 (builtIn, id=-20: TOC)}; all recognised names=[TOC 1] + +2024-09-08 15:10:10,955 [main] TRACE Style - === before toc2.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.toc2=null; cfg-preferred names=[TOC 2]; doc-usable styles={}; all recognised names=[TOC 2] +2024-09-08 15:10:10,955 [main] INFO Style - Assigned from preferred names [full match]: Style.toc2=TOC 2; cfg-preferred names=[TOC 2] +2024-09-08 15:10:10,955 [main] TRACE Style - === after +Style.toc2=TOC 2; cfg-preferred names=[TOC 2]; doc-usable styles={TOC 2=TOC 2 (builtIn, id=-21: TOC)}; all recognised names=[TOC 2] + +2024-09-08 15:10:10,955 [main] TRACE Style - === before toc3.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.toc3=null; cfg-preferred names=[TOC 3]; doc-usable styles={}; all recognised names=[TOC 3] +2024-09-08 15:10:10,955 [main] INFO Style - Assigned from preferred names [full match]: Style.toc3=TOC 3; cfg-preferred names=[TOC 3] +2024-09-08 15:10:10,955 [main] TRACE Style - === after +Style.toc3=TOC 3; cfg-preferred names=[TOC 3]; doc-usable styles={TOC 3=TOC 3 (builtIn, id=-22: TOC)}; all recognised names=[TOC 3] + +2024-09-08 15:10:10,955 [main] TRACE Style - === before toc4.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.toc4=null; cfg-preferred names=[TOC 4]; doc-usable styles={}; all recognised names=[TOC 4] +2024-09-08 15:10:10,955 [main] INFO Style - Assigned from preferred names [full match]: Style.toc4=TOC 4; cfg-preferred names=[TOC 4] +2024-09-08 15:10:10,955 [main] TRACE Style - === after +Style.toc4=TOC 4; cfg-preferred names=[TOC 4]; doc-usable styles={TOC 4=TOC 4 (builtIn, id=-23: TOC)}; all recognised names=[TOC 4] + +2024-09-08 15:10:10,955 [main] TRACE Style - === before toc5.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.toc5=null; cfg-preferred names=[TOC 5]; doc-usable styles={}; all recognised names=[TOC 5] +2024-09-08 15:10:10,955 [main] INFO Style - Assigned from preferred names [full match]: Style.toc5=TOC 5; cfg-preferred names=[TOC 5] +2024-09-08 15:10:10,955 [main] TRACE Style - === after +Style.toc5=TOC 5; cfg-preferred names=[TOC 5]; doc-usable styles={TOC 5=TOC 5 (builtIn, id=-24: TOC)}; all recognised names=[TOC 5] + +2024-09-08 15:10:10,955 [main] TRACE Style - === before toc6.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.toc6=null; cfg-preferred names=[TOC 6]; doc-usable styles={}; all recognised names=[TOC 6] +2024-09-08 15:10:10,955 [main] INFO Style - Assigned from preferred names [full match]: Style.toc6=TOC 6; cfg-preferred names=[TOC 6] +2024-09-08 15:10:10,955 [main] TRACE Style - === after +Style.toc6=TOC 6; cfg-preferred names=[TOC 6]; doc-usable styles={TOC 6=TOC 6 (builtIn, id=-25: TOC)}; all recognised names=[TOC 6] + +2024-09-08 15:10:10,955 [main] TRACE Style - === before toc7.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.toc7=null; cfg-preferred names=[TOC 7]; doc-usable styles={}; all recognised names=[TOC 7] +2024-09-08 15:10:10,955 [main] INFO Style - Assigned from preferred names [full match]: Style.toc7=TOC 7; cfg-preferred names=[TOC 7] +2024-09-08 15:10:10,955 [main] TRACE Style - === after +Style.toc7=TOC 7; cfg-preferred names=[TOC 7]; doc-usable styles={TOC 7=TOC 7 (builtIn, id=-26: TOC)}; all recognised names=[TOC 7] + +2024-09-08 15:10:10,955 [main] TRACE Style - === before toc8.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.toc8=null; cfg-preferred names=[TOC 8]; doc-usable styles={}; all recognised names=[TOC 8] +2024-09-08 15:10:10,955 [main] INFO Style - Assigned from preferred names [full match]: Style.toc8=TOC 8; cfg-preferred names=[TOC 8] +2024-09-08 15:10:10,956 [main] TRACE Style - === after +Style.toc8=TOC 8; cfg-preferred names=[TOC 8]; doc-usable styles={TOC 8=TOC 8 (builtIn, id=-27: TOC)}; all recognised names=[TOC 8] + +2024-09-08 15:10:10,956 [main] TRACE Style - === before toc9.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.toc9=null; cfg-preferred names=[TOC 9]; doc-usable styles={}; all recognised names=[TOC 9] +2024-09-08 15:10:10,956 [main] INFO Style - Assigned from preferred names [full match]: Style.toc9=TOC 9; cfg-preferred names=[TOC 9] +2024-09-08 15:10:10,956 [main] TRACE Style - === after +Style.toc9=TOC 9; cfg-preferred names=[TOC 9]; doc-usable styles={TOC 9=TOC 9 (builtIn, id=-28: TOC)}; all recognised names=[TOC 9] + +2024-09-08 15:10:10,956 [main] TRACE Style - === before h1.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.h1=null; cfg-preferred names=[Heading 1]; doc-usable styles={}; all recognised names=[Heading 1] +2024-09-08 15:10:10,956 [main] INFO Style - Assigned from preferred names [full match]: Style.h1=Heading 1; cfg-preferred names=[Heading 1] +2024-09-08 15:10:10,956 [main] TRACE Style - === after +Style.h1=Heading 1; cfg-preferred names=[Heading 1]; doc-usable styles={Heading 1=Heading 1 (builtIn, id=-2: HEAD)}; all recognised names=[Heading 1] + +2024-09-08 15:10:10,956 [main] TRACE Style - === before h2.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.h2=null; cfg-preferred names=[Heading 2]; doc-usable styles={}; all recognised names=[Heading 2] +2024-09-08 15:10:10,956 [main] INFO Style - Assigned from preferred names [full match]: Style.h2=Heading 2; cfg-preferred names=[Heading 2] +2024-09-08 15:10:10,956 [main] TRACE Style - === after +Style.h2=Heading 2; cfg-preferred names=[Heading 2]; doc-usable styles={Heading 2=Heading 2 (builtIn, id=-3: HEAD)}; all recognised names=[Heading 2] + +2024-09-08 15:10:10,956 [main] TRACE Style - === before h3.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.h3=null; cfg-preferred names=[Heading 3]; doc-usable styles={}; all recognised names=[Heading 3] +2024-09-08 15:10:10,956 [main] INFO Style - Assigned from preferred names [full match]: Style.h3=Heading 3; cfg-preferred names=[Heading 3] +2024-09-08 15:10:10,956 [main] TRACE Style - === after +Style.h3=Heading 3; cfg-preferred names=[Heading 3]; doc-usable styles={Heading 3=Heading 3 (builtIn, id=-4: HEAD)}; all recognised names=[Heading 3] + +2024-09-08 15:10:10,956 [main] TRACE Style - === before h4.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.h4=null; cfg-preferred names=[Heading 4]; doc-usable styles={}; all recognised names=[Heading 4] +2024-09-08 15:10:10,956 [main] INFO Style - Assigned from preferred names [full match]: Style.h4=Heading 4; cfg-preferred names=[Heading 4] +2024-09-08 15:10:10,956 [main] TRACE Style - === after +Style.h4=Heading 4; cfg-preferred names=[Heading 4]; doc-usable styles={Heading 4=Heading 4 (builtIn, id=-5: HEAD)}; all recognised names=[Heading 4] + +2024-09-08 15:10:10,956 [main] TRACE Style - === before h5.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.h5=null; cfg-preferred names=[Heading 5]; doc-usable styles={}; all recognised names=[Heading 5] +2024-09-08 15:10:10,956 [main] INFO Style - Assigned from preferred names [full match]: Style.h5=Heading 5; cfg-preferred names=[Heading 5] +2024-09-08 15:10:10,956 [main] TRACE Style - === after +Style.h5=Heading 5; cfg-preferred names=[Heading 5]; doc-usable styles={Heading 5=Heading 5 (builtIn, id=-6: HEAD)}; all recognised names=[Heading 5] + +2024-09-08 15:10:10,956 [main] TRACE Style - === before h6.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.h6=null; cfg-preferred names=[Heading 6]; doc-usable styles={}; all recognised names=[Heading 6] +2024-09-08 15:10:10,956 [main] INFO Style - Assigned from preferred names [full match]: Style.h6=Heading 6; cfg-preferred names=[Heading 6] +2024-09-08 15:10:10,957 [main] TRACE Style - === after +Style.h6=Heading 6; cfg-preferred names=[Heading 6]; doc-usable styles={Heading 6=Heading 6 (builtIn, id=-7: HEAD)}; all recognised names=[Heading 6] + +2024-09-08 15:10:10,957 [main] TRACE Style - === before h7.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.h7=null; cfg-preferred names=[Heading 7]; doc-usable styles={}; all recognised names=[Heading 7] +2024-09-08 15:10:10,957 [main] INFO Style - Assigned from preferred names [full match]: Style.h7=Heading 7; cfg-preferred names=[Heading 7] +2024-09-08 15:10:10,957 [main] TRACE Style - === after +Style.h7=Heading 7; cfg-preferred names=[Heading 7]; doc-usable styles={Heading 7=Heading 7 (builtIn, id=-8: HEAD)}; all recognised names=[Heading 7] + +2024-09-08 15:10:10,957 [main] TRACE Style - === before h8.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.h8=null; cfg-preferred names=[Heading 8]; doc-usable styles={}; all recognised names=[Heading 8] +2024-09-08 15:10:10,957 [main] INFO Style - Assigned from preferred names [full match]: Style.h8=Heading 8; cfg-preferred names=[Heading 8] +2024-09-08 15:10:10,957 [main] TRACE Style - === after +Style.h8=Heading 8; cfg-preferred names=[Heading 8]; doc-usable styles={Heading 8=Heading 8 (builtIn, id=-9: HEAD)}; all recognised names=[Heading 8] + +2024-09-08 15:10:10,957 [main] TRACE Style - === before h9.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.h9=null; cfg-preferred names=[Heading 9]; doc-usable styles={}; all recognised names=[Heading 9] +2024-09-08 15:10:10,957 [main] INFO Style - Assigned from preferred names [full match]: Style.h9=Heading 9; cfg-preferred names=[Heading 9] +2024-09-08 15:10:10,957 [main] TRACE Style - === after +Style.h9=Heading 9; cfg-preferred names=[Heading 9]; doc-usable styles={Heading 9=Heading 9 (builtIn, id=-10: HEAD)}; all recognised names=[Heading 9] + +2024-09-08 15:10:10,957 [main] INFO Util - +2024-09-08 15:10:10,957 [main] INFO Util - ------------------------------------------------ +2024-09-08 15:10:10,957 [main] INFO Util - collecting used existing figure/table caption ranges from template... +2024-09-08 15:10:11,640 [main] INFO DocWordWriter - found paragraph [Figure 1 – my first figure ] with caption style [FIGURE-title] +2024-09-08 15:10:11,674 [main] INFO DocWordWriter - found paragraph [Table 1 – my first test table ] with caption style [TABLE-title] +2024-09-08 15:10:11,784 [main] INFO DocWordWriter - found paragraph [Figure 2 – inexisting diagram ] with caption style [Caption] +2024-09-08 15:10:11,820 [main] INFO DocWordWriter - found paragraph [Table 2 - my second test table ] with caption style [Caption] +2024-09-08 15:10:12,001 [main] INFO DocWordWriter - found paragraph [Figure 3 – Diagram referenced in template, not printed in the regular package doc ] with caption style [Caption] +2024-09-08 15:10:12,537 [main] INFO Util - time=[0:00:01.580] collected used figure/table caption ranges from template. +2024-09-08 15:10:12,537 [main] INFO Util - +2024-09-08 15:10:12,537 [main] INFO Util - +2024-09-08 15:10:12,537 [main] INFO Util - ------------------------------------------------ +2024-09-08 15:10:12,537 [main] INFO Util - scanning placeholders... +2024-09-08 15:10:12,594 [main] INFO AbstractWordWriter - saved placeholder 'startUmlFile..endUml' FILE +2024-09-08 15:10:12,620 [main] INFO AbstractWordWriter - skipping TOC: startUmlPackage.Core.endUml +2024-09-08 15:10:12,644 [main] INFO AbstractWordWriter - skipping TOC: startUmlPackage.Dummy.endUml +2024-09-08 15:10:12,746 [main] INFO AbstractWordWriter - skipping TOC: startUmlPackage.InformativeAndPrivate.endUml +2024-09-08 15:10:12,776 [main] INFO AbstractWordWriter - skipping TOC: startUmlPackage.Domain.endUml +2024-09-08 15:10:12,810 [main] INFO AbstractWordWriter - skipping TOC: startUmlPackage.Ext1.endUml +2024-09-08 15:10:12,835 [main] INFO AbstractWordWriter - skipping TOC: startUmlDataIndex.Core.endUml +2024-09-08 15:10:12,861 [main] INFO AbstractWordWriter - skipping TOC: startUmlPresenceConditions.PresenceConditions.endUml +2024-09-08 15:10:12,885 [main] INFO AbstractWordWriter - skipping TOC: startUmlPackage.CDCAnalogueInfo.endUml +2024-09-08 15:10:12,910 [main] INFO AbstractWordWriter - skipping TOC: startUmlPackage.LogicalNodes.endUml +2024-09-08 15:10:12,934 [main] INFO AbstractWordWriter - skipping TOC: startUmlDataIndex.CommonDataClasses.endUml +2024-09-08 15:10:12,959 [main] INFO AbstractWordWriter - skipping TOC: startUmlPackage.DAEnums.endUml +2024-09-08 15:10:12,988 [main] INFO AbstractWordWriter - skipping TOC: startUmlSclEnums.DAEnums.endUml +2024-09-08 15:10:13,030 [main] INFO AbstractWordWriter - skipping TOC: startUmlDataIndex.LogicalNodes.endUml +2024-09-08 15:10:13,059 [main] INFO AbstractWordWriter - skipping TOC: startUmlClass.Core.BasePower.endUml +2024-09-08 15:10:13,092 [main] INFO AbstractWordWriter - skipping TOC: startUmlClass.CDCStatusInfo.DPS.endUml +2024-09-08 15:10:13,124 [main] INFO AbstractWordWriter - skipping TOC: startUmlClass.Domain.UnitSymbol.endUml +2024-09-08 15:10:13,156 [main] INFO AbstractWordWriter - skipping TOC: startUmlClass.Core.InexistingClassName.endUml +2024-09-08 15:10:13,186 [main] INFO AbstractWordWriter - skipping TOC: startUmlClass.ConstructedDAs.RangeConfig.endUml +2024-09-08 15:10:13,219 [main] INFO AbstractWordWriter - skipping TOC: startUmlClass.CDCStatusInfo.HST.endUml +2024-09-08 15:10:13,249 [main] INFO AbstractWordWriter - skipping TOC: startUmlClass.Core.ConnectivityNodeContainer.endUml +2024-09-08 15:10:13,282 [main] INFO AbstractWordWriter - skipping TOC: startUmlClass.Core.DumbSubterminal.endUml +2024-09-08 15:10:13,351 [main] INFO AbstractWordWriter - saved placeholder 'startUmlAttribute.IEC61970CIMVersion.version.endUml' ATTRIBUTE IEC61970CIMVersion, version +2024-09-08 15:10:13,408 [main] INFO AbstractWordWriter - saved placeholder 'startUmlAttribute.IEC61970CIMVersion.dummy.endUml' ATTRIBUTE IEC61970CIMVersion, dummy +2024-09-08 15:10:13,464 [main] INFO AbstractWordWriter - saved placeholder 'startUmlIec61850NsName.IEC61850_7_2Namespace.endUml' IEC61850_NSNAME IEC61850_7_2Namespace +2024-09-08 15:10:13,521 [main] INFO AbstractWordWriter - saved placeholder 'startUmlIec61850NsName.IEC61850_7_3Namespace.endUml' IEC61850_NSNAME IEC61850_7_3Namespace +2024-09-08 15:10:13,576 [main] INFO AbstractWordWriter - saved placeholder 'startUmlIec61850NsName.IEC61850_7_4Namespace.endUml' IEC61850_NSNAME IEC61850_7_4Namespace +2024-09-08 15:10:13,632 [main] INFO AbstractWordWriter - saved placeholder 'startUmlIec61850NsName.IEC61850_7_420Namespace.endUml' IEC61850_NSNAME IEC61850_7_420Namespace +2024-09-08 15:10:13,690 [main] INFO AbstractWordWriter - saved placeholder 'startUmlDiagram.IEC61970.Main.endUml' DIAGRAM IEC61970, Main +2024-09-08 15:10:13,751 [main] INFO AbstractWordWriter - saved placeholder 'startUmlDiagram.DummyPackage.DummyDiagram.endUml' DIAGRAM DummyPackage, DummyDiagram, figures (1 before ), tables (1 before ) +2024-09-08 15:10:13,802 [main] INFO AbstractWordWriter - saved placeholder 'startUmlDiagram.DocIEC61970.MyDocFigure.endUml' DIAGRAM DocIEC61970, MyDocFigure, figures (2 before ), tables (2 before ) +2024-09-08 15:10:13,848 [main] INFO AbstractWordWriter - saved placeholder 'startUmlFile..endUml' FILE, figures (3 before ), tables (2 before ) +2024-09-08 15:10:13,891 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.IEC61970.endUml' PACKAGE IEC61970, figures (3 before ), tables (2 before ) +2024-09-08 15:10:13,934 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.Dummy.endUml' PACKAGE Dummy, figures (3 before ), tables (2 before ) +2024-09-08 15:10:13,975 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.InformativeAndPrivate.endUml' PACKAGE InformativeAndPrivate, figures (3 before ), tables (2 before ) +2024-09-08 15:10:14,018 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.Domain.endUml' PACKAGE Domain, figures (3 before ), tables (2 before ) +2024-09-08 15:10:14,061 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.Ext1.endUml' PACKAGE Ext1, figures (3 before ), tables (2 before ) +2024-09-08 15:10:14,104 [main] INFO AbstractWordWriter - saved placeholder 'startUmlDataIndex.Core.endUml' DATA_INDEX Core, figures (3 before ), tables (2 before ) +2024-09-08 15:10:14,146 [main] INFO AbstractWordWriter - saved placeholder 'startUmlAbbreviations.Abbreviations.endUml' ABBREVIATIONS Abbreviations, figures (3 before ), tables (2 before ) +2024-09-08 15:10:14,197 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPresenceConditions.PresenceConditions.endUml' PRES_CONDITIONS PresenceConditions, figures (3 before ), tables (2 before ) +2024-09-08 15:10:14,241 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.CDCAnalogueInfo.endUml' PACKAGE CDCAnalogueInfo, figures (3 before ), tables (2 before ) +2024-09-08 15:10:14,281 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.LogicalNodes.endUml' PACKAGE LogicalNodes, figures (3 before ), tables (2 before ) +2024-09-08 15:10:14,325 [main] INFO AbstractWordWriter - saved placeholder 'startUmlDataIndex.CommonDataClasses.endUml' DATA_INDEX CommonDataClasses, figures (3 before ), tables (2 before ) +2024-09-08 15:10:14,368 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.DAEnums.endUml' PACKAGE DAEnums, figures (3 before ), tables (2 before ) +2024-09-08 15:10:14,411 [main] INFO AbstractWordWriter - saved placeholder 'startUmlSclEnums.DAEnums.endUml' SCL_ENUMS DAEnums, figures (3 before ), tables (2 before ) +2024-09-08 15:10:14,451 [main] INFO AbstractWordWriter - saved placeholder 'startUmlDataIndex.LogicalNodes.endUml' DATA_INDEX LogicalNodes, figures (3 before ), tables (2 before ) +2024-09-08 15:10:14,494 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.IEC51850_7_420.endUml' PACKAGE IEC51850_7_420, figures (3 before ), tables (2 before ) +2024-09-08 15:10:14,536 [main] INFO AbstractWordWriter - saved placeholder 'startUmlDiagNote.IEC61970.Main.endUml' DIAG_NOTE IEC61970, Main, figures (3 before ), tables (2 before ) +2024-09-08 15:10:14,578 [main] INFO AbstractWordWriter - saved placeholder 'startUmlDiagNote.IEC619_70.Main.endUml' DIAG_NOTE IEC619_70, Main, figures (3 before ), tables (2 before ) +2024-09-08 15:10:14,619 [main] INFO AbstractWordWriter - saved placeholder 'startUmlClass.Core.BasePower.endUml' CLASS Core, BasePower, figures (3 before ), tables (2 before ) +2024-09-08 15:10:14,660 [main] INFO AbstractWordWriter - saved placeholder 'startUmlClass.CDCStatusInfo.DPS.endUml' CLASS CDCStatusInfo, DPS, figures (3 before ), tables (2 before ) +2024-09-08 15:10:14,702 [main] INFO AbstractWordWriter - saved placeholder 'startUmlClass.Domain.UnitSymbol.endUml' CLASS Domain, UnitSymbol, figures (3 before ), tables (2 before ) +2024-09-08 15:10:14,742 [main] INFO AbstractWordWriter - saved placeholder 'startUmlClass.Core.InexistingClassName.endUml' CLASS Core, InexistingClassName, figures (3 before ), tables (2 before ) +2024-09-08 15:10:14,782 [main] INFO AbstractWordWriter - saved placeholder 'startUmlClass.ConstructedDAs.RangeConfig.endUml' CLASS ConstructedDAs, RangeConfig, figures (3 before ), tables (2 before ) +2024-09-08 15:10:14,824 [main] INFO AbstractWordWriter - saved placeholder 'startUmlClass.CDCStatusInfo.HST.endUml' CLASS CDCStatusInfo, HST, figures (3 before ), tables (2 before ) +2024-09-08 15:10:14,865 [main] INFO AbstractWordWriter - saved placeholder 'startUmlClass.Core.ConnectivityNodeContainer.endUml' CLASS Core, ConnectivityNodeContainer, figures (3 before ), tables (2 before ) +2024-09-08 15:10:14,908 [main] INFO AbstractWordWriter - saved placeholder 'startUmlClass.Core.DumbSubterminal.endUml' CLASS Core, DumbSubterminal, figures (3 before ), tables (2 before ) +2024-09-08 15:10:14,913 [main] INFO AbstractWordWriter - 36 placeholders found. +2024-09-08 15:10:14,913 [main] INFO Util - time=[0:00:02.376] scanned placeholders. +2024-09-08 15:10:14,913 [main] INFO Util - +2024-09-08 15:10:14,913 [main] INFO Util - +2024-09-08 15:10:14,913 [main] INFO Util - ------------------------------------------------ +2024-09-08 15:10:14,913 [main] INFO Util - inserting documentation into placeholders +2024-09-08 15:10:14,920 [main] INFO AbstractWordWriter - replacing [39 - 59] FILE... +2024-09-08 15:10:14,930 [main] INFO Util - time=[0:00:00.016] replaced [39 - 53] FILE... +2024-09-08 15:10:14,930 [main] INFO Util - +2024-09-08 15:10:14,934 [main] INFO AbstractWordWriter - replacing [4015 - 4066] ATTRIBUTE IEC61970CIMVersion, version... +2024-09-08 15:10:14,942 [main] INFO Util - time=[0:00:00.012] replaced [4015 - 4031] ATTRIBUTE IEC61970CIMVersion, version... +2024-09-08 15:10:14,942 [main] INFO Util - +2024-09-08 15:10:14,946 [main] INFO AbstractWordWriter - replacing [4055 - 4104] ATTRIBUTE IEC61970CIMVersion, dummy... +2024-09-08 15:10:14,954 [main] INFO Util - time=[0:00:00.012] replaced [4055 - 4117] $ERROR ATTRIBUTE IEC61970CIMVersion, dummy not found in model$... +2024-09-08 15:10:14,954 [main] INFO Util - +2024-09-08 15:10:14,957 [main] INFO AbstractWordWriter - replacing [4163 - 4214] IEC61850_NSNAME IEC61850_7_2Namespace... +2024-09-08 15:10:14,965 [main] INFO Util - time=[0:00:00.011] replaced [4163 - 4180] IEC61850_NSNAME IEC61850_7_2Namespace... +2024-09-08 15:10:14,965 [main] INFO Util - +2024-09-08 15:10:14,969 [main] INFO AbstractWordWriter - replacing [4208 - 4259] IEC61850_NSNAME IEC61850_7_3Namespace... +2024-09-08 15:10:14,977 [main] INFO Util - time=[0:00:00.012] replaced [4208 - 4226] IEC61850_NSNAME IEC61850_7_3Namespace... +2024-09-08 15:10:14,977 [main] INFO Util - +2024-09-08 15:10:14,981 [main] INFO AbstractWordWriter - replacing [4254 - 4305] IEC61850_NSNAME IEC61850_7_4Namespace... +2024-09-08 15:10:14,990 [main] INFO Util - time=[0:00:00.013] replaced [4254 - 4272] IEC61850_NSNAME IEC61850_7_4Namespace... +2024-09-08 15:10:14,990 [main] INFO Util - +2024-09-08 15:10:14,994 [main] INFO AbstractWordWriter - replacing [4300 - 4353] IEC61850_NSNAME IEC61850_7_420Namespace... +2024-09-08 15:10:15,002 [main] INFO Util - time=[0:00:00.012] replaced [4300 - 4366] $ERROR IEC61850_NSNAME IEC61850_7_420Namespace not found in model$... +2024-09-08 15:10:15,002 [main] INFO Util - +2024-09-08 15:10:15,006 [main] INFO AbstractWordWriter - replacing [4429 - 4465] DIAGRAM IEC61970, Main... +2024-09-08 15:10:15,040 [main] INFO Util - time=[0:00:00.038] replaced [4429 - 4430] DIAGRAM IEC61970, Main... +2024-09-08 15:10:15,040 [main] INFO Util - +2024-09-08 15:10:15,044 [main] INFO AbstractWordWriter - replacing [4688 - 4736] DIAGRAM DummyPackage, DummyDiagram, figures (1 before ), tables (1 before )... +2024-09-08 15:10:15,044 [main] WARN ModelFinderImpl - No diagram DummyPackage::DummyDiagram found - returning null. +2024-09-08 15:10:15,053 [main] INFO Util - time=[0:00:00.013] replaced [4688 - 4749] $ERROR DIAGRAM DummyPackage, DummyDiagram not found in model$... +2024-09-08 15:10:15,053 [main] INFO Util - +2024-09-08 15:10:15,056 [main] INFO AbstractWordWriter - replacing [5021 - 5067] DIAGRAM DocIEC61970, MyDocFigure, figures (2 before ), tables (2 before )... +2024-09-08 15:10:15,080 [main] INFO Util - time=[0:00:00.027] replaced [5021 - 5022] DIAGRAM DocIEC61970, MyDocFigure, figures (2 before ), tables (2 before )... +2024-09-08 15:10:15,080 [main] INFO Util - +2024-09-08 15:10:15,085 [main] INFO AbstractWordWriter - replacing [5207 - 5227] FILE, figures (3 before ), tables (2 before )... +2024-09-08 15:10:15,092 [main] INFO Util - time=[0:00:00.012] replaced [5207 - 5221] FILE, figures (3 before ), tables (2 before )... +2024-09-08 15:10:15,092 [main] INFO Util - +2024-09-08 15:10:15,095 [main] INFO AbstractWordWriter - replacing [5223 - 5254] PACKAGE IEC61970, figures (3 before ), tables (2 before )... +2024-09-08 15:10:15,114 [main] INFO AbstractWordWriter - writing doc for package IEC61970 ... +2024-09-08 15:10:15,191 [main] WARN AbstractWordWriter - ####### Caught exception - skipping: Invoke of: InsertCaption +Source: Microsoft Word +Description: Command failed + +2024-09-08 15:10:15,198 [main] INFO Util - time=[0:00:00.106] replaced [5253 - 5254] PACKAGE IEC61970, figures (3 before 1 mine), tables (2 before )... +2024-09-08 15:10:15,198 [main] INFO Util - +2024-09-08 15:10:15,203 [main] INFO AbstractWordWriter - replacing [5814 - 5842] PACKAGE Dummy, figures (4 before ), tables (2 before )... +2024-09-08 15:10:15,210 [main] INFO Util - time=[0:00:00.012] replaced [5814 - 5854] $ERROR PACKAGE Dummy not found in model$... +2024-09-08 15:10:15,211 [main] INFO Util - +2024-09-08 15:10:15,214 [main] INFO AbstractWordWriter - replacing [5855 - 5899] PACKAGE InformativeAndPrivate, figures (4 before ), tables (2 before )... +2024-09-08 15:10:15,222 [main] INFO Util - time=[0:00:00.011] replaced [5855 - 5911] $ERROR PACKAGE InformativeAndPrivate not found in model$... +2024-09-08 15:10:15,222 [main] INFO Util - +2024-09-08 15:10:15,226 [main] INFO AbstractWordWriter - replacing [5912 - 5941] PACKAGE Domain, figures (4 before ), tables (2 before )... +2024-09-08 15:10:15,246 [main] INFO AbstractWordWriter - writing doc for package Domain ... +2024-09-08 15:10:15,338 [main] WARN AbstractWordWriter - ####### Caught exception - skipping: Invoke of: InsertCaption +Source: Microsoft Word +Description: Command failed + +2024-09-08 15:10:15,347 [main] INFO Util - time=[0:00:00.125] replaced [6712 - 6713] PACKAGE Domain, figures (4 before 1 mine), tables (2 before )... +2024-09-08 15:10:15,347 [main] INFO Util - +2024-09-08 15:10:15,352 [main] INFO AbstractWordWriter - replacing [6714 - 6741] PACKAGE Ext1, figures (5 before ), tables (2 before )... +2024-09-08 15:10:15,373 [main] INFO AbstractWordWriter - writing doc for package Ext1 ... +2024-09-08 15:10:15,472 [main] WARN AbstractWordWriter - ####### Caught exception - skipping: Invoke of: InsertCaption +Source: Microsoft Word +Description: Command failed + +2024-09-08 15:10:15,479 [main] INFO Util - time=[0:00:00.132] replaced [6838 - 6839] PACKAGE Ext1, figures (5 before 1 mine), tables (2 before )... +2024-09-08 15:10:15,479 [main] INFO Util - +2024-09-08 15:10:15,484 [main] INFO AbstractWordWriter - replacing [7124 - 7153] DATA_INDEX Core, figures (6 before ), tables (2 before )... +2024-09-08 15:10:15,489 [main] INFO AbstractWordWriter - writing data index doc for package Core ... +2024-09-08 15:10:15,513 [main] INFO DocWordWriter - --- insertTable() 22 rows: Attributes defined on classes of Core package +2024-09-08 15:10:15,537 [main] DEBUG DocWordWriter - ... 24 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 15:10:15,551 [main] DEBUG DocWordWriter - ... 14 ms for createTable() +2024-09-08 15:10:15,836 [main] DEBUG DocWordWriter - ... 285 ms for fillValues() +2024-09-08 15:10:15,852 [main] DEBUG DocWordWriter - ... 16 ms for widths (table) +2024-09-08 15:10:15,926 [main] DEBUG DocWordWriter - ... 74 ms for widths (columns) +2024-09-08 15:10:15,950 [main] DEBUG DocWordWriter - ... 24 ms for shadding/merging/styling (rows) +2024-09-08 15:10:15,976 [main] DEBUG DocWordWriter - ... 26 ms for borders +2024-09-08 15:10:15,976 [main] DEBUG DocWordWriter - ... 140 ms for formatTable() +2024-09-08 15:10:15,988 [main] INFO DocWordWriter - ... 463 ms total for insertTable() +2024-09-08 15:10:16,000 [main] WARN AbstractWordWriter - ####### Caught exception - skipping: Invoke of: InsertCaption +Source: Microsoft Word +Description: Command failed + +2024-09-08 15:10:16,006 [main] INFO Util - time=[0:00:00.527] replaced [7196 - 10946] DATA_INDEX Core, figures (6 before ), tables (2 before 1 mine)... +2024-09-08 15:10:16,006 [main] INFO Util - +2024-09-08 15:10:16,011 [main] INFO AbstractWordWriter - replacing [11011 - 11053] ABBREVIATIONS Abbreviations, figures (6 before ), tables (3 before )... +2024-09-08 15:10:16,017 [main] INFO AbstractWordWriter - writing abbreviations from package Abbreviations ... +2024-09-08 15:10:16,042 [main] INFO DocWordWriter - --- insertTable() 11 rows: Normative abbreviations for data object names +2024-09-08 15:10:16,064 [main] DEBUG DocWordWriter - ... 22 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 15:10:16,073 [main] DEBUG DocWordWriter - ... 9 ms for createTable() +2024-09-08 15:10:16,187 [main] DEBUG DocWordWriter - ... 114 ms for fillValues() +2024-09-08 15:10:16,202 [main] DEBUG DocWordWriter - ... 14 ms for widths (table) +2024-09-08 15:10:16,254 [main] DEBUG DocWordWriter - ... 53 ms for widths (columns) +2024-09-08 15:10:16,273 [main] DEBUG DocWordWriter - ... 19 ms for shadding/merging/styling (rows) +2024-09-08 15:10:16,293 [main] DEBUG DocWordWriter - ... 20 ms for borders +2024-09-08 15:10:16,293 [main] DEBUG DocWordWriter - ... 106 ms for formatTable() +2024-09-08 15:10:16,304 [main] INFO DocWordWriter - ... 251 ms total for insertTable() +2024-09-08 15:10:16,316 [main] WARN AbstractWordWriter - ####### Caught exception - skipping: Invoke of: InsertCaption +Source: Microsoft Word +Description: Command failed + +2024-09-08 15:10:16,323 [main] INFO Util - time=[0:00:00.317] replaced [11081 - 11305] ABBREVIATIONS Abbreviations, figures (6 before ), tables (3 before 1 mine)... +2024-09-08 15:10:16,323 [main] INFO Util - +2024-09-08 15:10:16,329 [main] INFO AbstractWordWriter - replacing [11306 - 11358] PRES_CONDITIONS PresenceConditions, figures (6 before ), tables (4 before )... +2024-09-08 15:10:16,338 [main] INFO AbstractWordWriter - writing presence conditions from package PresenceConditions ... +2024-09-08 15:10:16,387 [main] INFO DocWordWriter - --- insertTable() 31 rows: Conditions for presence of elements within a context +2024-09-08 15:10:16,409 [main] DEBUG DocWordWriter - ... 22 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 15:10:16,423 [main] DEBUG DocWordWriter - ... 14 ms for createTable() +2024-09-08 15:10:16,451 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML556' to Word document and to used list. +2024-09-08 15:10:16,462 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML557' to Word document and to used list. +2024-09-08 15:10:16,473 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML558' to Word document and to used list. +2024-09-08 15:10:16,485 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML559' to Word document and to used list. +2024-09-08 15:10:16,496 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML560' to Word document and to used list. +2024-09-08 15:10:16,507 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML561' to Word document and to used list. +2024-09-08 15:10:16,518 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML562' to Word document and to used list. +2024-09-08 15:10:16,530 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML563' to Word document and to used list. +2024-09-08 15:10:16,542 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML564' to Word document and to used list. +2024-09-08 15:10:16,553 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML565' to Word document and to used list. +2024-09-08 15:10:16,565 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML566' to Word document and to used list. +2024-09-08 15:10:16,577 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML567' to Word document and to used list. +2024-09-08 15:10:16,591 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML568' to Word document and to used list. +2024-09-08 15:10:16,604 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML569' to Word document and to used list. +2024-09-08 15:10:16,616 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML570' to Word document and to used list. +2024-09-08 15:10:16,627 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML571' to Word document and to used list. +2024-09-08 15:10:16,639 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML572' to Word document and to used list. +2024-09-08 15:10:16,651 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML573' to Word document and to used list. +2024-09-08 15:10:16,662 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML574' to Word document and to used list. +2024-09-08 15:10:16,673 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML575' to Word document and to used list. +2024-09-08 15:10:16,686 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML576' to Word document and to used list. +2024-09-08 15:10:16,697 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML577' to Word document and to used list. +2024-09-08 15:10:16,710 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML578' to Word document and to used list. +2024-09-08 15:10:16,724 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML579' to Word document and to used list. +2024-09-08 15:10:16,736 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML580' to Word document and to used list. +2024-09-08 15:10:16,747 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML581' to Word document and to used list. +2024-09-08 15:10:16,759 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML582' to Word document and to used list. +2024-09-08 15:10:16,770 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML583' to Word document and to used list. +2024-09-08 15:10:16,782 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML584' to Word document and to used list. +2024-09-08 15:10:16,794 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML585' to Word document and to used list. +2024-09-08 15:10:16,798 [main] DEBUG DocWordWriter - ... 375 ms for fillValues() +2024-09-08 15:10:16,815 [main] DEBUG DocWordWriter - ... 17 ms for widths (table) +2024-09-08 15:10:16,866 [main] DEBUG DocWordWriter - ... 51 ms for widths (columns) +2024-09-08 15:10:16,884 [main] DEBUG DocWordWriter - ... 18 ms for shadding/merging/styling (rows) +2024-09-08 15:10:16,915 [main] DEBUG DocWordWriter - ... 31 ms for borders +2024-09-08 15:10:16,915 [main] DEBUG DocWordWriter - ... 117 ms for formatTable() +2024-09-08 15:10:16,923 [main] INFO DocWordWriter - ... 528 ms total for insertTable() +2024-09-08 15:10:16,937 [main] WARN AbstractWordWriter - ####### Caught exception - skipping: Invoke of: InsertCaption +Source: Microsoft Word +Description: Command failed + +2024-09-08 15:10:16,943 [main] INFO Util - time=[0:00:00.619] replaced [11506 - 16709] PRES_CONDITIONS PresenceConditions, figures (6 before ), tables (4 before 1 mine)... +2024-09-08 15:10:16,943 [main] INFO Util - +2024-09-08 15:10:16,948 [main] INFO AbstractWordWriter - replacing [16710 - 16748] PACKAGE CDCAnalogueInfo, figures (6 before ), tables (5 before )... +2024-09-08 15:10:16,965 [main] INFO AbstractWordWriter - writing doc for package CDCAnalogueInfo ... +2024-09-08 15:10:17,053 [main] WARN AbstractWordWriter - ####### Caught exception - skipping: Invoke of: InsertCaption +Source: Microsoft Word +Description: Command failed + +2024-09-08 15:10:17,061 [main] INFO Util - time=[0:00:00.118] replaced [16872 - 16873] PACKAGE CDCAnalogueInfo, figures (6 before 1 mine), tables (5 before )... +2024-09-08 15:10:17,061 [main] INFO Util - +2024-09-08 15:10:17,065 [main] INFO AbstractWordWriter - replacing [16874 - 16909] PACKAGE LogicalNodes, figures (7 before ), tables (5 before )... +2024-09-08 15:10:17,083 [main] INFO AbstractWordWriter - writing doc for package LogicalNodes ... +2024-09-08 15:10:17,168 [main] WARN AbstractWordWriter - ####### Caught exception - skipping: Invoke of: InsertCaption +Source: Microsoft Word +Description: Command failed + +2024-09-08 15:10:17,175 [main] INFO Util - time=[0:00:00.114] replaced [17644 - 17645] PACKAGE LogicalNodes, figures (7 before 1 mine), tables (5 before )... +2024-09-08 15:10:17,175 [main] INFO Util - +2024-09-08 15:10:17,180 [main] INFO AbstractWordWriter - replacing [17646 - 17688] DATA_INDEX CommonDataClasses, figures (8 before ), tables (5 before )... +2024-09-08 15:10:17,185 [main] INFO AbstractWordWriter - writing data index doc for package CommonDataClasses ... +2024-09-08 15:10:17,210 [main] INFO DocWordWriter - --- insertTable() 31 rows: Attributes defined on classes of CommonDataClasses package +2024-09-08 15:10:17,228 [main] DEBUG DocWordWriter - ... 18 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 15:10:17,242 [main] DEBUG DocWordWriter - ... 14 ms for createTable() +2024-09-08 15:10:17,727 [main] DEBUG DocWordWriter - ... 485 ms for fillValues() +2024-09-08 15:10:17,745 [main] DEBUG DocWordWriter - ... 18 ms for widths (table) +2024-09-08 15:10:17,827 [main] DEBUG DocWordWriter - ... 82 ms for widths (columns) +2024-09-08 15:10:17,845 [main] DEBUG DocWordWriter - ... 18 ms for shadding/merging/styling (rows) +2024-09-08 15:10:17,876 [main] DEBUG DocWordWriter - ... 31 ms for borders +2024-09-08 15:10:17,876 [main] DEBUG DocWordWriter - ... 149 ms for formatTable() +2024-09-08 15:10:17,885 [main] INFO DocWordWriter - ... 666 ms total for insertTable() +2024-09-08 15:10:17,898 [main] WARN AbstractWordWriter - ####### Caught exception - skipping: Invoke of: InsertCaption +Source: Microsoft Word +Description: Command failed + +2024-09-08 15:10:17,904 [main] INFO Util - time=[0:00:00.729] replaced [17731 - 23185] DATA_INDEX CommonDataClasses, figures (8 before ), tables (5 before 1 mine)... +2024-09-08 15:10:17,905 [main] INFO Util - +2024-09-08 15:10:17,910 [main] INFO AbstractWordWriter - replacing [23186 - 23216] PACKAGE DAEnums, figures (8 before ), tables (6 before )... +2024-09-08 15:10:17,931 [main] INFO AbstractWordWriter - writing doc for package DAEnums ... +2024-09-08 15:10:18,025 [main] WARN AbstractWordWriter - ####### Caught exception - skipping: Invoke of: InsertCaption +Source: Microsoft Word +Description: Command failed + +2024-09-08 15:10:18,034 [main] INFO Util - time=[0:00:00.129] replaced [23358 - 23359] PACKAGE DAEnums, figures (8 before 1 mine), tables (6 before )... +2024-09-08 15:10:18,034 [main] INFO Util - +2024-09-08 15:10:18,037 [main] INFO AbstractWordWriter - replacing [23360 - 23391] SCL_ENUMS DAEnums, figures (9 before ), tables (6 before )... +2024-09-08 15:10:18,043 [main] INFO AbstractWordWriter - writing SCL for enums from package DAEnums ... +2024-09-08 15:10:18,102 [main] INFO Util - time=[0:00:00.068] replaced [23392 - 27440] SCL_ENUMS DAEnums, figures (9 before ), tables (6 before )... +2024-09-08 15:10:18,102 [main] INFO Util - +2024-09-08 15:10:18,106 [main] INFO AbstractWordWriter - replacing [27441 - 27478] DATA_INDEX LogicalNodes, figures (9 before ), tables (6 before )... +2024-09-08 15:10:18,111 [main] INFO AbstractWordWriter - writing data index doc for package LogicalNodes ... +2024-09-08 15:10:18,140 [main] INFO DocWordWriter - --- insertTable() 33 rows: Attributes defined on classes of LogicalNodes package +2024-09-08 15:10:18,159 [main] DEBUG DocWordWriter - ... 19 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 15:10:18,177 [main] DEBUG DocWordWriter - ... 18 ms for createTable() +2024-09-08 15:10:18,686 [main] DEBUG DocWordWriter - ... 509 ms for fillValues() +2024-09-08 15:10:18,704 [main] DEBUG DocWordWriter - ... 18 ms for widths (table) +2024-09-08 15:10:18,789 [main] DEBUG DocWordWriter - ... 85 ms for widths (columns) +2024-09-08 15:10:18,815 [main] DEBUG DocWordWriter - ... 26 ms for shadding/merging/styling (rows) +2024-09-08 15:10:18,848 [main] DEBUG DocWordWriter - ... 33 ms for borders +2024-09-08 15:10:18,848 [main] DEBUG DocWordWriter - ... 162 ms for formatTable() +2024-09-08 15:10:18,856 [main] INFO DocWordWriter - ... 708 ms total for insertTable() +2024-09-08 15:10:18,869 [main] WARN AbstractWordWriter - ####### Caught exception - skipping: Invoke of: InsertCaption +Source: Microsoft Word +Description: Command failed + +2024-09-08 15:10:18,877 [main] INFO Util - time=[0:00:00.775] replaced [27521 - 33764] DATA_INDEX LogicalNodes, figures (9 before ), tables (6 before 1 mine)... +2024-09-08 15:10:18,877 [main] INFO Util - +2024-09-08 15:10:18,882 [main] INFO AbstractWordWriter - replacing [33765 - 33802] PACKAGE IEC51850_7_420, figures (9 before ), tables (7 before )... +2024-09-08 15:10:18,902 [main] INFO AbstractWordWriter - writing doc for package IEC51850_7_420 ... +2024-09-08 15:10:18,986 [main] WARN AbstractWordWriter - ####### Caught exception - skipping: Invoke of: InsertCaption +Source: Microsoft Word +Description: Command failed + +2024-09-08 15:10:18,995 [main] INFO Util - time=[0:00:00.118] replaced [33797 - 33798] PACKAGE IEC51850_7_420, figures (9 before 1 mine), tables (7 before )... +2024-09-08 15:10:18,995 [main] INFO Util - +2024-09-08 15:10:18,999 [main] INFO AbstractWordWriter - replacing [33972 - 34009] DIAG_NOTE IEC61970, Main, figures (10 before ), tables (7 before )... +2024-09-08 15:10:19,007 [main] INFO Util - time=[0:00:00.012] replaced [33972 - 34061] DIAG_NOTE IEC61970, Main, figures (10 before ), tables (7 before )... +2024-09-08 15:10:19,008 [main] INFO Util - +2024-09-08 15:10:19,012 [main] INFO AbstractWordWriter - replacing [34103 - 34141] DIAG_NOTE IEC619_70, Main, figures (10 before ), tables (7 before )... +2024-09-08 15:10:19,013 [main] WARN ModelFinderImpl - No diagram IEC619_70::Main found - returning null. +2024-09-08 15:10:19,020 [main] INFO Util - time=[0:00:00.012] replaced [34103 - 34155] $ERROR DIAG_NOTE IEC619_70, Main not found in model$... +2024-09-08 15:10:19,020 [main] INFO Util - +2024-09-08 15:10:19,025 [main] INFO AbstractWordWriter - replacing [34256 - 34291] CLASS Core, BasePower, figures (10 before ), tables (7 before )... +2024-09-08 15:10:19,037 [main] INFO AbstractWordWriter - writing doc for class CLASS Core, BasePower ... +2024-09-08 15:10:19,051 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML162' to Word document and to used list. +2024-09-08 15:10:19,116 [main] INFO DocWordWriter - --- insertTable() 5 rows: Attributes of Core::BasePower +2024-09-08 15:10:19,134 [main] DEBUG DocWordWriter - ... 18 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 15:10:19,144 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-08 15:10:19,249 [main] DEBUG DocWordWriter - ... 105 ms for fillValues() +2024-09-08 15:10:19,262 [main] DEBUG DocWordWriter - ... 13 ms for widths (table) +2024-09-08 15:10:19,331 [main] DEBUG DocWordWriter - ... 69 ms for widths (columns) +2024-09-08 15:10:19,351 [main] DEBUG DocWordWriter - ... 20 ms for shadding/merging/styling (rows) +2024-09-08 15:10:19,370 [main] DEBUG DocWordWriter - ... 19 ms for borders +2024-09-08 15:10:19,371 [main] DEBUG DocWordWriter - ... 121 ms for formatTable() +2024-09-08 15:10:19,379 [main] INFO DocWordWriter - ... 254 ms total for insertTable() +2024-09-08 15:10:19,391 [main] WARN AbstractWordWriter - ####### Caught exception - skipping: Invoke of: InsertCaption +Source: Microsoft Word +Description: Command failed + +2024-09-08 15:10:19,399 [main] INFO Util - time=[0:00:00.378] replaced [34427 - 34753] CLASS Core, BasePower, figures (10 before ), tables (7 before 1 mine)... +2024-09-08 15:10:19,399 [main] INFO Util - +2024-09-08 15:10:19,404 [main] INFO AbstractWordWriter - replacing [34754 - 34792] CLASS CDCStatusInfo, DPS, figures (10 before ), tables (8 before )... +2024-09-08 15:10:19,420 [main] INFO AbstractWordWriter - writing doc for class CLASS CDCStatusInfo, DPS ... +2024-09-08 15:10:19,428 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML229' to Word document and to used list. +2024-09-08 15:10:19,493 [main] INFO DocWordWriter - --- insertTable() 14 rows: Attributes of DPS +2024-09-08 15:10:19,510 [main] DEBUG DocWordWriter - ... 17 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 15:10:19,523 [main] DEBUG DocWordWriter - ... 13 ms for createTable() +2024-09-08 15:10:19,852 [main] DEBUG DocWordWriter - ... 329 ms for fillValues() +2024-09-08 15:10:19,867 [main] DEBUG DocWordWriter - ... 15 ms for widths (table) +2024-09-08 15:10:20,002 [main] DEBUG DocWordWriter - ... 135 ms for widths (columns) +2024-09-08 15:10:20,224 [main] DEBUG DocWordWriter - ... 222 ms for shadding/merging/styling (rows) +2024-09-08 15:10:20,262 [main] DEBUG DocWordWriter - ... 38 ms for borders +2024-09-08 15:10:20,262 [main] DEBUG DocWordWriter - ... 410 ms for formatTable() +2024-09-08 15:10:20,271 [main] INFO DocWordWriter - ... 769 ms total for insertTable() +2024-09-08 15:10:20,285 [main] WARN AbstractWordWriter - ####### Caught exception - skipping: Invoke of: InsertCaption +Source: Microsoft Word +Description: Command failed + +2024-09-08 15:10:20,294 [main] INFO Util - time=[0:00:00.895] replaced [35112 - 36150] CLASS CDCStatusInfo, DPS, figures (10 before ), tables (8 before 1 mine)... +2024-09-08 15:10:20,294 [main] INFO Util - +2024-09-08 15:10:20,299 [main] INFO AbstractWordWriter - replacing [36151 - 36189] CLASS Domain, UnitSymbol, figures (10 before ), tables (9 before )... +2024-09-08 15:10:20,315 [main] INFO AbstractWordWriter - writing doc for class CLASS Domain, UnitSymbol ... +2024-09-08 15:10:20,325 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML24' to Word document and to used list. +2024-09-08 15:10:20,385 [main] INFO DocWordWriter - --- insertTable() 35 rows: Literals of Domain::UnitSymbol +2024-09-08 15:10:20,431 [main] DEBUG DocWordWriter - ... 46 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 15:10:20,465 [main] DEBUG DocWordWriter - ... 34 ms for createTable() +2024-09-08 15:10:20,513 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML412' to Word document and to used list. +2024-09-08 15:10:20,531 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML413' to Word document and to used list. +2024-09-08 15:10:20,550 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML414' to Word document and to used list. +2024-09-08 15:10:20,567 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML415' to Word document and to used list. +2024-09-08 15:10:20,585 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML416' to Word document and to used list. +2024-09-08 15:10:20,602 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML417' to Word document and to used list. +2024-09-08 15:10:20,619 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML418' to Word document and to used list. +2024-09-08 15:10:20,637 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML419' to Word document and to used list. +2024-09-08 15:10:20,655 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML420' to Word document and to used list. +2024-09-08 15:10:20,673 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML421' to Word document and to used list. +2024-09-08 15:10:20,690 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML422' to Word document and to used list. +2024-09-08 15:10:20,709 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML423' to Word document and to used list. +2024-09-08 15:10:20,724 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML424' to Word document and to used list. +2024-09-08 15:10:20,739 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML425' to Word document and to used list. +2024-09-08 15:10:20,754 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML426' to Word document and to used list. +2024-09-08 15:10:20,770 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML427' to Word document and to used list. +2024-09-08 15:10:20,785 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML428' to Word document and to used list. +2024-09-08 15:10:20,801 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML429' to Word document and to used list. +2024-09-08 15:10:20,816 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML430' to Word document and to used list. +2024-09-08 15:10:20,830 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML431' to Word document and to used list. +2024-09-08 15:10:20,846 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML432' to Word document and to used list. +2024-09-08 15:10:20,862 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML433' to Word document and to used list. +2024-09-08 15:10:20,877 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML434' to Word document and to used list. +2024-09-08 15:10:20,892 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML435' to Word document and to used list. +2024-09-08 15:10:20,905 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML436' to Word document and to used list. +2024-09-08 15:10:20,918 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML437' to Word document and to used list. +2024-09-08 15:10:20,931 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML438' to Word document and to used list. +2024-09-08 15:10:20,945 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML439' to Word document and to used list. +2024-09-08 15:10:20,959 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML440' to Word document and to used list. +2024-09-08 15:10:20,974 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML441' to Word document and to used list. +2024-09-08 15:10:20,988 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML442' to Word document and to used list. +2024-09-08 15:10:21,002 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML443' to Word document and to used list. +2024-09-08 15:10:21,016 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML444' to Word document and to used list. +2024-09-08 15:10:21,030 [main] TRACE DocWordWriter - DocWordWriter.fillValues(): added bookmark 'UML445' to Word document and to used list. +2024-09-08 15:10:21,035 [main] DEBUG DocWordWriter - ... 570 ms for fillValues() +2024-09-08 15:10:21,058 [main] DEBUG DocWordWriter - ... 23 ms for widths (table) +2024-09-08 15:10:21,142 [main] DEBUG DocWordWriter - ... 84 ms for widths (columns) +2024-09-08 15:10:21,163 [main] DEBUG DocWordWriter - ... 21 ms for shadding/merging/styling (rows) +2024-09-08 15:10:21,194 [main] DEBUG DocWordWriter - ... 31 ms for borders +2024-09-08 15:10:21,194 [main] DEBUG DocWordWriter - ... 159 ms for formatTable() +2024-09-08 15:10:21,202 [main] INFO DocWordWriter - ... 809 ms total for insertTable() +2024-09-08 15:10:21,216 [main] WARN AbstractWordWriter - ####### Caught exception - skipping: Invoke of: InsertCaption +Source: Microsoft Word +Description: Command failed + +2024-09-08 15:10:21,223 [main] INFO Util - time=[0:00:00.929] replaced [36247 - 37219] CLASS Domain, UnitSymbol, figures (10 before ), tables (9 before 1 mine)... +2024-09-08 15:10:21,223 [main] INFO Util - +2024-09-08 15:10:21,227 [main] INFO AbstractWordWriter - replacing [37220 - 37265] CLASS Core, InexistingClassName, figures (10 before ), tables (10 before )... +2024-09-08 15:10:21,237 [main] INFO Util - time=[0:00:00.013] replaced [37220 - 37278] $ERROR CLASS Core, InexistingClassName not found in model$... +2024-09-08 15:10:21,237 [main] INFO Util - +2024-09-08 15:10:21,241 [main] INFO AbstractWordWriter - replacing [37324 - 37371] CLASS ConstructedDAs, RangeConfig, figures (10 before ), tables (10 before )... +2024-09-08 15:10:21,255 [main] INFO AbstractWordWriter - writing doc for class CLASS ConstructedDAs, RangeConfig ... +2024-09-08 15:10:21,263 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML356' to Word document and to used list. +2024-09-08 15:10:21,350 [main] WARN AbstractWordWriter - ####### Caught exception - skipping: Invoke of: InsertCaption +Source: Microsoft Word +Description: Command failed + +2024-09-08 15:10:21,358 [main] INFO Util - time=[0:00:00.121] replaced [37608 - 37609] CLASS ConstructedDAs, RangeConfig, figures (10 before 1 mine), tables (10 before )... +2024-09-08 15:10:21,358 [main] INFO Util - +2024-09-08 15:10:21,363 [main] INFO AbstractWordWriter - replacing [37610 - 37648] CLASS CDCStatusInfo, HST, figures (11 before ), tables (10 before )... +2024-09-08 15:10:21,377 [main] INFO AbstractWordWriter - writing doc for class CLASS CDCStatusInfo, HST ... +2024-09-08 15:10:21,384 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML245' to Word document and to used list. +2024-09-08 15:10:21,473 [main] WARN AbstractWordWriter - ####### Caught exception - skipping: Invoke of: InsertCaption +Source: Microsoft Word +Description: Command failed + +2024-09-08 15:10:21,480 [main] INFO Util - time=[0:00:00.122] replaced [38316 - 38317] CLASS CDCStatusInfo, HST, figures (11 before 1 mine), tables (10 before )... +2024-09-08 15:10:21,480 [main] INFO Util - +2024-09-08 15:10:21,483 [main] INFO AbstractWordWriter - replacing [38340 - 38391] CLASS Core, ConnectivityNodeContainer, figures (12 before ), tables (10 before )... +2024-09-08 15:10:21,498 [main] INFO AbstractWordWriter - writing doc for class CLASS Core, ConnectivityNodeContainer ... +2024-09-08 15:10:21,507 [main] TRACE AbstractWordWriter - AbstractWordWriter.writeClass(): added bookmark 'UML167' to Word document and to used list. +2024-09-08 15:10:21,581 [main] INFO DocWordWriter - --- insertTable() 5 rows: Attributes of Core::ConnectivityNodeContainer +2024-09-08 15:10:21,607 [main] DEBUG DocWordWriter - ... 26 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 15:10:21,616 [main] DEBUG DocWordWriter - ... 9 ms for createTable() +2024-09-08 15:10:21,730 [main] DEBUG DocWordWriter - ... 114 ms for fillValues() +2024-09-08 15:10:21,745 [main] DEBUG DocWordWriter - ... 14 ms for widths (table) +2024-09-08 15:10:21,809 [main] DEBUG DocWordWriter - ... 64 ms for widths (columns) +2024-09-08 15:10:21,826 [main] DEBUG DocWordWriter - ... 17 ms for shadding/merging/styling (rows) +2024-09-08 15:10:21,844 [main] DEBUG DocWordWriter - ... 18 ms for borders +2024-09-08 15:10:21,844 [main] DEBUG DocWordWriter - ... 114 ms for formatTable() +2024-09-08 15:10:21,852 [main] INFO DocWordWriter - ... 263 ms total for insertTable() +2024-09-08 15:10:21,863 [main] WARN AbstractWordWriter - ####### Caught exception - skipping: Invoke of: InsertCaption +Source: Microsoft Word +Description: Command failed + +2024-09-08 15:10:21,869 [main] INFO Util - time=[0:00:00.389] replaced [38585 - 38935] CLASS Core, ConnectivityNodeContainer, figures (12 before ), tables (10 before 1 mine)... +2024-09-08 15:10:21,870 [main] INFO Util - +2024-09-08 15:10:21,873 [main] INFO AbstractWordWriter - replacing [38936 - 38977] CLASS Core, DumbSubterminal, figures (12 before ), tables (11 before )... +2024-09-08 15:10:21,881 [main] INFO Util - time=[0:00:00.011] replaced [38936 - 38990] $ERROR CLASS Core, DumbSubterminal not found in model$... +2024-09-08 15:10:21,881 [main] INFO Util - +2024-09-08 15:10:21,882 [main] INFO Util - +2024-09-08 15:10:21,882 [main] INFO Util - ------------------------------------------------ +2024-09-08 15:10:21,882 [main] INFO Util - scanning placeholders... +2024-09-08 15:10:21,932 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùYesNoùUML27ùdd' HYPERLINK YesNo, UML27 +2024-09-08 15:10:21,944 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBayùUML170ùdd' HYPERLINK Bay, UML170 +2024-09-08 15:10:21,958 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùStringùUML22ùdd' HYPERLINK String, UML22 +2024-09-08 15:10:21,974 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIdentifiedObjectùUML32ùdd' HYPERLINK IdentifiedObject, UML32 +2024-09-08 15:10:21,987 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùStringùUML22ùdd' HYPERLINK String, UML22 +2024-09-08 15:10:22,000 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùPowerSystemResourceùUML166ùdd' HYPERLINK PowerSystemResource, UML166 +2024-09-08 15:10:22,013 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanùUML15ùdd' HYPERLINK Boolean, UML15 +2024-09-08 15:10:22,027 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùApparentPowerùUML14ùdd' HYPERLINK ApparentPower, UML14 +2024-09-08 15:10:22,039 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBaseVoltageùUML161ùdd' HYPERLINK BaseVoltage, UML161 +2024-09-08 15:10:22,053 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBasePowerùUML162ùdd' HYPERLINK BasePower, UML162 +2024-09-08 15:10:22,067 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanùUML15ùdd' HYPERLINK Boolean, UML15 +2024-09-08 15:10:22,080 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBayùUML170ùdd' HYPERLINK Bay, UML170 +2024-09-08 15:10:22,092 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanùUML15ùdd' HYPERLINK Boolean, UML15 +2024-09-08 15:10:22,105 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBayùUML170ùdd' HYPERLINK Bay, UML170 +2024-09-08 15:10:22,118 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBreakerConfigurationùUML28ùdd' HYPERLINK BreakerConfiguration, UML28 +2024-09-08 15:10:22,130 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBayùUML170ùdd' HYPERLINK Bay, UML170 +2024-09-08 15:10:22,142 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBusbarConfigurationùUML29ùdd' HYPERLINK BusbarConfiguration, UML29 +2024-09-08 15:10:22,155 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBayùUML170ùdd' HYPERLINK Bay, UML170 +2024-09-08 15:10:22,168 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanùUML15ùdd' HYPERLINK Boolean, UML15 +2024-09-08 15:10:22,180 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTerminalùUML159ùdd' HYPERLINK Terminal, UML159 +2024-09-08 15:10:22,192 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùVoltageùUML25ùdd' HYPERLINK Voltage, UML25 +2024-09-08 15:10:22,205 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùVoltageLevelùUML172ùdd' HYPERLINK VoltageLevel, UML172 +2024-09-08 15:10:22,218 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùVoltageùUML25ùdd' HYPERLINK Voltage, UML25 +2024-09-08 15:10:22,231 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùVoltageLevelùUML172ùdd' HYPERLINK VoltageLevel, UML172 +2024-09-08 15:10:22,244 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùStringùUML22ùdd' HYPERLINK String, UML22 +2024-09-08 15:10:22,256 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIdentifiedObjectùUML32ùdd' HYPERLINK IdentifiedObject, UML32 +2024-09-08 15:10:22,269 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùStringùUML22ùdd' HYPERLINK String, UML22 +2024-09-08 15:10:22,281 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIdentifiedObjectùUML32ùdd' HYPERLINK IdentifiedObject, UML32 +2024-09-08 15:10:22,293 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBooleanùUML15ùdd' HYPERLINK Boolean, UML15 +2024-09-08 15:10:22,306 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEquipmentùUML173ùdd' HYPERLINK Equipment, UML173 +2024-09-08 15:10:22,319 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùPerCentùUML20ùdd' HYPERLINK PerCent, UML20 +2024-09-08 15:10:22,333 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùOperatingShareùUML30ùdd' HYPERLINK OperatingShare, UML30 +2024-09-08 15:10:22,348 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùPhaseCodeùUML31ùdd' HYPERLINK PhaseCode, UML31 +2024-09-08 15:10:22,362 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùConductingEquipmentùUML174ùdd' HYPERLINK ConductingEquipment, UML174 +2024-09-08 15:10:22,376 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIntegerùUML18ùdd' HYPERLINK Integer, UML18 +2024-09-08 15:10:22,390 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTerminalùUML159ùdd' HYPERLINK Terminal, UML159 +2024-09-08 15:10:22,404 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùYesNoùUML27ùdd' HYPERLINK YesNo, UML27 +2024-09-08 15:10:22,418 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBayùUML170ùdd' HYPERLINK Bay, UML170 +2024-09-08 15:10:22,433 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùENGùUML246ùdd' HYPERLINK ENG, UML246 +2024-09-08 15:10:22,446 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùENGùUML246ùdd' HYPERLINK ENG, UML246 +2024-09-08 15:10:22,460 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùPhaseAngleReferenceKindùUML119ùdd' HYPERLINK PhaseAngleReferenceKind, UML119 +2024-09-08 15:10:22,473 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùHWYEùUML252ùdd' HYPERLINK HWYE, UML252 +2024-09-08 15:10:22,486 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBOOLEANùUML83ùdd' HYPERLINK BOOLEAN, UML83 +2024-09-08 15:10:22,498 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSubstitutionCDCùUML228ùdd' HYPERLINK SubstitutionCDC, UML228 +2024-09-08 15:10:22,510 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùVISIBLE_STRING255ùUML89ùdd' HYPERLINK VISIBLE_STRING255, UML89 +2024-09-08 15:10:22,524 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBasePrimitiveCDCùUML217ùdd' HYPERLINK BasePrimitiveCDC, UML217 +2024-09-08 15:10:22,537 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBaseComposedCDCùUML250ùdd' HYPERLINK BaseComposedCDC, UML250 +2024-09-08 15:10:22,555 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEnumDAùUML340ùdd' HYPERLINK EnumDA, UML340 +2024-09-08 15:10:22,569 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBsControlKindùUML81ùdd' HYPERLINK BsControlKind, UML81 +2024-09-08 15:10:22,580 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùENCùUML238ùdd' HYPERLINK ENC, UML238 +2024-09-08 15:10:22,593 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBACùUML241ùdd' HYPERLINK BAC, UML241 +2024-09-08 15:10:22,606 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùUNICODE_STRING255ùUML88ùdd' HYPERLINK UNICODE_STRING255, UML88 +2024-09-08 15:10:22,619 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBasePrimitiveCDCùUML217ùdd' HYPERLINK BasePrimitiveCDC, UML217 +2024-09-08 15:10:22,631 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBaseComposedCDCùUML250ùdd' HYPERLINK BaseComposedCDC, UML250 +2024-09-08 15:10:22,643 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùACDùUML244ùdd' HYPERLINK ACD, UML244 +2024-09-08 15:10:22,656 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùINT16UùUML84ùdd' HYPERLINK INT16U, UML84 +2024-09-08 15:10:22,669 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùHarmonicMeasurandCDCùUML251ùdd' HYPERLINK HarmonicMeasurandCDC, UML251 +2024-09-08 15:10:22,683 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùINT32ùUML85ùdd' HYPERLINK INT32, UML85 +2024-09-08 15:10:22,695 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùHSTùUML245ùdd' HYPERLINK HST, UML245 +2024-09-08 15:10:22,708 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCMVùUML236ùdd' HYPERLINK CMV, UML236 +2024-09-08 15:10:22,722 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùVISIBLE_STRING255ùUML89ùdd' HYPERLINK VISIBLE_STRING255, UML89 +2024-09-08 15:10:22,735 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùLPLùUML248ùdd' HYPERLINK LPL, UML248 +2024-09-08 15:10:22,748 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùVISIBLE_STRING255ùUML89ùdd' HYPERLINK VISIBLE_STRING255, UML89 +2024-09-08 15:10:22,761 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùLPLùUML248ùdd' HYPERLINK LPL, UML248 +2024-09-08 15:10:22,774 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùAnalogueValueùUML355ùdd' HYPERLINK AnalogueValue, UML355 +2024-09-08 15:10:22,788 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBACùUML241ùdd' HYPERLINK BAC, UML241 +2024-09-08 15:10:22,803 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùINT16UùUML84ùdd' HYPERLINK INT16U, UML84 +2024-09-08 15:10:22,817 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùHSTùUML245ùdd' HYPERLINK HST, UML245 +2024-09-08 15:10:22,830 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBOOLEANùUML83ùdd' HYPERLINK BOOLEAN, UML83 +2024-09-08 15:10:22,844 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùControllableCDCùUML237ùdd' HYPERLINK ControllableCDC, UML237 +2024-09-08 15:10:22,858 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBOOLEANùUML83ùdd' HYPERLINK BOOLEAN, UML83 +2024-09-08 15:10:22,873 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùACDùUML244ùdd' HYPERLINK ACD, UML244 +2024-09-08 15:10:22,887 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCMVùUML236ùdd' HYPERLINK CMV, UML236 +2024-09-08 15:10:22,899 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùHWYEùUML252ùdd' HYPERLINK HWYE, UML252 +2024-09-08 15:10:22,913 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBOOLEANùUML83ùdd' HYPERLINK BOOLEAN, UML83 +2024-09-08 15:10:22,926 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùACDùUML244ùdd' HYPERLINK ACD, UML244 +2024-09-08 15:10:22,939 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùQualityùUML339ùdd' HYPERLINK Quality, UML339 +2024-09-08 15:10:22,952 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDPSùUML229ùdd' HYPERLINK DPS, UML229 +2024-09-08 15:10:22,966 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùENSùUML230ùdd' HYPERLINK ENS, UML230 +2024-09-08 15:10:22,978 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEXYùUML242ùdd' HYPERLINK EXY, UML242 +2024-09-08 15:10:22,991 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùRangeConfigùUML356ùdd' HYPERLINK RangeConfig, UML356 +2024-09-08 15:10:23,004 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCMVùUML236ùdd' HYPERLINK CMV, UML236 +2024-09-08 15:10:23,017 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùRangeConfigùUML356ùdd' HYPERLINK RangeConfig, UML356 +2024-09-08 15:10:23,029 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCMVùUML236ùdd' HYPERLINK CMV, UML236 +2024-09-08 15:10:23,042 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùENGùUML246ùdd' HYPERLINK ENG, UML246 +2024-09-08 15:10:23,057 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùINT32UùUML86ùdd' HYPERLINK INT32U, UML86 +2024-09-08 15:10:23,070 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùHarmonicMeasurandCDCùUML251ùdd' HYPERLINK HarmonicMeasurandCDC, UML251 +2024-09-08 15:10:23,087 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDpStatusKindùUML82ùdd' HYPERLINK DpStatusKind, UML82 +2024-09-08 15:10:23,100 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEnumDAùUML340ùdd' HYPERLINK EnumDA, UML340 +2024-09-08 15:10:23,112 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEnumDAùUML340ùdd' HYPERLINK EnumDA, UML340 +2024-09-08 15:10:23,125 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEnumDAùUML340ùdd' HYPERLINK EnumDA, UML340 +2024-09-08 15:10:23,137 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDPSùUML229ùdd' HYPERLINK DPS, UML229 +2024-09-08 15:10:23,150 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùENSùUML230ùdd' HYPERLINK ENS, UML230 +2024-09-08 15:10:23,162 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùENCùUML238ùdd' HYPERLINK ENC, UML238 +2024-09-08 15:10:23,186 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEXYùUML242ùdd' HYPERLINK EXY, UML242 +2024-09-08 15:10:23,199 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCMVùUML236ùdd' HYPERLINK CMV, UML236 +2024-09-08 15:10:23,213 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBOOLEANùUML83ùdd' HYPERLINK BOOLEAN, UML83 +2024-09-08 15:10:23,227 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSubstitutionCDCùUML228ùdd' HYPERLINK SubstitutionCDC, UML228 +2024-09-08 15:10:23,239 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùQualityùUML339ùdd' HYPERLINK Quality, UML339 +2024-09-08 15:10:23,254 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSubstitutionCDCùUML228ùdd' HYPERLINK SubstitutionCDC, UML228 +2024-09-08 15:10:23,267 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDpStatusKindùUML82ùdd' HYPERLINK DpStatusKind, UML82 +2024-09-08 15:10:23,279 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEnumDAùUML340ùdd' HYPERLINK EnumDA, UML340 +2024-09-08 15:10:23,291 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEnumDAùUML340ùdd' HYPERLINK EnumDA, UML340 +2024-09-08 15:10:23,304 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDPSùUML229ùdd' HYPERLINK DPS, UML229 +2024-09-08 15:10:23,316 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùENSùUML230ùdd' HYPERLINK ENS, UML230 +2024-09-08 15:10:23,328 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùENCùUML238ùdd' HYPERLINK ENC, UML238 +2024-09-08 15:10:23,341 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBACùUML241ùdd' HYPERLINK BAC, UML241 +2024-09-08 15:10:23,355 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimeStampùUML93ùdd' HYPERLINK TimeStamp, UML93 +2024-09-08 15:10:23,368 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDPSùUML229ùdd' HYPERLINK DPS, UML229 +2024-09-08 15:10:23,380 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùENSùUML230ùdd' HYPERLINK ENS, UML230 +2024-09-08 15:10:23,392 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEXYùUML242ùdd' HYPERLINK EXY, UML242 +2024-09-08 15:10:23,405 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùHWYEùUML252ùdd' HYPERLINK HWYE, UML252 +2024-09-08 15:10:23,418 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMXUùUML204ùdd' HYPERLINK MMXU, UML204 +2024-09-08 15:10:23,430 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùZAXNùUML206ùdd' HYPERLINK ZAXN, UML206 +2024-09-08 15:10:23,442 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCMVùUML236ùdd' HYPERLINK CMV, UML236 +2024-09-08 15:10:23,455 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGGIOùUML203ùdd' HYPERLINK GGIO, UML203 +2024-09-08 15:10:23,468 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùENSùUML230ùdd' HYPERLINK ENS, UML230 +2024-09-08 15:10:23,480 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBehaviourModeKindùUML139ùdd' HYPERLINK BehaviourModeKind, UML139 +2024-09-08 15:10:23,492 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùLLN0ùUML199ùdd' HYPERLINK LLN0, UML199 +2024-09-08 15:10:23,505 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSPSTransientùUML143ùdd' HYPERLINK SPSTransient, UML143 +2024-09-08 15:10:23,517 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùStatisticsLNùUML202ùdd' HYPERLINK StatisticsLN, UML202 +2024-09-08 15:10:23,530 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùENGùUML246ùdd' HYPERLINK ENG, UML246 +2024-09-08 15:10:23,544 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCalcMethodKindùUML140ùdd' HYPERLINK CalcMethodKind, UML140 +2024-09-08 15:10:23,556 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùStatisticsLNùUML202ùdd' HYPERLINK StatisticsLN, UML202 +2024-09-08 15:10:23,569 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCMVùUML236ùdd' HYPERLINK CMV, UML236 +2024-09-08 15:10:23,581 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDomainLNùUML201ùdd' HYPERLINK DomainLN, UML201 +2024-09-08 15:10:23,594 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùENSùUML230ùdd' HYPERLINK ENS, UML230 +2024-09-08 15:10:23,606 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEnumDAùUML340ùdd' HYPERLINK EnumDA, UML340 +2024-09-08 15:10:23,618 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùKXYZùUML207ùdd' HYPERLINK KXYZ, UML207 +2024-09-08 15:10:23,632 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGGIOùUML203ùdd' HYPERLINK GGIO, UML203 +2024-09-08 15:10:23,643 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùHSTùUML245ùdd' HYPERLINK HST, UML245 +2024-09-08 15:10:23,656 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMXUùUML204ùdd' HYPERLINK MMXU, UML204 +2024-09-08 15:10:23,668 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùACDùUML244ùdd' HYPERLINK ACD, UML244 +2024-09-08 15:10:23,680 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùRDIRùUML214ùdd' HYPERLINK RDIR, UML214 +2024-09-08 15:10:23,693 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùENSùUML230ùdd' HYPERLINK ENS, UML230 +2024-09-08 15:10:23,707 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùHealthKindùUML138ùdd' HYPERLINK HealthKind, UML138 +2024-09-08 15:10:23,720 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùGGIOùUML203ùdd' HYPERLINK GGIO, UML203 +2024-09-08 15:10:23,734 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùENSùUML230ùdd' HYPERLINK ENS, UML230 +2024-09-08 15:10:23,748 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùHealthKindùUML138ùdd' HYPERLINK HealthKind, UML138 +2024-09-08 15:10:23,760 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEquipmentInterfaceLNùUML205ùdd' HYPERLINK EquipmentInterfaceLN, UML205 +2024-09-08 15:10:23,774 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDPSùUML229ùdd' HYPERLINK DPS, UML229 +2024-09-08 15:10:23,787 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCALHùUML208ùdd' HYPERLINK CALH, UML208 +2024-09-08 15:10:23,800 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDPSùUML229ùdd' HYPERLINK DPS, UML229 +2024-09-08 15:10:23,814 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCALHùUML208ùdd' HYPERLINK CALH, UML208 +2024-09-08 15:10:23,827 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùENSùUML230ùdd' HYPERLINK ENS, UML230 +2024-09-08 15:10:23,840 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùHealthKindùUML138ùdd' HYPERLINK HealthKind, UML138 +2024-09-08 15:10:23,854 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùLLN0ùUML199ùdd' HYPERLINK LLN0, UML199 +2024-09-08 15:10:23,869 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDomainLNùUML201ùdd' HYPERLINK DomainLN, UML201 +2024-09-08 15:10:23,884 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùENSùUML230ùdd' HYPERLINK ENS, UML230 +2024-09-08 15:10:23,898 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMaterialKindùUML146ùdd' HYPERLINK MaterialKind, UML146 +2024-09-08 15:10:23,912 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùZAXNùUML206ùdd' HYPERLINK ZAXN, UML206 +2024-09-08 15:10:23,927 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùENCùUML238ùdd' HYPERLINK ENC, UML238 +2024-09-08 15:10:23,940 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMaterialKindùUML146ùdd' HYPERLINK MaterialKind, UML146 +2024-09-08 15:10:23,953 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMaterialTransitionKindùUML147ùdd' HYPERLINK MaterialTransitionKind, UML147 +2024-09-08 15:10:23,965 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùZAXNùUML206ùdd' HYPERLINK ZAXN, UML206 +2024-09-08 15:10:23,977 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùENCùUML238ùdd' HYPERLINK ENC, UML238 +2024-09-08 15:10:23,990 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBehaviourModeKindùUML139ùdd' HYPERLINK BehaviourModeKind, UML139 +2024-09-08 15:10:24,003 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDomainLNùUML201ùdd' HYPERLINK DomainLN, UML201 +2024-09-08 15:10:24,016 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùEXYBehaviourModeùUML243ùdd' HYPERLINK EXYBehaviourMode, UML243 +2024-09-08 15:10:24,028 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCALHùUML208ùdd' HYPERLINK CALH, UML208 +2024-09-08 15:10:24,040 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùLPLùUML248ùdd' HYPERLINK LPL, UML248 +2024-09-08 15:10:24,056 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùLLN0ùUML199ùdd' HYPERLINK LLN0, UML199 +2024-09-08 15:10:24,070 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDomainLNùUML201ùdd' HYPERLINK DomainLN, UML201 +2024-09-08 15:10:24,088 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùACTTransientùUML142ùdd' HYPERLINK ACTTransient, UML142 +2024-09-08 15:10:24,101 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùPDIFùUML210ùdd' HYPERLINK PDIF, UML210 +2024-09-08 15:10:24,115 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùPDISùUML211ùdd' HYPERLINK PDIS, UML211 +2024-09-08 15:10:24,127 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùProtectionLNùUML209ùdd' HYPERLINK ProtectionLN, UML209 +2024-09-08 15:10:24,139 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùENSùUML230ùdd' HYPERLINK ENS, UML230 +2024-09-08 15:10:24,152 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùOtherùUML353ùdd' HYPERLINK Other, UML353 +2024-09-08 15:10:24,164 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùZAXNùUML206ùdd' HYPERLINK ZAXN, UML206 +2024-09-08 15:10:24,177 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùENSùUML230ùdd' HYPERLINK ENS, UML230 +2024-09-08 15:10:24,190 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùHealthKindùUML138ùdd' HYPERLINK HealthKind, UML138 +2024-09-08 15:10:24,202 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùLPHDùUML197ùdd' HYPERLINK LPHD, UML197 +2024-09-08 15:10:24,215 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSPCTransientùUML381ùdd' HYPERLINK SPCTransient, UML381 +2024-09-08 15:10:24,227 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùLPHDùUML197ùdd' HYPERLINK LPHD, UML197 +2024-09-08 15:10:24,240 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSPSTransientùUML143ùdd' HYPERLINK SPSTransient, UML143 +2024-09-08 15:10:24,257 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùLPHDùUML197ùdd' HYPERLINK LPHD, UML197 +2024-09-08 15:10:24,270 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùACDùUML244ùdd' HYPERLINK ACD, UML244 +2024-09-08 15:10:24,287 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùPDIFùUML210ùdd' HYPERLINK PDIF, UML210 +2024-09-08 15:10:24,303 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùPDISùUML211ùdd' HYPERLINK PDIS, UML211 +2024-09-08 15:10:24,319 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCMVùUML236ùdd' HYPERLINK CMV, UML236 +2024-09-08 15:10:24,333 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCMVùUML236ùdd' HYPERLINK CMV, UML236 +2024-09-08 15:10:24,348 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSPSTransientùUML143ùdd' HYPERLINK SPSTransient, UML143 +2024-09-08 15:10:24,361 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMMXUùUML204ùdd' HYPERLINK MMXU, UML204 +2024-09-08 15:10:24,374 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùKXYZùUML207ùdd' HYPERLINK KXYZ, UML207 +2024-09-08 15:10:24,387 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùRDIRùUML214ùdd' HYPERLINK RDIR, UML214 +2024-09-08 15:10:24,401 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCMVùUML236ùdd' HYPERLINK CMV, UML236 +2024-09-08 15:10:24,419 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùZAXNùUML206ùdd' HYPERLINK ZAXN, UML206 +2024-09-08 15:10:24,435 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSubstitutionCDCùUML228ùdd' HYPERLINK SubstitutionCDC, UML228 +2024-09-08 15:10:24,448 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùENSùUML230ùdd' HYPERLINK ENS, UML230 +2024-09-08 15:10:24,462 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùKXYZùUML207ùdd' HYPERLINK KXYZ, UML207 +2024-09-08 15:10:24,478 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCMVùUML236ùdd' HYPERLINK CMV, UML236 +2024-09-08 15:10:24,494 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùKXYZùUML207ùdd' HYPERLINK KXYZ, UML207 +2024-09-08 15:10:24,509 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIdentifiedObjectùUML32ùdd' HYPERLINK IdentifiedObject, UML32 +2024-09-08 15:10:24,525 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùApparentPowerùUML14ùdd' HYPERLINK ApparentPower, UML14 +2024-09-08 15:10:24,541 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùStringùUML22ùdd' HYPERLINK String, UML22 +2024-09-08 15:10:24,567 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIdentifiedObjectùUML32ùdd' HYPERLINK IdentifiedObject, UML32 +2024-09-08 15:10:24,606 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùStringùUML22ùdd' HYPERLINK String, UML22 +2024-09-08 15:10:24,631 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIdentifiedObjectùUML32ùdd' HYPERLINK IdentifiedObject, UML32 +2024-09-08 15:10:24,654 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùStringùUML22ùdd' HYPERLINK String, UML22 +2024-09-08 15:10:24,672 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIdentifiedObjectùUML32ùdd' HYPERLINK IdentifiedObject, UML32 +2024-09-08 15:10:24,716 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSubstitutionCDCùUML228ùdd' HYPERLINK SubstitutionCDC, UML228 +2024-09-08 15:10:24,746 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBasePrimitiveCDCùUML217ùdd' HYPERLINK BasePrimitiveCDC, UML217 +2024-09-08 15:10:24,763 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùPrimitiveCDCùUML216ùdd' HYPERLINK PrimitiveCDC, UML216 +2024-09-08 15:10:24,782 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCDCùUML215ùdd' HYPERLINK CDC, UML215 +2024-09-08 15:10:24,802 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùNamedIEC61850ObjectùUML193ùdd' HYPERLINK NamedIEC61850Object, UML193 +2024-09-08 15:10:24,844 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùHierarchyIEC61850ObjectùUML192ùdd' HYPERLINK HierarchyIEC61850Object, UML192 +2024-09-08 15:10:24,893 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC61850ObjectùUML110ùdd' HYPERLINK IEC61850Object, UML110 +2024-09-08 15:10:24,953 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDpStatusKindùUML82ùdd' HYPERLINK DpStatusKind, UML82 +2024-09-08 15:10:25,001 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùQualityùUML339ùdd' HYPERLINK Quality, UML339 +2024-09-08 15:10:25,189 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùTimeStampùUML93ùdd' HYPERLINK TimeStamp, UML93 +2024-09-08 15:10:25,211 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDpStatusKindùUML82ùdd' HYPERLINK DpStatusKind, UML82 +2024-09-08 15:10:25,230 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMFsubstùUML558ùdd' HYPERLINK MFsubst, UML558 +2024-09-08 15:10:25,249 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBOOLEANùUML83ùdd' HYPERLINK BOOLEAN, UML83 +2024-09-08 15:10:25,265 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSubstitutionCDCùUML228ùdd' HYPERLINK SubstitutionCDC, UML228 +2024-09-08 15:10:25,280 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMFsubstùUML558ùdd' HYPERLINK MFsubst, UML558 +2024-09-08 15:10:25,293 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùQualityùUML339ùdd' HYPERLINK Quality, UML339 +2024-09-08 15:10:25,306 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSubstitutionCDCùUML228ùdd' HYPERLINK SubstitutionCDC, UML228 +2024-09-08 15:10:25,318 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMFsubstùUML558ùdd' HYPERLINK MFsubst, UML558 +2024-09-08 15:10:25,332 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBOOLEANùUML83ùdd' HYPERLINK BOOLEAN, UML83 +2024-09-08 15:10:25,349 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùSubstitutionCDCùUML228ùdd' HYPERLINK SubstitutionCDC, UML228 +2024-09-08 15:10:25,366 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùUNICODE_STRING255ùUML88ùdd' HYPERLINK UNICODE_STRING255, UML88 +2024-09-08 15:10:25,383 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBasePrimitiveCDCùUML217ùdd' HYPERLINK BasePrimitiveCDC, UML217 +2024-09-08 15:10:25,400 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùVISIBLE_STRING255ùUML89ùdd' HYPERLINK VISIBLE_STRING255, UML89 +2024-09-08 15:10:25,417 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBasePrimitiveCDCùUML217ùdd' HYPERLINK BasePrimitiveCDC, UML217 +2024-09-08 15:10:25,433 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùMOcdcNsùUML568ùdd' HYPERLINK MOcdcNs, UML568 +2024-09-08 15:10:25,449 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùComposedDAùUML354ùdd' HYPERLINK ComposedDA, UML354 +2024-09-08 15:10:25,467 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùDAùUML325ùdd' HYPERLINK DA, UML325 +2024-09-08 15:10:25,483 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùNamedIEC61850ObjectùUML193ùdd' HYPERLINK NamedIEC61850Object, UML193 +2024-09-08 15:10:25,498 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùHierarchyIEC61850ObjectùUML192ùdd' HYPERLINK HierarchyIEC61850Object, UML192 +2024-09-08 15:10:25,514 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC61850ObjectùUML110ùdd' HYPERLINK IEC61850Object, UML110 +2024-09-08 15:10:25,530 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùBasePrimitiveCDCùUML217ùdd' HYPERLINK BasePrimitiveCDC, UML217 +2024-09-08 15:10:25,542 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùPrimitiveCDCùUML216ùdd' HYPERLINK PrimitiveCDC, UML216 +2024-09-08 15:10:25,554 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùCDCùUML215ùdd' HYPERLINK CDC, UML215 +2024-09-08 15:10:25,568 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùNamedIEC61850ObjectùUML193ùdd' HYPERLINK NamedIEC61850Object, UML193 +2024-09-08 15:10:25,581 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùHierarchyIEC61850ObjectùUML192ùdd' HYPERLINK HierarchyIEC61850Object, UML192 +2024-09-08 15:10:25,593 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIEC61850ObjectùUML110ùdd' HYPERLINK IEC61850Object, UML110 +2024-09-08 15:10:25,605 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùPowerSystemResourceùUML166ùdd' HYPERLINK PowerSystemResource, UML166 +2024-09-08 15:10:25,617 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIdentifiedObjectùUML32ùdd' HYPERLINK IdentifiedObject, UML32 +2024-09-08 15:10:25,631 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùStringùUML22ùdd' HYPERLINK String, UML22 +2024-09-08 15:10:25,644 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùPowerSystemResourceùUML166ùdd' HYPERLINK PowerSystemResource, UML166 +2024-09-08 15:10:25,656 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùStringùUML22ùdd' HYPERLINK String, UML22 +2024-09-08 15:10:25,669 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIdentifiedObjectùUML32ùdd' HYPERLINK IdentifiedObject, UML32 +2024-09-08 15:10:25,682 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùStringùUML22ùdd' HYPERLINK String, UML22 +2024-09-08 15:10:25,695 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIdentifiedObjectùUML32ùdd' HYPERLINK IdentifiedObject, UML32 +2024-09-08 15:10:25,706 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùStringùUML22ùdd' HYPERLINK String, UML22 +2024-09-08 15:10:25,720 [main] TRACE AbstractWordWriter - saved hyperlink placeholder 'aaùIdentifiedObjectùUML32ùdd' HYPERLINK IdentifiedObject, UML32 +2024-09-08 15:10:25,724 [main] INFO AbstractWordWriter - 247 hyperlink placeholders found. +2024-09-08 15:10:25,724 [main] INFO Util - time=[0:00:03.842] scanned hyperlink placeholders. +2024-09-08 15:10:25,724 [main] INFO Util - +2024-09-08 15:10:25,725 [main] INFO Util - +2024-09-08 15:10:25,725 [main] INFO Util - ------------------------------------------------ +2024-09-08 15:10:25,725 [main] INFO Util - inserting 247 hyperlinks (or text only) into hyperlink placeholders +2024-09-08 15:10:25,732 [main] TRACE AbstractWordWriter - replacing hyperlink [7240 - 7257] HYPERLINK YesNo, UML27... +2024-09-08 15:10:25,737 [main] TRACE AbstractWordWriter - No hyperlink added: 'YesNo' for bookmark 'UML27' not in this document. +2024-09-08 15:10:25,742 [main] TRACE AbstractWordWriter - replacing hyperlink [7247 - 7263] HYPERLINK Bay, UML170... +2024-09-08 15:10:25,747 [main] TRACE AbstractWordWriter - No hyperlink added: 'Bay' for bookmark 'UML170' not in this document. +2024-09-08 15:10:25,750 [main] TRACE AbstractWordWriter - replacing hyperlink [7318 - 7336] HYPERLINK String, UML22... +2024-09-08 15:10:25,755 [main] TRACE AbstractWordWriter - No hyperlink added: 'String' for bookmark 'UML22' not in this document. +2024-09-08 15:10:25,758 [main] TRACE AbstractWordWriter - replacing hyperlink [7326 - 7354] HYPERLINK IdentifiedObject, UML32... +2024-09-08 15:10:25,763 [main] TRACE AbstractWordWriter - No hyperlink added: 'IdentifiedObject' for bookmark 'UML32' not in this document. +2024-09-08 15:10:25,766 [main] TRACE AbstractWordWriter - replacing hyperlink [7731 - 7749] HYPERLINK String, UML22... +2024-09-08 15:10:25,771 [main] TRACE AbstractWordWriter - No hyperlink added: 'String' for bookmark 'UML22' not in this document. +2024-09-08 15:10:25,774 [main] TRACE AbstractWordWriter - replacing hyperlink [7739 - 7771] HYPERLINK PowerSystemResource, UML166... +2024-09-08 15:10:25,779 [main] TRACE AbstractWordWriter - No hyperlink added: 'PowerSystemResource' for bookmark 'UML166' not in this document. +2024-09-08 15:10:25,782 [main] TRACE AbstractWordWriter - replacing hyperlink [7868 - 7887] HYPERLINK Boolean, UML15... +2024-09-08 15:10:25,787 [main] TRACE AbstractWordWriter - No hyperlink added: 'Boolean' for bookmark 'UML15' not in this document. +2024-09-08 15:10:25,790 [main] TRACE AbstractWordWriter - replacing hyperlink [7877 - 7902] HYPERLINK ApparentPower, UML14... +2024-09-08 15:10:25,795 [main] TRACE AbstractWordWriter - No hyperlink added: 'ApparentPower' for bookmark 'UML14' not in this document. +2024-09-08 15:10:25,798 [main] TRACE AbstractWordWriter - replacing hyperlink [7892 - 7916] HYPERLINK BaseVoltage, UML161... +2024-09-08 15:10:25,803 [main] TRACE AbstractWordWriter - No hyperlink added: 'BaseVoltage' for bookmark 'UML161' not in this document. +2024-09-08 15:10:25,806 [main] TRACE AbstractWordWriter - replacing hyperlink [8046 - 8068] HYPERLINK BasePower, UML162... +2024-09-08 15:10:25,828 [main] TRACE AbstractWordWriter - replacing hyperlink [8142 - 8161] HYPERLINK Boolean, UML15... +2024-09-08 15:10:25,833 [main] TRACE AbstractWordWriter - No hyperlink added: 'Boolean' for bookmark 'UML15' not in this document. +2024-09-08 15:10:25,840 [main] TRACE AbstractWordWriter - replacing hyperlink [8151 - 8167] HYPERLINK Bay, UML170... +2024-09-08 15:10:25,845 [main] TRACE AbstractWordWriter - No hyperlink added: 'Bay' for bookmark 'UML170' not in this document. +2024-09-08 15:10:25,848 [main] TRACE AbstractWordWriter - replacing hyperlink [8229 - 8248] HYPERLINK Boolean, UML15... +2024-09-08 15:10:25,853 [main] TRACE AbstractWordWriter - No hyperlink added: 'Boolean' for bookmark 'UML15' not in this document. +2024-09-08 15:10:25,856 [main] TRACE AbstractWordWriter - replacing hyperlink [8238 - 8254] HYPERLINK Bay, UML170... +2024-09-08 15:10:25,862 [main] TRACE AbstractWordWriter - No hyperlink added: 'Bay' for bookmark 'UML170' not in this document. +2024-09-08 15:10:25,866 [main] TRACE AbstractWordWriter - replacing hyperlink [8335 - 8367] HYPERLINK BreakerConfiguration, UML28... +2024-09-08 15:10:25,871 [main] TRACE AbstractWordWriter - No hyperlink added: 'BreakerConfiguration' for bookmark 'UML28' not in this document. +2024-09-08 15:10:25,874 [main] TRACE AbstractWordWriter - replacing hyperlink [8357 - 8373] HYPERLINK Bay, UML170... +2024-09-08 15:10:25,878 [main] TRACE AbstractWordWriter - No hyperlink added: 'Bay' for bookmark 'UML170' not in this document. +2024-09-08 15:10:25,881 [main] TRACE AbstractWordWriter - replacing hyperlink [8406 - 8437] HYPERLINK BusbarConfiguration, UML29... +2024-09-08 15:10:25,886 [main] TRACE AbstractWordWriter - No hyperlink added: 'BusbarConfiguration' for bookmark 'UML29' not in this document. +2024-09-08 15:10:25,889 [main] TRACE AbstractWordWriter - replacing hyperlink [8427 - 8443] HYPERLINK Bay, UML170... +2024-09-08 15:10:25,894 [main] TRACE AbstractWordWriter - No hyperlink added: 'Bay' for bookmark 'UML170' not in this document. +2024-09-08 15:10:25,897 [main] TRACE AbstractWordWriter - replacing hyperlink [8466 - 8485] HYPERLINK Boolean, UML15... +2024-09-08 15:10:25,902 [main] TRACE AbstractWordWriter - No hyperlink added: 'Boolean' for bookmark 'UML15' not in this document. +2024-09-08 15:10:25,905 [main] TRACE AbstractWordWriter - replacing hyperlink [8475 - 8496] HYPERLINK Terminal, UML159... +2024-09-08 15:10:25,910 [main] TRACE AbstractWordWriter - No hyperlink added: 'Terminal' for bookmark 'UML159' not in this document. +2024-09-08 15:10:25,913 [main] TRACE AbstractWordWriter - replacing hyperlink [9002 - 9021] HYPERLINK Voltage, UML25... +2024-09-08 15:10:25,918 [main] TRACE AbstractWordWriter - No hyperlink added: 'Voltage' for bookmark 'UML25' not in this document. +2024-09-08 15:10:25,921 [main] TRACE AbstractWordWriter - replacing hyperlink [9011 - 9036] HYPERLINK VoltageLevel, UML172... +2024-09-08 15:10:25,927 [main] TRACE AbstractWordWriter - No hyperlink added: 'VoltageLevel' for bookmark 'UML172' not in this document. +2024-09-08 15:10:25,930 [main] TRACE AbstractWordWriter - replacing hyperlink [9075 - 9094] HYPERLINK Voltage, UML25... +2024-09-08 15:10:25,935 [main] TRACE AbstractWordWriter - No hyperlink added: 'Voltage' for bookmark 'UML25' not in this document. +2024-09-08 15:10:25,938 [main] TRACE AbstractWordWriter - replacing hyperlink [9084 - 9109] HYPERLINK VoltageLevel, UML172... +2024-09-08 15:10:25,943 [main] TRACE AbstractWordWriter - No hyperlink added: 'VoltageLevel' for bookmark 'UML172' not in this document. +2024-09-08 15:10:25,946 [main] TRACE AbstractWordWriter - replacing hyperlink [9136 - 9154] HYPERLINK String, UML22... +2024-09-08 15:10:25,951 [main] TRACE AbstractWordWriter - No hyperlink added: 'String' for bookmark 'UML22' not in this document. +2024-09-08 15:10:25,954 [main] TRACE AbstractWordWriter - replacing hyperlink [9144 - 9172] HYPERLINK IdentifiedObject, UML32... +2024-09-08 15:10:25,958 [main] TRACE AbstractWordWriter - No hyperlink added: 'IdentifiedObject' for bookmark 'UML32' not in this document. +2024-09-08 15:10:25,962 [main] TRACE AbstractWordWriter - replacing hyperlink [9441 - 9459] HYPERLINK String, UML22... +2024-09-08 15:10:25,967 [main] TRACE AbstractWordWriter - No hyperlink added: 'String' for bookmark 'UML22' not in this document. +2024-09-08 15:10:25,970 [main] TRACE AbstractWordWriter - replacing hyperlink [9449 - 9477] HYPERLINK IdentifiedObject, UML32... +2024-09-08 15:10:25,975 [main] TRACE AbstractWordWriter - No hyperlink added: 'IdentifiedObject' for bookmark 'UML32' not in this document. +2024-09-08 15:10:25,978 [main] TRACE AbstractWordWriter - replacing hyperlink [9570 - 9589] HYPERLINK Boolean, UML15... +2024-09-08 15:10:25,983 [main] TRACE AbstractWordWriter - No hyperlink added: 'Boolean' for bookmark 'UML15' not in this document. +2024-09-08 15:10:25,986 [main] TRACE AbstractWordWriter - replacing hyperlink [9579 - 9601] HYPERLINK Equipment, UML173... +2024-09-08 15:10:25,991 [main] TRACE AbstractWordWriter - No hyperlink added: 'Equipment' for bookmark 'UML173' not in this document. +2024-09-08 15:10:25,994 [main] TRACE AbstractWordWriter - replacing hyperlink [9662 - 9681] HYPERLINK PerCent, UML20... +2024-09-08 15:10:25,999 [main] TRACE AbstractWordWriter - No hyperlink added: 'PerCent' for bookmark 'UML20' not in this document. +2024-09-08 15:10:26,002 [main] TRACE AbstractWordWriter - replacing hyperlink [9671 - 9697] HYPERLINK OperatingShare, UML30... +2024-09-08 15:10:26,007 [main] TRACE AbstractWordWriter - No hyperlink added: 'OperatingShare' for bookmark 'UML30' not in this document. +2024-09-08 15:10:26,010 [main] TRACE AbstractWordWriter - replacing hyperlink [9908 - 9929] HYPERLINK PhaseCode, UML31... +2024-09-08 15:10:26,014 [main] TRACE AbstractWordWriter - No hyperlink added: 'PhaseCode' for bookmark 'UML31' not in this document. +2024-09-08 15:10:26,018 [main] TRACE AbstractWordWriter - replacing hyperlink [9919 - 9951] HYPERLINK ConductingEquipment, UML174... +2024-09-08 15:10:26,022 [main] TRACE AbstractWordWriter - No hyperlink added: 'ConductingEquipment' for bookmark 'UML174' not in this document. +2024-09-08 15:10:26,025 [main] TRACE AbstractWordWriter - replacing hyperlink [10055 - 10074] HYPERLINK Integer, UML18... +2024-09-08 15:10:26,030 [main] TRACE AbstractWordWriter - No hyperlink added: 'Integer' for bookmark 'UML18' not in this document. +2024-09-08 15:10:26,033 [main] TRACE AbstractWordWriter - replacing hyperlink [10064 - 10085] HYPERLINK Terminal, UML159... +2024-09-08 15:10:26,038 [main] TRACE AbstractWordWriter - No hyperlink added: 'Terminal' for bookmark 'UML159' not in this document. +2024-09-08 15:10:26,041 [main] TRACE AbstractWordWriter - replacing hyperlink [10447 - 10464] HYPERLINK YesNo, UML27... +2024-09-08 15:10:26,047 [main] TRACE AbstractWordWriter - No hyperlink added: 'YesNo' for bookmark 'UML27' not in this document. +2024-09-08 15:10:26,051 [main] TRACE AbstractWordWriter - replacing hyperlink [10454 - 10470] HYPERLINK Bay, UML170... +2024-09-08 15:10:26,057 [main] TRACE AbstractWordWriter - No hyperlink added: 'Bay' for bookmark 'UML170' not in this document. +2024-09-08 15:10:26,060 [main] TRACE AbstractWordWriter - replacing hyperlink [17356 - 17372] HYPERLINK ENG, UML246... +2024-09-08 15:10:26,065 [main] TRACE AbstractWordWriter - No hyperlink added: 'ENG' for bookmark 'UML246' not in this document. +2024-09-08 15:10:26,068 [main] TRACE AbstractWordWriter - replacing hyperlink [17398 - 17414] HYPERLINK ENG, UML246... +2024-09-08 15:10:26,073 [main] TRACE AbstractWordWriter - No hyperlink added: 'ENG' for bookmark 'UML246' not in this document. +2024-09-08 15:10:26,076 [main] TRACE AbstractWordWriter - replacing hyperlink [17425 - 17461] HYPERLINK PhaseAngleReferenceKind, UML119... +2024-09-08 15:10:26,081 [main] TRACE AbstractWordWriter - No hyperlink added: 'PhaseAngleReferenceKind' for bookmark 'UML119' not in this document. +2024-09-08 15:10:26,085 [main] TRACE AbstractWordWriter - replacing hyperlink [17450 - 17467] HYPERLINK HWYE, UML252... +2024-09-08 15:10:26,090 [main] TRACE AbstractWordWriter - No hyperlink added: 'HWYE' for bookmark 'UML252' not in this document. +2024-09-08 15:10:26,093 [main] TRACE AbstractWordWriter - replacing hyperlink [17759 - 17778] HYPERLINK BOOLEAN, UML83... +2024-09-08 15:10:26,098 [main] TRACE AbstractWordWriter - No hyperlink added: 'BOOLEAN' for bookmark 'UML83' not in this document. +2024-09-08 15:10:26,101 [main] TRACE AbstractWordWriter - replacing hyperlink [17768 - 17796] HYPERLINK SubstitutionCDC, UML228... +2024-09-08 15:10:26,106 [main] TRACE AbstractWordWriter - No hyperlink added: 'SubstitutionCDC' for bookmark 'UML228' not in this document. +2024-09-08 15:10:26,109 [main] TRACE AbstractWordWriter - replacing hyperlink [17871 - 17900] HYPERLINK VISIBLE_STRING255, UML89... +2024-09-08 15:10:26,114 [main] TRACE AbstractWordWriter - No hyperlink added: 'VISIBLE_STRING255' for bookmark 'UML89' not in this document. +2024-09-08 15:10:26,117 [main] TRACE AbstractWordWriter - replacing hyperlink [17890 - 17919] HYPERLINK BasePrimitiveCDC, UML217... +2024-09-08 15:10:26,122 [main] TRACE AbstractWordWriter - No hyperlink added: 'BasePrimitiveCDC' for bookmark 'UML217' not in this document. +2024-09-08 15:10:26,125 [main] TRACE AbstractWordWriter - replacing hyperlink [18040 - 18068] HYPERLINK BaseComposedCDC, UML250... +2024-09-08 15:10:26,129 [main] TRACE AbstractWordWriter - No hyperlink added: 'BaseComposedCDC' for bookmark 'UML250' not in this document. +2024-09-08 15:10:26,132 [main] TRACE AbstractWordWriter - replacing hyperlink [18095 - 18114] HYPERLINK EnumDA, UML340... +2024-09-08 15:10:26,137 [main] TRACE AbstractWordWriter - No hyperlink added: 'EnumDA' for bookmark 'UML340' not in this document. +2024-09-08 15:10:26,140 [main] TRACE AbstractWordWriter - replacing hyperlink [18103 - 18128] HYPERLINK BsControlKind, UML81... +2024-09-08 15:10:26,145 [main] TRACE AbstractWordWriter - No hyperlink added: 'BsControlKind' for bookmark 'UML81' not in this document. +2024-09-08 15:10:26,148 [main] TRACE AbstractWordWriter - replacing hyperlink [18118 - 18134] HYPERLINK ENC, UML238... +2024-09-08 15:10:26,153 [main] TRACE AbstractWordWriter - No hyperlink added: 'ENC' for bookmark 'UML238' not in this document. +2024-09-08 15:10:26,155 [main] TRACE AbstractWordWriter - replacing hyperlink [18218 - 18234] HYPERLINK BAC, UML241... +2024-09-08 15:10:26,160 [main] TRACE AbstractWordWriter - No hyperlink added: 'BAC' for bookmark 'UML241' not in this document. +2024-09-08 15:10:26,165 [main] TRACE AbstractWordWriter - replacing hyperlink [18406 - 18435] HYPERLINK UNICODE_STRING255, UML88... +2024-09-08 15:10:26,169 [main] TRACE AbstractWordWriter - No hyperlink added: 'UNICODE_STRING255' for bookmark 'UML88' not in this document. +2024-09-08 15:10:26,172 [main] TRACE AbstractWordWriter - replacing hyperlink [18425 - 18454] HYPERLINK BasePrimitiveCDC, UML217... +2024-09-08 15:10:26,177 [main] TRACE AbstractWordWriter - No hyperlink added: 'BasePrimitiveCDC' for bookmark 'UML217' not in this document. +2024-09-08 15:10:26,180 [main] TRACE AbstractWordWriter - replacing hyperlink [18562 - 18590] HYPERLINK BaseComposedCDC, UML250... +2024-09-08 15:10:26,185 [main] TRACE AbstractWordWriter - No hyperlink added: 'BaseComposedCDC' for bookmark 'UML250' not in this document. +2024-09-08 15:10:26,188 [main] TRACE AbstractWordWriter - replacing hyperlink [18632 - 18648] HYPERLINK ACD, UML244... +2024-09-08 15:10:26,193 [main] TRACE AbstractWordWriter - No hyperlink added: 'ACD' for bookmark 'UML244' not in this document. +2024-09-08 15:10:26,196 [main] TRACE AbstractWordWriter - replacing hyperlink [18791 - 18809] HYPERLINK INT16U, UML84... +2024-09-08 15:10:26,201 [main] TRACE AbstractWordWriter - No hyperlink added: 'INT16U' for bookmark 'UML84' not in this document. +2024-09-08 15:10:26,205 [main] TRACE AbstractWordWriter - replacing hyperlink [18799 - 18832] HYPERLINK HarmonicMeasurandCDC, UML251... +2024-09-08 15:10:26,210 [main] TRACE AbstractWordWriter - No hyperlink added: 'HarmonicMeasurandCDC' for bookmark 'UML251' not in this document. +2024-09-08 15:10:26,214 [main] TRACE AbstractWordWriter - replacing hyperlink [18899 - 18916] HYPERLINK INT32, UML85... +2024-09-08 15:10:26,219 [main] TRACE AbstractWordWriter - No hyperlink added: 'INT32' for bookmark 'UML85' not in this document. +2024-09-08 15:10:26,222 [main] TRACE AbstractWordWriter - replacing hyperlink [18906 - 18922] HYPERLINK HST, UML245... +2024-09-08 15:10:26,246 [main] TRACE AbstractWordWriter - replacing hyperlink [19017 - 19033] HYPERLINK CMV, UML236... +2024-09-08 15:10:26,251 [main] TRACE AbstractWordWriter - No hyperlink added: 'CMV' for bookmark 'UML236' not in this document. +2024-09-08 15:10:26,254 [main] TRACE AbstractWordWriter - replacing hyperlink [19092 - 19121] HYPERLINK VISIBLE_STRING255, UML89... +2024-09-08 15:10:26,259 [main] TRACE AbstractWordWriter - No hyperlink added: 'VISIBLE_STRING255' for bookmark 'UML89' not in this document. +2024-09-08 15:10:26,263 [main] TRACE AbstractWordWriter - replacing hyperlink [19111 - 19127] HYPERLINK LPL, UML248... +2024-09-08 15:10:26,267 [main] TRACE AbstractWordWriter - No hyperlink added: 'LPL' for bookmark 'UML248' not in this document. +2024-09-08 15:10:26,270 [main] TRACE AbstractWordWriter - replacing hyperlink [19319 - 19348] HYPERLINK VISIBLE_STRING255, UML89... +2024-09-08 15:10:26,276 [main] TRACE AbstractWordWriter - No hyperlink added: 'VISIBLE_STRING255' for bookmark 'UML89' not in this document. +2024-09-08 15:10:26,279 [main] TRACE AbstractWordWriter - replacing hyperlink [19338 - 19354] HYPERLINK LPL, UML248... +2024-09-08 15:10:26,284 [main] TRACE AbstractWordWriter - No hyperlink added: 'LPL' for bookmark 'UML248' not in this document. +2024-09-08 15:10:26,286 [main] TRACE AbstractWordWriter - replacing hyperlink [19511 - 19537] HYPERLINK AnalogueValue, UML355... +2024-09-08 15:10:26,291 [main] TRACE AbstractWordWriter - No hyperlink added: 'AnalogueValue' for bookmark 'UML355' not in this document. +2024-09-08 15:10:26,294 [main] TRACE AbstractWordWriter - replacing hyperlink [19526 - 19542] HYPERLINK BAC, UML241... +2024-09-08 15:10:26,299 [main] TRACE AbstractWordWriter - No hyperlink added: 'BAC' for bookmark 'UML241' not in this document. +2024-09-08 15:10:26,302 [main] TRACE AbstractWordWriter - replacing hyperlink [19556 - 19574] HYPERLINK INT16U, UML84... +2024-09-08 15:10:26,307 [main] TRACE AbstractWordWriter - No hyperlink added: 'INT16U' for bookmark 'UML84' not in this document. +2024-09-08 15:10:26,310 [main] TRACE AbstractWordWriter - replacing hyperlink [19564 - 19580] HYPERLINK HST, UML245... +2024-09-08 15:10:26,331 [main] TRACE AbstractWordWriter - replacing hyperlink [19651 - 19670] HYPERLINK BOOLEAN, UML83... +2024-09-08 15:10:26,337 [main] TRACE AbstractWordWriter - No hyperlink added: 'BOOLEAN' for bookmark 'UML83' not in this document. +2024-09-08 15:10:26,340 [main] TRACE AbstractWordWriter - replacing hyperlink [19660 - 19688] HYPERLINK ControllableCDC, UML237... +2024-09-08 15:10:26,345 [main] TRACE AbstractWordWriter - No hyperlink added: 'ControllableCDC' for bookmark 'UML237' not in this document. +2024-09-08 15:10:26,348 [main] TRACE AbstractWordWriter - replacing hyperlink [19786 - 19805] HYPERLINK BOOLEAN, UML83... +2024-09-08 15:10:26,353 [main] TRACE AbstractWordWriter - No hyperlink added: 'BOOLEAN' for bookmark 'UML83' not in this document. +2024-09-08 15:10:26,356 [main] TRACE AbstractWordWriter - replacing hyperlink [19795 - 19811] HYPERLINK ACD, UML244... +2024-09-08 15:10:26,361 [main] TRACE AbstractWordWriter - No hyperlink added: 'ACD' for bookmark 'UML244' not in this document. +2024-09-08 15:10:26,365 [main] TRACE AbstractWordWriter - replacing hyperlink [19825 - 19841] HYPERLINK CMV, UML236... +2024-09-08 15:10:26,370 [main] TRACE AbstractWordWriter - No hyperlink added: 'CMV' for bookmark 'UML236' not in this document. +2024-09-08 15:10:26,373 [main] TRACE AbstractWordWriter - replacing hyperlink [19830 - 19847] HYPERLINK HWYE, UML252... +2024-09-08 15:10:26,378 [main] TRACE AbstractWordWriter - No hyperlink added: 'HWYE' for bookmark 'UML252' not in this document. +2024-09-08 15:10:26,381 [main] TRACE AbstractWordWriter - replacing hyperlink [19922 - 19941] HYPERLINK BOOLEAN, UML83... +2024-09-08 15:10:26,387 [main] TRACE AbstractWordWriter - No hyperlink added: 'BOOLEAN' for bookmark 'UML83' not in this document. +2024-09-08 15:10:26,390 [main] TRACE AbstractWordWriter - replacing hyperlink [19931 - 19947] HYPERLINK ACD, UML244... +2024-09-08 15:10:26,395 [main] TRACE AbstractWordWriter - No hyperlink added: 'ACD' for bookmark 'UML244' not in this document. +2024-09-08 15:10:26,399 [main] TRACE AbstractWordWriter - replacing hyperlink [19954 - 19974] HYPERLINK Quality, UML339... +2024-09-08 15:10:26,404 [main] TRACE AbstractWordWriter - No hyperlink added: 'Quality' for bookmark 'UML339' not in this document. +2024-09-08 15:10:26,407 [main] TRACE AbstractWordWriter - replacing hyperlink [19963 - 19979] HYPERLINK DPS, UML229... +2024-09-08 15:10:26,429 [main] TRACE AbstractWordWriter - replacing hyperlink [20038 - 20054] HYPERLINK ENS, UML230... +2024-09-08 15:10:26,435 [main] TRACE AbstractWordWriter - No hyperlink added: 'ENS' for bookmark 'UML230' not in this document. +2024-09-08 15:10:26,438 [main] TRACE AbstractWordWriter - replacing hyperlink [20079 - 20095] HYPERLINK EXY, UML242... +2024-09-08 15:10:26,443 [main] TRACE AbstractWordWriter - No hyperlink added: 'EXY' for bookmark 'UML242' not in this document. +2024-09-08 15:10:26,446 [main] TRACE AbstractWordWriter - replacing hyperlink [20130 - 20154] HYPERLINK RangeConfig, UML356... +2024-09-08 15:10:26,469 [main] TRACE AbstractWordWriter - replacing hyperlink [20185 - 20201] HYPERLINK CMV, UML236... +2024-09-08 15:10:26,474 [main] TRACE AbstractWordWriter - No hyperlink added: 'CMV' for bookmark 'UML236' not in this document. +2024-09-08 15:10:26,477 [main] TRACE AbstractWordWriter - replacing hyperlink [20228 - 20252] HYPERLINK RangeConfig, UML356... +2024-09-08 15:10:26,500 [main] TRACE AbstractWordWriter - replacing hyperlink [20283 - 20299] HYPERLINK CMV, UML236... +2024-09-08 15:10:26,505 [main] TRACE AbstractWordWriter - No hyperlink added: 'CMV' for bookmark 'UML236' not in this document. +2024-09-08 15:10:26,509 [main] TRACE AbstractWordWriter - replacing hyperlink [20337 - 20353] HYPERLINK ENG, UML246... +2024-09-08 15:10:26,514 [main] TRACE AbstractWordWriter - No hyperlink added: 'ENG' for bookmark 'UML246' not in this document. +2024-09-08 15:10:26,517 [main] TRACE AbstractWordWriter - replacing hyperlink [20384 - 20402] HYPERLINK INT32U, UML86... +2024-09-08 15:10:26,522 [main] TRACE AbstractWordWriter - No hyperlink added: 'INT32U' for bookmark 'UML86' not in this document. +2024-09-08 15:10:26,525 [main] TRACE AbstractWordWriter - replacing hyperlink [20392 - 20425] HYPERLINK HarmonicMeasurandCDC, UML251... +2024-09-08 15:10:26,531 [main] TRACE AbstractWordWriter - No hyperlink added: 'HarmonicMeasurandCDC' for bookmark 'UML251' not in this document. +2024-09-08 15:10:26,535 [main] TRACE AbstractWordWriter - replacing hyperlink [20688 - 20712] HYPERLINK DpStatusKind, UML82... +2024-09-08 15:10:26,540 [main] TRACE AbstractWordWriter - No hyperlink added: 'DpStatusKind' for bookmark 'UML82' not in this document. +2024-09-08 15:10:26,543 [main] TRACE AbstractWordWriter - replacing hyperlink [20702 - 20721] HYPERLINK EnumDA, UML340... +2024-09-08 15:10:26,548 [main] TRACE AbstractWordWriter - No hyperlink added: 'EnumDA' for bookmark 'UML340' not in this document. +2024-09-08 15:10:26,551 [main] TRACE AbstractWordWriter - replacing hyperlink [20710 - 20729] HYPERLINK EnumDA, UML340... +2024-09-08 15:10:26,556 [main] TRACE AbstractWordWriter - No hyperlink added: 'EnumDA' for bookmark 'UML340' not in this document. +2024-09-08 15:10:26,560 [main] TRACE AbstractWordWriter - replacing hyperlink [20718 - 20737] HYPERLINK EnumDA, UML340... +2024-09-08 15:10:26,565 [main] TRACE AbstractWordWriter - No hyperlink added: 'EnumDA' for bookmark 'UML340' not in this document. +2024-09-08 15:10:26,568 [main] TRACE AbstractWordWriter - replacing hyperlink [20726 - 20742] HYPERLINK DPS, UML229... +2024-09-08 15:10:26,591 [main] TRACE AbstractWordWriter - replacing hyperlink [20785 - 20801] HYPERLINK ENS, UML230... +2024-09-08 15:10:26,597 [main] TRACE AbstractWordWriter - No hyperlink added: 'ENS' for bookmark 'UML230' not in this document. +2024-09-08 15:10:26,600 [main] TRACE AbstractWordWriter - replacing hyperlink [20810 - 20826] HYPERLINK ENC, UML238... +2024-09-08 15:10:26,605 [main] TRACE AbstractWordWriter - No hyperlink added: 'ENC' for bookmark 'UML238' not in this document. +2024-09-08 15:10:26,609 [main] TRACE AbstractWordWriter - replacing hyperlink [20835 - 20851] HYPERLINK EXY, UML242... +2024-09-08 15:10:26,614 [main] TRACE AbstractWordWriter - No hyperlink added: 'EXY' for bookmark 'UML242' not in this document. +2024-09-08 15:10:26,617 [main] TRACE AbstractWordWriter - replacing hyperlink [20882 - 20898] HYPERLINK CMV, UML236... +2024-09-08 15:10:26,622 [main] TRACE AbstractWordWriter - No hyperlink added: 'CMV' for bookmark 'UML236' not in this document. +2024-09-08 15:10:26,625 [main] TRACE AbstractWordWriter - replacing hyperlink [20932 - 20951] HYPERLINK BOOLEAN, UML83... +2024-09-08 15:10:26,631 [main] TRACE AbstractWordWriter - No hyperlink added: 'BOOLEAN' for bookmark 'UML83' not in this document. +2024-09-08 15:10:26,634 [main] TRACE AbstractWordWriter - replacing hyperlink [20941 - 20969] HYPERLINK SubstitutionCDC, UML228... +2024-09-08 15:10:26,639 [main] TRACE AbstractWordWriter - No hyperlink added: 'SubstitutionCDC' for bookmark 'UML228' not in this document. +2024-09-08 15:10:26,642 [main] TRACE AbstractWordWriter - replacing hyperlink [21530 - 21550] HYPERLINK Quality, UML339... +2024-09-08 15:10:26,647 [main] TRACE AbstractWordWriter - No hyperlink added: 'Quality' for bookmark 'UML339' not in this document. +2024-09-08 15:10:26,650 [main] TRACE AbstractWordWriter - replacing hyperlink [21539 - 21567] HYPERLINK SubstitutionCDC, UML228... +2024-09-08 15:10:26,655 [main] TRACE AbstractWordWriter - No hyperlink added: 'SubstitutionCDC' for bookmark 'UML228' not in this document. +2024-09-08 15:10:26,658 [main] TRACE AbstractWordWriter - replacing hyperlink [21594 - 21618] HYPERLINK DpStatusKind, UML82... +2024-09-08 15:10:26,663 [main] TRACE AbstractWordWriter - No hyperlink added: 'DpStatusKind' for bookmark 'UML82' not in this document. +2024-09-08 15:10:26,668 [main] TRACE AbstractWordWriter - replacing hyperlink [21608 - 21627] HYPERLINK EnumDA, UML340... +2024-09-08 15:10:26,674 [main] TRACE AbstractWordWriter - No hyperlink added: 'EnumDA' for bookmark 'UML340' not in this document. +2024-09-08 15:10:26,677 [main] TRACE AbstractWordWriter - replacing hyperlink [21616 - 21635] HYPERLINK EnumDA, UML340... +2024-09-08 15:10:26,682 [main] TRACE AbstractWordWriter - No hyperlink added: 'EnumDA' for bookmark 'UML340' not in this document. +2024-09-08 15:10:26,685 [main] TRACE AbstractWordWriter - replacing hyperlink [21638 - 21654] HYPERLINK DPS, UML229... +2024-09-08 15:10:26,709 [main] TRACE AbstractWordWriter - replacing hyperlink [21712 - 21728] HYPERLINK ENS, UML230... +2024-09-08 15:10:26,714 [main] TRACE AbstractWordWriter - No hyperlink added: 'ENS' for bookmark 'UML230' not in this document. +2024-09-08 15:10:26,718 [main] TRACE AbstractWordWriter - replacing hyperlink [21752 - 21768] HYPERLINK ENC, UML238... +2024-09-08 15:10:26,723 [main] TRACE AbstractWordWriter - No hyperlink added: 'ENC' for bookmark 'UML238' not in this document. +2024-09-08 15:10:26,726 [main] TRACE AbstractWordWriter - replacing hyperlink [21792 - 21808] HYPERLINK BAC, UML241... +2024-09-08 15:10:26,731 [main] TRACE AbstractWordWriter - No hyperlink added: 'BAC' for bookmark 'UML241' not in this document. +2024-09-08 15:10:26,734 [main] TRACE AbstractWordWriter - replacing hyperlink [21834 - 21855] HYPERLINK TimeStamp, UML93... +2024-09-08 15:10:26,739 [main] TRACE AbstractWordWriter - No hyperlink added: 'TimeStamp' for bookmark 'UML93' not in this document. +2024-09-08 15:10:26,742 [main] TRACE AbstractWordWriter - replacing hyperlink [21845 - 21861] HYPERLINK DPS, UML229... +2024-09-08 15:10:26,765 [main] TRACE AbstractWordWriter - replacing hyperlink [21956 - 21972] HYPERLINK ENS, UML230... +2024-09-08 15:10:26,770 [main] TRACE AbstractWordWriter - No hyperlink added: 'ENS' for bookmark 'UML230' not in this document. +2024-09-08 15:10:26,773 [main] TRACE AbstractWordWriter - replacing hyperlink [22033 - 22049] HYPERLINK EXY, UML242... +2024-09-08 15:10:26,778 [main] TRACE AbstractWordWriter - No hyperlink added: 'EXY' for bookmark 'UML242' not in this document. +2024-09-08 15:10:26,781 [main] TRACE AbstractWordWriter - replacing hyperlink [26481 - 26498] HYPERLINK HWYE, UML252... +2024-09-08 15:10:26,787 [main] TRACE AbstractWordWriter - No hyperlink added: 'HWYE' for bookmark 'UML252' not in this document. +2024-09-08 15:10:26,790 [main] TRACE AbstractWordWriter - replacing hyperlink [26487 - 26504] HYPERLINK MMXU, UML204... +2024-09-08 15:10:26,795 [main] TRACE AbstractWordWriter - No hyperlink added: 'MMXU' for bookmark 'UML204' not in this document. +2024-09-08 15:10:26,798 [main] TRACE AbstractWordWriter - replacing hyperlink [26553 - 26570] HYPERLINK ZAXN, UML206... +2024-09-08 15:10:26,803 [main] TRACE AbstractWordWriter - No hyperlink added: 'ZAXN' for bookmark 'UML206' not in this document. +2024-09-08 15:10:26,806 [main] TRACE AbstractWordWriter - replacing hyperlink [26636 - 26652] HYPERLINK CMV, UML236... +2024-09-08 15:10:26,811 [main] TRACE AbstractWordWriter - No hyperlink added: 'CMV' for bookmark 'UML236' not in this document. +2024-09-08 15:10:26,816 [main] TRACE AbstractWordWriter - replacing hyperlink [26641 - 26658] HYPERLINK GGIO, UML203... +2024-09-08 15:10:26,821 [main] TRACE AbstractWordWriter - No hyperlink added: 'GGIO' for bookmark 'UML203' not in this document. +2024-09-08 15:10:26,824 [main] TRACE AbstractWordWriter - replacing hyperlink [26698 - 26714] HYPERLINK ENS, UML230... +2024-09-08 15:10:26,829 [main] TRACE AbstractWordWriter - No hyperlink added: 'ENS' for bookmark 'UML230' not in this document. +2024-09-08 15:10:26,832 [main] TRACE AbstractWordWriter - replacing hyperlink [26703 - 26733] HYPERLINK BehaviourModeKind, UML139... +2024-09-08 15:10:26,837 [main] TRACE AbstractWordWriter - No hyperlink added: 'BehaviourModeKind' for bookmark 'UML139' not in this document. +2024-09-08 15:10:26,840 [main] TRACE AbstractWordWriter - replacing hyperlink [26723 - 26740] HYPERLINK LLN0, UML199... +2024-09-08 15:10:26,845 [main] TRACE AbstractWordWriter - No hyperlink added: 'LLN0' for bookmark 'UML199' not in this document. +2024-09-08 15:10:26,849 [main] TRACE AbstractWordWriter - replacing hyperlink [26737 - 26762] HYPERLINK SPSTransient, UML143... +2024-09-08 15:10:26,853 [main] TRACE AbstractWordWriter - No hyperlink added: 'SPSTransient' for bookmark 'UML143' not in this document. +2024-09-08 15:10:26,857 [main] TRACE AbstractWordWriter - replacing hyperlink [26751 - 26776] HYPERLINK StatisticsLN, UML202... +2024-09-08 15:10:26,861 [main] TRACE AbstractWordWriter - No hyperlink added: 'StatisticsLN' for bookmark 'UML202' not in this document. +2024-09-08 15:10:26,864 [main] TRACE AbstractWordWriter - replacing hyperlink [26863 - 26879] HYPERLINK ENG, UML246... +2024-09-08 15:10:26,870 [main] TRACE AbstractWordWriter - No hyperlink added: 'ENG' for bookmark 'UML246' not in this document. +2024-09-08 15:10:26,873 [main] TRACE AbstractWordWriter - replacing hyperlink [26868 - 26895] HYPERLINK CalcMethodKind, UML140... +2024-09-08 15:10:26,878 [main] TRACE AbstractWordWriter - No hyperlink added: 'CalcMethodKind' for bookmark 'UML140' not in this document. +2024-09-08 15:10:26,881 [main] TRACE AbstractWordWriter - replacing hyperlink [26885 - 26910] HYPERLINK StatisticsLN, UML202... +2024-09-08 15:10:26,886 [main] TRACE AbstractWordWriter - No hyperlink added: 'StatisticsLN' for bookmark 'UML202' not in this document. +2024-09-08 15:10:26,889 [main] TRACE AbstractWordWriter - replacing hyperlink [27442 - 27458] HYPERLINK CMV, UML236... +2024-09-08 15:10:26,894 [main] TRACE AbstractWordWriter - No hyperlink added: 'CMV' for bookmark 'UML236' not in this document. +2024-09-08 15:10:26,897 [main] TRACE AbstractWordWriter - replacing hyperlink [27447 - 27468] HYPERLINK DomainLN, UML201... +2024-09-08 15:10:26,903 [main] TRACE AbstractWordWriter - No hyperlink added: 'DomainLN' for bookmark 'UML201' not in this document. +2024-09-08 15:10:26,906 [main] TRACE AbstractWordWriter - replacing hyperlink [27551 - 27567] HYPERLINK ENS, UML230... +2024-09-08 15:10:26,912 [main] TRACE AbstractWordWriter - No hyperlink added: 'ENS' for bookmark 'UML230' not in this document. +2024-09-08 15:10:26,915 [main] TRACE AbstractWordWriter - replacing hyperlink [27556 - 27575] HYPERLINK EnumDA, UML340... +2024-09-08 15:10:26,920 [main] TRACE AbstractWordWriter - No hyperlink added: 'EnumDA' for bookmark 'UML340' not in this document. +2024-09-08 15:10:26,923 [main] TRACE AbstractWordWriter - replacing hyperlink [27565 - 27582] HYPERLINK KXYZ, UML207... +2024-09-08 15:10:26,929 [main] TRACE AbstractWordWriter - No hyperlink added: 'KXYZ' for bookmark 'UML207' not in this document. +2024-09-08 15:10:26,932 [main] TRACE AbstractWordWriter - replacing hyperlink [27631 - 27648] HYPERLINK GGIO, UML203... +2024-09-08 15:10:26,938 [main] TRACE AbstractWordWriter - No hyperlink added: 'GGIO' for bookmark 'UML203' not in this document. +2024-09-08 15:10:26,941 [main] TRACE AbstractWordWriter - replacing hyperlink [27790 - 27806] HYPERLINK HST, UML245... +2024-09-08 15:10:26,963 [main] TRACE AbstractWordWriter - replacing hyperlink [27829 - 27846] HYPERLINK MMXU, UML204... +2024-09-08 15:10:26,968 [main] TRACE AbstractWordWriter - No hyperlink added: 'MMXU' for bookmark 'UML204' not in this document. +2024-09-08 15:10:26,972 [main] TRACE AbstractWordWriter - replacing hyperlink [27881 - 27897] HYPERLINK ACD, UML244... +2024-09-08 15:10:26,977 [main] TRACE AbstractWordWriter - No hyperlink added: 'ACD' for bookmark 'UML244' not in this document. +2024-09-08 15:10:26,980 [main] TRACE AbstractWordWriter - replacing hyperlink [27886 - 27903] HYPERLINK RDIR, UML214... +2024-09-08 15:10:26,985 [main] TRACE AbstractWordWriter - No hyperlink added: 'RDIR' for bookmark 'UML214' not in this document. +2024-09-08 15:10:26,988 [main] TRACE AbstractWordWriter - replacing hyperlink [28000 - 28016] HYPERLINK ENS, UML230... +2024-09-08 15:10:26,993 [main] TRACE AbstractWordWriter - No hyperlink added: 'ENS' for bookmark 'UML230' not in this document. +2024-09-08 15:10:26,996 [main] TRACE AbstractWordWriter - replacing hyperlink [28005 - 28028] HYPERLINK HealthKind, UML138... +2024-09-08 15:10:27,001 [main] TRACE AbstractWordWriter - No hyperlink added: 'HealthKind' for bookmark 'UML138' not in this document. +2024-09-08 15:10:27,005 [main] TRACE AbstractWordWriter - replacing hyperlink [28018 - 28035] HYPERLINK GGIO, UML203... +2024-09-08 15:10:27,009 [main] TRACE AbstractWordWriter - No hyperlink added: 'GGIO' for bookmark 'UML203' not in this document. +2024-09-08 15:10:27,012 [main] TRACE AbstractWordWriter - replacing hyperlink [28149 - 28165] HYPERLINK ENS, UML230... +2024-09-08 15:10:27,017 [main] TRACE AbstractWordWriter - No hyperlink added: 'ENS' for bookmark 'UML230' not in this document. +2024-09-08 15:10:27,020 [main] TRACE AbstractWordWriter - replacing hyperlink [28154 - 28177] HYPERLINK HealthKind, UML138... +2024-09-08 15:10:27,025 [main] TRACE AbstractWordWriter - No hyperlink added: 'HealthKind' for bookmark 'UML138' not in this document. +2024-09-08 15:10:27,028 [main] TRACE AbstractWordWriter - replacing hyperlink [28167 - 28200] HYPERLINK EquipmentInterfaceLN, UML205... +2024-09-08 15:10:27,033 [main] TRACE AbstractWordWriter - No hyperlink added: 'EquipmentInterfaceLN' for bookmark 'UML205' not in this document. +2024-09-08 15:10:27,036 [main] TRACE AbstractWordWriter - replacing hyperlink [28323 - 28339] HYPERLINK DPS, UML229... +2024-09-08 15:10:27,061 [main] TRACE AbstractWordWriter - replacing hyperlink [28362 - 28379] HYPERLINK CALH, UML208... +2024-09-08 15:10:27,065 [main] TRACE AbstractWordWriter - No hyperlink added: 'CALH' for bookmark 'UML208' not in this document. +2024-09-08 15:10:27,069 [main] TRACE AbstractWordWriter - replacing hyperlink [28536 - 28552] HYPERLINK DPS, UML229... +2024-09-08 15:10:27,090 [main] TRACE AbstractWordWriter - replacing hyperlink [28575 - 28592] HYPERLINK CALH, UML208... +2024-09-08 15:10:27,095 [main] TRACE AbstractWordWriter - No hyperlink added: 'CALH' for bookmark 'UML208' not in this document. +2024-09-08 15:10:27,098 [main] TRACE AbstractWordWriter - replacing hyperlink [28758 - 28774] HYPERLINK ENS, UML230... +2024-09-08 15:10:27,106 [main] TRACE AbstractWordWriter - No hyperlink added: 'ENS' for bookmark 'UML230' not in this document. +2024-09-08 15:10:27,109 [main] TRACE AbstractWordWriter - replacing hyperlink [28763 - 28786] HYPERLINK HealthKind, UML138... +2024-09-08 15:10:27,114 [main] TRACE AbstractWordWriter - No hyperlink added: 'HealthKind' for bookmark 'UML138' not in this document. +2024-09-08 15:10:27,117 [main] TRACE AbstractWordWriter - replacing hyperlink [28776 - 28793] HYPERLINK LLN0, UML199... +2024-09-08 15:10:27,122 [main] TRACE AbstractWordWriter - No hyperlink added: 'LLN0' for bookmark 'UML199' not in this document. +2024-09-08 15:10:27,125 [main] TRACE AbstractWordWriter - replacing hyperlink [29060 - 29081] HYPERLINK DomainLN, UML201... +2024-09-08 15:10:27,130 [main] TRACE AbstractWordWriter - No hyperlink added: 'DomainLN' for bookmark 'UML201' not in this document. +2024-09-08 15:10:27,134 [main] TRACE AbstractWordWriter - replacing hyperlink [29282 - 29298] HYPERLINK ENS, UML230... +2024-09-08 15:10:27,139 [main] TRACE AbstractWordWriter - No hyperlink added: 'ENS' for bookmark 'UML230' not in this document. +2024-09-08 15:10:27,142 [main] TRACE AbstractWordWriter - replacing hyperlink [29287 - 29312] HYPERLINK MaterialKind, UML146... +2024-09-08 15:10:27,147 [main] TRACE AbstractWordWriter - No hyperlink added: 'MaterialKind' for bookmark 'UML146' not in this document. +2024-09-08 15:10:27,150 [main] TRACE AbstractWordWriter - replacing hyperlink [29302 - 29319] HYPERLINK ZAXN, UML206... +2024-09-08 15:10:27,155 [main] TRACE AbstractWordWriter - No hyperlink added: 'ZAXN' for bookmark 'UML206' not in this document. +2024-09-08 15:10:27,158 [main] TRACE AbstractWordWriter - replacing hyperlink [29365 - 29381] HYPERLINK ENC, UML238... +2024-09-08 15:10:27,164 [main] TRACE AbstractWordWriter - No hyperlink added: 'ENC' for bookmark 'UML238' not in this document. +2024-09-08 15:10:27,166 [main] TRACE AbstractWordWriter - replacing hyperlink [29370 - 29395] HYPERLINK MaterialKind, UML146... +2024-09-08 15:10:27,171 [main] TRACE AbstractWordWriter - No hyperlink added: 'MaterialKind' for bookmark 'UML146' not in this document. +2024-09-08 15:10:27,174 [main] TRACE AbstractWordWriter - replacing hyperlink [29384 - 29419] HYPERLINK MaterialTransitionKind, UML147... +2024-09-08 15:10:27,179 [main] TRACE AbstractWordWriter - No hyperlink added: 'MaterialTransitionKind' for bookmark 'UML147' not in this document. +2024-09-08 15:10:27,182 [main] TRACE AbstractWordWriter - replacing hyperlink [29409 - 29426] HYPERLINK ZAXN, UML206... +2024-09-08 15:10:27,187 [main] TRACE AbstractWordWriter - No hyperlink added: 'ZAXN' for bookmark 'UML206' not in this document. +2024-09-08 15:10:27,190 [main] TRACE AbstractWordWriter - replacing hyperlink [29479 - 29495] HYPERLINK ENC, UML238... +2024-09-08 15:10:27,196 [main] TRACE AbstractWordWriter - No hyperlink added: 'ENC' for bookmark 'UML238' not in this document. +2024-09-08 15:10:27,198 [main] TRACE AbstractWordWriter - replacing hyperlink [29484 - 29514] HYPERLINK BehaviourModeKind, UML139... +2024-09-08 15:10:27,203 [main] TRACE AbstractWordWriter - No hyperlink added: 'BehaviourModeKind' for bookmark 'UML139' not in this document. +2024-09-08 15:10:27,206 [main] TRACE AbstractWordWriter - replacing hyperlink [29504 - 29525] HYPERLINK DomainLN, UML201... +2024-09-08 15:10:27,211 [main] TRACE AbstractWordWriter - No hyperlink added: 'DomainLN' for bookmark 'UML201' not in this document. +2024-09-08 15:10:27,214 [main] TRACE AbstractWordWriter - replacing hyperlink [29872 - 29901] HYPERLINK EXYBehaviourMode, UML243... +2024-09-08 15:10:27,219 [main] TRACE AbstractWordWriter - No hyperlink added: 'EXYBehaviourMode' for bookmark 'UML243' not in this document. +2024-09-08 15:10:27,222 [main] TRACE AbstractWordWriter - replacing hyperlink [29890 - 29907] HYPERLINK CALH, UML208... +2024-09-08 15:10:27,227 [main] TRACE AbstractWordWriter - No hyperlink added: 'CALH' for bookmark 'UML208' not in this document. +2024-09-08 15:10:27,230 [main] TRACE AbstractWordWriter - replacing hyperlink [30073 - 30089] HYPERLINK LPL, UML248... +2024-09-08 15:10:27,235 [main] TRACE AbstractWordWriter - No hyperlink added: 'LPL' for bookmark 'UML248' not in this document. +2024-09-08 15:10:27,238 [main] TRACE AbstractWordWriter - replacing hyperlink [30078 - 30095] HYPERLINK LLN0, UML199... +2024-09-08 15:10:27,243 [main] TRACE AbstractWordWriter - No hyperlink added: 'LLN0' for bookmark 'UML199' not in this document. +2024-09-08 15:10:27,246 [main] TRACE AbstractWordWriter - replacing hyperlink [30119 - 30140] HYPERLINK DomainLN, UML201... +2024-09-08 15:10:27,251 [main] TRACE AbstractWordWriter - No hyperlink added: 'DomainLN' for bookmark 'UML201' not in this document. +2024-09-08 15:10:27,254 [main] TRACE AbstractWordWriter - replacing hyperlink [30165 - 30190] HYPERLINK ACTTransient, UML142... +2024-09-08 15:10:27,260 [main] TRACE AbstractWordWriter - No hyperlink added: 'ACTTransient' for bookmark 'UML142' not in this document. +2024-09-08 15:10:27,263 [main] TRACE AbstractWordWriter - replacing hyperlink [30179 - 30196] HYPERLINK PDIF, UML210... +2024-09-08 15:10:27,268 [main] TRACE AbstractWordWriter - No hyperlink added: 'PDIF' for bookmark 'UML210' not in this document. +2024-09-08 15:10:27,272 [main] TRACE AbstractWordWriter - replacing hyperlink [30273 - 30290] HYPERLINK PDIS, UML211... +2024-09-08 15:10:27,277 [main] TRACE AbstractWordWriter - No hyperlink added: 'PDIS' for bookmark 'UML211' not in this document. +2024-09-08 15:10:27,280 [main] TRACE AbstractWordWriter - replacing hyperlink [30411 - 30436] HYPERLINK ProtectionLN, UML209... +2024-09-08 15:10:27,285 [main] TRACE AbstractWordWriter - No hyperlink added: 'ProtectionLN' for bookmark 'UML209' not in this document. +2024-09-08 15:10:27,288 [main] TRACE AbstractWordWriter - replacing hyperlink [30585 - 30601] HYPERLINK ENS, UML230... +2024-09-08 15:10:27,294 [main] TRACE AbstractWordWriter - No hyperlink added: 'ENS' for bookmark 'UML230' not in this document. +2024-09-08 15:10:27,298 [main] TRACE AbstractWordWriter - replacing hyperlink [30590 - 30608] HYPERLINK Other, UML353... +2024-09-08 15:10:27,303 [main] TRACE AbstractWordWriter - No hyperlink added: 'Other' for bookmark 'UML353' not in this document. +2024-09-08 15:10:27,306 [main] TRACE AbstractWordWriter - replacing hyperlink [30598 - 30615] HYPERLINK ZAXN, UML206... +2024-09-08 15:10:27,312 [main] TRACE AbstractWordWriter - No hyperlink added: 'ZAXN' for bookmark 'UML206' not in this document. +2024-09-08 15:10:27,315 [main] TRACE AbstractWordWriter - replacing hyperlink [30741 - 30757] HYPERLINK ENS, UML230... +2024-09-08 15:10:27,320 [main] TRACE AbstractWordWriter - No hyperlink added: 'ENS' for bookmark 'UML230' not in this document. +2024-09-08 15:10:27,323 [main] TRACE AbstractWordWriter - replacing hyperlink [30746 - 30769] HYPERLINK HealthKind, UML138... +2024-09-08 15:10:27,327 [main] TRACE AbstractWordWriter - No hyperlink added: 'HealthKind' for bookmark 'UML138' not in this document. +2024-09-08 15:10:27,330 [main] TRACE AbstractWordWriter - replacing hyperlink [30759 - 30776] HYPERLINK LPHD, UML197... +2024-09-08 15:10:27,335 [main] TRACE AbstractWordWriter - No hyperlink added: 'LPHD' for bookmark 'UML197' not in this document. +2024-09-08 15:10:27,338 [main] TRACE AbstractWordWriter - replacing hyperlink [30873 - 30898] HYPERLINK SPCTransient, UML381... +2024-09-08 15:10:27,344 [main] TRACE AbstractWordWriter - No hyperlink added: 'SPCTransient' for bookmark 'UML381' not in this document. +2024-09-08 15:10:27,347 [main] TRACE AbstractWordWriter - replacing hyperlink [30887 - 30904] HYPERLINK LPHD, UML197... +2024-09-08 15:10:27,351 [main] TRACE AbstractWordWriter - No hyperlink added: 'LPHD' for bookmark 'UML197' not in this document. +2024-09-08 15:10:27,355 [main] TRACE AbstractWordWriter - replacing hyperlink [30992 - 31017] HYPERLINK SPSTransient, UML143... +2024-09-08 15:10:27,360 [main] TRACE AbstractWordWriter - No hyperlink added: 'SPSTransient' for bookmark 'UML143' not in this document. +2024-09-08 15:10:27,364 [main] TRACE AbstractWordWriter - replacing hyperlink [31006 - 31023] HYPERLINK LPHD, UML197... +2024-09-08 15:10:27,368 [main] TRACE AbstractWordWriter - No hyperlink added: 'LPHD' for bookmark 'UML197' not in this document. +2024-09-08 15:10:27,372 [main] TRACE AbstractWordWriter - replacing hyperlink [31101 - 31117] HYPERLINK ACD, UML244... +2024-09-08 15:10:27,377 [main] TRACE AbstractWordWriter - No hyperlink added: 'ACD' for bookmark 'UML244' not in this document. +2024-09-08 15:10:27,380 [main] TRACE AbstractWordWriter - replacing hyperlink [31106 - 31123] HYPERLINK PDIF, UML210... +2024-09-08 15:10:27,385 [main] TRACE AbstractWordWriter - No hyperlink added: 'PDIF' for bookmark 'UML210' not in this document. +2024-09-08 15:10:27,388 [main] TRACE AbstractWordWriter - replacing hyperlink [31163 - 31180] HYPERLINK PDIS, UML211... +2024-09-08 15:10:27,393 [main] TRACE AbstractWordWriter - No hyperlink added: 'PDIS' for bookmark 'UML211' not in this document. +2024-09-08 15:10:27,396 [main] TRACE AbstractWordWriter - replacing hyperlink [31234 - 31250] HYPERLINK CMV, UML236... +2024-09-08 15:10:27,401 [main] TRACE AbstractWordWriter - No hyperlink added: 'CMV' for bookmark 'UML236' not in this document. +2024-09-08 15:10:27,404 [main] TRACE AbstractWordWriter - replacing hyperlink [31239 - 31255] HYPERLINK CMV, UML236... +2024-09-08 15:10:27,409 [main] TRACE AbstractWordWriter - No hyperlink added: 'CMV' for bookmark 'UML236' not in this document. +2024-09-08 15:10:27,412 [main] TRACE AbstractWordWriter - replacing hyperlink [31244 - 31269] HYPERLINK SPSTransient, UML143... +2024-09-08 15:10:27,417 [main] TRACE AbstractWordWriter - No hyperlink added: 'SPSTransient' for bookmark 'UML143' not in this document. +2024-09-08 15:10:27,420 [main] TRACE AbstractWordWriter - replacing hyperlink [31258 - 31275] HYPERLINK MMXU, UML204... +2024-09-08 15:10:27,425 [main] TRACE AbstractWordWriter - No hyperlink added: 'MMXU' for bookmark 'UML204' not in this document. +2024-09-08 15:10:27,428 [main] TRACE AbstractWordWriter - replacing hyperlink [31332 - 31349] HYPERLINK KXYZ, UML207... +2024-09-08 15:10:27,432 [main] TRACE AbstractWordWriter - No hyperlink added: 'KXYZ' for bookmark 'UML207' not in this document. +2024-09-08 15:10:27,436 [main] TRACE AbstractWordWriter - replacing hyperlink [31406 - 31423] HYPERLINK RDIR, UML214... +2024-09-08 15:10:27,440 [main] TRACE AbstractWordWriter - No hyperlink added: 'RDIR' for bookmark 'UML214' not in this document. +2024-09-08 15:10:27,443 [main] TRACE AbstractWordWriter - replacing hyperlink [31484 - 31500] HYPERLINK CMV, UML236... +2024-09-08 15:10:27,448 [main] TRACE AbstractWordWriter - No hyperlink added: 'CMV' for bookmark 'UML236' not in this document. +2024-09-08 15:10:27,451 [main] TRACE AbstractWordWriter - replacing hyperlink [31489 - 31506] HYPERLINK ZAXN, UML206... +2024-09-08 15:10:27,456 [main] TRACE AbstractWordWriter - No hyperlink added: 'ZAXN' for bookmark 'UML206' not in this document. +2024-09-08 15:10:27,459 [main] TRACE AbstractWordWriter - replacing hyperlink [31580 - 31608] HYPERLINK SubstitutionCDC, UML228... +2024-09-08 15:10:27,464 [main] TRACE AbstractWordWriter - No hyperlink added: 'SubstitutionCDC' for bookmark 'UML228' not in this document. +2024-09-08 15:10:27,468 [main] TRACE AbstractWordWriter - replacing hyperlink [31597 - 31613] HYPERLINK ENS, UML230... +2024-09-08 15:10:27,472 [main] TRACE AbstractWordWriter - No hyperlink added: 'ENS' for bookmark 'UML230' not in this document. +2024-09-08 15:10:27,475 [main] TRACE AbstractWordWriter - replacing hyperlink [31603 - 31620] HYPERLINK KXYZ, UML207... +2024-09-08 15:10:27,480 [main] TRACE AbstractWordWriter - No hyperlink added: 'KXYZ' for bookmark 'UML207' not in this document. +2024-09-08 15:10:27,483 [main] TRACE AbstractWordWriter - replacing hyperlink [31674 - 31690] HYPERLINK CMV, UML236... +2024-09-08 15:10:27,488 [main] TRACE AbstractWordWriter - No hyperlink added: 'CMV' for bookmark 'UML236' not in this document. +2024-09-08 15:10:27,491 [main] TRACE AbstractWordWriter - replacing hyperlink [31679 - 31696] HYPERLINK KXYZ, UML207... +2024-09-08 15:10:27,496 [main] TRACE AbstractWordWriter - No hyperlink added: 'KXYZ' for bookmark 'UML207' not in this document. +2024-09-08 15:10:27,499 [main] TRACE AbstractWordWriter - replacing hyperlink [32246 - 32274] HYPERLINK IdentifiedObject, UML32... +2024-09-08 15:10:27,503 [main] TRACE AbstractWordWriter - No hyperlink added: 'IdentifiedObject' for bookmark 'UML32' not in this document. +2024-09-08 15:10:27,506 [main] TRACE AbstractWordWriter - replacing hyperlink [32419 - 32444] HYPERLINK ApparentPower, UML14... +2024-09-08 15:10:27,511 [main] TRACE AbstractWordWriter - No hyperlink added: 'ApparentPower' for bookmark 'UML14' not in this document. +2024-09-08 15:10:27,514 [main] TRACE AbstractWordWriter - replacing hyperlink [32475 - 32493] HYPERLINK String, UML22... +2024-09-08 15:10:27,519 [main] TRACE AbstractWordWriter - No hyperlink added: 'String' for bookmark 'UML22' not in this document. +2024-09-08 15:10:27,522 [main] TRACE AbstractWordWriter - replacing hyperlink [32498 - 32526] HYPERLINK IdentifiedObject, UML32... +2024-09-08 15:10:27,527 [main] TRACE AbstractWordWriter - No hyperlink added: 'IdentifiedObject' for bookmark 'UML32' not in this document. +2024-09-08 15:10:27,530 [main] TRACE AbstractWordWriter - replacing hyperlink [32526 - 32544] HYPERLINK String, UML22... +2024-09-08 15:10:27,535 [main] TRACE AbstractWordWriter - No hyperlink added: 'String' for bookmark 'UML22' not in this document. +2024-09-08 15:10:27,538 [main] TRACE AbstractWordWriter - replacing hyperlink [32549 - 32577] HYPERLINK IdentifiedObject, UML32... +2024-09-08 15:10:27,543 [main] TRACE AbstractWordWriter - No hyperlink added: 'IdentifiedObject' for bookmark 'UML32' not in this document. +2024-09-08 15:10:27,545 [main] TRACE AbstractWordWriter - replacing hyperlink [32577 - 32595] HYPERLINK String, UML22... +2024-09-08 15:10:27,550 [main] TRACE AbstractWordWriter - No hyperlink added: 'String' for bookmark 'UML22' not in this document. +2024-09-08 15:10:27,553 [main] TRACE AbstractWordWriter - replacing hyperlink [32600 - 32628] HYPERLINK IdentifiedObject, UML32... +2024-09-08 15:10:27,558 [main] TRACE AbstractWordWriter - No hyperlink added: 'IdentifiedObject' for bookmark 'UML32' not in this document. +2024-09-08 15:10:27,562 [main] TRACE AbstractWordWriter - replacing hyperlink [32664 - 32692] HYPERLINK SubstitutionCDC, UML228... +2024-09-08 15:10:27,567 [main] TRACE AbstractWordWriter - No hyperlink added: 'SubstitutionCDC' for bookmark 'UML228' not in this document. +2024-09-08 15:10:27,570 [main] TRACE AbstractWordWriter - replacing hyperlink [32682 - 32711] HYPERLINK BasePrimitiveCDC, UML217... +2024-09-08 15:10:27,575 [main] TRACE AbstractWordWriter - No hyperlink added: 'BasePrimitiveCDC' for bookmark 'UML217' not in this document. +2024-09-08 15:10:27,578 [main] TRACE AbstractWordWriter - replacing hyperlink [32701 - 32726] HYPERLINK PrimitiveCDC, UML216... +2024-09-08 15:10:27,585 [main] TRACE AbstractWordWriter - No hyperlink added: 'PrimitiveCDC' for bookmark 'UML216' not in this document. +2024-09-08 15:10:27,589 [main] TRACE AbstractWordWriter - replacing hyperlink [32716 - 32732] HYPERLINK CDC, UML215... +2024-09-08 15:10:27,593 [main] TRACE AbstractWordWriter - No hyperlink added: 'CDC' for bookmark 'UML215' not in this document. +2024-09-08 15:10:27,596 [main] TRACE AbstractWordWriter - replacing hyperlink [32722 - 32754] HYPERLINK NamedIEC61850Object, UML193... +2024-09-08 15:10:27,601 [main] TRACE AbstractWordWriter - No hyperlink added: 'NamedIEC61850Object' for bookmark 'UML193' not in this document. +2024-09-08 15:10:27,605 [main] TRACE AbstractWordWriter - replacing hyperlink [32744 - 32780] HYPERLINK HierarchyIEC61850Object, UML192... +2024-09-08 15:10:27,609 [main] TRACE AbstractWordWriter - No hyperlink added: 'HierarchyIEC61850Object' for bookmark 'UML192' not in this document. +2024-09-08 15:10:27,614 [main] TRACE AbstractWordWriter - replacing hyperlink [32770 - 32797] HYPERLINK IEC61850Object, UML110... +2024-09-08 15:10:27,620 [main] TRACE AbstractWordWriter - No hyperlink added: 'IEC61850Object' for bookmark 'UML110' not in this document. +2024-09-08 15:10:27,623 [main] TRACE AbstractWordWriter - replacing hyperlink [33034 - 33058] HYPERLINK DpStatusKind, UML82... +2024-09-08 15:10:27,628 [main] TRACE AbstractWordWriter - No hyperlink added: 'DpStatusKind' for bookmark 'UML82' not in this document. +2024-09-08 15:10:27,631 [main] TRACE AbstractWordWriter - replacing hyperlink [33079 - 33099] HYPERLINK Quality, UML339... +2024-09-08 15:10:27,636 [main] TRACE AbstractWordWriter - No hyperlink added: 'Quality' for bookmark 'UML339' not in this document. +2024-09-08 15:10:27,639 [main] TRACE AbstractWordWriter - replacing hyperlink [33135 - 33156] HYPERLINK TimeStamp, UML93... +2024-09-08 15:10:27,644 [main] TRACE AbstractWordWriter - No hyperlink added: 'TimeStamp' for bookmark 'UML93' not in this document. +2024-09-08 15:10:27,646 [main] TRACE AbstractWordWriter - replacing hyperlink [33274 - 33298] HYPERLINK DpStatusKind, UML82... +2024-09-08 15:10:27,651 [main] TRACE AbstractWordWriter - No hyperlink added: 'DpStatusKind' for bookmark 'UML82' not in this document. +2024-09-08 15:10:27,654 [main] TRACE AbstractWordWriter - replacing hyperlink [33325 - 33345] HYPERLINK MFsubst, UML558... +2024-09-08 15:10:27,676 [main] TRACE AbstractWordWriter - replacing hyperlink [33379 - 33398] HYPERLINK BOOLEAN, UML83... +2024-09-08 15:10:27,681 [main] TRACE AbstractWordWriter - No hyperlink added: 'BOOLEAN' for bookmark 'UML83' not in this document. +2024-09-08 15:10:27,684 [main] TRACE AbstractWordWriter - replacing hyperlink [33407 - 33435] HYPERLINK SubstitutionCDC, UML228... +2024-09-08 15:10:27,689 [main] TRACE AbstractWordWriter - No hyperlink added: 'SubstitutionCDC' for bookmark 'UML228' not in this document. +2024-09-08 15:10:27,692 [main] TRACE AbstractWordWriter - replacing hyperlink [33423 - 33443] HYPERLINK MFsubst, UML558... +2024-09-08 15:10:27,714 [main] TRACE AbstractWordWriter - replacing hyperlink [33475 - 33495] HYPERLINK Quality, UML339... +2024-09-08 15:10:27,719 [main] TRACE AbstractWordWriter - No hyperlink added: 'Quality' for bookmark 'UML339' not in this document. +2024-09-08 15:10:27,722 [main] TRACE AbstractWordWriter - replacing hyperlink [33503 - 33531] HYPERLINK SubstitutionCDC, UML228... +2024-09-08 15:10:27,727 [main] TRACE AbstractWordWriter - No hyperlink added: 'SubstitutionCDC' for bookmark 'UML228' not in this document. +2024-09-08 15:10:27,730 [main] TRACE AbstractWordWriter - replacing hyperlink [33519 - 33539] HYPERLINK MFsubst, UML558... +2024-09-08 15:10:27,752 [main] TRACE AbstractWordWriter - replacing hyperlink [33573 - 33592] HYPERLINK BOOLEAN, UML83... +2024-09-08 15:10:27,757 [main] TRACE AbstractWordWriter - No hyperlink added: 'BOOLEAN' for bookmark 'UML83' not in this document. +2024-09-08 15:10:27,759 [main] TRACE AbstractWordWriter - replacing hyperlink [33601 - 33629] HYPERLINK SubstitutionCDC, UML228... +2024-09-08 15:10:27,764 [main] TRACE AbstractWordWriter - No hyperlink added: 'SubstitutionCDC' for bookmark 'UML228' not in this document. +2024-09-08 15:10:27,767 [main] TRACE AbstractWordWriter - replacing hyperlink [33683 - 33712] HYPERLINK UNICODE_STRING255, UML88... +2024-09-08 15:10:27,773 [main] TRACE AbstractWordWriter - No hyperlink added: 'UNICODE_STRING255' for bookmark 'UML88' not in this document. +2024-09-08 15:10:27,776 [main] TRACE AbstractWordWriter - replacing hyperlink [33721 - 33750] HYPERLINK BasePrimitiveCDC, UML217... +2024-09-08 15:10:27,781 [main] TRACE AbstractWordWriter - No hyperlink added: 'BasePrimitiveCDC' for bookmark 'UML217' not in this document. +2024-09-08 15:10:27,784 [main] TRACE AbstractWordWriter - replacing hyperlink [33747 - 33776] HYPERLINK VISIBLE_STRING255, UML89... +2024-09-08 15:10:27,789 [main] TRACE AbstractWordWriter - No hyperlink added: 'VISIBLE_STRING255' for bookmark 'UML89' not in this document. +2024-09-08 15:10:27,792 [main] TRACE AbstractWordWriter - replacing hyperlink [33785 - 33814] HYPERLINK BasePrimitiveCDC, UML217... +2024-09-08 15:10:27,797 [main] TRACE AbstractWordWriter - No hyperlink added: 'BasePrimitiveCDC' for bookmark 'UML217' not in this document. +2024-09-08 15:10:27,800 [main] TRACE AbstractWordWriter - replacing hyperlink [33802 - 33822] HYPERLINK MOcdcNs, UML568... +2024-09-08 15:10:27,825 [main] TRACE AbstractWordWriter - replacing hyperlink [35076 - 35099] HYPERLINK ComposedDA, UML354... +2024-09-08 15:10:27,831 [main] TRACE AbstractWordWriter - No hyperlink added: 'ComposedDA' for bookmark 'UML354' not in this document. +2024-09-08 15:10:27,835 [main] TRACE AbstractWordWriter - replacing hyperlink [35089 - 35104] HYPERLINK DA, UML325... +2024-09-08 15:10:27,841 [main] TRACE AbstractWordWriter - No hyperlink added: 'DA' for bookmark 'UML325' not in this document. +2024-09-08 15:10:27,845 [main] TRACE AbstractWordWriter - replacing hyperlink [35094 - 35126] HYPERLINK NamedIEC61850Object, UML193... +2024-09-08 15:10:27,851 [main] TRACE AbstractWordWriter - No hyperlink added: 'NamedIEC61850Object' for bookmark 'UML193' not in this document. +2024-09-08 15:10:27,855 [main] TRACE AbstractWordWriter - replacing hyperlink [35116 - 35152] HYPERLINK HierarchyIEC61850Object, UML192... +2024-09-08 15:10:27,860 [main] TRACE AbstractWordWriter - No hyperlink added: 'HierarchyIEC61850Object' for bookmark 'UML192' not in this document. +2024-09-08 15:10:27,864 [main] TRACE AbstractWordWriter - replacing hyperlink [35142 - 35169] HYPERLINK IEC61850Object, UML110... +2024-09-08 15:10:27,869 [main] TRACE AbstractWordWriter - No hyperlink added: 'IEC61850Object' for bookmark 'UML110' not in this document. +2024-09-08 15:10:27,872 [main] TRACE AbstractWordWriter - replacing hyperlink [35279 - 35308] HYPERLINK BasePrimitiveCDC, UML217... +2024-09-08 15:10:27,877 [main] TRACE AbstractWordWriter - No hyperlink added: 'BasePrimitiveCDC' for bookmark 'UML217' not in this document. +2024-09-08 15:10:27,880 [main] TRACE AbstractWordWriter - replacing hyperlink [35298 - 35323] HYPERLINK PrimitiveCDC, UML216... +2024-09-08 15:10:27,885 [main] TRACE AbstractWordWriter - No hyperlink added: 'PrimitiveCDC' for bookmark 'UML216' not in this document. +2024-09-08 15:10:27,888 [main] TRACE AbstractWordWriter - replacing hyperlink [35313 - 35329] HYPERLINK CDC, UML215... +2024-09-08 15:10:27,893 [main] TRACE AbstractWordWriter - No hyperlink added: 'CDC' for bookmark 'UML215' not in this document. +2024-09-08 15:10:27,895 [main] TRACE AbstractWordWriter - replacing hyperlink [35319 - 35351] HYPERLINK NamedIEC61850Object, UML193... +2024-09-08 15:10:27,900 [main] TRACE AbstractWordWriter - No hyperlink added: 'NamedIEC61850Object' for bookmark 'UML193' not in this document. +2024-09-08 15:10:27,903 [main] TRACE AbstractWordWriter - replacing hyperlink [35341 - 35377] HYPERLINK HierarchyIEC61850Object, UML192... +2024-09-08 15:10:27,908 [main] TRACE AbstractWordWriter - No hyperlink added: 'HierarchyIEC61850Object' for bookmark 'UML192' not in this document. +2024-09-08 15:10:27,911 [main] TRACE AbstractWordWriter - replacing hyperlink [35367 - 35394] HYPERLINK IEC61850Object, UML110... +2024-09-08 15:10:27,916 [main] TRACE AbstractWordWriter - No hyperlink added: 'IEC61850Object' for bookmark 'UML110' not in this document. +2024-09-08 15:10:27,919 [main] TRACE AbstractWordWriter - replacing hyperlink [35941 - 35973] HYPERLINK PowerSystemResource, UML166... +2024-09-08 15:10:27,924 [main] TRACE AbstractWordWriter - No hyperlink added: 'PowerSystemResource' for bookmark 'UML166' not in this document. +2024-09-08 15:10:27,927 [main] TRACE AbstractWordWriter - replacing hyperlink [35963 - 35991] HYPERLINK IdentifiedObject, UML32... +2024-09-08 15:10:27,933 [main] TRACE AbstractWordWriter - No hyperlink added: 'IdentifiedObject' for bookmark 'UML32' not in this document. +2024-09-08 15:10:27,936 [main] TRACE AbstractWordWriter - replacing hyperlink [36154 - 36172] HYPERLINK String, UML22... +2024-09-08 15:10:27,940 [main] TRACE AbstractWordWriter - No hyperlink added: 'String' for bookmark 'UML22' not in this document. +2024-09-08 15:10:27,943 [main] TRACE AbstractWordWriter - replacing hyperlink [36190 - 36222] HYPERLINK PowerSystemResource, UML166... +2024-09-08 15:10:27,949 [main] TRACE AbstractWordWriter - No hyperlink added: 'PowerSystemResource' for bookmark 'UML166' not in this document. +2024-09-08 15:10:27,952 [main] TRACE AbstractWordWriter - replacing hyperlink [36226 - 36244] HYPERLINK String, UML22... +2024-09-08 15:10:27,957 [main] TRACE AbstractWordWriter - No hyperlink added: 'String' for bookmark 'UML22' not in this document. +2024-09-08 15:10:27,960 [main] TRACE AbstractWordWriter - replacing hyperlink [36249 - 36277] HYPERLINK IdentifiedObject, UML32... +2024-09-08 15:10:27,965 [main] TRACE AbstractWordWriter - No hyperlink added: 'IdentifiedObject' for bookmark 'UML32' not in this document. +2024-09-08 15:10:27,968 [main] TRACE AbstractWordWriter - replacing hyperlink [36277 - 36295] HYPERLINK String, UML22... +2024-09-08 15:10:27,973 [main] TRACE AbstractWordWriter - No hyperlink added: 'String' for bookmark 'UML22' not in this document. +2024-09-08 15:10:27,976 [main] TRACE AbstractWordWriter - replacing hyperlink [36300 - 36328] HYPERLINK IdentifiedObject, UML32... +2024-09-08 15:10:27,981 [main] TRACE AbstractWordWriter - No hyperlink added: 'IdentifiedObject' for bookmark 'UML32' not in this document. +2024-09-08 15:10:27,985 [main] TRACE AbstractWordWriter - replacing hyperlink [36328 - 36346] HYPERLINK String, UML22... +2024-09-08 15:10:27,990 [main] TRACE AbstractWordWriter - No hyperlink added: 'String' for bookmark 'UML22' not in this document. +2024-09-08 15:10:27,994 [main] TRACE AbstractWordWriter - replacing hyperlink [36351 - 36379] HYPERLINK IdentifiedObject, UML32... +2024-09-08 15:10:27,999 [main] TRACE AbstractWordWriter - No hyperlink added: 'IdentifiedObject' for bookmark 'UML32' not in this document. +2024-09-08 15:10:27,999 [main] INFO Util - time=[0:00:02.274] replaced 247 hyperlink placeholders +2024-09-08 15:10:27,999 [main] INFO Util - +2024-09-08 15:10:28,000 [main] ERROR AbstractWordWriter - There were 8 placeholder replacement failures: +2024-09-08 15:10:28,000 [main] ERROR AbstractWordWriter - $ERROR ATTRIBUTE IEC61970CIMVersion, dummy not found in model$ +2024-09-08 15:10:28,000 [main] ERROR AbstractWordWriter - $ERROR IEC61850_NSNAME IEC61850_7_420Namespace not found in model$ +2024-09-08 15:10:28,000 [main] ERROR AbstractWordWriter - $ERROR DIAGRAM DummyPackage, DummyDiagram not found in model$ +2024-09-08 15:10:28,000 [main] ERROR AbstractWordWriter - $ERROR PACKAGE Dummy not found in model$ +2024-09-08 15:10:28,000 [main] ERROR AbstractWordWriter - $ERROR PACKAGE InformativeAndPrivate not found in model$ +2024-09-08 15:10:28,000 [main] ERROR AbstractWordWriter - $ERROR DIAG_NOTE IEC619_70, Main not found in model$ +2024-09-08 15:10:28,000 [main] ERROR AbstractWordWriter - $ERROR CLASS Core, InexistingClassName not found in model$ +2024-09-08 15:10:28,000 [main] ERROR AbstractWordWriter - $ERROR CLASS Core, DumbSubterminal not found in model$ +2024-09-08 15:10:28,000 [main] INFO AbstractWordWriter - Supported placeholder formats: +2024-09-08 15:10:28,000 [main] INFO AbstractWordWriter - startUmlFile..endUml +startUmlAttribute.className.attrName.endUml +startUmlIec61850NsName.className.endUml +startUmlDiagram.containerName.diagName.endUml +startUmlDiagNote.containerName.diagName.endUml +startUmlPresenceConditions.pckName.endUml +startUmlFCs.pckName.endUml +startUmlTrgOps.pckName.endUml +startUmlAbbreviations.pckName.endUml +startUmlSclEnums.pckName.endUml +startUmlPackage.pckName.endUml +startUmlClass.pckName.className.endUml +startUmlLNMapPackage.pckName.endUml +startUmlDataIndex.pckName.endUml +aaùumlObjectNameùbookmarkIDùdd +2024-09-08 15:10:28,000 [main] DEBUG DocWordWriter - restoring original options +2024-09-08 15:10:28,000 [main] INFO OptimOptions - bringing back original view +2024-09-08 15:10:28,043 [main] INFO OptimOptions - enabling pagination +2024-09-08 15:10:28,081 [main] INFO OptimOptions - enabling field updates +2024-09-08 15:10:28,165 [main] INFO OptimOptions - enabling screen updating +2024-09-08 15:10:28,171 [main] DEBUG DocWordWriter - >> current/restored : OptimOptions [viewId=3, normView=false, paginate=true, updFld=true, updScr=true, fastSave=false, spelling=false, grammar=false] +2024-09-08 15:10:28,171 [main] INFO AbstractWordWriter - updating document fields (takes a while)... +2024-09-08 15:10:28,716 [main] INFO DocWordWriter - updateFields: 545 ms +2024-09-08 15:10:29,142 [main] INFO DocWordWriter - updateTablesOfContents: 426 ms +2024-09-08 15:10:29,481 [main] INFO DocWordWriter - updateTablesOfFigures: 339 ms +2024-09-08 15:10:29,481 [main] INFO Util - time=[0:00:01.310] updated document fields +2024-09-08 15:10:29,481 [main] INFO Util - +2024-09-08 15:10:29,481 [main] INFO DocWordWriter - closing MSWord file 'C:\Users\gigi\git\jCleanCim\output\base-small-tool02v03.docx' +2024-09-08 15:10:30,232 [main] INFO DocWordWriter - exiting MSWord application +2024-09-08 15:10:30,236 [main] INFO Util - time=[0:00:27.249] written documentation to C:\Users\gigi\git\jCleanCim\output\base-small-tool02v03.docx +2024-09-08 15:10:30,237 [main] INFO Util - +2024-09-08 15:10:30,237 [main] INFO Util - time=[0:00:30.981] completed all configured steps - exiting +2024-09-08 15:10:30,238 [main] INFO Util - +2024-09-08 15:10:30,238 [main] INFO JCleanCim - completed at: Sun Sep 08 15:10:30 CEST 2024 +2024-09-08 15:10:30,238 [main] INFO JCleanCim - exiting +2024-09-08 15:11:34,562 [main] INFO JCleanCim - started at: Sun Sep 08 15:11:34 CEST 2024 +2024-09-08 15:11:34,563 [main] INFO JCleanCim - execution environment: +2024-09-08 15:11:34,563 [main] INFO JCleanCim - os.name = Windows 10 +2024-09-08 15:11:34,563 [main] INFO JCleanCim - java.version = 1.8.0_351 +2024-09-08 15:11:34,564 [main] INFO JCleanCim - java.home = C:\Program Files (x86)\Java\jre1.8.0_351 +2024-09-08 15:11:34,564 [main] INFO JCleanCim - java.class.path = C:\Users\gigi\git\jCleanCim\build\prod\classes;C:\Users\gigi\git\jCleanCim\lib\eaapi.jar;C:\Users\gigi\git\jCleanCim\dlls;C:\Users\gigi\git\jCleanCim\lib\commons-cli-1.2.jar;C:\Users\gigi\git\jCleanCim\config;C:\Users\gigi\git\jCleanCim\input;C:\Users\gigi\git\jCleanCim\lib\jacob.jar;C:\Users\gigi\git\jCleanCim\test\config;C:\Users\gigi\git\jCleanCim\test\input;C:\Users\gigi\git\jCleanCim\lib\commons-logging-1.1.1.jar;C:\Users\gigi\git\jCleanCim\lib\log4j-1.2.17.jar;C:\Users\gigi\git\jCleanCim\lib\commons-lang-2.6.jar;C:\Users\gigi\git\jCleanCim\lib\junit-4.8.2.jar;C:\Users\gigi\git\jCleanCim\lib\jackcess-2.1.0.jar;C:\Users\gigi\git\jCleanCim\lib\poi-ooxml-3.15-beta2.jar +2024-09-08 15:11:34,589 [main] INFO Util - loaded properties from resource build.properties +2024-09-08 15:11:34,589 [main] INFO JCleanCim - jCleanCim version: 02v03 +2024-09-08 15:11:34,589 [main] INFO JCleanCim - +2024-09-08 15:11:34,602 [main] INFO Util - loaded properties from resource config.properties +2024-09-08 15:11:34,605 [main] INFO Util - loaded properties from resource config61850.properties +2024-09-08 15:11:34,606 [main] INFO Util - loaded properties from resource build.properties +2024-09-08 15:11:34,614 [main] INFO Config - Unknown model builder value '', using default 'db' (you can use one of [db, sqlxml, japi]). +2024-09-08 15:11:34,619 [main] INFO Config - EA model specified in config.properties: 'C:\Users\gigi\git\jCleanCim\input\base-small.eap' +2024-09-08 15:11:34,620 [main] INFO Config - blank image file: 'C:\Users\gigi\git\jCleanCim\input\blank.png' +2024-09-08 15:11:34,633 [main] DEBUG Config - Property validation.rules.off not found in config.properties. +2024-09-08 15:11:34,634 [main] INFO Util - Creating backup of existing file: C:\Users\gigi\git\jCleanCim\output\pics.100170308322500 +2024-09-08 15:11:34,637 [main] INFO Config - pics output directory: 'C:\Users\gigi\git\jCleanCim\output\pics' +2024-09-08 15:11:34,638 [main] INFO Config - input MS Word template: 'C:\Users\gigi\git\jCleanCim\input\base-small-template.docx' +2024-09-08 15:11:34,639 [main] INFO Util - Creating backup of existing file: C:\Users\gigi\git\jCleanCim\output\base-small-tool02v03.docx.100170312795100 +2024-09-08 15:11:34,640 [main] INFO Config - output MS Word file: 'C:\Users\gigi\git\jCleanCim\output\base-small-tool02v03.docx' +2024-09-08 15:11:34,641 [main] DEBUG Config - Property mibgen.on not found in config.properties. +2024-09-08 15:11:34,641 [main] DEBUG Config - Property docgen.word.styles.prefix.toc not found in config.properties. +2024-09-08 15:11:34,641 [main] DEBUG Config - Property docgen.word.styles.prefix.head not found in config.properties. +2024-09-08 15:11:34,641 [main] DEBUG Config - Property docgen.skipForCustomStereotypes not found in config.properties. +2024-09-08 15:11:34,641 [main] INFO JCleanCim - Config: +app.skipTiming = +docgen.iec61850.includeMetamodelInheritance = +docgen.iec61850.writeUmlTypes = +docgen.includeInformative = +docgen.includeNonPublic = +docgen.on = true +docgen.printHtml = +docgen.showCustomStereotypes = true +docgen.showNamespacePackages = Base, Dynamics, ExtEuBase, Ext1 +docgen.word.analysePlaceholders = +docgen.word.inTemplate = base-small-template.docx +docgen.word.includeInheritancePath = true +docgen.word.introToFigureBefore = +docgen.word.outDocument = base-small-tool02v03.docx +docgen.word.saveReopenEvery = 12 +docgen.word.styles.fig = FIGURE, Picture, Normal, Standard, Normal +docgen.word.styles.figcapt = FIGURE-title, Caption, Beschriftung, Légende +docgen.word.styles.para = PARAGRAPH, Normal, Standard, Normal +docgen.word.styles.tabcapt = TABLE-title, Caption, Beschriftung, Légende +docgen.word.styles.tabcell = TABLE-cell, Normal, Standard, Normal +docgen.word.styles.tabhead = TABLE-col-heading, Normal, Standard, Normal +docgen.word.useDocFormat = true +docgen.word.useHyperlinks = true +docgen.xml.scope = +model.builder = +model.filename = base-small.eap +model.nature.iec61850 = IEC61850Domain, My61850Extensions, NonCIM, IEC61850_SCL_mappings, MyNonCimExtensions +model.picsRelpath = +profiles.crosscheck.on = +profiles.dirnames = +profiles.docgen.on = +profiles.relpath = +project.version = 02v03 +statistics.cim.ignoreDomainClassAttributes = true +statistics.cim.ignoreIdObjectInheritance = true +statistics.on = true +statistics.tagsToIgnore = GUIDBasedOn +validation.associations.off = +validation.attributes.off = +validation.classes.off = +validation.dependencies.off = +validation.diagrams.off = +validation.iec61850.package72Top = IEC61850_7_2 +validation.iec61850.packageFC = FunctionalConstraints +validation.iec61850.packageLnMaps = Functions +validation.iec61850.packageMetaModel = MetaModel +validation.iec61850.packagePresCond = PresenceConditions +validation.iec61850.packageTrgOp = TriggerOptions +validation.iec61850.packages72 = FunctionalConstraints, TriggerOptions, ACSIEnums, CoreTypes, MetaModel +validation.iec61850.packages73 = PresenceConditions, ConstructedDAs, CommonDataClasses, DAEnums,CommonDataClasses_90_3, DAEnums_90_3,CommonDataClasses_90_4, DAEnums_90_4,CommonDataClasses_90_6, DAEnums_90_6,CommonDataClasses_90_8, DAEnums_90_8,CommonDataClasses_90_10, DAEnums_90_10,CommonDataClasses_90_17, DAEnums_90_17,CommonDataClasses_7_410, DAEnums_7_410,CommonDataClasses_7_420, DAEnums_7_420,CommonDataClasses_25_2, DAEnums_25_2 +validation.iec61850.packages74 = Functions, Abbreviations, LogicalNodes, DOEnums,Abbreviations_90_3, LogicalNodes_90_3, DOEnums_90_3,Abbreviations_90_4, LogicalNodes_90_4, DOEnums_90_4,Abbreviations_90_6, LogicalNodes_90_6, DOEnums_90_6,Abbreviations_90_8, LogicalNodes_90_8, DOEnums_90_8,Abbreviations_90_9, LogicalNodes_90_9, DOEnums_90_9,Abbreviations_90_10, LogicalNodes_90_10, DOEnums_90_10,Abbreviations_90_11, LogicalNodes_90_11, DOEnums_90_11,Abbreviations_90_17, LogicalNodes_90_17, DOEnums_90_17,Abbreviations_7_410, LogicalNodes_7_410, DOEnums_7_410,Abbreviations_7_420, LogicalNodes_7_420, DOEnums_7_420,Abbreviations_7_499, LogicalNodes_7_499, DOEnums_7_499,Abbreviations_61869-9, LogicalNodes_61869-9, Abbreviations_62271-3, LogicalNodes_62271-3, Abbreviations_25_2, LogicalNodes_25_2, DOEnums_25_2 +validation.iec61850.packagesBasic = CoreTypes +validation.iec61850.packagesCdc = CommonDataClasses, CommonDataClasses_90_3, CommonDataClasses_90_4, CommonDataClasses_90_6, CommonDataClasses_90_8, CommonDataClasses_90_9, CommonDataClasses_90_10, CommonDataClasses_90_17, CommonDataClasses_7_410, CommonDataClasses_7_420, CommonDataClasses_25_2 +validation.iec61850.packagesDa = ConstructedDAs +validation.iec61850.packagesDoAbbr = Abbreviations, Abbreviations_90_3, Abbreviations_90_4, Abbreviations_90_6, Abbreviations_90_8, Abbreviations_90_9, Abbreviations_90_10, Abbreviations_90_11, Abbreviations_90_17, Abbreviations_7_410, Abbreviations_7_420, Abbreviations_7_499, Abbreviations_61869-9, Abbreviations_62271-3, Abbreviations_25_2 +validation.iec61850.packagesEnumsXml = DomainTypesEnums, DOEnums, DAEnums, DOEnums_90_3, DAEnums_90_3, DOEnums_90_4, DAEnums_90_4, DOEnums_90_6, DAEnums_90_6, DOEnums_90_8, DAEnums_90_8, DOEnums_90_9, DAEnums_90_9, DOEnums_90_10, DAEnums_90_10, DOEnums_90_11, DAEnums_90_11, DOEnums_90_17, DAEnums_90_17, DOEnums_7_410, DAEnums_7_410, DOEnums_7_420, DAEnums_7_420, DOEnums_7_499, DAEnums_7_499, DOEnums_25_2, DAEnums_25_2 +validation.iec61850.packagesLn = LogicalNodes, LogicalNodes_90_3, LogicalNodes_90_4, LogicalNodes_90_6, LogicalNodes_90_8, LogicalNodes_90_9, LogicalNodes_90_10, LogicalNodes_90_11, LogicalNodes_90_17, LogicalNodes_7_410, LogicalNodes_7_420, LogicalNodes_7_499, LogicalNodes_61869-9, LogicalNodes_62271-3, LogicalNodes_7_420, LogicalNodes_25_2 +validation.logging.verbose = +validation.on = true +validation.operations.off = +validation.packages.off = +validation.packagesDataIndex = Core, LogicalNodes, CommonDataClasses, LogicalNodes_90_3, CommonDataClasses_90_3, LogicalNodes_90_4, CommonDataClasses_90_4, LogicalNodes_90_6, CommonDataClasses_90_6, LogicalNodes_90_8, CommonDataClasses_90_8, LogicalNodes_90_9, CommonDataClasses_90_9, LogicalNodes_90_10, CommonDataClasses_90_10, LogicalNodes_90_11, CommonDataClasses_90_11, LogicalNodes_90_17, CommonDataClasses_90_17, LogicalNodes_7_410, CommonDataClasses_7_410, LogicalNodes_7_420, LogicalNodes_7_499, CommonDataClasses_7_420, LogicalNodes_61869-9, LogicalNodes_62271-3, LogicalNodes_25_2, CommonDataClasses_25_2 +validation.scope = +xmiexport.dialects = +xmiexport.on = + +2024-09-08 15:11:34,654 [main] INFO Util - +2024-09-08 15:11:34,654 [main] INFO Util - ================================================ +2024-09-08 15:11:34,654 [main] INFO Util - building model from EA Access DB... +2024-09-08 15:11:34,654 [main] INFO Util - ================================================ +2024-09-08 15:11:34,681 [main] INFO Util - +2024-09-08 15:11:34,681 [main] INFO Util - ------------------------------------------------ +2024-09-08 15:11:34,681 [main] INFO Util - initialising EA builder... +2024-09-08 15:11:34,693 [main] INFO EaModelBuilder - EA version: build n/a +2024-09-08 15:11:34,713 [main] INFO Util - time=[0:00:00.012] initialised EA builder. +2024-09-08 15:11:34,714 [main] INFO Util - +2024-09-08 15:11:34,714 [main] INFO Util - +2024-09-08 15:11:34,714 [main] INFO Util - ------------------------------------------------ +2024-09-08 15:11:34,714 [main] INFO Util - opening EA file 'C:\Users\gigi\git\jCleanCim\input\base-small.eap'... +2024-09-08 15:11:34,984 [main] INFO Util - time=[0:00:00.270] opened EA file. +2024-09-08 15:11:34,985 [main] INFO Util - +2024-09-08 15:11:34,993 [main] INFO Util - +2024-09-08 15:11:34,994 [main] INFO Util - ------------------------------------------------ +2024-09-08 15:11:34,994 [main] INFO Util - running bulk queries... +2024-09-08 15:11:34,998 [main] INFO DbSelector - loading table t_xref +2024-09-08 15:11:35,136 [main] INFO DbSelector - 138 ms: populated 1240 items with tags: [Type, Description, Client, Name] +2024-09-08 15:11:35,137 [main] INFO DbSelector - .......... +2024-09-08 15:11:35,148 [main] INFO DbSelector - loading table t_package +2024-09-08 15:11:35,163 [main] INFO DbSelector - 15 ms: populated 84 items with tags: [Package_ID, TPos, Parent_ID, ea_guid, Notes, Name] +2024-09-08 15:11:35,163 [main] INFO DbSelector - .......... +2024-09-08 15:11:35,164 [main] INFO DbSelector - loading table t_diagram +2024-09-08 15:11:35,183 [main] INFO DbSelector - 19 ms: populated 104 items with tags: [ParentID, Package_ID, TPos, Stereotype, Diagram_Type, ea_guid, Orientation, Diagram_ID, Notes, Name] +2024-09-08 15:11:35,183 [main] INFO DbSelector - .......... +2024-09-08 15:11:35,183 [main] INFO DbSelector - loading table t_object +2024-09-08 15:11:35,246 [main] INFO DbSelector - 63 ms: populated 697 items with tags: [ParentID, Object_Type, IsRoot, IsLeaf, Package_ID, Abstract, TPos, ea_guid, Name, Persistence, Object_ID, Scope, Alias, Note, NType] +2024-09-08 15:11:35,246 [main] INFO DbSelector - .......... +2024-09-08 15:11:35,253 [main] INFO DbSelector - loading table t_objectconstraint +2024-09-08 15:11:35,255 [main] INFO DbSelector - 2 ms: populated 55 items with tags: [Object_ID, Constraint, Notes] +2024-09-08 15:11:35,255 [main] INFO DbSelector - .......... +2024-09-08 15:11:35,256 [main] INFO DbSelector - loading table t_objectproperties +2024-09-08 15:11:35,257 [main] INFO DbSelector - 1 ms: populated 50 items with tags: [Object_ID, Value, Property] +2024-09-08 15:11:35,258 [main] INFO DbSelector - .......... +2024-09-08 15:11:35,258 [main] INFO DbSelector - loading table t_attribute +2024-09-08 15:11:35,289 [main] INFO DbSelector - 31 ms: populated 762 items with tags: [LowerBound, Const, ea_guid, Classifier, IsStatic, Default, Name, Type, Object_ID, Scope, Pos, UpperBound, Style, ID, Notes] +2024-09-08 15:11:35,289 [main] INFO DbSelector - .......... +2024-09-08 15:11:35,292 [main] INFO DbSelector - loading table t_attributeconstraints +2024-09-08 15:11:35,293 [main] INFO DbSelector - 1 ms: populated 9 items with tags: [Constraint, ID, Notes] +2024-09-08 15:11:35,293 [main] INFO DbSelector - .......... +2024-09-08 15:11:35,293 [main] INFO DbSelector - loading table t_attributetag +2024-09-08 15:11:35,295 [main] INFO DbSelector - 2 ms: populated 12 items with tags: [VALUE, Property, ElementID] +2024-09-08 15:11:35,295 [main] INFO DbSelector - .......... +2024-09-08 15:11:35,296 [main] INFO DbSelector - loading table t_operation +2024-09-08 15:11:35,298 [main] INFO DbSelector - 2 ms: populated 17 items with tags: [ReturnArray, IsLeaf, OperationID, Abstract, ea_guid, Classifier, IsStatic, Name, Type, Object_ID, Scope, Pos, Style, Notes] +2024-09-08 15:11:35,298 [main] INFO DbSelector - .......... +2024-09-08 15:11:35,299 [main] INFO DbSelector - loading table t_operationtag +2024-09-08 15:11:35,300 [main] INFO DbSelector - 1 ms: populated 5 items with tags: [VALUE, Property, ElementID] +2024-09-08 15:11:35,300 [main] INFO DbSelector - .......... +2024-09-08 15:11:35,301 [main] INFO DbSelector - loading table t_operationparams +2024-09-08 15:11:35,303 [main] INFO DbSelector - 2 ms: populated 10 items with tags: [Type, Pos, OperationID, StyleEx, ea_guid, Classifier, Notes, Name] +2024-09-08 15:11:35,303 [main] INFO DbSelector - .......... +2024-09-08 15:11:35,303 [main] INFO DbSelector - loading table t_connector +2024-09-08 15:11:35,341 [main] INFO DbSelector - 38 ms: populated 501 items with tags: [SourceRole, Connector_Type, SourceCard, SourceStyle, DestStyle, DestIsAggregate, ea_guid, Connector_ID, Direction, SourceIsAggregate, DestAccess, Name, Start_Object_ID, End_Object_ID, DestRole, DestRoleNote, StyleEx, DestCard, SourceRoleNote, SourceAccess, Notes] +2024-09-08 15:11:35,341 [main] INFO DbSelector - .......... +2024-09-08 15:11:35,348 [main] INFO DbSelector - loading table t_connectortag +2024-09-08 15:11:35,353 [main] INFO DbSelector - 5 ms: populated 7 items with tags: [VALUE, Property, ElementID] +2024-09-08 15:11:35,355 [main] INFO DbSelector - .......... +2024-09-08 15:11:35,355 [main] INFO DbSelector - loading table t_taggedvalue +2024-09-08 15:11:35,358 [main] INFO DbSelector - 3 ms: populated 10 items with tags: [BaseClass, TagValue, ElementID, Notes] +2024-09-08 15:11:35,359 [main] INFO DbSelector - .......... +2024-09-08 15:11:35,360 [main] DEBUG EaTables - +++ no connRow for connGuid = {7D6344F7-A5AB-43fe-A844-BA70EA5BDFF9} +2024-09-08 15:11:35,361 [main] INFO Util - time=[0:00:00.366] done bulk queries. +2024-09-08 15:11:35,361 [main] INFO Util - +2024-09-08 15:11:35,361 [main] INFO Util - +2024-09-08 15:11:35,361 [main] INFO Util - ------------------------------------------------ +2024-09-08 15:11:35,361 [main] INFO Util - building model from EA tables (as EAP DB)... +2024-09-08 15:11:35,486 [main] INFO PackageBuilder - processing model package TC57CIMProfiles (0) ... +2024-09-08 15:11:35,510 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=TC57CIMProfiles, _objData=UmlObjectData [id=332, uuid={1F44F334-CECE-43de-BA4C-15818B04F849}, since=null, name=TC57CIMProfiles, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=PACKAGE] +2024-09-08 15:11:35,512 [main] TRACE PackageBuilder - read PackageBuilder [_kind=MODEL, _depth=-1, _eaElementID=3095, _objData=UmlObjectData [id=177, uuid={F1BAE623-69C8-4115-BD68-C48157E7637C}, since=null, name=TC57CIMProfiles, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=177, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=TC57CIMProfiles, _objData=UmlObjectData [id=332, uuid={1F44F334-CECE-43de-BA4C-15818B04F849}, since=null, name=TC57CIMProfiles, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=PACKAGE]] +2024-09-08 15:11:35,512 [main] INFO PackageBuilder - processing model package TC57CIM (1) ... +2024-09-08 15:11:35,528 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=TC57CIM, _objData=UmlObjectData [id=1, uuid={7ECA7523-5E2A-40a0-A7B1-BE02958F3D9C}, since=null, name=Main, alias=, stereotype=diagStereotype, oneMoreDiagStereo, visibility=public, txtDescription='This diagram shows all Packages included in this CIM model.', htmlDescription='

This diagram shows all Packages included in this CIM model.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:35,530 [main] INFO PackageBuilder - processing top package Informative (1) ... +2024-09-08 15:11:35,530 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Informative, _objData=UmlObjectData [id=171, uuid={42D53082-F199-4c03-89A0-15308EF3019C}, since=null, name=Informative, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:35,532 [main] ERROR EaTables - [+++ EA ordering problem for 6 class(s) in Informative (manually move back/forth a class to initiate EA internal ordering update!): +, +++ class Class1: pos = 0 +, +++ class End1ForAssocClass: pos = 0 DUPLICATE +, +++ class End2ForAssocClass: pos = 0 DUPLICATE +, +++ class AssocClass: pos = 0 DUPLICATE +, +++ class HasIllegalTypeForAttr: pos = 0 DUPLICATE +, +++ class SomeSimpleType: pos = 0 DUPLICATE +] +2024-09-08 15:11:35,557 [main] TRACE ClassBuilder - Class Class1 (0 in package Informative) +2024-09-08 15:11:35,585 [main] DEBUG AssociationEndBuilder - Updated target type to Class1 +2024-09-08 15:11:35,586 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=9, uuid=d9bbaaab-88c8-37ca-b324-ef05c8e21d9f, since=null, name=MyClass, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=10, uuid=eae8cb7a-f8f8-3531-a271-d09a8cc84d5c, since=null, name=Class1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class1, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2130, uuid={06ABE750-E688-496b-A200-8708982212FA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,586 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=9, uuid=d9bbaaab-88c8-37ca-b324-ef05c8e21d9f, since=null, name=MyClass, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=10, uuid=eae8cb7a-f8f8-3531-a271-d09a8cc84d5c, since=null, name=Class1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class1, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2130, uuid={06ABE750-E688-496b-A200-8708982212FA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Informative::Class1 +2024-09-08 15:11:35,586 [main] TRACE ClassBuilder - read from EA: Informative::Class1 +2024-09-08 15:11:35,586 [main] TRACE ClassBuilder - Class End1ForAssocClass (0 in package Informative) +2024-09-08 15:11:35,587 [main] DEBUG AssociationEndBuilder - Updated source type to End1ForAssocClass +2024-09-08 15:11:35,587 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=13, uuid=c51ce410-c124-310e-8db5-e4b97fc2af39, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=End1ForAssocClass, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=14, uuid=aab32389-22bc-325a-af60-6eb525ffdc56, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=unspecified], _objData=UmlObjectData [id=2133, uuid={175AA1AC-B15C-4ccc-8BE5-A8951025FF94}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,587 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=13, uuid=c51ce410-c124-310e-8db5-e4b97fc2af39, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=End1ForAssocClass, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=14, uuid=aab32389-22bc-325a-af60-6eb525ffdc56, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=unspecified], _objData=UmlObjectData [id=2133, uuid={175AA1AC-B15C-4ccc-8BE5-A8951025FF94}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Informative::End1ForAssocClass +2024-09-08 15:11:35,587 [main] TRACE ClassBuilder - read from EA: Informative::End1ForAssocClass +2024-09-08 15:11:35,587 [main] TRACE ClassBuilder - Class End2ForAssocClass (0 in package Informative) +2024-09-08 15:11:35,587 [main] DEBUG AssociationEndBuilder - Updated target type to End2ForAssocClass +2024-09-08 15:11:35,587 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=13, uuid=c51ce410-c124-310e-8db5-e4b97fc2af39, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=End1ForAssocClass, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=14, uuid=aab32389-22bc-325a-af60-6eb525ffdc56, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=End2ForAssocClass, _multiplicity=[?..?], _navigable=unspecified], _objData=UmlObjectData [id=2133, uuid={175AA1AC-B15C-4ccc-8BE5-A8951025FF94}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Informative::End2ForAssocClass +2024-09-08 15:11:35,588 [main] TRACE ClassBuilder - read from EA: Informative::End2ForAssocClass +2024-09-08 15:11:35,588 [main] TRACE ClassBuilder - Class AssocClass (0 in package Informative) +2024-09-08 15:11:35,588 [main] TRACE ClassBuilder - read from EA: Informative::AssocClass +2024-09-08 15:11:35,588 [main] TRACE ClassBuilder - Class HasIllegalTypeForAttr (0 in package Informative) +2024-09-08 15:11:35,589 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Informative::HasIllegalTypeForAttr, _objData=UmlObjectData [id=3284, uuid={37EE993E-B7A3-4940-8707-E8C0C720D620}, since=null, name=dummy, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=860, _eaTypeName=Bay, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,590 [main] TRACE ClassBuilder - read from EA: Informative::HasIllegalTypeForAttr +2024-09-08 15:11:35,590 [main] TRACE ClassBuilder - Class SomeSimpleType (0 in package Informative) +2024-09-08 15:11:35,590 [main] TRACE ClassBuilder - read from EA: Informative::SomeSimpleType +2024-09-08 15:11:35,590 [main] TRACE PackageBuilder - read PackageBuilder [_kind=TOP, _containingPackage=TC57CIM, _depth=0, _eaElementID=1494, _objData=UmlObjectData [id=71, uuid={00408437-C182-4d22-989A-93854EC27FFF}, since=null, name=Informative, alias=, stereotype=TempPckStereo, SecondPckStereo, visibility=public, txtDescription='', htmlDescription=''], _modelId=2, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=Informative, _objData=UmlObjectData [id=171, uuid={42D53082-F199-4c03-89A0-15308EF3019C}, since=null, name=Informative, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _classes=6 +2024-09-08 15:11:35,590 [main] INFO PackageBuilder - processing top package IEC61970 (2) ... +2024-09-08 15:11:35,591 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=IEC61970, _objData=UmlObjectData [id=111, uuid={FB07D92D-5F4D-4fdc-AD82-2376FAF51037}, since=null, name=Main, alias=, stereotype=, visibility=public, txtDescription=''This diagram shows all 61970 packages and their logical dependencies. +Test bold ignored.', htmlDescription='

'This diagram shows all 61970 packages and their logical dependencies.

Test bold ignored.

'], _portrait=false, _kind=LOGICAL] +2024-09-08 15:11:35,596 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->TC57CIM::IEC61970, _objData=UmlObjectData [id=3446, uuid={814038F7-206E-42aa-8183-AE2E302175F9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,596 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->TC57CIM::IEC61970, _objData=UmlObjectData [id=3447, uuid={78B6C7F1-FC16-4b0c-A685-CD6711DBB0A3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,596 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->TC57CIM::IEC61970, _objData=UmlObjectData [id=3449, uuid={51951675-AE25-4ac7-AA97-9DF3741A7BB9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,602 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=STATE, _isConnector=false, _objData=UmlObjectData [id=1497, uuid={5D5CC973-30B7-4d45-8CF7-92688076EFE3}, since=null, name=StateInPackage, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=IEC61970, _otherEndName=] +2024-09-08 15:11:35,602 [main] TRACE ClassBuilder - Class IEC61970CIMVersion (0 in package IEC61970) +2024-09-08 15:11:35,603 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61970::IEC61970CIMVersion, _objData=UmlObjectData [id=1271, uuid={8DADB97F-283D-40c7-A25A-D75E4C0D8507}, since=null, name=date, alias=, stereotype=, visibility=public, txtDescription='Form is YYYY-MM-DD for example for January 5, 2009 it is 2009-01-05. +Note: Bad date format on purpose.', htmlDescription='

Form is YYYY-MM-DD for example for January 5, 2009 it is 2009-01-05.

Note: Bad date format on purpose.

'], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=20119-08-01, _eaTypeId=640, _eaTypeName=AbsoluteDateTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,603 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61970::IEC61970CIMVersion, _objData=UmlObjectData [id=1272, uuid={B4E0B1B6-8794-406a-A4C6-CBB395E37A52}, since=null, name=version, alias=, stereotype=, visibility=public, txtDescription='Form is IEC61970CIMXXvYY where XX is the major CIM package version and the YY is the minor version. For ecample IEC61970CIM13v18.', htmlDescription='

Form is IEC61970CIMXXvYY where XX is the major CIM package version and the YY is the minor version. For ecample IEC61970CIM13v18.

'], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=IEC61970CIM14v12, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,603 [main] TRACE ClassBuilder - read from EA: IEC61970::IEC61970CIMVersion +2024-09-08 15:11:35,604 [main] INFO PackageBuilder - processing package InformativeAndPrivate (1) ... +2024-09-08 15:11:35,604 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=InformativeAndPrivate, _objData=UmlObjectData [id=157, uuid={92D3B208-D121-484b-A06A-60F4509332B7}, since=null, name=Informative, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:35,604 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=2102, uuid={6D2E1FAD-19CA-4e94-8EF5-ED52FEBE9A83}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=InformativeAndPrivate, _otherEndName=Package 'Other'] +2024-09-08 15:11:35,605 [main] TRACE ClassBuilder - Class InfClass2 (1 in package InformativeAndPrivate) +2024-09-08 15:11:35,606 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=InformativeAndPrivate::InfClass2, _objData=UmlObjectData [id=6709, uuid={2BFC1914-ECFF-49b5-8F28-BF20BD1E1FE3}, since=null, name=isToto, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,606 [main] DEBUG AssociationEndBuilder - Updated target type to InfClass2 +2024-09-08 15:11:35,607 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=35, uuid=2f9290f0-d27a-3d97-ae39-5fb8a74e9bfd, since=null, name=C1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified, 1_taggedValues{srcTag=a2}], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=36, uuid=085b8b1d-ca40-3c55-9182-189f9ca828d4, since=null, name=C2, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=InfClass2, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2096, uuid={5145D6E8-2DF0-42c7-9CB4-FF75741DBBFA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false, 1_taggedValues{assocTag=a1}] +2024-09-08 15:11:35,607 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=35, uuid=2f9290f0-d27a-3d97-ae39-5fb8a74e9bfd, since=null, name=C1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified, 1_taggedValues{srcTag=a2}], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=36, uuid=085b8b1d-ca40-3c55-9182-189f9ca828d4, since=null, name=C2, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=InfClass2, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2096, uuid={5145D6E8-2DF0-42c7-9CB4-FF75741DBBFA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false, 1_taggedValues{assocTag=a1}] as target to InformativeAndPrivate::InfClass2 +2024-09-08 15:11:35,607 [main] TRACE ClassBuilder - read from EA: InformativeAndPrivate::InfClass2 +2024-09-08 15:11:35,607 [main] TRACE ClassBuilder - Class InfClassContainingEmbeddedClass (2 in package InformativeAndPrivate) +2024-09-08 15:11:35,607 [main] TRACE ClassBuilder - Class EmbeddedClass (0 in package InformativeAndPrivate) +2024-09-08 15:11:35,607 [main] TRACE ClassBuilder - read from EA: InformativeAndPrivate::EmbeddedClass +2024-09-08 15:11:35,608 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=false, _objData=UmlObjectData [id=1496, uuid={A7ED1A2C-8304-40f4-8CF5-D03A18C789CF}, since=null, name=EmbeddedClass, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=InfClassContainingEmbeddedClass, _otherEndName=] +2024-09-08 15:11:35,608 [main] DEBUG AssociationEndBuilder - Updated source type to InfClassContainingEmbeddedClass +2024-09-08 15:11:35,608 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=35, uuid=2f9290f0-d27a-3d97-ae39-5fb8a74e9bfd, since=null, name=C1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=InfClassContainingEmbeddedClass, _multiplicity=[0..1], _navigable=unspecified, 1_taggedValues{srcTag=a2}], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=36, uuid=085b8b1d-ca40-3c55-9182-189f9ca828d4, since=null, name=C2, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=InfClass2, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2096, uuid={5145D6E8-2DF0-42c7-9CB4-FF75741DBBFA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false, 1_taggedValues{assocTag=a1}] as source to InformativeAndPrivate::InfClassContainingEmbeddedClass +2024-09-08 15:11:35,608 [main] TRACE ClassBuilder - read from EA: InformativeAndPrivate::InfClassContainingEmbeddedClass +2024-09-08 15:11:35,608 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61970, _depth=1, _eaElementID=1448, _objData=UmlObjectData [id=55, uuid={D77F6B2A-FE65-4b60-9074-2C6AE2A60EC4}, since=null, name=InformativeAndPrivate, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _modelId=2, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=2102, uuid={6D2E1FAD-19CA-4e94-8EF5-ED52FEBE9A83}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=InformativeAndPrivate, _otherEndName=Package 'Other']], 1_diagrams=[DiagramBuilder [_containingPackage=InformativeAndPrivate, _objData=UmlObjectData [id=157, uuid={92D3B208-D121-484b-A06A-60F4509332B7}, since=null, name=Informative, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _classes=2 +2024-09-08 15:11:35,609 [main] INFO PackageBuilder - processing package DocIEC61970 (2) ... +2024-09-08 15:11:35,609 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=DocIEC61970, _objData=UmlObjectData [id=321, uuid={0BB28151-6215-4b7c-B4B8-991AF32678BA}, since=null, name=MyDocFigure, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:35,610 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3028, uuid={FCA86298-2230-4142-B759-5A340015A28D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Documentation diagram: Although within an informative package, it should always be exported if generating doc enabled.', htmlDescription='

Documentation diagram: Although within an informative package, it should always be exported if generating doc enabled.

'], _containingPackage=DocIEC61970, _otherEndName=] +2024-09-08 15:11:35,611 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61970, _depth=1, _eaElementID=3027, _objData=UmlObjectData [id=166, uuid={295EC851-E939-47e6-AD36-5B756D64E8A3}, since=null, name=DocIEC61970, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=2, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3028, uuid={FCA86298-2230-4142-B759-5A340015A28D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Documentation diagram: Although within an informative package, it should always be exported if generating doc enabled.', htmlDescription='

Documentation diagram: Although within an informative package, it should always be exported if generating doc enabled.

'], _containingPackage=DocIEC61970, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=DocIEC61970, _objData=UmlObjectData [id=321, uuid={0BB28151-6215-4b7c-B4B8-991AF32678BA}, since=null, name=MyDocFigure, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]] +2024-09-08 15:11:35,611 [main] INFO PackageBuilder - processing package Domain (3) ... +2024-09-08 15:11:35,612 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Domain, _objData=UmlObjectData [id=119, uuid={DB3006EC-40EF-48f9-AE0B-54A4590505A4}, since=null, name=BasicDatatypes, alias=, stereotype=oneDiaStero, secondDiaStereo, visibility=public, txtDescription='This diagram shows basic datatypes that are the basis for all other datatypes.', htmlDescription='

This diagram shows basic datatypes that are the basis for all other datatypes.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:35,612 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Domain, _objData=UmlObjectData [id=117, uuid={83A53C50-B2DB-4b88-B1DB-E520708685BF}, since=null, name=TimeDatatypes, alias=, stereotype=docStero, visibility=public, txtDescription='This diagram show time related data types', htmlDescription='

This diagram show time related data types

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:35,612 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61970::Domain, _objData=UmlObjectData [id=485, uuid={0FBB1D80-1C4A-4f3f-9812-CD22581D58B6}, since=null, name=, alias=, stereotype=deprecated, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,615 [main] TRACE ClassBuilder - Class AbsoluteDateTime (1 in package Domain) +2024-09-08 15:11:35,616 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::AbsoluteDateTime, _objData=UmlObjectData [id=1440, uuid={CFF950F8-C337-424c-97FF-B8A4168598B5}, since=null, name=protectedAttribute, alias=, stereotype=, visibility=protected, txtDescription='String representation of date and time, refer to description of the class.', htmlDescription='

String representation of date and time, refer to description of the class.

'], _isConst=false, _isStatic=false, _multiplicity=[2..5], _initValue=, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,616 [main] TRACE ClassBuilder - read from EA: Domain::AbsoluteDateTime +2024-09-08 15:11:35,616 [main] TRACE ClassBuilder - Class ActivePower (2 in package Domain) +2024-09-08 15:11:35,617 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::ActivePower, _objData=UmlObjectData [id=1434, uuid={A3961E95-7DD0-4d68-A41A-FDC07295CD2B}, since=null, name=multiplier, alias=, stereotype=European, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=634, _eaTypeName=UnitMultiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,617 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::ActivePower, _objData=UmlObjectData [id=1435, uuid={8C27ACD4-E6D7-407f-B0AF-B545966B9337}, since=null, name=unit, alias=, stereotype=deprecated, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=W, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,617 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::ActivePower, _objData=UmlObjectData [id=1436, uuid={133597D7-9050-4335-B968-86AF7E16558C}, since=null, name=value, alias=, stereotype=custom, invalid, European, deprecated, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,618 [main] TRACE ClassBuilder - read from EA: Domain::ActivePower +2024-09-08 15:11:35,618 [main] TRACE ClassBuilder - Class ActivePowerChangeRate (3 in package Domain) +2024-09-08 15:11:35,618 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::ActivePowerChangeRate, _objData=UmlObjectData [id=1402, uuid={127E7AD6-A19D-4a00-84C2-6DE69D31A319}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=634, _eaTypeName=UnitMultiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,619 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::ActivePowerChangeRate, _objData=UmlObjectData [id=1403, uuid={D89B1C84-0EB0-4ea0-ACD8-F59965B01026}, since=null, name=unit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=true, _multiplicity=[0..1], _initValue=W/s, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,619 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::ActivePowerChangeRate, _objData=UmlObjectData [id=1404, uuid={9AC71195-FE05-4022-805D-524DFF496593}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=0, _eaTypeName=dummy, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,620 [main] TRACE ClassBuilder - read from EA: Domain::ActivePowerChangeRate +2024-09-08 15:11:35,620 [main] TRACE ClassBuilder - Class ApparentPower (4 in package Domain) +2024-09-08 15:11:35,620 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::ApparentPower, _objData=UmlObjectData [id=1368, uuid={C363463C-85C7-487f-BE31-B6444DAB07DD}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=634, _eaTypeName=UnitMultiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,620 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::ApparentPower, _objData=UmlObjectData [id=1369, uuid={C93DE952-5AF9-40cc-9792-4D2372DC5EEF}, since=null, name=unit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=VA, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,621 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::ApparentPower, _objData=UmlObjectData [id=1370, uuid={FEE24CD4-5876-4e4c-B179-AEAA3E11B738}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{tag=val}] +2024-09-08 15:11:35,621 [main] TRACE ClassBuilder - read from EA: Domain::ApparentPower +2024-09-08 15:11:35,624 [main] TRACE ClassBuilder - Class Boolean (5 in package Domain) +2024-09-08 15:11:35,624 [main] TRACE ClassBuilder - read from EA: Domain::Boolean +2024-09-08 15:11:35,624 [main] TRACE ClassBuilder - Class Currency (6 in package Domain) +2024-09-08 15:11:35,625 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Currency, _objData=UmlObjectData [id=1287, uuid={BD7715AD-8607-429e-905E-CA26C170ECBF}, since=null, name=USD, alias=, stereotype=enum, visibility=public, txtDescription='US dollar', htmlDescription='

US dollar

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,625 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Currency, _objData=UmlObjectData [id=1288, uuid={F9D2BF52-65C4-45f2-91C7-F0990AF9B19F}, since=null, name=EUR, alias=, stereotype=enum, visibility=public, txtDescription='European euro', htmlDescription='

European euro

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,625 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Currency, _objData=UmlObjectData [id=1289, uuid={B68ED9D0-E666-4c95-B4C8-3A2C8760C838}, since=null, name=AUD, alias=, stereotype=enum, visibility=public, txtDescription='Australian dollar', htmlDescription='

Australian dollar

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,625 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Currency, _objData=UmlObjectData [id=1290, uuid={911D1995-C80E-4d3e-914F-A68C43786DDB}, since=null, name=CAD, alias=, stereotype=enum, visibility=public, txtDescription='Canadian dollar', htmlDescription='

Canadian dollar

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,626 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Currency, _objData=UmlObjectData [id=1291, uuid={5EFD5A2E-31B9-4aea-84D5-914F1C0A31DC}, since=null, name=CHF, alias=, stereotype=enum, visibility=public, txtDescription='Swiss francs', htmlDescription='

Swiss francs

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,626 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Currency, _objData=UmlObjectData [id=1292, uuid={FE84795F-1D80-4a7f-B2FC-E502533890BD}, since=null, name=CNY, alias=, stereotype=enum, visibility=public, txtDescription='Chinese yuan renminbi', htmlDescription='

Chinese yuan renminbi

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,626 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Currency, _objData=UmlObjectData [id=1293, uuid={2B725900-37D7-430e-A696-95A9DE1853F5}, since=null, name=DKK, alias=, stereotype=enum, visibility=public, txtDescription='Danish crown', htmlDescription='

Danish crown

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,626 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Currency, _objData=UmlObjectData [id=1294, uuid={5284C310-CFA9-4f8c-9FC1-89878D959008}, since=null, name=GBP, alias=, stereotype=enum, visibility=public, txtDescription='British pound', htmlDescription='

British pound

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,627 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Currency, _objData=UmlObjectData [id=1295, uuid={D6821076-1C19-4116-9141-1E3B66B12E37}, since=null, name=JPY, alias=, stereotype=enum, visibility=public, txtDescription='Japanese yen', htmlDescription='

Japanese yen

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,627 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Currency, _objData=UmlObjectData [id=1296, uuid={C8641234-DC52-4a27-84B0-840661758085}, since=null, name=NOK, alias=, stereotype=enum, visibility=public, txtDescription='Norwegian crown', htmlDescription='

Norwegian crown

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,627 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Currency, _objData=UmlObjectData [id=1297, uuid={4EA192E2-0BD3-4085-8CE4-6078AEA30D97}, since=null, name=RUR, alias=, stereotype=enum, visibility=public, txtDescription='Russian ruble', htmlDescription='

Russian ruble

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,627 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Currency, _objData=UmlObjectData [id=1298, uuid={52FEE14B-6D80-4799-97EE-C8B3734C7B0F}, since=null, name=SEK, alias=, stereotype=enum, visibility=public, txtDescription='Swedish crown', htmlDescription='

Swedish crown

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,627 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Currency, _objData=UmlObjectData [id=1299, uuid={ABB74D98-5437-40d9-AB9B-575FF2F27A53}, since=null, name=INR, alias=, stereotype=enum, visibility=public, txtDescription='India rupees', htmlDescription='

India rupees

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,628 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Currency, _objData=UmlObjectData [id=1300, uuid={3D3DF56A-8E85-4f34-AD5D-C16CB7171783}, since=null, name=other, alias=, stereotype=enum, deprecated, visibility=public, txtDescription='Another type of currency.', htmlDescription='

Another type of currency.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,628 [main] TRACE ClassBuilder - read from EA: Domain::Currency +2024-09-08 15:11:35,628 [main] TRACE ClassBuilder - Class Float (7 in package Domain) +2024-09-08 15:11:35,629 [main] TRACE ClassBuilder - read from EA: Domain::Float +2024-09-08 15:11:35,629 [main] TRACE ClassBuilder - Class Integer (8 in package Domain) +2024-09-08 15:11:35,629 [main] TRACE ClassBuilder - read from EA: Domain::Integer +2024-09-08 15:11:35,629 [main] TRACE ClassBuilder - Class Money (9 in package Domain) +2024-09-08 15:11:35,629 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Money, _objData=UmlObjectData [id=1323, uuid={86CC9B3D-6DFC-4a34-9152-1BD808FBDD41}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=634, _eaTypeName=UnitMultiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,630 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Money, _objData=UmlObjectData [id=1324, uuid={FA0E49C2-B5F3-4084-948C-2A553D874695}, since=null, name=unit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=600, _eaTypeName=Currency, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,630 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Money, _objData=UmlObjectData [id=1325, uuid={FD1C5A68-05E0-448a-9515-88FB188D1A41}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,630 [main] TRACE ClassBuilder - read from EA: Domain::Money +2024-09-08 15:11:35,630 [main] TRACE ClassBuilder - Class PerCent (10 in package Domain) +2024-09-08 15:11:35,630 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::PerCent, _objData=UmlObjectData [id=1365, uuid={A2810EB7-9B4B-4386-9EE5-CAE5AB1E6E2C}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=none, _eaTypeId=634, _eaTypeName=UnitMultiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,630 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::PerCent, _objData=UmlObjectData [id=1366, uuid={A1336F58-9A3A-462d-A932-4C80CE9A24AB}, since=null, name=unit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=none, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,631 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::PerCent, _objData=UmlObjectData [id=1367, uuid={3F3F1095-2284-438d-89FF-699BCA187532}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='Normally 0 - 100 on a defined base', htmlDescription='

Normally 0 - 100 on a defined base

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,631 [main] TRACE ClassBuilder - read from EA: Domain::PerCent +2024-09-08 15:11:35,631 [main] TRACE ClassBuilder - Class Seconds (11 in package Domain) +2024-09-08 15:11:35,631 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Seconds, _objData=UmlObjectData [id=1377, uuid={DF58DF5F-F450-4b71-A1A9-1BBA5C696E5C}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=none, _eaTypeId=634, _eaTypeName=UnitMultiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,632 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Seconds, _objData=UmlObjectData [id=1378, uuid={383E0AEB-B11C-4c02-8C56-5E84FCDA0D3B}, since=null, name=unit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=s, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,632 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Seconds, _objData=UmlObjectData [id=1379, uuid={EC69405D-C44E-4c12-BAD5-58A3C1375649}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='Time, in seconds', htmlDescription='

Time, in seconds

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,632 [main] TRACE ClassBuilder - read from EA: Domain::Seconds +2024-09-08 15:11:35,632 [main] TRACE ClassBuilder - Class String (12 in package Domain) +2024-09-08 15:11:35,632 [main] TRACE ClassBuilder - read from EA: Domain::String +2024-09-08 15:11:35,632 [main] TRACE ClassBuilder - Class UnitMultiplier (13 in package Domain) +2024-09-08 15:11:35,633 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitMultiplier, _objData=UmlObjectData [id=1417, uuid={90F83546-DD55-4cf8-9E01-DD8F69D74A8D}, since=null, name=p, alias=, stereotype=enum, visibility=public, txtDescription='Pico 10-12', htmlDescription='

Pico 10-12

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,633 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitMultiplier, _objData=UmlObjectData [id=1418, uuid={EA61DA27-05DF-41c7-B459-F1194928062C}, since=null, name=n, alias=, stereotype=enum, visibility=public, txtDescription='Nano 10-9', htmlDescription='

Nano 10-9

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,633 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitMultiplier, _objData=UmlObjectData [id=1419, uuid={FF8E9CD6-A459-47ab-A71E-E69857742CE1}, since=null, name=micro, alias=, stereotype=enum, visibility=public, txtDescription='Micro 10**-6', htmlDescription='

Micro 10**-6

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,633 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitMultiplier, _objData=UmlObjectData [id=1420, uuid={E7A60C22-3D12-49c5-8F18-870B1A39A1AA}, since=null, name=m, alias=, stereotype=enum, visibility=public, txtDescription='Milli 10**-3', htmlDescription='

Milli 10**-3

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,634 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitMultiplier, _objData=UmlObjectData [id=1421, uuid={1219082C-9AED-439c-B862-8CA874195BA0}, since=null, name=c, alias=, stereotype=enum, visibility=public, txtDescription='Centi 10**-2', htmlDescription='

Centi 10**-2

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,634 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitMultiplier, _objData=UmlObjectData [id=1422, uuid={4E630955-DF5D-403d-A377-7ED5FF85978D}, since=null, name=d, alias=, stereotype=enum, visibility=public, txtDescription='Deci 10**-1', htmlDescription='

Deci 10**-1

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,634 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitMultiplier, _objData=UmlObjectData [id=1423, uuid={C868627C-3B72-4bc8-879D-E177E9059A22}, since=null, name=k, alias=, stereotype=enum, visibility=public, txtDescription='Kilo 10**3', htmlDescription='

Kilo 10**3

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,634 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitMultiplier, _objData=UmlObjectData [id=1424, uuid={F956FDD6-8C6E-427d-A51A-22A1D75BE1C3}, since=null, name=M, alias=, stereotype=enum, visibility=public, txtDescription='Mega 10**6', htmlDescription='

Mega 10**6

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,634 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitMultiplier, _objData=UmlObjectData [id=1425, uuid={351B5D79-6203-48e5-9D9E-ECD7FB7CA8A6}, since=null, name=G, alias=, stereotype=enum, visibility=public, txtDescription='Giga 10**9', htmlDescription='

Giga 10**9

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,634 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitMultiplier, _objData=UmlObjectData [id=1426, uuid={F5185FB9-24E6-47c6-BB4D-259FDF678329}, since=null, name=T, alias=, stereotype=enum, visibility=public, txtDescription='Tera 10**12', htmlDescription='

Tera 10**12

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,635 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitMultiplier, _objData=UmlObjectData [id=1427, uuid={C352D73C-B9DC-4e7d-B1DB-5BE6D4BAE868}, since=null, name=none, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,635 [main] TRACE ClassBuilder - read from EA: Domain::UnitMultiplier +2024-09-08 15:11:35,636 [main] TRACE ClassBuilder - Class UnitSymbol (14 in package Domain) +2024-09-08 15:11:35,636 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1344, uuid={F3C2C2B7-88D3-4144-A993-6BB01538909F}, since=null, name=min, alias=, stereotype=enum, visibility=public, txtDescription='Time in minutes', htmlDescription='

Time in minutes

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,636 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1345, uuid={8D5395D7-20D2-4d16-8AA0-46BE6B3A4905}, since=null, name=h, alias=, stereotype=enum, visibility=public, txtDescription='Time in hours', htmlDescription='

Time in hours

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,637 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1346, uuid={6F295BE4-CF54-4781-AE65-554D3DA58236}, since=null, name=deg, alias=, stereotype=enum, visibility=public, txtDescription='Plane angle in degrees', htmlDescription='

Plane angle in degrees

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,637 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1347, uuid={C45DCC7F-FD4A-4359-84C6-D740C56234E9}, since=null, name=rad, alias=, stereotype=enum, visibility=public, txtDescription='Plane angle in radians', htmlDescription='

Plane angle in radians

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,637 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1348, uuid={54E72D74-D283-4720-94FB-A411C9888D14}, since=null, name=J, alias=, stereotype=enum, visibility=public, txtDescription='Energy in joule', htmlDescription='

Energy in joule

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,637 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1349, uuid={B4811904-31E9-4915-A3CB-432E4AF2C744}, since=null, name=N, alias=, stereotype=enum, visibility=public, txtDescription='Force in newton', htmlDescription='

Force in newton

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,637 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1350, uuid={910795B5-E8CB-467a-B6DA-FCEB7F9C5AE0}, since=null, name=S, alias=, stereotype=enum, visibility=public, txtDescription='Conductance in siemens', htmlDescription='

Conductance in siemens

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,637 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1351, uuid={BBC06058-30E3-4851-A905-93E9B23F32D5}, since=null, name=none, alias=, stereotype=enum, visibility=public, txtDescription='Dimension less quantity, e.g. count, per unit, etc.', htmlDescription='

Dimension less quantity, e.g. count, per unit, etc.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,637 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1352, uuid={FEEB3794-F2F0-4f0e-AD18-3C217F641EE5}, since=null, name=Hz, alias=, stereotype=enum, visibility=public, txtDescription='Frequency in hertz', htmlDescription='

Frequency in hertz

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,638 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1353, uuid={8CB1FDE2-DF64-4bb1-AF2F-DF8025D92EAA}, since=null, name=g, alias=, stereotype=enum, visibility=public, txtDescription='Mass in gram', htmlDescription='

Mass in gram

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=4, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,638 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1354, uuid={23A2B824-9DCE-4fde-A626-A1D9C9F60C28}, since=null, name=Pa, alias=, stereotype=enum, visibility=public, txtDescription='Pressure in pascal (n/m2)', htmlDescription='

Pressure in pascal (n/m2)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,638 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1355, uuid={12DEDC13-8E22-481f-8DBE-977C82791D07}, since=null, name=m, alias=, stereotype=enum, visibility=public, txtDescription='Length in meter', htmlDescription='

Length in meter

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,638 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1356, uuid={38241F8A-C4AF-4a92-96AD-D80010BDCEC6}, since=null, name=m2, alias=, stereotype=enum, visibility=public, txtDescription='Area in square meters', htmlDescription='

Area in square meters

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,638 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1357, uuid={24D5EF94-21EB-4d21-9651-E1D865EEC09D}, since=null, name=m3, alias=, stereotype=enum, visibility=public, txtDescription='Volume in cubic meters', htmlDescription='

Volume in cubic meters

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,639 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1358, uuid={31446F6F-8A9C-4aa2-BFBA-C1B6E30C6F39}, since=null, name=V/VAr, alias=, stereotype=enum, visibility=public, txtDescription='Volt per volt ampere reactive', htmlDescription='

Volt per volt ampere reactive

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,639 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1359, uuid={FCF2F195-D0A1-421a-8210-46757087B50C}, since=null, name=W/Hz, alias=, stereotype=enum, visibility=public, txtDescription='Watt per hertz', htmlDescription='

Watt per hertz

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,639 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1360, uuid={2365E502-B3DD-4499-B7B5-3B888E047BC9}, since=null, name=J/s, alias=, stereotype=enum, visibility=public, txtDescription='Joule per second', htmlDescription='

Joule per second

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,639 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1361, uuid={203D16EC-F37B-4a03-8423-D8519C75B46F}, since=null, name=s-1, alias=, stereotype=enum, visibility=public, txtDescription='per second', htmlDescription='

per second

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,639 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1362, uuid={029189EA-27B3-48cd-BA61-6825B3E0679E}, since=null, name=kg/J, alias=, stereotype=enum, visibility=public, txtDescription='Mass per energy', htmlDescription='

Mass per energy

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,640 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1363, uuid={4C8D790D-7499-43cb-A78C-CCAAA0812F03}, since=null, name=W/s, alias=, stereotype=enum, visibility=public, txtDescription='Watt per second', htmlDescription='

Watt per second

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,640 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1364, uuid={EBC50519-2749-4d98-887C-A3BB259AA6D4}, since=null, name=Hz-1, alias=, stereotype=enum, visibility=public, txtDescription='per Hertz', htmlDescription='

per Hertz

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,640 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1331, uuid={2A6C639B-07EF-4ec1-90FE-7F3B55FEC466}, since=null, name=VA, alias=, stereotype=enum, visibility=public, txtDescription='Apparent power in volt ampere', htmlDescription='

Apparent power in volt ampere

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,640 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1332, uuid={0C6FC879-3330-40c5-840B-FA4D11DD92CA}, since=null, name=W, alias=, stereotype=enum, visibility=public, txtDescription='Active power in watt', htmlDescription='

Active power in watt

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,640 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1333, uuid={EB818682-FB29-4a83-ADDD-7D9A42DF05FA}, since=null, name=VAr, alias=, stereotype=enum, visibility=public, txtDescription='Reactive power in volt ampere reactive', htmlDescription='

Reactive power in volt ampere reactive

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,640 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1334, uuid={BC16CD17-F133-46fc-BA52-A3568AE7389E}, since=null, name=VAh, alias=, stereotype=enum, visibility=public, txtDescription='Apparent energy in volt ampere hours', htmlDescription='

Apparent energy in volt ampere hours

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=true, _type=null] +2024-09-08 15:11:35,640 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1335, uuid={7069D1E3-C2D9-4a10-8B91-0D9AC394F38F}, since=null, name=Wh, alias=, stereotype=, visibility=public, txtDescription='Real energy in what hours', htmlDescription='

Real energy in what hours

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,641 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1336, uuid={D0851FC4-83F3-4911-B874-CE37B0104941}, since=null, name=VArh, alias=, stereotype=enum, visibility=public, txtDescription='Reactive energy in volt ampere reactive hours', htmlDescription='

Reactive energy in volt ampere reactive hours

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,641 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1337, uuid={7B623DFC-A240-4023-AC11-C8A279608CFE}, since=null, name=V, alias=, stereotype=enum, visibility=public, txtDescription='Voltage in volt', htmlDescription='

Voltage in volt

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,642 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1338, uuid={4A304014-4EC4-4c01-AC1C-E1C9D68AF390}, since=null, name=ohm, alias=, stereotype=enum, visibility=public, txtDescription='Resistance in ohm', htmlDescription='

Resistance in ohm

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,643 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1339, uuid={B9C0CD6C-435E-4dbc-9613-BB1EF4A950C1}, since=null, name=A, alias=, stereotype=enum, visibility=public, txtDescription='Current in ampere', htmlDescription='

Current in ampere

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,643 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1340, uuid={DE960AB5-4C9B-4079-8BD4-F158F1785B5C}, since=null, name=F, alias=, stereotype=enum, visibility=public, txtDescription='Capacitance in farad', htmlDescription='

Capacitance in farad

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,643 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1341, uuid={7B87ECEA-CB89-4395-9C1A-BF342DBB00A7}, since=null, name=H, alias=, stereotype=enum, visibility=public, txtDescription='Inductance in henry', htmlDescription='

Inductance in henry

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,643 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1342, uuid={3D791F1B-3826-43c9-8B95-384A2CEC6B1D}, since=null, name=ºC, alias=, stereotype=enum, visibility=public, txtDescription='Relative temperature in degrees Celsius', htmlDescription='

Relative temperature in degrees Celsius

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,643 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::UnitSymbol, _objData=UmlObjectData [id=1343, uuid={173DF248-0E38-42af-A33E-460F413D5C35}, since=null, name=s, alias=, stereotype=enum, visibility=public, txtDescription='Time in seconds', htmlDescription='

Time in seconds

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,644 [main] TRACE ClassBuilder - read from EA: Domain::UnitSymbol +2024-09-08 15:11:35,644 [main] TRACE ClassBuilder - Class Voltage (15 in package Domain) +2024-09-08 15:11:35,644 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Voltage, _objData=UmlObjectData [id=1304, uuid={5CFD034E-D7E1-4d20-BE0B-BB9E4F9D2D4B}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=634, _eaTypeName=UnitMultiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,644 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Voltage, _objData=UmlObjectData [id=1305, uuid={6E959BD4-0ACC-4884-99F5-0B158661A3D9}, since=null, name=unit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=V, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,644 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::Voltage, _objData=UmlObjectData [id=1306, uuid={C86122FF-94E1-4244-975A-BA865D8135BC}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,645 [main] TRACE ClassBuilder - read from EA: Domain::Voltage +2024-09-08 15:11:35,645 [main] TRACE ClassBuilder - Class WithSingleLiteral (16 in package Domain) +2024-09-08 15:11:35,645 [main] DEBUG DbAttributeBuilder - fixing lower bound '' to 1 for enum:UmlObjectData [id=3289, uuid={121A7175-5FA9-45a6-81BF-B7266809B519}, since=null, name=singleLiteral, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''] +2024-09-08 15:11:35,645 [main] DEBUG DbAttributeBuilder - fixing upper bound '' to 1 for enum:UmlObjectData [id=3289, uuid={121A7175-5FA9-45a6-81BF-B7266809B519}, since=null, name=singleLiteral, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''] +2024-09-08 15:11:35,645 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::WithSingleLiteral, _objData=UmlObjectData [id=3289, uuid={121A7175-5FA9-45a6-81BF-B7266809B519}, since=null, name=singleLiteral, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,646 [main] TRACE ClassBuilder - read from EA: Domain::WithSingleLiteral +2024-09-08 15:11:35,646 [main] TRACE ClassBuilder - Class YesNo (17 in package Domain) +2024-09-08 15:11:35,646 [main] DEBUG DbAttributeBuilder - fixing lower bound '' to 1 for enum:UmlObjectData [id=3299, uuid={5F23052B-650E-405e-9FB0-71CD876FB873}, since=null, name=Yes, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''] +2024-09-08 15:11:35,646 [main] DEBUG DbAttributeBuilder - fixing upper bound '' to 1 for enum:UmlObjectData [id=3299, uuid={5F23052B-650E-405e-9FB0-71CD876FB873}, since=null, name=Yes, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''] +2024-09-08 15:11:35,646 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::YesNo, _objData=UmlObjectData [id=3299, uuid={5F23052B-650E-405e-9FB0-71CD876FB873}, since=null, name=Yes, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,646 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Domain::YesNo, _objData=UmlObjectData [id=3300, uuid={3B880AE1-415A-482b-A5C8-B5FFF8D15CDF}, since=null, name=No, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,647 [main] TRACE ClassBuilder - read from EA: Domain::YesNo +2024-09-08 15:11:35,647 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61970, _depth=1, _eaElementID=573, _objData=UmlObjectData [id=41, uuid={0134E45C-F32A-4522-A725-E07B0AE4CB57}, since=null, name=Domain, alias=Example alias name, stereotype=Global, visibility=public, txtDescription='the domain package is a data dictionary of quantities and units that define datatypes for attributes (properties) that may be used by any class in any other package. +This package contains the definition of primitive datatypes, including units of measure and permissible values. Each datatype contains a value attribute and an optional unit of measure, which is specified as a static variable initialized to the textual description of the unit of measure. The value of the "units" string may be country or customer specific. Typical values are given. Permissible values for enumerations are listed in the documentation for the attribute using UML constraint syntax inside curly braces. Lengths of variable strings are listed in the descriptive text where required.', htmlDescription='

the domain package is a data dictionary of quantities and units that define datatypes for attributes (properties) that may be used by any class in any other package.

This package contains the definition of primitive datatypes, including units of measure and permissible values. Each datatype contains a value attribute and an optional unit of measure, which is specified as a static variable initialized to the textual description of the unit of measure. The value of the "units" string may be country or customer specific. Typical values are given. Permissible values for enumerations are listed in the documentation for the attribute using UML constraint syntax inside curly braces. Lengths of variable strings are listed in the descriptive text where required.

'], _modelId=2, _selfDependent=false, 2_diagrams=[DiagramBuilder [_containingPackage=Domain, _objData=UmlObjectData [id=119, uuid={DB3006EC-40EF-48f9-AE0B-54A4590505A4}, since=null, name=BasicDatatypes, alias=, stereotype=oneDiaStero, secondDiaStereo, visibility=public, txtDescription='This diagram shows basic datatypes that are the basis for all other datatypes.', htmlDescription='

This diagram shows basic datatypes that are the basis for all other datatypes.

'], _portrait=true, _kind=LOGICAL], DiagramBuilder [_containingPackage=Domain, _objData=UmlObjectData [id=117, uuid={83A53C50-B2DB-4b88-B1DB-E520708685BF}, since=null, name=TimeDatatypes, alias=, stereotype=docStero, visibility=public, txtDescription='This diagram show time related data types', htmlDescription='

This diagram show time related data types

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsTarget=1, _classes=17 +2024-09-08 15:11:35,647 [main] INFO PackageBuilder - processing package Core (4) ... +2024-09-08 15:11:35,648 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Core, _objData=UmlObjectData [id=153, uuid={F791662C-7488-4578-88E1-21352F9799CF}, since=null, name=Main, alias=, stereotype=, visibility=public, txtDescription='"This diagram is intended to show all classes needed for any application of the CIM for modeling transmission and generation systems. +Test bold ignored.', htmlDescription='

"This diagram is intended to show all classes needed for any application of the CIM for modeling transmission and generation systems.

Test bold ignored.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:35,648 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Core, _objData=UmlObjectData [id=155, uuid={88289F74-ECDD-42e8-A693-6744785B1A0C}, since=null, name=Ownership, alias=, stereotype=Deprecated, visibility=public, txtDescription='doc present (but missing "." at its end) and starting with lower case letter', htmlDescription='

doc present (but missing "." at its end) and starting with lower case letter

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:35,648 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61970::Core, _objData=UmlObjectData [id=480, uuid={285C8813-D098-4165-89FE-151394F8B419}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], 1_taggedValues{depTag=value}] +2024-09-08 15:11:35,648 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61970::Core->IEC61970::Domain, _objData=UmlObjectData [id=485, uuid={0FBB1D80-1C4A-4f3f-9812-CD22581D58B6}, since=null, name=, alias=, stereotype=deprecated, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,651 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3029, uuid={F8743013-1839-4100-8A7A-A8F62B12BF60}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Note: Diagram does have <> stereotype, but I don't seem to find the means to display that anywhere in EA: neither diagram itself nor Project Browser (in contrast to other UML elements, such as class, package, etc.).', htmlDescription='

Note: Diagram does have <<deprecated>> stereotype, but I don't seem to find the means to display that anywhere in EA: neither diagram itself nor Project Browser (in contrast to other UML elements, such as class, package, etc.).

'], _containingPackage=Core, _otherEndName=] +2024-09-08 15:11:35,652 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3082, uuid={597FAD1D-4901-4aae-9B6F-EA32A226A6A2}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Both class and attribute (here: literal 'singleBreaker') have constraints, we can visualise only those on class.', htmlDescription='

Both class and attribute (here: literal 'singleBreaker') have constraints, we can visualise only those on class.

'], _containingPackage=Core, _otherEndName=] +2024-09-08 15:11:35,652 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3083, uuid={C037F9C1-53F1-43ae-BBF4-92F9C66EE3D7}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='attribute has constraint, but it cannot be displayed...', htmlDescription='

attribute has constraint, but it cannot be displayed...

'], _containingPackage=Core, _otherEndName=] +2024-09-08 15:11:35,652 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3084, uuid={E1C2884E-0577-41a7-ACBD-0C789F87546C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='constraint on generalisation can be specified. seems to be always displayed - cannot be hidden.', htmlDescription='

constraint on generalisation can be specified. seems to be always displayed - cannot be hidden.

'], _containingPackage=Core, _otherEndName=] +2024-09-08 15:11:35,652 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3085, uuid={9A93B88B-4383-4d6a-8BB3-9ABEAB06A27B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Core, _otherEndName=] +2024-09-08 15:11:35,652 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3086, uuid={FE9DCCF0-64F8-47d0-95BE-6D22F3B70814}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Need to enable Diagram option to show constraints, and optionally (if desired) inherited constraints.', htmlDescription='

Need to enable Diagram option to show constraints, and optionally (if desired) inherited constraints.

'], _containingPackage=Core, _otherEndName=] +2024-09-08 15:11:35,652 [main] TRACE ClassBuilder - Class BasePower (1 in package Core) +2024-09-08 15:11:35,653 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::BasePower, _objData=UmlObjectData [id=2100, uuid={9F2DC83B-B801-4b29-BD57-4781BD53A50A}, since=null, name=basePower, alias=, stereotype=, visibility=public, txtDescription='definition of base power.', htmlDescription='

definition of base power.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=616, _eaTypeName=ApparentPower, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,653 [main] TRACE ClassBuilder - read from EA: Core::BasePower +2024-09-08 15:11:35,653 [main] TRACE ClassBuilder - Class BaseVoltage (2 in package Core) +2024-09-08 15:11:35,653 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::BaseVoltage, _objData=UmlObjectData [id=2053, uuid={D37DA22A-916B-4a33-88AB-B77C229DB882}, since=null, name=protectedNominalVoltage, alias=, stereotype=, visibility=protected, txtDescription=''the' PowerSystemResource's base voltage.', htmlDescription='

'the' PowerSystemResource's base voltage.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=602, _eaTypeName=Voltage, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,653 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::BaseVoltage, _objData=UmlObjectData [id=2981, uuid={9451DDA7-F7F4-4efe-A373-99B36F51A8C5}, since=null, name=packagePrivateIsDC, alias=, stereotype=, visibility=package, txtDescription='"if true", this is a direct current base voltage and items assigned to this base voltage are also associated with a direct current capabilities. False indicates alternating current.', htmlDescription='

"if true", this is a direct current base voltage and items assigned to this base voltage are also associated with a direct current capabilities. False indicates alternating current.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,653 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::BaseVoltage, _objData=UmlObjectData [id=3249, uuid={48F97F30-E8FD-4e3d-85E1-6009E26B1435}, since=null, name=basePower, alias=, stereotype=, visibility=public, txtDescription='This is to test whether we print correctly multiple attributes of the same name (defined on different classes) within the data index table.', htmlDescription='

This is to test whether we print correctly multiple attributes of the same name (defined on different classes) within the data index table.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,654 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::BaseVoltage, _objData=UmlObjectData [id=3317, uuid={B3B2A77F-3967-4163-917F-7EC3BC0EF50C}, since=null, name=privateDummy, alias=, stereotype=, visibility=private, txtDescription='This is to test whether we print correctly multiple attributes of the same name (defined on different classes) within the data index table.', htmlDescription='

This is to test whether we print correctly multiple attributes of the same name (defined on different classes) within the data index table.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,654 [main] DEBUG AssociationEndBuilder - Updated target type to BaseVoltage +2024-09-08 15:11:35,654 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=166, uuid=2df96825-3bf0-3160-a555-a54fda61527c, since=null, name=VoltageLevel, alias=, stereotype=, visibility=public, txtDescription='The VoltageLevels having this BaseVoltage.', htmlDescription='

The VoltageLevels having this BaseVoltage.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=167, uuid=7e385884-ee3f-3d72-af09-7657d3ecd905, since=null, name=BaseVoltage, alias=, stereotype=, visibility=public, txtDescription='The base voltage used for all equipment within the VoltageLevel.', htmlDescription='

The base voltage used for all equipment within the VoltageLevel.

'], _type=BaseVoltage, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=120, uuid={F610FDC8-D98D-4367-99A9-E9CA1C8A8CC5}, since=null, name=, alias=, stereotype=deprecated, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,654 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=166, uuid=2df96825-3bf0-3160-a555-a54fda61527c, since=null, name=VoltageLevel, alias=, stereotype=, visibility=public, txtDescription='The VoltageLevels having this BaseVoltage.', htmlDescription='

The VoltageLevels having this BaseVoltage.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=167, uuid=7e385884-ee3f-3d72-af09-7657d3ecd905, since=null, name=BaseVoltage, alias=, stereotype=, visibility=public, txtDescription='The base voltage used for all equipment within the VoltageLevel.', htmlDescription='

The base voltage used for all equipment within the VoltageLevel.

'], _type=BaseVoltage, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=120, uuid={F610FDC8-D98D-4367-99A9-E9CA1C8A8CC5}, since=null, name=, alias=, stereotype=deprecated, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Core::BaseVoltage +2024-09-08 15:11:35,655 [main] DEBUG AssociationEndBuilder - Updated source type to BaseVoltage +2024-09-08 15:11:35,655 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=169, uuid=a7c02e37-c767-3d25-b98f-fef014267b5e, since=null, name=ProtectedBaseVoltage, alias=, stereotype=, visibility=protected, txtDescription='Use association to ConductingEquipment only when there is no VoltageLevel container used.', htmlDescription='

Use association to ConductingEquipment only when there is no VoltageLevel container used.

'], _type=BaseVoltage, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=170, uuid=4ff0bdbf-dba0-3daa-9eee-87a1d4811557, since=null, name=ConductingEquipment, alias=, stereotype=, visibility=public, txtDescription='Use association to ConductingEquipment only when there is no VoltageLevel container used.', htmlDescription='

Use association to ConductingEquipment only when there is no VoltageLevel container used.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=121, uuid={B21687D9-2B46-4880-B016-06CCFA215EC3}, since=null, name=, alias=, stereotype=builds, visibility=public, txtDescription='Use association to ConductingEquipment only when there is no VoltageLevel container used.', htmlDescription='

Use association to ConductingEquipment only when there is no VoltageLevel container used.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,655 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=169, uuid=a7c02e37-c767-3d25-b98f-fef014267b5e, since=null, name=ProtectedBaseVoltage, alias=, stereotype=, visibility=protected, txtDescription='Use association to ConductingEquipment only when there is no VoltageLevel container used.', htmlDescription='

Use association to ConductingEquipment only when there is no VoltageLevel container used.

'], _type=BaseVoltage, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=170, uuid=4ff0bdbf-dba0-3daa-9eee-87a1d4811557, since=null, name=ConductingEquipment, alias=, stereotype=, visibility=public, txtDescription='Use association to ConductingEquipment only when there is no VoltageLevel container used.', htmlDescription='

Use association to ConductingEquipment only when there is no VoltageLevel container used.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=121, uuid={B21687D9-2B46-4880-B016-06CCFA215EC3}, since=null, name=, alias=, stereotype=builds, visibility=public, txtDescription='Use association to ConductingEquipment only when there is no VoltageLevel container used.', htmlDescription='

Use association to ConductingEquipment only when there is no VoltageLevel container used.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Core::BaseVoltage +2024-09-08 15:11:35,655 [main] DEBUG AssociationEndBuilder - Updated target type to BaseVoltage +2024-09-08 15:11:35,655 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=172, uuid=ddf38257-ed75-3694-81a7-e984049e0ecf, since=null, name=TopologicalNode, alias=, stereotype=, visibility=public, txtDescription='The topological nodes at the base voltage.', htmlDescription='

The topological nodes at the base voltage.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=173, uuid=56be42a8-abee-3a0d-ab13-c23730a949e3, since=null, name=BaseVoltage, alias=, stereotype=, visibility=public, txtDescription='The base voltage of the topologocial node.', htmlDescription='

The base voltage of the topologocial node.

'], _type=BaseVoltage, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2092, uuid={6F37A2BE-FB37-4a6c-8BB1-CFC6690C1867}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,655 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=172, uuid=ddf38257-ed75-3694-81a7-e984049e0ecf, since=null, name=TopologicalNode, alias=, stereotype=, visibility=public, txtDescription='The topological nodes at the base voltage.', htmlDescription='

The topological nodes at the base voltage.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=173, uuid=56be42a8-abee-3a0d-ab13-c23730a949e3, since=null, name=BaseVoltage, alias=, stereotype=, visibility=public, txtDescription='The base voltage of the topologocial node.', htmlDescription='

The base voltage of the topologocial node.

'], _type=BaseVoltage, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2092, uuid={6F37A2BE-FB37-4a6c-8BB1-CFC6690C1867}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Core::BaseVoltage +2024-09-08 15:11:35,656 [main] TRACE ClassBuilder - read from EA: Core::BaseVoltage +2024-09-08 15:11:35,656 [main] TRACE ClassBuilder - Class Bay (3 in package Core) +2024-09-08 15:11:35,656 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::Bay, _objData=UmlObjectData [id=2077, uuid={26D3924E-0222-4e9a-9373-CD7D256E9B19}, since=null, name=bayEnergyMeasFlag, alias=, stereotype=, visibility=public, txtDescription='Indicates the presence/absence of energy measurements.', htmlDescription='

Indicates the presence/absence of energy measurements.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,656 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::Bay, _objData=UmlObjectData [id=2078, uuid={B5F9E0A2-7BE7-4bb1-A035-0F5F849847F0}, since=null, name=bayPowerMeasFlag, alias=, stereotype=, visibility=public, txtDescription='Indicates the presence/absence of active/reactive power measurements.', htmlDescription='

Indicates the presence/absence of active/reactive power measurements.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,656 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::Bay, _objData=UmlObjectData [id=2079, uuid={94BB9838-29AB-4afe-853A-3BD683EF6B09}, since=null, name=breakerConfiguration, alias=, stereotype=, visibility=public, txtDescription='Breaker configuration.', htmlDescription='

Breaker configuration.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=858, _eaTypeName=BreakerConfiguration, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,656 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::Bay, _objData=UmlObjectData [id=2080, uuid={696CC695-DE24-423a-9CD6-A9FED27803F8}, since=null, name=busBarConfiguration, alias=, stereotype=, visibility=public, txtDescription='Bus bar configuration.', htmlDescription='

Bus bar configuration.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=878, _eaTypeName=BusbarConfiguration, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,656 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::Bay, _objData=UmlObjectData [id=3301, uuid={E893BA26-F5FD-49d7-94E0-CF2CC775E76D}, since=null, name=TestYesNo1, alias=, stereotype=, visibility=public, txtDescription='Indicates the presence/absence of energy measurements.', htmlDescription='

Indicates the presence/absence of energy measurements.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1540, _eaTypeName=YesNo, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,657 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::Bay, _objData=UmlObjectData [id=3302, uuid={57D31F0C-D03A-424d-AF4C-358109CC5473}, since=null, name=testYesNo2, alias=, stereotype=, visibility=public, txtDescription='Indicates the presence/absence of energy measurements.', htmlDescription='

Indicates the presence/absence of energy measurements.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1540, _eaTypeName=YesNo, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,657 [main] DEBUG AssociationEndBuilder - Updated target type to Bay +2024-09-08 15:11:35,657 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=true, _objData=UmlObjectData [id=182, uuid=da543f3e-ced1-3dc8-93da-d53ef6d9b078, since=null, name=VoltageLevel, alias=, stereotype=endStereo1, deprecated, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=183, uuid=ac2c3369-c00d-3e2e-b4b5-51330068bc70, since=null, name=Bays, alias=, stereotype=deprecated, endStereo2, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=Bay, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=115, uuid={5E328091-5BC1-4fa8-9BA3-F087A215492A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,657 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=true, _objData=UmlObjectData [id=182, uuid=da543f3e-ced1-3dc8-93da-d53ef6d9b078, since=null, name=VoltageLevel, alias=, stereotype=endStereo1, deprecated, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=183, uuid=ac2c3369-c00d-3e2e-b4b5-51330068bc70, since=null, name=Bays, alias=, stereotype=deprecated, endStereo2, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=Bay, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=115, uuid={5E328091-5BC1-4fa8-9BA3-F087A215492A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Core::Bay +2024-09-08 15:11:35,657 [main] DEBUG AssociationEndBuilder - Updated source type to Bay +2024-09-08 15:11:35,658 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=185, uuid=b3b3f64f-0f2d-3934-8f26-f0508da2c3ec, since=null, name=bays, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=Bay, _multiplicity=[0..*], _navigable=yes], _targetEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=false, _objData=UmlObjectData [id=186, uuid=b5299d65-7a4d-3948-9041-95c7efec55f6, since=null, name=Substation, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=null, _multiplicity=[0..1], _navigable=yes], _objData=UmlObjectData [id=116, uuid={51152F4A-1B03-451f-BA84-6A05A6AE1630}, since=null, name=, alias=, stereotype=European, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Bi-Directional, _directionUnspecified=false, _biDirectional=true] +2024-09-08 15:11:35,659 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=185, uuid=b3b3f64f-0f2d-3934-8f26-f0508da2c3ec, since=null, name=bays, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=Bay, _multiplicity=[0..*], _navigable=yes], _targetEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=false, _objData=UmlObjectData [id=186, uuid=b5299d65-7a4d-3948-9041-95c7efec55f6, since=null, name=Substation, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=null, _multiplicity=[0..1], _navigable=yes], _objData=UmlObjectData [id=116, uuid={51152F4A-1B03-451f-BA84-6A05A6AE1630}, since=null, name=, alias=, stereotype=European, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Bi-Directional, _directionUnspecified=false, _biDirectional=true] as source to Core::Bay +2024-09-08 15:11:35,659 [main] TRACE ClassBuilder - read from EA: Core::Bay +2024-09-08 15:11:35,659 [main] TRACE ClassBuilder - Class BreakerConfiguration (4 in package Core) +2024-09-08 15:11:35,666 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::BreakerConfiguration, _objData=UmlObjectData [id=2073, uuid={44DB9F68-B210-48a4-9625-F25A2CB91A8C}, since=null, name=singleBreaker, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null, 2 _constraints[ConstraintBuilder [_objData=UmlObjectData [id=190, uuid=ce702525-165b-3d51-83b2-ee47df3a8f89, since=null, name=singleBreakerConstraintNoType, alias=, stereotype=, visibility=public, txtDescription='text', htmlDescription='

text

'], _containingAttribute=singleBreaker, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=text], ConstraintBuilder [_objData=UmlObjectData [id=191, uuid=5b5b7544-e9ee-39ca-bd9e-409e9ffefff9, since=null, name=processContstraint, alias=, stereotype=, visibility=public, txtDescription='process constraint text', htmlDescription='

process constraint text

'], _containingAttribute=singleBreaker, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=process constraint text]]] +2024-09-08 15:11:35,667 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::BreakerConfiguration, _objData=UmlObjectData [id=2074, uuid={0B0C09C4-66E5-48db-85B5-7BBCB3FB2759}, since=null, name=breakerAndAHalf, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,667 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::BreakerConfiguration, _objData=UmlObjectData [id=2075, uuid={8D041086-6214-4bc0-8351-D8A680FEC6E3}, since=null, name=doubleBreaker, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,667 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::BreakerConfiguration, _objData=UmlObjectData [id=2076, uuid={00F5D8BD-3E07-4371-B7A3-29276B241276}, since=null, name=noBreaker, alias=, stereotype=enum, European, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,668 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3467, uuid={BAC620E2-FBB8-4f97-9C0D-E83963303215}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=BreakerConfiguration, _otherEndName=?] +2024-09-08 15:11:35,669 [main] TRACE ClassBuilder - read from EA: Core::BreakerConfiguration +2024-09-08 15:11:35,669 [main] TRACE ClassBuilder - Class BusbarConfiguration (5 in package Core) +2024-09-08 15:11:35,669 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::BusbarConfiguration, _objData=UmlObjectData [id=2110, uuid={C252873E-93AB-4837-BFA2-72F7ED949063}, since=null, name=singleBus, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,669 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::BusbarConfiguration, _objData=UmlObjectData [id=2111, uuid={4818CA4D-1A75-4e80-9364-CF5DF7873944}, since=null, name=doubleBus, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,669 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::BusbarConfiguration, _objData=UmlObjectData [id=2112, uuid={8DC02787-5BEC-4701-A919-193EEB5A6656}, since=null, name=mainWithTransfer, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,669 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::BusbarConfiguration, _objData=UmlObjectData [id=2113, uuid={51ADB6A4-ED54-49e2-95C0-85BF285C3C8F}, since=null, name=ringBus, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,670 [main] TRACE ClassBuilder - read from EA: Core::BusbarConfiguration +2024-09-08 15:11:35,670 [main] TRACE ClassBuilder - Class ConductingEquipment (6 in package Core) +2024-09-08 15:11:35,670 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::ConductingEquipment, _objData=UmlObjectData [id=2091, uuid={2A7C5A94-34E1-49c7-8E1C-A84F411EE17C}, since=null, name=phases, alias=, stereotype=, visibility=public, txtDescription='Describes the phases carried by a conducting equipment.', htmlDescription='

Describes the phases carried by a conducting equipment.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=856, _eaTypeName=PhaseCode, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,670 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3470, uuid={C18A7F11-DBB2-4114-AE38-3EE7922E092E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=ConductingEquipment, _otherEndName=?] +2024-09-08 15:11:35,670 [main] DEBUG AssociationEndBuilder - Updated target type to ConductingEquipment +2024-09-08 15:11:35,670 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=169, uuid=a7c02e37-c767-3d25-b98f-fef014267b5e, since=null, name=ProtectedBaseVoltage, alias=, stereotype=, visibility=protected, txtDescription='Use association to ConductingEquipment only when there is no VoltageLevel container used.', htmlDescription='

Use association to ConductingEquipment only when there is no VoltageLevel container used.

'], _type=BaseVoltage, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=170, uuid=4ff0bdbf-dba0-3daa-9eee-87a1d4811557, since=null, name=ConductingEquipment, alias=, stereotype=, visibility=public, txtDescription='Use association to ConductingEquipment only when there is no VoltageLevel container used.', htmlDescription='

Use association to ConductingEquipment only when there is no VoltageLevel container used.

'], _type=ConductingEquipment, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=121, uuid={B21687D9-2B46-4880-B016-06CCFA215EC3}, since=null, name=, alias=, stereotype=builds, visibility=public, txtDescription='Use association to ConductingEquipment only when there is no VoltageLevel container used.', htmlDescription='

Use association to ConductingEquipment only when there is no VoltageLevel container used.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Core::ConductingEquipment +2024-09-08 15:11:35,671 [main] DEBUG AssociationEndBuilder - Updated target type to ConductingEquipment +2024-09-08 15:11:35,671 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=205, uuid=3020dda1-bf9e-3f5b-9056-790543c07a77, since=null, name=Terminals, alias=Alias for terminal, stereotype=, visibility=public, txtDescription='ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes', htmlDescription='

ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes

'], _type=null, _multiplicity=[0..*], _navigable=unspecified, 1_taggedValues{Role1=abc}], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=206, uuid=87a7d63b-bff7-34ea-a364-5adbc3812350, since=null, name=ConductingEquipment, alias=Alias for conducting equipment, stereotype=, visibility=public, txtDescription='ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes', htmlDescription='

ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes

'], _type=ConductingEquipment, _multiplicity=[1..1], _navigable=unspecified, 3_taggedValues{AnotherRole2=abc, targetEndTag=blah, Role2=xyz}], _objData=UmlObjectData [id=123, uuid={5FEF5186-7804-4dad-8E18-8C5DB7FCE6B2}, since=null, name=NamedWithTagsEverywhere, alias=Alias for NamedWithTagsEverywhere, stereotype=, visibility=public, txtDescription='ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes', htmlDescription='

ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false, 2_taggedValues{CE-TermAssoc=1, MoreAssoc=}] +2024-09-08 15:11:35,671 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=205, uuid=3020dda1-bf9e-3f5b-9056-790543c07a77, since=null, name=Terminals, alias=Alias for terminal, stereotype=, visibility=public, txtDescription='ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes', htmlDescription='

ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes

'], _type=null, _multiplicity=[0..*], _navigable=unspecified, 1_taggedValues{Role1=abc}], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=206, uuid=87a7d63b-bff7-34ea-a364-5adbc3812350, since=null, name=ConductingEquipment, alias=Alias for conducting equipment, stereotype=, visibility=public, txtDescription='ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes', htmlDescription='

ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes

'], _type=ConductingEquipment, _multiplicity=[1..1], _navigable=unspecified, 3_taggedValues{AnotherRole2=abc, targetEndTag=blah, Role2=xyz}], _objData=UmlObjectData [id=123, uuid={5FEF5186-7804-4dad-8E18-8C5DB7FCE6B2}, since=null, name=NamedWithTagsEverywhere, alias=Alias for NamedWithTagsEverywhere, stereotype=, visibility=public, txtDescription='ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes', htmlDescription='

ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false, 2_taggedValues{CE-TermAssoc=1, MoreAssoc=}] as target to Core::ConductingEquipment +2024-09-08 15:11:35,671 [main] TRACE ClassBuilder - read from EA: Core::ConductingEquipment +2024-09-08 15:11:35,671 [main] TRACE ClassBuilder - Class ConnectivityNodeContainer (7 in package Core) +2024-09-08 15:11:35,672 [main] DEBUG AssociationEndBuilder - Updated target type to ConnectivityNodeContainer +2024-09-08 15:11:35,672 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=209, uuid=10ccce83-a67a-3505-a530-f2e7cdbc675c, since=null, name=ConnectivityNodes, alias=, stereotype=, visibility=public, txtDescription='Connectivity nodes contained by this container.', htmlDescription='

Connectivity nodes contained by this container.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=210, uuid=d334a62d-c53a-37a2-856c-81d5fe2c2186, since=null, name=ConnectivityNodeContainer, alias=, stereotype=, visibility=public, txtDescription='Container of this connectivity node.', htmlDescription='

Container of this connectivity node.

'], _type=ConnectivityNodeContainer, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=234, uuid={08EEABA6-269C-44a7-8F82-7BBEFE71ADD6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,672 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=209, uuid=10ccce83-a67a-3505-a530-f2e7cdbc675c, since=null, name=ConnectivityNodes, alias=, stereotype=, visibility=public, txtDescription='Connectivity nodes contained by this container.', htmlDescription='

Connectivity nodes contained by this container.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=210, uuid=d334a62d-c53a-37a2-856c-81d5fe2c2186, since=null, name=ConnectivityNodeContainer, alias=, stereotype=, visibility=public, txtDescription='Container of this connectivity node.', htmlDescription='

Container of this connectivity node.

'], _type=ConnectivityNodeContainer, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=234, uuid={08EEABA6-269C-44a7-8F82-7BBEFE71ADD6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Core::ConnectivityNodeContainer +2024-09-08 15:11:35,672 [main] DEBUG AssociationEndBuilder - Updated target type to ConnectivityNodeContainer +2024-09-08 15:11:35,673 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=212, uuid=273458f0-8dc9-3b97-8d72-736bec7303fd, since=null, name=TopologicalNode, alias=, stereotype=, visibility=public, txtDescription='The topological nodes which belong to this connectivity node container.', htmlDescription='

The topological nodes which belong to this connectivity node container.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=213, uuid=069cc4c5-6982-3d6a-b143-1664cb457595, since=null, name=ConnectivityNodeContainer, alias=, stereotype=, visibility=public, txtDescription='The connectivity node container to which the toplogical node belongs.', htmlDescription='

The connectivity node container to which the toplogical node belongs.

'], _type=ConnectivityNodeContainer, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=1974, uuid={88BD0C47-4CB3-44db-9A6B-20C783A24478}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,673 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=212, uuid=273458f0-8dc9-3b97-8d72-736bec7303fd, since=null, name=TopologicalNode, alias=, stereotype=, visibility=public, txtDescription='The topological nodes which belong to this connectivity node container.', htmlDescription='

The topological nodes which belong to this connectivity node container.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=213, uuid=069cc4c5-6982-3d6a-b143-1664cb457595, since=null, name=ConnectivityNodeContainer, alias=, stereotype=, visibility=public, txtDescription='The connectivity node container to which the toplogical node belongs.', htmlDescription='

The connectivity node container to which the toplogical node belongs.

'], _type=ConnectivityNodeContainer, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=1974, uuid={88BD0C47-4CB3-44db-9A6B-20C783A24478}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Core::ConnectivityNodeContainer +2024-09-08 15:11:35,673 [main] TRACE ClassBuilder - read from EA: Core::ConnectivityNodeContainer +2024-09-08 15:11:35,673 [main] TRACE ClassBuilder - Class Equipment (8 in package Core) +2024-09-08 15:11:35,673 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::Equipment, _objData=UmlObjectData [id=2117, uuid={410CEA04-CA77-46d9-A093-019230A2DE17}, since=null, name=normaIlyInService, alias=, stereotype=, visibility=public, txtDescription='The equipment is normally in service.', htmlDescription='

The equipment is normally in service.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,674 [main] DEBUG AssociationEndBuilder - Updated target type to Equipment +2024-09-08 15:11:35,674 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=true, _objData=UmlObjectData [id=217, uuid=0a5e7271-1477-3b5b-9d36-820d4b5102d3, since=null, name=EquipmentContainer, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=218, uuid=1b6ed2c9-b08a-3f97-b5b9-d68882a9511d, since=null, name=Equipments, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=Equipment, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=88, uuid={68BA73EF-8533-48ba-964A-DE0F722292D2}, since=null, name=, alias=, stereotype=European, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,674 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=true, _objData=UmlObjectData [id=217, uuid=0a5e7271-1477-3b5b-9d36-820d4b5102d3, since=null, name=EquipmentContainer, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=218, uuid=1b6ed2c9-b08a-3f97-b5b9-d68882a9511d, since=null, name=Equipments, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=Equipment, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=88, uuid={68BA73EF-8533-48ba-964A-DE0F722292D2}, since=null, name=, alias=, stereotype=European, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Core::Equipment +2024-09-08 15:11:35,674 [main] DEBUG ClassBuilder - Adding Equipment as superclass of ConductingEquipment +2024-09-08 15:11:35,674 [main] TRACE ClassBuilder - read from EA: Core::Equipment +2024-09-08 15:11:35,674 [main] TRACE ClassBuilder - Class EquipmentContainer (9 in package Core) +2024-09-08 15:11:35,674 [main] DEBUG AssociationEndBuilder - Updated source type to EquipmentContainer +2024-09-08 15:11:35,674 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=true, _objData=UmlObjectData [id=217, uuid=0a5e7271-1477-3b5b-9d36-820d4b5102d3, since=null, name=EquipmentContainer, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=EquipmentContainer, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=218, uuid=1b6ed2c9-b08a-3f97-b5b9-d68882a9511d, since=null, name=Equipments, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=Equipment, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=88, uuid={68BA73EF-8533-48ba-964A-DE0F722292D2}, since=null, name=, alias=, stereotype=European, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Core::EquipmentContainer +2024-09-08 15:11:35,675 [main] DEBUG ClassBuilder - Adding EquipmentContainer as subclass of ConnectivityNodeContainer +2024-09-08 15:11:35,675 [main] DEBUG ClassBuilder - Adding EquipmentContainer as superclass of Bay +2024-09-08 15:11:35,675 [main] TRACE ClassBuilder - read from EA: Core::EquipmentContainer +2024-09-08 15:11:35,675 [main] TRACE ClassBuilder - Class geographicalRegion (10 in package Core) +2024-09-08 15:11:35,675 [main] DEBUG AssociationEndBuilder - Updated source type to geographicalRegion +2024-09-08 15:11:35,676 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=true, _objData=UmlObjectData [id=222, uuid=c3a8465e-2594-3d17-92e7-b52af2b5181d, since=null, name=Region, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=geographicalRegion, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=223, uuid=920f4ca0-a433-3fb0-8721-59cbe7afeae0, since=null, name=Regions, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=90, uuid={023E20DF-DF02-4ffb-A047-E5BBDB18AB59}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,676 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=true, _objData=UmlObjectData [id=222, uuid=c3a8465e-2594-3d17-92e7-b52af2b5181d, since=null, name=Region, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=geographicalRegion, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=223, uuid=920f4ca0-a433-3fb0-8721-59cbe7afeae0, since=null, name=Regions, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=90, uuid={023E20DF-DF02-4ffb-A047-E5BBDB18AB59}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Core::geographicalRegion +2024-09-08 15:11:35,676 [main] TRACE ClassBuilder - read from EA: Core::geographicalRegion +2024-09-08 15:11:35,676 [main] TRACE ClassBuilder - Class OperatingParticipant (12 in package Core) +2024-09-08 15:11:35,677 [main] DEBUG AssociationEndBuilder - Updated target type to OperatingParticipant +2024-09-08 15:11:35,677 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=226, uuid=5288b2e1-b413-38f9-b1d7-feb5ade8564b, since=null, name=OperatingShare, alias=, stereotype=, visibility=public, txtDescription='the operating shares of an operating participant. An operating participant can be reused for any number of PSR's', htmlDescription='

the operating shares of an operating participant. An operating participant can be reused for any number of PSR's

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=227, uuid=082fce23-d7aa-3fe6-9bb0-de01cf50b285, since=null, name=OperatingParticipant, alias=, stereotype=, visibility=public, txtDescription='The linkage to a owners and its linkage attributes like percentage ownership. The ownership percentage should add to 100% for all owners of a PowerSystemResource, but a PSROwner may own any percentage of any number of PowerSystemResource objects.', htmlDescription='

The linkage to a owners and its linkage attributes like percentage ownership. The ownership percentage should add to 100% for all owners of a PowerSystemResource, but a PSROwner may own any percentage of any number of PowerSystemResource objects.

'], _type=OperatingParticipant, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=157, uuid={C8C2BA26-2410-41d8-9E77-EC3873BDCE5B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,677 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=226, uuid=5288b2e1-b413-38f9-b1d7-feb5ade8564b, since=null, name=OperatingShare, alias=, stereotype=, visibility=public, txtDescription='the operating shares of an operating participant. An operating participant can be reused for any number of PSR's', htmlDescription='

the operating shares of an operating participant. An operating participant can be reused for any number of PSR's

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=227, uuid=082fce23-d7aa-3fe6-9bb0-de01cf50b285, since=null, name=OperatingParticipant, alias=, stereotype=, visibility=public, txtDescription='The linkage to a owners and its linkage attributes like percentage ownership. The ownership percentage should add to 100% for all owners of a PowerSystemResource, but a PSROwner may own any percentage of any number of PowerSystemResource objects.', htmlDescription='

The linkage to a owners and its linkage attributes like percentage ownership. The ownership percentage should add to 100% for all owners of a PowerSystemResource, but a PSROwner may own any percentage of any number of PowerSystemResource objects.

'], _type=OperatingParticipant, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=157, uuid={C8C2BA26-2410-41d8-9E77-EC3873BDCE5B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Core::OperatingParticipant +2024-09-08 15:11:35,677 [main] TRACE ClassBuilder - read from EA: Core::OperatingParticipant +2024-09-08 15:11:35,677 [main] TRACE ClassBuilder - Class OperatingShare (13 in package Core) +2024-09-08 15:11:35,678 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::OperatingShare, _objData=UmlObjectData [id=2109, uuid={91E1E9AB-B240-4b98-9917-82000F0A4CFB}, since=null, name=percentage, alias=, stereotype=, visibility=public, txtDescription='Percentage ownership for this device. The percentage indicates the percentage ownership of the PSROwner for the PowerSystemResource. The total percentage ownership for a PowerSystemResource should add to 100%.', htmlDescription='

Percentage ownership for this device. The percentage indicates the percentage ownership of the PSROwner for the PowerSystemResource. The total percentage ownership for a PowerSystemResource should add to 100%.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=614, _eaTypeName=PerCent, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1 _constraints[ConstraintBuilder [_objData=UmlObjectData [id=230, uuid=5efb2328-1c5c-36d9-8c41-790fcb5a5558, since=null, name=constraintProcess, alias=, stereotype=, visibility=public, txtDescription='constraint description', htmlDescription='

constraint description

'], _containingAttribute=percentage, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=constraint description]]] +2024-09-08 15:11:35,678 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3468, uuid={D04C91E1-5D26-4805-9682-897D9D13D5B5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=OperatingShare, _otherEndName=?] +2024-09-08 15:11:35,678 [main] DEBUG AssociationEndBuilder - Updated source type to OperatingShare +2024-09-08 15:11:35,678 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=226, uuid=5288b2e1-b413-38f9-b1d7-feb5ade8564b, since=null, name=OperatingShare, alias=, stereotype=, visibility=public, txtDescription='the operating shares of an operating participant. An operating participant can be reused for any number of PSR's', htmlDescription='

the operating shares of an operating participant. An operating participant can be reused for any number of PSR's

'], _type=OperatingShare, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=227, uuid=082fce23-d7aa-3fe6-9bb0-de01cf50b285, since=null, name=OperatingParticipant, alias=, stereotype=, visibility=public, txtDescription='The linkage to a owners and its linkage attributes like percentage ownership. The ownership percentage should add to 100% for all owners of a PowerSystemResource, but a PSROwner may own any percentage of any number of PowerSystemResource objects.', htmlDescription='

The linkage to a owners and its linkage attributes like percentage ownership. The ownership percentage should add to 100% for all owners of a PowerSystemResource, but a PSROwner may own any percentage of any number of PowerSystemResource objects.

'], _type=OperatingParticipant, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=157, uuid={C8C2BA26-2410-41d8-9E77-EC3873BDCE5B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Core::OperatingShare +2024-09-08 15:11:35,679 [main] DEBUG AssociationEndBuilder - Updated source type to OperatingShare +2024-09-08 15:11:35,679 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=233, uuid=c6782162-e08a-3fc8-a4f3-3edb4cbcbaed, since=null, name=OperatingShare, alias=, stereotype=, visibility=public, txtDescription='"the linkage to any number of operating share objects.', htmlDescription='

"the linkage to any number of operating share objects.

'], _type=OperatingShare, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=234, uuid=ee60c1dd-309d-3dcc-9d34-e0b3493b0e8a, since=null, name=PowerSystemResource, alias=, stereotype=, visibility=public, txtDescription=''the PowerSystemResource to which the attribues apply. The percentage ownership of all owners of a PowerSystemResource should add to 100%.', htmlDescription='

'the PowerSystemResource to which the attribues apply. The percentage ownership of all owners of a PowerSystemResource should add to 100%.

'], _type=null, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=163, uuid={343B3487-FA8E-4906-A8F1-4D6E3B27F4AF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,679 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=233, uuid=c6782162-e08a-3fc8-a4f3-3edb4cbcbaed, since=null, name=OperatingShare, alias=, stereotype=, visibility=public, txtDescription='"the linkage to any number of operating share objects.', htmlDescription='

"the linkage to any number of operating share objects.

'], _type=OperatingShare, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=234, uuid=ee60c1dd-309d-3dcc-9d34-e0b3493b0e8a, since=null, name=PowerSystemResource, alias=, stereotype=, visibility=public, txtDescription=''the PowerSystemResource to which the attribues apply. The percentage ownership of all owners of a PowerSystemResource should add to 100%.', htmlDescription='

'the PowerSystemResource to which the attribues apply. The percentage ownership of all owners of a PowerSystemResource should add to 100%.

'], _type=null, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=163, uuid={343B3487-FA8E-4906-A8F1-4D6E3B27F4AF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Core::OperatingShare +2024-09-08 15:11:35,679 [main] TRACE ClassBuilder - read from EA: Core::OperatingShare +2024-09-08 15:11:35,679 [main] TRACE ClassBuilder - Class PhaseCode (14 in package Core) +2024-09-08 15:11:35,680 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=2054, uuid={8E38EE25-FD5C-4b01-938C-008998EDA526}, since=null, name=ABCN, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,680 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=2055, uuid={5A6F7D82-6A2C-4eb3-90BC-8F77AAD9D50F}, since=null, name=ABC, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,680 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=2056, uuid={C5F9ED62-CB15-4c15-98DB-6593686F63E2}, since=null, name=ABN, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,680 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=2057, uuid={0396E7F5-6112-49e7-A7C8-7B7FA0214AA7}, since=null, name=ACN, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,680 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=2058, uuid={F494A423-E865-4c3d-8C83-180728F30A66}, since=null, name=BCN, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,680 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=2059, uuid={77216F5E-3863-424c-91CD-4597AE97B61E}, since=null, name=AB, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,681 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=2060, uuid={598C4480-5C39-4889-8BD1-D1D2BCEB4DEA}, since=null, name=AC, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,681 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=2061, uuid={8124AC36-FD4D-4b64-A414-6F9B8D350469}, since=null, name=BC, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,681 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=2062, uuid={9B41A289-EDF6-4728-AABE-B11D2E617549}, since=null, name=AN, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,681 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=2063, uuid={2780D899-5467-4920-8DAA-117051620D3A}, since=null, name=BN, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,681 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=2064, uuid={DEB66611-AEAD-4b57-8CBD-65D1931709CE}, since=null, name=CN, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,681 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=2065, uuid={EA5174F8-A73C-4f4b-96AA-54EAFB16BC9F}, since=null, name=A, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,682 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=2066, uuid={DF516C67-D4FE-4a6b-9FE7-54E54036C7CA}, since=null, name=B, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,682 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=2067, uuid={8E5E8952-BD3F-4b06-A218-7A1EE85598D0}, since=null, name=C, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,682 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=2068, uuid={177D92A8-237D-4ec7-99BF-6BBE2AA2CE9E}, since=null, name=N, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,682 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=3246, uuid={7CBBF307-75C0-4255-B181-0BB16E0B4A23}, since=null, name=splitSecondary1N, alias=, stereotype=enum, visibility=public, txtDescription='Split-secondary phase 1 and Neutral.', htmlDescription='

Split-secondary phase 1 and Neutral.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,682 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=3247, uuid={16119B57-3431-4045-A8EB-1618E844A397}, since=null, name=splitSecondary2N, alias=, stereotype=enum, visibility=public, txtDescription='Split-secondary phase 2 and Neutral.', htmlDescription='

Split-secondary phase 2 and Neutral.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,683 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PhaseCode, _objData=UmlObjectData [id=3248, uuid={2E31EA79-AFF2-45bf-82E3-DD2DD070FDB6}, since=null, name=splitSecondary12N, alias=, stereotype=enum, visibility=public, txtDescription='Split-secondary phases 1 and 2, with Neutral.', htmlDescription='

Split-secondary phases 1 and 2, with Neutral.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,683 [main] TRACE ClassBuilder - read from EA: Core::PhaseCode +2024-09-08 15:11:35,684 [main] TRACE ClassBuilder - Class PowerSystemResource (15 in package Core) +2024-09-08 15:11:35,685 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [, _containingClass=PowerSystemResource, _objData=UmlObjectData [id=156, uuid={DCBCF26F-D99A-47b9-98AE-0086B1B9ED0A}, since=null, name=PSR-statechart, alias=, stereotype=, visibility=public, txtDescription='Added for testing only.', htmlDescription='

Added for testing only.

'], _portrait=true, _kind=STATECHART] +2024-09-08 15:11:35,685 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=STATE, _isConnector=false, _objData=UmlObjectData [id=1444, uuid={B4264243-743C-4b04-BDA6-3627169218AB}, since=null, name=DummyState, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=PowerSystemResource, _otherEndName=] +2024-09-08 15:11:35,685 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::PowerSystemResource, _objData=UmlObjectData [id=6708, uuid={DB23468D-32C9-44cf-9032-193304520B0A}, since=null, name=attr, alias=, stereotype=deprecated, visibility=public, txtDescription='This is to test whether deprecated attribute gets its (deprecated) printed in Word.', htmlDescription='

This is to test whether deprecated attribute gets its (deprecated) printed in Word.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,700 [main] TRACE OperationBuilder - read from EA: OperationBuilder [_containingClass=PowerSystemResource, _objData=UmlObjectData [id=1, uuid={9AD2158A-F617-4a1b-8CFF-EDCB93CA91B6}, since=null, name=GetWhatevers, alias=get whatevers operation alias, stereotype=, visibility=public, txtDescription='dummy operation - will be inherited by many, so we can test doc generation. This doc also misses "." at its end and starts with lowe case', htmlDescription='

dummy operation - will be inherited by many, so we can test doc generation. This doc also misses "." at its end and starts with lowe case

'], _abstract=true, _static=false, _final=false, _kind=OP_RET_ARRAY, _returnType=null, _eaReturnTypeId=0, _eaReturnTypeName=void, 3_exceptionNames[Dummy, PSRType, Dummy2], 2_taggedValues{throws=Dummy,PSRType,Dummy2, dummyCimTag=on operation}, 1_parameters[ParameterBuilder [_containingOperation=GetWhatevers, _position=0, _kind=ARRAY, _objData=UmlObjectData [id=262, uuid={D8176E9D-04E7-4fae-871C-213740261833}, since=null, name=multiples, alias=parAlias, stereotype=parStereo1, parStereo2, visibility=public, txtDescription='Doc is present (but does not end with ".")', htmlDescription='

Doc is present (but does not end with ".")

'], _type=null, _eaTypeName=BasePower[], _eaTypeIdAsString=0]]] +2024-09-08 15:11:35,700 [main] TRACE OperationBuilder - read from EA: OperationBuilder [_containingClass=PowerSystemResource, _objData=UmlObjectData [id=2, uuid={9953ABA5-65EC-4f38-A180-776FECE065FC}, since=null, name=setSomething, alias=, stereotype=someStereotype, visibility=public, txtDescription='"This one will have an "exception" - again to test doc generation.', htmlDescription='

"This one will have an "exception" - again to test doc generation.

'], _abstract=false, _static=false, _final=false, _kind=OP_RET_VOID, _returnType=null, _eaReturnTypeId=0, _eaReturnTypeName=void, 1_exceptionNames[Unit], 1_taggedValues{throws=Unit}, 1_parameters[ParameterBuilder [_containingOperation=setSomething, _position=0, _kind=SIMPLE, _objData=UmlObjectData [id=264, uuid={568C59BD-0A22-4219-A56C-793C82CCD0B3}, since=null, name=name, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _eaTypeName=String, _eaTypeIdAsString=637]]] +2024-09-08 15:11:35,701 [main] TRACE OperationBuilder - read from EA: OperationBuilder [_containingClass=PowerSystemResource, _objData=UmlObjectData [id=4, uuid={05EA558B-9FDB-4094-B4EE-CAFD70F8E07E}, since=null, name=foo, alias=, stereotype=, visibility=public, txtDescription=''some doc.', htmlDescription='

'some doc.

'], _abstract=false, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=null, _eaReturnTypeId=0, _eaReturnTypeName=Dumb, 1_taggedValues{someTag=value}, 3_parameters[ParameterBuilder [_containingOperation=foo, _position=0, _kind=SIMPLE, _objData=UmlObjectData [id=266, uuid={859C2123-0BBB-4124-B4F4-E3EC8808A2B3}, since=null, name=par3, alias=, stereotype=, visibility=public, txtDescription=''doc OK.', htmlDescription='

'doc OK.

'], _type=null, _eaTypeName=NonExisting, _eaTypeIdAsString=0], ParameterBuilder [_containingOperation=foo, _position=1, _kind=SIMPLE, _objData=UmlObjectData [id=267, uuid={6BD64A42-70E1-49ed-8B76-8D80ECDB74DD}, since=null, name=par2, alias=, stereotype=deprecated, visibility=public, txtDescription='Doc OK.', htmlDescription='

Doc OK.

'], _type=null, _eaTypeName=float, _eaTypeIdAsString=615], ParameterBuilder [_containingOperation=foo, _position=2, _kind=SIMPLE, _objData=UmlObjectData [id=268, uuid={44BC9203-AC20-49b9-A650-F211CB06958A}, since=null, name=par, alias=, stereotype=, visibility=public, txtDescription='"Doc OK.', htmlDescription='

"Doc OK.

'], _type=null, _eaTypeName=Par, _eaTypeIdAsString=0]]] +2024-09-08 15:11:35,701 [main] TRACE OperationBuilder - read from EA: OperationBuilder [_containingClass=PowerSystemResource, _objData=UmlObjectData [id=5, uuid={B6F10C35-6FE6-4e7e-8669-D4C1E1085C3E}, since=null, name=bar, alias=, stereotype=deprecated, visibility=public, txtDescription='', htmlDescription=''], _abstract=false, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=null, _eaReturnTypeId=0, _eaReturnTypeName=Dumb, 1_taggedValues{someTag=value}, 3_parameters[ParameterBuilder [_containingOperation=bar, _position=0, _kind=SIMPLE, _objData=UmlObjectData [id=270, uuid={5720BF71-FF81-4ac8-9EED-4CA747418672}, since=null, name=par3, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _eaTypeName=NonExisting, _eaTypeIdAsString=0], ParameterBuilder [_containingOperation=bar, _position=1, _kind=SIMPLE, _objData=UmlObjectData [id=271, uuid={E8047328-87C3-481b-998B-FBFFE7B4CFD0}, since=null, name=par2, alias=, stereotype=, visibility=public, txtDescription='starting with lower case, missing "." at the end', htmlDescription='

starting with lower case, missing "." at the end

'], _type=null, _eaTypeName=float, _eaTypeIdAsString=615], ParameterBuilder [_containingOperation=bar, _position=2, _kind=SIMPLE, _objData=UmlObjectData [id=272, uuid={7D6344F7-A5AB-43fe-A844-BA70EA5BDFF9}, since=null, name=par, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _eaTypeName=Par, _eaTypeIdAsString=0]]] +2024-09-08 15:11:35,702 [main] DEBUG AssociationEndBuilder - Updated target type to PowerSystemResource +2024-09-08 15:11:35,702 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=233, uuid=c6782162-e08a-3fc8-a4f3-3edb4cbcbaed, since=null, name=OperatingShare, alias=, stereotype=, visibility=public, txtDescription='"the linkage to any number of operating share objects.', htmlDescription='

"the linkage to any number of operating share objects.

'], _type=OperatingShare, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=234, uuid=ee60c1dd-309d-3dcc-9d34-e0b3493b0e8a, since=null, name=PowerSystemResource, alias=, stereotype=, visibility=public, txtDescription=''the PowerSystemResource to which the attribues apply. The percentage ownership of all owners of a PowerSystemResource should add to 100%.', htmlDescription='

'the PowerSystemResource to which the attribues apply. The percentage ownership of all owners of a PowerSystemResource should add to 100%.

'], _type=PowerSystemResource, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=163, uuid={343B3487-FA8E-4906-A8F1-4D6E3B27F4AF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Core::PowerSystemResource +2024-09-08 15:11:35,702 [main] DEBUG AssociationEndBuilder - Updated target type to PowerSystemResource +2024-09-08 15:11:35,703 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=274, uuid=95687635-5e2c-38e8-a9f7-3fcbd94f561c, since=null, name=AssetInfos, alias=, stereotype=, visibility=public, txtDescription='FooBar', htmlDescription='

FooBar

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=275, uuid=1892b331-bca4-3a23-9fd8-dccf941cd095, since=null, name=PSRs, alias=, stereotype=, visibility=public, txtDescription='Blah', htmlDescription='

Blah

'], _type=PowerSystemResource, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=2148, uuid={D93167F8-2A16-4fbc-BC07-353D141C8E50}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,703 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=274, uuid=95687635-5e2c-38e8-a9f7-3fcbd94f561c, since=null, name=AssetInfos, alias=, stereotype=, visibility=public, txtDescription='FooBar', htmlDescription='

FooBar

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=275, uuid=1892b331-bca4-3a23-9fd8-dccf941cd095, since=null, name=PSRs, alias=, stereotype=, visibility=public, txtDescription='Blah', htmlDescription='

Blah

'], _type=PowerSystemResource, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=2148, uuid={D93167F8-2A16-4fbc-BC07-353D141C8E50}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Core::PowerSystemResource +2024-09-08 15:11:35,703 [main] DEBUG AssociationEndBuilder - Updated source type to PowerSystemResource +2024-09-08 15:11:35,703 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=277, uuid=85817ea6-b142-3397-946f-27d595f4836c, since=null, name=PSR, alias=, stereotype=, visibility=public, txtDescription='My assoc with Terminal is navigable, deprecated and as inherited should also be navigable and have deprecation.', htmlDescription='

My assoc with Terminal is navigable, deprecated and as inherited should also be navigable and have deprecation.

'], _type=PowerSystemResource, _multiplicity=[0..1], _navigable=yes], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=278, uuid=9551ee09-b70f-351e-920c-f63f92025740, since=null, name=Terminal, alias=, stereotype=, visibility=public, txtDescription='My association with PSR is deprecated and as inherited should also have deprecation.', htmlDescription='

My association with PSR is deprecated and as inherited should also have deprecation.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3463, uuid={78E829D4-34BC-4740-8E95-42DBBF386677}, since=null, name=, alias=, stereotype=deprecated, visibility=public, txtDescription='', htmlDescription=''], _direction=Destination -> Source, _directionUnspecified=false, _biDirectional=false] +2024-09-08 15:11:35,703 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=277, uuid=85817ea6-b142-3397-946f-27d595f4836c, since=null, name=PSR, alias=, stereotype=, visibility=public, txtDescription='My assoc with Terminal is navigable, deprecated and as inherited should also be navigable and have deprecation.', htmlDescription='

My assoc with Terminal is navigable, deprecated and as inherited should also be navigable and have deprecation.

'], _type=PowerSystemResource, _multiplicity=[0..1], _navigable=yes], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=278, uuid=9551ee09-b70f-351e-920c-f63f92025740, since=null, name=Terminal, alias=, stereotype=, visibility=public, txtDescription='My association with PSR is deprecated and as inherited should also have deprecation.', htmlDescription='

My association with PSR is deprecated and as inherited should also have deprecation.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3463, uuid={78E829D4-34BC-4740-8E95-42DBBF386677}, since=null, name=, alias=, stereotype=deprecated, visibility=public, txtDescription='', htmlDescription=''], _direction=Destination -> Source, _directionUnspecified=false, _biDirectional=false] as source to Core::PowerSystemResource +2024-09-08 15:11:35,703 [main] DEBUG ClassBuilder - Adding PowerSystemResource as superclass of ConnectivityNodeContainer +2024-09-08 15:11:35,703 [main] DEBUG ClassBuilder - Adding PowerSystemResource as superclass of Equipment +2024-09-08 15:11:35,703 [main] TRACE ClassBuilder - read from EA: Core::PowerSystemResource +2024-09-08 15:11:35,704 [main] TRACE ClassBuilder - Class SubGeographicalRegion (16 in package Core) +2024-09-08 15:11:35,704 [main] DEBUG AssociationEndBuilder - Updated target type to SubGeographicalRegion +2024-09-08 15:11:35,704 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=true, _objData=UmlObjectData [id=222, uuid=c3a8465e-2594-3d17-92e7-b52af2b5181d, since=null, name=Region, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=geographicalRegion, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=223, uuid=920f4ca0-a433-3fb0-8721-59cbe7afeae0, since=null, name=Regions, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=SubGeographicalRegion, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=90, uuid={023E20DF-DF02-4ffb-A047-E5BBDB18AB59}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Core::SubGeographicalRegion +2024-09-08 15:11:35,704 [main] DEBUG AssociationEndBuilder - Updated source type to SubGeographicalRegion +2024-09-08 15:11:35,706 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=true, _objData=UmlObjectData [id=281, uuid=5d9d12f6-3391-3f75-91fb-cc4617d58cde, since=null, name=Region, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=SubGeographicalRegion, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=282, uuid=c16eec64-cddc-309c-9ca5-ecb70b7b1f7d, since=null, name=Substations, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=91, uuid={66E7D72B-2889-483c-80A2-2E51B283F2B1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,706 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=true, _objData=UmlObjectData [id=281, uuid=5d9d12f6-3391-3f75-91fb-cc4617d58cde, since=null, name=Region, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=SubGeographicalRegion, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=282, uuid=c16eec64-cddc-309c-9ca5-ecb70b7b1f7d, since=null, name=Substations, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=91, uuid={66E7D72B-2889-483c-80A2-2E51B283F2B1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Core::SubGeographicalRegion +2024-09-08 15:11:35,706 [main] TRACE ClassBuilder - read from EA: Core::SubGeographicalRegion +2024-09-08 15:11:35,706 [main] TRACE ClassBuilder - Class Substation (17 in package Core) +2024-09-08 15:11:35,706 [main] DEBUG AssociationEndBuilder - Updated target type to Substation +2024-09-08 15:11:35,706 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=true, _objData=UmlObjectData [id=281, uuid=5d9d12f6-3391-3f75-91fb-cc4617d58cde, since=null, name=Region, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=SubGeographicalRegion, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=282, uuid=c16eec64-cddc-309c-9ca5-ecb70b7b1f7d, since=null, name=Substations, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=Substation, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=91, uuid={66E7D72B-2889-483c-80A2-2E51B283F2B1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Core::Substation +2024-09-08 15:11:35,706 [main] DEBUG AssociationEndBuilder - Updated source type to Substation +2024-09-08 15:11:35,707 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=true, _objData=UmlObjectData [id=285, uuid=760199e4-27b3-34be-97f9-49ff48b35cfe, since=null, name=Substation, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=Substation, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=286, uuid=732c1677-4a79-34a8-a236-a0a8e0fcd7ca, since=null, name=VoltageLevels, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=94, uuid={0E9E9E28-C575-47c5-BF01-7F4EB8B36D16}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,707 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=true, _objData=UmlObjectData [id=285, uuid=760199e4-27b3-34be-97f9-49ff48b35cfe, since=null, name=Substation, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=Substation, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=286, uuid=732c1677-4a79-34a8-a236-a0a8e0fcd7ca, since=null, name=VoltageLevels, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=94, uuid={0E9E9E28-C575-47c5-BF01-7F4EB8B36D16}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Core::Substation +2024-09-08 15:11:35,707 [main] DEBUG AssociationEndBuilder - Updated target type to Substation +2024-09-08 15:11:35,707 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=185, uuid=b3b3f64f-0f2d-3934-8f26-f0508da2c3ec, since=null, name=bays, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=Bay, _multiplicity=[0..*], _navigable=yes], _targetEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=false, _objData=UmlObjectData [id=186, uuid=b5299d65-7a4d-3948-9041-95c7efec55f6, since=null, name=Substation, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=Substation, _multiplicity=[0..1], _navigable=yes], _objData=UmlObjectData [id=116, uuid={51152F4A-1B03-451f-BA84-6A05A6AE1630}, since=null, name=, alias=, stereotype=European, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Bi-Directional, _directionUnspecified=false, _biDirectional=true] as target to Core::Substation +2024-09-08 15:11:35,707 [main] DEBUG ClassBuilder - Adding Substation as subclass of EquipmentContainer +2024-09-08 15:11:35,707 [main] TRACE ClassBuilder - read from EA: Core::Substation +2024-09-08 15:11:35,707 [main] TRACE ClassBuilder - Class Terminal (18 in package Core) +2024-09-08 15:11:35,708 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::Terminal, _objData=UmlObjectData [id=3125, uuid={C97C0B38-C62F-4f03-A3DE-A67F29A6C6DB}, since=null, name=connected, alias=, stereotype=, visibility=public, txtDescription='The terminal connection status. True implies the terminal is connected, and false implies the terminal is not connected. This is the result of topoplogical processing of a detailed Connectivity node and Switch model whether present in the model or not. A terminal that is not connected cannot support a current flow. A terminal that is connected may have flow. In general a multi-terminal device may simultaneously have connected and disconnected terminals. No other aspect of the algorithm', htmlDescription='

The terminal connection status. True implies the terminal is connected, and false implies the terminal is not connected. This is the result of topoplogical processing of a detailed Connectivity node and Switch model whether present in the model or not. A terminal that is not connected cannot support a current flow. A terminal that is connected may have flow. In general a multi-terminal device may simultaneously have connected and disconnected terminals. No other aspect of the algorithm

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,708 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::Terminal, _objData=UmlObjectData [id=3188, uuid={7C7195D3-DFCD-487f-BF92-F359BBE7AFD0}, since=null, name=sequenceNumber, alias=, stereotype=, visibility=public, txtDescription='The orientation of the terminal connections for a multiple terminal conducting equipment. The sequence numbering starts with 1 and additional terminals should follow in increasing order. The first terminal is the "starting point" for a two terminal branch. In the case of class TransformerWinding only one terminal is used so its sequenceNumber must be 1.', htmlDescription='

The orientation of the terminal connections for a multiple terminal conducting equipment. The sequence numbering starts with 1 and additional terminals should follow in increasing order. The first terminal is the "starting point" for a two terminal branch. In the case of class TransformerWinding only one terminal is used so its sequenceNumber must be 1.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,708 [main] DEBUG AssociationEndBuilder - Updated source type to Terminal +2024-09-08 15:11:35,708 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=205, uuid=3020dda1-bf9e-3f5b-9056-790543c07a77, since=null, name=Terminals, alias=Alias for terminal, stereotype=, visibility=public, txtDescription='ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes', htmlDescription='

ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes

'], _type=Terminal, _multiplicity=[0..*], _navigable=unspecified, 1_taggedValues{Role1=abc}], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=206, uuid=87a7d63b-bff7-34ea-a364-5adbc3812350, since=null, name=ConductingEquipment, alias=Alias for conducting equipment, stereotype=, visibility=public, txtDescription='ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes', htmlDescription='

ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes

'], _type=ConductingEquipment, _multiplicity=[1..1], _navigable=unspecified, 3_taggedValues{AnotherRole2=abc, targetEndTag=blah, Role2=xyz}], _objData=UmlObjectData [id=123, uuid={5FEF5186-7804-4dad-8E18-8C5DB7FCE6B2}, since=null, name=NamedWithTagsEverywhere, alias=Alias for NamedWithTagsEverywhere, stereotype=, visibility=public, txtDescription='ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes', htmlDescription='

ConductingEquipment has 1 or 2 terminals that may be connected to other ConductingEquipment terminals via ConnectivityNodes

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false, 2_taggedValues{CE-TermAssoc=1, MoreAssoc=}] as source to Core::Terminal +2024-09-08 15:11:35,709 [main] DEBUG AssociationEndBuilder - Updated source type to Terminal +2024-09-08 15:11:35,709 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=291, uuid=90cbfea3-4fcc-3b34-8a4d-19b078519a40, since=null, name=Terminals, alias=, stereotype=, visibility=public, txtDescription='Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.', htmlDescription='

Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.

'], _type=Terminal, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=292, uuid=82cf9a85-6ff2-3238-844b-b1eb670bffb2, since=null, name=ConnectivityNode, alias=, stereotype=, visibility=public, txtDescription='Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.', htmlDescription='

Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=229, uuid={C7E01609-F4E6-4a6e-8ACF-BDD413E62DE3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.', htmlDescription='

Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,709 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=291, uuid=90cbfea3-4fcc-3b34-8a4d-19b078519a40, since=null, name=Terminals, alias=, stereotype=, visibility=public, txtDescription='Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.', htmlDescription='

Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.

'], _type=Terminal, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=292, uuid=82cf9a85-6ff2-3238-844b-b1eb670bffb2, since=null, name=ConnectivityNode, alias=, stereotype=, visibility=public, txtDescription='Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.', htmlDescription='

Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=229, uuid={C7E01609-F4E6-4a6e-8ACF-BDD413E62DE3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.', htmlDescription='

Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Core::Terminal +2024-09-08 15:11:35,709 [main] DEBUG AssociationEndBuilder - Updated source type to Terminal +2024-09-08 15:11:35,710 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=294, uuid=156aeee5-edcf-3620-8689-98f66c084af5, since=null, name=Terminal, alias=, stereotype=, visibility=public, txtDescription='The terminals associated with the topological node. This can be used as an alternative to the connectivity node path to terminal, thus making it unneccesary to model connedtivity nodes in some cases. Note that the if connectivity nodes are in the model, this association would proably not be used.', htmlDescription='

The terminals associated with the topological node. This can be used as an alternative to the connectivity node path to terminal, thus making it unneccesary to model connedtivity nodes in some cases. Note that the if connectivity nodes are in the model, this association would proably not be used.

'], _type=Terminal, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=false, _objData=UmlObjectData [id=295, uuid=347bba3d-4267-3d35-8f14-3bf34cfb435d, since=null, name=TopologicalNode, alias=, stereotype=, visibility=public, txtDescription='The topological node associated with the terminal. This can be used as an alternative to the connectivity node path to topological node, thus making it unneccesary to model connedtivity nodes in some cases. Note that the if connectivity nodes are in the model, this association would proably not be used.', htmlDescription='

The topological node associated with the terminal. This can be used as an alternative to the connectivity node path to topological node, thus making it unneccesary to model connedtivity nodes in some cases. Note that the if connectivity nodes are in the model, this association would proably not be used.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=1961, uuid={F490BFCA-36A8-4fe2-B28B-66466134B41E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,710 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=294, uuid=156aeee5-edcf-3620-8689-98f66c084af5, since=null, name=Terminal, alias=, stereotype=, visibility=public, txtDescription='The terminals associated with the topological node. This can be used as an alternative to the connectivity node path to terminal, thus making it unneccesary to model connedtivity nodes in some cases. Note that the if connectivity nodes are in the model, this association would proably not be used.', htmlDescription='

The terminals associated with the topological node. This can be used as an alternative to the connectivity node path to terminal, thus making it unneccesary to model connedtivity nodes in some cases. Note that the if connectivity nodes are in the model, this association would proably not be used.

'], _type=Terminal, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=false, _objData=UmlObjectData [id=295, uuid=347bba3d-4267-3d35-8f14-3bf34cfb435d, since=null, name=TopologicalNode, alias=, stereotype=, visibility=public, txtDescription='The topological node associated with the terminal. This can be used as an alternative to the connectivity node path to topological node, thus making it unneccesary to model connedtivity nodes in some cases. Note that the if connectivity nodes are in the model, this association would proably not be used.', htmlDescription='

The topological node associated with the terminal. This can be used as an alternative to the connectivity node path to topological node, thus making it unneccesary to model connedtivity nodes in some cases. Note that the if connectivity nodes are in the model, this association would proably not be used.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=1961, uuid={F490BFCA-36A8-4fe2-B28B-66466134B41E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Core::Terminal +2024-09-08 15:11:35,710 [main] DEBUG AssociationEndBuilder - Updated target type to Terminal +2024-09-08 15:11:35,710 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=277, uuid=85817ea6-b142-3397-946f-27d595f4836c, since=null, name=PSR, alias=, stereotype=, visibility=public, txtDescription='My assoc with Terminal is navigable, deprecated and as inherited should also be navigable and have deprecation.', htmlDescription='

My assoc with Terminal is navigable, deprecated and as inherited should also be navigable and have deprecation.

'], _type=PowerSystemResource, _multiplicity=[0..1], _navigable=yes], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=278, uuid=9551ee09-b70f-351e-920c-f63f92025740, since=null, name=Terminal, alias=, stereotype=, visibility=public, txtDescription='My association with PSR is deprecated and as inherited should also have deprecation.', htmlDescription='

My association with PSR is deprecated and as inherited should also have deprecation.

'], _type=Terminal, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3463, uuid={78E829D4-34BC-4740-8E95-42DBBF386677}, since=null, name=, alias=, stereotype=deprecated, visibility=public, txtDescription='', htmlDescription=''], _direction=Destination -> Source, _directionUnspecified=false, _biDirectional=false] as target to Core::Terminal +2024-09-08 15:11:35,710 [main] TRACE ClassBuilder - read from EA: Core::Terminal +2024-09-08 15:11:35,711 [main] TRACE ClassBuilder - Class VoltageLevel (19 in package Core) +2024-09-08 15:11:35,711 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::VoltageLevel, _objData=UmlObjectData [id=2106, uuid={D1BAD493-B22A-497f-B6A6-CDFDF46EA012}, since=null, name=highVoltageLimit, alias=, stereotype=, visibility=public, txtDescription='The bus bar's high voltage limit', htmlDescription='

The bus bar's high voltage limit

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=602, _eaTypeName=Voltage, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,711 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::VoltageLevel, _objData=UmlObjectData [id=2107, uuid={EB17FEAC-CDBA-4bbd-B45E-86D3EA333C08}, since=null, name=lowVoltageLimit, alias=, stereotype=, visibility=public, txtDescription='The bus bar's low voltage limit', htmlDescription='

The bus bar's low voltage limit

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=602, _eaTypeName=Voltage, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,711 [main] TRACE OperationBuilder - read from EA: OperationBuilder [_containingClass=VoltageLevel, _objData=UmlObjectData [id=3, uuid={4334506A-A0EC-4e66-AD2B-2DBEBB2B1561}, since=null, name=getVoltage, alias=, stereotype=, visibility=public, txtDescription='Third and last dumb operation for doc generation testing.', htmlDescription='

Third and last dumb operation for doc generation testing.

'], _abstract=false, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=null, _eaReturnTypeId=602, _eaReturnTypeName=Voltage] +2024-09-08 15:11:35,711 [main] DEBUG AssociationEndBuilder - Updated target type to VoltageLevel +2024-09-08 15:11:35,713 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=true, _objData=UmlObjectData [id=285, uuid=760199e4-27b3-34be-97f9-49ff48b35cfe, since=null, name=Substation, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=Substation, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=286, uuid=732c1677-4a79-34a8-a236-a0a8e0fcd7ca, since=null, name=VoltageLevels, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=VoltageLevel, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=94, uuid={0E9E9E28-C575-47c5-BF01-7F4EB8B36D16}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Core::VoltageLevel +2024-09-08 15:11:35,713 [main] DEBUG AssociationEndBuilder - Updated source type to VoltageLevel +2024-09-08 15:11:35,713 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=true, _objData=UmlObjectData [id=182, uuid=da543f3e-ced1-3dc8-93da-d53ef6d9b078, since=null, name=VoltageLevel, alias=, stereotype=endStereo1, deprecated, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=VoltageLevel, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=183, uuid=ac2c3369-c00d-3e2e-b4b5-51330068bc70, since=null, name=Bays, alias=, stereotype=deprecated, endStereo2, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _type=Bay, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=115, uuid={5E328091-5BC1-4fa8-9BA3-F087A215492A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='The association is used in the naming hierarchy.', htmlDescription='

The association is used in the naming hierarchy.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Core::VoltageLevel +2024-09-08 15:11:35,713 [main] DEBUG AssociationEndBuilder - Updated source type to VoltageLevel +2024-09-08 15:11:35,713 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=166, uuid=2df96825-3bf0-3160-a555-a54fda61527c, since=null, name=VoltageLevel, alias=, stereotype=, visibility=public, txtDescription='The VoltageLevels having this BaseVoltage.', htmlDescription='

The VoltageLevels having this BaseVoltage.

'], _type=VoltageLevel, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=167, uuid=7e385884-ee3f-3d72-af09-7657d3ecd905, since=null, name=BaseVoltage, alias=, stereotype=, visibility=public, txtDescription='The base voltage used for all equipment within the VoltageLevel.', htmlDescription='

The base voltage used for all equipment within the VoltageLevel.

'], _type=BaseVoltage, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=120, uuid={F610FDC8-D98D-4367-99A9-E9CA1C8A8CC5}, since=null, name=, alias=, stereotype=deprecated, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Core::VoltageLevel +2024-09-08 15:11:35,713 [main] DEBUG ClassBuilder - Adding VoltageLevel as subclass of EquipmentContainer +2024-09-08 15:11:35,713 [main] TRACE ClassBuilder - read from EA: Core::VoltageLevel +2024-09-08 15:11:35,713 [main] TRACE ClassBuilder - Class IdentifiedObject (20 in package Core) +2024-09-08 15:11:35,714 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::IdentifiedObject, _objData=UmlObjectData [id=6646, uuid={D4F8B75D-CDAD-4440-8092-1425101E5ABC}, since=null, name=aliasName, alias=, stereotype=, visibility=public, txtDescription='The aliasName is free text human readable name of the object alternative to IdentifiedObject.name. It may be non unique and may not correlate to a naming hierarchy. +The attribute aliasName is retained because of backwards compatibility between CIM relases. It is however recommended to replace aliasName with the Name class as aliasName is planned for retirement at a future time.', htmlDescription='

The aliasName is free text human readable name of the object alternative to IdentifiedObject.name. It may be non unique and may not correlate to a naming hierarchy.

The attribute aliasName is retained because of backwards compatibility between CIM relases. It is however recommended to replace aliasName with the Name class as aliasName is planned for retirement at a future time.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,714 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::IdentifiedObject, _objData=UmlObjectData [id=6647, uuid={C775F80A-A23D-4f38-AB9D-49D1FA882337}, since=null, name=mRID, alias=, stereotype=, visibility=public, txtDescription='Master resource identifier issued by a model authority. The mRID must semantically be a UUID as specified in RFC 4122. The mRID is globally unique. +For CIMXML data files in RDF syntax, the mRID is mapped to rdf:ID or rdf:about attributes that identify CIM object elements.', htmlDescription='

Master resource identifier issued by a model authority. The mRID must semantically be a UUID as specified in RFC 4122. The mRID is globally unique.

For CIMXML data files in RDF syntax, the mRID is mapped to rdf:ID or rdf:about attributes that identify CIM object elements.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,714 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::IdentifiedObject, _objData=UmlObjectData [id=6648, uuid={870F033B-EDA6-4a32-A5AD-47DCBBFE2997}, since=null, name=name, alias=, stereotype=, visibility=public, txtDescription='The name is any free human readable and possibly non unique text naming the object.', htmlDescription='

The name is any free human readable and possibly non unique text naming the object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,714 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Core::IdentifiedObject, _objData=UmlObjectData [id=6649, uuid={870F033B-EDA6-4a32-A5AD-47DCBBFE2997}, since=null, name=description, alias=, stereotype=, visibility=public, txtDescription='The description is a free human readable text describing or naming the object. It may be non unique and may not correlate to a naming hierarchy.', htmlDescription='

The description is a free human readable text describing or naming the object. It may be non unique and may not correlate to a naming hierarchy.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,715 [main] DEBUG ClassBuilder - Adding IdentifiedObject as superclass of Terminal +2024-09-08 15:11:35,715 [main] DEBUG ClassBuilder - Adding IdentifiedObject as superclass of BaseVoltage +2024-09-08 15:11:35,715 [main] DEBUG ClassBuilder - Adding IdentifiedObject as superclass of BasePower +2024-09-08 15:11:35,715 [main] DEBUG ClassBuilder - Adding IdentifiedObject as superclass of SubGeographicalRegion +2024-09-08 15:11:35,715 [main] DEBUG ClassBuilder - Adding IdentifiedObject as superclass of geographicalRegion +2024-09-08 15:11:35,715 [main] DEBUG ClassBuilder - Adding IdentifiedObject as superclass of OperatingParticipant +2024-09-08 15:11:35,715 [main] DEBUG ClassBuilder - Adding IdentifiedObject as superclass of PowerSystemResource +2024-09-08 15:11:35,715 [main] TRACE ClassBuilder - read from EA: Core::IdentifiedObject +2024-09-08 15:11:35,715 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61970, _depth=1, _eaElementID=579, _objData=UmlObjectData [id=54, uuid={6A503B72-6E15-4cd1-B92D-DDF6D14DBE29}, since=null, name=Core, alias=, stereotype=, visibility=public, txtDescription='"Contains the core PowerSystemResource and ConductingEquipment entities shared by all applications plus common collections of those entities. Not all applications require all the Core entities. This package does not depend on any other package except the Domain package, but most of the other packages have associations and generalizations that depend on it. +Test bold ignored.', htmlDescription='

"Contains the core PowerSystemResource and ConductingEquipment entities shared by all applications plus common collections of those entities. Not all applications require all the Core entities. This package does not depend on any other package except the Domain package, but most of the other packages have associations and generalizations that depend on it.

Test bold ignored.

'], _modelId=2, _selfDependent=false, 6_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3029, uuid={F8743013-1839-4100-8A7A-A8F62B12BF60}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Note: Diagram does have <> stereotype, but I don't seem to find the means to display that anywhere in EA: neither diagram itself nor Project Browser (in contrast to other UML elements, such as class, package, etc.).', htmlDescription='

Note: Diagram does have <<deprecated>> stereotype, but I don't seem to find the means to display that anywhere in EA: neither diagram itself nor Project Browser (in contrast to other UML elements, such as class, package, etc.).

'], _containingPackage=Core, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3082, uuid={597FAD1D-4901-4aae-9B6F-EA32A226A6A2}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Both class and attribute (here: literal 'singleBreaker') have constraints, we can visualise only those on class.', htmlDescription='

Both class and attribute (here: literal 'singleBreaker') have constraints, we can visualise only those on class.

'], _containingPackage=Core, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3083, uuid={C037F9C1-53F1-43ae-BBF4-92F9C66EE3D7}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='attribute has constraint, but it cannot be displayed...', htmlDescription='

attribute has constraint, but it cannot be displayed...

'], _containingPackage=Core, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3084, uuid={E1C2884E-0577-41a7-ACBD-0C789F87546C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='constraint on generalisation can be specified. seems to be always displayed - cannot be hidden.', htmlDescription='

constraint on generalisation can be specified. seems to be always displayed - cannot be hidden.

'], _containingPackage=Core, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3085, uuid={9A93B88B-4383-4d6a-8BB3-9ABEAB06A27B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Core, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3086, uuid={FE9DCCF0-64F8-47d0-95BE-6D22F3B70814}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Need to enable Diagram option to show constraints, and optionally (if desired) inherited constraints.', htmlDescription='

Need to enable Diagram option to show constraints, and optionally (if desired) inherited constraints.

'], _containingPackage=Core, _otherEndName=]], 2_diagrams=[DiagramBuilder [_containingPackage=Core, _objData=UmlObjectData [id=153, uuid={F791662C-7488-4578-88E1-21352F9799CF}, since=null, name=Main, alias=, stereotype=, visibility=public, txtDescription='"This diagram is intended to show all classes needed for any application of the CIM for modeling transmission and generation systems. +Test bold ignored.', htmlDescription='

"This diagram is intended to show all classes needed for any application of the CIM for modeling transmission and generation systems.

Test bold ignored.

'], _portrait=true, _kind=LOGICAL], DiagramBuilder [_containingPackage=Core, _objData=UmlObjectData [id=155, uuid={88289F74-ECDD-42e8-A693-6744785B1A0C}, since=null, name=Ownership, alias=, stereotype=Deprecated, visibility=public, txtDescription='doc present (but missing "." at its end) and starting with lower case letter', htmlDescription='

doc present (but missing "." at its end) and starting with lower case letter

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=1, _dependenciesAsTarget=1, _classes=19 +2024-09-08 15:11:35,715 [main] INFO PackageBuilder - processing package Topology (5) ... +2024-09-08 15:11:35,716 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Topology, _objData=UmlObjectData [id=142, uuid={BED90F47-24EF-4af0-A8CD-1DB3BE1E6A2E}, since=null, name=Main, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all classes included in the Topology package as well as the key external classes that have associations with Topology classes.', htmlDescription='

This diagram shows all classes included in the Topology package as well as the key external classes that have associations with Topology classes.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:35,716 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Topology, _objData=UmlObjectData [id=175, uuid={812B4853-1CF3-409f-A123-486DC421E542}, since=null, name=DiagramWithoutComment, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:35,716 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61970::Topology->IEC61970::Core, _objData=UmlObjectData [id=480, uuid={285C8813-D098-4165-89FE-151394F8B419}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], 1_taggedValues{depTag=value}] +2024-09-08 15:11:35,716 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = IEC61970::Topology->null, _objData=UmlObjectData [id=2132, uuid={FE9A0E08-9542-4980-B6A9-7CFE59DFDF87}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,717 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=792, uuid={28BA82FD-7570-4c86-9A3A-050C731746F5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Bus/Branch bus naming specificaiton static model.', htmlDescription='

Bus/Branch bus naming specificaiton static model.

'], _containingPackage=Topology, _otherEndName=] +2024-09-08 15:11:35,718 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=793, uuid={3080379F-A230-42b0-B079-E64E9C2C4C0E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Bus/Branch calculated Model', htmlDescription='

Bus/Branch calculated Model

'], _containingPackage=Topology, _otherEndName=] +2024-09-08 15:11:35,718 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=798, uuid={F181AA99-3812-4aea-BBD5-6AFFAC73C51E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Switch/Node static Model', htmlDescription='

Switch/Node static Model

'], _containingPackage=Topology, _otherEndName=] +2024-09-08 15:11:35,718 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1445, uuid={7A16D86A-89E8-448d-9921-85B3C3F84B61}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='C2_1: {constrained1, constrained2: all present or all absent}', htmlDescription='

C2_1: {constrained1, constrained2: all present or all absent}

'], _containingPackage=Topology, _otherEndName=] +2024-09-08 15:11:35,718 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1446, uuid={99D566C7-C1FF-4a61-8F98-9BF57F54E99C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='C2_2: {constrained3, constrained4: all present or all absent}', htmlDescription='

C2_2: {constrained3, constrained4: all present or all absent}

'], _containingPackage=Topology, _otherEndName=] +2024-09-08 15:11:35,718 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1447, uuid={30E75C31-A0AF-4889-9B1B-86955E51DB15}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='PICS_SUBST: {constrained5, if substitution defined}', htmlDescription='

PICS_SUBST: {constrained5, if substitution defined}

'], _containingPackage=Topology, _otherEndName=] +2024-09-08 15:11:35,718 [main] TRACE ClassBuilder - Class DumbSubterminal (0 in package Topology) +2024-09-08 15:11:35,719 [main] DEBUG ClassBuilder - Adding DumbSubterminal as subclass of Terminal +2024-09-08 15:11:35,719 [main] TRACE ClassBuilder - read from EA: Topology::DumbSubterminal +2024-09-08 15:11:35,719 [main] TRACE ClassBuilder - Class BusNameMarker (1 in package Topology) +2024-09-08 15:11:35,720 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Topology::BusNameMarker, _objData=UmlObjectData [id=3250, uuid={C375C88C-1BD9-4f29-874F-85F591975EEE}, since=null, name=constrained1, alias=, stereotype=, visibility=public, txtDescription='Added to test parsing and assigning constraints.', htmlDescription='

Added to test parsing and assigning constraints.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2 _constraints[ConstraintBuilder [_objData=UmlObjectData [id=322, uuid=e7838b89-c1f1-3846-82c2-b51c40441fcd, since=null, name=maxIdx, alias=, stereotype=, visibility=public, txtDescription='count+1', htmlDescription='

count+1

'], _containingAttribute=constrained1, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=count+1], ConstraintBuilder [_objData=UmlObjectData [id=323, uuid=504022e1-a42d-3d7e-a7ab-50f48306f4f8, since=null, name=minIdx, alias=, stereotype=, visibility=public, txtDescription='0', htmlDescription='

0

'], _containingAttribute=constrained1, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=0]]] +2024-09-08 15:11:35,720 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Topology::BusNameMarker, _objData=UmlObjectData [id=3251, uuid={6EA50EAF-292F-4f17-A3F5-EB732279F805}, since=null, name=constrained2, alias=, stereotype=, visibility=public, txtDescription='Added to test parsing and assigning constraints.', htmlDescription='

Added to test parsing and assigning constraints.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,720 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Topology::BusNameMarker, _objData=UmlObjectData [id=3252, uuid={31FC9762-65CA-42b7-ABCB-83EFD97D28CE}, since=null, name=constrained3, alias=, stereotype=, visibility=public, txtDescription='Added to test parsing and assigning constraints.', htmlDescription='

Added to test parsing and assigning constraints.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,721 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Topology::BusNameMarker, _objData=UmlObjectData [id=3253, uuid={96BA1CD3-C66C-4ea0-9D8F-B6776C6C49AE}, since=null, name=constrained4, alias=, stereotype=, visibility=public, txtDescription='Added to test parsing and assigning constraints.', htmlDescription='

Added to test parsing and assigning constraints.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,721 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3, uuid={590BBDE0-69DD-4470-B132-44CEC789B123}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=BusNameMarker, _otherEndName=?] +2024-09-08 15:11:35,721 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2093, uuid={96400D51-E956-4b4e-B06B-7F9CBA5E04C2}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=BusNameMarker, _otherEndName=?] +2024-09-08 15:11:35,721 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2094, uuid={70FC92E4-E2D8-4b16-8737-2A47F81F86AF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=BusNameMarker, _otherEndName=?] +2024-09-08 15:11:35,721 [main] DEBUG AssociationEndBuilder - Updated source type to BusNameMarker +2024-09-08 15:11:35,722 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=331, uuid=2167dbf0-972a-3c64-9926-ceb9eb42028e, since=null, name=BusNameMarker, alias=, stereotype=srcStereo1, srcStereo2, visibility=public, txtDescription='The associated name of the bus (TopologicalNode) containing the ConnectivityNode is derived by an algorithm that uses the bus name marker.', htmlDescription='

The associated name of the bus (TopologicalNode) containing the ConnectivityNode is derived by an algorithm that uses the bus name marker.

'], _type=BusNameMarker, _multiplicity=[0..1], _navigable=unspecified, 1_taggedValues{srcTag=valueSrcTag}], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=332, uuid=1135f63d-8caf-3807-b40b-8c38abc7f979, since=null, name=PrivateConnectivityNode, alias=, stereotype=endStereo1, endStereo2, visibility=private, txtDescription='The list of nodes which have the same bus name in the normal topology. Note that this list of ConnectivityNodes should be connected by objects derived from Switch that are normally closed.', htmlDescription='

The list of nodes which have the same bus name in the normal topology. Note that this list of ConnectivityNodes should be connected by objects derived from Switch that are normally closed.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified, 1_taggedValues{endTag=valueEndTag}], _objData=UmlObjectData [id=228, uuid={EE3B8B0F-5740-4380-91F9-563BFD5783D7}, since=null, name=, alias=, stereotype=otherStereo, deprecated, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false, 1_taggedValues{assocTag=val}] +2024-09-08 15:11:35,722 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=331, uuid=2167dbf0-972a-3c64-9926-ceb9eb42028e, since=null, name=BusNameMarker, alias=, stereotype=srcStereo1, srcStereo2, visibility=public, txtDescription='The associated name of the bus (TopologicalNode) containing the ConnectivityNode is derived by an algorithm that uses the bus name marker.', htmlDescription='

The associated name of the bus (TopologicalNode) containing the ConnectivityNode is derived by an algorithm that uses the bus name marker.

'], _type=BusNameMarker, _multiplicity=[0..1], _navigable=unspecified, 1_taggedValues{srcTag=valueSrcTag}], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=332, uuid=1135f63d-8caf-3807-b40b-8c38abc7f979, since=null, name=PrivateConnectivityNode, alias=, stereotype=endStereo1, endStereo2, visibility=private, txtDescription='The list of nodes which have the same bus name in the normal topology. Note that this list of ConnectivityNodes should be connected by objects derived from Switch that are normally closed.', htmlDescription='

The list of nodes which have the same bus name in the normal topology. Note that this list of ConnectivityNodes should be connected by objects derived from Switch that are normally closed.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified, 1_taggedValues{endTag=valueEndTag}], _objData=UmlObjectData [id=228, uuid={EE3B8B0F-5740-4380-91F9-563BFD5783D7}, since=null, name=, alias=, stereotype=otherStereo, deprecated, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false, 1_taggedValues{assocTag=val}] as source to Topology::BusNameMarker +2024-09-08 15:11:35,722 [main] DEBUG ClassBuilder - Adding BusNameMarker as subclass of IdentifiedObject +2024-09-08 15:11:35,722 [main] DEBUG ClassBuilder - Adding BusNameMarker as subclass of InfClass2 +2024-09-08 15:11:35,722 [main] TRACE ClassBuilder - read from EA: Topology::BusNameMarker +2024-09-08 15:11:35,722 [main] TRACE ClassBuilder - Class ConnectivityNode (2 in package Topology) +2024-09-08 15:11:35,723 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=1, uuid={88A0C200-EEC6-4046-94D0-E55191619276}, since=null, name=Switch/Node static Model, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=ConnectivityNode, _otherEndName=?] +2024-09-08 15:11:35,723 [main] DEBUG AssociationEndBuilder - Updated target type to ConnectivityNode +2024-09-08 15:11:35,723 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=331, uuid=2167dbf0-972a-3c64-9926-ceb9eb42028e, since=null, name=BusNameMarker, alias=, stereotype=srcStereo1, srcStereo2, visibility=public, txtDescription='The associated name of the bus (TopologicalNode) containing the ConnectivityNode is derived by an algorithm that uses the bus name marker.', htmlDescription='

The associated name of the bus (TopologicalNode) containing the ConnectivityNode is derived by an algorithm that uses the bus name marker.

'], _type=BusNameMarker, _multiplicity=[0..1], _navigable=unspecified, 1_taggedValues{srcTag=valueSrcTag}], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=332, uuid=1135f63d-8caf-3807-b40b-8c38abc7f979, since=null, name=PrivateConnectivityNode, alias=, stereotype=endStereo1, endStereo2, visibility=private, txtDescription='The list of nodes which have the same bus name in the normal topology. Note that this list of ConnectivityNodes should be connected by objects derived from Switch that are normally closed.', htmlDescription='

The list of nodes which have the same bus name in the normal topology. Note that this list of ConnectivityNodes should be connected by objects derived from Switch that are normally closed.

'], _type=ConnectivityNode, _multiplicity=[0..*], _navigable=unspecified, 1_taggedValues{endTag=valueEndTag}], _objData=UmlObjectData [id=228, uuid={EE3B8B0F-5740-4380-91F9-563BFD5783D7}, since=null, name=, alias=, stereotype=otherStereo, deprecated, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false, 1_taggedValues{assocTag=val}] as target to Topology::ConnectivityNode +2024-09-08 15:11:35,723 [main] DEBUG AssociationEndBuilder - Updated target type to ConnectivityNode +2024-09-08 15:11:35,723 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=291, uuid=90cbfea3-4fcc-3b34-8a4d-19b078519a40, since=null, name=Terminals, alias=, stereotype=, visibility=public, txtDescription='Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.', htmlDescription='

Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.

'], _type=Terminal, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=292, uuid=82cf9a85-6ff2-3238-844b-b1eb670bffb2, since=null, name=ConnectivityNode, alias=, stereotype=, visibility=public, txtDescription='Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.', htmlDescription='

Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.

'], _type=ConnectivityNode, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=229, uuid={C7E01609-F4E6-4a6e-8ACF-BDD413E62DE3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.', htmlDescription='

Terminals interconnect with zero impedance at a node. Measurements on a node apply to all of its terminals.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Topology::ConnectivityNode +2024-09-08 15:11:35,723 [main] DEBUG AssociationEndBuilder - Updated source type to ConnectivityNode +2024-09-08 15:11:35,723 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=209, uuid=10ccce83-a67a-3505-a530-f2e7cdbc675c, since=null, name=ConnectivityNodes, alias=, stereotype=, visibility=public, txtDescription='Connectivity nodes contained by this container.', htmlDescription='

Connectivity nodes contained by this container.

'], _type=ConnectivityNode, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=210, uuid=d334a62d-c53a-37a2-856c-81d5fe2c2186, since=null, name=ConnectivityNodeContainer, alias=, stereotype=, visibility=public, txtDescription='Container of this connectivity node.', htmlDescription='

Container of this connectivity node.

'], _type=ConnectivityNodeContainer, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=234, uuid={08EEABA6-269C-44a7-8F82-7BBEFE71ADD6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Topology::ConnectivityNode +2024-09-08 15:11:35,723 [main] DEBUG AssociationEndBuilder - Updated source type to ConnectivityNode +2024-09-08 15:11:35,724 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=336, uuid=9982ac3a-53c9-35df-b268-40e8edd622bf, since=null, name=ConnectivityNodes, alias=, stereotype=, visibility=public, txtDescription='Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.', htmlDescription='

Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.

'], _type=ConnectivityNode, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=false, _objData=UmlObjectData [id=337, uuid=8d0d5545-4ebe-371a-9bc8-3b3ad0fe2ba2, since=null, name=TopologicalNode, alias=, stereotype=, visibility=public, txtDescription='Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.', htmlDescription='

Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=235, uuid={ACD76E10-125A-4f7a-A20A-475AC4334414}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.', htmlDescription='

Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,724 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=336, uuid=9982ac3a-53c9-35df-b268-40e8edd622bf, since=null, name=ConnectivityNodes, alias=, stereotype=, visibility=public, txtDescription='Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.', htmlDescription='

Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.

'], _type=ConnectivityNode, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=false, _objData=UmlObjectData [id=337, uuid=8d0d5545-4ebe-371a-9bc8-3b3ad0fe2ba2, since=null, name=TopologicalNode, alias=, stereotype=, visibility=public, txtDescription='Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.', htmlDescription='

Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=235, uuid={ACD76E10-125A-4f7a-A20A-475AC4334414}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.', htmlDescription='

Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Topology::ConnectivityNode +2024-09-08 15:11:35,724 [main] DEBUG ClassBuilder - Adding ConnectivityNode as subclass of IdentifiedObject +2024-09-08 15:11:35,724 [main] TRACE ClassBuilder - read from EA: Topology::ConnectivityNode +2024-09-08 15:11:35,725 [main] TRACE ClassBuilder - Class TestEnum (3 in package Topology) +2024-09-08 15:11:35,725 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Topology::TestEnum, _objData=UmlObjectData [id=3282, uuid={448B9ABD-3F52-4aec-9426-7C21A75B18F6}, since=null, name=J/m², alias=alias J/m², stereotype=enum, visibility=public, txtDescription='(note) J/m².', htmlDescription='

(note) J/.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=initial J/m², _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,725 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Topology::TestEnum, _objData=UmlObjectData [id=3283, uuid={56A57775-5935-4c7a-B94E-C28F50A063F0}, since=null, name=µ, alias=alias µ, stereotype=enum, visibility=public, txtDescription='(note) bold µ', htmlDescription='

(note) bold µ

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=initial µ, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,726 [main] TRACE ClassBuilder - read from EA: Topology::TestEnum +2024-09-08 15:11:35,726 [main] TRACE ClassBuilder - Class TopologicalIsland (4 in package Topology) +2024-09-08 15:11:35,726 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Topology::TopologicalIsland, _objData=UmlObjectData [id=3254, uuid={71F47E96-66A9-469f-9B94-D81BAECFCBD5}, since=null, name=constrained5, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,726 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Topology::TopologicalIsland, _objData=UmlObjectData [id=3255, uuid={DCE02A31-C635-4cf0-AB24-4C475CEDCC93}, since=null, name=nonConstrained, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,727 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2095, uuid={CCC3E00F-0EDA-4c10-9ECD-2D3218F35E39}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=TopologicalIsland, _otherEndName=?] +2024-09-08 15:11:35,727 [main] DEBUG AssociationEndBuilder - Updated target type to TopologicalIsland +2024-09-08 15:11:35,727 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=347, uuid=b0a14ef2-f9f4-3b4b-a0d5-07cacaf1f168, since=null, name=TopologicalNodes, alias=, stereotype=, visibility=public, txtDescription='A topological node belongs to a topological island', htmlDescription='

A topological node belongs to a topological island

'], _type=null, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=false, _objData=UmlObjectData [id=348, uuid=024ca73f-724b-35af-9fee-7352265f18ed, since=null, name=TopologicalIsland, alias=, stereotype=, visibility=public, txtDescription='A topological node belongs to a topological island', htmlDescription='

A topological node belongs to a topological island

'], _type=TopologicalIsland, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=237, uuid={C890568A-2C06-4a80-B381-F84EBB81CE0A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='A topological node belongs to a topological island', htmlDescription='

A topological node belongs to a topological island

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,727 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=347, uuid=b0a14ef2-f9f4-3b4b-a0d5-07cacaf1f168, since=null, name=TopologicalNodes, alias=, stereotype=, visibility=public, txtDescription='A topological node belongs to a topological island', htmlDescription='

A topological node belongs to a topological island

'], _type=null, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=false, _objData=UmlObjectData [id=348, uuid=024ca73f-724b-35af-9fee-7352265f18ed, since=null, name=TopologicalIsland, alias=, stereotype=, visibility=public, txtDescription='A topological node belongs to a topological island', htmlDescription='

A topological node belongs to a topological island

'], _type=TopologicalIsland, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=237, uuid={C890568A-2C06-4a80-B381-F84EBB81CE0A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='A topological node belongs to a topological island', htmlDescription='

A topological node belongs to a topological island

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Topology::TopologicalIsland +2024-09-08 15:11:35,728 [main] DEBUG AssociationEndBuilder - Updated source type to TopologicalIsland +2024-09-08 15:11:35,729 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=350, uuid=fcdfa1af-63f6-3e94-93b3-1876ca1e670b, since=null, name=AngleRef_TopologicalIsland, alias=, stereotype=, visibility=public, txtDescription='The island for which the node is an angle reference. Normally there is one angle reference node for each island.', htmlDescription='

The island for which the node is an angle reference. Normally there is one angle reference node for each island.

'], _type=TopologicalIsland, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=351, uuid=1a38743d-3df1-3b3d-883a-b2ed5775c465, since=null, name=AngleRef_TopologicalNode, alias=, stereotype=, visibility=public, txtDescription='The angle reference for the island. Normally there is one TopologicalNode that is selected as the angle reference for each island. Other reference schemes exist, so the association is optional.', htmlDescription='

The angle reference for the island. Normally there is one TopologicalNode that is selected as the angle reference for each island. Other reference schemes exist, so the association is optional.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=1947, uuid={7537BE85-0F89-40e3-89A0-C8C7F534F430}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,729 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=350, uuid=fcdfa1af-63f6-3e94-93b3-1876ca1e670b, since=null, name=AngleRef_TopologicalIsland, alias=, stereotype=, visibility=public, txtDescription='The island for which the node is an angle reference. Normally there is one angle reference node for each island.', htmlDescription='

The island for which the node is an angle reference. Normally there is one angle reference node for each island.

'], _type=TopologicalIsland, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=351, uuid=1a38743d-3df1-3b3d-883a-b2ed5775c465, since=null, name=AngleRef_TopologicalNode, alias=, stereotype=, visibility=public, txtDescription='The angle reference for the island. Normally there is one TopologicalNode that is selected as the angle reference for each island. Other reference schemes exist, so the association is optional.', htmlDescription='

The angle reference for the island. Normally there is one TopologicalNode that is selected as the angle reference for each island. Other reference schemes exist, so the association is optional.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=1947, uuid={7537BE85-0F89-40e3-89A0-C8C7F534F430}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Topology::TopologicalIsland +2024-09-08 15:11:35,729 [main] DEBUG ClassBuilder - Adding TopologicalIsland as subclass of IdentifiedObject +2024-09-08 15:11:35,729 [main] TRACE ClassBuilder - read from EA: Topology::TopologicalIsland +2024-09-08 15:11:35,729 [main] TRACE ClassBuilder - Class TopologicalNode (5 in package Topology) +2024-09-08 15:11:35,729 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2, uuid={9F62C0A5-1313-44e0-B47D-FC9F1A31ADD0}, since=null, name=Bus/Branch calculated Model, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=TopologicalNode, _otherEndName=?] +2024-09-08 15:11:35,729 [main] DEBUG AssociationEndBuilder - Updated target type to TopologicalNode +2024-09-08 15:11:35,730 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=336, uuid=9982ac3a-53c9-35df-b268-40e8edd622bf, since=null, name=ConnectivityNodes, alias=, stereotype=, visibility=public, txtDescription='Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.', htmlDescription='

Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.

'], _type=ConnectivityNode, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=false, _objData=UmlObjectData [id=337, uuid=8d0d5545-4ebe-371a-9bc8-3b3ad0fe2ba2, since=null, name=TopologicalNode, alias=, stereotype=, visibility=public, txtDescription='Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.', htmlDescription='

Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.

'], _type=TopologicalNode, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=235, uuid={ACD76E10-125A-4f7a-A20A-475AC4334414}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.', htmlDescription='

Several ConnectivityNode(s) may combine together to form a single TopologicalNode, depending on the current state of the network.

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Topology::TopologicalNode +2024-09-08 15:11:35,730 [main] DEBUG AssociationEndBuilder - Updated source type to TopologicalNode +2024-09-08 15:11:35,730 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=347, uuid=b0a14ef2-f9f4-3b4b-a0d5-07cacaf1f168, since=null, name=TopologicalNodes, alias=, stereotype=, visibility=public, txtDescription='A topological node belongs to a topological island', htmlDescription='

A topological node belongs to a topological island

'], _type=TopologicalNode, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=false, _objData=UmlObjectData [id=348, uuid=024ca73f-724b-35af-9fee-7352265f18ed, since=null, name=TopologicalIsland, alias=, stereotype=, visibility=public, txtDescription='A topological node belongs to a topological island', htmlDescription='

A topological node belongs to a topological island

'], _type=TopologicalIsland, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=237, uuid={C890568A-2C06-4a80-B381-F84EBB81CE0A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='A topological node belongs to a topological island', htmlDescription='

A topological node belongs to a topological island

'], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Topology::TopologicalNode +2024-09-08 15:11:35,730 [main] DEBUG AssociationEndBuilder - Updated target type to TopologicalNode +2024-09-08 15:11:35,730 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=350, uuid=fcdfa1af-63f6-3e94-93b3-1876ca1e670b, since=null, name=AngleRef_TopologicalIsland, alias=, stereotype=, visibility=public, txtDescription='The island for which the node is an angle reference. Normally there is one angle reference node for each island.', htmlDescription='

The island for which the node is an angle reference. Normally there is one angle reference node for each island.

'], _type=TopologicalIsland, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=351, uuid=1a38743d-3df1-3b3d-883a-b2ed5775c465, since=null, name=AngleRef_TopologicalNode, alias=, stereotype=, visibility=public, txtDescription='The angle reference for the island. Normally there is one TopologicalNode that is selected as the angle reference for each island. Other reference schemes exist, so the association is optional.', htmlDescription='

The angle reference for the island. Normally there is one TopologicalNode that is selected as the angle reference for each island. Other reference schemes exist, so the association is optional.

'], _type=TopologicalNode, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=1947, uuid={7537BE85-0F89-40e3-89A0-C8C7F534F430}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Topology::TopologicalNode +2024-09-08 15:11:35,730 [main] DEBUG AssociationEndBuilder - Updated target type to TopologicalNode +2024-09-08 15:11:35,730 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=294, uuid=156aeee5-edcf-3620-8689-98f66c084af5, since=null, name=Terminal, alias=, stereotype=, visibility=public, txtDescription='The terminals associated with the topological node. This can be used as an alternative to the connectivity node path to terminal, thus making it unneccesary to model connedtivity nodes in some cases. Note that the if connectivity nodes are in the model, this association would proably not be used.', htmlDescription='

The terminals associated with the topological node. This can be used as an alternative to the connectivity node path to terminal, thus making it unneccesary to model connedtivity nodes in some cases. Note that the if connectivity nodes are in the model, this association would proably not be used.

'], _type=Terminal, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=AGGREG, _isSource=false, _objData=UmlObjectData [id=295, uuid=347bba3d-4267-3d35-8f14-3bf34cfb435d, since=null, name=TopologicalNode, alias=, stereotype=, visibility=public, txtDescription='The topological node associated with the terminal. This can be used as an alternative to the connectivity node path to topological node, thus making it unneccesary to model connedtivity nodes in some cases. Note that the if connectivity nodes are in the model, this association would proably not be used.', htmlDescription='

The topological node associated with the terminal. This can be used as an alternative to the connectivity node path to topological node, thus making it unneccesary to model connedtivity nodes in some cases. Note that the if connectivity nodes are in the model, this association would proably not be used.

'], _type=TopologicalNode, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=1961, uuid={F490BFCA-36A8-4fe2-B28B-66466134B41E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Topology::TopologicalNode +2024-09-08 15:11:35,730 [main] DEBUG AssociationEndBuilder - Updated source type to TopologicalNode +2024-09-08 15:11:35,730 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=212, uuid=273458f0-8dc9-3b97-8d72-736bec7303fd, since=null, name=TopologicalNode, alias=, stereotype=, visibility=public, txtDescription='The topological nodes which belong to this connectivity node container.', htmlDescription='

The topological nodes which belong to this connectivity node container.

'], _type=TopologicalNode, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=213, uuid=069cc4c5-6982-3d6a-b143-1664cb457595, since=null, name=ConnectivityNodeContainer, alias=, stereotype=, visibility=public, txtDescription='The connectivity node container to which the toplogical node belongs.', htmlDescription='

The connectivity node container to which the toplogical node belongs.

'], _type=ConnectivityNodeContainer, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=1974, uuid={88BD0C47-4CB3-44db-9A6B-20C783A24478}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Topology::TopologicalNode +2024-09-08 15:11:35,730 [main] DEBUG AssociationEndBuilder - Updated source type to TopologicalNode +2024-09-08 15:11:35,730 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=172, uuid=ddf38257-ed75-3694-81a7-e984049e0ecf, since=null, name=TopologicalNode, alias=, stereotype=, visibility=public, txtDescription='The topological nodes at the base voltage.', htmlDescription='

The topological nodes at the base voltage.

'], _type=TopologicalNode, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=173, uuid=56be42a8-abee-3a0d-ab13-c23730a949e3, since=null, name=BaseVoltage, alias=, stereotype=, visibility=public, txtDescription='The base voltage of the topologocial node.', htmlDescription='

The base voltage of the topologocial node.

'], _type=BaseVoltage, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2092, uuid={6F37A2BE-FB37-4a6c-8BB1-CFC6690C1867}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Topology::TopologicalNode +2024-09-08 15:11:35,730 [main] DEBUG ClassBuilder - Adding TopologicalNode as subclass of IdentifiedObject +2024-09-08 15:11:35,730 [main] TRACE ClassBuilder - read from EA: Topology::TopologicalNode +2024-09-08 15:11:35,730 [main] INFO PackageBuilder - processing package TestEnums (0) ... +2024-09-08 15:11:35,731 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=TestEnums, _objData=UmlObjectData [id=322, uuid={EB85622E-6F55-437f-8452-4BC5F0CD56EA}, since=null, name=TestEnums, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:35,731 [main] ERROR EaTables - [+++ EA ordering problem for 3 class(s) in TestEnums (manually move back/forth a class to initiate EA internal ordering update!): +, +++ class EnumWithSomeIntCodes: pos = 0 +, +++ class EnumWithStringCodes: pos = 0 DUPLICATE +, +++ class EnumWithNonUniqueCodes: pos = 0 DUPLICATE +] +2024-09-08 15:11:35,732 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3046, uuid={9C4E5333-2EF4-4e2a-896D-5483E24C814F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='to test missing codes; and also number codes.', htmlDescription='

to test missing codes; and also number codes.

'], _containingPackage=TestEnums, _otherEndName=] +2024-09-08 15:11:35,732 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3048, uuid={74B8B3CB-8367-40f8-85C6-B3069AC1558A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='(will be picked for missing codes) +also to test that we correctly conclude 'type=string' and not integer (type is useful when sorting values and finding the "free" ones for integers)', htmlDescription='

(will be picked for missing codes)

also to test that we correctly conclude 'type=string' and not integer (type is useful when sorting values and finding the "free" ones for integers)

'], _containingPackage=TestEnums, _otherEndName=] +2024-09-08 15:11:35,732 [main] TRACE ClassBuilder - Class EnumWithSomeIntCodes (0 in package TestEnums) +2024-09-08 15:11:35,732 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithSomeIntCodes, _objData=UmlObjectData [id=6663, uuid={97764136-F1CA-4ee2-AA97-54F873C39045}, since=null, name=lit10, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=10, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,732 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithSomeIntCodes, _objData=UmlObjectData [id=6664, uuid={B65824BB-92BD-45a3-8F03-50001545F733}, since=null, name=lit20noCode, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,732 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithSomeIntCodes, _objData=UmlObjectData [id=6665, uuid={F5F0C134-4646-431c-98A0-7D365357DAF0}, since=null, name=lit30, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,733 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithSomeIntCodes, _objData=UmlObjectData [id=6666, uuid={A50E49A0-5BA7-4ed5-B3C5-7B55938B0EB6}, since=null, name=lit40, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,733 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithSomeIntCodes, _objData=UmlObjectData [id=6667, uuid={FD887BC2-C8C7-45c3-9E46-87FA1FA16E37}, since=null, name=lit50, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,733 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithSomeIntCodes, _objData=UmlObjectData [id=6668, uuid={57C382A8-48C8-4296-9B79-DE5AFE8BF6B6}, since=null, name=lit60noCode, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,733 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithSomeIntCodes, _objData=UmlObjectData [id=6669, uuid={8A457DE1-5D50-4034-8F5F-11A64BBFD2D8}, since=null, name=lit70, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,734 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3428, uuid={E99F9C5D-7CCC-4a92-9042-F3B035F5A21B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=EnumWithSomeIntCodes, _otherEndName=?] +2024-09-08 15:11:35,734 [main] TRACE ClassBuilder - read from EA: TestEnums::EnumWithSomeIntCodes +2024-09-08 15:11:35,734 [main] TRACE ClassBuilder - Class EnumWithStringCodes (0 in package TestEnums) +2024-09-08 15:11:35,735 [main] DEBUG DbAttributeBuilder - fixing lower bound '' to 1 for enum:UmlObjectData [id=6670, uuid={BC79B050-3201-4100-9EE4-8B07DAD5B090}, since=null, name=str1, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''] +2024-09-08 15:11:35,735 [main] DEBUG DbAttributeBuilder - fixing upper bound '' to 1 for enum:UmlObjectData [id=6670, uuid={BC79B050-3201-4100-9EE4-8B07DAD5B090}, since=null, name=str1, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''] +2024-09-08 15:11:35,735 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithStringCodes, _objData=UmlObjectData [id=6670, uuid={BC79B050-3201-4100-9EE4-8B07DAD5B090}, since=null, name=str1, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,735 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithStringCodes, _objData=UmlObjectData [id=6671, uuid={26D63869-DE55-4cd8-B09C-9BC6640C5FCC}, since=null, name=str2, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=some string, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,736 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithStringCodes, _objData=UmlObjectData [id=6672, uuid={4EEBA555-6530-4b24-83E9-B9778D9F8865}, since=null, name=str3noCode, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,736 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithStringCodes, _objData=UmlObjectData [id=6673, uuid={C8F2DAE7-B3EA-435f-B32B-9ACD7F6D4A89}, since=null, name=str4, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3.14, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,736 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithStringCodes, _objData=UmlObjectData [id=6674, uuid={E860CE78-27BE-453d-A09A-F3648DB49F54}, since=null, name=str5, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=another string, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,737 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3429, uuid={40539FAF-0122-4915-8114-EA11C771BB8F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=EnumWithStringCodes, _otherEndName=?] +2024-09-08 15:11:35,737 [main] TRACE ClassBuilder - read from EA: TestEnums::EnumWithStringCodes +2024-09-08 15:11:35,737 [main] TRACE ClassBuilder - Class EnumWithNonUniqueCodes (0 in package TestEnums) +2024-09-08 15:11:35,737 [main] DEBUG DbAttributeBuilder - fixing lower bound '' to 1 for enum:UmlObjectData [id=6675, uuid={AF9195CE-3B58-49bd-AAFF-5096B17E7CC3}, since=null, name=c1, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''] +2024-09-08 15:11:35,737 [main] DEBUG DbAttributeBuilder - fixing upper bound '' to 1 for enum:UmlObjectData [id=6675, uuid={AF9195CE-3B58-49bd-AAFF-5096B17E7CC3}, since=null, name=c1, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''] +2024-09-08 15:11:35,737 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithNonUniqueCodes, _objData=UmlObjectData [id=6675, uuid={AF9195CE-3B58-49bd-AAFF-5096B17E7CC3}, since=null, name=c1, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,737 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithNonUniqueCodes, _objData=UmlObjectData [id=6676, uuid={6EAFF992-8224-4275-8BDC-F4AF84806841}, since=null, name=c2, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,738 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithNonUniqueCodes, _objData=UmlObjectData [id=6677, uuid={50FA5150-C952-4da4-8B39-BFCB3A0AE516}, since=null, name=c3, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,738 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithNonUniqueCodes, _objData=UmlObjectData [id=6678, uuid={EB583897-4EF4-4540-ABD7-AE37AEE8A545}, since=null, name=c4, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,738 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithNonUniqueCodes, _objData=UmlObjectData [id=6679, uuid={AD689D8B-2CA4-4e25-8827-4E946E5577D6}, since=null, name=c5, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,738 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithNonUniqueCodes, _objData=UmlObjectData [id=6680, uuid={91464270-40F1-4f40-BE47-ACFFFD42962C}, since=null, name=c6, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=6, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,738 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithNonUniqueCodes, _objData=UmlObjectData [id=6681, uuid={43B6F39E-662B-4646-B1DF-C63F8E6306D5}, since=null, name=c7, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,738 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TestEnums::EnumWithNonUniqueCodes, _objData=UmlObjectData [id=6682, uuid={4E9F146E-EF05-4d8f-8488-9CC79243CD2A}, since=null, name=c8, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=8, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,739 [main] TRACE ClassBuilder - read from EA: TestEnums::EnumWithNonUniqueCodes +2024-09-08 15:11:35,739 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Topology, _depth=2, _eaElementID=3044, _objData=UmlObjectData [id=168, uuid={985DB921-A357-472b-AA9D-8533D25EB928}, since=null, name=TestEnums, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=2, _selfDependent=false, 2_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3046, uuid={9C4E5333-2EF4-4e2a-896D-5483E24C814F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='to test missing codes; and also number codes.', htmlDescription='

to test missing codes; and also number codes.

'], _containingPackage=TestEnums, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3048, uuid={74B8B3CB-8367-40f8-85C6-B3069AC1558A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='(will be picked for missing codes) +also to test that we correctly conclude 'type=string' and not integer (type is useful when sorting values and finding the "free" ones for integers)', htmlDescription='

(will be picked for missing codes)

also to test that we correctly conclude 'type=string' and not integer (type is useful when sorting values and finding the "free" ones for integers)

'], _containingPackage=TestEnums, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=TestEnums, _objData=UmlObjectData [id=322, uuid={EB85622E-6F55-437f-8452-4BC5F0CD56EA}, since=null, name=TestEnums, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _classes=3 +2024-09-08 15:11:35,739 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61970, _depth=1, _eaElementID=586, _objData=UmlObjectData [id=52, uuid={E44AA599-D1DD-4d0c-8487-AE8BE9E6FEEB}, since=null, name=Topology, alias=, stereotype=deprecated, visibility=public, txtDescription=''An extension to the Core Package that in association with the Terminal class models Connectivity, that is the physical definition of how equipment is connected together. In addition it models Topology, that is the logical definition of how equipment is connected via closed switches. The Topology definition is independent of the other electrical characteristics.', htmlDescription='

'An extension to the Core Package that in association with the Terminal class models Connectivity, that is the physical definition of how equipment is connected together. In addition it models Topology, that is the logical definition of how equipment is connected via closed switches. The Topology definition is independent of the other electrical characteristics.

'], _modelId=2, _selfDependent=false, 6_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=792, uuid={28BA82FD-7570-4c86-9A3A-050C731746F5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Bus/Branch bus naming specificaiton static model.', htmlDescription='

Bus/Branch bus naming specificaiton static model.

'], _containingPackage=Topology, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=793, uuid={3080379F-A230-42b0-B079-E64E9C2C4C0E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Bus/Branch calculated Model', htmlDescription='

Bus/Branch calculated Model

'], _containingPackage=Topology, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=798, uuid={F181AA99-3812-4aea-BBD5-6AFFAC73C51E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Switch/Node static Model', htmlDescription='

Switch/Node static Model

'], _containingPackage=Topology, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1445, uuid={7A16D86A-89E8-448d-9921-85B3C3F84B61}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='C2_1: {constrained1, constrained2: all present or all absent}', htmlDescription='

C2_1: {constrained1, constrained2: all present or all absent}

'], _containingPackage=Topology, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1446, uuid={99D566C7-C1FF-4a61-8F98-9BF57F54E99C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='C2_2: {constrained3, constrained4: all present or all absent}', htmlDescription='

C2_2: {constrained3, constrained4: all present or all absent}

'], _containingPackage=Topology, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1447, uuid={30E75C31-A0AF-4889-9B1B-86955E51DB15}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='PICS_SUBST: {constrained5, if substitution defined}', htmlDescription='

PICS_SUBST: {constrained5, if substitution defined}

'], _containingPackage=Topology, _otherEndName=]], 2_diagrams=[DiagramBuilder [_containingPackage=Topology, _objData=UmlObjectData [id=142, uuid={BED90F47-24EF-4af0-A8CD-1DB3BE1E6A2E}, since=null, name=Main, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all classes included in the Topology package as well as the key external classes that have associations with Topology classes.', htmlDescription='

This diagram shows all classes included in the Topology package as well as the key external classes that have associations with Topology classes.

'], _portrait=true, _kind=LOGICAL], DiagramBuilder [_containingPackage=Topology, _objData=UmlObjectData [id=175, uuid={812B4853-1CF3-409f-A123-486DC421E542}, since=null, name=DiagramWithoutComment, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=2, _classes=6, _childPackages=1] +2024-09-08 15:11:35,739 [main] TRACE PackageBuilder - read PackageBuilder [_kind=TOP, _containingPackage=TC57CIM, _depth=0, _eaElementID=16, _objData=UmlObjectData [id=39, uuid={21D32832-FF64-4213-B81C-55ACE35EEBFF}, since=null, name=IEC61970, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=2, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=STATE, _isConnector=false, _objData=UmlObjectData [id=1497, uuid={5D5CC973-30B7-4d45-8CF7-92688076EFE3}, since=null, name=StateInPackage, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=IEC61970, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=IEC61970, _objData=UmlObjectData [id=111, uuid={FB07D92D-5F4D-4fdc-AD82-2376FAF51037}, since=null, name=Main, alias=, stereotype=, visibility=public, txtDescription=''This diagram shows all 61970 packages and their logical dependencies. +Test bold ignored.', htmlDescription='

'This diagram shows all 61970 packages and their logical dependencies.

Test bold ignored.

'], _portrait=false, _kind=LOGICAL]], _dependenciesAsTarget=3, _classes=1, _childPackages=5] +2024-09-08 15:11:35,739 [main] INFO PackageBuilder - processing top package IEC61968 (3) ... +2024-09-08 15:11:35,740 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=IEC61968, _objData=UmlObjectData [id=158, uuid={B3B5E06E-B00E-4cb6-B697-39D4D8476DC2}, since=null, name=IEC61968, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:35,740 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = TC57CIM::IEC61968->TC57CIM::IEC61970, _objData=UmlObjectData [id=3447, uuid={78B6C7F1-FC16-4b0c-A685-CD6711DBB0A3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,741 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->TC57CIM::IEC61968, _objData=UmlObjectData [id=3448, uuid={BEB08626-C0F2-4a9d-860D-F205594F0FE9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,742 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1478, uuid={5081A538-2556-474f-88ED-7C7DF4A5AFC6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='duplicate name in same parent package', htmlDescription='

duplicate name in same parent package

'], _containingPackage=IEC61968, _otherEndName=] +2024-09-08 15:11:35,742 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1479, uuid={9D7409F2-ED2C-4db6-8F47-491CE2A1844E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='duplicate name with other parent package', htmlDescription='

duplicate name with other parent package

'], _containingPackage=IEC61968, _otherEndName=] +2024-09-08 15:11:35,742 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1499, uuid={15CB1C37-5F9F-43ea-BD54-22E99CD16F24}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='wrong dependency direction', htmlDescription='

wrong dependency direction

'], _containingPackage=IEC61968, _otherEndName=] +2024-09-08 15:11:35,742 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3075, uuid={4E5B9BC5-C441-4553-80A7-70B7D074D066}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='- extension tags with namespaces', htmlDescription='

- extension tags with namespaces

'], _containingPackage=IEC61968, _otherEndName=] +2024-09-08 15:11:35,742 [main] TRACE ClassBuilder - Class IEC61968Version (0 in package IEC61968) +2024-09-08 15:11:35,743 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61968::IEC61968Version, _objData=UmlObjectData [id=3256, uuid={9FE72A7E-8CF0-40a9-A6CF-4F41D1B5BF82}, since=null, name=date, alias=, stereotype=, visibility=public, txtDescription='Form is YYYY-MM-DD for example for January 5, 2009 it is 2009-01-05 (not ending with dot)', htmlDescription='

Form is YYYY-MM-DD for example for January 5, 2009 it is 2009-01-05 (not ending with dot)

'], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=2010-05-07, _eaTypeId=640, _eaTypeName=AbsoluteDateTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,743 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61968::IEC61968Version, _objData=UmlObjectData [id=3257, uuid={CB9E6808-E556-4c14-AB7D-D4245FA445B6}, since=null, name=version, alias=, stereotype=, visibility=public, txtDescription='Form is IEC61970CIMXXvYY where XX is the major CIM package version and the YY is the minor version. For ecample IEC61970CIM13v18.', htmlDescription='

Form is IEC61970CIMXXvYY where XX is the major CIM package version and the YY is the minor version. For ecample IEC61970CIM13v18.

'], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=IEC62325CIM01v02, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,743 [main] TRACE ClassBuilder - read from EA: IEC61968::IEC61968Version +2024-09-08 15:11:35,744 [main] INFO PackageBuilder - processing package EmbeddedExtension (0) ... +2024-09-08 15:11:35,744 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=EmbeddedExtension, _objData=UmlObjectData [id=328, uuid={9E98C833-9774-4ea6-A2CF-95D39952B4EB}, since=null, name=EmbeddedExtension, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=PACKAGE] +2024-09-08 15:11:35,744 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3457, uuid={87BB5BD5-B379-4ea5-AE8F-4EAD0B5884E4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=EmbeddedExtension, _otherEndName=Note ''] +2024-09-08 15:11:35,745 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61968, _depth=1, _eaElementID=3074, _objData=UmlObjectData [id=173, uuid={FFD756A8-FFD9-477f-86B1-77DCB78D7FF1}, since=null, name=EmbeddedExtension, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=2, _selfDependent=false, 2_taggedValues{nsuri=http://embeddedExt, nsprefix=eext}, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3457, uuid={87BB5BD5-B379-4ea5-AE8F-4EAD0B5884E4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=EmbeddedExtension, _otherEndName=Note '']], 1_diagrams=[DiagramBuilder [_containingPackage=EmbeddedExtension, _objData=UmlObjectData [id=328, uuid={9E98C833-9774-4ea6-A2CF-95D39952B4EB}, since=null, name=EmbeddedExtension, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=PACKAGE]] +2024-09-08 15:11:35,745 [main] INFO PackageBuilder - processing package Assets (2) ... +2024-09-08 15:11:35,746 [main] ERROR EaTables - [+++ EA ordering problem for 2 diagram(s) in Assets (manually move back/forth a diagram to initiate EA internal ordering update!): +, +++ diagram Assets: pos = 0 +, +++ diagram AssetsObjDia: pos = 0 DUPLICATE +] +2024-09-08 15:11:35,746 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Assets, _objData=UmlObjectData [id=184, uuid={F773A826-B339-4839-9D00-9F1FECC8C458}, since=null, name=Assets, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:35,746 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Assets, _objData=UmlObjectData [id=326, uuid={669D2D40-80CD-42ed-AC0A-EC34B7B214AD}, since=null, name=AssetsObjDia, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=OBJECT] +2024-09-08 15:11:35,747 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=false, _objData=UmlObjectData [id=3064, uuid={E11F1530-D301-48de-9638-0D6673F15252}, since=null, name=Object1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Assets, _otherEndName=] +2024-09-08 15:11:35,747 [main] TRACE ClassBuilder - Class AssetInfo (0 in package Assets) +2024-09-08 15:11:35,748 [main] DEBUG AssociationEndBuilder - Updated source type to AssetInfo +2024-09-08 15:11:35,748 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=274, uuid=95687635-5e2c-38e8-a9f7-3fcbd94f561c, since=null, name=AssetInfos, alias=, stereotype=, visibility=public, txtDescription='FooBar', htmlDescription='

FooBar

'], _type=AssetInfo, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=275, uuid=1892b331-bca4-3a23-9fd8-dccf941cd095, since=null, name=PSRs, alias=, stereotype=, visibility=public, txtDescription='Blah', htmlDescription='

Blah

'], _type=PowerSystemResource, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=2148, uuid={D93167F8-2A16-4fbc-BC07-353D141C8E50}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Assets::AssetInfo +2024-09-08 15:11:35,748 [main] TRACE ClassBuilder - read from EA: Assets::AssetInfo +2024-09-08 15:11:35,748 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61968, _depth=1, _eaElementID=1545, _objData=UmlObjectData [id=83, uuid={516376C4-BBFB-448f-8E87-F13D9134F402}, since=null, name=Assets, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=2, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=OTHER, _isConnector=false, _objData=UmlObjectData [id=3064, uuid={E11F1530-D301-48de-9638-0D6673F15252}, since=null, name=Object1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Assets, _otherEndName=]], 2_diagrams=[DiagramBuilder [_containingPackage=Assets, _objData=UmlObjectData [id=184, uuid={F773A826-B339-4839-9D00-9F1FECC8C458}, since=null, name=Assets, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL], DiagramBuilder [_containingPackage=Assets, _objData=UmlObjectData [id=326, uuid={669D2D40-80CD-42ed-AC0A-EC34B7B214AD}, since=null, name=AssetsObjDia, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=OBJECT]], _classes=1 +2024-09-08 15:11:35,748 [main] INFO PackageBuilder - processing package Core (3) ... +2024-09-08 15:11:35,749 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2117, uuid={B4428907-2937-498f-B1F3-851FBB0EB26C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Core, _otherEndName=Note ''] +2024-09-08 15:11:35,750 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61968, _depth=1, _eaElementID=1477, _objData=UmlObjectData [id=67, uuid={C35E89DD-6049-4d6a-99CA-1ABA9173925F}, since=null, name=Core, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=2, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2117, uuid={B4428907-2937-498f-B1F3-851FBB0EB26C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Core, _otherEndName=Note '']] +2024-09-08 15:11:35,750 [main] INFO PackageBuilder - processing package Other (4) ... +2024-09-08 15:11:35,751 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2115, uuid={7C673B7E-956E-4fc2-A092-AAA82B46AFA0}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Other, _otherEndName=Note ''] +2024-09-08 15:11:35,752 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61968, _depth=1, _eaElementID=1476, _objData=UmlObjectData [id=66, uuid={EE65731A-B398-425a-8EC6-8E983569A255}, since=null, name=Other, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=2, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2115, uuid={7C673B7E-956E-4fc2-A092-AAA82B46AFA0}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Other, _otherEndName=Note '']] +2024-09-08 15:11:35,752 [main] INFO PackageBuilder - processing package Other (5) ... +2024-09-08 15:11:35,752 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Other, _objData=UmlObjectData [id=159, uuid={59EDD10A-D974-45e0-A31F-52E31C9E72E2}, since=null, name=Other, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:35,753 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2116, uuid={8DAFD989-CBA3-41d5-983A-7F645DDC20FF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Other, _otherEndName=Note ''] +2024-09-08 15:11:35,753 [main] DEBUG PackageBuilder - Updated target of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61970::Topology->IEC61968::Other, _objData=UmlObjectData [id=2132, uuid={FE9A0E08-9542-4980-B6A9-7CFE59DFDF87}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,753 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61968::Other->TC57CIM::IEC61970, _objData=UmlObjectData [id=3446, uuid={814038F7-206E-42aa-8183-AE2E302175F9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,753 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=2102, uuid={6D2E1FAD-19CA-4e94-8EF5-ED52FEBE9A83}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Other, _otherEndName=Package 'InformativeAndPrivate'] +2024-09-08 15:11:35,754 [main] ERROR EaTables - [+++ EA ordering problem for 9 class(s) in Other (manually move back/forth a class to initiate EA internal ordering update!): +, +++ class MyClass: pos = 0 +, +++ class BadDatatypes: pos = 0 DUPLICATE +, +++ class Equipment: pos = 0 DUPLICATE +, +++ class MyClass: pos = 0 DUPLICATE +, +++ class EmptyEnum: pos = 0 DUPLICATE +, +++ class NonEmptyPrimitive: pos = 0 DUPLICATE +, +++ class AttrDuplication: pos = 0 DUPLICATE +, +++ class AnotherBadDatatype: pos = 0 DUPLICATE +, +++ class EmptyCompound: pos = 0 DUPLICATE +] +2024-09-08 15:11:35,754 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1473, uuid={FA571FE9-EE28-49a6-9207-B35052E0F3B7}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='duplicate name in different package', htmlDescription='

duplicate name in different package

'], _containingPackage=Other, _otherEndName=] +2024-09-08 15:11:35,755 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1475, uuid={F36DC8B7-9274-4ebb-8686-5098D1637616}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='duplicate name in same package', htmlDescription='

duplicate name in same package

'], _containingPackage=Other, _otherEndName=] +2024-09-08 15:11:35,755 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1483, uuid={37C5FA4D-63DF-47b7-8A7C-DB93FE2C2D71}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='inherits 'value' and defines own one', htmlDescription='

inherits 'value' and defines own one

'], _containingPackage=Other, _otherEndName=] +2024-09-08 15:11:35,755 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1484, uuid={B97F5679-D419-49de-BD30-AFDE18E7E84E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='inherits 'curveStyle' and 'normallyInService' and defines own ones', htmlDescription='

inherits 'curveStyle' and 'normallyInService' and defines own ones

'], _containingPackage=Other, _otherEndName=] +2024-09-08 15:11:35,755 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1498, uuid={016D0725-554C-4993-855A-7606A90A1838}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='illegal relationship direction', htmlDescription='

illegal relationship direction

'], _containingPackage=Other, _otherEndName=] +2024-09-08 15:11:35,756 [main] TRACE ClassBuilder - Class MyClass (0 in package Other) +2024-09-08 15:11:35,756 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Other::MyClass, _objData=UmlObjectData [id=3263, uuid={A1BFCA1B-0A22-4a7c-B2A1-A31E2F46493F}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,756 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Other::MyClass, _objData=UmlObjectData [id=3264, uuid={B3F14AC4-4719-4d52-9C16-348079C67ADC}, since=null, name=normaIlyInService, alias=, stereotype=, visibility=public, txtDescription='The equipment is normally in service.', htmlDescription='

The equipment is normally in service.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,756 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Other::MyClass, _objData=UmlObjectData [id=3265, uuid={9A619402-AE3F-4dcd-B272-F500DB9A42A4}, since=null, name=curveStyle, alias=, stereotype=, visibility=public, txtDescription='The style or shape of the curve.', htmlDescription='

The style or shape of the curve.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=857, _eaTypeName=CurveStyle, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,757 [main] ERROR ClassBuilder - [+++ EA problem: attr count on MyClass = 3 +, +++ attr value: pos = 0 +, +++ attr normaIlyInService: pos = 1 +, +++ attr curveStyle: pos = 0 DUPLICATE +] +2024-09-08 15:11:35,757 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2114, uuid={2D8EFA65-B348-4b41-99AE-85B5659C4446}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=MyClass, _otherEndName=?] +2024-09-08 15:11:35,757 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2119, uuid={865200D2-0483-4458-A233-940669D18204}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=MyClass, _otherEndName=?] +2024-09-08 15:11:35,758 [main] DEBUG AssociationEndBuilder - Updated target type to MyClass +2024-09-08 15:11:35,758 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=421, uuid=6c544e13-4bed-30e6-9c43-414c284b3d34, since=null, name=T1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=422, uuid=e9deedbb-e28d-30fa-9873-205f58f0a25c, since=null, name=T2, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=MyClass, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2110, uuid={FD1E09B1-75C2-4b94-9C2A-F115B67BC95F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,760 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=421, uuid=6c544e13-4bed-30e6-9c43-414c284b3d34, since=null, name=T1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=422, uuid=e9deedbb-e28d-30fa-9873-205f58f0a25c, since=null, name=T2, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=MyClass, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2110, uuid={FD1E09B1-75C2-4b94-9C2A-F115B67BC95F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Other::MyClass +2024-09-08 15:11:35,760 [main] DEBUG AssociationEndBuilder - Updated source type to MyClass +2024-09-08 15:11:35,760 [main] DEBUG AssociationEndBuilder - Updated target type to MyClass +2024-09-08 15:11:35,760 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=424, uuid=90bbb497-40a1-36db-869f-50041f00062b, since=null, name=From, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=MyClass, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=425, uuid=accbcada-0ecc-3dcb-abd1-03a1d88469ad, since=null, name=To, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=MyClass, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2124, uuid={533F71BE-C7E0-4a3d-B55E-3A0FF93A34CA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,761 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = null->Other::MyClass, _objData=UmlObjectData [id=2111, uuid={4DC88475-280C-4309-A943-F5283967A111}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,761 [main] TRACE ClassBuilder - read from EA: Other::MyClass +2024-09-08 15:11:35,761 [main] TRACE ClassBuilder - Class BadDatatypes (0 in package Other) +2024-09-08 15:11:35,761 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Other::BadDatatypes, _objData=UmlObjectData [id=3261, uuid={5401BAC7-97BF-4c99-BF58-3352B0F67F23}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='text', htmlDescription='

text

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1467, _eaTypeName=BadDatatypes, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,761 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Other::BadDatatypes, _objData=UmlObjectData [id=3268, uuid={5074CED7-7500-4ea1-A49F-4FF08173FA21}, since=null, name=unit, alias=, stereotype=, visibility=public, txtDescription='text', htmlDescription='

text

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=badEnumVal, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,762 [main] DEBUG AssociationEndBuilder - Updated source type to BadDatatypes +2024-09-08 15:11:35,762 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=421, uuid=6c544e13-4bed-30e6-9c43-414c284b3d34, since=null, name=T1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=BadDatatypes, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=422, uuid=e9deedbb-e28d-30fa-9873-205f58f0a25c, since=null, name=T2, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=MyClass, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2110, uuid={FD1E09B1-75C2-4b94-9C2A-F115B67BC95F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Other::BadDatatypes +2024-09-08 15:11:35,762 [main] DEBUG AssociationEndBuilder - Updated target type to BadDatatypes +2024-09-08 15:11:35,762 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=431, uuid=edb86b54-fcfe-3390-ba3e-ccaf323dcccb, since=null, name=Something, alias=, stereotype=, visibility=public, txtDescription='Same doc at both ends of association.', htmlDescription='

Same doc at both ends of association.

'], _type=null, _multiplicity=[0..1], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=432, uuid=c73a853f-cbeb-365d-8380-53e86e51c996, since=null, name=T1, alias=, stereotype=, visibility=public, txtDescription='Same doc at both ends of association.', htmlDescription='

Same doc at both ends of association.

'], _type=BadDatatypes, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2122, uuid={A4CF1EA0-A25A-4e76-991E-231C452748F5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,762 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=431, uuid=edb86b54-fcfe-3390-ba3e-ccaf323dcccb, since=null, name=Something, alias=, stereotype=, visibility=public, txtDescription='Same doc at both ends of association.', htmlDescription='

Same doc at both ends of association.

'], _type=null, _multiplicity=[0..1], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=432, uuid=c73a853f-cbeb-365d-8380-53e86e51c996, since=null, name=T1, alias=, stereotype=, visibility=public, txtDescription='Same doc at both ends of association.', htmlDescription='

Same doc at both ends of association.

'], _type=BadDatatypes, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2122, uuid={A4CF1EA0-A25A-4e76-991E-231C452748F5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Other::BadDatatypes +2024-09-08 15:11:35,762 [main] DEBUG ClassBuilder - Adding BadDatatypes as superclass of MyClass +2024-09-08 15:11:35,762 [main] DEBUG ClassBuilder - Adding BadDatatypes as superclass of BaseVoltage +2024-09-08 15:11:35,762 [main] DEBUG ClassBuilder - Updated source of class dependency DependencyBuilder [_kind=CLASS, qName = Other::BadDatatypes->Other::MyClass, _objData=UmlObjectData [id=2111, uuid={4DC88475-280C-4309-A943-F5283967A111}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,762 [main] TRACE ClassBuilder - read from EA: Other::BadDatatypes +2024-09-08 15:11:35,763 [main] TRACE ClassBuilder - Class Equipment (0 in package Other) +2024-09-08 15:11:35,763 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Other::Equipment, _objData=UmlObjectData [id=3303, uuid={B4BA5ED2-2B91-44fc-993D-3097CF99F899}, since=null, name=testYesNo1, alias=, stereotype=, visibility=public, txtDescription='Indicates the presence/absence of energy measurements.', htmlDescription='

Indicates the presence/absence of energy measurements.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1540, _eaTypeName=YesNo, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,763 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Other::Equipment, _objData=UmlObjectData [id=6707, uuid={11C51946-4599-4acb-B5AF-2B8F0CD45996}, since=null, name=myExtension, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{nsuri=http://extensions, nsprefix=eext}] +2024-09-08 15:11:35,763 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2112, uuid={DD8A2F85-66BE-4d24-A560-A9D3748E755D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=Equipment, _otherEndName=?] +2024-09-08 15:11:35,764 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3456, uuid={B41914F1-0549-4ba6-B050-78DC32FB9514}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=Equipment, _otherEndName=?] +2024-09-08 15:11:35,764 [main] TRACE ClassBuilder - read from EA: Other::Equipment +2024-09-08 15:11:35,764 [main] TRACE ClassBuilder - Class MyClass (0 in package Other) +2024-09-08 15:11:35,764 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2113, uuid={2532D99C-9B37-40c2-B38B-6C7EE08B9273}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=MyClass, _otherEndName=?] +2024-09-08 15:11:35,764 [main] DEBUG AssociationEndBuilder - Updated source type to MyClass +2024-09-08 15:11:35,764 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=9, uuid=d9bbaaab-88c8-37ca-b324-ef05c8e21d9f, since=null, name=MyClass, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=MyClass, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=10, uuid=eae8cb7a-f8f8-3531-a271-d09a8cc84d5c, since=null, name=Class1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Class1, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2130, uuid={06ABE750-E688-496b-A200-8708982212FA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Other::MyClass +2024-09-08 15:11:35,764 [main] TRACE ClassBuilder - read from EA: Other::MyClass +2024-09-08 15:11:35,764 [main] TRACE ClassBuilder - Class EmptyEnum (0 in package Other) +2024-09-08 15:11:35,765 [main] TRACE ClassBuilder - read from EA: Other::EmptyEnum +2024-09-08 15:11:35,765 [main] TRACE ClassBuilder - Class NonEmptyPrimitive (0 in package Other) +2024-09-08 15:11:35,765 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Other::NonEmptyPrimitive, _objData=UmlObjectData [id=3262, uuid={D496D1A8-C362-435f-83E4-B2247E25C84D}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,765 [main] TRACE ClassBuilder - read from EA: Other::NonEmptyPrimitive +2024-09-08 15:11:35,765 [main] TRACE ClassBuilder - Class AttrDuplication (0 in package Other) +2024-09-08 15:11:35,766 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Other::AttrDuplication, _objData=UmlObjectData [id=3266, uuid={0A43D4DB-192A-4274-95BC-F8772D4CF23B}, since=null, name=curveStyle, alias=, stereotype=, visibility=public, txtDescription='The style or shape of the curve.', htmlDescription='

The style or shape of the curve.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=857, _eaTypeName=CurveStyle, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,766 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Other::AttrDuplication, _objData=UmlObjectData [id=3267, uuid={D6C73EE7-83B0-45e6-BDC8-B0E3F46D8DE2}, since=null, name=normaIlyInService, alias=, stereotype=, visibility=public, txtDescription='The equipment is normally in service.', htmlDescription='

The equipment is normally in service.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,766 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2120, uuid={965A7FC1-9DF2-43a9-8B26-E7FE52309B76}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=AttrDuplication, _otherEndName=?] +2024-09-08 15:11:35,766 [main] DEBUG AssociationEndBuilder - Updated source type to AttrDuplication +2024-09-08 15:11:35,766 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=431, uuid=edb86b54-fcfe-3390-ba3e-ccaf323dcccb, since=null, name=Something, alias=, stereotype=, visibility=public, txtDescription='Same doc at both ends of association.', htmlDescription='

Same doc at both ends of association.

'], _type=AttrDuplication, _multiplicity=[0..1], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=432, uuid=c73a853f-cbeb-365d-8380-53e86e51c996, since=null, name=T1, alias=, stereotype=, visibility=public, txtDescription='Same doc at both ends of association.', htmlDescription='

Same doc at both ends of association.

'], _type=BadDatatypes, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2122, uuid={A4CF1EA0-A25A-4e76-991E-231C452748F5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Other::AttrDuplication +2024-09-08 15:11:35,767 [main] DEBUG AssociationEndBuilder - Updated source type to AttrDuplication +2024-09-08 15:11:35,767 [main] DEBUG AssociationEndBuilder - Updated target type to AttrDuplication +2024-09-08 15:11:35,767 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=448, uuid=2d140b83-084c-3b26-be93-2e7588dad441, since=null, name=From, alias=, stereotype=, visibility=public, txtDescription='Doc (not ending with ".")', htmlDescription='

Doc (not ending with ".")

'], _type=AttrDuplication, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=449, uuid=fa4a781a-b03c-3226-a3ba-f42dc479ab2a, since=null, name=To, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=AttrDuplication, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2123, uuid={A1CCBAF4-F270-46fe-9E5A-B090BAB212D7}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,767 [main] DEBUG AssociationEndBuilder - Updated source type to AttrDuplication +2024-09-08 15:11:35,767 [main] DEBUG AssociationEndBuilder - Updated target type to AttrDuplication +2024-09-08 15:11:35,768 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=451, uuid=d3446429-5444-3540-858e-0f8c1386de5e, since=null, name=From, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=AttrDuplication, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=452, uuid=de1bf03b-1d5b-366e-a262-f23a5ecd7497, since=null, name=To, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=AttrDuplication, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2125, uuid={AB460976-516D-47c3-A895-C3ADCF551734}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,768 [main] DEBUG ClassBuilder - Adding AttrDuplication as subclass of MyClass +2024-09-08 15:11:35,768 [main] TRACE ClassBuilder - read from EA: Other::AttrDuplication +2024-09-08 15:11:35,768 [main] TRACE ClassBuilder - Class AnotherBadDatatype (0 in package Other) +2024-09-08 15:11:35,769 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Other::AnotherBadDatatype, _objData=UmlObjectData [id=3296, uuid={01D99E0F-A7B9-4546-8F76-3E092E9942AE}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,769 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Other::AnotherBadDatatype, _objData=UmlObjectData [id=3297, uuid={415FDB87-B93D-41ca-906E-B88DD94D9F04}, since=null, name=unit, alias=, stereotype=unallowed, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,769 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Other::AnotherBadDatatype, _objData=UmlObjectData [id=3298, uuid={C055FF1A-F57E-4169-A823-AB41EB439A1C}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1538, _eaTypeName=EmptyCompound, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,769 [main] TRACE ClassBuilder - read from EA: Other::AnotherBadDatatype +2024-09-08 15:11:35,769 [main] TRACE ClassBuilder - Class EmptyCompound (0 in package Other) +2024-09-08 15:11:35,770 [main] TRACE ClassBuilder - read from EA: Other::EmptyCompound +2024-09-08 15:11:35,770 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61968, _depth=1, _eaElementID=1453, _objData=UmlObjectData [id=57, uuid={29A1BBDF-45EC-430a-913B-21BB1C8962E3}, since=null, name=Other, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=2, _selfDependent=true, 7_skippedEaItems=[SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2116, uuid={8DAFD989-CBA3-41d5-983A-7F645DDC20FF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Other, _otherEndName=Note ''], SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=2102, uuid={6D2E1FAD-19CA-4e94-8EF5-ED52FEBE9A83}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Other, _otherEndName=Package 'InformativeAndPrivate'], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1473, uuid={FA571FE9-EE28-49a6-9207-B35052E0F3B7}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='duplicate name in different package', htmlDescription='

duplicate name in different package

'], _containingPackage=Other, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1475, uuid={F36DC8B7-9274-4ebb-8686-5098D1637616}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='duplicate name in same package', htmlDescription='

duplicate name in same package

'], _containingPackage=Other, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1483, uuid={37C5FA4D-63DF-47b7-8A7C-DB93FE2C2D71}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='inherits 'value' and defines own one', htmlDescription='

inherits 'value' and defines own one

'], _containingPackage=Other, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1484, uuid={B97F5679-D419-49de-BD30-AFDE18E7E84E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='inherits 'curveStyle' and 'normallyInService' and defines own ones', htmlDescription='

inherits 'curveStyle' and 'normallyInService' and defines own ones

'], _containingPackage=Other, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1498, uuid={016D0725-554C-4993-855A-7606A90A1838}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='illegal relationship direction', htmlDescription='

illegal relationship direction

'], _containingPackage=Other, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=Other, _objData=UmlObjectData [id=159, uuid={59EDD10A-D974-45e0-A31F-52E31C9E72E2}, since=null, name=Other, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=1, _dependenciesAsTarget=1, _classes=9 +2024-09-08 15:11:35,770 [main] TRACE PackageBuilder - read PackageBuilder [_kind=TOP, _containingPackage=TC57CIM, _depth=0, _eaElementID=1451, _objData=UmlObjectData [id=56, uuid={5C322A25-309C-4917-B239-BC81A86E828B}, since=null, name=IEC61968, alias=, stereotype=, visibility=public, txtDescription='Blah (not ending with ".")', htmlDescription='

Blah (not ending with ".")

'], _modelId=2, _selfDependent=false, 2_taggedValues{nsprefix=n14, nsuri=http://wg14/customNamespace}, 4_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1478, uuid={5081A538-2556-474f-88ED-7C7DF4A5AFC6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='duplicate name in same parent package', htmlDescription='

duplicate name in same parent package

'], _containingPackage=IEC61968, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1479, uuid={9D7409F2-ED2C-4db6-8F47-491CE2A1844E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='duplicate name with other parent package', htmlDescription='

duplicate name with other parent package

'], _containingPackage=IEC61968, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1499, uuid={15CB1C37-5F9F-43ea-BD54-22E99CD16F24}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='wrong dependency direction', htmlDescription='

wrong dependency direction

'], _containingPackage=IEC61968, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3075, uuid={4E5B9BC5-C441-4553-80A7-70B7D074D066}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='- extension tags with namespaces', htmlDescription='

- extension tags with namespaces

'], _containingPackage=IEC61968, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=IEC61968, _objData=UmlObjectData [id=158, uuid={B3B5E06E-B00E-4cb6-B697-39D4D8476DC2}, since=null, name=IEC61968, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=1, _dependenciesAsTarget=1, _classes=1, _childPackages=5] +2024-09-08 15:11:35,770 [main] INFO PackageBuilder - processing top package IEC62325 (4) ... +2024-09-08 15:11:35,771 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=IEC62325, _objData=UmlObjectData [id=183, uuid={5F0F9749-799A-479d-8043-53264E198D5A}, since=null, name=IEC62325, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:35,772 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = TC57CIM::IEC62325->TC57CIM::IEC61968, _objData=UmlObjectData [id=3448, uuid={BEB08626-C0F2-4a9d-860D-F205594F0FE9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,772 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = TC57CIM::IEC62325->TC57CIM::IEC61970, _objData=UmlObjectData [id=3449, uuid={51951675-AE25-4ac7-AA97-9DF3741A7BB9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,773 [main] TRACE PackageBuilder - read PackageBuilder [_kind=TOP, _containingPackage=TC57CIM, _depth=0, _eaElementID=1544, _objData=UmlObjectData [id=82, uuid={7809EE61-C748-4772-9925-330FC1498016}, since=null, name=IEC62325, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=2, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=IEC62325, _objData=UmlObjectData [id=183, uuid={5F0F9749-799A-479d-8043-53264E198D5A}, since=null, name=IEC62325, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=2 +2024-09-08 15:11:35,773 [main] TRACE PackageBuilder - read PackageBuilder [_kind=MODEL, _depth=-1, _eaElementID=1, _objData=UmlObjectData [id=2, uuid={39AA7E64-A03A-4934-AF09-E74943F7E6C0}, since=null, name=TC57CIM, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=2, _selfDependent=false, 2_taggedValues{nsprefix=cim, nsuri=http://cim123}, 1_diagrams=[DiagramBuilder [_containingPackage=TC57CIM, _objData=UmlObjectData [id=1, uuid={7ECA7523-5E2A-40a0-A7B1-BE02958F3D9C}, since=null, name=Main, alias=, stereotype=diagStereotype, oneMoreDiagStereo, visibility=public, txtDescription='This diagram shows all Packages included in this CIM model.', htmlDescription='

This diagram shows all Packages included in this CIM model.

'], _portrait=true, _kind=LOGICAL]], _childPackages=4] +2024-09-08 15:11:35,773 [main] INFO PackageBuilder - processing model package IEC61850Domain (2) ... +2024-09-08 15:11:35,773 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=IEC61850Domain, _objData=UmlObjectData [id=160, uuid={6CF56053-B50F-4cfd-9886-2785DAD0964E}, since=null, name=IEC61850Domain, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:35,774 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3068, uuid={89AF424B-7761-4043-BDAB-5A10CE7C0549}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Tool should derive from this dependency that "any namespace under WG17 depends on 7-4".', htmlDescription='

Tool should derive from this dependency that "any namespace under WG17 depends on 7-4".

'], _containingPackage=IEC61850Domain, _otherEndName=] +2024-09-08 15:11:35,775 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3069, uuid={BFBF085D-757B-45ee-87C8-AA171DB3EB73}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='7_3 and 7_4 packages: +1. One of (circular) dependencies should be caught as invalid and the search stopped. +2. Both self-dependencies should be also caught as invalid and the search stopped.', htmlDescription='

7_3 and 7_4 packages:

  1. One of (circular) dependencies should be caught as invalid and the search stopped.
  2. Both self-dependencies should be also caught as invalid and the search stopped.
'], _containingPackage=IEC61850Domain, _otherEndName=] +2024-09-08 15:11:35,775 [main] INFO PackageBuilder - processing top package WG10 (1) ... +2024-09-08 15:11:35,776 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=WG10, _objData=UmlObjectData [id=186, uuid={60DE7B56-E18B-4c76-BAE9-F26279C1F965}, since=null, name=WG10, alias=, stereotype=, visibility=public, txtDescription='Sub-packages contained in this IEC61850 model. +UML model of IEC 61850 contains concrete specifications for logical nodes (part 7-4), the whole data type system (part 7-3), and ACSI services (part 7-2), including the meta-model that represents the whole of the standard.', htmlDescription='

Sub-packages contained in this IEC61850 model.

UML model of IEC 61850 contains concrete specifications for logical nodes (part 7-4), the whole data type system (part 7-3), and ACSI services (part 7-2), including the meta-model that represents the whole of the standard.

'], _portrait=true, _kind=PACKAGE] +2024-09-08 15:11:35,776 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=WG10, _objData=UmlObjectData [id=187, uuid={3AD43F3E-BF5F-4d70-B8EB-D0104CA1E17D}, since=null, name=Parts7, alias=, stereotype=, visibility=public, txtDescription='This diagram shows main packages and sub-packages included in this IEC61850-7-x model. +Colours show in which part of the standard the types are originally defined (or deduced from): +- green: IEC 61850-7-2 +- pink: IEC 61850-7-3 +- yellow: IEC 61850-7-4 +Elipses in packages (e.g., CDCs and DomainLNs) indicate that they have more sub-packages, but they are not shown in this diagram.', htmlDescription='

This diagram shows main packages and sub-packages included in this IEC61850-7-x model.

Colours show in which part of the standard the types are originally defined (or deduced from):

- green: IEC 61850-7-2

- pink: IEC 61850-7-3

- yellow: IEC 61850-7-4

Elipses in packages (e.g., CDCs and DomainLNs) indicate that they have more sub-packages, but they are not shown in this diagram.

'], _portrait=true, _kind=PACKAGE] +2024-09-08 15:11:35,776 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=WG10, _objData=UmlObjectData [id=188, uuid={7BD8A88D-424B-4ea2-B24A-F09076F9051B}, since=null, name=DataModelExample, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the most complex example with one concrete subclass for data-related classes of the meta-model, i.e., LNs, CDCs, FCDAs and DAs (classes in colour). On the diagram, we hide all the attributes but those used for the example.', htmlDescription='

This diagram shows the most complex example with one concrete subclass for data-related classes of the meta-model, i.e., LNs, CDCs, FCDAs and DAs (classes in colour). On the diagram, we hide all the attributes but those used for the example.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:35,778 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1553, uuid={D94F6B33-4624-48cd-AEBC-C0FDE476430F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling notes: +- We have tried to stick to the definition of concepts per Part of IEC61850, by grouping them into corresponding packages. This would allow relatively straight forward generation of IEC word documents directly from this model (this has been successfully done with another UML tool for Part 7, in 2003). For a software, it is certainly possible to think of a better grouping. +- In addition to the objective of documentation generation mentioned above, the design of the model aimed at facilitating initial, skeletal code generation. For that reason, there are many dependency relationships between packages (because UML dependencies are not transitive). If the model is not to be used for code generation, explicit dependencies among sub-packages can be greatly simplified, by replacing them with top-level package dependencies. +- This model has initially been developed from mid-2002 to mid-2004 with Rational Rose CASE tool, then imported into Enterprise Architect CASE tool. Parts of the original version have indeed been successfully used for skeleton code generation (MetaModel, ACSI and DA packages). We cannot guarantee that the present model is absolutely fit for painless code generation, but it should be a good starting point. +- We "order" packages in a bottom-up way, i.e., from the least dependent (most basic) towards the most dependent. In this way, if documentation gets generated, the basic concepts are seen first, then those that use them. However, for presentation purposes, it is probably better to introduce things top-down. +How to browse the model: +- Clicking on any package will automatically open the main diagram of that package. There are many diagrams in the model, and many of them contain hyperlinks to other, related diagrams. Most of the diagram should fit onto an A4 page. +- Domain experts and those who would like to extend the model, will care the most for the content of high level packages (LogicalNodes and CommonDataClasses). +- Implementors will have to start from ACSI package, in particular from its MetaModel sub-package. +Position statement: +- If you find the model complex, please blame the authors of IEC61850, not us :-)', htmlDescription='

Modelling notes:

  • We have tried to stick to the definition of concepts per Part of IEC61850, by grouping them into corresponding packages. This would allow relatively straight forward generation of IEC word documents directly from this model (this has been successfully done with another UML tool for Part 7, in 2003). For a software, it is certainly possible to think of a better grouping.
  • In addition to the objective of documentation generation mentioned above, the design of the model aimed at facilitating initial, skeletal code generation. For that reason, there are many dependency relationships between packages (because UML dependencies are not transitive). If the model is not to be used for code generation, explicit dependencies among sub-packages can be greatly simplified, by replacing them with top-level package dependencies.
  • This model has initially been developed from mid-2002 to mid-2004 with Rational Rose CASE tool, then imported into Enterprise Architect CASE tool. Parts of the original version have indeed been successfully used for skeleton code generation (MetaModel, ACSI and DA packages). We cannot guarantee that the present model is absolutely fit for painless code generation, but it should be a good starting point.
  • We "order" packages in a bottom-up way, i.e., from the least dependent (most basic) towards the most dependent. In this way, if documentation gets generated, the basic concepts are seen first, then those that use them. However, for presentation purposes, it is probably better to introduce things top-down.

How to browse the model:

  • Clicking on any package will automatically open the main diagram of that package. There are many diagrams in the model, and many of them contain hyperlinks to other, related diagrams. Most of the diagram should fit onto an A4 page.
  • Domain experts and those who would like to extend the model, will care the most for the content of high level packages (LogicalNodes and CommonDataClasses).
  • Implementors will have to start from ACSI package, in particular from its MetaModel sub-package.

Position statement:

  • If you find the model complex, please blame the authors of IEC61850, not us :-)
'], _containingPackage=WG10, _otherEndName=] +2024-09-08 15:11:35,779 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1554, uuid={8ECEFF06-BAD2-41e0-B468-9E73B7693BE3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='We describe the meta-model example shown in the bottom-up manner, as follows: +- VISIBLE_STRING255 and FLOAT32 are PrimitiveDAs. In this model, we have explicitly defined primitive types with the prefix 'P_', which can be used as implementation artefacts, and to protect the overall model from any potential implementation language detail. Therefore, VISIBLE_STRING255 and FLOAT32 simply hold an attribute 'val' of the corresponding primitive data type (as would be defined in a particular programming language), and inherit from the meta-model class PrimitiveDA. +- Vector and AnalogueValue are both ComposedDAs. A ComposedDA must contain at least one DA, be it ComposedDA or PrimitiveDA: Vector contains AnalogueValue 'mag', as a ComposedDA, and AnalogueValue contains FLOAT32 'f' as a PrimitiveDA. +- VISIBLE_STRING255_DC, AnalogueValue_MX and Vector_MX_dchg are all FCDAs, i.e., they provide the explicit definition for all the combinations of available functional constraints and triggering options, with DAs. Therefore, each of them simply contains an attribute, 'attr', of the corresponding DA type, either ComposedDA (in the case of AnalogueValue_MX and Vector_MX_dchg) or PrimitiveDA (in the case of VISIBLE_STRING255_DC). +- MV, CMV and WYE are all CDCs. The first two are PrimitiveCDCs and the last one is a ComposedCDC. As CDCs, they must contain one or more FCDAs - all have attribute 'd' of type VISIBLE_STRING255, and MV and CMV have attributes 'mag' and 'cVal', respectively, of types AnalogueValue_MX and Vector_MX_dchg, respectively. A ComposedCDC must additionally contain one or more PrimitiveCDCs - example for WYE is the attribute 'phsA', which is a PrimitiveCDC. +- Finally, MMXU is an LN and must contain one or more CDCs - attribute 'A' is a CDC. +With this meta-model approach, all the complexity of the datatype system is hidden below CDCs, and the essential of the domain is contained in the LNs.', htmlDescription='

We describe the meta-model example shown in the bottom-up manner, as follows:

  • VISIBLE_STRING255 and FLOAT32 are PrimitiveDAs. In this model, we have explicitly defined primitive types with the prefix 'P_', which can be used as implementation artefacts, and to protect the overall model from any potential implementation language detail. Therefore, VISIBLE_STRING255 and FLOAT32 simply hold an attribute 'val' of the corresponding primitive data type (as would be defined in a particular programming language), and inherit from the meta-model class PrimitiveDA.
  • Vector and AnalogueValue are both ComposedDAs. A ComposedDA must contain at least one DA, be it ComposedDA or PrimitiveDA: Vector contains AnalogueValue 'mag', as a ComposedDA, and AnalogueValue contains FLOAT32 'f' as a PrimitiveDA.
  • VISIBLE_STRING255_DC, AnalogueValue_MX and Vector_MX_dchg are all FCDAs, i.e., they provide the explicit definition for all the combinations of available functional constraints and triggering options, with DAs. Therefore, each of them simply contains an attribute, 'attr', of the corresponding DA type, either ComposedDA (in the case of AnalogueValue_MX and Vector_MX_dchg) or PrimitiveDA (in the case of VISIBLE_STRING255_DC).
  • MV, CMV and WYE are all CDCs. The first two are PrimitiveCDCs and the last one is a ComposedCDC. As CDCs, they must contain one or more FCDAs - all have attribute 'd' of type VISIBLE_STRING255, and MV and CMV have attributes 'mag' and 'cVal', respectively, of types AnalogueValue_MX and Vector_MX_dchg, respectively. A ComposedCDC must additionally contain one or more PrimitiveCDCs - example for WYE is the attribute 'phsA', which is a PrimitiveCDC.
  • Finally, MMXU is an LN and must contain one or more CDCs - attribute 'A' is a CDC.

With this meta-model approach, all the complexity of the datatype system is hidden below CDCs, and the essential of the domain is contained in the LNs.

'], _containingPackage=WG10, _otherEndName=] +2024-09-08 15:11:35,780 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1556, uuid={1FE867FD-79B7-464f-8052-435DD1687820}, since=null, name=Parts7 : DataModelExample, alias=, stereotype=, visibility=public, txtDescription='Parts7 : DataModelExample', htmlDescription='

Parts7 : DataModelExample

'], _containingPackage=WG10, _otherEndName=] +2024-09-08 15:11:35,780 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1557, uuid={256FF05A-27ED-4887-B5FE-EDF4614593EB}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='mag', htmlDescription='

mag

'], _containingPackage=WG10, _otherEndName=] +2024-09-08 15:11:35,781 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1558, uuid={26E40582-F186-466d-86B4-F8DD7DBC54F0}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='Part 7-2 (ACSI, meta-model) Parts 7-4, 7-3 (concrete LNs, CDCs, DAs)', htmlDescription='

Part 7-2 (ACSI, meta-model) Parts 7-4, 7-3 (concrete LNs, CDCs, DAs)

'], _containingPackage=WG10, _otherEndName=] +2024-09-08 15:11:35,781 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1559, uuid={2D4E4EBF-44BB-4c48-894D-39CD41A54738}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='...', htmlDescription='

...

'], _containingPackage=WG10, _otherEndName=] +2024-09-08 15:11:35,781 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1560, uuid={3BAA5323-14E0-439f-84A0-1B5952B05C8F}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='A', htmlDescription='

A

'], _containingPackage=WG10, _otherEndName=] +2024-09-08 15:11:35,781 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1561, uuid={3ECBDF79-B2DB-41b1-91F7-ECA45C2F64EB}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='attr', htmlDescription='

attr

'], _containingPackage=WG10, _otherEndName=] +2024-09-08 15:11:35,781 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1562, uuid={4322E030-F287-4017-9D95-2A8AF934BE65}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='attr', htmlDescription='

attr

'], _containingPackage=WG10, _otherEndName=] +2024-09-08 15:11:35,781 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1563, uuid={4A5F30B1-B039-4ef0-BDD6-3F7630BB47ED}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='cVal', htmlDescription='

cVal

'], _containingPackage=WG10, _otherEndName=] +2024-09-08 15:11:35,782 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1564, uuid={581893B5-516E-4999-B0A4-0C8538B87209}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='...', htmlDescription='

...

'], _containingPackage=WG10, _otherEndName=] +2024-09-08 15:11:35,782 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1565, uuid={5FED3E4A-CE83-456a-814C-A684836C1338}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='d', htmlDescription='

d

'], _containingPackage=WG10, _otherEndName=] +2024-09-08 15:11:35,782 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1566, uuid={884347DF-162A-4b48-A9A5-9BBF0523A2E9}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='phsA', htmlDescription='

phsA

'], _containingPackage=WG10, _otherEndName=] +2024-09-08 15:11:35,782 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1567, uuid={952F1499-B3A1-4f4d-A950-5C65655720DD}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='attr', htmlDescription='

attr

'], _containingPackage=WG10, _otherEndName=] +2024-09-08 15:11:35,782 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1568, uuid={9FAF5191-B3F7-48ad-862E-9462DA86C059}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='f', htmlDescription='

f

'], _containingPackage=WG10, _otherEndName=] +2024-09-08 15:11:35,782 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1569, uuid={A48C44FE-7EB4-4639-86A3-953DBE7DDC26}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='mag', htmlDescription='

mag

'], _containingPackage=WG10, _otherEndName=] +2024-09-08 15:11:35,782 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1570, uuid={BC2B22A4-E338-426a-AA6B-13C8C105619C}, since=null, name=IEC61850 : Parts7, alias=, stereotype=, visibility=public, txtDescription='IEC61850 : Parts7', htmlDescription='

IEC61850 : Parts7

'], _containingPackage=WG10, _otherEndName=] +2024-09-08 15:11:35,782 [main] TRACE ClassBuilder - Class WG10UMLVersion (0 in package WG10) +2024-09-08 15:11:35,782 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=WG10::WG10UMLVersion, _objData=UmlObjectData [id=3318, uuid={8E43EF7F-9119-4973-84F0-FE4DF5855943}, since=null, name=version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=IEC61850UML02v07, _eaTypeId=1665, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,782 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=WG10::WG10UMLVersion, _objData=UmlObjectData [id=3319, uuid={8DDEC565-E0D2-4614-9615-D066B409C1D6}, since=null, name=date, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=2011-07-02, _eaTypeId=1665, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,783 [main] TRACE ClassBuilder - read from EA: WG10::WG10UMLVersion +2024-09-08 15:11:35,783 [main] INFO PackageBuilder - processing package NewIEC61850_7_2 (1) ... +2024-09-08 15:11:35,783 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=NewIEC61850_7_2, _objData=UmlObjectData [id=189, uuid={FDB3BD59-D66E-4646-A4E7-B08D4F787BFD}, since=null, name=NewIEC61850_7_2, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=PACKAGE] +2024-09-08 15:11:35,784 [main] INFO PackageBuilder - processing package GenericModel (0) ... +2024-09-08 15:11:35,785 [main] ERROR EaTables - [+++ EA ordering problem for 2 diagram(s) in GenericModel (manually move back/forth a diagram to initiate EA internal ordering update!): +, +++ diagram GenericModel: pos = 0 +, +++ diagram GenericModelTypes: pos = 0 DUPLICATE +] +2024-09-08 15:11:35,785 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=GenericModel, _objData=UmlObjectData [id=190, uuid={741656D9-DFE5-45fb-A169-AC974992B5BE}, since=null, name=GenericModel, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:35,785 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=GenericModel, _objData=UmlObjectData [id=191, uuid={2A0F8CC2-20D8-47e7-AA5D-1CEE6D0192D2}, since=null, name=GenericModelTypes, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:35,789 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1573, uuid={E96EFCB6-7CB3-4a02-B716-C76F98A92BF8}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='All from 6.2 CommonACSI types, except for ARRAY and the 3 moved to atomic. +Stereotype: <>', htmlDescription='

All from 6.2 CommonACSI types, except for ARRAY and the 3 moved to atomic.

Stereotype: <<compact>>

'], _containingPackage=GenericModel, _otherEndName=] +2024-09-08 15:11:35,789 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1574, uuid={E36DC6AA-4511-4f84-A9DD-E9B6D5994E58}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Agreement to rename some primitive types in 7-2, to align with SCL names, as follows: +- use actual 7-2 name as alias in UML class (printed as title) +- use SCL type name as class name', htmlDescription='

Agreement to rename some primitive types in 7-2, to align with SCL names, as follows:

- use actual 7-2 name as alias in UML class (printed as title)

- use SCL type name as class name

'], _containingPackage=GenericModel, _otherEndName=] +2024-09-08 15:11:35,789 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1575, uuid={D47037FC-BEA0-47eb-B37B-6E74F8B3D551}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Note: Review classification after addressing 7-2 core type system. +GenBaseType is meant to be used for "pure" primitives, GenCommonACSIType is for all the others.', htmlDescription='

Note: Review classification after addressing 7-2 core type system.

GenBaseType is meant to be used for "pure" primitives, GenCommonACSIType is for all the others.

'], _containingPackage=GenericModel, _otherEndName=] +2024-09-08 15:11:35,789 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1576, uuid={BCAC7CCF-A942-48a4-B258-771D38A021F9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: We'll need to move PresenceConditions from 7-3 into 7-2, to use them in 7-2 as well.', htmlDescription='

TODO: We'll need to move PresenceConditions from 7-3 into 7-2, to use them in 7-2 as well.

'], _containingPackage=GenericModel, _otherEndName=] +2024-09-08 15:11:35,789 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1577, uuid={A60B825D-7A9A-494d-BA42-33219F1893C4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Change "FileName" with "FileRef" wherever it appears. +Do not include FileDirectory.', htmlDescription='

TODO: Change "FileName" with "FileRef" wherever it appears.

Do not include FileDirectory.

'], _containingPackage=GenericModel, _otherEndName=] +2024-09-08 15:11:35,790 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1578, uuid={8528A6C3-CA81-4578-B54F-7A7DE355C9F9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- Andre to see how to express: At least one of FCDMember or FCDAMember. +- Tanja to add DSRef as ObjectReference, similar to existing meta-model. +- Tanja to trace associations similar to existing meta-model, they're ok.', htmlDescription='

TODO:

  • Andre to see how to express: At least one of FCDMember or FCDAMember.
  • Tanja to add DSRef as ObjectReference, similar to existing meta-model.
  • Tanja to trace associations similar to existing meta-model, they're ok.
'], _containingPackage=GenericModel, _otherEndName=] +2024-09-08 15:11:35,790 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1579, uuid={7C7CE85D-2B99-46ed-82E5-2B2F36BDB3B6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Decision: Start with packages that will reflect Clause 6 through Clause 23 (Files).', htmlDescription='

Decision: Start with packages that will reflect Clause 6 through Clause 23 (Files).

'], _containingPackage=GenericModel, _otherEndName=] +2024-09-08 15:11:35,790 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1580, uuid={65AFCFF7-8512-4e11-BCFA-DBF2FD664BE5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Deal with GenClient.', htmlDescription='

TODO: Deal with GenClient.

'], _containingPackage=GenericModel, _otherEndName=] +2024-09-08 15:11:35,790 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1581, uuid={578E5DF8-ED23-4bfe-9A4C-626AA2F125CE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='All from 6.1 Basic types + ObjectReference, ObjectName and ServiceError. +Plus other non-packed/coded types. +Steretypes: <>, <>, <>', htmlDescription='

All from 6.1 Basic types + ObjectReference, ObjectName and ServiceError.

Plus other non-packed/coded types.

Steretypes: <<atomic>>, <<enumeration>>, <<enumeration,coded>>

'], _containingPackage=GenericModel, _otherEndName=] +2024-09-08 15:11:35,790 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1582, uuid={574B78D4-385A-44c8-9038-ACC8AA6D4343}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- Ensure RCB.DatSet etc. are reflected as assoc. end names in the generic model. +OPEN QUESTION: +- Case of RCB.DatSet that should be of type ObjectReference, but in the generic model it is linked to DataSet.', htmlDescription='

TODO:

  • Ensure RCB.DatSet etc. are reflected as assoc. end names in the generic model.

OPEN QUESTION:

  • Case of RCB.DatSet that should be of type ObjectReference, but in the generic model it is linked to DataSet.
'], _containingPackage=GenericModel, _otherEndName=] +2024-09-08 15:11:35,790 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1583, uuid={3E98F8C3-5801-4840-9C6D-489098AD95CC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: We've added "Gen" to types where we already have an existing one - to make it less error-prone to refactor. E.g., GenFCD will in the end be called FCD.', htmlDescription='

Modelling note: We've added "Gen" to types where we already have an existing one - to make it less error-prone to refactor. E.g., GenFCD will in the end be called FCD.

'], _containingPackage=GenericModel, _otherEndName=] +2024-09-08 15:11:35,790 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1584, uuid={3D07741F-191D-47a1-8F4D-01CADA1023F3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- Tanja to add GenAuthenticationParameter type (similar to Authentication in meta-model).', htmlDescription='

TODO:

  • Tanja to add GenAuthenticationParameter type (similar to Authentication in meta-model).
'], _containingPackage=GenericModel, _otherEndName=] +2024-09-08 15:11:35,790 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=false, _objData=UmlObjectData [id=1618, uuid={1DA81ADB-7526-4988-B94A-615589F034CF}, since=null, name=, alias=, stereotype=invariant, visibility=public, txtDescription='xor', htmlDescription='

xor

'], _containingPackage=GenericModel, _otherEndName=] +2024-09-08 15:11:35,790 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=false, _objData=UmlObjectData [id=1619, uuid={46AE4BB9-5995-47bf-B7A2-3500BDA63832}, since=null, name=, alias=, stereotype=invariant, visibility=public, txtDescription='xor', htmlDescription='

xor

'], _containingPackage=GenericModel, _otherEndName=] +2024-09-08 15:11:35,791 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=false, _objData=UmlObjectData [id=1620, uuid={5D9BD1EA-00B1-4644-A7F4-6F0FA14A9F8B}, since=null, name=, alias=, stereotype=invariant, visibility=public, txtDescription='xor', htmlDescription='

xor

'], _containingPackage=GenericModel, _otherEndName=] +2024-09-08 15:11:35,791 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=false, _objData=UmlObjectData [id=1621, uuid={A15F46E8-FDE8-40f1-8D27-9BF33615BDA5}, since=null, name=, alias=, stereotype=invariant, visibility=public, txtDescription='xor', htmlDescription='

xor

'], _containingPackage=GenericModel, _otherEndName=] +2024-09-08 15:11:35,791 [main] TRACE ClassBuilder - Class CommAddress (1 in package GenericModel) +2024-09-08 15:11:35,791 [main] TRACE ClassBuilder - read from EA: GenericModel::CommAddress +2024-09-08 15:11:35,791 [main] TRACE ClassBuilder - Class GenAssociationID (2 in package GenericModel) +2024-09-08 15:11:35,791 [main] TRACE ClassBuilder - read from EA: GenericModel::GenAssociationID +2024-09-08 15:11:35,791 [main] TRACE ClassBuilder - Class GenFC (3 in package GenericModel) +2024-09-08 15:11:35,792 [main] TRACE ClassBuilder - read from EA: GenericModel::GenFC +2024-09-08 15:11:35,792 [main] TRACE ClassBuilder - Class GenPresenceConditions (4 in package GenericModel) +2024-09-08 15:11:35,792 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2173, uuid={841EA8A2-BC21-499e-AE58-48F0BEB2CA88}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=GenPresenceConditions, _otherEndName=?] +2024-09-08 15:11:35,792 [main] TRACE ClassBuilder - read from EA: GenericModel::GenPresenceConditions +2024-09-08 15:11:35,792 [main] TRACE ClassBuilder - Class GenTimeStamp (5 in package GenericModel) +2024-09-08 15:11:35,792 [main] TRACE ClassBuilder - read from EA: GenericModel::GenTimeStamp +2024-09-08 15:11:35,792 [main] TRACE ClassBuilder - Class AccessPoint (6 in package GenericModel) +2024-09-08 15:11:35,792 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::AccessPoint, _objData=UmlObjectData [id=3320, uuid={40D9CE14-376C-43eb-9583-238284A8F3CC}, since=null, name=Address, alias=, stereotype=, visibility=public, txtDescription='Address is optional, e.g. in case of GOOSE subscriber where physical link exists (and no comm link).', htmlDescription='

Address is optional, e.g. in case of GOOSE subscriber where physical link exists (and no comm link).

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=1586, _eaTypeName=CommAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,793 [main] DEBUG AssociationEndBuilder - Updated target type to AccessPoint +2024-09-08 15:11:35,793 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=518, uuid=80bbc98a-7b14-32ed-857c-7ea140eba257, since=null, name=IED, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=519, uuid=af3ad1a5-482a-35af-9cc0-9d827b1e93ad, since=null, name=AP, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=AccessPoint, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3400, uuid={DAE49C76-967F-474e-89A1-F794712D37D6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,793 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=518, uuid=80bbc98a-7b14-32ed-857c-7ea140eba257, since=null, name=IED, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=519, uuid=af3ad1a5-482a-35af-9cc0-9d827b1e93ad, since=null, name=AP, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=AccessPoint, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3400, uuid={DAE49C76-967F-474e-89A1-F794712D37D6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::AccessPoint +2024-09-08 15:11:35,793 [main] TRACE ClassBuilder - read from EA: GenericModel::AccessPoint +2024-09-08 15:11:35,793 [main] TRACE ClassBuilder - Class FileSystem (7 in package GenericModel) +2024-09-08 15:11:35,793 [main] DEBUG AssociationEndBuilder - Updated target type to FileSystem +2024-09-08 15:11:35,793 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=522, uuid=5c265ff5-ecbc-320f-84a3-73adfc3724de, since=null, name=Server, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=523, uuid=ac3325c9-54ef-30e7-a39e-24d3911757c6, since=null, name=FileSystem, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=FileSystem, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3398, uuid={5982398B-EDCC-45cd-A1AA-C9F8D62D2A4A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,794 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=522, uuid=5c265ff5-ecbc-320f-84a3-73adfc3724de, since=null, name=Server, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=523, uuid=ac3325c9-54ef-30e7-a39e-24d3911757c6, since=null, name=FileSystem, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=FileSystem, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3398, uuid={5982398B-EDCC-45cd-A1AA-C9F8D62D2A4A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::FileSystem +2024-09-08 15:11:35,794 [main] DEBUG AssociationEndBuilder - Updated source type to FileSystem +2024-09-08 15:11:35,794 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=525, uuid=158bf549-2e71-324e-b38d-7e4cd827cb19, since=null, name=FileSystem, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=FileSystem, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=526, uuid=13a4997f-10e4-3d32-a1f5-52a90ed16321, since=null, name=Files, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3399, uuid={207F6219-301F-4e30-BD21-E099498AD645}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,794 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=525, uuid=158bf549-2e71-324e-b38d-7e4cd827cb19, since=null, name=FileSystem, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=FileSystem, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=526, uuid=13a4997f-10e4-3d32-a1f5-52a90ed16321, since=null, name=Files, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3399, uuid={207F6219-301F-4e30-BD21-E099498AD645}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::FileSystem +2024-09-08 15:11:35,794 [main] TRACE ClassBuilder - read from EA: GenericModel::FileSystem +2024-09-08 15:11:35,794 [main] TRACE ClassBuilder - Class GenAtomicType (8 in package GenericModel) +2024-09-08 15:11:35,794 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2177, uuid={08379421-292F-4878-A9D7-941924C93BAA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=GenAtomicType, _otherEndName=?] +2024-09-08 15:11:35,794 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = null->GenericModel::GenAtomicType, _objData=UmlObjectData [id=3375, uuid={7804C7F3-3958-4464-9E4D-6125308CB9FF}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,794 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = null->GenericModel::GenAtomicType, _objData=UmlObjectData [id=3393, uuid={CC81D6A1-8E39-4a90-A7C3-B7DF34975EF8}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,794 [main] TRACE ClassBuilder - read from EA: GenericModel::GenAtomicType +2024-09-08 15:11:35,795 [main] TRACE ClassBuilder - Class GenBOOLEAN (9 in package GenericModel) +2024-09-08 15:11:35,795 [main] TRACE ClassBuilder - read from EA: GenericModel::GenBOOLEAN +2024-09-08 15:11:35,795 [main] TRACE ClassBuilder - Class GenCommonDataClass (10 in package GenericModel) +2024-09-08 15:11:35,795 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenCommonDataClass, _objData=UmlObjectData [id=3321, uuid={556405B0-426B-4a24-8F13-B0569BCCB145}, since=null, name=CDC-ID, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,795 [main] DEBUG AssociationEndBuilder - Updated source type to GenCommonDataClass +2024-09-08 15:11:35,795 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=535, uuid=91bf0cdf-215d-3292-9f6b-9c233a225df7, since=null, name=CommonDataClass, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenCommonDataClass, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=536, uuid=8710bb08-2a02-358b-9586-eb781cdcd818, since=null, name=DataAttribute, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3396, uuid={F8919942-6ADD-48fb-BBC0-6A23A34F0D8D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,795 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=535, uuid=91bf0cdf-215d-3292-9f6b-9c233a225df7, since=null, name=CommonDataClass, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenCommonDataClass, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=536, uuid=8710bb08-2a02-358b-9586-eb781cdcd818, since=null, name=DataAttribute, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3396, uuid={F8919942-6ADD-48fb-BBC0-6A23A34F0D8D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenCommonDataClass +2024-09-08 15:11:35,795 [main] DEBUG AssociationEndBuilder - Updated source type to GenCommonDataClass +2024-09-08 15:11:35,796 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=538, uuid=720b4f72-8ffd-31c3-aae1-0bf72487de2b, since=null, name=CommonDataClass, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenCommonDataClass, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=539, uuid=3225b7f5-1129-3f07-a8a8-f676c210cb89, since=null, name=SubDataObject, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3397, uuid={4B987438-5F99-4fad-895C-8F6087C8705B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,796 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=538, uuid=720b4f72-8ffd-31c3-aae1-0bf72487de2b, since=null, name=CommonDataClass, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenCommonDataClass, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=539, uuid=3225b7f5-1129-3f07-a8a8-f676c210cb89, since=null, name=SubDataObject, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3397, uuid={4B987438-5F99-4fad-895C-8F6087C8705B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenCommonDataClass +2024-09-08 15:11:35,796 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = null->GenericModel::GenCommonDataClass, _objData=UmlObjectData [id=3372, uuid={959E91AF-330B-466d-9B20-63A1C6A648DF}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,796 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = null->GenericModel::GenCommonDataClass, _objData=UmlObjectData [id=3390, uuid={3D585BC8-7580-4967-AA20-7FE4307815A5}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,796 [main] TRACE ClassBuilder - read from EA: GenericModel::GenCommonDataClass +2024-09-08 15:11:35,796 [main] TRACE ClassBuilder - Class GenCompactType (11 in package GenericModel) +2024-09-08 15:11:35,796 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2172, uuid={CC9479A4-9DD7-4f7c-A2DD-42B53F5DA3AA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=GenCompactType, _otherEndName=?] +2024-09-08 15:11:35,796 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = null->GenericModel::GenCompactType, _objData=UmlObjectData [id=3374, uuid={8BEF7BE6-3453-4f7b-B1A4-1A0F6CD943B2}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,796 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = null->GenericModel::GenCompactType, _objData=UmlObjectData [id=3394, uuid={79A7DA9F-D786-4132-9D2F-6D10B1E0DD60}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,797 [main] TRACE ClassBuilder - read from EA: GenericModel::GenCompactType +2024-09-08 15:11:35,797 [main] TRACE ClassBuilder - Class GenConstructedType (12 in package GenericModel) +2024-09-08 15:11:35,797 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenConstructedType, _objData=UmlObjectData [id=3322, uuid={3672BC56-9890-4355-861B-45B1B841A9A8}, since=null, name=DA-ID, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,797 [main] DEBUG AssociationEndBuilder - Updated source type to GenConstructedType +2024-09-08 15:11:35,797 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=549, uuid=8da8b7fc-8347-3c95-b7ef-6ec97c09bb62, since=null, name=DataAttribute, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenConstructedType, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=550, uuid=88c87443-8ee9-3acb-8e3a-15b428a73cb3, since=null, name=SubDataAttribute, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3395, uuid={4953EDB6-E8A3-44b8-BA29-DD3366F6B3F1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,797 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=549, uuid=8da8b7fc-8347-3c95-b7ef-6ec97c09bb62, since=null, name=DataAttribute, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenConstructedType, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=550, uuid=88c87443-8ee9-3acb-8e3a-15b428a73cb3, since=null, name=SubDataAttribute, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3395, uuid={4953EDB6-E8A3-44b8-BA29-DD3366F6B3F1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenConstructedType +2024-09-08 15:11:35,797 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = null->GenericModel::GenConstructedType, _objData=UmlObjectData [id=3373, uuid={C583C2FA-340A-40e7-B9E0-E3B2C0F214E4}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,797 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = null->GenericModel::GenConstructedType, _objData=UmlObjectData [id=3392, uuid={E394C333-7434-47f4-8C30-3E48F8FF98FF}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,797 [main] TRACE ClassBuilder - read from EA: GenericModel::GenConstructedType +2024-09-08 15:11:35,797 [main] TRACE ClassBuilder - Class GenDataAttribute (13 in package GenericModel) +2024-09-08 15:11:35,798 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenDataAttribute, _objData=UmlObjectData [id=3323, uuid={FD001E99-4132-4975-B26D-2B9F17395F66}, since=null, name=DAName, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,798 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenDataAttribute, _objData=UmlObjectData [id=3324, uuid={34285ABB-FB3B-404a-ACC4-4709533FA4BF}, since=null, name=DARef, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1607, _eaTypeName=GenObjRef, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,798 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenDataAttribute, _objData=UmlObjectData [id=3325, uuid={6E718A2A-A12C-4100-80D3-84B5550862E0}, since=null, name=FC, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1597, _eaTypeName=GenFC, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,798 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenDataAttribute, _objData=UmlObjectData [id=3326, uuid={4F3B8CEE-ECAE-43cc-ACC9-68F61865042C}, since=null, name=TrgOp, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1615, _eaTypeName=GenTriggerConditions, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,798 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenDataAttribute, _objData=UmlObjectData [id=3327, uuid={807AE164-D149-4d18-9790-FCE87600CD9E}, since=null, name=Presence, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1609, _eaTypeName=GenPresenceConditions, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,798 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenDataAttribute, _objData=UmlObjectData [id=3328, uuid={B8650C5E-BC73-4968-B86C-C84775721C80}, since=null, name=Index, alias=, stereotype=, visibility=public, txtDescription='Index of this data attribute in case it is member of an array.', htmlDescription='

Index of this data attribute in case it is member of an array.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1602, _eaTypeName=GenINT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,798 [main] DEBUG AssociationEndBuilder - Updated target type to GenDataAttribute +2024-09-08 15:11:35,799 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=561, uuid=0283bad7-01c9-3c74-859a-bc73c4a20580, since=null, name=FCDA, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=562, uuid=9bb47694-c8c9-3c6b-8e46-d36d39c9d9e9, since=null, name=DataAttribute, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataAttribute, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3391, uuid={F5615202-FD44-43cf-A5FB-ACEEE58CA690}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,799 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=561, uuid=0283bad7-01c9-3c74-859a-bc73c4a20580, since=null, name=FCDA, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=562, uuid=9bb47694-c8c9-3c6b-8e46-d36d39c9d9e9, since=null, name=DataAttribute, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataAttribute, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3391, uuid={F5615202-FD44-43cf-A5FB-ACEEE58CA690}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenDataAttribute +2024-09-08 15:11:35,799 [main] DEBUG AssociationEndBuilder - Updated target type to GenDataAttribute +2024-09-08 15:11:35,799 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=535, uuid=91bf0cdf-215d-3292-9f6b-9c233a225df7, since=null, name=CommonDataClass, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenCommonDataClass, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=536, uuid=8710bb08-2a02-358b-9586-eb781cdcd818, since=null, name=DataAttribute, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataAttribute, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3396, uuid={F8919942-6ADD-48fb-BBC0-6A23A34F0D8D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenDataAttribute +2024-09-08 15:11:35,799 [main] DEBUG ClassBuilder - Updated source of class dependency DependencyBuilder [_kind=CLASS, qName = GenericModel::GenDataAttribute->GenericModel::GenConstructedType, _objData=UmlObjectData [id=3392, uuid={E394C333-7434-47f4-8C30-3E48F8FF98FF}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,799 [main] DEBUG ClassBuilder - Updated source of class dependency DependencyBuilder [_kind=CLASS, qName = GenericModel::GenDataAttribute->GenericModel::GenAtomicType, _objData=UmlObjectData [id=3393, uuid={CC81D6A1-8E39-4a90-A7C3-B7DF34975EF8}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,799 [main] DEBUG ClassBuilder - Updated source of class dependency DependencyBuilder [_kind=CLASS, qName = GenericModel::GenDataAttribute->GenericModel::GenCompactType, _objData=UmlObjectData [id=3394, uuid={79A7DA9F-D786-4132-9D2F-6D10B1E0DD60}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,799 [main] TRACE ClassBuilder - read from EA: GenericModel::GenDataAttribute +2024-09-08 15:11:35,799 [main] TRACE ClassBuilder - Class GenDataObject (14 in package GenericModel) +2024-09-08 15:11:35,799 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenDataObject, _objData=UmlObjectData [id=3329, uuid={493B8A67-86FF-4718-BA8F-D78707C1FD65}, since=null, name=DOName, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,799 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenDataObject, _objData=UmlObjectData [id=3330, uuid={B926F4CF-F07E-4264-B8E0-B1E7B6A83C0C}, since=null, name=DORef, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1607, _eaTypeName=GenObjRef, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,799 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenDataObject, _objData=UmlObjectData [id=3331, uuid={0100601D-CE5C-477e-9468-C76C14D215E9}, since=null, name=Transient, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1590, _eaTypeName=GenBOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,799 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenDataObject, _objData=UmlObjectData [id=3332, uuid={32D55A3C-F89A-4a1b-B987-40A0A56F35F7}, since=null, name=Presence, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1609, _eaTypeName=GenPresenceConditions, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,800 [main] DEBUG AssociationEndBuilder - Updated target type to GenDataObject +2024-09-08 15:11:35,800 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=569, uuid=96984ad5-0058-3f92-8de1-1b9d9abb7efd, since=null, name=LogicalNode, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=570, uuid=29c429cd-a5a2-375a-bb2f-bcda005a00b6, since=null, name=DataObject, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataObject, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3388, uuid={E7750FB2-2AAD-43fb-B285-DB6600EAB0EB}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,800 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=569, uuid=96984ad5-0058-3f92-8de1-1b9d9abb7efd, since=null, name=LogicalNode, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=570, uuid=29c429cd-a5a2-375a-bb2f-bcda005a00b6, since=null, name=DataObject, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataObject, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3388, uuid={E7750FB2-2AAD-43fb-B285-DB6600EAB0EB}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenDataObject +2024-09-08 15:11:35,800 [main] DEBUG AssociationEndBuilder - Updated target type to GenDataObject +2024-09-08 15:11:35,801 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=572, uuid=bb00dad9-2c30-3ebc-b229-204a8ddb766a, since=null, name=FCD, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=573, uuid=49609e32-471e-3791-82a5-0a36afa7137d, since=null, name=DataObject, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataObject, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3389, uuid={78EB6F05-C9FD-4e65-85A2-6AF87F8A18C4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,801 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=572, uuid=bb00dad9-2c30-3ebc-b229-204a8ddb766a, since=null, name=FCD, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=573, uuid=49609e32-471e-3791-82a5-0a36afa7137d, since=null, name=DataObject, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataObject, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3389, uuid={78EB6F05-C9FD-4e65-85A2-6AF87F8A18C4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenDataObject +2024-09-08 15:11:35,801 [main] DEBUG ClassBuilder - Updated source of class dependency DependencyBuilder [_kind=CLASS, qName = GenericModel::GenDataObject->GenericModel::GenCommonDataClass, _objData=UmlObjectData [id=3390, uuid={3D585BC8-7580-4967-AA20-7FE4307815A5}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,801 [main] TRACE ClassBuilder - read from EA: GenericModel::GenDataObject +2024-09-08 15:11:35,801 [main] TRACE ClassBuilder - Class GenDataSet (15 in package GenericModel) +2024-09-08 15:11:35,801 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenDataSet, _objData=UmlObjectData [id=3333, uuid={17678D76-CE06-4c20-80A5-7682C8099F48}, since=null, name=DSName, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,802 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2175, uuid={4ADC5A0E-73C6-4f94-933A-7BD93D4E55E9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=GenDataSet, _otherEndName=?] +2024-09-08 15:11:35,802 [main] DEBUG AssociationEndBuilder - Updated source type to GenDataSet +2024-09-08 15:11:35,803 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=578, uuid=09587696-3043-308e-a75d-131ab811c497, since=null, name=DataSet, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataSet, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=579, uuid=475e6c6d-6978-3182-aded-86ac1f2bb2e1, since=null, name=FCDMember, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3386, uuid={D623819D-C786-49de-9F8E-98626B2B744B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,803 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=578, uuid=09587696-3043-308e-a75d-131ab811c497, since=null, name=DataSet, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataSet, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=579, uuid=475e6c6d-6978-3182-aded-86ac1f2bb2e1, since=null, name=FCDMember, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3386, uuid={D623819D-C786-49de-9F8E-98626B2B744B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenDataSet +2024-09-08 15:11:35,804 [main] DEBUG AssociationEndBuilder - Updated source type to GenDataSet +2024-09-08 15:11:35,804 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=581, uuid=cdcafc61-7ebc-397c-8f40-c6a7d59a7b76, since=null, name=DataSet, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataSet, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=582, uuid=61df83a8-7948-3eab-83fe-e100cb412dfc, since=null, name=FCDAMember, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3387, uuid={3ABF489F-5EB8-40e8-9A9E-3506943CEB22}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,804 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=581, uuid=cdcafc61-7ebc-397c-8f40-c6a7d59a7b76, since=null, name=DataSet, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataSet, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=582, uuid=61df83a8-7948-3eab-83fe-e100cb412dfc, since=null, name=FCDAMember, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3387, uuid={3ABF489F-5EB8-40e8-9A9E-3506943CEB22}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenDataSet +2024-09-08 15:11:35,804 [main] TRACE ClassBuilder - read from EA: GenericModel::GenDataSet +2024-09-08 15:11:35,804 [main] TRACE ClassBuilder - Class GenFCD (16 in package GenericModel) +2024-09-08 15:11:35,804 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenFCD, _objData=UmlObjectData [id=3334, uuid={B8189F42-4859-4645-8DB8-09B9081EF712}, since=null, name=FC, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1597, _eaTypeName=GenFC, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,805 [main] DEBUG AssociationEndBuilder - Updated source type to GenFCD +2024-09-08 15:11:35,805 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=586, uuid=4091962f-2a68-3a45-b148-a6600433babf, since=null, name=FCD, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenFCD, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=587, uuid=b6c8689e-5c4b-309d-9d9c-3575a5963f92, since=null, name=SubDataObject, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3385, uuid={7CDEE923-AC2B-4918-9C4B-19EDE68B3746}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,805 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=586, uuid=4091962f-2a68-3a45-b148-a6600433babf, since=null, name=FCD, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenFCD, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=587, uuid=b6c8689e-5c4b-309d-9d9c-3575a5963f92, since=null, name=SubDataObject, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3385, uuid={7CDEE923-AC2B-4918-9C4B-19EDE68B3746}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenFCD +2024-09-08 15:11:35,805 [main] DEBUG AssociationEndBuilder - Updated target type to GenFCD +2024-09-08 15:11:35,806 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=578, uuid=09587696-3043-308e-a75d-131ab811c497, since=null, name=DataSet, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataSet, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=579, uuid=475e6c6d-6978-3182-aded-86ac1f2bb2e1, since=null, name=FCDMember, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenFCD, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3386, uuid={D623819D-C786-49de-9F8E-98626B2B744B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenFCD +2024-09-08 15:11:35,806 [main] DEBUG AssociationEndBuilder - Updated source type to GenFCD +2024-09-08 15:11:35,806 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=572, uuid=bb00dad9-2c30-3ebc-b229-204a8ddb766a, since=null, name=FCD, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenFCD, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=573, uuid=49609e32-471e-3791-82a5-0a36afa7137d, since=null, name=DataObject, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataObject, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3389, uuid={78EB6F05-C9FD-4e65-85A2-6AF87F8A18C4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenFCD +2024-09-08 15:11:35,806 [main] TRACE ClassBuilder - read from EA: GenericModel::GenFCD +2024-09-08 15:11:35,806 [main] TRACE ClassBuilder - Class GenFCDA (17 in package GenericModel) +2024-09-08 15:11:35,808 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenFCDA, _objData=UmlObjectData [id=3335, uuid={EA599362-A0A3-4d27-A9F4-915F9082C9B6}, since=null, name=FC, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1597, _eaTypeName=GenFC, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,808 [main] DEBUG AssociationEndBuilder - Updated source type to GenFCDA +2024-09-08 15:11:35,808 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=592, uuid=bb9175b9-bb3f-3d15-aa6a-130c512891ca, since=null, name=FCDA, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenFCDA, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=593, uuid=e1ea2ad5-2229-3293-a9e5-50442f8c10a7, since=null, name=SubDataAttribute, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3384, uuid={0C3230CE-0D7F-4853-B330-F6792DD4AE2F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,809 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=592, uuid=bb9175b9-bb3f-3d15-aa6a-130c512891ca, since=null, name=FCDA, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenFCDA, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=593, uuid=e1ea2ad5-2229-3293-a9e5-50442f8c10a7, since=null, name=SubDataAttribute, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3384, uuid={0C3230CE-0D7F-4853-B330-F6792DD4AE2F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenFCDA +2024-09-08 15:11:35,809 [main] DEBUG AssociationEndBuilder - Updated target type to GenFCDA +2024-09-08 15:11:35,809 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=581, uuid=cdcafc61-7ebc-397c-8f40-c6a7d59a7b76, since=null, name=DataSet, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataSet, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=582, uuid=61df83a8-7948-3eab-83fe-e100cb412dfc, since=null, name=FCDAMember, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenFCDA, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3387, uuid={3ABF489F-5EB8-40e8-9A9E-3506943CEB22}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenFCDA +2024-09-08 15:11:35,809 [main] DEBUG AssociationEndBuilder - Updated source type to GenFCDA +2024-09-08 15:11:35,809 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=561, uuid=0283bad7-01c9-3c74-859a-bc73c4a20580, since=null, name=FCDA, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenFCDA, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=562, uuid=9bb47694-c8c9-3c6b-8e46-d36d39c9d9e9, since=null, name=DataAttribute, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataAttribute, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3391, uuid={F5615202-FD44-43cf-A5FB-ACEEE58CA690}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenFCDA +2024-09-08 15:11:35,809 [main] TRACE ClassBuilder - read from EA: GenericModel::GenFCDA +2024-09-08 15:11:35,809 [main] TRACE ClassBuilder - Class GenFile (18 in package GenericModel) +2024-09-08 15:11:35,809 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenFile, _objData=UmlObjectData [id=3336, uuid={4AD7728F-4A39-4b7e-AC32-D31BDA8E2033}, since=null, name=FileRef, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1616, _eaTypeName=GenVisString255, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,809 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenFile, _objData=UmlObjectData [id=3337, uuid={C372B3E2-9671-4ff3-A6DD-A2322FB8438C}, since=null, name=FileSize, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1602, _eaTypeName=GenINT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,810 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenFile, _objData=UmlObjectData [id=3338, uuid={9A695829-F4E7-45cd-AD65-90CA0669786C}, since=null, name=LastModified, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1614, _eaTypeName=GenTimeStamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,810 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2174, uuid={EFFCA8B9-4A53-4f9d-BD54-FD315EEF6AE0}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=GenFile, _otherEndName=?] +2024-09-08 15:11:35,810 [main] DEBUG AssociationEndBuilder - Updated target type to GenFile +2024-09-08 15:11:35,810 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=525, uuid=158bf549-2e71-324e-b38d-7e4cd827cb19, since=null, name=FileSystem, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=FileSystem, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=526, uuid=13a4997f-10e4-3d32-a1f5-52a90ed16321, since=null, name=Files, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenFile, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3399, uuid={207F6219-301F-4e30-BD21-E099498AD645}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenFile +2024-09-08 15:11:35,810 [main] TRACE ClassBuilder - read from EA: GenericModel::GenFile +2024-09-08 15:11:35,810 [main] TRACE ClassBuilder - Class GenIED (19 in package GenericModel) +2024-09-08 15:11:35,811 [main] DEBUG AssociationEndBuilder - Updated source type to GenIED +2024-09-08 15:11:35,811 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=518, uuid=80bbc98a-7b14-32ed-857c-7ea140eba257, since=null, name=IED, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenIED, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=519, uuid=af3ad1a5-482a-35af-9cc0-9d827b1e93ad, since=null, name=AP, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=AccessPoint, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3400, uuid={DAE49C76-967F-474e-89A1-F794712D37D6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenIED +2024-09-08 15:11:35,811 [main] TRACE ClassBuilder - read from EA: GenericModel::GenIED +2024-09-08 15:11:35,811 [main] TRACE ClassBuilder - Class GenINT32U (20 in package GenericModel) +2024-09-08 15:11:35,811 [main] TRACE ClassBuilder - read from EA: GenericModel::GenINT32U +2024-09-08 15:11:35,811 [main] TRACE ClassBuilder - Class GenLN0 (21 in package GenericModel) +2024-09-08 15:11:35,812 [main] DEBUG AssociationEndBuilder - Updated target type to GenLN0 +2024-09-08 15:11:35,812 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=604, uuid=0160b03b-f1e6-36c7-8c5a-aa3c5e9482d6, since=null, name=LogicalDevice, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=605, uuid=c02aa9e9-0ab9-3cc3-9be2-1d15dc5a673a, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenLN0, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3382, uuid={0FC17B94-D523-4606-865E-FC632787BE10}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,812 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=604, uuid=0160b03b-f1e6-36c7-8c5a-aa3c5e9482d6, since=null, name=LogicalDevice, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=605, uuid=c02aa9e9-0ab9-3cc3-9be2-1d15dc5a673a, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenLN0, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3382, uuid={0FC17B94-D523-4606-865E-FC632787BE10}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenLN0 +2024-09-08 15:11:35,812 [main] TRACE ClassBuilder - read from EA: GenericModel::GenLN0 +2024-09-08 15:11:35,812 [main] TRACE ClassBuilder - Class GenLogicalDevice (22 in package GenericModel) +2024-09-08 15:11:35,813 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenLogicalDevice, _objData=UmlObjectData [id=3339, uuid={132BB1C1-B4D8-4218-941F-B5A60919E81F}, since=null, name=LDName, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,813 [main] DEBUG AssociationEndBuilder - Updated target type to GenLogicalDevice +2024-09-08 15:11:35,813 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=609, uuid=14a2fde0-353c-3b36-88de-6a4a12389d88, since=null, name=Server, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=610, uuid=1b9bc6c2-ddf0-3ccb-b0a2-6df5ed81f74d, since=null, name=LogicalDevice, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenLogicalDevice, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3379, uuid={A9AFC9DC-AA63-41f8-8694-C834EE5ED8AA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,813 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=609, uuid=14a2fde0-353c-3b36-88de-6a4a12389d88, since=null, name=Server, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=610, uuid=1b9bc6c2-ddf0-3ccb-b0a2-6df5ed81f74d, since=null, name=LogicalDevice, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenLogicalDevice, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3379, uuid={A9AFC9DC-AA63-41f8-8694-C834EE5ED8AA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenLogicalDevice +2024-09-08 15:11:35,813 [main] DEBUG AssociationEndBuilder - Updated source type to GenLogicalDevice +2024-09-08 15:11:35,814 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=612, uuid=52746bb8-d69d-3ce4-8651-c0466dab2cd0, since=null, name=LogicalDevice, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenLogicalDevice, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=613, uuid=66414be7-d09b-3778-942c-f13f75da619e, since=null, name=LogicalNode, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3380, uuid={BCBEB4BD-C882-44ab-B862-54FB7A4BC7B4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,814 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=612, uuid=52746bb8-d69d-3ce4-8651-c0466dab2cd0, since=null, name=LogicalDevice, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenLogicalDevice, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=613, uuid=66414be7-d09b-3778-942c-f13f75da619e, since=null, name=LogicalNode, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3380, uuid={BCBEB4BD-C882-44ab-B862-54FB7A4BC7B4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenLogicalDevice +2024-09-08 15:11:35,814 [main] DEBUG AssociationEndBuilder - Updated source type to GenLogicalDevice +2024-09-08 15:11:35,814 [main] DEBUG AssociationEndBuilder - Updated target type to GenLogicalDevice +2024-09-08 15:11:35,814 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=615, uuid=cf75d479-60cd-3cbb-8f0a-f16929a62d5c, since=null, name=ParentLogicalDevice, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenLogicalDevice, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=616, uuid=0a44a3a7-32a3-381c-9ee0-165513bf642d, since=null, name=ChildLogicalDevice, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenLogicalDevice, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3381, uuid={9A42BA8C-41A7-484c-AB6D-5987B2592B5F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,814 [main] DEBUG AssociationEndBuilder - Updated source type to GenLogicalDevice +2024-09-08 15:11:35,814 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=604, uuid=0160b03b-f1e6-36c7-8c5a-aa3c5e9482d6, since=null, name=LogicalDevice, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenLogicalDevice, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=605, uuid=c02aa9e9-0ab9-3cc3-9be2-1d15dc5a673a, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenLN0, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3382, uuid={0FC17B94-D523-4606-865E-FC632787BE10}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenLogicalDevice +2024-09-08 15:11:35,814 [main] TRACE ClassBuilder - read from EA: GenericModel::GenLogicalDevice +2024-09-08 15:11:35,814 [main] TRACE ClassBuilder - Class GenLogicalNode (23 in package GenericModel) +2024-09-08 15:11:35,814 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenLogicalNode, _objData=UmlObjectData [id=3340, uuid={BE685D25-FF44-42ae-805A-D77E32E208B3}, since=null, name=LNName, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,814 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenLogicalNode, _objData=UmlObjectData [id=3341, uuid={7A4CFF68-F4E3-47f5-BD82-708786CBC6E8}, since=null, name=LNRef, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1607, _eaTypeName=GenObjRef, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,815 [main] DEBUG AssociationEndBuilder - Updated target type to GenLogicalNode +2024-09-08 15:11:35,815 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=612, uuid=52746bb8-d69d-3ce4-8651-c0466dab2cd0, since=null, name=LogicalDevice, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenLogicalDevice, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=613, uuid=66414be7-d09b-3778-942c-f13f75da619e, since=null, name=LogicalNode, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenLogicalNode, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3380, uuid={BCBEB4BD-C882-44ab-B862-54FB7A4BC7B4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenLogicalNode +2024-09-08 15:11:35,815 [main] DEBUG AssociationEndBuilder - Updated source type to GenLogicalNode +2024-09-08 15:11:35,815 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=569, uuid=96984ad5-0058-3f92-8de1-1b9d9abb7efd, since=null, name=LogicalNode, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenLogicalNode, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=570, uuid=29c429cd-a5a2-375a-bb2f-bcda005a00b6, since=null, name=DataObject, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenDataObject, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3388, uuid={E7750FB2-2AAD-43fb-B285-DB6600EAB0EB}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenLogicalNode +2024-09-08 15:11:35,815 [main] DEBUG ClassBuilder - Adding GenLogicalNode as superclass of GenLN0 +2024-09-08 15:11:35,815 [main] TRACE ClassBuilder - read from EA: GenericModel::GenLogicalNode +2024-09-08 15:11:35,815 [main] TRACE ClassBuilder - Class GenMCAA (24 in package GenericModel) +2024-09-08 15:11:35,815 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2179, uuid={77710498-12E5-4036-BCFB-EB971851FBAC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=GenMCAA, _otherEndName=?] +2024-09-08 15:11:35,816 [main] DEBUG AssociationEndBuilder - Updated target type to GenMCAA +2024-09-08 15:11:35,816 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=623, uuid=216d0e04-1ef6-38d2-87ae-f9e96b329ddc, since=null, name=Server, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=624, uuid=93c97c83-b766-3523-b4ce-c000ed12a196, since=null, name=MCAppAssociation, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenMCAA, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3378, uuid={B4BAE755-B235-470d-BF31-155B403538E7}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,816 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=623, uuid=216d0e04-1ef6-38d2-87ae-f9e96b329ddc, since=null, name=Server, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=624, uuid=93c97c83-b766-3523-b4ce-c000ed12a196, since=null, name=MCAppAssociation, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenMCAA, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3378, uuid={B4BAE755-B235-470d-BF31-155B403538E7}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenMCAA +2024-09-08 15:11:35,816 [main] TRACE ClassBuilder - read from EA: GenericModel::GenMCAA +2024-09-08 15:11:35,816 [main] TRACE ClassBuilder - Class GenObjRef (25 in package GenericModel) +2024-09-08 15:11:35,816 [main] TRACE ClassBuilder - read from EA: GenericModel::GenObjRef +2024-09-08 15:11:35,816 [main] TRACE ClassBuilder - Class GenObjectName (26 in package GenericModel) +2024-09-08 15:11:35,817 [main] TRACE ClassBuilder - read from EA: GenericModel::GenObjectName +2024-09-08 15:11:35,817 [main] TRACE ClassBuilder - Class GenServer (27 in package GenericModel) +2024-09-08 15:11:35,817 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2176, uuid={CC75E8C6-70B4-4b01-9024-1EFA47EB1834}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=GenServer, _otherEndName=?] +2024-09-08 15:11:35,817 [main] DEBUG AssociationEndBuilder - Updated target type to GenServer +2024-09-08 15:11:35,818 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=630, uuid=6b4d5eb0-2d7d-305e-8b76-851596229a82, since=null, name=SAP, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=631, uuid=67fdc058-4b48-36a8-a6ac-987f880b7c06, since=null, name=Server, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenServer, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3376, uuid={41FFDF61-37BF-42f1-9E81-E1CB9B834F84}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,818 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=630, uuid=6b4d5eb0-2d7d-305e-8b76-851596229a82, since=null, name=SAP, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=631, uuid=67fdc058-4b48-36a8-a6ac-987f880b7c06, since=null, name=Server, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenServer, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3376, uuid={41FFDF61-37BF-42f1-9E81-E1CB9B834F84}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenServer +2024-09-08 15:11:35,818 [main] DEBUG AssociationEndBuilder - Updated source type to GenServer +2024-09-08 15:11:35,818 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=633, uuid=dd430889-064a-36b2-8756-9b8b51ddef50, since=null, name=Server, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenServer, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=634, uuid=c1acc12f-5221-3984-89ca-8fa76e33b410, since=null, name=TPAppAssociation, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3377, uuid={60020B56-90A7-4deb-9086-9463678D6B57}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,818 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=633, uuid=dd430889-064a-36b2-8756-9b8b51ddef50, since=null, name=Server, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenServer, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=634, uuid=c1acc12f-5221-3984-89ca-8fa76e33b410, since=null, name=TPAppAssociation, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3377, uuid={60020B56-90A7-4deb-9086-9463678D6B57}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenServer +2024-09-08 15:11:35,818 [main] DEBUG AssociationEndBuilder - Updated source type to GenServer +2024-09-08 15:11:35,818 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=623, uuid=216d0e04-1ef6-38d2-87ae-f9e96b329ddc, since=null, name=Server, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenServer, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=624, uuid=93c97c83-b766-3523-b4ce-c000ed12a196, since=null, name=MCAppAssociation, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenMCAA, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3378, uuid={B4BAE755-B235-470d-BF31-155B403538E7}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenServer +2024-09-08 15:11:35,818 [main] DEBUG AssociationEndBuilder - Updated source type to GenServer +2024-09-08 15:11:35,818 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=609, uuid=14a2fde0-353c-3b36-88de-6a4a12389d88, since=null, name=Server, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenServer, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=610, uuid=1b9bc6c2-ddf0-3ccb-b0a2-6df5ed81f74d, since=null, name=LogicalDevice, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenLogicalDevice, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3379, uuid={A9AFC9DC-AA63-41f8-8694-C834EE5ED8AA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenServer +2024-09-08 15:11:35,818 [main] DEBUG AssociationEndBuilder - Updated source type to GenServer +2024-09-08 15:11:35,818 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=522, uuid=5c265ff5-ecbc-320f-84a3-73adfc3724de, since=null, name=Server, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenServer, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=523, uuid=ac3325c9-54ef-30e7-a39e-24d3911757c6, since=null, name=FileSystem, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=FileSystem, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3398, uuid={5982398B-EDCC-45cd-A1AA-C9F8D62D2A4A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::GenServer +2024-09-08 15:11:35,818 [main] TRACE ClassBuilder - read from EA: GenericModel::GenServer +2024-09-08 15:11:35,819 [main] TRACE ClassBuilder - Class GenSubDataAttribute (28 in package GenericModel) +2024-09-08 15:11:35,819 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenSubDataAttribute, _objData=UmlObjectData [id=3342, uuid={AB7D51A9-8986-4bfc-8BA6-4836DC8814DE}, since=null, name=SubDAName, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,819 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenSubDataAttribute, _objData=UmlObjectData [id=3343, uuid={94A40232-E6EE-4682-B41D-2FCF1207E36B}, since=null, name=SubDARef, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1607, _eaTypeName=GenObjRef, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,819 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenSubDataAttribute, _objData=UmlObjectData [id=3344, uuid={227F3C1B-21E7-46e7-92B5-A36942028DC0}, since=null, name=FC, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1597, _eaTypeName=GenFC, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,819 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenSubDataAttribute, _objData=UmlObjectData [id=3345, uuid={AB4449FC-BDC1-43fe-9AA0-B699FD684B7F}, since=null, name=Presence, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1609, _eaTypeName=GenPresenceConditions, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,819 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenSubDataAttribute, _objData=UmlObjectData [id=3346, uuid={F3DE8E30-A6D7-41b5-B2B6-B3006D7AEBCC}, since=null, name=Index, alias=, stereotype=, visibility=public, txtDescription='Index of this sub-data attribute in case it is member of an array.', htmlDescription='

Index of this sub-data attribute in case it is member of an array.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1602, _eaTypeName=GenINT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,820 [main] DEBUG AssociationEndBuilder - Updated target type to GenSubDataAttribute +2024-09-08 15:11:35,820 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=592, uuid=bb9175b9-bb3f-3d15-aa6a-130c512891ca, since=null, name=FCDA, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenFCDA, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=593, uuid=e1ea2ad5-2229-3293-a9e5-50442f8c10a7, since=null, name=SubDataAttribute, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenSubDataAttribute, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3384, uuid={0C3230CE-0D7F-4853-B330-F6792DD4AE2F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenSubDataAttribute +2024-09-08 15:11:35,820 [main] DEBUG AssociationEndBuilder - Updated target type to GenSubDataAttribute +2024-09-08 15:11:35,820 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=549, uuid=8da8b7fc-8347-3c95-b7ef-6ec97c09bb62, since=null, name=DataAttribute, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenConstructedType, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=550, uuid=88c87443-8ee9-3acb-8e3a-15b428a73cb3, since=null, name=SubDataAttribute, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenSubDataAttribute, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3395, uuid={4953EDB6-E8A3-44b8-BA29-DD3366F6B3F1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenSubDataAttribute +2024-09-08 15:11:35,820 [main] DEBUG ClassBuilder - Updated source of class dependency DependencyBuilder [_kind=CLASS, qName = GenericModel::GenSubDataAttribute->GenericModel::GenConstructedType, _objData=UmlObjectData [id=3373, uuid={C583C2FA-340A-40e7-B9E0-E3B2C0F214E4}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,820 [main] DEBUG ClassBuilder - Updated source of class dependency DependencyBuilder [_kind=CLASS, qName = GenericModel::GenSubDataAttribute->GenericModel::GenCompactType, _objData=UmlObjectData [id=3374, uuid={8BEF7BE6-3453-4f7b-B1A4-1A0F6CD943B2}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,820 [main] DEBUG ClassBuilder - Updated source of class dependency DependencyBuilder [_kind=CLASS, qName = GenericModel::GenSubDataAttribute->GenericModel::GenAtomicType, _objData=UmlObjectData [id=3375, uuid={7804C7F3-3958-4464-9E4D-6125308CB9FF}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,820 [main] TRACE ClassBuilder - read from EA: GenericModel::GenSubDataAttribute +2024-09-08 15:11:35,820 [main] TRACE ClassBuilder - Class GenSubDataObject (29 in package GenericModel) +2024-09-08 15:11:35,820 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenSubDataObject, _objData=UmlObjectData [id=3347, uuid={5336B078-D51A-4310-BFC9-7B4828112B1D}, since=null, name=SDOName, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,820 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenSubDataObject, _objData=UmlObjectData [id=3348, uuid={7314D9C2-528D-4907-A459-ECDA44ADE0E0}, since=null, name=SDORef, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1607, _eaTypeName=GenObjRef, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,820 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenSubDataObject, _objData=UmlObjectData [id=3349, uuid={C1410F0D-BF9E-4f1d-B38F-884B17F8F161}, since=null, name=Presence, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1609, _eaTypeName=GenPresenceConditions, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,821 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenSubDataObject, _objData=UmlObjectData [id=3350, uuid={4276E214-E0D7-476f-BAA6-ED3DF54ABF91}, since=null, name=Index, alias=, stereotype=, visibility=public, txtDescription='Index of this sub data object in case it is member of an array.', htmlDescription='

Index of this sub data object in case it is member of an array.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1602, _eaTypeName=GenINT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,821 [main] DEBUG AssociationEndBuilder - Updated target type to GenSubDataObject +2024-09-08 15:11:35,821 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=586, uuid=4091962f-2a68-3a45-b148-a6600433babf, since=null, name=FCD, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenFCD, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=587, uuid=b6c8689e-5c4b-309d-9d9c-3575a5963f92, since=null, name=SubDataObject, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenSubDataObject, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3385, uuid={7CDEE923-AC2B-4918-9C4B-19EDE68B3746}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenSubDataObject +2024-09-08 15:11:35,821 [main] DEBUG AssociationEndBuilder - Updated target type to GenSubDataObject +2024-09-08 15:11:35,821 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=538, uuid=720b4f72-8ffd-31c3-aae1-0bf72487de2b, since=null, name=CommonDataClass, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenCommonDataClass, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=539, uuid=3225b7f5-1129-3f07-a8a8-f676c210cb89, since=null, name=SubDataObject, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenSubDataObject, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3397, uuid={4B987438-5F99-4fad-895C-8F6087C8705B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenSubDataObject +2024-09-08 15:11:35,821 [main] DEBUG ClassBuilder - Updated source of class dependency DependencyBuilder [_kind=CLASS, qName = GenericModel::GenSubDataObject->GenericModel::GenCommonDataClass, _objData=UmlObjectData [id=3372, uuid={959E91AF-330B-466d-9B20-63A1C6A648DF}, since=null, name=, alias=, stereotype=typeOf, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,821 [main] TRACE ClassBuilder - read from EA: GenericModel::GenSubDataObject +2024-09-08 15:11:35,821 [main] TRACE ClassBuilder - Class GenTPAA (30 in package GenericModel) +2024-09-08 15:11:35,821 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=GenericModel::GenTPAA, _objData=UmlObjectData [id=3351, uuid={24BE7E13-5125-43e0-9D7F-1F75F29C6A19}, since=null, name=AssociationId, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1588, _eaTypeName=GenAssociationID, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,822 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2178, uuid={D4EC38C0-71B1-494a-AED1-A5DCF0AC5CAB}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=GenTPAA, _otherEndName=?] +2024-09-08 15:11:35,822 [main] DEBUG AssociationEndBuilder - Updated target type to GenTPAA +2024-09-08 15:11:35,822 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=633, uuid=dd430889-064a-36b2-8756-9b8b51ddef50, since=null, name=Server, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenServer, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=634, uuid=c1acc12f-5221-3984-89ca-8fa76e33b410, since=null, name=TPAppAssociation, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenTPAA, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3377, uuid={60020B56-90A7-4deb-9086-9463678D6B57}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to GenericModel::GenTPAA +2024-09-08 15:11:35,822 [main] TRACE ClassBuilder - read from EA: GenericModel::GenTPAA +2024-09-08 15:11:35,822 [main] TRACE ClassBuilder - Class GenTriggerConditions (31 in package GenericModel) +2024-09-08 15:11:35,822 [main] TRACE ClassBuilder - read from EA: GenericModel::GenTriggerConditions +2024-09-08 15:11:35,822 [main] TRACE ClassBuilder - Class GenVisString255 (32 in package GenericModel) +2024-09-08 15:11:35,823 [main] TRACE ClassBuilder - read from EA: GenericModel::GenVisString255 +2024-09-08 15:11:35,823 [main] TRACE ClassBuilder - Class ServiceAccessPoint (33 in package GenericModel) +2024-09-08 15:11:35,823 [main] DEBUG AssociationEndBuilder - Updated source type to ServiceAccessPoint +2024-09-08 15:11:35,823 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=630, uuid=6b4d5eb0-2d7d-305e-8b76-851596229a82, since=null, name=SAP, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=ServiceAccessPoint, _multiplicity=[1..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=631, uuid=67fdc058-4b48-36a8-a6ac-987f880b7c06, since=null, name=Server, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=GenServer, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3376, uuid={41FFDF61-37BF-42f1-9E81-E1CB9B834F84}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to GenericModel::ServiceAccessPoint +2024-09-08 15:11:35,823 [main] DEBUG ClassBuilder - Adding ServiceAccessPoint as subclass of AccessPoint +2024-09-08 15:11:35,823 [main] TRACE ClassBuilder - read from EA: GenericModel::ServiceAccessPoint +2024-09-08 15:11:35,823 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=NewIEC61850_7_2, _depth=2, _eaElementID=1572, _objData=UmlObjectData [id=87, uuid={40C1B298-2113-4638-AEA1-473E2A94C689}, since=null, name=GenericModel, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=58, _selfDependent=false, 16_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1573, uuid={E96EFCB6-7CB3-4a02-B716-C76F98A92BF8}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='All from 6.2 CommonACSI types, except for ARRAY and the 3 moved to atomic. +Stereotype: <>', htmlDescription='

All from 6.2 CommonACSI types, except for ARRAY and the 3 moved to atomic.

Stereotype: <<compact>>

'], _containingPackage=GenericModel, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1574, uuid={E36DC6AA-4511-4f84-A9DD-E9B6D5994E58}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Agreement to rename some primitive types in 7-2, to align with SCL names, as follows: +- use actual 7-2 name as alias in UML class (printed as title) +- use SCL type name as class name', htmlDescription='

Agreement to rename some primitive types in 7-2, to align with SCL names, as follows:

- use actual 7-2 name as alias in UML class (printed as title)

- use SCL type name as class name

'], _containingPackage=GenericModel, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1575, uuid={D47037FC-BEA0-47eb-B37B-6E74F8B3D551}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Note: Review classification after addressing 7-2 core type system. +GenBaseType is meant to be used for "pure" primitives, GenCommonACSIType is for all the others.', htmlDescription='

Note: Review classification after addressing 7-2 core type system.

GenBaseType is meant to be used for "pure" primitives, GenCommonACSIType is for all the others.

'], _containingPackage=GenericModel, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1576, uuid={BCAC7CCF-A942-48a4-B258-771D38A021F9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: We'll need to move PresenceConditions from 7-3 into 7-2, to use them in 7-2 as well.', htmlDescription='

TODO: We'll need to move PresenceConditions from 7-3 into 7-2, to use them in 7-2 as well.

'], _containingPackage=GenericModel, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1577, uuid={A60B825D-7A9A-494d-BA42-33219F1893C4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Change "FileName" with "FileRef" wherever it appears. +Do not include FileDirectory.', htmlDescription='

TODO: Change "FileName" with "FileRef" wherever it appears.

Do not include FileDirectory.

'], _containingPackage=GenericModel, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1578, uuid={8528A6C3-CA81-4578-B54F-7A7DE355C9F9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- Andre to see how to express: At least one of FCDMember or FCDAMember. +- Tanja to add DSRef as ObjectReference, similar to existing meta-model. +- Tanja to trace associations similar to existing meta-model, they're ok.', htmlDescription='

TODO:

  • Andre to see how to express: At least one of FCDMember or FCDAMember.
  • Tanja to add DSRef as ObjectReference, similar to existing meta-model.
  • Tanja to trace associations similar to existing meta-model, they're ok.
'], _containingPackage=GenericModel, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1579, uuid={7C7CE85D-2B99-46ed-82E5-2B2F36BDB3B6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Decision: Start with packages that will reflect Clause 6 through Clause 23 (Files).', htmlDescription='

Decision: Start with packages that will reflect Clause 6 through Clause 23 (Files).

'], _containingPackage=GenericModel, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1580, uuid={65AFCFF7-8512-4e11-BCFA-DBF2FD664BE5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Deal with GenClient.', htmlDescription='

TODO: Deal with GenClient.

'], _containingPackage=GenericModel, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1581, uuid={578E5DF8-ED23-4bfe-9A4C-626AA2F125CE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='All from 6.1 Basic types + ObjectReference, ObjectName and ServiceError. +Plus other non-packed/coded types. +Steretypes: <>, <>, <>', htmlDescription='

All from 6.1 Basic types + ObjectReference, ObjectName and ServiceError.

Plus other non-packed/coded types.

Steretypes: <<atomic>>, <<enumeration>>, <<enumeration,coded>>

'], _containingPackage=GenericModel, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1582, uuid={574B78D4-385A-44c8-9038-ACC8AA6D4343}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- Ensure RCB.DatSet etc. are reflected as assoc. end names in the generic model. +OPEN QUESTION: +- Case of RCB.DatSet that should be of type ObjectReference, but in the generic model it is linked to DataSet.', htmlDescription='

TODO:

  • Ensure RCB.DatSet etc. are reflected as assoc. end names in the generic model.

OPEN QUESTION:

  • Case of RCB.DatSet that should be of type ObjectReference, but in the generic model it is linked to DataSet.
'], _containingPackage=GenericModel, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1583, uuid={3E98F8C3-5801-4840-9C6D-489098AD95CC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: We've added "Gen" to types where we already have an existing one - to make it less error-prone to refactor. E.g., GenFCD will in the end be called FCD.', htmlDescription='

Modelling note: We've added "Gen" to types where we already have an existing one - to make it less error-prone to refactor. E.g., GenFCD will in the end be called FCD.

'], _containingPackage=GenericModel, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1584, uuid={3D07741F-191D-47a1-8F4D-01CADA1023F3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- Tanja to add GenAuthenticationParameter type (similar to Authentication in meta-model).', htmlDescription='

TODO:

  • Tanja to add GenAuthenticationParameter type (similar to Authentication in meta-model).
'], _containingPackage=GenericModel, _otherEndName=], SkippedBuilder [, _kind=OTHER, _isConnector=false, _objData=UmlObjectData [id=1618, uuid={1DA81ADB-7526-4988-B94A-615589F034CF}, since=null, name=, alias=, stereotype=invariant, visibility=public, txtDescription='xor', htmlDescription='

xor

'], _containingPackage=GenericModel, _otherEndName=], SkippedBuilder [, _kind=OTHER, _isConnector=false, _objData=UmlObjectData [id=1619, uuid={46AE4BB9-5995-47bf-B7A2-3500BDA63832}, since=null, name=, alias=, stereotype=invariant, visibility=public, txtDescription='xor', htmlDescription='

xor

'], _containingPackage=GenericModel, _otherEndName=], SkippedBuilder [, _kind=OTHER, _isConnector=false, _objData=UmlObjectData [id=1620, uuid={5D9BD1EA-00B1-4644-A7F4-6F0FA14A9F8B}, since=null, name=, alias=, stereotype=invariant, visibility=public, txtDescription='xor', htmlDescription='

xor

'], _containingPackage=GenericModel, _otherEndName=], SkippedBuilder [, _kind=OTHER, _isConnector=false, _objData=UmlObjectData [id=1621, uuid={A15F46E8-FDE8-40f1-8D27-9BF33615BDA5}, since=null, name=, alias=, stereotype=invariant, visibility=public, txtDescription='xor', htmlDescription='

xor

'], _containingPackage=GenericModel, _otherEndName=]], 2_diagrams=[DiagramBuilder [_containingPackage=GenericModel, _objData=UmlObjectData [id=190, uuid={741656D9-DFE5-45fb-A169-AC974992B5BE}, since=null, name=GenericModel, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL], DiagramBuilder [_containingPackage=GenericModel, _objData=UmlObjectData [id=191, uuid={2A0F8CC2-20D8-47e7-AA5D-1CEE6D0192D2}, since=null, name=GenericModelTypes, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _classes=33 +2024-09-08 15:11:35,824 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=WG10, _depth=1, _eaElementID=1571, _objData=UmlObjectData [id=86, uuid={10D446D7-D0E6-4c6d-801D-81468949F8F8}, since=null, name=NewIEC61850_7_2, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=NewIEC61850_7_2, _objData=UmlObjectData [id=189, uuid={FDB3BD59-D66E-4646-A4E7-B08D4F787BFD}, since=null, name=NewIEC61850_7_2, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=PACKAGE]], _childPackages=1] +2024-09-08 15:11:35,824 [main] INFO PackageBuilder - processing package IEC61850_7_2 (2) ... +2024-09-08 15:11:35,824 [main] ERROR EaTables - [+++ EA ordering problem for 2 diagram(s) in IEC61850_7_2 (manually move back/forth a diagram to initiate EA internal ordering update!): +, +++ diagram IEC61850_7_2: pos = 0 +, +++ diagram IEC61850_7_2ModellingNotes: pos = 0 DUPLICATE +] +2024-09-08 15:11:35,824 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=IEC61850_7_2, _objData=UmlObjectData [id=192, uuid={90AA6E54-26D6-43d4-94A7-5F7B4B772910}, since=null, name=IEC61850_7_2, alias=, stereotype=, visibility=public, txtDescription='Overview of packages and their dependencies. +Dependencies among sub-packages are not shown on this diagram.', htmlDescription='

Overview of packages and their dependencies.

Dependencies among sub-packages are not shown on this diagram.

'], _portrait=true, _kind=PACKAGE] +2024-09-08 15:11:35,825 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=IEC61850_7_2, _objData=UmlObjectData [id=193, uuid={4F40E7C3-3463-44fe-85FB-8E5B2084B8A6}, since=null, name=IEC61850_7_2ModellingNotes, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:35,825 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->WG10::IEC61850_7_2, _objData=UmlObjectData [id=2896, uuid={601FCB98-A23F-4bb9-9093-C5EB70806F8B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,825 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->WG10::IEC61850_7_2, _objData=UmlObjectData [id=3104, uuid={3AE23F98-46A7-4956-8947-FA3AD8CE26AC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,826 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1623, uuid={EABD0CB1-194A-4ad7-A014-C0F4FF33A957}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- With tracking CDCs in Part 7-2, we have circular dependency with Part 7-3! (not shown here). Proposed to move these into Part 7-3.', htmlDescription='

TODO:

  • With tracking CDCs in Part 7-2, we have circular dependency with Part 7-3! (not shown here). Proposed to move these into Part 7-3.
'], _containingPackage=IEC61850_7_2, _otherEndName=] +2024-09-08 15:11:35,827 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1624, uuid={70D0C33E-CC65-47c7-9DD8-B1A5DB8EEB7B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Arrange the diagram when we settlle on modelling.', htmlDescription='

TODO: Arrange the diagram when we settlle on modelling.

'], _containingPackage=IEC61850_7_2, _otherEndName=] +2024-09-08 15:11:35,828 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1625, uuid={5D73B6B5-C29B-4bc3-842B-49DA8C366102}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='NOT UPDATED YET! + +How to read this model? +Automatically generated documentation prints the packages and their contents in the order they are defined in the model. And in the model, we took a bottom-up approach, i.e., starting from least-dependent packages and going up to most dependent packages: +- if you need an overview, look first into the packages that depend on others +- if you want the description of items before their first usage, look into the packages upon which the others depend. +Dependencies have been manually drawn (the tool does not do it by itself). +API (operations) conventions: +Packages CoreTypes, CoreEnums and AcsiType contain classes with data only, while AcsiTypes, MetaModel and CoreAcsi have classes (and interfaces) with operations, as well. Conventions for operations are as follows: +- Null argument in operations is by default not allowed, unless specified otherwise. +- When return value is a collection, and it has "nothing" to return, a non-null empty collection must be returned. +UML: +- In the diagrams, the black diamond on associations is on the side of a container, and its implicit multiplicity, as defined by UML, is [0..1], i.e., the contained class may belong to one or no container. For the sake or readability, we do not show the multiplicity on the container side. +- On the side of contained object, mandatory association ([1] or [1..*]) is considered as mandatory once the model is initialised. In other words, while building the model, it is possible to violate this constraint, but the valid completely built model must respect the given cardinalities. +- In the API (AcsiTypes, MetaModel, CoreAcsi), we define only methods that describe the required interface; definition of attributes (and names of association ends) is left to the implementation. +Design rationale: +We have on purpose kept services in CoreAcsi (API) separate from the MetaModel, because: +- CoreAcsi API is meant to be used for communication with a live device. +- CoreAcsi API models communication services, which are not object-oriented with respect to the domain model, as they deal with object references (strings), not with objects themselves (e.g., control blocks). However, the API itself is object oriented. +- CoreAcsi API reflects relatively closely what is specified in Part 7-2, Ed. 1, so those who know Part 7-2 and would like to use the API can easily find their way through the API. If this API is meant to be part of the standard, most of services should be renamed (to have less clumsy names). +- CoreAcsi API can be used without any configuration (SCL), to connect and communicate with the live device. It can be thus useful for simple browsing applications. +In contrast to this: +- MetaModel need not be used with a live device - it can be instantiated from SCL and used for different off-line applications. +- MetaModel is object-oriented - it deals with objects (e.g., control blocks) and as part of the interface provides navigation and object reference information. +- MetaModel enhances what is specified in Part 7-2, Ed. 1 and provides a strict definition of concepts developed in Parts 7-3 and 7-4, which is the must for software or data store designs. +- MetaModel can be used with a live device, as well, provided there is an intermediate implementation layer (not shown here) that will take care of using CoreAcsi API or even a direct MMS access. In that case, the semantics of the methods that influence behaviour on the CoreAcsi API level may not be the same as desired by a particular application using MetaModel (e.g., multiple clients/servers, who "owns" what, invalid names, etc.). Therefore, the MetaModel contains only the necessary minimum of methods (connecting to the server, naming and navigation), and different applications have to extend it for their needs (e.g., control block attributes). +Many useful applications can be developed with just this package, without using details of common data classes and logical nodes, while these latter will enable more advanced ones (as they provide for the semantics of data).', htmlDescription='

NOT UPDATED YET!

How to read this model?

Automatically generated documentation prints the packages and their contents in the order they are defined in the model. And in the model, we took a bottom-up approach, i.e., starting from least-dependent packages and going up to most dependent packages:

  • if you need an overview, look first into the packages that depend on others
  • if you want the description of items before their first usage, look into the packages upon which the others depend.

Dependencies have been manually drawn (the tool does not do it by itself).

API (operations) conventions:

Packages CoreTypes, CoreEnums and AcsiType contain classes with data only, while AcsiTypes, MetaModel and CoreAcsi have classes (and interfaces) with operations, as well. Conventions for operations are as follows:

  • Null argument in operations is by default not allowed, unless specified otherwise.
  • When return value is a collection, and it has "nothing" to return, a non-null empty collection must be returned.

UML:

  • In the diagrams, the black diamond on associations is on the side of a container, and its implicit multiplicity, as defined by UML, is [0..1], i.e., the contained class may belong to one or no container. For the sake or readability, we do not show the multiplicity on the container side.
  • On the side of contained object, mandatory association ([1] or [1..*]) is considered as mandatory once the model is initialised. In other words, while building the model, it is possible to violate this constraint, but the valid completely built model must respect the given cardinalities.
  • In the API (AcsiTypes, MetaModel, CoreAcsi), we define only methods that describe the required interface; definition of attributes (and names of association ends) is left to the implementation.

Design rationale:

We have on purpose kept services in CoreAcsi (API) separate from the MetaModel, because:

  • CoreAcsi API is meant to be used for communication with a live device.
  • CoreAcsi API models communication services, which are not object-oriented with respect to the domain model, as they deal with object references (strings), not with objects themselves (e.g., control blocks). However, the API itself is object oriented.
  • CoreAcsi API reflects relatively closely what is specified in Part 7-2, Ed. 1, so those who know Part 7-2 and would like to use the API can easily find their way through the API. If this API is meant to be part of the standard, most of services should be renamed (to have less clumsy names).
  • CoreAcsi API can be used without any configuration (SCL), to connect and communicate with the live device. It can be thus useful for simple browsing applications.

In contrast to this:

  • MetaModel need not be used with a live device - it can be instantiated from SCL and used for different off-line applications.
  • MetaModel is object-oriented - it deals with objects (e.g., control blocks) and as part of the interface provides navigation and object reference information.
  • MetaModel enhances what is specified in Part 7-2, Ed. 1 and provides a strict definition of concepts developed in Parts 7-3 and 7-4, which is the must for software or data store designs.
  • MetaModel can be used with a live device, as well, provided there is an intermediate implementation layer (not shown here) that will take care of using CoreAcsi API or even a direct MMS access. In that case, the semantics of the methods that influence behaviour on the CoreAcsi API level may not be the same as desired by a particular application using MetaModel (e.g., multiple clients/servers, who "owns" what, invalid names, etc.). Therefore, the MetaModel contains only the necessary minimum of methods (connecting to the server, naming and navigation), and different applications have to extend it for their needs (e.g., control block attributes).

Many useful applications can be developed with just this package, without using details of common data classes and logical nodes, while these latter will enable more advanced ones (as they provide for the semantics of data).

'], _containingPackage=IEC61850_7_2, _otherEndName=] +2024-09-08 15:11:35,829 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1627, uuid={15563EAD-20D1-4edb-BCBF-F3184AF0B515}, since=null, name=IEC61850_7_2 : IEC61850_7_2ModellingNotes, alias=, stereotype=, visibility=public, txtDescription='IEC61850_7_2 : IEC61850_7_2ModellingNotes', htmlDescription='

IEC61850_7_2 : IEC61850_7_2ModellingNotes

'], _containingPackage=IEC61850_7_2, _otherEndName=] +2024-09-08 15:11:35,829 [main] TRACE ClassBuilder - Class IEC61850_7_2Namespace (0 in package IEC61850_7_2) +2024-09-08 15:11:35,829 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61850_7_2::IEC61850_7_2Namespace, _objData=UmlObjectData [id=6701, uuid={312B16B6-CA4B-4093-AD7C-DC9FB8F7CFA0}, since=null, name=name, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=IEC61850-7-2:2007, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,830 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61850_7_2::IEC61850_7_2Namespace, _objData=UmlObjectData [id=3305, uuid={A72EC82F-45EC-45d4-B1A5-81F7A8E24B64}, since=null, name=id, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=IEC61850-7-2, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,830 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61850_7_2::IEC61850_7_2Namespace, _objData=UmlObjectData [id=3306, uuid={78825892-2BE3-4fff-9A89-CA4556B98A10}, since=null, name=version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2007, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,830 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61850_7_2::IEC61850_7_2Namespace, _objData=UmlObjectData [id=3307, uuid={9318F048-1784-4c0c-99F8-5907A8A9FC72}, since=null, name=revision, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,830 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61850_7_2::IEC61850_7_2Namespace, _objData=UmlObjectData [id=3308, uuid={3E48ED76-846C-4664-BEFE-64F6FC7262BE}, since=null, name=date, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2011-08-01, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,830 [main] TRACE ClassBuilder - read from EA: IEC61850_7_2::IEC61850_7_2Namespace +2024-09-08 15:11:35,830 [main] INFO PackageBuilder - processing package FunctionalConstraints (2) ... +2024-09-08 15:11:35,831 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=FunctionalConstraints, _objData=UmlObjectData [id=195, uuid={A27A2F0C-3508-49d0-BE2E-DCD85EACEC54}, since=null, name=FunctionalConstraints, alias=, stereotype=, visibility=public, txtDescription='This diagram shows functional constraints.', htmlDescription='

This diagram shows functional constraints.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:35,831 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::FunctionalConstraints, _objData=UmlObjectData [id=3175, uuid={24606FEA-EE8B-41c7-B098-E006E81B3F44}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,832 [main] TRACE ClassBuilder - Class FcKind (22 in package FunctionalConstraints) +2024-09-08 15:11:35,832 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FunctionalConstraints::FcKind, _objData=UmlObjectData [id=3356, uuid={745EF837-06B1-4ffb-8713-FF2924758753}, since=null, name=ST, alias=Status information, stereotype=enum, visibility=public, txtDescription='DataAttribute shall represent status information whose value may be read, substituted, reported, and logged but shall not be writeable. +Initial value shall be taken from the process. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- if member of dataset, may be contained in the Report, GOOSEMessage and SVMessage.', htmlDescription='

DataAttribute shall represent status information whose value may be read, substituted, reported, and logged but shall not be writeable.

Initial value shall be taken from the process.

Modelling note: Applicable ACSI services:

  • AcsiCDC.getDataValues()
  • AcsiCDC.getDataDefinition()
  • AcsiCDC.getDataDirectory()
  • AcsiDS.getDataSetValues()
  • if member of dataset, may be contained in the Report, GOOSEMessage and SVMessage.
'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,833 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FunctionalConstraints::FcKind, _objData=UmlObjectData [id=3357, uuid={B4588BCF-2CAE-4204-9971-58128FCC1138}, since=null, name=MX, alias=Measurands (analogue values), stereotype=enum, visibility=public, txtDescription='DataAttribute shall represent measurand information whose value may be read, substituted, reported, and logged but shall not be writeable. +Initial value shall be taken from the process. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- if member of dataset, may be contained in the Report, GOOSEMessage and SVMessage.', htmlDescription='

DataAttribute shall represent measurand information whose value may be read, substituted, reported, and logged but shall not be writeable.

Initial value shall be taken from the process.

Modelling note: Applicable ACSI services:

  • AcsiCDC.getDataValues()
  • AcsiCDC.getDataDefinition()
  • AcsiCDC.getDataDirectory()
  • AcsiDS.getDataSetValues()
  • if member of dataset, may be contained in the Report, GOOSEMessage and SVMessage.
'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,833 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FunctionalConstraints::FcKind, _objData=UmlObjectData [id=3358, uuid={BB95C791-97E6-442c-B5EB-F0BD68C29E7F}, since=null, name=SP, alias=Setting (outside setting group), stereotype=enum, visibility=public, txtDescription='DataAttribute shall represent setting parameter information whose value is read and may be written. Changes of values shall become effective immediately, and may be reported. +Initial value shall be as configured; value shall be non-volatile. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.setDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- if member of dataset, may be contained in the Report, GOOSEMessage.', htmlDescription='

DataAttribute shall represent setting parameter information whose value is read and may be written. Changes of values shall become effective immediately, and may be reported.

Initial value shall be as configured; value shall be non-volatile.

Modelling note: Applicable ACSI services:

  • AcsiCDC.getDataValues()
  • AcsiCDC.setDataValues()
  • AcsiCDC.getDataDefinition()
  • AcsiCDC.getDataDirectory()
  • AcsiDS.getDataSetValues()
  • if member of dataset, may be contained in the Report, GOOSEMessage.
'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,833 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FunctionalConstraints::FcKind, _objData=UmlObjectData [id=3359, uuid={89A38396-2A3C-4c7e-B4D9-2DF5C1244B91}, since=null, name=SV, alias=Substitution, stereotype=enum, visibility=public, txtDescription='DataAttribute shall represent substitution information whose value may be written to substitute the value attribute and read. A value change may be reported. +If the value is volatile then the initial value shall be false, otherwise the value should be as set or configured. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.setDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- AcsiDS.setDataSetValues() +- if member of dataset, may be contained in the Report.', htmlDescription='

DataAttribute shall represent substitution information whose value may be written to substitute the value attribute and read. A value change may be reported.

If the value is volatile then the initial value shall be false, otherwise the value should be as set or configured.

Modelling note: Applicable ACSI services:

  • AcsiCDC.getDataValues()
  • AcsiCDC.setDataValues()
  • AcsiCDC.getDataDefinition()
  • AcsiCDC.getDataDirectory()
  • AcsiDS.getDataSetValues()
  • AcsiDS.setDataSetValues()
  • if member of dataset, may be contained in the Report.
'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,834 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FunctionalConstraints::FcKind, _objData=UmlObjectData [id=3360, uuid={672C8541-F9B3-4f36-B180-158B53453964}, since=null, name=CF, alias=Configuration, stereotype=enum, visibility=public, txtDescription='DataAttribute shall represent configuration information whose value may be written and read. Values written may become effective immediately or deferred by reasons outside the scope of this standard. Value changes may be reported. +Initial value shall be as configured; value shall be non-volatile. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.setDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- AcsiDS.setDataSetValues() +- if member of dataset, may be contained in the Report.', htmlDescription='

DataAttribute shall represent configuration information whose value may be written and read. Values written may become effective immediately or deferred by reasons outside the scope of this standard. Value changes may be reported.

Initial value shall be as configured; value shall be non-volatile.

Modelling note: Applicable ACSI services:

  • AcsiCDC.getDataValues()
  • AcsiCDC.setDataValues()
  • AcsiCDC.getDataDefinition()
  • AcsiCDC.getDataDirectory()
  • AcsiDS.getDataSetValues()
  • AcsiDS.setDataSetValues()
  • if member of dataset, may be contained in the Report.
'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,834 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FunctionalConstraints::FcKind, _objData=UmlObjectData [id=3361, uuid={8A165B36-7064-44f0-AEB1-BE4316E39AB2}, since=null, name=DC, alias=Description, stereotype=enum, visibility=public, txtDescription='DataAttribute shall represent description information whose value may be written and read. +Initial value shall be as configured; value shall be non-volatile. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.setDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- AcsiDS.setDataSetValues() +- if member of dataset, may be contained in the Report.', htmlDescription='

DataAttribute shall represent description information whose value may be written and read.

Initial value shall be as configured; value shall be non-volatile.

Modelling note: Applicable ACSI services:

  • AcsiCDC.getDataValues()
  • AcsiCDC.setDataValues()
  • AcsiCDC.getDataDefinition()
  • AcsiCDC.getDataDirectory()
  • AcsiDS.getDataSetValues()
  • AcsiDS.setDataSetValues()
  • if member of dataset, may be contained in the Report.
'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,835 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FunctionalConstraints::FcKind, _objData=UmlObjectData [id=3362, uuid={BC4A5B29-928D-4dc9-8896-9E43B03529E0}, since=null, name=SG, alias=Setting group, stereotype=enum, visibility=public, txtDescription='Logical devices that implement the SGCB class maintain multiple grouped values of all instances of DataAttributes with functional constraint SG. Each group contains one value for each DataAttribute. DataAttributes with functional constraint SG shall be the current active value. DataAttributes with FC=SG shall not be writeable. +Initial value shall be as configured; value shall be non-volatile. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- AcsiSGCB.getSGValues() +- if member of dataset, may be contained in the Report.', htmlDescription='

Logical devices that implement the SGCB class maintain multiple grouped values of all instances of DataAttributes with functional constraint SG. Each group contains one value for each DataAttribute. DataAttributes with functional constraint SG shall be the current active value. DataAttributes with FC=SG shall not be writeable.

Initial value shall be as configured; value shall be non-volatile.

Modelling note: Applicable ACSI services:

  • AcsiCDC.getDataValues()
  • AcsiCDC.getDataDefinition()
  • AcsiCDC.getDataDirectory()
  • AcsiDS.getDataSetValues()
  • AcsiSGCB.getSGValues()
  • if member of dataset, may be contained in the Report.
'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,835 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FunctionalConstraints::FcKind, _objData=UmlObjectData [id=3363, uuid={DB4C1F49-C8C9-4ee3-A713-437D5F7A9974}, since=null, name=SE, alias=Setting group editable, stereotype=enum, visibility=public, txtDescription='DataAttribute that can be edited by SGCB services. Defines the edit buffer for the value sets belonging to attributes with FC=SG. +Value shall be as resulting from the chain of SGCB services: selectEditSG() -> setSGValues() -> confirmEditSGValues(). +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiSGCB.getSGValues() +- AcsiSGCB.setSGValues()', htmlDescription='

DataAttribute that can be edited by SGCB services. Defines the edit buffer for the value sets belonging to attributes with FC=SG.

Value shall be as resulting from the chain of SGCB services: selectEditSG() -> setSGValues() -> confirmEditSGValues().

Modelling note: Applicable ACSI services:

  • AcsiCDC.getDataDefinition()
  • AcsiCDC.getDataDirectory()
  • AcsiSGCB.getSGValues()
  • AcsiSGCB.setSGValues()
'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,835 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FunctionalConstraints::FcKind, _objData=UmlObjectData [id=3364, uuid={411D4F8E-1B62-4476-A036-284D25D5F896}, since=null, name=SR, alias=Service response, stereotype=enum, visibility=public, txtDescription='DataAttribute shall represent data from different process objects with the same tracking object whose values can be used to be reported and logged; the values shall not be writeable. These attributes are used for service tracking (see 15.3.2). +Initial value of the DataAttribute are a private issue, e.g., all zero (except for times stamp). +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- if member of dataset, may be contained in the Report.', htmlDescription='

DataAttribute shall represent data from different process objects with the same tracking object whose values can be used to be reported and logged; the values shall not be writeable. These attributes are used for service tracking (see 15.3.2).

Initial value of the DataAttribute are a private issue, e.g., all zero (except for times stamp).

Modelling note: Applicable ACSI services:

  • AcsiCDC.getDataValues()
  • AcsiCDC.getDataDefinition()
  • AcsiCDC.getDataDirectory()
  • AcsiDS.getDataSetValues()
  • if member of dataset, may be contained in the Report.
'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,836 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FunctionalConstraints::FcKind, _objData=UmlObjectData [id=3365, uuid={6BC4E2F3-847B-4fae-97FF-AACCDE8CFD7C}, since=null, name=OR, alias=Operate received, stereotype=enum, visibility=public, txtDescription='DataAttribute shall represent the result of an Operate request at the data object receiving the Operate request, even if the execution of the Operate is blocked. +Initial value is irrelevant / arbitrary. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- if member of dataset, may be contained in the Report.', htmlDescription='

DataAttribute shall represent the result of an Operate request at the data object receiving the Operate request, even if the execution of the Operate is blocked.

Initial value is irrelevant / arbitrary.

Modelling note: Applicable ACSI services:

  • AcsiCDC.getDataValues()
  • AcsiCDC.getDataDefinition()
  • AcsiCDC.getDataDirectory()
  • AcsiDS.getDataSetValues()
  • if member of dataset, may be contained in the Report.
'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,836 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FunctionalConstraints::FcKind, _objData=UmlObjectData [id=3366, uuid={A41CC031-1E28-4293-B5BA-DF28D668035F}, since=null, name=BL, alias=Blocking, stereotype=enum, visibility=public, txtDescription='DataAttribute is used for blocking value updates. +If the value of the DataAttribute is volatile then the initial value shall be false, otherwise the value should be as set or configured. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.setDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- AcsiDS.setDataSetValues() +- if member of dataset, may be contained in the Report.', htmlDescription='

DataAttribute is used for blocking value updates.

If the value of the DataAttribute is volatile then the initial value shall be false, otherwise the value should be as set or configured.

Modelling note: Applicable ACSI services:

  • AcsiCDC.getDataValues()
  • AcsiCDC.setDataValues()
  • AcsiCDC.getDataDefinition()
  • AcsiCDC.getDataDirectory()
  • AcsiDS.getDataSetValues()
  • AcsiDS.setDataSetValues()
  • if member of dataset, may be contained in the Report.
'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,836 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FunctionalConstraints::FcKind, _objData=UmlObjectData [id=3367, uuid={8DBED157-424A-4a37-BC94-8C0BDE69431B}, since=null, name=EX, alias=Extended definition (application name space), stereotype=enum, visibility=public, txtDescription='DataAttribute shall represent an application name space. Application name spaces are used to define the semantic definitions of LNs, data object class, and DataAttributes as specified in 61850-7-3 and IEC 61850-7-4. DataAttributes with FC=EX shall not be writeable, +Note that private extensions of control blocks may use the FC EX at SCSM level. +Value of the DataAttribute shall be as configured; value shall be non-volatile. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- if member of dataset, may be contained in the Report.', htmlDescription='

DataAttribute shall represent an application name space. Application name spaces are used to define the semantic definitions of LNs, data object class, and DataAttributes as specified in 61850-7-3 and IEC 61850-7-4. DataAttributes with FC=EX shall not be writeable,

Note that private extensions of control blocks may use the FC EX at SCSM level.

Value of the DataAttribute shall be as configured; value shall be non-volatile.

Modelling note: Applicable ACSI services:

  • AcsiCDC.getDataValues()
  • AcsiCDC.getDataDefinition()
  • AcsiCDC.getDataDirectory()
  • AcsiDS.getDataSetValues()
  • if member of dataset, may be contained in the Report.
'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,836 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FunctionalConstraints::FcKind, _objData=UmlObjectData [id=3368, uuid={1FFA680C-4680-473f-B353-B4FC19ED9F26}, since=null, name=XX, alias=, stereotype=enum, visibility=public, txtDescription='Used as a wildcard in services only, with the semantics: representing DataAttributes of any functional constraint.', htmlDescription='

Used as a wildcard in services only, with the semantics: representing DataAttributes of any functional constraint.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,837 [main] TRACE ClassBuilder - read from EA: FunctionalConstraints::FcKind +2024-09-08 15:11:35,837 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_2, _depth=2, _eaElementID=1630, _objData=UmlObjectData [id=90, uuid={DAAE2E83-BC59-4835-9783-03AD311188B6}, since=null, name=FunctionalConstraints, alias=Functional constraints, stereotype=, visibility=public, txtDescription='From an application point of view, the DataAttributes are classified according to their specific use. Some attributes are used for controlling, other for reporting and logging, or measurements or setting groups, or the description of a specific DataAttribute. +The functional constraint (FC) serves as a data filter in the sense of defining the services applicable to specific DataAttributes of CommonDataClasses (defined in part IEC 61850-7-3). +NOTE: The possibility to write an Attribute or a DataAttribute may be further constrained by a view or an implementation, as discussed in clause 7. +EXAMPLE: The CommonDataClass single point status (SPS) according to IEC 61850-7-3 has the following DataAttributes: stVal (status value), q (quality), and t (time stamp) with the functional constraint ST (status information).', htmlDescription='

From an application point of view, the DataAttributes are classified according to their specific use. Some attributes are used for controlling, other for reporting and logging, or measurements or setting groups, or the description of a specific DataAttribute.

The functional constraint (FC) serves as a data filter in the sense of defining the services applicable to specific DataAttributes of CommonDataClasses (defined in part IEC 61850-7-3).

NOTE: The possibility to write an Attribute or a DataAttribute may be further constrained by a view or an implementation, as discussed in clause 7.

EXAMPLE: The CommonDataClass single point status (SPS) according to IEC 61850-7-3 has the following DataAttributes: stVal (status value), q (quality), and t (time stamp) with the functional constraint ST (status information).

'], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=FunctionalConstraints, _objData=UmlObjectData [id=195, uuid={A27A2F0C-3508-49d0-BE2E-DCD85EACEC54}, since=null, name=FunctionalConstraints, alias=, stereotype=, visibility=public, txtDescription='This diagram shows functional constraints.', htmlDescription='

This diagram shows functional constraints.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsTarget=1, _classes=1 +2024-09-08 15:11:35,837 [main] INFO PackageBuilder - processing package TriggerOptions (3) ... +2024-09-08 15:11:35,837 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=TriggerOptions, _objData=UmlObjectData [id=196, uuid={0BFCB4F3-0E2A-4790-BB7D-934E0D484D9C}, since=null, name=TriggerOptions, alias=, stereotype=, visibility=public, txtDescription='This diagram shows trigger options.', htmlDescription='

This diagram shows trigger options.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:35,837 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::TriggerOptions, _objData=UmlObjectData [id=3173, uuid={855C6728-1BC9-4283-8A19-59ADC04C72DF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,838 [main] TRACE ClassBuilder - Class TrgOpKind (23 in package TriggerOptions) +2024-09-08 15:11:35,838 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TriggerOptions::TrgOpKind, _objData=UmlObjectData [id=3369, uuid={1A22EF7A-2C16-4726-BCEB-CB30D71E8479}, since=null, name=dchg, alias=data-change, stereotype=enum, visibility=public, txtDescription='The reason for report or log entry generation is the change of the value of a process-related data attribute with trigger option dchg.', htmlDescription='

The reason for report or log entry generation is the change of the value of a process-related data attribute with trigger option dchg.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,838 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TriggerOptions::TrgOpKind, _objData=UmlObjectData [id=3370, uuid={5BCEDA2C-1A76-454c-8F22-6BB56A1B33BF}, since=null, name=qchg, alias=quality-change, stereotype=enum, visibility=public, txtDescription='The reason for report or log entry generation is the change of the value of a quality-related data attribute with trigger option qchg.', htmlDescription='

The reason for report or log entry generation is the change of the value of a quality-related data attribute with trigger option qchg.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,838 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TriggerOptions::TrgOpKind, _objData=UmlObjectData [id=3371, uuid={55E317AA-C068-4b0c-B2A0-D61D7B794819}, since=null, name=dupd, alias=data-update, stereotype=enum, visibility=public, txtDescription='The reason for report or log entry generation is an update of the value of a data attribute with trigger option dupd. The updated value may be the same as the old value. An example is freezing the value of a freezable data attribute updating the value of another data attribute, which could lead to the same value it already has.', htmlDescription='

The reason for report or log entry generation is an update of the value of a data attribute with trigger option dupd. The updated value may be the same as the old value. An example is freezing the value of a freezable data attribute updating the value of another data attribute, which could lead to the same value it already has.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,838 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=TriggerOptions::TrgOpKind, _objData=UmlObjectData [id=3372, uuid={1DA88179-4E3F-4338-9FC7-409360696D17}, since=null, name=dchg, dupd, alias=dchg or dupd, stereotype=enum, visibility=public, txtDescription='Either dchg or dupd.', htmlDescription='

Either dchg or dupd.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,839 [main] TRACE ClassBuilder - read from EA: TriggerOptions::TrgOpKind +2024-09-08 15:11:35,839 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_2, _depth=2, _eaElementID=1632, _objData=UmlObjectData [id=91, uuid={4133AFE1-D3E2-4e28-914F-4556B5EB2A7D}, since=null, name=TriggerOptions, alias=Trigger options, stereotype=, visibility=public, txtDescription='To support reporting and logging control logic (see clause 17) related to process data changes, one of these values can be associated as a trigger option, TrgOp, to a data attribute within a data object or sub-data object.', htmlDescription='

To support reporting and logging control logic (see clause 17) related to process data changes, one of these values can be associated as a trigger option, TrgOp, to a data attribute within a data object or sub-data object.

'], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=TriggerOptions, _objData=UmlObjectData [id=196, uuid={0BFCB4F3-0E2A-4790-BB7D-934E0D484D9C}, since=null, name=TriggerOptions, alias=, stereotype=, visibility=public, txtDescription='This diagram shows trigger options.', htmlDescription='

This diagram shows trigger options.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsTarget=1, _classes=1 +2024-09-08 15:11:35,839 [main] INFO PackageBuilder - processing package ACSIEnums (4) ... +2024-09-08 15:11:35,839 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=ACSIEnums, _objData=UmlObjectData [id=197, uuid={95AEB859-896B-4a25-A880-7441C1646A15}, since=null, name=ACSIEnums, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all explicit enumerated types defined in 61850-7-3.', htmlDescription='

This diagram shows all explicit enumerated types defined in 61850-7-3.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:35,840 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::ACSIEnums, _objData=UmlObjectData [id=3298, uuid={F56ADDA0-372E-4056-B822-00216243BD63}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,840 [main] TRACE ClassBuilder - Class BsControlKind (25 in package ACSIEnums) +2024-09-08 15:11:35,841 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSIEnums::BsControlKind, _objData=UmlObjectData [id=3373, uuid={CA1E7FE8-E979-4eed-A9C0-1DC2F42D98E7}, since=null, name=stop, alias=, stereotype=enum, visibility=public, txtDescription='Deactivate persistent output.', htmlDescription='

Deactivate persistent output.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,841 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSIEnums::BsControlKind, _objData=UmlObjectData [id=3374, uuid={5527E172-7D24-4618-8F0B-D9FEBB3DAE6B}, since=null, name=lower, alias=, stereotype=enum, visibility=public, txtDescription='Decrease the controlled value for one step.', htmlDescription='

Decrease the controlled value for one step.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,842 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSIEnums::BsControlKind, _objData=UmlObjectData [id=3375, uuid={BCFFB99D-0331-4d56-B87B-4F0F796DBDF7}, since=null, name=higher, alias=, stereotype=enum, visibility=public, txtDescription='Increase the controlled value for one step.', htmlDescription='

Increase the controlled value for one step.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,843 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSIEnums::BsControlKind, _objData=UmlObjectData [id=3376, uuid={7232D032-E577-45dd-ADE8-906578AF1EAC}, since=null, name=reserved, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,843 [main] TRACE ClassBuilder - read from EA: ACSIEnums::BsControlKind +2024-09-08 15:11:35,843 [main] TRACE ClassBuilder - Class DpStatusKind (26 in package ACSIEnums) +2024-09-08 15:11:35,843 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSIEnums::DpStatusKind, _objData=UmlObjectData [id=3377, uuid={9DE6568E-7A11-4e23-A50E-0F1E6C4BEEDC}, since=null, name=intermediateState, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,843 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSIEnums::DpStatusKind, _objData=UmlObjectData [id=3378, uuid={14B04D4A-522F-4d16-965B-5007F7B82E36}, since=null, name=offOrFalse, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,843 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSIEnums::DpStatusKind, _objData=UmlObjectData [id=3379, uuid={C137BA8B-F03D-4729-B1E2-2098B6F3A69C}, since=null, name=onOrTrue, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,843 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ACSIEnums::DpStatusKind, _objData=UmlObjectData [id=3380, uuid={4682DAAD-411E-40b2-8954-EC7AEEA93B42}, since=null, name=badState, alias=, stereotype=enum, visibility=public, txtDescription='The server cannot detect whether the position is open (off), closed (on) or in intermediate state.', htmlDescription='

The server cannot detect whether the position is open (off), closed (on) or in intermediate state.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,844 [main] TRACE ClassBuilder - read from EA: ACSIEnums::DpStatusKind +2024-09-08 15:11:35,844 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_2, _depth=2, _eaElementID=1634, _objData=UmlObjectData [id=92, uuid={90255F83-2BE0-44ac-8B56-6AA33A4B99FF}, since=null, name=ACSIEnums, alias=Enumerated data attribute types, stereotype=, visibility=public, txtDescription='This subclause contains explicit definition of enumerated types used in IEC 61850-7-2; some of them are also used in IEC 61850-7-3.', htmlDescription='

This subclause contains explicit definition of enumerated types used in IEC 61850-7-2; some of them are also used in IEC 61850-7-3.

'], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=ACSIEnums, _objData=UmlObjectData [id=197, uuid={95AEB859-896B-4a25-A880-7441C1646A15}, since=null, name=ACSIEnums, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all explicit enumerated types defined in 61850-7-3.', htmlDescription='

This diagram shows all explicit enumerated types defined in 61850-7-3.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsTarget=1, _classes=2 +2024-09-08 15:11:35,844 [main] INFO PackageBuilder - processing package CoreTypes (5) ... +2024-09-08 15:11:35,844 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=CoreTypes, _objData=UmlObjectData [id=198, uuid={F7AC59CA-0DEA-40c0-9004-81B0EA306E87}, since=null, name=CoreTypes, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the core types, defined in part 7-2. +- white: have their DA counterparts for CDCs in part 7-3 (and in 7-2 Ed.2!). +- blue: used for both services and data model. +Other types (under clause 6 TypeDefinitions) are used for services in 7-2 only, and are defined where used (in other packages under 7-2).', htmlDescription='

This diagram shows the core types, defined in part 7-2.

  • white: have their DA counterparts for CDCs in part 7-3 (and in 7-2 Ed.2!).
  • blue: used for both services and data model.

Other types (under clause 6 TypeDefinitions) are used for services in 7-2 only, and are defined where used (in other packages under 7-2).

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:35,844 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::CoreTypes, _objData=UmlObjectData [id=3064, uuid={108535CE-A6F8-4674-9586-860C06077B0A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,845 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::CoreTypes, _objData=UmlObjectData [id=3174, uuid={5FE3C8F2-1E89-4705-9543-F7961C8261AE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,845 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::CoreTypes, _objData=UmlObjectData [id=3288, uuid={38E71389-9629-4cc5-9975-FC4214E837B4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,845 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::CoreTypes, _objData=UmlObjectData [id=3297, uuid={FCD42B62-BC4F-4487-B6C7-E7E726D09A02}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,845 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::CoreTypes, _objData=UmlObjectData [id=3301, uuid={58E49D9F-1448-4082-AF53-C39A20175114}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,845 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::CoreTypes, _objData=UmlObjectData [id=3322, uuid={4007F42C-AD2B-4122-ADB0-BE0A33C62F71}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,845 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::CoreTypes, _objData=UmlObjectData [id=3347, uuid={B1DAE8E8-95A2-4465-BBD5-25F52D1CD86F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,846 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1650, uuid={244828C0-55B7-474f-98ED-FAF904B5131B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Missing " " (space) for e.g. +- "[ST] myLD/myXCBR1.Pos.stVal", or, +- "myLD/myXCBR1.Pos.stVal [ST]".', htmlDescription='

TODO: Missing " " (space) for e.g.

  • "[ST] myLD/myXCBR1.Pos.stVal", or,
  • "myLD/myXCBR1.Pos.stVal [ST]".
'], _containingPackage=CoreTypes, _otherEndName=] +2024-09-08 15:11:35,846 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1675, uuid={590D88C4-5102-427a-883A-BD4D95C63509}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='=========================================== +TimeStamp and related types', htmlDescription='

===========================================

TimeStamp and related types

'], _containingPackage=CoreTypes, _otherEndName=] +2024-09-08 15:11:35,846 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1676, uuid={5CD0E8B5-9B88-4098-8E91-7ED55F9E9C10}, since=null, name=CoreTypes : CoreTypesModellingNotes, alias=, stereotype=, visibility=public, txtDescription='CoreTypes : CoreTypesModellingNotes', htmlDescription='

CoreTypes : CoreTypesModellingNotes

'], _containingPackage=CoreTypes, _otherEndName=] +2024-09-08 15:11:35,846 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1677, uuid={82DEAA6D-9304-4b9f-B7F8-248DB8CF30F2}, since=null, name=CoreTypes :ImplementationNote-LanguageMappings, alias=, stereotype=, visibility=public, txtDescription='CoreTypes :ImplementationNote-LanguageMappings', htmlDescription='

CoreTypes :ImplementationNote-LanguageMappings

'], _containingPackage=CoreTypes, _otherEndName=] +2024-09-08 15:11:35,846 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1678, uuid={9A7C4175-6A24-48a2-AF0B-94C9020096B6}, since=null, name=BasicDAs :Relation between trigger conditions, applicable trigger options and reporting, alias=, stereotype=, visibility=public, txtDescription='P_TriggerConditions : Relation between trigger conditions and reporting', htmlDescription='

P_TriggerConditions : Relation between trigger conditions and reporting

'], _containingPackage=CoreTypes, _otherEndName=] +2024-09-08 15:11:35,846 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1679, uuid={CC1FA7BA-2804-418e-B6FD-4333F4794A27}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='=========================================== +Primitive types', htmlDescription='

===========================================

Primitive types

'], _containingPackage=CoreTypes, _otherEndName=] +2024-09-08 15:11:35,846 [main] TRACE ClassBuilder - Class P_BOOLEAN (1 in package CoreTypes) +2024-09-08 15:11:35,847 [main] TRACE ClassBuilder - read from EA: CoreTypes::P_BOOLEAN +2024-09-08 15:11:35,847 [main] TRACE ClassBuilder - Class P_INT16U (2 in package CoreTypes) +2024-09-08 15:11:35,847 [main] TRACE ClassBuilder - read from EA: CoreTypes::P_INT16U +2024-09-08 15:11:35,847 [main] TRACE ClassBuilder - Class P_INT32 (3 in package CoreTypes) +2024-09-08 15:11:35,847 [main] TRACE ClassBuilder - read from EA: CoreTypes::P_INT32 +2024-09-08 15:11:35,847 [main] TRACE ClassBuilder - Class P_INT32U (4 in package CoreTypes) +2024-09-08 15:11:35,847 [main] TRACE ClassBuilder - read from EA: CoreTypes::P_INT32U +2024-09-08 15:11:35,847 [main] TRACE ClassBuilder - Class P_FLOAT32 (5 in package CoreTypes) +2024-09-08 15:11:35,848 [main] TRACE ClassBuilder - read from EA: CoreTypes::P_FLOAT32 +2024-09-08 15:11:35,848 [main] TRACE ClassBuilder - Class P_UNICODE_STRING255 (6 in package CoreTypes) +2024-09-08 15:11:35,848 [main] TRACE ClassBuilder - read from EA: CoreTypes::P_UNICODE_STRING255 +2024-09-08 15:11:35,848 [main] TRACE ClassBuilder - Class P_VISIBLE_STRING255 (7 in package CoreTypes) +2024-09-08 15:11:35,848 [main] TRACE ClassBuilder - read from EA: CoreTypes::P_VISIBLE_STRING255 +2024-09-08 15:11:35,848 [main] TRACE ClassBuilder - Class ObjectName (16 in package CoreTypes) +2024-09-08 15:11:35,848 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::ObjectName, _objData=UmlObjectData [id=3381, uuid={5D6F9BB0-6DB5-412a-A3CE-6BB9F80F9725}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1665, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,849 [main] TRACE ClassBuilder - read from EA: CoreTypes::ObjectName +2024-09-08 15:11:35,849 [main] TRACE ClassBuilder - Class P_ObjectReference (17 in package CoreTypes) +2024-09-08 15:11:35,849 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::P_ObjectReference, _objData=UmlObjectData [id=3382, uuid={48586FE0-4215-4fbf-AD7E-3041B6C594CC}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1666, _eaTypeName=P_VISIBLE_STRING129, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,849 [main] TRACE ClassBuilder - read from EA: CoreTypes::P_ObjectReference +2024-09-08 15:11:35,849 [main] TRACE ClassBuilder - Class P_PHYCOMADDR (18 in package CoreTypes) +2024-09-08 15:11:35,849 [main] TRACE ClassBuilder - read from EA: CoreTypes::P_PHYCOMADDR +2024-09-08 15:11:35,849 [main] TRACE ClassBuilder - Class P_TimeStamp (19 in package CoreTypes) +2024-09-08 15:11:35,849 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::P_TimeStamp, _objData=UmlObjectData [id=3383, uuid={CDA8BF64-6FF8-4ba2-ABBC-382E39C0B24C}, since=null, name=SecondSinceEpoch, alias=, stereotype=, visibility=public, txtDescription='Interval in seconds continuously counted from the epoch 1970-01-01 00:00:00 UTC.', htmlDescription='

Interval in seconds continuously counted from the epoch 1970-01-01 00:00:00 UTC.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1656, _eaTypeName=P_INT32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,850 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::P_TimeStamp, _objData=UmlObjectData [id=3384, uuid={2958A724-7898-4448-9E67-CC2402C4DBBA}, since=null, name=FractionOfSecond, alias=, stereotype=, visibility=public, txtDescription='Fraction of the current second when the value of time stamp has been determined. It shall be calculated as (SUM from i = 0 to 23 of bi*2**–(i+1) [s]). +NOTE 1 The resolution is the smallest unit by which the time stamp is updated. The 24 bits of the integer provide 1 out of 16 777 216 counts as the smallest unit; calculated by 1/2**24 which equals approximately 60 ns. +NOTE 2 The resolution of a time stamp may be 1/2**1 (= 0.5 s) if only the first bit is used; or may be 1/2**2 (= 0.25 s) if the first two bits are used; or may be approximately 60 ns if all 24 bits are used. The resolution provided by an IED is outside the scope of this standard.', htmlDescription='

Fraction of the current second when the value of time stamp has been determined. It shall be calculated as (SUM from i = 0 to 23 of bi*2**–(i+1) [s]).

NOTE 1 The resolution is the smallest unit by which the time stamp is updated. The 24 bits of the integer provide 1 out of 16 777 216 counts as the smallest unit; calculated by 1/2**24 which equals approximately 60 ns.

NOTE 2 The resolution of a time stamp may be 1/2**1 (= 0.5 s) if only the first bit is used; or may be 1/2**2 (= 0.25 s) if the first two bits are used; or may be approximately 60 ns if all 24 bits are used. The resolution provided by an IED is outside the scope of this standard.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1660, _eaTypeName=P_INT24U, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,850 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::P_TimeStamp, _objData=UmlObjectData [id=3385, uuid={1C4E5EB3-6199-4ce6-976E-E81B1E3D3D26}, since=null, name=TimeQuality, alias=, stereotype=, visibility=public, txtDescription='Information about the time source of the sending IED.', htmlDescription='

Information about the time source of the sending IED.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1672, _eaTypeName=TimeQuality, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,850 [main] TRACE ClassBuilder - read from EA: CoreTypes::P_TimeStamp +2024-09-08 15:11:35,850 [main] TRACE ClassBuilder - Class TimeQuality (20 in package CoreTypes) +2024-09-08 15:11:35,850 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::TimeQuality, _objData=UmlObjectData [id=3386, uuid={9C35C39B-81CF-412d-A57E-9706FE60A4E9}, since=null, name=LeapSecondsKnown, alias=, stereotype=, visibility=public, txtDescription='If true, the value in 'P_TimeStamp.SecondSinceEpoch' contains all leap seconds occurred. Otherwise, it does not take into account the leap seconds that occurred before the initialization of the time source of the device. Instead, the seconds since start of the epoch are calculated from the current date assuming a constant day length of 86400 seconds. +Note: If a UTC time master clock is used and accessible, this value should always be true.', htmlDescription='

If true, the value in 'P_TimeStamp.SecondSinceEpoch' contains all leap seconds occurred. Otherwise, it does not take into account the leap seconds that occurred before the initialization of the time source of the device. Instead, the seconds since start of the epoch are calculated from the current date assuming a constant day length of 86400 seconds.

Note: If a UTC time master clock is used and accessible, this value should always be true.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,851 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::TimeQuality, _objData=UmlObjectData [id=3387, uuid={5FDA2BA2-85CD-4f5d-9FC8-AA4C892E9904}, since=null, name=ClockFailure, alias=, stereotype=, visibility=public, txtDescription='If true, the time source of the sending device is unreliable and the value of the time stamp shall be ignored.', htmlDescription='

If true, the time source of the sending device is unreliable and the value of the time stamp shall be ignored.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,851 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::TimeQuality, _objData=UmlObjectData [id=3388, uuid={C371C41F-4D3F-4129-A08C-AA2AB445051F}, since=null, name=ClockNotSynchronized, alias=, stereotype=, visibility=public, txtDescription='If true, the time source of the sending device is not synchronised with the external UTC time.', htmlDescription='

If true, the time source of the sending device is not synchronised with the external UTC time.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,851 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::TimeQuality, _objData=UmlObjectData [id=3389, uuid={4B73DC7D-52D2-4627-A70B-1027E72F218F}, since=null, name=TimeAccuracy, alias=, stereotype=, visibility=public, txtDescription='Class of time accuracy in terms of number of significant bits in 'P_TimeStamp.FractionOfSecond'.', htmlDescription='

Class of time accuracy in terms of number of significant bits in 'P_TimeStamp.FractionOfSecond'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1673, _eaTypeName=TimeAccuracyKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,852 [main] TRACE ClassBuilder - read from EA: CoreTypes::TimeQuality +2024-09-08 15:11:35,852 [main] TRACE ClassBuilder - Class TimeAccuracyKind (21 in package CoreTypes) +2024-09-08 15:11:35,852 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::TimeAccuracyKind, _objData=UmlObjectData [id=3390, uuid={0DF1E1A1-F1B0-474f-A236-87FAA78F7FF3}, since=null, name=T0, alias=, stereotype=enum, visibility=public, txtDescription='Has 7 significant bits => 2**-7 = ~ 7.8 ms, corresponding to performance class 10 ms.', htmlDescription='

Has 7 significant bits => 2**-7 = ~ 7.8 ms, corresponding to performance class 10 ms.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=7, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,853 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::TimeAccuracyKind, _objData=UmlObjectData [id=3391, uuid={AA4952C9-467B-4ccb-8C1D-8F8E960A40F4}, since=null, name=T1, alias=, stereotype=enum, visibility=public, txtDescription='Has 10 significant bits => 2**-10 = ~ 0.9 ms, corresponding to performance class 1 ms.', htmlDescription='

Has 10 significant bits => 2**-10 = ~ 0.9 ms, corresponding to performance class 1 ms.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=10, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,853 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::TimeAccuracyKind, _objData=UmlObjectData [id=3392, uuid={45A0A753-7EEC-41f7-992F-83F9BA70FE16}, since=null, name=T2, alias=, stereotype=enum, visibility=public, txtDescription='Has 14 significant bits => 2**-14 = ~ 61 µs, corresponding to performance class 100 µs.', htmlDescription='

Has 14 significant bits => 2**-14 = ~ 61 µs, corresponding to performance class 100 µs.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=14, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,853 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::TimeAccuracyKind, _objData=UmlObjectData [id=3393, uuid={28ED8D22-B685-456c-A17F-CD2F7BBB78CE}, since=null, name=T3, alias=, stereotype=enum, visibility=public, txtDescription='Has 16 significant bits => 2**-16 = ~ 15 µs, corresponding to performance class 25 µs.', htmlDescription='

Has 16 significant bits => 2**-16 = ~ 15 µs, corresponding to performance class 25 µs.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=16, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,853 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::TimeAccuracyKind, _objData=UmlObjectData [id=3394, uuid={BBC61680-CCA1-4ed5-A53A-AA7917C1C391}, since=null, name=T4, alias=, stereotype=enum, visibility=public, txtDescription='Has 18 significant bits => 2**-18 = ~ 3.8 µs, corresponding to performance class 4 µs.', htmlDescription='

Has 18 significant bits => 2**-18 = ~ 3.8 µs, corresponding to performance class 4 µs.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=18, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,853 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::TimeAccuracyKind, _objData=UmlObjectData [id=3395, uuid={0B1B2383-20B4-413a-9508-6194243A18B1}, since=null, name=T5, alias=, stereotype=enum, visibility=public, txtDescription='Has 20 significant bits => 2**-20 = ~ 0.9 µs, corresponding to performance class 1 µs.', htmlDescription='

Has 20 significant bits => 2**-20 = ~ 0.9 µs, corresponding to performance class 1 µs.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=20, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,853 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::TimeAccuracyKind, _objData=UmlObjectData [id=3396, uuid={1F0511E7-8E96-4ddd-87F8-F75D9D9503D0}, since=null, name=unspecified, alias=, stereotype=enum, visibility=public, txtDescription='Has 31 significant bits.', htmlDescription='

Has 31 significant bits.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=31, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,853 [main] TRACE ClassBuilder - read from EA: CoreTypes::TimeAccuracyKind +2024-09-08 15:11:35,854 [main] TRACE ClassBuilder - Class P_TriggerConditions (24 in package CoreTypes) +2024-09-08 15:11:35,854 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::P_TriggerConditions, _objData=UmlObjectData [id=3397, uuid={A829B7C4-40ED-4e43-A520-BB42588381F0}, since=null, name=data-change, alias=, stereotype=, visibility=public, txtDescription='If true, a value change of a process-related data attribute, tagged with dchg, will trigger the generation of a report or log entry. If false, no entry should be generated on value change.', htmlDescription='

If true, a value change of a process-related data attribute, tagged with dchg, will trigger the generation of a report or log entry. If false, no entry should be generated on value change.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,854 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::P_TriggerConditions, _objData=UmlObjectData [id=3398, uuid={088AE2AE-C484-4fb7-B17D-D9D712044645}, since=null, name=quality-change, alias=, stereotype=, visibility=public, txtDescription='If true, a value change of a quality-related data attribute, tagged with qchg, will trigger the generation of a report or log entry. If false, no entry should be generated on quality change.', htmlDescription='

If true, a value change of a quality-related data attribute, tagged with qchg, will trigger the generation of a report or log entry. If false, no entry should be generated on quality change.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,854 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::P_TriggerConditions, _objData=UmlObjectData [id=3399, uuid={57A3C8E0-5424-4100-90E2-3EFA7B5D1F57}, since=null, name=data-update, alias=, stereotype=, visibility=public, txtDescription='If true, a value freezing of a freezable data attribute (e.g., frozen counters) or a value update of any other data attribute, tagged with dupd, will trigger the generation of a report or log entry. If false, no entry should be generated on value update. +This trigger condition may be used to issue sending a report or storing a log entry into a log when a value has changed or has been "overwritten" with the same value as before. It may then be a trigger for reporting or logging of the statistics values (which may be calculated and updated periodically), independently of whether the value has changed or not.', htmlDescription='

If true, a value freezing of a freezable data attribute (e.g., frozen counters) or a value update of any other data attribute, tagged with dupd, will trigger the generation of a report or log entry. If false, no entry should be generated on value update.

This trigger condition may be used to issue sending a report or storing a log entry into a log when a value has changed or has been "overwritten" with the same value as before. It may then be a trigger for reporting or logging of the statistics values (which may be calculated and updated periodically), independently of whether the value has changed or not.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,854 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::P_TriggerConditions, _objData=UmlObjectData [id=3400, uuid={197A7EEE-CC0C-481d-B006-99BE3C9041A5}, since=null, name=integrity, alias=, stereotype=, visibility=public, txtDescription='If true, the control block in the server shall generate periodical Report or Log entries on every expiration of the integrity timer (period trigger option).', htmlDescription='

If true, the control block in the server shall generate periodical Report or Log entries on every expiration of the integrity timer (period trigger option).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,854 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CoreTypes::P_TriggerConditions, _objData=UmlObjectData [id=3401, uuid={2154CDDF-8F70-47dc-929D-406C98AC6E48}, since=null, name=general-interrogation, alias=, stereotype=, visibility=public, txtDescription='If true, the RCB in the server shall generate general interrogation Report entries on user request.', htmlDescription='

If true, the RCB in the server shall generate general interrogation Report entries on user request.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,854 [main] TRACE ClassBuilder - read from EA: CoreTypes::P_TriggerConditions +2024-09-08 15:11:35,855 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_2, _depth=2, _eaElementID=1637, _objData=UmlObjectData [id=93, uuid={869C1377-AA3A-4b9e-A541-9130C780FF6D}, since=null, name=CoreTypes, alias=Core types, stereotype=, visibility=public, txtDescription='This clause defines core types, mainly primitive, common to the IEC 61850 both data and service models.', htmlDescription='

This clause defines core types, mainly primitive, common to the IEC 61850 both data and service models.

'], _modelId=58, _selfDependent=false, 6_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1650, uuid={244828C0-55B7-474f-98ED-FAF904B5131B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Missing " " (space) for e.g. +- "[ST] myLD/myXCBR1.Pos.stVal", or, +- "myLD/myXCBR1.Pos.stVal [ST]".', htmlDescription='

TODO: Missing " " (space) for e.g.

  • "[ST] myLD/myXCBR1.Pos.stVal", or,
  • "myLD/myXCBR1.Pos.stVal [ST]".
'], _containingPackage=CoreTypes, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1675, uuid={590D88C4-5102-427a-883A-BD4D95C63509}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='=========================================== +TimeStamp and related types', htmlDescription='

===========================================

TimeStamp and related types

'], _containingPackage=CoreTypes, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1676, uuid={5CD0E8B5-9B88-4098-8E91-7ED55F9E9C10}, since=null, name=CoreTypes : CoreTypesModellingNotes, alias=, stereotype=, visibility=public, txtDescription='CoreTypes : CoreTypesModellingNotes', htmlDescription='

CoreTypes : CoreTypesModellingNotes

'], _containingPackage=CoreTypes, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1677, uuid={82DEAA6D-9304-4b9f-B7F8-248DB8CF30F2}, since=null, name=CoreTypes :ImplementationNote-LanguageMappings, alias=, stereotype=, visibility=public, txtDescription='CoreTypes :ImplementationNote-LanguageMappings', htmlDescription='

CoreTypes :ImplementationNote-LanguageMappings

'], _containingPackage=CoreTypes, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1678, uuid={9A7C4175-6A24-48a2-AF0B-94C9020096B6}, since=null, name=BasicDAs :Relation between trigger conditions, applicable trigger options and reporting, alias=, stereotype=, visibility=public, txtDescription='P_TriggerConditions : Relation between trigger conditions and reporting', htmlDescription='

P_TriggerConditions : Relation between trigger conditions and reporting

'], _containingPackage=CoreTypes, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1679, uuid={CC1FA7BA-2804-418e-B6FD-4333F4794A27}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='=========================================== +Primitive types', htmlDescription='

===========================================

Primitive types

'], _containingPackage=CoreTypes, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=CoreTypes, _objData=UmlObjectData [id=198, uuid={F7AC59CA-0DEA-40c0-9004-81B0EA306E87}, since=null, name=CoreTypes, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the core types, defined in part 7-2. +- white: have their DA counterparts for CDCs in part 7-3 (and in 7-2 Ed.2!). +- blue: used for both services and data model. +Other types (under clause 6 TypeDefinitions) are used for services in 7-2 only, and are defined where used (in other packages under 7-2).', htmlDescription='

This diagram shows the core types, defined in part 7-2.

  • white: have their DA counterparts for CDCs in part 7-3 (and in 7-2 Ed.2!).
  • blue: used for both services and data model.

Other types (under clause 6 TypeDefinitions) are used for services in 7-2 only, and are defined where used (in other packages under 7-2).

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsTarget=7, _classes=14 +2024-09-08 15:11:35,855 [main] INFO PackageBuilder - processing package ObjectReferences (6) ... +2024-09-08 15:11:35,855 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=ObjectReferences, _objData=UmlObjectData [id=201, uuid={5DEE7E4C-4C25-4a75-B590-A96364073A9E}, since=null, name=ObjectReferences, alias=, stereotype=, visibility=public, txtDescription='This diagram shows an overview of strongly typed object references, not explicitly specified in the standard.', htmlDescription='

This diagram shows an overview of strongly typed object references, not explicitly specified in the standard.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:35,855 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::ObjectReferences, _objData=UmlObjectData [id=3172, uuid={C5C582B9-299E-483d-9480-D0C500F8176D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,855 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::ObjectReferences, _objData=UmlObjectData [id=3323, uuid={0B7067BC-EDBC-4ae5-AF55-5FBD1BE1F769}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,855 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::ObjectReferences->IEC61850_7_2::CoreTypes, _objData=UmlObjectData [id=3347, uuid={B1DAE8E8-95A2-4465-BBD5-25F52D1CD86F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,856 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1684, uuid={A20EACAA-52B0-4123-8FE8-AC7004CDFF73}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Implementation note: To identify ComposedCDCs from e.g. MMS strings (to correctly assign dataName and SubDataName), you have to construct the hashmap based on definitions from IEC 61850-7-3, since MMS does not provide information about PrimitiveCDC and ComposedCDC. See diagram ObjectReferences::ImlementationNotes-ComplexCDCs.', htmlDescription='

Implementation note: To identify ComposedCDCs from e.g. MMS strings (to correctly assign dataName and SubDataName), you have to construct the hashmap based on definitions from IEC 61850-7-3, since MMS does not provide information about PrimitiveCDC and ComposedCDC. See diagram ObjectReferences::ImlementationNotes-ComplexCDCs.

'], _containingPackage=ObjectReferences, _otherEndName=] +2024-09-08 15:11:35,858 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1690, uuid={3601A814-6336-4e81-A0C4-605A030114AF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Do have a better name for LNOwnedDSReference (and LNOwnedDS)?', htmlDescription='

TODO: Do have a better name for LNOwnedDSReference (and LNOwnedDS)?

'], _containingPackage=ObjectReferences, _otherEndName=] +2024-09-08 15:11:35,858 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1704, uuid={B91F5E3E-1FE7-42cc-B656-C9B2CCB194E9}, since=null, name=ObjectReferences : ObjectReferencesModellingNotes, alias=, stereotype=, visibility=public, txtDescription='ObjectReferences : ObjectReferencesModellingNotes', htmlDescription='

ObjectReferences : ObjectReferencesModellingNotes

'], _containingPackage=ObjectReferences, _otherEndName=] +2024-09-08 15:11:35,859 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1705, uuid={C0FD65FA-8022-455d-A4A4-9198F69255B4}, since=null, name=ObjectReferences : ImplementationNotes-ComposedCDCs, alias=, stereotype=, visibility=public, txtDescription='ObjectReferences : ImplementationNotes-ComposedCDCs', htmlDescription='

ObjectReferences : ImplementationNotes-ComposedCDCs

'], _containingPackage=ObjectReferences, _otherEndName=] +2024-09-08 15:11:35,859 [main] TRACE ClassBuilder - Class FILEReference (2 in package ObjectReferences) +2024-09-08 15:11:35,859 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::FILEReference, _objData=UmlObjectData [id=3402, uuid={CD8C78D7-23ED-4c5e-95D6-113A8B0CD1D1}, since=null, name=FileRef, alias=, stereotype=, visibility=public, txtDescription='Path-name of the FILE instance (= FileName).', htmlDescription='

Path-name of the FILE instance (= FileName).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1666, _eaTypeName=P_VISIBLE_STRING129, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,859 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::FILEReference, _objData=UmlObjectData [id=3403, uuid={1E88DE78-F248-4982-ACD2-E5FA0516775A}, since=null, name=FileName, alias=, stereotype=, visibility=public, txtDescription='name of a FILE instance, unambiguously identifying the file within the ACSI file store. File names may be structured to differentiate file types, for example, disturbance records, programs, and parameter and configuration data. +Modelling note 1: Corresponds to FileName. Original definition: "FileAttribute: Name of the file in the ACSI file store. File names may be structured to differentiate file types, e.g. disturbance records, programs, and parameter and configuration data." +Modelling note 2: Although this is called "FileName", it should have been called "FileRef" to follow the logic of the whole ACSI naming scheme. Note that the type is not ObjectName, but P_VISIBLE_STRING255.', htmlDescription='

name of a FILE instance, unambiguously identifying the file within the ACSI file store. File names may be structured to differentiate file types, for example, disturbance records, programs, and parameter and configuration data.

Modelling note 1: Corresponds to FileName. Original definition: "FileAttribute: Name of the file in the ACSI file store. File names may be structured to differentiate file types, e.g. disturbance records, programs, and parameter and configuration data."

Modelling note 2: Although this is called "FileName", it should have been called "FileRef" to follow the logic of the whole ACSI naming scheme. Note that the type is not ObjectName, but P_VISIBLE_STRING255.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1666, _eaTypeName=P_VISIBLE_STRING129, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,859 [main] DEBUG ClassBuilder - Adding FILEReference as subclass of P_ObjectReference +2024-09-08 15:11:35,859 [main] TRACE ClassBuilder - read from EA: ObjectReferences::FILEReference +2024-09-08 15:11:35,859 [main] TRACE ClassBuilder - Class LDReference (3 in package ObjectReferences) +2024-09-08 15:11:35,860 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::LDReference, _objData=UmlObjectData [id=3404, uuid={4125604B-3595-465d-92D7-879F9A4352C7}, since=null, name=LDRef, alias=, stereotype=, visibility=public, txtDescription='Path-name of the LD instance (= LDName).', htmlDescription='

Path-name of the LD instance (= LDName).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1666, _eaTypeName=P_VISIBLE_STRING129, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,860 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::LDReference, _objData=UmlObjectData [id=3405, uuid={18337A58-4439-456a-8BCA-A1B7AF8715A1}, since=null, name=LDName, alias=, stereotype=, visibility=public, txtDescription='Name of an LD instance, unambiguously identifying the LD within the system.', htmlDescription='

Name of an LD instance, unambiguously identifying the LD within the system.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,860 [main] DEBUG ClassBuilder - Adding LDReference as subclass of P_ObjectReference +2024-09-08 15:11:35,860 [main] TRACE ClassBuilder - read from EA: ObjectReferences::LDReference +2024-09-08 15:11:35,860 [main] TRACE ClassBuilder - Class NonPersistentDSReference (4 in package ObjectReferences) +2024-09-08 15:11:35,860 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::NonPersistentDSReference, _objData=UmlObjectData [id=3406, uuid={7F5608C0-BE6D-4ac8-9786-C6EF27B7CD6B}, since=null, name=DSRef, alias=, stereotype=, visibility=public, txtDescription='Path-name of the non-persistent dataset instance (= @DSName).', htmlDescription='

Path-name of the non-persistent dataset instance (= @DSName).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1666, _eaTypeName=P_VISIBLE_STRING129, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,861 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::NonPersistentDSReference, _objData=UmlObjectData [id=3407, uuid={4F62D406-E0F0-45ea-9C34-3DB7262EDE88}, since=null, name=DSName, alias=, stereotype=, visibility=public, txtDescription='Name of a dataset instance, unambiguously identifying it within the scope of a two party application association.', htmlDescription='

Name of a dataset instance, unambiguously identifying it within the scope of a two party application association.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,861 [main] DEBUG ClassBuilder - Adding NonPersistentDSReference as subclass of P_ObjectReference +2024-09-08 15:11:35,861 [main] TRACE ClassBuilder - read from EA: ObjectReferences::NonPersistentDSReference +2024-09-08 15:11:35,861 [main] TRACE ClassBuilder - Class LNReference (5 in package ObjectReferences) +2024-09-08 15:11:35,861 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::LNReference, _objData=UmlObjectData [id=3408, uuid={79CF69C4-43F8-45a0-947C-DDF3F0986B34}, since=null, name=LNRef, alias=, stereotype=, visibility=public, txtDescription='Path-name of the LN instance (= LDName/LNName).', htmlDescription='

Path-name of the LN instance (= LDName/LNName).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1666, _eaTypeName=P_VISIBLE_STRING129, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,861 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::LNReference, _objData=UmlObjectData [id=3409, uuid={315FD389-CF79-4476-9221-E8EF466FE456}, since=null, name=LNName, alias=, stereotype=, visibility=public, txtDescription='Name of an LN instance, unambiguously identifying the LN within the scope of an LD.', htmlDescription='

Name of an LN instance, unambiguously identifying the LN within the scope of an LD.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,862 [main] DEBUG ClassBuilder - Adding LNReference as subclass of LDReference +2024-09-08 15:11:35,862 [main] TRACE ClassBuilder - read from EA: ObjectReferences::LNReference +2024-09-08 15:11:35,862 [main] TRACE ClassBuilder - Class CDCReference (6 in package ObjectReferences) +2024-09-08 15:11:35,862 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::CDCReference, _objData=UmlObjectData [id=3410, uuid={D1CFBC9C-966D-4b0b-BA52-A320E5422583}, since=null, name=DataRef, alias=, stereotype=, visibility=public, txtDescription='Path-name of the CDC instance, i.e. data object or sub-data object (= LDName/LNName.DataName for PrimitiveCDC or LDName/LNName.DataName.SubDataName for ComposedCDC, respectively).', htmlDescription='

Path-name of the CDC instance, i.e. data object or sub-data object (= LDName/LNName.DataName for PrimitiveCDC or LDName/LNName.DataName.SubDataName for ComposedCDC, respectively).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1666, _eaTypeName=P_VISIBLE_STRING129, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,862 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::CDCReference, _objData=UmlObjectData [id=3411, uuid={27B4D2D6-7DD0-4a73-8DD4-3E27211B8FE4}, since=null, name=DataName, alias=, stereotype=, visibility=public, txtDescription='Name of a CDC instance (data object) contained in the LN. The CDC may be: +1. PrimitiveCDC: Example is "Auto" from the reference myLD3/RREC1.Auto (where myLD3/RREC1.Auto is of type SPC:PrimitiveCDC). +2. ComposedCDC: example is "PhV" from the reference myLD3/MMXU1.PhV.phsA (where myLD3/MMXU1.PhV is of type WYE:ComposedCDC).', htmlDescription='

Name of a CDC instance (data object) contained in the LN. The CDC may be:

  1. PrimitiveCDC: Example is "Auto" from the reference myLD3/RREC1.Auto (where myLD3/RREC1.Auto is of type SPC:PrimitiveCDC).
  2. ComposedCDC: example is "PhV" from the reference myLD3/MMXU1.PhV.phsA (where myLD3/MMXU1.PhV is of type WYE:ComposedCDC).
'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,862 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::CDCReference, _objData=UmlObjectData [id=3412, uuid={11F81F23-C9EF-4f7e-A783-E4ECC12CB884}, since=null, name=SubDataName, alias=, stereotype=, visibility=public, txtDescription='Empty string in case the PrimitiveCDC is contained in LN, non-empty name of sub-data object if PrimitiveCDC is contained in ComposedCDC. Example of this latter is "phsA" from the reference myLD3/MMXU1.PhV.phsA (where PhV is of type WYE:ComposedCDC, and one level further, PhV.phsA is of type SPC:PrimitiveCDC).', htmlDescription='

Empty string in case the PrimitiveCDC is contained in LN, non-empty name of sub-data object if PrimitiveCDC is contained in ComposedCDC. Example of this latter is "phsA" from the reference myLD3/MMXU1.PhV.phsA (where PhV is of type WYE:ComposedCDC, and one level further, PhV.phsA is of type SPC:PrimitiveCDC).

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,862 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2192, uuid={4500C0CF-C86B-4dd8-B508-9332FFF71356}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=CDCReference, _otherEndName=?] +2024-09-08 15:11:35,863 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2200, uuid={E51AEAD0-DD4C-497d-A091-1B0E68FF4FF4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=CDCReference, _otherEndName=?] +2024-09-08 15:11:35,863 [main] DEBUG ClassBuilder - Adding CDCReference as subclass of LNReference +2024-09-08 15:11:35,863 [main] TRACE ClassBuilder - read from EA: ObjectReferences::CDCReference +2024-09-08 15:11:35,863 [main] TRACE ClassBuilder - Class CBReference (7 in package ObjectReferences) +2024-09-08 15:11:35,863 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::CBReference, _objData=UmlObjectData [id=3413, uuid={A942512C-9018-4df2-B39B-445CC9389B21}, since=null, name=CBRef, alias=, stereotype=, visibility=public, txtDescription='Path-name of the control block (SGCB, BRCB, URCB, LCB, GCB, USVCB, MSVCB) instance. Corresponds to one of the following: +- SGCBRef=LDName/LNName.SGCBName [SP], +- BRCBRef=LDName/LNName.BRCBName [BR], +- URCBRef=LDName/LNName.URCBName [RP], +- LCBRef=LDName/LNName.LCBName [LG], +- GoCBRef=LDName/LNName.GoCBName [GO], +- USVCBRef=LDName/LNName.USVCBName [US], +- MSVCBRef=LDName/LNName.MSVCBName [MS].', htmlDescription='

Path-name of the control block (SGCB, BRCB, URCB, LCB, GCB, USVCB, MSVCB) instance. Corresponds to one of the following:

  • SGCBRef=LDName/LNName.SGCBName [SP],
  • BRCBRef=LDName/LNName.BRCBName [BR],
  • URCBRef=LDName/LNName.URCBName [RP],
  • LCBRef=LDName/LNName.LCBName [LG],
  • GoCBRef=LDName/LNName.GoCBName [GO],
  • USVCBRef=LDName/LNName.USVCBName [US],
  • MSVCBRef=LDName/LNName.MSVCBName [MS].
'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1666, _eaTypeName=P_VISIBLE_STRING129, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,863 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::CBReference, _objData=UmlObjectData [id=3414, uuid={8A834972-A898-4f3a-8CF5-9896102F4C43}, since=null, name=CBName, alias=, stereotype=, visibility=public, txtDescription='Name of a BRCB or URCB instance, unambiguously identifying it within the scope of an LN, or name of an SGCB, LCB, GCB, USVCB or MSVCB instance, unambiguously identifying it within the scope of the LN0. To find out which control block it describes, use FC. Corresponds to one of the following: +- SGCBName = "SGCB", +- BRCBName, +- URCBName, +- LCBName, +- GoCBName, +- USVCBName, +- MSVCBName.', htmlDescription='

Name of a BRCB or URCB instance, unambiguously identifying it within the scope of an LN, or name of an SGCB, LCB, GCB, USVCB or MSVCB instance, unambiguously identifying it within the scope of the LN0. To find out which control block it describes, use FC. Corresponds to one of the following:

  • SGCBName = "SGCB",
  • BRCBName,
  • URCBName,
  • LCBName,
  • GoCBName,
  • USVCBName,
  • MSVCBName.
'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,864 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::CBReference, _objData=UmlObjectData [id=3415, uuid={801D665B-C42E-46a1-91D9-8131A8FA1630}, since=null, name=FC, alias=, stereotype=, visibility=public, txtDescription='Kind of control block described by this reference: +- ServiceFcKind.SP for SGCB, +- ServiceFcKind.BR for BRCB, +- ServiceFcKind.RP for URCB, +- ServiceFcKind.LG for LCB, +- ServiceFcKind.GO for GCB, +- ServiceFcKind.MS for MSVCB, +- ServiceFcKind.US for USVCB.', htmlDescription='

Kind of control block described by this reference:

  • ServiceFcKind.SP for SGCB,
  • ServiceFcKind.BR for BRCB,
  • ServiceFcKind.RP for URCB,
  • ServiceFcKind.LG for LCB,
  • ServiceFcKind.GO for GCB,
  • ServiceFcKind.MS for MSVCB,
  • ServiceFcKind.US for USVCB.
'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1699, _eaTypeName=ServiceFcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,864 [main] DEBUG ClassBuilder - Adding CBReference as subclass of LNReference +2024-09-08 15:11:35,864 [main] TRACE ClassBuilder - read from EA: ObjectReferences::CBReference +2024-09-08 15:11:35,864 [main] TRACE ClassBuilder - Class ServiceFcKind (8 in package ObjectReferences) +2024-09-08 15:11:35,864 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::ServiceFcKind, _objData=UmlObjectData [id=3416, uuid={2F543DEF-F532-436c-9D42-C64E87442953}, since=null, name=SP, alias=, stereotype=enum, visibility=public, txtDescription='Setpoint +Modelling note: This is the only functional constraint used for both DataAttribute (within FcKind) and services (within ServiceFcKind). In the context of services, it identifies an SGCB. +Implementation note: This one must be handled when interacting with MMS for SGCB (hard-coded) to distinguish it from the one used for DataAttributes. Since the name of the SGCB is "SGCB", and its fc=SP, and there will be one (or no) instance of SGCB within the LN, the following MMS reference should designate where the SGCB and its attributes start: "myLD/LLN0$SP$SGCB".', htmlDescription='

Setpoint

Modelling note: This is the only functional constraint used for both DataAttribute (within FcKind) and services (within ServiceFcKind). In the context of services, it identifies an SGCB.

Implementation note: This one must be handled when interacting with MMS for SGCB (hard-coded) to distinguish it from the one used for DataAttributes. Since the name of the SGCB is "SGCB", and its fc=SP, and there will be one (or no) instance of SGCB within the LN, the following MMS reference should designate where the SGCB and its attributes start: "myLD/LLN0$SP$SGCB".

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,865 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::ServiceFcKind, _objData=UmlObjectData [id=3417, uuid={B6D5F0C6-2DCD-4b57-9DF3-5FCC6A43041A}, since=null, name=BR, alias=, stereotype=enum, visibility=public, txtDescription='Buffered report - Attribute shall represent report control information of a BRCB whose value may be written and read. +Initial value shall be as configured; value shall be persistent.', htmlDescription='

Buffered report - Attribute shall represent report control information of a BRCB whose value may be written and read.

Initial value shall be as configured; value shall be persistent.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,865 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::ServiceFcKind, _objData=UmlObjectData [id=3418, uuid={84ECCAD9-38ED-4a56-8764-D3B964636DAA}, since=null, name=RP, alias=, stereotype=enum, visibility=public, txtDescription='Unbuffered report - Attribute shall represent report control information of a URCB whose value may be written and read. +Initial value shall be as configured; value shall be persistent.', htmlDescription='

Unbuffered report - Attribute shall represent report control information of a URCB whose value may be written and read.

Initial value shall be as configured; value shall be persistent.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,865 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::ServiceFcKind, _objData=UmlObjectData [id=3419, uuid={A7789B7A-AFD7-4050-8B89-68AE9943C706}, since=null, name=LG, alias=, stereotype=enum, visibility=public, txtDescription='Logging - Attribute shall represent log control information of a LCB whose value may be written and read. +Initial value shall be as configured; value shall be persistent.', htmlDescription='

Logging - Attribute shall represent log control information of a LCB whose value may be written and read.

Initial value shall be as configured; value shall be persistent.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,865 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::ServiceFcKind, _objData=UmlObjectData [id=3420, uuid={035D0B1A-7719-4ab5-9B93-BC6880629FD2}, since=null, name=GO, alias=, stereotype=enum, visibility=public, txtDescription='GOOSE control - Attribute shall represent goose control information of a GCB whose value may be written and read. +Initial value shall be as configured; value shall be persistent.', htmlDescription='

GOOSE control - Attribute shall represent goose control information of a GCB whose value may be written and read.

Initial value shall be as configured; value shall be persistent.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,865 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::ServiceFcKind, _objData=UmlObjectData [id=3421, uuid={0E8A4639-1A06-44d6-BD78-456F276956D5}, since=null, name=MS, alias=, stereotype=enum, visibility=public, txtDescription='Multicast sampled value control - Attribute shall represent sampled value control information of a MSVCB whose value may be written and read. +Initial value shall be as configured; value shall be persistent.', htmlDescription='

Multicast sampled value control - Attribute shall represent sampled value control information of a MSVCB whose value may be written and read.

Initial value shall be as configured; value shall be persistent.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,865 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::ServiceFcKind, _objData=UmlObjectData [id=3422, uuid={21046EB7-E2E3-44d9-A9D7-9C72DAE1D446}, since=null, name=US, alias=, stereotype=enum, visibility=public, txtDescription='Unicast sampled value control - Attribute shall represent sampled value control information of a USVCB whose value may be written and read. +Initial value shall be as configured; value shall be persistent.', htmlDescription='

Unicast sampled value control - Attribute shall represent sampled value control information of a USVCB whose value may be written and read.

Initial value shall be as configured; value shall be persistent.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,866 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::ServiceFcKind, _objData=UmlObjectData [id=3423, uuid={150A5A6D-9FF2-4148-907F-C231C6CB0EFC}, since=null, name=XX, alias=, stereotype=enum, visibility=public, txtDescription='Used as a wildcard in services, only, with the semantics: representing Attributes of any functional constraint.', htmlDescription='

Used as a wildcard in services, only, with the semantics: representing Attributes of any functional constraint.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,866 [main] TRACE ClassBuilder - read from EA: ObjectReferences::ServiceFcKind +2024-09-08 15:11:35,866 [main] TRACE ClassBuilder - Class LOGReference (9 in package ObjectReferences) +2024-09-08 15:11:35,866 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::LOGReference, _objData=UmlObjectData [id=3424, uuid={F7098AC8-CDAB-441c-AC10-33A78F44FF4A}, since=null, name=LogRef, alias=, stereotype=, visibility=public, txtDescription='Path-name of the LOG instance (= LDName/LNName.LogName).', htmlDescription='

Path-name of the LOG instance (= LDName/LNName.LogName).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1666, _eaTypeName=P_VISIBLE_STRING129, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,866 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::LOGReference, _objData=UmlObjectData [id=3425, uuid={E6AF9494-0CB6-469c-B908-B6EFD9D95BF2}, since=null, name=LogName, alias=, stereotype=, visibility=public, txtDescription='Name of a LOG instance, unambiguously identifying it within the scope of an LN0.', htmlDescription='

Name of a LOG instance, unambiguously identifying it within the scope of an LN0.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,866 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::LOGReference, _objData=UmlObjectData [id=3426, uuid={DA9F9473-FD92-4da5-85D5-D15BE37BADB8}, since=null, name=FC, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=LG, _eaTypeId=1699, _eaTypeName=ServiceFcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,867 [main] DEBUG ClassBuilder - Adding LOGReference as subclass of LNReference +2024-09-08 15:11:35,867 [main] TRACE ClassBuilder - read from EA: ObjectReferences::LOGReference +2024-09-08 15:11:35,867 [main] TRACE ClassBuilder - Class LNOwnedDSReference (10 in package ObjectReferences) +2024-09-08 15:11:35,867 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::LNOwnedDSReference, _objData=UmlObjectData [id=3427, uuid={3116B08C-7D30-4ec7-AC48-8E0C602D1640}, since=null, name=DSRef, alias=, stereotype=, visibility=public, txtDescription='Path-name of the ConfiguredDS or PersistentDS instance (= LDName/LNName.DSName).', htmlDescription='

Path-name of the ConfiguredDS or PersistentDS instance (= LDName/LNName.DSName).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1666, _eaTypeName=P_VISIBLE_STRING129, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,868 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::LNOwnedDSReference, _objData=UmlObjectData [id=3428, uuid={098059FE-54F8-4eef-805F-94F5F8358D6F}, since=null, name=DSName, alias=, stereotype=, visibility=public, txtDescription='Name of a DS instance, unambiguously identifying the DS within the scope of an LN.', htmlDescription='

Name of a DS instance, unambiguously identifying the DS within the scope of an LN.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,868 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2197, uuid={D8DD6FD7-E4C3-4a71-A7A7-6449EE515566}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=LNOwnedDSReference, _otherEndName=?] +2024-09-08 15:11:35,868 [main] DEBUG ClassBuilder - Adding LNOwnedDSReference as subclass of LNReference +2024-09-08 15:11:35,868 [main] TRACE ClassBuilder - read from EA: ObjectReferences::LNOwnedDSReference +2024-09-08 15:11:35,868 [main] TRACE ClassBuilder - Class FCDReference (11 in package ObjectReferences) +2024-09-08 15:11:35,868 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::FCDReference, _objData=UmlObjectData [id=3429, uuid={EAAE1C56-FED7-4d69-BF98-90C0809A9FB1}, since=null, name=FCDRef, alias=, stereotype=, visibility=public, txtDescription='Path-name of the PrimitiveCDC instance (i.e., data object when contained in LN, or sub-data object when contained in ComposedCDC), accompanied with a functional constraint (= [FC] DataRef).', htmlDescription='

Path-name of the PrimitiveCDC instance (i.e., data object when contained in LN, or sub-data object when contained in ComposedCDC), accompanied with a functional constraint (= [FC] DataRef).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1666, _eaTypeName=P_VISIBLE_STRING129, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,869 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::FCDReference, _objData=UmlObjectData [id=3430, uuid={2D72DE98-BB2A-44ad-B44D-45DEE23C6E0C}, since=null, name=FCDRefWithoutFC, alias=, stereotype=, visibility=public, txtDescription='Path-name of the PrimitiveCDC instance (contained in LN or in ComposedCDC) without functional constraint (= DataRef).', htmlDescription='

Path-name of the PrimitiveCDC instance (contained in LN or in ComposedCDC) without functional constraint (= DataRef).

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1666, _eaTypeName=P_VISIBLE_STRING129, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,869 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::FCDReference, _objData=UmlObjectData [id=3431, uuid={F261F75D-C2F6-4b2d-9261-38E92897916A}, since=null, name=FC, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,869 [main] DEBUG ClassBuilder - Adding FCDReference as subclass of CDCReference +2024-09-08 15:11:35,869 [main] TRACE ClassBuilder - read from EA: ObjectReferences::FCDReference +2024-09-08 15:11:35,869 [main] TRACE ClassBuilder - Class FCDAReference (12 in package ObjectReferences) +2024-09-08 15:11:35,869 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::FCDAReference, _objData=UmlObjectData [id=3432, uuid={5B3E1679-F475-4a48-B642-92D8EAC54344}, since=null, name=FCDARef, alias=, stereotype=, visibility=public, txtDescription='Path-name of the PrimitiveDA instance (i.e., leaf attribute contained in CDC or in ComposedDA) accompanied with a functional constraint and (if applicable) index within array (= [FC] DataAttrRef(m)).', htmlDescription='

Path-name of the PrimitiveDA instance (i.e., leaf attribute contained in CDC or in ComposedDA) accompanied with a functional constraint and (if applicable) index within array (= [FC] DataAttrRef(m)).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1666, _eaTypeName=P_VISIBLE_STRING129, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,869 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::FCDAReference, _objData=UmlObjectData [id=3433, uuid={71B22A59-B87D-4866-B0BD-DF359940497E}, since=null, name=FCDARefWithoutFC, alias=, stereotype=, visibility=public, txtDescription='Path-name of the PrimitiveDA instance (i.e., attribute contained in CDC or in ComposedDA) without functional constraint (= DataAttrRef).', htmlDescription='

Path-name of the PrimitiveDA instance (i.e., attribute contained in CDC or in ComposedDA) without functional constraint (= DataAttrRef).

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1667, _eaTypeName=P_VISIBLE_STRING255, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,871 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::FCDAReference, _objData=UmlObjectData [id=3434, uuid={39C98C0B-3EBC-457d-ADB8-6E0955A9AAAC}, since=null, name=LeafAttrName, alias=, stereotype=, visibility=public, txtDescription='Concatenation of one or more names of instances of DA, as follows: +1. For a PrimitiveDA, it is a single name. Example is "stVal" from the reference [ST] myLD3/XCBR1.Pos.stVal (where stVal is of type DpStatus:EnumDA). +2. For a ComposedDA, it is concatenation of two or more names, starting from the ComposedDA down to the PrimitiveDA it contains. One example is "cVal.mag.f" from the reference [MX] myLD3/MMXU1.PhV.phsA.cVal.mag.f. In this example: +- cVal is of type Vector:ComposedDA; one level further, +- cVal.mag is of type AnalogueValue:ComposedDA; one level further, +- cVal.mag.f is of type FLOAT32:PrimitiveDA. +Modelling note: Corresponds to DataAttributeName.[DataAttributeName...]. +Implementation note: After DataName and SubDataName of CDCReference have been correctly parsed, this is the concatenation of all names down to the leaf.', htmlDescription='

Concatenation of one or more names of instances of DA, as follows:

  1. For a PrimitiveDA, it is a single name. Example is "stVal" from the reference [ST] myLD3/XCBR1.Pos.stVal (where stVal is of type DpStatus:EnumDA).
  2. For a ComposedDA, it is concatenation of two or more names, starting from the ComposedDA down to the PrimitiveDA it contains. One example is "cVal.mag.f" from the reference [MX] myLD3/MMXU1.PhV.phsA.cVal.mag.f. In this example:
  • cVal is of type Vector:ComposedDA; one level further,
  • cVal.mag is of type AnalogueValue:ComposedDA; one level further,
  • cVal.mag.f is of type FLOAT32:PrimitiveDA.

Modelling note: Corresponds to DataAttributeName.[DataAttributeName...].

Implementation note: After DataName and SubDataName of CDCReference have been correctly parsed, this is the concatenation of all names down to the leaf.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,872 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ObjectReferences::FCDAReference, _objData=UmlObjectData [id=3435, uuid={4358ED41-699C-4b19-A10D-D41877B1B0FF}, since=null, name=NumArrayElement, alias=, stereotype=, visibility=public, txtDescription='If the reference contains an array of DAs or CDCs, this is the index of the array element (e.g., reference [MX] myHWYE1.phsAHar(3).cVal.mag.f references the value of cVal with NumArrayElement=3), ignored otherwise. +Modelling note: Corresponds to NumArrayElement in one of the following: +- LDName/LNName.DataObjectName[.SubDataObjectName(NumArrayElement)[. ...]].DataAttributeName[.SubDataAttributeName[. ...]] +- LDName/LNName.DataObjectName[.SubDataObjectName[. ...]].DataAttributeName[(NumArrayElement)][.SubDataAttributeName[. ...]] +- LDName/LNName.DataObjectName[.SubDataObjectName[. ...]].DataAttributeName(NumArrayElement)', htmlDescription='

If the reference contains an array of DAs or CDCs, this is the index of the array element (e.g., reference [MX] myHWYE1.phsAHar(3).cVal.mag.f references the value of cVal with NumArrayElement=3), ignored otherwise.

Modelling note: Corresponds to NumArrayElement in one of the following:

  • LDName/LNName.DataObjectName[.SubDataObjectName(NumArrayElement)[. ...]].DataAttributeName[.SubDataAttributeName[. ...]]
  • LDName/LNName.DataObjectName[.SubDataObjectName[. ...]].DataAttributeName[(NumArrayElement)][.SubDataAttributeName[. ...]]
  • LDName/LNName.DataObjectName[.SubDataObjectName[. ...]].DataAttributeName(NumArrayElement)
'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1661, _eaTypeName=P_INT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,872 [main] DEBUG ClassBuilder - Adding FCDAReference as subclass of FCDReference +2024-09-08 15:11:35,872 [main] TRACE ClassBuilder - read from EA: ObjectReferences::FCDAReference +2024-09-08 15:11:35,872 [main] INFO PackageBuilder - processing package DetailedDiagrams (0) ... +2024-09-08 15:11:35,873 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=DetailedDiagrams, _objData=UmlObjectData [id=203, uuid={A331E064-B559-441c-A56E-9A7DB01E7188}, since=null, name=ImplementationNotes-ComposedCDCs, alias=, stereotype=, visibility=public, txtDescription='(no doc)', htmlDescription='

(no doc)

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:35,873 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1707, uuid={676CE2C4-A1DA-47ad-9651-9F449F390614}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='NOT UPDATED TO ED.2 YET! +When communicating with an underlying MMS API and without the detailed CDC/LN model, but only through the MetaModel, there is no automatic way (e.g., through reflection) to distinguish composed from primitive CDCs. +Therefore, one would need to define a resource file holding somehow the three composed CDCs: +- WYE = {phsA, phsB, phsC, neut, net, res} +- DEL = {phsAB, phsBC, phsCA} and +- SEQ = {c1, c2, c3} +as well as triplets like in the right two notes below (either one or the other), and store these as hash maps.', htmlDescription='

NOT UPDATED TO ED.2 YET!

When communicating with an underlying MMS API and without the detailed CDC/LN model, but only through the MetaModel, there is no automatic way (e.g., through reflection) to distinguish composed from primitive CDCs.

Therefore, one would need to define a resource file holding somehow the three composed CDCs:

- WYE = {phsA, phsB, phsC, neut, net, res}

- DEL = {phsAB, phsBC, phsCA} and

- SEQ = {c1, c2, c3}

as well as triplets like in the right two notes below (either one or the other), and store these as hash maps.

'], _containingPackage=DetailedDiagrams, _otherEndName=] +2024-09-08 15:11:35,874 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=ObjectReferences, _depth=3, _eaElementID=1706, _objData=UmlObjectData [id=96, uuid={431DCB78-8654-440e-9A98-54860605771F}, since=null, name=DetailedDiagrams, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=58, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1707, uuid={676CE2C4-A1DA-47ad-9651-9F449F390614}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='NOT UPDATED TO ED.2 YET! +When communicating with an underlying MMS API and without the detailed CDC/LN model, but only through the MetaModel, there is no automatic way (e.g., through reflection) to distinguish composed from primitive CDCs. +Therefore, one would need to define a resource file holding somehow the three composed CDCs: +- WYE = {phsA, phsB, phsC, neut, net, res} +- DEL = {phsAB, phsBC, phsCA} and +- SEQ = {c1, c2, c3} +as well as triplets like in the right two notes below (either one or the other), and store these as hash maps.', htmlDescription='

NOT UPDATED TO ED.2 YET!

When communicating with an underlying MMS API and without the detailed CDC/LN model, but only through the MetaModel, there is no automatic way (e.g., through reflection) to distinguish composed from primitive CDCs.

Therefore, one would need to define a resource file holding somehow the three composed CDCs:

- WYE = {phsA, phsB, phsC, neut, net, res}

- DEL = {phsAB, phsBC, phsCA} and

- SEQ = {c1, c2, c3}

as well as triplets like in the right two notes below (either one or the other), and store these as hash maps.

'], _containingPackage=DetailedDiagrams, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=DetailedDiagrams, _objData=UmlObjectData [id=203, uuid={A331E064-B559-441c-A56E-9A7DB01E7188}, since=null, name=ImplementationNotes-ComposedCDCs, alias=, stereotype=, visibility=public, txtDescription='(no doc)', htmlDescription='

(no doc)

'], _portrait=true, _kind=LOGICAL]] +2024-09-08 15:11:35,874 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_2, _depth=2, _eaElementID=1682, _objData=UmlObjectData [id=95, uuid={C7D34776-13CF-4d1a-A441-C737F9FC7E0F}, since=null, name=ObjectReferences, alias=, stereotype=, visibility=public, txtDescription='Not explicitly defined in the standard. We define subtypes for P_ObjectReference type (which is just a string), so as to allow for validation per type of element. This is useful when there is no detailed LN/CDC/FCDA/DA model, and when an application receives only strings as references from the underlying MMS stack - it allows for easy building of the meta-model objects.', htmlDescription='

Not explicitly defined in the standard. We define subtypes for P_ObjectReference type (which is just a string), so as to allow for validation per type of element. This is useful when there is no detailed LN/CDC/FCDA/DA model, and when an application receives only strings as references from the underlying MMS stack - it allows for easy building of the meta-model objects.

'], _modelId=58, _selfDependent=false, 4_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1684, uuid={A20EACAA-52B0-4123-8FE8-AC7004CDFF73}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Implementation note: To identify ComposedCDCs from e.g. MMS strings (to correctly assign dataName and SubDataName), you have to construct the hashmap based on definitions from IEC 61850-7-3, since MMS does not provide information about PrimitiveCDC and ComposedCDC. See diagram ObjectReferences::ImlementationNotes-ComplexCDCs.', htmlDescription='

Implementation note: To identify ComposedCDCs from e.g. MMS strings (to correctly assign dataName and SubDataName), you have to construct the hashmap based on definitions from IEC 61850-7-3, since MMS does not provide information about PrimitiveCDC and ComposedCDC. See diagram ObjectReferences::ImlementationNotes-ComplexCDCs.

'], _containingPackage=ObjectReferences, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1690, uuid={3601A814-6336-4e81-A0C4-605A030114AF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Do have a better name for LNOwnedDSReference (and LNOwnedDS)?', htmlDescription='

TODO: Do have a better name for LNOwnedDSReference (and LNOwnedDS)?

'], _containingPackage=ObjectReferences, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1704, uuid={B91F5E3E-1FE7-42cc-B656-C9B2CCB194E9}, since=null, name=ObjectReferences : ObjectReferencesModellingNotes, alias=, stereotype=, visibility=public, txtDescription='ObjectReferences : ObjectReferencesModellingNotes', htmlDescription='

ObjectReferences : ObjectReferencesModellingNotes

'], _containingPackage=ObjectReferences, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1705, uuid={C0FD65FA-8022-455d-A4A4-9198F69255B4}, since=null, name=ObjectReferences : ImplementationNotes-ComposedCDCs, alias=, stereotype=, visibility=public, txtDescription='ObjectReferences : ImplementationNotes-ComposedCDCs', htmlDescription='

ObjectReferences : ImplementationNotes-ComposedCDCs

'], _containingPackage=ObjectReferences, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=ObjectReferences, _objData=UmlObjectData [id=201, uuid={5DEE7E4C-4C25-4a75-B590-A96364073A9E}, since=null, name=ObjectReferences, alias=, stereotype=, visibility=public, txtDescription='This diagram shows an overview of strongly typed object references, not explicitly specified in the standard.', htmlDescription='

This diagram shows an overview of strongly typed object references, not explicitly specified in the standard.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=1, _dependenciesAsTarget=2, _classes=11, _childPackages=1] +2024-09-08 15:11:35,874 [main] INFO PackageBuilder - processing package AttrValues (7) ... +2024-09-08 15:11:35,874 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=AttrValues, _objData=UmlObjectData [id=204, uuid={5B6649AF-5F96-4bae-8755-C501F26C4F08}, since=null, name=AttrValues, alias=, stereotype=, visibility=public, txtDescription='Diagram shows AttrValue abstract class and its subclasses, parallelling concrete types defined in the enumeration AttrValueKind. +The package also contains two types used in get services as formal arguments or return values.', htmlDescription='

Diagram shows AttrValue abstract class and its subclasses, parallelling concrete types defined in the enumeration AttrValueKind.

The package also contains two types used in get services as formal arguments or return values.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:35,874 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::AttrValues, _objData=UmlObjectData [id=3171, uuid={EA333334-32A1-48ab-9F19-ADED674571F6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,875 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::AttrValues, _objData=UmlObjectData [id=3300, uuid={66306DED-57E5-415a-9801-4DB8B70544E8}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,875 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::AttrValues->IEC61850_7_2::CoreTypes, _objData=UmlObjectData [id=3322, uuid={4007F42C-AD2B-4122-ADB0-BE0A33C62F71}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,875 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::AttrValues->IEC61850_7_2::ObjectReferences, _objData=UmlObjectData [id=3323, uuid={0B7067BC-EDBC-4ae5-AF55-5FBD1BE1F769}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,876 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1712, uuid={6B183322-A2BA-4c8c-A524-72DFE3024027}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: We have an option to replace all methods with attributes. This was implementation model and we never had public attributes, only public methods (so to be able to add e.g. events in the code when value changes). Having public attribute in the code is bad OO software design, because it becomes uncontrollable global variable...', htmlDescription='

TODO: We have an option to replace all methods with attributes. This was implementation model and we never had public attributes, only public methods (so to be able to add e.g. events in the code when value changes). Having public attribute in the code is bad OO software design, because it becomes uncontrollable global variable...

'], _containingPackage=AttrValues, _otherEndName=] +2024-09-08 15:11:35,876 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1713, uuid={14891725-B9B9-459d-9CD3-68EA062CCFC9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling notes: +In C/C++, you'll typically use a union, so we could stay with AttrValue class without subclasses. In an OO language, for a value (getVal() method return) type, or an equivalent attribute instead, we need to cast what is received from the underlying protocol stack to a specific primitive type, and continue working with that correctly typed value. We cannot use "void *" here as return value (or alternatively, attribute) type, because that is +This would have been a place to use UML parameterised class (corresponding to e.g., Java generics or C++ templates: AttrValue etc.). Type for return value could be parameter class (). For the implementation, we would not need the AttrValue subclasses, but for modelling still would (in UML: so called bindings, e.g. AttrValue would inherit from AttrValue), in order to explicitly specify applicable types. We cannot work with subtyping of primitives, because they don't have a common superclass. UML parameterised classes wouldn't bring us anything for modelling, so we avoided that somewhat advanced UML construct for the sake of simplicity.', htmlDescription='

Modelling notes:

In C/C++, you'll typically use a union, so we could stay with AttrValue class without subclasses. In an OO language, for a value (getVal() method return) type, or an equivalent attribute instead, we need to cast what is received from the underlying protocol stack to a specific primitive type, and continue working with that correctly typed value. We cannot use "void *" here as return value (or alternatively, attribute) type, because that is

This would have been a place to use UML parameterised class (corresponding to e.g., Java generics or C++ templates: AttrValue<T> etc.). Type for return value could be parameter class (<T>). For the implementation, we would not need the AttrValue subclasses, but for modelling still would (in UML: so called bindings, e.g. AttrValue<P_INT32U> would inherit from AttrValue<T>), in order to explicitly specify applicable types. We cannot work with subtyping of primitives, because they don't have a common superclass. UML parameterised classes wouldn't bring us anything for modelling, so we avoided that somewhat advanced UML construct for the sake of simplicity.

'], _containingPackage=AttrValues, _otherEndName=] +2024-09-08 15:11:35,876 [main] TRACE ClassBuilder - Class AttrValueKind (1 in package AttrValues) +2024-09-08 15:11:35,876 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3436, uuid={0CD618D6-9894-4ff8-BC73-423F6893A6A5}, since=null, name=P_BOOLEAN, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,876 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3437, uuid={6551C5E8-D6E9-49d5-9AF7-A7CB6CFF3B7A}, since=null, name=P_INT8, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,876 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3438, uuid={EADD9C1B-B2F3-4f4d-AE79-24D99E1B9CF3}, since=null, name=P_INT8U, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,877 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3439, uuid={48A227DF-953F-4b3d-A61B-C2F13533F51E}, since=null, name=P_INT16, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,877 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3440, uuid={53AB324D-B98F-4eda-B714-33C0D8546C51}, since=null, name=P_INT16U, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,877 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3441, uuid={A1C5625F-CF14-42eb-89D7-E965C05D4E05}, since=null, name=P_INT24U, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,877 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3442, uuid={41B37AC4-C6E3-4c3c-982E-0748EE076D1D}, since=null, name=P_INT32, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,877 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3443, uuid={DDAD6ABA-D92C-47da-8952-80F1F44B667E}, since=null, name=P_INT32U, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,877 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3444, uuid={C43183EC-848C-4a18-974D-39FAF587D5BB}, since=null, name=P_INT64, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,877 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3445, uuid={88992818-F730-42a6-A4EA-07B399C3B510}, since=null, name=P_FLOAT32, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,878 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3446, uuid={AC9E1A64-778C-4b51-B404-3CEA2673F0B0}, since=null, name=P_OCTET_STRING64, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,878 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3447, uuid={B7E4700E-57CD-471d-A7CB-F8187FAD8581}, since=null, name=P_VISIBLE_STRING64, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,878 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3448, uuid={3AF6EDF2-E22A-4422-B62B-530F48F0FBB6}, since=null, name=P_VISIBLE_STRING255, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,878 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3449, uuid={9658B919-5427-489d-A52B-A60B68BC8902}, since=null, name=P_UNICODE_STRING255, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,878 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3450, uuid={6F88E821-D670-4523-872E-7DDE609D3297}, since=null, name=P_TimeStamp, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,878 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3451, uuid={43CDF85A-8A50-45b9-86BC-B379EA3F8454}, since=null, name=Quality, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,878 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3452, uuid={F5F5EC82-34DD-42b7-8D3E-9E5992F28140}, since=null, name=P_ObjectReference, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,878 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3453, uuid={DCA0A1E1-F5A5-4b5d-80F8-555908D760AA}, since=null, name=P_PHYCOMADDR, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,879 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=AttrValues::AttrValueKind, _objData=UmlObjectData [id=3454, uuid={F943622C-C2DA-4ce0-A28D-781203285269}, since=null, name=P_TriggerConditions, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,879 [main] TRACE ClassBuilder - read from EA: AttrValues::AttrValueKind +2024-09-08 15:11:35,879 [main] TRACE ClassBuilder - Class AttrValue (2 in package AttrValues) +2024-09-08 15:11:35,879 [main] TRACE OperationBuilder - read from EA: OperationBuilder [_containingClass=AttrValue, _objData=UmlObjectData [id=7, uuid={AE278709-6801-41ab-B747-96509456D69B}, since=null, name=getType, alias=, stereotype=, visibility=public, txtDescription='Returns the type of this value.', htmlDescription='

Returns the type of this value.

'], _abstract=true, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=null, _eaReturnTypeId=1714, _eaReturnTypeName=AttrValueKind] +2024-09-08 15:11:35,880 [main] TRACE ClassBuilder - read from EA: AttrValues::AttrValue +2024-09-08 15:11:35,880 [main] TRACE ClassBuilder - Class AttrDefinition (22 in package AttrValues) +2024-09-08 15:11:35,880 [main] TRACE OperationBuilder - read from EA: OperationBuilder [_containingClass=AttrDefinition, _objData=UmlObjectData [id=46, uuid={C67D899D-E6F2-43a4-A6F8-1ECB42761E65}, since=null, name=getFcdaRef, alias=, stereotype=, visibility=public, txtDescription='Returns attribute's FCDAReference.', htmlDescription='

Returns attribute's FCDAReference.

'], _abstract=false, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=null, _eaReturnTypeId=1703, _eaReturnTypeName=FCDAReference] +2024-09-08 15:11:35,880 [main] TRACE OperationBuilder - read from EA: OperationBuilder [_containingClass=AttrDefinition, _objData=UmlObjectData [id=47, uuid={F41461CE-0224-4867-9FC5-05D412807A13}, since=null, name=getValType, alias=, stereotype=, visibility=public, txtDescription='Returns type of attribute's value.', htmlDescription='

Returns type of attribute's value.

'], _abstract=false, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=null, _eaReturnTypeId=1714, _eaReturnTypeName=AttrValueKind] +2024-09-08 15:11:35,880 [main] TRACE ClassBuilder - read from EA: AttrValues::AttrDefinition +2024-09-08 15:11:35,880 [main] TRACE ClassBuilder - Class NamedAttrValue (23 in package AttrValues) +2024-09-08 15:11:35,881 [main] TRACE OperationBuilder - read from EA: OperationBuilder [_containingClass=NamedAttrValue, _objData=UmlObjectData [id=48, uuid={129BA9AB-F84D-4f61-863F-E9AD33EC1D36}, since=null, name=getFcdaRef, alias=, stereotype=, visibility=public, txtDescription='Returns attribute's FCDAReference.', htmlDescription='

Returns attribute's FCDAReference.

'], _abstract=false, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=null, _eaReturnTypeId=1703, _eaReturnTypeName=FCDAReference] +2024-09-08 15:11:35,881 [main] TRACE OperationBuilder - read from EA: OperationBuilder [_containingClass=NamedAttrValue, _objData=UmlObjectData [id=49, uuid={91C84065-1E39-4d4a-8927-B426FCFEB686}, since=null, name=getVal, alias=, stereotype=, visibility=public, txtDescription='Returns attribute's value.', htmlDescription='

Returns attribute's value.

'], _abstract=false, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=null, _eaReturnTypeId=1715, _eaReturnTypeName=AttrValue] +2024-09-08 15:11:35,881 [main] TRACE ClassBuilder - read from EA: AttrValues::NamedAttrValue +2024-09-08 15:11:35,881 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_2, _depth=2, _eaElementID=1711, _objData=UmlObjectData [id=97, uuid={2BC6E948-C1D9-4e30-9568-7F9E4ECAF602}, since=null, name=AttrValues, alias=, stereotype=, visibility=public, txtDescription='This clause defines classes that hold primitive values with type information. They are all used for different get and set services that operate on leaf data attributes without knowledge of detailed data model (i.e., data attributes, functional constraints, common data classes and logical nodes). In particular, the abstract class AttrValue is also used within the meta-model's BasicDA to hold the actual value. This decoupling allows to instantiate meta-model classes from "raw" services provided by live servers, as well as from SCL instance file.', htmlDescription='

This clause defines classes that hold primitive values with type information. They are all used for different get and set services that operate on leaf data attributes without knowledge of detailed data model (i.e., data attributes, functional constraints, common data classes and logical nodes). In particular, the abstract class AttrValue is also used within the meta-model's BasicDA to hold the actual value. This decoupling allows to instantiate meta-model classes from "raw" services provided by live servers, as well as from SCL instance file.

'], _modelId=58, _selfDependent=false, 2_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1712, uuid={6B183322-A2BA-4c8c-A524-72DFE3024027}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: We have an option to replace all methods with attributes. This was implementation model and we never had public attributes, only public methods (so to be able to add e.g. events in the code when value changes). Having public attribute in the code is bad OO software design, because it becomes uncontrollable global variable...', htmlDescription='

TODO: We have an option to replace all methods with attributes. This was implementation model and we never had public attributes, only public methods (so to be able to add e.g. events in the code when value changes). Having public attribute in the code is bad OO software design, because it becomes uncontrollable global variable...

'], _containingPackage=AttrValues, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1713, uuid={14891725-B9B9-459d-9CD3-68EA062CCFC9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling notes: +In C/C++, you'll typically use a union, so we could stay with AttrValue class without subclasses. In an OO language, for a value (getVal() method return) type, or an equivalent attribute instead, we need to cast what is received from the underlying protocol stack to a specific primitive type, and continue working with that correctly typed value. We cannot use "void *" here as return value (or alternatively, attribute) type, because that is +This would have been a place to use UML parameterised class (corresponding to e.g., Java generics or C++ templates: AttrValue etc.). Type for return value could be parameter class (). For the implementation, we would not need the AttrValue subclasses, but for modelling still would (in UML: so called bindings, e.g. AttrValue would inherit from AttrValue), in order to explicitly specify applicable types. We cannot work with subtyping of primitives, because they don't have a common superclass. UML parameterised classes wouldn't bring us anything for modelling, so we avoided that somewhat advanced UML construct for the sake of simplicity.', htmlDescription='

Modelling notes:

In C/C++, you'll typically use a union, so we could stay with AttrValue class without subclasses. In an OO language, for a value (getVal() method return) type, or an equivalent attribute instead, we need to cast what is received from the underlying protocol stack to a specific primitive type, and continue working with that correctly typed value. We cannot use "void *" here as return value (or alternatively, attribute) type, because that is

This would have been a place to use UML parameterised class (corresponding to e.g., Java generics or C++ templates: AttrValue<T> etc.). Type for return value could be parameter class (<T>). For the implementation, we would not need the AttrValue subclasses, but for modelling still would (in UML: so called bindings, e.g. AttrValue<P_INT32U> would inherit from AttrValue<T>), in order to explicitly specify applicable types. We cannot work with subtyping of primitives, because they don't have a common superclass. UML parameterised classes wouldn't bring us anything for modelling, so we avoided that somewhat advanced UML construct for the sake of simplicity.

'], _containingPackage=AttrValues, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=AttrValues, _objData=UmlObjectData [id=204, uuid={5B6649AF-5F96-4bae-8755-C501F26C4F08}, since=null, name=AttrValues, alias=, stereotype=, visibility=public, txtDescription='Diagram shows AttrValue abstract class and its subclasses, parallelling concrete types defined in the enumeration AttrValueKind. +The package also contains two types used in get services as formal arguments or return values.', htmlDescription='

Diagram shows AttrValue abstract class and its subclasses, parallelling concrete types defined in the enumeration AttrValueKind.

The package also contains two types used in get services as formal arguments or return values.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=2, _dependenciesAsTarget=2, _classes=4 +2024-09-08 15:11:35,882 [main] INFO PackageBuilder - processing package BasicDAs (8) ... +2024-09-08 15:11:35,882 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=BasicDAs, _objData=UmlObjectData [id=205, uuid={E958D99A-04E8-4d71-B3E2-881E285B60E2}, since=null, name=BasicDAs, alias=, stereotype=, visibility=public, txtDescription='Shows all primitive data attributes with superclasses that define services (from Part 7-2).', htmlDescription='

Shows all primitive data attributes with superclasses that define services (from Part 7-2).

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:35,882 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::BasicDAs, _objData=UmlObjectData [id=2947, uuid={34CA4A5E-1E27-47e9-BA6A-04938395F510}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,882 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::BasicDAs, _objData=UmlObjectData [id=3063, uuid={3A733EFE-40F7-4e54-BAA6-405269B1FDDC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,883 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::BasicDAs->IEC61850_7_2::ACSIEnums, _objData=UmlObjectData [id=3298, uuid={F56ADDA0-372E-4056-B822-00216243BD63}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,883 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::BasicDAs->null, _objData=UmlObjectData [id=3299, uuid={79251C03-047F-49a4-8FBC-DA669F5E0A6A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,883 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::BasicDAs->IEC61850_7_2::AttrValues, _objData=UmlObjectData [id=3300, uuid={66306DED-57E5-415a-9801-4DB8B70544E8}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,883 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::BasicDAs->IEC61850_7_2::CoreTypes, _objData=UmlObjectData [id=3301, uuid={58E49D9F-1448-4082-AF53-C39A20175114}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,885 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1738, uuid={987E6C0E-BF15-4719-B21A-79267A56B63B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: May be more DA types needed (for 7-2 CDCs - not analysed yet).', htmlDescription='

TODO: May be more DA types needed (for 7-2 CDCs - not analysed yet).

'], _containingPackage=BasicDAs, _otherEndName=] +2024-09-08 15:11:35,885 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1739, uuid={7B5436EB-4D27-4e20-AC62-E425926FD970}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: +New types (not in Ed.1) are in green: +- INT24U is required for 61850-7-420 (SCR). +- PHYCOMADDR is new in Ed.2, for tracking CDCs.', htmlDescription='

Modelling note:

New types (not in Ed.1) are in green:

  • INT24U is required for 61850-7-420 (SCR).
  • PHYCOMADDR is new in Ed.2, for tracking CDCs.
'], _containingPackage=BasicDAs, _otherEndName=] +2024-09-08 15:11:35,885 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=1761, uuid={70C484F0-F4C0-481a-8E0A-779A50F8FA2D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=BasicDAs, _otherEndName=] +2024-09-08 15:11:35,885 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1762, uuid={824A4FE4-06C3-4d28-B5D5-E0393B87144C}, since=null, name=ACSIEnums : ACSIEnums, alias=, stereotype=, visibility=public, txtDescription='ACSIEnums : ACSIEnums', htmlDescription='

ACSIEnums : ACSIEnums

'], _containingPackage=BasicDAs, _otherEndName=] +2024-09-08 15:11:35,885 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1763, uuid={96D47867-4801-46a3-9334-C828BB8AB79C}, since=null, name=ObjectReferences : ObjectReferences, alias=, stereotype=, visibility=public, txtDescription='ObjectReferences : ObjectReferences', htmlDescription='

ObjectReferences : ObjectReferences

'], _containingPackage=BasicDAs, _otherEndName=] +2024-09-08 15:11:35,886 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1764, uuid={CDDB2815-C23A-43ef-9CD4-D977BA51D3D0}, since=null, name=CoreTypes : CoreTypes, alias=, stereotype=, visibility=public, txtDescription='CoreTypes : CoreTypes', htmlDescription='

CoreTypes : CoreTypes

'], _containingPackage=BasicDAs, _otherEndName=] +2024-09-08 15:11:35,886 [main] TRACE ClassBuilder - Class BOOLEAN (1 in package BasicDAs) +2024-09-08 15:11:35,886 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BasicDAs::BOOLEAN, _objData=UmlObjectData [id=3455, uuid={26303763-5425-4eb3-9E6B-A0E20714D69E}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,886 [main] TRACE ClassBuilder - read from EA: BasicDAs::BOOLEAN +2024-09-08 15:11:35,886 [main] TRACE ClassBuilder - Class INT16U (2 in package BasicDAs) +2024-09-08 15:11:35,886 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BasicDAs::INT16U, _objData=UmlObjectData [id=3458, uuid={5CAC1927-5377-434f-B9CF-DF014080FF25}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1659, _eaTypeName=P_INT16U, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,887 [main] TRACE ClassBuilder - read from EA: BasicDAs::INT16U +2024-09-08 15:11:35,887 [main] TRACE ClassBuilder - Class INT32 (3 in package BasicDAs) +2024-09-08 15:11:35,887 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BasicDAs::INT32, _objData=UmlObjectData [id=3460, uuid={8AB19364-EBA3-46e8-9A28-836D4BE3184E}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1656, _eaTypeName=P_INT32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,888 [main] TRACE ClassBuilder - read from EA: BasicDAs::INT32 +2024-09-08 15:11:35,888 [main] TRACE ClassBuilder - Class INT32U (4 in package BasicDAs) +2024-09-08 15:11:35,888 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BasicDAs::INT32U, _objData=UmlObjectData [id=3461, uuid={4E98F434-E893-4dd8-A976-1F47F85F096D}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1661, _eaTypeName=P_INT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,889 [main] TRACE ClassBuilder - read from EA: BasicDAs::INT32U +2024-09-08 15:11:35,889 [main] TRACE ClassBuilder - Class FLOAT32 (5 in package BasicDAs) +2024-09-08 15:11:35,889 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BasicDAs::FLOAT32, _objData=UmlObjectData [id=3456, uuid={0C453C24-788C-4b79-936D-F8ED7B6AC349}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1662, _eaTypeName=P_FLOAT32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,890 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2168, uuid={21EDCBE7-7D84-47c0-9FC1-19B43E26586E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=FLOAT32, _otherEndName=?] +2024-09-08 15:11:35,890 [main] TRACE ClassBuilder - read from EA: BasicDAs::FLOAT32 +2024-09-08 15:11:35,890 [main] TRACE ClassBuilder - Class UNICODE_STRING255 (6 in package BasicDAs) +2024-09-08 15:11:35,890 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BasicDAs::UNICODE_STRING255, _objData=UmlObjectData [id=3466, uuid={2D5EC3D2-2D30-4dcd-A716-1DDCC1D03618}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1663, _eaTypeName=P_UNICODE_STRING255, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,891 [main] TRACE ClassBuilder - read from EA: BasicDAs::UNICODE_STRING255 +2024-09-08 15:11:35,891 [main] TRACE ClassBuilder - Class VISIBLE_STRING255 (7 in package BasicDAs) +2024-09-08 15:11:35,891 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BasicDAs::VISIBLE_STRING255, _objData=UmlObjectData [id=3467, uuid={98E04197-6A6E-47dc-9801-656386DF6B28}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1667, _eaTypeName=P_VISIBLE_STRING255, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,891 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2166, uuid={4D18ADD4-1BA8-404b-8D95-DC3AA61AC6AD}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=VISIBLE_STRING255, _otherEndName=?] +2024-09-08 15:11:35,892 [main] TRACE ClassBuilder - read from EA: BasicDAs::VISIBLE_STRING255 +2024-09-08 15:11:35,892 [main] TRACE ClassBuilder - Class ObjectReference (15 in package BasicDAs) +2024-09-08 15:11:35,892 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BasicDAs::ObjectReference, _objData=UmlObjectData [id=3469, uuid={D656053C-0AC9-4b40-B071-8DCD708B0AF0}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1669, _eaTypeName=P_ObjectReference, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,892 [main] TRACE ClassBuilder - read from EA: BasicDAs::ObjectReference +2024-09-08 15:11:35,892 [main] TRACE ClassBuilder - Class PHYCOMADDR (16 in package BasicDAs) +2024-09-08 15:11:35,893 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BasicDAs::PHYCOMADDR, _objData=UmlObjectData [id=3470, uuid={601E9D69-6691-49ad-B034-6C76CA60A811}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1670, _eaTypeName=P_PHYCOMADDR, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,893 [main] TRACE ClassBuilder - read from EA: BasicDAs::PHYCOMADDR +2024-09-08 15:11:35,893 [main] TRACE ClassBuilder - Class TimeStamp (17 in package BasicDAs) +2024-09-08 15:11:35,893 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BasicDAs::TimeStamp, _objData=UmlObjectData [id=3471, uuid={3ABEB6F9-DB10-42c0-BB49-17EA3703AFBC}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1671, _eaTypeName=P_TimeStamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,893 [main] TRACE ClassBuilder - read from EA: BasicDAs::TimeStamp +2024-09-08 15:11:35,894 [main] TRACE ClassBuilder - Class TriggerConditions (18 in package BasicDAs) +2024-09-08 15:11:35,895 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [, _containingClass=TriggerConditions, _objData=UmlObjectData [id=206, uuid={ED500A2B-E7F0-4605-945F-0380F29C01D7}, since=null, name=Relation between trigger conditions, applicable trigger options and reporting, alias=, stereotype=, visibility=public, txtDescription='This diagram illustrates the relation between trigger conditions, applicable trigger options and reporting. The value of a data attribute that provides a specific trigger option (TrgOp) shall be monitored for reporting or logging if the report control block or the log control block, respectively has the specific trigger option (TrgOp) enabled. +In the Report Control Block 1, the TrgOp is dchg; the TrgOp of the first data attribute is dchg, dupd for the second, and qchg for the third data attribute. Reports of the Report Control Block 1 are sent on data changes only, because only dchg is enabled in the report control block. +In the Report Control Block 2, four trigger options are enabled. Therefore, all changes on respective data attributes will be reported (dchg for the first, dupd for the second, qchg for the third). In addition, a report will be sent on the expiration of the integrity period (see clause 17).', htmlDescription='

This diagram illustrates the relation between trigger conditions, applicable trigger options and reporting. The value of a data attribute that provides a specific trigger option (TrgOp) shall be monitored for reporting or logging if the report control block or the log control block, respectively has the specific trigger option (TrgOp) enabled.

In the Report Control Block 1, the TrgOp is dchg; the TrgOp of the first data attribute is dchg, dupd for the second, and qchg for the third data attribute. Reports of the Report Control Block 1 are sent on data changes only, because only dchg is enabled in the report control block.

In the Report Control Block 2, four trigger options are enabled. Therefore, all changes on respective data attributes will be reported (dchg for the first, dupd for the second, qchg for the third). In addition, a report will be sent on the expiration of the integrity period (see clause 17).

'], _portrait=true, _kind=CUSTOM] +2024-09-08 15:11:35,895 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=1758, uuid={69E28EB1-B299-4f6e-8446-73078B0B9916}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=TriggerConditions, _otherEndName=] +2024-09-08 15:11:35,895 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BasicDAs::TriggerConditions, _objData=UmlObjectData [id=3472, uuid={808EC92B-30E6-4882-A08E-64D4B5E48217}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1674, _eaTypeName=P_TriggerConditions, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,895 [main] TRACE ClassBuilder - read from EA: BasicDAs::TriggerConditions +2024-09-08 15:11:35,896 [main] TRACE ClassBuilder - Class DpStatus (19 in package BasicDAs) +2024-09-08 15:11:35,896 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BasicDAs::DpStatus, _objData=UmlObjectData [id=3473, uuid={B1D71CDD-86A6-4d33-A64E-6E6089FFAD0E}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1636, _eaTypeName=DpStatusKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,896 [main] TRACE ClassBuilder - read from EA: BasicDAs::DpStatus +2024-09-08 15:11:35,896 [main] TRACE ClassBuilder - Class BsControl (20 in package BasicDAs) +2024-09-08 15:11:35,896 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=BasicDAs::BsControl, _objData=UmlObjectData [id=3474, uuid={5CF376EC-A611-4feb-9E92-1A3A726D9788}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1635, _eaTypeName=BsControlKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,897 [main] TRACE ClassBuilder - read from EA: BasicDAs::BsControl +2024-09-08 15:11:35,897 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_2, _depth=2, _eaElementID=1737, _objData=UmlObjectData [id=98, uuid={FEA6A5F2-17EE-4d01-BBD1-186F04DFE39C}, since=null, name=BasicDAs, alias=Basic data attributes, stereotype=, visibility=public, txtDescription='Part 7-2, sec.5 +Primitive data attribute types.', htmlDescription='

Part 7-2, sec.5

Primitive data attribute types.

'], _modelId=58, _selfDependent=false, 6_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1738, uuid={987E6C0E-BF15-4719-B21A-79267A56B63B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: May be more DA types needed (for 7-2 CDCs - not analysed yet).', htmlDescription='

TODO: May be more DA types needed (for 7-2 CDCs - not analysed yet).

'], _containingPackage=BasicDAs, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1739, uuid={7B5436EB-4D27-4e20-AC62-E425926FD970}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: +New types (not in Ed.1) are in green: +- INT24U is required for 61850-7-420 (SCR). +- PHYCOMADDR is new in Ed.2, for tracking CDCs.', htmlDescription='

Modelling note:

New types (not in Ed.1) are in green:

  • INT24U is required for 61850-7-420 (SCR).
  • PHYCOMADDR is new in Ed.2, for tracking CDCs.
'], _containingPackage=BasicDAs, _otherEndName=], SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=1761, uuid={70C484F0-F4C0-481a-8E0A-779A50F8FA2D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=BasicDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1762, uuid={824A4FE4-06C3-4d28-B5D5-E0393B87144C}, since=null, name=ACSIEnums : ACSIEnums, alias=, stereotype=, visibility=public, txtDescription='ACSIEnums : ACSIEnums', htmlDescription='

ACSIEnums : ACSIEnums

'], _containingPackage=BasicDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1763, uuid={96D47867-4801-46a3-9334-C828BB8AB79C}, since=null, name=ObjectReferences : ObjectReferences, alias=, stereotype=, visibility=public, txtDescription='ObjectReferences : ObjectReferences', htmlDescription='

ObjectReferences : ObjectReferences

'], _containingPackage=BasicDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1764, uuid={CDDB2815-C23A-43ef-9CD4-D977BA51D3D0}, since=null, name=CoreTypes : CoreTypes, alias=, stereotype=, visibility=public, txtDescription='CoreTypes : CoreTypes', htmlDescription='

CoreTypes : CoreTypes

'], _containingPackage=BasicDAs, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=BasicDAs, _objData=UmlObjectData [id=205, uuid={E958D99A-04E8-4d71-B3E2-881E285B60E2}, since=null, name=BasicDAs, alias=, stereotype=, visibility=public, txtDescription='Shows all primitive data attributes with superclasses that define services (from Part 7-2).', htmlDescription='

Shows all primitive data attributes with superclasses that define services (from Part 7-2).

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=4, _dependenciesAsTarget=2, _classes=13 +2024-09-08 15:11:35,897 [main] INFO PackageBuilder - processing package AcsiTypes (9) ... +2024-09-08 15:11:35,897 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=AcsiTypes, _objData=UmlObjectData [id=207, uuid={CA618DB9-D548-4fc1-B2E7-2AE6F2EE786D}, since=null, name=AcsiTypes, alias=, stereotype=, visibility=public, txtDescription='Overview of packages, their contents and dependencies.', htmlDescription='

Overview of packages, their contents and dependencies.

'], _portrait=true, _kind=PACKAGE] +2024-09-08 15:11:35,897 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::AcsiTypes, _objData=UmlObjectData [id=3176, uuid={18113968-8A0F-43a2-8F30-9621210BBB79}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,898 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::AcsiTypes->IEC61850_7_2::CoreTypes, _objData=UmlObjectData [id=3297, uuid={FCD42B62-BC4F-4487-B6C7-E7E726D09A02}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,898 [main] INFO PackageBuilder - processing package CommonAcsiTypes (1) ... +2024-09-08 15:11:35,898 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=CommonAcsiTypes, _objData=UmlObjectData [id=208, uuid={9C0EB421-7334-4ece-ACC5-6C0E720E63B2}, since=null, name=CommonAcsiTypes, alias=, stereotype=, visibility=public, txtDescription='Types used only in CoreAcsi or MetaModel, but not in parts 7-3 and 7-4.', htmlDescription='

Types used only in CoreAcsi or MetaModel, but not in parts 7-3 and 7-4.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:35,898 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = AcsiTypes::CommonAcsiTypes->IEC61850_7_2::CoreTypes, _objData=UmlObjectData [id=3288, uuid={38E71389-9629-4cc5-9975-FC4214E837B4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,900 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1768, uuid={ED8223CD-9A7C-4260-9BF0-4C8591BFABCE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: We have modelled service errors, originally defined in 6.1.2.6 ServiceError type enumeration, as exceptions (instead of return parameters). Using exceptions allowed us for: +- an OO way of explicitly defining multiple "error" conditions, and, +- explicit specification of all "error" conditions that can apply to any one service. +We need to decide when working on services (CoreAcsi) on how to proceed with this: +- Keeping exceptions, adding enum, and an attribute on exception giving the corresponding enum literal/value? And also explicitly defining which exception(s) may apply to which service. +- Totally removing exceptions, and somehow incorporating negative response into classes used as return values from service formal arguments? +In every case, we must document the enumerated values, because the semantic of many of them is not clear to a (poor) software engineer...', htmlDescription='

TODO: We have modelled service errors, originally defined in 6.1.2.6 ServiceError type enumeration, as exceptions (instead of return parameters). Using exceptions allowed us for:

  • an OO way of explicitly defining multiple "error" conditions, and,
  • explicit specification of all "error" conditions that can apply to any one service.

We need to decide when working on services (CoreAcsi) on how to proceed with this:

  • Keeping exceptions, adding enum, and an attribute on exception giving the corresponding enum literal/value? And also explicitly defining which exception(s) may apply to which service.
  • Totally removing exceptions, and somehow incorporating negative response into classes used as return values from service formal arguments?

In every case, we must document the enumerated values, because the semantic of many of them is not clear to a (poor) software engineer...

'], _containingPackage=CommonAcsiTypes, _otherEndName=] +2024-09-08 15:11:35,900 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1769, uuid={3D82FEF1-77B0-4982-A9B8-0E99C62D3DF5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Update classes in blue to Ed.2. Possibly more to come after detailed analysis.', htmlDescription='

TODO: Update classes in blue to Ed.2. Possibly more to come after detailed analysis.

'], _containingPackage=CommonAcsiTypes, _otherEndName=] +2024-09-08 15:11:35,900 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1778, uuid={8C2A80C7-34D1-4797-977D-C78CF31CDE06}, since=null, name=CoreAcsi : CoreAcsi, alias=, stereotype=, visibility=public, txtDescription='CoreAcsi : CoreAcsi', htmlDescription='

CoreAcsi : CoreAcsi

'], _containingPackage=CommonAcsiTypes, _otherEndName=] +2024-09-08 15:11:35,900 [main] TRACE ClassBuilder - Class P_OCTET_STRING (0 in package CommonAcsiTypes) +2024-09-08 15:11:35,901 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = null->CommonAcsiTypes::P_OCTET_STRING, _objData=UmlObjectData [id=3424, uuid={BE25D6E1-D428-445f-B6CD-81B3E0FC5922}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], 1_taggedValues{dummyDepTag=}] +2024-09-08 15:11:35,901 [main] TRACE ClassBuilder - read from EA: CommonAcsiTypes::P_OCTET_STRING +2024-09-08 15:11:35,901 [main] TRACE ClassBuilder - Class IPAddress (2 in package CommonAcsiTypes) +2024-09-08 15:11:35,902 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CommonAcsiTypes::IPAddress, _objData=UmlObjectData [id=3475, uuid={28C574C1-8CFC-48da-A893-39B865E93E7A}, since=null, name=address, alias=, stereotype=, visibility=public, txtDescription='String value of this address.', htmlDescription='

String value of this address.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1665, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,902 [main] TRACE ClassBuilder - read from EA: CommonAcsiTypes::IPAddress +2024-09-08 15:11:35,902 [main] TRACE ClassBuilder - Class MulticastAddress (3 in package CommonAcsiTypes) +2024-09-08 15:11:35,902 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CommonAcsiTypes::MulticastAddress, _objData=UmlObjectData [id=3476, uuid={C721043C-0E9C-4aab-B84C-CD1963CF8571}, since=null, name=address, alias=, stereotype=, visibility=public, txtDescription='Destination MAC (Media Access Control) address to which a multicast sessage is to be sent. The address shall be an Ethernet address that has the multicast bit set true.', htmlDescription='

Destination MAC (Media Access Control) address to which a multicast sessage is to be sent. The address shall be an Ethernet address that has the multicast bit set true.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1665, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,903 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CommonAcsiTypes::MulticastAddress, _objData=UmlObjectData [id=3477, uuid={E27F3331-52B6-4f2d-B3EB-FADBC5F63EB2}, since=null, name=priority, alias=, stereotype=, visibility=public, txtDescription='Virtual LAN user priority. Shall be a single character from the range [0-7].', htmlDescription='

Virtual LAN user priority. Shall be a single character from the range [0-7].

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1658, _eaTypeName=P_INT8U, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,903 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CommonAcsiTypes::MulticastAddress, _objData=UmlObjectData [id=3478, uuid={E313732A-C2CB-4dbd-B5D6-C20398D08EAA}, since=null, name=vid, alias=, stereotype=, visibility=public, txtDescription='Virtual LAN ID. Shall be 3 characters from the range [0-9] and [A-F].', htmlDescription='

Virtual LAN ID. Shall be 3 characters from the range [0-9] and [A-F].

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1659, _eaTypeName=P_INT16U, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,903 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CommonAcsiTypes::MulticastAddress, _objData=UmlObjectData [id=3479, uuid={DE23C4C9-F440-4437-9F96-B5C3040716E9}, since=null, name=appid, alias=, stereotype=, visibility=public, txtDescription='Application identifier. Shall be 4 characters from the range [0-9] and [A-F].', htmlDescription='

Application identifier. Shall be 4 characters from the range [0-9] and [A-F].

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1659, _eaTypeName=P_INT16U, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,903 [main] DEBUG ClassBuilder - Updated source of class dependency DependencyBuilder [_kind=CLASS, qName = CommonAcsiTypes::MulticastAddress->CommonAcsiTypes::P_OCTET_STRING, _objData=UmlObjectData [id=3424, uuid={BE25D6E1-D428-445f-B6CD-81B3E0FC5922}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], 1_taggedValues{dummyDepTag=}] +2024-09-08 15:11:35,903 [main] TRACE ClassBuilder - read from EA: CommonAcsiTypes::MulticastAddress +2024-09-08 15:11:35,904 [main] TRACE ClassBuilder - Class Authentication (4 in package CommonAcsiTypes) +2024-09-08 15:11:35,904 [main] TRACE OperationBuilder - read from EA: OperationBuilder [_containingClass=Authentication, _objData=UmlObjectData [id=50, uuid={EF56EEFA-4DC1-4ce1-8567-805D0F17603A}, since=null, name=getPassword, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _abstract=false, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=null, _eaReturnTypeId=1665, _eaReturnTypeName=P_VISIBLE_STRING64] +2024-09-08 15:11:35,904 [main] TRACE OperationBuilder - read from EA: OperationBuilder [_containingClass=Authentication, _objData=UmlObjectData [id=51, uuid={2AF0B875-978F-4d0a-BEC1-B2DAA6C215AD}, since=null, name=geUserID, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _abstract=false, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=null, _eaReturnTypeId=1665, _eaReturnTypeName=P_VISIBLE_STRING64] +2024-09-08 15:11:35,904 [main] TRACE OperationBuilder - read from EA: OperationBuilder [_containingClass=Authentication, _objData=UmlObjectData [id=52, uuid={3DD3175C-C019-4f8a-A82F-1641C5702FFD}, since=null, name=getViews, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _abstract=false, _static=false, _final=false, _kind=OP_RET_ARRAY, _returnType=null, _eaReturnTypeId=1774, _eaReturnTypeName=AccessView] +2024-09-08 15:11:35,905 [main] DEBUG AssociationEndBuilder - Updated target type to Authentication +2024-09-08 15:11:35,905 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=911, uuid=b56a18e0-eacd-351a-a2a5-306b0f533204, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=912, uuid=2a9d121c-d9c3-3183-abb6-d2cc6bd7a8a7, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=Authentication, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3289, uuid={CAF47EAD-E095-4308-8875-40BFFEE47E22}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,905 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=911, uuid=b56a18e0-eacd-351a-a2a5-306b0f533204, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=912, uuid=2a9d121c-d9c3-3183-abb6-d2cc6bd7a8a7, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=Authentication, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3289, uuid={CAF47EAD-E095-4308-8875-40BFFEE47E22}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to CommonAcsiTypes::Authentication +2024-09-08 15:11:35,906 [main] DEBUG AssociationEndBuilder - Updated target type to Authentication +2024-09-08 15:11:35,906 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=914, uuid=7634ea65-a4e6-3904-9cfd-3f7de18e334a, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=915, uuid=24896ee4-c652-3356-8c12-7852413ea3b4, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=Authentication, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3290, uuid={31BEB254-DD54-415a-9492-3044318CA98D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,906 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=914, uuid=7634ea65-a4e6-3904-9cfd-3f7de18e334a, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=915, uuid=24896ee4-c652-3356-8c12-7852413ea3b4, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=Authentication, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3290, uuid={31BEB254-DD54-415a-9492-3044318CA98D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to CommonAcsiTypes::Authentication +2024-09-08 15:11:35,906 [main] DEBUG AssociationEndBuilder - Updated source type to Authentication +2024-09-08 15:11:35,907 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=917, uuid=da0d1111-d2dc-3d48-9242-e60ebcbaf988, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=Authentication, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=918, uuid=1e056d2b-0ebd-3c87-8c55-0da6ac5d3724, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..*], _navigable=yes], _objData=UmlObjectData [id=3291, uuid={073AC7A9-A1FE-4209-854E-FCD42DCF7B22}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] +2024-09-08 15:11:35,907 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=917, uuid=da0d1111-d2dc-3d48-9242-e60ebcbaf988, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=Authentication, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=918, uuid=1e056d2b-0ebd-3c87-8c55-0da6ac5d3724, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..*], _navigable=yes], _objData=UmlObjectData [id=3291, uuid={073AC7A9-A1FE-4209-854E-FCD42DCF7B22}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as source to CommonAcsiTypes::Authentication +2024-09-08 15:11:35,907 [main] DEBUG AssociationEndBuilder - Updated source type to Authentication +2024-09-08 15:11:35,907 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=920, uuid=1283c202-b766-3b73-88cd-d9914d6e38aa, since=null, name=privateAuth, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=Authentication, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=921, uuid=430c3626-b879-3400-9d41-b8a46172e0c0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=unspecified], _objData=UmlObjectData [id=3422, uuid={8E002563-61E8-49cf-87D8-44F188BB906E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,907 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=920, uuid=1283c202-b766-3b73-88cd-d9914d6e38aa, since=null, name=privateAuth, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=Authentication, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=921, uuid=430c3626-b879-3400-9d41-b8a46172e0c0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=unspecified], _objData=UmlObjectData [id=3422, uuid={8E002563-61E8-49cf-87D8-44F188BB906E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to CommonAcsiTypes::Authentication +2024-09-08 15:11:35,908 [main] DEBUG AssociationEndBuilder - Updated source type to Authentication +2024-09-08 15:11:35,908 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=923, uuid=a64baa44-3270-3c92-af89-f369eab89800, since=null, name=publicAuth, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Authentication, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=924, uuid=913fdbc9-c7e8-38b8-84b7-c3492b9bea64, since=null, name=publicEntryID, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=unspecified], _objData=UmlObjectData [id=3423, uuid={0B0CD019-7FF9-4655-A7A2-E9E78FFBE612}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,908 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=923, uuid=a64baa44-3270-3c92-af89-f369eab89800, since=null, name=publicAuth, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Authentication, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=924, uuid=913fdbc9-c7e8-38b8-84b7-c3492b9bea64, since=null, name=publicEntryID, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[?..?], _navigable=unspecified], _objData=UmlObjectData [id=3423, uuid={0B0CD019-7FF9-4655-A7A2-E9E78FFBE612}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to CommonAcsiTypes::Authentication +2024-09-08 15:11:35,908 [main] TRACE ClassBuilder - read from EA: CommonAcsiTypes::Authentication +2024-09-08 15:11:35,908 [main] TRACE ClassBuilder - Class AccessView (5 in package CommonAcsiTypes) +2024-09-08 15:11:35,909 [main] DEBUG AssociationEndBuilder - Updated target type to AccessView +2024-09-08 15:11:35,909 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=917, uuid=da0d1111-d2dc-3d48-9242-e60ebcbaf988, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=Authentication, _multiplicity=[?..?], _navigable=no], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=918, uuid=1e056d2b-0ebd-3c87-8c55-0da6ac5d3724, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=AccessView, _multiplicity=[1..*], _navigable=yes], _objData=UmlObjectData [id=3291, uuid={073AC7A9-A1FE-4209-854E-FCD42DCF7B22}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Source -> Destination, _directionUnspecified=false, _biDirectional=false] as target to CommonAcsiTypes::AccessView +2024-09-08 15:11:35,909 [main] TRACE ClassBuilder - read from EA: CommonAcsiTypes::AccessView +2024-09-08 15:11:35,909 [main] TRACE ClassBuilder - Class ReportID (7 in package CommonAcsiTypes) +2024-09-08 15:11:35,909 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CommonAcsiTypes::ReportID, _objData=UmlObjectData [id=3480, uuid={D961FAD3-CB7D-40b4-B627-CE6BEE60B02A}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1666, _eaTypeName=P_VISIBLE_STRING129, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,910 [main] DEBUG AssociationEndBuilder - Updated target type to ReportID +2024-09-08 15:11:35,910 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=920, uuid=1283c202-b766-3b73-88cd-d9914d6e38aa, since=null, name=privateAuth, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=Authentication, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=921, uuid=430c3626-b879-3400-9d41-b8a46172e0c0, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=ReportID, _multiplicity=[?..?], _navigable=unspecified], _objData=UmlObjectData [id=3422, uuid={8E002563-61E8-49cf-87D8-44F188BB906E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to CommonAcsiTypes::ReportID +2024-09-08 15:11:35,910 [main] TRACE ClassBuilder - read from EA: CommonAcsiTypes::ReportID +2024-09-08 15:11:35,910 [main] TRACE ClassBuilder - Class EntryID (8 in package CommonAcsiTypes) +2024-09-08 15:11:35,910 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CommonAcsiTypes::EntryID, _objData=UmlObjectData [id=3481, uuid={D3228FA9-B272-4ce2-B085-A15C466C9489}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1770, _eaTypeName=P_OCTET_STRING, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,911 [main] DEBUG AssociationEndBuilder - Updated target type to EntryID +2024-09-08 15:11:35,911 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=923, uuid=a64baa44-3270-3c92-af89-f369eab89800, since=null, name=publicAuth, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Authentication, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=924, uuid=913fdbc9-c7e8-38b8-84b7-c3492b9bea64, since=null, name=publicEntryID, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=EntryID, _multiplicity=[?..?], _navigable=unspecified], _objData=UmlObjectData [id=3423, uuid={0B0CD019-7FF9-4655-A7A2-E9E78FFBE612}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to CommonAcsiTypes::EntryID +2024-09-08 15:11:35,911 [main] TRACE ClassBuilder - read from EA: CommonAcsiTypes::EntryID +2024-09-08 15:11:35,911 [main] TRACE ClassBuilder - Class EntryTime (9 in package CommonAcsiTypes) +2024-09-08 15:11:35,912 [main] TRACE ClassBuilder - read from EA: CommonAcsiTypes::EntryTime +2024-09-08 15:11:35,912 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=AcsiTypes, _depth=3, _eaElementID=1767, _objData=UmlObjectData [id=100, uuid={D453AA70-1C81-4abd-88A9-F861958E6769}, since=null, name=CommonAcsiTypes, alias=, stereotype=, visibility=public, txtDescription='Types implicitly or explicitly defined throughout part 7-2, used only in CoreAcsi or MetaModel, but not in parts 7-3 and 7-4.', htmlDescription='

Types implicitly or explicitly defined throughout part 7-2, used only in CoreAcsi or MetaModel, but not in parts 7-3 and 7-4.

'], _modelId=58, _selfDependent=false, 3_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1768, uuid={ED8223CD-9A7C-4260-9BF0-4C8591BFABCE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: We have modelled service errors, originally defined in 6.1.2.6 ServiceError type enumeration, as exceptions (instead of return parameters). Using exceptions allowed us for: +- an OO way of explicitly defining multiple "error" conditions, and, +- explicit specification of all "error" conditions that can apply to any one service. +We need to decide when working on services (CoreAcsi) on how to proceed with this: +- Keeping exceptions, adding enum, and an attribute on exception giving the corresponding enum literal/value? And also explicitly defining which exception(s) may apply to which service. +- Totally removing exceptions, and somehow incorporating negative response into classes used as return values from service formal arguments? +In every case, we must document the enumerated values, because the semantic of many of them is not clear to a (poor) software engineer...', htmlDescription='

TODO: We have modelled service errors, originally defined in 6.1.2.6 ServiceError type enumeration, as exceptions (instead of return parameters). Using exceptions allowed us for:

  • an OO way of explicitly defining multiple "error" conditions, and,
  • explicit specification of all "error" conditions that can apply to any one service.

We need to decide when working on services (CoreAcsi) on how to proceed with this:

  • Keeping exceptions, adding enum, and an attribute on exception giving the corresponding enum literal/value? And also explicitly defining which exception(s) may apply to which service.
  • Totally removing exceptions, and somehow incorporating negative response into classes used as return values from service formal arguments?

In every case, we must document the enumerated values, because the semantic of many of them is not clear to a (poor) software engineer...

'], _containingPackage=CommonAcsiTypes, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1769, uuid={3D82FEF1-77B0-4982-A9B8-0E99C62D3DF5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Update classes in blue to Ed.2. Possibly more to come after detailed analysis.', htmlDescription='

TODO: Update classes in blue to Ed.2. Possibly more to come after detailed analysis.

'], _containingPackage=CommonAcsiTypes, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1778, uuid={8C2A80C7-34D1-4797-977D-C78CF31CDE06}, since=null, name=CoreAcsi : CoreAcsi, alias=, stereotype=, visibility=public, txtDescription='CoreAcsi : CoreAcsi', htmlDescription='

CoreAcsi : CoreAcsi

'], _containingPackage=CommonAcsiTypes, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=CommonAcsiTypes, _objData=UmlObjectData [id=208, uuid={9C0EB421-7334-4ece-ACC5-6C0E720E63B2}, since=null, name=CommonAcsiTypes, alias=, stereotype=, visibility=public, txtDescription='Types used only in CoreAcsi or MetaModel, but not in parts 7-3 and 7-4.', htmlDescription='

Types used only in CoreAcsi or MetaModel, but not in parts 7-3 and 7-4.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=1, _classes=8 +2024-09-08 15:11:35,912 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_2, _depth=2, _eaElementID=1765, _objData=UmlObjectData [id=99, uuid={25B40E58-28CB-491d-8FD2-AAF5420CAF67}, since=null, name=AcsiTypes, alias=, stereotype=, visibility=public, txtDescription='Types common to several ACSI sub-packages.', htmlDescription='

Types common to several ACSI sub-packages.

'], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=AcsiTypes, _objData=UmlObjectData [id=207, uuid={CA618DB9-D548-4fc1-B2E7-2AE6F2EE786D}, since=null, name=AcsiTypes, alias=, stereotype=, visibility=public, txtDescription='Overview of packages, their contents and dependencies.', htmlDescription='

Overview of packages, their contents and dependencies.

'], _portrait=true, _kind=PACKAGE]], _dependenciesAsSource=1, _dependenciesAsTarget=1, _childPackages=1] +2024-09-08 15:11:35,913 [main] INFO PackageBuilder - processing package MetaModel (10) ... +2024-09-08 15:11:35,913 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=MetaModel, _objData=UmlObjectData [id=218, uuid={EA8FE1C2-3BBB-4b1a-A375-D361A61B8806}, since=null, name=MetaModelClasses, alias=, stereotype=, visibility=public, txtDescription='Overview of meta-model classes. We emphasize two groups of meta-model classes: +- Within the blue frame are those classes that are refined in parts 7-3 and 7-4, i.e., those that represent the data model. +- Within the pink frame are the classes that directly manipulate or refer to the data of logical nodes. +The other classes are control blocks, fully defined in IEC61850-2.', htmlDescription='

Overview of meta-model classes. We emphasize two groups of meta-model classes:

  • Within the blue frame are those classes that are refined in parts 7-3 and 7-4, i.e., those that represent the data model.
  • Within the pink frame are the classes that directly manipulate or refer to the data of logical nodes.

The other classes are control blocks, fully defined in IEC61850-2.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:35,913 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=MetaModel, _objData=UmlObjectData [id=219, uuid={60A801DD-2905-46a7-AEE1-1F7B4914E50C}, since=null, name=MetaModelRelationships, alias=, stereotype=, visibility=public, txtDescription='The full representation of all ACSI relationships, as defined in Part 7-2.', htmlDescription='

The full representation of all ACSI relationships, as defined in Part 7-2.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:35,913 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=MetaModel, _objData=UmlObjectData [id=220, uuid={C831274A-F7F7-46d5-8FEC-95178AC6650E}, since=null, name=MetaModelNaming, alias=, stereotype=, visibility=public, txtDescription='Shows naming hierarchy. Highlighted classes are not explicitly defined in the standard.', htmlDescription='

Shows naming hierarchy. Highlighted classes are not explicitly defined in the standard.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:35,914 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=MetaModel, _objData=UmlObjectData [id=217, uuid={14C7D050-A508-40f5-95B8-5C83BBADB168}, since=null, name=MetaModelDataModel, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the subset of the meta-model with details about LNs and their data. Hyperlinks are provided to an example, and to definitions of concrete classes deriving from the meta-model (in parts 7-4 and 7-3).', htmlDescription='

This diagram shows the subset of the meta-model with details about LNs and their data. Hyperlinks are provided to an example, and to definitions of concrete classes deriving from the meta-model (in parts 7-4 and 7-3).

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:35,914 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=MetaModel, _objData=UmlObjectData [id=221, uuid={30729B8C-2FAA-41b6-B913-DD00F5E640FC}, since=null, name=MetaModelDataSetsAndControlBlocks, alias=, stereotype=, visibility=public, txtDescription='Shows data sets and control blocks defined in IEC61850-7-2. Highlighted classes are not explicitly defined in the standard.', htmlDescription='

Shows data sets and control blocks defined in IEC61850-7-2. Highlighted classes are not explicitly defined in the standard.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:35,914 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::MetaModel, _objData=UmlObjectData [id=2549, uuid={8DDA0A46-B4B5-429b-B942-52E274F06ACA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,914 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::MetaModel, _objData=UmlObjectData [id=2612, uuid={22858E00-8E19-47ff-8008-4F59161AEA7F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,915 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::MetaModel, _objData=UmlObjectData [id=2940, uuid={E5F4FF55-D88D-4216-BB8C-AFDA680AADE9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,916 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::MetaModel, _objData=UmlObjectData [id=2948, uuid={2EB94D27-B372-4888-A920-88C823F08BBD}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,916 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_2::MetaModel, _objData=UmlObjectData [id=3061, uuid={56397421-AB0D-4458-80FC-5FB07F2DD3F2}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,916 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::MetaModel->IEC61850_7_2::AttrValues, _objData=UmlObjectData [id=3171, uuid={EA333334-32A1-48ab-9F19-ADED674571F6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,916 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::MetaModel->IEC61850_7_2::ObjectReferences, _objData=UmlObjectData [id=3172, uuid={C5C582B9-299E-483d-9480-D0C500F8176D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,918 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::MetaModel->IEC61850_7_2::TriggerOptions, _objData=UmlObjectData [id=3173, uuid={855C6728-1BC9-4283-8A19-59ADC04C72DF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,918 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::MetaModel->IEC61850_7_2::CoreTypes, _objData=UmlObjectData [id=3174, uuid={5FE3C8F2-1E89-4705-9543-F7961C8261AE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,918 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::MetaModel->IEC61850_7_2::FunctionalConstraints, _objData=UmlObjectData [id=3175, uuid={24606FEA-EE8B-41c7-B098-E006E81B3F44}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,918 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::MetaModel->IEC61850_7_2::AcsiTypes, _objData=UmlObjectData [id=3176, uuid={18113968-8A0F-43a2-8F30-9621210BBB79}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,918 [main] DEBUG PackageBuilder - Updated target of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::BasicDAs->IEC61850_7_2::MetaModel, _objData=UmlObjectData [id=3299, uuid={79251C03-047F-49a4-8FBC-DA669F5E0A6A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:35,920 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1830, uuid={D543D4D9-E49F-40ad-B995-3A107B4BD536}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- Directory services should be allowed for FC=SE as well - this is currently not the case according to 61850-7-3, Ed.2.', htmlDescription='

TODO:

  • Directory services should be allowed for FC=SE as well - this is currently not the case according to 61850-7-3, Ed.2.
'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:11:35,921 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1831, uuid={8C76A17B-E8A6-4ec6-8298-D8261FE3C0F4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: Classes *IEC61850Object have been introduced to facilitate instantiation of a meta-model for the use case where no SCL is available (e.g., when connecting directly to one or more IEDs with IEC61850 ACSI SERVERs without any previous configuration).', htmlDescription='

Modelling note: Classes *IEC61850Object have been introduced to facilitate instantiation of a meta-model for the use case where no SCL is available (e.g., when connecting directly to one or more IEDs with IEC61850 ACSI SERVERs without any previous configuration).

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:11:35,921 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1833, uuid={1695C190-3DB9-46c9-B2A3-463C26BEF9DD}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Except for SGCB, control blocks refer to a data set and listen to changes in the values of data set members (i.e., leaf attributes when unfolding logical nodes' data) in order to produce some event: +- RCBs produce reports on data value changes as appropriate for non-time-critical clients +- LCBs produce log entries +- GCBs produce GOOSE messages (similar to RCB reports, but for time-critical clients) +- SVCBs produce messages containing sampled values (also for time-critical clients). +Finally, SGCB models the ability to edit IED settings (e.g., configuration parameters for protection algorithms) - they also work on leaf attributes of logical nodes, but those are not specified in a data set. +Modelling note: Control blocks in this MetaModel provide pure navigation capability, while their configuration by client is available as ACSI service. It is up to applications to extend this MetaModel in the desired way to implement the functionality similar to that provided by ACSI services.', htmlDescription='

Except for SGCB, control blocks refer to a data set and listen to changes in the values of data set members (i.e., leaf attributes when unfolding logical nodes' data) in order to produce some event:

- RCBs produce reports on data value changes as appropriate for non-time-critical clients

- LCBs produce log entries

- GCBs produce GOOSE messages (similar to RCB reports, but for time-critical clients)

- SVCBs produce messages containing sampled values (also for time-critical clients).

Finally, SGCB models the ability to edit IED settings (e.g., configuration parameters for protection algorithms) - they also work on leaf attributes of logical nodes, but those are not specified in a data set.

Modelling note: Control blocks in this MetaModel provide pure navigation capability, while their configuration by client is available as ACSI service. It is up to applications to extend this MetaModel in the desired way to implement the functionality similar to that provided by ACSI services.

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:11:35,923 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1834, uuid={0E537513-A86C-4374-B08C-A61D599461C5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Datasets are list of signal references, used for logging and eventing on data and/or quality change. They allow the application to "read" that list of references once, and then receive value updates as ordered lists of values. In the meta-model, datasets contain thus only information on contained references, as well as the naming-related services. Communication services are defined in CoreAcsi API.', htmlDescription='

Datasets are list of signal references, used for logging and eventing on data and/or quality change. They allow the application to "read" that list of references once, and then receive value updates as ordered lists of values. In the meta-model, datasets contain thus only information on contained references, as well as the naming-related services. Communication services are defined in CoreAcsi API.

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:11:35,923 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1878, uuid={049E7F63-9C87-465e-9BF6-5E03046F685B}, since=null, name=DerivedCDCs : DerivedCDCs, alias=, stereotype=, visibility=public, txtDescription='DerivedCDCs : DerivedCDCs', htmlDescription='

DerivedCDCs : DerivedCDCs

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:11:35,923 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1879, uuid={05AAA379-8620-4bf0-9374-95F42FAFA135}, since=null, name=MetaModel :MetaModelFCsAndTrgOps, alias=, stereotype=, visibility=public, txtDescription='MetaModel : MetaModelFCsAndTrgOps', htmlDescription='

MetaModel : MetaModelFCsAndTrgOps

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:11:35,924 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1880, uuid={112FC848-042A-4696-99ED-8E35A13F87A4}, since=null, name=MetaModel :MetaModelNaming, alias=, stereotype=, visibility=public, txtDescription='MetaModel : MetaModelNaming', htmlDescription='

MetaModel : MetaModelNaming

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:11:35,924 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1881, uuid={2200A07E-E0BC-46ee-B7FB-832A35C51ACB}, since=null, name=LogicalNodeEnums :DOEnums-1, alias=, stereotype=, visibility=public, txtDescription='DOEnums : DOEnums-1', htmlDescription='

DOEnums : DOEnums-1

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:11:35,924 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1882, uuid={3CEEBEF3-65F0-45bf-956A-AAFF0BB39A6E}, since=null, name=BasicDAs : BasicDAs, alias=, stereotype=, visibility=public, txtDescription='BasicDAs : BasicDAs', htmlDescription='

BasicDAs : BasicDAs

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:11:35,938 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1883, uuid={3D42A8E2-6E81-482d-B902-79859AB23652}, since=null, name=LogicalNodes : LogicalNodes, alias=, stereotype=, visibility=public, txtDescription='LogicalNodes : LogicalNodes', htmlDescription='

LogicalNodes : LogicalNodes

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:11:35,939 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1884, uuid={4651CC45-E97C-474c-96E5-E964AEE537AE}, since=null, name=CommonDataClasses : CommonDataClasses, alias=, stereotype=, visibility=public, txtDescription='CommonDataClasses : CommonDataClasses', htmlDescription='

CommonDataClasses : CommonDataClasses

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:11:35,939 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1885, uuid={485DE912-F88A-4727-ABC3-E12BDD3137CA}, since=null, name=IEC61850 : DataModelExample, alias=, stereotype=, visibility=public, txtDescription='IEC61850 : DataModelExample', htmlDescription='

IEC61850 : DataModelExample

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:11:35,939 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1886, uuid={4F5B7A51-D0D5-46eb-9755-D89E38C8D44A}, since=null, name=DerivedDAs : DerivedDAs, alias=, stereotype=, visibility=public, txtDescription='DerivedDAs : DerivedDAs', htmlDescription='

DerivedDAs : DerivedDAs

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:11:35,939 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1887, uuid={7010DA64-6EFF-4ecc-906B-D63D21B68B3D}, since=null, name=LogicalNodeEnums :DOEnums-3, alias=, stereotype=, visibility=public, txtDescription='DOEnums : DOEnums-3', htmlDescription='

DOEnums : DOEnums-3

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:11:35,940 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1888, uuid={77539A0B-E854-4966-82D3-2AC914854572}, since=null, name=DAEnums : DAEnums-1, alias=, stereotype=, visibility=public, txtDescription='DAEnums : DAEnums-1', htmlDescription='

DAEnums : DAEnums-1

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:11:35,940 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1889, uuid={777613E1-5BED-4530-A6C1-909690FCEF4E}, since=null, name=ObjectReferences : ObjectReferences, alias=, stereotype=, visibility=public, txtDescription='ObjectReferences : ObjectReferences', htmlDescription='

ObjectReferences : ObjectReferences

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:11:35,940 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1890, uuid={82D225D9-1F34-4a05-840E-0EA119432E5C}, since=null, name=CoreTypes : CoreTypes, alias=, stereotype=, visibility=public, txtDescription='CoreTypes : CoreTypes', htmlDescription='

CoreTypes : CoreTypes

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:11:35,940 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1891, uuid={86223FF2-1449-43c7-83BA-3DB43365033B}, since=null, name=ConstructedDAs : ConstructedDAs, alias=, stereotype=, visibility=public, txtDescription='ConstructedDAs : ConstructedDAs', htmlDescription='

ConstructedDAs : ConstructedDAs

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:11:35,940 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1892, uuid={A298ABDC-AA9E-4b4b-8B6A-E5C5C539F90F}, since=null, name=LogicalNodeEnums :DOEnums-2, alias=, stereotype=, visibility=public, txtDescription='DOEnums : DOEnums-2', htmlDescription='

DOEnums : DOEnums-2

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:11:35,940 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=1893, uuid={A34DDCC5-BBB7-443d-92EF-22F3B2CADE16}, since=null, name=Data model (logical nodes, common data classes, functionally constrained data attributes and data attributes), alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:11:35,940 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1894, uuid={B2AD30FE-ADAE-495a-8589-272241F89E2F}, since=null, name=FCDAs : FCDAs, alias=, stereotype=, visibility=public, txtDescription='FCDAs : FCDAs', htmlDescription='

FCDAs : FCDAs

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:11:35,941 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1895, uuid={B4020DF2-0ADE-443d-82D1-19018AF93AEE}, since=null, name=ImplicitDAs : ImplicitDAs, alias=, stereotype=, visibility=public, txtDescription='ImplicitDAs : ImplicitDAs', htmlDescription='

ImplicitDAs : ImplicitDAs

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:11:35,941 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1896, uuid={C1318DFD-188F-43f2-9064-60021D23A7AF}, since=null, name=MetaModel :MetaModelDataSetsAndControlBlocks, alias=, stereotype=, visibility=public, txtDescription='MetaModel : MetaModelDataSetsAndControlBlocks', htmlDescription='

MetaModel : MetaModelDataSetsAndControlBlocks

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:11:35,941 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1897, uuid={C39E2CF4-C5E8-4816-8777-01F58112789C}, since=null, name=MetaModel : MetaModelDataModel, alias=, stereotype=, visibility=public, txtDescription='MetaModel : MetaModelDataModel', htmlDescription='

MetaModel : MetaModelDataModel

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:11:35,941 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=1898, uuid={F6822C92-5DD8-48be-A724-A584C56FF7E0}, since=null, name=Directly related to data model, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:11:35,941 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1899, uuid={F6EF86F0-4241-402f-84DB-0F3BACF329BA}, since=null, name=MetaModel :MetaModelRelationships, alias=, stereotype=, visibility=public, txtDescription='MetaModel : MetaModelRelationships', htmlDescription='

MetaModel : MetaModelRelationships

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:11:35,942 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1900, uuid={FFAB6E12-0255-4fed-A1DB-D18F797B7AED}, since=null, name=DAEnums : DAEnums-2, alias=, stereotype=, visibility=public, txtDescription='DAEnums : DAEnums-2', htmlDescription='

DAEnums : DAEnums-2

'], _containingPackage=MetaModel, _otherEndName=] +2024-09-08 15:11:35,942 [main] TRACE ClassBuilder - Class IEC61850Object (1 in package MetaModel) +2024-09-08 15:11:35,942 [main] TRACE ClassBuilder - read from EA: MetaModel::IEC61850Object +2024-09-08 15:11:35,942 [main] TRACE ClassBuilder - Class HierarchyIEC61850Object (2 in package MetaModel) +2024-09-08 15:11:35,942 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::HierarchyIEC61850Object, _objData=UmlObjectData [id=3584, uuid={C32A6B6B-F4DC-4498-A469-C006B9625420}, since=null, name=parent, alias=, stereotype=, visibility=public, txtDescription='Parent of this hierarchy object.', htmlDescription='

Parent of this hierarchy object.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1835, _eaTypeName=IEC61850Object, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,943 [main] DEBUG ClassBuilder - Adding HierarchyIEC61850Object as subclass of IEC61850Object +2024-09-08 15:11:35,943 [main] TRACE ClassBuilder - read from EA: MetaModel::HierarchyIEC61850Object +2024-09-08 15:11:35,943 [main] TRACE ClassBuilder - Class NamedIEC61850Object (3 in package MetaModel) +2024-09-08 15:11:35,943 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::NamedIEC61850Object, _objData=UmlObjectData [id=3585, uuid={E8F8F2B7-045C-402f-BA7A-4880C9570B06}, since=null, name=objName, alias=, stereotype=, visibility=public, txtDescription='Object name.', htmlDescription='

Object name.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,944 [main] DEBUG ClassBuilder - Adding NamedIEC61850Object as subclass of HierarchyIEC61850Object +2024-09-08 15:11:35,944 [main] TRACE ClassBuilder - read from EA: MetaModel::NamedIEC61850Object +2024-09-08 15:11:35,944 [main] TRACE ClassBuilder - Class IED (4 in package MetaModel) +2024-09-08 15:11:35,944 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::IED, _objData=UmlObjectData [id=3586, uuid={E22C75AC-F551-4b8c-B5E7-24BE86D31EF0}, since=null, name=name, alias=, stereotype=, visibility=public, txtDescription='Name of this IED, unambiguously identifying it within the substation. +Modelling note: This is not defined in the standard, but is useful in applications that deal with more then one IED.', htmlDescription='

Name of this IED, unambiguously identifying it within the substation.

Modelling note: This is not defined in the standard, but is useful in applications that deal with more then one IED.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1665, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,945 [main] DEBUG AssociationEndBuilder - Updated source type to IED +2024-09-08 15:11:35,945 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=977, uuid=cb169ad4-3224-3879-b41c-caa51a820c58, since=null, name=IED, alias=, stereotype=, visibility=public, txtDescription='IED providing this server.', htmlDescription='

IED providing this server.

'], _type=IED, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=978, uuid=cd79ff9a-2c41-3e45-a4c2-d1f848c67f94, since=null, name=SERVERs, alias=, stereotype=, visibility=public, txtDescription='All servers within this IED.', htmlDescription='

All servers within this IED.

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3249, uuid={7678C3FF-3EEF-4837-A876-DC57EC8A839A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,945 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=977, uuid=cb169ad4-3224-3879-b41c-caa51a820c58, since=null, name=IED, alias=, stereotype=, visibility=public, txtDescription='IED providing this server.', htmlDescription='

IED providing this server.

'], _type=IED, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=978, uuid=cd79ff9a-2c41-3e45-a4c2-d1f848c67f94, since=null, name=SERVERs, alias=, stereotype=, visibility=public, txtDescription='All servers within this IED.', htmlDescription='

All servers within this IED.

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3249, uuid={7678C3FF-3EEF-4837-A876-DC57EC8A839A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::IED +2024-09-08 15:11:35,945 [main] DEBUG ClassBuilder - Adding IED as subclass of HierarchyIEC61850Object +2024-09-08 15:11:35,946 [main] TRACE ClassBuilder - read from EA: MetaModel::IED +2024-09-08 15:11:35,946 [main] TRACE ClassBuilder - Class SERVER (5 in package MetaModel) +2024-09-08 15:11:35,946 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::SERVER, _objData=UmlObjectData [id=3587, uuid={060F6381-464E-42a5-AECB-7413FD53EB45}, since=null, name=name, alias=, stereotype=, visibility=public, txtDescription='Name of this server, unambiguously identifying it within an IED. +Modelling note: This is not defined in the standard, but is useful in applications that deal with more then one SERVER per IED.', htmlDescription='

Name of this server, unambiguously identifying it within an IED.

Modelling note: This is not defined in the standard, but is useful in applications that deal with more then one SERVER per IED.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1665, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,947 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::SERVER, _objData=UmlObjectData [id=3588, uuid={8C8AC9D6-5A54-4110-A15C-61F37484AB7D}, since=null, name=serviceAccessPoints, alias=, stereotype=, visibility=public, txtDescription='All service access points of the server, unambiguously identifying it within a system. +Modelling note 1: Corresponds to SERVER.ServiceAccessPoint. +Modelling note 2: Original documentation reads: "Shall identify a SERVER within the scope of a system. NOTE: The ServiceAccessPoint is an abstraction of an address used to identify the server in the underlying SCSM. The type depends on the SCSM and shall be defined there. Although most services require a specific ServiceAccessPoint to address a server, it has not been included explicitly in the service parameter tables throughout this part of the standard." Currently, here is defined the type IPAddress; see also MulticastAddress.', htmlDescription='

All service access points of the server, unambiguously identifying it within a system.

Modelling note 1: Corresponds to SERVER.ServiceAccessPoint.

Modelling note 2: Original documentation reads: "Shall identify a SERVER within the scope of a system. NOTE: The ServiceAccessPoint is an abstraction of an address used to identify the server in the underlying SCSM. The type depends on the SCSM and shall be defined there. Although most services require a specific ServiceAccessPoint to address a server, it has not been included explicitly in the service parameter tables throughout this part of the standard." Currently, here is defined the type IPAddress; see also MulticastAddress.

'], _isConst=false, _isStatic=false, _multiplicity=[1..*], _initValue=, _eaTypeId=1771, _eaTypeName=IPAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,947 [main] DEBUG AssociationEndBuilder - Updated source type to SERVER +2024-09-08 15:11:35,948 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=983, uuid=6aab1270-668d-3cac-bcef-2566a1c5f569, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=SERVER, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=984, uuid=f05f85ae-88c5-35eb-852e-07f5d4493b43, since=null, name=MCAAs, alias=, stereotype=, visibility=public, txtDescription='All the clients with which the server maintains a multicast application association. +Modelling note: Corresponds to SERVER.MCAppAssociation.', htmlDescription='

All the clients with which the server maintains a multicast application association.

Modelling note: Corresponds to SERVER.MCAppAssociation.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3244, uuid={D04B1B2A-7259-4d38-9B9D-5FA4893DF2CE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,948 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=983, uuid=6aab1270-668d-3cac-bcef-2566a1c5f569, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=SERVER, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=984, uuid=f05f85ae-88c5-35eb-852e-07f5d4493b43, since=null, name=MCAAs, alias=, stereotype=, visibility=public, txtDescription='All the clients with which the server maintains a multicast application association. +Modelling note: Corresponds to SERVER.MCAppAssociation.', htmlDescription='

All the clients with which the server maintains a multicast application association.

Modelling note: Corresponds to SERVER.MCAppAssociation.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3244, uuid={D04B1B2A-7259-4d38-9B9D-5FA4893DF2CE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::SERVER +2024-09-08 15:11:35,948 [main] DEBUG AssociationEndBuilder - Updated source type to SERVER +2024-09-08 15:11:35,948 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=986, uuid=fe7ee8fc-1959-3c72-94fa-21c4840dff0a, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='Server that hosts this file.', htmlDescription='

Server that hosts this file.

'], _type=SERVER, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=987, uuid=3270eb7e-b5b0-39ac-9f02-6f3b15106228, since=null, name=FILEs, alias=, stereotype=, visibility=public, txtDescription='All files within the server. +Modelling note: Corresponds to SERVER.File.', htmlDescription='

All files within the server.

Modelling note: Corresponds to SERVER.File.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3245, uuid={BD48CF11-B1F9-4a40-B020-BE7D3C205E87}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,948 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=986, uuid=fe7ee8fc-1959-3c72-94fa-21c4840dff0a, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='Server that hosts this file.', htmlDescription='

Server that hosts this file.

'], _type=SERVER, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=987, uuid=3270eb7e-b5b0-39ac-9f02-6f3b15106228, since=null, name=FILEs, alias=, stereotype=, visibility=public, txtDescription='All files within the server. +Modelling note: Corresponds to SERVER.File.', htmlDescription='

All files within the server.

Modelling note: Corresponds to SERVER.File.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3245, uuid={BD48CF11-B1F9-4a40-B020-BE7D3C205E87}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::SERVER +2024-09-08 15:11:35,949 [main] DEBUG AssociationEndBuilder - Updated source type to SERVER +2024-09-08 15:11:35,949 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=989, uuid=a1140a3d-0df1-381e-a4ae-954d935e8926, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=SERVER, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=990, uuid=5fa76d69-62a7-33da-9639-4f685ed9cbcc, since=null, name=TPAAs, alias=, stereotype=, visibility=public, txtDescription='All clients with which the server maintains a two party application association. +Modelling note: Corresponds to SERVER.TPAppAssociation.', htmlDescription='

All clients with which the server maintains a two party application association.

Modelling note: Corresponds to SERVER.TPAppAssociation.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3246, uuid={4D043A51-4541-4252-97A5-E280E52416EC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,949 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=989, uuid=a1140a3d-0df1-381e-a4ae-954d935e8926, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=SERVER, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=990, uuid=5fa76d69-62a7-33da-9639-4f685ed9cbcc, since=null, name=TPAAs, alias=, stereotype=, visibility=public, txtDescription='All clients with which the server maintains a two party application association. +Modelling note: Corresponds to SERVER.TPAppAssociation.', htmlDescription='

All clients with which the server maintains a two party application association.

Modelling note: Corresponds to SERVER.TPAppAssociation.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3246, uuid={4D043A51-4541-4252-97A5-E280E52416EC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::SERVER +2024-09-08 15:11:35,949 [main] DEBUG AssociationEndBuilder - Updated source type to SERVER +2024-09-08 15:11:35,950 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=992, uuid=4c73668e-534f-38ce-97a9-1214069d7dc4, since=null, name=SERVER, alias=, stereotype=, visibility=public, txtDescription='Server that contains this logical device.', htmlDescription='

Server that contains this logical device.

'], _type=SERVER, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=993, uuid=61735bea-9856-3d36-bcac-5fb78a87b7c9, since=null, name=LDs, alias=, stereotype=, visibility=public, txtDescription='All logical devices within the server. +Modelling note: Corresponds to SERVER.LogicalDevice.', htmlDescription='

All logical devices within the server.

Modelling note: Corresponds to SERVER.LogicalDevice.

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3247, uuid={222A684C-E024-4d07-A10A-FEB2E101E186}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,950 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=992, uuid=4c73668e-534f-38ce-97a9-1214069d7dc4, since=null, name=SERVER, alias=, stereotype=, visibility=public, txtDescription='Server that contains this logical device.', htmlDescription='

Server that contains this logical device.

'], _type=SERVER, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=993, uuid=61735bea-9856-3d36-bcac-5fb78a87b7c9, since=null, name=LDs, alias=, stereotype=, visibility=public, txtDescription='All logical devices within the server. +Modelling note: Corresponds to SERVER.LogicalDevice.', htmlDescription='

All logical devices within the server.

Modelling note: Corresponds to SERVER.LogicalDevice.

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3247, uuid={222A684C-E024-4d07-A10A-FEB2E101E186}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::SERVER +2024-09-08 15:11:35,950 [main] DEBUG AssociationEndBuilder - Updated target type to SERVER +2024-09-08 15:11:35,950 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=977, uuid=cb169ad4-3224-3879-b41c-caa51a820c58, since=null, name=IED, alias=, stereotype=, visibility=public, txtDescription='IED providing this server.', htmlDescription='

IED providing this server.

'], _type=IED, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=978, uuid=cd79ff9a-2c41-3e45-a4c2-d1f848c67f94, since=null, name=SERVERs, alias=, stereotype=, visibility=public, txtDescription='All servers within this IED.', htmlDescription='

All servers within this IED.

'], _type=SERVER, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3249, uuid={7678C3FF-3EEF-4837-A876-DC57EC8A839A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::SERVER +2024-09-08 15:11:35,950 [main] DEBUG ClassBuilder - Adding SERVER as subclass of HierarchyIEC61850Object +2024-09-08 15:11:35,950 [main] TRACE ClassBuilder - read from EA: MetaModel::SERVER +2024-09-08 15:11:35,950 [main] TRACE ClassBuilder - Class TPAA (6 in package MetaModel) +2024-09-08 15:11:35,951 [main] DEBUG AssociationEndBuilder - Updated source type to TPAA +2024-09-08 15:11:35,951 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=996, uuid=33873e04-2b68-3050-9013-5d6a42a0a6e5, since=null, name=TPAA, alias=, stereotype=, visibility=public, txtDescription='Two-party application association that contains this non-persistent data set.', htmlDescription='

Two-party application association that contains this non-persistent data set.

'], _type=TPAA, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=997, uuid=5880d6da-097a-3fed-aae8-1381cf23315b, since=null, name=NonPersistentDSs, alias=, stereotype=, visibility=public, txtDescription='All non-persistent data sets contained within this two-party application association.', htmlDescription='

All non-persistent data sets contained within this two-party application association.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3242, uuid={B9ECE073-A02C-48da-93A7-2B8F2E8C9059}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,951 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=996, uuid=33873e04-2b68-3050-9013-5d6a42a0a6e5, since=null, name=TPAA, alias=, stereotype=, visibility=public, txtDescription='Two-party application association that contains this non-persistent data set.', htmlDescription='

Two-party application association that contains this non-persistent data set.

'], _type=TPAA, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=997, uuid=5880d6da-097a-3fed-aae8-1381cf23315b, since=null, name=NonPersistentDSs, alias=, stereotype=, visibility=public, txtDescription='All non-persistent data sets contained within this two-party application association.', htmlDescription='

All non-persistent data sets contained within this two-party application association.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3242, uuid={B9ECE073-A02C-48da-93A7-2B8F2E8C9059}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::TPAA +2024-09-08 15:11:35,951 [main] DEBUG AssociationEndBuilder - Updated target type to TPAA +2024-09-08 15:11:35,951 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=989, uuid=a1140a3d-0df1-381e-a4ae-954d935e8926, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=SERVER, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=990, uuid=5fa76d69-62a7-33da-9639-4f685ed9cbcc, since=null, name=TPAAs, alias=, stereotype=, visibility=public, txtDescription='All clients with which the server maintains a two party application association. +Modelling note: Corresponds to SERVER.TPAppAssociation.', htmlDescription='

All clients with which the server maintains a two party application association.

Modelling note: Corresponds to SERVER.TPAppAssociation.

'], _type=TPAA, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3246, uuid={4D043A51-4541-4252-97A5-E280E52416EC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::TPAA +2024-09-08 15:11:35,951 [main] DEBUG AssociationEndBuilder - Updated source type to TPAA +2024-09-08 15:11:35,951 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=914, uuid=7634ea65-a4e6-3904-9cfd-3f7de18e334a, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=TPAA, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=915, uuid=24896ee4-c652-3356-8c12-7852413ea3b4, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=Authentication, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3290, uuid={31BEB254-DD54-415a-9492-3044318CA98D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::TPAA +2024-09-08 15:11:35,952 [main] DEBUG ClassBuilder - Adding TPAA as subclass of IEC61850Object +2024-09-08 15:11:35,952 [main] TRACE ClassBuilder - read from EA: MetaModel::TPAA +2024-09-08 15:11:35,952 [main] TRACE ClassBuilder - Class MCAA (7 in package MetaModel) +2024-09-08 15:11:35,952 [main] DEBUG AssociationEndBuilder - Updated target type to MCAA +2024-09-08 15:11:35,952 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=983, uuid=6aab1270-668d-3cac-bcef-2566a1c5f569, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=SERVER, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=984, uuid=f05f85ae-88c5-35eb-852e-07f5d4493b43, since=null, name=MCAAs, alias=, stereotype=, visibility=public, txtDescription='All the clients with which the server maintains a multicast application association. +Modelling note: Corresponds to SERVER.MCAppAssociation.', htmlDescription='

All the clients with which the server maintains a multicast application association.

Modelling note: Corresponds to SERVER.MCAppAssociation.

'], _type=MCAA, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3244, uuid={D04B1B2A-7259-4d38-9B9D-5FA4893DF2CE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::MCAA +2024-09-08 15:11:35,952 [main] DEBUG AssociationEndBuilder - Updated source type to MCAA +2024-09-08 15:11:35,953 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=911, uuid=b56a18e0-eacd-351a-a2a5-306b0f533204, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=MCAA, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=912, uuid=2a9d121c-d9c3-3183-abb6-d2cc6bd7a8a7, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=Authentication, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3289, uuid={CAF47EAD-E095-4308-8875-40BFFEE47E22}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::MCAA +2024-09-08 15:11:35,953 [main] DEBUG ClassBuilder - Adding MCAA as subclass of IEC61850Object +2024-09-08 15:11:35,953 [main] TRACE ClassBuilder - read from EA: MetaModel::MCAA +2024-09-08 15:11:35,953 [main] TRACE ClassBuilder - Class LD (8 in package MetaModel) +2024-09-08 15:11:35,975 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::LD, _objData=UmlObjectData [id=3589, uuid={877F93ED-1944-4701-A29D-57C6810B68CB}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1694, _eaTypeName=LDReference, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,976 [main] DEBUG AssociationEndBuilder - Updated source type to LD +2024-09-08 15:11:35,976 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1002, uuid=2a2d94c6-5bc5-3b4f-a3eb-8ba85bbf0fda, since=null, name=LD, alias=, stereotype=, visibility=public, txtDescription='Logical device that contains this domain logical node.', htmlDescription='

Logical device that contains this domain logical node.

'], _type=LD, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1003, uuid=88c8ad81-3e70-3bd6-b58d-176b991035bb, since=null, name=LNDOMs, alias=, stereotype=, visibility=public, txtDescription='All domain logical nodes contained within this logical device.', htmlDescription='

All domain logical nodes contained within this logical device.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3237, uuid={EA8D56D0-764A-4bd8-9215-10E541F2BCF3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,976 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1002, uuid=2a2d94c6-5bc5-3b4f-a3eb-8ba85bbf0fda, since=null, name=LD, alias=, stereotype=, visibility=public, txtDescription='Logical device that contains this domain logical node.', htmlDescription='

Logical device that contains this domain logical node.

'], _type=LD, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1003, uuid=88c8ad81-3e70-3bd6-b58d-176b991035bb, since=null, name=LNDOMs, alias=, stereotype=, visibility=public, txtDescription='All domain logical nodes contained within this logical device.', htmlDescription='

All domain logical nodes contained within this logical device.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3237, uuid={EA8D56D0-764A-4bd8-9215-10E541F2BCF3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::LD +2024-09-08 15:11:35,977 [main] DEBUG AssociationEndBuilder - Updated source type to LD +2024-09-08 15:11:35,977 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1005, uuid=80eaa78c-0d7a-3689-a506-56d1057b11a6, since=null, name=LD, alias=, stereotype=, visibility=public, txtDescription='Logical device that contains this device logical node.', htmlDescription='

Logical device that contains this device logical node.

'], _type=LD, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1006, uuid=5b67250a-8925-33fa-aa8a-c97ffc0d9310, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='Device logical node contained within this logical device.', htmlDescription='

Device logical node contained within this logical device.

'], _type=null, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3238, uuid={58088780-AE38-465b-92C6-DF8923DEBADA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,977 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1005, uuid=80eaa78c-0d7a-3689-a506-56d1057b11a6, since=null, name=LD, alias=, stereotype=, visibility=public, txtDescription='Logical device that contains this device logical node.', htmlDescription='

Logical device that contains this device logical node.

'], _type=LD, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1006, uuid=5b67250a-8925-33fa-aa8a-c97ffc0d9310, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='Device logical node contained within this logical device.', htmlDescription='

Device logical node contained within this logical device.

'], _type=null, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3238, uuid={58088780-AE38-465b-92C6-DF8923DEBADA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::LD +2024-09-08 15:11:35,977 [main] DEBUG AssociationEndBuilder - Updated source type to LD +2024-09-08 15:11:35,977 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1008, uuid=f342deb7-6bc7-3383-b781-4619d8d326dc, since=null, name=LD, alias=, stereotype=, visibility=public, txtDescription='Logical device that contains this physical device logical node.', htmlDescription='

Logical device that contains this physical device logical node.

'], _type=LD, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1009, uuid=dc9432da-d9a4-391b-864a-519a2dcd1421, since=null, name=LNPHD, alias=, stereotype=, visibility=public, txtDescription='Physical device logical node contained within this logical device.', htmlDescription='

Physical device logical node contained within this logical device.

'], _type=null, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3239, uuid={351DD042-6AD0-47f6-A9D1-9EA465461A1E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,977 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1008, uuid=f342deb7-6bc7-3383-b781-4619d8d326dc, since=null, name=LD, alias=, stereotype=, visibility=public, txtDescription='Logical device that contains this physical device logical node.', htmlDescription='

Logical device that contains this physical device logical node.

'], _type=LD, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1009, uuid=dc9432da-d9a4-391b-864a-519a2dcd1421, since=null, name=LNPHD, alias=, stereotype=, visibility=public, txtDescription='Physical device logical node contained within this logical device.', htmlDescription='

Physical device logical node contained within this logical device.

'], _type=null, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3239, uuid={351DD042-6AD0-47f6-A9D1-9EA465461A1E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::LD +2024-09-08 15:11:35,978 [main] DEBUG AssociationEndBuilder - Updated target type to LD +2024-09-08 15:11:35,978 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=992, uuid=4c73668e-534f-38ce-97a9-1214069d7dc4, since=null, name=SERVER, alias=, stereotype=, visibility=public, txtDescription='Server that contains this logical device.', htmlDescription='

Server that contains this logical device.

'], _type=SERVER, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=993, uuid=61735bea-9856-3d36-bcac-5fb78a87b7c9, since=null, name=LDs, alias=, stereotype=, visibility=public, txtDescription='All logical devices within the server. +Modelling note: Corresponds to SERVER.LogicalDevice.', htmlDescription='

All logical devices within the server.

Modelling note: Corresponds to SERVER.LogicalDevice.

'], _type=LD, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3247, uuid={222A684C-E024-4d07-A10A-FEB2E101E186}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::LD +2024-09-08 15:11:35,978 [main] DEBUG ClassBuilder - Adding LD as subclass of NamedIEC61850Object +2024-09-08 15:11:35,978 [main] TRACE ClassBuilder - read from EA: MetaModel::LD +2024-09-08 15:11:35,978 [main] TRACE ClassBuilder - Class LN (9 in package MetaModel) +2024-09-08 15:11:35,978 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::LN, _objData=UmlObjectData [id=3590, uuid={B9201E1F-0FBA-4eee-A567-31539F09E245}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1696, _eaTypeName=LNReference, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,978 [main] DEBUG AssociationEndBuilder - Updated source type to LN +2024-09-08 15:11:35,979 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1013, uuid=f02885d1-1972-3e41-a471-a8ae4471db15, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this common data class.', htmlDescription='

Logical node that contains this common data class.

'], _type=LN, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1014, uuid=2a6fc3f6-97e0-3b10-a832-cfe6bb54065c, since=null, name=CDCs, alias=, stereotype=, visibility=public, txtDescription='All common data classes contained within the logical node. +Example of references for an XCBR: +myLD3/XCBR1.Pos +myLD3/XCBR1.Loc +myLD3/XCBR1.CBOpCap +...', htmlDescription='

All common data classes contained within the logical node.

Example of references for an XCBR:

myLD3/XCBR1.Pos

myLD3/XCBR1.Loc

myLD3/XCBR1.CBOpCap

...

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3230, uuid={DA3E0358-0E30-4308-8391-CC6F3D34D501}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,979 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1013, uuid=f02885d1-1972-3e41-a471-a8ae4471db15, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this common data class.', htmlDescription='

Logical node that contains this common data class.

'], _type=LN, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1014, uuid=2a6fc3f6-97e0-3b10-a832-cfe6bb54065c, since=null, name=CDCs, alias=, stereotype=, visibility=public, txtDescription='All common data classes contained within the logical node. +Example of references for an XCBR: +myLD3/XCBR1.Pos +myLD3/XCBR1.Loc +myLD3/XCBR1.CBOpCap +...', htmlDescription='

All common data classes contained within the logical node.

Example of references for an XCBR:

myLD3/XCBR1.Pos

myLD3/XCBR1.Loc

myLD3/XCBR1.CBOpCap

...

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3230, uuid={DA3E0358-0E30-4308-8391-CC6F3D34D501}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::LN +2024-09-08 15:11:35,979 [main] DEBUG AssociationEndBuilder - Updated source type to LN +2024-09-08 15:11:35,980 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1016, uuid=598e95ae-dfa7-39fb-88a4-4b35a32d16a6, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this data set.', htmlDescription='

Logical node that contains this data set.

'], _type=LN, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1017, uuid=ad95f35b-687c-3ff8-8d6f-753ec8310166, since=null, name=LNOwnedDSs, alias=, stereotype=, visibility=public, txtDescription='All datasets contained within the logical node. +Modelling note: To distinguish between data sets effectively contained by LN, and non-persistent data sets (which are owned by the TPAA over which they have been created), we introduced an abstract LNOwnedDS class, which excludes non-persistent DSs.', htmlDescription='

All datasets contained within the logical node.

Modelling note: To distinguish between data sets effectively contained by LN, and non-persistent data sets (which are owned by the TPAA over which they have been created), we introduced an abstract LNOwnedDS class, which excludes non-persistent DSs.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3231, uuid={7F7F081B-F2D6-484c-963B-F44D4FE8F9CC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,980 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1016, uuid=598e95ae-dfa7-39fb-88a4-4b35a32d16a6, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this data set.', htmlDescription='

Logical node that contains this data set.

'], _type=LN, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1017, uuid=ad95f35b-687c-3ff8-8d6f-753ec8310166, since=null, name=LNOwnedDSs, alias=, stereotype=, visibility=public, txtDescription='All datasets contained within the logical node. +Modelling note: To distinguish between data sets effectively contained by LN, and non-persistent data sets (which are owned by the TPAA over which they have been created), we introduced an abstract LNOwnedDS class, which excludes non-persistent DSs.', htmlDescription='

All datasets contained within the logical node.

Modelling note: To distinguish between data sets effectively contained by LN, and non-persistent data sets (which are owned by the TPAA over which they have been created), we introduced an abstract LNOwnedDS class, which excludes non-persistent DSs.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3231, uuid={7F7F081B-F2D6-484c-963B-F44D4FE8F9CC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::LN +2024-09-08 15:11:35,980 [main] DEBUG AssociationEndBuilder - Updated source type to LN +2024-09-08 15:11:35,981 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1019, uuid=91389a73-8253-3920-bb6e-2ca4b6596579, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this log.', htmlDescription='

Logical node that contains this log.

'], _type=LN, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1020, uuid=6dba35d3-b8a8-39a0-96f5-63c3fb0ca786, since=null, name=LOGs, alias=, stereotype=, visibility=public, txtDescription='All logs contained in this device logical node.', htmlDescription='

All logs contained in this device logical node.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3232, uuid={7F440C52-EE5C-4b8b-A1A0-DC7AA86473A0}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,981 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1019, uuid=91389a73-8253-3920-bb6e-2ca4b6596579, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this log.', htmlDescription='

Logical node that contains this log.

'], _type=LN, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1020, uuid=6dba35d3-b8a8-39a0-96f5-63c3fb0ca786, since=null, name=LOGs, alias=, stereotype=, visibility=public, txtDescription='All logs contained in this device logical node.', htmlDescription='

All logs contained in this device logical node.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3232, uuid={7F440C52-EE5C-4b8b-A1A0-DC7AA86473A0}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::LN +2024-09-08 15:11:35,981 [main] DEBUG AssociationEndBuilder - Updated source type to LN +2024-09-08 15:11:35,981 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1022, uuid=87feb7ab-da8f-3ba7-aae0-aa46758eaf0f, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this log control block.', htmlDescription='

Logical node that contains this log control block.

'], _type=LN, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1023, uuid=c7ae4357-23e6-374c-a634-364fe49cda56, since=null, name=LCBs, alias=, stereotype=, visibility=public, txtDescription='All log control blocks contained in this device logical node.', htmlDescription='

All log control blocks contained in this device logical node.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3233, uuid={4EDAC9DF-298C-4398-A217-F8EE4F5B1585}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,981 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1022, uuid=87feb7ab-da8f-3ba7-aae0-aa46758eaf0f, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this log control block.', htmlDescription='

Logical node that contains this log control block.

'], _type=LN, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1023, uuid=c7ae4357-23e6-374c-a634-364fe49cda56, since=null, name=LCBs, alias=, stereotype=, visibility=public, txtDescription='All log control blocks contained in this device logical node.', htmlDescription='

All log control blocks contained in this device logical node.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3233, uuid={4EDAC9DF-298C-4398-A217-F8EE4F5B1585}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::LN +2024-09-08 15:11:35,981 [main] DEBUG AssociationEndBuilder - Updated source type to LN +2024-09-08 15:11:35,981 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1025, uuid=a356009c-e249-3887-a8c2-5efc8b789aeb, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this unbuffered report control block.', htmlDescription='

Logical node that contains this unbuffered report control block.

'], _type=LN, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1026, uuid=a98e6c87-71bd-3819-b3e8-db240e74bd95, since=null, name=URCBs, alias=, stereotype=, visibility=public, txtDescription='All unbuffered report control blocks contained in this logical node.', htmlDescription='

All unbuffered report control blocks contained in this logical node.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3234, uuid={1CDCF8AA-E5B2-490a-AC9E-28949329C1F9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,982 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1025, uuid=a356009c-e249-3887-a8c2-5efc8b789aeb, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this unbuffered report control block.', htmlDescription='

Logical node that contains this unbuffered report control block.

'], _type=LN, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1026, uuid=a98e6c87-71bd-3819-b3e8-db240e74bd95, since=null, name=URCBs, alias=, stereotype=, visibility=public, txtDescription='All unbuffered report control blocks contained in this logical node.', htmlDescription='

All unbuffered report control blocks contained in this logical node.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3234, uuid={1CDCF8AA-E5B2-490a-AC9E-28949329C1F9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::LN +2024-09-08 15:11:35,982 [main] DEBUG AssociationEndBuilder - Updated source type to LN +2024-09-08 15:11:35,982 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1028, uuid=e7603d9e-d7ed-34d2-a8c2-fe57012d3517, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this buffered report control block.', htmlDescription='

Logical node that contains this buffered report control block.

'], _type=LN, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1029, uuid=3e1af449-26b3-33ce-8b0e-bca6ed828fdc, since=null, name=BRCBs, alias=, stereotype=, visibility=public, txtDescription='All buffered report control blocks contained in this logical node.', htmlDescription='

All buffered report control blocks contained in this logical node.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3235, uuid={0F20B431-6EE2-469b-8223-819230E9C43E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,982 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1028, uuid=e7603d9e-d7ed-34d2-a8c2-fe57012d3517, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this buffered report control block.', htmlDescription='

Logical node that contains this buffered report control block.

'], _type=LN, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1029, uuid=3e1af449-26b3-33ce-8b0e-bca6ed828fdc, since=null, name=BRCBs, alias=, stereotype=, visibility=public, txtDescription='All buffered report control blocks contained in this logical node.', htmlDescription='

All buffered report control blocks contained in this logical node.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3235, uuid={0F20B431-6EE2-469b-8223-819230E9C43E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::LN +2024-09-08 15:11:35,982 [main] DEBUG ClassBuilder - Adding LN as subclass of NamedIEC61850Object +2024-09-08 15:11:35,982 [main] TRACE ClassBuilder - read from EA: MetaModel::LN +2024-09-08 15:11:35,982 [main] TRACE ClassBuilder - Class LNPHD (10 in package MetaModel) +2024-09-08 15:11:35,983 [main] DEBUG AssociationEndBuilder - Updated target type to LNPHD +2024-09-08 15:11:35,983 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1008, uuid=f342deb7-6bc7-3383-b781-4619d8d326dc, since=null, name=LD, alias=, stereotype=, visibility=public, txtDescription='Logical device that contains this physical device logical node.', htmlDescription='

Logical device that contains this physical device logical node.

'], _type=LD, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1009, uuid=dc9432da-d9a4-391b-864a-519a2dcd1421, since=null, name=LNPHD, alias=, stereotype=, visibility=public, txtDescription='Physical device logical node contained within this logical device.', htmlDescription='

Physical device logical node contained within this logical device.

'], _type=LNPHD, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3239, uuid={351DD042-6AD0-47f6-A9D1-9EA465461A1E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::LNPHD +2024-09-08 15:11:35,983 [main] DEBUG ClassBuilder - Adding LNPHD as subclass of LN +2024-09-08 15:11:35,983 [main] TRACE ClassBuilder - read from EA: MetaModel::LNPHD +2024-09-08 15:11:35,983 [main] TRACE ClassBuilder - Class LN0 (11 in package MetaModel) +2024-09-08 15:11:35,984 [main] DEBUG AssociationEndBuilder - Updated source type to LN0 +2024-09-08 15:11:35,985 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1033, uuid=b9c7430f-005d-37b1-96f1-0969d56fb74b, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='Device logical node that contains this unicast sampled values control block.', htmlDescription='

Device logical node that contains this unicast sampled values control block.

'], _type=LN0, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1034, uuid=2149586b-93ab-366c-b7d5-585dd8ab2dcb, since=null, name=USVCBs, alias=, stereotype=, visibility=public, txtDescription='All unicast simpled values control blocks contained in this device logical node.', htmlDescription='

All unicast simpled values control blocks contained in this device logical node.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3224, uuid={BA890AF8-70A6-4685-8215-9B7A0C34827D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,985 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1033, uuid=b9c7430f-005d-37b1-96f1-0969d56fb74b, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='Device logical node that contains this unicast sampled values control block.', htmlDescription='

Device logical node that contains this unicast sampled values control block.

'], _type=LN0, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1034, uuid=2149586b-93ab-366c-b7d5-585dd8ab2dcb, since=null, name=USVCBs, alias=, stereotype=, visibility=public, txtDescription='All unicast simpled values control blocks contained in this device logical node.', htmlDescription='

All unicast simpled values control blocks contained in this device logical node.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3224, uuid={BA890AF8-70A6-4685-8215-9B7A0C34827D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::LN0 +2024-09-08 15:11:35,985 [main] DEBUG AssociationEndBuilder - Updated source type to LN0 +2024-09-08 15:11:35,985 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1036, uuid=c18773d5-9ab1-31dd-8e87-e416e5c518dd, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='Device logical node that contains this GOOSE control block.', htmlDescription='

Device logical node that contains this GOOSE control block.

'], _type=LN0, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1037, uuid=43d0dac2-11b5-3602-9cdb-c87fd6c9ed1e, since=null, name=GCBs, alias=, stereotype=, visibility=public, txtDescription='All GOOSE control blocks contained in this device logical node.', htmlDescription='

All GOOSE control blocks contained in this device logical node.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3225, uuid={5B28CB32-75ED-4ce9-970B-A054C0FE6AF2}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,985 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1036, uuid=c18773d5-9ab1-31dd-8e87-e416e5c518dd, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='Device logical node that contains this GOOSE control block.', htmlDescription='

Device logical node that contains this GOOSE control block.

'], _type=LN0, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1037, uuid=43d0dac2-11b5-3602-9cdb-c87fd6c9ed1e, since=null, name=GCBs, alias=, stereotype=, visibility=public, txtDescription='All GOOSE control blocks contained in this device logical node.', htmlDescription='

All GOOSE control blocks contained in this device logical node.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3225, uuid={5B28CB32-75ED-4ce9-970B-A054C0FE6AF2}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::LN0 +2024-09-08 15:11:35,985 [main] DEBUG AssociationEndBuilder - Updated source type to LN0 +2024-09-08 15:11:35,986 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1039, uuid=9322d900-a7a3-35be-a2fc-8dc05f438e73, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='Device logical node that contains this multicast sampled values control block.', htmlDescription='

Device logical node that contains this multicast sampled values control block.

'], _type=LN0, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1040, uuid=1d3ff9d3-58c1-37bd-ae64-3a515789448b, since=null, name=MSVCBs, alias=, stereotype=, visibility=public, txtDescription='All multicast simpled values control blocks contained in this device logical node.', htmlDescription='

All multicast simpled values control blocks contained in this device logical node.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3226, uuid={3FE94B8A-D716-44df-98C2-B7C222CEE5E8}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,986 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1039, uuid=9322d900-a7a3-35be-a2fc-8dc05f438e73, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='Device logical node that contains this multicast sampled values control block.', htmlDescription='

Device logical node that contains this multicast sampled values control block.

'], _type=LN0, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1040, uuid=1d3ff9d3-58c1-37bd-ae64-3a515789448b, since=null, name=MSVCBs, alias=, stereotype=, visibility=public, txtDescription='All multicast simpled values control blocks contained in this device logical node.', htmlDescription='

All multicast simpled values control blocks contained in this device logical node.

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3226, uuid={3FE94B8A-D716-44df-98C2-B7C222CEE5E8}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::LN0 +2024-09-08 15:11:35,986 [main] DEBUG AssociationEndBuilder - Updated source type to LN0 +2024-09-08 15:11:35,986 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1042, uuid=c6a9f569-0770-3ffe-bdc0-a645b0387d2f, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='Device logical node that contains this setting group control block.', htmlDescription='

Device logical node that contains this setting group control block.

'], _type=LN0, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1043, uuid=69a2696d-a46f-38f0-a20e-b7cca875605c, since=null, name=SGCB, alias=, stereotype=, visibility=public, txtDescription='Setting group control block contained in this device logical node.', htmlDescription='

Setting group control block contained in this device logical node.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3227, uuid={16912038-2F54-4108-A868-FEDEFD36C7B1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,986 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1042, uuid=c6a9f569-0770-3ffe-bdc0-a645b0387d2f, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='Device logical node that contains this setting group control block.', htmlDescription='

Device logical node that contains this setting group control block.

'], _type=LN0, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1043, uuid=69a2696d-a46f-38f0-a20e-b7cca875605c, since=null, name=SGCB, alias=, stereotype=, visibility=public, txtDescription='Setting group control block contained in this device logical node.', htmlDescription='

Setting group control block contained in this device logical node.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3227, uuid={16912038-2F54-4108-A868-FEDEFD36C7B1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::LN0 +2024-09-08 15:11:35,986 [main] DEBUG AssociationEndBuilder - Updated target type to LN0 +2024-09-08 15:11:35,987 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1005, uuid=80eaa78c-0d7a-3689-a506-56d1057b11a6, since=null, name=LD, alias=, stereotype=, visibility=public, txtDescription='Logical device that contains this device logical node.', htmlDescription='

Logical device that contains this device logical node.

'], _type=LD, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1006, uuid=5b67250a-8925-33fa-aa8a-c97ffc0d9310, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='Device logical node contained within this logical device.', htmlDescription='

Device logical node contained within this logical device.

'], _type=LN0, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3238, uuid={58088780-AE38-465b-92C6-DF8923DEBADA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::LN0 +2024-09-08 15:11:35,987 [main] DEBUG ClassBuilder - Adding LN0 as subclass of LN +2024-09-08 15:11:35,987 [main] TRACE ClassBuilder - read from EA: MetaModel::LN0 +2024-09-08 15:11:35,987 [main] TRACE ClassBuilder - Class LNDOM (12 in package MetaModel) +2024-09-08 15:11:35,987 [main] DEBUG AssociationEndBuilder - Updated target type to LNDOM +2024-09-08 15:11:35,988 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1002, uuid=2a2d94c6-5bc5-3b4f-a3eb-8ba85bbf0fda, since=null, name=LD, alias=, stereotype=, visibility=public, txtDescription='Logical device that contains this domain logical node.', htmlDescription='

Logical device that contains this domain logical node.

'], _type=LD, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1003, uuid=88c8ad81-3e70-3bd6-b58d-176b991035bb, since=null, name=LNDOMs, alias=, stereotype=, visibility=public, txtDescription='All domain logical nodes contained within this logical device.', htmlDescription='

All domain logical nodes contained within this logical device.

'], _type=LNDOM, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3237, uuid={EA8D56D0-764A-4bd8-9215-10E541F2BCF3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::LNDOM +2024-09-08 15:11:35,988 [main] DEBUG ClassBuilder - Adding LNDOM as subclass of LN +2024-09-08 15:11:35,988 [main] TRACE ClassBuilder - read from EA: MetaModel::LNDOM +2024-09-08 15:11:35,988 [main] TRACE ClassBuilder - Class CDC (14 in package MetaModel) +2024-09-08 15:11:35,988 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::CDC, _objData=UmlObjectData [id=3591, uuid={6520578A-E479-4aca-8AD6-7A973E895B9F}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1697, _eaTypeName=CDCReference, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,989 [main] DEBUG AssociationEndBuilder - Updated source type to CDC +2024-09-08 15:11:35,989 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1048, uuid=90ab812d-8564-3c32-80cf-4046e6691d91, since=null, name=CDC, alias=, stereotype=, visibility=public, txtDescription='Common data class containing this functionally constrained data attribute.', htmlDescription='

Common data class containing this functionally constrained data attribute.

'], _type=CDC, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1049, uuid=8dd3979e-5576-34db-99c5-b55e818bdea5, since=null, name=FCDAs, alias=, stereotype=, visibility=public, txtDescription='All functionally constrained data attributes contained within this common data class.', htmlDescription='

All functionally constrained data attributes contained within this common data class.

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3220, uuid={56217EE0-7F5F-4b89-A6EB-C65850A000AB}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,989 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1048, uuid=90ab812d-8564-3c32-80cf-4046e6691d91, since=null, name=CDC, alias=, stereotype=, visibility=public, txtDescription='Common data class containing this functionally constrained data attribute.', htmlDescription='

Common data class containing this functionally constrained data attribute.

'], _type=CDC, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1049, uuid=8dd3979e-5576-34db-99c5-b55e818bdea5, since=null, name=FCDAs, alias=, stereotype=, visibility=public, txtDescription='All functionally constrained data attributes contained within this common data class.', htmlDescription='

All functionally constrained data attributes contained within this common data class.

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3220, uuid={56217EE0-7F5F-4b89-A6EB-C65850A000AB}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::CDC +2024-09-08 15:11:35,989 [main] DEBUG AssociationEndBuilder - Updated source type to CDC +2024-09-08 15:11:35,989 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1051, uuid=db457cb8-fd6e-3808-a5d7-596d1be04931, since=null, name=CDC, alias=, stereotype=, visibility=public, txtDescription='Common data class containing this functionally constrained data.', htmlDescription='

Common data class containing this functionally constrained data.

'], _type=CDC, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1052, uuid=fcd20342-876e-32fc-9adf-8e834b5621bf, since=null, name=FCDs, alias=, stereotype=, visibility=public, txtDescription='All functionally constrained data (groups of data with the same functional constraint) contained within this common data class.', htmlDescription='

All functionally constrained data (groups of data with the same functional constraint) contained within this common data class.

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3221, uuid={025EB020-6F7B-4dbf-A870-ABE4EE81547D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,990 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1051, uuid=db457cb8-fd6e-3808-a5d7-596d1be04931, since=null, name=CDC, alias=, stereotype=, visibility=public, txtDescription='Common data class containing this functionally constrained data.', htmlDescription='

Common data class containing this functionally constrained data.

'], _type=CDC, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1052, uuid=fcd20342-876e-32fc-9adf-8e834b5621bf, since=null, name=FCDs, alias=, stereotype=, visibility=public, txtDescription='All functionally constrained data (groups of data with the same functional constraint) contained within this common data class.', htmlDescription='

All functionally constrained data (groups of data with the same functional constraint) contained within this common data class.

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3221, uuid={025EB020-6F7B-4dbf-A870-ABE4EE81547D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::CDC +2024-09-08 15:11:35,990 [main] DEBUG AssociationEndBuilder - Updated target type to CDC +2024-09-08 15:11:35,990 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1013, uuid=f02885d1-1972-3e41-a471-a8ae4471db15, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this common data class.', htmlDescription='

Logical node that contains this common data class.

'], _type=LN, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1014, uuid=2a6fc3f6-97e0-3b10-a832-cfe6bb54065c, since=null, name=CDCs, alias=, stereotype=, visibility=public, txtDescription='All common data classes contained within the logical node. +Example of references for an XCBR: +myLD3/XCBR1.Pos +myLD3/XCBR1.Loc +myLD3/XCBR1.CBOpCap +...', htmlDescription='

All common data classes contained within the logical node.

Example of references for an XCBR:

myLD3/XCBR1.Pos

myLD3/XCBR1.Loc

myLD3/XCBR1.CBOpCap

...

'], _type=CDC, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3230, uuid={DA3E0358-0E30-4308-8391-CC6F3D34D501}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::CDC +2024-09-08 15:11:35,990 [main] DEBUG ClassBuilder - Adding CDC as subclass of NamedIEC61850Object +2024-09-08 15:11:35,990 [main] TRACE ClassBuilder - read from EA: MetaModel::CDC +2024-09-08 15:11:35,990 [main] TRACE ClassBuilder - Class PrimitiveCDC (15 in package MetaModel) +2024-09-08 15:11:35,990 [main] DEBUG AssociationEndBuilder - Updated target type to PrimitiveCDC +2024-09-08 15:11:35,991 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1055, uuid=085d2cf9-8bab-3abb-9e28-3b952007063e, since=null, name=ComposedCDC, alias=, stereotype=, visibility=public, txtDescription='Common data class that contains this primitive common data class.', htmlDescription='

Common data class that contains this primitive common data class.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1056, uuid=013c3903-15f7-330c-8042-61fff5a34cf0, since=null, name=PrimitiveCDCs, alias=, stereotype=, visibility=public, txtDescription='All common data classes (data objects) contained within this composed common data class.', htmlDescription='

All common data classes (data objects) contained within this composed common data class.

'], _type=PrimitiveCDC, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3217, uuid={0BB1440F-02BC-40ba-9047-E0D8BBFBC02F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,991 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1055, uuid=085d2cf9-8bab-3abb-9e28-3b952007063e, since=null, name=ComposedCDC, alias=, stereotype=, visibility=public, txtDescription='Common data class that contains this primitive common data class.', htmlDescription='

Common data class that contains this primitive common data class.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1056, uuid=013c3903-15f7-330c-8042-61fff5a34cf0, since=null, name=PrimitiveCDCs, alias=, stereotype=, visibility=public, txtDescription='All common data classes (data objects) contained within this composed common data class.', htmlDescription='

All common data classes (data objects) contained within this composed common data class.

'], _type=PrimitiveCDC, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3217, uuid={0BB1440F-02BC-40ba-9047-E0D8BBFBC02F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::PrimitiveCDC +2024-09-08 15:11:35,991 [main] DEBUG AssociationEndBuilder - Updated source type to PrimitiveCDC +2024-09-08 15:11:35,991 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1058, uuid=c04fbe8d-887c-3da6-bd2b-a05c91e01d78, since=null, name=ControlCDC, alias=, stereotype=, visibility=public, txtDescription='Common data class defining this service parameter.', htmlDescription='

Common data class defining this service parameter.

'], _type=PrimitiveCDC, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1059, uuid=025d5e72-45d4-399f-b6e3-77175140acfa, since=null, name=ServiceParameter, alias=, stereotype=, visibility=public, txtDescription='Service parameter defined within this primitive common data class.', htmlDescription='

Service parameter defined within this primitive common data class.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3218, uuid={7238D4C2-55BD-4263-8221-888C7557A666}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,991 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1058, uuid=c04fbe8d-887c-3da6-bd2b-a05c91e01d78, since=null, name=ControlCDC, alias=, stereotype=, visibility=public, txtDescription='Common data class defining this service parameter.', htmlDescription='

Common data class defining this service parameter.

'], _type=PrimitiveCDC, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1059, uuid=025d5e72-45d4-399f-b6e3-77175140acfa, since=null, name=ServiceParameter, alias=, stereotype=, visibility=public, txtDescription='Service parameter defined within this primitive common data class.', htmlDescription='

Service parameter defined within this primitive common data class.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3218, uuid={7238D4C2-55BD-4263-8221-888C7557A666}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::PrimitiveCDC +2024-09-08 15:11:35,991 [main] DEBUG ClassBuilder - Adding PrimitiveCDC as subclass of CDC +2024-09-08 15:11:35,991 [main] TRACE ClassBuilder - read from EA: MetaModel::PrimitiveCDC +2024-09-08 15:11:35,991 [main] TRACE ClassBuilder - Class ComposedCDC (16 in package MetaModel) +2024-09-08 15:11:35,992 [main] DEBUG AssociationEndBuilder - Updated source type to ComposedCDC +2024-09-08 15:11:35,992 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1055, uuid=085d2cf9-8bab-3abb-9e28-3b952007063e, since=null, name=ComposedCDC, alias=, stereotype=, visibility=public, txtDescription='Common data class that contains this primitive common data class.', htmlDescription='

Common data class that contains this primitive common data class.

'], _type=ComposedCDC, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1056, uuid=013c3903-15f7-330c-8042-61fff5a34cf0, since=null, name=PrimitiveCDCs, alias=, stereotype=, visibility=public, txtDescription='All common data classes (data objects) contained within this composed common data class.', htmlDescription='

All common data classes (data objects) contained within this composed common data class.

'], _type=PrimitiveCDC, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3217, uuid={0BB1440F-02BC-40ba-9047-E0D8BBFBC02F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::ComposedCDC +2024-09-08 15:11:35,992 [main] DEBUG ClassBuilder - Adding ComposedCDC as subclass of CDC +2024-09-08 15:11:35,992 [main] TRACE ClassBuilder - read from EA: MetaModel::ComposedCDC +2024-09-08 15:11:35,992 [main] TRACE ClassBuilder - Class FCD (17 in package MetaModel) +2024-09-08 15:11:35,992 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::FCD, _objData=UmlObjectData [id=3592, uuid={71280780-DF48-46ed-94CA-4B5679065AE1}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1702, _eaTypeName=FCDReference, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,992 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::FCD, _objData=UmlObjectData [id=3593, uuid={000364EA-747B-48d9-9EFC-91F8A514AEF3}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,993 [main] DEBUG AssociationEndBuilder - Updated source type to FCD +2024-09-08 15:11:35,993 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1065, uuid=af6863de-3ae1-3883-a3d6-9967fc6b0a46, since=null, name=DataSetFCDMember, alias=, stereotype=, visibility=public, txtDescription='All functionally constrained data (groups of data with the same functional constraint) that this data set refers to. +Modelling note: This is FDC part of the originally defined DSMemberRef.', htmlDescription='

All functionally constrained data (groups of data with the same functional constraint) that this data set refers to.

Modelling note: This is FDC part of the originally defined DSMemberRef.

'], _type=FCD, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1066, uuid=77e6639b-28de-3cd4-bfa8-c57f8a18185d, since=null, name=DSs, alias=, stereotype=, visibility=public, txtDescription='All data sets that hold reference to this FCD. +Modelling note: FCD must maintain the link to DSs that reference it, so that the DSs can get notified before the FCD disappears. This enforces the following part of the DS spec: "The persistent existence of DATA and DataAttribute is expected as long as they are referenced as members of a DS. A system has to take special measures to ensure their persistent existence".', htmlDescription='

All data sets that hold reference to this FCD.

Modelling note: FCD must maintain the link to DSs that reference it, so that the DSs can get notified before the FCD disappears. This enforces the following part of the DS spec: "The persistent existence of DATA and DataAttribute is expected as long as they are referenced as members of a DS. A system has to take special measures to ensure their persistent existence".

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3213, uuid={70E5708A-376A-4ead-A513-A89DD752D037}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,994 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1065, uuid=af6863de-3ae1-3883-a3d6-9967fc6b0a46, since=null, name=DataSetFCDMember, alias=, stereotype=, visibility=public, txtDescription='All functionally constrained data (groups of data with the same functional constraint) that this data set refers to. +Modelling note: This is FDC part of the originally defined DSMemberRef.', htmlDescription='

All functionally constrained data (groups of data with the same functional constraint) that this data set refers to.

Modelling note: This is FDC part of the originally defined DSMemberRef.

'], _type=FCD, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1066, uuid=77e6639b-28de-3cd4-bfa8-c57f8a18185d, since=null, name=DSs, alias=, stereotype=, visibility=public, txtDescription='All data sets that hold reference to this FCD. +Modelling note: FCD must maintain the link to DSs that reference it, so that the DSs can get notified before the FCD disappears. This enforces the following part of the DS spec: "The persistent existence of DATA and DataAttribute is expected as long as they are referenced as members of a DS. A system has to take special measures to ensure their persistent existence".', htmlDescription='

All data sets that hold reference to this FCD.

Modelling note: FCD must maintain the link to DSs that reference it, so that the DSs can get notified before the FCD disappears. This enforces the following part of the DS spec: "The persistent existence of DATA and DataAttribute is expected as long as they are referenced as members of a DS. A system has to take special measures to ensure their persistent existence".

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3213, uuid={70E5708A-376A-4ead-A513-A89DD752D037}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::FCD +2024-09-08 15:11:35,994 [main] DEBUG AssociationEndBuilder - Updated source type to FCD +2024-09-08 15:11:35,994 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1068, uuid=6a604f4f-84f8-335a-b10f-66d33d9869a9, since=null, name=FCD, alias=, stereotype=, visibility=public, txtDescription='Functionally constrained data of the containing common data class, that refers to this instance.', htmlDescription='

Functionally constrained data of the containing common data class, that refers to this instance.

'], _type=FCD, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1069, uuid=e151d1f0-dc6a-388b-ad1b-01b2da6c99da, since=null, name=FCDAs, alias=, stereotype=, visibility=public, txtDescription='All functionally constrained data attributes contained within the owning common data class, that have the functional constraint same as this functionally constrained data.', htmlDescription='

All functionally constrained data attributes contained within the owning common data class, that have the functional constraint same as this functionally constrained data.

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3214, uuid={1717A86E-6CE8-47b8-A41A-A4738DCDF5AE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,994 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1068, uuid=6a604f4f-84f8-335a-b10f-66d33d9869a9, since=null, name=FCD, alias=, stereotype=, visibility=public, txtDescription='Functionally constrained data of the containing common data class, that refers to this instance.', htmlDescription='

Functionally constrained data of the containing common data class, that refers to this instance.

'], _type=FCD, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1069, uuid=e151d1f0-dc6a-388b-ad1b-01b2da6c99da, since=null, name=FCDAs, alias=, stereotype=, visibility=public, txtDescription='All functionally constrained data attributes contained within the owning common data class, that have the functional constraint same as this functionally constrained data.', htmlDescription='

All functionally constrained data attributes contained within the owning common data class, that have the functional constraint same as this functionally constrained data.

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3214, uuid={1717A86E-6CE8-47b8-A41A-A4738DCDF5AE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::FCD +2024-09-08 15:11:35,994 [main] DEBUG AssociationEndBuilder - Updated target type to FCD +2024-09-08 15:11:35,995 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1051, uuid=db457cb8-fd6e-3808-a5d7-596d1be04931, since=null, name=CDC, alias=, stereotype=, visibility=public, txtDescription='Common data class containing this functionally constrained data.', htmlDescription='

Common data class containing this functionally constrained data.

'], _type=CDC, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1052, uuid=fcd20342-876e-32fc-9adf-8e834b5621bf, since=null, name=FCDs, alias=, stereotype=, visibility=public, txtDescription='All functionally constrained data (groups of data with the same functional constraint) contained within this common data class.', htmlDescription='

All functionally constrained data (groups of data with the same functional constraint) contained within this common data class.

'], _type=FCD, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3221, uuid={025EB020-6F7B-4dbf-A870-ABE4EE81547D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::FCD +2024-09-08 15:11:35,995 [main] DEBUG ClassBuilder - Adding FCD as subclass of HierarchyIEC61850Object +2024-09-08 15:11:35,995 [main] TRACE ClassBuilder - read from EA: MetaModel::FCD +2024-09-08 15:11:35,995 [main] TRACE ClassBuilder - Class FCDA (18 in package MetaModel) +2024-09-08 15:11:35,995 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::FCDA, _objData=UmlObjectData [id=3594, uuid={B87818BA-192E-4a1d-8AD7-0549A1C7944B}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1703, _eaTypeName=FCDAReference, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,995 [main] DEBUG AssociationEndBuilder - Updated source type to FCDA +2024-09-08 15:11:35,996 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1073, uuid=023c4245-5b20-33ca-9d0c-fef9777c4177, since=null, name=FCDA, alias=, stereotype=, visibility=public, txtDescription='FCDA constraining this data attribute; in case the parent is another (composed) data attribute, this is the FCDA of the parent.', htmlDescription='

FCDA constraining this data attribute; in case the parent is another (composed) data attribute, this is the FCDA of the parent.

'], _type=FCDA, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1074, uuid=835dfdc9-b932-364d-9142-830ef629df67, since=null, name=DA, alias=, stereotype=, visibility=public, txtDescription='Data attribute constrained by this instance.', htmlDescription='

Data attribute constrained by this instance.

'], _type=null, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3210, uuid={92EADAAE-DAF5-4c4a-9F54-A165DADB3054}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,996 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1073, uuid=023c4245-5b20-33ca-9d0c-fef9777c4177, since=null, name=FCDA, alias=, stereotype=, visibility=public, txtDescription='FCDA constraining this data attribute; in case the parent is another (composed) data attribute, this is the FCDA of the parent.', htmlDescription='

FCDA constraining this data attribute; in case the parent is another (composed) data attribute, this is the FCDA of the parent.

'], _type=FCDA, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1074, uuid=835dfdc9-b932-364d-9142-830ef629df67, since=null, name=DA, alias=, stereotype=, visibility=public, txtDescription='Data attribute constrained by this instance.', htmlDescription='

Data attribute constrained by this instance.

'], _type=null, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3210, uuid={92EADAAE-DAF5-4c4a-9F54-A165DADB3054}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::FCDA +2024-09-08 15:11:35,996 [main] DEBUG AssociationEndBuilder - Updated source type to FCDA +2024-09-08 15:11:35,996 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1076, uuid=38e6f351-6cf4-386b-a3b5-0becb7ec25e9, since=null, name=DataSetFCDAMember, alias=, stereotype=, visibility=public, txtDescription='All functionally constrained data attributes that this data set refers to. +Modelling note: This is FDCA part of the originally defined DSMemberRef.', htmlDescription='

All functionally constrained data attributes that this data set refers to.

Modelling note: This is FDCA part of the originally defined DSMemberRef.

'], _type=FCDA, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1077, uuid=32266325-8527-338f-9a6e-6389184bdc7e, since=null, name=DSs, alias=, stereotype=, visibility=public, txtDescription='All data sets that hold reference to this FCD. +Modelling note: FCDA must maintain the link to DSs that reference it, so that the DSs can get notified before the FCDA disappears. This enforces the following part of the DS spec: "The persistent existence of DATA and DataAttribute is expected as long as they are referenced as members of a DS. A system has to take special measures to ensure their persistent existence".', htmlDescription='

All data sets that hold reference to this FCD.

Modelling note: FCDA must maintain the link to DSs that reference it, so that the DSs can get notified before the FCDA disappears. This enforces the following part of the DS spec: "The persistent existence of DATA and DataAttribute is expected as long as they are referenced as members of a DS. A system has to take special measures to ensure their persistent existence".

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3211, uuid={25BC4E18-D9E0-4573-8B6F-6D80E6D61916}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,996 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1076, uuid=38e6f351-6cf4-386b-a3b5-0becb7ec25e9, since=null, name=DataSetFCDAMember, alias=, stereotype=, visibility=public, txtDescription='All functionally constrained data attributes that this data set refers to. +Modelling note: This is FDCA part of the originally defined DSMemberRef.', htmlDescription='

All functionally constrained data attributes that this data set refers to.

Modelling note: This is FDCA part of the originally defined DSMemberRef.

'], _type=FCDA, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1077, uuid=32266325-8527-338f-9a6e-6389184bdc7e, since=null, name=DSs, alias=, stereotype=, visibility=public, txtDescription='All data sets that hold reference to this FCD. +Modelling note: FCDA must maintain the link to DSs that reference it, so that the DSs can get notified before the FCDA disappears. This enforces the following part of the DS spec: "The persistent existence of DATA and DataAttribute is expected as long as they are referenced as members of a DS. A system has to take special measures to ensure their persistent existence".', htmlDescription='

All data sets that hold reference to this FCD.

Modelling note: FCDA must maintain the link to DSs that reference it, so that the DSs can get notified before the FCDA disappears. This enforces the following part of the DS spec: "The persistent existence of DATA and DataAttribute is expected as long as they are referenced as members of a DS. A system has to take special measures to ensure their persistent existence".

'], _type=null, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3211, uuid={25BC4E18-D9E0-4573-8B6F-6D80E6D61916}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::FCDA +2024-09-08 15:11:35,996 [main] DEBUG AssociationEndBuilder - Updated target type to FCDA +2024-09-08 15:11:35,997 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1068, uuid=6a604f4f-84f8-335a-b10f-66d33d9869a9, since=null, name=FCD, alias=, stereotype=, visibility=public, txtDescription='Functionally constrained data of the containing common data class, that refers to this instance.', htmlDescription='

Functionally constrained data of the containing common data class, that refers to this instance.

'], _type=FCD, _multiplicity=[1..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1069, uuid=e151d1f0-dc6a-388b-ad1b-01b2da6c99da, since=null, name=FCDAs, alias=, stereotype=, visibility=public, txtDescription='All functionally constrained data attributes contained within the owning common data class, that have the functional constraint same as this functionally constrained data.', htmlDescription='

All functionally constrained data attributes contained within the owning common data class, that have the functional constraint same as this functionally constrained data.

'], _type=FCDA, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3214, uuid={1717A86E-6CE8-47b8-A41A-A4738DCDF5AE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::FCDA +2024-09-08 15:11:35,997 [main] DEBUG AssociationEndBuilder - Updated target type to FCDA +2024-09-08 15:11:35,997 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1048, uuid=90ab812d-8564-3c32-80cf-4046e6691d91, since=null, name=CDC, alias=, stereotype=, visibility=public, txtDescription='Common data class containing this functionally constrained data attribute.', htmlDescription='

Common data class containing this functionally constrained data attribute.

'], _type=CDC, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1049, uuid=8dd3979e-5576-34db-99c5-b55e818bdea5, since=null, name=FCDAs, alias=, stereotype=, visibility=public, txtDescription='All functionally constrained data attributes contained within this common data class.', htmlDescription='

All functionally constrained data attributes contained within this common data class.

'], _type=FCDA, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3220, uuid={56217EE0-7F5F-4b89-A6EB-C65850A000AB}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::FCDA +2024-09-08 15:11:35,997 [main] DEBUG ClassBuilder - Adding FCDA as subclass of NamedIEC61850Object +2024-09-08 15:11:35,997 [main] TRACE ClassBuilder - read from EA: MetaModel::FCDA +2024-09-08 15:11:35,997 [main] TRACE ClassBuilder - Class DA (19 in package MetaModel) +2024-09-08 15:11:35,997 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::DA, _objData=UmlObjectData [id=3595, uuid={9BCB520F-E69E-42f6-B46B-C5CD184D0DC6}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1703, _eaTypeName=FCDAReference, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,997 [main] DEBUG AssociationEndBuilder - Updated target type to DA +2024-09-08 15:11:35,997 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1081, uuid=0851a593-0b50-32c5-80a4-4db4afdc1911, since=null, name=ComposedDA, alias=, stereotype=, visibility=public, txtDescription='Composed data attribute containing this data attribute; null in case this is primitive data attribute.', htmlDescription='

Composed data attribute containing this data attribute; null in case this is primitive data attribute.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1082, uuid=d9f8258b-5288-3a70-a818-5fba64c2ab77, since=null, name=DAs, alias=, stereotype=, visibility=public, txtDescription='All data attributes contained within this composed data attribute.', htmlDescription='

All data attributes contained within this composed data attribute.

'], _type=DA, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3208, uuid={D12489B7-C2EE-4a0f-869F-F857A942FDEF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:35,998 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1081, uuid=0851a593-0b50-32c5-80a4-4db4afdc1911, since=null, name=ComposedDA, alias=, stereotype=, visibility=public, txtDescription='Composed data attribute containing this data attribute; null in case this is primitive data attribute.', htmlDescription='

Composed data attribute containing this data attribute; null in case this is primitive data attribute.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1082, uuid=d9f8258b-5288-3a70-a818-5fba64c2ab77, since=null, name=DAs, alias=, stereotype=, visibility=public, txtDescription='All data attributes contained within this composed data attribute.', htmlDescription='

All data attributes contained within this composed data attribute.

'], _type=DA, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3208, uuid={D12489B7-C2EE-4a0f-869F-F857A942FDEF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::DA +2024-09-08 15:11:35,998 [main] DEBUG AssociationEndBuilder - Updated target type to DA +2024-09-08 15:11:35,998 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1073, uuid=023c4245-5b20-33ca-9d0c-fef9777c4177, since=null, name=FCDA, alias=, stereotype=, visibility=public, txtDescription='FCDA constraining this data attribute; in case the parent is another (composed) data attribute, this is the FCDA of the parent.', htmlDescription='

FCDA constraining this data attribute; in case the parent is another (composed) data attribute, this is the FCDA of the parent.

'], _type=FCDA, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1074, uuid=835dfdc9-b932-364d-9142-830ef629df67, since=null, name=DA, alias=, stereotype=, visibility=public, txtDescription='Data attribute constrained by this instance.', htmlDescription='

Data attribute constrained by this instance.

'], _type=DA, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3210, uuid={92EADAAE-DAF5-4c4a-9F54-A165DADB3054}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::DA +2024-09-08 15:11:35,998 [main] DEBUG ClassBuilder - Adding DA as subclass of NamedIEC61850Object +2024-09-08 15:11:35,998 [main] TRACE ClassBuilder - read from EA: MetaModel::DA +2024-09-08 15:11:35,998 [main] TRACE ClassBuilder - Class PrimitiveDA (20 in package MetaModel) +2024-09-08 15:11:35,999 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::PrimitiveDA, _objData=UmlObjectData [id=3596, uuid={6D0553ED-7183-49b8-AA89-281C5ED4C156}, since=null, name=attrVal, alias=, stereotype=, visibility=public, txtDescription='Attribute value.', htmlDescription='

Attribute value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1715, _eaTypeName=AttrValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:35,999 [main] DEBUG AssociationEndBuilder - Updated target type to PrimitiveDA +2024-09-08 15:11:35,999 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1058, uuid=c04fbe8d-887c-3da6-bd2b-a05c91e01d78, since=null, name=ControlCDC, alias=, stereotype=, visibility=public, txtDescription='Common data class defining this service parameter.', htmlDescription='

Common data class defining this service parameter.

'], _type=PrimitiveCDC, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1059, uuid=025d5e72-45d4-399f-b6e3-77175140acfa, since=null, name=ServiceParameter, alias=, stereotype=, visibility=public, txtDescription='Service parameter defined within this primitive common data class.', htmlDescription='

Service parameter defined within this primitive common data class.

'], _type=PrimitiveDA, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3218, uuid={7238D4C2-55BD-4263-8221-888C7557A666}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::PrimitiveDA +2024-09-08 15:11:35,999 [main] DEBUG ClassBuilder - Adding PrimitiveDA as subclass of DA +2024-09-08 15:11:35,999 [main] DEBUG ClassBuilder - Adding PrimitiveDA as superclass of PHYCOMADDR +2024-09-08 15:11:35,999 [main] DEBUG ClassBuilder - Adding PrimitiveDA as superclass of ObjectReference +2024-09-08 15:11:35,999 [main] DEBUG ClassBuilder - Adding PrimitiveDA as superclass of VISIBLE_STRING255 +2024-09-08 15:11:35,999 [main] DEBUG ClassBuilder - Adding PrimitiveDA as superclass of UNICODE_STRING255 +2024-09-08 15:11:35,999 [main] DEBUG ClassBuilder - Adding PrimitiveDA as superclass of INT32U +2024-09-08 15:11:35,999 [main] DEBUG ClassBuilder - Adding PrimitiveDA as superclass of INT32 +2024-09-08 15:11:35,999 [main] DEBUG ClassBuilder - Adding PrimitiveDA as superclass of INT16U +2024-09-08 15:11:35,999 [main] DEBUG ClassBuilder - Adding PrimitiveDA as superclass of FLOAT32 +2024-09-08 15:11:35,999 [main] DEBUG ClassBuilder - Adding PrimitiveDA as superclass of BOOLEAN +2024-09-08 15:11:35,999 [main] TRACE ClassBuilder - read from EA: MetaModel::PrimitiveDA +2024-09-08 15:11:35,999 [main] TRACE ClassBuilder - Class PackedPrimitiveDA (21 in package MetaModel) +2024-09-08 15:11:35,999 [main] DEBUG ClassBuilder - Adding PackedPrimitiveDA as subclass of PrimitiveDA +2024-09-08 15:11:35,999 [main] DEBUG ClassBuilder - Adding PackedPrimitiveDA as superclass of TriggerConditions +2024-09-08 15:11:35,999 [main] DEBUG ClassBuilder - Adding PackedPrimitiveDA as superclass of TimeStamp +2024-09-08 15:11:36,000 [main] TRACE ClassBuilder - read from EA: MetaModel::PackedPrimitiveDA +2024-09-08 15:11:36,000 [main] TRACE ClassBuilder - Class EnumDA (22 in package MetaModel) +2024-09-08 15:11:36,000 [main] DEBUG ClassBuilder - Adding EnumDA as subclass of PrimitiveDA +2024-09-08 15:11:36,000 [main] TRACE ClassBuilder - read from EA: MetaModel::EnumDA +2024-09-08 15:11:36,000 [main] TRACE ClassBuilder - Class PackedEnumDA (23 in package MetaModel) +2024-09-08 15:11:36,001 [main] DEBUG ClassBuilder - Adding PackedEnumDA as subclass of EnumDA +2024-09-08 15:11:36,001 [main] DEBUG ClassBuilder - Adding PackedEnumDA as superclass of BsControl +2024-09-08 15:11:36,001 [main] DEBUG ClassBuilder - Adding PackedEnumDA as superclass of DpStatus +2024-09-08 15:11:36,001 [main] TRACE ClassBuilder - read from EA: MetaModel::PackedEnumDA +2024-09-08 15:11:36,001 [main] TRACE ClassBuilder - Class ComposedDA (24 in package MetaModel) +2024-09-08 15:11:36,001 [main] DEBUG AssociationEndBuilder - Updated source type to ComposedDA +2024-09-08 15:11:36,002 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1081, uuid=0851a593-0b50-32c5-80a4-4db4afdc1911, since=null, name=ComposedDA, alias=, stereotype=, visibility=public, txtDescription='Composed data attribute containing this data attribute; null in case this is primitive data attribute.', htmlDescription='

Composed data attribute containing this data attribute; null in case this is primitive data attribute.

'], _type=ComposedDA, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1082, uuid=d9f8258b-5288-3a70-a818-5fba64c2ab77, since=null, name=DAs, alias=, stereotype=, visibility=public, txtDescription='All data attributes contained within this composed data attribute.', htmlDescription='

All data attributes contained within this composed data attribute.

'], _type=DA, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3208, uuid={D12489B7-C2EE-4a0f-869F-F857A942FDEF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::ComposedDA +2024-09-08 15:11:36,002 [main] DEBUG ClassBuilder - Adding ComposedDA as subclass of DA +2024-09-08 15:11:36,002 [main] TRACE ClassBuilder - read from EA: MetaModel::ComposedDA +2024-09-08 15:11:36,002 [main] TRACE ClassBuilder - Class DS (25 in package MetaModel) +2024-09-08 15:11:36,002 [main] DEBUG AssociationEndBuilder - Updated target type to DS +2024-09-08 15:11:36,003 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1091, uuid=754dda4b-1ba3-3c6f-a897-16b85d68532b, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1092, uuid=1031f846-1193-396c-a0c8-926a4fe94212, since=null, name=DS, alias=, stereotype=, visibility=public, txtDescription='Dataset on which this control block does reporting.', htmlDescription='

Dataset on which this control block does reporting.

'], _type=DS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3200, uuid={6ED5A47C-6FE5-4d6c-9066-A0852F973D51}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:36,003 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1091, uuid=754dda4b-1ba3-3c6f-a897-16b85d68532b, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1092, uuid=1031f846-1193-396c-a0c8-926a4fe94212, since=null, name=DS, alias=, stereotype=, visibility=public, txtDescription='Dataset on which this control block does reporting.', htmlDescription='

Dataset on which this control block does reporting.

'], _type=DS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3200, uuid={6ED5A47C-6FE5-4d6c-9066-A0852F973D51}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::DS +2024-09-08 15:11:36,003 [main] DEBUG AssociationEndBuilder - Updated target type to DS +2024-09-08 15:11:36,003 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1094, uuid=41bfd20a-38bb-3b0b-ac75-acf0845530a7, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1095, uuid=642e8482-67c3-35c6-bed8-242064f73265, since=null, name=DS, alias=, stereotype=, visibility=public, txtDescription='Dataset on which this control block does samples reporting.', htmlDescription='

Dataset on which this control block does samples reporting.

'], _type=DS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3201, uuid={050244CD-359B-4516-B382-B2C560ECFCA1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:36,003 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1094, uuid=41bfd20a-38bb-3b0b-ac75-acf0845530a7, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1095, uuid=642e8482-67c3-35c6-bed8-242064f73265, since=null, name=DS, alias=, stereotype=, visibility=public, txtDescription='Dataset on which this control block does samples reporting.', htmlDescription='

Dataset on which this control block does samples reporting.

'], _type=DS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3201, uuid={050244CD-359B-4516-B382-B2C560ECFCA1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::DS +2024-09-08 15:11:36,003 [main] DEBUG AssociationEndBuilder - Updated target type to DS +2024-09-08 15:11:36,003 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1076, uuid=38e6f351-6cf4-386b-a3b5-0becb7ec25e9, since=null, name=DataSetFCDAMember, alias=, stereotype=, visibility=public, txtDescription='All functionally constrained data attributes that this data set refers to. +Modelling note: This is FDCA part of the originally defined DSMemberRef.', htmlDescription='

All functionally constrained data attributes that this data set refers to.

Modelling note: This is FDCA part of the originally defined DSMemberRef.

'], _type=FCDA, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1077, uuid=32266325-8527-338f-9a6e-6389184bdc7e, since=null, name=DSs, alias=, stereotype=, visibility=public, txtDescription='All data sets that hold reference to this FCD. +Modelling note: FCDA must maintain the link to DSs that reference it, so that the DSs can get notified before the FCDA disappears. This enforces the following part of the DS spec: "The persistent existence of DATA and DataAttribute is expected as long as they are referenced as members of a DS. A system has to take special measures to ensure their persistent existence".', htmlDescription='

All data sets that hold reference to this FCD.

Modelling note: FCDA must maintain the link to DSs that reference it, so that the DSs can get notified before the FCDA disappears. This enforces the following part of the DS spec: "The persistent existence of DATA and DataAttribute is expected as long as they are referenced as members of a DS. A system has to take special measures to ensure their persistent existence".

'], _type=DS, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3211, uuid={25BC4E18-D9E0-4573-8B6F-6D80E6D61916}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::DS +2024-09-08 15:11:36,003 [main] DEBUG AssociationEndBuilder - Updated target type to DS +2024-09-08 15:11:36,003 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1065, uuid=af6863de-3ae1-3883-a3d6-9967fc6b0a46, since=null, name=DataSetFCDMember, alias=, stereotype=, visibility=public, txtDescription='All functionally constrained data (groups of data with the same functional constraint) that this data set refers to. +Modelling note: This is FDC part of the originally defined DSMemberRef.', htmlDescription='

All functionally constrained data (groups of data with the same functional constraint) that this data set refers to.

Modelling note: This is FDC part of the originally defined DSMemberRef.

'], _type=FCD, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1066, uuid=77e6639b-28de-3cd4-bfa8-c57f8a18185d, since=null, name=DSs, alias=, stereotype=, visibility=public, txtDescription='All data sets that hold reference to this FCD. +Modelling note: FCD must maintain the link to DSs that reference it, so that the DSs can get notified before the FCD disappears. This enforces the following part of the DS spec: "The persistent existence of DATA and DataAttribute is expected as long as they are referenced as members of a DS. A system has to take special measures to ensure their persistent existence".', htmlDescription='

All data sets that hold reference to this FCD.

Modelling note: FCD must maintain the link to DSs that reference it, so that the DSs can get notified before the FCD disappears. This enforces the following part of the DS spec: "The persistent existence of DATA and DataAttribute is expected as long as they are referenced as members of a DS. A system has to take special measures to ensure their persistent existence".

'], _type=DS, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3213, uuid={70E5708A-376A-4ead-A513-A89DD752D037}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::DS +2024-09-08 15:11:36,003 [main] DEBUG ClassBuilder - Adding DS as subclass of NamedIEC61850Object +2024-09-08 15:11:36,003 [main] TRACE ClassBuilder - read from EA: MetaModel::DS +2024-09-08 15:11:36,003 [main] TRACE ClassBuilder - Class LNOwnedDS (26 in package MetaModel) +2024-09-08 15:11:36,004 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::LNOwnedDS, _objData=UmlObjectData [id=3597, uuid={178D709F-C872-44cb-9A6B-41E324507F65}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1701, _eaTypeName=LNOwnedDSReference, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,004 [main] DEBUG AssociationEndBuilder - Updated target type to LNOwnedDS +2024-09-08 15:11:36,004 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1099, uuid=a0160709-7011-3070-8575-d499c997b6ca, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1100, uuid=017c9fb8-6160-374a-b89a-e95c279b0b44, since=null, name=LNOwnedDS, alias=, stereotype=, visibility=public, txtDescription='Configured or persistent dataset on which this control block does samples reporting.', htmlDescription='

Configured or persistent dataset on which this control block does samples reporting.

'], _type=LNOwnedDS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3195, uuid={F357D381-3044-4cd1-8CFA-38A2B656F174}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:36,004 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1099, uuid=a0160709-7011-3070-8575-d499c997b6ca, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1100, uuid=017c9fb8-6160-374a-b89a-e95c279b0b44, since=null, name=LNOwnedDS, alias=, stereotype=, visibility=public, txtDescription='Configured or persistent dataset on which this control block does samples reporting.', htmlDescription='

Configured or persistent dataset on which this control block does samples reporting.

'], _type=LNOwnedDS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3195, uuid={F357D381-3044-4cd1-8CFA-38A2B656F174}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::LNOwnedDS +2024-09-08 15:11:36,004 [main] DEBUG AssociationEndBuilder - Updated target type to LNOwnedDS +2024-09-08 15:11:36,005 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1102, uuid=c667d53a-cd89-3a97-a85d-e0c201ba99be, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1103, uuid=c06bb548-4faa-374b-8c34-fd0edfe9524d, since=null, name=LNOwnedDS, alias=, stereotype=, visibility=public, txtDescription='Configured or persistent dataset on which this control block does logging.', htmlDescription='

Configured or persistent dataset on which this control block does logging.

'], _type=LNOwnedDS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3196, uuid={EA54B291-68A6-4335-8F83-75866CFEC3A8}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:36,005 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1102, uuid=c667d53a-cd89-3a97-a85d-e0c201ba99be, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1103, uuid=c06bb548-4faa-374b-8c34-fd0edfe9524d, since=null, name=LNOwnedDS, alias=, stereotype=, visibility=public, txtDescription='Configured or persistent dataset on which this control block does logging.', htmlDescription='

Configured or persistent dataset on which this control block does logging.

'], _type=LNOwnedDS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3196, uuid={EA54B291-68A6-4335-8F83-75866CFEC3A8}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::LNOwnedDS +2024-09-08 15:11:36,005 [main] DEBUG AssociationEndBuilder - Updated target type to LNOwnedDS +2024-09-08 15:11:36,005 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1105, uuid=af21d0c9-7db2-327e-9357-2cbf59eb343d, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1106, uuid=e6823309-c63d-36d0-90f4-432dbb9633f8, since=null, name=LNOwnedDS, alias=, stereotype=, visibility=public, txtDescription='Configured or persistent dataset on which this control block does reporting.', htmlDescription='

Configured or persistent dataset on which this control block does reporting.

'], _type=LNOwnedDS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3197, uuid={76C586C4-9922-4d73-A4FD-C5D18503439E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:36,005 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1105, uuid=af21d0c9-7db2-327e-9357-2cbf59eb343d, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1106, uuid=e6823309-c63d-36d0-90f4-432dbb9633f8, since=null, name=LNOwnedDS, alias=, stereotype=, visibility=public, txtDescription='Configured or persistent dataset on which this control block does reporting.', htmlDescription='

Configured or persistent dataset on which this control block does reporting.

'], _type=LNOwnedDS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3197, uuid={76C586C4-9922-4d73-A4FD-C5D18503439E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::LNOwnedDS +2024-09-08 15:11:36,005 [main] DEBUG AssociationEndBuilder - Updated target type to LNOwnedDS +2024-09-08 15:11:36,005 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1108, uuid=b9d487a3-0398-342e-8ff5-5c228ed5652b, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1109, uuid=829fb6e1-1ddd-3d1d-bd66-36feb14446c7, since=null, name=LNOwnedDS, alias=, stereotype=, visibility=public, txtDescription='Configured or persistent dataset on which this control block does GOOSE eventing.', htmlDescription='

Configured or persistent dataset on which this control block does GOOSE eventing.

'], _type=LNOwnedDS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3198, uuid={3F8B1E7F-FBA3-44e0-8B59-38EF2CB27164}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:36,006 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1108, uuid=b9d487a3-0398-342e-8ff5-5c228ed5652b, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1109, uuid=829fb6e1-1ddd-3d1d-bd66-36feb14446c7, since=null, name=LNOwnedDS, alias=, stereotype=, visibility=public, txtDescription='Configured or persistent dataset on which this control block does GOOSE eventing.', htmlDescription='

Configured or persistent dataset on which this control block does GOOSE eventing.

'], _type=LNOwnedDS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3198, uuid={3F8B1E7F-FBA3-44e0-8B59-38EF2CB27164}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::LNOwnedDS +2024-09-08 15:11:36,006 [main] DEBUG AssociationEndBuilder - Updated target type to LNOwnedDS +2024-09-08 15:11:36,006 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1016, uuid=598e95ae-dfa7-39fb-88a4-4b35a32d16a6, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this data set.', htmlDescription='

Logical node that contains this data set.

'], _type=LN, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1017, uuid=ad95f35b-687c-3ff8-8d6f-753ec8310166, since=null, name=LNOwnedDSs, alias=, stereotype=, visibility=public, txtDescription='All datasets contained within the logical node. +Modelling note: To distinguish between data sets effectively contained by LN, and non-persistent data sets (which are owned by the TPAA over which they have been created), we introduced an abstract LNOwnedDS class, which excludes non-persistent DSs.', htmlDescription='

All datasets contained within the logical node.

Modelling note: To distinguish between data sets effectively contained by LN, and non-persistent data sets (which are owned by the TPAA over which they have been created), we introduced an abstract LNOwnedDS class, which excludes non-persistent DSs.

'], _type=LNOwnedDS, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3231, uuid={7F7F081B-F2D6-484c-963B-F44D4FE8F9CC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::LNOwnedDS +2024-09-08 15:11:36,006 [main] DEBUG ClassBuilder - Adding LNOwnedDS as subclass of DS +2024-09-08 15:11:36,006 [main] TRACE ClassBuilder - read from EA: MetaModel::LNOwnedDS +2024-09-08 15:11:36,006 [main] TRACE ClassBuilder - Class NonPersistentDS (27 in package MetaModel) +2024-09-08 15:11:36,006 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::NonPersistentDS, _objData=UmlObjectData [id=3598, uuid={D70F19B4-50F6-4ef3-B474-4097F3C69C1D}, since=null, name=isReferenced, alias=, stereotype=, visibility=public, txtDescription='Whether this persistent data set is referenced by any control block. +Modelling note: Persistent data set has to maintain the count of control blocks that refer to it. As long as any control block refers to it, the data set must not be deleted.', htmlDescription='

Whether this persistent data set is referenced by any control block.

Modelling note: Persistent data set has to maintain the count of control blocks that refer to it. As long as any control block refers to it, the data set must not be deleted.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,006 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::NonPersistentDS, _objData=UmlObjectData [id=3599, uuid={621B00EC-B4C7-4e96-B78E-699BDF150650}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1695, _eaTypeName=NonPersistentDSReference, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,007 [main] DEBUG AssociationEndBuilder - Updated target type to NonPersistentDS +2024-09-08 15:11:36,007 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=996, uuid=33873e04-2b68-3050-9013-5d6a42a0a6e5, since=null, name=TPAA, alias=, stereotype=, visibility=public, txtDescription='Two-party application association that contains this non-persistent data set.', htmlDescription='

Two-party application association that contains this non-persistent data set.

'], _type=TPAA, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=997, uuid=5880d6da-097a-3fed-aae8-1381cf23315b, since=null, name=NonPersistentDSs, alias=, stereotype=, visibility=public, txtDescription='All non-persistent data sets contained within this two-party application association.', htmlDescription='

All non-persistent data sets contained within this two-party application association.

'], _type=NonPersistentDS, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3242, uuid={B9ECE073-A02C-48da-93A7-2B8F2E8C9059}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::NonPersistentDS +2024-09-08 15:11:36,007 [main] DEBUG ClassBuilder - Adding NonPersistentDS as subclass of DS +2024-09-08 15:11:36,007 [main] TRACE ClassBuilder - read from EA: MetaModel::NonPersistentDS +2024-09-08 15:11:36,007 [main] TRACE ClassBuilder - Class ConfiguredDS (28 in package MetaModel) +2024-09-08 15:11:36,007 [main] DEBUG ClassBuilder - Adding ConfiguredDS as subclass of LNOwnedDS +2024-09-08 15:11:36,007 [main] TRACE ClassBuilder - read from EA: MetaModel::ConfiguredDS +2024-09-08 15:11:36,007 [main] TRACE ClassBuilder - Class PersistentDS (29 in package MetaModel) +2024-09-08 15:11:36,008 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::PersistentDS, _objData=UmlObjectData [id=3600, uuid={6031C78B-0DF2-4ebc-B8D9-F1536979D005}, since=null, name=isReferenced, alias=, stereotype=, visibility=public, txtDescription='Whether this persistent data set is referenced by any control block. +Modelling note: Persistent data set has to maintain the count of control blocks that refer to it. As long as any control block refers to it, the data set must not be deleted.', htmlDescription='

Whether this persistent data set is referenced by any control block.

Modelling note: Persistent data set has to maintain the count of control blocks that refer to it. As long as any control block refers to it, the data set must not be deleted.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,008 [main] DEBUG ClassBuilder - Adding PersistentDS as subclass of LNOwnedDS +2024-09-08 15:11:36,008 [main] TRACE ClassBuilder - read from EA: MetaModel::PersistentDS +2024-09-08 15:11:36,008 [main] TRACE ClassBuilder - Class SUBSTITUTION (30 in package MetaModel) +2024-09-08 15:11:36,008 [main] TRACE ClassBuilder - read from EA: MetaModel::SUBSTITUTION +2024-09-08 15:11:36,008 [main] TRACE ClassBuilder - Class ControlBlock (31 in package MetaModel) +2024-09-08 15:11:36,009 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::ControlBlock, _objData=UmlObjectData [id=3601, uuid={A222DE94-3FCC-4552-ABD6-E06CD9D4785A}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1698, _eaTypeName=CBReference, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,009 [main] DEBUG ClassBuilder - Adding ControlBlock as subclass of NamedIEC61850Object +2024-09-08 15:11:36,009 [main] TRACE ClassBuilder - read from EA: MetaModel::ControlBlock +2024-09-08 15:11:36,009 [main] TRACE ClassBuilder - Class RCB (32 in package MetaModel) +2024-09-08 15:11:36,009 [main] DEBUG ClassBuilder - Adding RCB as subclass of ControlBlock +2024-09-08 15:11:36,009 [main] TRACE ClassBuilder - read from EA: MetaModel::RCB +2024-09-08 15:11:36,009 [main] TRACE ClassBuilder - Class BRCB (33 in package MetaModel) +2024-09-08 15:11:36,009 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::BRCB, _objData=UmlObjectData [id=3602, uuid={49A42927-00D7-4419-B76E-ED5F48ECCCB8}, since=null, name=clientAddress, alias=, stereotype=, visibility=public, txtDescription='Address of the client configured to use this buffered sampled values control block.', htmlDescription='

Address of the client configured to use this buffered sampled values control block.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1771, _eaTypeName=IPAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,010 [main] DEBUG AssociationEndBuilder - Updated source type to BRCB +2024-09-08 15:11:36,010 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1105, uuid=af21d0c9-7db2-327e-9357-2cbf59eb343d, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=BRCB, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1106, uuid=e6823309-c63d-36d0-90f4-432dbb9633f8, since=null, name=LNOwnedDS, alias=, stereotype=, visibility=public, txtDescription='Configured or persistent dataset on which this control block does reporting.', htmlDescription='

Configured or persistent dataset on which this control block does reporting.

'], _type=LNOwnedDS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3197, uuid={76C586C4-9922-4d73-A4FD-C5D18503439E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::BRCB +2024-09-08 15:11:36,010 [main] DEBUG AssociationEndBuilder - Updated target type to BRCB +2024-09-08 15:11:36,010 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1028, uuid=e7603d9e-d7ed-34d2-a8c2-fe57012d3517, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this buffered report control block.', htmlDescription='

Logical node that contains this buffered report control block.

'], _type=LN, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1029, uuid=3e1af449-26b3-33ce-8b0e-bca6ed828fdc, since=null, name=BRCBs, alias=, stereotype=, visibility=public, txtDescription='All buffered report control blocks contained in this logical node.', htmlDescription='

All buffered report control blocks contained in this logical node.

'], _type=BRCB, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3235, uuid={0F20B431-6EE2-469b-8223-819230E9C43E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::BRCB +2024-09-08 15:11:36,010 [main] DEBUG ClassBuilder - Adding BRCB as subclass of RCB +2024-09-08 15:11:36,010 [main] TRACE ClassBuilder - read from EA: MetaModel::BRCB +2024-09-08 15:11:36,010 [main] TRACE ClassBuilder - Class URCB (34 in package MetaModel) +2024-09-08 15:11:36,010 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::URCB, _objData=UmlObjectData [id=3603, uuid={B5927ACC-713E-4617-AA8C-BC2DF96653FC}, since=null, name=clientAddress, alias=, stereotype=, visibility=public, txtDescription='Address of the client currently using this unbuffered report control block.', htmlDescription='

Address of the client currently using this unbuffered report control block.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1771, _eaTypeName=IPAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,010 [main] DEBUG AssociationEndBuilder - Updated source type to URCB +2024-09-08 15:11:36,010 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1091, uuid=754dda4b-1ba3-3c6f-a897-16b85d68532b, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=URCB, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1092, uuid=1031f846-1193-396c-a0c8-926a4fe94212, since=null, name=DS, alias=, stereotype=, visibility=public, txtDescription='Dataset on which this control block does reporting.', htmlDescription='

Dataset on which this control block does reporting.

'], _type=DS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3200, uuid={6ED5A47C-6FE5-4d6c-9066-A0852F973D51}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::URCB +2024-09-08 15:11:36,010 [main] DEBUG AssociationEndBuilder - Updated target type to URCB +2024-09-08 15:11:36,011 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=1025, uuid=a356009c-e249-3887-a8c2-5efc8b789aeb, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this unbuffered report control block.', htmlDescription='

Logical node that contains this unbuffered report control block.

'], _type=LN, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1026, uuid=a98e6c87-71bd-3819-b3e8-db240e74bd95, since=null, name=URCBs, alias=, stereotype=, visibility=public, txtDescription='All unbuffered report control blocks contained in this logical node.', htmlDescription='

All unbuffered report control blocks contained in this logical node.

'], _type=URCB, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3234, uuid={1CDCF8AA-E5B2-490a-AC9E-28949329C1F9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::URCB +2024-09-08 15:11:36,011 [main] DEBUG ClassBuilder - Adding URCB as subclass of RCB +2024-09-08 15:11:36,011 [main] TRACE ClassBuilder - read from EA: MetaModel::URCB +2024-09-08 15:11:36,012 [main] TRACE ClassBuilder - Class LCB (35 in package MetaModel) +2024-09-08 15:11:36,012 [main] DEBUG AssociationEndBuilder - Updated source type to LCB +2024-09-08 15:11:36,013 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1126, uuid=ffeed84c-7cb1-3e7b-b4ec-4bd78275bb98, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=LCB, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1127, uuid=956f45df-c33e-36bb-a970-1eec7ebf4d41, since=null, name=LOG, alias=, stereotype=, visibility=public, txtDescription='Log to which this control block logs entries.', htmlDescription='

Log to which this control block logs entries.

'], _type=null, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3186, uuid={E2E6813C-06BC-49cd-A3E4-BFAD1AFF3150}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:36,013 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1126, uuid=ffeed84c-7cb1-3e7b-b4ec-4bd78275bb98, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=LCB, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1127, uuid=956f45df-c33e-36bb-a970-1eec7ebf4d41, since=null, name=LOG, alias=, stereotype=, visibility=public, txtDescription='Log to which this control block logs entries.', htmlDescription='

Log to which this control block logs entries.

'], _type=null, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3186, uuid={E2E6813C-06BC-49cd-A3E4-BFAD1AFF3150}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::LCB +2024-09-08 15:11:36,013 [main] DEBUG AssociationEndBuilder - Updated source type to LCB +2024-09-08 15:11:36,013 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1102, uuid=c667d53a-cd89-3a97-a85d-e0c201ba99be, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=LCB, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1103, uuid=c06bb548-4faa-374b-8c34-fd0edfe9524d, since=null, name=LNOwnedDS, alias=, stereotype=, visibility=public, txtDescription='Configured or persistent dataset on which this control block does logging.', htmlDescription='

Configured or persistent dataset on which this control block does logging.

'], _type=LNOwnedDS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3196, uuid={EA54B291-68A6-4335-8F83-75866CFEC3A8}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::LCB +2024-09-08 15:11:36,013 [main] DEBUG AssociationEndBuilder - Updated target type to LCB +2024-09-08 15:11:36,013 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1022, uuid=87feb7ab-da8f-3ba7-aae0-aa46758eaf0f, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this log control block.', htmlDescription='

Logical node that contains this log control block.

'], _type=LN, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1023, uuid=c7ae4357-23e6-374c-a634-364fe49cda56, since=null, name=LCBs, alias=, stereotype=, visibility=public, txtDescription='All log control blocks contained in this device logical node.', htmlDescription='

All log control blocks contained in this device logical node.

'], _type=LCB, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3233, uuid={4EDAC9DF-298C-4398-A217-F8EE4F5B1585}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::LCB +2024-09-08 15:11:36,013 [main] DEBUG ClassBuilder - Adding LCB as subclass of ControlBlock +2024-09-08 15:11:36,013 [main] TRACE ClassBuilder - read from EA: MetaModel::LCB +2024-09-08 15:11:36,013 [main] TRACE ClassBuilder - Class LOG (36 in package MetaModel) +2024-09-08 15:11:36,013 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::LOG, _objData=UmlObjectData [id=3604, uuid={83B4C180-8173-4ced-91C7-171BCA34F649}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1700, _eaTypeName=LOGReference, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,014 [main] DEBUG AssociationEndBuilder - Updated target type to LOG +2024-09-08 15:11:36,014 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1126, uuid=ffeed84c-7cb1-3e7b-b4ec-4bd78275bb98, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=LCB, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1127, uuid=956f45df-c33e-36bb-a970-1eec7ebf4d41, since=null, name=LOG, alias=, stereotype=, visibility=public, txtDescription='Log to which this control block logs entries.', htmlDescription='

Log to which this control block logs entries.

'], _type=LOG, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=3186, uuid={E2E6813C-06BC-49cd-A3E4-BFAD1AFF3150}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::LOG +2024-09-08 15:11:36,014 [main] DEBUG AssociationEndBuilder - Updated target type to LOG +2024-09-08 15:11:36,014 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1019, uuid=91389a73-8253-3920-bb6e-2ca4b6596579, since=null, name=LN, alias=, stereotype=, visibility=public, txtDescription='Logical node that contains this log.', htmlDescription='

Logical node that contains this log.

'], _type=LN, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1020, uuid=6dba35d3-b8a8-39a0-96f5-63c3fb0ca786, since=null, name=LOGs, alias=, stereotype=, visibility=public, txtDescription='All logs contained in this device logical node.', htmlDescription='

All logs contained in this device logical node.

'], _type=LOG, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3232, uuid={7F440C52-EE5C-4b8b-A1A0-DC7AA86473A0}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::LOG +2024-09-08 15:11:36,014 [main] DEBUG ClassBuilder - Adding LOG as subclass of NamedIEC61850Object +2024-09-08 15:11:36,014 [main] TRACE ClassBuilder - read from EA: MetaModel::LOG +2024-09-08 15:11:36,014 [main] TRACE ClassBuilder - Class GCB (37 in package MetaModel) +2024-09-08 15:11:36,014 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::GCB, _objData=UmlObjectData [id=3605, uuid={8D35BDEB-211F-478a-B3F2-87A92379A926}, since=null, name=destinationAddress, alias=, stereotype=, visibility=public, txtDescription='Address to which this control block publishes GOOSE messages.', htmlDescription='

Address to which this control block publishes GOOSE messages.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1772, _eaTypeName=MulticastAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,015 [main] DEBUG AssociationEndBuilder - Updated source type to GCB +2024-09-08 15:11:36,015 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1108, uuid=b9d487a3-0398-342e-8ff5-5c228ed5652b, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=GCB, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1109, uuid=829fb6e1-1ddd-3d1d-bd66-36feb14446c7, since=null, name=LNOwnedDS, alias=, stereotype=, visibility=public, txtDescription='Configured or persistent dataset on which this control block does GOOSE eventing.', htmlDescription='

Configured or persistent dataset on which this control block does GOOSE eventing.

'], _type=LNOwnedDS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3198, uuid={3F8B1E7F-FBA3-44e0-8B59-38EF2CB27164}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::GCB +2024-09-08 15:11:36,015 [main] DEBUG AssociationEndBuilder - Updated target type to GCB +2024-09-08 15:11:36,015 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1036, uuid=c18773d5-9ab1-31dd-8e87-e416e5c518dd, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='Device logical node that contains this GOOSE control block.', htmlDescription='

Device logical node that contains this GOOSE control block.

'], _type=LN0, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1037, uuid=43d0dac2-11b5-3602-9cdb-c87fd6c9ed1e, since=null, name=GCBs, alias=, stereotype=, visibility=public, txtDescription='All GOOSE control blocks contained in this device logical node.', htmlDescription='

All GOOSE control blocks contained in this device logical node.

'], _type=GCB, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3225, uuid={5B28CB32-75ED-4ce9-970B-A054C0FE6AF2}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::GCB +2024-09-08 15:11:36,015 [main] DEBUG ClassBuilder - Adding GCB as subclass of ControlBlock +2024-09-08 15:11:36,015 [main] TRACE ClassBuilder - read from EA: MetaModel::GCB +2024-09-08 15:11:36,015 [main] TRACE ClassBuilder - Class SVCB (38 in package MetaModel) +2024-09-08 15:11:36,015 [main] DEBUG ClassBuilder - Adding SVCB as subclass of ControlBlock +2024-09-08 15:11:36,015 [main] TRACE ClassBuilder - read from EA: MetaModel::SVCB +2024-09-08 15:11:36,015 [main] TRACE ClassBuilder - Class MSVCB (39 in package MetaModel) +2024-09-08 15:11:36,016 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::MSVCB, _objData=UmlObjectData [id=3606, uuid={98ABF189-48F0-466b-9B2F-580948BB965B}, since=null, name=destinationAddress, alias=, stereotype=, visibility=public, txtDescription='Address to which this control block publishes sampled values.', htmlDescription='

Address to which this control block publishes sampled values.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1772, _eaTypeName=MulticastAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,016 [main] DEBUG AssociationEndBuilder - Updated source type to MSVCB +2024-09-08 15:11:36,016 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1099, uuid=a0160709-7011-3070-8575-d499c997b6ca, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=MSVCB, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1100, uuid=017c9fb8-6160-374a-b89a-e95c279b0b44, since=null, name=LNOwnedDS, alias=, stereotype=, visibility=public, txtDescription='Configured or persistent dataset on which this control block does samples reporting.', htmlDescription='

Configured or persistent dataset on which this control block does samples reporting.

'], _type=LNOwnedDS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3195, uuid={F357D381-3044-4cd1-8CFA-38A2B656F174}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::MSVCB +2024-09-08 15:11:36,016 [main] DEBUG AssociationEndBuilder - Updated target type to MSVCB +2024-09-08 15:11:36,016 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1039, uuid=9322d900-a7a3-35be-a2fc-8dc05f438e73, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='Device logical node that contains this multicast sampled values control block.', htmlDescription='

Device logical node that contains this multicast sampled values control block.

'], _type=LN0, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1040, uuid=1d3ff9d3-58c1-37bd-ae64-3a515789448b, since=null, name=MSVCBs, alias=, stereotype=, visibility=public, txtDescription='All multicast simpled values control blocks contained in this device logical node.', htmlDescription='

All multicast simpled values control blocks contained in this device logical node.

'], _type=MSVCB, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3226, uuid={3FE94B8A-D716-44df-98C2-B7C222CEE5E8}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::MSVCB +2024-09-08 15:11:36,016 [main] DEBUG ClassBuilder - Adding MSVCB as subclass of SVCB +2024-09-08 15:11:36,016 [main] TRACE ClassBuilder - read from EA: MetaModel::MSVCB +2024-09-08 15:11:36,016 [main] TRACE ClassBuilder - Class USVCB (40 in package MetaModel) +2024-09-08 15:11:36,017 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::USVCB, _objData=UmlObjectData [id=3607, uuid={84624C3F-9B45-49b5-94A3-491A476383AF}, since=null, name=clientAddress, alias=, stereotype=, visibility=public, txtDescription='Address of the client currently using this unbuffered sampled values control block.', htmlDescription='

Address of the client currently using this unbuffered sampled values control block.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1771, _eaTypeName=IPAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,017 [main] DEBUG AssociationEndBuilder - Updated source type to USVCB +2024-09-08 15:11:36,017 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1094, uuid=41bfd20a-38bb-3b0b-ac75-acf0845530a7, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=USVCB, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1095, uuid=642e8482-67c3-35c6-bed8-242064f73265, since=null, name=DS, alias=, stereotype=, visibility=public, txtDescription='Dataset on which this control block does samples reporting.', htmlDescription='

Dataset on which this control block does samples reporting.

'], _type=DS, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3201, uuid={050244CD-359B-4516-B382-B2C560ECFCA1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::USVCB +2024-09-08 15:11:36,017 [main] DEBUG AssociationEndBuilder - Updated target type to USVCB +2024-09-08 15:11:36,017 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1033, uuid=b9c7430f-005d-37b1-96f1-0969d56fb74b, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='Device logical node that contains this unicast sampled values control block.', htmlDescription='

Device logical node that contains this unicast sampled values control block.

'], _type=LN0, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1034, uuid=2149586b-93ab-366c-b7d5-585dd8ab2dcb, since=null, name=USVCBs, alias=, stereotype=, visibility=public, txtDescription='All unicast simpled values control blocks contained in this device logical node.', htmlDescription='

All unicast simpled values control blocks contained in this device logical node.

'], _type=USVCB, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3224, uuid={BA890AF8-70A6-4685-8215-9B7A0C34827D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::USVCB +2024-09-08 15:11:36,017 [main] DEBUG ClassBuilder - Adding USVCB as subclass of SVCB +2024-09-08 15:11:36,017 [main] TRACE ClassBuilder - read from EA: MetaModel::USVCB +2024-09-08 15:11:36,017 [main] TRACE ClassBuilder - Class SGCB (41 in package MetaModel) +2024-09-08 15:11:36,017 [main] DEBUG AssociationEndBuilder - Updated source type to SGCB +2024-09-08 15:11:36,018 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1139, uuid=18426034-8236-3955-8fe9-375772ff966e, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=SGCB, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1140, uuid=d79bb6de-81ab-3e4d-a392-21dd7df714c9, since=null, name=ActiveFCDAs, alias=, stereotype=, visibility=public, txtDescription='All leaf attribute references with FC=SG within the LD to which belongs this SGCB. +Examples: +- [SG] myLD/PTOV_1.StrVal.setMag.f +- [SG] myLD/PVOC_2.MinOpTmms.setVal. +Modelling note 1: This is for one of 2 new directory services. +Modelling note 2: The rule to build the return collection is as follows (source: W.Wimmer): For an LD, take all its LNs, and then all its CDCs, and all the FCDAReference-s (leaf Attributes) with FC=SG.', htmlDescription='

All leaf attribute references with FC=SG within the LD to which belongs this SGCB.

Examples:

- [SG] myLD/PTOV_1.StrVal.setMag.f

- [SG] myLD/PVOC_2.MinOpTmms.setVal.

Modelling note 1: This is for one of 2 new directory services.

Modelling note 2: The rule to build the return collection is as follows (source: W.Wimmer): For an LD, take all its LNs, and then all its CDCs, and all the FCDAReference-s (leaf Attributes) with FC=SG.

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3178, uuid={E46DDC5E-E997-47da-8CC0-F6747118E269}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:36,018 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1139, uuid=18426034-8236-3955-8fe9-375772ff966e, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=SGCB, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1140, uuid=d79bb6de-81ab-3e4d-a392-21dd7df714c9, since=null, name=ActiveFCDAs, alias=, stereotype=, visibility=public, txtDescription='All leaf attribute references with FC=SG within the LD to which belongs this SGCB. +Examples: +- [SG] myLD/PTOV_1.StrVal.setMag.f +- [SG] myLD/PVOC_2.MinOpTmms.setVal. +Modelling note 1: This is for one of 2 new directory services. +Modelling note 2: The rule to build the return collection is as follows (source: W.Wimmer): For an LD, take all its LNs, and then all its CDCs, and all the FCDAReference-s (leaf Attributes) with FC=SG.', htmlDescription='

All leaf attribute references with FC=SG within the LD to which belongs this SGCB.

Examples:

- [SG] myLD/PTOV_1.StrVal.setMag.f

- [SG] myLD/PVOC_2.MinOpTmms.setVal.

Modelling note 1: This is for one of 2 new directory services.

Modelling note 2: The rule to build the return collection is as follows (source: W.Wimmer): For an LD, take all its LNs, and then all its CDCs, and all the FCDAReference-s (leaf Attributes) with FC=SG.

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3178, uuid={E46DDC5E-E997-47da-8CC0-F6747118E269}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::SGCB +2024-09-08 15:11:36,018 [main] DEBUG AssociationEndBuilder - Updated source type to SGCB +2024-09-08 15:11:36,018 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1142, uuid=8ce6790c-c6a9-3e65-b17f-908f462fae85, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=SGCB, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1143, uuid=98745af8-980b-3541-a397-1788a097390f, since=null, name=EditFCDAs, alias=, stereotype=, visibility=public, txtDescription='All leaf attribute references with FC=SE within the LD to which this SGCB belongs. +Examples: +- [SE] myLD/PTOV_1.StrVal.setMag.f +- [SE] myLD/PVOC_2.MinOpTmms.setVal. +Modelling note 1: This is for one of 2 new directory services. +Modelling note 2: The rule to build the return collection is as follows (source: W.Wimmer): For an LD, take all its LNs, and then all its CDCs, and all the FCDAReference-s (leaf Attributes) with FC=SE.', htmlDescription='

All leaf attribute references with FC=SE within the LD to which this SGCB belongs.

Examples:

- [SE] myLD/PTOV_1.StrVal.setMag.f

- [SE] myLD/PVOC_2.MinOpTmms.setVal.

Modelling note 1: This is for one of 2 new directory services.

Modelling note 2: The rule to build the return collection is as follows (source: W.Wimmer): For an LD, take all its LNs, and then all its CDCs, and all the FCDAReference-s (leaf Attributes) with FC=SE.

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3179, uuid={DD43C193-FAAE-4a01-956E-1EBAF2E500D3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:36,018 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1142, uuid=8ce6790c-c6a9-3e65-b17f-908f462fae85, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=SGCB, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1143, uuid=98745af8-980b-3541-a397-1788a097390f, since=null, name=EditFCDAs, alias=, stereotype=, visibility=public, txtDescription='All leaf attribute references with FC=SE within the LD to which this SGCB belongs. +Examples: +- [SE] myLD/PTOV_1.StrVal.setMag.f +- [SE] myLD/PVOC_2.MinOpTmms.setVal. +Modelling note 1: This is for one of 2 new directory services. +Modelling note 2: The rule to build the return collection is as follows (source: W.Wimmer): For an LD, take all its LNs, and then all its CDCs, and all the FCDAReference-s (leaf Attributes) with FC=SE.', htmlDescription='

All leaf attribute references with FC=SE within the LD to which this SGCB belongs.

Examples:

- [SE] myLD/PTOV_1.StrVal.setMag.f

- [SE] myLD/PVOC_2.MinOpTmms.setVal.

Modelling note 1: This is for one of 2 new directory services.

Modelling note 2: The rule to build the return collection is as follows (source: W.Wimmer): For an LD, take all its LNs, and then all its CDCs, and all the FCDAReference-s (leaf Attributes) with FC=SE.

'], _type=null, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3179, uuid={DD43C193-FAAE-4a01-956E-1EBAF2E500D3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to MetaModel::SGCB +2024-09-08 15:11:36,018 [main] DEBUG AssociationEndBuilder - Updated target type to SGCB +2024-09-08 15:11:36,018 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1042, uuid=c6a9f569-0770-3ffe-bdc0-a645b0387d2f, since=null, name=LN0, alias=, stereotype=, visibility=public, txtDescription='Device logical node that contains this setting group control block.', htmlDescription='

Device logical node that contains this setting group control block.

'], _type=LN0, _multiplicity=[?..?], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1043, uuid=69a2696d-a46f-38f0-a20e-b7cca875605c, since=null, name=SGCB, alias=, stereotype=, visibility=public, txtDescription='Setting group control block contained in this device logical node.', htmlDescription='

Setting group control block contained in this device logical node.

'], _type=SGCB, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=3227, uuid={16912038-2F54-4108-A868-FEDEFD36C7B1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::SGCB +2024-09-08 15:11:36,018 [main] DEBUG ClassBuilder - Adding SGCB as subclass of ControlBlock +2024-09-08 15:11:36,018 [main] TRACE ClassBuilder - read from EA: MetaModel::SGCB +2024-09-08 15:11:36,018 [main] TRACE ClassBuilder - Class CONTROL (42 in package MetaModel) +2024-09-08 15:11:36,019 [main] TRACE ClassBuilder - read from EA: MetaModel::CONTROL +2024-09-08 15:11:36,019 [main] TRACE ClassBuilder - Class TIME (43 in package MetaModel) +2024-09-08 15:11:36,019 [main] TRACE ClassBuilder - read from EA: MetaModel::TIME +2024-09-08 15:11:36,019 [main] TRACE ClassBuilder - Class FILE (44 in package MetaModel) +2024-09-08 15:11:36,019 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModel::FILE, _objData=UmlObjectData [id=3608, uuid={9EB09CC5-3C74-4cf6-A8B4-C65928A972B6}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1693, _eaTypeName=FILEReference, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,019 [main] DEBUG AssociationEndBuilder - Updated target type to FILE +2024-09-08 15:11:36,020 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=COMPOS, _isSource=true, _objData=UmlObjectData [id=986, uuid=fe7ee8fc-1959-3c72-94fa-21c4840dff0a, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='Server that hosts this file.', htmlDescription='

Server that hosts this file.

'], _type=SERVER, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=987, uuid=3270eb7e-b5b0-39ac-9f02-6f3b15106228, since=null, name=FILEs, alias=, stereotype=, visibility=public, txtDescription='All files within the server. +Modelling note: Corresponds to SERVER.File.', htmlDescription='

All files within the server.

Modelling note: Corresponds to SERVER.File.

'], _type=FILE, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3245, uuid={BD48CF11-B1F9-4a40-B020-BE7D3C205E87}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModel::FILE +2024-09-08 15:11:36,020 [main] DEBUG ClassBuilder - Adding FILE as subclass of HierarchyIEC61850Object +2024-09-08 15:11:36,020 [main] TRACE ClassBuilder - read from EA: MetaModel::FILE +2024-09-08 15:11:36,020 [main] INFO PackageBuilder - processing package MetaModelFCsAndTrgOps (0) ... +2024-09-08 15:11:36,020 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=MetaModelFCsAndTrgOps, _objData=UmlObjectData [id=222, uuid={3C4182DC-EB84-4975-BC93-18C32C6AC1AD}, since=null, name=MetaModelFCsAndTrgOps, alias=, stereotype=, visibility=public, txtDescription='These are all the possible combinations of FC and TrgOp, as abstract supertypes for the concrete ones defined in IEC61850-7-3.', htmlDescription='

These are all the possible combinations of FC and TrgOp, as abstract supertypes for the concrete ones defined in IEC61850-7-3.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:36,021 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1902, uuid={56AA79CA-7530-4d3f-B3D7-A6394D2388FF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note 1: Attributes 'isReadable' and 'isWritable' reflect the services of AcsiCDC. +Modelling note 2: In white are explicit FCDAs from Ed.1, in green are extensions from Ed.2 (no more FCDA_CO in Ed.2). +Modelling note 3: In pink, we have added a couple more meta-model abstract classes, to support 61850-7-420.', htmlDescription='

Modelling note 1: Attributes 'isReadable' and 'isWritable' reflect the services of AcsiCDC.

Modelling note 2: In white are explicit FCDAs from Ed.1, in green are extensions from Ed.2 (no more FCDA_CO in Ed.2).

Modelling note 3: In pink, we have added a couple more meta-model abstract classes, to support 61850-7-420.

'], _containingPackage=MetaModelFCsAndTrgOps, _otherEndName=] +2024-09-08 15:11:36,021 [main] TRACE ClassBuilder - Class EnumFCDA_CF (0 in package MetaModelFCsAndTrgOps) +2024-09-08 15:11:36,022 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::EnumFCDA_CF +2024-09-08 15:11:36,022 [main] TRACE ClassBuilder - Class EnumFCDA_CF_dchg (1 in package MetaModelFCsAndTrgOps) +2024-09-08 15:11:36,022 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::EnumFCDA_CF_dchg +2024-09-08 15:11:36,022 [main] TRACE ClassBuilder - Class EnumFCDA_MX (2 in package MetaModelFCsAndTrgOps) +2024-09-08 15:11:36,023 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::EnumFCDA_MX +2024-09-08 15:11:36,023 [main] TRACE ClassBuilder - Class EnumFCDA_SE_dchg (5 in package MetaModelFCsAndTrgOps) +2024-09-08 15:11:36,023 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::EnumFCDA_SE_dchg +2024-09-08 15:11:36,024 [main] TRACE ClassBuilder - Class EnumFCDA_SG_dchg (7 in package MetaModelFCsAndTrgOps) +2024-09-08 15:11:36,024 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::EnumFCDA_SG_dchg +2024-09-08 15:11:36,024 [main] TRACE ClassBuilder - Class EnumFCDA_ST (9 in package MetaModelFCsAndTrgOps) +2024-09-08 15:11:36,024 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::EnumFCDA_ST +2024-09-08 15:11:36,025 [main] TRACE ClassBuilder - Class EnumFCDA_ST_dchg (10 in package MetaModelFCsAndTrgOps) +2024-09-08 15:11:36,025 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::EnumFCDA_ST_dchg +2024-09-08 15:11:36,025 [main] TRACE ClassBuilder - Class EnumFCDA_ST_dchg_dupd (11 in package MetaModelFCsAndTrgOps) +2024-09-08 15:11:36,025 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::EnumFCDA_ST_dchg_dupd +2024-09-08 15:11:36,025 [main] TRACE ClassBuilder - Class EnumFCDA_SV (12 in package MetaModelFCsAndTrgOps) +2024-09-08 15:11:36,026 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::EnumFCDA_SV +2024-09-08 15:11:36,026 [main] TRACE ClassBuilder - Class FCDA_BL (13 in package MetaModelFCsAndTrgOps) +2024-09-08 15:11:36,026 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_BL, _objData=UmlObjectData [id=3609, uuid={5D2587D3-3485-4d8e-A54A-B3968B0ACD55}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=BL, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,027 [main] DEBUG ClassBuilder - Adding FCDA_BL as subclass of FCDA +2024-09-08 15:11:36,027 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_BL +2024-09-08 15:11:36,027 [main] TRACE ClassBuilder - Class FCDA_CF (14 in package MetaModelFCsAndTrgOps) +2024-09-08 15:11:36,027 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_CF, _objData=UmlObjectData [id=3610, uuid={09B06C9E-4F11-4e82-8034-F5CC45FAC900}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=CF, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,027 [main] DEBUG ClassBuilder - Adding FCDA_CF as subclass of FCDA +2024-09-08 15:11:36,027 [main] DEBUG ClassBuilder - Adding FCDA_CF as superclass of EnumFCDA_CF +2024-09-08 15:11:36,028 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_CF +2024-09-08 15:11:36,028 [main] TRACE ClassBuilder - Class FCDA_CF_dchg (15 in package MetaModelFCsAndTrgOps) +2024-09-08 15:11:36,028 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_CF_dchg, _objData=UmlObjectData [id=3611, uuid={09BA6106-FB5B-46d5-B9EB-69EF40ADE216}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,028 [main] DEBUG ClassBuilder - Adding FCDA_CF_dchg as subclass of FCDA_CF +2024-09-08 15:11:36,028 [main] DEBUG ClassBuilder - Adding FCDA_CF_dchg as superclass of EnumFCDA_CF_dchg +2024-09-08 15:11:36,028 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_CF_dchg +2024-09-08 15:11:36,028 [main] TRACE ClassBuilder - Class FCDA_DC (16 in package MetaModelFCsAndTrgOps) +2024-09-08 15:11:36,029 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_DC, _objData=UmlObjectData [id=3612, uuid={683D28A6-85D9-4a30-9858-1FD32EE25D71}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=DC, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,029 [main] DEBUG ClassBuilder - Adding FCDA_DC as subclass of FCDA +2024-09-08 15:11:36,029 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_DC +2024-09-08 15:11:36,029 [main] TRACE ClassBuilder - Class FCDA_EX (17 in package MetaModelFCsAndTrgOps) +2024-09-08 15:11:36,030 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_EX, _objData=UmlObjectData [id=3613, uuid={CEFBDE9B-5BF0-4b36-856A-CA994924738A}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=EX, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,030 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_EX, _objData=UmlObjectData [id=3614, uuid={5A327143-156F-48dd-AAF5-6B96335A4246}, since=null, name=isWritable, alias=, stereotype=, visibility=public, txtDescription='Whether the data attribute is writable through services.', htmlDescription='

Whether the data attribute is writable through services.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,031 [main] DEBUG ClassBuilder - Adding FCDA_EX as subclass of FCDA +2024-09-08 15:11:36,031 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_EX +2024-09-08 15:11:36,031 [main] TRACE ClassBuilder - Class FCDA_MX (18 in package MetaModelFCsAndTrgOps) +2024-09-08 15:11:36,031 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_MX, _objData=UmlObjectData [id=3615, uuid={C595F449-EECA-490f-86C4-52A016827CF5}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=MX, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,031 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_MX, _objData=UmlObjectData [id=3616, uuid={26C44A44-AB3A-4d2f-9A1C-F09A40CD7503}, since=null, name=isWritable, alias=, stereotype=, visibility=public, txtDescription='Whether the data attribute is writable through services.', htmlDescription='

Whether the data attribute is writable through services.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,032 [main] DEBUG ClassBuilder - Adding FCDA_MX as subclass of FCDA +2024-09-08 15:11:36,032 [main] DEBUG ClassBuilder - Adding FCDA_MX as superclass of EnumFCDA_MX +2024-09-08 15:11:36,032 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_MX +2024-09-08 15:11:36,032 [main] TRACE ClassBuilder - Class FCDA_MX_dchg (19 in package MetaModelFCsAndTrgOps) +2024-09-08 15:11:36,032 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_MX_dchg, _objData=UmlObjectData [id=3617, uuid={DA6E63F6-73E7-48a9-B61B-B3DF59A04B4E}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,032 [main] DEBUG ClassBuilder - Adding FCDA_MX_dchg as subclass of FCDA_MX +2024-09-08 15:11:36,032 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_MX_dchg +2024-09-08 15:11:36,032 [main] TRACE ClassBuilder - Class FCDA_MX_dchg_dupd (20 in package MetaModelFCsAndTrgOps) +2024-09-08 15:11:36,033 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_MX_dchg_dupd, _objData=UmlObjectData [id=3618, uuid={22AFD6F7-773C-4cac-A2E0-545134B61149}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, dupd, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,033 [main] DEBUG ClassBuilder - Adding FCDA_MX_dchg_dupd as subclass of FCDA_MX +2024-09-08 15:11:36,033 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_MX_dchg_dupd +2024-09-08 15:11:36,033 [main] TRACE ClassBuilder - Class FCDA_MX_qchg (21 in package MetaModelFCsAndTrgOps) +2024-09-08 15:11:36,033 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_MX_qchg, _objData=UmlObjectData [id=3619, uuid={3F395C8A-6D62-4c56-87E6-027F1F594183}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=qchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,033 [main] DEBUG ClassBuilder - Adding FCDA_MX_qchg as subclass of FCDA_MX +2024-09-08 15:11:36,033 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_MX_qchg +2024-09-08 15:11:36,034 [main] TRACE ClassBuilder - Class FCDA_OR (22 in package MetaModelFCsAndTrgOps) +2024-09-08 15:11:36,034 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_OR, _objData=UmlObjectData [id=3620, uuid={282951AC-7E92-4c83-97E3-19FBCC94D012}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=OR, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,034 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_OR, _objData=UmlObjectData [id=3621, uuid={558DB516-1CFD-4554-81F5-FA0755D271D8}, since=null, name=isWritable, alias=, stereotype=, visibility=public, txtDescription='Whether the data attribute is writable through services.', htmlDescription='

Whether the data attribute is writable through services.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,034 [main] DEBUG ClassBuilder - Adding FCDA_OR as subclass of FCDA +2024-09-08 15:11:36,034 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_OR +2024-09-08 15:11:36,034 [main] TRACE ClassBuilder - Class FCDA_OR_dchg (23 in package MetaModelFCsAndTrgOps) +2024-09-08 15:11:36,035 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_OR_dchg, _objData=UmlObjectData [id=3622, uuid={3A006018-162B-46b7-AC78-9652BF2385BD}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,035 [main] DEBUG ClassBuilder - Adding FCDA_OR_dchg as subclass of FCDA_OR +2024-09-08 15:11:36,035 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_OR_dchg +2024-09-08 15:11:36,035 [main] TRACE ClassBuilder - Class FCDA_SE (24 in package MetaModelFCsAndTrgOps) +2024-09-08 15:11:36,035 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SE, _objData=UmlObjectData [id=3623, uuid={EE451B41-BF45-40e4-8CF7-515359A61448}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=SE, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,035 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SE, _objData=UmlObjectData [id=3624, uuid={C6F2D29C-73F2-45a2-852C-36D93C110DE8}, since=null, name=isReadable, alias=, stereotype=, visibility=public, txtDescription='Whether the data attribute is readable through services.', htmlDescription='

Whether the data attribute is readable through services.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,035 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SE, _objData=UmlObjectData [id=3625, uuid={4CFFCD7F-9E74-4b7a-B957-5A62F07BBB56}, since=null, name=isWritable, alias=, stereotype=, visibility=public, txtDescription='Whether the data attribute is writable through services.', htmlDescription='

Whether the data attribute is writable through services.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,035 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2203, uuid={399F8C95-DFA6-4b8b-B34F-C40D6720E62F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=FCDA_SE, _otherEndName=?] +2024-09-08 15:11:36,035 [main] DEBUG AssociationEndBuilder - Updated target type to FCDA_SE +2024-09-08 15:11:36,036 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1142, uuid=8ce6790c-c6a9-3e65-b17f-908f462fae85, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=SGCB, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1143, uuid=98745af8-980b-3541-a397-1788a097390f, since=null, name=EditFCDAs, alias=, stereotype=, visibility=public, txtDescription='All leaf attribute references with FC=SE within the LD to which this SGCB belongs. +Examples: +- [SE] myLD/PTOV_1.StrVal.setMag.f +- [SE] myLD/PVOC_2.MinOpTmms.setVal. +Modelling note 1: This is for one of 2 new directory services. +Modelling note 2: The rule to build the return collection is as follows (source: W.Wimmer): For an LD, take all its LNs, and then all its CDCs, and all the FCDAReference-s (leaf Attributes) with FC=SE.', htmlDescription='

All leaf attribute references with FC=SE within the LD to which this SGCB belongs.

Examples:

- [SE] myLD/PTOV_1.StrVal.setMag.f

- [SE] myLD/PVOC_2.MinOpTmms.setVal.

Modelling note 1: This is for one of 2 new directory services.

Modelling note 2: The rule to build the return collection is as follows (source: W.Wimmer): For an LD, take all its LNs, and then all its CDCs, and all the FCDAReference-s (leaf Attributes) with FC=SE.

'], _type=FCDA_SE, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3179, uuid={DD43C193-FAAE-4a01-956E-1EBAF2E500D3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModelFCsAndTrgOps::FCDA_SE +2024-09-08 15:11:36,036 [main] DEBUG ClassBuilder - Adding FCDA_SE as subclass of FCDA +2024-09-08 15:11:36,036 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_SE +2024-09-08 15:11:36,036 [main] TRACE ClassBuilder - Class FCDA_SE_dchg (25 in package MetaModelFCsAndTrgOps) +2024-09-08 15:11:36,036 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SE_dchg, _objData=UmlObjectData [id=3626, uuid={CF74494C-A546-4a41-A807-684E97FE1B68}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,036 [main] DEBUG ClassBuilder - Adding FCDA_SE_dchg as subclass of FCDA_SE +2024-09-08 15:11:36,036 [main] DEBUG ClassBuilder - Adding FCDA_SE_dchg as superclass of EnumFCDA_SE_dchg +2024-09-08 15:11:36,036 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_SE_dchg +2024-09-08 15:11:36,036 [main] TRACE ClassBuilder - Class FCDA_SG (26 in package MetaModelFCsAndTrgOps) +2024-09-08 15:11:36,036 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SG, _objData=UmlObjectData [id=3627, uuid={1810C2D0-E27B-4e1e-A0B6-2A5F2E8E16D6}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=SG, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,036 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SG, _objData=UmlObjectData [id=3628, uuid={1BD03152-B959-4fff-8DC0-B6BE8542DDD2}, since=null, name=isWritable, alias=, stereotype=, visibility=public, txtDescription='Whether the data attribute is writable through services.', htmlDescription='

Whether the data attribute is writable through services.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,036 [main] DEBUG AssociationEndBuilder - Updated target type to FCDA_SG +2024-09-08 15:11:36,036 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=1139, uuid=18426034-8236-3955-8fe9-375772ff966e, since=null, name=, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _type=SGCB, _multiplicity=[0..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=1140, uuid=d79bb6de-81ab-3e4d-a392-21dd7df714c9, since=null, name=ActiveFCDAs, alias=, stereotype=, visibility=public, txtDescription='All leaf attribute references with FC=SG within the LD to which belongs this SGCB. +Examples: +- [SG] myLD/PTOV_1.StrVal.setMag.f +- [SG] myLD/PVOC_2.MinOpTmms.setVal. +Modelling note 1: This is for one of 2 new directory services. +Modelling note 2: The rule to build the return collection is as follows (source: W.Wimmer): For an LD, take all its LNs, and then all its CDCs, and all the FCDAReference-s (leaf Attributes) with FC=SG.', htmlDescription='

All leaf attribute references with FC=SG within the LD to which belongs this SGCB.

Examples:

- [SG] myLD/PTOV_1.StrVal.setMag.f

- [SG] myLD/PVOC_2.MinOpTmms.setVal.

Modelling note 1: This is for one of 2 new directory services.

Modelling note 2: The rule to build the return collection is as follows (source: W.Wimmer): For an LD, take all its LNs, and then all its CDCs, and all the FCDAReference-s (leaf Attributes) with FC=SG.

'], _type=FCDA_SG, _multiplicity=[1..*], _navigable=unspecified], _objData=UmlObjectData [id=3178, uuid={E46DDC5E-E997-47da-8CC0-F6747118E269}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to MetaModelFCsAndTrgOps::FCDA_SG +2024-09-08 15:11:36,037 [main] DEBUG ClassBuilder - Adding FCDA_SG as subclass of FCDA +2024-09-08 15:11:36,037 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_SG +2024-09-08 15:11:36,037 [main] TRACE ClassBuilder - Class FCDA_SG_dchg (27 in package MetaModelFCsAndTrgOps) +2024-09-08 15:11:36,037 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SG_dchg, _objData=UmlObjectData [id=3629, uuid={D993FACE-FF1E-47a8-9E52-C03D6CB09D7D}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,037 [main] DEBUG ClassBuilder - Adding FCDA_SG_dchg as subclass of FCDA_SG +2024-09-08 15:11:36,037 [main] DEBUG ClassBuilder - Adding FCDA_SG_dchg as superclass of EnumFCDA_SG_dchg +2024-09-08 15:11:36,037 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_SG_dchg +2024-09-08 15:11:36,037 [main] TRACE ClassBuilder - Class FCDA_SP (28 in package MetaModelFCsAndTrgOps) +2024-09-08 15:11:36,037 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SP, _objData=UmlObjectData [id=3630, uuid={6DC7D1CB-F4DC-4ef4-9756-98C8AD7FF1B6}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=SP, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,037 [main] DEBUG ClassBuilder - Adding FCDA_SP as subclass of FCDA +2024-09-08 15:11:36,037 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_SP +2024-09-08 15:11:36,037 [main] TRACE ClassBuilder - Class FCDA_SP_dchg (29 in package MetaModelFCsAndTrgOps) +2024-09-08 15:11:36,038 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SP_dchg, _objData=UmlObjectData [id=3631, uuid={CA035F21-EC50-4322-8BD7-B8C7FD19CF46}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,038 [main] DEBUG ClassBuilder - Adding FCDA_SP_dchg as subclass of FCDA_SP +2024-09-08 15:11:36,038 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_SP_dchg +2024-09-08 15:11:36,038 [main] TRACE ClassBuilder - Class FCDA_ST (30 in package MetaModelFCsAndTrgOps) +2024-09-08 15:11:36,038 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_ST, _objData=UmlObjectData [id=3632, uuid={55FA60DB-3F3A-4bb9-9E91-8BA73393B836}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=ST, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,038 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_ST, _objData=UmlObjectData [id=3633, uuid={A00991C4-8B92-478e-AC41-A628210ED3B7}, since=null, name=isWritable, alias=, stereotype=, visibility=public, txtDescription='Whether the data attribute is writable through services.', htmlDescription='

Whether the data attribute is writable through services.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,038 [main] DEBUG ClassBuilder - Adding FCDA_ST as subclass of FCDA +2024-09-08 15:11:36,038 [main] DEBUG ClassBuilder - Adding FCDA_ST as superclass of EnumFCDA_ST +2024-09-08 15:11:36,038 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_ST +2024-09-08 15:11:36,038 [main] TRACE ClassBuilder - Class FCDA_ST_dchg (31 in package MetaModelFCsAndTrgOps) +2024-09-08 15:11:36,038 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_ST_dchg, _objData=UmlObjectData [id=3634, uuid={3899F2B2-1233-40b3-9997-370CF1FD073A}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,038 [main] DEBUG ClassBuilder - Adding FCDA_ST_dchg as subclass of FCDA_ST +2024-09-08 15:11:36,038 [main] DEBUG ClassBuilder - Adding FCDA_ST_dchg as superclass of EnumFCDA_ST_dchg +2024-09-08 15:11:36,038 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_ST_dchg +2024-09-08 15:11:36,039 [main] TRACE ClassBuilder - Class FCDA_ST_dchg_dupd (32 in package MetaModelFCsAndTrgOps) +2024-09-08 15:11:36,039 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_ST_dchg_dupd, _objData=UmlObjectData [id=3635, uuid={41740EB1-4C6B-4265-A5A9-D1853C7B873B}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, dupd, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,039 [main] DEBUG ClassBuilder - Adding FCDA_ST_dchg_dupd as subclass of FCDA_ST +2024-09-08 15:11:36,039 [main] DEBUG ClassBuilder - Adding FCDA_ST_dchg_dupd as superclass of EnumFCDA_ST_dchg_dupd +2024-09-08 15:11:36,039 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_ST_dchg_dupd +2024-09-08 15:11:36,039 [main] TRACE ClassBuilder - Class FCDA_ST_dupd (33 in package MetaModelFCsAndTrgOps) +2024-09-08 15:11:36,039 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_ST_dupd, _objData=UmlObjectData [id=3636, uuid={332CF62D-D37E-431d-8EC4-6A1EBADAAFB3}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dupd, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,039 [main] DEBUG ClassBuilder - Adding FCDA_ST_dupd as subclass of FCDA_ST +2024-09-08 15:11:36,039 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_ST_dupd +2024-09-08 15:11:36,039 [main] TRACE ClassBuilder - Class FCDA_ST_qchg (34 in package MetaModelFCsAndTrgOps) +2024-09-08 15:11:36,039 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_ST_qchg, _objData=UmlObjectData [id=3637, uuid={2735A83D-F0E0-4aab-ADB5-AECB30212656}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=qchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,039 [main] DEBUG ClassBuilder - Adding FCDA_ST_qchg as subclass of FCDA_ST +2024-09-08 15:11:36,039 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_ST_qchg +2024-09-08 15:11:36,039 [main] TRACE ClassBuilder - Class FCDA_SV (35 in package MetaModelFCsAndTrgOps) +2024-09-08 15:11:36,040 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SV, _objData=UmlObjectData [id=3638, uuid={4D38B4C1-5DEC-47cf-90C9-BF37000D95AC}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=SV, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,040 [main] DEBUG ClassBuilder - Adding FCDA_SV as subclass of FCDA +2024-09-08 15:11:36,040 [main] DEBUG ClassBuilder - Adding FCDA_SV as superclass of EnumFCDA_SV +2024-09-08 15:11:36,040 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::FCDA_SV +2024-09-08 15:11:36,040 [main] TRACE ClassBuilder - Class PackedEnumFCDA_SP_dchg (36 in package MetaModelFCsAndTrgOps) +2024-09-08 15:11:36,040 [main] DEBUG ClassBuilder - Adding PackedEnumFCDA_SP_dchg as subclass of EnumFCDA_ST_dchg +2024-09-08 15:11:36,040 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::PackedEnumFCDA_SP_dchg +2024-09-08 15:11:36,040 [main] TRACE ClassBuilder - Class PackedEnumFCDA_SV (37 in package MetaModelFCsAndTrgOps) +2024-09-08 15:11:36,040 [main] DEBUG ClassBuilder - Adding PackedEnumFCDA_SV as subclass of EnumFCDA_SV +2024-09-08 15:11:36,040 [main] TRACE ClassBuilder - read from EA: MetaModelFCsAndTrgOps::PackedEnumFCDA_SV +2024-09-08 15:11:36,040 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=MetaModel, _depth=3, _eaElementID=1901, _objData=UmlObjectData [id=110, uuid={7CF8CCE4-A893-44f0-9850-7A964C6FB7CE}, since=null, name=MetaModelFCsAndTrgOps, alias=, stereotype=, visibility=public, txtDescription='These are all the possible combinations of FC and TrgOp, as abstract supertypes for the concrete ones defined in IEC61850-7-3.', htmlDescription='

These are all the possible combinations of FC and TrgOp, as abstract supertypes for the concrete ones defined in IEC61850-7-3.

'], _modelId=58, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1902, uuid={56AA79CA-7530-4d3f-B3D7-A6394D2388FF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note 1: Attributes 'isReadable' and 'isWritable' reflect the services of AcsiCDC. +Modelling note 2: In white are explicit FCDAs from Ed.1, in green are extensions from Ed.2 (no more FCDA_CO in Ed.2). +Modelling note 3: In pink, we have added a couple more meta-model abstract classes, to support 61850-7-420.', htmlDescription='

Modelling note 1: Attributes 'isReadable' and 'isWritable' reflect the services of AcsiCDC.

Modelling note 2: In white are explicit FCDAs from Ed.1, in green are extensions from Ed.2 (no more FCDA_CO in Ed.2).

Modelling note 3: In pink, we have added a couple more meta-model abstract classes, to support 61850-7-420.

'], _containingPackage=MetaModelFCsAndTrgOps, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=MetaModelFCsAndTrgOps, _objData=UmlObjectData [id=222, uuid={3C4182DC-EB84-4975-BC93-18C32C6AC1AD}, since=null, name=MetaModelFCsAndTrgOps, alias=, stereotype=, visibility=public, txtDescription='These are all the possible combinations of FC and TrgOp, as abstract supertypes for the concrete ones defined in IEC61850-7-3.', htmlDescription='

These are all the possible combinations of FC and TrgOp, as abstract supertypes for the concrete ones defined in IEC61850-7-3.

'], _portrait=true, _kind=LOGICAL]], _classes=34 +2024-09-08 15:11:36,042 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_2, _depth=2, _eaElementID=1829, _objData=UmlObjectData [id=109, uuid={1CD34912-38A5-4bd0-AD94-FC8A5712A5AF}, since=null, name=MetaModel, alias=, stereotype=, visibility=public, txtDescription='Meta-model reflecting contents of IEC61850-7-x. Can be instantiated in at least two ways: +1. By connecting to one or more ACSI Servers at the given IP address(es), without any other configuration required. +2. By reading SCL file (and potentially connecting to one or more ACSI Servers).', htmlDescription='

Meta-model reflecting contents of IEC61850-7-x. Can be instantiated in at least two ways:

  1. By connecting to one or more ACSI Servers at the given IP address(es), without any other configuration required.
  2. By reading SCL file (and potentially connecting to one or more ACSI Servers).
'], _modelId=58, _selfDependent=false, 27_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1830, uuid={D543D4D9-E49F-40ad-B995-3A107B4BD536}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- Directory services should be allowed for FC=SE as well - this is currently not the case according to 61850-7-3, Ed.2.', htmlDescription='

TODO:

  • Directory services should be allowed for FC=SE as well - this is currently not the case according to 61850-7-3, Ed.2.
'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1831, uuid={8C76A17B-E8A6-4ec6-8298-D8261FE3C0F4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: Classes *IEC61850Object have been introduced to facilitate instantiation of a meta-model for the use case where no SCL is available (e.g., when connecting directly to one or more IEDs with IEC61850 ACSI SERVERs without any previous configuration).', htmlDescription='

Modelling note: Classes *IEC61850Object have been introduced to facilitate instantiation of a meta-model for the use case where no SCL is available (e.g., when connecting directly to one or more IEDs with IEC61850 ACSI SERVERs without any previous configuration).

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1833, uuid={1695C190-3DB9-46c9-B2A3-463C26BEF9DD}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Except for SGCB, control blocks refer to a data set and listen to changes in the values of data set members (i.e., leaf attributes when unfolding logical nodes' data) in order to produce some event: +- RCBs produce reports on data value changes as appropriate for non-time-critical clients +- LCBs produce log entries +- GCBs produce GOOSE messages (similar to RCB reports, but for time-critical clients) +- SVCBs produce messages containing sampled values (also for time-critical clients). +Finally, SGCB models the ability to edit IED settings (e.g., configuration parameters for protection algorithms) - they also work on leaf attributes of logical nodes, but those are not specified in a data set. +Modelling note: Control blocks in this MetaModel provide pure navigation capability, while their configuration by client is available as ACSI service. It is up to applications to extend this MetaModel in the desired way to implement the functionality similar to that provided by ACSI services.', htmlDescription='

Except for SGCB, control blocks refer to a data set and listen to changes in the values of data set members (i.e., leaf attributes when unfolding logical nodes' data) in order to produce some event:

- RCBs produce reports on data value changes as appropriate for non-time-critical clients

- LCBs produce log entries

- GCBs produce GOOSE messages (similar to RCB reports, but for time-critical clients)

- SVCBs produce messages containing sampled values (also for time-critical clients).

Finally, SGCB models the ability to edit IED settings (e.g., configuration parameters for protection algorithms) - they also work on leaf attributes of logical nodes, but those are not specified in a data set.

Modelling note: Control blocks in this MetaModel provide pure navigation capability, while their configuration by client is available as ACSI service. It is up to applications to extend this MetaModel in the desired way to implement the functionality similar to that provided by ACSI services.

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1834, uuid={0E537513-A86C-4374-B08C-A61D599461C5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Datasets are list of signal references, used for logging and eventing on data and/or quality change. They allow the application to "read" that list of references once, and then receive value updates as ordered lists of values. In the meta-model, datasets contain thus only information on contained references, as well as the naming-related services. Communication services are defined in CoreAcsi API.', htmlDescription='

Datasets are list of signal references, used for logging and eventing on data and/or quality change. They allow the application to "read" that list of references once, and then receive value updates as ordered lists of values. In the meta-model, datasets contain thus only information on contained references, as well as the naming-related services. Communication services are defined in CoreAcsi API.

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1878, uuid={049E7F63-9C87-465e-9BF6-5E03046F685B}, since=null, name=DerivedCDCs : DerivedCDCs, alias=, stereotype=, visibility=public, txtDescription='DerivedCDCs : DerivedCDCs', htmlDescription='

DerivedCDCs : DerivedCDCs

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1879, uuid={05AAA379-8620-4bf0-9374-95F42FAFA135}, since=null, name=MetaModel :MetaModelFCsAndTrgOps, alias=, stereotype=, visibility=public, txtDescription='MetaModel : MetaModelFCsAndTrgOps', htmlDescription='

MetaModel : MetaModelFCsAndTrgOps

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1880, uuid={112FC848-042A-4696-99ED-8E35A13F87A4}, since=null, name=MetaModel :MetaModelNaming, alias=, stereotype=, visibility=public, txtDescription='MetaModel : MetaModelNaming', htmlDescription='

MetaModel : MetaModelNaming

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1881, uuid={2200A07E-E0BC-46ee-B7FB-832A35C51ACB}, since=null, name=LogicalNodeEnums :DOEnums-1, alias=, stereotype=, visibility=public, txtDescription='DOEnums : DOEnums-1', htmlDescription='

DOEnums : DOEnums-1

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1882, uuid={3CEEBEF3-65F0-45bf-956A-AAFF0BB39A6E}, since=null, name=BasicDAs : BasicDAs, alias=, stereotype=, visibility=public, txtDescription='BasicDAs : BasicDAs', htmlDescription='

BasicDAs : BasicDAs

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1883, uuid={3D42A8E2-6E81-482d-B902-79859AB23652}, since=null, name=LogicalNodes : LogicalNodes, alias=, stereotype=, visibility=public, txtDescription='LogicalNodes : LogicalNodes', htmlDescription='

LogicalNodes : LogicalNodes

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1884, uuid={4651CC45-E97C-474c-96E5-E964AEE537AE}, since=null, name=CommonDataClasses : CommonDataClasses, alias=, stereotype=, visibility=public, txtDescription='CommonDataClasses : CommonDataClasses', htmlDescription='

CommonDataClasses : CommonDataClasses

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1885, uuid={485DE912-F88A-4727-ABC3-E12BDD3137CA}, since=null, name=IEC61850 : DataModelExample, alias=, stereotype=, visibility=public, txtDescription='IEC61850 : DataModelExample', htmlDescription='

IEC61850 : DataModelExample

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1886, uuid={4F5B7A51-D0D5-46eb-9755-D89E38C8D44A}, since=null, name=DerivedDAs : DerivedDAs, alias=, stereotype=, visibility=public, txtDescription='DerivedDAs : DerivedDAs', htmlDescription='

DerivedDAs : DerivedDAs

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1887, uuid={7010DA64-6EFF-4ecc-906B-D63D21B68B3D}, since=null, name=LogicalNodeEnums :DOEnums-3, alias=, stereotype=, visibility=public, txtDescription='DOEnums : DOEnums-3', htmlDescription='

DOEnums : DOEnums-3

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1888, uuid={77539A0B-E854-4966-82D3-2AC914854572}, since=null, name=DAEnums : DAEnums-1, alias=, stereotype=, visibility=public, txtDescription='DAEnums : DAEnums-1', htmlDescription='

DAEnums : DAEnums-1

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1889, uuid={777613E1-5BED-4530-A6C1-909690FCEF4E}, since=null, name=ObjectReferences : ObjectReferences, alias=, stereotype=, visibility=public, txtDescription='ObjectReferences : ObjectReferences', htmlDescription='

ObjectReferences : ObjectReferences

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1890, uuid={82D225D9-1F34-4a05-840E-0EA119432E5C}, since=null, name=CoreTypes : CoreTypes, alias=, stereotype=, visibility=public, txtDescription='CoreTypes : CoreTypes', htmlDescription='

CoreTypes : CoreTypes

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1891, uuid={86223FF2-1449-43c7-83BA-3DB43365033B}, since=null, name=ConstructedDAs : ConstructedDAs, alias=, stereotype=, visibility=public, txtDescription='ConstructedDAs : ConstructedDAs', htmlDescription='

ConstructedDAs : ConstructedDAs

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1892, uuid={A298ABDC-AA9E-4b4b-8B6A-E5C5C539F90F}, since=null, name=LogicalNodeEnums :DOEnums-2, alias=, stereotype=, visibility=public, txtDescription='DOEnums : DOEnums-2', htmlDescription='

DOEnums : DOEnums-2

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=1893, uuid={A34DDCC5-BBB7-443d-92EF-22F3B2CADE16}, since=null, name=Data model (logical nodes, common data classes, functionally constrained data attributes and data attributes), alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1894, uuid={B2AD30FE-ADAE-495a-8589-272241F89E2F}, since=null, name=FCDAs : FCDAs, alias=, stereotype=, visibility=public, txtDescription='FCDAs : FCDAs', htmlDescription='

FCDAs : FCDAs

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1895, uuid={B4020DF2-0ADE-443d-82D1-19018AF93AEE}, since=null, name=ImplicitDAs : ImplicitDAs, alias=, stereotype=, visibility=public, txtDescription='ImplicitDAs : ImplicitDAs', htmlDescription='

ImplicitDAs : ImplicitDAs

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1896, uuid={C1318DFD-188F-43f2-9064-60021D23A7AF}, since=null, name=MetaModel :MetaModelDataSetsAndControlBlocks, alias=, stereotype=, visibility=public, txtDescription='MetaModel : MetaModelDataSetsAndControlBlocks', htmlDescription='

MetaModel : MetaModelDataSetsAndControlBlocks

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1897, uuid={C39E2CF4-C5E8-4816-8777-01F58112789C}, since=null, name=MetaModel : MetaModelDataModel, alias=, stereotype=, visibility=public, txtDescription='MetaModel : MetaModelDataModel', htmlDescription='

MetaModel : MetaModelDataModel

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=1898, uuid={F6822C92-5DD8-48be-A724-A584C56FF7E0}, since=null, name=Directly related to data model, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1899, uuid={F6EF86F0-4241-402f-84DB-0F3BACF329BA}, since=null, name=MetaModel :MetaModelRelationships, alias=, stereotype=, visibility=public, txtDescription='MetaModel : MetaModelRelationships', htmlDescription='

MetaModel : MetaModelRelationships

'], _containingPackage=MetaModel, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1900, uuid={FFAB6E12-0255-4fed-A1DB-D18F797B7AED}, since=null, name=DAEnums : DAEnums-2, alias=, stereotype=, visibility=public, txtDescription='DAEnums : DAEnums-2', htmlDescription='

DAEnums : DAEnums-2

'], _containingPackage=MetaModel, _otherEndName=]], 5_diagrams=[DiagramBuilder [_containingPackage=MetaModel, _objData=UmlObjectData [id=218, uuid={EA8FE1C2-3BBB-4b1a-A375-D361A61B8806}, since=null, name=MetaModelClasses, alias=, stereotype=, visibility=public, txtDescription='Overview of meta-model classes. We emphasize two groups of meta-model classes: +- Within the blue frame are those classes that are refined in parts 7-3 and 7-4, i.e., those that represent the data model. +- Within the pink frame are the classes that directly manipulate or refer to the data of logical nodes. +The other classes are control blocks, fully defined in IEC61850-2.', htmlDescription='

Overview of meta-model classes. We emphasize two groups of meta-model classes:

  • Within the blue frame are those classes that are refined in parts 7-3 and 7-4, i.e., those that represent the data model.
  • Within the pink frame are the classes that directly manipulate or refer to the data of logical nodes.

The other classes are control blocks, fully defined in IEC61850-2.

'], _portrait=true, _kind=LOGICAL], DiagramBuilder [_containingPackage=MetaModel, _objData=UmlObjectData [id=219, uuid={60A801DD-2905-46a7-AEE1-1F7B4914E50C}, since=null, name=MetaModelRelationships, alias=, stereotype=, visibility=public, txtDescription='The full representation of all ACSI relationships, as defined in Part 7-2.', htmlDescription='

The full representation of all ACSI relationships, as defined in Part 7-2.

'], _portrait=true, _kind=LOGICAL], DiagramBuilder [_containingPackage=MetaModel, _objData=UmlObjectData [id=220, uuid={C831274A-F7F7-46d5-8FEC-95178AC6650E}, since=null, name=MetaModelNaming, alias=, stereotype=, visibility=public, txtDescription='Shows naming hierarchy. Highlighted classes are not explicitly defined in the standard.', htmlDescription='

Shows naming hierarchy. Highlighted classes are not explicitly defined in the standard.

'], _portrait=true, _kind=LOGICAL], DiagramBuilder [_containingPackage=MetaModel, _objData=UmlObjectData [id=217, uuid={14C7D050-A508-40f5-95B8-5C83BBADB168}, since=null, name=MetaModelDataModel, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the subset of the meta-model with details about LNs and their data. Hyperlinks are provided to an example, and to definitions of concrete classes deriving from the meta-model (in parts 7-4 and 7-3).', htmlDescription='

This diagram shows the subset of the meta-model with details about LNs and their data. Hyperlinks are provided to an example, and to definitions of concrete classes deriving from the meta-model (in parts 7-4 and 7-3).

'], _portrait=true, _kind=LOGICAL], DiagramBuilder [_containingPackage=MetaModel, _objData=UmlObjectData [id=221, uuid={30729B8C-2FAA-41b6-B913-DD00F5E640FC}, since=null, name=MetaModelDataSetsAndControlBlocks, alias=, stereotype=, visibility=public, txtDescription='Shows data sets and control blocks defined in IEC61850-7-2. Highlighted classes are not explicitly defined in the standard.', htmlDescription='

Shows data sets and control blocks defined in IEC61850-7-2. Highlighted classes are not explicitly defined in the standard.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=6, _dependenciesAsTarget=6, _classes=43, _childPackages=1] +2024-09-08 15:11:36,042 [main] INFO PackageBuilder - processing package CDCServiceTracking (12) ... +2024-09-08 15:11:36,043 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=CDCServiceTracking, _objData=UmlObjectData [id=226, uuid={2E9A6046-6F09-499d-8DED-04126F464CF1}, since=null, name=CDCServiceTracking, alias=, stereotype=, visibility=public, txtDescription='Shows all service tracking CDCs defined in the standard with supertypes that factor their common attributes.', htmlDescription='

Shows all service tracking CDCs defined in the standard with supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:36,043 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2180, uuid={B029563B-4F5A-4fe0-994D-0C0BE8208EB4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=CDCServiceTracking, _otherEndName=Note ''] +2024-09-08 15:11:36,043 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::CDCServiceTracking->null, _objData=UmlObjectData [id=3105, uuid={1ACFCE23-05F0-4f6f-A7FF-F1999DF5DEBB}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,044 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1993, uuid={AE9C15F2-8B3D-49df-B6A7-32BE35190F6A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: Since the base classes for CDCs (and the data attributes) are defined in 7-3, we have circular dependency!', htmlDescription='

Modelling note: Since the base classes for CDCs (and the data attributes) are defined in 7-3, we have circular dependency!

'], _containingPackage=CDCServiceTracking, _otherEndName=] +2024-09-08 15:11:36,044 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1994, uuid={85196720-0A4F-4a77-9F16-5DA9E02CCAA9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- Consider renaming to 'ServiceTrackingCDC'', htmlDescription='

TODO:

  • Consider renaming to 'ServiceTrackingCDC'
'], _containingPackage=CDCServiceTracking, _otherEndName=] +2024-09-08 15:11:36,044 [main] TRACE ClassBuilder - Class CST (1 in package CDCServiceTracking) +2024-09-08 15:11:36,044 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2204, uuid={9E09D002-22E5-42b2-8883-6CF5959AA141}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=CST, _otherEndName=?] +2024-09-08 15:11:36,044 [main] TRACE ClassBuilder - read from EA: CDCServiceTracking::CST +2024-09-08 15:11:36,044 [main] TRACE ClassBuilder - Class BTS (2 in package CDCServiceTracking) +2024-09-08 15:11:36,045 [main] DEBUG ClassBuilder - Adding BTS as subclass of CST +2024-09-08 15:11:36,045 [main] TRACE ClassBuilder - read from EA: CDCServiceTracking::BTS +2024-09-08 15:11:36,045 [main] TRACE ClassBuilder - Class CTS (3 in package CDCServiceTracking) +2024-09-08 15:11:36,045 [main] DEBUG ClassBuilder - Adding CTS as subclass of CST +2024-09-08 15:11:36,045 [main] TRACE ClassBuilder - read from EA: CDCServiceTracking::CTS +2024-09-08 15:11:36,045 [main] TRACE ClassBuilder - Class GTS (4 in package CDCServiceTracking) +2024-09-08 15:11:36,046 [main] DEBUG ClassBuilder - Adding GTS as subclass of CST +2024-09-08 15:11:36,046 [main] TRACE ClassBuilder - read from EA: CDCServiceTracking::GTS +2024-09-08 15:11:36,046 [main] TRACE ClassBuilder - Class LTS (5 in package CDCServiceTracking) +2024-09-08 15:11:36,046 [main] DEBUG ClassBuilder - Adding LTS as subclass of CST +2024-09-08 15:11:36,046 [main] TRACE ClassBuilder - read from EA: CDCServiceTracking::LTS +2024-09-08 15:11:36,046 [main] TRACE ClassBuilder - Class MTS (6 in package CDCServiceTracking) +2024-09-08 15:11:36,046 [main] DEBUG ClassBuilder - Adding MTS as subclass of CST +2024-09-08 15:11:36,046 [main] TRACE ClassBuilder - read from EA: CDCServiceTracking::MTS +2024-09-08 15:11:36,046 [main] TRACE ClassBuilder - Class NTS (7 in package CDCServiceTracking) +2024-09-08 15:11:36,047 [main] DEBUG ClassBuilder - Adding NTS as subclass of CST +2024-09-08 15:11:36,047 [main] TRACE ClassBuilder - read from EA: CDCServiceTracking::NTS +2024-09-08 15:11:36,047 [main] TRACE ClassBuilder - Class OTS (8 in package CDCServiceTracking) +2024-09-08 15:11:36,047 [main] DEBUG ClassBuilder - Adding OTS as subclass of CST +2024-09-08 15:11:36,047 [main] TRACE ClassBuilder - read from EA: CDCServiceTracking::OTS +2024-09-08 15:11:36,047 [main] TRACE ClassBuilder - Class STS (9 in package CDCServiceTracking) +2024-09-08 15:11:36,047 [main] DEBUG ClassBuilder - Adding STS as subclass of CST +2024-09-08 15:11:36,047 [main] TRACE ClassBuilder - read from EA: CDCServiceTracking::STS +2024-09-08 15:11:36,047 [main] TRACE ClassBuilder - Class UTS (10 in package CDCServiceTracking) +2024-09-08 15:11:36,047 [main] DEBUG ClassBuilder - Adding UTS as subclass of CST +2024-09-08 15:11:36,048 [main] TRACE ClassBuilder - read from EA: CDCServiceTracking::UTS +2024-09-08 15:11:36,048 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_2, _depth=2, _eaElementID=1992, _objData=UmlObjectData [id=112, uuid={3C674902-0080-4e6c-A692-059B653701E8}, since=null, name=CDCServiceTracking, alias=Service tracking, stereotype=, visibility=public, txtDescription='The reporting and logging functions based on the process and function related data model as defined in IEC 61850-7-4 and 7-3 allow to track what happens in the process. For tracking what happens communicationwise in the system itself, this part of the standard provides the possibility to track all services, even those with negative responses. For this purpose the services are classified as follows: +- Control block related services (see IEC 61850-7-2, 15.3) +- Command related services (see IEC 61850-7-2, 20.6) +- Other services (see IEC 61850-7-2, 14.2) +The base concept consists in defining within the data model where to store the values of the service parameters used by a service. Therefore this part of the standard defines common data classes for each type of service to be reported resp. logged. For a given Server, there shall be a single data object instance (tracking data object) available in the object directory for each kind of service, that will mirror the value of the service parameters and its acceptance by the server. This allows that a service can be logged or reported to any client, as soon as the tracking data object is a DATA-SET member of the DATA-SET associated to a LCB or to a BRCB / URCB. +No (0) or one (1) instance of a needed tracking data object class (derived from the common service tracking data class) shall be defined in a logical device. IEC 61850-7-4 defines the data object name per tracking CDC.', htmlDescription='

The reporting and logging functions based on the process and function related data model as defined in IEC 61850-7-4 and 7-3 allow to track what happens in the process. For tracking what happens communicationwise in the system itself, this part of the standard provides the possibility to track all services, even those with negative responses. For this purpose the services are classified as follows:

  • Control block related services (see IEC 61850-7-2, 15.3)
  • Command related services (see IEC 61850-7-2, 20.6)
  • Other services (see IEC 61850-7-2, 14.2)

The base concept consists in defining within the data model where to store the values of the service parameters used by a service. Therefore this part of the standard defines common data classes for each type of service to be reported resp. logged. For a given Server, there shall be a single data object instance (tracking data object) available in the object directory for each kind of service, that will mirror the value of the service parameters and its acceptance by the server. This allows that a service can be logged or reported to any client, as soon as the tracking data object is a DATA-SET member of the DATA-SET associated to a LCB or to a BRCB / URCB.

No (0) or one (1) instance of a needed tracking data object class (derived from the common service tracking data class) shall be defined in a logical device. IEC 61850-7-4 defines the data object name per tracking CDC.

'], _modelId=58, _selfDependent=false, 3_skippedEaItems=[SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2180, uuid={B029563B-4F5A-4fe0-994D-0C0BE8208EB4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=CDCServiceTracking, _otherEndName=Note ''], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1993, uuid={AE9C15F2-8B3D-49df-B6A7-32BE35190F6A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: Since the base classes for CDCs (and the data attributes) are defined in 7-3, we have circular dependency!', htmlDescription='

Modelling note: Since the base classes for CDCs (and the data attributes) are defined in 7-3, we have circular dependency!

'], _containingPackage=CDCServiceTracking, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1994, uuid={85196720-0A4F-4a77-9F16-5DA9E02CCAA9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- Consider renaming to 'ServiceTrackingCDC'', htmlDescription='

TODO:

  • Consider renaming to 'ServiceTrackingCDC'
'], _containingPackage=CDCServiceTracking, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=CDCServiceTracking, _objData=UmlObjectData [id=226, uuid={2E9A6046-6F09-499d-8DED-04126F464CF1}, since=null, name=CDCServiceTracking, alias=, stereotype=, visibility=public, txtDescription='Shows all service tracking CDCs defined in the standard with supertypes that factor their common attributes.', htmlDescription='

Shows all service tracking CDCs defined in the standard with supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=1, _classes=10 +2024-09-08 15:11:36,048 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=WG10, _depth=1, _eaElementID=1622, _objData=UmlObjectData [id=88, uuid={F9CDEDC5-EC7E-4adc-B579-F2264159E7B7}, since=null, name=IEC61850_7_2, alias=, stereotype=, visibility=public, txtDescription='A formal meta-model and CoreAcsi API, which should reflect (and hopefully improve) the contents of IEC61850-2 Ed.1. Meta-model allows, among others, for a uniform definition of data-related concepts (LNs, CDCs, FCDAs), while the CoreAcsi API defines ACSI services. +TODO: We have started updating to Ed.2, but there still lot to do...', htmlDescription='

A formal meta-model and CoreAcsi API, which should reflect (and hopefully improve) the contents of IEC61850-2 Ed.1. Meta-model allows, among others, for a uniform definition of data-related concepts (LNs, CDCs, FCDAs), while the CoreAcsi API defines ACSI services.

TODO: We have started updating to Ed.2, but there still lot to do...

'], _modelId=58, _selfDependent=false, 4_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1623, uuid={EABD0CB1-194A-4ad7-A014-C0F4FF33A957}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- With tracking CDCs in Part 7-2, we have circular dependency with Part 7-3! (not shown here). Proposed to move these into Part 7-3.', htmlDescription='

TODO:

  • With tracking CDCs in Part 7-2, we have circular dependency with Part 7-3! (not shown here). Proposed to move these into Part 7-3.
'], _containingPackage=IEC61850_7_2, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1624, uuid={70D0C33E-CC65-47c7-9DD8-B1A5DB8EEB7B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Arrange the diagram when we settlle on modelling.', htmlDescription='

TODO: Arrange the diagram when we settlle on modelling.

'], _containingPackage=IEC61850_7_2, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1625, uuid={5D73B6B5-C29B-4bc3-842B-49DA8C366102}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='NOT UPDATED YET! + +How to read this model? +Automatically generated documentation prints the packages and their contents in the order they are defined in the model. And in the model, we took a bottom-up approach, i.e., starting from least-dependent packages and going up to most dependent packages: +- if you need an overview, look first into the packages that depend on others +- if you want the description of items before their first usage, look into the packages upon which the others depend. +Dependencies have been manually drawn (the tool does not do it by itself). +API (operations) conventions: +Packages CoreTypes, CoreEnums and AcsiType contain classes with data only, while AcsiTypes, MetaModel and CoreAcsi have classes (and interfaces) with operations, as well. Conventions for operations are as follows: +- Null argument in operations is by default not allowed, unless specified otherwise. +- When return value is a collection, and it has "nothing" to return, a non-null empty collection must be returned. +UML: +- In the diagrams, the black diamond on associations is on the side of a container, and its implicit multiplicity, as defined by UML, is [0..1], i.e., the contained class may belong to one or no container. For the sake or readability, we do not show the multiplicity on the container side. +- On the side of contained object, mandatory association ([1] or [1..*]) is considered as mandatory once the model is initialised. In other words, while building the model, it is possible to violate this constraint, but the valid completely built model must respect the given cardinalities. +- In the API (AcsiTypes, MetaModel, CoreAcsi), we define only methods that describe the required interface; definition of attributes (and names of association ends) is left to the implementation. +Design rationale: +We have on purpose kept services in CoreAcsi (API) separate from the MetaModel, because: +- CoreAcsi API is meant to be used for communication with a live device. +- CoreAcsi API models communication services, which are not object-oriented with respect to the domain model, as they deal with object references (strings), not with objects themselves (e.g., control blocks). However, the API itself is object oriented. +- CoreAcsi API reflects relatively closely what is specified in Part 7-2, Ed. 1, so those who know Part 7-2 and would like to use the API can easily find their way through the API. If this API is meant to be part of the standard, most of services should be renamed (to have less clumsy names). +- CoreAcsi API can be used without any configuration (SCL), to connect and communicate with the live device. It can be thus useful for simple browsing applications. +In contrast to this: +- MetaModel need not be used with a live device - it can be instantiated from SCL and used for different off-line applications. +- MetaModel is object-oriented - it deals with objects (e.g., control blocks) and as part of the interface provides navigation and object reference information. +- MetaModel enhances what is specified in Part 7-2, Ed. 1 and provides a strict definition of concepts developed in Parts 7-3 and 7-4, which is the must for software or data store designs. +- MetaModel can be used with a live device, as well, provided there is an intermediate implementation layer (not shown here) that will take care of using CoreAcsi API or even a direct MMS access. In that case, the semantics of the methods that influence behaviour on the CoreAcsi API level may not be the same as desired by a particular application using MetaModel (e.g., multiple clients/servers, who "owns" what, invalid names, etc.). Therefore, the MetaModel contains only the necessary minimum of methods (connecting to the server, naming and navigation), and different applications have to extend it for their needs (e.g., control block attributes). +Many useful applications can be developed with just this package, without using details of common data classes and logical nodes, while these latter will enable more advanced ones (as they provide for the semantics of data).', htmlDescription='

NOT UPDATED YET!

How to read this model?

Automatically generated documentation prints the packages and their contents in the order they are defined in the model. And in the model, we took a bottom-up approach, i.e., starting from least-dependent packages and going up to most dependent packages:

  • if you need an overview, look first into the packages that depend on others
  • if you want the description of items before their first usage, look into the packages upon which the others depend.

Dependencies have been manually drawn (the tool does not do it by itself).

API (operations) conventions:

Packages CoreTypes, CoreEnums and AcsiType contain classes with data only, while AcsiTypes, MetaModel and CoreAcsi have classes (and interfaces) with operations, as well. Conventions for operations are as follows:

  • Null argument in operations is by default not allowed, unless specified otherwise.
  • When return value is a collection, and it has "nothing" to return, a non-null empty collection must be returned.

UML:

  • In the diagrams, the black diamond on associations is on the side of a container, and its implicit multiplicity, as defined by UML, is [0..1], i.e., the contained class may belong to one or no container. For the sake or readability, we do not show the multiplicity on the container side.
  • On the side of contained object, mandatory association ([1] or [1..*]) is considered as mandatory once the model is initialised. In other words, while building the model, it is possible to violate this constraint, but the valid completely built model must respect the given cardinalities.
  • In the API (AcsiTypes, MetaModel, CoreAcsi), we define only methods that describe the required interface; definition of attributes (and names of association ends) is left to the implementation.

Design rationale:

We have on purpose kept services in CoreAcsi (API) separate from the MetaModel, because:

  • CoreAcsi API is meant to be used for communication with a live device.
  • CoreAcsi API models communication services, which are not object-oriented with respect to the domain model, as they deal with object references (strings), not with objects themselves (e.g., control blocks). However, the API itself is object oriented.
  • CoreAcsi API reflects relatively closely what is specified in Part 7-2, Ed. 1, so those who know Part 7-2 and would like to use the API can easily find their way through the API. If this API is meant to be part of the standard, most of services should be renamed (to have less clumsy names).
  • CoreAcsi API can be used without any configuration (SCL), to connect and communicate with the live device. It can be thus useful for simple browsing applications.

In contrast to this:

  • MetaModel need not be used with a live device - it can be instantiated from SCL and used for different off-line applications.
  • MetaModel is object-oriented - it deals with objects (e.g., control blocks) and as part of the interface provides navigation and object reference information.
  • MetaModel enhances what is specified in Part 7-2, Ed. 1 and provides a strict definition of concepts developed in Parts 7-3 and 7-4, which is the must for software or data store designs.
  • MetaModel can be used with a live device, as well, provided there is an intermediate implementation layer (not shown here) that will take care of using CoreAcsi API or even a direct MMS access. In that case, the semantics of the methods that influence behaviour on the CoreAcsi API level may not be the same as desired by a particular application using MetaModel (e.g., multiple clients/servers, who "owns" what, invalid names, etc.). Therefore, the MetaModel contains only the necessary minimum of methods (connecting to the server, naming and navigation), and different applications have to extend it for their needs (e.g., control block attributes).

Many useful applications can be developed with just this package, without using details of common data classes and logical nodes, while these latter will enable more advanced ones (as they provide for the semantics of data).

'], _containingPackage=IEC61850_7_2, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1627, uuid={15563EAD-20D1-4edb-BCBF-F3184AF0B515}, since=null, name=IEC61850_7_2 : IEC61850_7_2ModellingNotes, alias=, stereotype=, visibility=public, txtDescription='IEC61850_7_2 : IEC61850_7_2ModellingNotes', htmlDescription='

IEC61850_7_2 : IEC61850_7_2ModellingNotes

'], _containingPackage=IEC61850_7_2, _otherEndName=]], 2_diagrams=[DiagramBuilder [_containingPackage=IEC61850_7_2, _objData=UmlObjectData [id=192, uuid={90AA6E54-26D6-43d4-94A7-5F7B4B772910}, since=null, name=IEC61850_7_2, alias=, stereotype=, visibility=public, txtDescription='Overview of packages and their dependencies. +Dependencies among sub-packages are not shown on this diagram.', htmlDescription='

Overview of packages and their dependencies.

Dependencies among sub-packages are not shown on this diagram.

'], _portrait=true, _kind=PACKAGE], DiagramBuilder [_containingPackage=IEC61850_7_2, _objData=UmlObjectData [id=193, uuid={4F40E7C3-3463-44fe-85FB-8E5B2084B8A6}, since=null, name=IEC61850_7_2ModellingNotes, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _dependenciesAsTarget=2, _classes=1, _childPackages=10] +2024-09-08 15:11:36,048 [main] INFO PackageBuilder - processing package IEC61850_7_3 (3) ... +2024-09-08 15:11:36,048 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=IEC61850_7_3, _objData=UmlObjectData [id=227, uuid={F484E7B4-1E12-4de6-B276-87F2C5E6E00D}, since=null, name=IEC61850_7_3, alias=, stereotype=, visibility=public, txtDescription='This diagram: +- shows the content of this package, as well as dependencies to other parts of the model, and, +- highlights the sub-packages contained in IEC61850-7-3 required to generate the document automatically (note: for FC table in Annex B, we also need the enum FcKind from 7-2, not shown here). +About dependencies of DA sub-packages: +- CommonAcsiDAs, BasicDAs and ConstructedDAs are all DataAttribute-s from the meta-model, thus they depend on MetaModel, which in turn uses core types and thus depends on CoreTypes. +- CommonAcsiDAs, BasicDAs and ConstructedDAs use also core types, thus they depend on CoreTypes. +- ConstructedDAs use enumerations, so they depend on DAEnums. +- Finally, ConstructedDAs types are composed of primitive DAs, thus dependency to BasicDAs. +FCDAs package contains "helper" explicit types, which shield CDCs and LNs from all the complexity of IEC61850 datatype system. These are the types used to define attributes of CommonDataClass-es. Since FCDAs derive from an abstract meta-model type, they depend on MetaModel. And since they "decorate" data attribute types, they also depend on ConstructedDAs, CommonAcsiDAs and BasicDAs. +Finally, CDCs derive from the meta-model PrimitiveCDC and ComposedCDC and thus depend on MetaModel. Also, their attributes use FCDAs as types, so they all depend on FCDAs package.', htmlDescription='

This diagram:

  • shows the content of this package, as well as dependencies to other parts of the model, and,
  • highlights the sub-packages contained in IEC61850-7-3 required to generate the document automatically (note: for FC table in Annex B, we also need the enum FcKind from 7-2, not shown here).

About dependencies of DA sub-packages:

  • CommonAcsiDAs, BasicDAs and ConstructedDAs are all DataAttribute-s from the meta-model, thus they depend on MetaModel, which in turn uses core types and thus depends on CoreTypes.
  • CommonAcsiDAs, BasicDAs and ConstructedDAs use also core types, thus they depend on CoreTypes.
  • ConstructedDAs use enumerations, so they depend on DAEnums.
  • Finally, ConstructedDAs types are composed of primitive DAs, thus dependency to BasicDAs.

FCDAs package contains "helper" explicit types, which shield CDCs and LNs from all the complexity of IEC61850 datatype system. These are the types used to define attributes of CommonDataClass-es. Since FCDAs derive from an abstract meta-model type, they depend on MetaModel. And since they "decorate" data attribute types, they also depend on ConstructedDAs, CommonAcsiDAs and BasicDAs.

Finally, CDCs derive from the meta-model PrimitiveCDC and ComposedCDC and thus depend on MetaModel. Also, their attributes use FCDAs as types, so they all depend on FCDAs package.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:36,049 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->WG10::IEC61850_7_3, _objData=UmlObjectData [id=2897, uuid={5A68C091-F611-4fb1-91BF-9B547D41800A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,049 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = WG10::IEC61850_7_3->WG10::IEC61850_7_2, _objData=UmlObjectData [id=3104, uuid={3AE23F98-46A7-4956-8947-FA3AD8CE26AC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,049 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = WG10::IEC61850_7_3->null, _objData=UmlObjectData [id=3445, uuid={59C2B380-F257-47a2-9628-193034DD739F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,050 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2006, uuid={D48A9837-1371-4b1a-8D7F-00C9E8036560}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: This should move to 7-2.', htmlDescription='

TODO: This should move to 7-2.

'], _containingPackage=IEC61850_7_3, _otherEndName=] +2024-09-08 15:11:36,050 [main] TRACE ClassBuilder - Class IEC61850_7_3Namespace (0 in package IEC61850_7_3) +2024-09-08 15:11:36,050 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61850_7_3::IEC61850_7_3Namespace, _objData=UmlObjectData [id=3309, uuid={8477CDCF-B7B1-4c61-85E7-FF98E6FDDE43}, since=null, name=id, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=IEC61850-7-3, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,050 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61850_7_3::IEC61850_7_3Namespace, _objData=UmlObjectData [id=3310, uuid={F2B463B5-AACF-4e36-8199-A0B8EC0D5BE9}, since=null, name=version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2011, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,050 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61850_7_3::IEC61850_7_3Namespace, _objData=UmlObjectData [id=3311, uuid={699C3EA2-B230-4407-9EC4-D45951E6BC5E}, since=null, name=revision, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=B, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,051 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61850_7_3::IEC61850_7_3Namespace, _objData=UmlObjectData [id=3312, uuid={54B9DB98-DA2A-4c6e-BF98-F5D9803F3976}, since=null, name=date, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2011-08-01, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,051 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61850_7_3::IEC61850_7_3Namespace, _objData=UmlObjectData [id=6703, uuid={4DF1C9DC-C4F9-4191-B626-67DCF091C04B}, since=null, name=name, alias=, stereotype=, visibility=public, txtDescription='Note: This name is mal-formed and should be caught through validation.', htmlDescription='

Note: This name is mal-formed and should be caught through validation.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=IEC61850-7-3 B 2011, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,051 [main] TRACE ClassBuilder - read from EA: IEC61850_7_3::IEC61850_7_3Namespace +2024-09-08 15:11:36,051 [main] INFO PackageBuilder - processing package PresenceConditions (1) ... +2024-09-08 15:11:36,052 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=PresenceConditions, _objData=UmlObjectData [id=228, uuid={634BF46C-EC95-4ed7-A28F-26085CE40A21}, since=null, name=PresenceConditions, alias=, stereotype=, visibility=public, txtDescription='Shows possible values for presence conditions on attributes - these are modelled in UML with either attribute multiplicities (1 or 0..1, 0..n or 1..n) or with named constraints attached to a class.', htmlDescription='

Shows possible values for presence conditions on attributes - these are modelled in UML with either attribute multiplicities (1 or 0..1, 0..n or 1..n) or with named constraints attached to a class.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:36,052 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2205, uuid={680F9294-3A48-4c36-86F7-9867633896E3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=PresenceConditions, _otherEndName=Note ''] +2024-09-08 15:11:36,053 [main] TRACE ClassBuilder - Class PresenceCondition (3 in package PresenceConditions) +2024-09-08 15:11:36,053 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3644, uuid={F4EF1C45-2871-41c4-AF32-AE92183C1583}, since=null, name=M, alias=, stereotype=enum, visibility=public, txtDescription='Element is mandatory.', htmlDescription='

Element is mandatory.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,053 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3645, uuid={C1540269-ADF7-48c8-B368-69B6589AB9A6}, since=null, name=O, alias=, stereotype=enum, visibility=public, txtDescription='Element is optional.', htmlDescription='

Element is optional.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,053 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3646, uuid={2F450550-CA87-4a05-9021-60108958AD61}, since=null, name=MFsubst, alias=, stereotype=enum, deprecated, visibility=public, txtDescription='Element is mandatory if substitution is supported (for substitution, see IEC 61850-7-2), otherwise forbidden.', htmlDescription='

Element is mandatory if substitution is supported (for substitution, see IEC 61850-7-2), otherwise forbidden.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,053 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3647, uuid={FCC1F07D-4B22-42b0-9EAC-57DBDAE3A8AD}, since=null, name=AtLeastOne(n), alias=, stereotype=enum, visibility=public, txtDescription='At least one of marked elements shall be present.', htmlDescription='

At least one of marked elements shall be present.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,054 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3648, uuid={9A572771-42A8-4263-95A1-5DF17AF4726A}, since=null, name=AllOrNonePerGroup(n), alias=, stereotype=enum, visibility=public, txtDescription='Parameter n: group number (>0). +All or none of the elements of a group n shall be present.', htmlDescription='

Parameter n: group number (>0).

All or none of the elements of a group n shall be present.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,054 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3649, uuid={2D37A902-9C71-4c49-8BCF-977F00AD59A3}, since=null, name=AtMostOne, alias=, stereotype=enum, visibility=public, txtDescription='At most one of marked elements shall be present.', htmlDescription='

At most one of marked elements shall be present.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,054 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3650, uuid={4F6AD1D1-AC14-4546-9F1B-F8FDB5FD92FF}, since=null, name=MF(sibling), alias=, stereotype=enum, visibility=public, txtDescription='Parameter sibling: sibling element name. +Mandatory if sibling element is present, otherwise forbidden.', htmlDescription='

Parameter sibling: sibling element name.

Mandatory if sibling element is present, otherwise forbidden.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,054 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3651, uuid={2EC85437-8295-49c2-95FF-373A0A6FC519}, since=null, name=AllOnlyOneGroup(n), alias=, stereotype=enum, visibility=public, txtDescription='Parameter n: group number (>0). +All elements of only one group n shall be present.', htmlDescription='

Parameter n: group number (>0).

All elements of only one group n shall be present.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,054 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3652, uuid={F0FE764D-4E0C-4102-8165-64143B91C0AB}, since=null, name=MOln0, alias=, stereotype=enum, visibility=public, txtDescription='The element is mandatory in the context of LLN0; otherwise optional.', htmlDescription='

The element is mandatory in the context of LLN0; otherwise optional.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,054 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3653, uuid={7B0A327F-98A2-4c73-BDAD-B9DA2DE66069}, since=null, name=MFln0, alias=, stereotype=enum, visibility=public, txtDescription='The element is mandatory in the context of LLN0; otherwise forbidden.', htmlDescription='

The element is mandatory in the context of LLN0; otherwise forbidden.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,054 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3654, uuid={3322A988-15C7-482d-826D-29EB3EF9AFE3}, since=null, name=MOlnNs, alias=, stereotype=enum, visibility=public, txtDescription='The element is mandatory if the name space of its logical node deviates from the name space of the containing logical device, otherwise optional. +Notes: +- The logical device name space is given in LLN0.NamPlt.ldNs. +- Applies to LPL.lnNs only.', htmlDescription='

The element is mandatory if the name space of its logical node deviates from the name space of the containing logical device, otherwise optional.

Notes:

- The logical device name space is given in LLN0.NamPlt.ldNs.

- Applies to LPL.lnNs only.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,055 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3655, uuid={A15532FB-7577-4c76-9FBB-0F62F6942510}, since=null, name=MOdataNs, alias=, stereotype=enum, visibility=public, txtDescription='The element is mandatory if the name space of its data object deviates from the name space of its logical node, otherwise optional. +Notes: +- The name space a logical node LN belongs to is given by: +- The data attribute NamPlt.lnNs if available, otherwise +- The containing logical device name space, i.e., the data attribute NamPlt.ldNs of the relevant LLN0. +- Applies to the data attribute dataNs of any CDC only.', htmlDescription='

The element is mandatory if the name space of its data object deviates from the name space of its logical node, otherwise optional.

Notes:

- The name space a logical node LN belongs to is given by:

- The data attribute NamPlt.lnNs if available, otherwise

- The containing logical device name space, i.e., the data attribute NamPlt.ldNs of the relevant LLN0.

- Applies to the data attribute dataNs of any CDC only.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,055 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3656, uuid={B15E9280-9EAE-41c0-B993-15F3CDF0DE0A}, since=null, name=MOcdcNs, alias=, stereotype=enum, visibility=public, txtDescription='The element is mandatory if the name space of its CDC deviates from the name space of its data object, otherwise optional. +Notes: +- The name space a data object belongs to is given by: +- The data attribute dataNs in the same CDC if it exists, otherwise +- The containing logical node’s namespace, i.e., the attribute NamPlt.lnNs if it exist, otherwise +- The containing logical device name space, i.e., the data attribute NamPlt.ldNs of the relevant LLN0. +- Applies to data attributes 'cdcNs' and 'cdcName' only. +- From Ed. 2 on shall only be used for logical node definitions of other name spaces (e.g., Wind) to refer to the standardized CDC definitions.', htmlDescription='

The element is mandatory if the name space of its CDC deviates from the name space of its data object, otherwise optional.

Notes:

- The name space a data object belongs to is given by:

- The data attribute dataNs in the same CDC if it exists, otherwise

- The containing logical node’s namespace, i.e., the attribute NamPlt.lnNs if it exist, otherwise

- The containing logical device name space, i.e., the data attribute NamPlt.ldNs of the relevant LLN0.

- Applies to data attributes 'cdcNs' and 'cdcName' only.

- From Ed. 2 on shall only be used for logical node definitions of other name spaces (e.g., Wind) to refer to the standardized CDC definitions.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,055 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3657, uuid={5D6EC8F8-E493-4733-B940-7E40E92C051F}, since=null, name=MFscaledAV, alias=, stereotype=enum, visibility=public, txtDescription='The element is mandatory if any sibling elements of type AnalogueValue include 'i' as a child, otherwise forbidden.', htmlDescription='

The element is mandatory if any sibling elements of type AnalogueValue include 'i' as a child, otherwise forbidden.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,056 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3658, uuid={97C80B99-BD1A-47ab-83B5-0D2DD5512516}, since=null, name=MFscaledMagV, alias=, stereotype=enum, visibility=public, txtDescription='The element is mandatory if any sibling elements of type Vector include 'i' as a child of their 'mag' attribute, otherwise forbidden.', htmlDescription='

The element is mandatory if any sibling elements of type Vector include 'i' as a child of their 'mag' attribute, otherwise forbidden.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,056 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3659, uuid={3257052D-F198-4dbc-B790-C3547F95B0E8}, since=null, name=MFscaledAngV, alias=, stereotype=enum, visibility=public, txtDescription='The element is mandatory if any sibling elements of type Vector include 'i' as a child of their 'ang' attribute, otherwise forbidden.', htmlDescription='

The element is mandatory if any sibling elements of type Vector include 'i' as a child of their 'ang' attribute, otherwise forbidden.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,056 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3660, uuid={A0996056-2831-4d43-9C7B-5574248176AD}, since=null, name=MFsg, alias=, stereotype=enum, visibility=public, txtDescription='The element is mandatory if it is member of setting group, otherwise forbidden. +Note: MFsg, OFsg, and MFsgAtLeastOne always all apply or all do not apply in a given context.', htmlDescription='

The element is mandatory if it is member of setting group, otherwise forbidden.

Note: MFsg, OFsg, and MFsgAtLeastOne always all apply or all do not apply in a given context.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,057 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3661, uuid={B20F037A-DC4B-4c52-9533-758FA9A53328}, since=null, name=OFsg, alias=, stereotype=enum, visibility=public, txtDescription='The element is optional and may be used only if it is member of setting groups, otherwise forbidden. +Note: MFsg, OFsg, and MFsgAtLeastOne always all apply or all do not apply in a given context.', htmlDescription='

The element is optional and may be used only if it is member of setting groups, otherwise forbidden.

Note: MFsg, OFsg, and MFsgAtLeastOne always all apply or all do not apply in a given context.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,057 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3662, uuid={1D58D1EE-A6A5-4f30-A5C6-4F3236EEFFF8}, since=null, name=MFsgAtLeastOne, alias=, stereotype=enum, visibility=public, txtDescription='At least one of the elements is mandatory if it is member of setting group (the others are optional). Otherwise, they are all forbidden. +Note: MFsg, OFsg, and MFsgAtLeastOne always all apply or all do not apply in a given context.', htmlDescription='

At least one of the elements is mandatory if it is member of setting group (the others are optional). Otherwise, they are all forbidden.

Note: MFsg, OFsg, and MFsgAtLeastOne always all apply or all do not apply in a given context.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,057 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3663, uuid={7774FF73-DB7C-4e45-AA3A-8A65E1574F4E}, since=null, name=MFnsg, alias=, stereotype=enum, visibility=public, txtDescription='The element is mandatory for settings outside setting groups, otherwise forbidden. +Note: MFnsg, OFnsg, and MFnsgAtLeastOne always all apply or all do not apply in a given context.', htmlDescription='

The element is mandatory for settings outside setting groups, otherwise forbidden.

Note: MFnsg, OFnsg, and MFnsgAtLeastOne always all apply or all do not apply in a given context.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,057 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3664, uuid={7D08016E-0C38-4c0c-9BEB-20CF98CE447D}, since=null, name=OFnsg, alias=, stereotype=enum, visibility=public, txtDescription='The element is optional and may be used only for settings outside setting groups, otherwise forbidden. +Note: MFnsg, OFnsg, and MFnsgAtLeastOne always all apply or all do not apply in a given context.', htmlDescription='

The element is optional and may be used only for settings outside setting groups, otherwise forbidden.

Note: MFnsg, OFnsg, and MFnsgAtLeastOne always all apply or all do not apply in a given context.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,057 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3665, uuid={ABFA9AFE-2FE5-49be-851F-A593E13688AE}, since=null, name=MFnsgAtLeastOne, alias=, stereotype=enum, visibility=public, txtDescription='At least one of the elements is mandatory for settings outside setting groups (the others are optional). Otherwise, they are all forbidden. +Note: MFnsg, OFnsg, and MFnsgAtLeastOne always all apply or all do not apply in a given context.', htmlDescription='

At least one of the elements is mandatory for settings outside setting groups (the others are optional). Otherwise, they are all forbidden.

Note: MFnsg, OFnsg, and MFnsgAtLeastOne always all apply or all do not apply in a given context.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,057 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3666, uuid={F2BC4852-69BD-4946-91F0-E04C38F36C74}, since=null, name=MFrms, alias=, stereotype=enum, visibility=public, txtDescription='The element is mandatory if the harmonic values in the context are calculated as a ratio to RMS value (value of data attribute 'hvRef' is 'rms'), forbidden otherwise.', htmlDescription='

The element is mandatory if the harmonic values in the context are calculated as a ratio to RMS value (value of data attribute 'hvRef' is 'rms'), forbidden otherwise.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,057 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3667, uuid={9C892A2D-B8CE-4b5f-8D86-48035F6BCD24}, since=null, name=Mmulti, alias=, stereotype=enum, visibility=public, txtDescription='At least one element shall be present; all instances have an instance number within range [1, 99] (see Part 7-1).', htmlDescription='

At least one element shall be present; all instances have an instance number within range [1, 99] (see Part 7-1).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,058 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3668, uuid={558E4EF7-DB17-4e50-A0E8-6AAAEA184142}, since=null, name=Omulti, alias=, stereotype=enum, visibility=public, txtDescription='Zero or more elements may be present; all instances have an instance number within range [1, 99] (see Part 7-1).', htmlDescription='

Zero or more elements may be present; all instances have an instance number within range [1, 99] (see Part 7-1).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,058 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3669, uuid={ED2CBEA5-F54A-45aa-AEF7-DC07AEC4A691}, since=null, name=OmultiRange(min, max), alias=, stereotype=enum, visibility=public, txtDescription='Parameters min, max: limits for instance number (>0). +Zero or more elements may be present; all instances have an instance number within range [min, max] (see Part 7-1).', htmlDescription='

Parameters min, max: limits for instance number (>0).

Zero or more elements may be present; all instances have an instance number within range [min, max] (see Part 7-1).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,058 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3670, uuid={FA6DB59B-35D6-4d82-AD8A-9706B804EFBD}, since=null, name=MOcond(condID), alias=, stereotype=enum, visibility=public, txtDescription='Parameter condID: condition number (>0). +Textual presence condition (non-machine processable) with reference condID to context specific text. If satisfied, the element is mandatory, otherwise optional.', htmlDescription='

Parameter condID: condition number (>0).

Textual presence condition (non-machine processable) with reference condID to context specific text. If satisfied, the element is mandatory, otherwise optional.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,058 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3671, uuid={FCDB744D-87C0-45b7-9453-4427AE31FAD4}, since=null, name=MF(condID), alias=, stereotype=enum, visibility=public, txtDescription='Parameter condID: condition number (>0). +Textual presence condition (non-machine processable) with reference condID to context specific text. If satisfied, the element is mandatory, otherwise forbidden.', htmlDescription='

Parameter condID: condition number (>0).

Textual presence condition (non-machine processable) with reference condID to context specific text. If satisfied, the element is mandatory, otherwise forbidden.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,058 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3672, uuid={DE62505B-BF27-4256-B43A-95160539CB04}, since=null, name=OF(condID), alias=, stereotype=enum, visibility=public, txtDescription='Parameter condID: condition number (>0). +Textual presence condition (non-machine processable) with reference condID to context specific text. If satisfied, the element is optional, otherwise forbidden.', htmlDescription='

Parameter condID: condition number (>0).

Textual presence condition (non-machine processable) with reference condID to context specific text. If satisfied, the element is optional, otherwise forbidden.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,058 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=PresenceConditions::PresenceCondition, _objData=UmlObjectData [id=3673, uuid={953CC820-47FE-4695-B3A4-B72AB7F2B578}, since=null, name=MOrootLD, alias=, stereotype=enum, visibility=public, txtDescription='The element is mandatory in the context of a root logical device; otherwise it is optional.', htmlDescription='

The element is mandatory in the context of a root logical device; otherwise it is optional.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,059 [main] TRACE ClassBuilder - read from EA: PresenceConditions::PresenceCondition +2024-09-08 15:11:36,059 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_3, _depth=2, _eaElementID=2008, _objData=UmlObjectData [id=114, uuid={A4B0B13F-5618-4cb2-B112-2B54AED01457}, since=null, name=PresenceConditions, alias=Conditions for element inclusion, stereotype=, visibility=public, txtDescription='This clause introduces conditions that specify presence of elements in a given context (one LN, or one CDC, or one data object for dataNs).', htmlDescription='

This clause introduces conditions that specify presence of elements in a given context (one LN, or one CDC, or one data object for dataNs).

'], _modelId=58, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2205, uuid={680F9294-3A48-4c36-86F7-9867633896E3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=PresenceConditions, _otherEndName=Note '']], 1_diagrams=[DiagramBuilder [_containingPackage=PresenceConditions, _objData=UmlObjectData [id=228, uuid={634BF46C-EC95-4ed7-A28F-26085CE40A21}, since=null, name=PresenceConditions, alias=, stereotype=, visibility=public, txtDescription='Shows possible values for presence conditions on attributes - these are modelled in UML with either attribute multiplicities (1 or 0..1, 0..n or 1..n) or with named constraints attached to a class.', htmlDescription='

Shows possible values for presence conditions on attributes - these are modelled in UML with either attribute multiplicities (1 or 0..1, 0..n or 1..n) or with named constraints attached to a class.

'], _portrait=true, _kind=LOGICAL]], _classes=1 +2024-09-08 15:11:36,059 [main] INFO PackageBuilder - processing package DAEnums (2) ... +2024-09-08 15:11:36,059 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=DAEnums, _objData=UmlObjectData [id=229, uuid={22E1DAA3-405F-4df7-8882-EEBD5D0DA11B}, since=null, name=DAEnums-1, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the first part of explicit enumerated types defined in 61850-7-3.', htmlDescription='

This diagram shows the first part of explicit enumerated types defined in 61850-7-3.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:36,059 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_3::DAEnums, _objData=UmlObjectData [id=2558, uuid={8E80EB80-DCE3-4c3d-B7B7-BA538068A4E4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,060 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_3::DAEnums, _objData=UmlObjectData [id=3082, uuid={9E3DBD1A-4941-4c00-A64C-0B9D8112CFF9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,060 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2015, uuid={D1139F92-EB4A-4746-A43B-E28AB69E55E4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling notes 1: +- Within the definitions of both Common Data Attribute Types (section 6) and Common Data Classes (section 7) in IEC 61850-7-3, when the type of attribute is ENUMERATED or CODED_ENUM, the possible values are given, but the type is not defined (i.e., no name is given). Then, in section 8 (Data attribute semantics), the values are repeated per attribute, again without name for the type. Only 'SboClass' and 'CtlModel' have been explicitly defined among all enumerations. We define concrete types for all of those, as enumerations. +- Enumeration literal strings are literally copy-pasted from IEC 61850-7-3 (so they correspond to definitions in SCL2.0), except for CurveChar, SIUnit and Multiplier, whose literal strings are directly copied from SCL2.0. +Modelling notes 2: +- In SCL, EnumType-s are not XML enumerations (i.e., they are not defined as types that restrict string), but rather have an id attribute that mainly refers to the name of attribute that has those literals as possible value range - but not always! (see orCategory, used for orCat attribute). +- SCL defines one element (EnumType) per attribute of CDC/DA, so there are in some cases two EnumType-s with exactly same literals, but different id. +- At present, we store that id attribute in the EA tagged value of enumeration (class). In cases there is repetition, this string will be a comma-separated list of SCL id-s. +- The order of types in the diagrams and in the EA project browser is the one as in Ed.2 Annex H, to be able to compare the original with this model.', htmlDescription='

Modelling notes 1:

  • Within the definitions of both Common Data Attribute Types (section 6) and Common Data Classes (section 7) in IEC 61850-7-3, when the type of attribute is ENUMERATED or CODED_ENUM, the possible values are given, but the type is not defined (i.e., no name is given). Then, in section 8 (Data attribute semantics), the values are repeated per attribute, again without name for the type. Only 'SboClass' and 'CtlModel' have been explicitly defined among all enumerations. We define concrete types for all of those, as enumerations.
  • Enumeration literal strings are literally copy-pasted from IEC 61850-7-3 (so they correspond to definitions in SCL2.0), except for CurveChar, SIUnit and Multiplier, whose literal strings are directly copied from SCL2.0.

Modelling notes 2:

  • In SCL, EnumType-s are not XML enumerations (i.e., they are not defined as types that restrict string), but rather have an id attribute that mainly refers to the name of attribute that has those literals as possible value range - but not always! (see orCategory, used for orCat attribute).
  • SCL defines one element (EnumType) per attribute of CDC/DA, so there are in some cases two EnumType-s with exactly same literals, but different id.
  • At present, we store that id attribute in the EA tagged value of enumeration (class). In cases there is repetition, this string will be a comma-separated list of SCL id-s.
  • The order of types in the diagrams and in the EA project browser is the one as in Ed.2 Annex H, to be able to compare the original with this model.
'], _containingPackage=DAEnums, _otherEndName=] +2024-09-08 15:11:36,061 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2016, uuid={A05F1A3E-4A44-4cba-89B2-22FD97F14AF9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='- SCL defines two EnumType-s (id=hvRef and id=hvid) with exactly same values; 'hvid' is useless (there is no such attribute). +- Confirmed: Definition here is OK (Baden WS, with TD & WW).', htmlDescription='
  • SCL defines two EnumType-s (id=hvRef and id=hvid) with exactly same values; 'hvid' is useless (there is no such attribute).
  • Confirmed: Definition here is OK (Baden WS, with TD & WW).
'], _containingPackage=DAEnums, _otherEndName=] +2024-09-08 15:11:36,061 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2021, uuid={6BE98B3D-9F27-4d95-9E1C-FD9B624525BC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='SCL defines two EnumType-s (id=angRef and id=angid) with exactly same values; 'angid' is useless (there is no such attribute). +SCL also defines a third EnumType (id=angidCMV) with only 4 values. It does not seem to be used as defined nowhere. Is it that CMV.angRef should be using only these values? If so, the spec in 7-3 is wrong, because it enumerates all values like in id=angRef. +- Confirmed: 7-3 is wrong for CMV.angRef - define type with 5 values only (Baden WS, with TD & WW).', htmlDescription='

SCL defines two EnumType-s (id=angRef and id=angid) with exactly same values; 'angid' is useless (there is no such attribute).

SCL also defines a third EnumType (id=angidCMV) with only 4 values. It does not seem to be used as defined nowhere. Is it that CMV.angRef should be using only these values? If so, the spec in 7-3 is wrong, because it enumerates all values like in id=angRef.

  • Confirmed: 7-3 is wrong for CMV.angRef - define type with 5 values only (Baden WS, with TD & WW).
'], _containingPackage=DAEnums, _otherEndName=] +2024-09-08 15:11:36,062 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2022, uuid={5A11F146-E3D4-4bab-8BA6-82AD6CB57804}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='- SCL defines two EnumType-s (id=phsRef and id=phsid) with exactly same values; 'phsid' is useless (there is no such attribute). +- Confirmed: Definition here is OK (Baden WS, with TD & WW).', htmlDescription='
  • SCL defines two EnumType-s (id=phsRef and id=phsid) with exactly same values; 'phsid' is useless (there is no such attribute).
  • Confirmed: Definition here is OK (Baden WS, with TD & WW).
'], _containingPackage=DAEnums, _otherEndName=] +2024-09-08 15:11:36,062 [main] TRACE ClassBuilder - Class SIUnitKind (1 in package DAEnums) +2024-09-08 15:11:36,062 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3834, uuid={BF785F0A-2A56-4621-B0A1-DAAB8F3EE85B}, since=null, name=none, alias=, stereotype=enum, visibility=public, txtDescription='Dimensionless', htmlDescription='

Dimensionless

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null, 1_taggedValues{scl:emptyValue=}] +2024-09-08 15:11:36,062 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3835, uuid={6DF44984-61E4-44a3-A5EE-4C2290415A9B}, since=null, name=m, alias=, stereotype=enum, visibility=public, txtDescription='Length', htmlDescription='

Length

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,062 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3836, uuid={B34B087D-ECF3-4743-8E65-600ED7521212}, since=null, name=kg, alias=, stereotype=enum, visibility=public, txtDescription='Mass', htmlDescription='

Mass

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,062 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3837, uuid={42A5DD44-C9F5-4656-8ACF-C090569255E2}, since=null, name=s, alias=, stereotype=enum, visibility=public, txtDescription='Time', htmlDescription='

Time

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,063 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3838, uuid={130724A3-1381-420a-844F-B51C24143F8E}, since=null, name=A, alias=, stereotype=enum, visibility=public, txtDescription='Current', htmlDescription='

Current

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=5, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,063 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3839, uuid={F1030625-D53E-45e5-9D29-4940A44165B5}, since=null, name=K, alias=, stereotype=enum, visibility=public, txtDescription='Temperature', htmlDescription='

Temperature

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=6, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,063 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3840, uuid={AE2FD9E1-D38B-4e9f-8335-4B65A749974D}, since=null, name=mol, alias=, stereotype=enum, visibility=public, txtDescription='Amount of substance', htmlDescription='

Amount of substance

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=7, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,063 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3841, uuid={B5FF5AD0-E9AE-4bb5-BF76-FC88E2D17EB6}, since=null, name=cd, alias=, stereotype=enum, visibility=public, txtDescription='Luminous intensity', htmlDescription='

Luminous intensity

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=8, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,063 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3842, uuid={80EB1A36-849C-46ff-9996-06A9C9483738}, since=null, name=deg, alias=, stereotype=enum, visibility=public, txtDescription='Plane angle', htmlDescription='

Plane angle

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=9, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,063 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3843, uuid={E377BEE0-C104-440f-9D8B-729C4C9260FB}, since=null, name=rad, alias=, stereotype=enum, visibility=public, txtDescription='Plane angle', htmlDescription='

Plane angle

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=10, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,063 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3844, uuid={FCAFD15F-9B98-4480-9FEA-2F23568D4CAC}, since=null, name=sr, alias=, stereotype=enum, visibility=public, txtDescription='Solid angle', htmlDescription='

Solid angle

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=11, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,063 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3845, uuid={9A01E986-3499-4252-9A72-C4049F2655AC}, since=null, name=Gy, alias=, stereotype=enum, visibility=public, txtDescription='Absorbed dose (J/kg)', htmlDescription='

Absorbed dose (J/kg)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=21, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,064 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3846, uuid={4E669A21-8B03-47a5-8B77-2FDE37A30C6A}, since=null, name=Bq, alias=, stereotype=enum, visibility=public, txtDescription='Activity (1/s)', htmlDescription='

Activity (1/s)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=22, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,064 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3847, uuid={520E858D-8B34-451c-8895-40892ACCF50E}, since=null, name=°C, alias=, stereotype=enum, visibility=public, txtDescription='Relative temperature', htmlDescription='

Relative temperature

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=23, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,064 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3848, uuid={D1749A3B-FE6D-49dd-BA79-7FFCB48480E3}, since=null, name=Sv, alias=, stereotype=enum, visibility=public, txtDescription='Dose equivalent (J/kg)', htmlDescription='

Dose equivalent (J/kg)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=24, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,064 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3849, uuid={0C8209F7-18E8-408f-AF2E-CB3CF6B56287}, since=null, name=F, alias=, stereotype=enum, visibility=public, txtDescription='Electric capacitance', htmlDescription='

Electric capacitance

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=25, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,064 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3850, uuid={F632CA5C-8824-4ae5-A523-BBAE12929F13}, since=null, name=C, alias=, stereotype=enum, visibility=public, txtDescription='Electric charge (A S)', htmlDescription='

Electric charge (A S)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=26, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,064 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3851, uuid={6A52F2C9-C32B-4795-9CAF-AB54E2E98475}, since=null, name=S, alias=, stereotype=enum, visibility=public, txtDescription='Electric conductance (A/V)', htmlDescription='

Electric conductance (A/V)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=27, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,064 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3852, uuid={C12E0C24-6370-4f9e-AF71-A111ED01D592}, since=null, name=H, alias=, stereotype=enum, visibility=public, txtDescription='Electric inductance (Wb/A)', htmlDescription='

Electric inductance (Wb/A)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=28, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,064 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3853, uuid={F3F8EFA6-66DE-4012-B0E7-73775B3AE13D}, since=null, name=V, alias=, stereotype=enum, visibility=public, txtDescription='Electric potential (W/A)', htmlDescription='

Electric potential (W/A)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=29, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,065 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3854, uuid={7DE9814F-6BC3-42c8-AD7C-3E93C74D077B}, since=null, name=ohm, alias=, stereotype=enum, visibility=public, txtDescription='Electric resistance (V/A)', htmlDescription='

Electric resistance (V/A)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=30, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,065 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3855, uuid={FE7FD54D-EA36-4fbe-A3FD-7BCFCC00F34A}, since=null, name=J, alias=, stereotype=enum, visibility=public, txtDescription='Energy (N m)', htmlDescription='

Energy (N m)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=31, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,065 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3856, uuid={B03A8CAE-D159-41a1-96FE-900DCF66F192}, since=null, name=N, alias=, stereotype=enum, visibility=public, txtDescription='Force (kg m / s2)', htmlDescription='

Force (kg m / s2)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=32, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,065 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3857, uuid={81BFC441-9980-4fb5-8BA1-E8F752221238}, since=null, name=Hz, alias=, stereotype=enum, visibility=public, txtDescription='Frequency (1/s)', htmlDescription='

Frequency (1/s)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=33, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,065 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3858, uuid={06DC51E8-D7E4-47b4-8E84-C59EFCC076A1}, since=null, name=lx, alias=, stereotype=enum, visibility=public, txtDescription='Illuminance (Lm/m2)', htmlDescription='

Illuminance (Lm/m2)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=34, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,065 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3859, uuid={695EF603-FCBB-4d63-8EE4-822DAF7B06F7}, since=null, name=Lm, alias=, stereotype=enum, visibility=public, txtDescription='Luminous flux (cd sr)', htmlDescription='

Luminous flux (cd sr)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=35, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,065 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3860, uuid={88797613-50B0-4614-9F01-D73561DF4C70}, since=null, name=Wb, alias=, stereotype=enum, visibility=public, txtDescription='Magnetic flux (V s)', htmlDescription='

Magnetic flux (V s)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=36, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,066 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3861, uuid={CAC0C9AC-54BF-45d8-A303-7F6B8A0D489D}, since=null, name=T, alias=, stereotype=enum, visibility=public, txtDescription='Magnetic flux density (Wb / m2)', htmlDescription='

Magnetic flux density (Wb / m2)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=37, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,066 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3862, uuid={3206BE17-1CB2-4674-88C8-ED9932F4F45E}, since=null, name=W, alias=, stereotype=enum, visibility=public, txtDescription='Power (J/s)', htmlDescription='

Power (J/s)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=38, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,066 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3863, uuid={093E7D33-D82B-4658-8E66-6529606CD4E7}, since=null, name=Pa, alias=, stereotype=enum, visibility=public, txtDescription='Pressure (N / m2)', htmlDescription='

Pressure (N / m2)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=39, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,067 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3864, uuid={F3996E68-F1F5-47ac-9868-025E731EA889}, since=null, name=m², alias=, stereotype=enum, visibility=public, txtDescription='Area', htmlDescription='

Area

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=41, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,067 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3865, uuid={A839006B-9203-4d7f-8EA6-57BACAD4D126}, since=null, name=m³, alias=, stereotype=enum, visibility=public, txtDescription='Volume', htmlDescription='

Volume

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=42, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,068 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3866, uuid={01CA7E85-9F4F-40df-AD70-7DEED2B304F8}, since=null, name=m/s, alias=, stereotype=enum, visibility=public, txtDescription='Velocity', htmlDescription='

Velocity

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=43, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,068 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3867, uuid={4480A19E-7AD5-4bda-8AD3-73B91E734BDD}, since=null, name=m/s², alias=, stereotype=enum, visibility=public, txtDescription='Acceleration', htmlDescription='

Acceleration

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=44, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,068 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3868, uuid={1774C91B-1C0C-41d7-9825-ADE012AA3F80}, since=null, name=m³/s, alias=, stereotype=enum, visibility=public, txtDescription='Volumetric flow rate', htmlDescription='

Volumetric flow rate

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=45, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,068 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3869, uuid={87C49CAE-44F7-4870-A2E4-4109061F7FB1}, since=null, name=m/m³, alias=, stereotype=enum, visibility=public, txtDescription='Fuel efficiency', htmlDescription='

Fuel efficiency

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=46, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,068 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3870, uuid={7559AB73-2A13-4cf7-8FD4-55685781E975}, since=null, name=M, alias=, stereotype=enum, visibility=public, txtDescription='Moment of mass (kg m)', htmlDescription='

Moment of mass (kg m)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=47, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,068 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3871, uuid={DAA7E5EF-F3F8-4193-9231-13579474FA39}, since=null, name=kg/m³, alias=, stereotype=enum, visibility=public, txtDescription='Density', htmlDescription='

Density

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=48, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,069 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3872, uuid={AFE3FFEE-3BE3-430f-8660-7B3EBC4E8951}, since=null, name=m²/s, alias=, stereotype=enum, visibility=public, txtDescription='Viscosity', htmlDescription='

Viscosity

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=49, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,069 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3873, uuid={BCFC3375-64FB-4f3a-94E3-95D1A3A5CBBE}, since=null, name=W/m K, alias=, stereotype=enum, visibility=public, txtDescription='Thermal conductivity', htmlDescription='

Thermal conductivity

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=50, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,069 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3874, uuid={3D94638E-4FDC-462c-87C3-ADC8B96D7B7E}, since=null, name=J/K, alias=, stereotype=enum, visibility=public, txtDescription='Heat capacity', htmlDescription='

Heat capacity

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=51, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,069 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3875, uuid={90F28F14-0C7C-45c7-B631-13548FBBA81B}, since=null, name=ppm, alias=, stereotype=enum, visibility=public, txtDescription='Concentration', htmlDescription='

Concentration

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=52, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,069 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3876, uuid={4A4CCECE-2AAA-4c8c-B936-C6108D16263F}, since=null, name=1/s, alias=, stereotype=enum, visibility=public, txtDescription='Rotational speed', htmlDescription='

Rotational speed

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=53, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,069 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3877, uuid={7D96211B-D5AD-4a47-9626-D17F9CB4CDEB}, since=null, name=rad/s, alias=, stereotype=enum, visibility=public, txtDescription='Angular velocity', htmlDescription='

Angular velocity

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=54, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,069 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3878, uuid={336B86CA-E1FB-4302-864F-F24E2A6D94C3}, since=null, name=W/m², alias=, stereotype=enum, visibility=public, txtDescription='Insolation', htmlDescription='

Insolation

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=55, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,069 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3879, uuid={C9521B26-D482-453f-945D-74369F773538}, since=null, name=J/m², alias=, stereotype=enum, visibility=public, txtDescription='Insolation energy', htmlDescription='

Insolation energy

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=56, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,069 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3880, uuid={ED41A0C0-8218-4409-B4EF-9E3F40AA0609}, since=null, name=S/m, alias=, stereotype=enum, visibility=public, txtDescription='Electric conductivity', htmlDescription='

Electric conductivity

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=57, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,069 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3881, uuid={7EA46B10-B356-4e5a-951C-3D6D32267576}, since=null, name=K/s, alias=, stereotype=enum, visibility=public, txtDescription='Temperature change rate', htmlDescription='

Temperature change rate

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=58, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,069 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3882, uuid={487E4ED6-B199-4909-9199-CE6D29ED4032}, since=null, name=Pa/s, alias=, stereotype=enum, visibility=public, txtDescription='Pressure change rate', htmlDescription='

Pressure change rate

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=59, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,069 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3883, uuid={AD5FA589-E00C-44dd-9ACD-9CF342D5968F}, since=null, name=J/kg K, alias=, stereotype=enum, visibility=public, txtDescription='Specific heat', htmlDescription='

Specific heat

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=60, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,069 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3884, uuid={6389AEE4-7FB9-4c07-B618-FB53EC254BEC}, since=null, name=VA, alias=, stereotype=enum, visibility=public, txtDescription='Apparent power', htmlDescription='

Apparent power

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=61, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,069 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3885, uuid={A318152C-4902-4d06-987B-93B642559783}, since=null, name=Watts, alias=, stereotype=enum, visibility=public, txtDescription='Real power (I2 R)', htmlDescription='

Real power (I2 R)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=62, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,070 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3886, uuid={F0EB0FAF-2328-47c0-BD89-3BC3A855BA2D}, since=null, name=VAr, alias=, stereotype=enum, visibility=public, txtDescription='Reactive power (V I sinTheta)', htmlDescription='

Reactive power (V I sinTheta)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=63, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,070 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3887, uuid={7ACF674F-0405-4ce6-B1CE-9BE8345B3E1F}, since=null, name=phi, alias=, stereotype=enum, visibility=public, txtDescription='Phase angle', htmlDescription='

Phase angle

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=64, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,070 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3888, uuid={75FEC2A7-74A6-4b04-9BB4-A017C3B2071A}, since=null, name=cos(phi), alias=, stereotype=enum, visibility=public, txtDescription='Power factor', htmlDescription='

Power factor

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=65, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,070 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3889, uuid={3519D3DF-FC67-43df-89C4-EFC973A9E571}, since=null, name=Vs, alias=, stereotype=enum, visibility=public, txtDescription='Volt second (Ws/A)', htmlDescription='

Volt second (Ws/A)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=66, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,070 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3890, uuid={6078EDDB-89EB-4e87-A142-CEDD5B6533D5}, since=null, name=V², alias=, stereotype=enum, visibility=public, txtDescription='Volt squared (W2/A2)', htmlDescription='

Volt squared (W2/A2)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=67, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,070 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3891, uuid={6E134111-596F-42b2-9FD5-C3711E33BDED}, since=null, name=As, alias=, stereotype=enum, visibility=public, txtDescription='Amp second', htmlDescription='

Amp second

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=68, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,070 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3892, uuid={F793B57F-FA76-42d9-89A9-7629864E64B3}, since=null, name=A², alias=, stereotype=enum, visibility=public, txtDescription='Amp squared', htmlDescription='

Amp squared

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=69, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,070 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3893, uuid={EA1DDC8A-87AD-4a1f-B2B0-91751FF53837}, since=null, name=A²t, alias=, stereotype=enum, visibility=public, txtDescription='Amps squared time', htmlDescription='

Amps squared time

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=70, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,070 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3894, uuid={D9CEC63F-76E2-485d-B2F7-FFA81AA6BEBC}, since=null, name=VAh, alias=, stereotype=enum, visibility=public, txtDescription='Apparent energy', htmlDescription='

Apparent energy

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=71, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,071 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3895, uuid={44599BAF-291C-4166-9A77-42A3007271CF}, since=null, name=Wh, alias=, stereotype=enum, visibility=public, txtDescription='Real energy', htmlDescription='

Real energy

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=72, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,071 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3896, uuid={A59B8D3B-DA91-4657-9E91-B1ADA13FAAAC}, since=null, name=VArh, alias=, stereotype=enum, visibility=public, txtDescription='Reactive energy', htmlDescription='

Reactive energy

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=73, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,071 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3897, uuid={0480C7F4-2D9A-47e9-A2E1-2D8C32D2E9D3}, since=null, name=V/Hz, alias=, stereotype=enum, visibility=public, txtDescription='Magnetic flux', htmlDescription='

Magnetic flux

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=74, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,071 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3898, uuid={7F582058-C00F-4944-A3AC-5789A6E2E24F}, since=null, name=Hz/s, alias=, stereotype=enum, visibility=public, txtDescription='Rate of change of frequency', htmlDescription='

Rate of change of frequency

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=75, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,071 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3899, uuid={081C90EE-8E06-46f7-80F9-01C1B233EB91}, since=null, name=char, alias=, stereotype=enum, visibility=public, txtDescription='Number of characters', htmlDescription='

Number of characters

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=76, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,071 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3900, uuid={3EF944A7-7515-4e91-B70B-7A85D85F8ECA}, since=null, name=char/s, alias=, stereotype=enum, visibility=public, txtDescription='Baud', htmlDescription='

Baud

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=77, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,071 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3901, uuid={12C213D8-D6B9-4954-A3B5-3BA81731565F}, since=null, name=kgm², alias=, stereotype=enum, visibility=public, txtDescription='Turbine inertia', htmlDescription='

Turbine inertia

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=78, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,071 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3902, uuid={947D393B-8686-4ee9-AA29-7D4A01819DF4}, since=null, name=dB, alias=, stereotype=enum, visibility=public, txtDescription='Sound pressure level', htmlDescription='

Sound pressure level

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=79, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,071 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3903, uuid={335D464A-2497-4981-B2E3-950C7282AA6F}, since=null, name=J/Wh, alias=, stereotype=enum, visibility=public, txtDescription='Heat rate', htmlDescription='

Heat rate

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=80, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,071 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3904, uuid={7BEC4924-EF16-420c-A67D-5D76EABD7938}, since=null, name=W/s, alias=, stereotype=enum, visibility=public, txtDescription='Ramp rate', htmlDescription='

Ramp rate

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=81, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,071 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3905, uuid={3E349D70-4DD2-4990-8071-0063B88752B2}, since=null, name=l/s, alias=, stereotype=enum, visibility=public, txtDescription='Flow rate', htmlDescription='

Flow rate

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=82, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,071 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::SIUnitKind, _objData=UmlObjectData [id=3906, uuid={7C5691F4-364C-4707-BFE6-CFBB055B1933}, since=null, name=dBm, alias=, stereotype=enum, visibility=public, txtDescription='Power level relative to 1 mW', htmlDescription='

Power level relative to 1 mW

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=83, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,072 [main] TRACE ClassBuilder - read from EA: DAEnums::SIUnitKind +2024-09-08 15:11:36,072 [main] TRACE ClassBuilder - Class MultiplierKind (2 in package DAEnums) +2024-09-08 15:11:36,072 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3813, uuid={F826384A-55D1-42d3-9E74-6989CEF256A9}, since=null, name=y, alias=, stereotype=enum, visibility=public, txtDescription='yocto (10-24)', htmlDescription='

yocto (10-24)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=-24, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,072 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3814, uuid={F856AB16-B194-4a54-A86D-ACE6DC6E65CF}, since=null, name=z, alias=, stereotype=enum, visibility=public, txtDescription='zepto (10-21)', htmlDescription='

zepto (10-21)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=-21, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,072 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3815, uuid={BDA0FA31-E452-4098-AB0D-720C1EF7B263}, since=null, name=a, alias=, stereotype=enum, visibility=public, txtDescription='atto (10-18)', htmlDescription='

atto (10-18)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=-18, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,072 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3816, uuid={11100351-8534-4376-BA83-4B47E5A0A126}, since=null, name=f, alias=, stereotype=enum, visibility=public, txtDescription='femto (10-15)', htmlDescription='

femto (10-15)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=-15, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,072 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3817, uuid={B6750A53-7A9C-4a07-ABEF-C1950A5939E0}, since=null, name=p, alias=, stereotype=enum, visibility=public, txtDescription='pico (10-12)', htmlDescription='

pico (10-12)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=-12, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,073 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3818, uuid={80AC5E72-B19E-4d7a-BD11-45DE37C82C16}, since=null, name=n, alias=, stereotype=enum, visibility=public, txtDescription='nano (10-9)', htmlDescription='

nano (10-9)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=-9, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,073 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3819, uuid={980F02A3-80C1-4d12-9648-7D6ABDC0053D}, since=null, name=µ, alias=, stereotype=enum, visibility=public, txtDescription='micro (10-6)', htmlDescription='

micro (10-6)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=-6, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,073 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3820, uuid={1592FEF4-6C1C-41f7-AB2F-F0075A85180D}, since=null, name=m, alias=, stereotype=enum, visibility=public, txtDescription='milli (10-3)', htmlDescription='

milli (10-3)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=-3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,073 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3821, uuid={44DBD5F4-440B-4693-A842-A7E414EE13CD}, since=null, name=c, alias=, stereotype=enum, visibility=public, txtDescription='centi (10-2)', htmlDescription='

centi (10-2)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=-2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,073 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3822, uuid={C1C66E19-BAB8-404e-83AC-B5AD8D1079DD}, since=null, name=d, alias=, stereotype=enum, visibility=public, txtDescription='deci (10-1)', htmlDescription='

deci (10-1)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=-1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,073 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3823, uuid={37848CD5-ABCF-4b0c-8316-436D2949DECE}, since=null, name=none, alias=, stereotype=enum, visibility=public, txtDescription='1 (100)', htmlDescription='

1 (100)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null, 1_taggedValues{scl:emptyValue=}] +2024-09-08 15:11:36,073 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3824, uuid={806BC64F-53C4-47bf-9D81-C23922A32759}, since=null, name=da, alias=, stereotype=enum, visibility=public, txtDescription='deca (101)', htmlDescription='

deca (101)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,073 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3825, uuid={DF66919F-34C9-413d-9499-D9D908F7D739}, since=null, name=h, alias=, stereotype=enum, visibility=public, txtDescription='hecto (102)', htmlDescription='

hecto (102)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,073 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3826, uuid={B23AC6F0-4362-4f51-9373-0584969C4027}, since=null, name=k, alias=, stereotype=enum, visibility=public, txtDescription='kilo (103)', htmlDescription='

kilo (103)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,074 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3827, uuid={A5852706-12D9-4192-BF05-94ED73EBB9CC}, since=null, name=M, alias=, stereotype=enum, visibility=public, txtDescription='mega (106)', htmlDescription='

mega (106)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=6, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,074 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3828, uuid={D2C2F3AF-A64A-4c08-B3EE-607EDAD828CC}, since=null, name=G, alias=, stereotype=enum, visibility=public, txtDescription='giga (109)', htmlDescription='

giga (109)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=9, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,074 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3829, uuid={806D1BFD-EC1C-4178-A2D4-BB165F3C9663}, since=null, name=T, alias=, stereotype=enum, visibility=public, txtDescription='tera (1012)', htmlDescription='

tera (1012)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=12, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,074 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3830, uuid={CDBB3281-D3CE-4053-B43B-D71C85737FFA}, since=null, name=P, alias=, stereotype=enum, visibility=public, txtDescription='petra (1015)', htmlDescription='

petra (1015)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=15, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,074 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3831, uuid={B5C0D72E-3CA0-46b4-BB7C-9454DD9BD091}, since=null, name=E, alias=, stereotype=enum, visibility=public, txtDescription='exa (1018)', htmlDescription='

exa (1018)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=18, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,074 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3832, uuid={FED6FE87-E395-4d6f-A8B0-DD5D59FB6BA3}, since=null, name=Z, alias=, stereotype=enum, visibility=public, txtDescription='zetta (1021)', htmlDescription='

zetta (1021)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=21, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,074 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::MultiplierKind, _objData=UmlObjectData [id=3833, uuid={A2445C1D-0C0D-4ed6-983A-07A413E8E101}, since=null, name=Y, alias=, stereotype=enum, visibility=public, txtDescription='yotta (1024)', htmlDescription='

yotta (1024)

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=24, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,074 [main] TRACE ClassBuilder - read from EA: DAEnums::MultiplierKind +2024-09-08 15:11:36,075 [main] TRACE ClassBuilder - Class PhaseFaultDirectionKind (3 in package DAEnums) +2024-09-08 15:11:36,075 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::PhaseFaultDirectionKind, _objData=UmlObjectData [id=3727, uuid={EA96AD4A-7F81-4faf-B172-CBD2E21DEC1E}, since=null, name=unknown, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,075 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::PhaseFaultDirectionKind, _objData=UmlObjectData [id=3728, uuid={EC44966A-7711-467b-A1E4-EF556315A60F}, since=null, name=forward, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,075 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::PhaseFaultDirectionKind, _objData=UmlObjectData [id=3729, uuid={6F661D14-B716-49d2-9CF5-C28EEA0F0880}, since=null, name=backward, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,075 [main] TRACE ClassBuilder - read from EA: DAEnums::PhaseFaultDirectionKind +2024-09-08 15:11:36,075 [main] TRACE ClassBuilder - Class PhaseAngleReferenceKind (4 in package DAEnums) +2024-09-08 15:11:36,075 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::PhaseAngleReferenceKind, _objData=UmlObjectData [id=3744, uuid={7A67A6EA-76C8-44db-BD19-900566F16BB1}, since=null, name=Va, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,075 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::PhaseAngleReferenceKind, _objData=UmlObjectData [id=3745, uuid={F5236EB4-23F5-4a14-A3A7-8F39E7837FB5}, since=null, name=Vb, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,075 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::PhaseAngleReferenceKind, _objData=UmlObjectData [id=3746, uuid={01D3B189-1334-47af-89D9-A708632D204B}, since=null, name=Vc, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,076 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::PhaseAngleReferenceKind, _objData=UmlObjectData [id=3747, uuid={8DF9CA9A-853B-411c-866B-883703C9769F}, since=null, name=Aa, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,077 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::PhaseAngleReferenceKind, _objData=UmlObjectData [id=3748, uuid={B78874F7-0651-4f51-89DE-8440EA1F00F8}, since=null, name=Ab, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,077 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::PhaseAngleReferenceKind, _objData=UmlObjectData [id=3749, uuid={E501A6FB-0BE3-4bee-AF95-447C1DA0BB8F}, since=null, name=Ac, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=5, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,077 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::PhaseAngleReferenceKind, _objData=UmlObjectData [id=3750, uuid={C0323DE2-E47A-4d41-BE14-6EBD7358E29F}, since=null, name=Vab, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=6, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,077 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::PhaseAngleReferenceKind, _objData=UmlObjectData [id=3751, uuid={D01AB035-9562-48cd-A622-AAF405D8F050}, since=null, name=Vbc, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=7, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,077 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::PhaseAngleReferenceKind, _objData=UmlObjectData [id=3752, uuid={8C1740DF-DB25-461a-809A-A416E19CA325}, since=null, name=Vca, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=8, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,077 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::PhaseAngleReferenceKind, _objData=UmlObjectData [id=3753, uuid={21136935-359E-4178-BC13-03C11742DC27}, since=null, name=Vother, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=9, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,077 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::PhaseAngleReferenceKind, _objData=UmlObjectData [id=3754, uuid={CA201514-B2C2-4dab-B0D5-239188B4D640}, since=null, name=Aother, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=10, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,077 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DAEnums::PhaseAngleReferenceKind, _objData=UmlObjectData [id=3755, uuid={85D43CCE-3CEB-4d00-BCDF-52BCE7FF33A0}, since=null, name=Synchrophasor, alias=, stereotype=enum, visibility=public, txtDescription='Reference of the angle is as defined in 4.2 of IEEE C37.118.', htmlDescription='

Reference of the angle is as defined in 4.2 of IEEE C37.118.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=11, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,078 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2214, uuid={19AF449A-8D04-40ed-80BC-D379DB38BF66}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=PhaseAngleReferenceKind, _otherEndName=?] +2024-09-08 15:11:36,078 [main] TRACE ClassBuilder - read from EA: DAEnums::PhaseAngleReferenceKind +2024-09-08 15:11:36,078 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_3, _depth=2, _eaElementID=2012, _objData=UmlObjectData [id=115, uuid={BA5F048C-51D9-4dc8-A0E9-617F4174CCE6}, since=null, name=DAEnums, alias=Enumerated data attribute types, stereotype=, visibility=public, txtDescription='This subclause contains explicit definition of enumerated types used in IEC 61850-7-3; some of them are also used in IEC 61850-7-4.', htmlDescription='

This subclause contains explicit definition of enumerated types used in IEC 61850-7-3; some of them are also used in IEC 61850-7-4.

'], _modelId=58, _selfDependent=false, 4_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2015, uuid={D1139F92-EB4A-4746-A43B-E28AB69E55E4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling notes 1: +- Within the definitions of both Common Data Attribute Types (section 6) and Common Data Classes (section 7) in IEC 61850-7-3, when the type of attribute is ENUMERATED or CODED_ENUM, the possible values are given, but the type is not defined (i.e., no name is given). Then, in section 8 (Data attribute semantics), the values are repeated per attribute, again without name for the type. Only 'SboClass' and 'CtlModel' have been explicitly defined among all enumerations. We define concrete types for all of those, as enumerations. +- Enumeration literal strings are literally copy-pasted from IEC 61850-7-3 (so they correspond to definitions in SCL2.0), except for CurveChar, SIUnit and Multiplier, whose literal strings are directly copied from SCL2.0. +Modelling notes 2: +- In SCL, EnumType-s are not XML enumerations (i.e., they are not defined as types that restrict string), but rather have an id attribute that mainly refers to the name of attribute that has those literals as possible value range - but not always! (see orCategory, used for orCat attribute). +- SCL defines one element (EnumType) per attribute of CDC/DA, so there are in some cases two EnumType-s with exactly same literals, but different id. +- At present, we store that id attribute in the EA tagged value of enumeration (class). In cases there is repetition, this string will be a comma-separated list of SCL id-s. +- The order of types in the diagrams and in the EA project browser is the one as in Ed.2 Annex H, to be able to compare the original with this model.', htmlDescription='

Modelling notes 1:

  • Within the definitions of both Common Data Attribute Types (section 6) and Common Data Classes (section 7) in IEC 61850-7-3, when the type of attribute is ENUMERATED or CODED_ENUM, the possible values are given, but the type is not defined (i.e., no name is given). Then, in section 8 (Data attribute semantics), the values are repeated per attribute, again without name for the type. Only 'SboClass' and 'CtlModel' have been explicitly defined among all enumerations. We define concrete types for all of those, as enumerations.
  • Enumeration literal strings are literally copy-pasted from IEC 61850-7-3 (so they correspond to definitions in SCL2.0), except for CurveChar, SIUnit and Multiplier, whose literal strings are directly copied from SCL2.0.

Modelling notes 2:

  • In SCL, EnumType-s are not XML enumerations (i.e., they are not defined as types that restrict string), but rather have an id attribute that mainly refers to the name of attribute that has those literals as possible value range - but not always! (see orCategory, used for orCat attribute).
  • SCL defines one element (EnumType) per attribute of CDC/DA, so there are in some cases two EnumType-s with exactly same literals, but different id.
  • At present, we store that id attribute in the EA tagged value of enumeration (class). In cases there is repetition, this string will be a comma-separated list of SCL id-s.
  • The order of types in the diagrams and in the EA project browser is the one as in Ed.2 Annex H, to be able to compare the original with this model.
'], _containingPackage=DAEnums, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2016, uuid={A05F1A3E-4A44-4cba-89B2-22FD97F14AF9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='- SCL defines two EnumType-s (id=hvRef and id=hvid) with exactly same values; 'hvid' is useless (there is no such attribute). +- Confirmed: Definition here is OK (Baden WS, with TD & WW).', htmlDescription='
  • SCL defines two EnumType-s (id=hvRef and id=hvid) with exactly same values; 'hvid' is useless (there is no such attribute).
  • Confirmed: Definition here is OK (Baden WS, with TD & WW).
'], _containingPackage=DAEnums, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2021, uuid={6BE98B3D-9F27-4d95-9E1C-FD9B624525BC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='SCL defines two EnumType-s (id=angRef and id=angid) with exactly same values; 'angid' is useless (there is no such attribute). +SCL also defines a third EnumType (id=angidCMV) with only 4 values. It does not seem to be used as defined nowhere. Is it that CMV.angRef should be using only these values? If so, the spec in 7-3 is wrong, because it enumerates all values like in id=angRef. +- Confirmed: 7-3 is wrong for CMV.angRef - define type with 5 values only (Baden WS, with TD & WW).', htmlDescription='

SCL defines two EnumType-s (id=angRef and id=angid) with exactly same values; 'angid' is useless (there is no such attribute).

SCL also defines a third EnumType (id=angidCMV) with only 4 values. It does not seem to be used as defined nowhere. Is it that CMV.angRef should be using only these values? If so, the spec in 7-3 is wrong, because it enumerates all values like in id=angRef.

  • Confirmed: 7-3 is wrong for CMV.angRef - define type with 5 values only (Baden WS, with TD & WW).
'], _containingPackage=DAEnums, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2022, uuid={5A11F146-E3D4-4bab-8BA6-82AD6CB57804}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='- SCL defines two EnumType-s (id=phsRef and id=phsid) with exactly same values; 'phsid' is useless (there is no such attribute). +- Confirmed: Definition here is OK (Baden WS, with TD & WW).', htmlDescription='
  • SCL defines two EnumType-s (id=phsRef and id=phsid) with exactly same values; 'phsid' is useless (there is no such attribute).
  • Confirmed: Definition here is OK (Baden WS, with TD & WW).
'], _containingPackage=DAEnums, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=DAEnums, _objData=UmlObjectData [id=229, uuid={22E1DAA3-405F-4df7-8882-EEBD5D0DA11B}, since=null, name=DAEnums-1, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the first part of explicit enumerated types defined in 61850-7-3.', htmlDescription='

This diagram shows the first part of explicit enumerated types defined in 61850-7-3.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsTarget=2, _classes=4 +2024-09-08 15:11:36,078 [main] INFO PackageBuilder - processing package ImplicitDAs (3) ... +2024-09-08 15:11:36,078 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=ImplicitDAs, _objData=UmlObjectData [id=231, uuid={20749D5F-87AE-475f-ABB6-7C52B08B808F}, since=null, name=ImplicitDAs, alias=, stereotype=, visibility=public, txtDescription='Shows all enumerated data attributes used for composed data attributes (beige) and common data classes (pink).', htmlDescription='

Shows all enumerated data attributes used for composed data attributes (beige) and common data classes (pink).

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:36,079 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_3::ImplicitDAs, _objData=UmlObjectData [id=2945, uuid={FA78D59B-10C4-462d-BB8D-AF291F0DB4BC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,079 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_3::ImplicitDAs, _objData=UmlObjectData [id=3062, uuid={4D544FA6-8E09-4013-A7BF-26D3FD028926}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,079 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_3::ImplicitDAs->IEC61850_7_3::DAEnums, _objData=UmlObjectData [id=3082, uuid={9E3DBD1A-4941-4c00-A64C-0B9D8112CFF9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,079 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2050, uuid={FD4E3B51-E3C1-4d2a-B91C-EA10EAD0F309}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling notes: +- DpStatus (double-point status) and BsControlKind (binary-controlled step) are in BasicDAs (part 7-2), and their coded enums in CoreTypes (part 7-2).', htmlDescription='

Modelling notes:

  • DpStatus (double-point status) and BsControlKind (binary-controlled step) are in BasicDAs (part 7-2), and their coded enums in CoreTypes (part 7-2).
'], _containingPackage=ImplicitDAs, _otherEndName=] +2024-09-08 15:11:36,080 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2073, uuid={7DBFCC58-6812-4b7a-99E7-8EB6CAA23B98}, since=null, name=DAEnums :DAEnums-2, alias=, stereotype=, visibility=public, txtDescription='DAEnums : DAEnums-2', htmlDescription='

DAEnums : DAEnums-2

'], _containingPackage=ImplicitDAs, _otherEndName=] +2024-09-08 15:11:36,080 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2074, uuid={CA5A2AEE-A355-4a54-B231-8F8A8E1AD807}, since=null, name=DAEnums :DAEnums-1, alias=, stereotype=, visibility=public, txtDescription='DAEnums : DAEnums-1', htmlDescription='

DAEnums : DAEnums-1

'], _containingPackage=ImplicitDAs, _otherEndName=] +2024-09-08 15:11:36,080 [main] TRACE ClassBuilder - Class SIUnit (1 in package ImplicitDAs) +2024-09-08 15:11:36,080 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ImplicitDAs::SIUnit, _objData=UmlObjectData [id=4088, uuid={04E61BC5-2DEF-41ba-AF8F-3A302F4A6063}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2045, _eaTypeName=SIUnitKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,080 [main] DEBUG ClassBuilder - Adding SIUnit as subclass of EnumDA +2024-09-08 15:11:36,080 [main] TRACE ClassBuilder - read from EA: ImplicitDAs::SIUnit +2024-09-08 15:11:36,080 [main] TRACE ClassBuilder - Class Multiplier (2 in package ImplicitDAs) +2024-09-08 15:11:36,080 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ImplicitDAs::Multiplier, _objData=UmlObjectData [id=4077, uuid={D9A6C35F-4CCF-4f73-83E5-5F4AD6A1400F}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2044, _eaTypeName=MultiplierKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,081 [main] DEBUG ClassBuilder - Adding Multiplier as subclass of EnumDA +2024-09-08 15:11:36,081 [main] TRACE ClassBuilder - read from EA: ImplicitDAs::Multiplier +2024-09-08 15:11:36,081 [main] TRACE ClassBuilder - Class PhaseFaultDirection (3 in package ImplicitDAs) +2024-09-08 15:11:36,081 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ImplicitDAs::PhaseFaultDirection, _objData=UmlObjectData [id=4082, uuid={686FDE41-9545-4055-876E-D830A36C9D9B}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2035, _eaTypeName=PhaseFaultDirectionKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,081 [main] DEBUG ClassBuilder - Adding PhaseFaultDirection as subclass of EnumDA +2024-09-08 15:11:36,081 [main] TRACE ClassBuilder - read from EA: ImplicitDAs::PhaseFaultDirection +2024-09-08 15:11:36,082 [main] TRACE ClassBuilder - Class PhaseAngleReference (4 in package ImplicitDAs) +2024-09-08 15:11:36,082 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ImplicitDAs::PhaseAngleReference, _objData=UmlObjectData [id=4081, uuid={C147EDDB-E173-43f3-A14E-937A40EA0619}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2039, _eaTypeName=PhaseAngleReferenceKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,082 [main] DEBUG ClassBuilder - Adding PhaseAngleReference as subclass of EnumDA +2024-09-08 15:11:36,082 [main] TRACE ClassBuilder - read from EA: ImplicitDAs::PhaseAngleReference +2024-09-08 15:11:36,082 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_3, _depth=2, _eaElementID=2049, _objData=UmlObjectData [id=116, uuid={D5AC8C44-FA9C-471c-8531-3431C335B69D}, since=null, name=ImplicitDAs, alias=, stereotype=, visibility=public, txtDescription='This package contains enumerated data attributes (EnumDA) used for composed data attributes and common data classes. Not explicitly defined in the standard.', htmlDescription='

This package contains enumerated data attributes (EnumDA) used for composed data attributes and common data classes. Not explicitly defined in the standard.

'], _modelId=58, _selfDependent=false, 3_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2050, uuid={FD4E3B51-E3C1-4d2a-B91C-EA10EAD0F309}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling notes: +- DpStatus (double-point status) and BsControlKind (binary-controlled step) are in BasicDAs (part 7-2), and their coded enums in CoreTypes (part 7-2).', htmlDescription='

Modelling notes:

  • DpStatus (double-point status) and BsControlKind (binary-controlled step) are in BasicDAs (part 7-2), and their coded enums in CoreTypes (part 7-2).
'], _containingPackage=ImplicitDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2073, uuid={7DBFCC58-6812-4b7a-99E7-8EB6CAA23B98}, since=null, name=DAEnums :DAEnums-2, alias=, stereotype=, visibility=public, txtDescription='DAEnums : DAEnums-2', htmlDescription='

DAEnums : DAEnums-2

'], _containingPackage=ImplicitDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2074, uuid={CA5A2AEE-A355-4a54-B231-8F8A8E1AD807}, since=null, name=DAEnums :DAEnums-1, alias=, stereotype=, visibility=public, txtDescription='DAEnums : DAEnums-1', htmlDescription='

DAEnums : DAEnums-1

'], _containingPackage=ImplicitDAs, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=ImplicitDAs, _objData=UmlObjectData [id=231, uuid={20749D5F-87AE-475f-ABB6-7C52B08B808F}, since=null, name=ImplicitDAs, alias=, stereotype=, visibility=public, txtDescription='Shows all enumerated data attributes used for composed data attributes (beige) and common data classes (pink).', htmlDescription='

Shows all enumerated data attributes used for composed data attributes (beige) and common data classes (pink).

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=1, _dependenciesAsTarget=2, _classes=4 +2024-09-08 15:11:36,082 [main] INFO PackageBuilder - processing package ConstructedDAs (4) ... +2024-09-08 15:11:36,082 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=ConstructedDAs, _objData=UmlObjectData [id=233, uuid={464DD3CC-A65D-4fac-94C9-4A99ECC02510}, since=null, name=ConstructedDAs, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all constructed attribute classes with their meta-model superclasses.', htmlDescription='

This diagram shows all constructed attribute classes with their meta-model superclasses.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:36,083 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_3::ConstructedDAs, _objData=UmlObjectData [id=2946, uuid={C39E7C1F-3EFB-476b-8296-6ED38A067033}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,083 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_3::ConstructedDAs->IEC61850_7_2::MetaModel, _objData=UmlObjectData [id=3061, uuid={56397421-AB0D-4458-80FC-5FB07F2DD3F2}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,083 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_3::ConstructedDAs->IEC61850_7_3::ImplicitDAs, _objData=UmlObjectData [id=3062, uuid={4D544FA6-8E09-4013-A7BF-26D3FD028926}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,083 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_3::ConstructedDAs->IEC61850_7_2::BasicDAs, _objData=UmlObjectData [id=3063, uuid={3A733EFE-40F7-4e54-BAA6-405269B1FDDC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,083 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_3::ConstructedDAs->IEC61850_7_2::CoreTypes, _objData=UmlObjectData [id=3064, uuid={108535CE-A6F8-4674-9586-860C06077B0A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,084 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2077, uuid={A2DB359E-D081-478e-8841-E4D73D4EE769}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- Complete the statechart Quality.validity.', htmlDescription='

TODO:

  • Complete the statechart Quality.validity.
'], _containingPackage=ConstructedDAs, _otherEndName=] +2024-09-08 15:11:36,084 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2078, uuid={2589FB5D-7AE6-4890-B8A2-4F3261625EAE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: finish transitions +- (see oscillatory): questionable -> invalid +- questionable -> good +- invalid -> good +Somehow: When operator sets 'blkEna' in a CDC to true (or when automatic function freezes communications), the server should set Quality.detailQual.oldData to true.', htmlDescription='

TODO: finish transitions

  • (see oscillatory): questionable -> invalid
  • questionable -> good
  • invalid -> good

Somehow: When operator sets 'blkEna' in a CDC to true (or when automatic function freezes communications), the server should set Quality.detailQual.oldData to true.

'], _containingPackage=ConstructedDAs, _otherEndName=] +2024-09-08 15:11:36,085 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2102, uuid={048EE573-AFDD-4dd7-9AF5-11D2B0EC5B46}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='rangeC range validity detailQual +high-high questionable outOfRange +max +high-high good +hhLim +high good +hLim +normal good +lLim +low good +llLim +low-low good +min +low-low questionable outOfRange', htmlDescription='

rangeC range validity detailQual

high-high questionable outOfRange

max

high-high good

hhLim

high good

hLim

normal good

lLim

low good

llLim

low-low good

min

low-low questionable outOfRange

'], _containingPackage=ConstructedDAs, _otherEndName=] +2024-09-08 15:11:36,085 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2104, uuid={33A3CF9B-3587-46f7-ABE2-EC231CA8A590}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='[ server decides is invalid ]', htmlDescription='

[ server decides is invalid ]

'], _containingPackage=ConstructedDAs, _otherEndName=] +2024-09-08 15:11:36,086 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2105, uuid={4BC921B0-EB32-46bb-B58C-BABA12FB3919}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='[ server decides is questionable ]', htmlDescription='

[ server decides is questionable ]

'], _containingPackage=ConstructedDAs, _otherEndName=] +2024-09-08 15:11:36,086 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2106, uuid={59D32E9F-0F12-4294-8C09-111E6652D60B}, since=null, name=ConstructedDAs : Quality.validity, alias=, stereotype=, visibility=public, txtDescription='ConstructedDAs : Quality.validity', htmlDescription='

ConstructedDAs : Quality.validity

'], _containingPackage=ConstructedDAs, _otherEndName=] +2024-09-08 15:11:36,086 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2107, uuid={5CCAFF50-1F52-4703-A048-CF8E0D90B88F}, since=null, name=ConstructedDAs :Range configuration, alias=, stereotype=, visibility=public, txtDescription='ConstructedDAs : Range configuration', htmlDescription='

ConstructedDAs : Range configuration

'], _containingPackage=ConstructedDAs, _otherEndName=] +2024-09-08 15:11:36,086 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2108, uuid={7F553FDB-F3EA-473e-823B-CAEB77B786F5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=ConstructedDAs, _otherEndName=] +2024-09-08 15:11:36,086 [main] TRACE ClassBuilder - Class Quality (1 in package ConstructedDAs) +2024-09-08 15:11:36,086 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [, _containingClass=Quality, _objData=UmlObjectData [id=232, uuid={21B55DC7-E4EF-4080-AB01-30D0901B9429}, since=null, name=Quality.validity, alias=, stereotype=, visibility=public, txtDescription='This diagram shows how validity depends on detailQual. The state names parallel enumeration literals of ValidityKind.', htmlDescription='

This diagram shows how validity depends on detailQual. The state names parallel enumeration literals of ValidityKind.

'], _portrait=true, _kind=STATECHART] +2024-09-08 15:11:36,086 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=STATE_MACHINE, _isConnector=false, _objData=UmlObjectData [id=2081, uuid={CE37CFF6-FD41-4c3b-92FC-95B5B9B6346E}, since=null, name=validityStateMachine, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=Quality, _otherEndName=] +2024-09-08 15:11:36,087 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::Quality, _objData=UmlObjectData [id=4089, uuid={6B873BB6-307E-4f25-9992-6EB6CF12F6ED}, since=null, name=validity, alias=, stereotype=, visibility=public, txtDescription='Validity of the value, as condensed information for the client. In case this value is not 'good', the reasons may be found in the 'detailQual'. See statechart diagram 'Quality.validity'.', htmlDescription='

Validity of the value, as condensed information for the client. In case this value is not 'good', the reasons may be found in the 'detailQual'. See statechart diagram 'Quality.validity'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2086, _eaTypeName=ValidityKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,087 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::Quality, _objData=UmlObjectData [id=4090, uuid={F9945558-C141-4c08-8066-C29D603832D6}, since=null, name=detailQual, alias=, stereotype=, visibility=public, txtDescription='Describes reason in case 'validity' is not 'good'. See statechart diagram 'Quality.validity'.', htmlDescription='

Describes reason in case 'validity' is not 'good'. See statechart diagram 'Quality.validity'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2087, _eaTypeName=DetailQual, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,087 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::Quality, _objData=UmlObjectData [id=4091, uuid={5A199508-269E-4da4-9486-1CFDD6D76F69}, since=null, name=source, alias=, stereotype=, visibility=public, txtDescription='Defines the source of a value. +NOTE 1 Substitution may be done locally or via the communication services. In the second case, specific attributes with a FC=SV are used. +NOTE 2 There are various means to clear a substitution. As an example, a substitution that was done following an invalid condition may be cleared automatically if the invalid condition is cleared. However, this is a local issue and therefore not within the scope of this standard.', htmlDescription='

Defines the source of a value.

NOTE 1 Substitution may be done locally or via the communication services. In the second case, specific attributes with a FC=SV are used.

NOTE 2 There are various means to clear a substitution. As an example, a substitution that was done following an invalid condition may be cleared automatically if the invalid condition is cleared. However, this is a local issue and therefore not within the scope of this standard.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=process, _eaTypeId=2088, _eaTypeName=SourceKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,087 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::Quality, _objData=UmlObjectData [id=4092, uuid={AAF0A359-5525-42e5-AC60-220D2A34F946}, since=null, name=test, alias=, stereotype=, visibility=public, txtDescription='If true, the value is a test value and not to be used for operational purposes. The processing of the test quality in the client shall be as described in IEC 61850-7-4. This bit shall be completely independent from the other bits within the quality descriptor.', htmlDescription='

If true, the value is a test value and not to be used for operational purposes. The processing of the test quality in the client shall be as described in IEC 61850-7-4. This bit shall be completely independent from the other bits within the quality descriptor.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,087 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::Quality, _objData=UmlObjectData [id=4093, uuid={3CD5913A-B2E1-43bd-ABC3-943477516A2E}, since=null, name=operatorBlocked, alias=, stereotype=, visibility=public, txtDescription='If true, further update of the value has been blocked by an operator. The value shall be the information that was acquired before blocking. If this flag is set, then the 'detailQual.oldData' shall also be set. +The operator shall use the data attribute 'CDC.blkEna' to block the update of the value. +NOTE Both an operator as well as an automatic function may freeze communication updating as well as input updating. In both cases, 'detailQual.oldData' will be set. If the blocking is done by an operator, then this flag is set additionally, and an operator activity is required to clear the condition. +EXAMPLE An operator may freeze the update of an input, to save the old value before the auxiliary supply is switched off.', htmlDescription='

If true, further update of the value has been blocked by an operator. The value shall be the information that was acquired before blocking. If this flag is set, then the 'detailQual.oldData' shall also be set.

The operator shall use the data attribute 'CDC.blkEna' to block the update of the value.

NOTE Both an operator as well as an automatic function may freeze communication updating as well as input updating. In both cases, 'detailQual.oldData' will be set. If the blocking is done by an operator, then this flag is set additionally, and an operator activity is required to clear the condition.

EXAMPLE An operator may freeze the update of an input, to save the old value before the auxiliary supply is switched off.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,087 [main] DEBUG ClassBuilder - Adding Quality as subclass of PackedPrimitiveDA +2024-09-08 15:11:36,087 [main] TRACE ClassBuilder - read from EA: ConstructedDAs::Quality +2024-09-08 15:11:36,088 [main] TRACE ClassBuilder - Class ValidityKind (2 in package ConstructedDAs) +2024-09-08 15:11:36,088 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::ValidityKind, _objData=UmlObjectData [id=4094, uuid={030DE06F-529B-41d7-9127-03B3AEF8FE6F}, since=null, name=good, alias=, stereotype=enum, visibility=public, txtDescription='Supervision function has detected no abnormal condition of either the acquisition function or the information source.', htmlDescription='

Supervision function has detected no abnormal condition of either the acquisition function or the information source.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,088 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::ValidityKind, _objData=UmlObjectData [id=4095, uuid={BF716691-116B-41c2-A6DF-135F1A6CA348}, since=null, name=invalid, alias=, stereotype=enum, visibility=public, txtDescription='Supervision function has detected an abnormal condition of the acquisition function or the information source (missing or non-operating updating devices). The value shall not be defined under this condition. It shall be used to indicate to the client that the value may be incorrect and shall not be used. +EXAMPLE If an input unit detects an oscillation of one input it will mark the related information as invalid.', htmlDescription='

Supervision function has detected an abnormal condition of the acquisition function or the information source (missing or non-operating updating devices). The value shall not be defined under this condition. It shall be used to indicate to the client that the value may be incorrect and shall not be used.

EXAMPLE If an input unit detects an oscillation of one input it will mark the related information as invalid.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,088 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::ValidityKind, _objData=UmlObjectData [id=4096, uuid={2CF37216-7413-46f8-B44A-6FEADC4F0F74}, since=null, name=reserved, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,088 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::ValidityKind, _objData=UmlObjectData [id=4097, uuid={EFB07102-7C09-497e-8013-6656894679E1}, since=null, name=questionable, alias=, stereotype=enum, visibility=public, txtDescription='Supervision function has detected any abnormal behaviour. However, the value could still be valid. It is client's responsibility to determine whether the values should be used.', htmlDescription='

Supervision function has detected any abnormal behaviour. However, the value could still be valid. It is client's responsibility to determine whether the values should be used.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,088 [main] TRACE ClassBuilder - read from EA: ConstructedDAs::ValidityKind +2024-09-08 15:11:36,088 [main] TRACE ClassBuilder - Class DetailQual (3 in package ConstructedDAs) +2024-09-08 15:11:36,088 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4098, uuid={F718393A-BF8D-43d5-838D-8E98DDBD0E12}, since=null, name=overflow, alias=, stereotype=, visibility=public, txtDescription='If true, the value of the attribute to which the quality has been associated is beyond the capability of being represented properly (used for measurand information only). +EXAMPLE A measured value may exceed the range that may be represented by the selected data type, for example the data type is a 16-bit unsigned integer and the value exceeds 65 535.', htmlDescription='

If true, the value of the attribute to which the quality has been associated is beyond the capability of being represented properly (used for measurand information only).

EXAMPLE A measured value may exceed the range that may be represented by the selected data type, for example the data type is a 16-bit unsigned integer and the value exceeds 65 535.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,088 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4099, uuid={59AA133B-4EF6-45b2-8F72-65890F8CB3B3}, since=null, name=outOfRange, alias=, stereotype=, visibility=public, txtDescription='If true, the attribute to which the quality has been associated is beyond a predefined range of values. The server shall decide if validity shall be set to invalid or questionable (used for measurand information only). +EXAMPLE A measured value may exceed a predefined range, however the selected data type can still represent the value, for example the data type is a 16-bit unsigned integer, the predefined range is 0 to 40 000, if the value is between 40 001 and 65 535 it is considered to be out of range.', htmlDescription='

If true, the attribute to which the quality has been associated is beyond a predefined range of values. The server shall decide if validity shall be set to invalid or questionable (used for measurand information only).

EXAMPLE A measured value may exceed a predefined range, however the selected data type can still represent the value, for example the data type is a 16-bit unsigned integer, the predefined range is 0 to 40 000, if the value is between 40 001 and 65 535 it is considered to be out of range.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,088 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4100, uuid={11996C00-CB4B-4a28-8EE7-BEF71773138F}, since=null, name=badReference, alias=, stereotype=, visibility=public, txtDescription='If true, the value may not be a correct value due to a reference being out of calibration. The server shall decide if validity shall be set to invalid or questionable (used for measurand information and binary counter information only).', htmlDescription='

If true, the value may not be a correct value due to a reference being out of calibration. The server shall decide if validity shall be set to invalid or questionable (used for measurand information and binary counter information only).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,089 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4101, uuid={8BDDF6AD-167F-4b25-B87B-675BA127832A}, since=null, name=oscillatory, alias=, stereotype=, visibility=public, txtDescription='To prevent overloading of event driven communication channels, it is desirable to detect and suppress oscillating (fast changing) binary inputs. If a signal changes in a defined time (tosc) twice in the same direction (from 0 to 1 or from 1 to 0), then it shall be defined as an oscillation and this attribute shall be set to true. If a configured number of transient changes is detected, they shall be suppressed. In this time, the 'Quality.validity' shall be set to 'questionable'. If the signal is still in the oscillating state after the defined number of changes, the value shall be left in the state it was in when this flag was set. In this case, the 'Quality.validity' shall be changed from 'questionable' to 'invalid' and kept so as long as the signal is oscillating. +If the configuration is such that all transient changes should be suppressed, the 'Quality.validity' shall be set immediately to 'invalid' and this flag to true (used for status information only).', htmlDescription='

To prevent overloading of event driven communication channels, it is desirable to detect and suppress oscillating (fast changing) binary inputs. If a signal changes in a defined time (tosc) twice in the same direction (from 0 to 1 or from 1 to 0), then it shall be defined as an oscillation and this attribute shall be set to true. If a configured number of transient changes is detected, they shall be suppressed. In this time, the 'Quality.validity' shall be set to 'questionable'. If the signal is still in the oscillating state after the defined number of changes, the value shall be left in the state it was in when this flag was set. In this case, the 'Quality.validity' shall be changed from 'questionable' to 'invalid' and kept so as long as the signal is oscillating.

If the configuration is such that all transient changes should be suppressed, the 'Quality.validity' shall be set immediately to 'invalid' and this flag to true (used for status information only).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,089 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4102, uuid={3B8BF4EE-E8EF-4aff-A496-55A1F7D43008}, since=null, name=failure, alias=, stereotype=, visibility=public, txtDescription='If true, a supervision function has detected an internal or external failure.', htmlDescription='

If true, a supervision function has detected an internal or external failure.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,090 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4103, uuid={818F9F91-476A-49f8-86B4-58D7E97343BD}, since=null, name=oldData, alias=, stereotype=, visibility=public, txtDescription='If true, an update is not made during a specific time interval. The value may be an old value that may have changed in the meantime. This specific time interval may be defined by an allowed-age attribute. +NOTE "Fail silent" errors, where the equipment stops sending data, will cause setting this flag to true. In this case, the last received information was correct.', htmlDescription='

If true, an update is not made during a specific time interval. The value may be an old value that may have changed in the meantime. This specific time interval may be defined by an allowed-age attribute.

NOTE "Fail silent" errors, where the equipment stops sending data, will cause setting this flag to true. In this case, the last received information was correct.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,090 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4104, uuid={BD955C3B-2E26-40fa-ADBC-F1FD970D24FF}, since=null, name=inconsistent, alias=, stereotype=, visibility=public, txtDescription='If true, an evaluation function has detected an inconsistency.', htmlDescription='

If true, an evaluation function has detected an inconsistency.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,090 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4105, uuid={8936AB8B-A0A9-4132-817E-D2B7C850E919}, since=null, name=inaccurate, alias=, stereotype=, visibility=public, txtDescription='If true, the value does not meet the stated accuracy of the source. +EXAMPLE The measured value of power factor may be noisy (inaccurate) when the current is very small.', htmlDescription='

If true, the value does not meet the stated accuracy of the source.

EXAMPLE The measured value of power factor may be noisy (inaccurate) when the current is very small.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,090 [main] TRACE ClassBuilder - read from EA: ConstructedDAs::DetailQual +2024-09-08 15:11:36,090 [main] TRACE ClassBuilder - Class SourceKind (4 in package ConstructedDAs) +2024-09-08 15:11:36,091 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::SourceKind, _objData=UmlObjectData [id=4106, uuid={E89E2DD9-CE54-483c-AB72-C94BD9BAA4B4}, since=null, name=process, alias=, stereotype=enum, visibility=public, txtDescription='The value is provided by an input function from the process I/O or is calculated from some application function.', htmlDescription='

The value is provided by an input function from the process I/O or is calculated from some application function.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=0, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,091 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::SourceKind, _objData=UmlObjectData [id=4107, uuid={964EA014-4393-43b8-9C10-DDADF714D6C3}, since=null, name=substituted, alias=, stereotype=enum, visibility=public, txtDescription='The value is provided by an operator input or by an automatic source.', htmlDescription='

The value is provided by an operator input or by an automatic source.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,091 [main] TRACE ClassBuilder - read from EA: ConstructedDAs::SourceKind +2024-09-08 15:11:36,091 [main] TRACE ClassBuilder - Class AnalogueValue (5 in package ConstructedDAs) +2024-09-08 15:11:36,091 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::AnalogueValue, _objData=UmlObjectData [id=4108, uuid={22DBDBF4-0BD6-4ae9-83E7-28C1B98CD72A}, since=null, name=i, alias=, stereotype=, visibility=public, txtDescription='Integer representation of the measured value. The formula to convert between 'i' and the process value (pVal) shall be: pVal=('i'*'ScaledValueConfig.scaleFactor')+'ScaledValueConfig.offset'.', htmlDescription='

Integer representation of the measured value. The formula to convert between 'i' and the process value (pVal) shall be: pVal=('i'*'ScaledValueConfig.scaleFactor')+'ScaledValueConfig.offset'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1745, _eaTypeName=INT32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,091 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::AnalogueValue, _objData=UmlObjectData [id=4109, uuid={B5A81241-061A-410d-8E63-9847A2F26D4D}, since=null, name=f, alias=, stereotype=, visibility=public, txtDescription='Floating point representation of the measured value. The formula to convert between 'f' and the process value (pVal) shall be: pVal='f'*10'Unit.multiplier'.', htmlDescription='

Floating point representation of the measured value. The formula to convert between 'f' and the process value (pVal) shall be: pVal='f'*10'Unit.multiplier'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1741, _eaTypeName=FLOAT32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,091 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2152, uuid={0F0E174C-0CD4-499c-A6CF-A9F87D68899D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=AnalogueValue, _otherEndName=?] +2024-09-08 15:11:36,092 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2158, uuid={53CF3599-2538-412f-94D6-1B312A04978B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=AnalogueValue, _otherEndName=?] +2024-09-08 15:11:36,092 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2169, uuid={6BB80DFD-60FA-4bd1-8AC0-70CFB9AC73AF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=AnalogueValue, _otherEndName=?] +2024-09-08 15:11:36,092 [main] DEBUG ClassBuilder - Adding AnalogueValue as subclass of ComposedDA +2024-09-08 15:11:36,092 [main] TRACE ClassBuilder - read from EA: ConstructedDAs::AnalogueValue +2024-09-08 15:11:36,092 [main] TRACE ClassBuilder - Class RangeConfig (6 in package ConstructedDAs) +2024-09-08 15:11:36,092 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [, _containingClass=RangeConfig, _objData=UmlObjectData [id=235, uuid={6CB79C53-CB9F-4de4-804C-04A77C5B22A9}, since=null, name=Range configuration, alias=, stereotype=, visibility=public, txtDescription='This diagram illustrates relationships between range, range configuration and quality of measured process value.', htmlDescription='

This diagram illustrates relationships between range, range configuration and quality of measured process value.

'], _portrait=true, _kind=CUSTOM] +2024-09-08 15:11:36,092 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::RangeConfig, _objData=UmlObjectData [id=4112, uuid={2BFD6A66-6A28-44b9-BD6A-9BFF5FEEF286}, since=null, name=hhLim, alias=, stereotype=, visibility=public, txtDescription='Setting for 'CDC.range' transition between 'high' and 'high-high'.', htmlDescription='

Setting for 'CDC.range' transition between 'high' and 'high-high'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,092 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::RangeConfig, _objData=UmlObjectData [id=4113, uuid={8FE22512-90C7-4798-9E7E-7595B41EA770}, since=null, name=hLim, alias=, stereotype=, visibility=public, txtDescription='Setting for 'CDC.range' transition between 'normal' and 'high'.', htmlDescription='

Setting for 'CDC.range' transition between 'normal' and 'high'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,092 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::RangeConfig, _objData=UmlObjectData [id=4114, uuid={E4180E64-6824-4aa0-8D9F-A32F749903E0}, since=null, name=lLim, alias=, stereotype=, visibility=public, txtDescription='Setting for 'CDC.range' transition between 'normal' and 'low'.', htmlDescription='

Setting for 'CDC.range' transition between 'normal' and 'low'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,092 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::RangeConfig, _objData=UmlObjectData [id=4115, uuid={A928E883-FC18-4c21-8227-53F8B3A89A08}, since=null, name=llLim, alias=, stereotype=, visibility=public, txtDescription='Setting for 'CDC.range' transition between 'low' and 'low-low'.', htmlDescription='

Setting for 'CDC.range' transition between 'low' and 'low-low'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,092 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::RangeConfig, _objData=UmlObjectData [id=4116, uuid={FDC77E3A-4EF4-4ace-93FD-7CC6C14FB3D0}, since=null, name=min, alias=, stereotype=, visibility=public, txtDescription='The minimum process measurement for which 'AnalogueValue.[i,f]' is considered within process limits. If the value is lower, quality shall be set accordingly ('Quality.detailQual.outOfRange'=true => 'Quality.validity'='questionable'; see statechart diagram 'Quality.validity').', htmlDescription='

The minimum process measurement for which 'AnalogueValue.[i,f]' is considered within process limits. If the value is lower, quality shall be set accordingly ('Quality.detailQual.outOfRange'=true => 'Quality.validity'='questionable'; see statechart diagram 'Quality.validity').

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,092 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::RangeConfig, _objData=UmlObjectData [id=4117, uuid={470D1B89-7BB1-4e75-BEAE-A838976EFA5A}, since=null, name=max, alias=, stereotype=, visibility=public, txtDescription='The maximum process measurement for which 'AnalogueValue.[i,f]' is considered within process limits. If the value is higher, quality shall be set accordingly ('Quality.detailQual.outOfRange'=true => 'Quality.validity'='questionable'; see statechart diagram 'Quality.validity').', htmlDescription='

The maximum process measurement for which 'AnalogueValue.[i,f]' is considered within process limits. If the value is higher, quality shall be set accordingly ('Quality.detailQual.outOfRange'=true => 'Quality.validity'='questionable'; see statechart diagram 'Quality.validity').

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,092 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::RangeConfig, _objData=UmlObjectData [id=4118, uuid={EE10B700-EDF1-4e03-B234-D881D49750CC}, since=null, name=limDb, alias=, stereotype=, visibility=public, txtDescription='When present, the value used to introduce a hysteresis in the calculation of 'range'. When a high/low limit has been crossed, 'range' is immediately set to the higher/lower value. However, 'range' is only set back to the lower/higher value when the value of the high limit minus/low limit plut 'limDb' has been crossed. The value shall represent the percentage between 'max' and 'min' in units of 0.001 %.', htmlDescription='

When present, the value used to introduce a hysteresis in the calculation of 'range'. When a high/low limit has been crossed, 'range' is immediately set to the higher/lower value. However, 'range' is only set back to the lower/higher value when the value of the high limit minus/low limit plut 'limDb' has been crossed. The value shall represent the percentage between 'max' and 'min' in units of 0.001 %.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0...100000, _eaTypeId=1746, _eaTypeName=INT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,093 [main] DEBUG ClassBuilder - Adding RangeConfig as subclass of ComposedDA +2024-09-08 15:11:36,093 [main] TRACE ClassBuilder - read from EA: ConstructedDAs::RangeConfig +2024-09-08 15:11:36,093 [main] TRACE ClassBuilder - Class Unit (7 in package ConstructedDAs) +2024-09-08 15:11:36,093 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::Unit, _objData=UmlObjectData [id=4127, uuid={E11B7BFF-E809-4175-9618-B2A63F15871E}, since=null, name=SIUnit, alias=, stereotype=, visibility=public, txtDescription='SI unit of measure.', htmlDescription='

SI unit of measure.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2072, _eaTypeName=SIUnit, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,093 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::Unit, _objData=UmlObjectData [id=4128, uuid={0327BF79-19B2-4e38-AD4E-6944E32735D3}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='Unit multiplier.', htmlDescription='

Unit multiplier.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=none, _eaTypeId=2061, _eaTypeName=Multiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,093 [main] DEBUG ClassBuilder - Adding Unit as subclass of ComposedDA +2024-09-08 15:11:36,093 [main] TRACE ClassBuilder - read from EA: ConstructedDAs::Unit +2024-09-08 15:11:36,093 [main] TRACE ClassBuilder - Class Point (8 in package ConstructedDAs) +2024-09-08 15:11:36,093 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::Point, _objData=UmlObjectData [id=4131, uuid={FE6F09B0-454A-4c96-8FDD-76F86A4128A3}, since=null, name=xVal, alias=, stereotype=, visibility=public, txtDescription='X-axis value.', htmlDescription='

X-axis value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1741, _eaTypeName=FLOAT32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,093 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::Point, _objData=UmlObjectData [id=4132, uuid={77130ABC-BB1E-4259-96F0-AF62EF68F9CB}, since=null, name=yVal, alias=, stereotype=, visibility=public, txtDescription='Y-axis value.', htmlDescription='

Y-axis value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1741, _eaTypeName=FLOAT32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,094 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=ConstructedDAs::Point, _objData=UmlObjectData [id=4133, uuid={1A9EA6E0-B105-4386-8B25-4F2F99670EE0}, since=null, name=zVal, alias=, stereotype=, visibility=public, txtDescription='Z-axis value.', htmlDescription='

Z-axis value.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1741, _eaTypeName=FLOAT32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,094 [main] DEBUG ClassBuilder - Adding Point as subclass of ComposedDA +2024-09-08 15:11:36,094 [main] TRACE ClassBuilder - read from EA: ConstructedDAs::Point +2024-09-08 15:11:36,094 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_3, _depth=2, _eaElementID=2075, _objData=UmlObjectData [id=117, uuid={49A06BEB-3924-4b2c-A29E-A5E992AFE35F}, since=null, name=ConstructedDAs, alias=Constructed attribute classes, stereotype=, visibility=public, txtDescription='Constructed attribute classes are defined for the use in common data classes (CDC) in Clause 7. +IEC 61850-7-1 provides an overview of all IEC 61850-7 documents (IEC 61850-7-2, IEC 61850-7-3, and IEC 61850-7-4). IEC 61850-7-1 also describes the basic notation used in IEC 61850-7-3 and the description of the relations between the IEC 61850-7 documents. +NOTE The common ACSI type 'TimeStamp' is specified in IEC 61850-7-2.', htmlDescription='

Constructed attribute classes are defined for the use in common data classes (CDC) in Clause 7.

IEC 61850-7-1 provides an overview of all IEC 61850-7 documents (IEC 61850-7-2, IEC 61850-7-3, and IEC 61850-7-4). IEC 61850-7-1 also describes the basic notation used in IEC 61850-7-3 and the description of the relations between the IEC 61850-7 documents.

NOTE The common ACSI type 'TimeStamp' is specified in IEC 61850-7-2.

'], _modelId=58, _selfDependent=false, 8_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2077, uuid={A2DB359E-D081-478e-8841-E4D73D4EE769}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- Complete the statechart Quality.validity.', htmlDescription='

TODO:

  • Complete the statechart Quality.validity.
'], _containingPackage=ConstructedDAs, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2078, uuid={2589FB5D-7AE6-4890-B8A2-4F3261625EAE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: finish transitions +- (see oscillatory): questionable -> invalid +- questionable -> good +- invalid -> good +Somehow: When operator sets 'blkEna' in a CDC to true (or when automatic function freezes communications), the server should set Quality.detailQual.oldData to true.', htmlDescription='

TODO: finish transitions

  • (see oscillatory): questionable -> invalid
  • questionable -> good
  • invalid -> good

Somehow: When operator sets 'blkEna' in a CDC to true (or when automatic function freezes communications), the server should set Quality.detailQual.oldData to true.

'], _containingPackage=ConstructedDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2102, uuid={048EE573-AFDD-4dd7-9AF5-11D2B0EC5B46}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='rangeC range validity detailQual +high-high questionable outOfRange +max +high-high good +hhLim +high good +hLim +normal good +lLim +low good +llLim +low-low good +min +low-low questionable outOfRange', htmlDescription='

rangeC range validity detailQual

high-high questionable outOfRange

max

high-high good

hhLim

high good

hLim

normal good

lLim

low good

llLim

low-low good

min

low-low questionable outOfRange

'], _containingPackage=ConstructedDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2104, uuid={33A3CF9B-3587-46f7-ABE2-EC231CA8A590}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='[ server decides is invalid ]', htmlDescription='

[ server decides is invalid ]

'], _containingPackage=ConstructedDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2105, uuid={4BC921B0-EB32-46bb-B58C-BABA12FB3919}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='[ server decides is questionable ]', htmlDescription='

[ server decides is questionable ]

'], _containingPackage=ConstructedDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2106, uuid={59D32E9F-0F12-4294-8C09-111E6652D60B}, since=null, name=ConstructedDAs : Quality.validity, alias=, stereotype=, visibility=public, txtDescription='ConstructedDAs : Quality.validity', htmlDescription='

ConstructedDAs : Quality.validity

'], _containingPackage=ConstructedDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2107, uuid={5CCAFF50-1F52-4703-A048-CF8E0D90B88F}, since=null, name=ConstructedDAs :Range configuration, alias=, stereotype=, visibility=public, txtDescription='ConstructedDAs : Range configuration', htmlDescription='

ConstructedDAs : Range configuration

'], _containingPackage=ConstructedDAs, _otherEndName=], SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2108, uuid={7F553FDB-F3EA-473e-823B-CAEB77B786F5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=ConstructedDAs, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=ConstructedDAs, _objData=UmlObjectData [id=233, uuid={464DD3CC-A65D-4fac-94C9-4A99ECC02510}, since=null, name=ConstructedDAs, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all constructed attribute classes with their meta-model superclasses.', htmlDescription='

This diagram shows all constructed attribute classes with their meta-model superclasses.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=4, _dependenciesAsTarget=1, _classes=8 +2024-09-08 15:11:36,094 [main] INFO PackageBuilder - processing package FCDAs (5) ... +2024-09-08 15:11:36,095 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=FCDAs, _objData=UmlObjectData [id=238, uuid={B97F330A-F926-4f40-9E70-74A8D9B4C7CD}, since=null, name=FCDAs, alias=, stereotype=, visibility=public, txtDescription='Shows meta-model types for functionally constrained DAs, and links to diagrams that group them per category (for easier model maintenance purposes only).', htmlDescription='

Shows meta-model types for functionally constrained DAs, and links to diagrams that group them per category (for easier model maintenance purposes only).

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:36,095 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_3::FCDAs, _objData=UmlObjectData [id=2941, uuid={B3EA1C0F-AF13-4b91-9725-55E231C1F103}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,095 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_3::FCDAs->IEC61850_7_3::ImplicitDAs, _objData=UmlObjectData [id=2945, uuid={FA78D59B-10C4-462d-BB8D-AF291F0DB4BC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,095 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_3::FCDAs->IEC61850_7_3::ConstructedDAs, _objData=UmlObjectData [id=2946, uuid={C39E7C1F-3EFB-476b-8296-6ED38A067033}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,096 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_3::FCDAs->IEC61850_7_2::BasicDAs, _objData=UmlObjectData [id=2947, uuid={34CA4A5E-1E27-47e9-BA6A-04938395F510}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,096 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_3::FCDAs->IEC61850_7_2::MetaModel, _objData=UmlObjectData [id=2948, uuid={2EB94D27-B372-4888-A920-88C823F08BBD}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,097 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2225, uuid={38462576-628F-455c-A4E1-CF71CEC5C013}, since=null, name=IEC61850 : DataModelExample, alias=, stereotype=, visibility=public, txtDescription='IEC61850 : DataModelExample', htmlDescription='

IEC61850 : DataModelExample

'], _containingPackage=FCDAs, _otherEndName=] +2024-09-08 15:11:36,097 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2226, uuid={6EB11409-AD95-49fc-9606-5F1D6C4F3CE4}, since=null, name=FCDAs :FCDAs-ST-OR, alias=, stereotype=, visibility=public, txtDescription='FCDAs : FCDAs-ST-OR', htmlDescription='

FCDAs : FCDAs-ST-OR

'], _containingPackage=FCDAs, _otherEndName=] +2024-09-08 15:11:36,097 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2227, uuid={8CFF212D-D163-4ed6-92FE-7CC414DB287E}, since=null, name=FCDAs :FCDAs-SV-BL, alias=, stereotype=, visibility=public, txtDescription='FCDAs : FCDAs-SV-BL', htmlDescription='

FCDAs : FCDAs-SV-BL

'], _containingPackage=FCDAs, _otherEndName=] +2024-09-08 15:11:36,097 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2228, uuid={AA244A47-7DD9-4915-9F09-4A0EC38AD1BB}, since=null, name=FCDAs :FCDAs-SP-SG-SE, alias=, stereotype=, visibility=public, txtDescription='FCDAs : FCDAs-SP-SG-SE', htmlDescription='

FCDAs : FCDAs-SP-SG-SE

'], _containingPackage=FCDAs, _otherEndName=] +2024-09-08 15:11:36,097 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2229, uuid={DE18AEAE-AFC9-40b0-B744-CD47FB2D193C}, since=null, name=FCDAs :FCDAs-MX, alias=, stereotype=, visibility=public, txtDescription='FCDAs : FCDAs-MX', htmlDescription='

FCDAs : FCDAs-MX

'], _containingPackage=FCDAs, _otherEndName=] +2024-09-08 15:11:36,097 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2230, uuid={F38238A8-E1FB-4d0d-8A6B-D9C28216CAB3}, since=null, name=FCDAs :FCDAs-CF-DC-EX, alias=, stereotype=, visibility=public, txtDescription='FCDAs : FCDAs-CF-DC-EX', htmlDescription='

FCDAs : FCDAs-CF-DC-EX

'], _containingPackage=FCDAs, _otherEndName=] +2024-09-08 15:11:36,097 [main] TRACE ClassBuilder - Class AnalogueValue_MX (3 in package FCDAs) +2024-09-08 15:11:36,097 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::AnalogueValue_MX, _objData=UmlObjectData [id=4148, uuid={FDD0542C-EDDF-4b7f-AF56-B928F6DD6505}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,098 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2159, uuid={F1E56107-55BC-4b64-8D96-C9D3A4FE1F57}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=AnalogueValue_MX, _otherEndName=?] +2024-09-08 15:11:36,098 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2171, uuid={310E7E62-BA83-4479-AC06-B8B54758BAFF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=AnalogueValue_MX, _otherEndName=?] +2024-09-08 15:11:36,098 [main] DEBUG ClassBuilder - Adding AnalogueValue_MX as subclass of FCDA_MX +2024-09-08 15:11:36,098 [main] TRACE ClassBuilder - read from EA: FCDAs::AnalogueValue_MX +2024-09-08 15:11:36,098 [main] TRACE ClassBuilder - Class AnalogueValue_MX_dchg (4 in package FCDAs) +2024-09-08 15:11:36,098 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::AnalogueValue_MX_dchg, _objData=UmlObjectData [id=4149, uuid={F527B9F4-F3F6-495e-820C-D82F97FAABF8}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,098 [main] DEBUG ClassBuilder - Adding AnalogueValue_MX_dchg as subclass of FCDA_MX_dchg +2024-09-08 15:11:36,098 [main] TRACE ClassBuilder - read from EA: FCDAs::AnalogueValue_MX_dchg +2024-09-08 15:11:36,098 [main] TRACE ClassBuilder - Class AnalogueValue_MX_dchg_dupd (5 in package FCDAs) +2024-09-08 15:11:36,098 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::AnalogueValue_MX_dchg_dupd, _objData=UmlObjectData [id=4150, uuid={35CFD056-5391-4884-AB18-91299F6FCBFB}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,099 [main] DEBUG ClassBuilder - Adding AnalogueValue_MX_dchg_dupd as subclass of FCDA_MX_dchg_dupd +2024-09-08 15:11:36,099 [main] TRACE ClassBuilder - read from EA: FCDAs::AnalogueValue_MX_dchg_dupd +2024-09-08 15:11:36,099 [main] TRACE ClassBuilder - Class BOOLEAN_BL (10 in package FCDAs) +2024-09-08 15:11:36,099 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::BOOLEAN_BL, _objData=UmlObjectData [id=4155, uuid={3695DD4C-AE46-467e-862D-F6B7D2805EE9}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,099 [main] DEBUG ClassBuilder - Adding BOOLEAN_BL as subclass of FCDA_BL +2024-09-08 15:11:36,099 [main] TRACE ClassBuilder - read from EA: FCDAs::BOOLEAN_BL +2024-09-08 15:11:36,099 [main] TRACE ClassBuilder - Class BOOLEAN_CF_dchg (11 in package FCDAs) +2024-09-08 15:11:36,099 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::BOOLEAN_CF_dchg, _objData=UmlObjectData [id=4156, uuid={D005BFC1-C9FF-4904-9176-3E49D541A4CE}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,099 [main] DEBUG ClassBuilder - Adding BOOLEAN_CF_dchg as subclass of FCDA_CF_dchg +2024-09-08 15:11:36,099 [main] TRACE ClassBuilder - read from EA: FCDAs::BOOLEAN_CF_dchg +2024-09-08 15:11:36,099 [main] TRACE ClassBuilder - Class BOOLEAN_MX_dchg (12 in package FCDAs) +2024-09-08 15:11:36,100 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::BOOLEAN_MX_dchg, _objData=UmlObjectData [id=4157, uuid={C48BB5A5-75F6-482b-B673-C2130F3A3343}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,100 [main] DEBUG ClassBuilder - Adding BOOLEAN_MX_dchg as subclass of FCDA_MX_dchg +2024-09-08 15:11:36,100 [main] TRACE ClassBuilder - read from EA: FCDAs::BOOLEAN_MX_dchg +2024-09-08 15:11:36,100 [main] TRACE ClassBuilder - Class BOOLEAN_OR_dchg (13 in package FCDAs) +2024-09-08 15:11:36,101 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::BOOLEAN_OR_dchg, _objData=UmlObjectData [id=4158, uuid={E52B552D-B1AD-48ee-8F84-581743CA0034}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,101 [main] DEBUG ClassBuilder - Adding BOOLEAN_OR_dchg as subclass of FCDA_OR_dchg +2024-09-08 15:11:36,101 [main] TRACE ClassBuilder - read from EA: FCDAs::BOOLEAN_OR_dchg +2024-09-08 15:11:36,101 [main] TRACE ClassBuilder - Class BOOLEAN_SE (14 in package FCDAs) +2024-09-08 15:11:36,101 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::BOOLEAN_SE, _objData=UmlObjectData [id=4159, uuid={EA1C486D-C490-4b0e-B0F8-803E519E584A}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,102 [main] DEBUG ClassBuilder - Adding BOOLEAN_SE as subclass of FCDA_SE +2024-09-08 15:11:36,102 [main] TRACE ClassBuilder - read from EA: FCDAs::BOOLEAN_SE +2024-09-08 15:11:36,102 [main] TRACE ClassBuilder - Class BOOLEAN_SG (15 in package FCDAs) +2024-09-08 15:11:36,102 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::BOOLEAN_SG, _objData=UmlObjectData [id=4160, uuid={F978D268-CA2C-4ff8-B7CD-CDD03C517BAE}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,102 [main] DEBUG ClassBuilder - Adding BOOLEAN_SG as subclass of FCDA_SG +2024-09-08 15:11:36,102 [main] TRACE ClassBuilder - read from EA: FCDAs::BOOLEAN_SG +2024-09-08 15:11:36,102 [main] TRACE ClassBuilder - Class BOOLEAN_SP_dchg (16 in package FCDAs) +2024-09-08 15:11:36,103 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::BOOLEAN_SP_dchg, _objData=UmlObjectData [id=4161, uuid={8DEC3BB4-1BED-4961-B836-457537D9227E}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,103 [main] DEBUG ClassBuilder - Adding BOOLEAN_SP_dchg as subclass of FCDA_SP_dchg +2024-09-08 15:11:36,103 [main] TRACE ClassBuilder - read from EA: FCDAs::BOOLEAN_SP_dchg +2024-09-08 15:11:36,103 [main] TRACE ClassBuilder - Class BOOLEAN_ST_dchg (17 in package FCDAs) +2024-09-08 15:11:36,103 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::BOOLEAN_ST_dchg, _objData=UmlObjectData [id=4162, uuid={7480B397-4199-4840-B073-D855605E4C7A}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,103 [main] DEBUG ClassBuilder - Adding BOOLEAN_ST_dchg as subclass of FCDA_ST_dchg +2024-09-08 15:11:36,104 [main] TRACE ClassBuilder - read from EA: FCDAs::BOOLEAN_ST_dchg +2024-09-08 15:11:36,104 [main] TRACE ClassBuilder - Class BOOLEAN_SV (18 in package FCDAs) +2024-09-08 15:11:36,104 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::BOOLEAN_SV, _objData=UmlObjectData [id=4163, uuid={13C32585-2DE2-4dad-8F00-5BDC2660E5D8}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,104 [main] DEBUG ClassBuilder - Adding BOOLEAN_SV as subclass of FCDA_SV +2024-09-08 15:11:36,104 [main] TRACE ClassBuilder - read from EA: FCDAs::BOOLEAN_SV +2024-09-08 15:11:36,104 [main] TRACE ClassBuilder - Class DpStatus_ST_dchg (30 in package FCDAs) +2024-09-08 15:11:36,104 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::DpStatus_ST_dchg, _objData=UmlObjectData [id=4175, uuid={6669EA33-E870-48c7-9A70-675DF65FCDE1}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1759, _eaTypeName=DpStatus, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,105 [main] DEBUG ClassBuilder - Adding DpStatus_ST_dchg as subclass of PackedEnumFCDA_SP_dchg +2024-09-08 15:11:36,105 [main] TRACE ClassBuilder - read from EA: FCDAs::DpStatus_ST_dchg +2024-09-08 15:11:36,105 [main] TRACE ClassBuilder - Class DpStatus_SV (31 in package FCDAs) +2024-09-08 15:11:36,105 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::DpStatus_SV, _objData=UmlObjectData [id=4176, uuid={0F2878FA-ABC8-4aab-91D7-41F3D0B45817}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1759, _eaTypeName=DpStatus, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,105 [main] DEBUG ClassBuilder - Adding DpStatus_SV as subclass of PackedEnumFCDA_SV +2024-09-08 15:11:36,105 [main] TRACE ClassBuilder - read from EA: FCDAs::DpStatus_SV +2024-09-08 15:11:36,105 [main] TRACE ClassBuilder - Class EnumDA_CF_dchg (32 in package FCDAs) +2024-09-08 15:11:36,105 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::EnumDA_CF_dchg, _objData=UmlObjectData [id=4177, uuid={AB3915C1-C27C-48ea-B3F9-A9FDE30FAEB0}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1855, _eaTypeName=EnumDA, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,105 [main] DEBUG ClassBuilder - Adding EnumDA_CF_dchg as subclass of EnumFCDA_CF_dchg +2024-09-08 15:11:36,105 [main] TRACE ClassBuilder - read from EA: FCDAs::EnumDA_CF_dchg +2024-09-08 15:11:36,105 [main] TRACE ClassBuilder - Class EnumDA_ST_dchg (38 in package FCDAs) +2024-09-08 15:11:36,105 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::EnumDA_ST_dchg, _objData=UmlObjectData [id=4181, uuid={FDBA0552-772A-4e56-B666-9B4EADE4572B}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1855, _eaTypeName=EnumDA, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,106 [main] DEBUG ClassBuilder - Adding EnumDA_ST_dchg as subclass of EnumFCDA_ST_dchg +2024-09-08 15:11:36,106 [main] TRACE ClassBuilder - read from EA: FCDAs::EnumDA_ST_dchg +2024-09-08 15:11:36,106 [main] TRACE ClassBuilder - Class EnumDA_ST_dchg_dupd (39 in package FCDAs) +2024-09-08 15:11:36,106 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::EnumDA_ST_dchg_dupd, _objData=UmlObjectData [id=4182, uuid={A26C4B75-BDBC-47d7-8F84-1AEB40536B37}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1855, _eaTypeName=EnumDA, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,107 [main] DEBUG ClassBuilder - Adding EnumDA_ST_dchg_dupd as subclass of EnumFCDA_ST_dchg_dupd +2024-09-08 15:11:36,107 [main] TRACE ClassBuilder - read from EA: FCDAs::EnumDA_ST_dchg_dupd +2024-09-08 15:11:36,107 [main] TRACE ClassBuilder - Class EnumDA_SV (40 in package FCDAs) +2024-09-08 15:11:36,107 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::EnumDA_SV, _objData=UmlObjectData [id=4183, uuid={85FBD660-4ECF-4fe6-A3CB-7CE93AD92682}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1855, _eaTypeName=EnumDA, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,107 [main] DEBUG ClassBuilder - Adding EnumDA_SV as subclass of EnumFCDA_SV +2024-09-08 15:11:36,107 [main] TRACE ClassBuilder - read from EA: FCDAs::EnumDA_SV +2024-09-08 15:11:36,107 [main] TRACE ClassBuilder - Class INT16U_CF (49 in package FCDAs) +2024-09-08 15:11:36,107 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::INT16U_CF, _objData=UmlObjectData [id=4192, uuid={D557D453-45C5-4562-97A4-DF8E6C3ABE03}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1743, _eaTypeName=INT16U, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,108 [main] DEBUG ClassBuilder - Adding INT16U_CF as subclass of FCDA_CF +2024-09-08 15:11:36,108 [main] TRACE ClassBuilder - read from EA: FCDAs::INT16U_CF +2024-09-08 15:11:36,108 [main] TRACE ClassBuilder - Class INT16U_CF_dchg (50 in package FCDAs) +2024-09-08 15:11:36,108 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::INT16U_CF_dchg, _objData=UmlObjectData [id=4193, uuid={CF5B7211-78ED-4a54-943A-4C6076784FAA}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1743, _eaTypeName=INT16U, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,108 [main] DEBUG ClassBuilder - Adding INT16U_CF_dchg as subclass of FCDA_CF_dchg +2024-09-08 15:11:36,108 [main] TRACE ClassBuilder - read from EA: FCDAs::INT16U_CF_dchg +2024-09-08 15:11:36,108 [main] TRACE ClassBuilder - Class INT32U_CF_dchg (55 in package FCDAs) +2024-09-08 15:11:36,108 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::INT32U_CF_dchg, _objData=UmlObjectData [id=4198, uuid={B6014F46-BB76-4b26-B95B-414DEBFE5627}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1746, _eaTypeName=INT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,110 [main] DEBUG ClassBuilder - Adding INT32U_CF_dchg as subclass of FCDA_CF_dchg +2024-09-08 15:11:36,110 [main] TRACE ClassBuilder - read from EA: FCDAs::INT32U_CF_dchg +2024-09-08 15:11:36,110 [main] TRACE ClassBuilder - Class INT32_CF_dchg (57 in package FCDAs) +2024-09-08 15:11:36,110 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::INT32_CF_dchg, _objData=UmlObjectData [id=4200, uuid={7A8322EF-35B6-45e2-B29B-24495242697D}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1745, _eaTypeName=INT32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,110 [main] DEBUG ClassBuilder - Adding INT32_CF_dchg as subclass of FCDA_CF_dchg +2024-09-08 15:11:36,110 [main] TRACE ClassBuilder - read from EA: FCDAs::INT32_CF_dchg +2024-09-08 15:11:36,110 [main] TRACE ClassBuilder - Class INT32_ST_dchg (61 in package FCDAs) +2024-09-08 15:11:36,110 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::INT32_ST_dchg, _objData=UmlObjectData [id=4204, uuid={BD683E05-ABAE-402d-B588-081B1F3BA2FB}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1745, _eaTypeName=INT32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,111 [main] DEBUG ClassBuilder - Adding INT32_ST_dchg as subclass of FCDA_ST_dchg +2024-09-08 15:11:36,111 [main] TRACE ClassBuilder - read from EA: FCDAs::INT32_ST_dchg +2024-09-08 15:11:36,111 [main] TRACE ClassBuilder - Class INT32_ST_dchg_dupd (62 in package FCDAs) +2024-09-08 15:11:36,111 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::INT32_ST_dchg_dupd, _objData=UmlObjectData [id=4205, uuid={84EA5D4B-9E4B-4a73-A3A5-9E8D42A60F3C}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1745, _eaTypeName=INT32, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,111 [main] DEBUG ClassBuilder - Adding INT32_ST_dchg_dupd as subclass of FCDA_ST_dchg_dupd +2024-09-08 15:11:36,111 [main] TRACE ClassBuilder - read from EA: FCDAs::INT32_ST_dchg_dupd +2024-09-08 15:11:36,111 [main] TRACE ClassBuilder - Class PhaseAngleReference_CF_dchg (73 in package FCDAs) +2024-09-08 15:11:36,111 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::PhaseAngleReference_CF_dchg, _objData=UmlObjectData [id=4216, uuid={7B9C230D-AF50-4613-AFD8-CA5D41088526}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2065, _eaTypeName=PhaseAngleReference, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,111 [main] DEBUG ClassBuilder - Adding PhaseAngleReference_CF_dchg as subclass of EnumFCDA_CF_dchg +2024-09-08 15:11:36,111 [main] TRACE ClassBuilder - read from EA: FCDAs::PhaseAngleReference_CF_dchg +2024-09-08 15:11:36,111 [main] TRACE ClassBuilder - Class PhaseFaultDirection_ST_dchg (74 in package FCDAs) +2024-09-08 15:11:36,111 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::PhaseFaultDirection_ST_dchg, _objData=UmlObjectData [id=4217, uuid={FEA43715-0A9A-4812-A093-3FAD2A6B464D}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2066, _eaTypeName=PhaseFaultDirection, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,112 [main] DEBUG ClassBuilder - Adding PhaseFaultDirection_ST_dchg as subclass of EnumFCDA_ST_dchg +2024-09-08 15:11:36,112 [main] TRACE ClassBuilder - read from EA: FCDAs::PhaseFaultDirection_ST_dchg +2024-09-08 15:11:36,112 [main] TRACE ClassBuilder - Class Point_DC (76 in package FCDAs) +2024-09-08 15:11:36,112 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::Point_DC, _objData=UmlObjectData [id=4219, uuid={EFCD6ECB-36A0-4997-82B8-301C6C666369}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2098, _eaTypeName=Point, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,112 [main] DEBUG ClassBuilder - Adding Point_DC as subclass of FCDA_DC +2024-09-08 15:11:36,112 [main] TRACE ClassBuilder - read from EA: FCDAs::Point_DC +2024-09-08 15:11:36,112 [main] TRACE ClassBuilder - Class Point_SE (77 in package FCDAs) +2024-09-08 15:11:36,112 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::Point_SE, _objData=UmlObjectData [id=4220, uuid={C756E7B6-1F5F-4ead-B882-CE7EDB83001D}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2098, _eaTypeName=Point, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,112 [main] DEBUG ClassBuilder - Adding Point_SE as subclass of FCDA_SE +2024-09-08 15:11:36,112 [main] TRACE ClassBuilder - read from EA: FCDAs::Point_SE +2024-09-08 15:11:36,112 [main] TRACE ClassBuilder - Class Point_SG (78 in package FCDAs) +2024-09-08 15:11:36,112 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::Point_SG, _objData=UmlObjectData [id=4221, uuid={871B23C7-8CF2-43a0-A9FE-4627CB0BFA2D}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2098, _eaTypeName=Point, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,112 [main] DEBUG ClassBuilder - Adding Point_SG as subclass of FCDA_SG +2024-09-08 15:11:36,112 [main] TRACE ClassBuilder - read from EA: FCDAs::Point_SG +2024-09-08 15:11:36,113 [main] TRACE ClassBuilder - Class Point_SP (79 in package FCDAs) +2024-09-08 15:11:36,113 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::Point_SP, _objData=UmlObjectData [id=4222, uuid={A9FC2C2B-E6E7-4210-80D8-B786506D9BCF}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2098, _eaTypeName=Point, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,113 [main] DEBUG ClassBuilder - Adding Point_SP as subclass of FCDA_SP +2024-09-08 15:11:36,113 [main] TRACE ClassBuilder - read from EA: FCDAs::Point_SP +2024-09-08 15:11:36,113 [main] TRACE ClassBuilder - Class Quality_MX_qchg (81 in package FCDAs) +2024-09-08 15:11:36,113 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::Quality_MX_qchg, _objData=UmlObjectData [id=4224, uuid={909716F1-245A-42ae-9D75-E906E4300337}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2080, _eaTypeName=Quality, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,113 [main] DEBUG ClassBuilder - Adding Quality_MX_qchg as subclass of FCDA_MX_qchg +2024-09-08 15:11:36,113 [main] TRACE ClassBuilder - read from EA: FCDAs::Quality_MX_qchg +2024-09-08 15:11:36,113 [main] TRACE ClassBuilder - Class Quality_ST_qchg (82 in package FCDAs) +2024-09-08 15:11:36,113 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::Quality_ST_qchg, _objData=UmlObjectData [id=4225, uuid={63B2543A-C5CB-4e42-AE3C-D89A5D6092F8}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2080, _eaTypeName=Quality, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,113 [main] DEBUG ClassBuilder - Adding Quality_ST_qchg as subclass of FCDA_ST_qchg +2024-09-08 15:11:36,113 [main] TRACE ClassBuilder - read from EA: FCDAs::Quality_ST_qchg +2024-09-08 15:11:36,113 [main] TRACE ClassBuilder - Class Quality_SV (83 in package FCDAs) +2024-09-08 15:11:36,113 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::Quality_SV, _objData=UmlObjectData [id=4226, uuid={25019ADF-C815-49c4-A33A-932B7EC41FD5}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2080, _eaTypeName=Quality, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,114 [main] DEBUG ClassBuilder - Adding Quality_SV as subclass of FCDA_SV +2024-09-08 15:11:36,114 [main] TRACE ClassBuilder - read from EA: FCDAs::Quality_SV +2024-09-08 15:11:36,114 [main] TRACE ClassBuilder - Class RangeConfig_CF_dchg (84 in package FCDAs) +2024-09-08 15:11:36,114 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::RangeConfig_CF_dchg, _objData=UmlObjectData [id=4227, uuid={7DC0C70D-A279-420a-A4C9-8EC142118EE0}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2091, _eaTypeName=RangeConfig, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,114 [main] DEBUG ClassBuilder - Adding RangeConfig_CF_dchg as subclass of FCDA_CF_dchg +2024-09-08 15:11:36,114 [main] TRACE ClassBuilder - read from EA: FCDAs::RangeConfig_CF_dchg +2024-09-08 15:11:36,114 [main] TRACE ClassBuilder - Class TimeStamp_ST (96 in package FCDAs) +2024-09-08 15:11:36,114 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::TimeStamp_ST, _objData=UmlObjectData [id=4239, uuid={F793BE16-86C2-4d94-9076-25682F5C5800}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1756, _eaTypeName=TimeStamp, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,114 [main] DEBUG ClassBuilder - Adding TimeStamp_ST as subclass of FCDA_ST +2024-09-08 15:11:36,114 [main] TRACE ClassBuilder - read from EA: FCDAs::TimeStamp_ST +2024-09-08 15:11:36,114 [main] TRACE ClassBuilder - Class UNICODE_STRING255_DC (97 in package FCDAs) +2024-09-08 15:11:36,114 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::UNICODE_STRING255_DC, _objData=UmlObjectData [id=4240, uuid={6753F868-EDDC-4b85-BB22-F0505BC5964F}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1751, _eaTypeName=UNICODE_STRING255, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,115 [main] DEBUG ClassBuilder - Adding UNICODE_STRING255_DC as subclass of FCDA_DC +2024-09-08 15:11:36,115 [main] TRACE ClassBuilder - read from EA: FCDAs::UNICODE_STRING255_DC +2024-09-08 15:11:36,115 [main] TRACE ClassBuilder - Class VISIBLE_STRING255_EX (107 in package FCDAs) +2024-09-08 15:11:36,115 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=FCDAs::VISIBLE_STRING255_EX, _objData=UmlObjectData [id=4250, uuid={27C9FF27-9CA7-4829-BDDC-00EC8B17AA1F}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1752, _eaTypeName=VISIBLE_STRING255, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,115 [main] DEBUG ClassBuilder - Adding VISIBLE_STRING255_EX as subclass of FCDA_EX +2024-09-08 15:11:36,115 [main] TRACE ClassBuilder - read from EA: FCDAs::VISIBLE_STRING255_EX +2024-09-08 15:11:36,116 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_3, _depth=2, _eaElementID=2112, _objData=UmlObjectData [id=118, uuid={D3FD84BB-3702-4f8a-896F-5CA8D1A0B5DB}, since=null, name=FCDAs, alias=Functionally constrained data attributes, stereotype=, visibility=public, txtDescription='Contains functionally constrained DAs, used as types for attributes of CDCs. They consist of combinations of DAs with functional constraints and trigger options (where applicable). These types "shield" CDCs and LNs from all the complexity of the IEC61850 data type system.', htmlDescription='

Contains functionally constrained DAs, used as types for attributes of CDCs. They consist of combinations of DAs with functional constraints and trigger options (where applicable). These types "shield" CDCs and LNs from all the complexity of the IEC61850 data type system.

'], _modelId=58, _selfDependent=false, 6_skippedEaItems=[SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2225, uuid={38462576-628F-455c-A4E1-CF71CEC5C013}, since=null, name=IEC61850 : DataModelExample, alias=, stereotype=, visibility=public, txtDescription='IEC61850 : DataModelExample', htmlDescription='

IEC61850 : DataModelExample

'], _containingPackage=FCDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2226, uuid={6EB11409-AD95-49fc-9606-5F1D6C4F3CE4}, since=null, name=FCDAs :FCDAs-ST-OR, alias=, stereotype=, visibility=public, txtDescription='FCDAs : FCDAs-ST-OR', htmlDescription='

FCDAs : FCDAs-ST-OR

'], _containingPackage=FCDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2227, uuid={8CFF212D-D163-4ed6-92FE-7CC414DB287E}, since=null, name=FCDAs :FCDAs-SV-BL, alias=, stereotype=, visibility=public, txtDescription='FCDAs : FCDAs-SV-BL', htmlDescription='

FCDAs : FCDAs-SV-BL

'], _containingPackage=FCDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2228, uuid={AA244A47-7DD9-4915-9F09-4A0EC38AD1BB}, since=null, name=FCDAs :FCDAs-SP-SG-SE, alias=, stereotype=, visibility=public, txtDescription='FCDAs : FCDAs-SP-SG-SE', htmlDescription='

FCDAs : FCDAs-SP-SG-SE

'], _containingPackage=FCDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2229, uuid={DE18AEAE-AFC9-40b0-B744-CD47FB2D193C}, since=null, name=FCDAs :FCDAs-MX, alias=, stereotype=, visibility=public, txtDescription='FCDAs : FCDAs-MX', htmlDescription='

FCDAs : FCDAs-MX

'], _containingPackage=FCDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2230, uuid={F38238A8-E1FB-4d0d-8A6B-D9C28216CAB3}, since=null, name=FCDAs :FCDAs-CF-DC-EX, alias=, stereotype=, visibility=public, txtDescription='FCDAs : FCDAs-CF-DC-EX', htmlDescription='

FCDAs : FCDAs-CF-DC-EX

'], _containingPackage=FCDAs, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=FCDAs, _objData=UmlObjectData [id=238, uuid={B97F330A-F926-4f40-9E70-74A8D9B4C7CD}, since=null, name=FCDAs, alias=, stereotype=, visibility=public, txtDescription='Shows meta-model types for functionally constrained DAs, and links to diagrams that group them per category (for easier model maintenance purposes only).', htmlDescription='

Shows meta-model types for functionally constrained DAs, and links to diagrams that group them per category (for easier model maintenance purposes only).

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=4, _dependenciesAsTarget=1, _classes=37 +2024-09-08 15:11:36,116 [main] INFO PackageBuilder - processing package CommonDataClasses (6) ... +2024-09-08 15:11:36,116 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=CommonDataClasses, _objData=UmlObjectData [id=244, uuid={9116C46B-DD92-40ff-9928-FB3E309093AC}, since=null, name=CommonDataClasses, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all the common data class groups, with their contents. +Classes displayed in italic and ending with "CDC" are abstract common data classes that allow to avoid duplication in definition of attributes used by multiple concrete common data classes. Abstract common data classes are never instantiated; Their attributes are inheritied by concrete common data classes which are instantiable.', htmlDescription='

This diagram shows all the common data class groups, with their contents.

Classes displayed in italic and ending with "CDC" are abstract common data classes that allow to avoid duplication in definition of attributes used by multiple concrete common data classes. Abstract common data classes are never instantiated; Their attributes are inheritied by concrete common data classes which are instantiable.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:36,116 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=CommonDataClasses, _objData=UmlObjectData [id=245, uuid={31D2AD7A-7057-4e53-9C03-88B813B80849}, since=null, name=CDCRelationToACSI, alias=, stereotype=, visibility=public, txtDescription='All common data classes defined in this document inherit their structure from the abstract CDC class defined in IEC 61850-7-2, or more precisely, from one of its abstract subclasses (PrimitiveCDC or ComposedCDC). Common data classes (CDC-s) are used as types for data objects of logical nodes, and are composed of data attributes, which are of type FCDA (functionally constrained data attribute), and some are CDCs themselves. The generic structure of common data classes defined in IEC61850-7-2 comprises the attributes (e.g., name and reference, functional constraints and trigger options), and the services depending on a functional constraint. Currently, they are all modelled with operations (services). +IEC 61850-7-3 adds concrete data attributes, starting with common ones defined in abstract classes BasePrimitiveCDC and BaseComposedCDC, in order to complete the definition of concrete common data classes. Having this kind of definition at one place avoids error-prone repeating of these common attributes within the definition of every concrete common data class. +The diagram shows also the attributes per type of common data class defined in this document. Optional attributes have multiplicity [0..1]. Some common data classes define conditions on one or more of their attributes. In this diagram, this is the case for both BaseComposedCDC and BasePrimitiveCDC, with conditions "AC_DLNDA_M" and "AC_DLN_M"; The definition of condition is available for each data object involved in the condition and refers to Presence conditions introduced in IEC61850-7-3, Clause 5.', htmlDescription='

All common data classes defined in this document inherit their structure from the abstract CDC class defined in IEC 61850-7-2, or more precisely, from one of its abstract subclasses (PrimitiveCDC or ComposedCDC). Common data classes (CDC-s) are used as types for data objects of logical nodes, and are composed of data attributes, which are of type FCDA (functionally constrained data attribute), and some are CDCs themselves. The generic structure of common data classes defined in IEC61850-7-2 comprises the attributes (e.g., name and reference, functional constraints and trigger options), and the services depending on a functional constraint. Currently, they are all modelled with operations (services).

IEC 61850-7-3 adds concrete data attributes, starting with common ones defined in abstract classes BasePrimitiveCDC and BaseComposedCDC, in order to complete the definition of concrete common data classes. Having this kind of definition at one place avoids error-prone repeating of these common attributes within the definition of every concrete common data class.

The diagram shows also the attributes per type of common data class defined in this document. Optional attributes have multiplicity [0..1]. Some common data classes define conditions on one or more of their attributes. In this diagram, this is the case for both BaseComposedCDC and BasePrimitiveCDC, with conditions "AC_DLNDA_M" and "AC_DLN_M"; The definition of condition is available for each data object involved in the condition and refers to Presence conditions introduced in IEC61850-7-3, Clause 5.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:36,118 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_3::CommonDataClasses, _objData=UmlObjectData [id=2550, uuid={66DD71D8-83CD-4fb8-A5D8-44AE4E4C3795}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,118 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_3::CommonDataClasses, _objData=UmlObjectData [id=2557, uuid={95185C57-90F7-4989-93BB-36A01651B273}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,118 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_3::CommonDataClasses->IEC61850_7_2::MetaModel, _objData=UmlObjectData [id=2940, uuid={E5F4FF55-D88D-4216-BB8C-AFDA680AADE9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,118 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_3::CommonDataClasses->IEC61850_7_3::FCDAs, _objData=UmlObjectData [id=2941, uuid={B3EA1C0F-AF13-4b91-9725-55E231C1F103}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,118 [main] DEBUG PackageBuilder - Updated target of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_2::CDCServiceTracking->IEC61850_7_3::CommonDataClasses, _objData=UmlObjectData [id=3105, uuid={1ACFCE23-05F0-4f6f-A7FF-F1999DF5DEBB}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,119 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2239, uuid={264C9AAE-B7F6-46b0-8EEE-F73431C6AD63}, since=null, name=CommonDataClasses : Concept of substitution, alias=, stereotype=, visibility=public, txtDescription='SubstitutionCDC : Concept of substitution', htmlDescription='

SubstitutionCDC : Concept of substitution

'], _containingPackage=CommonDataClasses, _otherEndName=] +2024-09-08 15:11:36,119 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2241, uuid={AD3492F7-906E-41fa-A99E-09F725CB2769}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=CommonDataClasses, _otherEndName=] +2024-09-08 15:11:36,119 [main] TRACE ClassBuilder - Class BasePrimitiveCDC (1 in package CommonDataClasses) +2024-09-08 15:11:36,119 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CommonDataClasses::BasePrimitiveCDC, _objData=UmlObjectData [id=4259, uuid={70157B11-247A-45cc-805C-2311A2402464}, since=null, name=dU, alias=, stereotype=, visibility=public, txtDescription='Textual description of the data using unicode characters. In case of LPL, the description refers to the logical node.', htmlDescription='

Textual description of the data using unicode characters. In case of LPL, the description refers to the logical node.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2207, _eaTypeName=UNICODE_STRING255_DC, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,119 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CommonDataClasses::BasePrimitiveCDC, _objData=UmlObjectData [id=4260, uuid={CB9D22B8-9916-44d7-AB74-A7E8767612D1}, since=null, name=cdcNs, alias=, stereotype=, visibility=public, txtDescription='Common data class name space. Scope of the standard specified with the attribute is CDC definition. For details see IEC 61850-7-1.', htmlDescription='

Common data class name space. Scope of the standard specified with the attribute is CDC definition. For details see IEC 61850-7-1.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2217, _eaTypeName=VISIBLE_STRING255_EX, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,119 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2163, uuid={A6D40A7D-0B29-4624-B705-175D0AA64477}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=BasePrimitiveCDC, _otherEndName=?] +2024-09-08 15:11:36,119 [main] DEBUG ClassBuilder - Adding BasePrimitiveCDC as subclass of PrimitiveCDC +2024-09-08 15:11:36,119 [main] DEBUG ClassBuilder - Adding BasePrimitiveCDC as superclass of CST +2024-09-08 15:11:36,119 [main] TRACE ClassBuilder - read from EA: CommonDataClasses::BasePrimitiveCDC +2024-09-08 15:11:36,120 [main] TRACE ClassBuilder - Class BaseComposedCDC (2 in package CommonDataClasses) +2024-09-08 15:11:36,120 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CommonDataClasses::BaseComposedCDC, _objData=UmlObjectData [id=4264, uuid={DA02A7F1-6B04-48c6-9571-CD453B3D1CED}, since=null, name=dU, alias=, stereotype=, visibility=public, txtDescription='See 'BasePrimitiveCDC.dU'.', htmlDescription='

See 'BasePrimitiveCDC.dU'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2207, _eaTypeName=UNICODE_STRING255_DC, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,120 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CommonDataClasses::BaseComposedCDC, _objData=UmlObjectData [id=4265, uuid={E299B631-8163-4dbd-B5B7-4C83B2303E19}, since=null, name=cdcNs, alias=, stereotype=, visibility=public, txtDescription='See 'BasePrimitiveCDC.cdcNs'.', htmlDescription='

See 'BasePrimitiveCDC.cdcNs'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2217, _eaTypeName=VISIBLE_STRING255_EX, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,120 [main] DEBUG ClassBuilder - Adding BaseComposedCDC as subclass of ComposedCDC +2024-09-08 15:11:36,120 [main] TRACE ClassBuilder - read from EA: CommonDataClasses::BaseComposedCDC +2024-09-08 15:11:36,120 [main] TRACE ClassBuilder - Class SubstitutionCDC (3 in package CommonDataClasses) +2024-09-08 15:11:36,121 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [, _containingClass=SubstitutionCDC, _objData=UmlObjectData [id=246, uuid={314D3B8E-96FD-4400-8A62-2BE1FD745BBA}, since=null, name=Concept of substitution, alias=, stereotype=, visibility=public, txtDescription='This diagram illustrates the concept of substitution. Usually, input from the process or the result of the calculation from a function provides the value of a DataAttribute. In that case, 'CDC.q.source'='process'. In case of substitution, the value of a DataAttribute may be provided by an operator making use of a client, and in that case 'CDC.q.source'='substituted'. This selection of the source of the value (substitution value or process value) shall be controlled by the service SetDataValue ('SubstitutionCDC.subEna'=true) to substitute or SetDataValue ('SubstitutionCDC.subEna'=false) to unsubstitute. The service SetDataValue shall also be used to set the substituted value ('CDC.subVal'=value-for-substitution). There may be cases where a local automatic function disables substitution, for example, if blocking of information exchange is disabled or communication is no longer interrupted. +It is the responsibility of the client application, in particular in the case of multiple attributes to be substituted, to set all relevant substitution values ('{SPS,DPS,INS,ENS,SPC,DPC,INC,ENC}.subVal', 'MV.subMag', 'CMV.subCVal', 'SubstitutionCDC.subQ', 'SubstitutionCDC.subID') before enabling substitution ('SubstitutionCDC.subEna'=true). While substitution is enabled, changing of all substitution-related atttibutes is allowed but it is the responsibility of the implementation to avoid inconsistent transient value combination.', htmlDescription='

This diagram illustrates the concept of substitution. Usually, input from the process or the result of the calculation from a function provides the value of a DataAttribute. In that case, 'CDC.q.source'='process'. In case of substitution, the value of a DataAttribute may be provided by an operator making use of a client, and in that case 'CDC.q.source'='substituted'. This selection of the source of the value (substitution value or process value) shall be controlled by the service SetDataValue ('SubstitutionCDC.subEna'=true) to substitute or SetDataValue ('SubstitutionCDC.subEna'=false) to unsubstitute. The service SetDataValue shall also be used to set the substituted value ('CDC.subVal'=value-for-substitution). There may be cases where a local automatic function disables substitution, for example, if blocking of information exchange is disabled or communication is no longer interrupted.

It is the responsibility of the client application, in particular in the case of multiple attributes to be substituted, to set all relevant substitution values ('{SPS,DPS,INS,ENS,SPC,DPC,INC,ENC}.subVal', 'MV.subMag', 'CMV.subCVal', 'SubstitutionCDC.subQ', 'SubstitutionCDC.subID') before enabling substitution ('SubstitutionCDC.subEna'=true). While substitution is enabled, changing of all substitution-related atttibutes is allowed but it is the responsibility of the implementation to avoid inconsistent transient value combination.

'], _portrait=true, _kind=CUSTOM] +2024-09-08 15:11:36,121 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2237, uuid={7785102C-64D8-4109-AAE2-DB0C7732A6F0}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=SubstitutionCDC, _otherEndName=] +2024-09-08 15:11:36,121 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CommonDataClasses::SubstitutionCDC, _objData=UmlObjectData [id=4268, uuid={079F2530-74C1-408f-90FE-5292130BB10D}, since=null, name=subEna, alias=, stereotype=, visibility=public, txtDescription='Used to enable and disable substitution. If 'subEna'=true, the main data value and quality shall always be set to the same value as the attributes used to store the substitution data value and quality, as follows: +- for SPS, DPS, INS, ENS, SPC, DPC, INC, ENC: 'stVal' to 'subVal', 'q' to 'subQ'; +- for MV: 'instMag' to 'subMag', 'q' to 'subQ'; +- for CMV: 'instCVal' to 'subCVal', 'q' to 'subQ'; +- for BSC, ISC: 'valWTr' to 'subVal, 'q' to 'subQ'; and, +- for APC, BAC: 'mxVal' to 'subVal; 'q' to 'subQ'. +Otherwise, the data value shall be based on the process value.', htmlDescription='

Used to enable and disable substitution. If 'subEna'=true, the main data value and quality shall always be set to the same value as the attributes used to store the substitution data value and quality, as follows:

  • for SPS, DPS, INS, ENS, SPC, DPC, INC, ENC: 'stVal' to 'subVal', 'q' to 'subQ';
  • for MV: 'instMag' to 'subMag', 'q' to 'subQ';
  • for CMV: 'instCVal' to 'subCVal', 'q' to 'subQ';
  • for BSC, ISC: 'valWTr' to 'subVal, 'q' to 'subQ'; and,
  • for APC, BAC: 'mxVal' to 'subVal; 'q' to 'subQ'.

Otherwise, the data value shall be based on the process value.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2130, _eaTypeName=BOOLEAN_SV, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,121 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CommonDataClasses::SubstitutionCDC, _objData=UmlObjectData [id=4269, uuid={CC8123A6-0C41-47f6-B66F-FCB538FAC8C5}, since=null, name=subQ, alias=, stereotype=, visibility=public, txtDescription='Value used to substitute 'q'.', htmlDescription='

Value used to substitute 'q'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2193, _eaTypeName=Quality_SV, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,121 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CommonDataClasses::SubstitutionCDC, _objData=UmlObjectData [id=4271, uuid={D0484592-24B0-4f23-BBA1-47AB63EDEB24}, since=null, name=blkEna, alias=, stereotype=, visibility=public, txtDescription='If true, 'q.operatorBlocked'=true, and the process value is no longer updated.', htmlDescription='

If true, 'q.operatorBlocked'=true, and the process value is no longer updated.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2122, _eaTypeName=BOOLEAN_BL, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,121 [main] DEBUG ClassBuilder - Adding SubstitutionCDC as subclass of BasePrimitiveCDC +2024-09-08 15:11:36,121 [main] TRACE ClassBuilder - read from EA: CommonDataClasses::SubstitutionCDC +2024-09-08 15:11:36,121 [main] INFO PackageBuilder - processing package CDCStatusInfo (3) ... +2024-09-08 15:11:36,122 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=CDCStatusInfo, _objData=UmlObjectData [id=248, uuid={8E8D0A5B-4D29-400f-A3AF-1184FB57CC93}, since=null, name=CDCStatusInfo, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all status information CDCs defined in the standard with supertypes that factor their common attributes.', htmlDescription='

This diagram shows all status information CDCs defined in the standard with supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:36,123 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2259, uuid={58471C21-0D37-4d5e-B74F-BD101D8729FC}, since=null, name=CDCStatusInfo : Two-dimensional histogram, alias=, stereotype=, visibility=public, txtDescription='CDCStatusInfo : Two-dimensional histogram', htmlDescription='

CDCStatusInfo : Two-dimensional histogram

'], _containingPackage=CDCStatusInfo, _otherEndName=] +2024-09-08 15:11:36,123 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2260, uuid={698239AD-7E8C-42c8-A1EB-0DBE752F57EC}, since=null, name=CDCStatusInfo : One-dimensional histogram, alias=, stereotype=, visibility=public, txtDescription='CDCStatusInfo : One-dimensional histogram', htmlDescription='

CDCStatusInfo : One-dimensional histogram

'], _containingPackage=CDCStatusInfo, _otherEndName=] +2024-09-08 15:11:36,123 [main] TRACE ClassBuilder - Class DPS (1 in package CDCStatusInfo) +2024-09-08 15:11:36,124 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::DPS, _objData=UmlObjectData [id=4276, uuid={5BAF192B-559A-4c20-9FF4-15FDE99E17C8}, since=null, name=stVal, alias=, stereotype=, visibility=public, txtDescription='Status data value.', htmlDescription='

Status data value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2142, _eaTypeName=DpStatus_ST_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,124 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::DPS, _objData=UmlObjectData [id=4277, uuid={4442F743-451D-4ac2-8362-F2C586E6ACFC}, since=null, name=q, alias=, stereotype=, visibility=public, txtDescription='Quality of the data value 'stVal'.', htmlDescription='

Quality of the data value 'stVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2192, _eaTypeName=Quality_ST_qchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,124 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::DPS, _objData=UmlObjectData [id=4278, uuid={18394E45-54E3-4a63-85BB-63611B632E39}, since=null, name=t, alias=, stereotype=, visibility=public, txtDescription='Timestamp of the last change of the data value 'stVal' or quality 'q'.', htmlDescription='

Timestamp of the last change of the data value 'stVal' or quality 'q'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2206, _eaTypeName=TimeStamp_ST, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,124 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::DPS, _objData=UmlObjectData [id=4279, uuid={F3D27F61-E9C4-4fc2-8AA6-662D6F85C26F}, since=null, name=subVal, alias=, stereotype=, visibility=public, txtDescription='Value used to substitute 'stVal'.', htmlDescription='

Value used to substitute 'stVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2143, _eaTypeName=DpStatus_SV, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2_taggedValues{moveAfter=wrongsubEna, secondTagName=secondTagValue}] +2024-09-08 15:11:36,124 [main] DEBUG ClassBuilder - Adding DPS as subclass of SubstitutionCDC +2024-09-08 15:11:36,125 [main] TRACE ClassBuilder - read from EA: CDCStatusInfo::DPS +2024-09-08 15:11:36,125 [main] TRACE ClassBuilder - Class ENS (2 in package CDCStatusInfo) +2024-09-08 15:11:36,125 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::ENS, _objData=UmlObjectData [id=4285, uuid={929E3BA6-6FC1-4cef-A0A3-AFC3397057FD}, since=null, name=stVal, alias=, stereotype=, visibility=public, txtDescription='Status data value.', htmlDescription='

Status data value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2149, _eaTypeName=EnumDA_ST_dchg_dupd, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,125 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::ENS, _objData=UmlObjectData [id=4286, uuid={973C16BC-0B6B-4787-9456-6A3C5D86703B}, since=null, name=q, alias=, stereotype=, visibility=public, txtDescription='Quality of the data value 'stVal'.', htmlDescription='

Quality of the data value 'stVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2192, _eaTypeName=Quality_ST_qchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,125 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::ENS, _objData=UmlObjectData [id=4287, uuid={A5C38D4B-AA0F-49b6-B868-27C0036F5163}, since=null, name=t, alias=, stereotype=, visibility=public, txtDescription='Timestamp of the last change of the data value 'stVal' or quality 'q'.', htmlDescription='

Timestamp of the last change of the data value 'stVal' or quality 'q'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2206, _eaTypeName=TimeStamp_ST, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,125 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::ENS, _objData=UmlObjectData [id=4288, uuid={5895B5B3-C6B8-4321-BCF5-F17A3FE76872}, since=null, name=subVal, alias=, stereotype=, visibility=public, txtDescription='Value used to substitute 'stVal'.', htmlDescription='

Value used to substitute 'stVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2150, _eaTypeName=EnumDA_SV, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{moveAfter=subEna}] +2024-09-08 15:11:36,125 [main] DEBUG ClassBuilder - Adding ENS as subclass of SubstitutionCDC +2024-09-08 15:11:36,125 [main] TRACE ClassBuilder - read from EA: CDCStatusInfo::ENS +2024-09-08 15:11:36,126 [main] TRACE ClassBuilder - Class EXY (3 in package CDCStatusInfo) +2024-09-08 15:11:36,126 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::EXY, _objData=UmlObjectData [id=6653, uuid={C45B42C1-992F-47fa-978C-87A6AFC4F512}, since=null, name=stVal, alias=, stereotype=, visibility=public, txtDescription='Status data value.', htmlDescription='

Status data value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2149, _eaTypeName=EnumDA_ST_dchg_dupd, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,126 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::EXY, _objData=UmlObjectData [id=6654, uuid={B5AC751A-B7F5-4848-8382-2072203D80D8}, since=null, name=q, alias=, stereotype=, visibility=public, txtDescription='Quality of the data value 'stVal'.', htmlDescription='

Quality of the data value 'stVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2192, _eaTypeName=Quality_ST_qchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,126 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::EXY, _objData=UmlObjectData [id=6655, uuid={CADD5FD8-0F27-4735-9D3F-4CE322754EA7}, since=null, name=t, alias=, stereotype=, visibility=public, txtDescription='Timestamp of the last change of the data value 'stVal' or quality 'q'.', htmlDescription='

Timestamp of the last change of the data value 'stVal' or quality 'q'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2206, _eaTypeName=TimeStamp_ST, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,126 [main] DEBUG ClassBuilder - Adding EXY as subclass of BasePrimitiveCDC +2024-09-08 15:11:36,126 [main] TRACE ClassBuilder - read from EA: CDCStatusInfo::EXY +2024-09-08 15:11:36,126 [main] TRACE ClassBuilder - Class ACD (4 in package CDCStatusInfo) +2024-09-08 15:11:36,128 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::ACD, _objData=UmlObjectData [id=4301, uuid={532F20FD-1464-482b-838D-48B80E9F6631}, since=null, name=dirGeneral, alias=, stereotype=, visibility=public, txtDescription='General direction of the fault. If the faults of individual phases have different directions, this attribute shall be set to 'dirGeneral'='both'.', htmlDescription='

General direction of the fault. If the faults of individual phases have different directions, this attribute shall be set to 'dirGeneral'='both'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2151, _eaTypeName=FaultDirection_ST_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,128 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::ACD, _objData=UmlObjectData [id=4302, uuid={22C4C4D2-4D10-4cad-8B98-2C5BB64AFEC2}, since=null, name=phsA, alias=, stereotype=, visibility=public, txtDescription='See 'ACT.phsA'.', htmlDescription='

See 'ACT.phsA'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2129, _eaTypeName=BOOLEAN_ST_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,128 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::ACD, _objData=UmlObjectData [id=4304, uuid={78BD96A5-A044-4ee0-BDF2-6207BF482F50}, since=null, name=phsB, alias=, stereotype=, visibility=public, txtDescription='See 'ACT.phsB.', htmlDescription='

See 'ACT.phsB.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2129, _eaTypeName=BOOLEAN_ST_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,128 [main] DEBUG ClassBuilder - Adding ACD as subclass of BasePrimitiveCDC +2024-09-08 15:11:36,128 [main] TRACE ClassBuilder - read from EA: CDCStatusInfo::ACD +2024-09-08 15:11:36,128 [main] TRACE ClassBuilder - Class HST (5 in package CDCStatusInfo) +2024-09-08 15:11:36,128 [main] ERROR EaTables - [+++ EA ordering problem for 2 diagram(s) in HST (manually move back/forth a diagram to initiate EA internal ordering update!): +, +++ diagram One-dimensional histogram: pos = 0 +, +++ diagram Two-dimensional histogram: pos = 0 DUPLICATE +] +2024-09-08 15:11:36,128 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [, _containingClass=HST, _objData=UmlObjectData [id=249, uuid={ED4BABDE-840A-4983-AD56-49D11AE71F72}, since=null, name=One-dimensional histogram, alias=, stereotype=, visibility=public, txtDescription='This diagram illustrates usage of data attributes for a one-dimensional histogram representation.', htmlDescription='

This diagram illustrates usage of data attributes for a one-dimensional histogram representation.

'], _portrait=true, _kind=CUSTOM] +2024-09-08 15:11:36,129 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [, _containingClass=HST, _objData=UmlObjectData [id=250, uuid={D4BFD754-29E5-467c-8CBD-D17D9FD3F5DF}, since=null, name=Two-dimensional histogram, alias=, stereotype=, visibility=public, txtDescription='This diagram shows an example of a two-dimensional histogram along with the corresponding values for related data attributes. Each of the rectangles represents one range; there is no rule, how to order the ranges.', htmlDescription='

This diagram shows an example of a two-dimensional histogram along with the corresponding values for related data attributes. Each of the rectangles represents one range; there is no rule, how to order the ranges.

'], _portrait=true, _kind=CUSTOM] +2024-09-08 15:11:36,129 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2256, uuid={30BBC730-8918-41fd-AEF8-EFA8F6E6B530}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=HST, _otherEndName=] +2024-09-08 15:11:36,129 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2257, uuid={F31CA204-48C6-416e-A7F6-46A746CF99E0}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=HST, _otherEndName=] +2024-09-08 15:11:36,129 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::HST, _objData=UmlObjectData [id=4328, uuid={CE8A66F5-D42E-4f4f-8087-F15C910C8D17}, since=null, name=hstVal, alias=, stereotype=, visibility=public, txtDescription='Array of data values for the histogram entries.', htmlDescription='

Array of data values for the histogram entries.

'], _isConst=false, _isStatic=false, _multiplicity=[1..*], _initValue=, _eaTypeId=2172, _eaTypeName=INT32_ST_dchg_dupd, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1 _constraints[ConstraintBuilder [_objData=UmlObjectData [id=1618, uuid=720fe959-ac7a-331d-b329-3988eb2bff13, since=null, name=maxIdx, alias=, stereotype=, visibility=public, txtDescription='maxPts-1', htmlDescription='

maxPts-1

'], _containingAttribute=hstVal, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=maxPts-1]]] +2024-09-08 15:11:36,129 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusInfo::HST, _objData=UmlObjectData [id=4331, uuid={B6E3704C-05B5-4c84-AEBB-CE3F2A3DB9F0}, since=null, name=numPts, alias=, stereotype=, visibility=public, txtDescription='Actual size of 'hstVal[]', 'hstRangeC[]'.', htmlDescription='

Actual size of 'hstVal[]', 'hstRangeC[]'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1...maxPts, _eaTypeId=2159, _eaTypeName=INT16U_CF, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,129 [main] DEBUG ClassBuilder - Adding HST as subclass of BasePrimitiveCDC +2024-09-08 15:11:36,129 [main] TRACE ClassBuilder - read from EA: CDCStatusInfo::HST +2024-09-08 15:11:36,130 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=CommonDataClasses, _depth=3, _eaElementID=2245, _objData=UmlObjectData [id=121, uuid={3E1C875A-F26E-40d8-9846-9BB1405D4F1A}, since=null, name=CDCStatusInfo, alias=Status information, stereotype=, visibility=public, txtDescription='For applicable services, see Annex B.', htmlDescription='

For applicable services, see Annex B.

'], _modelId=58, _selfDependent=false, 2_skippedEaItems=[SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2259, uuid={58471C21-0D37-4d5e-B74F-BD101D8729FC}, since=null, name=CDCStatusInfo : Two-dimensional histogram, alias=, stereotype=, visibility=public, txtDescription='CDCStatusInfo : Two-dimensional histogram', htmlDescription='

CDCStatusInfo : Two-dimensional histogram

'], _containingPackage=CDCStatusInfo, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2260, uuid={698239AD-7E8C-42c8-A1EB-0DBE752F57EC}, since=null, name=CDCStatusInfo : One-dimensional histogram, alias=, stereotype=, visibility=public, txtDescription='CDCStatusInfo : One-dimensional histogram', htmlDescription='

CDCStatusInfo : One-dimensional histogram

'], _containingPackage=CDCStatusInfo, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=CDCStatusInfo, _objData=UmlObjectData [id=248, uuid={8E8D0A5B-4D29-400f-A3AF-1184FB57CC93}, since=null, name=CDCStatusInfo, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all status information CDCs defined in the standard with supertypes that factor their common attributes.', htmlDescription='

This diagram shows all status information CDCs defined in the standard with supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL]], _classes=5 +2024-09-08 15:11:36,130 [main] INFO PackageBuilder - processing package CDCAnalogueInfo (4) ... +2024-09-08 15:11:36,130 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=CDCAnalogueInfo, _objData=UmlObjectData [id=251, uuid={7318BCE5-A2F7-4ec0-9888-C0DED1487FCD}, since=null, name=CDCAnalogueInfo, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all measurand info primitive CDCs defined in the standard with supertypes that factor their common attributes.', htmlDescription='

This diagram shows all measurand info primitive CDCs defined in the standard with supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:36,131 [main] TRACE ClassBuilder - Class HarmonicMeasurandCDC (2 in package CDCAnalogueInfo) +2024-09-08 15:11:36,132 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCAnalogueInfo::HarmonicMeasurandCDC, _objData=UmlObjectData [id=4346, uuid={2B6FCE4E-A827-467a-B3FA-B2DA520A2B0E}, since=null, name=evalTm, alias=, stereotype=, visibility=public, txtDescription='Time window [ms] applied to interharmonic calculations. See 'numHar'.', htmlDescription='

Time window [ms] applied to interharmonic calculations. See 'numHar'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2160, _eaTypeName=INT16U_CF_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,132 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCAnalogueInfo::HarmonicMeasurandCDC, _objData=UmlObjectData [id=4347, uuid={9CA4C0A7-81A8-4f80-A178-0E3461E29662}, since=null, name=smpRate, alias=, stereotype=, visibility=public, txtDescription='Determines the highest possible harmonic or interharmonic detectable, according to the sampling theorem; the minimum value is 'smpRate'=2 * 'frequency'. 'smpRate' is the number of samples per nominal period. In the case of a dc system, it is number of samples per s.', htmlDescription='

Determines the highest possible harmonic or interharmonic detectable, according to the sampling theorem; the minimum value is 'smpRate'=2 * 'frequency'. 'smpRate' is the number of samples per nominal period. In the case of a dc system, it is number of samples per s.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2165, _eaTypeName=INT32U_CF_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,132 [main] DEBUG ClassBuilder - Adding HarmonicMeasurandCDC as subclass of BaseComposedCDC +2024-09-08 15:11:36,132 [main] TRACE ClassBuilder - read from EA: CDCAnalogueInfo::HarmonicMeasurandCDC +2024-09-08 15:11:36,133 [main] TRACE ClassBuilder - Class CMV (4 in package CDCAnalogueInfo) +2024-09-08 15:11:36,133 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCAnalogueInfo::CMV, _objData=UmlObjectData [id=4363, uuid={EF92B9C1-3C1D-47e0-A976-0BC4ABB0A956}, since=null, name=instCVal, alias=, stereotype=, visibility=public, txtDescription='Instantaneous complex (phasor) value, with magnitude and angle.', htmlDescription='

Instantaneous complex (phasor) value, with magnitude and angle.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2213, _eaTypeName=Vector_MX, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,134 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCAnalogueInfo::CMV, _objData=UmlObjectData [id=4369, uuid={5BEFF6EB-D761-40ac-AF78-8EDB1CB222A6}, since=null, name=subCVal, alias=, stereotype=, visibility=public, txtDescription='Value used to substitute 'instCVal'.', htmlDescription='

Value used to substitute 'instCVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2215, _eaTypeName=Vector_SV, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{moveAfter=subEna}] +2024-09-08 15:11:36,134 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCAnalogueInfo::CMV, _objData=UmlObjectData [id=4374, uuid={163EDE34-974C-42be-93A3-DC32CCFC09F6}, since=null, name=rangeC, alias=, stereotype=, visibility=public, txtDescription='Configuration for 'range'.', htmlDescription='

Configuration for 'range'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2194, _eaTypeName=RangeConfig_CF_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,134 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCAnalogueInfo::CMV, _objData=UmlObjectData [id=4375, uuid={64C3ECAC-5E57-4cbe-8469-96F13ACDF920}, since=null, name=rangeAngC, alias=, stereotype=, visibility=public, txtDescription='Configuration for 'rangeAng'.', htmlDescription='

Configuration for 'rangeAng'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2194, _eaTypeName=RangeConfig_CF_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,135 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2161, uuid={83E0A355-0A5F-4120-B11B-A884EE35EBCF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=CMV, _otherEndName=?] +2024-09-08 15:11:36,135 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2165, uuid={C4A6DE53-4818-409e-A935-BD597D32CC62}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=CMV, _otherEndName=?] +2024-09-08 15:11:36,135 [main] DEBUG ClassBuilder - Adding CMV as subclass of SubstitutionCDC +2024-09-08 15:11:36,135 [main] TRACE ClassBuilder - read from EA: CDCAnalogueInfo::CMV +2024-09-08 15:11:36,135 [main] TRACE ClassBuilder - Class HWYE (5 in package CDCAnalogueInfo) +2024-09-08 15:11:36,135 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCAnalogueInfo::HWYE, _objData=UmlObjectData [id=4405, uuid={3BE5F231-7684-425e-A062-905D40593DE8}, since=null, name=phsAHar, alias=, stereotype=, visibility=public, txtDescription='Array of harmonic and subharmonics, or interharmonic values related to phase A.', htmlDescription='

Array of harmonic and subharmonics, or interharmonic values related to phase A.

'], _isConst=false, _isStatic=false, _multiplicity=[1..*], _initValue=, _eaTypeId=2266, _eaTypeName=CMV, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 2 _constraints[ConstraintBuilder [_objData=UmlObjectData [id=1640, uuid=2d5f2699-414e-322c-ac9b-12faab7bf7a1, since=null, name=maxIdx, alias=, stereotype=, visibility=public, txtDescription='numHar', htmlDescription='

numHar

'], _containingAttribute=phsAHar, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=numHar], ConstraintBuilder [_objData=UmlObjectData [id=1641, uuid=9681cda7-090b-3bd8-acfe-51a75f594dfa, since=null, name=minIdx, alias=, stereotype=, visibility=public, txtDescription='0', htmlDescription='

0

'], _containingAttribute=phsAHar, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=0]]] +2024-09-08 15:11:36,135 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCAnalogueInfo::HWYE, _objData=UmlObjectData [id=4411, uuid={E41EFDD0-9E50-45f3-B665-D9884218AC67}, since=null, name=angRef, alias=, stereotype=, visibility=public, txtDescription='Angle reference, indicating the quantity that is used as reference for the phase angles {'phsAHar', 'phsBHar', 'phsCHar', 'neutHar', 'netHar', 'resHar'}[i].ang', instead of their own 'angRef'. For the indicated quantity, the fundamental frequency (index = 1) is used as reference by convention.', htmlDescription='

Angle reference, indicating the quantity that is used as reference for the phase angles {'phsAHar', 'phsBHar', 'phsCHar', 'neutHar', 'netHar', 'resHar'}[i].ang', instead of their own 'angRef'. For the indicated quantity, the fundamental frequency (index = 1) is used as reference by convention.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2183, _eaTypeName=PhaseAngleReference_CF_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{moveAfter=evalTm}] +2024-09-08 15:11:36,136 [main] DEBUG ClassBuilder - Adding HWYE as subclass of HarmonicMeasurandCDC +2024-09-08 15:11:36,136 [main] TRACE ClassBuilder - read from EA: CDCAnalogueInfo::HWYE +2024-09-08 15:11:36,136 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=CommonDataClasses, _depth=3, _eaElementID=2261, _objData=UmlObjectData [id=122, uuid={1648BF5D-1715-4c8a-B570-BAC092CDCC20}, since=null, name=CDCAnalogueInfo, alias=Measurand information, stereotype=, visibility=public, txtDescription='Measured values as defined in the following clauses may also be applied to calculated values. +For applicable services, see Annex B.', htmlDescription='

Measured values as defined in the following clauses may also be applied to calculated values.

For applicable services, see Annex B.

'], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=CDCAnalogueInfo, _objData=UmlObjectData [id=251, uuid={7318BCE5-A2F7-4ec0-9888-C0DED1487FCD}, since=null, name=CDCAnalogueInfo, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all measurand info primitive CDCs defined in the standard with supertypes that factor their common attributes.', htmlDescription='

This diagram shows all measurand info primitive CDCs defined in the standard with supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL]], _classes=3 +2024-09-08 15:11:36,136 [main] INFO PackageBuilder - processing package CDCControl (5) ... +2024-09-08 15:11:36,136 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=CDCControl, _objData=UmlObjectData [id=255, uuid={672B46BC-EEBD-413a-8A1E-B08E4D73BBF9}, since=null, name=CDCControl, alias=, stereotype=, visibility=public, txtDescription='This diagram shows first part of controllable CDCs defined in the standard with supertypes that factor their common attributes.', htmlDescription='

This diagram shows first part of controllable CDCs defined in the standard with supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:36,137 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2289, uuid={5B33C75B-7824-4ca5-9553-55D1D80034BF}, since=null, name=CDCControl :Attributes for command testing, alias=, stereotype=, visibility=public, txtDescription='CDCControl : Attributes for command testing', htmlDescription='

CDCControl : Attributes for command testing

'], _containingPackage=CDCControl, _otherEndName=] +2024-09-08 15:11:36,137 [main] TRACE ClassBuilder - Class SPC (0 in package CDCControl) +2024-09-08 15:11:36,138 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = CDCControl::SPC->null, _objData=UmlObjectData [id=3452, uuid={1BDAABDC-478E-4284-B67C-2D8C94FA3E1C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,138 [main] TRACE ClassBuilder - read from EA: CDCControl::SPC +2024-09-08 15:11:36,138 [main] TRACE ClassBuilder - Class ControllableCDC (1 in package CDCControl) +2024-09-08 15:11:36,138 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [, _containingClass=ControllableCDC, _objData=UmlObjectData [id=256, uuid={7A8C741F-2259-403c-9867-8F51C3D154A9}, since=null, name=Attributes for command testing, alias=, stereotype=, visibility=public, txtDescription='This diagram illustrates usage of attributes related to testing commands, suitable for use when 'LN.Mode='testBlocked'. +The command is received ('opRcvd') by the IED as a control service or as a GOOSE message with a data object that is interpreted as an 'operate' request on the controllable object. The command is then processed. If the command is accepted, the wired output would be activated. The data attribute 'opOk' confirms that the command has been accepted and reflects the timing of the wired output; i.e. the duration of that signal is determined by the configuration attribute 'pulseConfig' if the output is a pulse. The data attribute 'tOpOk' is a timestamp indicating when the output would be activated.', htmlDescription='

This diagram illustrates usage of attributes related to testing commands, suitable for use when 'LN.Mode='testBlocked'.

The command is received ('opRcvd') by the IED as a control service or as a GOOSE message with a data object that is interpreted as an 'operate' request on the controllable object. The command is then processed. If the command is accepted, the wired output would be activated. The data attribute 'opOk' confirms that the command has been accepted and reflects the timing of the wired output; i.e. the duration of that signal is determined by the configuration attribute 'pulseConfig' if the output is a pulse. The data attribute 'tOpOk' is a timestamp indicating when the output would be activated.

'], _portrait=true, _kind=CUSTOM] +2024-09-08 15:11:36,138 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2279, uuid={28B618C5-AFD6-4e02-B638-732E00A18C5F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=ControllableCDC, _otherEndName=] +2024-09-08 15:11:36,139 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCControl::ControllableCDC, _objData=UmlObjectData [id=4417, uuid={47B971C5-D6FE-4d4d-A1B9-DAD685D360FE}, since=null, name=opOk, alias=, stereotype=, visibility=public, txtDescription='True indicates that an operate command for a controllable data object has been evaluated and accepted.', htmlDescription='

True indicates that an operate command for a controllable data object has been evaluated and accepted.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2125, _eaTypeName=BOOLEAN_OR_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,139 [main] DEBUG ClassBuilder - Adding ControllableCDC as subclass of SubstitutionCDC +2024-09-08 15:11:36,139 [main] DEBUG ClassBuilder - Updated target of class dependency DependencyBuilder [_kind=CLASS, qName = CDCControl::SPC->CDCControl::ControllableCDC, _objData=UmlObjectData [id=3452, uuid={1BDAABDC-478E-4284-B67C-2D8C94FA3E1C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,139 [main] TRACE ClassBuilder - read from EA: CDCControl::ControllableCDC +2024-09-08 15:11:36,139 [main] TRACE ClassBuilder - Class ENC (2 in package CDCControl) +2024-09-08 15:11:36,139 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCControl::ENC, _objData=UmlObjectData [id=4463, uuid={9C28209D-6C12-48ff-B6AD-C1817BAAFC47}, since=null, name=stVal, alias=, stereotype=, visibility=public, txtDescription='Status data value.', htmlDescription='

Status data value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2148, _eaTypeName=EnumDA_ST_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,139 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCControl::ENC, _objData=UmlObjectData [id=4467, uuid={938DEDD5-1A89-4d8f-84B9-3BD409127DC1}, since=null, name=subVal, alias=, stereotype=, visibility=public, txtDescription='Value used to substitute 'stVal'.', htmlDescription='

Value used to substitute 'stVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2150, _eaTypeName=EnumDA_SV, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{moveAfter=subEna}] +2024-09-08 15:11:36,140 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCControl::ENC, _objData=UmlObjectData [id=4472, uuid={3AE4A32F-B7CE-4d34-96B9-72D29B257EC1}, since=null, name=ctlVal, alias=, stereotype=, visibility=public, txtDescription='Service parameter that determines the control activity, containing the new value for 'stVal'.', htmlDescription='

Service parameter that determines the control activity, containing the new value for 'stVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1855, _eaTypeName=EnumDA, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,140 [main] DEBUG ClassBuilder - Adding ENC as subclass of ControllableCDC +2024-09-08 15:11:36,140 [main] TRACE ClassBuilder - read from EA: CDCControl::ENC +2024-09-08 15:11:36,140 [main] TRACE ClassBuilder - Class BAC (10 in package CDCControl) +2024-09-08 15:11:36,140 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCControl::BAC, _objData=UmlObjectData [id=4522, uuid={88F3132A-BE85-476d-A4AB-2F929A4B1EBA}, since=null, name=mxVal, alias=, stereotype=, visibility=public, txtDescription='See 'APC.mxVal'.', htmlDescription='

See 'APC.mxVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2116, _eaTypeName=AnalogueValue_MX_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,140 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCControl::BAC, _objData=UmlObjectData [id=4526, uuid={2E517833-BEAC-420a-9351-E80AE2D456F2}, since=null, name=subVal, alias=, stereotype=, visibility=public, txtDescription='Value used to substitute 'mxVal'.', htmlDescription='

Value used to substitute 'mxVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2121, _eaTypeName=AnalogueValue_SV, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1_taggedValues{moveAfter=subEna}] +2024-09-08 15:11:36,141 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCControl::BAC, _objData=UmlObjectData [id=4538, uuid={0E7EE54F-A469-4769-AB77-ECC48A74EF0E}, since=null, name=ctlVal, alias=, stereotype=, visibility=public, txtDescription='Service parameter that determines the control activity, containing the desired change for 'mxVal'. If 'persistent'=false, 'ctlVal'='higher'|'lower' refers to one step in 'mxVal'.', htmlDescription='

Service parameter that determines the control activity, containing the desired change for 'mxVal'. If 'persistent'=false, 'ctlVal'='higher'|'lower' refers to one step in 'mxVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1760, _eaTypeName=BsControl, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,141 [main] DEBUG ClassBuilder - Adding BAC as subclass of ControllableCDC +2024-09-08 15:11:36,141 [main] TRACE ClassBuilder - read from EA: CDCControl::BAC +2024-09-08 15:11:36,141 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=CommonDataClasses, _depth=3, _eaElementID=2276, _objData=UmlObjectData [id=123, uuid={5494102F-33E9-4de2-84A9-31FAC8CF7B73}, since=null, name=CDCControl, alias=Controls, stereotype=, visibility=public, txtDescription='All common data classes for control include both the control and the related status information. +For applicable services, see Annex B. +NOTE The service parameter of the control, which belongs to the control model defined in IEC 61850-7-2, is included here, since the type is defined by the CDC.', htmlDescription='

All common data classes for control include both the control and the related status information.

For applicable services, see Annex B.

NOTE The service parameter of the control, which belongs to the control model defined in IEC 61850-7-2, is included here, since the type is defined by the CDC.

'], _modelId=58, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2289, uuid={5B33C75B-7824-4ca5-9553-55D1D80034BF}, since=null, name=CDCControl :Attributes for command testing, alias=, stereotype=, visibility=public, txtDescription='CDCControl : Attributes for command testing', htmlDescription='

CDCControl : Attributes for command testing

'], _containingPackage=CDCControl, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=CDCControl, _objData=UmlObjectData [id=255, uuid={672B46BC-EEBD-413a-8A1E-B08E4D73BBF9}, since=null, name=CDCControl, alias=, stereotype=, visibility=public, txtDescription='This diagram shows first part of controllable CDCs defined in the standard with supertypes that factor their common attributes.', htmlDescription='

This diagram shows first part of controllable CDCs defined in the standard with supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL]], _classes=4 +2024-09-08 15:11:36,141 [main] INFO PackageBuilder - processing package CDCStatusSet (6) ... +2024-09-08 15:11:36,142 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=CDCStatusSet, _objData=UmlObjectData [id=258, uuid={FAA0BF16-93C1-4fea-BA5D-7C2485A2822D}, since=null, name=CDCStatusSet, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all status setting CDCs defined in the standard with supertypes that factor their common attributes.', htmlDescription='

This diagram shows all status setting CDCs defined in the standard with supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:36,142 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2292, uuid={72A3A6D5-C9BF-490d-869B-FD21BCFDCE72}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note 1: CUG in not used in 61850-7-4 at all (but may be is in other WGs' LNs). +Modelling note 2: For "tripled" attributes (setVal), we rename two of them by adding the prefixes "_" and "__" (_setVal, __setVal for SG, SE, respectively), since it is impossible to have two or more attributes of the same name in a class, even if they have different functional constraint. For producing the documentation, the tool has to: +- produce one row for SG and SE, with the name of SP, and, +- ignore printing these in data semantic table.', htmlDescription='

Modelling note 1: CUG in not used in 61850-7-4 at all (but may be is in other WGs' LNs).

Modelling note 2: For "tripled" attributes (setVal), we rename two of them by adding the prefixes "_" and "__" (_setVal, __setVal for SG, SE, respectively), since it is impossible to have two or more attributes of the same name in a class, even if they have different functional constraint. For producing the documentation, the tool has to:

  • produce one row for SG and SE, with the name of SP, and,
  • ignore printing these in data semantic table.
'], _containingPackage=CDCStatusSet, _otherEndName=] +2024-09-08 15:11:36,142 [main] TRACE ClassBuilder - Class ENG (2 in package CDCStatusSet) +2024-09-08 15:11:36,143 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusSet::ENG, _objData=UmlObjectData [id=4549, uuid={1D960CE3-43BF-406e-A140-BC2239A785AA}, since=null, name=setVal, alias=, stereotype=, visibility=public, txtDescription='The value of the status setting.', htmlDescription='

The value of the status setting.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2147, _eaTypeName=EnumDA_SP_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,143 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusSet::ENG, _objData=UmlObjectData [id=4550, uuid={230465FC-CF1D-489e-8A2F-06A473C05873}, since=null, name=_setVal, alias=, stereotype=, visibility=public, txtDescription='See 'setVal'.', htmlDescription='

See 'setVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2146, _eaTypeName=EnumDA_SG, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,143 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCStatusSet::ENG, _objData=UmlObjectData [id=4551, uuid={CCF13BCF-8FA8-4586-B31F-3CD9088513A4}, since=null, name=__setVal, alias=, stereotype=, visibility=public, txtDescription='See 'setVal'.', htmlDescription='

See 'setVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2145, _eaTypeName=EnumDA_SE, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,143 [main] DEBUG ClassBuilder - Adding ENG as subclass of BasePrimitiveCDC +2024-09-08 15:11:36,143 [main] TRACE ClassBuilder - read from EA: CDCStatusSet::ENG +2024-09-08 15:11:36,143 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=CommonDataClasses, _depth=3, _eaElementID=2291, _objData=UmlObjectData [id=124, uuid={24BEB580-2588-4b5f-8AEB-5D57AAAAE2FA}, since=null, name=CDCStatusSet, alias=Status settings, stereotype=, visibility=public, txtDescription='For applicable services, see Annex B.', htmlDescription='

For applicable services, see Annex B.

'], _modelId=58, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2292, uuid={72A3A6D5-C9BF-490d-869B-FD21BCFDCE72}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note 1: CUG in not used in 61850-7-4 at all (but may be is in other WGs' LNs). +Modelling note 2: For "tripled" attributes (setVal), we rename two of them by adding the prefixes "_" and "__" (_setVal, __setVal for SG, SE, respectively), since it is impossible to have two or more attributes of the same name in a class, even if they have different functional constraint. For producing the documentation, the tool has to: +- produce one row for SG and SE, with the name of SP, and, +- ignore printing these in data semantic table.', htmlDescription='

Modelling note 1: CUG in not used in 61850-7-4 at all (but may be is in other WGs' LNs).

Modelling note 2: For "tripled" attributes (setVal), we rename two of them by adding the prefixes "_" and "__" (_setVal, __setVal for SG, SE, respectively), since it is impossible to have two or more attributes of the same name in a class, even if they have different functional constraint. For producing the documentation, the tool has to:

  • produce one row for SG and SE, with the name of SP, and,
  • ignore printing these in data semantic table.
'], _containingPackage=CDCStatusSet, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=CDCStatusSet, _objData=UmlObjectData [id=258, uuid={FAA0BF16-93C1-4fea-BA5D-7C2485A2822D}, since=null, name=CDCStatusSet, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all status setting CDCs defined in the standard with supertypes that factor their common attributes.', htmlDescription='

This diagram shows all status setting CDCs defined in the standard with supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL]], _classes=1 +2024-09-08 15:11:36,145 [main] INFO PackageBuilder - processing package CDCAnalogueSet (8) ... +2024-09-08 15:11:36,145 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=CDCAnalogueSet, _objData=UmlObjectData [id=260, uuid={C2AB69BB-C368-4dc2-ABD8-D20CA5670A59}, since=null, name=CDCAnalogueSet, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all analogue setting CDCs defined in the standard with supertypes that factor their common attributes.', htmlDescription='

This diagram shows all analogue setting CDCs defined in the standard with supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:36,146 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2302, uuid={3EC42D78-B2EB-4f59-9E25-E272DB4E33D6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- CSG.xUnits, yUnits, zUnits should probably also have dchg?', htmlDescription='

TODO:

  • CSG.xUnits, yUnits, zUnits should probably also have dchg?
'], _containingPackage=CDCAnalogueSet, _otherEndName=] +2024-09-08 15:11:36,146 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2303, uuid={02178B42-E5E3-4d47-96D5-4CE0FB51E96B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: +For "tripled" attributes (e.g., setMag), we rename two of them by adding the prefixes "_" and "__" (_setMag, __setMag for SG, SE, respectively), since it is impossible to have two or more attributes of the same name in a class, even if they have different functional constraint. For producing the documentation, the tool has to: +- produce one row for SG and SE, with the name of SP, and, +- ignore printing these in data semantic table.', htmlDescription='

Modelling note:

For "tripled" attributes (e.g., setMag), we rename two of them by adding the prefixes "_" and "__" (_setMag, __setMag for SG, SE, respectively), since it is impossible to have two or more attributes of the same name in a class, even if they have different functional constraint. For producing the documentation, the tool has to:

  • produce one row for SG and SE, with the name of SP, and,
  • ignore printing these in data semantic table.
'], _containingPackage=CDCAnalogueSet, _otherEndName=] +2024-09-08 15:11:36,146 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2309, uuid={08494FEF-49BE-42b8-A5CA-F4B052BA0C5D}, since=null, name=CDCAnalogueSet : Two-dimensional curve, alias=, stereotype=, visibility=public, txtDescription='CDCAnalogueSet : Two-dimensional curve', htmlDescription='

CDCAnalogueSet : Two-dimensional curve

'], _containingPackage=CDCAnalogueSet, _otherEndName=] +2024-09-08 15:11:36,146 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2310, uuid={7E7E303E-D1E2-46b3-A331-865220F17B13}, since=null, name=CDCAnalogueSet : Multiple two-dimensional curves, alias=, stereotype=, visibility=public, txtDescription='CDCAnalogueSet : Multiple two-dimensional curves', htmlDescription='

CDCAnalogueSet : Multiple two-dimensional curves

'], _containingPackage=CDCAnalogueSet, _otherEndName=] +2024-09-08 15:11:36,146 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=CommonDataClasses, _depth=3, _eaElementID=2301, _objData=UmlObjectData [id=125, uuid={BBFCDF63-5251-459a-AA56-3369E8D0EB79}, since=null, name=CDCAnalogueSet, alias=Analogue settings, stereotype=, visibility=public, txtDescription='For applicable services, see Annex B.', htmlDescription='

For applicable services, see Annex B.

'], _modelId=58, _selfDependent=false, 4_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2302, uuid={3EC42D78-B2EB-4f59-9E25-E272DB4E33D6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- CSG.xUnits, yUnits, zUnits should probably also have dchg?', htmlDescription='

TODO:

  • CSG.xUnits, yUnits, zUnits should probably also have dchg?
'], _containingPackage=CDCAnalogueSet, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2303, uuid={02178B42-E5E3-4d47-96D5-4CE0FB51E96B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: +For "tripled" attributes (e.g., setMag), we rename two of them by adding the prefixes "_" and "__" (_setMag, __setMag for SG, SE, respectively), since it is impossible to have two or more attributes of the same name in a class, even if they have different functional constraint. For producing the documentation, the tool has to: +- produce one row for SG and SE, with the name of SP, and, +- ignore printing these in data semantic table.', htmlDescription='

Modelling note:

For "tripled" attributes (e.g., setMag), we rename two of them by adding the prefixes "_" and "__" (_setMag, __setMag for SG, SE, respectively), since it is impossible to have two or more attributes of the same name in a class, even if they have different functional constraint. For producing the documentation, the tool has to:

  • produce one row for SG and SE, with the name of SP, and,
  • ignore printing these in data semantic table.
'], _containingPackage=CDCAnalogueSet, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2309, uuid={08494FEF-49BE-42b8-A5CA-F4B052BA0C5D}, since=null, name=CDCAnalogueSet : Two-dimensional curve, alias=, stereotype=, visibility=public, txtDescription='CDCAnalogueSet : Two-dimensional curve', htmlDescription='

CDCAnalogueSet : Two-dimensional curve

'], _containingPackage=CDCAnalogueSet, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2310, uuid={7E7E303E-D1E2-46b3-A331-865220F17B13}, since=null, name=CDCAnalogueSet : Multiple two-dimensional curves, alias=, stereotype=, visibility=public, txtDescription='CDCAnalogueSet : Multiple two-dimensional curves', htmlDescription='

CDCAnalogueSet : Multiple two-dimensional curves

'], _containingPackage=CDCAnalogueSet, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=CDCAnalogueSet, _objData=UmlObjectData [id=260, uuid={C2AB69BB-C368-4dc2-ABD8-D20CA5670A59}, since=null, name=CDCAnalogueSet, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all analogue setting CDCs defined in the standard with supertypes that factor their common attributes.', htmlDescription='

This diagram shows all analogue setting CDCs defined in the standard with supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL]] +2024-09-08 15:11:36,146 [main] INFO PackageBuilder - processing package CDCDescription (9) ... +2024-09-08 15:11:36,146 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=CDCDescription, _objData=UmlObjectData [id=263, uuid={A4DD44BD-4EEA-42ae-B4BE-6A1186741171}, since=null, name=CDCDescription, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all description CDCs defined in the standard with supertypes that factor their common attributes.', htmlDescription='

This diagram shows all description CDCs defined in the standard with supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:36,147 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2312, uuid={92EF3889-55BA-4cd5-8E09-ADDB24ECF2EB}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- DPL.ePSName says “Name of electric power system the device is connected to.” This is strange description. What would be examples of “named power systems”? Why not stay just with owner (e.g., utility)? Proposal: Remove attribute. +- DPL.mrID, if referencing CIM's mRID, has very limited use, because it allows to store mRID-s of only primary equipment from CIM model. Most of the attributes contained in this DPL are spread over at least 5 classes in CIM, and most of these CIM classes have an mRID (e.g., Owner, Company, Location, CoordinateSystem, PositionPoint, Asset, AssetModel). This kind of information should not be modelled within a 61850 logical node, but with a real domain model. Proposal: Remove attribute. +- If DPL.mrID is to stay: DPL.mrID says "unique identification of an asset or device". What is the scope of uniqueness? Globally unique? If this is reference to CIM IdentifiedObject.mRID, use correct case for letters (r is should be R). Proposal: State the scope of uniqueness and if reference to CIM, rename attribute to ‘mRID’.', htmlDescription='

TODO:

  • DPL.ePSName says “Name of electric power system the device is connected to.” This is strange description. What would be examples of “named power systems”? Why not stay just with owner (e.g., utility)? Proposal: Remove attribute.
  • DPL.mrID, if referencing CIM's mRID, has very limited use, because it allows to store mRID-s of only primary equipment from CIM model. Most of the attributes contained in this DPL are spread over at least 5 classes in CIM, and most of these CIM classes have an mRID (e.g., Owner, Company, Location, CoordinateSystem, PositionPoint, Asset, AssetModel). This kind of information should not be modelled within a 61850 logical node, but with a real domain model. Proposal: Remove attribute.
  • If DPL.mrID is to stay: DPL.mrID says "unique identification of an asset or device". What is the scope of uniqueness? Globally unique? If this is reference to CIM IdentifiedObject.mRID, use correct case for letters (r is should be R). Proposal: State the scope of uniqueness and if reference to CIM, rename attribute to ‘mRID’.
'], _containingPackage=CDCDescription, _otherEndName=] +2024-09-08 15:11:36,147 [main] TRACE ClassBuilder - Class LPL (2 in package CDCDescription) +2024-09-08 15:11:36,147 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCDescription::LPL, _objData=UmlObjectData [id=4639, uuid={5F84B791-8DB9-403b-B63E-B8E33716E74A}, since=null, name=ldNs, alias=, stereotype=, visibility=public, txtDescription='Logical device name space. Scope of the standard specified with the attribute is LN class definition (CDC definition by reference), for example "IEC 61850-7-4:2010". For details see IEC 61850-7-1.', htmlDescription='

Logical device name space. Scope of the standard specified with the attribute is LN class definition (CDC definition by reference), for example "IEC 61850-7-4:2010". For details see IEC 61850-7-1.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2217, _eaTypeName=VISIBLE_STRING255_EX, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,147 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=CDCDescription::LPL, _objData=UmlObjectData [id=4640, uuid={AAD5655E-83DF-4906-9302-14396644A3AF}, since=null, name=lnNs, alias=, stereotype=, visibility=public, txtDescription='Logical node name space. Scope of the standard specified with the attribute is LN class definition (CDC definition by reference). For details see IEC 61850-7-1.', htmlDescription='

Logical node name space. Scope of the standard specified with the attribute is LN class definition (CDC definition by reference). For details see IEC 61850-7-1.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2217, _eaTypeName=VISIBLE_STRING255_EX, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,148 [main] DEBUG ClassBuilder - Adding LPL as subclass of BasePrimitiveCDC +2024-09-08 15:11:36,148 [main] TRACE ClassBuilder - read from EA: CDCDescription::LPL +2024-09-08 15:11:36,148 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=CommonDataClasses, _depth=3, _eaElementID=2311, _objData=UmlObjectData [id=126, uuid={D4B2A745-B7DE-4120-82C9-1D12138D250F}, since=null, name=CDCDescription, alias=Description information, stereotype=, visibility=public, txtDescription='For applicable services, see Annex B.', htmlDescription='

For applicable services, see Annex B.

'], _modelId=58, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2312, uuid={92EF3889-55BA-4cd5-8E09-ADDB24ECF2EB}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- DPL.ePSName says “Name of electric power system the device is connected to.” This is strange description. What would be examples of “named power systems”? Why not stay just with owner (e.g., utility)? Proposal: Remove attribute. +- DPL.mrID, if referencing CIM's mRID, has very limited use, because it allows to store mRID-s of only primary equipment from CIM model. Most of the attributes contained in this DPL are spread over at least 5 classes in CIM, and most of these CIM classes have an mRID (e.g., Owner, Company, Location, CoordinateSystem, PositionPoint, Asset, AssetModel). This kind of information should not be modelled within a 61850 logical node, but with a real domain model. Proposal: Remove attribute. +- If DPL.mrID is to stay: DPL.mrID says "unique identification of an asset or device". What is the scope of uniqueness? Globally unique? If this is reference to CIM IdentifiedObject.mRID, use correct case for letters (r is should be R). Proposal: State the scope of uniqueness and if reference to CIM, rename attribute to ‘mRID’.', htmlDescription='

TODO:

  • DPL.ePSName says “Name of electric power system the device is connected to.” This is strange description. What would be examples of “named power systems”? Why not stay just with owner (e.g., utility)? Proposal: Remove attribute.
  • DPL.mrID, if referencing CIM's mRID, has very limited use, because it allows to store mRID-s of only primary equipment from CIM model. Most of the attributes contained in this DPL are spread over at least 5 classes in CIM, and most of these CIM classes have an mRID (e.g., Owner, Company, Location, CoordinateSystem, PositionPoint, Asset, AssetModel). This kind of information should not be modelled within a 61850 logical node, but with a real domain model. Proposal: Remove attribute.
  • If DPL.mrID is to stay: DPL.mrID says "unique identification of an asset or device". What is the scope of uniqueness? Globally unique? If this is reference to CIM IdentifiedObject.mRID, use correct case for letters (r is should be R). Proposal: State the scope of uniqueness and if reference to CIM, rename attribute to ‘mRID’.
'], _containingPackage=CDCDescription, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=CDCDescription, _objData=UmlObjectData [id=263, uuid={A4DD44BD-4EEA-42ae-B4BE-6A1186741171}, since=null, name=CDCDescription, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all description CDCs defined in the standard with supertypes that factor their common attributes.', htmlDescription='

This diagram shows all description CDCs defined in the standard with supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL]], _classes=1 +2024-09-08 15:11:36,148 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_3, _depth=2, _eaElementID=2231, _objData=UmlObjectData [id=119, uuid={AF2BB0D4-22E0-440c-BEF8-B5E9EDCE3BC3}, since=null, name=CommonDataClasses, alias=Common data class specifications, stereotype=, visibility=public, txtDescription='Common data classes are defined for use in IEC 61850-7-4. Common data classes are composed of constructed attribute classes defined in Clause 6 of this document or of types defined in IEC 61850-7-2 or of common data classes defined in this clause. IEC 61850-7-1 provides the basic notation used in this clause. +The common data classes define the relation between their attributes and the functional constraint as well as the possible trigger options. If two trigger options are stated, then a concrete implementation shall select one of them. The selection is based on the purpose of the data object of this common data class and is fixed for the data object within a LN class. +The semantic of the attributes is defined in Clause 8.', htmlDescription='

Common data classes are defined for use in IEC 61850-7-4. Common data classes are composed of constructed attribute classes defined in Clause 6 of this document or of types defined in IEC 61850-7-2 or of common data classes defined in this clause. IEC 61850-7-1 provides the basic notation used in this clause.

The common data classes define the relation between their attributes and the functional constraint as well as the possible trigger options. If two trigger options are stated, then a concrete implementation shall select one of them. The selection is based on the purpose of the data object of this common data class and is fixed for the data object within a LN class.

The semantic of the attributes is defined in Clause 8.

'], _modelId=58, _selfDependent=false, 2_skippedEaItems=[SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2239, uuid={264C9AAE-B7F6-46b0-8EEE-F73431C6AD63}, since=null, name=CommonDataClasses : Concept of substitution, alias=, stereotype=, visibility=public, txtDescription='SubstitutionCDC : Concept of substitution', htmlDescription='

SubstitutionCDC : Concept of substitution

'], _containingPackage=CommonDataClasses, _otherEndName=], SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2241, uuid={AD3492F7-906E-41fa-A99E-09F725CB2769}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=CommonDataClasses, _otherEndName=]], 2_diagrams=[DiagramBuilder [_containingPackage=CommonDataClasses, _objData=UmlObjectData [id=244, uuid={9116C46B-DD92-40ff-9928-FB3E309093AC}, since=null, name=CommonDataClasses, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all the common data class groups, with their contents. +Classes displayed in italic and ending with "CDC" are abstract common data classes that allow to avoid duplication in definition of attributes used by multiple concrete common data classes. Abstract common data classes are never instantiated; Their attributes are inheritied by concrete common data classes which are instantiable.', htmlDescription='

This diagram shows all the common data class groups, with their contents.

Classes displayed in italic and ending with "CDC" are abstract common data classes that allow to avoid duplication in definition of attributes used by multiple concrete common data classes. Abstract common data classes are never instantiated; Their attributes are inheritied by concrete common data classes which are instantiable.

'], _portrait=true, _kind=LOGICAL], DiagramBuilder [_containingPackage=CommonDataClasses, _objData=UmlObjectData [id=245, uuid={31D2AD7A-7057-4e53-9C03-88B813B80849}, since=null, name=CDCRelationToACSI, alias=, stereotype=, visibility=public, txtDescription='All common data classes defined in this document inherit their structure from the abstract CDC class defined in IEC 61850-7-2, or more precisely, from one of its abstract subclasses (PrimitiveCDC or ComposedCDC). Common data classes (CDC-s) are used as types for data objects of logical nodes, and are composed of data attributes, which are of type FCDA (functionally constrained data attribute), and some are CDCs themselves. The generic structure of common data classes defined in IEC61850-7-2 comprises the attributes (e.g., name and reference, functional constraints and trigger options), and the services depending on a functional constraint. Currently, they are all modelled with operations (services). +IEC 61850-7-3 adds concrete data attributes, starting with common ones defined in abstract classes BasePrimitiveCDC and BaseComposedCDC, in order to complete the definition of concrete common data classes. Having this kind of definition at one place avoids error-prone repeating of these common attributes within the definition of every concrete common data class. +The diagram shows also the attributes per type of common data class defined in this document. Optional attributes have multiplicity [0..1]. Some common data classes define conditions on one or more of their attributes. In this diagram, this is the case for both BaseComposedCDC and BasePrimitiveCDC, with conditions "AC_DLNDA_M" and "AC_DLN_M"; The definition of condition is available for each data object involved in the condition and refers to Presence conditions introduced in IEC61850-7-3, Clause 5.', htmlDescription='

All common data classes defined in this document inherit their structure from the abstract CDC class defined in IEC 61850-7-2, or more precisely, from one of its abstract subclasses (PrimitiveCDC or ComposedCDC). Common data classes (CDC-s) are used as types for data objects of logical nodes, and are composed of data attributes, which are of type FCDA (functionally constrained data attribute), and some are CDCs themselves. The generic structure of common data classes defined in IEC61850-7-2 comprises the attributes (e.g., name and reference, functional constraints and trigger options), and the services depending on a functional constraint. Currently, they are all modelled with operations (services).

IEC 61850-7-3 adds concrete data attributes, starting with common ones defined in abstract classes BasePrimitiveCDC and BaseComposedCDC, in order to complete the definition of concrete common data classes. Having this kind of definition at one place avoids error-prone repeating of these common attributes within the definition of every concrete common data class.

The diagram shows also the attributes per type of common data class defined in this document. Optional attributes have multiplicity [0..1]. Some common data classes define conditions on one or more of their attributes. In this diagram, this is the case for both BaseComposedCDC and BasePrimitiveCDC, with conditions "AC_DLNDA_M" and "AC_DLN_M"; The definition of condition is available for each data object involved in the condition and refers to Presence conditions introduced in IEC61850-7-3, Clause 5.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=2, _dependenciesAsTarget=3, _classes=3, _childPackages=6] +2024-09-08 15:11:36,148 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=WG10, _depth=1, _eaElementID=2005, _objData=UmlObjectData [id=113, uuid={4164E3FE-EFCF-425a-9566-C2A5F26DD145}, since=null, name=IEC61850_7_3, alias=, stereotype=, visibility=public, txtDescription='Part 7-3, clauses 5, 6 (except for 6.2.7 and 6.2.8 - discussion on quality), 7, 8, annex A, annex D.', htmlDescription='

Part 7-3, clauses 5, 6 (except for 6.2.7 and 6.2.8 - discussion on quality), 7, 8, annex A, annex D.

'], _modelId=58, _selfDependent=true, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2006, uuid={D48A9837-1371-4b1a-8D7F-00C9E8036560}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: This should move to 7-2.', htmlDescription='

TODO: This should move to 7-2.

'], _containingPackage=IEC61850_7_3, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=IEC61850_7_3, _objData=UmlObjectData [id=227, uuid={F484E7B4-1E12-4de6-B276-87F2C5E6E00D}, since=null, name=IEC61850_7_3, alias=, stereotype=, visibility=public, txtDescription='This diagram: +- shows the content of this package, as well as dependencies to other parts of the model, and, +- highlights the sub-packages contained in IEC61850-7-3 required to generate the document automatically (note: for FC table in Annex B, we also need the enum FcKind from 7-2, not shown here). +About dependencies of DA sub-packages: +- CommonAcsiDAs, BasicDAs and ConstructedDAs are all DataAttribute-s from the meta-model, thus they depend on MetaModel, which in turn uses core types and thus depends on CoreTypes. +- CommonAcsiDAs, BasicDAs and ConstructedDAs use also core types, thus they depend on CoreTypes. +- ConstructedDAs use enumerations, so they depend on DAEnums. +- Finally, ConstructedDAs types are composed of primitive DAs, thus dependency to BasicDAs. +FCDAs package contains "helper" explicit types, which shield CDCs and LNs from all the complexity of IEC61850 datatype system. These are the types used to define attributes of CommonDataClass-es. Since FCDAs derive from an abstract meta-model type, they depend on MetaModel. And since they "decorate" data attribute types, they also depend on ConstructedDAs, CommonAcsiDAs and BasicDAs. +Finally, CDCs derive from the meta-model PrimitiveCDC and ComposedCDC and thus depend on MetaModel. Also, their attributes use FCDAs as types, so they all depend on FCDAs package.', htmlDescription='

This diagram:

  • shows the content of this package, as well as dependencies to other parts of the model, and,
  • highlights the sub-packages contained in IEC61850-7-3 required to generate the document automatically (note: for FC table in Annex B, we also need the enum FcKind from 7-2, not shown here).

About dependencies of DA sub-packages:

  • CommonAcsiDAs, BasicDAs and ConstructedDAs are all DataAttribute-s from the meta-model, thus they depend on MetaModel, which in turn uses core types and thus depends on CoreTypes.
  • CommonAcsiDAs, BasicDAs and ConstructedDAs use also core types, thus they depend on CoreTypes.
  • ConstructedDAs use enumerations, so they depend on DAEnums.
  • Finally, ConstructedDAs types are composed of primitive DAs, thus dependency to BasicDAs.

FCDAs package contains "helper" explicit types, which shield CDCs and LNs from all the complexity of IEC61850 datatype system. These are the types used to define attributes of CommonDataClass-es. Since FCDAs derive from an abstract meta-model type, they depend on MetaModel. And since they "decorate" data attribute types, they also depend on ConstructedDAs, CommonAcsiDAs and BasicDAs.

Finally, CDCs derive from the meta-model PrimitiveCDC and ComposedCDC and thus depend on MetaModel. Also, their attributes use FCDAs as types, so they all depend on FCDAs package.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=2, _dependenciesAsTarget=1, _classes=1, _childPackages=6] +2024-09-08 15:11:36,148 [main] INFO PackageBuilder - processing package IEC61850_7_4 (4) ... +2024-09-08 15:11:36,148 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=IEC61850_7_4, _objData=UmlObjectData [id=264, uuid={53319A3A-F127-44ff-9189-57CBBD02C7D3}, since=null, name=IEC61850_7_4, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the content of this package, as well as dependencies to other parts of the model. +Note: Highlighted sub-packages contained in IEC61850-7-4 are required to generate the document automatically. Package IEC61850_5::Functions is also required to generate IEC61850-7-4, but is not shown here.', htmlDescription='

This diagram shows the content of this package, as well as dependencies to other parts of the model.

Note: Highlighted sub-packages contained in IEC61850-7-4 are required to generate the document automatically. Package IEC61850_5::Functions is also required to generate IEC61850-7-4, but is not shown here.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:36,149 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = WG10::IEC61850_7_4->WG10::IEC61850_7_2, _objData=UmlObjectData [id=2896, uuid={601FCB98-A23F-4bb9-9093-C5EB70806F8B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,149 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = WG10::IEC61850_7_4->WG10::IEC61850_7_3, _objData=UmlObjectData [id=2897, uuid={5A68C091-F611-4fb1-91BF-9B547D41800A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,149 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->WG10::IEC61850_7_4, _objData=UmlObjectData [id=3439, uuid={E2817A04-CD9C-40de-8B67-F4454ADA8AB4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,149 [main] DEBUG PackageBuilder - Updated target of package dependency DependencyBuilder [_kind=PACKAGE, qName = WG10::IEC61850_7_3->WG10::IEC61850_7_4, _objData=UmlObjectData [id=3445, uuid={59C2B380-F257-47a2-9628-193034DD739F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,149 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = WG10::IEC61850_7_4->null, _objData=UmlObjectData [id=3451, uuid={B8B9C543-69FC-4204-9AA3-FDDAAAD9C3EF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,149 [main] TRACE ClassBuilder - Class IEC61850_7_4Namespace (0 in package IEC61850_7_4) +2024-09-08 15:11:36,150 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61850_7_4::IEC61850_7_4Namespace, _objData=UmlObjectData [id=6702, uuid={6527593D-CDA0-4903-8ABF-513B14D57D7E}, since=null, name=name, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=IEC61850-7-4:2009A, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,150 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61850_7_4::IEC61850_7_4Namespace, _objData=UmlObjectData [id=3313, uuid={297A50AD-D312-4db9-91AC-4AB583AB4C61}, since=null, name=id, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=IEC61850-7-4, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,150 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61850_7_4::IEC61850_7_4Namespace, _objData=UmlObjectData [id=3314, uuid={57E389F5-DA9F-44fa-BF8F-A75E17BA3A9C}, since=null, name=version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2009, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,150 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61850_7_4::IEC61850_7_4Namespace, _objData=UmlObjectData [id=3315, uuid={371CE8BB-CE62-4896-B315-2FC5882E6E96}, since=null, name=revision, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=A, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,150 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC61850_7_4::IEC61850_7_4Namespace, _objData=UmlObjectData [id=3316, uuid={19D2D8C1-58E8-4bb8-A010-3E816E9BB6A7}, since=null, name=date, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2011-08-01, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,150 [main] TRACE ClassBuilder - read from EA: IEC61850_7_4::IEC61850_7_4Namespace +2024-09-08 15:11:36,151 [main] INFO PackageBuilder - processing package Abbreviations (2) ... +2024-09-08 15:11:36,151 [main] ERROR EaTables - [+++ EA ordering problem for 2 class(s) in Abbreviations (manually move back/forth a class to initiate EA internal ordering update!): +, +++ class AbbrTermAny: pos = 0 +, +++ class AbbrTermZ: pos = 0 DUPLICATE +] +2024-09-08 15:11:36,151 [main] TRACE ClassBuilder - Class AbbrTermAny (0 in package Abbreviations) +2024-09-08 15:11:36,152 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abbreviations::AbbrTermAny, _objData=UmlObjectData [id=4656, uuid={DB31AFEA-95CB-4f26-851B-C6845001F6A1}, since=null, name=A, alias=, stereotype=enum, visibility=public, txtDescription='Current', htmlDescription='

Current

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,152 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abbreviations::AbbrTermAny, _objData=UmlObjectData [id=4669, uuid={8FEF349C-B8A3-4472-AA7A-25B33DD6504C}, since=null, name=Alm, alias=, stereotype=enum, visibility=public, txtDescription='Alarm', htmlDescription='

Alarm

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,152 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abbreviations::AbbrTermAny, _objData=UmlObjectData [id=4670, uuid={6802A396-10CF-4962-9B8D-234241010FB0}, since=null, name=Amp, alias=, stereotype=enum, visibility=public, txtDescription='Current non-phase-related', htmlDescription='

Current non-phase-related

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,152 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abbreviations::AbbrTermAny, _objData=UmlObjectData [id=5118, uuid={6D8C6E2C-0BE4-4fa0-84E6-245887A91960}, since=null, name=Z, alias=, stereotype=enum, visibility=public, txtDescription='Impedance', htmlDescription='

Impedance

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,152 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abbreviations::AbbrTermAny, _objData=UmlObjectData [id=5120, uuid={8BE86F70-CEF5-44f5-B0DB-FBF9CFB13D99}, since=null, name=Z1, alias=, stereotype=enum, visibility=public, txtDescription='Positive sequence impedance', htmlDescription='

Positive sequence impedance

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,152 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abbreviations::AbbrTermAny, _objData=UmlObjectData [id=6659, uuid={8D280E43-C576-4d95-935C-6E530468F36F}, since=null, name=aDummy, alias=, stereotype=enum, visibility=public, txtDescription='Dummy lower-case term.', htmlDescription='

Dummy lower-case term.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,152 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abbreviations::AbbrTermAny, _objData=UmlObjectData [id=6660, uuid={B809BFED-578C-4b26-8C61-FED747E2A4DD}, since=null, name=ppm, alias=, stereotype=enum, visibility=public, txtDescription='ppm', htmlDescription='

ppm

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,152 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abbreviations::AbbrTermAny, _objData=UmlObjectData [id=6661, uuid={5C1D9A82-2A47-462d-A1D9-C380BD2030D2}, since=null, name=km, alias=, stereotype=enum, visibility=public, txtDescription='Kilometer', htmlDescription='

Kilometer

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,152 [main] TRACE ClassBuilder - read from EA: Abbreviations::AbbrTermAny +2024-09-08 15:11:36,152 [main] TRACE ClassBuilder - Class AbbrTermZ (0 in package Abbreviations) +2024-09-08 15:11:36,152 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abbreviations::AbbrTermZ, _objData=UmlObjectData [id=5119, uuid={2C408652-0CD1-4f36-9DFA-D77659E3BBEB}, since=null, name=Z0, alias=, stereotype=enum, visibility=public, txtDescription='Zero sequence impedance', htmlDescription='

Zero sequence impedance

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,153 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abbreviations::AbbrTermZ, _objData=UmlObjectData [id=5123, uuid={F07FBC36-F939-4600-ADDC-9CBE7ECE7805}, since=null, name=Zro, alias=, stereotype=enum, visibility=public, txtDescription='Zero sequence method', htmlDescription='

Zero sequence method

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,153 [main] TRACE ClassBuilder - read from EA: Abbreviations::AbbrTermZ +2024-09-08 15:11:36,153 [main] INFO PackageBuilder - processing package DetailedDiagrams (0) ... +2024-09-08 15:11:36,153 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=DetailedDiagrams, _objData=UmlObjectData [id=274, uuid={078C1121-0816-48b8-9FBD-88404F5CB846}, since=null, name=AbbreviationsA-O, alias=, stereotype=, visibility=public, txtDescription='Abbreviations (A-O) used to create names of data objects within logical nodes.', htmlDescription='

Abbreviations (A-O) used to create names of data objects within logical nodes.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:36,154 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Abbreviations, _depth=3, _eaElementID=3043, _objData=UmlObjectData [id=167, uuid={E0A5EC9F-B83F-4cb0-A4D3-B089CBBF0467}, since=null, name=DetailedDiagrams, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=DetailedDiagrams, _objData=UmlObjectData [id=274, uuid={078C1121-0816-48b8-9FBD-88404F5CB846}, since=null, name=AbbreviationsA-O, alias=, stereotype=, visibility=public, txtDescription='Abbreviations (A-O) used to create names of data objects within logical nodes.', htmlDescription='

Abbreviations (A-O) used to create names of data objects within logical nodes.

'], _portrait=true, _kind=LOGICAL]] +2024-09-08 15:11:36,154 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_4, _depth=2, _eaElementID=2330, _objData=UmlObjectData [id=131, uuid={18FE7477-F22D-4936-90FF-AC0956DBE9EB}, since=null, name=Abbreviations, alias=Abbreviated terms, stereotype=, visibility=public, txtDescription='The following terms are used to build concatenated data object names. For example, ChNum is constructed by using two terms "Ch" which stands for "Channel" and "Num" which stands for "Number". Thus the concatenated name represents a "channel number".', htmlDescription='

The following terms are used to build concatenated data object names. For example, ChNum is constructed by using two terms "Ch" which stands for "Channel" and "Num" which stands for "Number". Thus the concatenated name represents a "channel number".

'], _modelId=58, _selfDependent=false, _classes=2, _childPackages=1] +2024-09-08 15:11:36,154 [main] INFO PackageBuilder - processing package Functions (3) ... +2024-09-08 15:11:36,154 [main] INFO PackageBuilder - processing package ProtectionEq (1) ... +2024-09-08 15:11:36,155 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=ProtectionEq, _objData=UmlObjectData [id=276, uuid={AAE06D8B-8D39-45e1-8B2E-518C8AAB94CC}, since=null, name=ProtectionEq, alias=, stereotype=, visibility=public, txtDescription='Overview of relations between protection functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).', htmlDescription='

Overview of relations between protection functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:36,155 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = Functions::ProtectionEq->null, _objData=UmlObjectData [id=2796, uuid={5B01DA92-2B41-4efd-9319-7B4B6E111957}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,155 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = Functions::ProtectionEq->null, _objData=UmlObjectData [id=2797, uuid={22C10575-60D8-4d36-9D17-44F610D9BC33}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,155 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2362, uuid={E011FC6A-3D65-49f6-B8DF-958F54773350}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling notes: +- In two cases, we did not create function (RDIR, directional element, and RMXU, differential measurements), but provide dependencies of other functions to the 61850-7-4 RDIR and RMXU directly. +- The supertype "CurrentRelay61850" has been created for the needs of mapping to CIM model only and is ignored for 61850. +- Classes in violet (temporarily) are those that have unicode hex-numbers in their iecRef tag - we'll change the colour to white after the tool gets support for correct displaying of those unicode numbers. +Modelling notes 2: +- PowerOverspeed is called POWS in 61850-5, but has no LN in 61850-7-4. +- Synchrocheck (RSYN, 25) is defined twice in 61850-5 (in P and in R). +- RPSB (PowerSwingBlockingProt) has the same IEEE ref and definition like PPAM (PhaseAngleOrOutOfStepProt).', htmlDescription='

Modelling notes:

  • In two cases, we did not create function (RDIR, directional element, and RMXU, differential measurements), but provide dependencies of other functions to the 61850-7-4 RDIR and RMXU directly.
  • The supertype "CurrentRelay61850" has been created for the needs of mapping to CIM model only and is ignored for 61850.
  • Classes in violet (temporarily) are those that have unicode hex-numbers in their iecRef tag - we'll change the colour to white after the tool gets support for correct displaying of those unicode numbers.

Modelling notes 2:

  • PowerOverspeed is called POWS in 61850-5, but has no LN in 61850-7-4.
  • Synchrocheck (RSYN, 25) is defined twice in 61850-5 (in P and in R).
  • RPSB (PowerSwingBlockingProt) has the same IEEE ref and definition like PPAM (PhaseAngleOrOutOfStepProt).
'], _containingPackage=ProtectionEq, _otherEndName=] +2024-09-08 15:11:36,155 [main] TRACE ClassBuilder - Class BusbarProt (6 in package ProtectionEq) +2024-09-08 15:11:36,156 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = ProtectionEq::BusbarProt->null, _objData=UmlObjectData [id=2888, uuid={666DE986-59DC-40fa-9FF2-C90F6F83395B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,156 [main] TRACE ClassBuilder - read from EA: ProtectionEq::BusbarProt +2024-09-08 15:11:36,156 [main] TRACE ClassBuilder - Class DirectionalProt (12 in package ProtectionEq) +2024-09-08 15:11:36,156 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = ProtectionEq::DirectionalProt->null, _objData=UmlObjectData [id=2876, uuid={1D8C878B-9F8C-4292-A1AD-714B0D1A64F0}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,156 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = ProtectionEq::DirectionalProt->null, _objData=UmlObjectData [id=3401, uuid={EE87DADE-74B8-44be-9DFA-6D6A6425C350}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,156 [main] TRACE ClassBuilder - read from EA: ProtectionEq::DirectionalProt +2024-09-08 15:11:36,156 [main] TRACE ClassBuilder - Class DirectionalPowerProt (13 in package ProtectionEq) +2024-09-08 15:11:36,156 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = ProtectionEq::DirectionalPowerProt->null, _objData=UmlObjectData [id=2872, uuid={DD4B3FA8-B91D-4755-89D6-176AA40B2C8A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,156 [main] TRACE ClassBuilder - read from EA: ProtectionEq::DirectionalPowerProt +2024-09-08 15:11:36,156 [main] TRACE ClassBuilder - Class LineDifferentialProt (23 in package ProtectionEq) +2024-09-08 15:11:36,157 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = ProtectionEq::LineDifferentialProt->null, _objData=UmlObjectData [id=2849, uuid={DA0D3EC5-D7E4-421c-B2B4-821CAC8B845A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,157 [main] TRACE ClassBuilder - read from EA: ProtectionEq::LineDifferentialProt +2024-09-08 15:11:36,157 [main] TRACE ClassBuilder - Class PowerFactorProt (32 in package ProtectionEq) +2024-09-08 15:11:36,157 [main] TRACE ClassBuilder - read from EA: ProtectionEq::PowerFactorProt +2024-09-08 15:11:36,158 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Functions, _depth=3, _eaElementID=2361, _objData=UmlObjectData [id=133, uuid={CC31C623-D0D5-4dd4-9355-2765A359BC33}, since=null, name=ProtectionEq, alias=Protection functions, stereotype=, visibility=public, txtDescription='IEC61850-7-4: groups P, R. +IEC61850-5: clause 8.7.1, 8.7.2.', htmlDescription='

IEC61850-7-4: groups P, R.

IEC61850-5: clause 8.7.1, 8.7.2.

'], _modelId=58, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2362, uuid={E011FC6A-3D65-49f6-B8DF-958F54773350}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling notes: +- In two cases, we did not create function (RDIR, directional element, and RMXU, differential measurements), but provide dependencies of other functions to the 61850-7-4 RDIR and RMXU directly. +- The supertype "CurrentRelay61850" has been created for the needs of mapping to CIM model only and is ignored for 61850. +- Classes in violet (temporarily) are those that have unicode hex-numbers in their iecRef tag - we'll change the colour to white after the tool gets support for correct displaying of those unicode numbers. +Modelling notes 2: +- PowerOverspeed is called POWS in 61850-5, but has no LN in 61850-7-4. +- Synchrocheck (RSYN, 25) is defined twice in 61850-5 (in P and in R). +- RPSB (PowerSwingBlockingProt) has the same IEEE ref and definition like PPAM (PhaseAngleOrOutOfStepProt).', htmlDescription='

Modelling notes:

  • In two cases, we did not create function (RDIR, directional element, and RMXU, differential measurements), but provide dependencies of other functions to the 61850-7-4 RDIR and RMXU directly.
  • The supertype "CurrentRelay61850" has been created for the needs of mapping to CIM model only and is ignored for 61850.
  • Classes in violet (temporarily) are those that have unicode hex-numbers in their iecRef tag - we'll change the colour to white after the tool gets support for correct displaying of those unicode numbers.

Modelling notes 2:

  • PowerOverspeed is called POWS in 61850-5, but has no LN in 61850-7-4.
  • Synchrocheck (RSYN, 25) is defined twice in 61850-5 (in P and in R).
  • RPSB (PowerSwingBlockingProt) has the same IEEE ref and definition like PPAM (PhaseAngleOrOutOfStepProt).
'], _containingPackage=ProtectionEq, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=ProtectionEq, _objData=UmlObjectData [id=276, uuid={AAE06D8B-8D39-45e1-8B2E-518C8AAB94CC}, since=null, name=ProtectionEq, alias=, stereotype=, visibility=public, txtDescription='Overview of relations between protection functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).', htmlDescription='

Overview of relations between protection functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=2, _classes=5 +2024-09-08 15:11:36,158 [main] INFO PackageBuilder - processing package ControlEq (2) ... +2024-09-08 15:11:36,158 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=ControlEq, _objData=UmlObjectData [id=277, uuid={67D0A185-B526-46a0-BD98-E5FF9C802050}, since=null, name=ControlEq, alias=, stereotype=, visibility=public, txtDescription='Overview of relations between control functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).', htmlDescription='

Overview of relations between control functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:36,158 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = Functions::ControlEq->null, _objData=UmlObjectData [id=2780, uuid={CB8A7C56-CC80-40db-9240-39C0BC8FCF3A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,159 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = Functions::ControlEq->null, _objData=UmlObjectData [id=2781, uuid={BC522B12-05AB-4532-A2CA-EC73B8363658}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,159 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = Functions::ControlEq->null, _objData=UmlObjectData [id=2782, uuid={8390B365-348E-4e04-966A-68665FB8F8F6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,159 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2419, uuid={8B884C42-85F3-4dd6-BE1D-08B251F8B706}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: +61850-5 defines CILO (Interlocking) twice: in P and in C sub-clauses. We keep the more comprehensive (C) definition in one place.', htmlDescription='

Modelling note:

61850-5 defines CILO (Interlocking) twice: in P and in C sub-clauses. We keep the more comprehensive (C) definition in one place.

'], _containingPackage=ControlEq, _otherEndName=] +2024-09-08 15:11:36,159 [main] TRACE ClassBuilder - Class AlarmHandler (0 in package ControlEq) +2024-09-08 15:11:36,159 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = ControlEq::AlarmHandler->null, _objData=UmlObjectData [id=2795, uuid={D1DB0DF8-3CC9-4c3e-84B5-B1A6AFDFB19B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,159 [main] TRACE ClassBuilder - read from EA: ControlEq::AlarmHandler +2024-09-08 15:11:36,159 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Functions, _depth=3, _eaElementID=2418, _objData=UmlObjectData [id=134, uuid={B4C6979B-468E-486a-A2F8-E066A73DABC7}, since=null, name=ControlEq, alias=Control functions, stereotype=, visibility=public, txtDescription='IEC61850-7-4: groups C, A (some P and G). +IEC61850-5: clause 8.8.1, 8.8.3.', htmlDescription='

IEC61850-7-4: groups C, A (some P and G).

IEC61850-5: clause 8.8.1, 8.8.3.

'], _modelId=58, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2419, uuid={8B884C42-85F3-4dd6-BE1D-08B251F8B706}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: +61850-5 defines CILO (Interlocking) twice: in P and in C sub-clauses. We keep the more comprehensive (C) definition in one place.', htmlDescription='

Modelling note:

61850-5 defines CILO (Interlocking) twice: in P and in C sub-clauses. We keep the more comprehensive (C) definition in one place.

'], _containingPackage=ControlEq, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=ControlEq, _objData=UmlObjectData [id=277, uuid={67D0A185-B526-46a0-BD98-E5FF9C802050}, since=null, name=ControlEq, alias=, stereotype=, visibility=public, txtDescription='Overview of relations between control functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).', htmlDescription='

Overview of relations between control functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=3, _classes=1 +2024-09-08 15:11:36,159 [main] INFO PackageBuilder - processing package MeasurementsAndMetering (5) ... +2024-09-08 15:11:36,160 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=MeasurementsAndMetering, _objData=UmlObjectData [id=280, uuid={F63C5BE7-8D4F-4037-A98E-93A41FFE8E55}, since=null, name=MeasurementsAndMetering, alias=, stereotype=, visibility=public, txtDescription='Overview of relations between measurement and metering functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).', htmlDescription='

Overview of relations between measurement and metering functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:36,160 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = Functions::MeasurementsAndMetering->null, _objData=UmlObjectData [id=2742, uuid={CC5085F3-A137-4156-AC8A-24B9D984F2EC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,161 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2451, uuid={E9622742-71B7-43fd-9AB4-D3130C376E8C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling notes: +- We have split Measurement, Meter, Harmonics and interharmonics, and Environmental measurement into explicit concepts, to make their difference obvious (since they are realised by different LNs). +- In IEC61850-5, power quality functions are a separate clause.', htmlDescription='

Modelling notes:

  • We have split Measurement, Meter, Harmonics and interharmonics, and Environmental measurement into explicit concepts, to make their difference obvious (since they are realised by different LNs).
  • In IEC61850-5, power quality functions are a separate clause.
'], _containingPackage=MeasurementsAndMetering, _otherEndName=] +2024-09-08 15:11:36,161 [main] TRACE ClassBuilder - Class ThreePhaseMeasurement (0 in package MeasurementsAndMetering) +2024-09-08 15:11:36,161 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = MeasurementsAndMetering::ThreePhaseMeasurement->null, _objData=UmlObjectData [id=2748, uuid={58E9D6B7-D856-4627-A9CD-FFB197524811}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,161 [main] TRACE ClassBuilder - read from EA: MeasurementsAndMetering::ThreePhaseMeasurement +2024-09-08 15:11:36,161 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Functions, _depth=3, _eaElementID=2450, _objData=UmlObjectData [id=137, uuid={762C49D7-5396-40df-AF24-E06C6F1D6D68}, since=null, name=MeasurementsAndMetering, alias=Measuring and metering functions, stereotype=, visibility=public, txtDescription='IEC61850-7-4: groups M, Q. +IEC61850-5: clause 8.8.5, 8.8.6.', htmlDescription='

IEC61850-7-4: groups M, Q.

IEC61850-5: clause 8.8.5, 8.8.6.

'], _modelId=58, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2451, uuid={E9622742-71B7-43fd-9AB4-D3130C376E8C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling notes: +- We have split Measurement, Meter, Harmonics and interharmonics, and Environmental measurement into explicit concepts, to make their difference obvious (since they are realised by different LNs). +- In IEC61850-5, power quality functions are a separate clause.', htmlDescription='

Modelling notes:

  • We have split Measurement, Meter, Harmonics and interharmonics, and Environmental measurement into explicit concepts, to make their difference obvious (since they are realised by different LNs).
  • In IEC61850-5, power quality functions are a separate clause.
'], _containingPackage=MeasurementsAndMetering, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=MeasurementsAndMetering, _objData=UmlObjectData [id=280, uuid={F63C5BE7-8D4F-4037-A98E-93A41FFE8E55}, since=null, name=MeasurementsAndMetering, alias=, stereotype=, visibility=public, txtDescription='Overview of relations between measurement and metering functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).', htmlDescription='

Overview of relations between measurement and metering functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=1, _classes=1 +2024-09-08 15:11:36,161 [main] INFO PackageBuilder - processing package SystemWide (6) ... +2024-09-08 15:11:36,161 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=SystemWide, _objData=UmlObjectData [id=281, uuid={A35E2C46-366F-432c-A641-28D8BAD7D922}, since=null, name=SystemWide, alias=, stereotype=, visibility=public, txtDescription='Overview of relations between system-wide functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).', htmlDescription='

Overview of relations between system-wide functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:36,162 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = Functions::SystemWide->null, _objData=UmlObjectData [id=2730, uuid={D14B5B90-8C79-4598-A45C-DAD660474084}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,162 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = Functions::SystemWide->null, _objData=UmlObjectData [id=2731, uuid={0ABB3171-2EAE-446b-B81C-098AD39433C9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,162 [main] TRACE ClassBuilder - Class LogicalDeviceData (4 in package SystemWide) +2024-09-08 15:11:36,162 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = SystemWide::LogicalDeviceData->null, _objData=UmlObjectData [id=2738, uuid={A065F8ED-0114-4e46-8A81-404C86385F2A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,162 [main] TRACE ClassBuilder - read from EA: SystemWide::LogicalDeviceData +2024-09-08 15:11:36,163 [main] TRACE ClassBuilder - Class PhysicalDeviceData (6 in package SystemWide) +2024-09-08 15:11:36,163 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = SystemWide::PhysicalDeviceData->null, _objData=UmlObjectData [id=2735, uuid={E0D934B8-520F-44c2-9AF8-B3B81C663ABF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,163 [main] TRACE ClassBuilder - read from EA: SystemWide::PhysicalDeviceData +2024-09-08 15:11:36,163 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Functions, _depth=3, _eaElementID=2470, _objData=UmlObjectData [id=138, uuid={26D07281-1EB3-4a50-AB7A-51B9DA70BC2E}, since=null, name=SystemWide, alias=System-wide functions, stereotype=, visibility=public, txtDescription='IEC61850-7-4: group L (some G), annex D. +IEC61850-5: clause 8.9, 8.10, 8.11.', htmlDescription='

IEC61850-7-4: group L (some G), annex D.

IEC61850-5: clause 8.9, 8.10, 8.11.

'], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=SystemWide, _objData=UmlObjectData [id=281, uuid={A35E2C46-366F-432c-A641-28D8BAD7D922}, since=null, name=SystemWide, alias=, stereotype=, visibility=public, txtDescription='Overview of relations between system-wide functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).', htmlDescription='

Overview of relations between system-wide functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=2, _classes=2 +2024-09-08 15:11:36,163 [main] INFO PackageBuilder - processing package PrimaryEq (7) ... +2024-09-08 15:11:36,163 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=PrimaryEq, _objData=UmlObjectData [id=282, uuid={B463DCB4-0C4A-4ce6-8BBB-FFB3955B7D76}, since=null, name=PrimaryEq, alias=, stereotype=, visibility=public, txtDescription='Overview of relations between primary equipment functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).', htmlDescription='

Overview of relations between primary equipment functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:36,164 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = Functions::PrimaryEq->null, _objData=UmlObjectData [id=2665, uuid={FD1D4851-6E6B-4b6e-B70D-5845E5626820}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,164 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = Functions::PrimaryEq->null, _objData=UmlObjectData [id=2670, uuid={0CE7939E-BB12-453e-A921-2F7AC739D7F0}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,164 [main] ERROR EaTables - [+++ EA ordering problem for 2 class(s) in PrimaryEq (manually move back/forth a class to initiate EA internal ordering update!): +, +++ class AuxiliaryNetwork: pos = 0 +, +++ class GenericIO: pos = 0 DUPLICATE +] +2024-09-08 15:11:36,164 [main] TRACE ClassBuilder - Class AuxiliaryNetwork (0 in package PrimaryEq) +2024-09-08 15:11:36,165 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = PrimaryEq::AuxiliaryNetwork->null, _objData=UmlObjectData [id=2727, uuid={71C8F66D-33AE-4d0c-8B16-EE0E777397A2}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,165 [main] TRACE ClassBuilder - read from EA: PrimaryEq::AuxiliaryNetwork +2024-09-08 15:11:36,165 [main] TRACE ClassBuilder - Class GenericIO (0 in package PrimaryEq) +2024-09-08 15:11:36,165 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = PrimaryEq::GenericIO->null, _objData=UmlObjectData [id=2713, uuid={974BA3EA-23AA-4b70-8964-EA8FD90B4327}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,165 [main] TRACE ClassBuilder - read from EA: PrimaryEq::GenericIO +2024-09-08 15:11:36,165 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=Functions, _depth=3, _eaElementID=2483, _objData=UmlObjectData [id=139, uuid={B932ABA6-66E2-4b24-999D-953BAB28FBE0}, since=null, name=PrimaryEq, alias=Primary equipment functions, stereotype=, visibility=public, txtDescription='IEC61850-7-4: groups X, S, T, Y, Z. +IEC61850-5: clause 8.12.', htmlDescription='

IEC61850-7-4: groups X, S, T, Y, Z.

IEC61850-5: clause 8.12.

'], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=PrimaryEq, _objData=UmlObjectData [id=282, uuid={B463DCB4-0C4A-4ce6-8BBB-FFB3955B7D76}, since=null, name=PrimaryEq, alias=, stereotype=, visibility=public, txtDescription='Overview of relations between primary equipment functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).', htmlDescription='

Overview of relations between primary equipment functions (IEC61850-5) and concrete logical nodes (IEC61850-7-4).

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=2, _classes=2 +2024-09-08 15:11:36,165 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_4, _depth=2, _eaElementID=2360, _objData=UmlObjectData [id=132, uuid={12880302-6F76-4cde-A027-F5E26FE47C00}, since=null, name=Functions, alias=Relationship between this standard and IEC 61850-5, stereotype=, visibility=public, txtDescription='This subclause presents the mappings between the logical nodes defined in IEC61850-5 (as functional requirements) and the concrete logical nodes in this IEC 61850-7-4, in form of table. +The meaning of the table columns is as follows: +- Functionality: Domain concept represented by the function. +- IEEE C37.2: Device function numbers and contact designations used in IEEE C37.2-2008, if applicable. Note that the reference to the IEEE device number does not mean the related device, but its core functionality in the context of the IEC 61850. Because of their device related definition there is not always a 1:1 relation to the function related definition of logical nodes. +- IEC 60617: Alphanumeric representation of graphical symbols according to IEC 60617, if applicable. +- LN IEC 61850-5: "requirements" logical node designation. +- LN IEC 61850-7-4: Standard (concrete) logical node designation. Note that mappings may not be one-to-one. +- Description: slightly modified description of the IEEE device number if applicable, or/and other descriptive text.', htmlDescription='

This subclause presents the mappings between the logical nodes defined in IEC61850-5 (as functional requirements) and the concrete logical nodes in this IEC 61850-7-4, in form of table.

The meaning of the table columns is as follows:

  • Functionality: Domain concept represented by the function.
  • IEEE C37.2: Device function numbers and contact designations used in IEEE C37.2-2008, if applicable. Note that the reference to the IEEE device number does not mean the related device, but its core functionality in the context of the IEC 61850. Because of their device related definition there is not always a 1:1 relation to the function related definition of logical nodes.
  • IEC 60617: Alphanumeric representation of graphical symbols according to IEC 60617, if applicable.
  • LN IEC 61850-5: "requirements" logical node designation.
  • LN IEC 61850-7-4: Standard (concrete) logical node designation. Note that mappings may not be one-to-one.
  • Description: slightly modified description of the IEEE device number if applicable, or/and other descriptive text.
'], _modelId=58, _selfDependent=false, _childPackages=5] +2024-09-08 15:11:36,165 [main] INFO PackageBuilder - processing package DOEnums (4) ... +2024-09-08 15:11:36,166 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=DOEnums, _objData=UmlObjectData [id=284, uuid={9C6AB80C-57AC-4a99-8EE8-D6B0728EF6E9}, since=null, name=DOEnums-1, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the first part of explicit enumerated types defined in 61850-7-4.', htmlDescription='

This diagram shows the first part of explicit enumerated types defined in 61850-7-4.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:36,166 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_4::DOEnums, _objData=UmlObjectData [id=2611, uuid={8EADFEEC-3679-4f92-938E-AC59BFA38B37}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,167 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2554, uuid={74ED9607-D187-49a7-AC82-2F437068C3F1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Doc says unspecified is default. This must be put on data object that uses it, unless there is an agreement that all first (=1) literals are default.', htmlDescription='

TODO: Doc says unspecified is default. This must be put on data object that uses it, unless there is an agreement that all first (=1) literals are default.

'], _containingPackage=DOEnums, _otherEndName=] +2024-09-08 15:11:36,167 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2555, uuid={7297D74B-7585-4cbe-AE50-BD9A22D99287}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling notes 1: +- In white, the enums for LNs from Ed.1 the way they have been modelled in 2003/2004 (and updated to reflect Ed.2). These concepts appeared in Ed.1 implicitly in section 6 (Data name semantics) of IEC 61850-7-4). The types are used to restrict the possible values that some INT32 attributes of Common Data Classes INS, INC or ING can take. +- In green, new ones from Ed.2. +- We have given meaningful names for types, based on the description. By convention, "Kind" is appended for all enumerated types, to distinguish them from their DA (data attribute) counterparts (this follows CIM naming rules). +- Enumeration literal strings are literally copy-pasted from IEC 61850-7-4 (so they correspond to definitions in SCL2.0). +Modelling notes 2: +- In SCL, EnumType-s are not XML enumerations (i.e., they are not defined as types that restrict string), but rather have an id attribute that mainly refers to the name of attribute that has those literals as possible value range - but not always! (see orCategory, used for orCat attribute). +- SCL defines one element (EnumType) per data object of LN, so there are in some cases two or more EnumType-s with exactly same literals, but different id. +- At present, we store that id attribute in the EA tagged value of enumeration (class). In cases there is repetition, this string will be a comma-separated list of SCL id-s. +- The order of types in the diagrams and in the EA project browser is the one as in Ed.2 Annex H, to be able to compare the original with this model.', htmlDescription='

Modelling notes 1:

  • In white, the enums for LNs from Ed.1 the way they have been modelled in 2003/2004 (and updated to reflect Ed.2). These concepts appeared in Ed.1 implicitly in section 6 (Data name semantics) of IEC 61850-7-4). The types are used to restrict the possible values that some INT32 attributes of Common Data Classes INS, INC or ING can take.
  • In green, new ones from Ed.2.
  • We have given meaningful names for types, based on the description. By convention, "Kind" is appended for all enumerated types, to distinguish them from their DA (data attribute) counterparts (this follows CIM naming rules).
  • Enumeration literal strings are literally copy-pasted from IEC 61850-7-4 (so they correspond to definitions in SCL2.0).

Modelling notes 2:

  • In SCL, EnumType-s are not XML enumerations (i.e., they are not defined as types that restrict string), but rather have an id attribute that mainly refers to the name of attribute that has those literals as possible value range - but not always! (see orCategory, used for orCat attribute).
  • SCL defines one element (EnumType) per data object of LN, so there are in some cases two or more EnumType-s with exactly same literals, but different id.
  • At present, we store that id attribute in the EA tagged value of enumeration (class). In cases there is repetition, this string will be a comma-separated list of SCL id-s.
  • The order of types in the diagrams and in the EA project browser is the one as in Ed.2 Annex H, to be able to compare the original with this model.
'], _containingPackage=DOEnums, _otherEndName=] +2024-09-08 15:11:36,167 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2556, uuid={63CF33D2-A70F-4049-98D4-82A4BA7BBB2D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: duplicate type for Mod and Beh - we use this one.', htmlDescription='

TODO: duplicate type for Mod and Beh - we use this one.

'], _containingPackage=DOEnums, _otherEndName=] +2024-09-08 15:11:36,167 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2563, uuid={02F8EA97-A4A4-4a9e-AEB0-D11FCFDD6540}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='[wg10-0234] 2 enums: CycTrMod (with first 3 literals, in text) and TrMod (with all 4 literals, using numbers). Here is single enum, like TrMod. Do we however need the two?', htmlDescription='

[wg10-0234] 2 enums: CycTrMod (with first 3 literals, in text) and TrMod (with all 4 literals, using numbers). Here is single enum, like TrMod. Do we however need the two?

'], _containingPackage=DOEnums, _otherEndName=] +2024-09-08 15:11:36,167 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2615, uuid={A6F875C8-26D2-4bf0-A5B5-DA541B8C9205}, since=null, name=$diagram://{0D26B081-293D-4b46-BF1C-0EDBD3055405}, alias=, stereotype=, visibility=public, txtDescription='DOEnums :DOEnums-3', htmlDescription='

DOEnums :DOEnums-3

'], _containingPackage=DOEnums, _otherEndName=] +2024-09-08 15:11:36,167 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2617, uuid={FA4722F2-B1BD-4ffd-9207-CD9D874F6B06}, since=null, name=LogicalNodeEnums :DOEnums-2, alias=, stereotype=, visibility=public, txtDescription='DOEnums :DOEnums-2', htmlDescription='

DOEnums :DOEnums-2

'], _containingPackage=DOEnums, _otherEndName=] +2024-09-08 15:11:36,167 [main] TRACE ClassBuilder - Class HealthKind (1 in package DOEnums) +2024-09-08 15:11:36,168 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::HealthKind, _objData=UmlObjectData [id=5150, uuid={A83AE529-BD5E-4590-BA53-C4365C995224}, since=null, name=Ok, alias=, stereotype=enum, visibility=public, txtDescription='No problems, normal operation ("green").', htmlDescription='

No problems, normal operation ("green").

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,168 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::HealthKind, _objData=UmlObjectData [id=5151, uuid={CF205A3A-45F4-4a4d-A415-331FD7BBA2F4}, since=null, name=Warning, alias=, stereotype=enum, visibility=public, txtDescription='Minor problems, but in safe operating mode ("yellow"). The exact meaning is a local issue, depending on the dedicated function/device.', htmlDescription='

Minor problems, but in safe operating mode ("yellow"). The exact meaning is a local issue, depending on the dedicated function/device.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,168 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::HealthKind, _objData=UmlObjectData [id=5152, uuid={4F6F1D0C-B192-4e03-9C10-90B88DC99D90}, since=null, name=Alarm, alias=, stereotype=enum, visibility=public, txtDescription='Severe problem, no operation possible ("red").', htmlDescription='

Severe problem, no operation possible ("red").

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,168 [main] TRACE ClassBuilder - read from EA: DOEnums::HealthKind +2024-09-08 15:11:36,168 [main] TRACE ClassBuilder - Class BehaviourModeKind (2 in package DOEnums) +2024-09-08 15:11:36,168 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::BehaviourModeKind, _objData=UmlObjectData [id=5124, uuid={FBE701F9-FCE5-43bf-B990-08ABA81BB67E}, since=null, name=on, alias=, stereotype=enum, visibility=public, txtDescription='Normal enabled state.', htmlDescription='

Normal enabled state.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,168 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::BehaviourModeKind, _objData=UmlObjectData [id=5125, uuid={0A9F8C1A-93E4-4d68-98D2-F4CED3D13B60}, since=null, name=on-blocked, alias=, stereotype=enum, visibility=public, txtDescription='Process is passively supervised.', htmlDescription='

Process is passively supervised.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,168 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::BehaviourModeKind, _objData=UmlObjectData [id=5126, uuid={7F0E8F8E-38F6-4195-A912-64FEF394A338}, since=null, name=test, alias=, stereotype=enum, visibility=public, txtDescription='Function is operated but results are indicated as test results.', htmlDescription='

Function is operated but results are indicated as test results.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,168 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::BehaviourModeKind, _objData=UmlObjectData [id=5127, uuid={004E6B35-666A-4bfc-8D09-A8C1FD0702F9}, since=null, name=test/blocked, alias=, stereotype=enum, visibility=public, txtDescription='Function is operated in test mode, but with no impact to the process.', htmlDescription='

Function is operated in test mode, but with no impact to the process.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,168 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::BehaviourModeKind, _objData=UmlObjectData [id=5128, uuid={AE0B2E23-E3AA-4aa8-96DD-5F008D2B4BD4}, since=null, name=off, alias=, stereotype=enum, visibility=public, txtDescription='Function is inactive but shows its configutation capability.', htmlDescription='

Function is inactive but shows its configutation capability.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=5, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,169 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2230, uuid={5B51D714-7804-407c-B205-E3D76E9400BC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=BehaviourModeKind, _otherEndName=?] +2024-09-08 15:11:36,169 [main] TRACE ClassBuilder - read from EA: DOEnums::BehaviourModeKind +2024-09-08 15:11:36,169 [main] TRACE ClassBuilder - Class CalcMethodKind (3 in package DOEnums) +2024-09-08 15:11:36,169 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::CalcMethodKind, _objData=UmlObjectData [id=5140, uuid={87CA6D1D-F8DE-4372-B851-A3F4D44A8D35}, since=null, name=UNSPECIFIED, alias=, stereotype=enum, visibility=public, txtDescription='Calculation of the analogue values is unspecified.', htmlDescription='

Calculation of the analogue values is unspecified.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,169 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::CalcMethodKind, _objData=UmlObjectData [id=5141, uuid={2832380C-E2BE-4076-B474-EE7315763D96}, since=null, name=TRUE_RMS, alias=, stereotype=enum, visibility=public, txtDescription='All analogue values are true r.m.s. values.', htmlDescription='

All analogue values are true r.m.s. values.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,169 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::CalcMethodKind, _objData=UmlObjectData [id=5142, uuid={F494300E-3B37-4f28-AF4A-AC4A3784781F}, since=null, name=PEAK_FUNDAMENTAL, alias=, stereotype=enum, visibility=public, txtDescription='All analogue values are peak fundamental values.', htmlDescription='

All analogue values are peak fundamental values.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,169 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::CalcMethodKind, _objData=UmlObjectData [id=5143, uuid={38FEAC7E-C6FE-4f27-AEB7-D39E85819FD9}, since=null, name=RMS_FUNDAMENTAL, alias=, stereotype=enum, visibility=public, txtDescription='All analogue values are r.m.s. fundamental values.', htmlDescription='

All analogue values are r.m.s. fundamental values.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=4, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,169 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::CalcMethodKind, _objData=UmlObjectData [id=5144, uuid={8EBEABA5-8967-4617-B131-6C656E5EFF56}, since=null, name=MIN, alias=, stereotype=enum, visibility=public, txtDescription='All analogue values are minimum values.', htmlDescription='

All analogue values are minimum values.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=5, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,169 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::CalcMethodKind, _objData=UmlObjectData [id=5145, uuid={48DA99EC-341A-48ca-9BD6-A5EA5E0DCEAE}, since=null, name=MAX, alias=, stereotype=enum, visibility=public, txtDescription='All analogue values are maximum values.', htmlDescription='

All analogue values are maximum values.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=6, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,169 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::CalcMethodKind, _objData=UmlObjectData [id=5146, uuid={44A310C3-A4A1-45ec-83E3-6107258DCADF}, since=null, name=AVG, alias=, stereotype=enum, visibility=public, txtDescription='All analogue values are average values.', htmlDescription='

All analogue values are average values.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=7, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,169 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::CalcMethodKind, _objData=UmlObjectData [id=5147, uuid={2F61A346-3145-4484-9149-9336128EC27E}, since=null, name=SDV, alias=, stereotype=enum, visibility=public, txtDescription='All analogue values are standard deviation values.', htmlDescription='

All analogue values are standard deviation values.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=8, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,169 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::CalcMethodKind, _objData=UmlObjectData [id=5148, uuid={F821777C-260D-4104-98BC-C4E6AD190C1B}, since=null, name=PREDICTION, alias=, stereotype=enum, visibility=public, txtDescription='All analogue values are long term changes over time.', htmlDescription='

All analogue values are long term changes over time.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=9, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,170 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::CalcMethodKind, _objData=UmlObjectData [id=5149, uuid={E98D045F-FE91-4988-8050-38490C7BD699}, since=null, name=RATE, alias=, stereotype=enum, visibility=public, txtDescription='All analogue values are actual changes over time calculated with the actual and previous value.', htmlDescription='

All analogue values are actual changes over time calculated with the actual and previous value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=10, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,170 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2229, uuid={FD4FE164-EB08-407d-ACA5-F90EAEBAE239}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=CalcMethodKind, _otherEndName=?] +2024-09-08 15:11:36,170 [main] TRACE ClassBuilder - read from EA: DOEnums::CalcMethodKind +2024-09-08 15:11:36,170 [main] TRACE ClassBuilder - Class BaseKind (4 in package DOEnums) +2024-09-08 15:11:36,170 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::BaseKind, _objData=UmlObjectData [id=6714, uuid={F0BE5AD0-3D10-4ed4-A903-F7D80769B82C}, since=null, name=bk1, alias=, stereotype=enum, visibility=public, txtDescription='Desc bk1.', htmlDescription='

Desc bk1.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,170 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::BaseKind, _objData=UmlObjectData [id=6715, uuid={D90B7F5B-CF15-4f40-9C36-09BB31D926B2}, since=null, name=bk2, alias=, stereotype=enum, deprecated, visibility=public, txtDescription='Desc bk2.', htmlDescription='

Desc bk2.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,170 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums::BaseKind, _objData=UmlObjectData [id=6716, uuid={910C7B3B-F66D-4965-B8C2-F0684BB5DA40}, since=null, name=bk3, alias=, stereotype=enum, visibility=public, txtDescription='Desc bk3.', htmlDescription='

Desc bk3.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,170 [main] TRACE ClassBuilder - read from EA: DOEnums::BaseKind +2024-09-08 15:11:36,172 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_4, _depth=2, _eaElementID=2549, _objData=UmlObjectData [id=141, uuid={C8A5511C-BE78-4e37-8AB0-DB3EB55BEAA0}, since=null, name=DOEnums, alias=, stereotype=, visibility=public, txtDescription='This subclause contains explicit definition of enumerated types used in 61850-7-4.', htmlDescription='

This subclause contains explicit definition of enumerated types used in 61850-7-4.

'], _modelId=58, _selfDependent=false, 1_taggedValues{dummyPackageTag=tagValue}, 6_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2554, uuid={74ED9607-D187-49a7-AC82-2F437068C3F1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Doc says unspecified is default. This must be put on data object that uses it, unless there is an agreement that all first (=1) literals are default.', htmlDescription='

TODO: Doc says unspecified is default. This must be put on data object that uses it, unless there is an agreement that all first (=1) literals are default.

'], _containingPackage=DOEnums, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2555, uuid={7297D74B-7585-4cbe-AE50-BD9A22D99287}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling notes 1: +- In white, the enums for LNs from Ed.1 the way they have been modelled in 2003/2004 (and updated to reflect Ed.2). These concepts appeared in Ed.1 implicitly in section 6 (Data name semantics) of IEC 61850-7-4). The types are used to restrict the possible values that some INT32 attributes of Common Data Classes INS, INC or ING can take. +- In green, new ones from Ed.2. +- We have given meaningful names for types, based on the description. By convention, "Kind" is appended for all enumerated types, to distinguish them from their DA (data attribute) counterparts (this follows CIM naming rules). +- Enumeration literal strings are literally copy-pasted from IEC 61850-7-4 (so they correspond to definitions in SCL2.0). +Modelling notes 2: +- In SCL, EnumType-s are not XML enumerations (i.e., they are not defined as types that restrict string), but rather have an id attribute that mainly refers to the name of attribute that has those literals as possible value range - but not always! (see orCategory, used for orCat attribute). +- SCL defines one element (EnumType) per data object of LN, so there are in some cases two or more EnumType-s with exactly same literals, but different id. +- At present, we store that id attribute in the EA tagged value of enumeration (class). In cases there is repetition, this string will be a comma-separated list of SCL id-s. +- The order of types in the diagrams and in the EA project browser is the one as in Ed.2 Annex H, to be able to compare the original with this model.', htmlDescription='

Modelling notes 1:

  • In white, the enums for LNs from Ed.1 the way they have been modelled in 2003/2004 (and updated to reflect Ed.2). These concepts appeared in Ed.1 implicitly in section 6 (Data name semantics) of IEC 61850-7-4). The types are used to restrict the possible values that some INT32 attributes of Common Data Classes INS, INC or ING can take.
  • In green, new ones from Ed.2.
  • We have given meaningful names for types, based on the description. By convention, "Kind" is appended for all enumerated types, to distinguish them from their DA (data attribute) counterparts (this follows CIM naming rules).
  • Enumeration literal strings are literally copy-pasted from IEC 61850-7-4 (so they correspond to definitions in SCL2.0).

Modelling notes 2:

  • In SCL, EnumType-s are not XML enumerations (i.e., they are not defined as types that restrict string), but rather have an id attribute that mainly refers to the name of attribute that has those literals as possible value range - but not always! (see orCategory, used for orCat attribute).
  • SCL defines one element (EnumType) per data object of LN, so there are in some cases two or more EnumType-s with exactly same literals, but different id.
  • At present, we store that id attribute in the EA tagged value of enumeration (class). In cases there is repetition, this string will be a comma-separated list of SCL id-s.
  • The order of types in the diagrams and in the EA project browser is the one as in Ed.2 Annex H, to be able to compare the original with this model.
'], _containingPackage=DOEnums, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2556, uuid={63CF33D2-A70F-4049-98D4-82A4BA7BBB2D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: duplicate type for Mod and Beh - we use this one.', htmlDescription='

TODO: duplicate type for Mod and Beh - we use this one.

'], _containingPackage=DOEnums, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2563, uuid={02F8EA97-A4A4-4a9e-AEB0-D11FCFDD6540}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='[wg10-0234] 2 enums: CycTrMod (with first 3 literals, in text) and TrMod (with all 4 literals, using numbers). Here is single enum, like TrMod. Do we however need the two?', htmlDescription='

[wg10-0234] 2 enums: CycTrMod (with first 3 literals, in text) and TrMod (with all 4 literals, using numbers). Here is single enum, like TrMod. Do we however need the two?

'], _containingPackage=DOEnums, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2615, uuid={A6F875C8-26D2-4bf0-A5B5-DA541B8C9205}, since=null, name=$diagram://{0D26B081-293D-4b46-BF1C-0EDBD3055405}, alias=, stereotype=, visibility=public, txtDescription='DOEnums :DOEnums-3', htmlDescription='

DOEnums :DOEnums-3

'], _containingPackage=DOEnums, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2617, uuid={FA4722F2-B1BD-4ffd-9207-CD9D874F6B06}, since=null, name=LogicalNodeEnums :DOEnums-2, alias=, stereotype=, visibility=public, txtDescription='DOEnums :DOEnums-2', htmlDescription='

DOEnums :DOEnums-2

'], _containingPackage=DOEnums, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=DOEnums, _objData=UmlObjectData [id=284, uuid={9C6AB80C-57AC-4a99-8EE8-D6B0728EF6E9}, since=null, name=DOEnums-1, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the first part of explicit enumerated types defined in 61850-7-4.', htmlDescription='

This diagram shows the first part of explicit enumerated types defined in 61850-7-4.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsTarget=1, _classes=4 +2024-09-08 15:11:36,172 [main] INFO PackageBuilder - processing package DerivedDAs (5) ... +2024-09-08 15:11:36,172 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=DerivedDAs, _objData=UmlObjectData [id=288, uuid={3E30CA7E-B664-4783-8B11-7F528680EA42}, since=null, name=DerivedDAs, alias=, stereotype=, visibility=public, txtDescription='Shows all enumerated data attributes used for logical nodes, with their superclasses.', htmlDescription='

Shows all enumerated data attributes used for logical nodes, with their superclasses.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:36,172 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_4::DerivedDAs, _objData=UmlObjectData [id=2559, uuid={6301627D-AA6F-45e6-85D8-0CFA45EC7C23}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,172 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_4::DerivedDAs->IEC61850_7_4::DOEnums, _objData=UmlObjectData [id=2611, uuid={8EADFEEC-3679-4f92-938E-AC59BFA38B37}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,172 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_4::DerivedDAs->IEC61850_7_2::MetaModel, _objData=UmlObjectData [id=2612, uuid={22858E00-8E19-47ff-8008-4F59161AEA7F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,173 [main] ERROR EaTables - [+++ EA ordering problem for 3 class(s) in DerivedDAs (manually move back/forth a class to initiate EA internal ordering update!): +, +++ class BehaviourMode: pos = 0 +, +++ class CalcMethod: pos = 0 DUPLICATE +, +++ class Health: pos = 0 DUPLICATE +] +2024-09-08 15:11:36,173 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2619, uuid={63FEDF68-E3BF-45a0-B4C6-263C42137E2A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: Weekday is defined in 7-3, ImplicitDAs, because it is used both in 7-3 and 7-4.', htmlDescription='

Modelling note: Weekday is defined in 7-3, ImplicitDAs, because it is used both in 7-3 and 7-4.

'], _containingPackage=DerivedDAs, _otherEndName=] +2024-09-08 15:11:36,173 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2666, uuid={523C0E7E-6F3D-4573-8E2D-308095505B6B}, since=null, name=LogicalNodeEnums :DOEnums-1, alias=, stereotype=, visibility=public, txtDescription='DOEnums: DOEnums-1', htmlDescription='

DOEnums: DOEnums-1

'], _containingPackage=DerivedDAs, _otherEndName=] +2024-09-08 15:11:36,173 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2667, uuid={9F29F90E-73EE-4b08-AFB6-D320E69C8939}, since=null, name=LogicalNodeEnums :DOEnums-2, alias=, stereotype=, visibility=public, txtDescription='DOEnums :DOEnums-2', htmlDescription='

DOEnums :DOEnums-2

'], _containingPackage=DerivedDAs, _otherEndName=] +2024-09-08 15:11:36,173 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2668, uuid={D9664C31-D02F-46d1-BC9C-9705402614FA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=DerivedDAs, _otherEndName=] +2024-09-08 15:11:36,173 [main] TRACE ClassBuilder - Class BehaviourMode (0 in package DerivedDAs) +2024-09-08 15:11:36,174 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DerivedDAs::BehaviourMode, _objData=UmlObjectData [id=5360, uuid={9ADCD45E-59E9-45ab-AC04-7BCAD34EE103}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2564, _eaTypeName=BehaviourModeKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,174 [main] DEBUG ClassBuilder - Adding BehaviourMode as subclass of EnumDA +2024-09-08 15:11:36,174 [main] TRACE ClassBuilder - read from EA: DerivedDAs::BehaviourMode +2024-09-08 15:11:36,174 [main] TRACE ClassBuilder - Class CalcMethod (0 in package DerivedDAs) +2024-09-08 15:11:36,174 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DerivedDAs::CalcMethod, _objData=UmlObjectData [id=5363, uuid={5FCE2C6C-5EFA-4fe3-88D2-F747922B4960}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2567, _eaTypeName=CalcMethodKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,174 [main] DEBUG ClassBuilder - Adding CalcMethod as subclass of EnumDA +2024-09-08 15:11:36,174 [main] TRACE ClassBuilder - read from EA: DerivedDAs::CalcMethod +2024-09-08 15:11:36,174 [main] TRACE ClassBuilder - Class Health (0 in package DerivedDAs) +2024-09-08 15:11:36,174 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DerivedDAs::Health, _objData=UmlObjectData [id=5372, uuid={D08C43FA-8B3B-4128-AC21-F8A40BC57CE0}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2568, _eaTypeName=HealthKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,175 [main] DEBUG ClassBuilder - Adding Health as subclass of EnumDA +2024-09-08 15:11:36,175 [main] TRACE ClassBuilder - read from EA: DerivedDAs::Health +2024-09-08 15:11:36,175 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_4, _depth=2, _eaElementID=2618, _objData=UmlObjectData [id=142, uuid={DD10BA94-E28D-4358-9271-2B96FF3A822A}, since=null, name=DerivedDAs, alias=Logical node enumeration data attributes, stereotype=, visibility=public, txtDescription='This package contains enumerated data attributes used for logical nodes. Not explicitly defined in the standard.', htmlDescription='

This package contains enumerated data attributes used for logical nodes. Not explicitly defined in the standard.

'], _modelId=58, _selfDependent=false, 4_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2619, uuid={63FEDF68-E3BF-45a0-B4C6-263C42137E2A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: Weekday is defined in 7-3, ImplicitDAs, because it is used both in 7-3 and 7-4.', htmlDescription='

Modelling note: Weekday is defined in 7-3, ImplicitDAs, because it is used both in 7-3 and 7-4.

'], _containingPackage=DerivedDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2666, uuid={523C0E7E-6F3D-4573-8E2D-308095505B6B}, since=null, name=LogicalNodeEnums :DOEnums-1, alias=, stereotype=, visibility=public, txtDescription='DOEnums: DOEnums-1', htmlDescription='

DOEnums: DOEnums-1

'], _containingPackage=DerivedDAs, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2667, uuid={9F29F90E-73EE-4b08-AFB6-D320E69C8939}, since=null, name=LogicalNodeEnums :DOEnums-2, alias=, stereotype=, visibility=public, txtDescription='DOEnums :DOEnums-2', htmlDescription='

DOEnums :DOEnums-2

'], _containingPackage=DerivedDAs, _otherEndName=], SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2668, uuid={D9664C31-D02F-46d1-BC9C-9705402614FA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=DerivedDAs, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=DerivedDAs, _objData=UmlObjectData [id=288, uuid={3E30CA7E-B664-4783-8B11-7F528680EA42}, since=null, name=DerivedDAs, alias=, stereotype=, visibility=public, txtDescription='Shows all enumerated data attributes used for logical nodes, with their superclasses.', htmlDescription='

Shows all enumerated data attributes used for logical nodes, with their superclasses.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=2, _dependenciesAsTarget=1, _classes=3 +2024-09-08 15:11:36,175 [main] INFO PackageBuilder - processing package DerivedCDCs (6) ... +2024-09-08 15:11:36,175 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=DerivedCDCs, _objData=UmlObjectData [id=289, uuid={CF4B4204-5A58-4f1c-9E61-68920610276D}, since=null, name=DerivedCDCs, alias=, stereotype=, visibility=public, txtDescription='Shows all derived CDCs with their supertypes.', htmlDescription='

Shows all derived CDCs with their supertypes.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:36,175 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=PACKAGE, qName = null->IEC61850_7_4::DerivedCDCs, _objData=UmlObjectData [id=2548, uuid={B4AE6551-4F69-4f85-88CD-7F5018FA54F5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,176 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_4::DerivedCDCs->IEC61850_7_3::CommonDataClasses, _objData=UmlObjectData [id=2557, uuid={95185C57-90F7-4989-93BB-36A01651B273}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,176 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_4::DerivedCDCs->IEC61850_7_3::DAEnums, _objData=UmlObjectData [id=2558, uuid={8E80EB80-DCE3-4c3d-B7B7-BA538068A4E4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,176 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_4::DerivedCDCs->IEC61850_7_4::DerivedDAs, _objData=UmlObjectData [id=2559, uuid={6301627D-AA6F-45e6-85D8-0CFA45EC7C23}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,176 [main] ERROR EaTables - [+++ EA ordering problem for 9 class(s) in DerivedCDCs (manually move back/forth a class to initiate EA internal ordering update!): +, +++ class ACTTransient: pos = 1 +, +++ class ENCBehaviourMode: pos = 3 +, +++ class ENGCalcMethod: pos = 7 +, +++ class ENSBehaviourMode: pos = 37 +, +++ class ENSHealth: pos = 42 +, +++ class SPCTransient: pos = 50 +, +++ class SPSTransient: pos = 51 +, +++ class EXYBehaviourMode: pos = 0 +, +++ class ENSEnumDA: pos = 0 DUPLICATE +] +2024-09-08 15:11:36,176 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2670, uuid={D5D49DAF-81EF-48d7-A8B6-7484F8365345}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note 1: All enumerated CDCs could have been modelled in UML as parameterized types, with the parameters for (in case of ENS) 'stVal' and 'subVal' attributes being 'BOOLEAN', 'DpStatus' and 'INT32U', respectively. We have chosen not to do it, because: +- It would be impossible to 'nicely' represent the native IEC 61850-7-3 types +- Parameterisation in UML is somewhat "exotic" concept and pretty clumsy to use, and we preferred keeping the model simple. +Modelling note 2: In white, the enum and transient CDCs from Ed.1 the way we have modelled them. In green, new ones from Ed.2.', htmlDescription='

Modelling note 1: All enumerated CDCs could have been modelled in UML as parameterized types, with the parameters for (in case of ENS) 'stVal' and 'subVal' attributes being 'BOOLEAN', 'DpStatus' and 'INT32U', respectively. We have chosen not to do it, because:

  • It would be impossible to 'nicely' represent the native IEC 61850-7-3 types
  • Parameterisation in UML is somewhat "exotic" concept and pretty clumsy to use, and we preferred keeping the model simple.

Modelling note 2: In white, the enum and transient CDCs from Ed.1 the way we have modelled them. In green, new ones from Ed.2.

'], _containingPackage=DerivedCDCs, _otherEndName=] +2024-09-08 15:11:36,177 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2722, uuid={4DF187B9-1693-4a91-AD3B-6F3DFA5768E4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=DerivedCDCs, _otherEndName=] +2024-09-08 15:11:36,177 [main] TRACE ClassBuilder - Class ACTTransient (1 in package DerivedCDCs) +2024-09-08 15:11:36,177 [main] TRACE ClassBuilder - read from EA: DerivedCDCs::ACTTransient +2024-09-08 15:11:36,177 [main] TRACE ClassBuilder - Class ENCBehaviourMode (3 in package DerivedCDCs) +2024-09-08 15:11:36,177 [main] DEBUG ClassBuilder - Adding ENCBehaviourMode as subclass of ENC +2024-09-08 15:11:36,177 [main] TRACE ClassBuilder - read from EA: DerivedCDCs::ENCBehaviourMode +2024-09-08 15:11:36,177 [main] TRACE ClassBuilder - Class ENGCalcMethod (7 in package DerivedCDCs) +2024-09-08 15:11:36,177 [main] DEBUG ClassBuilder - Adding ENGCalcMethod as subclass of ENG +2024-09-08 15:11:36,177 [main] TRACE ClassBuilder - read from EA: DerivedCDCs::ENGCalcMethod +2024-09-08 15:11:36,177 [main] TRACE ClassBuilder - Class ENSBehaviourMode (37 in package DerivedCDCs) +2024-09-08 15:11:36,178 [main] DEBUG ClassBuilder - Adding ENSBehaviourMode as subclass of ENS +2024-09-08 15:11:36,178 [main] TRACE ClassBuilder - read from EA: DerivedCDCs::ENSBehaviourMode +2024-09-08 15:11:36,178 [main] TRACE ClassBuilder - Class ENSHealth (42 in package DerivedCDCs) +2024-09-08 15:11:36,178 [main] DEBUG ClassBuilder - Adding ENSHealth as subclass of ENS +2024-09-08 15:11:36,178 [main] TRACE ClassBuilder - read from EA: DerivedCDCs::ENSHealth +2024-09-08 15:11:36,178 [main] TRACE ClassBuilder - Class SPCTransient (50 in package DerivedCDCs) +2024-09-08 15:11:36,178 [main] DEBUG ClassBuilder - Adding SPCTransient as subclass of SPC +2024-09-08 15:11:36,178 [main] TRACE ClassBuilder - read from EA: DerivedCDCs::SPCTransient +2024-09-08 15:11:36,178 [main] TRACE ClassBuilder - Class SPSTransient (51 in package DerivedCDCs) +2024-09-08 15:11:36,179 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3466, uuid={0C9FFC4C-2FE1-4b43-ACAE-7B411DBD8398}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=SPSTransient, _otherEndName=?] +2024-09-08 15:11:36,179 [main] TRACE ClassBuilder - read from EA: DerivedCDCs::SPSTransient +2024-09-08 15:11:36,179 [main] TRACE ClassBuilder - Class EXYBehaviourMode (0 in package DerivedCDCs) +2024-09-08 15:11:36,179 [main] DEBUG ClassBuilder - Adding EXYBehaviourMode as subclass of EXY +2024-09-08 15:11:36,179 [main] TRACE ClassBuilder - read from EA: DerivedCDCs::EXYBehaviourMode +2024-09-08 15:11:36,179 [main] TRACE ClassBuilder - Class ENSEnumDA (0 in package DerivedCDCs) +2024-09-08 15:11:36,179 [main] DEBUG ClassBuilder - Adding ENSEnumDA as subclass of ENS +2024-09-08 15:11:36,179 [main] TRACE ClassBuilder - read from EA: DerivedCDCs::ENSEnumDA +2024-09-08 15:11:36,179 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_4, _depth=2, _eaElementID=2669, _objData=UmlObjectData [id=143, uuid={FFA495EF-8CF0-4a81-BB6B-F1A5EEFE9F6E}, since=null, name=DerivedCDCs, alias=, stereotype=, visibility=public, txtDescription='This package contains CDC specialisations through enumeration or transient. Not explicitly defined in the standard.', htmlDescription='

This package contains CDC specialisations through enumeration or transient. Not explicitly defined in the standard.

'], _modelId=58, _selfDependent=false, 2_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2670, uuid={D5D49DAF-81EF-48d7-A8B6-7484F8365345}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note 1: All enumerated CDCs could have been modelled in UML as parameterized types, with the parameters for (in case of ENS) 'stVal' and 'subVal' attributes being 'BOOLEAN', 'DpStatus' and 'INT32U', respectively. We have chosen not to do it, because: +- It would be impossible to 'nicely' represent the native IEC 61850-7-3 types +- Parameterisation in UML is somewhat "exotic" concept and pretty clumsy to use, and we preferred keeping the model simple. +Modelling note 2: In white, the enum and transient CDCs from Ed.1 the way we have modelled them. In green, new ones from Ed.2.', htmlDescription='

Modelling note 1: All enumerated CDCs could have been modelled in UML as parameterized types, with the parameters for (in case of ENS) 'stVal' and 'subVal' attributes being 'BOOLEAN', 'DpStatus' and 'INT32U', respectively. We have chosen not to do it, because:

  • It would be impossible to 'nicely' represent the native IEC 61850-7-3 types
  • Parameterisation in UML is somewhat "exotic" concept and pretty clumsy to use, and we preferred keeping the model simple.

Modelling note 2: In white, the enum and transient CDCs from Ed.1 the way we have modelled them. In green, new ones from Ed.2.

'], _containingPackage=DerivedCDCs, _otherEndName=], SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2722, uuid={4DF187B9-1693-4a91-AD3B-6F3DFA5768E4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=DerivedCDCs, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=DerivedCDCs, _objData=UmlObjectData [id=289, uuid={CF4B4204-5A58-4f1c-9E61-68920610276D}, since=null, name=DerivedCDCs, alias=, stereotype=, visibility=public, txtDescription='Shows all derived CDCs with their supertypes.', htmlDescription='

Shows all derived CDCs with their supertypes.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=3, _dependenciesAsTarget=1, _classes=9 +2024-09-08 15:11:36,179 [main] INFO PackageBuilder - processing package LogicalNodes (7) ... +2024-09-08 15:11:36,180 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=LogicalNodes, _objData=UmlObjectData [id=291, uuid={9C304E21-9AF5-4868-98F3-894BF0B82CA2}, since=null, name=LogicalNodes, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all the logical node groups, with their contents, as well as the abstract logical nodes used by concrete logical nodes from multiple groups. The purpose of abstract logical nodes is to avoid duplication in definition of data objects which are used by multiple concrete logical nodes. Abstract logical nodes are never instantiated; Their attributes are inheritied by concrete logical nodes which are instantiable.', htmlDescription='

This diagram shows all the logical node groups, with their contents, as well as the abstract logical nodes used by concrete logical nodes from multiple groups. The purpose of abstract logical nodes is to avoid duplication in definition of data objects which are used by multiple concrete logical nodes. Abstract logical nodes are never instantiated; Their attributes are inheritied by concrete logical nodes which are instantiable.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:36,180 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=LogicalNodes, _objData=UmlObjectData [id=290, uuid={13255AEB-A18C-4620-B272-CD274CE0D4D3}, since=null, name=LNRelationToACSI, alias=, stereotype=, visibility=public, txtDescription='All logical node classes defined in this document inherit their structure from the abstract LN class defined in IEC 61850-7-2. The structure comprises the attributes (e.g., name and reference), and the services and applicable control blocks defined in IEC 61850-7-2. Currently, they are all modelled with operations (services). +IEC 61850-7-4 adds data objects as attributes, in order to complete the definition of concrete logical nodes. +The diagram shows also the attributes per type of logical node defined in this document (optional attributes have multiplicity [0..1]. Physical device logical node (LPHD) and Logical device logical node (LLN0) are concrete logical node types. On the contrary, DomainLN is an abstract logical node type (its name is shown in italic), because it serves to define the attributes that shall be inherited by every concrete domain logical node type (e.g., XCBR, PDIS). Having this kind of definition at one place avoids error-prone repeating of these common attributes within the definition of every concrete domain logical node. +Some logical nodes define conditions on one or more data objects. In this diagram, this is the case for LLN0, with the condition "C1"; The definition of condition is available for each data object involved in the condition and refers to Presence conditions introduced in IEC61850-7-3, Clause 5.', htmlDescription='

All logical node classes defined in this document inherit their structure from the abstract LN class defined in IEC 61850-7-2. The structure comprises the attributes (e.g., name and reference), and the services and applicable control blocks defined in IEC 61850-7-2. Currently, they are all modelled with operations (services).

IEC 61850-7-4 adds data objects as attributes, in order to complete the definition of concrete logical nodes.

The diagram shows also the attributes per type of logical node defined in this document (optional attributes have multiplicity [0..1]. Physical device logical node (LPHD) and Logical device logical node (LLN0) are concrete logical node types. On the contrary, DomainLN is an abstract logical node type (its name is shown in italic), because it serves to define the attributes that shall be inherited by every concrete domain logical node type (e.g., XCBR, PDIS). Having this kind of definition at one place avoids error-prone repeating of these common attributes within the definition of every concrete domain logical node.

Some logical nodes define conditions on one or more data objects. In this diagram, this is the case for LLN0, with the condition "C1"; The definition of condition is available for each data object involved in the condition and refers to Presence conditions introduced in IEC61850-7-3, Clause 5.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:36,180 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_4::LogicalNodes->IEC61850_7_4::DerivedCDCs, _objData=UmlObjectData [id=2548, uuid={B4AE6551-4F69-4f85-88CD-7F5018FA54F5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,180 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_4::LogicalNodes->IEC61850_7_2::MetaModel, _objData=UmlObjectData [id=2549, uuid={8DDA0A46-B4B5-429b-B942-52E274F06ACA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,180 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850_7_4::LogicalNodes->IEC61850_7_3::CommonDataClasses, _objData=UmlObjectData [id=2550, uuid={66DD71D8-83CD-4fb8-A5D8-44AE4E4C3795}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,180 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2724, uuid={D0767D8F-CFB4-484b-B888-3084B98E911B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: Original IEC 61850-7-4 explicitly defines a "Common Logical Node", which inherits from the (abstract) Logical Node, defined in ACSI, and has as subtypes the LLN0 and all the Domain Logical Nodes. It only serves to specify the common mandatory attributes of the subtypes (i.e., of all logical nodes but the LPHD). The "Common Logical Node" specifies also some optional attributes, which are application independent, such as external equipment health and name plate, or operation counters. The standard states that the derived logical nodes can do 3 different things with those optional attributes: +- not inherit them, or, +- inherit them as optional, or, +- inherit them as mandatory. +Therefore, there is no way to show optional attributes at "Common Logical Node" level - they must be (and are in the original standard itself) defined within the concrete logical nodes' definitions. +For the above reasons, this model does not specify the type "Common Logical Node": it simply defines mandatory attributes for both (abstract) DomainLN and (concrete) LLN0. Grouping data objects that are common to several LNs into abstract classes happens at a finer level of granularity.', htmlDescription='

Modelling note: Original IEC 61850-7-4 explicitly defines a "Common Logical Node", which inherits from the (abstract) Logical Node, defined in ACSI, and has as subtypes the LLN0 and all the Domain Logical Nodes. It only serves to specify the common mandatory attributes of the subtypes (i.e., of all logical nodes but the LPHD). The "Common Logical Node" specifies also some optional attributes, which are application independent, such as external equipment health and name plate, or operation counters. The standard states that the derived logical nodes can do 3 different things with those optional attributes:

- not inherit them, or,

- inherit them as optional, or,

- inherit them as mandatory.

Therefore, there is no way to show optional attributes at "Common Logical Node" level - they must be (and are in the original standard itself) defined within the concrete logical nodes' definitions.

For the above reasons, this model does not specify the type "Common Logical Node": it simply defines mandatory attributes for both (abstract) DomainLN and (concrete) LLN0. Grouping data objects that are common to several LNs into abstract classes happens at a finer level of granularity.

'], _containingPackage=LogicalNodes, _otherEndName=] +2024-09-08 15:11:36,181 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2725, uuid={B228C148-1E21-47b2-A886-159F0BE9A50A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='LNMode LDMode LNBeh (read only) LNBeh +XXXX.Mod LLN0.Mod XXXX.Beh Value +on on on 1 +on blocked blocked 2 +on test test 3 +on test/blocked test/blocked 4 +on off off 5 +blocked on blocked 2 +blocked blocked blocked 2 +blocked test test/blocked 4 +blocked test/blocked test/blocked 4 +blocked off off 5 +test on test 3 +test blocked test/blocked 4 +test test test 3 +test test/blocked test/blocked 4 +test off off 5 +test/blocked on test/blocked 4 +test/blocked blocked test/blocked 4 +test/blocked test test/blocked 4 +test/blocked test/blocked test/blocked 4 +test/blocked off off 5 +off on off 5 +off blocked off 5 +off test off 5 +off test/blocked off 5 +off off off 5', htmlDescription='

LNMode LDMode LNBeh (read only) LNBeh

XXXX.Mod LLN0.Mod XXXX.Beh Value

on on on 1

on blocked blocked 2

on test test 3

on test/blocked test/blocked 4

on off off 5

blocked on blocked 2

blocked blocked blocked 2

blocked test test/blocked 4

blocked test/blocked test/blocked 4

blocked off off 5

test on test 3

test blocked test/blocked 4

test test test 3

test test/blocked test/blocked 4

test off off 5

test/blocked on test/blocked 4

test/blocked blocked test/blocked 4

test/blocked test test/blocked 4

test/blocked test/blocked test/blocked 4

test/blocked off off 5

off on off 5

off blocked off 5

off test off 5

off test/blocked off 5

off off off 5

'], _containingPackage=LogicalNodes, _otherEndName=] +2024-09-08 15:11:36,181 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2727, uuid={1E36F7F7-68C3-4b87-8A96-CBE243CB505D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Describe these somehow... +Note: There should be a link between the LLN0 (which is "the data of LD") and all the DomainLNs contained in the LD.', htmlDescription='

TODO: Describe these somehow...

Note: There should be a link between the LLN0 (which is "the data of LD") and all the DomainLNs contained in the LD.

'], _containingPackage=LogicalNodes, _otherEndName=] +2024-09-08 15:11:36,181 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2740, uuid={70BF6490-0829-4499-B3F1-91B1F53AB7E5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=LogicalNodes, _otherEndName=] +2024-09-08 15:11:36,181 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3031, uuid={2B7E85C1-2253-47e1-9F2A-A1A6C3FD8E78}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Only GGIO and MMXU inherit from it in this sample model.', htmlDescription='

Only GGIO and MMXU inherit from it in this sample model.

'], _containingPackage=LogicalNodes, _otherEndName=] +2024-09-08 15:11:36,181 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3081, uuid={728AF8F8-AE9D-44d5-BDC8-10BD5014B6DD}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='SPSTransient has no parents, i.e., it's a badly defined CDC and doesn't get recognised as CDC.', htmlDescription='

SPSTransient has no parents, i.e., it's a badly defined CDC and doesn't get recognised as CDC.

'], _containingPackage=LogicalNodes, _otherEndName=] +2024-09-08 15:11:36,181 [main] TRACE ClassBuilder - Class DomainLN (1 in package LogicalNodes) +2024-09-08 15:11:36,181 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [, _containingClass=DomainLN, _objData=UmlObjectData [id=292, uuid={2BCCF7D7-1651-44c0-B7CA-3083B5307CAB}, since=null, name=Beh, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=STATECHART] +2024-09-08 15:11:36,181 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=STATE_MACHINE, _isConnector=false, _objData=UmlObjectData [id=2729, uuid={67E0C7B2-C75B-4211-AD2A-08F2FA2D9BFD}, since=null, name=behStateMachine, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=DomainLN, _otherEndName=] +2024-09-08 15:11:36,181 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LogicalNodes::DomainLN, _objData=UmlObjectData [id=5404, uuid={BD8EED96-B614-4741-BE24-E8A509A772CF}, since=null, name=NamPlt, alias=, stereotype=, visibility=public, txtDescription='Name plate of the logical node.', htmlDescription='

Name plate of the logical node.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2314, _eaTypeName=LPL, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,181 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LogicalNodes::DomainLN, _objData=UmlObjectData [id=5406, uuid={02A6EFA0-CD2A-44ed-99B7-4440CDC49598}, since=null, name=Health, alias=, stereotype=, visibility=public, txtDescription=''Health.stVal' reflects the state of the logical node related hardware and software. More detailed information related to the source of the problem may be provided by specific attribute of the logical node.', htmlDescription='

'Health.stVal' reflects the state of the logical node related hardware and software. More detailed information related to the source of the problem may be provided by specific attribute of the logical node.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2712, _eaTypeName=ENSHealth, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,181 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LogicalNodes::DomainLN, _objData=UmlObjectData [id=5408, uuid={F3F9E7F6-D65F-49b8-A25D-A6D5B8129BB1}, since=null, name=Mod, alias=, stereotype=, visibility=public, txtDescription=''DomainLN.Mod.ctlVal' is used by operator to initiate the change in the operating mode of the domain logical node. The resulting operating mode is 'DomainLN.Mod.stVal'. Processing of the quality status (q) of the received data is the prerequisite for correct interpretation of 'DomainLN.Mod.stVal'. See statechart diagram 'DomainLN.behStateMachine'.', htmlDescription='

'DomainLN.Mod.ctlVal' is used by operator to initiate the change in the operating mode of the domain logical node. The resulting operating mode is 'DomainLN.Mod.stVal'. Processing of the quality status (q) of the received data is the prerequisite for correct interpretation of 'DomainLN.Mod.stVal'. See statechart diagram 'DomainLN.behStateMachine'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2673, _eaTypeName=ENCBehaviourMode, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,182 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LogicalNodes::DomainLN, _objData=UmlObjectData [id=6644, uuid={7D68988B-2556-4fad-AF56-2801E5AB7EE7}, since=null, name=CntRs, alias=, stereotype=, visibility=public, txtDescription='Dumb DO, of type CMV for testing inheriting statistics-derived presence conditions.', htmlDescription='

Dumb DO, of type CMV for testing inheriting statistics-derived presence conditions.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2266, _eaTypeName=CMV, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,182 [main] DEBUG ClassBuilder - Adding DomainLN as subclass of LNDOM +2024-09-08 15:11:36,182 [main] TRACE ClassBuilder - read from EA: LogicalNodes::DomainLN +2024-09-08 15:11:36,182 [main] TRACE ClassBuilder - Class StatisticsLN (2 in package LogicalNodes) +2024-09-08 15:11:36,182 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LogicalNodes::StatisticsLN, _objData=UmlObjectData [id=5411, uuid={AD8AD979-4412-496c-88CF-BC2F0016F824}, since=null, name=ClcExp, alias=, stereotype=, visibility=public, txtDescription='If 'ClcExp.stVal=true', the calculation period of a statistical logical node has expired.', htmlDescription='

If 'ClcExp.stVal=true', the calculation period of a statistical logical node has expired.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2721, _eaTypeName=SPSTransient, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,182 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LogicalNodes::StatisticsLN, _objData=UmlObjectData [id=5413, uuid={1FE86953-F8BC-4e0b-A301-DD037C26CD2D}, since=null, name=ClcMth, alias=, stereotype=, visibility=public, txtDescription=''ClcMth.setVal' is the kind of statistical calculation, specifying how the data attributes that represent analogue values have been calculated. The calculation method shall be the same for all data objects of the logical node instance. +If the value is 'PEAK_FUNDAMENTAL', angle may be present in a data object of complex measured value type (CMV, such as in WYE, DEL, etc.), otherwise angle is not used (if ‘TRUE_RMS’ and ‘RMS_FUNDAMENTAL’). +The dependent data objects may be meaningless in case the value of 'ClcMth' is 'unspecified'.', htmlDescription='

'ClcMth.setVal' is the kind of statistical calculation, specifying how the data attributes that represent analogue values have been calculated. The calculation method shall be the same for all data objects of the logical node instance.

If the value is 'PEAK_FUNDAMENTAL', angle may be present in a data object of complex measured value type (CMV, such as in WYE, DEL, etc.), otherwise angle is not used (if ‘TRUE_RMS’ and ‘RMS_FUNDAMENTAL’).

The dependent data objects may be meaningless in case the value of 'ClcMth' is 'unspecified'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2677, _eaTypeName=ENGCalcMethod, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,182 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3465, uuid={92732B68-B08E-4ab3-AD99-839A98DABC97}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=StatisticsLN, _otherEndName=?] +2024-09-08 15:11:36,182 [main] DEBUG ClassBuilder - Adding StatisticsLN as subclass of DomainLN +2024-09-08 15:11:36,182 [main] TRACE ClassBuilder - read from EA: LogicalNodes::StatisticsLN +2024-09-08 15:11:36,182 [main] TRACE ClassBuilder - Class EquipmentInterfaceLN (3 in package LogicalNodes) +2024-09-08 15:11:36,182 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LogicalNodes::EquipmentInterfaceLN, _objData=UmlObjectData [id=5423, uuid={9D014151-D573-4c4e-A898-CE2DA3B5BBBA}, since=null, name=EEHealthAlmClc, alias=, stereotype=, visibility=public, txtDescription='(too long name) State of external (electrical, mechanical or communication) equipment to which the logical node is associated.', htmlDescription='

(too long name) State of external (electrical, mechanical or communication) equipment to which the logical node is associated.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2712, _eaTypeName=ENSHealth, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,183 [main] DEBUG ClassBuilder - Adding EquipmentInterfaceLN as subclass of DomainLN +2024-09-08 15:11:36,183 [main] TRACE ClassBuilder - read from EA: LogicalNodes::EquipmentInterfaceLN +2024-09-08 15:11:36,183 [main] INFO PackageBuilder - processing package DocLogicalNodes (0) ... +2024-09-08 15:11:36,183 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=DocLogicalNodes, _objData=UmlObjectData [id=294, uuid={E8779C38-C14E-43db-BEC0-F2F30FA58304}, since=null, name=DocLogicalNodes, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=PACKAGE] +2024-09-08 15:11:36,184 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2742, uuid={895D35A9-B786-4190-99D6-129AB09C66C1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='This recloser state machine is located in LN RREC and operates in association with a LN PTRC and a LN XCBR +Note : only the general protection activation information case has been modeled here (no single phasis activation)', htmlDescription='

This recloser state machine is located in LN RREC and operates in association with a LN PTRC and a LN XCBR

Note : only the general protection activation information case has been modeled here (no single phasis activation)

'], _containingPackage=DocLogicalNodes, _otherEndName=] +2024-09-08 15:11:36,184 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2743, uuid={4F9E02ED-6436-49e1-B435-12225F0317E1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Following the UML tool, for expressing the behaviour into the state chart, the language can be SDL (TAU from IBM Rational), C++ (Rhapsody from IBM rational) and ?? for EA.', htmlDescription='

Following the UML tool, for expressing the behaviour into the state chart, the language can be SDL (TAU from IBM Rational), C++ (Rhapsody from IBM rational) and ?? for EA.

'], _containingPackage=DocLogicalNodes, _otherEndName=] +2024-09-08 15:11:36,184 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2744, uuid={00EAE61D-1D3F-4e6b-A870-98B8669C0163}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='AutoRecSt Aborted', htmlDescription='

AutoRecSt Aborted

'], _containingPackage=DocLogicalNodes, _otherEndName=] +2024-09-08 15:11:36,186 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=DocLogicalNodes, _objData=UmlObjectData [id=293, uuid={FA477B2F-B0CB-40a8-B651-6E46E37A03D0}, since=null, name=RecloserState, alias=, stereotype=, visibility=public, txtDescription='This diagram is an example state machine illustrating some of the data objects of recloser logical node.', htmlDescription='

This diagram is an example state machine illustrating some of the data objects of recloser logical node.

'], _portrait=true, _kind=STATECHART] +2024-09-08 15:11:36,186 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=STATE_MACHINE, _isConnector=false, _objData=UmlObjectData [id=2745, uuid={577A2E6F-0174-4583-BE5E-E6B2837C83C4}, since=null, name=RecloserState, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=DocLogicalNodes, _otherEndName=] +2024-09-08 15:11:36,186 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=LogicalNodes, _depth=3, _eaElementID=2741, _objData=UmlObjectData [id=145, uuid={6C95E1EE-7117-492e-915D-D9984DC2CFB1}, since=null, name=DocLogicalNodes, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=58, _selfDependent=false, 4_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2742, uuid={895D35A9-B786-4190-99D6-129AB09C66C1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='This recloser state machine is located in LN RREC and operates in association with a LN PTRC and a LN XCBR +Note : only the general protection activation information case has been modeled here (no single phasis activation)', htmlDescription='

This recloser state machine is located in LN RREC and operates in association with a LN PTRC and a LN XCBR

Note : only the general protection activation information case has been modeled here (no single phasis activation)

'], _containingPackage=DocLogicalNodes, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2743, uuid={4F9E02ED-6436-49e1-B435-12225F0317E1}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Following the UML tool, for expressing the behaviour into the state chart, the language can be SDL (TAU from IBM Rational), C++ (Rhapsody from IBM rational) and ?? for EA.', htmlDescription='

Following the UML tool, for expressing the behaviour into the state chart, the language can be SDL (TAU from IBM Rational), C++ (Rhapsody from IBM rational) and ?? for EA.

'], _containingPackage=DocLogicalNodes, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2744, uuid={00EAE61D-1D3F-4e6b-A870-98B8669C0163}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='AutoRecSt Aborted', htmlDescription='

AutoRecSt Aborted

'], _containingPackage=DocLogicalNodes, _otherEndName=], SkippedBuilder [, _kind=STATE_MACHINE, _isConnector=false, _objData=UmlObjectData [id=2745, uuid={577A2E6F-0174-4583-BE5E-E6B2837C83C4}, since=null, name=RecloserState, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=DocLogicalNodes, _otherEndName=]], 2_diagrams=[DiagramBuilder [_containingPackage=DocLogicalNodes, _objData=UmlObjectData [id=294, uuid={E8779C38-C14E-43db-BEC0-F2F30FA58304}, since=null, name=DocLogicalNodes, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=PACKAGE], DiagramBuilder [_containingPackage=DocLogicalNodes, _objData=UmlObjectData [id=293, uuid={FA477B2F-B0CB-40a8-B651-6E46E37A03D0}, since=null, name=RecloserState, alias=, stereotype=, visibility=public, txtDescription='This diagram is an example state machine illustrating some of the data objects of recloser logical node.', htmlDescription='

This diagram is an example state machine illustrating some of the data objects of recloser logical node.

'], _portrait=true, _kind=STATECHART]] +2024-09-08 15:11:36,186 [main] INFO PackageBuilder - processing package LNGroupL (2) ... +2024-09-08 15:11:36,186 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=LNGroupL, _objData=UmlObjectData [id=295, uuid={332E02C5-1CD4-4f01-914F-089D6CAA1B2B}, since=null, name=LNGroupL, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all logical nodes of this group.', htmlDescription='

This diagram shows all logical nodes of this group.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:36,187 [main] DEBUG PackageBuilder - Updated target of package dependency DependencyBuilder [_kind=PACKAGE, qName = Functions::SystemWide->LogicalNodes::LNGroupL, _objData=UmlObjectData [id=2730, uuid={D14B5B90-8C79-4598-A45C-DAD660474084}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,187 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3040, uuid={926472AA-E063-4c71-B6F4-E0E19285A547}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='- misplaced (should be in package LNGroupK) +- bad DO name +- using CDC ENS - never use ENS, ENG, ENC in an LN, you must use a derived CDC instead.', htmlDescription='

- misplaced (should be in package LNGroupK)

- bad DO name

- using CDC ENS - never use ENS, ENG, ENC in an LN, you must use a derived CDC instead.

'], _containingPackage=LNGroupL, _otherEndName=] +2024-09-08 15:11:36,187 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3072, uuid={BC4F5403-9311-4498-9D8E-D31A2A2ECFD5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='StatAlmMthClc should be detected as defined but not detected as CDC (SPSTransient is not recognised as CDC).', htmlDescription='

StatAlmMthClc should be detected as defined but not detected as CDC (SPSTransient is not recognised as CDC).

'], _containingPackage=LNGroupL, _otherEndName=] +2024-09-08 15:11:36,187 [main] TRACE ClassBuilder - Class KXYZ (0 in package LNGroupL) +2024-09-08 15:11:36,187 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupL::KXYZ, _objData=UmlObjectData [id=6643, uuid={5F6F358B-D118-4f13-B9C6-A2B2F099FAAD}, since=null, name=TotW, alias=, stereotype=, visibility=public, txtDescription=''TotW.mag.f' is the total real power in a three-phase circuit [W].', htmlDescription='

'TotW.mag.f' is the total real power in a three-phase circuit [W].

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2266, _eaTypeName=CMV, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,187 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupL::KXYZ, _objData=UmlObjectData [id=6662, uuid={14E48849-D4A8-4f20-943F-FE6D90B87DA5}, since=null, name=aDummyAlm, alias=, stereotype=, visibility=public, txtDescription='Whatever (testing lower case DO name).', htmlDescription='

Whatever (testing lower case DO name).

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2266, _eaTypeName=CMV, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,187 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupL::KXYZ, _objData=UmlObjectData [id=6705, uuid={830D0CE1-6AF2-4651-9D80-CBB0ADE6102C}, since=null, name=WrongA, alias=, stereotype=, visibility=public, txtDescription='Misused ENS (or ENG or ENC). Use derived CDC instead.', htmlDescription='

Misused ENS (or ENG or ENC). Use derived CDC instead.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2250, _eaTypeName=ENS, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,187 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupL::KXYZ, _objData=UmlObjectData [id=6706, uuid={BCF2F02E-3F65-4819-9456-55527BBD0571}, since=null, name=CorrectA, alias=, stereotype=, visibility=public, txtDescription='Correctly using derived CDC for enums.', htmlDescription='

Correctly using derived CDC for enums.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=3073, _eaTypeName=ENSEnumDA, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,188 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3425, uuid={FACFBBE4-5FBA-401d-A6A7-D6985D37842E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=KXYZ, _otherEndName=?] +2024-09-08 15:11:36,188 [main] DEBUG ClassBuilder - Adding KXYZ as subclass of DomainLN +2024-09-08 15:11:36,188 [main] TRACE ClassBuilder - read from EA: LNGroupL::KXYZ +2024-09-08 15:11:36,188 [main] TRACE ClassBuilder - Class LPHD (1 in package LNGroupL) +2024-09-08 15:11:36,188 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupL::LPHD, _objData=UmlObjectData [id=5434, uuid={2B188929-F3F0-481e-81FA-33B1F6DDFABE}, since=null, name=PhyHealth, alias=, stereotype=, visibility=public, txtDescription=''PhyHealth.stVal' reflects the state of the physical device related hardware and software.', htmlDescription='

'PhyHealth.stVal' reflects the state of the physical device related hardware and software.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2712, _eaTypeName=ENSHealth, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,188 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupL::LPHD, _objData=UmlObjectData [id=5445, uuid={33F4BBA2-6001-4f56-B6D7-7B166C646FD2}, since=null, name=RsStatAlmMthClc, alias=, stereotype=, visibility=public, txtDescription='(too long name) 'RsStat.ctlVal=true' initiates the resetting of the IED statistics.', htmlDescription='

(too long name) 'RsStat.ctlVal=true' initiates the resetting of the IED statistics.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2720, _eaTypeName=SPCTransient, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,188 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupL::LPHD, _objData=UmlObjectData [id=6704, uuid={F8B2B570-FB4D-461e-AFBB-76B285FC176A}, since=null, name=StatAlmMthClc, alias=, stereotype=, visibility=public, txtDescription='(too long name) 'RsStat.ctlVal=true' initiates the resetting of the IED statistics.', htmlDescription='

(too long name) 'RsStat.ctlVal=true' initiates the resetting of the IED statistics.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2721, _eaTypeName=SPSTransient, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,189 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3454, uuid={8AB0F6F3-2554-4343-80F7-0F7C34C50F94}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=LPHD, _otherEndName=?] +2024-09-08 15:11:36,189 [main] DEBUG ClassBuilder - Adding LPHD as subclass of LNPHD +2024-09-08 15:11:36,189 [main] DEBUG ClassBuilder - Updated target of class dependency DependencyBuilder [_kind=CLASS, qName = SystemWide::PhysicalDeviceData->LNGroupL::LPHD, _objData=UmlObjectData [id=2735, uuid={E0D934B8-520F-44c2-9AF8-B3B81C663ABF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,189 [main] TRACE ClassBuilder - read from EA: LNGroupL::LPHD +2024-09-08 15:11:36,189 [main] TRACE ClassBuilder - Class LLN0 (2 in package LNGroupL) +2024-09-08 15:11:36,189 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupL::LLN0, _objData=UmlObjectData [id=5447, uuid={ABAE4652-FBC7-4033-A5F3-F34D0A7D6805}, since=null, name=NamPlt, alias=, stereotype=, visibility=public, txtDescription='Name plate of the logical device.', htmlDescription='

Name plate of the logical device.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2314, _eaTypeName=LPL, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,189 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupL::LLN0, _objData=UmlObjectData [id=5448, uuid={757A91B5-C931-43d4-8660-F0918821C72E}, since=null, name=Beh, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2707, _eaTypeName=ENSBehaviourMode, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,189 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupL::LLN0, _objData=UmlObjectData [id=5449, uuid={9D65803B-3C9E-4491-B2F7-46597B3A2963}, since=null, name=Health, alias=, stereotype=, visibility=public, txtDescription=''Health.stVal' reflects the state of the logical device related hardware and software. It is derived from the worst (most critical) value of the health attribute of all the domain logical nodes contained in the logical device: 'Health.stVal' = max('DomainLN[i].Health.stVal').', htmlDescription='

'Health.stVal' reflects the state of the logical device related hardware and software. It is derived from the worst (most critical) value of the health attribute of all the domain logical nodes contained in the logical device: 'Health.stVal' = max('DomainLN[i].Health.stVal').

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2712, _eaTypeName=ENSHealth, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,189 [main] DEBUG ClassBuilder - Adding LLN0 as subclass of LN0 +2024-09-08 15:11:36,189 [main] DEBUG ClassBuilder - Updated target of class dependency DependencyBuilder [_kind=CLASS, qName = SystemWide::LogicalDeviceData->LNGroupL::LLN0, _objData=UmlObjectData [id=2738, uuid={A065F8ED-0114-4e46-8A81-404C86385F2A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,189 [main] TRACE ClassBuilder - read from EA: LNGroupL::LLN0 +2024-09-08 15:11:36,189 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=LogicalNodes, _depth=3, _eaElementID=2759, _objData=UmlObjectData [id=146, uuid={094D04C6-6C60-4c07-B2AB-2B62AEE4FA5F}, since=null, name=LNGroupL, alias=System logical nodes, stereotype=, visibility=public, txtDescription='This group of logical nodes defines the system specific information. This includes information related to the physical device (represented by logical node LPHD), which contains the logical devices (represented by logical node LLN0) and the domain specific logical nodes (represented by DomainLN and all the concrete logical nodes, defined in the rest of this clause). This information (e.g., logical node mode control, nameplate information, operation counters) is independent of the application domain.', htmlDescription='

This group of logical nodes defines the system specific information. This includes information related to the physical device (represented by logical node LPHD), which contains the logical devices (represented by logical node LLN0) and the domain specific logical nodes (represented by DomainLN and all the concrete logical nodes, defined in the rest of this clause). This information (e.g., logical node mode control, nameplate information, operation counters) is independent of the application domain.

'], _modelId=58, _selfDependent=false, 2_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3040, uuid={926472AA-E063-4c71-B6F4-E0E19285A547}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='- misplaced (should be in package LNGroupK) +- bad DO name +- using CDC ENS - never use ENS, ENG, ENC in an LN, you must use a derived CDC instead.', htmlDescription='

- misplaced (should be in package LNGroupK)

- bad DO name

- using CDC ENS - never use ENS, ENG, ENC in an LN, you must use a derived CDC instead.

'], _containingPackage=LNGroupL, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3072, uuid={BC4F5403-9311-4498-9D8E-D31A2A2ECFD5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='StatAlmMthClc should be detected as defined but not detected as CDC (SPSTransient is not recognised as CDC).', htmlDescription='

StatAlmMthClc should be detected as defined but not detected as CDC (SPSTransient is not recognised as CDC).

'], _containingPackage=LNGroupL, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=LNGroupL, _objData=UmlObjectData [id=295, uuid={332E02C5-1CD4-4f01-914F-089D6CAA1B2B}, since=null, name=LNGroupL, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all logical nodes of this group.', htmlDescription='

This diagram shows all logical nodes of this group.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsTarget=1, _classes=3 +2024-09-08 15:11:36,189 [main] INFO PackageBuilder - processing package LNGroupC (4) ... +2024-09-08 15:11:36,190 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=LNGroupC, _objData=UmlObjectData [id=297, uuid={13560566-9203-4f26-A29B-B6758F013F1B}, since=null, name=LNGroupC, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all concrete logical nodes of this group, with the supertypes that factor their common attributes.', htmlDescription='

This diagram shows all concrete logical nodes of this group, with the supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:36,190 [main] DEBUG PackageBuilder - Updated target of package dependency DependencyBuilder [_kind=PACKAGE, qName = Functions::ControlEq->LogicalNodes::LNGroupC, _objData=UmlObjectData [id=2782, uuid={8390B365-348E-4e04-966A-68665FB8F8F6}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,190 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3065, uuid={292CA34F-3CFF-4e6a-AB8E-9718E86E1D49}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='tests for constraints', htmlDescription='

tests for constraints

'], _containingPackage=LNGroupC, _otherEndName=] +2024-09-08 15:11:36,190 [main] TRACE ClassBuilder - Class CALH (2 in package LNGroupC) +2024-09-08 15:11:36,190 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupC::CALH, _objData=UmlObjectData [id=5599, uuid={1D7F87B8-C884-44eb-9055-53ED045B2C1C}, since=null, name=GrAlm, alias=, stereotype=, visibility=public, txtDescription='If 'GrAlm.stVal=true', a new group alarm has been activated by one of individual alarms. Group alarm summarises different alarms, as assigned via configuration.', htmlDescription='

If 'GrAlm.stVal=true', a new group alarm has been activated by one of individual alarms. Group alarm summarises different alarms, as assigned via configuration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2248, _eaTypeName=DPS, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,190 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupC::CALH, _objData=UmlObjectData [id=5600, uuid={0C2C7397-C0B9-4d43-8E0B-31F71AA4EA5A}, since=null, name=GrWrn, alias=, stereotype=, visibility=public, txtDescription='If 'GrWrn.stVal=true', a new group warning has been activated by one of individual warnings. Group warning summarises different warnings, as assigned via configuration.', htmlDescription='

If 'GrWrn.stVal=true', a new group warning has been activated by one of individual warnings. Group warning summarises different warnings, as assigned via configuration.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2248, _eaTypeName=DPS, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,191 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupC::CALH, _objData=UmlObjectData [id=6657, uuid={E31E67B3-BB2E-4eca-8A24-56CB50965FEF}, since=null, name=ModBeh, alias=, stereotype=, visibility=public, txtDescription='If 'GrWrn.stVal=true', a new group warning has been activated by one of individual warnings. Group warning summarises different warnings, as assigned via configuration.', htmlDescription='

If 'GrWrn.stVal=true', a new group warning has been activated by one of individual warnings. Group warning summarises different warnings, as assigned via configuration.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=3039, _eaTypeName=ERYBehaviourMode, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,191 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3438, uuid={60D14E81-5B27-492d-9F64-0989F5A0891E}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=CALH, _otherEndName=?] +2024-09-08 15:11:36,191 [main] DEBUG ClassBuilder - Adding CALH as subclass of DomainLN +2024-09-08 15:11:36,191 [main] DEBUG ClassBuilder - Updated target of class dependency DependencyBuilder [_kind=CLASS, qName = ControlEq::AlarmHandler->LNGroupC::CALH, _objData=UmlObjectData [id=2795, uuid={D1DB0DF8-3CC9-4c3e-84B5-B1A6AFDFB19B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,191 [main] TRACE ClassBuilder - read from EA: LNGroupC::CALH +2024-09-08 15:11:36,191 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=LogicalNodes, _depth=3, _eaElementID=2784, _objData=UmlObjectData [id=148, uuid={AE0DD6CD-8C31-48ad-A0F4-34012EBFF823}, since=null, name=LNGroupC, alias=Logical nodes for control, stereotype=, visibility=public, txtDescription='This group of logical nodes represents process control functions.', htmlDescription='

This group of logical nodes represents process control functions.

'], _modelId=58, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3065, uuid={292CA34F-3CFF-4e6a-AB8E-9718E86E1D49}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='tests for constraints', htmlDescription='

tests for constraints

'], _containingPackage=LNGroupC, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=LNGroupC, _objData=UmlObjectData [id=297, uuid={13560566-9203-4f26-A29B-B6758F013F1B}, since=null, name=LNGroupC, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all concrete logical nodes of this group, with the supertypes that factor their common attributes.', htmlDescription='

This diagram shows all concrete logical nodes of this group, with the supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsTarget=1, _classes=1 +2024-09-08 15:11:36,192 [main] INFO PackageBuilder - processing package LNGroupG (7) ... +2024-09-08 15:11:36,192 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=LNGroupG, _objData=UmlObjectData [id=300, uuid={CE239FB0-6306-42ea-86F7-B64F0899B487}, since=null, name=LNGroupG, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all concrete logical nodes of this group, with the supertypes that factor their common attributes.', htmlDescription='

This diagram shows all concrete logical nodes of this group, with the supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:36,192 [main] DEBUG PackageBuilder - Updated target of package dependency DependencyBuilder [_kind=PACKAGE, qName = Functions::PrimaryEq->LogicalNodes::LNGroupG, _objData=UmlObjectData [id=2665, uuid={FD1D4851-6E6B-4b6e-B70D-5845E5626820}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,192 [main] DEBUG PackageBuilder - Updated target of package dependency DependencyBuilder [_kind=PACKAGE, qName = Functions::SystemWide->LogicalNodes::LNGroupG, _objData=UmlObjectData [id=2731, uuid={0ABB3171-2EAE-446b-B81C-098AD39433C9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,192 [main] DEBUG PackageBuilder - Updated target of package dependency DependencyBuilder [_kind=PACKAGE, qName = Functions::ControlEq->LogicalNodes::LNGroupG, _objData=UmlObjectData [id=2780, uuid={CB8A7C56-CC80-40db-9240-39C0BC8FCF3A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,193 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2813, uuid={991272D0-E1F1-46eb-A44A-28072E7E9A37}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- GSAL.OpCntRs is M, all the others are O. Is this intentional?', htmlDescription='

TODO:

  • GSAL.OpCntRs is M, all the others are O. Is this intentional?
'], _containingPackage=LNGroupG, _otherEndName=] +2024-09-08 15:11:36,193 [main] TRACE ClassBuilder - Class GGIO (3 in package LNGroupG) +2024-09-08 15:11:36,193 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupG::GGIO, _objData=UmlObjectData [id=5775, uuid={870B8E8E-1CE1-48a5-B4DF-5EDF733EF7FD}, since=null, name=EEHealth, alias=, stereotype=, visibility=public, txtDescription=''EEHealth.stVal' reflects the state of external (primary) equipment to which the logical node is associated.', htmlDescription='

'EEHealth.stVal' reflects the state of external (primary) equipment to which the logical node is associated.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2712, _eaTypeName=ENSHealth, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,193 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupG::GGIO, _objData=UmlObjectData [id=5782, uuid={A3049550-4E72-4228-8BD0-D2ECA1D9305C}, since=null, name=AnIn, alias=, stereotype=, visibility=public, txtDescription=''AnIn.mag.f' is the generic analogue input n.', htmlDescription='

'AnIn.mag.f' is the generic analogue input n.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2266, _eaTypeName=CMV, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,194 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupG::GGIO, _objData=UmlObjectData [id=5788, uuid={C1C99243-DCC4-48ff-A71B-D0E2B01DA933}, since=null, name=DPCSO, alias=, stereotype=, visibility=public, txtDescription=''DPCSO.ctlVal=true' or 'DPCSO.ctlVal=false' controls the generic double point controllable status output n. The resulting status is 'DPCSO.stVal'.', htmlDescription='

'DPCSO.ctlVal=true' or 'DPCSO.ctlVal=false' controls the generic double point controllable status output n. The resulting status is 'DPCSO.stVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2281, _eaTypeName=DPC, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,194 [main] ERROR ClassBuilder - [+++ EA problem: attr count on GGIO = 3 +, +++ attr EEHealth: pos = 1 +, +++ attr AnIn: pos = 1 DUPLICATE +, +++ attr DPCSO: pos = 2 +] +2024-09-08 15:11:36,194 [main] DEBUG ClassBuilder - Adding GGIO as subclass of StatisticsLN +2024-09-08 15:11:36,194 [main] DEBUG ClassBuilder - Updated target of class dependency DependencyBuilder [_kind=CLASS, qName = PrimaryEq::GenericIO->LNGroupG::GGIO, _objData=UmlObjectData [id=2713, uuid={974BA3EA-23AA-4b70-8964-EA8FD90B4327}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,194 [main] TRACE ClassBuilder - read from EA: LNGroupG::GGIO +2024-09-08 15:11:36,194 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=LogicalNodes, _depth=3, _eaElementID=2811, _objData=UmlObjectData [id=150, uuid={F4FA3C38-E2BE-4ca2-9D34-D8E9E0191F21}, since=null, name=LNGroupG, alias=Logical nodes for generic references, stereotype=, visibility=public, txtDescription='This group of logical nodes is used only for modelling functions without a dedicated logical node with appropriate semantics. Therefore, no description and requirements for the logical nodes of group G are given in IEC 61850-5.', htmlDescription='

This group of logical nodes is used only for modelling functions without a dedicated logical node with appropriate semantics. Therefore, no description and requirements for the logical nodes of group G are given in IEC 61850-5.

'], _modelId=58, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2813, uuid={991272D0-E1F1-46eb-A44A-28072E7E9A37}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- GSAL.OpCntRs is M, all the others are O. Is this intentional?', htmlDescription='

TODO:

  • GSAL.OpCntRs is M, all the others are O. Is this intentional?
'], _containingPackage=LNGroupG, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=LNGroupG, _objData=UmlObjectData [id=300, uuid={CE239FB0-6306-42ea-86F7-B64F0899B487}, since=null, name=LNGroupG, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all concrete logical nodes of this group, with the supertypes that factor their common attributes.', htmlDescription='

This diagram shows all concrete logical nodes of this group, with the supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsTarget=3, _classes=1 +2024-09-08 15:11:36,194 [main] INFO PackageBuilder - processing package LNGroupM (10) ... +2024-09-08 15:11:36,195 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=LNGroupM, _objData=UmlObjectData [id=304, uuid={A2B85C49-4EA0-4bf9-AF07-7DF01DE50BB0}, since=null, name=LNGroupM2, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the second part of concrete logical nodes of this group, with the supertypes that factor their common attributes.', htmlDescription='

This diagram shows the second part of concrete logical nodes of this group, with the supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:36,195 [main] DEBUG PackageBuilder - Updated target of package dependency DependencyBuilder [_kind=PACKAGE, qName = Functions::MeasurementsAndMetering->LogicalNodes::LNGroupM, _objData=UmlObjectData [id=2742, uuid={CC5085F3-A137-4156-AC8A-24B9D984F2EC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,195 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2843, uuid={20A12C6C-CD49-4de7-9597-70F609138E31}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- MMET.DlDur is duration, name should end with Tm or Tmm, to be consistent?', htmlDescription='

TODO:

  • MMET.DlDur is duration, name should end with Tm or Tmm, to be consistent?
'], _containingPackage=LNGroupM, _otherEndName=] +2024-09-08 15:11:36,196 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2858, uuid={8AFDC6A7-5812-48e1-92DD-570EC5800A88}, since=null, name=LNGroupM : LNGroupM1, alias=, stereotype=, visibility=public, txtDescription='LNGroupM : LNGroupM1', htmlDescription='

LNGroupM : LNGroupM1

'], _containingPackage=LNGroupM, _otherEndName=] +2024-09-08 15:11:36,196 [main] TRACE ClassBuilder - Class MMXU (13 in package LNGroupM) +2024-09-08 15:11:36,196 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupM::MMXU, _objData=UmlObjectData [id=6036, uuid={AB0A2202-6CAE-4f4c-9ADE-E1367D015FD1}, since=null, name=TotW, alias=, stereotype=, visibility=public, txtDescription=''TotW.mag.f' is the total real power in a three-phase circuit [W].', htmlDescription='

'TotW.mag.f' is the total real power in a three-phase circuit [W].

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2266, _eaTypeName=CMV, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,196 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupM::MMXU, _objData=UmlObjectData [id=6044, uuid={70F20DF1-D205-419a-A546-B00A930F4EF1}, since=null, name=A, alias=, stereotype=, visibility=public, txtDescription=''A' holds the currents for three phases.', htmlDescription='

'A' holds the currents for three phases.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2273, _eaTypeName=HWYE, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,196 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupM::MMXU, _objData=UmlObjectData [id=6645, uuid={4261E17B-01F7-4d5c-AD2B-D01366C474C1}, since=null, name=Desc, alias=, stereotype=, visibility=public, txtDescription='Dummy native DO of non-statistical type.', htmlDescription='

Dummy native DO of non-statistical type.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2255, _eaTypeName=HST, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,196 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=2154, uuid={5A85C57C-77E4-4ded-B768-59A27D105EFC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=MMXU, _otherEndName=?] +2024-09-08 15:11:36,196 [main] DEBUG ClassBuilder - Adding MMXU as subclass of StatisticsLN +2024-09-08 15:11:36,197 [main] DEBUG ClassBuilder - Updated target of class dependency DependencyBuilder [_kind=CLASS, qName = MeasurementsAndMetering::ThreePhaseMeasurement->LNGroupM::MMXU, _objData=UmlObjectData [id=2748, uuid={58E9D6B7-D856-4627-A9CD-FFB197524811}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,197 [main] TRACE ClassBuilder - read from EA: LNGroupM::MMXU +2024-09-08 15:11:36,197 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=LogicalNodes, _depth=3, _eaElementID=2839, _objData=UmlObjectData [id=153, uuid={7B986191-8A53-43e0-BA3D-04C419D5591D}, since=null, name=LNGroupM, alias=Logical nodes for metering and measurement, stereotype=, visibility=public, txtDescription='This group of logical nodes represents metering and measuring functions.', htmlDescription='

This group of logical nodes represents metering and measuring functions.

'], _modelId=58, _selfDependent=false, 2_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2843, uuid={20A12C6C-CD49-4de7-9597-70F609138E31}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: +- MMET.DlDur is duration, name should end with Tm or Tmm, to be consistent?', htmlDescription='

TODO:

  • MMET.DlDur is duration, name should end with Tm or Tmm, to be consistent?
'], _containingPackage=LNGroupM, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2858, uuid={8AFDC6A7-5812-48e1-92DD-570EC5800A88}, since=null, name=LNGroupM : LNGroupM1, alias=, stereotype=, visibility=public, txtDescription='LNGroupM : LNGroupM1', htmlDescription='

LNGroupM : LNGroupM1

'], _containingPackage=LNGroupM, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=LNGroupM, _objData=UmlObjectData [id=304, uuid={A2B85C49-4EA0-4bf9-AF07-7DF01DE50BB0}, since=null, name=LNGroupM2, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the second part of concrete logical nodes of this group, with the supertypes that factor their common attributes.', htmlDescription='

This diagram shows the second part of concrete logical nodes of this group, with the supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsTarget=1, _classes=1 +2024-09-08 15:11:36,197 [main] INFO PackageBuilder - processing package LNGroupP (11) ... +2024-09-08 15:11:36,197 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=LNGroupP, _objData=UmlObjectData [id=305, uuid={ABE7863D-71A3-4c74-9C55-17754D2F2757}, since=null, name=LNGroupP1, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the first part of concrete logical nodes of this group, with the supertypes that factor their common attributes.', htmlDescription='

This diagram shows the first part of concrete logical nodes of this group, with the supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:36,197 [main] DEBUG PackageBuilder - Updated target of package dependency DependencyBuilder [_kind=PACKAGE, qName = Functions::ControlEq->LogicalNodes::LNGroupP, _objData=UmlObjectData [id=2781, uuid={BC522B12-05AB-4532-A2CA-EC73B8363658}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,197 [main] DEBUG PackageBuilder - Updated target of package dependency DependencyBuilder [_kind=PACKAGE, qName = Functions::ProtectionEq->LogicalNodes::LNGroupP, _objData=UmlObjectData [id=2796, uuid={5B01DA92-2B41-4efd-9319-7B4B6E111957}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,198 [main] ERROR EaTables - [+++ EA ordering problem for 5 class(s) in LNGroupP (manually move back/forth a class to initiate EA internal ordering update!): +, +++ class PDISExt: pos = 0 +, +++ class ProtectionLN: pos = 1 +, +++ class PDIF: pos = 10 +, +++ class PDIS: pos = 12 +, +++ class PDF2: pos = 0 DUPLICATE +] +2024-09-08 15:11:36,198 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2869, uuid={6CFEF5A7-49B5-4e9a-BE63-BDB6015512BD}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: PMRI has only Op, PHAR has only Str, and all other Pxxx have both Str and Op. However, they are sometimes O, sometimes M, so it is impossible to extract these two as common attributes into an abstract class...', htmlDescription='

Modelling note: PMRI has only Op, PHAR has only Str, and all other Pxxx have both Str and Op. However, they are sometimes O, sometimes M, so it is impossible to extract these two as common attributes into an abstract class...

'], _containingPackage=LNGroupP, _otherEndName=] +2024-09-08 15:11:36,198 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2914, uuid={2D25BDBB-CCC8-450c-A8DC-8B8D4E627EF9}, since=null, name=LNGroupP : LNGroupP2, alias=, stereotype=, visibility=public, txtDescription='LNGroupP : LNGroupP2', htmlDescription='

LNGroupP : LNGroupP2

'], _containingPackage=LNGroupP, _otherEndName=] +2024-09-08 15:11:36,198 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2915, uuid={3BC40F33-6D62-4df9-B06B-E62A6E08B5AB}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='b)', htmlDescription='

b)

'], _containingPackage=LNGroupP, _otherEndName=] +2024-09-08 15:11:36,199 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2916, uuid={3FFE9196-E649-4890-A5F8-035B7648E2CC}, since=null, name=LNGroupP : Load area and reach settings, alias=, stereotype=, visibility=public, txtDescription='PDIS : Load area and reach settings', htmlDescription='

PDIS : Load area and reach settings

'], _containingPackage=LNGroupP, _otherEndName=] +2024-09-08 15:11:36,199 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2917, uuid={6E282E4F-15CA-4304-AED8-6CB9D129ACE5}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='a)', htmlDescription='

a)

'], _containingPackage=LNGroupP, _otherEndName=] +2024-09-08 15:11:36,200 [main] TRACE ClassBuilder - Class PDISExt (0 in package LNGroupP) +2024-09-08 15:11:36,201 [main] TRACE ClassBuilder - read from EA: LNGroupP::PDISExt +2024-09-08 15:11:36,201 [main] TRACE ClassBuilder - Class ProtectionLN (1 in package LNGroupP) +2024-09-08 15:11:36,201 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupP::ProtectionLN, _objData=UmlObjectData [id=6089, uuid={1F112DF7-7748-4d99-9AD2-FD1D39A5923B}, since=null, name=OpCntRs, alias=, stereotype=, visibility=public, txtDescription=''OpCntRs.stVal' is the count of operations. It can be reset from remote, with the specified new counter value 'OpCntRs.ctlVal', which may be other than 0.', htmlDescription='

'OpCntRs.stVal' is the count of operations. It can be reset from remote, with the specified new counter value 'OpCntRs.ctlVal', which may be other than 0.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2282, _eaTypeName=INC, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,201 [main] DEBUG ClassBuilder - Adding ProtectionLN as subclass of DomainLN +2024-09-08 15:11:36,202 [main] TRACE ClassBuilder - read from EA: LNGroupP::ProtectionLN +2024-09-08 15:11:36,202 [main] TRACE ClassBuilder - Class PDIF (10 in package LNGroupP) +2024-09-08 15:11:36,202 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupP::PDIF, _objData=UmlObjectData [id=6139, uuid={6EDDE740-6CB2-49bd-B85C-F85BBC4D3339}, since=null, name=Str, alias=, stereotype=, visibility=public, txtDescription='If 'Str.general=true', a fault has been detected.', htmlDescription='

If 'Str.general=true', a fault has been detected.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2252, _eaTypeName=ACD, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,202 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupP::PDIF, _objData=UmlObjectData [id=6140, uuid={83CA9289-614E-43d2-B931-EDAA62BA0C42}, since=null, name=Op, alias=, stereotype=, visibility=public, txtDescription='If 'Op.general=true', the function decided to trip. The trip itself is issued by PTRC.', htmlDescription='

If 'Op.general=true', the function decided to trip. The trip itself is issued by PTRC.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2671, _eaTypeName=ACTTransient, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,202 [main] DEBUG ClassBuilder - Adding PDIF as subclass of ProtectionLN +2024-09-08 15:11:36,203 [main] DEBUG ClassBuilder - Updated target of class dependency DependencyBuilder [_kind=CLASS, qName = ProtectionEq::LineDifferentialProt->LNGroupP::PDIF, _objData=UmlObjectData [id=2849, uuid={DA0D3EC5-D7E4-421c-B2B4-821CAC8B845A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,203 [main] DEBUG ClassBuilder - Updated target of class dependency DependencyBuilder [_kind=CLASS, qName = ProtectionEq::BusbarProt->LNGroupP::PDIF, _objData=UmlObjectData [id=2888, uuid={666DE986-59DC-40fa-9FF2-C90F6F83395B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,203 [main] TRACE ClassBuilder - read from EA: LNGroupP::PDIF +2024-09-08 15:11:36,203 [main] TRACE ClassBuilder - Class PDIS (12 in package LNGroupP) +2024-09-08 15:11:36,203 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [, _containingClass=PDIS, _objData=UmlObjectData [id=307, uuid={F295ADA8-766F-49f5-8DF6-BE32D5A00DE9}, since=null, name=Load area and reach settings, alias=, stereotype=, visibility=public, txtDescription='This diagram illustrates settings related to load area (a) and to reach (b).', htmlDescription='

This diagram illustrates settings related to load area (a) and to reach (b).

'], _portrait=true, _kind=CUSTOM] +2024-09-08 15:11:36,203 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2884, uuid={355244D3-5BEA-42d6-8053-57771C13D184}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=PDIS, _otherEndName=] +2024-09-08 15:11:36,203 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2885, uuid={79A7F745-214C-49bf-B038-AB993B6E5572}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=PDIS, _otherEndName=] +2024-09-08 15:11:36,203 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2886, uuid={8B5A2AB3-D18F-478a-8E23-446102C54184}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=PDIS, _otherEndName=] +2024-09-08 15:11:36,203 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupP::PDIS, _objData=UmlObjectData [id=6156, uuid={0D273A67-FAF9-482f-8CB2-72A7096B42D7}, since=null, name=Str, alias=, stereotype=, visibility=public, txtDescription='If 'Str.general=true', a distance fault has been detected.', htmlDescription='

If 'Str.general=true', a distance fault has been detected.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2252, _eaTypeName=ACD, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,203 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupP::PDIS, _objData=UmlObjectData [id=6157, uuid={6F969465-C33F-4910-868B-353A7D2C9A2D}, since=null, name=Op, alias=, stereotype=, visibility=public, txtDescription='If 'Op.general=true', the function decided to trip due to distance fault. The trip itself is issued by PTRC.', htmlDescription='

If 'Op.general=true', the function decided to trip due to distance fault. The trip itself is issued by PTRC.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2671, _eaTypeName=ACTTransient, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,204 [main] DEBUG ClassBuilder - Adding PDIS as subclass of ProtectionLN +2024-09-08 15:11:36,204 [main] DEBUG ClassBuilder - Adding PDIS as superclass of PDISExt +2024-09-08 15:11:36,204 [main] TRACE DependencyBuilder - read from EA DependencyBuilder [_kind=CLASS, qName = LNGroupP::PDIS->null, _objData=UmlObjectData [id=2447, uuid={800FD118-B060-44a3-9247-F3468A78EBF5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,204 [main] DEBUG ClassBuilder - Updated target of class dependency DependencyBuilder [_kind=CLASS, qName = ProtectionEq::DirectionalProt->LNGroupP::PDIS, _objData=UmlObjectData [id=3401, uuid={EE87DADE-74B8-44be-9DFA-6D6A6425C350}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,204 [main] TRACE ClassBuilder - read from EA: LNGroupP::PDIS +2024-09-08 15:11:36,204 [main] TRACE ClassBuilder - Class PDF2 (0 in package LNGroupP) +2024-09-08 15:11:36,204 [main] DEBUG ClassBuilder - Adding PDF2 as subclass of ProtectionLN +2024-09-08 15:11:36,204 [main] TRACE ClassBuilder - read from EA: LNGroupP::PDF2 +2024-09-08 15:11:36,204 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=LogicalNodes, _depth=3, _eaElementID=2860, _objData=UmlObjectData [id=154, uuid={67F071FD-8EE7-474d-85C3-9ECB565EFFDB}, since=null, name=LNGroupP, alias=Logical nodes for protection functions, stereotype=, visibility=public, txtDescription='This group of logical nodes refers to modelling of protection and protection related functions. Follow some modelling remarks. +- If there are several stages to one function (i.e. for multi-zone relay), each stage shall be a separate instance of the LN. Examples are PDIS (n zones) or PTOV (2 stages). +- Multiple instances shall be used if LNs of the same LN class are operating with different settings in parallel. +- If different measuring principles such as phase or ground are required, each shall be represented by an instance of the same basic function. An example is PTOC (used for phase or ground in dedicated instances). +- The logical nodes are defined in IEC 61850-5 from protection requirements (see Table 7), however, for modelling purposes, some logical nodes have been split. +- Logical nodes from IEC 61850-5 are modelled using combinations of the LNs defined in this standard. +- Other logical nodes have been added to model complex protection devices and schemes (see the following subclauses). As an example, line protection uses LN PSCH to combine the outputs from multiple protection LNs. +- The protection functions provide (if applicable) the data object Str (Start) with direction information. In the case of a protection function which provides no direction information, the direction "unknown" shall be transmitted. The data object Str is summarised by LN PTRC. +- If the fault direction is provided in Str (Start), the directional protection may be modelled without the directional element LN RDIR. If any of the settings provided by LN RDIR are needed, the LN RDIR shall be used. +- The protection functions provide (if applicable) the data object Op (Operate) without direction information. The data object Op is conditioned by LN PTRC resulting in the data object Tr (Real Trip), that is between every protection LN and the circuit breaker node XCBR shall be a LN PTRC.', htmlDescription='

This group of logical nodes refers to modelling of protection and protection related functions. Follow some modelling remarks.

  • If there are several stages to one function (i.e. for multi-zone relay), each stage shall be a separate instance of the LN. Examples are PDIS (n zones) or PTOV (2 stages).
  • Multiple instances shall be used if LNs of the same LN class are operating with different settings in parallel.
  • If different measuring principles such as phase or ground are required, each shall be represented by an instance of the same basic function. An example is PTOC (used for phase or ground in dedicated instances).
  • The logical nodes are defined in IEC 61850-5 from protection requirements (see Table 7), however, for modelling purposes, some logical nodes have been split.
  • Logical nodes from IEC 61850-5 are modelled using combinations of the LNs defined in this standard.
  • Other logical nodes have been added to model complex protection devices and schemes (see the following subclauses). As an example, line protection uses LN PSCH to combine the outputs from multiple protection LNs.
  • The protection functions provide (if applicable) the data object Str (Start) with direction information. In the case of a protection function which provides no direction information, the direction "unknown" shall be transmitted. The data object Str is summarised by LN PTRC.
  • If the fault direction is provided in Str (Start), the directional protection may be modelled without the directional element LN RDIR. If any of the settings provided by LN RDIR are needed, the LN RDIR shall be used.
  • The protection functions provide (if applicable) the data object Op (Operate) without direction information. The data object Op is conditioned by LN PTRC resulting in the data object Tr (Real Trip), that is between every protection LN and the circuit breaker node XCBR shall be a LN PTRC.
'], _modelId=58, _selfDependent=false, 5_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2869, uuid={6CFEF5A7-49B5-4e9a-BE63-BDB6015512BD}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: PMRI has only Op, PHAR has only Str, and all other Pxxx have both Str and Op. However, they are sometimes O, sometimes M, so it is impossible to extract these two as common attributes into an abstract class...', htmlDescription='

Modelling note: PMRI has only Op, PHAR has only Str, and all other Pxxx have both Str and Op. However, they are sometimes O, sometimes M, so it is impossible to extract these two as common attributes into an abstract class...

'], _containingPackage=LNGroupP, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2914, uuid={2D25BDBB-CCC8-450c-A8DC-8B8D4E627EF9}, since=null, name=LNGroupP : LNGroupP2, alias=, stereotype=, visibility=public, txtDescription='LNGroupP : LNGroupP2', htmlDescription='

LNGroupP : LNGroupP2

'], _containingPackage=LNGroupP, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2915, uuid={3BC40F33-6D62-4df9-B06B-E62A6E08B5AB}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='b)', htmlDescription='

b)

'], _containingPackage=LNGroupP, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2916, uuid={3FFE9196-E649-4890-A5F8-035B7648E2CC}, since=null, name=LNGroupP : Load area and reach settings, alias=, stereotype=, visibility=public, txtDescription='PDIS : Load area and reach settings', htmlDescription='

PDIS : Load area and reach settings

'], _containingPackage=LNGroupP, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=2917, uuid={6E282E4F-15CA-4304-AED8-6CB9D129ACE5}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='a)', htmlDescription='

a)

'], _containingPackage=LNGroupP, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=LNGroupP, _objData=UmlObjectData [id=305, uuid={ABE7863D-71A3-4c74-9C55-17754D2F2757}, since=null, name=LNGroupP1, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the first part of concrete logical nodes of this group, with the supertypes that factor their common attributes.', htmlDescription='

This diagram shows the first part of concrete logical nodes of this group, with the supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsTarget=2, _classes=5 +2024-09-08 15:11:36,204 [main] INFO PackageBuilder - processing package LNGroupR (13) ... +2024-09-08 15:11:36,204 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=LNGroupR, _objData=UmlObjectData [id=309, uuid={28D82044-73B8-4b6a-81BB-87DDDB9BF469}, since=null, name=LNGroupR, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all concrete logical nodes of this group, with the supertypes that factor their common attributes.', htmlDescription='

This diagram shows all concrete logical nodes of this group, with the supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:36,204 [main] DEBUG PackageBuilder - Updated target of package dependency DependencyBuilder [_kind=PACKAGE, qName = Functions::ProtectionEq->LogicalNodes::LNGroupR, _objData=UmlObjectData [id=2797, uuid={22C10575-60D8-4d36-9D17-44F610D9BC33}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,205 [main] TRACE ClassBuilder - Class RDIR (2 in package LNGroupR) +2024-09-08 15:11:36,205 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupR::RDIR, _objData=UmlObjectData [id=6339, uuid={969DA200-CE87-48c0-9C84-E86508A81D4B}, since=null, name=Dir, alias=, stereotype=, visibility=public, txtDescription='If 'Dir.general=true', a fault has been detected. 'Dir.dirGeneral' is the direction of the fault.', htmlDescription='

If 'Dir.general=true', a fault has been detected. 'Dir.dirGeneral' is the direction of the fault.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2252, _eaTypeName=ACD, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,205 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupR::RDIR, _objData=UmlObjectData [id=6658, uuid={FD102340-AB93-4aec-A54A-6DA7F5AC4487}, since=null, name=TotW, alias=, stereotype=, visibility=public, txtDescription=''TotW.mag.f' is the total real power in a three-phase circuit [W].', htmlDescription='

'TotW.mag.f' is the total real power in a three-phase circuit [W].

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2721, _eaTypeName=SPSTransient, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,205 [main] DEBUG ClassBuilder - Adding RDIR as subclass of DomainLN +2024-09-08 15:11:36,205 [main] DEBUG ClassBuilder - Updated target of class dependency DependencyBuilder [_kind=CLASS, qName = LNGroupP::PDIS->LNGroupR::RDIR, _objData=UmlObjectData [id=2447, uuid={800FD118-B060-44a3-9247-F3468A78EBF5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,205 [main] DEBUG ClassBuilder - Updated target of class dependency DependencyBuilder [_kind=CLASS, qName = ProtectionEq::DirectionalPowerProt->LNGroupR::RDIR, _objData=UmlObjectData [id=2872, uuid={DD4B3FA8-B91D-4755-89D6-176AA40B2C8A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,205 [main] DEBUG ClassBuilder - Updated target of class dependency DependencyBuilder [_kind=CLASS, qName = ProtectionEq::DirectionalProt->LNGroupR::RDIR, _objData=UmlObjectData [id=2876, uuid={1D8C878B-9F8C-4292-A1AD-714B0D1A64F0}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,205 [main] TRACE ClassBuilder - read from EA: LNGroupR::RDIR +2024-09-08 15:11:36,205 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=LogicalNodes, _depth=3, _eaElementID=2929, _objData=UmlObjectData [id=156, uuid={583E5BD1-AE27-4631-BA31-97CA219935FF}, since=null, name=LNGroupR, alias=Logical nodes for protection related functions, stereotype=, visibility=public, txtDescription='This group of logical nodes represents protection-related functions (they contribute to, but do not do protection).', htmlDescription='

This group of logical nodes represents protection-related functions (they contribute to, but do not do protection).

'], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=LNGroupR, _objData=UmlObjectData [id=309, uuid={28D82044-73B8-4b6a-81BB-87DDDB9BF469}, since=null, name=LNGroupR, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all concrete logical nodes of this group, with the supertypes that factor their common attributes.', htmlDescription='

This diagram shows all concrete logical nodes of this group, with the supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsTarget=1, _classes=1 +2024-09-08 15:11:36,205 [main] INFO PackageBuilder - processing package LNGroupZ (18) ... +2024-09-08 15:11:36,206 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=LNGroupZ, _objData=UmlObjectData [id=316, uuid={433F6130-268E-42aa-8A3B-A11C21FFA74B}, since=null, name=LNGroupZ-1, alias=, stereotype=, visibility=public, txtDescription='This diagram shows first part of concrete logical nodes of this group, with the supertypes that factor their common attributes.', htmlDescription='

This diagram shows first part of concrete logical nodes of this group, with the supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:36,206 [main] DEBUG PackageBuilder - Updated target of package dependency DependencyBuilder [_kind=PACKAGE, qName = Functions::PrimaryEq->LogicalNodes::LNGroupZ, _objData=UmlObjectData [id=2670, uuid={0CE7939E-BB12-453e-A921-2F7AC739D7F0}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,206 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3063, uuid={F1B15CD9-392C-47a7-AC84-4EC49476E5CE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Testing several things with this one: +- constraint parsing (identifying uninstantiated argument) +- usage of types from unallowed namespace (wrong dependency direction) +- bad deducing of 'basedOn' type if PrimitiveDA subtype defines its 'val' attribute as public (should be private = hidden).', htmlDescription='

Testing several things with this one:

- constraint parsing (identifying uninstantiated argument)

- usage of types from unallowed namespace (wrong dependency direction)

- bad deducing of 'basedOn' type if PrimitiveDA subtype defines its 'val' attribute as public (should be private = hidden).

'], _containingPackage=LNGroupZ, _otherEndName=] +2024-09-08 15:11:36,206 [main] TRACE ClassBuilder - Class ZAXN (2 in package LNGroupZ) +2024-09-08 15:11:36,207 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupZ::ZAXN, _objData=UmlObjectData [id=6638, uuid={1BB69D0F-6A5C-42a9-BA05-66201FD25912}, since=null, name=Vol, alias=, stereotype=, visibility=public, txtDescription=''Vol.mag.f' is the non-phase-related or DC voltage of the auxiliary network.', htmlDescription='

'Vol.mag.f' is the non-phase-related or DC voltage of the auxiliary network.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2266, _eaTypeName=CMV, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,207 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupZ::ZAXN, _objData=UmlObjectData [id=6639, uuid={D663E9D5-E794-4ef3-9105-84C63DA293E9}, since=null, name=Amp, alias=, stereotype=, visibility=public, txtDescription=''Amp.mag.f' is the non-phase-related current of the auxiliary network.', htmlDescription='

'Amp.mag.f' is the non-phase-related current of the auxiliary network.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2264, _eaTypeName=MV, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,207 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupZ::ZAXN, _objData=UmlObjectData [id=6691, uuid={D79127BE-EF55-4d56-A80C-A80263BAFAE0}, since=null, name=Mat, alias=, stereotype=, visibility=public, txtDescription='For testing usage of class from other namespace.', htmlDescription='

For testing usage of class from other namespace.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=3060, _eaTypeName=ENSMaterial, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,207 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupZ::ZAXN, _objData=UmlObjectData [id=6692, uuid={F095BA66-9343-47d5-9E9E-D3A6CD6DCAE2}, since=null, name=MatCtl, alias=, stereotype=, visibility=public, txtDescription='One more, for testing usage of class from other namespace.', htmlDescription='

One more, for testing usage of class from other namespace.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=3059, _eaTypeName=ENCMaterial, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,207 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=LNGroupZ::ZAXN, _objData=UmlObjectData [id=6693, uuid={95F61B3E-0763-4162-AD6C-4769946A79EC}, since=null, name=Oth, alias=, stereotype=, visibility=public, txtDescription='One more, for testing usage of class from other namespace and also underlying type (where initially 'val' defined as public).', htmlDescription='

One more, for testing usage of class from other namespace and also underlying type (where initially 'val' defined as public).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=3062, _eaTypeName=ENSOther, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,207 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3437, uuid={527DD4FB-2F7D-4215-A7BB-079B0D75CD15}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=ZAXN, _otherEndName=?] +2024-09-08 15:11:36,207 [main] DEBUG ClassBuilder - Adding ZAXN as subclass of EquipmentInterfaceLN +2024-09-08 15:11:36,207 [main] DEBUG ClassBuilder - Updated target of class dependency DependencyBuilder [_kind=CLASS, qName = PrimaryEq::AuxiliaryNetwork->LNGroupZ::ZAXN, _objData=UmlObjectData [id=2727, uuid={71C8F66D-33AE-4d0c-8B16-EE0E777397A2}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,207 [main] TRACE ClassBuilder - read from EA: LNGroupZ::ZAXN +2024-09-08 15:11:36,207 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=LogicalNodes, _depth=3, _eaElementID=3010, _objData=UmlObjectData [id=161, uuid={D4A13BFB-0C2B-419c-9AEA-5CADB6EE8E62}, since=null, name=LNGroupZ, alias=Logical nodes for further power system equipment, stereotype=, visibility=public, txtDescription='This group of logical nodes refers all to power system objects which are reusable in other power systems domains but not modelled in other logical node groups of this standard.', htmlDescription='

This group of logical nodes refers all to power system objects which are reusable in other power systems domains but not modelled in other logical node groups of this standard.

'], _modelId=58, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3063, uuid={F1B15CD9-392C-47a7-AC84-4EC49476E5CE}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Testing several things with this one: +- constraint parsing (identifying uninstantiated argument) +- usage of types from unallowed namespace (wrong dependency direction) +- bad deducing of 'basedOn' type if PrimitiveDA subtype defines its 'val' attribute as public (should be private = hidden).', htmlDescription='

Testing several things with this one:

- constraint parsing (identifying uninstantiated argument)

- usage of types from unallowed namespace (wrong dependency direction)

- bad deducing of 'basedOn' type if PrimitiveDA subtype defines its 'val' attribute as public (should be private = hidden).

'], _containingPackage=LNGroupZ, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=LNGroupZ, _objData=UmlObjectData [id=316, uuid={433F6130-268E-42aa-8A3B-A11C21FFA74B}, since=null, name=LNGroupZ-1, alias=, stereotype=, visibility=public, txtDescription='This diagram shows first part of concrete logical nodes of this group, with the supertypes that factor their common attributes.', htmlDescription='

This diagram shows first part of concrete logical nodes of this group, with the supertypes that factor their common attributes.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsTarget=1, _classes=1 +2024-09-08 15:11:36,208 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC61850_7_4, _depth=2, _eaElementID=2723, _objData=UmlObjectData [id=144, uuid={EC861B7F-893F-4665-858B-F7E3FB83F3C1}, since=null, name=LogicalNodes, alias=Logical node classes, stereotype=, visibility=public, txtDescription='This clause specifies logical nodes defined in IEC 61850-7-4. The types for logical nodes' data (common data classes) are defined in IEC 61850-7-3, while logical nodes' services and relationships to different control blocks are defined in IEC 61850-7-2. +In IEC 61850-7-4, concrete logical nodes are grouped into 16 groups: +- 1 containing 'special', or system logical nodes, and, +- 15 groups of domain logical nodes. +The names of logical nodes shall begin with the character representing the group to which the logical node belongs. For modelling per phase (for example switches or instrument transformers), one instance per phase shall be created; for modelling protection per zone or level, one instance per zone or level shall be created.', htmlDescription='

This clause specifies logical nodes defined in IEC 61850-7-4. The types for logical nodes' data (common data classes) are defined in IEC 61850-7-3, while logical nodes' services and relationships to different control blocks are defined in IEC 61850-7-2.

In IEC 61850-7-4, concrete logical nodes are grouped into 16 groups:

  • 1 containing 'special', or system logical nodes, and,
  • 15 groups of domain logical nodes.

The names of logical nodes shall begin with the character representing the group to which the logical node belongs. For modelling per phase (for example switches or instrument transformers), one instance per phase shall be created; for modelling protection per zone or level, one instance per zone or level shall be created.

'], _modelId=58, _selfDependent=false, 6_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2724, uuid={D0767D8F-CFB4-484b-B888-3084B98E911B}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling note: Original IEC 61850-7-4 explicitly defines a "Common Logical Node", which inherits from the (abstract) Logical Node, defined in ACSI, and has as subtypes the LLN0 and all the Domain Logical Nodes. It only serves to specify the common mandatory attributes of the subtypes (i.e., of all logical nodes but the LPHD). The "Common Logical Node" specifies also some optional attributes, which are application independent, such as external equipment health and name plate, or operation counters. The standard states that the derived logical nodes can do 3 different things with those optional attributes: +- not inherit them, or, +- inherit them as optional, or, +- inherit them as mandatory. +Therefore, there is no way to show optional attributes at "Common Logical Node" level - they must be (and are in the original standard itself) defined within the concrete logical nodes' definitions. +For the above reasons, this model does not specify the type "Common Logical Node": it simply defines mandatory attributes for both (abstract) DomainLN and (concrete) LLN0. Grouping data objects that are common to several LNs into abstract classes happens at a finer level of granularity.', htmlDescription='

Modelling note: Original IEC 61850-7-4 explicitly defines a "Common Logical Node", which inherits from the (abstract) Logical Node, defined in ACSI, and has as subtypes the LLN0 and all the Domain Logical Nodes. It only serves to specify the common mandatory attributes of the subtypes (i.e., of all logical nodes but the LPHD). The "Common Logical Node" specifies also some optional attributes, which are application independent, such as external equipment health and name plate, or operation counters. The standard states that the derived logical nodes can do 3 different things with those optional attributes:

- not inherit them, or,

- inherit them as optional, or,

- inherit them as mandatory.

Therefore, there is no way to show optional attributes at "Common Logical Node" level - they must be (and are in the original standard itself) defined within the concrete logical nodes' definitions.

For the above reasons, this model does not specify the type "Common Logical Node": it simply defines mandatory attributes for both (abstract) DomainLN and (concrete) LLN0. Grouping data objects that are common to several LNs into abstract classes happens at a finer level of granularity.

'], _containingPackage=LogicalNodes, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2725, uuid={B228C148-1E21-47b2-A886-159F0BE9A50A}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='LNMode LDMode LNBeh (read only) LNBeh +XXXX.Mod LLN0.Mod XXXX.Beh Value +on on on 1 +on blocked blocked 2 +on test test 3 +on test/blocked test/blocked 4 +on off off 5 +blocked on blocked 2 +blocked blocked blocked 2 +blocked test test/blocked 4 +blocked test/blocked test/blocked 4 +blocked off off 5 +test on test 3 +test blocked test/blocked 4 +test test test 3 +test test/blocked test/blocked 4 +test off off 5 +test/blocked on test/blocked 4 +test/blocked blocked test/blocked 4 +test/blocked test test/blocked 4 +test/blocked test/blocked test/blocked 4 +test/blocked off off 5 +off on off 5 +off blocked off 5 +off test off 5 +off test/blocked off 5 +off off off 5', htmlDescription='

LNMode LDMode LNBeh (read only) LNBeh

XXXX.Mod LLN0.Mod XXXX.Beh Value

on on on 1

on blocked blocked 2

on test test 3

on test/blocked test/blocked 4

on off off 5

blocked on blocked 2

blocked blocked blocked 2

blocked test test/blocked 4

blocked test/blocked test/blocked 4

blocked off off 5

test on test 3

test blocked test/blocked 4

test test test 3

test test/blocked test/blocked 4

test off off 5

test/blocked on test/blocked 4

test/blocked blocked test/blocked 4

test/blocked test test/blocked 4

test/blocked test/blocked test/blocked 4

test/blocked off off 5

off on off 5

off blocked off 5

off test off 5

off test/blocked off 5

off off off 5

'], _containingPackage=LogicalNodes, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=2727, uuid={1E36F7F7-68C3-4b87-8A96-CBE243CB505D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='TODO: Describe these somehow... +Note: There should be a link between the LLN0 (which is "the data of LD") and all the DomainLNs contained in the LD.', htmlDescription='

TODO: Describe these somehow...

Note: There should be a link between the LLN0 (which is "the data of LD") and all the DomainLNs contained in the LD.

'], _containingPackage=LogicalNodes, _otherEndName=], SkippedBuilder [, _kind=BOUNDARY, _isConnector=false, _objData=UmlObjectData [id=2740, uuid={70BF6490-0829-4499-B3F1-91B1F53AB7E5}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=LogicalNodes, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3031, uuid={2B7E85C1-2253-47e1-9F2A-A1A6C3FD8E78}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Only GGIO and MMXU inherit from it in this sample model.', htmlDescription='

Only GGIO and MMXU inherit from it in this sample model.

'], _containingPackage=LogicalNodes, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3081, uuid={728AF8F8-AE9D-44d5-BDC8-10BD5014B6DD}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='SPSTransient has no parents, i.e., it's a badly defined CDC and doesn't get recognised as CDC.', htmlDescription='

SPSTransient has no parents, i.e., it's a badly defined CDC and doesn't get recognised as CDC.

'], _containingPackage=LogicalNodes, _otherEndName=]], 2_diagrams=[DiagramBuilder [_containingPackage=LogicalNodes, _objData=UmlObjectData [id=291, uuid={9C304E21-9AF5-4868-98F3-894BF0B82CA2}, since=null, name=LogicalNodes, alias=, stereotype=, visibility=public, txtDescription='This diagram shows all the logical node groups, with their contents, as well as the abstract logical nodes used by concrete logical nodes from multiple groups. The purpose of abstract logical nodes is to avoid duplication in definition of data objects which are used by multiple concrete logical nodes. Abstract logical nodes are never instantiated; Their attributes are inheritied by concrete logical nodes which are instantiable.', htmlDescription='

This diagram shows all the logical node groups, with their contents, as well as the abstract logical nodes used by concrete logical nodes from multiple groups. The purpose of abstract logical nodes is to avoid duplication in definition of data objects which are used by multiple concrete logical nodes. Abstract logical nodes are never instantiated; Their attributes are inheritied by concrete logical nodes which are instantiable.

'], _portrait=true, _kind=LOGICAL], DiagramBuilder [_containingPackage=LogicalNodes, _objData=UmlObjectData [id=290, uuid={13255AEB-A18C-4620-B272-CD274CE0D4D3}, since=null, name=LNRelationToACSI, alias=, stereotype=, visibility=public, txtDescription='All logical node classes defined in this document inherit their structure from the abstract LN class defined in IEC 61850-7-2. The structure comprises the attributes (e.g., name and reference), and the services and applicable control blocks defined in IEC 61850-7-2. Currently, they are all modelled with operations (services). +IEC 61850-7-4 adds data objects as attributes, in order to complete the definition of concrete logical nodes. +The diagram shows also the attributes per type of logical node defined in this document (optional attributes have multiplicity [0..1]. Physical device logical node (LPHD) and Logical device logical node (LLN0) are concrete logical node types. On the contrary, DomainLN is an abstract logical node type (its name is shown in italic), because it serves to define the attributes that shall be inherited by every concrete domain logical node type (e.g., XCBR, PDIS). Having this kind of definition at one place avoids error-prone repeating of these common attributes within the definition of every concrete domain logical node. +Some logical nodes define conditions on one or more data objects. In this diagram, this is the case for LLN0, with the condition "C1"; The definition of condition is available for each data object involved in the condition and refers to Presence conditions introduced in IEC61850-7-3, Clause 5.', htmlDescription='

All logical node classes defined in this document inherit their structure from the abstract LN class defined in IEC 61850-7-2. The structure comprises the attributes (e.g., name and reference), and the services and applicable control blocks defined in IEC 61850-7-2. Currently, they are all modelled with operations (services).

IEC 61850-7-4 adds data objects as attributes, in order to complete the definition of concrete logical nodes.

The diagram shows also the attributes per type of logical node defined in this document (optional attributes have multiplicity [0..1]. Physical device logical node (LPHD) and Logical device logical node (LLN0) are concrete logical node types. On the contrary, DomainLN is an abstract logical node type (its name is shown in italic), because it serves to define the attributes that shall be inherited by every concrete domain logical node type (e.g., XCBR, PDIS). Having this kind of definition at one place avoids error-prone repeating of these common attributes within the definition of every concrete domain logical node.

Some logical nodes define conditions on one or more data objects. In this diagram, this is the case for LLN0, with the condition "C1"; The definition of condition is available for each data object involved in the condition and refers to Presence conditions introduced in IEC61850-7-3, Clause 5.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=3, _classes=3, _childPackages=8] +2024-09-08 15:11:36,208 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=WG10, _depth=1, _eaElementID=2316, _objData=UmlObjectData [id=127, uuid={D48BF303-DE06-47d5-ACB4-80C8B5BDF58E}, since=null, name=IEC61850_7_4, alias=Logical nodes, stereotype=, visibility=public, txtDescription='Part 7-4, from clause 5.3 to the end of clause 6, annex H, and content of annex A (but wihtout table).', htmlDescription='

Part 7-4, from clause 5.3 to the end of clause 6, annex H, and content of annex A (but wihtout table).

'], _modelId=58, _selfDependent=true, 1_diagrams=[DiagramBuilder [_containingPackage=IEC61850_7_4, _objData=UmlObjectData [id=264, uuid={53319A3A-F127-44ff-9189-57CBBD02C7D3}, since=null, name=IEC61850_7_4, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the content of this package, as well as dependencies to other parts of the model. +Note: Highlighted sub-packages contained in IEC61850-7-4 are required to generate the document automatically. Package IEC61850_5::Functions is also required to generate IEC61850-7-4, but is not shown here.', htmlDescription='

This diagram shows the content of this package, as well as dependencies to other parts of the model.

Note: Highlighted sub-packages contained in IEC61850-7-4 are required to generate the document automatically. Package IEC61850_5::Functions is also required to generate IEC61850-7-4, but is not shown here.

'], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=3, _dependenciesAsTarget=2, _classes=1, _childPackages=6] +2024-09-08 15:11:36,209 [main] TRACE PackageBuilder - read PackageBuilder [_kind=TOP, _containingPackage=IEC61850Domain, _depth=0, _eaElementID=1552, _objData=UmlObjectData [id=85, uuid={13005C9D-76D7-4089-8B2E-FE8E67CC563E}, since=null, name=WG10, alias=, stereotype=, visibility=public, txtDescription='This package contains the UML model of IEC61850-7-* Ed.2. +Disclaimer: Initial version of this model has been developed by ABB Switzerland, Corporate Research and donated to IEC TC57 for further maintenance.', htmlDescription='

This package contains the UML model of IEC61850-7-* Ed.2.

Disclaimer: Initial version of this model has been developed by ABB Switzerland, Corporate Research and donated to IEC TC57 for further maintenance.

'], _modelId=58, _selfDependent=false, 17_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1553, uuid={D94F6B33-4624-48cd-AEBC-C0FDE476430F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Modelling notes: +- We have tried to stick to the definition of concepts per Part of IEC61850, by grouping them into corresponding packages. This would allow relatively straight forward generation of IEC word documents directly from this model (this has been successfully done with another UML tool for Part 7, in 2003). For a software, it is certainly possible to think of a better grouping. +- In addition to the objective of documentation generation mentioned above, the design of the model aimed at facilitating initial, skeletal code generation. For that reason, there are many dependency relationships between packages (because UML dependencies are not transitive). If the model is not to be used for code generation, explicit dependencies among sub-packages can be greatly simplified, by replacing them with top-level package dependencies. +- This model has initially been developed from mid-2002 to mid-2004 with Rational Rose CASE tool, then imported into Enterprise Architect CASE tool. Parts of the original version have indeed been successfully used for skeleton code generation (MetaModel, ACSI and DA packages). We cannot guarantee that the present model is absolutely fit for painless code generation, but it should be a good starting point. +- We "order" packages in a bottom-up way, i.e., from the least dependent (most basic) towards the most dependent. In this way, if documentation gets generated, the basic concepts are seen first, then those that use them. However, for presentation purposes, it is probably better to introduce things top-down. +How to browse the model: +- Clicking on any package will automatically open the main diagram of that package. There are many diagrams in the model, and many of them contain hyperlinks to other, related diagrams. Most of the diagram should fit onto an A4 page. +- Domain experts and those who would like to extend the model, will care the most for the content of high level packages (LogicalNodes and CommonDataClasses). +- Implementors will have to start from ACSI package, in particular from its MetaModel sub-package. +Position statement: +- If you find the model complex, please blame the authors of IEC61850, not us :-)', htmlDescription='

Modelling notes:

  • We have tried to stick to the definition of concepts per Part of IEC61850, by grouping them into corresponding packages. This would allow relatively straight forward generation of IEC word documents directly from this model (this has been successfully done with another UML tool for Part 7, in 2003). For a software, it is certainly possible to think of a better grouping.
  • In addition to the objective of documentation generation mentioned above, the design of the model aimed at facilitating initial, skeletal code generation. For that reason, there are many dependency relationships between packages (because UML dependencies are not transitive). If the model is not to be used for code generation, explicit dependencies among sub-packages can be greatly simplified, by replacing them with top-level package dependencies.
  • This model has initially been developed from mid-2002 to mid-2004 with Rational Rose CASE tool, then imported into Enterprise Architect CASE tool. Parts of the original version have indeed been successfully used for skeleton code generation (MetaModel, ACSI and DA packages). We cannot guarantee that the present model is absolutely fit for painless code generation, but it should be a good starting point.
  • We "order" packages in a bottom-up way, i.e., from the least dependent (most basic) towards the most dependent. In this way, if documentation gets generated, the basic concepts are seen first, then those that use them. However, for presentation purposes, it is probably better to introduce things top-down.

How to browse the model:

  • Clicking on any package will automatically open the main diagram of that package. There are many diagrams in the model, and many of them contain hyperlinks to other, related diagrams. Most of the diagram should fit onto an A4 page.
  • Domain experts and those who would like to extend the model, will care the most for the content of high level packages (LogicalNodes and CommonDataClasses).
  • Implementors will have to start from ACSI package, in particular from its MetaModel sub-package.

Position statement:

  • If you find the model complex, please blame the authors of IEC61850, not us :-)
'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1554, uuid={8ECEFF06-BAD2-41e0-B468-9E73B7693BE3}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='We describe the meta-model example shown in the bottom-up manner, as follows: +- VISIBLE_STRING255 and FLOAT32 are PrimitiveDAs. In this model, we have explicitly defined primitive types with the prefix 'P_', which can be used as implementation artefacts, and to protect the overall model from any potential implementation language detail. Therefore, VISIBLE_STRING255 and FLOAT32 simply hold an attribute 'val' of the corresponding primitive data type (as would be defined in a particular programming language), and inherit from the meta-model class PrimitiveDA. +- Vector and AnalogueValue are both ComposedDAs. A ComposedDA must contain at least one DA, be it ComposedDA or PrimitiveDA: Vector contains AnalogueValue 'mag', as a ComposedDA, and AnalogueValue contains FLOAT32 'f' as a PrimitiveDA. +- VISIBLE_STRING255_DC, AnalogueValue_MX and Vector_MX_dchg are all FCDAs, i.e., they provide the explicit definition for all the combinations of available functional constraints and triggering options, with DAs. Therefore, each of them simply contains an attribute, 'attr', of the corresponding DA type, either ComposedDA (in the case of AnalogueValue_MX and Vector_MX_dchg) or PrimitiveDA (in the case of VISIBLE_STRING255_DC). +- MV, CMV and WYE are all CDCs. The first two are PrimitiveCDCs and the last one is a ComposedCDC. As CDCs, they must contain one or more FCDAs - all have attribute 'd' of type VISIBLE_STRING255, and MV and CMV have attributes 'mag' and 'cVal', respectively, of types AnalogueValue_MX and Vector_MX_dchg, respectively. A ComposedCDC must additionally contain one or more PrimitiveCDCs - example for WYE is the attribute 'phsA', which is a PrimitiveCDC. +- Finally, MMXU is an LN and must contain one or more CDCs - attribute 'A' is a CDC. +With this meta-model approach, all the complexity of the datatype system is hidden below CDCs, and the essential of the domain is contained in the LNs.', htmlDescription='

We describe the meta-model example shown in the bottom-up manner, as follows:

  • VISIBLE_STRING255 and FLOAT32 are PrimitiveDAs. In this model, we have explicitly defined primitive types with the prefix 'P_', which can be used as implementation artefacts, and to protect the overall model from any potential implementation language detail. Therefore, VISIBLE_STRING255 and FLOAT32 simply hold an attribute 'val' of the corresponding primitive data type (as would be defined in a particular programming language), and inherit from the meta-model class PrimitiveDA.
  • Vector and AnalogueValue are both ComposedDAs. A ComposedDA must contain at least one DA, be it ComposedDA or PrimitiveDA: Vector contains AnalogueValue 'mag', as a ComposedDA, and AnalogueValue contains FLOAT32 'f' as a PrimitiveDA.
  • VISIBLE_STRING255_DC, AnalogueValue_MX and Vector_MX_dchg are all FCDAs, i.e., they provide the explicit definition for all the combinations of available functional constraints and triggering options, with DAs. Therefore, each of them simply contains an attribute, 'attr', of the corresponding DA type, either ComposedDA (in the case of AnalogueValue_MX and Vector_MX_dchg) or PrimitiveDA (in the case of VISIBLE_STRING255_DC).
  • MV, CMV and WYE are all CDCs. The first two are PrimitiveCDCs and the last one is a ComposedCDC. As CDCs, they must contain one or more FCDAs - all have attribute 'd' of type VISIBLE_STRING255, and MV and CMV have attributes 'mag' and 'cVal', respectively, of types AnalogueValue_MX and Vector_MX_dchg, respectively. A ComposedCDC must additionally contain one or more PrimitiveCDCs - example for WYE is the attribute 'phsA', which is a PrimitiveCDC.
  • Finally, MMXU is an LN and must contain one or more CDCs - attribute 'A' is a CDC.

With this meta-model approach, all the complexity of the datatype system is hidden below CDCs, and the essential of the domain is contained in the LNs.

'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1556, uuid={1FE867FD-79B7-464f-8052-435DD1687820}, since=null, name=Parts7 : DataModelExample, alias=, stereotype=, visibility=public, txtDescription='Parts7 : DataModelExample', htmlDescription='

Parts7 : DataModelExample

'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1557, uuid={256FF05A-27ED-4887-B5FE-EDF4614593EB}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='mag', htmlDescription='

mag

'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1558, uuid={26E40582-F186-466d-86B4-F8DD7DBC54F0}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='Part 7-2 (ACSI, meta-model) Parts 7-4, 7-3 (concrete LNs, CDCs, DAs)', htmlDescription='

Part 7-2 (ACSI, meta-model) Parts 7-4, 7-3 (concrete LNs, CDCs, DAs)

'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1559, uuid={2D4E4EBF-44BB-4c48-894D-39CD41A54738}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='...', htmlDescription='

...

'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1560, uuid={3BAA5323-14E0-439f-84A0-1B5952B05C8F}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='A', htmlDescription='

A

'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1561, uuid={3ECBDF79-B2DB-41b1-91F7-ECA45C2F64EB}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='attr', htmlDescription='

attr

'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1562, uuid={4322E030-F287-4017-9D95-2A8AF934BE65}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='attr', htmlDescription='

attr

'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1563, uuid={4A5F30B1-B039-4ef0-BDD6-3F7630BB47ED}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='cVal', htmlDescription='

cVal

'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1564, uuid={581893B5-516E-4999-B0A4-0C8538B87209}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='...', htmlDescription='

...

'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1565, uuid={5FED3E4A-CE83-456a-814C-A684836C1338}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='d', htmlDescription='

d

'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1566, uuid={884347DF-162A-4b48-A9A5-9BBF0523A2E9}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='phsA', htmlDescription='

phsA

'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1567, uuid={952F1499-B3A1-4f4d-A950-5C65655720DD}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='attr', htmlDescription='

attr

'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1568, uuid={9FAF5191-B3F7-48ad-862E-9462DA86C059}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='f', htmlDescription='

f

'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1569, uuid={A48C44FE-7EB4-4639-86A3-953DBE7DDC26}, since=null, name=Text, alias=, stereotype=, visibility=public, txtDescription='mag', htmlDescription='

mag

'], _containingPackage=WG10, _otherEndName=], SkippedBuilder [, _kind=TEXT, _isConnector=false, _objData=UmlObjectData [id=1570, uuid={BC2B22A4-E338-426a-AA6B-13C8C105619C}, since=null, name=IEC61850 : Parts7, alias=, stereotype=, visibility=public, txtDescription='IEC61850 : Parts7', htmlDescription='

IEC61850 : Parts7

'], _containingPackage=WG10, _otherEndName=]], 3_diagrams=[DiagramBuilder [_containingPackage=WG10, _objData=UmlObjectData [id=186, uuid={60DE7B56-E18B-4c76-BAE9-F26279C1F965}, since=null, name=WG10, alias=, stereotype=, visibility=public, txtDescription='Sub-packages contained in this IEC61850 model. +UML model of IEC 61850 contains concrete specifications for logical nodes (part 7-4), the whole data type system (part 7-3), and ACSI services (part 7-2), including the meta-model that represents the whole of the standard.', htmlDescription='

Sub-packages contained in this IEC61850 model.

UML model of IEC 61850 contains concrete specifications for logical nodes (part 7-4), the whole data type system (part 7-3), and ACSI services (part 7-2), including the meta-model that represents the whole of the standard.

'], _portrait=true, _kind=PACKAGE], DiagramBuilder [_containingPackage=WG10, _objData=UmlObjectData [id=187, uuid={3AD43F3E-BF5F-4d70-B8EB-D0104CA1E17D}, since=null, name=Parts7, alias=, stereotype=, visibility=public, txtDescription='This diagram shows main packages and sub-packages included in this IEC61850-7-x model. +Colours show in which part of the standard the types are originally defined (or deduced from): +- green: IEC 61850-7-2 +- pink: IEC 61850-7-3 +- yellow: IEC 61850-7-4 +Elipses in packages (e.g., CDCs and DomainLNs) indicate that they have more sub-packages, but they are not shown in this diagram.', htmlDescription='

This diagram shows main packages and sub-packages included in this IEC61850-7-x model.

Colours show in which part of the standard the types are originally defined (or deduced from):

- green: IEC 61850-7-2

- pink: IEC 61850-7-3

- yellow: IEC 61850-7-4

Elipses in packages (e.g., CDCs and DomainLNs) indicate that they have more sub-packages, but they are not shown in this diagram.

'], _portrait=true, _kind=PACKAGE], DiagramBuilder [_containingPackage=WG10, _objData=UmlObjectData [id=188, uuid={7BD8A88D-424B-4ea2-B24A-F09076F9051B}, since=null, name=DataModelExample, alias=, stereotype=, visibility=public, txtDescription='This diagram shows the most complex example with one concrete subclass for data-related classes of the meta-model, i.e., LNs, CDCs, FCDAs and DAs (classes in colour). On the diagram, we hide all the attributes but those used for the example.', htmlDescription='

This diagram shows the most complex example with one concrete subclass for data-related classes of the meta-model, i.e., LNs, CDCs, FCDAs and DAs (classes in colour). On the diagram, we hide all the attributes but those used for the example.

'], _portrait=true, _kind=LOGICAL]], _classes=1, _childPackages=4] +2024-09-08 15:11:36,210 [main] INFO PackageBuilder - processing top package WG17 (2) ... +2024-09-08 15:11:36,210 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=WG17, _objData=UmlObjectData [id=318, uuid={39B0DD35-E4C9-45d0-B13B-0D9A0122F543}, since=null, name=WG17, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:36,210 [main] DEBUG PackageBuilder - Updated source of package dependency DependencyBuilder [_kind=PACKAGE, qName = IEC61850Domain::WG17->WG10::IEC61850_7_4, _objData=UmlObjectData [id=3439, uuid={E2817A04-CD9C-40de-8B67-F4454ADA8AB4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,210 [main] TRACE ClassBuilder - Class WG17UMLVersion (0 in package WG17) +2024-09-08 15:11:36,210 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=WG17::WG17UMLVersion, _objData=UmlObjectData [id=6699, uuid={099DC0EB-9CC5-4542-93AA-C75609272A32}, since=null, name=version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=IEC61850UML02v07, _eaTypeId=1665, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,211 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=WG17::WG17UMLVersion, _objData=UmlObjectData [id=6700, uuid={9E25E042-164C-49d4-8FF5-4CDD536755AF}, since=null, name=date, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=2011-07-02, _eaTypeId=1665, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,211 [main] TRACE ClassBuilder - read from EA: WG17::WG17UMLVersion +2024-09-08 15:11:36,211 [main] INFO PackageBuilder - processing package IEC51850_7_420 (0) ... +2024-09-08 15:11:36,211 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=IEC51850_7_420, _objData=UmlObjectData [id=327, uuid={71125DD0-14D6-4873-AE6E-3FB7FC4D4C43}, since=null, name=IEC51850_7_420, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=PACKAGE] +2024-09-08 15:11:36,212 [main] DEBUG PackageBuilder - Updated target of package dependency DependencyBuilder [_kind=PACKAGE, qName = WG10::IEC61850_7_4->WG17::IEC51850_7_420, _objData=UmlObjectData [id=3451, uuid={B8B9C543-69FC-4204-9AA3-FDDAAAD9C3EF}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription='']] +2024-09-08 15:11:36,212 [main] TRACE ClassBuilder - Class IEC61850_7_420Namespace (0 in package IEC51850_7_420) +2024-09-08 15:11:36,212 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC51850_7_420::IEC61850_7_420Namespace, _objData=UmlObjectData [id=6694, uuid={37A50D0D-25D0-40f9-A970-0C0181B4083C}, since=null, name=id, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=IEC61850-7-4, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,212 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC51850_7_420::IEC61850_7_420Namespace, _objData=UmlObjectData [id=6695, uuid={DB395AA8-3595-4eac-9425-EE064A3088CF}, since=null, name=version, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2009, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,212 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC51850_7_420::IEC61850_7_420Namespace, _objData=UmlObjectData [id=6696, uuid={A915165D-45F3-4091-95B9-A7D11078449A}, since=null, name=revision, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=A, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,213 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC51850_7_420::IEC61850_7_420Namespace, _objData=UmlObjectData [id=6697, uuid={E9E37DBA-80F5-4c0d-88BA-82D6818D500E}, since=null, name=date, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2011-08-01, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,213 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=IEC51850_7_420::IEC61850_7_420Namespace, _objData=UmlObjectData [id=6698, uuid={B24D4729-DFA5-4699-9D34-2DE999F86048}, since=null, name=tissuesApplied, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1,2, 3, 127,200, _eaTypeId=1549, _eaTypeName=P_VISIBLE_STRING64, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,213 [main] TRACE ClassBuilder - read from EA: IEC51850_7_420::IEC61850_7_420Namespace +2024-09-08 15:11:36,213 [main] INFO PackageBuilder - processing package DOEnums_7_420 (1) ... +2024-09-08 15:11:36,213 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=DOEnums_7_420, _objData=UmlObjectData [id=323, uuid={5F9E18A6-6667-4939-8B1A-86E53DCA46D0}, since=null, name=DOEnums_7_420, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:36,214 [main] TRACE ClassBuilder - Class ExtBaseKind (0 in package DOEnums_7_420) +2024-09-08 15:11:36,214 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums_7_420::ExtBaseKind, _objData=UmlObjectData [id=6717, uuid={F996EDFA-F779-4248-A73C-4FB8EB5EDCFD}, since=null, name=ebk1, alias=, stereotype=enum, deprecated, visibility=public, txtDescription='Desc ebk1.', htmlDescription='

Desc ebk1.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,214 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums_7_420::ExtBaseKind, _objData=UmlObjectData [id=6718, uuid={D508A0F6-E720-4549-BD42-B88FF76B26DA}, since=null, name=ebk2, alias=, stereotype=enum, visibility=public, txtDescription='Desc ebk2.', htmlDescription='

Desc ebk2.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,214 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums_7_420::ExtBaseKind, _objData=UmlObjectData [id=6719, uuid={26234119-2BB1-48b7-ADCA-F06484AA8B48}, since=null, name=ebk3, alias=, stereotype=enum, visibility=public, txtDescription='Desc ebk3.', htmlDescription='

Desc ebk3.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,214 [main] DEBUG ClassBuilder - Adding ExtBaseKind as subclass of BaseKind +2024-09-08 15:11:36,214 [main] TRACE ClassBuilder - read from EA: DOEnums_7_420::ExtBaseKind +2024-09-08 15:11:36,215 [main] TRACE ClassBuilder - Class MaterialKind (1 in package DOEnums_7_420) +2024-09-08 15:11:36,215 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums_7_420::MaterialKind, _objData=UmlObjectData [id=6683, uuid={163334D0-2A8C-4397-8A83-050F7445E0D4}, since=null, name=mat1, alias=, stereotype=enum, visibility=public, txtDescription='Material 1.', htmlDescription='

Material 1.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,215 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums_7_420::MaterialKind, _objData=UmlObjectData [id=6684, uuid={84642B03-0044-43ea-9A41-5CE5254CA942}, since=null, name=mat2, alias=, stereotype=enum, visibility=public, txtDescription='Sample material 2.', htmlDescription='

Sample material 2.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,215 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums_7_420::MaterialKind, _objData=UmlObjectData [id=6685, uuid={D8CF9E32-600F-425b-A2C1-881AD70C3F43}, since=null, name=mat3, alias=, stereotype=enum, visibility=public, txtDescription='Some material 3.', htmlDescription='

Some material 3.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,215 [main] TRACE ClassBuilder - read from EA: DOEnums_7_420::MaterialKind +2024-09-08 15:11:36,215 [main] TRACE ClassBuilder - Class MaterialTransitionKind (2 in package DOEnums_7_420) +2024-09-08 15:11:36,215 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums_7_420::MaterialTransitionKind, _objData=UmlObjectData [id=6710, uuid={5AD84B53-B213-40b4-9A28-DE90FF4F1CDD}, since=null, name=trans1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,215 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums_7_420::MaterialTransitionKind, _objData=UmlObjectData [id=6711, uuid={164BCB4A-9F0D-4c38-B6D7-A15C5308DB62}, since=null, name=trans2, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,215 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums_7_420::MaterialTransitionKind, _objData=UmlObjectData [id=6712, uuid={4CCCD663-6C81-49ee-8E3B-2F0D2F705275}, since=null, name=trans3, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,215 [main] TRACE ClassBuilder - read from EA: DOEnums_7_420::MaterialTransitionKind +2024-09-08 15:11:36,215 [main] TRACE ClassBuilder - Class OtherKind (3 in package DOEnums_7_420) +2024-09-08 15:11:36,216 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums_7_420::OtherKind, _objData=UmlObjectData [id=6686, uuid={F640B955-0B9F-40dc-86DD-775AF6EB58CC}, since=null, name=mat1, alias=, stereotype=enum, visibility=public, txtDescription='Material 1.', htmlDescription='

Material 1.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,216 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums_7_420::OtherKind, _objData=UmlObjectData [id=6687, uuid={4D059DA8-1951-46b6-BB23-919182E397F3}, since=null, name=mat2, alias=, stereotype=enum, visibility=public, txtDescription='Sample material 2.', htmlDescription='

Sample material 2.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=2, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,216 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DOEnums_7_420::OtherKind, _objData=UmlObjectData [id=6688, uuid={E516361C-D992-4e52-9818-C19539445D9A}, since=null, name=mat3, alias=, stereotype=enum, visibility=public, txtDescription='Some material 3.', htmlDescription='

Some material 3.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=3, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,216 [main] TRACE ClassBuilder - read from EA: DOEnums_7_420::OtherKind +2024-09-08 15:11:36,216 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC51850_7_420, _depth=2, _eaElementID=3050, _objData=UmlObjectData [id=169, uuid={812209B5-E759-41f0-8D9A-E65D27EE7093}, since=null, name=DOEnums_7_420, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=DOEnums_7_420, _objData=UmlObjectData [id=323, uuid={5F9E18A6-6667-4939-8B1A-86E53DCA46D0}, since=null, name=DOEnums_7_420, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _classes=4 +2024-09-08 15:11:36,216 [main] INFO PackageBuilder - processing package DerivedDAs_7_420 (2) ... +2024-09-08 15:11:36,217 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=DerivedDAs_7_420, _objData=UmlObjectData [id=324, uuid={E18B19D0-B575-453a-96C4-042C4072EE83}, since=null, name=DerivedDAs_7_420, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:36,217 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3057, uuid={E197B961-F8ED-4cf7-B160-357A93E6A745}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Created this one to validate usage of types from unexpected namespace (e.g., WG10 uses something from WG17).', htmlDescription='

Created this one to validate usage of types from unexpected namespace (e.g., WG10 uses something from WG17).

'], _containingPackage=DerivedDAs_7_420, _otherEndName=] +2024-09-08 15:11:36,218 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3058, uuid={67416752-6F39-45f6-9391-FB685969A442}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='And created this one to validate that 'val' on PrimitiveDA subtypes must be private to ensure correct type deduction (for basedOn enum type in XML, and also detail within 7-4xx tables for ENS/ENG/ENC extensions).', htmlDescription='

And created this one to validate that 'val' on PrimitiveDA subtypes must be private to ensure correct type deduction (for basedOn enum type in XML, and also detail within 7-4xx tables for ENS/ENG/ENC extensions).

'], _containingPackage=DerivedDAs_7_420, _otherEndName=] +2024-09-08 15:11:36,218 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3089, uuid={56DA0CA4-E8E6-4ea1-AA45-A7A3CAC4D1A9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Crated this one to mimic double underlying type for ENC enums.', htmlDescription='

Crated this one to mimic double underlying type for ENC enums.

'], _containingPackage=DerivedDAs_7_420, _otherEndName=] +2024-09-08 15:11:36,218 [main] TRACE ClassBuilder - Class Material (1 in package DerivedDAs_7_420) +2024-09-08 15:11:36,218 [main] DEBUG DbAttributeBuilder - fixing lower bound '' to 1 for attr:UmlObjectData [id=6689, uuid={47188E9E-FFB6-4e55-A604-306AF82D676C}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''] +2024-09-08 15:11:36,218 [main] DEBUG DbAttributeBuilder - fixing upper bound '' to 1 for attr:UmlObjectData [id=6689, uuid={47188E9E-FFB6-4e55-A604-306AF82D676C}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''] +2024-09-08 15:11:36,218 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DerivedDAs_7_420::Material, _objData=UmlObjectData [id=6689, uuid={47188E9E-FFB6-4e55-A604-306AF82D676C}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=3053, _eaTypeName=MaterialKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,218 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3433, uuid={1E6FAD6B-C919-48f3-A1C2-27E29C0502E4}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=Material, _otherEndName=?] +2024-09-08 15:11:36,218 [main] DEBUG ClassBuilder - Adding Material as subclass of EnumDA +2024-09-08 15:11:36,218 [main] TRACE ClassBuilder - read from EA: DerivedDAs_7_420::Material +2024-09-08 15:11:36,218 [main] TRACE ClassBuilder - Class Material_control (2 in package DerivedDAs_7_420) +2024-09-08 15:11:36,219 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DerivedDAs_7_420::Material_control, _objData=UmlObjectData [id=6713, uuid={6C2F0C32-0A2D-4e50-AAC2-A5830B1AB795}, since=null, name=ctlVal, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=3087, _eaTypeName=MaterialTransitionKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,219 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3474, uuid={1D882B25-52D7-41ad-B9D2-4D53B31FC4B0}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=Material_control, _otherEndName=?] +2024-09-08 15:11:36,219 [main] DEBUG ClassBuilder - Adding Material_control as subclass of EnumDA +2024-09-08 15:11:36,219 [main] TRACE ClassBuilder - read from EA: DerivedDAs_7_420::Material_control +2024-09-08 15:11:36,219 [main] TRACE ClassBuilder - Class Other (3 in package DerivedDAs_7_420) +2024-09-08 15:11:36,219 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=DerivedDAs_7_420::Other, _objData=UmlObjectData [id=6690, uuid={F04B56ED-9BE4-4ac4-8482-893675D15119}, since=null, name=val, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=3054, _eaTypeName=OtherKind, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,219 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3432, uuid={A6301D0F-D756-4e6f-8E7F-B85510838DDC}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=Other, _otherEndName=?] +2024-09-08 15:11:36,219 [main] DEBUG ClassBuilder - Adding Other as subclass of EnumDA +2024-09-08 15:11:36,219 [main] TRACE ClassBuilder - read from EA: DerivedDAs_7_420::Other +2024-09-08 15:11:36,219 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC51850_7_420, _depth=2, _eaElementID=3051, _objData=UmlObjectData [id=170, uuid={65B8CA71-5586-433a-A4D0-F6A6D2CA451F}, since=null, name=DerivedDAs_7_420, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=58, _selfDependent=false, 3_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3057, uuid={E197B961-F8ED-4cf7-B160-357A93E6A745}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Created this one to validate usage of types from unexpected namespace (e.g., WG10 uses something from WG17).', htmlDescription='

Created this one to validate usage of types from unexpected namespace (e.g., WG10 uses something from WG17).

'], _containingPackage=DerivedDAs_7_420, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3058, uuid={67416752-6F39-45f6-9391-FB685969A442}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='And created this one to validate that 'val' on PrimitiveDA subtypes must be private to ensure correct type deduction (for basedOn enum type in XML, and also detail within 7-4xx tables for ENS/ENG/ENC extensions).', htmlDescription='

And created this one to validate that 'val' on PrimitiveDA subtypes must be private to ensure correct type deduction (for basedOn enum type in XML, and also detail within 7-4xx tables for ENS/ENG/ENC extensions).

'], _containingPackage=DerivedDAs_7_420, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3089, uuid={56DA0CA4-E8E6-4ea1-AA45-A7A3CAC4D1A9}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Crated this one to mimic double underlying type for ENC enums.', htmlDescription='

Crated this one to mimic double underlying type for ENC enums.

'], _containingPackage=DerivedDAs_7_420, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=DerivedDAs_7_420, _objData=UmlObjectData [id=324, uuid={E18B19D0-B575-453a-96C4-042C4072EE83}, since=null, name=DerivedDAs_7_420, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _classes=3 +2024-09-08 15:11:36,219 [main] INFO PackageBuilder - processing package DerivedCDCs_7_420 (3) ... +2024-09-08 15:11:36,220 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=DerivedCDCs_7_420, _objData=UmlObjectData [id=325, uuid={62D05D73-23D6-489d-88E9-17E97E7D29B3}, since=null, name=DerivedCDCs_7_420, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:36,220 [main] TRACE ClassBuilder - Class ENCMaterial (1 in package DerivedCDCs_7_420) +2024-09-08 15:11:36,221 [main] DEBUG ClassBuilder - Adding ENCMaterial as subclass of ENC +2024-09-08 15:11:36,221 [main] TRACE ClassBuilder - read from EA: DerivedCDCs_7_420::ENCMaterial +2024-09-08 15:11:36,221 [main] TRACE ClassBuilder - Class ENSMaterial (2 in package DerivedCDCs_7_420) +2024-09-08 15:11:36,221 [main] DEBUG ClassBuilder - Adding ENSMaterial as subclass of ENS +2024-09-08 15:11:36,221 [main] TRACE ClassBuilder - read from EA: DerivedCDCs_7_420::ENSMaterial +2024-09-08 15:11:36,221 [main] TRACE ClassBuilder - Class ENSOther (3 in package DerivedCDCs_7_420) +2024-09-08 15:11:36,222 [main] DEBUG ClassBuilder - Adding ENSOther as subclass of ENS +2024-09-08 15:11:36,222 [main] TRACE ClassBuilder - read from EA: DerivedCDCs_7_420::ENSOther +2024-09-08 15:11:36,222 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=IEC51850_7_420, _depth=2, _eaElementID=3052, _objData=UmlObjectData [id=171, uuid={D1A96A51-C6DC-489e-8678-53F18F4D4D5F}, since=null, name=DerivedCDCs_7_420, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=DerivedCDCs_7_420, _objData=UmlObjectData [id=325, uuid={62D05D73-23D6-489d-88E9-17E97E7D29B3}, since=null, name=DerivedCDCs_7_420, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _classes=3 +2024-09-08 15:11:36,222 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=WG17, _depth=1, _eaElementID=3066, _objData=UmlObjectData [id=172, uuid={B02D55B6-1DEA-4d56-8263-22121C981945}, since=null, name=IEC51850_7_420, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=IEC51850_7_420, _objData=UmlObjectData [id=327, uuid={71125DD0-14D6-4873-AE6E-3FB7FC4D4C43}, since=null, name=IEC51850_7_420, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=PACKAGE]], _dependenciesAsTarget=1, _classes=1, _childPackages=3] +2024-09-08 15:11:36,222 [main] TRACE PackageBuilder - read PackageBuilder [_kind=TOP, _containingPackage=IEC61850Domain, _depth=0, _eaElementID=3023, _objData=UmlObjectData [id=163, uuid={4D3252F7-18AA-4c62-9BE1-6A4EB93DC22D}, since=null, name=WG17, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=WG17, _objData=UmlObjectData [id=318, uuid={39B0DD35-E4C9-45d0-B13B-0D9A0122F543}, since=null, name=WG17, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _dependenciesAsSource=1, _classes=1, _childPackages=1] +2024-09-08 15:11:36,222 [main] INFO PackageBuilder - processing top package WG18 (3) ... +2024-09-08 15:11:36,222 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=WG18, _objData=UmlObjectData [id=319, uuid={56FFDD54-06CF-4a86-BA72-EC64D3EB8342}, since=null, name=WG18, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:36,223 [main] INFO PackageBuilder - processing package Abbreviations_410 (0) ... +2024-09-08 15:11:36,223 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Abbreviations_410, _objData=UmlObjectData [id=320, uuid={674B8FBD-E147-4fd6-97E2-B2AFE39A9735}, since=null, name=Abbreviations_410, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:36,224 [main] TRACE ClassBuilder - Class AbbrTermA (0 in package Abbreviations_410) +2024-09-08 15:11:36,224 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abbreviations_410::AbbrTermA, _objData=UmlObjectData [id=6640, uuid={123063FC-3D58-4faa-96F9-EAAE4724384A}, since=null, name=Abc, alias=, stereotype=enum, visibility=public, txtDescription='Any', htmlDescription='

Any

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,224 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abbreviations_410::AbbrTermA, _objData=UmlObjectData [id=6641, uuid={94B8FDB5-0CB3-4f0b-B930-B99E0ECE16C1}, since=null, name=Alm2, alias=, stereotype=enum, visibility=public, txtDescription='Alarm', htmlDescription='

Alarm

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,224 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Abbreviations_410::AbbrTermA, _objData=UmlObjectData [id=6642, uuid={28072DCB-1DCE-439e-A69C-4E654D628880}, since=null, name=Amp, alias=, stereotype=enum, visibility=public, txtDescription='Duplicated definition: Current non-phase-related', htmlDescription='

Duplicated definition: Current non-phase-related

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,224 [main] TRACE ClassBuilder - read from EA: Abbreviations_410::AbbrTermA +2024-09-08 15:11:36,225 [main] TRACE PackageBuilder - read PackageBuilder [_kind=PACKAGE, _containingPackage=WG18, _depth=1, _eaElementID=3025, _objData=UmlObjectData [id=165, uuid={68E0B9A6-EF24-475e-AECE-93E2A716EEFB}, since=null, name=Abbreviations_410, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=Abbreviations_410, _objData=UmlObjectData [id=320, uuid={674B8FBD-E147-4fd6-97E2-B2AFE39A9735}, since=null, name=Abbreviations_410, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _classes=1 +2024-09-08 15:11:36,225 [main] TRACE PackageBuilder - read PackageBuilder [_kind=TOP, _containingPackage=IEC61850Domain, _depth=0, _eaElementID=3024, _objData=UmlObjectData [id=164, uuid={CB64D339-80A8-4da3-AFF7-D465DC0A98FB}, since=null, name=WG18, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=WG18, _objData=UmlObjectData [id=319, uuid={56FFDD54-06CF-4a86-BA72-EC64D3EB8342}, since=null, name=WG18, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _childPackages=1] +2024-09-08 15:11:36,225 [main] INFO PackageBuilder - processing top package JWG25 (4) ... +2024-09-08 15:11:36,225 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=JWG25, _objData=UmlObjectData [id=317, uuid={4D04D6E8-E7D9-4b40-B94E-35253E69429A}, since=null, name=JWG25, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:36,225 [main] TRACE PackageBuilder - read PackageBuilder [_kind=TOP, _containingPackage=IEC61850Domain, _depth=0, _eaElementID=3022, _objData=UmlObjectData [id=162, uuid={420923C3-C122-4d55-8CCF-7C90FFAF7514}, since=null, name=JWG25, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=58, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=JWG25, _objData=UmlObjectData [id=317, uuid={4D04D6E8-E7D9-4b40-B94E-35253E69429A}, since=null, name=JWG25, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]] +2024-09-08 15:11:36,225 [main] TRACE PackageBuilder - read PackageBuilder [_kind=MODEL, _depth=-1, _eaElementID=1455, _objData=UmlObjectData [id=58, uuid={5302BB59-9354-4acd-ACB1-2EE1C53C8BEB}, since=null, name=IEC61850Domain, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=58, _selfDependent=false, 2_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3068, uuid={89AF424B-7761-4043-BDAB-5A10CE7C0549}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Tool should derive from this dependency that "any namespace under WG17 depends on 7-4".', htmlDescription='

Tool should derive from this dependency that "any namespace under WG17 depends on 7-4".

'], _containingPackage=IEC61850Domain, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3069, uuid={BFBF085D-757B-45ee-87C8-AA171DB3EB73}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='7_3 and 7_4 packages: +1. One of (circular) dependencies should be caught as invalid and the search stopped. +2. Both self-dependencies should be also caught as invalid and the search stopped.', htmlDescription='

7_3 and 7_4 packages:

  1. One of (circular) dependencies should be caught as invalid and the search stopped.
  2. Both self-dependencies should be also caught as invalid and the search stopped.
'], _containingPackage=IEC61850Domain, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=IEC61850Domain, _objData=UmlObjectData [id=160, uuid={6CF56053-B50F-4cfd-9886-2785DAD0964E}, since=null, name=IEC61850Domain, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _childPackages=4] +2024-09-08 15:11:36,225 [main] INFO PackageBuilder - processing model package MyCimExtensions (3) ... +2024-09-08 15:11:36,225 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=MyCimExtensions, _objData=UmlObjectData [id=168, uuid={60D66409-416D-40a4-B387-83D4978AF099}, since=null, name=MyCimExtensions, alias=, stereotype=European, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:36,226 [main] ERROR EaTables - [+++ EA ordering problem for 2 class(s) in MyCimExtensions (manually move back/forth a class to initiate EA internal ordering update!): +, +++ class DFD_External1: pos = 0 +, +++ class DFD_DataStore1: pos = 0 DUPLICATE +] +2024-09-08 15:11:36,226 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=false, _objData=UmlObjectData [id=3076, uuid={93440207-D561-463c-AFEC-2CCBD3A1C02C}, since=null, name=DFD_Process1, alias=, stereotype=DFD_Process, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=MyCimExtensions, _otherEndName=] +2024-09-08 15:11:36,226 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3079, uuid={4D1094DE-526D-437b-8E6C-BA2ADCBB8B84}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='All these dependencies created to test that they get skipped when non-sense. +Also new kind of EA elements (from Data Flow Diagram toolbox).', htmlDescription='

All these dependencies created to test that they get skipped when non-sense.

Also new kind of EA elements (from Data Flow Diagram toolbox).

'], _containingPackage=MyCimExtensions, _otherEndName=] +2024-09-08 15:11:36,226 [main] TRACE ClassBuilder - Class DFD_External1 (0 in package MyCimExtensions) +2024-09-08 15:11:36,227 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=3462, uuid={4C44DD9C-CFA6-409f-96DF-DC5B995BA889}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=DFD_External1, _otherEndName=?] +2024-09-08 15:11:36,227 [main] TRACE ClassBuilder - read from EA: MyCimExtensions::DFD_External1 +2024-09-08 15:11:36,227 [main] TRACE ClassBuilder - Class DFD_DataStore1 (0 in package MyCimExtensions) +2024-09-08 15:11:36,227 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=3461, uuid={A511BB57-6587-4b01-91B6-07FA73F4CC34}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=DFD_DataStore1, _otherEndName=?] +2024-09-08 15:11:36,227 [main] TRACE ClassBuilder - read from EA: MyCimExtensions::DFD_DataStore1 +2024-09-08 15:11:36,227 [main] INFO PackageBuilder - processing top package Ext1 (1) ... +2024-09-08 15:11:36,227 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Ext1, _objData=UmlObjectData [id=169, uuid={D5D8113F-F068-47b9-AD5E-A6E3EAC3B4A5}, since=null, name=Ext1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:36,228 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=3458, uuid={0DF96453-9F41-4fd0-B153-AA73C8BBA90C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Ext1, _otherEndName=Class 'Apple'] +2024-09-08 15:11:36,228 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=3460, uuid={7E090DCF-7AE3-4850-A950-821D06B4204F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Ext1, _otherEndName=Activity 'DFD_Process1'] +2024-09-08 15:11:36,228 [main] ERROR EaTables - [+++ EA ordering problem for 5 class(s) in Ext1 (manually move back/forth a class to initiate EA internal ordering update!): +, +++ class Apple: pos = 0 +, +++ class Fruit: pos = 0 DUPLICATE +, +++ class Pear: pos = 0 DUPLICATE +, +++ class FruitBinKind: pos = 0 DUPLICATE +, +++ class Village: pos = 0 DUPLICATE +] +2024-09-08 15:11:36,228 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1527, uuid={8FFE60E7-D67F-4a78-83C3-8F0957CAB288}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Associations are for testing multiple associations between two classes, and recursive (self) associations; tags and stereotypes on associations and their ends.', htmlDescription='

Associations are for testing multiple associations between two classes, and recursive (self) associations; tags and stereotypes on associations and their ends.

'], _containingPackage=Ext1, _otherEndName=] +2024-09-08 15:11:36,228 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3037, uuid={DED259D4-C7E8-4e3b-8718-6CB951B07762}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Replicates bug reported by Pat Brown on version 01v07: +- Class having an association inadvertently embedded into an enumerated type. +- model builder throws NPE when cross-checking associations.', htmlDescription='

Replicates bug reported by Pat Brown on version 01v07:

- Class having an association inadvertently embedded into an enumerated type.

- model builder throws NPE when cross-checking associations.

'], _containingPackage=Ext1, _otherEndName=] +2024-09-08 15:11:36,228 [main] TRACE ClassBuilder - Class Apple (0 in package Ext1) +2024-09-08 15:11:36,228 [main] DEBUG DbAttributeBuilder - fixing lower bound '' to 1 for enum:UmlObjectData [id=3286, uuid={A7C8D399-77B9-43bf-81E0-5CD276C86FE6}, since=null, name=shouldNotBeEnum, alias=, stereotype=enum, visibility=private, txtDescription='', htmlDescription=''] +2024-09-08 15:11:36,228 [main] DEBUG DbAttributeBuilder - fixing upper bound '' to 1 for enum:UmlObjectData [id=3286, uuid={A7C8D399-77B9-43bf-81E0-5CD276C86FE6}, since=null, name=shouldNotBeEnum, alias=, stereotype=enum, visibility=private, txtDescription='', htmlDescription=''] +2024-09-08 15:11:36,228 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Ext1::Apple, _objData=UmlObjectData [id=3286, uuid={A7C8D399-77B9-43bf-81E0-5CD276C86FE6}, since=null, name=shouldNotBeEnum, alias=, stereotype=enum, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,229 [main] DEBUG AssociationEndBuilder - Updated source type to Apple +2024-09-08 15:11:36,229 [main] DEBUG AssociationEndBuilder - Updated target type to Apple +2024-09-08 15:11:36,229 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2025, uuid=72dc638c-d696-3922-b96a-fa5f53958681, since=null, name=SelfFromApple, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Apple, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2026, uuid=65f3723c-2924-3fb9-8feb-07ff58485105, since=null, name=SelfToApples, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Apple, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=2140, uuid={0D57F849-565B-4f3b-80BE-57B70D69A932}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:36,229 [main] DEBUG AssociationEndBuilder - Updated target type to Apple +2024-09-08 15:11:36,229 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2028, uuid=1bba8621-dd6e-3ce5-8d7b-b8589d4e1b6a, since=null, name=Pear, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified, 1_taggedValues{assocEndTag=value}], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2029, uuid=7be9b48e-224b-3878-a982-788c533facf9, since=null, name=Apple, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Apple, _multiplicity=[0..*], _navigable=unspecified, 1_taggedValues{targetEndTag=value2}], _objData=UmlObjectData [id=2141, uuid={954F6518-04E4-4b31-8F4B-8B9F6E690AE3}, since=null, name=, alias=, stereotype=dumbStereotype, European, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:36,230 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2028, uuid=1bba8621-dd6e-3ce5-8d7b-b8589d4e1b6a, since=null, name=Pear, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified, 1_taggedValues{assocEndTag=value}], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2029, uuid=7be9b48e-224b-3878-a982-788c533facf9, since=null, name=Apple, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Apple, _multiplicity=[0..*], _navigable=unspecified, 1_taggedValues{targetEndTag=value2}], _objData=UmlObjectData [id=2141, uuid={954F6518-04E4-4b31-8F4B-8B9F6E690AE3}, since=null, name=, alias=, stereotype=dumbStereotype, European, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Ext1::Apple +2024-09-08 15:11:36,230 [main] DEBUG AssociationEndBuilder - Updated target type to Apple +2024-09-08 15:11:36,230 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2031, uuid=6fc97e58-ed3b-38ec-8ac6-0e4c451f40bc, since=null, name=SecondPear, alias=, stereotype=sourceStereo, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2032, uuid=e128a404-9ba6-3f7d-b760-72f20970e33c, since=null, name=SecondApple, alias=, stereotype=targetStereo, European, visibility=public, txtDescription='', htmlDescription=''], _type=Apple, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=2142, uuid={624196D8-07C7-45ee-961A-BC80925C1D8C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false, 1_taggedValues{assocTag=value0}] +2024-09-08 15:11:36,231 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2031, uuid=6fc97e58-ed3b-38ec-8ac6-0e4c451f40bc, since=null, name=SecondPear, alias=, stereotype=sourceStereo, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2032, uuid=e128a404-9ba6-3f7d-b760-72f20970e33c, since=null, name=SecondApple, alias=, stereotype=targetStereo, European, visibility=public, txtDescription='', htmlDescription=''], _type=Apple, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=2142, uuid={624196D8-07C7-45ee-961A-BC80925C1D8C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false, 1_taggedValues{assocTag=value0}] as target to Ext1::Apple +2024-09-08 15:11:36,231 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=3458, uuid={0DF96453-9F41-4fd0-B153-AA73C8BBA90C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=Apple, _otherEndName=?] +2024-09-08 15:11:36,231 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=3459, uuid={DCF3BEE2-32C5-4328-B679-92D2087B4019}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=Apple, _otherEndName=?] +2024-09-08 15:11:36,231 [main] TRACE ClassBuilder - read from EA: Ext1::Apple +2024-09-08 15:11:36,232 [main] TRACE ClassBuilder - Class Fruit (0 in package Ext1) +2024-09-08 15:11:36,232 [main] DEBUG AssociationEndBuilder - Updated target type to Fruit +2024-09-08 15:11:36,233 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2037, uuid=846c3cd9-8238-3d7f-b379-955bd684f4cd, since=null, name=Animal, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2038, uuid=264476c8-aa4a-328e-8d0c-f9841b559539, since=null, name=Fruit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Fruit, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=2143, uuid={22327B79-0B9D-43d4-8435-A05F123D2CDA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:36,233 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2037, uuid=846c3cd9-8238-3d7f-b379-955bd684f4cd, since=null, name=Animal, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2038, uuid=264476c8-aa4a-328e-8d0c-f9841b559539, since=null, name=Fruit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Fruit, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=2143, uuid={22327B79-0B9D-43d4-8435-A05F123D2CDA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Ext1::Fruit +2024-09-08 15:11:36,233 [main] DEBUG AssociationEndBuilder - Updated target type to Fruit +2024-09-08 15:11:36,233 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2040, uuid=8cd3a8e5-c4f8-36f6-8896-6e7d87ec1730, since=null, name=SecondAnimal, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2041, uuid=1e4b2298-d2b3-33d1-afe4-b959166b0c74, since=null, name=SecondFruit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Fruit, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=2144, uuid={2C4806C9-BA94-4210-8DA4-94FAF9D3A7A2}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:36,233 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2040, uuid=8cd3a8e5-c4f8-36f6-8896-6e7d87ec1730, since=null, name=SecondAnimal, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[1..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2041, uuid=1e4b2298-d2b3-33d1-afe4-b959166b0c74, since=null, name=SecondFruit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Fruit, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=2144, uuid={2C4806C9-BA94-4210-8DA4-94FAF9D3A7A2}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Ext1::Fruit +2024-09-08 15:11:36,233 [main] DEBUG ClassBuilder - Adding Fruit as superclass of Apple +2024-09-08 15:11:36,233 [main] TRACE ClassBuilder - read from EA: Ext1::Fruit +2024-09-08 15:11:36,233 [main] TRACE ClassBuilder - Class Pear (0 in package Ext1) +2024-09-08 15:11:36,233 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Ext1::Pear, _objData=UmlObjectData [id=3287, uuid={6AE12819-CBFF-4c5c-A47A-AA188AD4F76C}, since=null, name=typeIsInformative, alias=, stereotype=European, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1532, _eaTypeName=SomeSimpleType, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,233 [main] DEBUG AssociationEndBuilder - Updated source type to Pear +2024-09-08 15:11:36,234 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2028, uuid=1bba8621-dd6e-3ce5-8d7b-b8589d4e1b6a, since=null, name=Pear, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Pear, _multiplicity=[0..1], _navigable=unspecified, 1_taggedValues{assocEndTag=value}], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2029, uuid=7be9b48e-224b-3878-a982-788c533facf9, since=null, name=Apple, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Apple, _multiplicity=[0..*], _navigable=unspecified, 1_taggedValues{targetEndTag=value2}], _objData=UmlObjectData [id=2141, uuid={954F6518-04E4-4b31-8F4B-8B9F6E690AE3}, since=null, name=, alias=, stereotype=dumbStereotype, European, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Ext1::Pear +2024-09-08 15:11:36,234 [main] DEBUG AssociationEndBuilder - Updated source type to Pear +2024-09-08 15:11:36,234 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2031, uuid=6fc97e58-ed3b-38ec-8ac6-0e4c451f40bc, since=null, name=SecondPear, alias=, stereotype=sourceStereo, visibility=public, txtDescription='', htmlDescription=''], _type=Pear, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2032, uuid=e128a404-9ba6-3f7d-b760-72f20970e33c, since=null, name=SecondApple, alias=, stereotype=targetStereo, European, visibility=public, txtDescription='', htmlDescription=''], _type=Apple, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=2142, uuid={624196D8-07C7-45ee-961A-BC80925C1D8C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false, 1_taggedValues{assocTag=value0}] as source to Ext1::Pear +2024-09-08 15:11:36,234 [main] DEBUG ClassBuilder - Adding Pear as subclass of Fruit +2024-09-08 15:11:36,234 [main] DEBUG ClassBuilder - Adding Pear as superclass of EquipmentContainer +2024-09-08 15:11:36,234 [main] TRACE ClassBuilder - read from EA: Ext1::Pear +2024-09-08 15:11:36,234 [main] TRACE ClassBuilder - Class FruitBinKind (0 in package Ext1) +2024-09-08 15:11:36,234 [main] TRACE ClassBuilder - Class Strawberry (0 in package Ext1) +2024-09-08 15:11:36,234 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE_LINK, _isConnector=true, _objData=UmlObjectData [id=3419, uuid={590BAC4B-6B4F-40f3-8180-3395A271DB36}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=Strawberry, _otherEndName=?] +2024-09-08 15:11:36,234 [main] DEBUG AssociationEndBuilder - Updated target type to Strawberry +2024-09-08 15:11:36,235 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2048, uuid=b5207e67-b517-3722-8ba6-339538c65d89, since=null, name=Vilage, alias=, stereotype=, visibility=public, txtDescription='Village as origin.', htmlDescription='

Village as origin.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2049, uuid=898161ef-8025-3ed9-8a66-75f5385a12ed, since=null, name=Strawberries, alias=, stereotype=, visibility=public, txtDescription='Strawberries...', htmlDescription='

Strawberries...

'], _type=Strawberry, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3418, uuid={B41F211E-720A-4af2-AAC9-285E735D4A7C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:36,235 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2048, uuid=b5207e67-b517-3722-8ba6-339538c65d89, since=null, name=Vilage, alias=, stereotype=, visibility=public, txtDescription='Village as origin.', htmlDescription='

Village as origin.

'], _type=null, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2049, uuid=898161ef-8025-3ed9-8a66-75f5385a12ed, since=null, name=Strawberries, alias=, stereotype=, visibility=public, txtDescription='Strawberries...', htmlDescription='

Strawberries...

'], _type=Strawberry, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3418, uuid={B41F211E-720A-4af2-AAC9-285E735D4A7C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Ext1::Strawberry +2024-09-08 15:11:36,235 [main] DEBUG ClassBuilder - Adding Strawberry as subclass of Fruit +2024-09-08 15:11:36,235 [main] TRACE ClassBuilder - read from EA: Ext1::Strawberry +2024-09-08 15:11:36,235 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=false, _objData=UmlObjectData [id=3035, uuid={68164654-247A-4ba2-8690-1CF436EB4730}, since=null, name=Strawberry, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingClass=FruitBinKind, _otherEndName=] +2024-09-08 15:11:36,235 [main] DEBUG DbAttributeBuilder - fixing lower bound '' to 1 for enum:UmlObjectData [id=6650, uuid={D041A1EC-198E-4ce2-9312-3C465931E469}, since=null, name=plastic, alias=, stereotype=enum, European, visibility=public, txtDescription='', htmlDescription=''] +2024-09-08 15:11:36,235 [main] DEBUG DbAttributeBuilder - fixing upper bound '' to 1 for enum:UmlObjectData [id=6650, uuid={D041A1EC-198E-4ce2-9312-3C465931E469}, since=null, name=plastic, alias=, stereotype=enum, European, visibility=public, txtDescription='', htmlDescription=''] +2024-09-08 15:11:36,235 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Ext1::FruitBinKind, _objData=UmlObjectData [id=6650, uuid={D041A1EC-198E-4ce2-9312-3C465931E469}, since=null, name=plastic, alias=, stereotype=enum, European, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,235 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Ext1::FruitBinKind, _objData=UmlObjectData [id=6651, uuid={F5BFB4E5-ECCB-4a7f-A21E-D4029DE0CA3A}, since=null, name=straw, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,235 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Ext1::FruitBinKind, _objData=UmlObjectData [id=6652, uuid={9E795ABE-F825-45c8-AC06-4B80E5E67680}, since=null, name=glass, alias=, stereotype=enum, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=0, _eaTypeName=, _isLiteral=true, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,235 [main] TRACE ClassBuilder - read from EA: Ext1::FruitBinKind +2024-09-08 15:11:36,235 [main] TRACE ClassBuilder - Class Village (0 in package Ext1) +2024-09-08 15:11:36,235 [main] DEBUG AssociationEndBuilder - Updated source type to Village +2024-09-08 15:11:36,236 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2048, uuid=b5207e67-b517-3722-8ba6-339538c65d89, since=null, name=Vilage, alias=, stereotype=, visibility=public, txtDescription='Village as origin.', htmlDescription='

Village as origin.

'], _type=Village, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2049, uuid=898161ef-8025-3ed9-8a66-75f5385a12ed, since=null, name=Strawberries, alias=, stereotype=, visibility=public, txtDescription='Strawberries...', htmlDescription='

Strawberries...

'], _type=Strawberry, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=3418, uuid={B41F211E-720A-4af2-AAC9-285E735D4A7C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Ext1::Village +2024-09-08 15:11:36,236 [main] TRACE ClassBuilder - read from EA: Ext1::Village +2024-09-08 15:11:36,236 [main] TRACE PackageBuilder - read PackageBuilder [_kind=TOP, _containingPackage=MyCimExtensions, _depth=0, _eaElementID=1486, _objData=UmlObjectData [id=69, uuid={450FC7C5-E381-456c-A96D-7BC87AE64D11}, since=null, name=Ext1, alias=, stereotype=European, visibility=public, txtDescription='For testing multiple and recursive associations.', htmlDescription='

For testing multiple and recursive associations.

'], _modelId=68, _selfDependent=false, 2_taggedValues{nsuri=http://toto, nsprefix=ext2}, 4_skippedEaItems=[SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=3458, uuid={0DF96453-9F41-4fd0-B153-AA73C8BBA90C}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Ext1, _otherEndName=Class 'Apple'], SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=3460, uuid={7E090DCF-7AE3-4850-A950-821D06B4204F}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Ext1, _otherEndName=Activity 'DFD_Process1'], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1527, uuid={8FFE60E7-D67F-4a78-83C3-8F0957CAB288}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Associations are for testing multiple associations between two classes, and recursive (self) associations; tags and stereotypes on associations and their ends.', htmlDescription='

Associations are for testing multiple associations between two classes, and recursive (self) associations; tags and stereotypes on associations and their ends.

'], _containingPackage=Ext1, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3037, uuid={DED259D4-C7E8-4e3b-8718-6CB951B07762}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='Replicates bug reported by Pat Brown on version 01v07: +- Class having an association inadvertently embedded into an enumerated type. +- model builder throws NPE when cross-checking associations.', htmlDescription='

Replicates bug reported by Pat Brown on version 01v07:

- Class having an association inadvertently embedded into an enumerated type.

- model builder throws NPE when cross-checking associations.

'], _containingPackage=Ext1, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=Ext1, _objData=UmlObjectData [id=169, uuid={D5D8113F-F068-47b9-AD5E-A6E3EAC3B4A5}, since=null, name=Ext1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _classes=5 +2024-09-08 15:11:36,236 [main] INFO PackageBuilder - processing top package Package with space (2) ... +2024-09-08 15:11:36,236 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Package with space, _objData=UmlObjectData [id=182, uuid={88693A7A-BB38-4644-9FE6-0360687DF33F}, since=null, name=Package with space, alias=, stereotype=, visibility=public, txtDescription='Doc.', htmlDescription='

Doc.

'], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:36,236 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=3461, uuid={A511BB57-6587-4b01-91B6-07FA73F4CC34}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Package with space, _otherEndName=Class 'DFD_DataStore1'] +2024-09-08 15:11:36,236 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=3462, uuid={4C44DD9C-CFA6-409f-96DF-DC5B995BA889}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Package with space, _otherEndName=Class 'DFD_External1'] +2024-09-08 15:11:36,237 [main] ERROR EaTables - [+++ EA ordering problem for 2 class(s) in Package with space (manually move back/forth a class to initiate EA internal ordering update!): +, +++ class My class: pos = 0 +, +++ class Other-with_invalid name: pos = 0 DUPLICATE +] +2024-09-08 15:11:36,237 [main] TRACE ClassBuilder - Class My class (0 in package Package with space) +2024-09-08 15:11:36,237 [main] TRACE AttributeBuilder - read from EA AttributeBuilder [_containingClass=Package with space::My class, _objData=UmlObjectData [id=3304, uuid={612A61C0-C06B-425e-A24C-2581B6D63928}, since=null, name=_attr, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=640, _eaTypeName=AbsoluteDateTime, _isLiteral=false, _isTypeSuperfluous=false, _type=null, 1 _constraints[ConstraintBuilder [_objData=UmlObjectData [id=2061, uuid=7d2d346d-0f9c-3a65-93d3-09e5415a6f1d, since=null, name= attr-constraint, alias=, stereotype=, visibility=public, txtDescription='lala', htmlDescription='

lala

'], _containingAttribute=_attr, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=lala]]] +2024-09-08 15:11:36,237 [main] TRACE OperationBuilder - read from EA: OperationBuilder [_containingClass=My class, _objData=UmlObjectData [id=6, uuid={A4CA59B1-5E80-4cb9-A2AB-1FEA377A0A33}, since=null, name=ope-ration, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _abstract=false, _static=false, _final=false, _kind=OP_RET_VOID, _returnType=null, _eaReturnTypeId=0, _eaReturnTypeName=void, 2_parameters[ParameterBuilder [_containingOperation=ope-ration, _position=0, _kind=SIMPLE, _objData=UmlObjectData [id=2063, uuid={B9E929B4-3E5D-4b39-83CB-4EFAC956A019}, since=null, name=other param, alias=, stereotype=, visibility=public, txtDescription='Doc for parameter is ok.', htmlDescription='

Doc for parameter is ok.

'], _type=null, _eaTypeName=Boolean, _eaTypeIdAsString=619], ParameterBuilder [_containingOperation=ope-ration, _position=1, _kind=SIMPLE, _objData=UmlObjectData [id=2064, uuid={82D97A41-4B66-40ae-ADF4-3BFA2BD0E201}, since=null, name=_par, alias=, stereotype=, visibility=public, txtDescription='doc', htmlDescription='

doc

'], _type=null, _eaTypeName=ApparentPower, _eaTypeIdAsString=616]]] +2024-09-08 15:11:36,237 [main] DEBUG AssociationEndBuilder - Updated source type to My class +2024-09-08 15:11:36,238 [main] TRACE AssociationBuilder - read from EA: AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2066, uuid=15faecc4-978a-3b54-b8fc-e6b3eb6b2612, since=null, name=Role 1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=My class, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2067, uuid=2891d36d-913e-3c71-a838-f547f15a8f48, since=null, name=_role 2&x, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2147, uuid={7F169184-56EB-4777-AFF0-237C0E3C7368}, since=null, name=, alias=, stereotype=European, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] +2024-09-08 15:11:36,238 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2066, uuid=15faecc4-978a-3b54-b8fc-e6b3eb6b2612, since=null, name=Role 1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=My class, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2067, uuid=2891d36d-913e-3c71-a838-f547f15a8f48, since=null, name=_role 2&x, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=null, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2147, uuid={7F169184-56EB-4777-AFF0-237C0E3C7368}, since=null, name=, alias=, stereotype=European, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Package with space::My class +2024-09-08 15:11:36,238 [main] TRACE ClassBuilder - read from EA: Package with space::My class +2024-09-08 15:11:36,238 [main] TRACE ClassBuilder - Class Other-with_invalid name (0 in package Package with space) +2024-09-08 15:11:36,238 [main] DEBUG AssociationEndBuilder - Updated target type to Other-with_invalid name +2024-09-08 15:11:36,238 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2066, uuid=15faecc4-978a-3b54-b8fc-e6b3eb6b2612, since=null, name=Role 1, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=My class, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2067, uuid=2891d36d-913e-3c71-a838-f547f15a8f48, since=null, name=_role 2&x, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Other-with_invalid name, _multiplicity=[0..1], _navigable=unspecified], _objData=UmlObjectData [id=2147, uuid={7F169184-56EB-4777-AFF0-237C0E3C7368}, since=null, name=, alias=, stereotype=European, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as target to Package with space::Other-with_invalid name +2024-09-08 15:11:36,238 [main] TRACE ClassBuilder - read from EA: Package with space::Other-with_invalid name +2024-09-08 15:11:36,238 [main] TRACE PackageBuilder - read PackageBuilder [_kind=TOP, _containingPackage=MyCimExtensions, _depth=0, _eaElementID=1541, _objData=UmlObjectData [id=81, uuid={6FCD7A13-00E7-4896-B745-7659F0CD6B48}, since=null, name=Package with space, alias=, stereotype=, visibility=public, txtDescription='Doc.', htmlDescription='

Doc.

'], _modelId=68, _selfDependent=false, 2_skippedEaItems=[SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=3461, uuid={A511BB57-6587-4b01-91B6-07FA73F4CC34}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Package with space, _otherEndName=Class 'DFD_DataStore1'], SkippedBuilder [, _kind=OTHER, _isConnector=true, _objData=UmlObjectData [id=3462, uuid={4C44DD9C-CFA6-409f-96DF-DC5B995BA889}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=Package with space, _otherEndName=Class 'DFD_External1']], 1_diagrams=[DiagramBuilder [_containingPackage=Package with space, _objData=UmlObjectData [id=182, uuid={88693A7A-BB38-4644-9FE6-0360687DF33F}, since=null, name=Package with space, alias=, stereotype=, visibility=public, txtDescription='Doc.', htmlDescription='

Doc.

'], _portrait=true, _kind=LOGICAL]], _classes=2 +2024-09-08 15:11:36,239 [main] TRACE PackageBuilder - read PackageBuilder [_kind=MODEL, _depth=-1, _eaElementID=1485, _objData=UmlObjectData [id=68, uuid={A40B29B1-859B-48be-BBE9-59093417C5D4}, since=null, name=MyCimExtensions, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=68, _selfDependent=false, 2_skippedEaItems=[SkippedBuilder [, _kind=OTHER, _isConnector=false, _objData=UmlObjectData [id=3076, uuid={93440207-D561-463c-AFEC-2CCBD3A1C02C}, since=null, name=DFD_Process1, alias=, stereotype=DFD_Process, visibility=public, txtDescription='', htmlDescription=''], _containingPackage=MyCimExtensions, _otherEndName=], SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=3079, uuid={4D1094DE-526D-437b-8E6C-BA2ADCBB8B84}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='All these dependencies created to test that they get skipped when non-sense. +Also new kind of EA elements (from Data Flow Diagram toolbox).', htmlDescription='

All these dependencies created to test that they get skipped when non-sense.

Also new kind of EA elements (from Data Flow Diagram toolbox).

'], _containingPackage=MyCimExtensions, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=MyCimExtensions, _objData=UmlObjectData [id=168, uuid={60D66409-416D-40a4-B387-83D4978AF099}, since=null, name=MyCimExtensions, alias=, stereotype=European, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _classes=2, _childPackages=2] +2024-09-08 15:11:36,239 [main] INFO PackageBuilder - processing model package My61850Extensions (4) ... +2024-09-08 15:11:36,239 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=My61850Extensions, _objData=UmlObjectData [id=172, uuid={0E92FC72-40C8-4400-A4FD-D7210BCA75F7}, since=null, name=My61850Extensions, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=PACKAGE] +2024-09-08 15:11:36,239 [main] INFO PackageBuilder - processing top package Ext2 (0) ... +2024-09-08 15:11:36,240 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=Ext2, _objData=UmlObjectData [id=170, uuid={CB8EA802-16A3-4db9-8A4F-960049C664F5}, since=null, name=Ext2, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL] +2024-09-08 15:11:36,240 [main] ERROR EaTables - [+++ EA ordering problem for 3 class(s) in Ext2 (manually move back/forth a class to initiate EA internal ordering update!): +, +++ class Animal: pos = 0 +, +++ class Dog: pos = 0 DUPLICATE +, +++ class Horse: pos = 0 DUPLICATE +] +2024-09-08 15:11:36,240 [main] TRACE SkippedBuilder - read from EA: SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1528, uuid={0FF45B1A-C31A-4a38-8B90-9528C242BB0D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='For testing 2 association between same classes from different owners.', htmlDescription='

For testing 2 association between same classes from different owners.

'], _containingPackage=Ext2, _otherEndName=] +2024-09-08 15:11:36,241 [main] TRACE ClassBuilder - Class Animal (0 in package Ext2) +2024-09-08 15:11:36,241 [main] DEBUG AssociationEndBuilder - Updated source type to Animal +2024-09-08 15:11:36,241 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2037, uuid=846c3cd9-8238-3d7f-b379-955bd684f4cd, since=null, name=Animal, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Animal, _multiplicity=[0..1], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2038, uuid=264476c8-aa4a-328e-8d0c-f9841b559539, since=null, name=Fruit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Fruit, _multiplicity=[0..*], _navigable=unspecified], _objData=UmlObjectData [id=2143, uuid={22327B79-0B9D-43d4-8435-A05F123D2CDA}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Ext2::Animal +2024-09-08 15:11:36,241 [main] DEBUG AssociationEndBuilder - Updated source type to Animal +2024-09-08 15:11:36,241 [main] DEBUG ClassBuilder - Added AssociationBuilder [_sourceEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=true, _objData=UmlObjectData [id=2040, uuid=8cd3a8e5-c4f8-36f6-8896-6e7d87ec1730, since=null, name=SecondAnimal, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Animal, _multiplicity=[1..*], _navigable=unspecified], _targetEnd=AssociationEndBuilder [_kind=ASSOC, _isSource=false, _objData=UmlObjectData [id=2041, uuid=1e4b2298-d2b3-33d1-afe4-b959166b0c74, since=null, name=SecondFruit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=Fruit, _multiplicity=[1..1], _navigable=unspecified], _objData=UmlObjectData [id=2144, uuid={2C4806C9-BA94-4210-8DA4-94FAF9D3A7A2}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _direction=Unspecified, _directionUnspecified=true, _biDirectional=false] as source to Ext2::Animal +2024-09-08 15:11:36,241 [main] TRACE ClassBuilder - read from EA: Ext2::Animal +2024-09-08 15:11:36,241 [main] TRACE ClassBuilder - Class Dog (0 in package Ext2) +2024-09-08 15:11:36,241 [main] DEBUG ClassBuilder - Adding Dog as subclass of Animal +2024-09-08 15:11:36,242 [main] TRACE ClassBuilder - read from EA: Ext2::Dog +2024-09-08 15:11:36,242 [main] TRACE ClassBuilder - Class Horse (0 in package Ext2) +2024-09-08 15:11:36,242 [main] DEBUG ClassBuilder - Adding Horse as subclass of Animal +2024-09-08 15:11:36,242 [main] TRACE ClassBuilder - read from EA: Ext2::Horse +2024-09-08 15:11:36,242 [main] TRACE PackageBuilder - read PackageBuilder [_kind=TOP, _containingPackage=My61850Extensions, _depth=0, _eaElementID=1487, _objData=UmlObjectData [id=70, uuid={FB7850F3-DFDE-43b7-BED8-204CAF1C5116}, since=null, name=Ext2, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=72, _selfDependent=false, 1_skippedEaItems=[SkippedBuilder [, _kind=NOTE, _isConnector=false, _objData=UmlObjectData [id=1528, uuid={0FF45B1A-C31A-4a38-8B90-9528C242BB0D}, since=null, name=, alias=, stereotype=, visibility=public, txtDescription='For testing 2 association between same classes from different owners.', htmlDescription='

For testing 2 association between same classes from different owners.

'], _containingPackage=Ext2, _otherEndName=]], 1_diagrams=[DiagramBuilder [_containingPackage=Ext2, _objData=UmlObjectData [id=170, uuid={CB8EA802-16A3-4db9-8A4F-960049C664F5}, since=null, name=Ext2, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=LOGICAL]], _classes=3 +2024-09-08 15:11:36,242 [main] TRACE PackageBuilder - read PackageBuilder [_kind=MODEL, _depth=-1, _eaElementID=1500, _objData=UmlObjectData [id=72, uuid={5483020F-EEDB-4171-B23E-4927E68B2715}, since=null, name=My61850Extensions, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=72, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=My61850Extensions, _objData=UmlObjectData [id=172, uuid={0E92FC72-40C8-4400-A4FD-D7210BCA75F7}, since=null, name=My61850Extensions, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=PACKAGE]], _childPackages=1] +2024-09-08 15:11:36,242 [main] INFO PackageBuilder - processing model package NewNature (5) ... +2024-09-08 15:11:36,242 [main] TRACE DiagramBuilder - read from EA: DiagramBuilder [_containingPackage=NewNature, _objData=UmlObjectData [id=329, uuid={3A67127C-19D1-40d8-BAB3-6D032837AC24}, since=null, name=NewNature, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=PACKAGE] +2024-09-08 15:11:36,243 [main] TRACE PackageBuilder - read PackageBuilder [_kind=MODEL, _depth=-1, _eaElementID=3092, _objData=UmlObjectData [id=174, uuid={25561F14-776F-4c4c-A475-E9D194EFE1BA}, since=null, name=NewNature, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _modelId=174, _selfDependent=false, 1_diagrams=[DiagramBuilder [_containingPackage=NewNature, _objData=UmlObjectData [id=329, uuid={3A67127C-19D1-40d8-BAB3-6D032837AC24}, since=null, name=NewNature, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _portrait=true, _kind=PACKAGE]] +2024-09-08 15:11:36,243 [main] ERROR EaModelBuilder - +++ EA consistency error - duplicate EA GUID: +2024-09-08 15:11:36,243 [main] ERROR EaModelBuilder - {870F033B-EDA6-4a32-A5AD-47DCBBFE2997} +2024-09-08 15:11:36,243 [main] ERROR EaModelBuilder - AttributeBuilder [_containingClass=Core::IdentifiedObject, _objData=UmlObjectData [id=6648, uuid={870F033B-EDA6-4a32-A5AD-47DCBBFE2997}, since=null, name=name, alias=, stereotype=, visibility=public, txtDescription='The name is any free human readable and possibly non unique text naming the object.', htmlDescription='

The name is any free human readable and possibly non unique text naming the object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,243 [main] ERROR EaModelBuilder - AttributeBuilder [_containingClass=Core::IdentifiedObject, _objData=UmlObjectData [id=6649, uuid={870F033B-EDA6-4a32-A5AD-47DCBBFE2997}, since=null, name=description, alias=, stereotype=, visibility=public, txtDescription='The description is a free human readable text describing or naming the object. It may be non unique and may not correlate to a naming hierarchy.', htmlDescription='

The description is a free human readable text describing or naming the object. It may be non unique and may not correlate to a naming hierarchy.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=null] +2024-09-08 15:11:36,243 [main] INFO Util - time=[0:00:00.882] built model from EA tables (as EAP DB) +2024-09-08 15:11:36,243 [main] INFO Util - +2024-09-08 15:11:36,243 [main] INFO Util - +2024-09-08 15:11:36,243 [main] INFO Util - ------------------------------------------------ +2024-09-08 15:11:36,243 [main] INFO Util - linking builders... +2024-09-08 15:11:36,243 [main] INFO EaModelBuilder - assigning type to attributes ... +2024-09-08 15:11:36,244 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Informative::HasIllegalTypeForAttr, _objData=UmlObjectData [id=3284, uuid={37EE993E-B7A3-4940-8707-E8C0C720D620}, since=null, name=dummy, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=860, _eaTypeName=Bay, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1e8284b]. +2024-09-08 15:11:36,244 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC61970::IEC61970CIMVersion, _objData=UmlObjectData [id=1271, uuid={8DADB97F-283D-40c7-A25A-D75E4C0D8507}, since=null, name=date, alias=, stereotype=, visibility=public, txtDescription='Form is YYYY-MM-DD for example for January 5, 2009 it is 2009-01-05. +Note: Bad date format on purpose.', htmlDescription='

Form is YYYY-MM-DD for example for January 5, 2009 it is 2009-01-05.

Note: Bad date format on purpose.

'], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=20119-08-01, _eaTypeId=640, _eaTypeName=AbsoluteDateTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@74868d]. +2024-09-08 15:11:36,244 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC61970::IEC61970CIMVersion, _objData=UmlObjectData [id=1272, uuid={B4E0B1B6-8794-406a-A4C6-CBB395E37A52}, since=null, name=version, alias=, stereotype=, visibility=public, txtDescription='Form is IEC61970CIMXXvYY where XX is the major CIM package version and the YY is the minor version. For ecample IEC61970CIM13v18.', htmlDescription='

Form is IEC61970CIMXXvYY where XX is the major CIM package version and the YY is the minor version. For ecample IEC61970CIM13v18.

'], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=IEC61970CIM14v12, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@e6aa2]. +2024-09-08 15:11:36,244 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=InformativeAndPrivate::InfClass2, _objData=UmlObjectData [id=6709, uuid={2BFC1914-ECFF-49b5-8F28-BF20BD1E1FE3}, since=null, name=isToto, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@5185bd]. +2024-09-08 15:11:36,244 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::AbsoluteDateTime, _objData=UmlObjectData [id=1440, uuid={CFF950F8-C337-424c-97FF-B8A4168598B5}, since=null, name=protectedAttribute, alias=, stereotype=, visibility=protected, txtDescription='String representation of date and time, refer to description of the class.', htmlDescription='

String representation of date and time, refer to description of the class.

'], _isConst=false, _isStatic=false, _multiplicity=[2..5], _initValue=, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@e6aa2]. +2024-09-08 15:11:36,244 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::ActivePower, _objData=UmlObjectData [id=1434, uuid={A3961E95-7DD0-4d68-A41A-FDC07295CD2B}, since=null, name=multiplier, alias=, stereotype=European, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=634, _eaTypeName=UnitMultiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b64261]. +2024-09-08 15:11:36,244 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::ActivePower, _objData=UmlObjectData [id=1435, uuid={8C27ACD4-E6D7-407f-B0AF-B545966B9337}, since=null, name=unit, alias=, stereotype=deprecated, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=W, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@2663d3]. +2024-09-08 15:11:36,244 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::ActivePower, _objData=UmlObjectData [id=1436, uuid={133597D7-9050-4335-B968-86AF7E16558C}, since=null, name=value, alias=, stereotype=custom, invalid, European, deprecated, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@190a65e]. +2024-09-08 15:11:36,244 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::ActivePowerChangeRate, _objData=UmlObjectData [id=1402, uuid={127E7AD6-A19D-4a00-84C2-6DE69D31A319}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=634, _eaTypeName=UnitMultiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b64261]. +2024-09-08 15:11:36,244 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::ActivePowerChangeRate, _objData=UmlObjectData [id=1403, uuid={D89B1C84-0EB0-4ea0-ACD8-F59965B01026}, since=null, name=unit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=true, _multiplicity=[0..1], _initValue=W/s, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@2663d3]. +2024-09-08 15:11:36,244 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::ApparentPower, _objData=UmlObjectData [id=1368, uuid={C363463C-85C7-487f-BE31-B6444DAB07DD}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=634, _eaTypeName=UnitMultiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b64261]. +2024-09-08 15:11:36,244 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::ApparentPower, _objData=UmlObjectData [id=1369, uuid={C93DE952-5AF9-40cc-9792-4D2372DC5EEF}, since=null, name=unit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=VA, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@2663d3]. +2024-09-08 15:11:36,244 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::ApparentPower, _objData=UmlObjectData [id=1370, uuid={FEE24CD4-5876-4e4c-B179-AEAA3E11B738}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@190a65e, 1_taggedValues{tag=val}]. +2024-09-08 15:11:36,244 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::Money, _objData=UmlObjectData [id=1323, uuid={86CC9B3D-6DFC-4a34-9152-1BD808FBDD41}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=634, _eaTypeName=UnitMultiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b64261]. +2024-09-08 15:11:36,244 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::Money, _objData=UmlObjectData [id=1324, uuid={FA0E49C2-B5F3-4084-948C-2A553D874695}, since=null, name=unit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=600, _eaTypeName=Currency, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@76c8cd]. +2024-09-08 15:11:36,244 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::Money, _objData=UmlObjectData [id=1325, uuid={FD1C5A68-05E0-448a-9515-88FB188D1A41}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@190a65e]. +2024-09-08 15:11:36,244 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::PerCent, _objData=UmlObjectData [id=1365, uuid={A2810EB7-9B4B-4386-9EE5-CAE5AB1E6E2C}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=none, _eaTypeId=634, _eaTypeName=UnitMultiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b64261]. +2024-09-08 15:11:36,244 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::PerCent, _objData=UmlObjectData [id=1366, uuid={A1336F58-9A3A-462d-A932-4C80CE9A24AB}, since=null, name=unit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=none, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@2663d3]. +2024-09-08 15:11:36,244 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::PerCent, _objData=UmlObjectData [id=1367, uuid={3F3F1095-2284-438d-89FF-699BCA187532}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='Normally 0 - 100 on a defined base', htmlDescription='

Normally 0 - 100 on a defined base

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@190a65e]. +2024-09-08 15:11:36,244 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::Seconds, _objData=UmlObjectData [id=1377, uuid={DF58DF5F-F450-4b71-A1A9-1BBA5C696E5C}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=none, _eaTypeId=634, _eaTypeName=UnitMultiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b64261]. +2024-09-08 15:11:36,244 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::Seconds, _objData=UmlObjectData [id=1378, uuid={383E0AEB-B11C-4c02-8C56-5E84FCDA0D3B}, since=null, name=unit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=s, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@2663d3]. +2024-09-08 15:11:36,244 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::Seconds, _objData=UmlObjectData [id=1379, uuid={EC69405D-C44E-4c12-BAD5-58A3C1375649}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='Time, in seconds', htmlDescription='

Time, in seconds

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@190a65e]. +2024-09-08 15:11:36,244 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::Voltage, _objData=UmlObjectData [id=1304, uuid={5CFD034E-D7E1-4d20-BE0B-BB9E4F9D2D4B}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=634, _eaTypeName=UnitMultiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b64261]. +2024-09-08 15:11:36,244 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::Voltage, _objData=UmlObjectData [id=1305, uuid={6E959BD4-0ACC-4884-99F5-0B158661A3D9}, since=null, name=unit, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=V, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@2663d3]. +2024-09-08 15:11:36,245 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Domain::Voltage, _objData=UmlObjectData [id=1306, uuid={C86122FF-94E1-4244-975A-BA865D8135BC}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@190a65e]. +2024-09-08 15:11:36,245 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::BasePower, _objData=UmlObjectData [id=2100, uuid={9F2DC83B-B801-4b29-BD57-4781BD53A50A}, since=null, name=basePower, alias=, stereotype=, visibility=public, txtDescription='definition of base power.', htmlDescription='

definition of base power.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=616, _eaTypeName=ApparentPower, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1bbf683]. +2024-09-08 15:11:36,245 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::BaseVoltage, _objData=UmlObjectData [id=2053, uuid={D37DA22A-916B-4a33-88AB-B77C229DB882}, since=null, name=protectedNominalVoltage, alias=, stereotype=, visibility=protected, txtDescription=''the' PowerSystemResource's base voltage.', htmlDescription='

'the' PowerSystemResource's base voltage.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=602, _eaTypeName=Voltage, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@150c158]. +2024-09-08 15:11:36,245 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::BaseVoltage, _objData=UmlObjectData [id=2981, uuid={9451DDA7-F7F4-4efe-A373-99B36F51A8C5}, since=null, name=packagePrivateIsDC, alias=, stereotype=, visibility=package, txtDescription='"if true", this is a direct current base voltage and items assigned to this base voltage are also associated with a direct current capabilities. False indicates alternating current.', htmlDescription='

"if true", this is a direct current base voltage and items assigned to this base voltage are also associated with a direct current capabilities. False indicates alternating current.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@5185bd]. +2024-09-08 15:11:36,245 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::BaseVoltage, _objData=UmlObjectData [id=3249, uuid={48F97F30-E8FD-4e3d-85E1-6009E26B1435}, since=null, name=basePower, alias=, stereotype=, visibility=public, txtDescription='This is to test whether we print correctly multiple attributes of the same name (defined on different classes) within the data index table.', htmlDescription='

This is to test whether we print correctly multiple attributes of the same name (defined on different classes) within the data index table.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@5185bd]. +2024-09-08 15:11:36,245 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::BaseVoltage, _objData=UmlObjectData [id=3317, uuid={B3B2A77F-3967-4163-917F-7EC3BC0EF50C}, since=null, name=privateDummy, alias=, stereotype=, visibility=private, txtDescription='This is to test whether we print correctly multiple attributes of the same name (defined on different classes) within the data index table.', htmlDescription='

This is to test whether we print correctly multiple attributes of the same name (defined on different classes) within the data index table.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@5185bd]. +2024-09-08 15:11:36,245 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::Bay, _objData=UmlObjectData [id=2077, uuid={26D3924E-0222-4e9a-9373-CD7D256E9B19}, since=null, name=bayEnergyMeasFlag, alias=, stereotype=, visibility=public, txtDescription='Indicates the presence/absence of energy measurements.', htmlDescription='

Indicates the presence/absence of energy measurements.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@5185bd]. +2024-09-08 15:11:36,245 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::Bay, _objData=UmlObjectData [id=2078, uuid={B5F9E0A2-7BE7-4bb1-A035-0F5F849847F0}, since=null, name=bayPowerMeasFlag, alias=, stereotype=, visibility=public, txtDescription='Indicates the presence/absence of active/reactive power measurements.', htmlDescription='

Indicates the presence/absence of active/reactive power measurements.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@5185bd]. +2024-09-08 15:11:36,245 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::Bay, _objData=UmlObjectData [id=2079, uuid={94BB9838-29AB-4afe-853A-3BD683EF6B09}, since=null, name=breakerConfiguration, alias=, stereotype=, visibility=public, txtDescription='Breaker configuration.', htmlDescription='

Breaker configuration.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=858, _eaTypeName=BreakerConfiguration, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@dba097]. +2024-09-08 15:11:36,245 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::Bay, _objData=UmlObjectData [id=2080, uuid={696CC695-DE24-423a-9CD6-A9FED27803F8}, since=null, name=busBarConfiguration, alias=, stereotype=, visibility=public, txtDescription='Bus bar configuration.', htmlDescription='

Bus bar configuration.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=878, _eaTypeName=BusbarConfiguration, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@186f9d5]. +2024-09-08 15:11:36,245 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::Bay, _objData=UmlObjectData [id=3301, uuid={E893BA26-F5FD-49d7-94E0-CF2CC775E76D}, since=null, name=TestYesNo1, alias=, stereotype=, visibility=public, txtDescription='Indicates the presence/absence of energy measurements.', htmlDescription='

Indicates the presence/absence of energy measurements.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1540, _eaTypeName=YesNo, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@4d6e83]. +2024-09-08 15:11:36,245 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::Bay, _objData=UmlObjectData [id=3302, uuid={57D31F0C-D03A-424d-AF4C-358109CC5473}, since=null, name=testYesNo2, alias=, stereotype=, visibility=public, txtDescription='Indicates the presence/absence of energy measurements.', htmlDescription='

Indicates the presence/absence of energy measurements.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1540, _eaTypeName=YesNo, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@4d6e83]. +2024-09-08 15:11:36,245 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::ConductingEquipment, _objData=UmlObjectData [id=2091, uuid={2A7C5A94-34E1-49c7-8E1C-A84F411EE17C}, since=null, name=phases, alias=, stereotype=, visibility=public, txtDescription='Describes the phases carried by a conducting equipment.', htmlDescription='

Describes the phases carried by a conducting equipment.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=856, _eaTypeName=PhaseCode, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1a0cee9]. +2024-09-08 15:11:36,245 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::Equipment, _objData=UmlObjectData [id=2117, uuid={410CEA04-CA77-46d9-A093-019230A2DE17}, since=null, name=normaIlyInService, alias=, stereotype=, visibility=public, txtDescription='The equipment is normally in service.', htmlDescription='

The equipment is normally in service.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@5185bd]. +2024-09-08 15:11:36,247 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::OperatingShare, _objData=UmlObjectData [id=2109, uuid={91E1E9AB-B240-4b98-9917-82000F0A4CFB}, since=null, name=percentage, alias=, stereotype=, visibility=public, txtDescription='Percentage ownership for this device. The percentage indicates the percentage ownership of the PSROwner for the PowerSystemResource. The total percentage ownership for a PowerSystemResource should add to 100%.', htmlDescription='

Percentage ownership for this device. The percentage indicates the percentage ownership of the PSROwner for the PowerSystemResource. The total percentage ownership for a PowerSystemResource should add to 100%.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=614, _eaTypeName=PerCent, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@4a2ea6, 1 _constraints[ConstraintBuilder [_objData=UmlObjectData [id=230, uuid=5efb2328-1c5c-36d9-8c41-790fcb5a5558, since=null, name=constraintProcess, alias=, stereotype=, visibility=public, txtDescription='constraint description', htmlDescription='

constraint description

'], _containingAttribute=percentage, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=constraint description]]]. +2024-09-08 15:11:36,247 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::PowerSystemResource, _objData=UmlObjectData [id=6708, uuid={DB23468D-32C9-44cf-9032-193304520B0A}, since=null, name=attr, alias=, stereotype=deprecated, visibility=public, txtDescription='This is to test whether deprecated attribute gets its (deprecated) printed in Word.', htmlDescription='

This is to test whether deprecated attribute gets its (deprecated) printed in Word.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@e6aa2]. +2024-09-08 15:11:36,247 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::Terminal, _objData=UmlObjectData [id=3125, uuid={C97C0B38-C62F-4f03-A3DE-A67F29A6C6DB}, since=null, name=connected, alias=, stereotype=, visibility=public, txtDescription='The terminal connection status. True implies the terminal is connected, and false implies the terminal is not connected. This is the result of topoplogical processing of a detailed Connectivity node and Switch model whether present in the model or not. A terminal that is not connected cannot support a current flow. A terminal that is connected may have flow. In general a multi-terminal device may simultaneously have connected and disconnected terminals. No other aspect of the algorithm', htmlDescription='

The terminal connection status. True implies the terminal is connected, and false implies the terminal is not connected. This is the result of topoplogical processing of a detailed Connectivity node and Switch model whether present in the model or not. A terminal that is not connected cannot support a current flow. A terminal that is connected may have flow. In general a multi-terminal device may simultaneously have connected and disconnected terminals. No other aspect of the algorithm

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@5185bd]. +2024-09-08 15:11:36,247 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::Terminal, _objData=UmlObjectData [id=3188, uuid={7C7195D3-DFCD-487f-BF92-F359BBE7AFD0}, since=null, name=sequenceNumber, alias=, stereotype=, visibility=public, txtDescription='The orientation of the terminal connections for a multiple terminal conducting equipment. The sequence numbering starts with 1 and additional terminals should follow in increasing order. The first terminal is the "starting point" for a two terminal branch. In the case of class TransformerWinding only one terminal is used so its sequenceNumber must be 1.', htmlDescription='

The orientation of the terminal connections for a multiple terminal conducting equipment. The sequence numbering starts with 1 and additional terminals should follow in increasing order. The first terminal is the "starting point" for a two terminal branch. In the case of class TransformerWinding only one terminal is used so its sequenceNumber must be 1.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a035a0]. +2024-09-08 15:11:36,247 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::VoltageLevel, _objData=UmlObjectData [id=2106, uuid={D1BAD493-B22A-497f-B6A6-CDFDF46EA012}, since=null, name=highVoltageLimit, alias=, stereotype=, visibility=public, txtDescription='The bus bar's high voltage limit', htmlDescription='

The bus bar's high voltage limit

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=602, _eaTypeName=Voltage, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@150c158]. +2024-09-08 15:11:36,247 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::VoltageLevel, _objData=UmlObjectData [id=2107, uuid={EB17FEAC-CDBA-4bbd-B45E-86D3EA333C08}, since=null, name=lowVoltageLimit, alias=, stereotype=, visibility=public, txtDescription='The bus bar's low voltage limit', htmlDescription='

The bus bar's low voltage limit

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=602, _eaTypeName=Voltage, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@150c158]. +2024-09-08 15:11:36,247 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::IdentifiedObject, _objData=UmlObjectData [id=6646, uuid={D4F8B75D-CDAD-4440-8092-1425101E5ABC}, since=null, name=aliasName, alias=, stereotype=, visibility=public, txtDescription='The aliasName is free text human readable name of the object alternative to IdentifiedObject.name. It may be non unique and may not correlate to a naming hierarchy. +The attribute aliasName is retained because of backwards compatibility between CIM relases. It is however recommended to replace aliasName with the Name class as aliasName is planned for retirement at a future time.', htmlDescription='

The aliasName is free text human readable name of the object alternative to IdentifiedObject.name. It may be non unique and may not correlate to a naming hierarchy.

The attribute aliasName is retained because of backwards compatibility between CIM relases. It is however recommended to replace aliasName with the Name class as aliasName is planned for retirement at a future time.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@e6aa2]. +2024-09-08 15:11:36,247 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::IdentifiedObject, _objData=UmlObjectData [id=6647, uuid={C775F80A-A23D-4f38-AB9D-49D1FA882337}, since=null, name=mRID, alias=, stereotype=, visibility=public, txtDescription='Master resource identifier issued by a model authority. The mRID must semantically be a UUID as specified in RFC 4122. The mRID is globally unique. +For CIMXML data files in RDF syntax, the mRID is mapped to rdf:ID or rdf:about attributes that identify CIM object elements.', htmlDescription='

Master resource identifier issued by a model authority. The mRID must semantically be a UUID as specified in RFC 4122. The mRID is globally unique.

For CIMXML data files in RDF syntax, the mRID is mapped to rdf:ID or rdf:about attributes that identify CIM object elements.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@e6aa2]. +2024-09-08 15:11:36,247 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::IdentifiedObject, _objData=UmlObjectData [id=6648, uuid={870F033B-EDA6-4a32-A5AD-47DCBBFE2997}, since=null, name=name, alias=, stereotype=, visibility=public, txtDescription='The name is any free human readable and possibly non unique text naming the object.', htmlDescription='

The name is any free human readable and possibly non unique text naming the object.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@e6aa2]. +2024-09-08 15:11:36,247 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Core::IdentifiedObject, _objData=UmlObjectData [id=6649, uuid={870F033B-EDA6-4a32-A5AD-47DCBBFE2997}, since=null, name=description, alias=, stereotype=, visibility=public, txtDescription='The description is a free human readable text describing or naming the object. It may be non unique and may not correlate to a naming hierarchy.', htmlDescription='

The description is a free human readable text describing or naming the object. It may be non unique and may not correlate to a naming hierarchy.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@e6aa2]. +2024-09-08 15:11:36,247 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Topology::BusNameMarker, _objData=UmlObjectData [id=3250, uuid={C375C88C-1BD9-4f29-874F-85F591975EEE}, since=null, name=constrained1, alias=, stereotype=, visibility=public, txtDescription='Added to test parsing and assigning constraints.', htmlDescription='

Added to test parsing and assigning constraints.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a035a0, 2 _constraints[ConstraintBuilder [_objData=UmlObjectData [id=322, uuid=e7838b89-c1f1-3846-82c2-b51c40441fcd, since=null, name=maxIdx, alias=, stereotype=, visibility=public, txtDescription='count+1', htmlDescription='

count+1

'], _containingAttribute=constrained1, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=count+1], ConstraintBuilder [_objData=UmlObjectData [id=323, uuid=504022e1-a42d-3d7e-a7ab-50f48306f4f8, since=null, name=minIdx, alias=, stereotype=, visibility=public, txtDescription='0', htmlDescription='

0

'], _containingAttribute=constrained1, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=0]]]. +2024-09-08 15:11:36,247 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Topology::BusNameMarker, _objData=UmlObjectData [id=3251, uuid={6EA50EAF-292F-4f17-A3F5-EB732279F805}, since=null, name=constrained2, alias=, stereotype=, visibility=public, txtDescription='Added to test parsing and assigning constraints.', htmlDescription='

Added to test parsing and assigning constraints.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a035a0]. +2024-09-08 15:11:36,247 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Topology::BusNameMarker, _objData=UmlObjectData [id=3252, uuid={31FC9762-65CA-42b7-ABCB-83EFD97D28CE}, since=null, name=constrained3, alias=, stereotype=, visibility=public, txtDescription='Added to test parsing and assigning constraints.', htmlDescription='

Added to test parsing and assigning constraints.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a035a0]. +2024-09-08 15:11:36,247 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Topology::BusNameMarker, _objData=UmlObjectData [id=3253, uuid={96BA1CD3-C66C-4ea0-9D8F-B6776C6C49AE}, since=null, name=constrained4, alias=, stereotype=, visibility=public, txtDescription='Added to test parsing and assigning constraints.', htmlDescription='

Added to test parsing and assigning constraints.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a035a0]. +2024-09-08 15:11:36,247 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Topology::TopologicalIsland, _objData=UmlObjectData [id=3254, uuid={71F47E96-66A9-469f-9B94-D81BAECFCBD5}, since=null, name=constrained5, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a035a0]. +2024-09-08 15:11:36,247 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Topology::TopologicalIsland, _objData=UmlObjectData [id=3255, uuid={DCE02A31-C635-4cf0-AB24-4C475CEDCC93}, since=null, name=nonConstrained, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a035a0]. +2024-09-08 15:11:36,248 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC61968::IEC61968Version, _objData=UmlObjectData [id=3256, uuid={9FE72A7E-8CF0-40a9-A6CF-4F41D1B5BF82}, since=null, name=date, alias=, stereotype=, visibility=public, txtDescription='Form is YYYY-MM-DD for example for January 5, 2009 it is 2009-01-05 (not ending with dot)', htmlDescription='

Form is YYYY-MM-DD for example for January 5, 2009 it is 2009-01-05 (not ending with dot)

'], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=2010-05-07, _eaTypeId=640, _eaTypeName=AbsoluteDateTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@74868d]. +2024-09-08 15:11:36,248 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=IEC61968::IEC61968Version, _objData=UmlObjectData [id=3257, uuid={CB9E6808-E556-4c14-AB7D-D4245FA445B6}, since=null, name=version, alias=, stereotype=, visibility=public, txtDescription='Form is IEC61970CIMXXvYY where XX is the major CIM package version and the YY is the minor version. For ecample IEC61970CIM13v18.', htmlDescription='

Form is IEC61970CIMXXvYY where XX is the major CIM package version and the YY is the minor version. For ecample IEC61970CIM13v18.

'], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=IEC62325CIM01v02, _eaTypeId=637, _eaTypeName=String, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@e6aa2]. +2024-09-08 15:11:36,248 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Other::MyClass, _objData=UmlObjectData [id=3263, uuid={A1BFCA1B-0A22-4a7c-B2A1-A31E2F46493F}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@190a65e]. +2024-09-08 15:11:36,248 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Other::MyClass, _objData=UmlObjectData [id=3264, uuid={B3F14AC4-4719-4d52-9C16-348079C67ADC}, since=null, name=normaIlyInService, alias=, stereotype=, visibility=public, txtDescription='The equipment is normally in service.', htmlDescription='

The equipment is normally in service.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@5185bd]. +2024-09-08 15:11:36,248 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Other::BadDatatypes, _objData=UmlObjectData [id=3261, uuid={5401BAC7-97BF-4c99-BF58-3352B0F67F23}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='text', htmlDescription='

text

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1467, _eaTypeName=BadDatatypes, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@10726a3]. +2024-09-08 15:11:36,248 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Other::BadDatatypes, _objData=UmlObjectData [id=3268, uuid={5074CED7-7500-4ea1-A49F-4FF08173FA21}, since=null, name=unit, alias=, stereotype=, visibility=public, txtDescription='text', htmlDescription='

text

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=badEnumVal, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@2663d3]. +2024-09-08 15:11:36,248 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Other::Equipment, _objData=UmlObjectData [id=3303, uuid={B4BA5ED2-2B91-44fc-993D-3097CF99F899}, since=null, name=testYesNo1, alias=, stereotype=, visibility=public, txtDescription='Indicates the presence/absence of energy measurements.', htmlDescription='

Indicates the presence/absence of energy measurements.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1540, _eaTypeName=YesNo, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@4d6e83]. +2024-09-08 15:11:36,248 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Other::Equipment, _objData=UmlObjectData [id=6707, uuid={11C51946-4599-4acb-B5AF-2B8F0CD45996}, since=null, name=myExtension, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a035a0, 2_taggedValues{nsuri=http://extensions, nsprefix=eext}]. +2024-09-08 15:11:36,248 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Other::NonEmptyPrimitive, _objData=UmlObjectData [id=3262, uuid={D496D1A8-C362-435f-83E4-B2247E25C84D}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=615, _eaTypeName=Float, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@190a65e]. +2024-09-08 15:11:36,248 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Other::AttrDuplication, _objData=UmlObjectData [id=3267, uuid={D6C73EE7-83B0-45e6-BDC8-B0E3F46D8DE2}, since=null, name=normaIlyInService, alias=, stereotype=, visibility=public, txtDescription='The equipment is normally in service.', htmlDescription='

The equipment is normally in service.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=619, _eaTypeName=Boolean, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@5185bd]. +2024-09-08 15:11:36,248 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Other::AnotherBadDatatype, _objData=UmlObjectData [id=3296, uuid={01D99E0F-A7B9-4546-8F76-3E092E9942AE}, since=null, name=value, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=613, _eaTypeName=UnitSymbol, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@2663d3]. +2024-09-08 15:11:36,248 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Other::AnotherBadDatatype, _objData=UmlObjectData [id=3297, uuid={415FDB87-B93D-41ca-906E-B88DD94D9F04}, since=null, name=unit, alias=, stereotype=unallowed, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a035a0]. +2024-09-08 15:11:36,248 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Other::AnotherBadDatatype, _objData=UmlObjectData [id=3298, uuid={C055FF1A-F57E-4169-A823-AB41EB439A1C}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1538, _eaTypeName=EmptyCompound, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@5997b1]. +2024-09-08 15:11:36,248 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::AccessPoint, _objData=UmlObjectData [id=3320, uuid={40D9CE14-376C-43eb-9583-238284A8F3CC}, since=null, name=Address, alias=, stereotype=, visibility=public, txtDescription='Address is optional, e.g. in case of GOOSE subscriber where physical link exists (and no comm link).', htmlDescription='

Address is optional, e.g. in case of GOOSE subscriber where physical link exists (and no comm link).

'], _isConst=false, _isStatic=false, _multiplicity=[0..*], _initValue=, _eaTypeId=1586, _eaTypeName=CommAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@f4d528]. +2024-09-08 15:11:36,248 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenCommonDataClass, _objData=UmlObjectData [id=3321, uuid={556405B0-426B-4a24-8F13-B0569BCCB145}, since=null, name=CDC-ID, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@8ad73b]. +2024-09-08 15:11:36,248 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenConstructedType, _objData=UmlObjectData [id=3322, uuid={3672BC56-9890-4355-861B-45B1B841A9A8}, since=null, name=DA-ID, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@8ad73b]. +2024-09-08 15:11:36,248 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenDataAttribute, _objData=UmlObjectData [id=3323, uuid={FD001E99-4132-4975-B26D-2B9F17395F66}, since=null, name=DAName, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@8ad73b]. +2024-09-08 15:11:36,248 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenDataAttribute, _objData=UmlObjectData [id=3324, uuid={34285ABB-FB3B-404a-ACC4-4709533FA4BF}, since=null, name=DARef, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1607, _eaTypeName=GenObjRef, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@4921a5]. +2024-09-08 15:11:36,248 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenDataAttribute, _objData=UmlObjectData [id=3325, uuid={6E718A2A-A12C-4100-80D3-84B5550862E0}, since=null, name=FC, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1597, _eaTypeName=GenFC, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1f27fae]. +2024-09-08 15:11:36,248 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenDataAttribute, _objData=UmlObjectData [id=3326, uuid={4F3B8CEE-ECAE-43cc-ACC9-68F61865042C}, since=null, name=TrgOp, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1615, _eaTypeName=GenTriggerConditions, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a35978]. +2024-09-08 15:11:36,248 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenDataAttribute, _objData=UmlObjectData [id=3327, uuid={807AE164-D149-4d18-9790-FCE87600CD9E}, since=null, name=Presence, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1609, _eaTypeName=GenPresenceConditions, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@f7c8c1]. +2024-09-08 15:11:36,249 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenDataAttribute, _objData=UmlObjectData [id=3328, uuid={B8650C5E-BC73-4968-B86C-C84775721C80}, since=null, name=Index, alias=, stereotype=, visibility=public, txtDescription='Index of this data attribute in case it is member of an array.', htmlDescription='

Index of this data attribute in case it is member of an array.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1602, _eaTypeName=GenINT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@10a87b3]. +2024-09-08 15:11:36,249 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenDataObject, _objData=UmlObjectData [id=3329, uuid={493B8A67-86FF-4718-BA8F-D78707C1FD65}, since=null, name=DOName, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@8ad73b]. +2024-09-08 15:11:36,249 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenDataObject, _objData=UmlObjectData [id=3330, uuid={B926F4CF-F07E-4264-B8E0-B1E7B6A83C0C}, since=null, name=DORef, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1607, _eaTypeName=GenObjRef, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@4921a5]. +2024-09-08 15:11:36,249 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenDataObject, _objData=UmlObjectData [id=3331, uuid={0100601D-CE5C-477e-9468-C76C14D215E9}, since=null, name=Transient, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1590, _eaTypeName=GenBOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1cd6521]. +2024-09-08 15:11:36,249 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenDataObject, _objData=UmlObjectData [id=3332, uuid={32D55A3C-F89A-4a1b-B987-40A0A56F35F7}, since=null, name=Presence, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1609, _eaTypeName=GenPresenceConditions, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@f7c8c1]. +2024-09-08 15:11:36,249 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenDataSet, _objData=UmlObjectData [id=3333, uuid={17678D76-CE06-4c20-80A5-7682C8099F48}, since=null, name=DSName, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@8ad73b]. +2024-09-08 15:11:36,249 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenFCD, _objData=UmlObjectData [id=3334, uuid={B8189F42-4859-4645-8DB8-09B9081EF712}, since=null, name=FC, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1597, _eaTypeName=GenFC, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1f27fae]. +2024-09-08 15:11:36,249 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenFCDA, _objData=UmlObjectData [id=3335, uuid={EA599362-A0A3-4d27-A9F4-915F9082C9B6}, since=null, name=FC, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1597, _eaTypeName=GenFC, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1f27fae]. +2024-09-08 15:11:36,249 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenFile, _objData=UmlObjectData [id=3336, uuid={4AD7728F-4A39-4b7e-AC32-D31BDA8E2033}, since=null, name=FileRef, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1616, _eaTypeName=GenVisString255, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@179bb86]. +2024-09-08 15:11:36,249 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenFile, _objData=UmlObjectData [id=3337, uuid={C372B3E2-9671-4ff3-A6DD-A2322FB8438C}, since=null, name=FileSize, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1602, _eaTypeName=GenINT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@10a87b3]. +2024-09-08 15:11:36,249 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenFile, _objData=UmlObjectData [id=3338, uuid={9A695829-F4E7-45cd-AD65-90CA0669786C}, since=null, name=LastModified, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1614, _eaTypeName=GenTimeStamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1cd19b3]. +2024-09-08 15:11:36,249 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenLogicalDevice, _objData=UmlObjectData [id=3339, uuid={132BB1C1-B4D8-4218-941F-B5A60919E81F}, since=null, name=LDName, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@8ad73b]. +2024-09-08 15:11:36,249 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenLogicalNode, _objData=UmlObjectData [id=3340, uuid={BE685D25-FF44-42ae-805A-D77E32E208B3}, since=null, name=LNName, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@8ad73b]. +2024-09-08 15:11:36,249 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenLogicalNode, _objData=UmlObjectData [id=3341, uuid={7A4CFF68-F4E3-47f5-BD82-708786CBC6E8}, since=null, name=LNRef, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1607, _eaTypeName=GenObjRef, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@4921a5]. +2024-09-08 15:11:36,249 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenSubDataAttribute, _objData=UmlObjectData [id=3342, uuid={AB7D51A9-8986-4bfc-8BA6-4836DC8814DE}, since=null, name=SubDAName, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@8ad73b]. +2024-09-08 15:11:36,249 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenSubDataAttribute, _objData=UmlObjectData [id=3343, uuid={94A40232-E6EE-4682-B41D-2FCF1207E36B}, since=null, name=SubDARef, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1607, _eaTypeName=GenObjRef, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@4921a5]. +2024-09-08 15:11:36,249 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenSubDataAttribute, _objData=UmlObjectData [id=3344, uuid={227F3C1B-21E7-46e7-92B5-A36942028DC0}, since=null, name=FC, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1597, _eaTypeName=GenFC, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1f27fae]. +2024-09-08 15:11:36,249 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenSubDataAttribute, _objData=UmlObjectData [id=3345, uuid={AB4449FC-BDC1-43fe-9AA0-B699FD684B7F}, since=null, name=Presence, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1609, _eaTypeName=GenPresenceConditions, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@f7c8c1]. +2024-09-08 15:11:36,249 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenSubDataAttribute, _objData=UmlObjectData [id=3346, uuid={F3DE8E30-A6D7-41b5-B2B6-B3006D7AEBCC}, since=null, name=Index, alias=, stereotype=, visibility=public, txtDescription='Index of this sub-data attribute in case it is member of an array.', htmlDescription='

Index of this sub-data attribute in case it is member of an array.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1602, _eaTypeName=GenINT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@10a87b3]. +2024-09-08 15:11:36,249 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenSubDataObject, _objData=UmlObjectData [id=3347, uuid={5336B078-D51A-4310-BFC9-7B4828112B1D}, since=null, name=SDOName, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1608, _eaTypeName=GenObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@8ad73b]. +2024-09-08 15:11:36,249 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenSubDataObject, _objData=UmlObjectData [id=3348, uuid={7314D9C2-528D-4907-A459-ECDA44ADE0E0}, since=null, name=SDORef, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1607, _eaTypeName=GenObjRef, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@4921a5]. +2024-09-08 15:11:36,249 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenSubDataObject, _objData=UmlObjectData [id=3349, uuid={C1410F0D-BF9E-4f1d-B38F-884B17F8F161}, since=null, name=Presence, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1609, _eaTypeName=GenPresenceConditions, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@f7c8c1]. +2024-09-08 15:11:36,250 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenSubDataObject, _objData=UmlObjectData [id=3350, uuid={4276E214-E0D7-476f-BAA6-ED3DF54ABF91}, since=null, name=Index, alias=, stereotype=, visibility=public, txtDescription='Index of this sub data object in case it is member of an array.', htmlDescription='

Index of this sub data object in case it is member of an array.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1602, _eaTypeName=GenINT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@10a87b3]. +2024-09-08 15:11:36,250 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=GenericModel::GenTPAA, _objData=UmlObjectData [id=3351, uuid={24BE7E13-5125-43e0-9D7F-1F75F29C6A19}, since=null, name=AssociationId, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1588, _eaTypeName=GenAssociationID, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1211155]. +2024-09-08 15:11:36,250 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CoreTypes::P_TimeStamp, _objData=UmlObjectData [id=3383, uuid={CDA8BF64-6FF8-4ba2-ABBC-382E39C0B24C}, since=null, name=SecondSinceEpoch, alias=, stereotype=, visibility=public, txtDescription='Interval in seconds continuously counted from the epoch 1970-01-01 00:00:00 UTC.', htmlDescription='

Interval in seconds continuously counted from the epoch 1970-01-01 00:00:00 UTC.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1656, _eaTypeName=P_INT32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1dba6f9]. +2024-09-08 15:11:36,250 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CoreTypes::P_TimeStamp, _objData=UmlObjectData [id=3385, uuid={1C4E5EB3-6199-4ce6-976E-E81B1E3D3D26}, since=null, name=TimeQuality, alias=, stereotype=, visibility=public, txtDescription='Information about the time source of the sending IED.', htmlDescription='

Information about the time source of the sending IED.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1672, _eaTypeName=TimeQuality, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1e18270]. +2024-09-08 15:11:36,250 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CoreTypes::TimeQuality, _objData=UmlObjectData [id=3386, uuid={9C35C39B-81CF-412d-A57E-9706FE60A4E9}, since=null, name=LeapSecondsKnown, alias=, stereotype=, visibility=public, txtDescription='If true, the value in 'P_TimeStamp.SecondSinceEpoch' contains all leap seconds occurred. Otherwise, it does not take into account the leap seconds that occurred before the initialization of the time source of the device. Instead, the seconds since start of the epoch are calculated from the current date assuming a constant day length of 86400 seconds. +Note: If a UTC time master clock is used and accessible, this value should always be true.', htmlDescription='

If true, the value in 'P_TimeStamp.SecondSinceEpoch' contains all leap seconds occurred. Otherwise, it does not take into account the leap seconds that occurred before the initialization of the time source of the device. Instead, the seconds since start of the epoch are calculated from the current date assuming a constant day length of 86400 seconds.

Note: If a UTC time master clock is used and accessible, this value should always be true.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:11:36,250 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CoreTypes::TimeQuality, _objData=UmlObjectData [id=3387, uuid={5FDA2BA2-85CD-4f5d-9FC8-AA4C892E9904}, since=null, name=ClockFailure, alias=, stereotype=, visibility=public, txtDescription='If true, the time source of the sending device is unreliable and the value of the time stamp shall be ignored.', htmlDescription='

If true, the time source of the sending device is unreliable and the value of the time stamp shall be ignored.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:11:36,250 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CoreTypes::TimeQuality, _objData=UmlObjectData [id=3388, uuid={C371C41F-4D3F-4129-A08C-AA2AB445051F}, since=null, name=ClockNotSynchronized, alias=, stereotype=, visibility=public, txtDescription='If true, the time source of the sending device is not synchronised with the external UTC time.', htmlDescription='

If true, the time source of the sending device is not synchronised with the external UTC time.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:11:36,250 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CoreTypes::TimeQuality, _objData=UmlObjectData [id=3389, uuid={4B73DC7D-52D2-4627-A70B-1027E72F218F}, since=null, name=TimeAccuracy, alias=, stereotype=, visibility=public, txtDescription='Class of time accuracy in terms of number of significant bits in 'P_TimeStamp.FractionOfSecond'.', htmlDescription='

Class of time accuracy in terms of number of significant bits in 'P_TimeStamp.FractionOfSecond'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1673, _eaTypeName=TimeAccuracyKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1de5c8c]. +2024-09-08 15:11:36,250 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CoreTypes::P_TriggerConditions, _objData=UmlObjectData [id=3397, uuid={A829B7C4-40ED-4e43-A520-BB42588381F0}, since=null, name=data-change, alias=, stereotype=, visibility=public, txtDescription='If true, a value change of a process-related data attribute, tagged with dchg, will trigger the generation of a report or log entry. If false, no entry should be generated on value change.', htmlDescription='

If true, a value change of a process-related data attribute, tagged with dchg, will trigger the generation of a report or log entry. If false, no entry should be generated on value change.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:11:36,250 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CoreTypes::P_TriggerConditions, _objData=UmlObjectData [id=3398, uuid={088AE2AE-C484-4fb7-B17D-D9D712044645}, since=null, name=quality-change, alias=, stereotype=, visibility=public, txtDescription='If true, a value change of a quality-related data attribute, tagged with qchg, will trigger the generation of a report or log entry. If false, no entry should be generated on quality change.', htmlDescription='

If true, a value change of a quality-related data attribute, tagged with qchg, will trigger the generation of a report or log entry. If false, no entry should be generated on quality change.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:11:36,250 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CoreTypes::P_TriggerConditions, _objData=UmlObjectData [id=3399, uuid={57A3C8E0-5424-4100-90E2-3EFA7B5D1F57}, since=null, name=data-update, alias=, stereotype=, visibility=public, txtDescription='If true, a value freezing of a freezable data attribute (e.g., frozen counters) or a value update of any other data attribute, tagged with dupd, will trigger the generation of a report or log entry. If false, no entry should be generated on value update. +This trigger condition may be used to issue sending a report or storing a log entry into a log when a value has changed or has been "overwritten" with the same value as before. It may then be a trigger for reporting or logging of the statistics values (which may be calculated and updated periodically), independently of whether the value has changed or not.', htmlDescription='

If true, a value freezing of a freezable data attribute (e.g., frozen counters) or a value update of any other data attribute, tagged with dupd, will trigger the generation of a report or log entry. If false, no entry should be generated on value update.

This trigger condition may be used to issue sending a report or storing a log entry into a log when a value has changed or has been "overwritten" with the same value as before. It may then be a trigger for reporting or logging of the statistics values (which may be calculated and updated periodically), independently of whether the value has changed or not.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:11:36,251 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CoreTypes::P_TriggerConditions, _objData=UmlObjectData [id=3400, uuid={197A7EEE-CC0C-481d-B006-99BE3C9041A5}, since=null, name=integrity, alias=, stereotype=, visibility=public, txtDescription='If true, the control block in the server shall generate periodical Report or Log entries on every expiration of the integrity timer (period trigger option).', htmlDescription='

If true, the control block in the server shall generate periodical Report or Log entries on every expiration of the integrity timer (period trigger option).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:11:36,251 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CoreTypes::P_TriggerConditions, _objData=UmlObjectData [id=3401, uuid={2154CDDF-8F70-47dc-929D-406C98AC6E48}, since=null, name=general-interrogation, alias=, stereotype=, visibility=public, txtDescription='If true, the RCB in the server shall generate general interrogation Report entries on user request.', htmlDescription='

If true, the RCB in the server shall generate general interrogation Report entries on user request.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:11:36,251 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ObjectReferences::LDReference, _objData=UmlObjectData [id=3405, uuid={18337A58-4439-456a-8BCA-A1B7AF8715A1}, since=null, name=LDName, alias=, stereotype=, visibility=public, txtDescription='Name of an LD instance, unambiguously identifying the LD within the system.', htmlDescription='

Name of an LD instance, unambiguously identifying the LD within the system.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@525845]. +2024-09-08 15:11:36,251 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ObjectReferences::NonPersistentDSReference, _objData=UmlObjectData [id=3407, uuid={4F62D406-E0F0-45ea-9C34-3DB7262EDE88}, since=null, name=DSName, alias=, stereotype=, visibility=public, txtDescription='Name of a dataset instance, unambiguously identifying it within the scope of a two party application association.', htmlDescription='

Name of a dataset instance, unambiguously identifying it within the scope of a two party application association.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@525845]. +2024-09-08 15:11:36,251 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ObjectReferences::LNReference, _objData=UmlObjectData [id=3409, uuid={315FD389-CF79-4476-9221-E8EF466FE456}, since=null, name=LNName, alias=, stereotype=, visibility=public, txtDescription='Name of an LN instance, unambiguously identifying the LN within the scope of an LD.', htmlDescription='

Name of an LN instance, unambiguously identifying the LN within the scope of an LD.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@525845]. +2024-09-08 15:11:36,251 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ObjectReferences::CDCReference, _objData=UmlObjectData [id=3411, uuid={27B4D2D6-7DD0-4a73-8DD4-3E27211B8FE4}, since=null, name=DataName, alias=, stereotype=, visibility=public, txtDescription='Name of a CDC instance (data object) contained in the LN. The CDC may be: +1. PrimitiveCDC: Example is "Auto" from the reference myLD3/RREC1.Auto (where myLD3/RREC1.Auto is of type SPC:PrimitiveCDC). +2. ComposedCDC: example is "PhV" from the reference myLD3/MMXU1.PhV.phsA (where myLD3/MMXU1.PhV is of type WYE:ComposedCDC).', htmlDescription='

Name of a CDC instance (data object) contained in the LN. The CDC may be:

  1. PrimitiveCDC: Example is "Auto" from the reference myLD3/RREC1.Auto (where myLD3/RREC1.Auto is of type SPC:PrimitiveCDC).
  2. ComposedCDC: example is "PhV" from the reference myLD3/MMXU1.PhV.phsA (where myLD3/MMXU1.PhV is of type WYE:ComposedCDC).
'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@525845]. +2024-09-08 15:11:36,251 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ObjectReferences::CDCReference, _objData=UmlObjectData [id=3412, uuid={11F81F23-C9EF-4f7e-A783-E4ECC12CB884}, since=null, name=SubDataName, alias=, stereotype=, visibility=public, txtDescription='Empty string in case the PrimitiveCDC is contained in LN, non-empty name of sub-data object if PrimitiveCDC is contained in ComposedCDC. Example of this latter is "phsA" from the reference myLD3/MMXU1.PhV.phsA (where PhV is of type WYE:ComposedCDC, and one level further, PhV.phsA is of type SPC:PrimitiveCDC).', htmlDescription='

Empty string in case the PrimitiveCDC is contained in LN, non-empty name of sub-data object if PrimitiveCDC is contained in ComposedCDC. Example of this latter is "phsA" from the reference myLD3/MMXU1.PhV.phsA (where PhV is of type WYE:ComposedCDC, and one level further, PhV.phsA is of type SPC:PrimitiveCDC).

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@525845]. +2024-09-08 15:11:36,251 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ObjectReferences::CBReference, _objData=UmlObjectData [id=3414, uuid={8A834972-A898-4f3a-8CF5-9896102F4C43}, since=null, name=CBName, alias=, stereotype=, visibility=public, txtDescription='Name of a BRCB or URCB instance, unambiguously identifying it within the scope of an LN, or name of an SGCB, LCB, GCB, USVCB or MSVCB instance, unambiguously identifying it within the scope of the LN0. To find out which control block it describes, use FC. Corresponds to one of the following: +- SGCBName = "SGCB", +- BRCBName, +- URCBName, +- LCBName, +- GoCBName, +- USVCBName, +- MSVCBName.', htmlDescription='

Name of a BRCB or URCB instance, unambiguously identifying it within the scope of an LN, or name of an SGCB, LCB, GCB, USVCB or MSVCB instance, unambiguously identifying it within the scope of the LN0. To find out which control block it describes, use FC. Corresponds to one of the following:

  • SGCBName = "SGCB",
  • BRCBName,
  • URCBName,
  • LCBName,
  • GoCBName,
  • USVCBName,
  • MSVCBName.
'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@525845]. +2024-09-08 15:11:36,251 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ObjectReferences::CBReference, _objData=UmlObjectData [id=3415, uuid={801D665B-C42E-46a1-91D9-8131A8FA1630}, since=null, name=FC, alias=, stereotype=, visibility=public, txtDescription='Kind of control block described by this reference: +- ServiceFcKind.SP for SGCB, +- ServiceFcKind.BR for BRCB, +- ServiceFcKind.RP for URCB, +- ServiceFcKind.LG for LCB, +- ServiceFcKind.GO for GCB, +- ServiceFcKind.MS for MSVCB, +- ServiceFcKind.US for USVCB.', htmlDescription='

Kind of control block described by this reference:

  • ServiceFcKind.SP for SGCB,
  • ServiceFcKind.BR for BRCB,
  • ServiceFcKind.RP for URCB,
  • ServiceFcKind.LG for LCB,
  • ServiceFcKind.GO for GCB,
  • ServiceFcKind.MS for MSVCB,
  • ServiceFcKind.US for USVCB.
'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1699, _eaTypeName=ServiceFcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1021e6c]. +2024-09-08 15:11:36,251 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ObjectReferences::LOGReference, _objData=UmlObjectData [id=3425, uuid={E6AF9494-0CB6-469c-B908-B6EFD9D95BF2}, since=null, name=LogName, alias=, stereotype=, visibility=public, txtDescription='Name of a LOG instance, unambiguously identifying it within the scope of an LN0.', htmlDescription='

Name of a LOG instance, unambiguously identifying it within the scope of an LN0.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@525845]. +2024-09-08 15:11:36,251 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ObjectReferences::LOGReference, _objData=UmlObjectData [id=3426, uuid={DA9F9473-FD92-4da5-85D5-D15BE37BADB8}, since=null, name=FC, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=true, _isStatic=true, _multiplicity=[0..1], _initValue=LG, _eaTypeId=1699, _eaTypeName=ServiceFcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1021e6c]. +2024-09-08 15:11:36,251 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ObjectReferences::LNOwnedDSReference, _objData=UmlObjectData [id=3428, uuid={098059FE-54F8-4eef-805F-94F5F8358D6F}, since=null, name=DSName, alias=, stereotype=, visibility=public, txtDescription='Name of a DS instance, unambiguously identifying the DS within the scope of an LN.', htmlDescription='

Name of a DS instance, unambiguously identifying the DS within the scope of an LN.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@525845]. +2024-09-08 15:11:36,251 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ObjectReferences::FCDReference, _objData=UmlObjectData [id=3431, uuid={F261F75D-C2F6-4b2d-9261-38E92897916A}, since=null, name=FC, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@116af24]. +2024-09-08 15:11:36,252 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ObjectReferences::FCDAReference, _objData=UmlObjectData [id=3433, uuid={71B22A59-B87D-4866-B0BD-DF359940497E}, since=null, name=FCDARefWithoutFC, alias=, stereotype=, visibility=public, txtDescription='Path-name of the PrimitiveDA instance (i.e., attribute contained in CDC or in ComposedDA) without functional constraint (= DataAttrRef).', htmlDescription='

Path-name of the PrimitiveDA instance (i.e., attribute contained in CDC or in ComposedDA) without functional constraint (= DataAttrRef).

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1667, _eaTypeName=P_VISIBLE_STRING255, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@3788f3]. +2024-09-08 15:11:36,252 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ObjectReferences::FCDAReference, _objData=UmlObjectData [id=3434, uuid={39C98C0B-3EBC-457d-ADB8-6E0955A9AAAC}, since=null, name=LeafAttrName, alias=, stereotype=, visibility=public, txtDescription='Concatenation of one or more names of instances of DA, as follows: +1. For a PrimitiveDA, it is a single name. Example is "stVal" from the reference [ST] myLD3/XCBR1.Pos.stVal (where stVal is of type DpStatus:EnumDA). +2. For a ComposedDA, it is concatenation of two or more names, starting from the ComposedDA down to the PrimitiveDA it contains. One example is "cVal.mag.f" from the reference [MX] myLD3/MMXU1.PhV.phsA.cVal.mag.f. In this example: +- cVal is of type Vector:ComposedDA; one level further, +- cVal.mag is of type AnalogueValue:ComposedDA; one level further, +- cVal.mag.f is of type FLOAT32:PrimitiveDA. +Modelling note: Corresponds to DataAttributeName.[DataAttributeName...]. +Implementation note: After DataName and SubDataName of CDCReference have been correctly parsed, this is the concatenation of all names down to the leaf.', htmlDescription='

Concatenation of one or more names of instances of DA, as follows:

  1. For a PrimitiveDA, it is a single name. Example is "stVal" from the reference [ST] myLD3/XCBR1.Pos.stVal (where stVal is of type DpStatus:EnumDA).
  2. For a ComposedDA, it is concatenation of two or more names, starting from the ComposedDA down to the PrimitiveDA it contains. One example is "cVal.mag.f" from the reference [MX] myLD3/MMXU1.PhV.phsA.cVal.mag.f. In this example:
  • cVal is of type Vector:ComposedDA; one level further,
  • cVal.mag is of type AnalogueValue:ComposedDA; one level further,
  • cVal.mag.f is of type FLOAT32:PrimitiveDA.

Modelling note: Corresponds to DataAttributeName.[DataAttributeName...].

Implementation note: After DataName and SubDataName of CDCReference have been correctly parsed, this is the concatenation of all names down to the leaf.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@525845]. +2024-09-08 15:11:36,252 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ObjectReferences::FCDAReference, _objData=UmlObjectData [id=3435, uuid={4358ED41-699C-4b19-A10D-D41877B1B0FF}, since=null, name=NumArrayElement, alias=, stereotype=, visibility=public, txtDescription='If the reference contains an array of DAs or CDCs, this is the index of the array element (e.g., reference [MX] myHWYE1.phsAHar(3).cVal.mag.f references the value of cVal with NumArrayElement=3), ignored otherwise. +Modelling note: Corresponds to NumArrayElement in one of the following: +- LDName/LNName.DataObjectName[.SubDataObjectName(NumArrayElement)[. ...]].DataAttributeName[.SubDataAttributeName[. ...]] +- LDName/LNName.DataObjectName[.SubDataObjectName[. ...]].DataAttributeName[(NumArrayElement)][.SubDataAttributeName[. ...]] +- LDName/LNName.DataObjectName[.SubDataObjectName[. ...]].DataAttributeName(NumArrayElement)', htmlDescription='

If the reference contains an array of DAs or CDCs, this is the index of the array element (e.g., reference [MX] myHWYE1.phsAHar(3).cVal.mag.f references the value of cVal with NumArrayElement=3), ignored otherwise.

Modelling note: Corresponds to NumArrayElement in one of the following:

  • LDName/LNName.DataObjectName[.SubDataObjectName(NumArrayElement)[. ...]].DataAttributeName[.SubDataAttributeName[. ...]]
  • LDName/LNName.DataObjectName[.SubDataObjectName[. ...]].DataAttributeName[(NumArrayElement)][.SubDataAttributeName[. ...]]
  • LDName/LNName.DataObjectName[.SubDataObjectName[. ...]].DataAttributeName(NumArrayElement)
'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1661, _eaTypeName=P_INT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1a51a35]. +2024-09-08 15:11:36,252 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=BasicDAs::BOOLEAN, _objData=UmlObjectData [id=3455, uuid={26303763-5425-4eb3-9E6B-A0E20714D69E}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:11:36,252 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=BasicDAs::INT16U, _objData=UmlObjectData [id=3458, uuid={5CAC1927-5377-434f-B9CF-DF014080FF25}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1659, _eaTypeName=P_INT16U, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@9a5fbe]. +2024-09-08 15:11:36,252 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=BasicDAs::INT32, _objData=UmlObjectData [id=3460, uuid={8AB19364-EBA3-46e8-9A28-836D4BE3184E}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1656, _eaTypeName=P_INT32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1dba6f9]. +2024-09-08 15:11:36,252 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=BasicDAs::INT32U, _objData=UmlObjectData [id=3461, uuid={4E98F434-E893-4dd8-A976-1F47F85F096D}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1661, _eaTypeName=P_INT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1a51a35]. +2024-09-08 15:11:36,252 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=BasicDAs::FLOAT32, _objData=UmlObjectData [id=3456, uuid={0C453C24-788C-4b79-936D-F8ED7B6AC349}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1662, _eaTypeName=P_FLOAT32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@4041cc]. +2024-09-08 15:11:36,252 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=BasicDAs::UNICODE_STRING255, _objData=UmlObjectData [id=3466, uuid={2D5EC3D2-2D30-4dcd-A716-1DDCC1D03618}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1663, _eaTypeName=P_UNICODE_STRING255, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1ca2dfa]. +2024-09-08 15:11:36,253 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=BasicDAs::VISIBLE_STRING255, _objData=UmlObjectData [id=3467, uuid={98E04197-6A6E-47dc-9801-656386DF6B28}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1667, _eaTypeName=P_VISIBLE_STRING255, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@3788f3]. +2024-09-08 15:11:36,253 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=BasicDAs::ObjectReference, _objData=UmlObjectData [id=3469, uuid={D656053C-0AC9-4b40-B071-8DCD708B0AF0}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1669, _eaTypeName=P_ObjectReference, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b4de6a]. +2024-09-08 15:11:36,253 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=BasicDAs::PHYCOMADDR, _objData=UmlObjectData [id=3470, uuid={601E9D69-6691-49ad-B034-6C76CA60A811}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1670, _eaTypeName=P_PHYCOMADDR, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@18f5f62]. +2024-09-08 15:11:36,253 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=BasicDAs::TimeStamp, _objData=UmlObjectData [id=3471, uuid={3ABEB6F9-DB10-42c0-BB49-17EA3703AFBC}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1671, _eaTypeName=P_TimeStamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@d59286]. +2024-09-08 15:11:36,253 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=BasicDAs::TriggerConditions, _objData=UmlObjectData [id=3472, uuid={808EC92B-30E6-4882-A08E-64D4B5E48217}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1674, _eaTypeName=P_TriggerConditions, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@123a213]. +2024-09-08 15:11:36,253 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=BasicDAs::DpStatus, _objData=UmlObjectData [id=3473, uuid={B1D71CDD-86A6-4d33-A64E-6E6089FFAD0E}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1636, _eaTypeName=DpStatusKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1cd892a]. +2024-09-08 15:11:36,253 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=BasicDAs::BsControl, _objData=UmlObjectData [id=3474, uuid={5CF376EC-A611-4feb-9E92-1A3A726D9788}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1635, _eaTypeName=BsControlKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@83f5ae]. +2024-09-08 15:11:36,253 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CommonAcsiTypes::MulticastAddress, _objData=UmlObjectData [id=3478, uuid={E313732A-C2CB-4dbd-B5D6-C20398D08EAA}, since=null, name=vid, alias=, stereotype=, visibility=public, txtDescription='Virtual LAN ID. Shall be 3 characters from the range [0-9] and [A-F].', htmlDescription='

Virtual LAN ID. Shall be 3 characters from the range [0-9] and [A-F].

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1659, _eaTypeName=P_INT16U, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@9a5fbe]. +2024-09-08 15:11:36,253 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CommonAcsiTypes::MulticastAddress, _objData=UmlObjectData [id=3479, uuid={DE23C4C9-F440-4437-9F96-B5C3040716E9}, since=null, name=appid, alias=, stereotype=, visibility=public, txtDescription='Application identifier. Shall be 4 characters from the range [0-9] and [A-F].', htmlDescription='

Application identifier. Shall be 4 characters from the range [0-9] and [A-F].

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1659, _eaTypeName=P_INT16U, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@9a5fbe]. +2024-09-08 15:11:36,253 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CommonAcsiTypes::EntryID, _objData=UmlObjectData [id=3481, uuid={D3228FA9-B272-4ce2-B085-A15C466C9489}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1770, _eaTypeName=P_OCTET_STRING, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1d4cc9e]. +2024-09-08 15:11:36,253 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::HierarchyIEC61850Object, _objData=UmlObjectData [id=3584, uuid={C32A6B6B-F4DC-4498-A469-C006B9625420}, since=null, name=parent, alias=, stereotype=, visibility=public, txtDescription='Parent of this hierarchy object.', htmlDescription='

Parent of this hierarchy object.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1835, _eaTypeName=IEC61850Object, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@27c60c]. +2024-09-08 15:11:36,253 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::NamedIEC61850Object, _objData=UmlObjectData [id=3585, uuid={E8F8F2B7-045C-402f-BA7A-4880C9570B06}, since=null, name=objName, alias=, stereotype=, visibility=public, txtDescription='Object name.', htmlDescription='

Object name.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1668, _eaTypeName=ObjectName, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@525845]. +2024-09-08 15:11:36,253 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::SERVER, _objData=UmlObjectData [id=3588, uuid={8C8AC9D6-5A54-4110-A15C-61F37484AB7D}, since=null, name=serviceAccessPoints, alias=, stereotype=, visibility=public, txtDescription='All service access points of the server, unambiguously identifying it within a system. +Modelling note 1: Corresponds to SERVER.ServiceAccessPoint. +Modelling note 2: Original documentation reads: "Shall identify a SERVER within the scope of a system. NOTE: The ServiceAccessPoint is an abstraction of an address used to identify the server in the underlying SCSM. The type depends on the SCSM and shall be defined there. Although most services require a specific ServiceAccessPoint to address a server, it has not been included explicitly in the service parameter tables throughout this part of the standard." Currently, here is defined the type IPAddress; see also MulticastAddress.', htmlDescription='

All service access points of the server, unambiguously identifying it within a system.

Modelling note 1: Corresponds to SERVER.ServiceAccessPoint.

Modelling note 2: Original documentation reads: "Shall identify a SERVER within the scope of a system. NOTE: The ServiceAccessPoint is an abstraction of an address used to identify the server in the underlying SCSM. The type depends on the SCSM and shall be defined there. Although most services require a specific ServiceAccessPoint to address a server, it has not been included explicitly in the service parameter tables throughout this part of the standard." Currently, here is defined the type IPAddress; see also MulticastAddress.

'], _isConst=false, _isStatic=false, _multiplicity=[1..*], _initValue=, _eaTypeId=1771, _eaTypeName=IPAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1f23557]. +2024-09-08 15:11:36,253 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::LD, _objData=UmlObjectData [id=3589, uuid={877F93ED-1944-4701-A29D-57C6810B68CB}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1694, _eaTypeName=LDReference, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@194d659]. +2024-09-08 15:11:36,253 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::LN, _objData=UmlObjectData [id=3590, uuid={B9201E1F-0FBA-4eee-A567-31539F09E245}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1696, _eaTypeName=LNReference, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@ceda24]. +2024-09-08 15:11:36,253 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::CDC, _objData=UmlObjectData [id=3591, uuid={6520578A-E479-4aca-8AD6-7A973E895B9F}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1697, _eaTypeName=CDCReference, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1e3708]. +2024-09-08 15:11:36,253 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::FCD, _objData=UmlObjectData [id=3592, uuid={71280780-DF48-46ed-94CA-4B5679065AE1}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1702, _eaTypeName=FCDReference, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@e82894]. +2024-09-08 15:11:36,253 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::FCD, _objData=UmlObjectData [id=3593, uuid={000364EA-747B-48d9-9EFC-91F8A514AEF3}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@116af24]. +2024-09-08 15:11:36,254 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::FCDA, _objData=UmlObjectData [id=3594, uuid={B87818BA-192E-4a1d-8AD7-0549A1C7944B}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1703, _eaTypeName=FCDAReference, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@13af739]. +2024-09-08 15:11:36,254 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::DA, _objData=UmlObjectData [id=3595, uuid={9BCB520F-E69E-42f6-B46B-C5CD184D0DC6}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1703, _eaTypeName=FCDAReference, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@13af739]. +2024-09-08 15:11:36,254 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::PrimitiveDA, _objData=UmlObjectData [id=3596, uuid={6D0553ED-7183-49b8-AA89-281C5ED4C156}, since=null, name=attrVal, alias=, stereotype=, visibility=public, txtDescription='Attribute value.', htmlDescription='

Attribute value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1715, _eaTypeName=AttrValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1fe3806]. +2024-09-08 15:11:36,254 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::LNOwnedDS, _objData=UmlObjectData [id=3597, uuid={178D709F-C872-44cb-9A6B-41E324507F65}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1701, _eaTypeName=LNOwnedDSReference, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@7c290d]. +2024-09-08 15:11:36,254 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::NonPersistentDS, _objData=UmlObjectData [id=3598, uuid={D70F19B4-50F6-4ef3-B474-4097F3C69C1D}, since=null, name=isReferenced, alias=, stereotype=, visibility=public, txtDescription='Whether this persistent data set is referenced by any control block. +Modelling note: Persistent data set has to maintain the count of control blocks that refer to it. As long as any control block refers to it, the data set must not be deleted.', htmlDescription='

Whether this persistent data set is referenced by any control block.

Modelling note: Persistent data set has to maintain the count of control blocks that refer to it. As long as any control block refers to it, the data set must not be deleted.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:11:36,254 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::NonPersistentDS, _objData=UmlObjectData [id=3599, uuid={621B00EC-B4C7-4e96-B78E-699BDF150650}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1695, _eaTypeName=NonPersistentDSReference, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@b1d79b]. +2024-09-08 15:11:36,254 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::PersistentDS, _objData=UmlObjectData [id=3600, uuid={6031C78B-0DF2-4ebc-B8D9-F1536979D005}, since=null, name=isReferenced, alias=, stereotype=, visibility=public, txtDescription='Whether this persistent data set is referenced by any control block. +Modelling note: Persistent data set has to maintain the count of control blocks that refer to it. As long as any control block refers to it, the data set must not be deleted.', htmlDescription='

Whether this persistent data set is referenced by any control block.

Modelling note: Persistent data set has to maintain the count of control blocks that refer to it. As long as any control block refers to it, the data set must not be deleted.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:11:36,254 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::ControlBlock, _objData=UmlObjectData [id=3601, uuid={A222DE94-3FCC-4552-ABD6-E06CD9D4785A}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1698, _eaTypeName=CBReference, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1a50a4c]. +2024-09-08 15:11:36,254 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::BRCB, _objData=UmlObjectData [id=3602, uuid={49A42927-00D7-4419-B76E-ED5F48ECCCB8}, since=null, name=clientAddress, alias=, stereotype=, visibility=public, txtDescription='Address of the client configured to use this buffered sampled values control block.', htmlDescription='

Address of the client configured to use this buffered sampled values control block.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1771, _eaTypeName=IPAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1f23557]. +2024-09-08 15:11:36,254 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::URCB, _objData=UmlObjectData [id=3603, uuid={B5927ACC-713E-4617-AA8C-BC2DF96653FC}, since=null, name=clientAddress, alias=, stereotype=, visibility=public, txtDescription='Address of the client currently using this unbuffered report control block.', htmlDescription='

Address of the client currently using this unbuffered report control block.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1771, _eaTypeName=IPAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1f23557]. +2024-09-08 15:11:36,254 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::LOG, _objData=UmlObjectData [id=3604, uuid={83B4C180-8173-4ced-91C7-171BCA34F649}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1700, _eaTypeName=LOGReference, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@103f852]. +2024-09-08 15:11:36,254 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::GCB, _objData=UmlObjectData [id=3605, uuid={8D35BDEB-211F-478a-B3F2-87A92379A926}, since=null, name=destinationAddress, alias=, stereotype=, visibility=public, txtDescription='Address to which this control block publishes GOOSE messages.', htmlDescription='

Address to which this control block publishes GOOSE messages.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1772, _eaTypeName=MulticastAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@2db087]. +2024-09-08 15:11:36,254 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::MSVCB, _objData=UmlObjectData [id=3606, uuid={98ABF189-48F0-466b-9B2F-580948BB965B}, since=null, name=destinationAddress, alias=, stereotype=, visibility=public, txtDescription='Address to which this control block publishes sampled values.', htmlDescription='

Address to which this control block publishes sampled values.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1772, _eaTypeName=MulticastAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@2db087]. +2024-09-08 15:11:36,254 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::USVCB, _objData=UmlObjectData [id=3607, uuid={84624C3F-9B45-49b5-94A3-491A476383AF}, since=null, name=clientAddress, alias=, stereotype=, visibility=public, txtDescription='Address of the client currently using this unbuffered sampled values control block.', htmlDescription='

Address of the client currently using this unbuffered sampled values control block.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1771, _eaTypeName=IPAddress, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1f23557]. +2024-09-08 15:11:36,254 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModel::FILE, _objData=UmlObjectData [id=3608, uuid={9EB09CC5-3C74-4cf6-A8B4-C65928A972B6}, since=null, name=objRef, alias=, stereotype=, visibility=public, txtDescription='Object reference.', htmlDescription='

Object reference.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1693, _eaTypeName=FILEReference, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@ab0bfb]. +2024-09-08 15:11:36,254 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_BL, _objData=UmlObjectData [id=3609, uuid={5D2587D3-3485-4d8e-A54A-B3968B0ACD55}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=BL, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@116af24]. +2024-09-08 15:11:36,254 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_CF, _objData=UmlObjectData [id=3610, uuid={09B06C9E-4F11-4e82-8034-F5CC45FAC900}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=CF, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@116af24]. +2024-09-08 15:11:36,254 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_CF_dchg, _objData=UmlObjectData [id=3611, uuid={09BA6106-FB5B-46d5-B9EB-69EF40ADE216}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@438a68]. +2024-09-08 15:11:36,254 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_DC, _objData=UmlObjectData [id=3612, uuid={683D28A6-85D9-4a30-9858-1FD32EE25D71}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=DC, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@116af24]. +2024-09-08 15:11:36,254 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_EX, _objData=UmlObjectData [id=3613, uuid={CEFBDE9B-5BF0-4b36-856A-CA994924738A}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=EX, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@116af24]. +2024-09-08 15:11:36,254 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_EX, _objData=UmlObjectData [id=3614, uuid={5A327143-156F-48dd-AAF5-6B96335A4246}, since=null, name=isWritable, alias=, stereotype=, visibility=public, txtDescription='Whether the data attribute is writable through services.', htmlDescription='

Whether the data attribute is writable through services.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:11:36,254 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_MX, _objData=UmlObjectData [id=3615, uuid={C595F449-EECA-490f-86C4-52A016827CF5}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=MX, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@116af24]. +2024-09-08 15:11:36,254 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_MX, _objData=UmlObjectData [id=3616, uuid={26C44A44-AB3A-4d2f-9A1C-F09A40CD7503}, since=null, name=isWritable, alias=, stereotype=, visibility=public, txtDescription='Whether the data attribute is writable through services.', htmlDescription='

Whether the data attribute is writable through services.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:11:36,254 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_MX_dchg, _objData=UmlObjectData [id=3617, uuid={DA6E63F6-73E7-48a9-B61B-B3DF59A04B4E}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@438a68]. +2024-09-08 15:11:36,254 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_MX_dchg_dupd, _objData=UmlObjectData [id=3618, uuid={22AFD6F7-773C-4cac-A2E0-545134B61149}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, dupd, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@438a68]. +2024-09-08 15:11:36,254 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_MX_qchg, _objData=UmlObjectData [id=3619, uuid={3F395C8A-6D62-4c56-87E6-027F1F594183}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=qchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@438a68]. +2024-09-08 15:11:36,254 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_OR, _objData=UmlObjectData [id=3620, uuid={282951AC-7E92-4c83-97E3-19FBCC94D012}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=OR, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@116af24]. +2024-09-08 15:11:36,255 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_OR, _objData=UmlObjectData [id=3621, uuid={558DB516-1CFD-4554-81F5-FA0755D271D8}, since=null, name=isWritable, alias=, stereotype=, visibility=public, txtDescription='Whether the data attribute is writable through services.', htmlDescription='

Whether the data attribute is writable through services.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:11:36,255 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_OR_dchg, _objData=UmlObjectData [id=3622, uuid={3A006018-162B-46b7-AC78-9652BF2385BD}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@438a68]. +2024-09-08 15:11:36,255 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SE, _objData=UmlObjectData [id=3623, uuid={EE451B41-BF45-40e4-8CF7-515359A61448}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=SE, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@116af24]. +2024-09-08 15:11:36,255 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SE, _objData=UmlObjectData [id=3624, uuid={C6F2D29C-73F2-45a2-852C-36D93C110DE8}, since=null, name=isReadable, alias=, stereotype=, visibility=public, txtDescription='Whether the data attribute is readable through services.', htmlDescription='

Whether the data attribute is readable through services.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:11:36,255 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SE, _objData=UmlObjectData [id=3625, uuid={4CFFCD7F-9E74-4b7a-B957-5A62F07BBB56}, since=null, name=isWritable, alias=, stereotype=, visibility=public, txtDescription='Whether the data attribute is writable through services.', htmlDescription='

Whether the data attribute is writable through services.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:11:36,255 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SE_dchg, _objData=UmlObjectData [id=3626, uuid={CF74494C-A546-4a41-A807-684E97FE1B68}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@438a68]. +2024-09-08 15:11:36,255 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SG, _objData=UmlObjectData [id=3627, uuid={1810C2D0-E27B-4e1e-A0B6-2A5F2E8E16D6}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=SG, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@116af24]. +2024-09-08 15:11:36,255 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SG, _objData=UmlObjectData [id=3628, uuid={1BD03152-B959-4fff-8DC0-B6BE8542DDD2}, since=null, name=isWritable, alias=, stereotype=, visibility=public, txtDescription='Whether the data attribute is writable through services.', htmlDescription='

Whether the data attribute is writable through services.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:11:36,255 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SG_dchg, _objData=UmlObjectData [id=3629, uuid={D993FACE-FF1E-47a8-9E52-C03D6CB09D7D}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@438a68]. +2024-09-08 15:11:36,255 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SP, _objData=UmlObjectData [id=3630, uuid={6DC7D1CB-F4DC-4ef4-9756-98C8AD7FF1B6}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=SP, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@116af24]. +2024-09-08 15:11:36,255 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SP_dchg, _objData=UmlObjectData [id=3631, uuid={CA035F21-EC50-4322-8BD7-B8C7FD19CF46}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@438a68]. +2024-09-08 15:11:36,255 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_ST, _objData=UmlObjectData [id=3632, uuid={55FA60DB-3F3A-4bb9-9E91-8BA73393B836}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=ST, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@116af24]. +2024-09-08 15:11:36,255 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_ST, _objData=UmlObjectData [id=3633, uuid={A00991C4-8B92-478e-AC41-A628210ED3B7}, since=null, name=isWritable, alias=, stereotype=, visibility=public, txtDescription='Whether the data attribute is writable through services.', htmlDescription='

Whether the data attribute is writable through services.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:11:36,255 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_ST_dchg, _objData=UmlObjectData [id=3634, uuid={3899F2B2-1233-40b3-9997-370CF1FD073A}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@438a68]. +2024-09-08 15:11:36,255 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_ST_dchg_dupd, _objData=UmlObjectData [id=3635, uuid={41740EB1-4C6B-4265-A5A9-D1853C7B873B}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dchg, dupd, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@438a68]. +2024-09-08 15:11:36,255 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_ST_dupd, _objData=UmlObjectData [id=3636, uuid={332CF62D-D37E-431d-8EC4-6A1EBADAAFB3}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=dupd, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@438a68]. +2024-09-08 15:11:36,255 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_ST_qchg, _objData=UmlObjectData [id=3637, uuid={2735A83D-F0E0-4aab-ADB5-AECB30212656}, since=null, name=trgOp, alias=, stereotype=, visibility=public, txtDescription='Trigger option.', htmlDescription='

Trigger option.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=qchg, _eaTypeId=1633, _eaTypeName=TrgOpKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@438a68]. +2024-09-08 15:11:36,255 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=MetaModelFCsAndTrgOps::FCDA_SV, _objData=UmlObjectData [id=3638, uuid={4D38B4C1-5DEC-47cf-90C9-BF37000D95AC}, since=null, name=fc, alias=, stereotype=, visibility=public, txtDescription='Functional constraint.', htmlDescription='

Functional constraint.

'], _isConst=true, _isStatic=true, _multiplicity=[1..1], _initValue=SV, _eaTypeId=1631, _eaTypeName=FcKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@116af24]. +2024-09-08 15:11:36,255 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ImplicitDAs::SIUnit, _objData=UmlObjectData [id=4088, uuid={04E61BC5-2DEF-41ba-AF8F-3A302F4A6063}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2045, _eaTypeName=SIUnitKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1df177]. +2024-09-08 15:11:36,255 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ImplicitDAs::Multiplier, _objData=UmlObjectData [id=4077, uuid={D9A6C35F-4CCF-4f73-83E5-5F4AD6A1400F}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2044, _eaTypeName=MultiplierKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@f08448]. +2024-09-08 15:11:36,255 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ImplicitDAs::PhaseFaultDirection, _objData=UmlObjectData [id=4082, uuid={686FDE41-9545-4055-876E-D830A36C9D9B}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2035, _eaTypeName=PhaseFaultDirectionKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@8df31b]. +2024-09-08 15:11:36,255 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ImplicitDAs::PhaseAngleReference, _objData=UmlObjectData [id=4081, uuid={C147EDDB-E173-43f3-A14E-937A40EA0619}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2039, _eaTypeName=PhaseAngleReferenceKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1a57272]. +2024-09-08 15:11:36,255 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::Quality, _objData=UmlObjectData [id=4089, uuid={6B873BB6-307E-4f25-9992-6EB6CF12F6ED}, since=null, name=validity, alias=, stereotype=, visibility=public, txtDescription='Validity of the value, as condensed information for the client. In case this value is not 'good', the reasons may be found in the 'detailQual'. See statechart diagram 'Quality.validity'.', htmlDescription='

Validity of the value, as condensed information for the client. In case this value is not 'good', the reasons may be found in the 'detailQual'. See statechart diagram 'Quality.validity'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2086, _eaTypeName=ValidityKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@238e3f]. +2024-09-08 15:11:36,255 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::Quality, _objData=UmlObjectData [id=4090, uuid={F9945558-C141-4c08-8066-C29D603832D6}, since=null, name=detailQual, alias=, stereotype=, visibility=public, txtDescription='Describes reason in case 'validity' is not 'good'. See statechart diagram 'Quality.validity'.', htmlDescription='

Describes reason in case 'validity' is not 'good'. See statechart diagram 'Quality.validity'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2087, _eaTypeName=DetailQual, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@464a14]. +2024-09-08 15:11:36,255 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::Quality, _objData=UmlObjectData [id=4091, uuid={5A199508-269E-4da4-9486-1CFDD6D76F69}, since=null, name=source, alias=, stereotype=, visibility=public, txtDescription='Defines the source of a value. +NOTE 1 Substitution may be done locally or via the communication services. In the second case, specific attributes with a FC=SV are used. +NOTE 2 There are various means to clear a substitution. As an example, a substitution that was done following an invalid condition may be cleared automatically if the invalid condition is cleared. However, this is a local issue and therefore not within the scope of this standard.', htmlDescription='

Defines the source of a value.

NOTE 1 Substitution may be done locally or via the communication services. In the second case, specific attributes with a FC=SV are used.

NOTE 2 There are various means to clear a substitution. As an example, a substitution that was done following an invalid condition may be cleared automatically if the invalid condition is cleared. However, this is a local issue and therefore not within the scope of this standard.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=process, _eaTypeId=2088, _eaTypeName=SourceKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@4aea35]. +2024-09-08 15:11:36,255 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::Quality, _objData=UmlObjectData [id=4092, uuid={AAF0A359-5525-42e5-AC60-220D2A34F946}, since=null, name=test, alias=, stereotype=, visibility=public, txtDescription='If true, the value is a test value and not to be used for operational purposes. The processing of the test quality in the client shall be as described in IEC 61850-7-4. This bit shall be completely independent from the other bits within the quality descriptor.', htmlDescription='

If true, the value is a test value and not to be used for operational purposes. The processing of the test quality in the client shall be as described in IEC 61850-7-4. This bit shall be completely independent from the other bits within the quality descriptor.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:11:36,255 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::Quality, _objData=UmlObjectData [id=4093, uuid={3CD5913A-B2E1-43bd-ABC3-943477516A2E}, since=null, name=operatorBlocked, alias=, stereotype=, visibility=public, txtDescription='If true, further update of the value has been blocked by an operator. The value shall be the information that was acquired before blocking. If this flag is set, then the 'detailQual.oldData' shall also be set. +The operator shall use the data attribute 'CDC.blkEna' to block the update of the value. +NOTE Both an operator as well as an automatic function may freeze communication updating as well as input updating. In both cases, 'detailQual.oldData' will be set. If the blocking is done by an operator, then this flag is set additionally, and an operator activity is required to clear the condition. +EXAMPLE An operator may freeze the update of an input, to save the old value before the auxiliary supply is switched off.', htmlDescription='

If true, further update of the value has been blocked by an operator. The value shall be the information that was acquired before blocking. If this flag is set, then the 'detailQual.oldData' shall also be set.

The operator shall use the data attribute 'CDC.blkEna' to block the update of the value.

NOTE Both an operator as well as an automatic function may freeze communication updating as well as input updating. In both cases, 'detailQual.oldData' will be set. If the blocking is done by an operator, then this flag is set additionally, and an operator activity is required to clear the condition.

EXAMPLE An operator may freeze the update of an input, to save the old value before the auxiliary supply is switched off.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:11:36,256 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4098, uuid={F718393A-BF8D-43d5-838D-8E98DDBD0E12}, since=null, name=overflow, alias=, stereotype=, visibility=public, txtDescription='If true, the value of the attribute to which the quality has been associated is beyond the capability of being represented properly (used for measurand information only). +EXAMPLE A measured value may exceed the range that may be represented by the selected data type, for example the data type is a 16-bit unsigned integer and the value exceeds 65 535.', htmlDescription='

If true, the value of the attribute to which the quality has been associated is beyond the capability of being represented properly (used for measurand information only).

EXAMPLE A measured value may exceed the range that may be represented by the selected data type, for example the data type is a 16-bit unsigned integer and the value exceeds 65 535.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:11:36,256 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4099, uuid={59AA133B-4EF6-45b2-8F72-65890F8CB3B3}, since=null, name=outOfRange, alias=, stereotype=, visibility=public, txtDescription='If true, the attribute to which the quality has been associated is beyond a predefined range of values. The server shall decide if validity shall be set to invalid or questionable (used for measurand information only). +EXAMPLE A measured value may exceed a predefined range, however the selected data type can still represent the value, for example the data type is a 16-bit unsigned integer, the predefined range is 0 to 40 000, if the value is between 40 001 and 65 535 it is considered to be out of range.', htmlDescription='

If true, the attribute to which the quality has been associated is beyond a predefined range of values. The server shall decide if validity shall be set to invalid or questionable (used for measurand information only).

EXAMPLE A measured value may exceed a predefined range, however the selected data type can still represent the value, for example the data type is a 16-bit unsigned integer, the predefined range is 0 to 40 000, if the value is between 40 001 and 65 535 it is considered to be out of range.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:11:36,257 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4100, uuid={11996C00-CB4B-4a28-8EE7-BEF71773138F}, since=null, name=badReference, alias=, stereotype=, visibility=public, txtDescription='If true, the value may not be a correct value due to a reference being out of calibration. The server shall decide if validity shall be set to invalid or questionable (used for measurand information and binary counter information only).', htmlDescription='

If true, the value may not be a correct value due to a reference being out of calibration. The server shall decide if validity shall be set to invalid or questionable (used for measurand information and binary counter information only).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:11:36,257 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4101, uuid={8BDDF6AD-167F-4b25-B87B-675BA127832A}, since=null, name=oscillatory, alias=, stereotype=, visibility=public, txtDescription='To prevent overloading of event driven communication channels, it is desirable to detect and suppress oscillating (fast changing) binary inputs. If a signal changes in a defined time (tosc) twice in the same direction (from 0 to 1 or from 1 to 0), then it shall be defined as an oscillation and this attribute shall be set to true. If a configured number of transient changes is detected, they shall be suppressed. In this time, the 'Quality.validity' shall be set to 'questionable'. If the signal is still in the oscillating state after the defined number of changes, the value shall be left in the state it was in when this flag was set. In this case, the 'Quality.validity' shall be changed from 'questionable' to 'invalid' and kept so as long as the signal is oscillating. +If the configuration is such that all transient changes should be suppressed, the 'Quality.validity' shall be set immediately to 'invalid' and this flag to true (used for status information only).', htmlDescription='

To prevent overloading of event driven communication channels, it is desirable to detect and suppress oscillating (fast changing) binary inputs. If a signal changes in a defined time (tosc) twice in the same direction (from 0 to 1 or from 1 to 0), then it shall be defined as an oscillation and this attribute shall be set to true. If a configured number of transient changes is detected, they shall be suppressed. In this time, the 'Quality.validity' shall be set to 'questionable'. If the signal is still in the oscillating state after the defined number of changes, the value shall be left in the state it was in when this flag was set. In this case, the 'Quality.validity' shall be changed from 'questionable' to 'invalid' and kept so as long as the signal is oscillating.

If the configuration is such that all transient changes should be suppressed, the 'Quality.validity' shall be set immediately to 'invalid' and this flag to true (used for status information only).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:11:36,257 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4102, uuid={3B8BF4EE-E8EF-4aff-A496-55A1F7D43008}, since=null, name=failure, alias=, stereotype=, visibility=public, txtDescription='If true, a supervision function has detected an internal or external failure.', htmlDescription='

If true, a supervision function has detected an internal or external failure.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:11:36,257 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4103, uuid={818F9F91-476A-49f8-86B4-58D7E97343BD}, since=null, name=oldData, alias=, stereotype=, visibility=public, txtDescription='If true, an update is not made during a specific time interval. The value may be an old value that may have changed in the meantime. This specific time interval may be defined by an allowed-age attribute. +NOTE "Fail silent" errors, where the equipment stops sending data, will cause setting this flag to true. In this case, the last received information was correct.', htmlDescription='

If true, an update is not made during a specific time interval. The value may be an old value that may have changed in the meantime. This specific time interval may be defined by an allowed-age attribute.

NOTE "Fail silent" errors, where the equipment stops sending data, will cause setting this flag to true. In this case, the last received information was correct.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:11:36,257 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4104, uuid={BD955C3B-2E26-40fa-ADBC-F1FD970D24FF}, since=null, name=inconsistent, alias=, stereotype=, visibility=public, txtDescription='If true, an evaluation function has detected an inconsistency.', htmlDescription='

If true, an evaluation function has detected an inconsistency.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:11:36,257 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::DetailQual, _objData=UmlObjectData [id=4105, uuid={8936AB8B-A0A9-4132-817E-D2B7C850E919}, since=null, name=inaccurate, alias=, stereotype=, visibility=public, txtDescription='If true, the value does not meet the stated accuracy of the source. +EXAMPLE The measured value of power factor may be noisy (inaccurate) when the current is very small.', htmlDescription='

If true, the value does not meet the stated accuracy of the source.

EXAMPLE The measured value of power factor may be noisy (inaccurate) when the current is very small.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=false, _eaTypeId=1653, _eaTypeName=P_BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b0d3ed]. +2024-09-08 15:11:36,257 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::AnalogueValue, _objData=UmlObjectData [id=4108, uuid={22DBDBF4-0BD6-4ae9-83E7-28C1B98CD72A}, since=null, name=i, alias=, stereotype=, visibility=public, txtDescription='Integer representation of the measured value. The formula to convert between 'i' and the process value (pVal) shall be: pVal=('i'*'ScaledValueConfig.scaleFactor')+'ScaledValueConfig.offset'.', htmlDescription='

Integer representation of the measured value. The formula to convert between 'i' and the process value (pVal) shall be: pVal=('i'*'ScaledValueConfig.scaleFactor')+'ScaledValueConfig.offset'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1745, _eaTypeName=INT32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1623278]. +2024-09-08 15:11:36,257 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::AnalogueValue, _objData=UmlObjectData [id=4109, uuid={B5A81241-061A-410d-8E63-9847A2F26D4D}, since=null, name=f, alias=, stereotype=, visibility=public, txtDescription='Floating point representation of the measured value. The formula to convert between 'f' and the process value (pVal) shall be: pVal='f'*10'Unit.multiplier'.', htmlDescription='

Floating point representation of the measured value. The formula to convert between 'f' and the process value (pVal) shall be: pVal='f'*10'Unit.multiplier'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1741, _eaTypeName=FLOAT32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@15b3e5b]. +2024-09-08 15:11:36,257 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::RangeConfig, _objData=UmlObjectData [id=4112, uuid={2BFD6A66-6A28-44b9-BD6A-9BFF5FEEF286}, since=null, name=hhLim, alias=, stereotype=, visibility=public, txtDescription='Setting for 'CDC.range' transition between 'high' and 'high-high'.', htmlDescription='

Setting for 'CDC.range' transition between 'high' and 'high-high'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@42d7b5]. +2024-09-08 15:11:36,257 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::RangeConfig, _objData=UmlObjectData [id=4113, uuid={8FE22512-90C7-4798-9E7E-7595B41EA770}, since=null, name=hLim, alias=, stereotype=, visibility=public, txtDescription='Setting for 'CDC.range' transition between 'normal' and 'high'.', htmlDescription='

Setting for 'CDC.range' transition between 'normal' and 'high'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@42d7b5]. +2024-09-08 15:11:36,257 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::RangeConfig, _objData=UmlObjectData [id=4114, uuid={E4180E64-6824-4aa0-8D9F-A32F749903E0}, since=null, name=lLim, alias=, stereotype=, visibility=public, txtDescription='Setting for 'CDC.range' transition between 'normal' and 'low'.', htmlDescription='

Setting for 'CDC.range' transition between 'normal' and 'low'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@42d7b5]. +2024-09-08 15:11:36,257 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::RangeConfig, _objData=UmlObjectData [id=4115, uuid={A928E883-FC18-4c21-8227-53F8B3A89A08}, since=null, name=llLim, alias=, stereotype=, visibility=public, txtDescription='Setting for 'CDC.range' transition between 'low' and 'low-low'.', htmlDescription='

Setting for 'CDC.range' transition between 'low' and 'low-low'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@42d7b5]. +2024-09-08 15:11:36,257 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::RangeConfig, _objData=UmlObjectData [id=4116, uuid={FDC77E3A-4EF4-4ace-93FD-7CC6C14FB3D0}, since=null, name=min, alias=, stereotype=, visibility=public, txtDescription='The minimum process measurement for which 'AnalogueValue.[i,f]' is considered within process limits. If the value is lower, quality shall be set accordingly ('Quality.detailQual.outOfRange'=true => 'Quality.validity'='questionable'; see statechart diagram 'Quality.validity').', htmlDescription='

The minimum process measurement for which 'AnalogueValue.[i,f]' is considered within process limits. If the value is lower, quality shall be set accordingly ('Quality.detailQual.outOfRange'=true => 'Quality.validity'='questionable'; see statechart diagram 'Quality.validity').

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@42d7b5]. +2024-09-08 15:11:36,257 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::RangeConfig, _objData=UmlObjectData [id=4117, uuid={470D1B89-7BB1-4e75-BEAE-A838976EFA5A}, since=null, name=max, alias=, stereotype=, visibility=public, txtDescription='The maximum process measurement for which 'AnalogueValue.[i,f]' is considered within process limits. If the value is higher, quality shall be set accordingly ('Quality.detailQual.outOfRange'=true => 'Quality.validity'='questionable'; see statechart diagram 'Quality.validity').', htmlDescription='

The maximum process measurement for which 'AnalogueValue.[i,f]' is considered within process limits. If the value is higher, quality shall be set accordingly ('Quality.detailQual.outOfRange'=true => 'Quality.validity'='questionable'; see statechart diagram 'Quality.validity').

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@42d7b5]. +2024-09-08 15:11:36,257 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::RangeConfig, _objData=UmlObjectData [id=4118, uuid={EE10B700-EDF1-4e03-B234-D881D49750CC}, since=null, name=limDb, alias=, stereotype=, visibility=public, txtDescription='When present, the value used to introduce a hysteresis in the calculation of 'range'. When a high/low limit has been crossed, 'range' is immediately set to the higher/lower value. However, 'range' is only set back to the lower/higher value when the value of the high limit minus/low limit plut 'limDb' has been crossed. The value shall represent the percentage between 'max' and 'min' in units of 0.001 %.', htmlDescription='

When present, the value used to introduce a hysteresis in the calculation of 'range'. When a high/low limit has been crossed, 'range' is immediately set to the higher/lower value. However, 'range' is only set back to the lower/higher value when the value of the high limit minus/low limit plut 'limDb' has been crossed. The value shall represent the percentage between 'max' and 'min' in units of 0.001 %.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=0...100000, _eaTypeId=1746, _eaTypeName=INT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@8b970c]. +2024-09-08 15:11:36,257 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::Unit, _objData=UmlObjectData [id=4127, uuid={E11B7BFF-E809-4175-9618-B2A63F15871E}, since=null, name=SIUnit, alias=, stereotype=, visibility=public, txtDescription='SI unit of measure.', htmlDescription='

SI unit of measure.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2072, _eaTypeName=SIUnit, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@6fa74d]. +2024-09-08 15:11:36,257 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::Unit, _objData=UmlObjectData [id=4128, uuid={0327BF79-19B2-4e38-AD4E-6944E32735D3}, since=null, name=multiplier, alias=, stereotype=, visibility=public, txtDescription='Unit multiplier.', htmlDescription='

Unit multiplier.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=none, _eaTypeId=2061, _eaTypeName=Multiplier, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@16438c9]. +2024-09-08 15:11:36,257 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::Point, _objData=UmlObjectData [id=4131, uuid={FE6F09B0-454A-4c96-8FDD-76F86A4128A3}, since=null, name=xVal, alias=, stereotype=, visibility=public, txtDescription='X-axis value.', htmlDescription='

X-axis value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1741, _eaTypeName=FLOAT32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@15b3e5b]. +2024-09-08 15:11:36,257 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::Point, _objData=UmlObjectData [id=4132, uuid={77130ABC-BB1E-4259-96F0-AF62EF68F9CB}, since=null, name=yVal, alias=, stereotype=, visibility=public, txtDescription='Y-axis value.', htmlDescription='

Y-axis value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1741, _eaTypeName=FLOAT32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@15b3e5b]. +2024-09-08 15:11:36,257 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=ConstructedDAs::Point, _objData=UmlObjectData [id=4133, uuid={1A9EA6E0-B105-4386-8B25-4F2F99670EE0}, since=null, name=zVal, alias=, stereotype=, visibility=public, txtDescription='Z-axis value.', htmlDescription='

Z-axis value.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1741, _eaTypeName=FLOAT32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@15b3e5b]. +2024-09-08 15:11:36,257 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::AnalogueValue_MX, _objData=UmlObjectData [id=4148, uuid={FDD0542C-EDDF-4b7f-AF56-B928F6DD6505}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@42d7b5]. +2024-09-08 15:11:36,257 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::AnalogueValue_MX_dchg, _objData=UmlObjectData [id=4149, uuid={F527B9F4-F3F6-495e-820C-D82F97FAABF8}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@42d7b5]. +2024-09-08 15:11:36,258 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::AnalogueValue_MX_dchg_dupd, _objData=UmlObjectData [id=4150, uuid={35CFD056-5391-4884-AB18-91299F6FCBFB}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2089, _eaTypeName=AnalogueValue, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@42d7b5]. +2024-09-08 15:11:36,258 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::BOOLEAN_BL, _objData=UmlObjectData [id=4155, uuid={3695DD4C-AE46-467e-862D-F6B7D2805EE9}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@22d9d]. +2024-09-08 15:11:36,258 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::BOOLEAN_CF_dchg, _objData=UmlObjectData [id=4156, uuid={D005BFC1-C9FF-4904-9176-3E49D541A4CE}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@22d9d]. +2024-09-08 15:11:36,258 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::BOOLEAN_MX_dchg, _objData=UmlObjectData [id=4157, uuid={C48BB5A5-75F6-482b-B673-C2130F3A3343}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@22d9d]. +2024-09-08 15:11:36,258 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::BOOLEAN_OR_dchg, _objData=UmlObjectData [id=4158, uuid={E52B552D-B1AD-48ee-8F84-581743CA0034}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@22d9d]. +2024-09-08 15:11:36,258 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::BOOLEAN_SE, _objData=UmlObjectData [id=4159, uuid={EA1C486D-C490-4b0e-B0F8-803E519E584A}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@22d9d]. +2024-09-08 15:11:36,258 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::BOOLEAN_SG, _objData=UmlObjectData [id=4160, uuid={F978D268-CA2C-4ff8-B7CD-CDD03C517BAE}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@22d9d]. +2024-09-08 15:11:36,258 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::BOOLEAN_SP_dchg, _objData=UmlObjectData [id=4161, uuid={8DEC3BB4-1BED-4961-B836-457537D9227E}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@22d9d]. +2024-09-08 15:11:36,258 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::BOOLEAN_ST_dchg, _objData=UmlObjectData [id=4162, uuid={7480B397-4199-4840-B073-D855605E4C7A}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@22d9d]. +2024-09-08 15:11:36,258 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::BOOLEAN_SV, _objData=UmlObjectData [id=4163, uuid={13C32585-2DE2-4dad-8F00-5BDC2660E5D8}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1740, _eaTypeName=BOOLEAN, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@22d9d]. +2024-09-08 15:11:36,258 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::DpStatus_ST_dchg, _objData=UmlObjectData [id=4175, uuid={6669EA33-E870-48c7-9A70-675DF65FCDE1}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1759, _eaTypeName=DpStatus, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@b87145]. +2024-09-08 15:11:36,258 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::DpStatus_SV, _objData=UmlObjectData [id=4176, uuid={0F2878FA-ABC8-4aab-91D7-41F3D0B45817}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1759, _eaTypeName=DpStatus, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@b87145]. +2024-09-08 15:11:36,258 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::EnumDA_CF_dchg, _objData=UmlObjectData [id=4177, uuid={AB3915C1-C27C-48ea-B3F9-A9FDE30FAEB0}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1855, _eaTypeName=EnumDA, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1baf4f0]. +2024-09-08 15:11:36,258 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::EnumDA_ST_dchg, _objData=UmlObjectData [id=4181, uuid={FDBA0552-772A-4e56-B666-9B4EADE4572B}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1855, _eaTypeName=EnumDA, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1baf4f0]. +2024-09-08 15:11:36,258 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::EnumDA_ST_dchg_dupd, _objData=UmlObjectData [id=4182, uuid={A26C4B75-BDBC-47d7-8F84-1AEB40536B37}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1855, _eaTypeName=EnumDA, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1baf4f0]. +2024-09-08 15:11:36,258 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::EnumDA_SV, _objData=UmlObjectData [id=4183, uuid={85FBD660-4ECF-4fe6-A3CB-7CE93AD92682}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1855, _eaTypeName=EnumDA, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1baf4f0]. +2024-09-08 15:11:36,258 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::INT16U_CF, _objData=UmlObjectData [id=4192, uuid={D557D453-45C5-4562-97A4-DF8E6C3ABE03}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1743, _eaTypeName=INT16U, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a3ec6b]. +2024-09-08 15:11:36,258 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::INT16U_CF_dchg, _objData=UmlObjectData [id=4193, uuid={CF5B7211-78ED-4a54-943A-4C6076784FAA}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1743, _eaTypeName=INT16U, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a3ec6b]. +2024-09-08 15:11:36,258 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::INT32U_CF_dchg, _objData=UmlObjectData [id=4198, uuid={B6014F46-BB76-4b26-B95B-414DEBFE5627}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1746, _eaTypeName=INT32U, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@8b970c]. +2024-09-08 15:11:36,258 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::INT32_CF_dchg, _objData=UmlObjectData [id=4200, uuid={7A8322EF-35B6-45e2-B29B-24495242697D}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1745, _eaTypeName=INT32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1623278]. +2024-09-08 15:11:36,258 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::INT32_ST_dchg, _objData=UmlObjectData [id=4204, uuid={BD683E05-ABAE-402d-B588-081B1F3BA2FB}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1745, _eaTypeName=INT32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1623278]. +2024-09-08 15:11:36,259 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::INT32_ST_dchg_dupd, _objData=UmlObjectData [id=4205, uuid={84EA5D4B-9E4B-4a73-A3A5-9E8D42A60F3C}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1745, _eaTypeName=INT32, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1623278]. +2024-09-08 15:11:36,259 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::PhaseAngleReference_CF_dchg, _objData=UmlObjectData [id=4216, uuid={7B9C230D-AF50-4613-AFD8-CA5D41088526}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2065, _eaTypeName=PhaseAngleReference, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@181ae3f]. +2024-09-08 15:11:36,259 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::PhaseFaultDirection_ST_dchg, _objData=UmlObjectData [id=4217, uuid={FEA43715-0A9A-4812-A093-3FAD2A6B464D}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2066, _eaTypeName=PhaseFaultDirection, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1b37288]. +2024-09-08 15:11:36,259 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::Point_DC, _objData=UmlObjectData [id=4219, uuid={EFCD6ECB-36A0-4997-82B8-301C6C666369}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2098, _eaTypeName=Point, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@16a4d6c]. +2024-09-08 15:11:36,259 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::Point_SE, _objData=UmlObjectData [id=4220, uuid={C756E7B6-1F5F-4ead-B882-CE7EDB83001D}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2098, _eaTypeName=Point, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@16a4d6c]. +2024-09-08 15:11:36,259 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::Point_SG, _objData=UmlObjectData [id=4221, uuid={871B23C7-8CF2-43a0-A9FE-4627CB0BFA2D}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2098, _eaTypeName=Point, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@16a4d6c]. +2024-09-08 15:11:36,259 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::Point_SP, _objData=UmlObjectData [id=4222, uuid={A9FC2C2B-E6E7-4210-80D8-B786506D9BCF}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2098, _eaTypeName=Point, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@16a4d6c]. +2024-09-08 15:11:36,259 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::Quality_MX_qchg, _objData=UmlObjectData [id=4224, uuid={909716F1-245A-42ae-9D75-E906E4300337}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2080, _eaTypeName=Quality, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@2c9341]. +2024-09-08 15:11:36,259 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::Quality_ST_qchg, _objData=UmlObjectData [id=4225, uuid={63B2543A-C5CB-4e42-AE3C-D89A5D6092F8}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2080, _eaTypeName=Quality, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@2c9341]. +2024-09-08 15:11:36,259 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::Quality_SV, _objData=UmlObjectData [id=4226, uuid={25019ADF-C815-49c4-A33A-932B7EC41FD5}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2080, _eaTypeName=Quality, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@2c9341]. +2024-09-08 15:11:36,259 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::RangeConfig_CF_dchg, _objData=UmlObjectData [id=4227, uuid={7DC0C70D-A279-420a-A4C9-8EC142118EE0}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2091, _eaTypeName=RangeConfig, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@fee8e7]. +2024-09-08 15:11:36,259 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::TimeStamp_ST, _objData=UmlObjectData [id=4239, uuid={F793BE16-86C2-4d94-9076-25682F5C5800}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1756, _eaTypeName=TimeStamp, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1c222ae]. +2024-09-08 15:11:36,259 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::UNICODE_STRING255_DC, _objData=UmlObjectData [id=4240, uuid={6753F868-EDDC-4b85-BB22-F0505BC5964F}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1751, _eaTypeName=UNICODE_STRING255, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@153f538]. +2024-09-08 15:11:36,259 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=FCDAs::VISIBLE_STRING255_EX, _objData=UmlObjectData [id=4250, uuid={27C9FF27-9CA7-4829-BDDC-00EC8B17AA1F}, since=null, name=attr, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1752, _eaTypeName=VISIBLE_STRING255, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@14593bf]. +2024-09-08 15:11:36,259 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CommonDataClasses::BasePrimitiveCDC, _objData=UmlObjectData [id=4259, uuid={70157B11-247A-45cc-805C-2311A2402464}, since=null, name=dU, alias=, stereotype=, visibility=public, txtDescription='Textual description of the data using unicode characters. In case of LPL, the description refers to the logical node.', htmlDescription='

Textual description of the data using unicode characters. In case of LPL, the description refers to the logical node.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2207, _eaTypeName=UNICODE_STRING255_DC, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1bb8443]. +2024-09-08 15:11:36,259 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CommonDataClasses::BasePrimitiveCDC, _objData=UmlObjectData [id=4260, uuid={CB9D22B8-9916-44d7-AB74-A7E8767612D1}, since=null, name=cdcNs, alias=, stereotype=, visibility=public, txtDescription='Common data class name space. Scope of the standard specified with the attribute is CDC definition. For details see IEC 61850-7-1.', htmlDescription='

Common data class name space. Scope of the standard specified with the attribute is CDC definition. For details see IEC 61850-7-1.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2217, _eaTypeName=VISIBLE_STRING255_EX, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@176dcec]. +2024-09-08 15:11:36,259 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CommonDataClasses::BaseComposedCDC, _objData=UmlObjectData [id=4264, uuid={DA02A7F1-6B04-48c6-9571-CD453B3D1CED}, since=null, name=dU, alias=, stereotype=, visibility=public, txtDescription='See 'BasePrimitiveCDC.dU'.', htmlDescription='

See 'BasePrimitiveCDC.dU'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2207, _eaTypeName=UNICODE_STRING255_DC, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1bb8443]. +2024-09-08 15:11:36,260 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CommonDataClasses::BaseComposedCDC, _objData=UmlObjectData [id=4265, uuid={E299B631-8163-4dbd-B5B7-4C83B2303E19}, since=null, name=cdcNs, alias=, stereotype=, visibility=public, txtDescription='See 'BasePrimitiveCDC.cdcNs'.', htmlDescription='

See 'BasePrimitiveCDC.cdcNs'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2217, _eaTypeName=VISIBLE_STRING255_EX, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@176dcec]. +2024-09-08 15:11:36,260 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CommonDataClasses::SubstitutionCDC, _objData=UmlObjectData [id=4268, uuid={079F2530-74C1-408f-90FE-5292130BB10D}, since=null, name=subEna, alias=, stereotype=, visibility=public, txtDescription='Used to enable and disable substitution. If 'subEna'=true, the main data value and quality shall always be set to the same value as the attributes used to store the substitution data value and quality, as follows: +- for SPS, DPS, INS, ENS, SPC, DPC, INC, ENC: 'stVal' to 'subVal', 'q' to 'subQ'; +- for MV: 'instMag' to 'subMag', 'q' to 'subQ'; +- for CMV: 'instCVal' to 'subCVal', 'q' to 'subQ'; +- for BSC, ISC: 'valWTr' to 'subVal, 'q' to 'subQ'; and, +- for APC, BAC: 'mxVal' to 'subVal; 'q' to 'subQ'. +Otherwise, the data value shall be based on the process value.', htmlDescription='

Used to enable and disable substitution. If 'subEna'=true, the main data value and quality shall always be set to the same value as the attributes used to store the substitution data value and quality, as follows:

  • for SPS, DPS, INS, ENS, SPC, DPC, INC, ENC: 'stVal' to 'subVal', 'q' to 'subQ';
  • for MV: 'instMag' to 'subMag', 'q' to 'subQ';
  • for CMV: 'instCVal' to 'subCVal', 'q' to 'subQ';
  • for BSC, ISC: 'valWTr' to 'subVal, 'q' to 'subQ'; and,
  • for APC, BAC: 'mxVal' to 'subVal; 'q' to 'subQ'.

Otherwise, the data value shall be based on the process value.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2130, _eaTypeName=BOOLEAN_SV, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@17776a8]. +2024-09-08 15:11:36,260 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CommonDataClasses::SubstitutionCDC, _objData=UmlObjectData [id=4269, uuid={CC8123A6-0C41-47f6-B66F-FCB538FAC8C5}, since=null, name=subQ, alias=, stereotype=, visibility=public, txtDescription='Value used to substitute 'q'.', htmlDescription='

Value used to substitute 'q'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2193, _eaTypeName=Quality_SV, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1206beb]. +2024-09-08 15:11:36,260 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CommonDataClasses::SubstitutionCDC, _objData=UmlObjectData [id=4271, uuid={D0484592-24B0-4f23-BBA1-47AB63EDEB24}, since=null, name=blkEna, alias=, stereotype=, visibility=public, txtDescription='If true, 'q.operatorBlocked'=true, and the process value is no longer updated.', htmlDescription='

If true, 'q.operatorBlocked'=true, and the process value is no longer updated.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2122, _eaTypeName=BOOLEAN_BL, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@19b62af]. +2024-09-08 15:11:36,260 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCStatusInfo::DPS, _objData=UmlObjectData [id=4276, uuid={5BAF192B-559A-4c20-9FF4-15FDE99E17C8}, since=null, name=stVal, alias=, stereotype=, visibility=public, txtDescription='Status data value.', htmlDescription='

Status data value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2142, _eaTypeName=DpStatus_ST_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1a10787]. +2024-09-08 15:11:36,260 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCStatusInfo::DPS, _objData=UmlObjectData [id=4277, uuid={4442F743-451D-4ac2-8362-F2C586E6ACFC}, since=null, name=q, alias=, stereotype=, visibility=public, txtDescription='Quality of the data value 'stVal'.', htmlDescription='

Quality of the data value 'stVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2192, _eaTypeName=Quality_ST_qchg, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1d02175]. +2024-09-08 15:11:36,260 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCStatusInfo::DPS, _objData=UmlObjectData [id=4278, uuid={18394E45-54E3-4a63-85BB-63611B632E39}, since=null, name=t, alias=, stereotype=, visibility=public, txtDescription='Timestamp of the last change of the data value 'stVal' or quality 'q'.', htmlDescription='

Timestamp of the last change of the data value 'stVal' or quality 'q'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2206, _eaTypeName=TimeStamp_ST, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1fcd140]. +2024-09-08 15:11:36,260 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCStatusInfo::DPS, _objData=UmlObjectData [id=4279, uuid={F3D27F61-E9C4-4fc2-8AA6-662D6F85C26F}, since=null, name=subVal, alias=, stereotype=, visibility=public, txtDescription='Value used to substitute 'stVal'.', htmlDescription='

Value used to substitute 'stVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2143, _eaTypeName=DpStatus_SV, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1127a61, 2_taggedValues{moveAfter=wrongsubEna, secondTagName=secondTagValue}]. +2024-09-08 15:11:36,260 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCStatusInfo::ENS, _objData=UmlObjectData [id=4285, uuid={929E3BA6-6FC1-4cef-A0A3-AFC3397057FD}, since=null, name=stVal, alias=, stereotype=, visibility=public, txtDescription='Status data value.', htmlDescription='

Status data value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2149, _eaTypeName=EnumDA_ST_dchg_dupd, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@41089d]. +2024-09-08 15:11:36,260 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCStatusInfo::ENS, _objData=UmlObjectData [id=4286, uuid={973C16BC-0B6B-4787-9456-6A3C5D86703B}, since=null, name=q, alias=, stereotype=, visibility=public, txtDescription='Quality of the data value 'stVal'.', htmlDescription='

Quality of the data value 'stVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2192, _eaTypeName=Quality_ST_qchg, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1d02175]. +2024-09-08 15:11:36,260 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCStatusInfo::ENS, _objData=UmlObjectData [id=4287, uuid={A5C38D4B-AA0F-49b6-B868-27C0036F5163}, since=null, name=t, alias=, stereotype=, visibility=public, txtDescription='Timestamp of the last change of the data value 'stVal' or quality 'q'.', htmlDescription='

Timestamp of the last change of the data value 'stVal' or quality 'q'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2206, _eaTypeName=TimeStamp_ST, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1fcd140]. +2024-09-08 15:11:36,260 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCStatusInfo::ENS, _objData=UmlObjectData [id=4288, uuid={5895B5B3-C6B8-4321-BCF5-F17A3FE76872}, since=null, name=subVal, alias=, stereotype=, visibility=public, txtDescription='Value used to substitute 'stVal'.', htmlDescription='

Value used to substitute 'stVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2150, _eaTypeName=EnumDA_SV, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a068d1, 1_taggedValues{moveAfter=subEna}]. +2024-09-08 15:11:36,260 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCStatusInfo::EXY, _objData=UmlObjectData [id=6653, uuid={C45B42C1-992F-47fa-978C-87A6AFC4F512}, since=null, name=stVal, alias=, stereotype=, visibility=public, txtDescription='Status data value.', htmlDescription='

Status data value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2149, _eaTypeName=EnumDA_ST_dchg_dupd, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@41089d]. +2024-09-08 15:11:36,260 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCStatusInfo::EXY, _objData=UmlObjectData [id=6654, uuid={B5AC751A-B7F5-4848-8382-2072203D80D8}, since=null, name=q, alias=, stereotype=, visibility=public, txtDescription='Quality of the data value 'stVal'.', htmlDescription='

Quality of the data value 'stVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2192, _eaTypeName=Quality_ST_qchg, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1d02175]. +2024-09-08 15:11:36,260 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCStatusInfo::EXY, _objData=UmlObjectData [id=6655, uuid={CADD5FD8-0F27-4735-9D3F-4CE322754EA7}, since=null, name=t, alias=, stereotype=, visibility=public, txtDescription='Timestamp of the last change of the data value 'stVal' or quality 'q'.', htmlDescription='

Timestamp of the last change of the data value 'stVal' or quality 'q'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2206, _eaTypeName=TimeStamp_ST, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1fcd140]. +2024-09-08 15:11:36,260 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCStatusInfo::ACD, _objData=UmlObjectData [id=4302, uuid={22C4C4D2-4D10-4cad-8B98-2C5BB64AFEC2}, since=null, name=phsA, alias=, stereotype=, visibility=public, txtDescription='See 'ACT.phsA'.', htmlDescription='

See 'ACT.phsA'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2129, _eaTypeName=BOOLEAN_ST_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@28586]. +2024-09-08 15:11:36,260 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCStatusInfo::ACD, _objData=UmlObjectData [id=4304, uuid={78BD96A5-A044-4ee0-BDF2-6207BF482F50}, since=null, name=phsB, alias=, stereotype=, visibility=public, txtDescription='See 'ACT.phsB.', htmlDescription='

See 'ACT.phsB.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2129, _eaTypeName=BOOLEAN_ST_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@28586]. +2024-09-08 15:11:36,261 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCStatusInfo::HST, _objData=UmlObjectData [id=4328, uuid={CE8A66F5-D42E-4f4f-8087-F15C910C8D17}, since=null, name=hstVal, alias=, stereotype=, visibility=public, txtDescription='Array of data values for the histogram entries.', htmlDescription='

Array of data values for the histogram entries.

'], _isConst=false, _isStatic=false, _multiplicity=[1..*], _initValue=, _eaTypeId=2172, _eaTypeName=INT32_ST_dchg_dupd, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1ad8c79, 1 _constraints[ConstraintBuilder [_objData=UmlObjectData [id=1618, uuid=720fe959-ac7a-331d-b329-3988eb2bff13, since=null, name=maxIdx, alias=, stereotype=, visibility=public, txtDescription='maxPts-1', htmlDescription='

maxPts-1

'], _containingAttribute=hstVal, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=maxPts-1]]]. +2024-09-08 15:11:36,261 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCStatusInfo::HST, _objData=UmlObjectData [id=4331, uuid={B6E3704C-05B5-4c84-AEBB-CE3F2A3DB9F0}, since=null, name=numPts, alias=, stereotype=, visibility=public, txtDescription='Actual size of 'hstVal[]', 'hstRangeC[]'.', htmlDescription='

Actual size of 'hstVal[]', 'hstRangeC[]'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=1...maxPts, _eaTypeId=2159, _eaTypeName=INT16U_CF, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1cb5951]. +2024-09-08 15:11:36,261 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCAnalogueInfo::HarmonicMeasurandCDC, _objData=UmlObjectData [id=4346, uuid={2B6FCE4E-A827-467a-B3FA-B2DA520A2B0E}, since=null, name=evalTm, alias=, stereotype=, visibility=public, txtDescription='Time window [ms] applied to interharmonic calculations. See 'numHar'.', htmlDescription='

Time window [ms] applied to interharmonic calculations. See 'numHar'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2160, _eaTypeName=INT16U_CF_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@5c30cc]. +2024-09-08 15:11:36,261 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCAnalogueInfo::HarmonicMeasurandCDC, _objData=UmlObjectData [id=4347, uuid={9CA4C0A7-81A8-4f80-A178-0E3461E29662}, since=null, name=smpRate, alias=, stereotype=, visibility=public, txtDescription='Determines the highest possible harmonic or interharmonic detectable, according to the sampling theorem; the minimum value is 'smpRate'=2 * 'frequency'. 'smpRate' is the number of samples per nominal period. In the case of a dc system, it is number of samples per s.', htmlDescription='

Determines the highest possible harmonic or interharmonic detectable, according to the sampling theorem; the minimum value is 'smpRate'=2 * 'frequency'. 'smpRate' is the number of samples per nominal period. In the case of a dc system, it is number of samples per s.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2165, _eaTypeName=INT32U_CF_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1fc37a]. +2024-09-08 15:11:36,261 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCAnalogueInfo::CMV, _objData=UmlObjectData [id=4374, uuid={163EDE34-974C-42be-93A3-DC32CCFC09F6}, since=null, name=rangeC, alias=, stereotype=, visibility=public, txtDescription='Configuration for 'range'.', htmlDescription='

Configuration for 'range'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2194, _eaTypeName=RangeConfig_CF_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@77a1ed]. +2024-09-08 15:11:36,261 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCAnalogueInfo::CMV, _objData=UmlObjectData [id=4375, uuid={64C3ECAC-5E57-4cbe-8469-96F13ACDF920}, since=null, name=rangeAngC, alias=, stereotype=, visibility=public, txtDescription='Configuration for 'rangeAng'.', htmlDescription='

Configuration for 'rangeAng'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2194, _eaTypeName=RangeConfig_CF_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@77a1ed]. +2024-09-08 15:11:36,261 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCAnalogueInfo::HWYE, _objData=UmlObjectData [id=4405, uuid={3BE5F231-7684-425e-A062-905D40593DE8}, since=null, name=phsAHar, alias=, stereotype=, visibility=public, txtDescription='Array of harmonic and subharmonics, or interharmonic values related to phase A.', htmlDescription='

Array of harmonic and subharmonics, or interharmonic values related to phase A.

'], _isConst=false, _isStatic=false, _multiplicity=[1..*], _initValue=, _eaTypeId=2266, _eaTypeName=CMV, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@ec1f8, 2 _constraints[ConstraintBuilder [_objData=UmlObjectData [id=1640, uuid=2d5f2699-414e-322c-ac9b-12faab7bf7a1, since=null, name=maxIdx, alias=, stereotype=, visibility=public, txtDescription='numHar', htmlDescription='

numHar

'], _containingAttribute=phsAHar, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=numHar], ConstraintBuilder [_objData=UmlObjectData [id=1641, uuid=9681cda7-090b-3bd8-acfe-51a75f594dfa, since=null, name=minIdx, alias=, stereotype=, visibility=public, txtDescription='0', htmlDescription='

0

'], _containingAttribute=phsAHar, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=0]]]. +2024-09-08 15:11:36,261 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCAnalogueInfo::HWYE, _objData=UmlObjectData [id=4411, uuid={E41EFDD0-9E50-45f3-B665-D9884218AC67}, since=null, name=angRef, alias=, stereotype=, visibility=public, txtDescription='Angle reference, indicating the quantity that is used as reference for the phase angles {'phsAHar', 'phsBHar', 'phsCHar', 'neutHar', 'netHar', 'resHar'}[i].ang', instead of their own 'angRef'. For the indicated quantity, the fundamental frequency (index = 1) is used as reference by convention.', htmlDescription='

Angle reference, indicating the quantity that is used as reference for the phase angles {'phsAHar', 'phsBHar', 'phsCHar', 'neutHar', 'netHar', 'resHar'}[i].ang', instead of their own 'angRef'. For the indicated quantity, the fundamental frequency (index = 1) is used as reference by convention.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2183, _eaTypeName=PhaseAngleReference_CF_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1a794e5, 1_taggedValues{moveAfter=evalTm}]. +2024-09-08 15:11:36,261 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCControl::ControllableCDC, _objData=UmlObjectData [id=4417, uuid={47B971C5-D6FE-4d4d-A1B9-DAD685D360FE}, since=null, name=opOk, alias=, stereotype=, visibility=public, txtDescription='True indicates that an operate command for a controllable data object has been evaluated and accepted.', htmlDescription='

True indicates that an operate command for a controllable data object has been evaluated and accepted.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2125, _eaTypeName=BOOLEAN_OR_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1afc369]. +2024-09-08 15:11:36,261 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCControl::ENC, _objData=UmlObjectData [id=4463, uuid={9C28209D-6C12-48ff-B6AD-C1817BAAFC47}, since=null, name=stVal, alias=, stereotype=, visibility=public, txtDescription='Status data value.', htmlDescription='

Status data value.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2148, _eaTypeName=EnumDA_ST_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@beb599]. +2024-09-08 15:11:36,261 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCControl::ENC, _objData=UmlObjectData [id=4467, uuid={938DEDD5-1A89-4d8f-84B9-3BD409127DC1}, since=null, name=subVal, alias=, stereotype=, visibility=public, txtDescription='Value used to substitute 'stVal'.', htmlDescription='

Value used to substitute 'stVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2150, _eaTypeName=EnumDA_SV, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a068d1, 1_taggedValues{moveAfter=subEna}]. +2024-09-08 15:11:36,262 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCControl::ENC, _objData=UmlObjectData [id=4472, uuid={3AE4A32F-B7CE-4d34-96B9-72D29B257EC1}, since=null, name=ctlVal, alias=, stereotype=, visibility=public, txtDescription='Service parameter that determines the control activity, containing the new value for 'stVal'.', htmlDescription='

Service parameter that determines the control activity, containing the new value for 'stVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1855, _eaTypeName=EnumDA, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1baf4f0]. +2024-09-08 15:11:36,262 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCControl::BAC, _objData=UmlObjectData [id=4522, uuid={88F3132A-BE85-476d-A4AB-2F929A4B1EBA}, since=null, name=mxVal, alias=, stereotype=, visibility=public, txtDescription='See 'APC.mxVal'.', htmlDescription='

See 'APC.mxVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2116, _eaTypeName=AnalogueValue_MX_dchg, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@c7b4de]. +2024-09-08 15:11:36,262 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCControl::BAC, _objData=UmlObjectData [id=4538, uuid={0E7EE54F-A469-4769-AB77-ECC48A74EF0E}, since=null, name=ctlVal, alias=, stereotype=, visibility=public, txtDescription='Service parameter that determines the control activity, containing the desired change for 'mxVal'. If 'persistent'=false, 'ctlVal'='higher'|'lower' refers to one step in 'mxVal'.', htmlDescription='

Service parameter that determines the control activity, containing the desired change for 'mxVal'. If 'persistent'=false, 'ctlVal'='higher'|'lower' refers to one step in 'mxVal'.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=1760, _eaTypeName=BsControl, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@19afc07]. +2024-09-08 15:11:36,262 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCDescription::LPL, _objData=UmlObjectData [id=4639, uuid={5F84B791-8DB9-403b-B63E-B8E33716E74A}, since=null, name=ldNs, alias=, stereotype=, visibility=public, txtDescription='Logical device name space. Scope of the standard specified with the attribute is LN class definition (CDC definition by reference), for example "IEC 61850-7-4:2010". For details see IEC 61850-7-1.', htmlDescription='

Logical device name space. Scope of the standard specified with the attribute is LN class definition (CDC definition by reference), for example "IEC 61850-7-4:2010". For details see IEC 61850-7-1.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2217, _eaTypeName=VISIBLE_STRING255_EX, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@176dcec]. +2024-09-08 15:11:36,262 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=CDCDescription::LPL, _objData=UmlObjectData [id=4640, uuid={AAD5655E-83DF-4906-9302-14396644A3AF}, since=null, name=lnNs, alias=, stereotype=, visibility=public, txtDescription='Logical node name space. Scope of the standard specified with the attribute is LN class definition (CDC definition by reference). For details see IEC 61850-7-1.', htmlDescription='

Logical node name space. Scope of the standard specified with the attribute is LN class definition (CDC definition by reference). For details see IEC 61850-7-1.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2217, _eaTypeName=VISIBLE_STRING255_EX, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@176dcec]. +2024-09-08 15:11:36,262 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=DerivedDAs::BehaviourMode, _objData=UmlObjectData [id=5360, uuid={9ADCD45E-59E9-45ab-AC04-7BCAD34EE103}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2564, _eaTypeName=BehaviourModeKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@b48321]. +2024-09-08 15:11:36,262 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=DerivedDAs::CalcMethod, _objData=UmlObjectData [id=5363, uuid={5FCE2C6C-5EFA-4fe3-88D2-F747922B4960}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2567, _eaTypeName=CalcMethodKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@267862]. +2024-09-08 15:11:36,262 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=DerivedDAs::Health, _objData=UmlObjectData [id=5372, uuid={D08C43FA-8B3B-4128-AC21-F8A40BC57CE0}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2568, _eaTypeName=HealthKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1248c21]. +2024-09-08 15:11:36,262 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LogicalNodes::DomainLN, _objData=UmlObjectData [id=5404, uuid={BD8EED96-B614-4741-BE24-E8A509A772CF}, since=null, name=NamPlt, alias=, stereotype=, visibility=public, txtDescription='Name plate of the logical node.', htmlDescription='

Name plate of the logical node.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2314, _eaTypeName=LPL, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@14c508a]. +2024-09-08 15:11:36,262 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LogicalNodes::DomainLN, _objData=UmlObjectData [id=5406, uuid={02A6EFA0-CD2A-44ed-99B7-4440CDC49598}, since=null, name=Health, alias=, stereotype=, visibility=public, txtDescription=''Health.stVal' reflects the state of the logical node related hardware and software. More detailed information related to the source of the problem may be provided by specific attribute of the logical node.', htmlDescription='

'Health.stVal' reflects the state of the logical node related hardware and software. More detailed information related to the source of the problem may be provided by specific attribute of the logical node.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2712, _eaTypeName=ENSHealth, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1e202ad]. +2024-09-08 15:11:36,262 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LogicalNodes::DomainLN, _objData=UmlObjectData [id=5408, uuid={F3F9E7F6-D65F-49b8-A25D-A6D5B8129BB1}, since=null, name=Mod, alias=, stereotype=, visibility=public, txtDescription=''DomainLN.Mod.ctlVal' is used by operator to initiate the change in the operating mode of the domain logical node. The resulting operating mode is 'DomainLN.Mod.stVal'. Processing of the quality status (q) of the received data is the prerequisite for correct interpretation of 'DomainLN.Mod.stVal'. See statechart diagram 'DomainLN.behStateMachine'.', htmlDescription='

'DomainLN.Mod.ctlVal' is used by operator to initiate the change in the operating mode of the domain logical node. The resulting operating mode is 'DomainLN.Mod.stVal'. Processing of the quality status (q) of the received data is the prerequisite for correct interpretation of 'DomainLN.Mod.stVal'. See statechart diagram 'DomainLN.behStateMachine'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2673, _eaTypeName=ENCBehaviourMode, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@72da34]. +2024-09-08 15:11:36,262 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LogicalNodes::DomainLN, _objData=UmlObjectData [id=6644, uuid={7D68988B-2556-4fad-AF56-2801E5AB7EE7}, since=null, name=CntRs, alias=, stereotype=, visibility=public, txtDescription='Dumb DO, of type CMV for testing inheriting statistics-derived presence conditions.', htmlDescription='

Dumb DO, of type CMV for testing inheriting statistics-derived presence conditions.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2266, _eaTypeName=CMV, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@ec1f8]. +2024-09-08 15:11:36,263 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LogicalNodes::StatisticsLN, _objData=UmlObjectData [id=5411, uuid={AD8AD979-4412-496c-88CF-BC2F0016F824}, since=null, name=ClcExp, alias=, stereotype=, visibility=public, txtDescription='If 'ClcExp.stVal=true', the calculation period of a statistical logical node has expired.', htmlDescription='

If 'ClcExp.stVal=true', the calculation period of a statistical logical node has expired.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2721, _eaTypeName=SPSTransient, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@10c2d26]. +2024-09-08 15:11:36,263 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LogicalNodes::StatisticsLN, _objData=UmlObjectData [id=5413, uuid={1FE86953-F8BC-4e0b-A301-DD037C26CD2D}, since=null, name=ClcMth, alias=, stereotype=, visibility=public, txtDescription=''ClcMth.setVal' is the kind of statistical calculation, specifying how the data attributes that represent analogue values have been calculated. The calculation method shall be the same for all data objects of the logical node instance. +If the value is 'PEAK_FUNDAMENTAL', angle may be present in a data object of complex measured value type (CMV, such as in WYE, DEL, etc.), otherwise angle is not used (if ‘TRUE_RMS’ and ‘RMS_FUNDAMENTAL’). +The dependent data objects may be meaningless in case the value of 'ClcMth' is 'unspecified'.', htmlDescription='

'ClcMth.setVal' is the kind of statistical calculation, specifying how the data attributes that represent analogue values have been calculated. The calculation method shall be the same for all data objects of the logical node instance.

If the value is 'PEAK_FUNDAMENTAL', angle may be present in a data object of complex measured value type (CMV, such as in WYE, DEL, etc.), otherwise angle is not used (if ‘TRUE_RMS’ and ‘RMS_FUNDAMENTAL’).

The dependent data objects may be meaningless in case the value of 'ClcMth' is 'unspecified'.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2677, _eaTypeName=ENGCalcMethod, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1147d0]. +2024-09-08 15:11:36,263 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LogicalNodes::EquipmentInterfaceLN, _objData=UmlObjectData [id=5423, uuid={9D014151-D573-4c4e-A898-CE2DA3B5BBBA}, since=null, name=EEHealthAlmClc, alias=, stereotype=, visibility=public, txtDescription='(too long name) State of external (electrical, mechanical or communication) equipment to which the logical node is associated.', htmlDescription='

(too long name) State of external (electrical, mechanical or communication) equipment to which the logical node is associated.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2712, _eaTypeName=ENSHealth, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1e202ad]. +2024-09-08 15:11:36,263 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupL::KXYZ, _objData=UmlObjectData [id=6643, uuid={5F6F358B-D118-4f13-B9C6-A2B2F099FAAD}, since=null, name=TotW, alias=, stereotype=, visibility=public, txtDescription=''TotW.mag.f' is the total real power in a three-phase circuit [W].', htmlDescription='

'TotW.mag.f' is the total real power in a three-phase circuit [W].

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2266, _eaTypeName=CMV, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@ec1f8]. +2024-09-08 15:11:36,263 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupL::KXYZ, _objData=UmlObjectData [id=6662, uuid={14E48849-D4A8-4f20-943F-FE6D90B87DA5}, since=null, name=aDummyAlm, alias=, stereotype=, visibility=public, txtDescription='Whatever (testing lower case DO name).', htmlDescription='

Whatever (testing lower case DO name).

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2266, _eaTypeName=CMV, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@ec1f8]. +2024-09-08 15:11:36,263 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupL::KXYZ, _objData=UmlObjectData [id=6705, uuid={830D0CE1-6AF2-4651-9D80-CBB0ADE6102C}, since=null, name=WrongA, alias=, stereotype=, visibility=public, txtDescription='Misused ENS (or ENG or ENC). Use derived CDC instead.', htmlDescription='

Misused ENS (or ENG or ENC). Use derived CDC instead.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2250, _eaTypeName=ENS, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@79c292]. +2024-09-08 15:11:36,263 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupL::KXYZ, _objData=UmlObjectData [id=6706, uuid={BCF2F02E-3F65-4819-9456-55527BBD0571}, since=null, name=CorrectA, alias=, stereotype=, visibility=public, txtDescription='Correctly using derived CDC for enums.', htmlDescription='

Correctly using derived CDC for enums.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=3073, _eaTypeName=ENSEnumDA, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1c6e487]. +2024-09-08 15:11:36,263 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupL::LPHD, _objData=UmlObjectData [id=5434, uuid={2B188929-F3F0-481e-81FA-33B1F6DDFABE}, since=null, name=PhyHealth, alias=, stereotype=, visibility=public, txtDescription=''PhyHealth.stVal' reflects the state of the physical device related hardware and software.', htmlDescription='

'PhyHealth.stVal' reflects the state of the physical device related hardware and software.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2712, _eaTypeName=ENSHealth, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1e202ad]. +2024-09-08 15:11:36,263 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupL::LPHD, _objData=UmlObjectData [id=5445, uuid={33F4BBA2-6001-4f56-B6D7-7B166C646FD2}, since=null, name=RsStatAlmMthClc, alias=, stereotype=, visibility=public, txtDescription='(too long name) 'RsStat.ctlVal=true' initiates the resetting of the IED statistics.', htmlDescription='

(too long name) 'RsStat.ctlVal=true' initiates the resetting of the IED statistics.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2720, _eaTypeName=SPCTransient, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@185cb26]. +2024-09-08 15:11:36,263 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupL::LPHD, _objData=UmlObjectData [id=6704, uuid={F8B2B570-FB4D-461e-AFBB-76B285FC176A}, since=null, name=StatAlmMthClc, alias=, stereotype=, visibility=public, txtDescription='(too long name) 'RsStat.ctlVal=true' initiates the resetting of the IED statistics.', htmlDescription='

(too long name) 'RsStat.ctlVal=true' initiates the resetting of the IED statistics.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2721, _eaTypeName=SPSTransient, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@10c2d26]. +2024-09-08 15:11:36,263 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupL::LLN0, _objData=UmlObjectData [id=5447, uuid={ABAE4652-FBC7-4033-A5F3-F34D0A7D6805}, since=null, name=NamPlt, alias=, stereotype=, visibility=public, txtDescription='Name plate of the logical device.', htmlDescription='

Name plate of the logical device.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2314, _eaTypeName=LPL, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@14c508a]. +2024-09-08 15:11:36,263 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupL::LLN0, _objData=UmlObjectData [id=5448, uuid={757A91B5-C931-43d4-8660-F0918821C72E}, since=null, name=Beh, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2707, _eaTypeName=ENSBehaviourMode, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@c4711c]. +2024-09-08 15:11:36,263 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupL::LLN0, _objData=UmlObjectData [id=5449, uuid={9D65803B-3C9E-4491-B2F7-46597B3A2963}, since=null, name=Health, alias=, stereotype=, visibility=public, txtDescription=''Health.stVal' reflects the state of the logical device related hardware and software. It is derived from the worst (most critical) value of the health attribute of all the domain logical nodes contained in the logical device: 'Health.stVal' = max('DomainLN[i].Health.stVal').', htmlDescription='

'Health.stVal' reflects the state of the logical device related hardware and software. It is derived from the worst (most critical) value of the health attribute of all the domain logical nodes contained in the logical device: 'Health.stVal' = max('DomainLN[i].Health.stVal').

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2712, _eaTypeName=ENSHealth, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1e202ad]. +2024-09-08 15:11:36,263 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupC::CALH, _objData=UmlObjectData [id=5599, uuid={1D7F87B8-C884-44eb-9055-53ED045B2C1C}, since=null, name=GrAlm, alias=, stereotype=, visibility=public, txtDescription='If 'GrAlm.stVal=true', a new group alarm has been activated by one of individual alarms. Group alarm summarises different alarms, as assigned via configuration.', htmlDescription='

If 'GrAlm.stVal=true', a new group alarm has been activated by one of individual alarms. Group alarm summarises different alarms, as assigned via configuration.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2248, _eaTypeName=DPS, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@172ed45]. +2024-09-08 15:11:36,263 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupC::CALH, _objData=UmlObjectData [id=5600, uuid={0C2C7397-C0B9-4d43-8E0B-31F71AA4EA5A}, since=null, name=GrWrn, alias=, stereotype=, visibility=public, txtDescription='If 'GrWrn.stVal=true', a new group warning has been activated by one of individual warnings. Group warning summarises different warnings, as assigned via configuration.', htmlDescription='

If 'GrWrn.stVal=true', a new group warning has been activated by one of individual warnings. Group warning summarises different warnings, as assigned via configuration.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2248, _eaTypeName=DPS, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@172ed45]. +2024-09-08 15:11:36,263 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupC::CALH, _objData=UmlObjectData [id=6657, uuid={E31E67B3-BB2E-4eca-8A24-56CB50965FEF}, since=null, name=ModBeh, alias=, stereotype=, visibility=public, txtDescription='If 'GrWrn.stVal=true', a new group warning has been activated by one of individual warnings. Group warning summarises different warnings, as assigned via configuration.', htmlDescription='

If 'GrWrn.stVal=true', a new group warning has been activated by one of individual warnings. Group warning summarises different warnings, as assigned via configuration.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=3039, _eaTypeName=ERYBehaviourMode, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@6044d7]. +2024-09-08 15:11:36,263 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupG::GGIO, _objData=UmlObjectData [id=5775, uuid={870B8E8E-1CE1-48a5-B4DF-5EDF733EF7FD}, since=null, name=EEHealth, alias=, stereotype=, visibility=public, txtDescription=''EEHealth.stVal' reflects the state of external (primary) equipment to which the logical node is associated.', htmlDescription='

'EEHealth.stVal' reflects the state of external (primary) equipment to which the logical node is associated.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2712, _eaTypeName=ENSHealth, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1e202ad]. +2024-09-08 15:11:36,263 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupG::GGIO, _objData=UmlObjectData [id=5782, uuid={A3049550-4E72-4228-8BD0-D2ECA1D9305C}, since=null, name=AnIn, alias=, stereotype=, visibility=public, txtDescription=''AnIn.mag.f' is the generic analogue input n.', htmlDescription='

'AnIn.mag.f' is the generic analogue input n.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2266, _eaTypeName=CMV, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@ec1f8]. +2024-09-08 15:11:36,263 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupM::MMXU, _objData=UmlObjectData [id=6036, uuid={AB0A2202-6CAE-4f4c-9ADE-E1367D015FD1}, since=null, name=TotW, alias=, stereotype=, visibility=public, txtDescription=''TotW.mag.f' is the total real power in a three-phase circuit [W].', htmlDescription='

'TotW.mag.f' is the total real power in a three-phase circuit [W].

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2266, _eaTypeName=CMV, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@ec1f8]. +2024-09-08 15:11:36,263 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupM::MMXU, _objData=UmlObjectData [id=6044, uuid={70F20DF1-D205-419a-A546-B00A930F4EF1}, since=null, name=A, alias=, stereotype=, visibility=public, txtDescription=''A' holds the currents for three phases.', htmlDescription='

'A' holds the currents for three phases.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2273, _eaTypeName=HWYE, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1445d7f]. +2024-09-08 15:11:36,263 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupM::MMXU, _objData=UmlObjectData [id=6645, uuid={4261E17B-01F7-4d5c-AD2B-D01366C474C1}, since=null, name=Desc, alias=, stereotype=, visibility=public, txtDescription='Dummy native DO of non-statistical type.', htmlDescription='

Dummy native DO of non-statistical type.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2255, _eaTypeName=HST, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1a947fe]. +2024-09-08 15:11:36,263 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupP::PDIF, _objData=UmlObjectData [id=6139, uuid={6EDDE740-6CB2-49bd-B85C-F85BBC4D3339}, since=null, name=Str, alias=, stereotype=, visibility=public, txtDescription='If 'Str.general=true', a fault has been detected.', htmlDescription='

If 'Str.general=true', a fault has been detected.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2252, _eaTypeName=ACD, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1359ed8]. +2024-09-08 15:11:36,263 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupP::PDIF, _objData=UmlObjectData [id=6140, uuid={83CA9289-614E-43d2-B931-EDAA62BA0C42}, since=null, name=Op, alias=, stereotype=, visibility=public, txtDescription='If 'Op.general=true', the function decided to trip. The trip itself is issued by PTRC.', htmlDescription='

If 'Op.general=true', the function decided to trip. The trip itself is issued by PTRC.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2671, _eaTypeName=ACTTransient, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@16be40f]. +2024-09-08 15:11:36,264 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupP::PDIS, _objData=UmlObjectData [id=6156, uuid={0D273A67-FAF9-482f-8CB2-72A7096B42D7}, since=null, name=Str, alias=, stereotype=, visibility=public, txtDescription='If 'Str.general=true', a distance fault has been detected.', htmlDescription='

If 'Str.general=true', a distance fault has been detected.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2252, _eaTypeName=ACD, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1359ed8]. +2024-09-08 15:11:36,264 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupP::PDIS, _objData=UmlObjectData [id=6157, uuid={6F969465-C33F-4910-868B-353A7D2C9A2D}, since=null, name=Op, alias=, stereotype=, visibility=public, txtDescription='If 'Op.general=true', the function decided to trip due to distance fault. The trip itself is issued by PTRC.', htmlDescription='

If 'Op.general=true', the function decided to trip due to distance fault. The trip itself is issued by PTRC.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2671, _eaTypeName=ACTTransient, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@16be40f]. +2024-09-08 15:11:36,264 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupR::RDIR, _objData=UmlObjectData [id=6339, uuid={969DA200-CE87-48c0-9C84-E86508A81D4B}, since=null, name=Dir, alias=, stereotype=, visibility=public, txtDescription='If 'Dir.general=true', a fault has been detected. 'Dir.dirGeneral' is the direction of the fault.', htmlDescription='

If 'Dir.general=true', a fault has been detected. 'Dir.dirGeneral' is the direction of the fault.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=2252, _eaTypeName=ACD, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1359ed8]. +2024-09-08 15:11:36,264 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupR::RDIR, _objData=UmlObjectData [id=6658, uuid={FD102340-AB93-4aec-A54A-6DA7F5AC4487}, since=null, name=TotW, alias=, stereotype=, visibility=public, txtDescription=''TotW.mag.f' is the total real power in a three-phase circuit [W].', htmlDescription='

'TotW.mag.f' is the total real power in a three-phase circuit [W].

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2721, _eaTypeName=SPSTransient, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@10c2d26]. +2024-09-08 15:11:36,264 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupZ::ZAXN, _objData=UmlObjectData [id=6638, uuid={1BB69D0F-6A5C-42a9-BA05-66201FD25912}, since=null, name=Vol, alias=, stereotype=, visibility=public, txtDescription=''Vol.mag.f' is the non-phase-related or DC voltage of the auxiliary network.', htmlDescription='

'Vol.mag.f' is the non-phase-related or DC voltage of the auxiliary network.

'], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=2266, _eaTypeName=CMV, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@ec1f8]. +2024-09-08 15:11:36,264 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupZ::ZAXN, _objData=UmlObjectData [id=6691, uuid={D79127BE-EF55-4d56-A80C-A80263BAFAE0}, since=null, name=Mat, alias=, stereotype=, visibility=public, txtDescription='For testing usage of class from other namespace.', htmlDescription='

For testing usage of class from other namespace.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=3060, _eaTypeName=ENSMaterial, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1be656f]. +2024-09-08 15:11:36,264 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupZ::ZAXN, _objData=UmlObjectData [id=6692, uuid={F095BA66-9343-47d5-9E9E-D3A6CD6DCAE2}, since=null, name=MatCtl, alias=, stereotype=, visibility=public, txtDescription='One more, for testing usage of class from other namespace.', htmlDescription='

One more, for testing usage of class from other namespace.

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=3059, _eaTypeName=ENCMaterial, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1dc67c2]. +2024-09-08 15:11:36,264 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=LNGroupZ::ZAXN, _objData=UmlObjectData [id=6693, uuid={95F61B3E-0763-4162-AD6C-4769946A79EC}, since=null, name=Oth, alias=, stereotype=, visibility=public, txtDescription='One more, for testing usage of class from other namespace and also underlying type (where initially 'val' defined as public).', htmlDescription='

One more, for testing usage of class from other namespace and also underlying type (where initially 'val' defined as public).

'], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=3062, _eaTypeName=ENSOther, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1af3c0]. +2024-09-08 15:11:36,264 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=DerivedDAs_7_420::Material, _objData=UmlObjectData [id=6689, uuid={47188E9E-FFB6-4e55-A604-306AF82D676C}, since=null, name=val, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=3053, _eaTypeName=MaterialKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@2bd765]. +2024-09-08 15:11:36,264 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=DerivedDAs_7_420::Material_control, _objData=UmlObjectData [id=6713, uuid={6C2F0C32-0A2D-4e50-AAC2-A5830B1AB795}, since=null, name=ctlVal, alias=, stereotype=, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=3087, _eaTypeName=MaterialTransitionKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a2da20]. +2024-09-08 15:11:36,264 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=DerivedDAs_7_420::Other, _objData=UmlObjectData [id=6690, uuid={F04B56ED-9BE4-4ac4-8482-893675D15119}, since=null, name=val, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=3054, _eaTypeName=OtherKind, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@11bdc27]. +2024-09-08 15:11:36,264 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Ext1::Apple, _objData=UmlObjectData [id=3286, uuid={A7C8D399-77B9-43bf-81E0-5CD276C86FE6}, since=null, name=shouldNotBeEnum, alias=, stereotype=enum, visibility=private, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[1..1], _initValue=, _eaTypeId=610, _eaTypeName=Integer, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@a035a0]. +2024-09-08 15:11:36,264 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Ext1::Pear, _objData=UmlObjectData [id=3287, uuid={6AE12819-CBFF-4c5c-A47A-AA188AD4F76C}, since=null, name=typeIsInformative, alias=, stereotype=European, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=1532, _eaTypeName=SomeSimpleType, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1c1a03d]. +2024-09-08 15:11:36,264 [main] TRACE AttributeBuilder - Type set for AttributeBuilder [_containingClass=Package with space::My class, _objData=UmlObjectData [id=3304, uuid={612A61C0-C06B-425e-A24C-2581B6D63928}, since=null, name=_attr, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _isConst=false, _isStatic=false, _multiplicity=[0..1], _initValue=, _eaTypeId=640, _eaTypeName=AbsoluteDateTime, _isLiteral=false, _isTypeSuperfluous=false, _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@74868d, 1 _constraints[ConstraintBuilder [_objData=UmlObjectData [id=2061, uuid=7d2d346d-0f9c-3a65-93d3-09e5415a6f1d, since=null, name= attr-constraint, alias=, stereotype=, visibility=public, txtDescription='lala', htmlDescription='

lala

'], _containingAttribute=_attr, _kind=ATTR_MIN_MAX, _attrNames=null, _condition=lala]]]. +2024-09-08 15:11:36,264 [main] INFO EaModelBuilder - assigning type for operations' parameters and exceptions ... +2024-09-08 15:11:36,265 [main] TRACE ParameterBuilder - Found type 'BasePower' for array param of operation PowerSystemResource.GetWhatevers. +2024-09-08 15:11:36,265 [main] TRACE ParameterBuilder - Type set for parameter ParameterBuilder [_containingOperation=GetWhatevers, _position=0, _kind=ARRAY, _objData=UmlObjectData [id=262, uuid={D8176E9D-04E7-4fae-871C-213740261833}, since=null, name=multiples, alias=parAlias, stereotype=parStereo1, parStereo2, visibility=public, txtDescription='Doc is present (but does not end with ".")', htmlDescription='

Doc is present (but does not end with ".")

'], _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@124411f, _eaTypeName=BasePower[], _eaTypeIdAsString=0]. +2024-09-08 15:11:36,265 [main] TRACE ParameterBuilder - Type set for parameter ParameterBuilder [_containingOperation=setSomething, _position=0, _kind=SIMPLE, _objData=UmlObjectData [id=264, uuid={568C59BD-0A22-4219-A56C-793C82CCD0B3}, since=null, name=name, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@e6aa2, _eaTypeName=String, _eaTypeIdAsString=637]. +2024-09-08 15:11:36,265 [main] TRACE OperationBuilder - Found type 'Unit' for exception of operation PowerSystemResource.setSomething. +2024-09-08 15:11:36,265 [main] TRACE ParameterBuilder - Type set for parameter ParameterBuilder [_containingOperation=foo, _position=1, _kind=SIMPLE, _objData=UmlObjectData [id=267, uuid={6BD64A42-70E1-49ed-8B76-8D80ECDB74DD}, since=null, name=par2, alias=, stereotype=deprecated, visibility=public, txtDescription='Doc OK.', htmlDescription='

Doc OK.

'], _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@190a65e, _eaTypeName=float, _eaTypeIdAsString=615]. +2024-09-08 15:11:36,265 [main] TRACE ParameterBuilder - Type set for parameter ParameterBuilder [_containingOperation=bar, _position=1, _kind=SIMPLE, _objData=UmlObjectData [id=271, uuid={E8047328-87C3-481b-998B-FBFFE7B4CFD0}, since=null, name=par2, alias=, stereotype=, visibility=public, txtDescription='starting with lower case, missing "." at the end', htmlDescription='

starting with lower case, missing "." at the end

'], _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@190a65e, _eaTypeName=float, _eaTypeIdAsString=615]. +2024-09-08 15:11:36,265 [main] TRACE OperationBuilder - Found type 'Voltage' for return parameter of operation VoltageLevel.getVoltage. +2024-09-08 15:11:36,265 [main] TRACE OperationBuilder - Return type set for OperationBuilder [_containingClass=VoltageLevel, _objData=UmlObjectData [id=3, uuid={4334506A-A0EC-4e66-AD2B-2DBEBB2B1561}, since=null, name=getVoltage, alias=, stereotype=, visibility=public, txtDescription='Third and last dumb operation for doc generation testing.', htmlDescription='

Third and last dumb operation for doc generation testing.

'], _abstract=false, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@150c158, _eaReturnTypeId=602, _eaReturnTypeName=Voltage]. +2024-09-08 15:11:36,265 [main] TRACE OperationBuilder - Found type 'AttrValueKind' for return parameter of operation AttrValue.getType. +2024-09-08 15:11:36,265 [main] TRACE OperationBuilder - Return type set for OperationBuilder [_containingClass=AttrValue, _objData=UmlObjectData [id=7, uuid={AE278709-6801-41ab-B747-96509456D69B}, since=null, name=getType, alias=, stereotype=, visibility=public, txtDescription='Returns the type of this value.', htmlDescription='

Returns the type of this value.

'], _abstract=true, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@164985f, _eaReturnTypeId=1714, _eaReturnTypeName=AttrValueKind]. +2024-09-08 15:11:36,265 [main] TRACE OperationBuilder - Found type 'FCDAReference' for return parameter of operation AttrDefinition.getFcdaRef. +2024-09-08 15:11:36,265 [main] TRACE OperationBuilder - Return type set for OperationBuilder [_containingClass=AttrDefinition, _objData=UmlObjectData [id=46, uuid={C67D899D-E6F2-43a4-A6F8-1ECB42761E65}, since=null, name=getFcdaRef, alias=, stereotype=, visibility=public, txtDescription='Returns attribute's FCDAReference.', htmlDescription='

Returns attribute's FCDAReference.

'], _abstract=false, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@13af739, _eaReturnTypeId=1703, _eaReturnTypeName=FCDAReference]. +2024-09-08 15:11:36,265 [main] TRACE OperationBuilder - Found type 'AttrValueKind' for return parameter of operation AttrDefinition.getValType. +2024-09-08 15:11:36,265 [main] TRACE OperationBuilder - Return type set for OperationBuilder [_containingClass=AttrDefinition, _objData=UmlObjectData [id=47, uuid={F41461CE-0224-4867-9FC5-05D412807A13}, since=null, name=getValType, alias=, stereotype=, visibility=public, txtDescription='Returns type of attribute's value.', htmlDescription='

Returns type of attribute's value.

'], _abstract=false, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@164985f, _eaReturnTypeId=1714, _eaReturnTypeName=AttrValueKind]. +2024-09-08 15:11:36,265 [main] TRACE OperationBuilder - Found type 'FCDAReference' for return parameter of operation NamedAttrValue.getFcdaRef. +2024-09-08 15:11:36,266 [main] TRACE OperationBuilder - Return type set for OperationBuilder [_containingClass=NamedAttrValue, _objData=UmlObjectData [id=48, uuid={129BA9AB-F84D-4f61-863F-E9AD33EC1D36}, since=null, name=getFcdaRef, alias=, stereotype=, visibility=public, txtDescription='Returns attribute's FCDAReference.', htmlDescription='

Returns attribute's FCDAReference.

'], _abstract=false, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@13af739, _eaReturnTypeId=1703, _eaReturnTypeName=FCDAReference]. +2024-09-08 15:11:36,266 [main] TRACE OperationBuilder - Found type 'AttrValue' for return parameter of operation NamedAttrValue.getVal. +2024-09-08 15:11:36,266 [main] TRACE OperationBuilder - Return type set for OperationBuilder [_containingClass=NamedAttrValue, _objData=UmlObjectData [id=49, uuid={91C84065-1E39-4d4a-8927-B426FCFEB686}, since=null, name=getVal, alias=, stereotype=, visibility=public, txtDescription='Returns attribute's value.', htmlDescription='

Returns attribute's value.

'], _abstract=false, _static=false, _final=false, _kind=OP_RET_SIMPLE, _returnType=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1fe3806, _eaReturnTypeId=1715, _eaReturnTypeName=AttrValue]. +2024-09-08 15:11:36,266 [main] TRACE OperationBuilder - Found type 'AccessView' for return parameter of operation Authentication.getViews. +2024-09-08 15:11:36,266 [main] TRACE OperationBuilder - Return type set for OperationBuilder [_containingClass=Authentication, _objData=UmlObjectData [id=52, uuid={3DD3175C-C019-4f8a-A82F-1641C5702FFD}, since=null, name=getViews, alias=, stereotype=, visibility=public, txtDescription='', htmlDescription=''], _abstract=false, _static=false, _final=false, _kind=OP_RET_ARRAY, _returnType=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@136e4cd, _eaReturnTypeId=1774, _eaReturnTypeName=AccessView]. +2024-09-08 15:11:36,266 [main] TRACE ParameterBuilder - Type set for parameter ParameterBuilder [_containingOperation=ope-ration, _position=0, _kind=SIMPLE, _objData=UmlObjectData [id=2063, uuid={B9E929B4-3E5D-4b39-83CB-4EFAC956A019}, since=null, name=other param, alias=, stereotype=, visibility=public, txtDescription='Doc for parameter is ok.', htmlDescription='

Doc for parameter is ok.

'], _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@5185bd, _eaTypeName=Boolean, _eaTypeIdAsString=619]. +2024-09-08 15:11:36,266 [main] TRACE ParameterBuilder - Type set for parameter ParameterBuilder [_containingOperation=ope-ration, _position=1, _kind=SIMPLE, _objData=UmlObjectData [id=2064, uuid={82D97A41-4B66-40ae-ADF4-3BFA2BD0E201}, since=null, name=_par, alias=, stereotype=, visibility=public, txtDescription='doc', htmlDescription='

doc

'], _type=org.tanjakostic.jcleancim.builder.ea.db.DbClassBuilder@1bbf683, _eaTypeName=ApparentPower, _eaTypeIdAsString=616]. +2024-09-08 15:11:36,266 [main] INFO EaModelBuilder - cross-checking dependencies ... +2024-09-08 15:11:36,266 [main] INFO EaModelBuilder - cross-checking associations ... +2024-09-08 15:11:36,267 [main] INFO Util - time=[0:00:00.024] linked builders. +2024-09-08 15:11:36,267 [main] INFO Util - +2024-09-08 15:11:36,268 [main] INFO Util - +2024-09-08 15:11:36,268 [main] INFO Util - ------------------------------------------------ +2024-09-08 15:11:36,268 [main] INFO Util - creating in-memory model and exporting normative diagrams... +2024-09-08 15:11:37,685 [main] TRACE UmlPackage - ---- created null model package NullCIM +2024-09-08 15:11:37,697 [main] TRACE UmlClass - created (2081) OTHER_CIM CIM null CIM class NullCIM::NullCIM +2024-09-08 15:11:37,697 [main] TRACE UmlPackage - ---- created null model package NullIEC61850 +2024-09-08 15:11:37,698 [main] TRACE UmlClass - created (2085) OTHER_IEC61850 IEC61850 null 61850 class NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,698 [main] INFO EaModelBuilder - creating in-memory package structure ... +2024-09-08 15:11:37,698 [main] TRACE UmlPackage - ---- created model package TC57CIMProfiles +2024-09-08 15:11:37,715 [main] TRACE UmlDiagram - created (332) OTHER_CIM CIM package TC57CIMProfiles::TC57CIMProfiles +2024-09-08 15:11:37,715 [main] TRACE UmlPackage - ---- created model package TC57CIM +2024-09-08 15:11:37,715 [main] TRACE UmlDiagram - created (1) OTHER_CIM CIM class <> TC57CIM::Main +2024-09-08 15:11:37,715 [main] TRACE UmlPackage - ---- created top package Informative +2024-09-08 15:11:37,715 [main] TRACE UmlDiagram - created (171) OTHER_CIM CIM INF class Informative::Informative +2024-09-08 15:11:37,715 [main] TRACE UmlPackage - ---- created top package IEC61970 +2024-09-08 15:11:37,722 [main] TRACE UmlSkipped - created (1497) WG13 CIM state IEC61970::StateInPackage +2024-09-08 15:11:37,722 [main] TRACE UmlDiagram - created (111) WG13 CIM class IEC61970::Main +2024-09-08 15:11:37,723 [main] TRACE UmlPackage - ---- created package InformativeAndPrivate +2024-09-08 15:11:37,723 [main] TRACE UmlSkipped - created (2102) WG13 CIM INF other InformativeAndPrivate:: - Package 'Other' - Package 'Other' +2024-09-08 15:11:37,723 [main] TRACE UmlDiagram - created (157) WG13 CIM INF class InformativeAndPrivate::Informative +2024-09-08 15:11:37,723 [main] TRACE UmlPackage - ---- created package DocIEC61970 +2024-09-08 15:11:37,723 [main] TRACE UmlSkipped - created (3028) WG13 CIM INF note DocIEC61970:: +2024-09-08 15:11:37,723 [main] TRACE UmlDiagram - created (321) WG13 CIM INF class DocIEC61970::MyDocFigure +2024-09-08 15:11:37,723 [main] TRACE UmlPackage - ---- created package Domain +2024-09-08 15:11:37,723 [main] TRACE UmlDiagram - created (119) WG13 CIM class <> Domain::BasicDatatypes +2024-09-08 15:11:37,723 [main] TRACE UmlDiagram - created (117) WG13 CIM class <> Domain::TimeDatatypes +2024-09-08 15:11:37,723 [main] TRACE UmlPackage - ---- created package Core +2024-09-08 15:11:37,723 [main] TRACE UmlSkipped - created (3029) WG13 CIM note Core:: +2024-09-08 15:11:37,723 [main] TRACE UmlSkipped - created (3082) WG13 CIM note Core:: +2024-09-08 15:11:37,723 [main] TRACE UmlSkipped - created (3083) WG13 CIM note Core:: +2024-09-08 15:11:37,723 [main] TRACE UmlSkipped - created (3084) WG13 CIM note Core:: +2024-09-08 15:11:37,723 [main] TRACE UmlSkipped - created (3085) WG13 CIM note Core:: +2024-09-08 15:11:37,723 [main] TRACE UmlSkipped - created (3086) WG13 CIM note Core:: +2024-09-08 15:11:37,723 [main] TRACE UmlDiagram - created (153) WG13 CIM class Core::Main +2024-09-08 15:11:37,723 [main] TRACE UmlDiagram - created (155) WG13 CIM class <> Core::Ownership +2024-09-08 15:11:37,723 [main] TRACE UmlPackage - ---- created package Topology +2024-09-08 15:11:37,723 [main] TRACE UmlSkipped - created (792) WG13 CIM note Topology:: +2024-09-08 15:11:37,723 [main] TRACE UmlSkipped - created (793) WG13 CIM note Topology:: +2024-09-08 15:11:37,723 [main] TRACE UmlSkipped - created (798) WG13 CIM note Topology:: +2024-09-08 15:11:37,723 [main] TRACE UmlSkipped - created (1445) WG13 CIM note Topology:: +2024-09-08 15:11:37,723 [main] TRACE UmlSkipped - created (1446) WG13 CIM note Topology:: +2024-09-08 15:11:37,723 [main] TRACE UmlSkipped - created (1447) WG13 CIM note Topology:: +2024-09-08 15:11:37,723 [main] TRACE UmlDiagram - created (142) WG13 CIM class Topology::Main +2024-09-08 15:11:37,723 [main] TRACE UmlDiagram - created (175) WG13 CIM class Topology::DiagramWithoutComment +2024-09-08 15:11:37,723 [main] TRACE UmlPackage - ---- created package TestEnums +2024-09-08 15:11:37,723 [main] TRACE UmlSkipped - created (3046) WG13 CIM note TestEnums:: +2024-09-08 15:11:37,723 [main] TRACE UmlSkipped - created (3048) WG13 CIM note TestEnums:: +2024-09-08 15:11:37,723 [main] TRACE UmlDiagram - created (322) WG13 CIM class TestEnums::TestEnums +2024-09-08 15:11:37,723 [main] TRACE UmlPackage - ---- created top package IEC61968 +2024-09-08 15:11:37,724 [main] TRACE UmlSkipped - created (1478) WG14 CIM note IEC61968:: +2024-09-08 15:11:37,724 [main] TRACE UmlSkipped - created (1479) WG14 CIM note IEC61968:: +2024-09-08 15:11:37,724 [main] TRACE UmlSkipped - created (1499) WG14 CIM note IEC61968:: +2024-09-08 15:11:37,724 [main] TRACE UmlSkipped - created (3075) WG14 CIM note IEC61968:: +2024-09-08 15:11:37,724 [main] TRACE UmlDiagram - created (158) WG14 CIM class IEC61968::IEC61968 +2024-09-08 15:11:37,724 [main] TRACE UmlPackage - ---- created package EmbeddedExtension +2024-09-08 15:11:37,724 [main] TRACE UmlSkipped - created (3457) WG14 CIM note link EmbeddedExtension:: - Note '' - Note '' +2024-09-08 15:11:37,724 [main] TRACE UmlDiagram - created (328) WG14 CIM package EmbeddedExtension::EmbeddedExtension +2024-09-08 15:11:37,724 [main] TRACE UmlPackage - ---- created package Assets +2024-09-08 15:11:37,724 [main] TRACE UmlSkipped - created (3064) WG14 CIM other Assets::Object1 +2024-09-08 15:11:37,724 [main] TRACE UmlDiagram - created (184) WG14 CIM class Assets::Assets +2024-09-08 15:11:37,724 [main] TRACE UmlDiagram - created (326) WG14 CIM object Assets::AssetsObjDia +2024-09-08 15:11:37,724 [main] TRACE UmlPackage - ---- created package Core +2024-09-08 15:11:37,724 [main] TRACE UmlSkipped - created (2117) WG14 CIM note link Core:: - Note '' - Note '' +2024-09-08 15:11:37,724 [main] TRACE UmlPackage - ---- created package Other +2024-09-08 15:11:37,724 [main] TRACE UmlSkipped - created (2115) WG14 CIM note link Other:: - Note '' - Note '' +2024-09-08 15:11:37,724 [main] TRACE UmlPackage - ---- created package Other +2024-09-08 15:11:37,724 [main] TRACE UmlSkipped - created (2116) WG14 CIM note link Other:: - Note '' - Note '' +2024-09-08 15:11:37,724 [main] TRACE UmlSkipped - created (2102) WG14 CIM other Other:: - Package 'InformativeAndPrivate' - Package 'InformativeAndPrivate' +2024-09-08 15:11:37,724 [main] TRACE UmlSkipped - created (1473) WG14 CIM note Other:: +2024-09-08 15:11:37,724 [main] TRACE UmlSkipped - created (1475) WG14 CIM note Other:: +2024-09-08 15:11:37,724 [main] TRACE UmlSkipped - created (1483) WG14 CIM note Other:: +2024-09-08 15:11:37,724 [main] TRACE UmlSkipped - created (1484) WG14 CIM note Other:: +2024-09-08 15:11:37,724 [main] TRACE UmlSkipped - created (1498) WG14 CIM note Other:: +2024-09-08 15:11:37,724 [main] TRACE UmlDiagram - created (159) WG14 CIM class Other::Other +2024-09-08 15:11:37,724 [main] TRACE UmlPackage - ---- created top package IEC62325 +2024-09-08 15:11:37,724 [main] TRACE UmlDiagram - created (183) WG16 CIM class IEC62325::IEC62325 +2024-09-08 15:11:37,724 [main] TRACE UmlPackage - ---- created model package IEC61850Domain +2024-09-08 15:11:37,724 [main] TRACE UmlSkipped - created (3068) OTHER_IEC61850 IEC61850 note IEC61850Domain:: +2024-09-08 15:11:37,724 [main] TRACE UmlSkipped - created (3069) OTHER_IEC61850 IEC61850 note IEC61850Domain:: +2024-09-08 15:11:37,724 [main] TRACE UmlDiagram - created (160) OTHER_IEC61850 IEC61850 class IEC61850Domain::IEC61850Domain +2024-09-08 15:11:37,724 [main] TRACE UmlPackage - ---- created top package WG10 +2024-09-08 15:11:37,724 [main] TRACE UmlSkipped - created (1553) WG10 IEC61850 note WG10:: +2024-09-08 15:11:37,724 [main] TRACE UmlSkipped - created (1554) WG10 IEC61850 note WG10:: +2024-09-08 15:11:37,724 [main] TRACE UmlSkipped - created (1556) WG10 IEC61850 text WG10::Parts7 : DataModelExample +2024-09-08 15:11:37,724 [main] TRACE UmlSkipped - created (1557) WG10 IEC61850 text WG10::Text +2024-09-08 15:11:37,725 [main] TRACE UmlSkipped - created (1558) WG10 IEC61850 text WG10::Text +2024-09-08 15:11:37,725 [main] TRACE UmlSkipped - created (1559) WG10 IEC61850 text WG10::Text +2024-09-08 15:11:37,725 [main] TRACE UmlSkipped - created (1560) WG10 IEC61850 text WG10::Text +2024-09-08 15:11:37,725 [main] TRACE UmlSkipped - created (1561) WG10 IEC61850 text WG10::Text +2024-09-08 15:11:37,725 [main] TRACE UmlSkipped - created (1562) WG10 IEC61850 text WG10::Text +2024-09-08 15:11:37,725 [main] TRACE UmlSkipped - created (1563) WG10 IEC61850 text WG10::Text +2024-09-08 15:11:37,725 [main] TRACE UmlSkipped - created (1564) WG10 IEC61850 text WG10::Text +2024-09-08 15:11:37,725 [main] TRACE UmlSkipped - created (1565) WG10 IEC61850 text WG10::Text +2024-09-08 15:11:37,725 [main] TRACE UmlSkipped - created (1566) WG10 IEC61850 text WG10::Text +2024-09-08 15:11:37,725 [main] TRACE UmlSkipped - created (1567) WG10 IEC61850 text WG10::Text +2024-09-08 15:11:37,725 [main] TRACE UmlSkipped - created (1568) WG10 IEC61850 text WG10::Text +2024-09-08 15:11:37,725 [main] TRACE UmlSkipped - created (1569) WG10 IEC61850 text WG10::Text +2024-09-08 15:11:37,725 [main] TRACE UmlSkipped - created (1570) WG10 IEC61850 text WG10::IEC61850 : Parts7 +2024-09-08 15:11:37,725 [main] TRACE UmlDiagram - created (186) WG10 IEC61850 package WG10::WG10 +2024-09-08 15:11:37,725 [main] TRACE UmlDiagram - created (187) WG10 IEC61850 package WG10::Parts7 +2024-09-08 15:11:37,725 [main] TRACE UmlDiagram - created (188) WG10 IEC61850 class WG10::DataModelExample +2024-09-08 15:11:37,725 [main] TRACE UmlPackage - ---- created package NewIEC61850_7_2 +2024-09-08 15:11:37,725 [main] TRACE UmlDiagram - created (189) WG10 IEC61850 package NewIEC61850_7_2::NewIEC61850_7_2 +2024-09-08 15:11:37,725 [main] TRACE UmlPackage - ---- created package GenericModel +2024-09-08 15:11:37,725 [main] TRACE UmlSkipped - created (1573) WG10 IEC61850 note GenericModel:: +2024-09-08 15:11:37,725 [main] TRACE UmlSkipped - created (1574) WG10 IEC61850 note GenericModel:: +2024-09-08 15:11:37,725 [main] TRACE UmlSkipped - created (1575) WG10 IEC61850 note GenericModel:: +2024-09-08 15:11:37,725 [main] TRACE UmlSkipped - created (1576) WG10 IEC61850 note GenericModel:: +2024-09-08 15:11:37,725 [main] TRACE UmlSkipped - created (1577) WG10 IEC61850 note GenericModel:: +2024-09-08 15:11:37,725 [main] TRACE UmlSkipped - created (1578) WG10 IEC61850 note GenericModel:: +2024-09-08 15:11:37,725 [main] TRACE UmlSkipped - created (1579) WG10 IEC61850 note GenericModel:: +2024-09-08 15:11:37,725 [main] TRACE UmlSkipped - created (1580) WG10 IEC61850 note GenericModel:: +2024-09-08 15:11:37,725 [main] TRACE UmlSkipped - created (1581) WG10 IEC61850 note GenericModel:: +2024-09-08 15:11:37,725 [main] TRACE UmlSkipped - created (1582) WG10 IEC61850 note GenericModel:: +2024-09-08 15:11:37,725 [main] TRACE UmlSkipped - created (1583) WG10 IEC61850 note GenericModel:: +2024-09-08 15:11:37,725 [main] TRACE UmlSkipped - created (1584) WG10 IEC61850 note GenericModel:: +2024-09-08 15:11:37,725 [main] TRACE UmlSkipped - created (1618) WG10 IEC61850 other <> GenericModel:: +2024-09-08 15:11:37,725 [main] TRACE UmlSkipped - created (1619) WG10 IEC61850 other <> GenericModel:: +2024-09-08 15:11:37,725 [main] TRACE UmlSkipped - created (1620) WG10 IEC61850 other <> GenericModel:: +2024-09-08 15:11:37,725 [main] TRACE UmlSkipped - created (1621) WG10 IEC61850 other <> GenericModel:: +2024-09-08 15:11:37,725 [main] TRACE UmlDiagram - created (190) WG10 IEC61850 class GenericModel::GenericModel +2024-09-08 15:11:37,726 [main] TRACE UmlDiagram - created (191) WG10 IEC61850 class GenericModel::GenericModelTypes +2024-09-08 15:11:37,726 [main] TRACE UmlPackage - ---- created package IEC61850_7_2 +2024-09-08 15:11:37,726 [main] TRACE UmlSkipped - created (1623) WG10 IEC61850 note IEC61850_7_2:: +2024-09-08 15:11:37,726 [main] TRACE UmlSkipped - created (1624) WG10 IEC61850 note IEC61850_7_2:: +2024-09-08 15:11:37,726 [main] TRACE UmlSkipped - created (1625) WG10 IEC61850 note IEC61850_7_2:: +2024-09-08 15:11:37,726 [main] TRACE UmlSkipped - created (1627) WG10 IEC61850 text IEC61850_7_2::IEC61850_7_2 : IEC61850_7_2ModellingNotes +2024-09-08 15:11:37,726 [main] TRACE UmlDiagram - created (192) WG10 IEC61850 package IEC61850_7_2::IEC61850_7_2 +2024-09-08 15:11:37,726 [main] TRACE UmlDiagram - created (193) WG10 IEC61850 class IEC61850_7_2::IEC61850_7_2ModellingNotes +2024-09-08 15:11:37,726 [main] TRACE UmlPackage - ---- created package FunctionalConstraints +2024-09-08 15:11:37,726 [main] TRACE UmlDiagram - created (195) WG10 IEC61850 class FunctionalConstraints::FunctionalConstraints +2024-09-08 15:11:37,726 [main] TRACE UmlPackage - ---- created package TriggerOptions +2024-09-08 15:11:37,726 [main] TRACE UmlDiagram - created (196) WG10 IEC61850 class TriggerOptions::TriggerOptions +2024-09-08 15:11:37,726 [main] TRACE UmlPackage - ---- created package ACSIEnums +2024-09-08 15:11:37,726 [main] TRACE UmlDiagram - created (197) WG10 IEC61850 class ACSIEnums::ACSIEnums +2024-09-08 15:11:37,726 [main] TRACE UmlPackage - ---- created package CoreTypes +2024-09-08 15:11:37,726 [main] TRACE UmlSkipped - created (1650) WG10 IEC61850 note CoreTypes:: +2024-09-08 15:11:37,726 [main] TRACE UmlSkipped - created (1675) WG10 IEC61850 text CoreTypes::Text +2024-09-08 15:11:37,726 [main] TRACE UmlSkipped - created (1676) WG10 IEC61850 text CoreTypes::CoreTypes : CoreTypesModellingNotes +2024-09-08 15:11:37,726 [main] TRACE UmlSkipped - created (1677) WG10 IEC61850 text CoreTypes::CoreTypes :ImplementationNote-LanguageMappings +2024-09-08 15:11:37,726 [main] TRACE UmlSkipped - created (1678) WG10 IEC61850 text CoreTypes::BasicDAs :Relation between trigger conditions, applicable trigger options and reporting +2024-09-08 15:11:37,726 [main] TRACE UmlSkipped - created (1679) WG10 IEC61850 text CoreTypes::Text +2024-09-08 15:11:37,726 [main] TRACE UmlDiagram - created (198) WG10 IEC61850 class CoreTypes::CoreTypes +2024-09-08 15:11:37,726 [main] TRACE UmlPackage - ---- created package ObjectReferences +2024-09-08 15:11:37,726 [main] TRACE UmlSkipped - created (1684) WG10 IEC61850 note ObjectReferences:: +2024-09-08 15:11:37,726 [main] TRACE UmlSkipped - created (1690) WG10 IEC61850 note ObjectReferences:: +2024-09-08 15:11:37,726 [main] TRACE UmlSkipped - created (1704) WG10 IEC61850 text ObjectReferences::ObjectReferences : ObjectReferencesModellingNotes +2024-09-08 15:11:37,726 [main] TRACE UmlSkipped - created (1705) WG10 IEC61850 text ObjectReferences::ObjectReferences : ImplementationNotes-ComposedCDCs +2024-09-08 15:11:37,726 [main] TRACE UmlDiagram - created (201) WG10 IEC61850 class ObjectReferences::ObjectReferences +2024-09-08 15:11:37,726 [main] TRACE UmlPackage - ---- created package DetailedDiagrams +2024-09-08 15:11:37,726 [main] TRACE UmlSkipped - created (1707) WG10 IEC61850 INF note DetailedDiagrams:: +2024-09-08 15:11:37,726 [main] TRACE UmlDiagram - created (203) WG10 IEC61850 INF class DetailedDiagrams::ImplementationNotes-ComposedCDCs +2024-09-08 15:11:37,726 [main] TRACE UmlPackage - ---- created package AttrValues +2024-09-08 15:11:37,726 [main] TRACE UmlSkipped - created (1712) WG10 IEC61850 note AttrValues:: +2024-09-08 15:11:37,726 [main] TRACE UmlSkipped - created (1713) WG10 IEC61850 note AttrValues:: +2024-09-08 15:11:37,726 [main] TRACE UmlDiagram - created (204) WG10 IEC61850 class AttrValues::AttrValues +2024-09-08 15:11:37,726 [main] TRACE UmlPackage - ---- created package BasicDAs +2024-09-08 15:11:37,726 [main] TRACE UmlSkipped - created (1738) WG10 IEC61850 note BasicDAs:: +2024-09-08 15:11:37,726 [main] TRACE UmlSkipped - created (1739) WG10 IEC61850 note BasicDAs:: +2024-09-08 15:11:37,727 [main] TRACE UmlSkipped - created (1761) WG10 IEC61850 boundary BasicDAs:: +2024-09-08 15:11:37,727 [main] TRACE UmlSkipped - created (1762) WG10 IEC61850 text BasicDAs::ACSIEnums : ACSIEnums +2024-09-08 15:11:37,727 [main] TRACE UmlSkipped - created (1763) WG10 IEC61850 text BasicDAs::ObjectReferences : ObjectReferences +2024-09-08 15:11:37,727 [main] TRACE UmlSkipped - created (1764) WG10 IEC61850 text BasicDAs::CoreTypes : CoreTypes +2024-09-08 15:11:37,727 [main] TRACE UmlDiagram - created (205) WG10 IEC61850 class BasicDAs::BasicDAs +2024-09-08 15:11:37,727 [main] TRACE UmlPackage - ---- created package AcsiTypes +2024-09-08 15:11:37,727 [main] TRACE UmlDiagram - created (207) WG10 IEC61850 package AcsiTypes::AcsiTypes +2024-09-08 15:11:37,727 [main] TRACE UmlPackage - ---- created package CommonAcsiTypes +2024-09-08 15:11:37,727 [main] TRACE UmlSkipped - created (1768) WG10 IEC61850 note CommonAcsiTypes:: +2024-09-08 15:11:37,727 [main] TRACE UmlSkipped - created (1769) WG10 IEC61850 note CommonAcsiTypes:: +2024-09-08 15:11:37,727 [main] TRACE UmlSkipped - created (1778) WG10 IEC61850 text CommonAcsiTypes::CoreAcsi : CoreAcsi +2024-09-08 15:11:37,727 [main] TRACE UmlDiagram - created (208) WG10 IEC61850 class CommonAcsiTypes::CommonAcsiTypes +2024-09-08 15:11:37,727 [main] TRACE UmlPackage - ---- created package MetaModel +2024-09-08 15:11:37,727 [main] TRACE UmlSkipped - created (1830) WG10 IEC61850 note MetaModel:: +2024-09-08 15:11:37,727 [main] TRACE UmlSkipped - created (1831) WG10 IEC61850 note MetaModel:: +2024-09-08 15:11:37,727 [main] TRACE UmlSkipped - created (1833) WG10 IEC61850 note MetaModel:: +2024-09-08 15:11:37,727 [main] TRACE UmlSkipped - created (1834) WG10 IEC61850 note MetaModel:: +2024-09-08 15:11:37,727 [main] TRACE UmlSkipped - created (1878) WG10 IEC61850 text MetaModel::DerivedCDCs : DerivedCDCs +2024-09-08 15:11:37,727 [main] TRACE UmlSkipped - created (1879) WG10 IEC61850 text MetaModel::MetaModel :MetaModelFCsAndTrgOps +2024-09-08 15:11:37,727 [main] TRACE UmlSkipped - created (1880) WG10 IEC61850 text MetaModel::MetaModel :MetaModelNaming +2024-09-08 15:11:37,727 [main] TRACE UmlSkipped - created (1881) WG10 IEC61850 text MetaModel::LogicalNodeEnums :DOEnums-1 +2024-09-08 15:11:37,727 [main] TRACE UmlSkipped - created (1882) WG10 IEC61850 text MetaModel::BasicDAs : BasicDAs +2024-09-08 15:11:37,727 [main] TRACE UmlSkipped - created (1883) WG10 IEC61850 text MetaModel::LogicalNodes : LogicalNodes +2024-09-08 15:11:37,727 [main] TRACE UmlSkipped - created (1884) WG10 IEC61850 text MetaModel::CommonDataClasses : CommonDataClasses +2024-09-08 15:11:37,727 [main] TRACE UmlSkipped - created (1885) WG10 IEC61850 text MetaModel::IEC61850 : DataModelExample +2024-09-08 15:11:37,727 [main] TRACE UmlSkipped - created (1886) WG10 IEC61850 text MetaModel::DerivedDAs : DerivedDAs +2024-09-08 15:11:37,727 [main] TRACE UmlSkipped - created (1887) WG10 IEC61850 text MetaModel::LogicalNodeEnums :DOEnums-3 +2024-09-08 15:11:37,727 [main] TRACE UmlSkipped - created (1888) WG10 IEC61850 text MetaModel::DAEnums : DAEnums-1 +2024-09-08 15:11:37,727 [main] TRACE UmlSkipped - created (1889) WG10 IEC61850 text MetaModel::ObjectReferences : ObjectReferences +2024-09-08 15:11:37,727 [main] TRACE UmlSkipped - created (1890) WG10 IEC61850 text MetaModel::CoreTypes : CoreTypes +2024-09-08 15:11:37,727 [main] TRACE UmlSkipped - created (1891) WG10 IEC61850 text MetaModel::ConstructedDAs : ConstructedDAs +2024-09-08 15:11:37,727 [main] TRACE UmlSkipped - created (1892) WG10 IEC61850 text MetaModel::LogicalNodeEnums :DOEnums-2 +2024-09-08 15:11:37,727 [main] TRACE UmlSkipped - created (1893) WG10 IEC61850 boundary MetaModel::Data model (logical nodes, common data classes, functionally constrained data attributes and data attributes) +2024-09-08 15:11:37,727 [main] TRACE UmlSkipped - created (1894) WG10 IEC61850 text MetaModel::FCDAs : FCDAs +2024-09-08 15:11:37,727 [main] TRACE UmlSkipped - created (1895) WG10 IEC61850 text MetaModel::ImplicitDAs : ImplicitDAs +2024-09-08 15:11:37,727 [main] TRACE UmlSkipped - created (1896) WG10 IEC61850 text MetaModel::MetaModel :MetaModelDataSetsAndControlBlocks +2024-09-08 15:11:37,728 [main] TRACE UmlSkipped - created (1897) WG10 IEC61850 text MetaModel::MetaModel : MetaModelDataModel +2024-09-08 15:11:37,728 [main] TRACE UmlSkipped - created (1898) WG10 IEC61850 boundary MetaModel::Directly related to data model +2024-09-08 15:11:37,728 [main] TRACE UmlSkipped - created (1899) WG10 IEC61850 text MetaModel::MetaModel :MetaModelRelationships +2024-09-08 15:11:37,728 [main] TRACE UmlSkipped - created (1900) WG10 IEC61850 text MetaModel::DAEnums : DAEnums-2 +2024-09-08 15:11:37,728 [main] TRACE UmlDiagram - created (218) WG10 IEC61850 class MetaModel::MetaModelClasses +2024-09-08 15:11:37,728 [main] TRACE UmlDiagram - created (219) WG10 IEC61850 class MetaModel::MetaModelRelationships +2024-09-08 15:11:37,728 [main] TRACE UmlDiagram - created (220) WG10 IEC61850 class MetaModel::MetaModelNaming +2024-09-08 15:11:37,728 [main] TRACE UmlDiagram - created (217) WG10 IEC61850 class MetaModel::MetaModelDataModel +2024-09-08 15:11:37,728 [main] TRACE UmlDiagram - created (221) WG10 IEC61850 class MetaModel::MetaModelDataSetsAndControlBlocks +2024-09-08 15:11:37,728 [main] TRACE UmlPackage - ---- created package MetaModelFCsAndTrgOps +2024-09-08 15:11:37,728 [main] TRACE UmlSkipped - created (1902) WG10 IEC61850 note MetaModelFCsAndTrgOps:: +2024-09-08 15:11:37,728 [main] TRACE UmlDiagram - created (222) WG10 IEC61850 class MetaModelFCsAndTrgOps::MetaModelFCsAndTrgOps +2024-09-08 15:11:37,728 [main] TRACE UmlPackage - ---- created package CDCServiceTracking +2024-09-08 15:11:37,728 [main] TRACE UmlSkipped - created (2180) WG10 IEC61850 note link CDCServiceTracking:: - Note '' - Note '' +2024-09-08 15:11:37,728 [main] TRACE UmlSkipped - created (1993) WG10 IEC61850 note CDCServiceTracking:: +2024-09-08 15:11:37,728 [main] TRACE UmlSkipped - created (1994) WG10 IEC61850 note CDCServiceTracking:: +2024-09-08 15:11:37,728 [main] TRACE UmlDiagram - created (226) WG10 IEC61850 class CDCServiceTracking::CDCServiceTracking +2024-09-08 15:11:37,728 [main] TRACE UmlPackage - ---- created package IEC61850_7_3 +2024-09-08 15:11:37,728 [main] TRACE UmlSkipped - created (2006) WG10 IEC61850 note IEC61850_7_3:: +2024-09-08 15:11:37,728 [main] TRACE UmlDiagram - created (227) WG10 IEC61850 class IEC61850_7_3::IEC61850_7_3 +2024-09-08 15:11:37,728 [main] TRACE UmlPackage - ---- created package PresenceConditions +2024-09-08 15:11:37,728 [main] TRACE UmlSkipped - created (2205) WG10 IEC61850 note link PresenceConditions:: - Note '' - Note '' +2024-09-08 15:11:37,728 [main] TRACE UmlDiagram - created (228) WG10 IEC61850 class PresenceConditions::PresenceConditions +2024-09-08 15:11:37,728 [main] TRACE UmlPackage - ---- created package DAEnums +2024-09-08 15:11:37,728 [main] TRACE UmlSkipped - created (2015) WG10 IEC61850 note DAEnums:: +2024-09-08 15:11:37,728 [main] TRACE UmlSkipped - created (2016) WG10 IEC61850 note DAEnums:: +2024-09-08 15:11:37,728 [main] TRACE UmlSkipped - created (2021) WG10 IEC61850 note DAEnums:: +2024-09-08 15:11:37,728 [main] TRACE UmlSkipped - created (2022) WG10 IEC61850 note DAEnums:: +2024-09-08 15:11:37,728 [main] TRACE UmlDiagram - created (229) WG10 IEC61850 class DAEnums::DAEnums-1 +2024-09-08 15:11:37,728 [main] TRACE UmlPackage - ---- created package ImplicitDAs +2024-09-08 15:11:37,728 [main] TRACE UmlSkipped - created (2050) WG10 IEC61850 note ImplicitDAs:: +2024-09-08 15:11:37,728 [main] TRACE UmlSkipped - created (2073) WG10 IEC61850 text ImplicitDAs::DAEnums :DAEnums-2 +2024-09-08 15:11:37,728 [main] TRACE UmlSkipped - created (2074) WG10 IEC61850 text ImplicitDAs::DAEnums :DAEnums-1 +2024-09-08 15:11:37,728 [main] TRACE UmlDiagram - created (231) WG10 IEC61850 class ImplicitDAs::ImplicitDAs +2024-09-08 15:11:37,728 [main] TRACE UmlPackage - ---- created package ConstructedDAs +2024-09-08 15:11:37,728 [main] TRACE UmlSkipped - created (2077) WG10 IEC61850 note ConstructedDAs:: +2024-09-08 15:11:37,728 [main] TRACE UmlSkipped - created (2078) WG10 IEC61850 note ConstructedDAs:: +2024-09-08 15:11:37,729 [main] TRACE UmlSkipped - created (2102) WG10 IEC61850 text ConstructedDAs::Text +2024-09-08 15:11:37,729 [main] TRACE UmlSkipped - created (2104) WG10 IEC61850 text ConstructedDAs::Text +2024-09-08 15:11:37,729 [main] TRACE UmlSkipped - created (2105) WG10 IEC61850 text ConstructedDAs::Text +2024-09-08 15:11:37,729 [main] TRACE UmlSkipped - created (2106) WG10 IEC61850 text ConstructedDAs::ConstructedDAs : Quality.validity +2024-09-08 15:11:37,729 [main] TRACE UmlSkipped - created (2107) WG10 IEC61850 text ConstructedDAs::ConstructedDAs :Range configuration +2024-09-08 15:11:37,729 [main] TRACE UmlSkipped - created (2108) WG10 IEC61850 boundary ConstructedDAs:: +2024-09-08 15:11:37,729 [main] TRACE UmlDiagram - created (233) WG10 IEC61850 class ConstructedDAs::ConstructedDAs +2024-09-08 15:11:37,729 [main] TRACE UmlPackage - ---- created package FCDAs +2024-09-08 15:11:37,729 [main] TRACE UmlSkipped - created (2225) WG10 IEC61850 text FCDAs::IEC61850 : DataModelExample +2024-09-08 15:11:37,729 [main] TRACE UmlSkipped - created (2226) WG10 IEC61850 text FCDAs::FCDAs :FCDAs-ST-OR +2024-09-08 15:11:37,729 [main] TRACE UmlSkipped - created (2227) WG10 IEC61850 text FCDAs::FCDAs :FCDAs-SV-BL +2024-09-08 15:11:37,729 [main] TRACE UmlSkipped - created (2228) WG10 IEC61850 text FCDAs::FCDAs :FCDAs-SP-SG-SE +2024-09-08 15:11:37,729 [main] TRACE UmlSkipped - created (2229) WG10 IEC61850 text FCDAs::FCDAs :FCDAs-MX +2024-09-08 15:11:37,729 [main] TRACE UmlSkipped - created (2230) WG10 IEC61850 text FCDAs::FCDAs :FCDAs-CF-DC-EX +2024-09-08 15:11:37,729 [main] TRACE UmlDiagram - created (238) WG10 IEC61850 class FCDAs::FCDAs +2024-09-08 15:11:37,729 [main] TRACE UmlPackage - ---- created package CommonDataClasses +2024-09-08 15:11:37,729 [main] TRACE UmlSkipped - created (2239) WG10 IEC61850 text CommonDataClasses::CommonDataClasses : Concept of substitution +2024-09-08 15:11:37,729 [main] TRACE UmlSkipped - created (2241) WG10 IEC61850 boundary CommonDataClasses:: +2024-09-08 15:11:37,729 [main] TRACE UmlDiagram - created (244) WG10 IEC61850 class CommonDataClasses::CommonDataClasses +2024-09-08 15:11:37,729 [main] TRACE UmlDiagram - created (245) WG10 IEC61850 class CommonDataClasses::CDCRelationToACSI +2024-09-08 15:11:37,729 [main] TRACE UmlPackage - ---- created package CDCStatusInfo +2024-09-08 15:11:37,729 [main] TRACE UmlSkipped - created (2259) WG10 IEC61850 text CDCStatusInfo::CDCStatusInfo : Two-dimensional histogram +2024-09-08 15:11:37,729 [main] TRACE UmlSkipped - created (2260) WG10 IEC61850 text CDCStatusInfo::CDCStatusInfo : One-dimensional histogram +2024-09-08 15:11:37,729 [main] TRACE UmlDiagram - created (248) WG10 IEC61850 class CDCStatusInfo::CDCStatusInfo +2024-09-08 15:11:37,729 [main] TRACE UmlPackage - ---- created package CDCAnalogueInfo +2024-09-08 15:11:37,730 [main] TRACE UmlDiagram - created (251) WG10 IEC61850 class CDCAnalogueInfo::CDCAnalogueInfo +2024-09-08 15:11:37,730 [main] TRACE UmlPackage - ---- created package CDCControl +2024-09-08 15:11:37,730 [main] TRACE UmlSkipped - created (2289) WG10 IEC61850 text CDCControl::CDCControl :Attributes for command testing +2024-09-08 15:11:37,730 [main] TRACE UmlDiagram - created (255) WG10 IEC61850 class CDCControl::CDCControl +2024-09-08 15:11:37,730 [main] TRACE UmlPackage - ---- created package CDCStatusSet +2024-09-08 15:11:37,730 [main] TRACE UmlSkipped - created (2292) WG10 IEC61850 note CDCStatusSet:: +2024-09-08 15:11:37,730 [main] TRACE UmlDiagram - created (258) WG10 IEC61850 class CDCStatusSet::CDCStatusSet +2024-09-08 15:11:37,730 [main] TRACE UmlPackage - ---- created package CDCAnalogueSet +2024-09-08 15:11:37,730 [main] TRACE UmlSkipped - created (2302) WG10 IEC61850 note CDCAnalogueSet:: +2024-09-08 15:11:37,730 [main] TRACE UmlSkipped - created (2303) WG10 IEC61850 note CDCAnalogueSet:: +2024-09-08 15:11:37,730 [main] TRACE UmlSkipped - created (2309) WG10 IEC61850 text CDCAnalogueSet::CDCAnalogueSet : Two-dimensional curve +2024-09-08 15:11:37,730 [main] TRACE UmlSkipped - created (2310) WG10 IEC61850 text CDCAnalogueSet::CDCAnalogueSet : Multiple two-dimensional curves +2024-09-08 15:11:37,730 [main] TRACE UmlDiagram - created (260) WG10 IEC61850 class CDCAnalogueSet::CDCAnalogueSet +2024-09-08 15:11:37,730 [main] TRACE UmlPackage - ---- created package CDCDescription +2024-09-08 15:11:37,730 [main] TRACE UmlSkipped - created (2312) WG10 IEC61850 note CDCDescription:: +2024-09-08 15:11:37,730 [main] TRACE UmlDiagram - created (263) WG10 IEC61850 class CDCDescription::CDCDescription +2024-09-08 15:11:37,730 [main] TRACE UmlPackage - ---- created package IEC61850_7_4 +2024-09-08 15:11:37,730 [main] TRACE UmlDiagram - created (264) WG10 IEC61850 class IEC61850_7_4::IEC61850_7_4 +2024-09-08 15:11:37,730 [main] TRACE UmlPackage - ---- created package Abbreviations +2024-09-08 15:11:37,730 [main] TRACE UmlPackage - ---- created package DetailedDiagrams +2024-09-08 15:11:37,730 [main] TRACE UmlDiagram - created (274) WG10 IEC61850 INF class DetailedDiagrams::AbbreviationsA-O +2024-09-08 15:11:37,730 [main] TRACE UmlPackage - ---- created package Functions +2024-09-08 15:11:37,730 [main] TRACE UmlPackage - ---- created package ProtectionEq +2024-09-08 15:11:37,731 [main] TRACE UmlSkipped - created (2362) WG10 IEC61850 note ProtectionEq:: +2024-09-08 15:11:37,731 [main] TRACE UmlDiagram - created (276) WG10 IEC61850 class ProtectionEq::ProtectionEq +2024-09-08 15:11:37,731 [main] TRACE UmlPackage - ---- created package ControlEq +2024-09-08 15:11:37,731 [main] TRACE UmlSkipped - created (2419) WG10 IEC61850 note ControlEq:: +2024-09-08 15:11:37,731 [main] TRACE UmlDiagram - created (277) WG10 IEC61850 class ControlEq::ControlEq +2024-09-08 15:11:37,731 [main] TRACE UmlPackage - ---- created package MeasurementsAndMetering +2024-09-08 15:11:37,731 [main] TRACE UmlSkipped - created (2451) WG10 IEC61850 note MeasurementsAndMetering:: +2024-09-08 15:11:37,731 [main] TRACE UmlDiagram - created (280) WG10 IEC61850 class MeasurementsAndMetering::MeasurementsAndMetering +2024-09-08 15:11:37,731 [main] TRACE UmlPackage - ---- created package SystemWide +2024-09-08 15:11:37,731 [main] TRACE UmlDiagram - created (281) WG10 IEC61850 class SystemWide::SystemWide +2024-09-08 15:11:37,731 [main] TRACE UmlPackage - ---- created package PrimaryEq +2024-09-08 15:11:37,731 [main] TRACE UmlDiagram - created (282) WG10 IEC61850 class PrimaryEq::PrimaryEq +2024-09-08 15:11:37,731 [main] TRACE UmlPackage - ---- created package DOEnums +2024-09-08 15:11:37,731 [main] TRACE UmlSkipped - created (2554) WG10 IEC61850 note DOEnums:: +2024-09-08 15:11:37,731 [main] TRACE UmlSkipped - created (2555) WG10 IEC61850 note DOEnums:: +2024-09-08 15:11:37,731 [main] TRACE UmlSkipped - created (2556) WG10 IEC61850 note DOEnums:: +2024-09-08 15:11:37,731 [main] TRACE UmlSkipped - created (2563) WG10 IEC61850 note DOEnums:: +2024-09-08 15:11:37,731 [main] TRACE UmlSkipped - created (2615) WG10 IEC61850 text DOEnums::$diagram://{0D26B081-293D-4b46-BF1C-0EDBD3055405} +2024-09-08 15:11:37,731 [main] TRACE UmlSkipped - created (2617) WG10 IEC61850 text DOEnums::LogicalNodeEnums :DOEnums-2 +2024-09-08 15:11:37,731 [main] TRACE UmlDiagram - created (284) WG10 IEC61850 class DOEnums::DOEnums-1 +2024-09-08 15:11:37,731 [main] TRACE UmlPackage - ---- created package DerivedDAs +2024-09-08 15:11:37,731 [main] TRACE UmlSkipped - created (2619) WG10 IEC61850 note DerivedDAs:: +2024-09-08 15:11:37,731 [main] TRACE UmlSkipped - created (2666) WG10 IEC61850 text DerivedDAs::LogicalNodeEnums :DOEnums-1 +2024-09-08 15:11:37,731 [main] TRACE UmlSkipped - created (2667) WG10 IEC61850 text DerivedDAs::LogicalNodeEnums :DOEnums-2 +2024-09-08 15:11:37,731 [main] TRACE UmlSkipped - created (2668) WG10 IEC61850 boundary DerivedDAs:: +2024-09-08 15:11:37,731 [main] TRACE UmlDiagram - created (288) WG10 IEC61850 class DerivedDAs::DerivedDAs +2024-09-08 15:11:37,731 [main] TRACE UmlPackage - ---- created package DerivedCDCs +2024-09-08 15:11:37,731 [main] TRACE UmlSkipped - created (2670) WG10 IEC61850 note DerivedCDCs:: +2024-09-08 15:11:37,731 [main] TRACE UmlSkipped - created (2722) WG10 IEC61850 boundary DerivedCDCs:: +2024-09-08 15:11:37,731 [main] TRACE UmlDiagram - created (289) WG10 IEC61850 class DerivedCDCs::DerivedCDCs +2024-09-08 15:11:37,732 [main] TRACE UmlPackage - ---- created package LogicalNodes +2024-09-08 15:11:37,732 [main] TRACE UmlSkipped - created (2724) WG10 IEC61850 note LogicalNodes:: +2024-09-08 15:11:37,732 [main] TRACE UmlSkipped - created (2725) WG10 IEC61850 note LogicalNodes:: +2024-09-08 15:11:37,732 [main] TRACE UmlSkipped - created (2727) WG10 IEC61850 note LogicalNodes:: +2024-09-08 15:11:37,732 [main] TRACE UmlSkipped - created (2740) WG10 IEC61850 boundary LogicalNodes:: +2024-09-08 15:11:37,732 [main] TRACE UmlSkipped - created (3031) WG10 IEC61850 note LogicalNodes:: +2024-09-08 15:11:37,732 [main] TRACE UmlSkipped - created (3081) WG10 IEC61850 note LogicalNodes:: +2024-09-08 15:11:37,732 [main] TRACE UmlDiagram - created (291) WG10 IEC61850 class LogicalNodes::LogicalNodes +2024-09-08 15:11:37,732 [main] TRACE UmlDiagram - created (290) WG10 IEC61850 class LogicalNodes::LNRelationToACSI +2024-09-08 15:11:37,732 [main] TRACE UmlPackage - ---- created package DocLogicalNodes +2024-09-08 15:11:37,732 [main] TRACE UmlSkipped - created (2742) WG10 IEC61850 INF note DocLogicalNodes:: +2024-09-08 15:11:37,732 [main] TRACE UmlSkipped - created (2743) WG10 IEC61850 INF note DocLogicalNodes:: +2024-09-08 15:11:37,732 [main] TRACE UmlSkipped - created (2744) WG10 IEC61850 INF note DocLogicalNodes:: +2024-09-08 15:11:37,732 [main] TRACE UmlSkipped - created (2745) WG10 IEC61850 INF state machine DocLogicalNodes::RecloserState +2024-09-08 15:11:37,732 [main] TRACE UmlDiagram - created (294) WG10 IEC61850 INF package DocLogicalNodes::DocLogicalNodes +2024-09-08 15:11:37,732 [main] TRACE UmlDiagram - created (293) WG10 IEC61850 INF statechart DocLogicalNodes::RecloserState +2024-09-08 15:11:37,732 [main] TRACE UmlPackage - ---- created package LNGroupL +2024-09-08 15:11:37,732 [main] TRACE UmlSkipped - created (3040) WG10 IEC61850 note LNGroupL:: +2024-09-08 15:11:37,732 [main] TRACE UmlSkipped - created (3072) WG10 IEC61850 note LNGroupL:: +2024-09-08 15:11:37,732 [main] TRACE UmlDiagram - created (295) WG10 IEC61850 class LNGroupL::LNGroupL +2024-09-08 15:11:37,732 [main] TRACE UmlPackage - ---- created package LNGroupC +2024-09-08 15:11:37,732 [main] TRACE UmlSkipped - created (3065) WG10 IEC61850 note LNGroupC:: +2024-09-08 15:11:37,732 [main] TRACE UmlDiagram - created (297) WG10 IEC61850 class LNGroupC::LNGroupC +2024-09-08 15:11:37,732 [main] TRACE UmlPackage - ---- created package LNGroupG +2024-09-08 15:11:37,732 [main] TRACE UmlSkipped - created (2813) WG10 IEC61850 note LNGroupG:: +2024-09-08 15:11:37,732 [main] TRACE UmlDiagram - created (300) WG10 IEC61850 class LNGroupG::LNGroupG +2024-09-08 15:11:37,732 [main] TRACE UmlPackage - ---- created package LNGroupM +2024-09-08 15:11:37,732 [main] TRACE UmlSkipped - created (2843) WG10 IEC61850 note LNGroupM:: +2024-09-08 15:11:37,732 [main] TRACE UmlSkipped - created (2858) WG10 IEC61850 text LNGroupM::LNGroupM : LNGroupM1 +2024-09-08 15:11:37,732 [main] TRACE UmlDiagram - created (304) WG10 IEC61850 class LNGroupM::LNGroupM2 +2024-09-08 15:11:37,732 [main] TRACE UmlPackage - ---- created package LNGroupP +2024-09-08 15:11:37,732 [main] TRACE UmlSkipped - created (2869) WG10 IEC61850 note LNGroupP:: +2024-09-08 15:11:37,732 [main] TRACE UmlSkipped - created (2914) WG10 IEC61850 text LNGroupP::LNGroupP : LNGroupP2 +2024-09-08 15:11:37,732 [main] TRACE UmlSkipped - created (2915) WG10 IEC61850 text LNGroupP::Text +2024-09-08 15:11:37,732 [main] TRACE UmlSkipped - created (2916) WG10 IEC61850 text LNGroupP::LNGroupP : Load area and reach settings +2024-09-08 15:11:37,732 [main] TRACE UmlSkipped - created (2917) WG10 IEC61850 text LNGroupP::Text +2024-09-08 15:11:37,732 [main] TRACE UmlDiagram - created (305) WG10 IEC61850 class LNGroupP::LNGroupP1 +2024-09-08 15:11:37,733 [main] TRACE UmlPackage - ---- created package LNGroupR +2024-09-08 15:11:37,733 [main] TRACE UmlDiagram - created (309) WG10 IEC61850 class LNGroupR::LNGroupR +2024-09-08 15:11:37,733 [main] TRACE UmlPackage - ---- created package LNGroupZ +2024-09-08 15:11:37,733 [main] TRACE UmlSkipped - created (3063) WG10 IEC61850 note LNGroupZ:: +2024-09-08 15:11:37,733 [main] TRACE UmlDiagram - created (316) WG10 IEC61850 class LNGroupZ::LNGroupZ-1 +2024-09-08 15:11:37,733 [main] TRACE UmlPackage - ---- created top package WG17 +2024-09-08 15:11:37,733 [main] TRACE UmlDiagram - created (318) WG17 IEC61850 class WG17::WG17 +2024-09-08 15:11:37,735 [main] TRACE UmlPackage - ---- created package IEC51850_7_420 +2024-09-08 15:11:37,735 [main] TRACE UmlDiagram - created (327) WG17 IEC61850 package IEC51850_7_420::IEC51850_7_420 +2024-09-08 15:11:37,735 [main] TRACE UmlPackage - ---- created package DOEnums_7_420 +2024-09-08 15:11:37,735 [main] TRACE UmlDiagram - created (323) WG17 IEC61850 class DOEnums_7_420::DOEnums_7_420 +2024-09-08 15:11:37,735 [main] TRACE UmlPackage - ---- created package DerivedDAs_7_420 +2024-09-08 15:11:37,735 [main] TRACE UmlSkipped - created (3057) WG17 IEC61850 note DerivedDAs_7_420:: +2024-09-08 15:11:37,735 [main] TRACE UmlSkipped - created (3058) WG17 IEC61850 note DerivedDAs_7_420:: +2024-09-08 15:11:37,735 [main] TRACE UmlSkipped - created (3089) WG17 IEC61850 note DerivedDAs_7_420:: +2024-09-08 15:11:37,735 [main] TRACE UmlDiagram - created (324) WG17 IEC61850 class DerivedDAs_7_420::DerivedDAs_7_420 +2024-09-08 15:11:37,735 [main] TRACE UmlPackage - ---- created package DerivedCDCs_7_420 +2024-09-08 15:11:37,735 [main] TRACE UmlDiagram - created (325) WG17 IEC61850 class DerivedCDCs_7_420::DerivedCDCs_7_420 +2024-09-08 15:11:37,736 [main] TRACE UmlPackage - ---- created top package WG18 +2024-09-08 15:11:37,736 [main] TRACE UmlDiagram - created (319) WG18 IEC61850 class WG18::WG18 +2024-09-08 15:11:37,736 [main] TRACE UmlPackage - ---- created package Abbreviations_410 +2024-09-08 15:11:37,736 [main] TRACE UmlDiagram - created (320) WG18 IEC61850 class Abbreviations_410::Abbreviations_410 +2024-09-08 15:11:37,736 [main] TRACE UmlPackage - ---- created top package JWG25 +2024-09-08 15:11:37,736 [main] TRACE UmlDiagram - created (317) JWG25 IEC61850 class JWG25::JWG25 +2024-09-08 15:11:37,736 [main] TRACE UmlPackage - ---- created model package MyCimExtensions +2024-09-08 15:11:37,736 [main] TRACE UmlSkipped - created (3076) OTHER_CIM CIM other <> MyCimExtensions::DFD_Process1 +2024-09-08 15:11:37,736 [main] TRACE UmlSkipped - created (3079) OTHER_CIM CIM note MyCimExtensions:: +2024-09-08 15:11:37,736 [main] TRACE UmlDiagram - created (168) OTHER_CIM CIM class <> MyCimExtensions::MyCimExtensions +2024-09-08 15:11:37,736 [main] TRACE UmlPackage - ---- created top package Ext1 +2024-09-08 15:11:37,736 [main] TRACE UmlSkipped - created (3458) OTHER_CIM CIM other Ext1:: - Class 'Apple' - Class 'Apple' +2024-09-08 15:11:37,736 [main] TRACE UmlSkipped - created (3460) OTHER_CIM CIM other Ext1:: - Activity 'DFD_Process1' - Activity 'DFD_Process1' +2024-09-08 15:11:37,736 [main] TRACE UmlSkipped - created (1527) OTHER_CIM CIM note Ext1:: +2024-09-08 15:11:37,736 [main] TRACE UmlSkipped - created (3037) OTHER_CIM CIM note Ext1:: +2024-09-08 15:11:37,736 [main] TRACE UmlDiagram - created (169) OTHER_CIM CIM class Ext1::Ext1 +2024-09-08 15:11:37,736 [main] TRACE UmlPackage - ---- created top package Package with space +2024-09-08 15:11:37,736 [main] TRACE UmlSkipped - created (3461) OTHER_CIM CIM other Package with space:: - Class 'DFD_DataStore1' - Class 'DFD_DataStore1' +2024-09-08 15:11:37,736 [main] TRACE UmlSkipped - created (3462) OTHER_CIM CIM other Package with space:: - Class 'DFD_External1' - Class 'DFD_External1' +2024-09-08 15:11:37,736 [main] TRACE UmlDiagram - created (182) OTHER_CIM CIM class Package with space::Package with space +2024-09-08 15:11:37,736 [main] TRACE UmlPackage - ---- created model package My61850Extensions +2024-09-08 15:11:37,736 [main] TRACE UmlDiagram - created (172) OTHER_IEC61850 IEC61850 package My61850Extensions::My61850Extensions +2024-09-08 15:11:37,736 [main] TRACE UmlPackage - ---- created top package Ext2 +2024-09-08 15:11:37,736 [main] TRACE UmlSkipped - created (1528) OTHER_IEC61850 IEC61850 note Ext2:: +2024-09-08 15:11:37,736 [main] TRACE UmlDiagram - created (170) OTHER_IEC61850 IEC61850 class Ext2::Ext2 +2024-09-08 15:11:37,736 [main] TRACE UmlPackage - ---- created model package NewNature +2024-09-08 15:11:37,736 [main] TRACE UmlDiagram - created (329) OTHER_CIM CIM package NewNature::NewNature +2024-09-08 15:11:37,736 [main] INFO EaModelBuilder - creating in-memory root classes and enum literals ... +2024-09-08 15:11:37,737 [main] TRACE UmlClass - created (1495) OTHER_CIM CIM INF root class <> Informative::Class1 +2024-09-08 15:11:37,737 [main] TRACE UmlClass - created (1514) OTHER_CIM CIM INF root class Informative::End1ForAssocClass +2024-09-08 15:11:37,737 [main] TRACE UmlClass - created (1515) OTHER_CIM CIM INF root class Informative::End2ForAssocClass +2024-09-08 15:11:37,737 [main] TRACE UmlClass - created (1517) OTHER_CIM CIM INF root class Informative::AssocClass +2024-09-08 15:11:37,737 [main] TRACE UmlClass - created (1518) OTHER_CIM CIM INF root class Informative::HasIllegalTypeForAttr +2024-09-08 15:11:37,737 [main] TRACE UmlClass - created (1532) OTHER_CIM CIM INF compound <> Informative::SomeSimpleType +2024-09-08 15:11:37,737 [main] TRACE UmlClass - created (572) WG13 CIM root class IEC61970::IEC61970CIMVersion +2024-09-08 15:11:37,737 [main] TRACE UmlClass - created (1450) WG13 CIM INF root class InformativeAndPrivate::InfClass2 +2024-09-08 15:11:37,737 [main] TRACE UmlClass - created (1449) WG13 CIM INF root class InformativeAndPrivate::InfClassContainingEmbeddedClass +2024-09-08 15:11:37,737 [main] TRACE UmlSkipped - created (1496) WG13 CIM INF other InfClassContainingEmbeddedClass.EmbeddedClass +2024-09-08 15:11:37,737 [main] TRACE UmlClass - created (1496) WG13 CIM INF root class InformativeAndPrivate::EmbeddedClass +2024-09-08 15:11:37,737 [main] TRACE UmlClass - created (640) WG13 CIM datatype <> Domain::AbsoluteDateTime +2024-09-08 15:11:37,737 [main] TRACE UmlClass - created (638) WG13 CIM datatype <> Domain::ActivePower +2024-09-08 15:11:37,737 [main] TRACE UmlClass - created (629) WG13 CIM datatype <> Domain::ActivePowerChangeRate +2024-09-08 15:11:37,737 [main] TRACE UmlClass - created (616) WG13 CIM datatype <> Domain::ApparentPower +2024-09-08 15:11:37,737 [main] TRACE UmlClass - created (619) WG13 CIM primitive <> Domain::Boolean +2024-09-08 15:11:37,737 [main] TRACE UmlClass - created (600) WG13 CIM enumeration <> Domain::Currency +2024-09-08 15:11:37,755 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,755 [main] TRACE UmlAttribute - created (1287) WG13 CIM literal <> Domain::Currency.USD +2024-09-08 15:11:37,755 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,755 [main] TRACE UmlAttribute - created (1288) WG13 CIM literal <> Domain::Currency.EUR +2024-09-08 15:11:37,755 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,755 [main] TRACE UmlAttribute - created (1289) WG13 CIM literal <> Domain::Currency.AUD +2024-09-08 15:11:37,755 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,755 [main] TRACE UmlAttribute - created (1290) WG13 CIM literal <> Domain::Currency.CAD +2024-09-08 15:11:37,755 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,755 [main] TRACE UmlAttribute - created (1291) WG13 CIM literal <> Domain::Currency.CHF +2024-09-08 15:11:37,755 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,755 [main] TRACE UmlAttribute - created (1292) WG13 CIM literal <> Domain::Currency.CNY +2024-09-08 15:11:37,756 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,756 [main] TRACE UmlAttribute - created (1293) WG13 CIM literal <> Domain::Currency.DKK +2024-09-08 15:11:37,756 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,756 [main] TRACE UmlAttribute - created (1294) WG13 CIM literal <> Domain::Currency.GBP +2024-09-08 15:11:37,756 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,756 [main] TRACE UmlAttribute - created (1295) WG13 CIM literal <> Domain::Currency.JPY +2024-09-08 15:11:37,756 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,756 [main] TRACE UmlAttribute - created (1296) WG13 CIM literal <> Domain::Currency.NOK +2024-09-08 15:11:37,756 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,756 [main] TRACE UmlAttribute - created (1297) WG13 CIM literal <> Domain::Currency.RUR +2024-09-08 15:11:37,756 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,756 [main] TRACE UmlAttribute - created (1298) WG13 CIM literal <> Domain::Currency.SEK +2024-09-08 15:11:37,756 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,756 [main] TRACE UmlAttribute - created (1299) WG13 CIM literal <> Domain::Currency.INR +2024-09-08 15:11:37,756 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,756 [main] TRACE UmlAttribute - created (1300) WG13 CIM literal <> Domain::Currency.other +2024-09-08 15:11:37,756 [main] TRACE UmlClass - created (615) WG13 CIM primitive <> Domain::Float +2024-09-08 15:11:37,756 [main] TRACE UmlClass - created (610) WG13 CIM primitive <> Domain::Integer +2024-09-08 15:11:37,756 [main] TRACE UmlClass - created (609) WG13 CIM datatype <> Domain::Money +2024-09-08 15:11:37,756 [main] TRACE UmlClass - created (614) WG13 CIM datatype <> Domain::PerCent +2024-09-08 15:11:37,756 [main] TRACE UmlClass - created (620) WG13 CIM datatype <> Domain::Seconds +2024-09-08 15:11:37,756 [main] TRACE UmlClass - created (637) WG13 CIM primitive <> Domain::String +2024-09-08 15:11:37,756 [main] TRACE UmlClass - created (634) WG13 CIM enumeration <> Domain::UnitMultiplier +2024-09-08 15:11:37,756 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,756 [main] TRACE UmlAttribute - created (1417) WG13 CIM literal <> Domain::UnitMultiplier.p +2024-09-08 15:11:37,757 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,757 [main] TRACE UmlAttribute - created (1418) WG13 CIM literal <> Domain::UnitMultiplier.n +2024-09-08 15:11:37,757 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,757 [main] TRACE UmlAttribute - created (1419) WG13 CIM literal <> Domain::UnitMultiplier.micro +2024-09-08 15:11:37,757 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,757 [main] TRACE UmlAttribute - created (1420) WG13 CIM literal <> Domain::UnitMultiplier.m +2024-09-08 15:11:37,757 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,757 [main] TRACE UmlAttribute - created (1421) WG13 CIM literal <> Domain::UnitMultiplier.c +2024-09-08 15:11:37,757 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,757 [main] TRACE UmlAttribute - created (1422) WG13 CIM literal <> Domain::UnitMultiplier.d +2024-09-08 15:11:37,757 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,757 [main] TRACE UmlAttribute - created (1423) WG13 CIM literal <> Domain::UnitMultiplier.k +2024-09-08 15:11:37,757 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,757 [main] TRACE UmlAttribute - created (1424) WG13 CIM literal <> Domain::UnitMultiplier.M +2024-09-08 15:11:37,757 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,757 [main] TRACE UmlAttribute - created (1425) WG13 CIM literal <> Domain::UnitMultiplier.G +2024-09-08 15:11:37,757 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,757 [main] TRACE UmlAttribute - created (1426) WG13 CIM literal <> Domain::UnitMultiplier.T +2024-09-08 15:11:37,757 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,757 [main] TRACE UmlAttribute - created (1427) WG13 CIM literal <> Domain::UnitMultiplier.none +2024-09-08 15:11:37,757 [main] TRACE UmlClass - created (613) WG13 CIM enumeration <> Domain::UnitSymbol +2024-09-08 15:11:37,757 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,757 [main] TRACE UmlAttribute - created (1331) WG13 CIM literal <> Domain::UnitSymbol.VA +2024-09-08 15:11:37,757 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,757 [main] TRACE UmlAttribute - created (1332) WG13 CIM literal <> Domain::UnitSymbol.W +2024-09-08 15:11:37,757 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,757 [main] TRACE UmlAttribute - created (1333) WG13 CIM literal <> Domain::UnitSymbol.VAr +2024-09-08 15:11:37,757 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,758 [main] TRACE UmlAttribute - created (1334) WG13 CIM literal <> Domain::UnitSymbol.VAh +2024-09-08 15:11:37,758 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,758 [main] TRACE UmlAttribute - created (1335) WG13 CIM literal Domain::UnitSymbol.Wh +2024-09-08 15:11:37,758 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,758 [main] TRACE UmlAttribute - created (1336) WG13 CIM literal <> Domain::UnitSymbol.VArh +2024-09-08 15:11:37,758 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,758 [main] TRACE UmlAttribute - created (1337) WG13 CIM literal <> Domain::UnitSymbol.V +2024-09-08 15:11:37,758 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,758 [main] TRACE UmlAttribute - created (1338) WG13 CIM literal <> Domain::UnitSymbol.ohm +2024-09-08 15:11:37,758 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,758 [main] TRACE UmlAttribute - created (1339) WG13 CIM literal <> Domain::UnitSymbol.A +2024-09-08 15:11:37,758 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,758 [main] TRACE UmlAttribute - created (1340) WG13 CIM literal <> Domain::UnitSymbol.F +2024-09-08 15:11:37,758 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,758 [main] TRACE UmlAttribute - created (1341) WG13 CIM literal <> Domain::UnitSymbol.H +2024-09-08 15:11:37,758 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,758 [main] TRACE UmlAttribute - created (1342) WG13 CIM literal <> Domain::UnitSymbol.ºC +2024-09-08 15:11:37,758 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,758 [main] TRACE UmlAttribute - created (1343) WG13 CIM literal <> Domain::UnitSymbol.s +2024-09-08 15:11:37,758 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,758 [main] TRACE UmlAttribute - created (1344) WG13 CIM literal <> Domain::UnitSymbol.min +2024-09-08 15:11:37,758 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,758 [main] TRACE UmlAttribute - created (1345) WG13 CIM literal <> Domain::UnitSymbol.h +2024-09-08 15:11:37,758 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,758 [main] TRACE UmlAttribute - created (1346) WG13 CIM literal <> Domain::UnitSymbol.deg +2024-09-08 15:11:37,758 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,759 [main] TRACE UmlAttribute - created (1347) WG13 CIM literal <> Domain::UnitSymbol.rad +2024-09-08 15:11:37,759 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,759 [main] TRACE UmlAttribute - created (1348) WG13 CIM literal <> Domain::UnitSymbol.J +2024-09-08 15:11:37,759 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,759 [main] TRACE UmlAttribute - created (1349) WG13 CIM literal <> Domain::UnitSymbol.N +2024-09-08 15:11:37,759 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,759 [main] TRACE UmlAttribute - created (1350) WG13 CIM literal <> Domain::UnitSymbol.S +2024-09-08 15:11:37,759 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,759 [main] TRACE UmlAttribute - created (1351) WG13 CIM literal <> Domain::UnitSymbol.none +2024-09-08 15:11:37,759 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,759 [main] TRACE UmlAttribute - created (1352) WG13 CIM literal <> Domain::UnitSymbol.Hz +2024-09-08 15:11:37,759 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,759 [main] TRACE UmlAttribute - created (1353) WG13 CIM literal <> Domain::UnitSymbol.g +2024-09-08 15:11:37,759 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,759 [main] TRACE UmlAttribute - created (1354) WG13 CIM literal <> Domain::UnitSymbol.Pa +2024-09-08 15:11:37,759 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,759 [main] TRACE UmlAttribute - created (1355) WG13 CIM literal <> Domain::UnitSymbol.m +2024-09-08 15:11:37,759 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,759 [main] TRACE UmlAttribute - created (1356) WG13 CIM literal <> Domain::UnitSymbol.m2 +2024-09-08 15:11:37,759 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,759 [main] TRACE UmlAttribute - created (1357) WG13 CIM literal <> Domain::UnitSymbol.m3 +2024-09-08 15:11:37,759 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,760 [main] TRACE UmlAttribute - created (1358) WG13 CIM literal <> Domain::UnitSymbol.V/VAr +2024-09-08 15:11:37,760 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,760 [main] TRACE UmlAttribute - created (1359) WG13 CIM literal <> Domain::UnitSymbol.W/Hz +2024-09-08 15:11:37,760 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,760 [main] TRACE UmlAttribute - created (1360) WG13 CIM literal <> Domain::UnitSymbol.J/s +2024-09-08 15:11:37,760 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,760 [main] TRACE UmlAttribute - created (1361) WG13 CIM literal <> Domain::UnitSymbol.s-1 +2024-09-08 15:11:37,760 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,760 [main] TRACE UmlAttribute - created (1362) WG13 CIM literal <> Domain::UnitSymbol.kg/J +2024-09-08 15:11:37,760 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,760 [main] TRACE UmlAttribute - created (1363) WG13 CIM literal <> Domain::UnitSymbol.W/s +2024-09-08 15:11:37,760 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,760 [main] TRACE UmlAttribute - created (1364) WG13 CIM literal <> Domain::UnitSymbol.Hz-1 +2024-09-08 15:11:37,760 [main] TRACE UmlClass - created (602) WG13 CIM datatype <> Domain::Voltage +2024-09-08 15:11:37,760 [main] TRACE UmlClass - created (1533) WG13 CIM enumeration <> Domain::WithSingleLiteral +2024-09-08 15:11:37,760 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,760 [main] TRACE UmlAttribute - created (3289) WG13 CIM literal <> Domain::WithSingleLiteral.singleLiteral +2024-09-08 15:11:37,760 [main] TRACE UmlClass - created (1540) WG13 CIM enumeration <> Domain::YesNo +2024-09-08 15:11:37,760 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,760 [main] TRACE UmlAttribute - created (3299) WG13 CIM literal <> Domain::YesNo.Yes +2024-09-08 15:11:37,760 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,760 [main] TRACE UmlAttribute - created (3300) WG13 CIM literal <> Domain::YesNo.No +2024-09-08 15:11:37,760 [main] TRACE UmlClass - created (858) WG13 CIM private enumeration <> Core::BreakerConfiguration +2024-09-08 15:11:37,760 [main] TRACE UmlSkipped - created (3467) WG13 CIM note link BreakerConfiguration. - ? - ? +2024-09-08 15:11:37,760 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,760 [main] TRACE UmlAttribute - created (2073) WG13 CIM literal <> Core::BreakerConfiguration.singleBreaker +2024-09-08 15:11:37,769 [main] TRACE UmlConstraint - created attribute index constraint Core::BreakerConfiguration.singleBreaker {singleBreakerConstraintNoType = text} +2024-09-08 15:11:37,769 [main] TRACE UmlConstraint - created attribute index constraint Core::BreakerConfiguration.singleBreaker {processContstraint = process constraint text} +2024-09-08 15:11:37,769 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,769 [main] TRACE UmlAttribute - created (2074) WG13 CIM literal <> Core::BreakerConfiguration.breakerAndAHalf +2024-09-08 15:11:37,769 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,769 [main] TRACE UmlAttribute - created (2075) WG13 CIM literal <> Core::BreakerConfiguration.doubleBreaker +2024-09-08 15:11:37,769 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,769 [main] TRACE UmlAttribute - created (2076) WG13 CIM literal <> Core::BreakerConfiguration.noBreaker +2024-09-08 15:11:37,769 [main] TRACE UmlClass - created (878) WG13 CIM protected enumeration <> Core::BusbarConfiguration +2024-09-08 15:11:37,769 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,769 [main] TRACE UmlAttribute - created (2110) WG13 CIM literal <> Core::BusbarConfiguration.singleBus +2024-09-08 15:11:37,769 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,769 [main] TRACE UmlAttribute - created (2111) WG13 CIM literal <> Core::BusbarConfiguration.doubleBus +2024-09-08 15:11:37,769 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,769 [main] TRACE UmlAttribute - created (2112) WG13 CIM literal <> Core::BusbarConfiguration.mainWithTransfer +2024-09-08 15:11:37,769 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,769 [main] TRACE UmlAttribute - created (2113) WG13 CIM literal <> Core::BusbarConfiguration.ringBus +2024-09-08 15:11:37,769 [main] TRACE UmlClass - created (876) WG13 CIM root class <> Core::OperatingShare +2024-09-08 15:11:37,770 [main] TRACE UmlSkipped - created (3468) WG13 CIM note link OperatingShare. - ? - ? +2024-09-08 15:11:37,770 [main] TRACE UmlClass - created (856) WG13 CIM enumeration <> Core::PhaseCode +2024-09-08 15:11:37,770 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,770 [main] TRACE UmlAttribute - created (2054) WG13 CIM literal <> Core::PhaseCode.ABCN +2024-09-08 15:11:37,770 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,770 [main] TRACE UmlAttribute - created (2055) WG13 CIM literal <> Core::PhaseCode.ABC +2024-09-08 15:11:37,770 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,770 [main] TRACE UmlAttribute - created (2056) WG13 CIM literal <> Core::PhaseCode.ABN +2024-09-08 15:11:37,770 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,770 [main] TRACE UmlAttribute - created (2057) WG13 CIM literal <> Core::PhaseCode.ACN +2024-09-08 15:11:37,770 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,770 [main] TRACE UmlAttribute - created (2058) WG13 CIM literal <> Core::PhaseCode.BCN +2024-09-08 15:11:37,770 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,770 [main] TRACE UmlAttribute - created (2059) WG13 CIM literal <> Core::PhaseCode.AB +2024-09-08 15:11:37,770 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,770 [main] TRACE UmlAttribute - created (2060) WG13 CIM literal <> Core::PhaseCode.AC +2024-09-08 15:11:37,770 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,770 [main] TRACE UmlAttribute - created (2061) WG13 CIM literal <> Core::PhaseCode.BC +2024-09-08 15:11:37,770 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,770 [main] TRACE UmlAttribute - created (2062) WG13 CIM literal <> Core::PhaseCode.AN +2024-09-08 15:11:37,770 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,770 [main] TRACE UmlAttribute - created (2063) WG13 CIM literal <> Core::PhaseCode.BN +2024-09-08 15:11:37,770 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,770 [main] TRACE UmlAttribute - created (2064) WG13 CIM literal <> Core::PhaseCode.CN +2024-09-08 15:11:37,770 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,770 [main] TRACE UmlAttribute - created (2065) WG13 CIM literal <> Core::PhaseCode.A +2024-09-08 15:11:37,770 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,770 [main] TRACE UmlAttribute - created (2066) WG13 CIM literal <> Core::PhaseCode.B +2024-09-08 15:11:37,771 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,771 [main] TRACE UmlAttribute - created (2067) WG13 CIM literal <> Core::PhaseCode.C +2024-09-08 15:11:37,771 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,771 [main] TRACE UmlAttribute - created (2068) WG13 CIM literal <> Core::PhaseCode.N +2024-09-08 15:11:37,771 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,771 [main] TRACE UmlAttribute - created (3246) WG13 CIM literal <> Core::PhaseCode.splitSecondary1N +2024-09-08 15:11:37,771 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,771 [main] TRACE UmlAttribute - created (3247) WG13 CIM literal <> Core::PhaseCode.splitSecondary2N +2024-09-08 15:11:37,771 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,771 [main] TRACE UmlAttribute - created (3248) WG13 CIM literal <> Core::PhaseCode.splitSecondary12N +2024-09-08 15:11:37,771 [main] TRACE UmlClass - created (851) WG13 CIM root class Core::IdentifiedObject +2024-09-08 15:11:37,771 [main] TRACE UmlClass - created (1513) WG13 CIM enumeration <> Topology::TestEnum +2024-09-08 15:11:37,771 [main] TRACE ValueRange - 'initial J/m²' has no separator indicating range. +2024-09-08 15:11:37,771 [main] TRACE UmlAttribute - created (3282) WG13 CIM literal <> Topology::TestEnum.J/m² = initial J/m² +2024-09-08 15:11:37,771 [main] TRACE ValueRange - 'initial µ' has no separator indicating range. +2024-09-08 15:11:37,771 [main] TRACE UmlAttribute - created (3283) WG13 CIM literal <> Topology::TestEnum.µ = initial µ +2024-09-08 15:11:37,771 [main] TRACE UmlClass - created (3045) WG13 CIM enumeration <> TestEnums::EnumWithSomeIntCodes +2024-09-08 15:11:37,771 [main] TRACE UmlSkipped - created (3428) WG13 CIM note link EnumWithSomeIntCodes. - ? - ? +2024-09-08 15:11:37,771 [main] TRACE ValueRange - '10' has no separator indicating range. +2024-09-08 15:11:37,771 [main] TRACE UmlAttribute - created (6663) WG13 CIM literal <> TestEnums::EnumWithSomeIntCodes.lit10 = 10 +2024-09-08 15:11:37,771 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,771 [main] TRACE UmlAttribute - created (6664) WG13 CIM literal <> TestEnums::EnumWithSomeIntCodes.lit20noCode +2024-09-08 15:11:37,771 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-08 15:11:37,771 [main] TRACE UmlAttribute - created (6665) WG13 CIM literal <> TestEnums::EnumWithSomeIntCodes.lit30 = 3 +2024-09-08 15:11:37,771 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-08 15:11:37,771 [main] TRACE UmlAttribute - created (6666) WG13 CIM literal <> TestEnums::EnumWithSomeIntCodes.lit40 = 4 +2024-09-08 15:11:37,772 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 15:11:37,772 [main] TRACE UmlAttribute - created (6667) WG13 CIM literal <> TestEnums::EnumWithSomeIntCodes.lit50 = 1 +2024-09-08 15:11:37,772 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,772 [main] TRACE UmlAttribute - created (6668) WG13 CIM literal <> TestEnums::EnumWithSomeIntCodes.lit60noCode +2024-09-08 15:11:37,772 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-08 15:11:37,772 [main] TRACE UmlAttribute - created (6669) WG13 CIM literal <> TestEnums::EnumWithSomeIntCodes.lit70 = 2 +2024-09-08 15:11:37,772 [main] TRACE UmlClass - created (3047) WG13 CIM enumeration <> TestEnums::EnumWithStringCodes +2024-09-08 15:11:37,772 [main] TRACE UmlSkipped - created (3429) WG13 CIM note link EnumWithStringCodes. - ? - ? +2024-09-08 15:11:37,772 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 15:11:37,772 [main] TRACE UmlAttribute - created (6670) WG13 CIM literal <> TestEnums::EnumWithStringCodes.str1 = 1 +2024-09-08 15:11:37,772 [main] TRACE ValueRange - 'some string' has no separator indicating range. +2024-09-08 15:11:37,772 [main] TRACE UmlAttribute - created (6671) WG13 CIM literal <> TestEnums::EnumWithStringCodes.str2 = some string +2024-09-08 15:11:37,772 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,772 [main] TRACE UmlAttribute - created (6672) WG13 CIM literal <> TestEnums::EnumWithStringCodes.str3noCode +2024-09-08 15:11:37,772 [main] TRACE ValueRange - '3.14' has no separator indicating range. +2024-09-08 15:11:37,772 [main] TRACE UmlAttribute - created (6673) WG13 CIM literal <> TestEnums::EnumWithStringCodes.str4 = 3.14 +2024-09-08 15:11:37,772 [main] TRACE ValueRange - 'another string' has no separator indicating range. +2024-09-08 15:11:37,772 [main] TRACE UmlAttribute - created (6674) WG13 CIM literal <> TestEnums::EnumWithStringCodes.str5 = another string +2024-09-08 15:11:37,772 [main] TRACE UmlClass - created (3049) WG13 CIM enumeration <> TestEnums::EnumWithNonUniqueCodes +2024-09-08 15:11:37,772 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 15:11:37,772 [main] TRACE UmlAttribute - created (6675) WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c1 = 1 +2024-09-08 15:11:37,772 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 15:11:37,772 [main] TRACE UmlAttribute - created (6676) WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c2 = 1 +2024-09-08 15:11:37,772 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-08 15:11:37,772 [main] TRACE UmlAttribute - created (6677) WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c3 = 3 +2024-09-08 15:11:37,772 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-08 15:11:37,772 [main] TRACE UmlAttribute - created (6678) WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c4 = 4 +2024-09-08 15:11:37,772 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 15:11:37,772 [main] TRACE UmlAttribute - created (6679) WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c5 = 1 +2024-09-08 15:11:37,773 [main] TRACE ValueRange - '6' has no separator indicating range. +2024-09-08 15:11:37,773 [main] TRACE UmlAttribute - created (6680) WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c6 = 6 +2024-09-08 15:11:37,773 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-08 15:11:37,773 [main] TRACE UmlAttribute - created (6681) WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c7 = 4 +2024-09-08 15:11:37,773 [main] TRACE ValueRange - '8' has no separator indicating range. +2024-09-08 15:11:37,773 [main] TRACE UmlAttribute - created (6682) WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c8 = 8 +2024-09-08 15:11:37,773 [main] TRACE UmlClass - created (1452) WG14 CIM root class IEC61968::IEC61968Version +2024-09-08 15:11:37,773 [main] TRACE UmlClass - created (1546) WG14 CIM root class Assets::AssetInfo +2024-09-08 15:11:37,773 [main] TRACE UmlClass - created (1467) WG14 CIM datatype <> Other::BadDatatypes +2024-09-08 15:11:37,773 [main] TRACE UmlClass - created (1472) WG14 CIM root class Other::Equipment +2024-09-08 15:11:37,773 [main] TRACE UmlSkipped - created (2112) WG14 CIM note link Equipment. - ? - ? +2024-09-08 15:11:37,773 [main] TRACE UmlSkipped - created (3456) WG14 CIM note link Equipment. - ? - ? +2024-09-08 15:11:37,773 [main] TRACE UmlClass - created (1474) WG14 CIM root class Other::MyClass +2024-09-08 15:11:37,773 [main] TRACE UmlSkipped - created (2113) WG14 CIM note link MyClass. - ? - ? +2024-09-08 15:11:37,773 [main] TRACE UmlClass - created (1480) WG14 CIM enumeration <> Other::EmptyEnum +2024-09-08 15:11:37,773 [main] TRACE UmlClass - created (1481) WG14 CIM primitive <> Other::NonEmptyPrimitive +2024-09-08 15:11:37,773 [main] TRACE UmlClass - created (1537) WG14 CIM datatype <> Other::AnotherBadDatatype +2024-09-08 15:11:37,773 [main] TRACE UmlClass - created (1538) WG14 CIM compound <> Other::EmptyCompound +2024-09-08 15:11:37,777 [main] TRACE UmlClass - created (1555) WG10 IEC61850 other 61850 WG10::WG10UMLVersion +2024-09-08 15:11:37,777 [main] TRACE UmlClass - created (1586) WG10 IEC61850 unknown 61850 <> GenericModel::CommAddress +2024-09-08 15:11:37,777 [main] TRACE UmlClass - created (1588) WG10 IEC61850 unknown 61850 <> GenericModel::GenAssociationID +2024-09-08 15:11:37,777 [main] TRACE UmlClass - created (1597) WG10 IEC61850 enumeration <> GenericModel::GenFC +2024-09-08 15:11:37,778 [main] TRACE UmlClass - created (1609) WG10 IEC61850 enumeration <> GenericModel::GenPresenceConditions +2024-09-08 15:11:37,778 [main] TRACE UmlSkipped - created (2173) WG10 IEC61850 note link GenPresenceConditions. - ? - ? +2024-09-08 15:11:37,778 [main] TRACE UmlClass - created (1614) WG10 IEC61850 unknown 61850 <> GenericModel::GenTimeStamp +2024-09-08 15:11:37,782 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1585) WG10 IEC61850 null GenericModel::AccessPoint +2024-09-08 15:11:37,783 [main] TRACE UmlClass - created (1585) WG10 IEC61850 other 61850 GenericModel::AccessPoint +2024-09-08 15:11:37,783 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1587) WG10 IEC61850 null GenericModel::FileSystem +2024-09-08 15:11:37,783 [main] TRACE UmlClass - created (1587) WG10 IEC61850 other 61850 GenericModel::FileSystem +2024-09-08 15:11:37,783 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1589) WG10 IEC61850 null GenericModel::GenAtomicType +2024-09-08 15:11:37,783 [main] TRACE UmlClass - created (1589) WG10 IEC61850 other 61850 GenericModel::GenAtomicType +2024-09-08 15:11:37,783 [main] TRACE UmlSkipped - created (2177) WG10 IEC61850 note link GenAtomicType. - ? - ? +2024-09-08 15:11:37,783 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1590) WG10 IEC61850 null GenericModel::GenBOOLEAN +2024-09-08 15:11:37,783 [main] TRACE UmlClass - created (1590) WG10 IEC61850 other 61850 GenericModel::GenBOOLEAN +2024-09-08 15:11:37,783 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1591) WG10 IEC61850 null GenericModel::GenCommonDataClass +2024-09-08 15:11:37,783 [main] TRACE UmlClass - created (1591) WG10 IEC61850 other 61850 GenericModel::GenCommonDataClass +2024-09-08 15:11:37,783 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1592) WG10 IEC61850 null GenericModel::GenCompactType +2024-09-08 15:11:37,784 [main] TRACE UmlClass - created (1592) WG10 IEC61850 other 61850 GenericModel::GenCompactType +2024-09-08 15:11:37,784 [main] TRACE UmlSkipped - created (2172) WG10 IEC61850 note link GenCompactType. - ? - ? +2024-09-08 15:11:37,784 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1593) WG10 IEC61850 null GenericModel::GenConstructedType +2024-09-08 15:11:37,784 [main] TRACE UmlClass - created (1593) WG10 IEC61850 other 61850 GenericModel::GenConstructedType +2024-09-08 15:11:37,784 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1594) WG10 IEC61850 null GenericModel::GenDataAttribute +2024-09-08 15:11:37,784 [main] TRACE UmlClass - created (1594) WG10 IEC61850 other 61850 GenericModel::GenDataAttribute +2024-09-08 15:11:37,784 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1595) WG10 IEC61850 null GenericModel::GenDataObject +2024-09-08 15:11:37,784 [main] TRACE UmlClass - created (1595) WG10 IEC61850 other 61850 GenericModel::GenDataObject +2024-09-08 15:11:37,784 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1596) WG10 IEC61850 null GenericModel::GenDataSet +2024-09-08 15:11:37,784 [main] TRACE UmlClass - created (1596) WG10 IEC61850 other 61850 GenericModel::GenDataSet +2024-09-08 15:11:37,784 [main] TRACE UmlSkipped - created (2175) WG10 IEC61850 note link GenDataSet. - ? - ? +2024-09-08 15:11:37,784 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1598) WG10 IEC61850 null GenericModel::GenFCD +2024-09-08 15:11:37,784 [main] TRACE UmlClass - created (1598) WG10 IEC61850 other 61850 GenericModel::GenFCD +2024-09-08 15:11:37,785 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1599) WG10 IEC61850 null GenericModel::GenFCDA +2024-09-08 15:11:37,785 [main] TRACE UmlClass - created (1599) WG10 IEC61850 other 61850 GenericModel::GenFCDA +2024-09-08 15:11:37,785 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1600) WG10 IEC61850 null GenericModel::GenFile +2024-09-08 15:11:37,785 [main] TRACE UmlClass - created (1600) WG10 IEC61850 other 61850 GenericModel::GenFile +2024-09-08 15:11:37,785 [main] TRACE UmlSkipped - created (2174) WG10 IEC61850 note link GenFile. - ? - ? +2024-09-08 15:11:37,785 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1601) WG10 IEC61850 null GenericModel::GenIED +2024-09-08 15:11:37,785 [main] TRACE UmlClass - created (1601) WG10 IEC61850 other 61850 GenericModel::GenIED +2024-09-08 15:11:37,785 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1602) WG10 IEC61850 null GenericModel::GenINT32U +2024-09-08 15:11:37,785 [main] TRACE UmlClass - created (1602) WG10 IEC61850 other 61850 GenericModel::GenINT32U +2024-09-08 15:11:37,785 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1604) WG10 IEC61850 null GenericModel::GenLogicalDevice +2024-09-08 15:11:37,786 [main] TRACE UmlClass - created (1604) WG10 IEC61850 other 61850 GenericModel::GenLogicalDevice +2024-09-08 15:11:37,786 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1605) WG10 IEC61850 null GenericModel::GenLogicalNode +2024-09-08 15:11:37,786 [main] TRACE UmlClass - created (1605) WG10 IEC61850 other 61850 GenericModel::GenLogicalNode +2024-09-08 15:11:37,786 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1606) WG10 IEC61850 null GenericModel::GenMCAA +2024-09-08 15:11:37,786 [main] TRACE UmlClass - created (1606) WG10 IEC61850 other 61850 GenericModel::GenMCAA +2024-09-08 15:11:37,786 [main] TRACE UmlSkipped - created (2179) WG10 IEC61850 note link GenMCAA. - ? - ? +2024-09-08 15:11:37,786 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1607) WG10 IEC61850 null GenericModel::GenObjRef +2024-09-08 15:11:37,786 [main] TRACE UmlClass - created (1607) WG10 IEC61850 other 61850 GenericModel::GenObjRef +2024-09-08 15:11:37,786 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1608) WG10 IEC61850 null GenericModel::GenObjectName +2024-09-08 15:11:37,786 [main] TRACE UmlClass - created (1608) WG10 IEC61850 other 61850 GenericModel::GenObjectName +2024-09-08 15:11:37,786 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1610) WG10 IEC61850 null GenericModel::GenServer +2024-09-08 15:11:37,787 [main] TRACE UmlClass - created (1610) WG10 IEC61850 other 61850 GenericModel::GenServer +2024-09-08 15:11:37,787 [main] TRACE UmlSkipped - created (2176) WG10 IEC61850 note link GenServer. - ? - ? +2024-09-08 15:11:37,787 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1611) WG10 IEC61850 null GenericModel::GenSubDataAttribute +2024-09-08 15:11:37,787 [main] TRACE UmlClass - created (1611) WG10 IEC61850 other 61850 GenericModel::GenSubDataAttribute +2024-09-08 15:11:37,787 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1612) WG10 IEC61850 null GenericModel::GenSubDataObject +2024-09-08 15:11:37,787 [main] TRACE UmlClass - created (1612) WG10 IEC61850 other 61850 GenericModel::GenSubDataObject +2024-09-08 15:11:37,787 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1613) WG10 IEC61850 null GenericModel::GenTPAA +2024-09-08 15:11:37,787 [main] TRACE UmlClass - created (1613) WG10 IEC61850 other 61850 GenericModel::GenTPAA +2024-09-08 15:11:37,787 [main] TRACE UmlSkipped - created (2178) WG10 IEC61850 note link GenTPAA. - ? - ? +2024-09-08 15:11:37,787 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1615) WG10 IEC61850 null GenericModel::GenTriggerConditions +2024-09-08 15:11:37,787 [main] TRACE UmlClass - created (1615) WG10 IEC61850 other 61850 GenericModel::GenTriggerConditions +2024-09-08 15:11:37,787 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1616) WG10 IEC61850 null GenericModel::GenVisString255 +2024-09-08 15:11:37,787 [main] TRACE UmlClass - created (1616) WG10 IEC61850 other 61850 GenericModel::GenVisString255 +2024-09-08 15:11:37,788 [main] TRACE UmlClass - created (1547) WG10 IEC61850 other 61850 IEC61850_7_2::IEC61850_7_2Namespace +2024-09-08 15:11:37,788 [main] TRACE UmlClass - created (1631) WG10 IEC61850 enumeration <> FunctionalConstraints::FcKind +2024-09-08 15:11:37,788 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,788 [main] TRACE UmlAttribute - created (3356) WG10 IEC61850 literal <> FunctionalConstraints::FcKind.ST +2024-09-08 15:11:37,788 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,788 [main] TRACE UmlAttribute - created (3357) WG10 IEC61850 literal <> FunctionalConstraints::FcKind.MX +2024-09-08 15:11:37,788 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,788 [main] TRACE UmlAttribute - created (3358) WG10 IEC61850 literal <> FunctionalConstraints::FcKind.SP +2024-09-08 15:11:37,788 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,788 [main] TRACE UmlAttribute - created (3359) WG10 IEC61850 literal <> FunctionalConstraints::FcKind.SV +2024-09-08 15:11:37,788 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,788 [main] TRACE UmlAttribute - created (3360) WG10 IEC61850 literal <> FunctionalConstraints::FcKind.CF +2024-09-08 15:11:37,788 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,788 [main] TRACE UmlAttribute - created (3361) WG10 IEC61850 literal <> FunctionalConstraints::FcKind.DC +2024-09-08 15:11:37,788 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,788 [main] TRACE UmlAttribute - created (3362) WG10 IEC61850 literal <> FunctionalConstraints::FcKind.SG +2024-09-08 15:11:37,788 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,788 [main] TRACE UmlAttribute - created (3363) WG10 IEC61850 literal <> FunctionalConstraints::FcKind.SE +2024-09-08 15:11:37,789 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,789 [main] TRACE UmlAttribute - created (3364) WG10 IEC61850 literal <> FunctionalConstraints::FcKind.SR +2024-09-08 15:11:37,789 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,789 [main] TRACE UmlAttribute - created (3365) WG10 IEC61850 literal <> FunctionalConstraints::FcKind.OR +2024-09-08 15:11:37,789 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,789 [main] TRACE UmlAttribute - created (3366) WG10 IEC61850 literal <> FunctionalConstraints::FcKind.BL +2024-09-08 15:11:37,789 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,789 [main] TRACE UmlAttribute - created (3367) WG10 IEC61850 literal <> FunctionalConstraints::FcKind.EX +2024-09-08 15:11:37,789 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,789 [main] TRACE UmlAttribute - created (3368) WG10 IEC61850 literal <> FunctionalConstraints::FcKind.XX +2024-09-08 15:11:37,789 [main] TRACE UmlClass - created (1633) WG10 IEC61850 enumeration <> TriggerOptions::TrgOpKind +2024-09-08 15:11:37,789 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,789 [main] TRACE UmlAttribute - created (3369) WG10 IEC61850 literal <> TriggerOptions::TrgOpKind.dchg +2024-09-08 15:11:37,789 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,789 [main] TRACE UmlAttribute - created (3370) WG10 IEC61850 literal <> TriggerOptions::TrgOpKind.qchg +2024-09-08 15:11:37,789 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,789 [main] TRACE UmlAttribute - created (3371) WG10 IEC61850 literal <> TriggerOptions::TrgOpKind.dupd +2024-09-08 15:11:37,789 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,790 [main] TRACE UmlAttribute - created (3372) WG10 IEC61850 literal <> TriggerOptions::TrgOpKind.dchg, dupd +2024-09-08 15:11:37,790 [main] TRACE UmlClass - created (1635) WG10 IEC61850 coded enumeration <> ACSIEnums::BsControlKind +2024-09-08 15:11:37,790 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-08 15:11:37,790 [main] TRACE UmlAttribute - created (3373) WG10 IEC61850 coded literal <> ACSIEnums::BsControlKind.stop = 0 +2024-09-08 15:11:37,790 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 15:11:37,790 [main] TRACE UmlAttribute - created (3374) WG10 IEC61850 coded literal <> ACSIEnums::BsControlKind.lower = 1 +2024-09-08 15:11:37,790 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-08 15:11:37,790 [main] TRACE UmlAttribute - created (3375) WG10 IEC61850 coded literal <> ACSIEnums::BsControlKind.higher = 2 +2024-09-08 15:11:37,790 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-08 15:11:37,790 [main] TRACE UmlAttribute - created (3376) WG10 IEC61850 coded literal <> ACSIEnums::BsControlKind.reserved = 3 +2024-09-08 15:11:37,790 [main] TRACE UmlClass - created (1636) WG10 IEC61850 coded enumeration <> ACSIEnums::DpStatusKind +2024-09-08 15:11:37,790 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-08 15:11:37,790 [main] TRACE UmlAttribute - created (3377) WG10 IEC61850 coded literal <> ACSIEnums::DpStatusKind.intermediateState = 0 +2024-09-08 15:11:37,790 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 15:11:37,790 [main] TRACE UmlAttribute - created (3378) WG10 IEC61850 coded literal <> ACSIEnums::DpStatusKind.offOrFalse = 1 +2024-09-08 15:11:37,790 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-08 15:11:37,790 [main] TRACE UmlAttribute - created (3379) WG10 IEC61850 coded literal <> ACSIEnums::DpStatusKind.onOrTrue = 2 +2024-09-08 15:11:37,790 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-08 15:11:37,790 [main] TRACE UmlAttribute - created (3380) WG10 IEC61850 coded literal <> ACSIEnums::DpStatusKind.badState = 3 +2024-09-08 15:11:37,790 [main] TRACE UmlClass - created (1653) WG10 IEC61850 basic <> CoreTypes::P_BOOLEAN +2024-09-08 15:11:37,791 [main] TRACE UmlClass - created (1659) WG10 IEC61850 basic <> CoreTypes::P_INT16U +2024-09-08 15:11:37,791 [main] TRACE UmlClass - created (1656) WG10 IEC61850 basic <> CoreTypes::P_INT32 +2024-09-08 15:11:37,791 [main] TRACE UmlClass - created (1661) WG10 IEC61850 basic <> CoreTypes::P_INT32U +2024-09-08 15:11:37,791 [main] TRACE UmlClass - created (1662) WG10 IEC61850 basic <> CoreTypes::P_FLOAT32 +2024-09-08 15:11:37,791 [main] TRACE UmlClass - created (1663) WG10 IEC61850 basic <> CoreTypes::P_UNICODE_STRING255 +2024-09-08 15:11:37,791 [main] TRACE UmlClass - created (1667) WG10 IEC61850 basic <> CoreTypes::P_VISIBLE_STRING255 +2024-09-08 15:11:37,791 [main] TRACE UmlClass - created (1668) WG10 IEC61850 basic <> CoreTypes::ObjectName +2024-09-08 15:11:37,791 [main] TRACE UmlClass - created (1669) WG10 IEC61850 abstract class basic <> CoreTypes::P_ObjectReference +2024-09-08 15:11:37,791 [main] TRACE UmlClass - created (1670) WG10 IEC61850 basic <> CoreTypes::P_PHYCOMADDR +2024-09-08 15:11:37,791 [main] TRACE UmlClass - created (1671) WG10 IEC61850 packed list <> CoreTypes::P_TimeStamp +2024-09-08 15:11:37,791 [main] TRACE UmlClass - created (1672) WG10 IEC61850 packed list <> CoreTypes::TimeQuality +2024-09-08 15:11:37,791 [main] TRACE UmlClass - created (1673) WG10 IEC61850 coded enumeration <> CoreTypes::TimeAccuracyKind +2024-09-08 15:11:37,791 [main] TRACE ValueRange - '7' has no separator indicating range. +2024-09-08 15:11:37,791 [main] TRACE UmlAttribute - created (3390) WG10 IEC61850 coded literal <> CoreTypes::TimeAccuracyKind.T0 = 7 +2024-09-08 15:11:37,791 [main] TRACE ValueRange - '10' has no separator indicating range. +2024-09-08 15:11:37,791 [main] TRACE UmlAttribute - created (3391) WG10 IEC61850 coded literal <> CoreTypes::TimeAccuracyKind.T1 = 10 +2024-09-08 15:11:37,791 [main] TRACE ValueRange - '14' has no separator indicating range. +2024-09-08 15:11:37,791 [main] TRACE UmlAttribute - created (3392) WG10 IEC61850 coded literal <> CoreTypes::TimeAccuracyKind.T2 = 14 +2024-09-08 15:11:37,791 [main] TRACE ValueRange - '16' has no separator indicating range. +2024-09-08 15:11:37,791 [main] TRACE UmlAttribute - created (3393) WG10 IEC61850 coded literal <> CoreTypes::TimeAccuracyKind.T3 = 16 +2024-09-08 15:11:37,791 [main] TRACE ValueRange - '18' has no separator indicating range. +2024-09-08 15:11:37,791 [main] TRACE UmlAttribute - created (3394) WG10 IEC61850 coded literal <> CoreTypes::TimeAccuracyKind.T4 = 18 +2024-09-08 15:11:37,791 [main] TRACE ValueRange - '20' has no separator indicating range. +2024-09-08 15:11:37,791 [main] TRACE UmlAttribute - created (3395) WG10 IEC61850 coded literal <> CoreTypes::TimeAccuracyKind.T5 = 20 +2024-09-08 15:11:37,791 [main] TRACE ValueRange - '31' has no separator indicating range. +2024-09-08 15:11:37,792 [main] TRACE UmlAttribute - created (3396) WG10 IEC61850 coded literal <> CoreTypes::TimeAccuracyKind.unspecified = 31 +2024-09-08 15:11:37,792 [main] TRACE UmlClass - created (1674) WG10 IEC61850 packed list <> CoreTypes::P_TriggerConditions +2024-09-08 15:11:37,792 [main] TRACE UmlClass - created (1699) WG10 IEC61850 enumeration <> ObjectReferences::ServiceFcKind +2024-09-08 15:11:37,792 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,792 [main] TRACE UmlAttribute - created (3416) WG10 IEC61850 literal <> ObjectReferences::ServiceFcKind.SP +2024-09-08 15:11:37,792 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,792 [main] TRACE UmlAttribute - created (3417) WG10 IEC61850 literal <> ObjectReferences::ServiceFcKind.BR +2024-09-08 15:11:37,792 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,792 [main] TRACE UmlAttribute - created (3418) WG10 IEC61850 literal <> ObjectReferences::ServiceFcKind.RP +2024-09-08 15:11:37,792 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,792 [main] TRACE UmlAttribute - created (3419) WG10 IEC61850 literal <> ObjectReferences::ServiceFcKind.LG +2024-09-08 15:11:37,792 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,792 [main] TRACE UmlAttribute - created (3420) WG10 IEC61850 literal <> ObjectReferences::ServiceFcKind.GO +2024-09-08 15:11:37,792 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,792 [main] TRACE UmlAttribute - created (3421) WG10 IEC61850 literal <> ObjectReferences::ServiceFcKind.MS +2024-09-08 15:11:37,792 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,792 [main] TRACE UmlAttribute - created (3422) WG10 IEC61850 literal <> ObjectReferences::ServiceFcKind.US +2024-09-08 15:11:37,792 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,792 [main] TRACE UmlAttribute - created (3423) WG10 IEC61850 literal <> ObjectReferences::ServiceFcKind.XX +2024-09-08 15:11:37,793 [main] TRACE UmlClass - created (1714) WG10 IEC61850 enumeration <> AttrValues::AttrValueKind +2024-09-08 15:11:37,793 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,793 [main] TRACE UmlAttribute - created (3436) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_BOOLEAN +2024-09-08 15:11:37,793 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,793 [main] TRACE UmlAttribute - created (3437) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_INT8 +2024-09-08 15:11:37,793 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,793 [main] TRACE UmlAttribute - created (3438) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_INT8U +2024-09-08 15:11:37,793 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,793 [main] TRACE UmlAttribute - created (3439) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_INT16 +2024-09-08 15:11:37,793 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,793 [main] TRACE UmlAttribute - created (3440) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_INT16U +2024-09-08 15:11:37,793 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,793 [main] TRACE UmlAttribute - created (3441) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_INT24U +2024-09-08 15:11:37,793 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,793 [main] TRACE UmlAttribute - created (3442) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_INT32 +2024-09-08 15:11:37,793 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,793 [main] TRACE UmlAttribute - created (3443) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_INT32U +2024-09-08 15:11:37,793 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,793 [main] TRACE UmlAttribute - created (3444) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_INT64 +2024-09-08 15:11:37,794 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,794 [main] TRACE UmlAttribute - created (3445) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_FLOAT32 +2024-09-08 15:11:37,794 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,794 [main] TRACE UmlAttribute - created (3446) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_OCTET_STRING64 +2024-09-08 15:11:37,794 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,794 [main] TRACE UmlAttribute - created (3447) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_VISIBLE_STRING64 +2024-09-08 15:11:37,794 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,794 [main] TRACE UmlAttribute - created (3448) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_VISIBLE_STRING255 +2024-09-08 15:11:37,794 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,794 [main] TRACE UmlAttribute - created (3449) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_UNICODE_STRING255 +2024-09-08 15:11:37,794 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,794 [main] TRACE UmlAttribute - created (3450) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_TimeStamp +2024-09-08 15:11:37,794 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,794 [main] TRACE UmlAttribute - created (3451) WG10 IEC61850 literal <> AttrValues::AttrValueKind.Quality +2024-09-08 15:11:37,794 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,794 [main] TRACE UmlAttribute - created (3452) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_ObjectReference +2024-09-08 15:11:37,794 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,794 [main] TRACE UmlAttribute - created (3453) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_PHYCOMADDR +2024-09-08 15:11:37,794 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,794 [main] TRACE UmlAttribute - created (3454) WG10 IEC61850 literal <> AttrValues::AttrValueKind.P_TriggerConditions +2024-09-08 15:11:37,794 [main] DEBUG UmlClass - unclassified 7-2 class: (1715) WG10 IEC61850 abstract class null AttrValues::AttrValue +2024-09-08 15:11:37,794 [main] TRACE UmlClass - created (1715) WG10 IEC61850 abstract class other 61850 AttrValues::AttrValue +2024-09-08 15:11:37,795 [main] DEBUG UmlClass - unclassified 7-2 class: (1735) WG10 IEC61850 null AttrValues::AttrDefinition +2024-09-08 15:11:37,795 [main] TRACE UmlClass - created (1735) WG10 IEC61850 other 61850 AttrValues::AttrDefinition +2024-09-08 15:11:37,795 [main] DEBUG UmlClass - unclassified 7-2 class: (1736) WG10 IEC61850 null AttrValues::NamedAttrValue +2024-09-08 15:11:37,795 [main] TRACE UmlClass - created (1736) WG10 IEC61850 other 61850 AttrValues::NamedAttrValue +2024-09-08 15:11:37,795 [main] TRACE UmlClass - created (1770) WG10 IEC61850 basic <> CommonAcsiTypes::P_OCTET_STRING +2024-09-08 15:11:37,795 [main] DEBUG UmlClass - unclassified 7-2 class: (1771) WG10 IEC61850 null CommonAcsiTypes::IPAddress +2024-09-08 15:11:37,795 [main] TRACE UmlClass - created (1771) WG10 IEC61850 other 61850 CommonAcsiTypes::IPAddress +2024-09-08 15:11:37,795 [main] DEBUG UmlClass - unclassified 7-2 class: (1772) WG10 IEC61850 null CommonAcsiTypes::MulticastAddress +2024-09-08 15:11:37,795 [main] TRACE UmlClass - created (1772) WG10 IEC61850 other 61850 CommonAcsiTypes::MulticastAddress +2024-09-08 15:11:37,795 [main] DEBUG UmlClass - unclassified 7-2 class: (1773) WG10 IEC61850 null CommonAcsiTypes::Authentication +2024-09-08 15:11:37,795 [main] TRACE UmlClass - created (1773) WG10 IEC61850 other 61850 CommonAcsiTypes::Authentication +2024-09-08 15:11:37,795 [main] DEBUG UmlClass - unclassified 7-2 class: (1774) WG10 IEC61850 protected null CommonAcsiTypes::AccessView +2024-09-08 15:11:37,795 [main] TRACE UmlClass - created (1774) WG10 IEC61850 protected other 61850 CommonAcsiTypes::AccessView +2024-09-08 15:11:37,795 [main] TRACE UmlClass - created (1775) WG10 IEC61850 basic <> CommonAcsiTypes::ReportID +2024-09-08 15:11:37,795 [main] TRACE UmlClass - created (1776) WG10 IEC61850 basic <> CommonAcsiTypes::EntryID +2024-09-08 15:11:37,795 [main] TRACE UmlClass - created (1777) WG10 IEC61850 basic <> CommonAcsiTypes::EntryTime +2024-09-08 15:11:37,795 [main] DEBUG UmlClass - unclassified 7-2 class: (1835) WG10 IEC61850 abstract class null MetaModel::IEC61850Object +2024-09-08 15:11:37,795 [main] TRACE UmlClass - created (1835) WG10 IEC61850 abstract class other 61850 MetaModel::IEC61850Object +2024-09-08 15:11:37,796 [main] DEBUG UmlClass - unclassified 7-2 class: (1863) WG10 IEC61850 abstract class null MetaModel::SUBSTITUTION +2024-09-08 15:11:37,796 [main] TRACE UmlClass - created (1863) WG10 IEC61850 abstract class other 61850 MetaModel::SUBSTITUTION +2024-09-08 15:11:37,796 [main] DEBUG UmlClass - unclassified 7-2 class: (1875) WG10 IEC61850 abstract class null MetaModel::CONTROL +2024-09-08 15:11:37,796 [main] TRACE UmlClass - created (1875) WG10 IEC61850 abstract class other 61850 MetaModel::CONTROL +2024-09-08 15:11:37,796 [main] DEBUG UmlClass - unclassified 7-2 class: (1876) WG10 IEC61850 null MetaModel::TIME +2024-09-08 15:11:37,796 [main] TRACE UmlClass - created (1876) WG10 IEC61850 other 61850 MetaModel::TIME +2024-09-08 15:11:37,796 [main] TRACE UmlClass - created (1550) WG10 IEC61850 other 61850 IEC61850_7_3::IEC61850_7_3Namespace +2024-09-08 15:11:37,796 [main] TRACE UmlClass - created (2011) WG10 IEC61850 presence condition enumeration <> PresenceConditions::PresenceCondition +2024-09-08 15:11:37,796 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,796 [main] TRACE UmlAttribute - created (3644) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.M +2024-09-08 15:11:37,796 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,796 [main] TRACE UmlAttribute - created (3645) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.O +2024-09-08 15:11:37,796 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,796 [main] TRACE UmlAttribute - created (3646) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MFsubst +2024-09-08 15:11:37,796 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,796 [main] TRACE UmlAttribute - created (3647) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.AtLeastOne(n) +2024-09-08 15:11:37,796 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,796 [main] TRACE UmlAttribute - created (3648) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.AllOrNonePerGroup(n) +2024-09-08 15:11:37,796 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,796 [main] TRACE UmlAttribute - created (3649) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.AtMostOne +2024-09-08 15:11:37,797 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,797 [main] TRACE UmlAttribute - created (3650) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MF(sibling) +2024-09-08 15:11:37,797 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,797 [main] TRACE UmlAttribute - created (3651) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.AllOnlyOneGroup(n) +2024-09-08 15:11:37,797 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,797 [main] TRACE UmlAttribute - created (3652) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MOln0 +2024-09-08 15:11:37,797 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,797 [main] TRACE UmlAttribute - created (3653) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MFln0 +2024-09-08 15:11:37,797 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,797 [main] TRACE UmlAttribute - created (3654) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MOlnNs +2024-09-08 15:11:37,797 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,797 [main] TRACE UmlAttribute - created (3655) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MOdataNs +2024-09-08 15:11:37,797 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,797 [main] TRACE UmlAttribute - created (3656) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MOcdcNs +2024-09-08 15:11:37,797 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,797 [main] TRACE UmlAttribute - created (3657) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MFscaledAV +2024-09-08 15:11:37,797 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,797 [main] TRACE UmlAttribute - created (3658) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MFscaledMagV +2024-09-08 15:11:37,797 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,797 [main] TRACE UmlAttribute - created (3659) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MFscaledAngV +2024-09-08 15:11:37,797 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,797 [main] TRACE UmlAttribute - created (3660) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MFsg +2024-09-08 15:11:37,797 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,797 [main] TRACE UmlAttribute - created (3661) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.OFsg +2024-09-08 15:11:37,797 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,797 [main] TRACE UmlAttribute - created (3662) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MFsgAtLeastOne +2024-09-08 15:11:37,797 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,797 [main] TRACE UmlAttribute - created (3663) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MFnsg +2024-09-08 15:11:37,797 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,797 [main] TRACE UmlAttribute - created (3664) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.OFnsg +2024-09-08 15:11:37,798 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,798 [main] TRACE UmlAttribute - created (3665) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MFnsgAtLeastOne +2024-09-08 15:11:37,798 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,798 [main] TRACE UmlAttribute - created (3666) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MFrms +2024-09-08 15:11:37,798 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,798 [main] TRACE UmlAttribute - created (3667) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.Mmulti +2024-09-08 15:11:37,798 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,798 [main] TRACE UmlAttribute - created (3668) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.Omulti +2024-09-08 15:11:37,798 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,798 [main] TRACE UmlAttribute - created (3669) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.OmultiRange(min, max) +2024-09-08 15:11:37,798 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,798 [main] TRACE UmlAttribute - created (3670) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MOcond(condID) +2024-09-08 15:11:37,798 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,798 [main] TRACE UmlAttribute - created (3671) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MF(condID) +2024-09-08 15:11:37,798 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,798 [main] TRACE UmlAttribute - created (3672) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.OF(condID) +2024-09-08 15:11:37,798 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,798 [main] TRACE UmlAttribute - created (3673) WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MOrootLD +2024-09-08 15:11:37,798 [main] TRACE UmlClass - created (2045) WG10 IEC61850 enumeration <> DAEnums::SIUnitKind +2024-09-08 15:11:37,798 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 15:11:37,798 [main] TRACE UmlAttribute - created (3834) WG10 IEC61850 literal <> DAEnums::SIUnitKind.none = 1 +2024-09-08 15:11:37,798 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-08 15:11:37,798 [main] TRACE UmlAttribute - created (3835) WG10 IEC61850 literal <> DAEnums::SIUnitKind.m = 2 +2024-09-08 15:11:37,798 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-08 15:11:37,798 [main] TRACE UmlAttribute - created (3836) WG10 IEC61850 literal <> DAEnums::SIUnitKind.kg = 3 +2024-09-08 15:11:37,799 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-08 15:11:37,799 [main] TRACE UmlAttribute - created (3837) WG10 IEC61850 literal <> DAEnums::SIUnitKind.s = 4 +2024-09-08 15:11:37,799 [main] TRACE ValueRange - '5' has no separator indicating range. +2024-09-08 15:11:37,799 [main] TRACE UmlAttribute - created (3838) WG10 IEC61850 literal <> DAEnums::SIUnitKind.A = 5 +2024-09-08 15:11:37,799 [main] TRACE ValueRange - '6' has no separator indicating range. +2024-09-08 15:11:37,799 [main] TRACE UmlAttribute - created (3839) WG10 IEC61850 literal <> DAEnums::SIUnitKind.K = 6 +2024-09-08 15:11:37,799 [main] TRACE ValueRange - '7' has no separator indicating range. +2024-09-08 15:11:37,799 [main] TRACE UmlAttribute - created (3840) WG10 IEC61850 literal <> DAEnums::SIUnitKind.mol = 7 +2024-09-08 15:11:37,799 [main] TRACE ValueRange - '8' has no separator indicating range. +2024-09-08 15:11:37,799 [main] TRACE UmlAttribute - created (3841) WG10 IEC61850 literal <> DAEnums::SIUnitKind.cd = 8 +2024-09-08 15:11:37,799 [main] TRACE ValueRange - '9' has no separator indicating range. +2024-09-08 15:11:37,799 [main] TRACE UmlAttribute - created (3842) WG10 IEC61850 literal <> DAEnums::SIUnitKind.deg = 9 +2024-09-08 15:11:37,799 [main] TRACE ValueRange - '10' has no separator indicating range. +2024-09-08 15:11:37,799 [main] TRACE UmlAttribute - created (3843) WG10 IEC61850 literal <> DAEnums::SIUnitKind.rad = 10 +2024-09-08 15:11:37,799 [main] TRACE ValueRange - '11' has no separator indicating range. +2024-09-08 15:11:37,799 [main] TRACE UmlAttribute - created (3844) WG10 IEC61850 literal <> DAEnums::SIUnitKind.sr = 11 +2024-09-08 15:11:37,799 [main] TRACE ValueRange - '21' has no separator indicating range. +2024-09-08 15:11:37,799 [main] TRACE UmlAttribute - created (3845) WG10 IEC61850 literal <> DAEnums::SIUnitKind.Gy = 21 +2024-09-08 15:11:37,799 [main] TRACE ValueRange - '22' has no separator indicating range. +2024-09-08 15:11:37,799 [main] TRACE UmlAttribute - created (3846) WG10 IEC61850 literal <> DAEnums::SIUnitKind.Bq = 22 +2024-09-08 15:11:37,799 [main] TRACE ValueRange - '23' has no separator indicating range. +2024-09-08 15:11:37,799 [main] TRACE UmlAttribute - created (3847) WG10 IEC61850 literal <> DAEnums::SIUnitKind.°C = 23 +2024-09-08 15:11:37,799 [main] TRACE ValueRange - '24' has no separator indicating range. +2024-09-08 15:11:37,799 [main] TRACE UmlAttribute - created (3848) WG10 IEC61850 literal <> DAEnums::SIUnitKind.Sv = 24 +2024-09-08 15:11:37,799 [main] TRACE ValueRange - '25' has no separator indicating range. +2024-09-08 15:11:37,799 [main] TRACE UmlAttribute - created (3849) WG10 IEC61850 literal <> DAEnums::SIUnitKind.F = 25 +2024-09-08 15:11:37,799 [main] TRACE ValueRange - '26' has no separator indicating range. +2024-09-08 15:11:37,800 [main] TRACE UmlAttribute - created (3850) WG10 IEC61850 literal <> DAEnums::SIUnitKind.C = 26 +2024-09-08 15:11:37,800 [main] TRACE ValueRange - '27' has no separator indicating range. +2024-09-08 15:11:37,800 [main] TRACE UmlAttribute - created (3851) WG10 IEC61850 literal <> DAEnums::SIUnitKind.S = 27 +2024-09-08 15:11:37,800 [main] TRACE ValueRange - '28' has no separator indicating range. +2024-09-08 15:11:37,800 [main] TRACE UmlAttribute - created (3852) WG10 IEC61850 literal <> DAEnums::SIUnitKind.H = 28 +2024-09-08 15:11:37,800 [main] TRACE ValueRange - '29' has no separator indicating range. +2024-09-08 15:11:37,800 [main] TRACE UmlAttribute - created (3853) WG10 IEC61850 literal <> DAEnums::SIUnitKind.V = 29 +2024-09-08 15:11:37,800 [main] TRACE ValueRange - '30' has no separator indicating range. +2024-09-08 15:11:37,800 [main] TRACE UmlAttribute - created (3854) WG10 IEC61850 literal <> DAEnums::SIUnitKind.ohm = 30 +2024-09-08 15:11:37,800 [main] TRACE ValueRange - '31' has no separator indicating range. +2024-09-08 15:11:37,800 [main] TRACE UmlAttribute - created (3855) WG10 IEC61850 literal <> DAEnums::SIUnitKind.J = 31 +2024-09-08 15:11:37,800 [main] TRACE ValueRange - '32' has no separator indicating range. +2024-09-08 15:11:37,800 [main] TRACE UmlAttribute - created (3856) WG10 IEC61850 literal <> DAEnums::SIUnitKind.N = 32 +2024-09-08 15:11:37,800 [main] TRACE ValueRange - '33' has no separator indicating range. +2024-09-08 15:11:37,800 [main] TRACE UmlAttribute - created (3857) WG10 IEC61850 literal <> DAEnums::SIUnitKind.Hz = 33 +2024-09-08 15:11:37,800 [main] TRACE ValueRange - '34' has no separator indicating range. +2024-09-08 15:11:37,800 [main] TRACE UmlAttribute - created (3858) WG10 IEC61850 literal <> DAEnums::SIUnitKind.lx = 34 +2024-09-08 15:11:37,800 [main] TRACE ValueRange - '35' has no separator indicating range. +2024-09-08 15:11:37,800 [main] TRACE UmlAttribute - created (3859) WG10 IEC61850 literal <> DAEnums::SIUnitKind.Lm = 35 +2024-09-08 15:11:37,800 [main] TRACE ValueRange - '36' has no separator indicating range. +2024-09-08 15:11:37,800 [main] TRACE UmlAttribute - created (3860) WG10 IEC61850 literal <> DAEnums::SIUnitKind.Wb = 36 +2024-09-08 15:11:37,800 [main] TRACE ValueRange - '37' has no separator indicating range. +2024-09-08 15:11:37,800 [main] TRACE UmlAttribute - created (3861) WG10 IEC61850 literal <> DAEnums::SIUnitKind.T = 37 +2024-09-08 15:11:37,800 [main] TRACE ValueRange - '38' has no separator indicating range. +2024-09-08 15:11:37,800 [main] TRACE UmlAttribute - created (3862) WG10 IEC61850 literal <> DAEnums::SIUnitKind.W = 38 +2024-09-08 15:11:37,800 [main] TRACE ValueRange - '39' has no separator indicating range. +2024-09-08 15:11:37,800 [main] TRACE UmlAttribute - created (3863) WG10 IEC61850 literal <> DAEnums::SIUnitKind.Pa = 39 +2024-09-08 15:11:37,800 [main] TRACE ValueRange - '41' has no separator indicating range. +2024-09-08 15:11:37,800 [main] TRACE UmlAttribute - created (3864) WG10 IEC61850 literal <> DAEnums::SIUnitKind.m² = 41 +2024-09-08 15:11:37,800 [main] TRACE ValueRange - '42' has no separator indicating range. +2024-09-08 15:11:37,800 [main] TRACE UmlAttribute - created (3865) WG10 IEC61850 literal <> DAEnums::SIUnitKind.m³ = 42 +2024-09-08 15:11:37,801 [main] TRACE ValueRange - '43' has no separator indicating range. +2024-09-08 15:11:37,801 [main] TRACE UmlAttribute - created (3866) WG10 IEC61850 literal <> DAEnums::SIUnitKind.m/s = 43 +2024-09-08 15:11:37,801 [main] TRACE ValueRange - '44' has no separator indicating range. +2024-09-08 15:11:37,801 [main] TRACE UmlAttribute - created (3867) WG10 IEC61850 literal <> DAEnums::SIUnitKind.m/s² = 44 +2024-09-08 15:11:37,801 [main] TRACE ValueRange - '45' has no separator indicating range. +2024-09-08 15:11:37,801 [main] TRACE UmlAttribute - created (3868) WG10 IEC61850 literal <> DAEnums::SIUnitKind.m³/s = 45 +2024-09-08 15:11:37,801 [main] TRACE ValueRange - '46' has no separator indicating range. +2024-09-08 15:11:37,801 [main] TRACE UmlAttribute - created (3869) WG10 IEC61850 literal <> DAEnums::SIUnitKind.m/m³ = 46 +2024-09-08 15:11:37,801 [main] TRACE ValueRange - '47' has no separator indicating range. +2024-09-08 15:11:37,801 [main] TRACE UmlAttribute - created (3870) WG10 IEC61850 literal <> DAEnums::SIUnitKind.M = 47 +2024-09-08 15:11:37,801 [main] TRACE ValueRange - '48' has no separator indicating range. +2024-09-08 15:11:37,801 [main] TRACE UmlAttribute - created (3871) WG10 IEC61850 literal <> DAEnums::SIUnitKind.kg/m³ = 48 +2024-09-08 15:11:37,801 [main] TRACE ValueRange - '49' has no separator indicating range. +2024-09-08 15:11:37,801 [main] TRACE UmlAttribute - created (3872) WG10 IEC61850 literal <> DAEnums::SIUnitKind.m²/s = 49 +2024-09-08 15:11:37,801 [main] TRACE ValueRange - '50' has no separator indicating range. +2024-09-08 15:11:37,801 [main] TRACE UmlAttribute - created (3873) WG10 IEC61850 literal <> DAEnums::SIUnitKind.W/m K = 50 +2024-09-08 15:11:37,801 [main] TRACE ValueRange - '51' has no separator indicating range. +2024-09-08 15:11:37,801 [main] TRACE UmlAttribute - created (3874) WG10 IEC61850 literal <> DAEnums::SIUnitKind.J/K = 51 +2024-09-08 15:11:37,801 [main] TRACE ValueRange - '52' has no separator indicating range. +2024-09-08 15:11:37,801 [main] TRACE UmlAttribute - created (3875) WG10 IEC61850 literal <> DAEnums::SIUnitKind.ppm = 52 +2024-09-08 15:11:37,801 [main] TRACE ValueRange - '53' has no separator indicating range. +2024-09-08 15:11:37,801 [main] TRACE UmlAttribute - created (3876) WG10 IEC61850 literal <> DAEnums::SIUnitKind.1/s = 53 +2024-09-08 15:11:37,801 [main] TRACE ValueRange - '54' has no separator indicating range. +2024-09-08 15:11:37,801 [main] TRACE UmlAttribute - created (3877) WG10 IEC61850 literal <> DAEnums::SIUnitKind.rad/s = 54 +2024-09-08 15:11:37,801 [main] TRACE ValueRange - '55' has no separator indicating range. +2024-09-08 15:11:37,801 [main] TRACE UmlAttribute - created (3878) WG10 IEC61850 literal <> DAEnums::SIUnitKind.W/m² = 55 +2024-09-08 15:11:37,801 [main] TRACE ValueRange - '56' has no separator indicating range. +2024-09-08 15:11:37,801 [main] TRACE UmlAttribute - created (3879) WG10 IEC61850 literal <> DAEnums::SIUnitKind.J/m² = 56 +2024-09-08 15:11:37,801 [main] TRACE ValueRange - '57' has no separator indicating range. +2024-09-08 15:11:37,801 [main] TRACE UmlAttribute - created (3880) WG10 IEC61850 literal <> DAEnums::SIUnitKind.S/m = 57 +2024-09-08 15:11:37,801 [main] TRACE ValueRange - '58' has no separator indicating range. +2024-09-08 15:11:37,801 [main] TRACE UmlAttribute - created (3881) WG10 IEC61850 literal <> DAEnums::SIUnitKind.K/s = 58 +2024-09-08 15:11:37,801 [main] TRACE ValueRange - '59' has no separator indicating range. +2024-09-08 15:11:37,802 [main] TRACE UmlAttribute - created (3882) WG10 IEC61850 literal <> DAEnums::SIUnitKind.Pa/s = 59 +2024-09-08 15:11:37,802 [main] TRACE ValueRange - '60' has no separator indicating range. +2024-09-08 15:11:37,802 [main] TRACE UmlAttribute - created (3883) WG10 IEC61850 literal <> DAEnums::SIUnitKind.J/kg K = 60 +2024-09-08 15:11:37,802 [main] TRACE ValueRange - '61' has no separator indicating range. +2024-09-08 15:11:37,802 [main] TRACE UmlAttribute - created (3884) WG10 IEC61850 literal <> DAEnums::SIUnitKind.VA = 61 +2024-09-08 15:11:37,802 [main] TRACE ValueRange - '62' has no separator indicating range. +2024-09-08 15:11:37,802 [main] TRACE UmlAttribute - created (3885) WG10 IEC61850 literal <> DAEnums::SIUnitKind.Watts = 62 +2024-09-08 15:11:37,802 [main] TRACE ValueRange - '63' has no separator indicating range. +2024-09-08 15:11:37,802 [main] TRACE UmlAttribute - created (3886) WG10 IEC61850 literal <> DAEnums::SIUnitKind.VAr = 63 +2024-09-08 15:11:37,802 [main] TRACE ValueRange - '64' has no separator indicating range. +2024-09-08 15:11:37,802 [main] TRACE UmlAttribute - created (3887) WG10 IEC61850 literal <> DAEnums::SIUnitKind.phi = 64 +2024-09-08 15:11:37,802 [main] TRACE ValueRange - '65' has no separator indicating range. +2024-09-08 15:11:37,802 [main] TRACE UmlAttribute - created (3888) WG10 IEC61850 literal <> DAEnums::SIUnitKind.cos(phi) = 65 +2024-09-08 15:11:37,802 [main] TRACE ValueRange - '66' has no separator indicating range. +2024-09-08 15:11:37,802 [main] TRACE UmlAttribute - created (3889) WG10 IEC61850 literal <> DAEnums::SIUnitKind.Vs = 66 +2024-09-08 15:11:37,802 [main] TRACE ValueRange - '67' has no separator indicating range. +2024-09-08 15:11:37,802 [main] TRACE UmlAttribute - created (3890) WG10 IEC61850 literal <> DAEnums::SIUnitKind.V² = 67 +2024-09-08 15:11:37,802 [main] TRACE ValueRange - '68' has no separator indicating range. +2024-09-08 15:11:37,802 [main] TRACE UmlAttribute - created (3891) WG10 IEC61850 literal <> DAEnums::SIUnitKind.As = 68 +2024-09-08 15:11:37,802 [main] TRACE ValueRange - '69' has no separator indicating range. +2024-09-08 15:11:37,802 [main] TRACE UmlAttribute - created (3892) WG10 IEC61850 literal <> DAEnums::SIUnitKind.A² = 69 +2024-09-08 15:11:37,802 [main] TRACE ValueRange - '70' has no separator indicating range. +2024-09-08 15:11:37,802 [main] TRACE UmlAttribute - created (3893) WG10 IEC61850 literal <> DAEnums::SIUnitKind.A²t = 70 +2024-09-08 15:11:37,802 [main] TRACE ValueRange - '71' has no separator indicating range. +2024-09-08 15:11:37,802 [main] TRACE UmlAttribute - created (3894) WG10 IEC61850 literal <> DAEnums::SIUnitKind.VAh = 71 +2024-09-08 15:11:37,802 [main] TRACE ValueRange - '72' has no separator indicating range. +2024-09-08 15:11:37,802 [main] TRACE UmlAttribute - created (3895) WG10 IEC61850 literal <> DAEnums::SIUnitKind.Wh = 72 +2024-09-08 15:11:37,802 [main] TRACE ValueRange - '73' has no separator indicating range. +2024-09-08 15:11:37,802 [main] TRACE UmlAttribute - created (3896) WG10 IEC61850 literal <> DAEnums::SIUnitKind.VArh = 73 +2024-09-08 15:11:37,803 [main] TRACE ValueRange - '74' has no separator indicating range. +2024-09-08 15:11:37,803 [main] TRACE UmlAttribute - created (3897) WG10 IEC61850 literal <> DAEnums::SIUnitKind.V/Hz = 74 +2024-09-08 15:11:37,803 [main] TRACE ValueRange - '75' has no separator indicating range. +2024-09-08 15:11:37,803 [main] TRACE UmlAttribute - created (3898) WG10 IEC61850 literal <> DAEnums::SIUnitKind.Hz/s = 75 +2024-09-08 15:11:37,803 [main] TRACE ValueRange - '76' has no separator indicating range. +2024-09-08 15:11:37,803 [main] TRACE UmlAttribute - created (3899) WG10 IEC61850 literal <> DAEnums::SIUnitKind.char = 76 +2024-09-08 15:11:37,803 [main] TRACE ValueRange - '77' has no separator indicating range. +2024-09-08 15:11:37,803 [main] TRACE UmlAttribute - created (3900) WG10 IEC61850 literal <> DAEnums::SIUnitKind.char/s = 77 +2024-09-08 15:11:37,803 [main] TRACE ValueRange - '78' has no separator indicating range. +2024-09-08 15:11:37,803 [main] TRACE UmlAttribute - created (3901) WG10 IEC61850 literal <> DAEnums::SIUnitKind.kgm² = 78 +2024-09-08 15:11:37,803 [main] TRACE ValueRange - '79' has no separator indicating range. +2024-09-08 15:11:37,803 [main] TRACE UmlAttribute - created (3902) WG10 IEC61850 literal <> DAEnums::SIUnitKind.dB = 79 +2024-09-08 15:11:37,803 [main] TRACE ValueRange - '80' has no separator indicating range. +2024-09-08 15:11:37,803 [main] TRACE UmlAttribute - created (3903) WG10 IEC61850 literal <> DAEnums::SIUnitKind.J/Wh = 80 +2024-09-08 15:11:37,803 [main] TRACE ValueRange - '81' has no separator indicating range. +2024-09-08 15:11:37,803 [main] TRACE UmlAttribute - created (3904) WG10 IEC61850 literal <> DAEnums::SIUnitKind.W/s = 81 +2024-09-08 15:11:37,803 [main] TRACE ValueRange - '82' has no separator indicating range. +2024-09-08 15:11:37,803 [main] TRACE UmlAttribute - created (3905) WG10 IEC61850 literal <> DAEnums::SIUnitKind.l/s = 82 +2024-09-08 15:11:37,803 [main] TRACE ValueRange - '83' has no separator indicating range. +2024-09-08 15:11:37,803 [main] TRACE UmlAttribute - created (3906) WG10 IEC61850 literal <> DAEnums::SIUnitKind.dBm = 83 +2024-09-08 15:11:37,803 [main] TRACE UmlClass - created (2044) WG10 IEC61850 enumeration <> DAEnums::MultiplierKind +2024-09-08 15:11:37,803 [main] TRACE ValueRange - '-24' has no separator indicating range. +2024-09-08 15:11:37,804 [main] TRACE UmlAttribute - created (3813) WG10 IEC61850 literal <> DAEnums::MultiplierKind.y = -24 +2024-09-08 15:11:37,804 [main] TRACE ValueRange - '-21' has no separator indicating range. +2024-09-08 15:11:37,804 [main] TRACE UmlAttribute - created (3814) WG10 IEC61850 literal <> DAEnums::MultiplierKind.z = -21 +2024-09-08 15:11:37,804 [main] TRACE ValueRange - '-18' has no separator indicating range. +2024-09-08 15:11:37,804 [main] TRACE UmlAttribute - created (3815) WG10 IEC61850 literal <> DAEnums::MultiplierKind.a = -18 +2024-09-08 15:11:37,804 [main] TRACE ValueRange - '-15' has no separator indicating range. +2024-09-08 15:11:37,804 [main] TRACE UmlAttribute - created (3816) WG10 IEC61850 literal <> DAEnums::MultiplierKind.f = -15 +2024-09-08 15:11:37,804 [main] TRACE ValueRange - '-12' has no separator indicating range. +2024-09-08 15:11:37,804 [main] TRACE UmlAttribute - created (3817) WG10 IEC61850 literal <> DAEnums::MultiplierKind.p = -12 +2024-09-08 15:11:37,804 [main] TRACE ValueRange - '-9' has no separator indicating range. +2024-09-08 15:11:37,804 [main] TRACE UmlAttribute - created (3818) WG10 IEC61850 literal <> DAEnums::MultiplierKind.n = -9 +2024-09-08 15:11:37,804 [main] TRACE ValueRange - '-6' has no separator indicating range. +2024-09-08 15:11:37,804 [main] TRACE UmlAttribute - created (3819) WG10 IEC61850 literal <> DAEnums::MultiplierKind.µ = -6 +2024-09-08 15:11:37,804 [main] TRACE ValueRange - '-3' has no separator indicating range. +2024-09-08 15:11:37,804 [main] TRACE UmlAttribute - created (3820) WG10 IEC61850 literal <> DAEnums::MultiplierKind.m = -3 +2024-09-08 15:11:37,804 [main] TRACE ValueRange - '-2' has no separator indicating range. +2024-09-08 15:11:37,804 [main] TRACE UmlAttribute - created (3821) WG10 IEC61850 literal <> DAEnums::MultiplierKind.c = -2 +2024-09-08 15:11:37,804 [main] TRACE ValueRange - '-1' has no separator indicating range. +2024-09-08 15:11:37,804 [main] TRACE UmlAttribute - created (3822) WG10 IEC61850 literal <> DAEnums::MultiplierKind.d = -1 +2024-09-08 15:11:37,804 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-08 15:11:37,804 [main] TRACE UmlAttribute - created (3823) WG10 IEC61850 literal <> DAEnums::MultiplierKind.none = 0 +2024-09-08 15:11:37,804 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 15:11:37,804 [main] TRACE UmlAttribute - created (3824) WG10 IEC61850 literal <> DAEnums::MultiplierKind.da = 1 +2024-09-08 15:11:37,804 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-08 15:11:37,804 [main] TRACE UmlAttribute - created (3825) WG10 IEC61850 literal <> DAEnums::MultiplierKind.h = 2 +2024-09-08 15:11:37,804 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-08 15:11:37,804 [main] TRACE UmlAttribute - created (3826) WG10 IEC61850 literal <> DAEnums::MultiplierKind.k = 3 +2024-09-08 15:11:37,804 [main] TRACE ValueRange - '6' has no separator indicating range. +2024-09-08 15:11:37,804 [main] TRACE UmlAttribute - created (3827) WG10 IEC61850 literal <> DAEnums::MultiplierKind.M = 6 +2024-09-08 15:11:37,804 [main] TRACE ValueRange - '9' has no separator indicating range. +2024-09-08 15:11:37,804 [main] TRACE UmlAttribute - created (3828) WG10 IEC61850 literal <> DAEnums::MultiplierKind.G = 9 +2024-09-08 15:11:37,804 [main] TRACE ValueRange - '12' has no separator indicating range. +2024-09-08 15:11:37,804 [main] TRACE UmlAttribute - created (3829) WG10 IEC61850 literal <> DAEnums::MultiplierKind.T = 12 +2024-09-08 15:11:37,805 [main] TRACE ValueRange - '15' has no separator indicating range. +2024-09-08 15:11:37,805 [main] TRACE UmlAttribute - created (3830) WG10 IEC61850 literal <> DAEnums::MultiplierKind.P = 15 +2024-09-08 15:11:37,805 [main] TRACE ValueRange - '18' has no separator indicating range. +2024-09-08 15:11:37,805 [main] TRACE UmlAttribute - created (3831) WG10 IEC61850 literal <> DAEnums::MultiplierKind.E = 18 +2024-09-08 15:11:37,805 [main] TRACE ValueRange - '21' has no separator indicating range. +2024-09-08 15:11:37,805 [main] TRACE UmlAttribute - created (3832) WG10 IEC61850 literal <> DAEnums::MultiplierKind.Z = 21 +2024-09-08 15:11:37,805 [main] TRACE ValueRange - '24' has no separator indicating range. +2024-09-08 15:11:37,805 [main] TRACE UmlAttribute - created (3833) WG10 IEC61850 literal <> DAEnums::MultiplierKind.Y = 24 +2024-09-08 15:11:37,805 [main] TRACE UmlClass - created (2035) WG10 IEC61850 enumeration <> DAEnums::PhaseFaultDirectionKind +2024-09-08 15:11:37,805 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-08 15:11:37,805 [main] TRACE UmlAttribute - created (3727) WG10 IEC61850 literal <> DAEnums::PhaseFaultDirectionKind.unknown = 0 +2024-09-08 15:11:37,805 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 15:11:37,805 [main] TRACE UmlAttribute - created (3728) WG10 IEC61850 literal <> DAEnums::PhaseFaultDirectionKind.forward = 1 +2024-09-08 15:11:37,805 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-08 15:11:37,805 [main] TRACE UmlAttribute - created (3729) WG10 IEC61850 literal <> DAEnums::PhaseFaultDirectionKind.backward = 2 +2024-09-08 15:11:37,805 [main] TRACE UmlClass - created (2039) WG10 IEC61850 enumeration <> DAEnums::PhaseAngleReferenceKind +2024-09-08 15:11:37,805 [main] TRACE UmlSkipped - created (2214) WG10 IEC61850 note link PhaseAngleReferenceKind. - ? - ? +2024-09-08 15:11:37,805 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-08 15:11:37,805 [main] TRACE UmlAttribute - created (3744) WG10 IEC61850 literal <> DAEnums::PhaseAngleReferenceKind.Va = 0 +2024-09-08 15:11:37,805 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 15:11:37,805 [main] TRACE UmlAttribute - created (3745) WG10 IEC61850 literal <> DAEnums::PhaseAngleReferenceKind.Vb = 1 +2024-09-08 15:11:37,805 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-08 15:11:37,805 [main] TRACE UmlAttribute - created (3746) WG10 IEC61850 literal <> DAEnums::PhaseAngleReferenceKind.Vc = 2 +2024-09-08 15:11:37,805 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-08 15:11:37,805 [main] TRACE UmlAttribute - created (3747) WG10 IEC61850 literal <> DAEnums::PhaseAngleReferenceKind.Aa = 3 +2024-09-08 15:11:37,805 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-08 15:11:37,805 [main] TRACE UmlAttribute - created (3748) WG10 IEC61850 literal <> DAEnums::PhaseAngleReferenceKind.Ab = 4 +2024-09-08 15:11:37,805 [main] TRACE ValueRange - '5' has no separator indicating range. +2024-09-08 15:11:37,805 [main] TRACE UmlAttribute - created (3749) WG10 IEC61850 literal <> DAEnums::PhaseAngleReferenceKind.Ac = 5 +2024-09-08 15:11:37,806 [main] TRACE ValueRange - '6' has no separator indicating range. +2024-09-08 15:11:37,806 [main] TRACE UmlAttribute - created (3750) WG10 IEC61850 literal <> DAEnums::PhaseAngleReferenceKind.Vab = 6 +2024-09-08 15:11:37,806 [main] TRACE ValueRange - '7' has no separator indicating range. +2024-09-08 15:11:37,806 [main] TRACE UmlAttribute - created (3751) WG10 IEC61850 literal <> DAEnums::PhaseAngleReferenceKind.Vbc = 7 +2024-09-08 15:11:37,806 [main] TRACE ValueRange - '8' has no separator indicating range. +2024-09-08 15:11:37,806 [main] TRACE UmlAttribute - created (3752) WG10 IEC61850 literal <> DAEnums::PhaseAngleReferenceKind.Vca = 8 +2024-09-08 15:11:37,806 [main] TRACE ValueRange - '9' has no separator indicating range. +2024-09-08 15:11:37,806 [main] TRACE UmlAttribute - created (3753) WG10 IEC61850 literal <> DAEnums::PhaseAngleReferenceKind.Vother = 9 +2024-09-08 15:11:37,806 [main] TRACE ValueRange - '10' has no separator indicating range. +2024-09-08 15:11:37,806 [main] TRACE UmlAttribute - created (3754) WG10 IEC61850 literal <> DAEnums::PhaseAngleReferenceKind.Aother = 10 +2024-09-08 15:11:37,806 [main] TRACE ValueRange - '11' has no separator indicating range. +2024-09-08 15:11:37,806 [main] TRACE UmlAttribute - created (3755) WG10 IEC61850 literal <> DAEnums::PhaseAngleReferenceKind.Synchrophasor = 11 +2024-09-08 15:11:37,806 [main] TRACE UmlClass - created (2086) WG10 IEC61850 coded enumeration <> ConstructedDAs::ValidityKind +2024-09-08 15:11:37,806 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-08 15:11:37,806 [main] TRACE UmlAttribute - created (4094) WG10 IEC61850 coded literal <> ConstructedDAs::ValidityKind.good = 0 +2024-09-08 15:11:37,806 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 15:11:37,806 [main] TRACE UmlAttribute - created (4095) WG10 IEC61850 coded literal <> ConstructedDAs::ValidityKind.invalid = 1 +2024-09-08 15:11:37,806 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-08 15:11:37,806 [main] TRACE UmlAttribute - created (4096) WG10 IEC61850 coded literal <> ConstructedDAs::ValidityKind.reserved = 2 +2024-09-08 15:11:37,806 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-08 15:11:37,806 [main] TRACE UmlAttribute - created (4097) WG10 IEC61850 coded literal <> ConstructedDAs::ValidityKind.questionable = 3 +2024-09-08 15:11:37,806 [main] TRACE UmlClass - created (2087) WG10 IEC61850 packed list <> ConstructedDAs::DetailQual +2024-09-08 15:11:37,806 [main] TRACE UmlClass - created (2088) WG10 IEC61850 coded enumeration <> ConstructedDAs::SourceKind +2024-09-08 15:11:37,806 [main] TRACE ValueRange - '0' has no separator indicating range. +2024-09-08 15:11:37,806 [main] TRACE UmlAttribute - created (4106) WG10 IEC61850 coded literal <> ConstructedDAs::SourceKind.process = 0 +2024-09-08 15:11:37,806 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 15:11:37,806 [main] TRACE UmlAttribute - created (4107) WG10 IEC61850 coded literal <> ConstructedDAs::SourceKind.substituted = 1 +2024-09-08 15:11:37,807 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (3071) WG10 IEC61850 null CDCControl::SPC +2024-09-08 15:11:37,807 [main] TRACE UmlClass - created (3071) WG10 IEC61850 other 61850 CDCControl::SPC +2024-09-08 15:11:37,807 [main] TRACE UmlClass - created (1551) WG10 IEC61850 other 61850 IEC61850_7_4::IEC61850_7_4Namespace +2024-09-08 15:11:37,807 [main] TRACE UmlClass - created (2335) WG10 IEC61850 abbreviation enumeration <> Abbreviations::AbbrTermAny +2024-09-08 15:11:37,807 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,807 [main] TRACE UmlAttribute - created (4656) WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.A +2024-09-08 15:11:37,807 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,807 [main] TRACE UmlAttribute - created (5118) WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.Z +2024-09-08 15:11:37,807 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,807 [main] TRACE UmlAttribute - created (6659) WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.aDummy +2024-09-08 15:11:37,807 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,807 [main] TRACE UmlAttribute - created (4669) WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.Alm +2024-09-08 15:11:37,807 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,807 [main] TRACE UmlAttribute - created (5120) WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.Z1 +2024-09-08 15:11:37,808 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,808 [main] TRACE UmlAttribute - created (4670) WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.Amp +2024-09-08 15:11:37,808 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,808 [main] TRACE UmlAttribute - created (6660) WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.ppm +2024-09-08 15:11:37,808 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,808 [main] TRACE UmlAttribute - created (6661) WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.km +2024-09-08 15:11:37,808 [main] TRACE UmlClass - created (2359) WG10 IEC61850 abbreviation enumeration <> Abbreviations::AbbrTermZ +2024-09-08 15:11:37,808 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,808 [main] TRACE UmlAttribute - created (5119) WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermZ.Z0 +2024-09-08 15:11:37,808 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,808 [main] TRACE UmlAttribute - created (5123) WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermZ.Zro +2024-09-08 15:11:37,808 [main] TRACE UmlClass - created (2368) WG10 IEC61850 function ProtectionEq::BusbarProt +2024-09-08 15:11:37,808 [main] TRACE UmlClass - created (2374) WG10 IEC61850 function ProtectionEq::DirectionalProt +2024-09-08 15:11:37,808 [main] TRACE UmlClass - created (2375) WG10 IEC61850 function ProtectionEq::DirectionalPowerProt +2024-09-08 15:11:37,808 [main] TRACE UmlClass - created (2385) WG10 IEC61850 function ProtectionEq::LineDifferentialProt +2024-09-08 15:11:37,808 [main] TRACE UmlClass - created (2394) WG10 IEC61850 function ProtectionEq::PowerFactorProt +2024-09-08 15:11:37,808 [main] TRACE UmlClass - created (2420) WG10 IEC61850 function ControlEq::AlarmHandler +2024-09-08 15:11:37,808 [main] TRACE UmlClass - created (2465) WG10 IEC61850 function MeasurementsAndMetering::ThreePhaseMeasurement +2024-09-08 15:11:37,808 [main] TRACE UmlClass - created (2475) WG10 IEC61850 function SystemWide::LogicalDeviceData +2024-09-08 15:11:37,809 [main] TRACE UmlClass - created (2477) WG10 IEC61850 function SystemWide::PhysicalDeviceData +2024-09-08 15:11:37,809 [main] TRACE UmlClass - created (2487) WG10 IEC61850 function PrimaryEq::AuxiliaryNetwork +2024-09-08 15:11:37,809 [main] TRACE UmlClass - created (2501) WG10 IEC61850 function PrimaryEq::GenericIO +2024-09-08 15:11:37,809 [main] TRACE UmlClass - created (2568) WG10 IEC61850 enumeration <> DOEnums::HealthKind +2024-09-08 15:11:37,809 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 15:11:37,809 [main] TRACE UmlAttribute - created (5150) WG10 IEC61850 literal <> DOEnums::HealthKind.Ok = 1 +2024-09-08 15:11:37,809 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-08 15:11:37,809 [main] TRACE UmlAttribute - created (5151) WG10 IEC61850 literal <> DOEnums::HealthKind.Warning = 2 +2024-09-08 15:11:37,809 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-08 15:11:37,809 [main] TRACE UmlAttribute - created (5152) WG10 IEC61850 literal <> DOEnums::HealthKind.Alarm = 3 +2024-09-08 15:11:37,809 [main] TRACE UmlClass - created (2564) WG10 IEC61850 enumeration <> DOEnums::BehaviourModeKind +2024-09-08 15:11:37,809 [main] TRACE UmlSkipped - created (2230) WG10 IEC61850 note link BehaviourModeKind. - ? - ? +2024-09-08 15:11:37,809 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 15:11:37,809 [main] TRACE UmlAttribute - created (5124) WG10 IEC61850 literal <> DOEnums::BehaviourModeKind.on = 1 +2024-09-08 15:11:37,809 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-08 15:11:37,809 [main] TRACE UmlAttribute - created (5125) WG10 IEC61850 literal <> DOEnums::BehaviourModeKind.on-blocked = 2 +2024-09-08 15:11:37,809 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-08 15:11:37,810 [main] TRACE UmlAttribute - created (5126) WG10 IEC61850 literal <> DOEnums::BehaviourModeKind.test = 3 +2024-09-08 15:11:37,810 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-08 15:11:37,810 [main] TRACE UmlAttribute - created (5127) WG10 IEC61850 literal <> DOEnums::BehaviourModeKind.test/blocked = 4 +2024-09-08 15:11:37,810 [main] TRACE ValueRange - '5' has no separator indicating range. +2024-09-08 15:11:37,810 [main] TRACE UmlAttribute - created (5128) WG10 IEC61850 literal <> DOEnums::BehaviourModeKind.off = 5 +2024-09-08 15:11:37,810 [main] TRACE UmlClass - created (2567) WG10 IEC61850 enumeration <> DOEnums::CalcMethodKind +2024-09-08 15:11:37,810 [main] TRACE UmlSkipped - created (2229) WG10 IEC61850 note link CalcMethodKind. - ? - ? +2024-09-08 15:11:37,810 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 15:11:37,810 [main] TRACE UmlAttribute - created (5140) WG10 IEC61850 literal <> DOEnums::CalcMethodKind.UNSPECIFIED = 1 +2024-09-08 15:11:37,810 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-08 15:11:37,810 [main] TRACE UmlAttribute - created (5141) WG10 IEC61850 literal <> DOEnums::CalcMethodKind.TRUE_RMS = 2 +2024-09-08 15:11:37,810 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-08 15:11:37,810 [main] TRACE UmlAttribute - created (5142) WG10 IEC61850 literal <> DOEnums::CalcMethodKind.PEAK_FUNDAMENTAL = 3 +2024-09-08 15:11:37,810 [main] TRACE ValueRange - '4' has no separator indicating range. +2024-09-08 15:11:37,810 [main] TRACE UmlAttribute - created (5143) WG10 IEC61850 literal <> DOEnums::CalcMethodKind.RMS_FUNDAMENTAL = 4 +2024-09-08 15:11:37,810 [main] TRACE ValueRange - '5' has no separator indicating range. +2024-09-08 15:11:37,810 [main] TRACE UmlAttribute - created (5144) WG10 IEC61850 literal <> DOEnums::CalcMethodKind.MIN = 5 +2024-09-08 15:11:37,810 [main] TRACE ValueRange - '6' has no separator indicating range. +2024-09-08 15:11:37,810 [main] TRACE UmlAttribute - created (5145) WG10 IEC61850 literal <> DOEnums::CalcMethodKind.MAX = 6 +2024-09-08 15:11:37,810 [main] TRACE ValueRange - '7' has no separator indicating range. +2024-09-08 15:11:37,810 [main] TRACE UmlAttribute - created (5146) WG10 IEC61850 literal <> DOEnums::CalcMethodKind.AVG = 7 +2024-09-08 15:11:37,810 [main] TRACE ValueRange - '8' has no separator indicating range. +2024-09-08 15:11:37,810 [main] TRACE UmlAttribute - created (5147) WG10 IEC61850 literal <> DOEnums::CalcMethodKind.SDV = 8 +2024-09-08 15:11:37,810 [main] TRACE ValueRange - '9' has no separator indicating range. +2024-09-08 15:11:37,810 [main] TRACE UmlAttribute - created (5148) WG10 IEC61850 literal <> DOEnums::CalcMethodKind.PREDICTION = 9 +2024-09-08 15:11:37,810 [main] TRACE ValueRange - '10' has no separator indicating range. +2024-09-08 15:11:37,810 [main] TRACE UmlAttribute - created (5149) WG10 IEC61850 literal <> DOEnums::CalcMethodKind.RATE = 10 +2024-09-08 15:11:37,810 [main] TRACE UmlClass - created (3090) WG10 IEC61850 enumeration <> DOEnums::BaseKind +2024-09-08 15:11:37,810 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,810 [main] TRACE UmlAttribute - created (6714) WG10 IEC61850 literal <> DOEnums::BaseKind.bk1 +2024-09-08 15:11:37,811 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,811 [main] TRACE UmlAttribute - created (6715) WG10 IEC61850 literal <> DOEnums::BaseKind.bk2 +2024-09-08 15:11:37,811 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,811 [main] TRACE UmlAttribute - created (6716) WG10 IEC61850 literal <> DOEnums::BaseKind.bk3 +2024-09-08 15:11:37,811 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (2671) WG10 IEC61850 null DerivedCDCs::ACTTransient +2024-09-08 15:11:37,811 [main] TRACE UmlClass - created (2671) WG10 IEC61850 other 61850 DerivedCDCs::ACTTransient +2024-09-08 15:11:37,811 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (2721) WG10 IEC61850 null DerivedCDCs::SPSTransient +2024-09-08 15:11:37,812 [main] TRACE UmlClass - created (2721) WG10 IEC61850 other 61850 DerivedCDCs::SPSTransient +2024-09-08 15:11:37,812 [main] TRACE UmlSkipped - created (3466) WG10 IEC61850 note link SPSTransient. - ? - ? +2024-09-08 15:11:37,812 [main] TRACE UmlClass - created (3070) WG17 IEC61850 other 61850 WG17::WG17UMLVersion +2024-09-08 15:11:37,812 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (3067) WG17 IEC61850 null IEC51850_7_420::IEC61850_7_420Namespace +2024-09-08 15:11:37,812 [main] TRACE UmlClass - created (3067) WG17 IEC61850 other 61850 IEC51850_7_420::IEC61850_7_420Namespace +2024-09-08 15:11:37,812 [main] TRACE UmlClass - created (3053) WG17 IEC61850 enumeration <> DOEnums_7_420::MaterialKind +2024-09-08 15:11:37,812 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 15:11:37,812 [main] TRACE UmlAttribute - created (6683) WG17 IEC61850 literal <> DOEnums_7_420::MaterialKind.mat1 = 1 +2024-09-08 15:11:37,812 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-08 15:11:37,812 [main] TRACE UmlAttribute - created (6684) WG17 IEC61850 literal <> DOEnums_7_420::MaterialKind.mat2 = 2 +2024-09-08 15:11:37,812 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-08 15:11:37,812 [main] TRACE UmlAttribute - created (6685) WG17 IEC61850 literal <> DOEnums_7_420::MaterialKind.mat3 = 3 +2024-09-08 15:11:37,812 [main] TRACE UmlClass - created (3087) WG17 IEC61850 enumeration <> DOEnums_7_420::MaterialTransitionKind +2024-09-08 15:11:37,813 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,813 [main] TRACE UmlAttribute - created (6710) WG17 IEC61850 literal DOEnums_7_420::MaterialTransitionKind.trans1 +2024-09-08 15:11:37,813 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,813 [main] TRACE UmlAttribute - created (6711) WG17 IEC61850 literal DOEnums_7_420::MaterialTransitionKind.trans2 +2024-09-08 15:11:37,813 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,813 [main] TRACE UmlAttribute - created (6712) WG17 IEC61850 literal DOEnums_7_420::MaterialTransitionKind.trans3 +2024-09-08 15:11:37,813 [main] TRACE UmlClass - created (3054) WG17 IEC61850 enumeration <> DOEnums_7_420::OtherKind +2024-09-08 15:11:37,813 [main] TRACE ValueRange - '1' has no separator indicating range. +2024-09-08 15:11:37,813 [main] TRACE UmlAttribute - created (6686) WG17 IEC61850 literal <> DOEnums_7_420::OtherKind.mat1 = 1 +2024-09-08 15:11:37,813 [main] TRACE ValueRange - '2' has no separator indicating range. +2024-09-08 15:11:37,813 [main] TRACE UmlAttribute - created (6687) WG17 IEC61850 literal <> DOEnums_7_420::OtherKind.mat2 = 2 +2024-09-08 15:11:37,813 [main] TRACE ValueRange - '3' has no separator indicating range. +2024-09-08 15:11:37,813 [main] TRACE UmlAttribute - created (6688) WG17 IEC61850 literal <> DOEnums_7_420::OtherKind.mat3 = 3 +2024-09-08 15:11:37,814 [main] TRACE UmlClass - created (3026) WG18 IEC61850 abbreviation enumeration <> Abbreviations_410::AbbrTermA +2024-09-08 15:11:37,814 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,814 [main] TRACE UmlAttribute - created (6640) WG18 IEC61850 abbreviated term <> Abbreviations_410::AbbrTermA.Abc +2024-09-08 15:11:37,814 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,814 [main] TRACE UmlAttribute - created (6641) WG18 IEC61850 abbreviated term <> Abbreviations_410::AbbrTermA.Alm2 +2024-09-08 15:11:37,814 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,814 [main] TRACE UmlAttribute - created (6642) WG18 IEC61850 abbreviated term <> Abbreviations_410::AbbrTermA.Amp +2024-09-08 15:11:37,814 [main] TRACE UmlClass - created (3077) OTHER_CIM CIM root class <> MyCimExtensions::DFD_External1 +2024-09-08 15:11:37,814 [main] TRACE UmlSkipped - created (3462) OTHER_CIM CIM other DFD_External1. - ? - ? +2024-09-08 15:11:37,814 [main] TRACE UmlClass - created (3078) OTHER_CIM CIM root class <> MyCimExtensions::DFD_DataStore1 +2024-09-08 15:11:37,814 [main] TRACE UmlSkipped - created (3461) OTHER_CIM CIM other DFD_DataStore1. - ? - ? +2024-09-08 15:11:37,814 [main] TRACE UmlClass - created (1489) OTHER_CIM CIM root class Ext1::Fruit +2024-09-08 15:11:37,814 [main] TRACE UmlClass - created (3034) OTHER_CIM CIM enumeration <> Ext1::FruitBinKind +2024-09-08 15:11:37,814 [main] TRACE UmlSkipped - created (3035) OTHER_CIM CIM other FruitBinKind.Strawberry +2024-09-08 15:11:37,814 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,814 [main] TRACE UmlAttribute - created (6650) OTHER_CIM CIM literal <> Ext1::FruitBinKind.plastic +2024-09-08 15:11:37,814 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,814 [main] TRACE UmlAttribute - created (6651) OTHER_CIM CIM literal <> Ext1::FruitBinKind.straw +2024-09-08 15:11:37,814 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,815 [main] TRACE UmlAttribute - created (6652) OTHER_CIM CIM literal <> Ext1::FruitBinKind.glass +2024-09-08 15:11:37,815 [main] TRACE UmlClass - created (3036) OTHER_CIM CIM root class Ext1::Village +2024-09-08 15:11:37,815 [main] TRACE UmlClass - created (1542) OTHER_CIM CIM root class Package with space::My class +2024-09-08 15:11:37,815 [main] TRACE UmlClass - created (1543) OTHER_CIM CIM root class Package with space::Other-with_invalid name +2024-09-08 15:11:37,815 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1491) OTHER_IEC61850 IEC61850 null Ext2::Animal +2024-09-08 15:11:37,815 [main] TRACE UmlClass - created (1491) OTHER_IEC61850 IEC61850 other 61850 Ext2::Animal +2024-09-08 15:11:37,815 [main] INFO EaModelBuilder - creating in-memory sub-classes recursively ... +2024-09-08 15:11:37,815 [main] TRACE UmlClass - created (797) WG13 CIM class <> Topology::BusNameMarker, 2 superclasses=[IdentifiedObject, InfClass2] +2024-09-08 15:11:37,815 [main] TRACE UmlSkipped - created (3) WG13 CIM note link BusNameMarker. - ? - ? +2024-09-08 15:11:37,815 [main] TRACE UmlSkipped - created (2093) WG13 CIM note link BusNameMarker. - ? - ? +2024-09-08 15:11:37,815 [main] TRACE UmlSkipped - created (2094) WG13 CIM note link BusNameMarker. - ? - ? +2024-09-08 15:11:37,815 [main] TRACE UmlClass - created (853) WG13 CIM class Core::Terminal, 1 superclasses=[IdentifiedObject] +2024-09-08 15:11:37,815 [main] TRACE UmlClass - created (3080) WG13 CIM class Topology::DumbSubterminal, 1 superclasses=[Terminal] +2024-09-08 15:11:37,815 [main] TRACE UmlClass - created (855) WG13 CIM class Core::BaseVoltage, 2 superclasses=[IdentifiedObject, BadDatatypes] +2024-09-08 15:11:37,815 [main] TRACE UmlClass - created (867) WG13 CIM class Core::BasePower, 1 superclasses=[IdentifiedObject] +2024-09-08 15:11:37,815 [main] TRACE UmlClass - created (875) WG13 CIM class Core::SubGeographicalRegion, 1 superclasses=[IdentifiedObject] +2024-09-08 15:11:37,816 [main] TRACE UmlClass - created (883) WG13 CIM class Core::geographicalRegion, 1 superclasses=[IdentifiedObject] +2024-09-08 15:11:37,816 [main] TRACE UmlClass - created (850) WG13 CIM compound <> Core::OperatingParticipant, 1 superclasses=[IdentifiedObject] +2024-09-08 15:11:37,816 [main] TRACE UmlClass - created (849) WG13 CIM class Core::PowerSystemResource, 1 superclasses=[IdentifiedObject] +2024-09-08 15:11:37,816 [main] TRACE UmlSkipped - created (1444) WG13 CIM state PowerSystemResource.DummyState +2024-09-08 15:11:37,816 [main] TRACE UmlDiagram - created (156) WG13 CIM statechart PowerSystemResource.PSR-statechart +2024-09-08 15:11:37,816 [main] TRACE UmlClass - created (871) WG13 CIM class Core::ConnectivityNodeContainer, 1 superclasses=[PowerSystemResource] +2024-09-08 15:11:37,816 [main] TRACE UmlClass - created (1490) OTHER_CIM CIM class <> Ext1::Pear, 1 superclasses=[Fruit] +2024-09-08 15:11:37,816 [main] TRACE UmlClass - created (881) WG13 CIM class Core::EquipmentContainer, 2 superclasses=[ConnectivityNodeContainer, Pear] +2024-09-08 15:11:37,816 [main] TRACE UmlClass - created (860) WG13 CIM class Core::Bay, 1 superclasses=[EquipmentContainer] +2024-09-08 15:11:37,816 [main] TRACE UmlClass - created (877) WG13 CIM class Core::Substation, 1 superclasses=[EquipmentContainer] +2024-09-08 15:11:37,816 [main] TRACE UmlClass - created (870) WG13 CIM class Core::VoltageLevel, 1 superclasses=[EquipmentContainer] +2024-09-08 15:11:37,816 [main] TRACE UmlClass - created (882) WG13 CIM class Core::Equipment, 1 superclasses=[PowerSystemResource] +2024-09-08 15:11:37,816 [main] TRACE UmlClass - created (864) WG13 CIM class Core::ConductingEquipment, 1 superclasses=[Equipment] +2024-09-08 15:11:37,816 [main] TRACE UmlSkipped - created (3470) WG13 CIM note link ConductingEquipment. - ? - ? +2024-09-08 15:11:37,816 [main] TRACE UmlClass - created (796) WG13 CIM class Topology::ConnectivityNode, 1 superclasses=[IdentifiedObject] +2024-09-08 15:11:37,816 [main] TRACE UmlSkipped - created (1) WG13 CIM note link ConnectivityNode.Switch/Node static Model - ? - ? +2024-09-08 15:11:37,816 [main] TRACE UmlClass - created (794) WG13 CIM class Topology::TopologicalIsland, 1 superclasses=[IdentifiedObject] +2024-09-08 15:11:37,816 [main] TRACE UmlSkipped - created (2095) WG13 CIM note link TopologicalIsland. - ? - ? +2024-09-08 15:11:37,817 [main] TRACE UmlClass - created (795) WG13 CIM class Topology::TopologicalNode, 1 superclasses=[IdentifiedObject] +2024-09-08 15:11:37,817 [main] TRACE UmlSkipped - created (2) WG13 CIM note link TopologicalNode.Bus/Branch calculated Model - ? - ? +2024-09-08 15:11:37,817 [main] TRACE UmlClass - created (1454) WG14 CIM abstract class class <> Other::MyClass, 1 superclasses=[BadDatatypes] +2024-09-08 15:11:37,817 [main] TRACE UmlSkipped - created (2114) WG14 CIM note link MyClass. - ? - ? +2024-09-08 15:11:37,817 [main] TRACE UmlSkipped - created (2119) WG14 CIM note link MyClass. - ? - ? +2024-09-08 15:11:37,817 [main] TRACE UmlClass - created (1482) WG14 CIM class Other::AttrDuplication, 1 superclasses=[MyClass] +2024-09-08 15:11:37,817 [main] TRACE UmlSkipped - created (2120) WG14 CIM note link AttrDuplication. - ? - ? +2024-09-08 15:11:37,817 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1617) WG10 IEC61850 null GenericModel::ServiceAccessPoint, 1 superclasses=[AccessPoint] +2024-09-08 15:11:37,817 [main] TRACE UmlClass - created (1617) WG10 IEC61850 other 61850 GenericModel::ServiceAccessPoint, 1 superclasses=[AccessPoint] +2024-09-08 15:11:37,817 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1603) WG10 IEC61850 null GenericModel::GenLN0, 1 superclasses=[GenLogicalNode] +2024-09-08 15:11:37,817 [main] TRACE UmlClass - created (1603) WG10 IEC61850 other 61850 GenericModel::GenLN0, 1 superclasses=[GenLogicalNode] +2024-09-08 15:11:37,817 [main] DEBUG UmlClass - unclassified 7-2 class: (1693) WG10 IEC61850 null ObjectReferences::FILEReference, 1 superclasses=[P_ObjectReference] +2024-09-08 15:11:37,817 [main] TRACE UmlClass - created (1693) WG10 IEC61850 other 61850 ObjectReferences::FILEReference, 1 superclasses=[P_ObjectReference] +2024-09-08 15:11:37,817 [main] DEBUG UmlClass - unclassified 7-2 class: (1694) WG10 IEC61850 null ObjectReferences::LDReference, 1 superclasses=[P_ObjectReference] +2024-09-08 15:11:37,817 [main] TRACE UmlClass - created (1694) WG10 IEC61850 other 61850 ObjectReferences::LDReference, 1 superclasses=[P_ObjectReference] +2024-09-08 15:11:37,818 [main] DEBUG UmlClass - unclassified 7-2 class: (1696) WG10 IEC61850 null ObjectReferences::LNReference, 1 superclasses=[LDReference] +2024-09-08 15:11:37,818 [main] TRACE UmlClass - created (1696) WG10 IEC61850 other 61850 ObjectReferences::LNReference, 1 superclasses=[LDReference] +2024-09-08 15:11:37,818 [main] DEBUG UmlClass - unclassified 7-2 class: (1697) WG10 IEC61850 null ObjectReferences::CDCReference, 1 superclasses=[LNReference] +2024-09-08 15:11:37,818 [main] TRACE UmlClass - created (1697) WG10 IEC61850 other 61850 ObjectReferences::CDCReference, 1 superclasses=[LNReference] +2024-09-08 15:11:37,818 [main] TRACE UmlSkipped - created (2192) WG10 IEC61850 note link CDCReference. - ? - ? +2024-09-08 15:11:37,818 [main] TRACE UmlSkipped - created (2200) WG10 IEC61850 note link CDCReference. - ? - ? +2024-09-08 15:11:37,818 [main] DEBUG UmlClass - unclassified 7-2 class: (1702) WG10 IEC61850 null ObjectReferences::FCDReference, 1 superclasses=[CDCReference] +2024-09-08 15:11:37,818 [main] TRACE UmlClass - created (1702) WG10 IEC61850 other 61850 ObjectReferences::FCDReference, 1 superclasses=[CDCReference] +2024-09-08 15:11:37,818 [main] DEBUG UmlClass - unclassified 7-2 class: (1703) WG10 IEC61850 null ObjectReferences::FCDAReference, 1 superclasses=[FCDReference] +2024-09-08 15:11:37,818 [main] TRACE UmlClass - created (1703) WG10 IEC61850 other 61850 ObjectReferences::FCDAReference, 1 superclasses=[FCDReference] +2024-09-08 15:11:37,818 [main] DEBUG UmlClass - unclassified 7-2 class: (1698) WG10 IEC61850 null ObjectReferences::CBReference, 1 superclasses=[LNReference] +2024-09-08 15:11:37,818 [main] TRACE UmlClass - created (1698) WG10 IEC61850 other 61850 ObjectReferences::CBReference, 1 superclasses=[LNReference] +2024-09-08 15:11:37,818 [main] DEBUG UmlClass - unclassified 7-2 class: (1700) WG10 IEC61850 null ObjectReferences::LOGReference, 1 superclasses=[LNReference] +2024-09-08 15:11:37,818 [main] TRACE UmlClass - created (1700) WG10 IEC61850 other 61850 ObjectReferences::LOGReference, 1 superclasses=[LNReference] +2024-09-08 15:11:37,818 [main] DEBUG UmlClass - unclassified 7-2 class: (1701) WG10 IEC61850 null ObjectReferences::LNOwnedDSReference, 1 superclasses=[LNReference] +2024-09-08 15:11:37,818 [main] TRACE UmlClass - created (1701) WG10 IEC61850 other 61850 ObjectReferences::LNOwnedDSReference, 1 superclasses=[LNReference] +2024-09-08 15:11:37,818 [main] TRACE UmlSkipped - created (2197) WG10 IEC61850 note link LNOwnedDSReference. - ? - ? +2024-09-08 15:11:37,819 [main] DEBUG UmlClass - unclassified 7-2 class: (1695) WG10 IEC61850 null ObjectReferences::NonPersistentDSReference, 1 superclasses=[P_ObjectReference] +2024-09-08 15:11:37,819 [main] TRACE UmlClass - created (1695) WG10 IEC61850 other 61850 ObjectReferences::NonPersistentDSReference, 1 superclasses=[P_ObjectReference] +2024-09-08 15:11:37,819 [main] DEBUG UmlClass - unclassified 7-2 class: (1836) WG10 IEC61850 abstract class null MetaModel::HierarchyIEC61850Object, 1 superclasses=[IEC61850Object] +2024-09-08 15:11:37,819 [main] TRACE UmlClass - created (1836) WG10 IEC61850 abstract class other 61850 MetaModel::HierarchyIEC61850Object, 1 superclasses=[IEC61850Object] +2024-09-08 15:11:37,819 [main] DEBUG UmlClass - unclassified 7-2 class: (1837) WG10 IEC61850 abstract class null MetaModel::NamedIEC61850Object, 1 superclasses=[HierarchyIEC61850Object] +2024-09-08 15:11:37,819 [main] TRACE UmlClass - created (1837) WG10 IEC61850 abstract class other 61850 MetaModel::NamedIEC61850Object, 1 superclasses=[HierarchyIEC61850Object] +2024-09-08 15:11:37,819 [main] DEBUG UmlClass - unclassified 7-2 class: (1842) WG10 IEC61850 null MetaModel::LD, 1 superclasses=[NamedIEC61850Object] +2024-09-08 15:11:37,819 [main] TRACE UmlClass - created (1842) WG10 IEC61850 other 61850 MetaModel::LD, 1 superclasses=[NamedIEC61850Object] +2024-09-08 15:11:37,819 [main] TRACE UmlClass - created (1843) WG10 IEC61850 abstract class LN MetaModel::LN, 1 superclasses=[NamedIEC61850Object] +2024-09-08 15:11:37,819 [main] TRACE UmlClass - created (1844) WG10 IEC61850 abstract class LN MetaModel::LNPHD, 1 superclasses=[LN] +2024-09-08 15:11:37,819 [main] TRACE UmlClass - created (2764) WG10 IEC61850 LN LNGroupL::LPHD, 1 superclasses=[LNPHD] +2024-09-08 15:11:37,819 [main] TRACE UmlSkipped - created (3454) WG10 IEC61850 note link LPHD. - ? - ? +2024-09-08 15:11:37,819 [main] TRACE UmlClass - created (1845) WG10 IEC61850 abstract class LN MetaModel::LN0, 1 superclasses=[LN] +2024-09-08 15:11:37,819 [main] TRACE UmlClass - created (2765) WG10 IEC61850 LN LNGroupL::LLN0, 1 superclasses=[LN0] +2024-09-08 15:11:37,819 [main] TRACE UmlClass - created (1846) WG10 IEC61850 abstract class LN MetaModel::LNDOM, 1 superclasses=[LN] +2024-09-08 15:11:37,820 [main] TRACE UmlClass - created (2728) WG10 IEC61850 abstract class LN <> LogicalNodes::DomainLN, 1 superclasses=[LNDOM] +2024-09-08 15:11:37,820 [main] TRACE UmlSkipped - created (2729) WG10 IEC61850 state machine DomainLN.behStateMachine +2024-09-08 15:11:37,820 [main] TRACE UmlDiagram - created (292) WG10 IEC61850 statechart DomainLN.Beh +2024-09-08 15:11:37,820 [main] TRACE UmlClass - created (2735) WG10 IEC61850 abstract class LN <> LogicalNodes::StatisticsLN, 1 superclasses=[DomainLN] +2024-09-08 15:11:37,820 [main] TRACE UmlSkipped - created (3465) WG10 IEC61850 note link StatisticsLN. - ? - ? +2024-09-08 15:11:37,820 [main] TRACE UmlClass - created (2815) WG10 IEC61850 LN LNGroupG::GGIO, 1 superclasses=[StatisticsLN] +2024-09-08 15:11:37,820 [main] TRACE UmlClass - created (2856) WG10 IEC61850 LN LNGroupM::MMXU, 1 superclasses=[StatisticsLN] +2024-09-08 15:11:37,820 [main] TRACE UmlSkipped - created (2154) WG10 IEC61850 note link MMXU. - ? - ? +2024-09-08 15:11:37,820 [main] TRACE UmlClass - created (2736) WG10 IEC61850 abstract class LN LogicalNodes::EquipmentInterfaceLN, 1 superclasses=[DomainLN] +2024-09-08 15:11:37,820 [main] TRACE UmlClass - created (3021) WG10 IEC61850 LN LNGroupZ::ZAXN, 1 superclasses=[EquipmentInterfaceLN] +2024-09-08 15:11:37,820 [main] TRACE UmlSkipped - created (3437) WG10 IEC61850 note link ZAXN. - ? - ? +2024-09-08 15:11:37,820 [main] TRACE UmlClass - created (3030) WG10 IEC61850 LN LNGroupL::KXYZ, 1 superclasses=[DomainLN] +2024-09-08 15:11:37,820 [main] TRACE UmlSkipped - created (3425) WG10 IEC61850 note link KXYZ. - ? - ? +2024-09-08 15:11:37,820 [main] TRACE UmlClass - created (2788) WG10 IEC61850 LN LNGroupC::CALH, 1 superclasses=[DomainLN] +2024-09-08 15:11:37,820 [main] TRACE UmlSkipped - created (3438) WG10 IEC61850 note link CALH. - ? - ? +2024-09-08 15:11:37,820 [main] TRACE UmlClass - created (2872) WG10 IEC61850 abstract class LN LNGroupP::ProtectionLN, 1 superclasses=[DomainLN] +2024-09-08 15:11:37,820 [main] TRACE UmlClass - created (2881) WG10 IEC61850 LN LNGroupP::PDIF, 1 superclasses=[ProtectionLN] +2024-09-08 15:11:37,820 [main] TRACE UmlClass - created (2883) WG10 IEC61850 LN LNGroupP::PDIS, 1 superclasses=[ProtectionLN] +2024-09-08 15:11:37,820 [main] TRACE UmlSkipped - created (2884) WG10 IEC61850 boundary PDIS. +2024-09-08 15:11:37,820 [main] TRACE UmlSkipped - created (2885) WG10 IEC61850 boundary PDIS. +2024-09-08 15:11:37,820 [main] TRACE UmlSkipped - created (2886) WG10 IEC61850 boundary PDIS. +2024-09-08 15:11:37,820 [main] TRACE UmlDiagram - created (307) WG10 IEC61850 custom PDIS.Load area and reach settings +2024-09-08 15:11:37,820 [main] TRACE UmlClass - created (3041) WG10 IEC61850 LN LNGroupP::PDISExt, 1 superclasses=[PDIS] +2024-09-08 15:11:37,821 [main] TRACE UmlClass - created (3042) WG10 IEC61850 LN LNGroupP::PDF2, 1 superclasses=[ProtectionLN] +2024-09-08 15:11:37,821 [main] TRACE UmlClass - created (2938) WG10 IEC61850 LN LNGroupR::RDIR, 1 superclasses=[DomainLN] +2024-09-08 15:11:37,821 [main] DEBUG UmlClass - unclassified 7-2 class: (1847) WG10 IEC61850 abstract class null MetaModel::CDC, 1 superclasses=[NamedIEC61850Object] +2024-09-08 15:11:37,821 [main] TRACE UmlClass - created (1847) WG10 IEC61850 abstract class other 61850 MetaModel::CDC, 1 superclasses=[NamedIEC61850Object] +2024-09-08 15:11:37,821 [main] TRACE UmlClass - created (1848) WG10 IEC61850 abstract class primitive CDC MetaModel::PrimitiveCDC, 1 superclasses=[CDC] +2024-09-08 15:11:37,821 [main] TRACE UmlClass - created (2234) WG10 IEC61850 abstract class primitive CDC CommonDataClasses::BasePrimitiveCDC, 1 superclasses=[PrimitiveCDC] +2024-09-08 15:11:37,821 [main] TRACE UmlSkipped - created (2163) WG10 IEC61850 note link BasePrimitiveCDC. - ? - ? +2024-09-08 15:11:37,821 [main] TRACE UmlClass - created (1995) WG10 IEC61850 abstract class primitive CDC CDCServiceTracking::CST, 1 superclasses=[BasePrimitiveCDC] +2024-09-08 15:11:37,821 [main] TRACE UmlSkipped - created (2204) WG10 IEC61850 note link CST. - ? - ? +2024-09-08 15:11:37,821 [main] TRACE UmlClass - created (1996) WG10 IEC61850 primitive CDC CDCServiceTracking::BTS, 1 superclasses=[CST] +2024-09-08 15:11:37,821 [main] TRACE UmlClass - created (1997) WG10 IEC61850 control tracking CDC CDCServiceTracking::CTS, 1 superclasses=[CST] +2024-09-08 15:11:37,821 [main] TRACE UmlClass - created (1998) WG10 IEC61850 primitive CDC CDCServiceTracking::GTS, 1 superclasses=[CST] +2024-09-08 15:11:37,821 [main] TRACE UmlClass - created (1999) WG10 IEC61850 primitive CDC CDCServiceTracking::LTS, 1 superclasses=[CST] +2024-09-08 15:11:37,821 [main] TRACE UmlClass - created (2000) WG10 IEC61850 primitive CDC CDCServiceTracking::MTS, 1 superclasses=[CST] +2024-09-08 15:11:37,821 [main] TRACE UmlClass - created (2001) WG10 IEC61850 primitive CDC CDCServiceTracking::NTS, 1 superclasses=[CST] +2024-09-08 15:11:37,821 [main] TRACE UmlClass - created (2002) WG10 IEC61850 primitive CDC CDCServiceTracking::OTS, 1 superclasses=[CST] +2024-09-08 15:11:37,821 [main] TRACE UmlClass - created (2003) WG10 IEC61850 primitive CDC CDCServiceTracking::STS, 1 superclasses=[CST] +2024-09-08 15:11:37,821 [main] TRACE UmlClass - created (2004) WG10 IEC61850 primitive CDC CDCServiceTracking::UTS, 1 superclasses=[CST] +2024-09-08 15:11:37,822 [main] TRACE UmlClass - created (2236) WG10 IEC61850 abstract class primitive CDC CommonDataClasses::SubstitutionCDC, 1 superclasses=[BasePrimitiveCDC] +2024-09-08 15:11:37,822 [main] TRACE UmlSkipped - created (2237) WG10 IEC61850 boundary SubstitutionCDC. +2024-09-08 15:11:37,822 [main] TRACE UmlDiagram - created (246) WG10 IEC61850 custom SubstitutionCDC.Concept of substitution +2024-09-08 15:11:37,822 [main] TRACE UmlClass - created (2248) WG10 IEC61850 primitive CDC CDCStatusInfo::DPS, 1 superclasses=[SubstitutionCDC] +2024-09-08 15:11:37,822 [main] TRACE UmlClass - created (2250) WG10 IEC61850 abstract class enumeration CDC CDCStatusInfo::ENS, 1 superclasses=[SubstitutionCDC] +2024-09-08 15:11:37,822 [main] TRACE UmlClass - created (2707) WG10 IEC61850 enumeration CDC DerivedCDCs::ENSBehaviourMode, 1 superclasses=[ENS] +2024-09-08 15:11:37,822 [main] TRACE UmlClass - created (2712) WG10 IEC61850 enumeration CDC DerivedCDCs::ENSHealth, 1 superclasses=[ENS] +2024-09-08 15:11:37,825 [main] TRACE UmlClass - created (3073) WG10 IEC61850 abstract class enumeration CDC DerivedCDCs::ENSEnumDA, 1 superclasses=[ENS] +2024-09-08 15:11:37,825 [main] TRACE UmlClass - created (3060) WG17 IEC61850 enumeration CDC DerivedCDCs_7_420::ENSMaterial, 1 superclasses=[ENS] +2024-09-08 15:11:37,825 [main] TRACE UmlClass - created (3062) WG17 IEC61850 enumeration CDC DerivedCDCs_7_420::ENSOther, 1 superclasses=[ENS] +2024-09-08 15:11:37,825 [main] TRACE UmlClass - created (2266) WG10 IEC61850 primitive CDC <> CDCAnalogueInfo::CMV, 1 superclasses=[SubstitutionCDC] +2024-09-08 15:11:37,826 [main] TRACE UmlSkipped - created (2161) WG10 IEC61850 note link CMV. - ? - ? +2024-09-08 15:11:37,826 [main] TRACE UmlSkipped - created (2165) WG10 IEC61850 note link CMV. - ? - ? +2024-09-08 15:11:37,826 [main] TRACE UmlClass - created (2278) WG10 IEC61850 abstract class primitive CDC CDCControl::ControllableCDC, 1 superclasses=[SubstitutionCDC] +2024-09-08 15:11:37,826 [main] TRACE UmlSkipped - created (2279) WG10 IEC61850 boundary ControllableCDC. +2024-09-08 15:11:37,826 [main] TRACE UmlDiagram - created (256) WG10 IEC61850 custom ControllableCDC.Attributes for command testing +2024-09-08 15:11:37,826 [main] TRACE UmlClass - created (2283) WG10 IEC61850 abstract class enumeration CDC CDCControl::ENC, 1 superclasses=[ControllableCDC] +2024-09-08 15:11:37,826 [main] TRACE UmlClass - created (2673) WG10 IEC61850 enumeration CDC DerivedCDCs::ENCBehaviourMode, 1 superclasses=[ENC] +2024-09-08 15:11:37,826 [main] TRACE UmlClass - created (3059) WG17 IEC61850 enumeration CDC DerivedCDCs_7_420::ENCMaterial, 1 superclasses=[ENC] +2024-09-08 15:11:37,826 [main] TRACE UmlClass - created (2287) WG10 IEC61850 primitive CDC <> CDCControl::BAC, 1 superclasses=[ControllableCDC] +2024-09-08 15:11:37,826 [main] TRACE UmlClass - created (3038) WG10 IEC61850 primitive CDC CDCStatusInfo::EXY, 1 superclasses=[BasePrimitiveCDC] +2024-09-08 15:11:37,826 [main] TRACE UmlClass - created (3039) WG10 IEC61850 primitive CDC DerivedCDCs::EXYBehaviourMode, 1 superclasses=[EXY] +2024-09-08 15:11:37,826 [main] TRACE UmlClass - created (2252) WG10 IEC61850 primitive CDC CDCStatusInfo::ACD, 1 superclasses=[BasePrimitiveCDC] +2024-09-08 15:11:37,826 [main] TRACE UmlClass - created (2255) WG10 IEC61850 primitive CDC CDCStatusInfo::HST, 1 superclasses=[BasePrimitiveCDC] +2024-09-08 15:11:37,826 [main] TRACE UmlSkipped - created (2256) WG10 IEC61850 boundary HST. +2024-09-08 15:11:37,826 [main] TRACE UmlSkipped - created (2257) WG10 IEC61850 boundary HST. +2024-09-08 15:11:37,826 [main] TRACE UmlDiagram - created (249) WG10 IEC61850 custom HST.One-dimensional histogram +2024-09-08 15:11:37,826 [main] TRACE UmlDiagram - created (250) WG10 IEC61850 custom HST.Two-dimensional histogram +2024-09-08 15:11:37,826 [main] TRACE UmlClass - created (2295) WG10 IEC61850 abstract class enumeration CDC CDCStatusSet::ENG, 1 superclasses=[BasePrimitiveCDC] +2024-09-08 15:11:37,827 [main] TRACE UmlClass - created (2677) WG10 IEC61850 enumeration CDC DerivedCDCs::ENGCalcMethod, 1 superclasses=[ENG] +2024-09-08 15:11:37,827 [main] TRACE UmlClass - created (2314) WG10 IEC61850 primitive CDC CDCDescription::LPL, 1 superclasses=[BasePrimitiveCDC] +2024-09-08 15:11:37,827 [main] TRACE UmlClass - created (1849) WG10 IEC61850 abstract class composed CDC MetaModel::ComposedCDC, 1 superclasses=[CDC] +2024-09-08 15:11:37,827 [main] TRACE UmlClass - created (2235) WG10 IEC61850 abstract class composed CDC CommonDataClasses::BaseComposedCDC, 1 superclasses=[ComposedCDC] +2024-09-08 15:11:37,827 [main] TRACE UmlClass - created (2263) WG10 IEC61850 abstract class composed CDC <> CDCAnalogueInfo::HarmonicMeasurandCDC, 1 superclasses=[BaseComposedCDC] +2024-09-08 15:11:37,827 [main] TRACE UmlClass - created (2273) WG10 IEC61850 composed CDC CDCAnalogueInfo::HWYE, 1 superclasses=[HarmonicMeasurandCDC] +2024-09-08 15:11:37,827 [main] TRACE UmlClass - created (1851) WG10 IEC61850 abstract class FCDA MetaModel::FCDA, 1 superclasses=[NamedIEC61850Object] +2024-09-08 15:11:37,827 [main] TRACE UmlClass - created (1916) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_BL, 1 superclasses=[FCDA] +2024-09-08 15:11:37,827 [main] TRACE UmlClass - created (2122) WG10 IEC61850 FCDA FCDAs::BOOLEAN_BL, 1 superclasses=[FCDA_BL] +2024-09-08 15:11:37,828 [main] TRACE UmlClass - created (1917) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_CF, 1 superclasses=[FCDA] +2024-09-08 15:11:37,828 [main] TRACE UmlClass - created (1903) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_CF, 1 superclasses=[FCDA_CF] +2024-09-08 15:11:37,828 [main] TRACE UmlClass - created (1918) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_CF_dchg, 1 superclasses=[FCDA_CF] +2024-09-08 15:11:37,828 [main] TRACE UmlClass - created (1904) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_CF_dchg, 1 superclasses=[FCDA_CF_dchg] +2024-09-08 15:11:37,828 [main] TRACE UmlClass - created (2144) WG10 IEC61850 abstract class enumeration FCDA FCDAs::EnumDA_CF_dchg, 1 superclasses=[EnumFCDA_CF_dchg] +2024-09-08 15:11:37,828 [main] TRACE UmlClass - created (2183) WG10 IEC61850 enumeration FCDA FCDAs::PhaseAngleReference_CF_dchg, 1 superclasses=[EnumFCDA_CF_dchg] +2024-09-08 15:11:37,828 [main] TRACE UmlClass - created (2123) WG10 IEC61850 FCDA FCDAs::BOOLEAN_CF_dchg, 1 superclasses=[FCDA_CF_dchg] +2024-09-08 15:11:37,828 [main] TRACE UmlClass - created (2160) WG10 IEC61850 FCDA FCDAs::INT16U_CF_dchg, 1 superclasses=[FCDA_CF_dchg] +2024-09-08 15:11:37,828 [main] TRACE UmlClass - created (2165) WG10 IEC61850 FCDA FCDAs::INT32U_CF_dchg, 1 superclasses=[FCDA_CF_dchg] +2024-09-08 15:11:37,828 [main] TRACE UmlClass - created (2167) WG10 IEC61850 FCDA FCDAs::INT32_CF_dchg, 1 superclasses=[FCDA_CF_dchg] +2024-09-08 15:11:37,828 [main] TRACE UmlClass - created (2194) WG10 IEC61850 FCDA FCDAs::RangeConfig_CF_dchg, 1 superclasses=[FCDA_CF_dchg] +2024-09-08 15:11:37,828 [main] TRACE UmlClass - created (2159) WG10 IEC61850 FCDA FCDAs::INT16U_CF, 1 superclasses=[FCDA_CF] +2024-09-08 15:11:37,828 [main] TRACE UmlClass - created (1919) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_DC, 1 superclasses=[FCDA] +2024-09-08 15:11:37,828 [main] TRACE UmlClass - created (2186) WG10 IEC61850 FCDA FCDAs::Point_DC, 1 superclasses=[FCDA_DC] +2024-09-08 15:11:37,829 [main] TRACE UmlClass - created (2207) WG10 IEC61850 FCDA FCDAs::UNICODE_STRING255_DC, 1 superclasses=[FCDA_DC] +2024-09-08 15:11:37,829 [main] TRACE UmlClass - created (1920) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_EX, 1 superclasses=[FCDA] +2024-09-08 15:11:37,829 [main] TRACE UmlClass - created (2217) WG10 IEC61850 FCDA FCDAs::VISIBLE_STRING255_EX, 1 superclasses=[FCDA_EX] +2024-09-08 15:11:37,829 [main] TRACE UmlClass - created (1921) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_MX, 1 superclasses=[FCDA] +2024-09-08 15:11:37,829 [main] TRACE UmlClass - created (1905) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_MX, 1 superclasses=[FCDA_MX] +2024-09-08 15:11:37,829 [main] TRACE UmlClass - created (1922) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_MX_dchg, 1 superclasses=[FCDA_MX] +2024-09-08 15:11:37,829 [main] TRACE UmlClass - created (2116) WG10 IEC61850 FCDA FCDAs::AnalogueValue_MX_dchg, 1 superclasses=[FCDA_MX_dchg] +2024-09-08 15:11:37,829 [main] TRACE UmlClass - created (2124) WG10 IEC61850 FCDA FCDAs::BOOLEAN_MX_dchg, 1 superclasses=[FCDA_MX_dchg] +2024-09-08 15:11:37,829 [main] TRACE UmlClass - created (1923) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_MX_dchg_dupd, 1 superclasses=[FCDA_MX] +2024-09-08 15:11:37,829 [main] TRACE UmlClass - created (2117) WG10 IEC61850 FCDA FCDAs::AnalogueValue_MX_dchg_dupd, 1 superclasses=[FCDA_MX_dchg_dupd] +2024-09-08 15:11:37,830 [main] TRACE UmlClass - created (1924) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_MX_qchg, 1 superclasses=[FCDA_MX] +2024-09-08 15:11:37,830 [main] TRACE UmlClass - created (2191) WG10 IEC61850 FCDA FCDAs::Quality_MX_qchg, 1 superclasses=[FCDA_MX_qchg] +2024-09-08 15:11:37,830 [main] TRACE UmlClass - created (2115) WG10 IEC61850 FCDA FCDAs::AnalogueValue_MX, 1 superclasses=[FCDA_MX] +2024-09-08 15:11:37,830 [main] TRACE UmlSkipped - created (2159) WG10 IEC61850 note link AnalogueValue_MX. - ? - ? +2024-09-08 15:11:37,830 [main] TRACE UmlSkipped - created (2171) WG10 IEC61850 note link AnalogueValue_MX. - ? - ? +2024-09-08 15:11:37,830 [main] TRACE UmlClass - created (1925) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_OR, 1 superclasses=[FCDA] +2024-09-08 15:11:37,830 [main] TRACE UmlClass - created (1926) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_OR_dchg, 1 superclasses=[FCDA_OR] +2024-09-08 15:11:37,830 [main] TRACE UmlClass - created (2125) WG10 IEC61850 FCDA FCDAs::BOOLEAN_OR_dchg, 1 superclasses=[FCDA_OR_dchg] +2024-09-08 15:11:37,830 [main] TRACE UmlClass - created (1927) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_SE, 1 superclasses=[FCDA] +2024-09-08 15:11:37,831 [main] TRACE UmlSkipped - created (2203) WG10 IEC61850 note link FCDA_SE. - ? - ? +2024-09-08 15:11:37,831 [main] TRACE UmlClass - created (1928) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_SE_dchg, 1 superclasses=[FCDA_SE] +2024-09-08 15:11:37,831 [main] TRACE UmlClass - created (1908) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_SE_dchg, 1 superclasses=[FCDA_SE_dchg] +2024-09-08 15:11:37,831 [main] TRACE UmlClass - created (2126) WG10 IEC61850 FCDA FCDAs::BOOLEAN_SE, 1 superclasses=[FCDA_SE] +2024-09-08 15:11:37,831 [main] TRACE UmlClass - created (2187) WG10 IEC61850 FCDA FCDAs::Point_SE, 1 superclasses=[FCDA_SE] +2024-09-08 15:11:37,831 [main] TRACE UmlClass - created (1929) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_SG, 1 superclasses=[FCDA] +2024-09-08 15:11:37,831 [main] TRACE UmlClass - created (1930) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_SG_dchg, 1 superclasses=[FCDA_SG] +2024-09-08 15:11:37,831 [main] TRACE UmlClass - created (1910) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_SG_dchg, 1 superclasses=[FCDA_SG_dchg] +2024-09-08 15:11:37,831 [main] TRACE UmlClass - created (2127) WG10 IEC61850 FCDA FCDAs::BOOLEAN_SG, 1 superclasses=[FCDA_SG] +2024-09-08 15:11:37,831 [main] TRACE UmlClass - created (2188) WG10 IEC61850 FCDA FCDAs::Point_SG, 1 superclasses=[FCDA_SG] +2024-09-08 15:11:37,831 [main] TRACE UmlClass - created (1931) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_SP, 1 superclasses=[FCDA] +2024-09-08 15:11:37,831 [main] TRACE UmlClass - created (1932) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_SP_dchg, 1 superclasses=[FCDA_SP] +2024-09-08 15:11:37,831 [main] TRACE UmlClass - created (2128) WG10 IEC61850 FCDA FCDAs::BOOLEAN_SP_dchg, 1 superclasses=[FCDA_SP_dchg] +2024-09-08 15:11:37,832 [main] TRACE UmlClass - created (2189) WG10 IEC61850 FCDA FCDAs::Point_SP, 1 superclasses=[FCDA_SP] +2024-09-08 15:11:37,832 [main] TRACE UmlClass - created (1933) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_ST, 1 superclasses=[FCDA] +2024-09-08 15:11:37,832 [main] TRACE UmlClass - created (1912) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_ST, 1 superclasses=[FCDA_ST] +2024-09-08 15:11:37,832 [main] TRACE UmlClass - created (1934) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_ST_dchg, 1 superclasses=[FCDA_ST] +2024-09-08 15:11:37,832 [main] TRACE UmlClass - created (1913) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_ST_dchg, 1 superclasses=[FCDA_ST_dchg] +2024-09-08 15:11:37,832 [main] TRACE UmlClass - created (1939) WG10 IEC61850 abstract class coded enumeration FCDA MetaModelFCsAndTrgOps::PackedEnumFCDA_SP_dchg, 1 superclasses=[EnumFCDA_ST_dchg] +2024-09-08 15:11:37,832 [main] TRACE UmlClass - created (2142) WG10 IEC61850 coded enumeration FCDA FCDAs::DpStatus_ST_dchg, 1 superclasses=[PackedEnumFCDA_SP_dchg] +2024-09-08 15:11:37,832 [main] TRACE UmlClass - created (2148) WG10 IEC61850 abstract class enumeration FCDA FCDAs::EnumDA_ST_dchg, 1 superclasses=[EnumFCDA_ST_dchg] +2024-09-08 15:11:37,832 [main] TRACE UmlClass - created (2184) WG10 IEC61850 enumeration FCDA FCDAs::PhaseFaultDirection_ST_dchg, 1 superclasses=[EnumFCDA_ST_dchg] +2024-09-08 15:11:37,832 [main] TRACE UmlClass - created (2129) WG10 IEC61850 FCDA FCDAs::BOOLEAN_ST_dchg, 1 superclasses=[FCDA_ST_dchg] +2024-09-08 15:11:37,832 [main] TRACE UmlClass - created (2171) WG10 IEC61850 FCDA FCDAs::INT32_ST_dchg, 1 superclasses=[FCDA_ST_dchg] +2024-09-08 15:11:37,832 [main] TRACE UmlClass - created (1935) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_ST_dchg_dupd, 1 superclasses=[FCDA_ST] +2024-09-08 15:11:37,832 [main] TRACE UmlClass - created (1914) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_ST_dchg_dupd, 1 superclasses=[FCDA_ST_dchg_dupd] +2024-09-08 15:11:37,832 [main] TRACE UmlClass - created (2149) WG10 IEC61850 abstract class enumeration FCDA FCDAs::EnumDA_ST_dchg_dupd, 1 superclasses=[EnumFCDA_ST_dchg_dupd] +2024-09-08 15:11:37,832 [main] TRACE UmlClass - created (2172) WG10 IEC61850 FCDA FCDAs::INT32_ST_dchg_dupd, 1 superclasses=[FCDA_ST_dchg_dupd] +2024-09-08 15:11:37,832 [main] TRACE UmlClass - created (1936) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_ST_dupd, 1 superclasses=[FCDA_ST] +2024-09-08 15:11:37,832 [main] TRACE UmlClass - created (1937) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_ST_qchg, 1 superclasses=[FCDA_ST] +2024-09-08 15:11:37,833 [main] TRACE UmlClass - created (2192) WG10 IEC61850 FCDA FCDAs::Quality_ST_qchg, 1 superclasses=[FCDA_ST_qchg] +2024-09-08 15:11:37,833 [main] TRACE UmlClass - created (2206) WG10 IEC61850 FCDA FCDAs::TimeStamp_ST, 1 superclasses=[FCDA_ST] +2024-09-08 15:11:37,833 [main] TRACE UmlClass - created (1938) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_SV, 1 superclasses=[FCDA] +2024-09-08 15:11:37,833 [main] TRACE UmlClass - created (1915) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_SV, 1 superclasses=[FCDA_SV] +2024-09-08 15:11:37,833 [main] TRACE UmlClass - created (1940) WG10 IEC61850 abstract class coded enumeration FCDA MetaModelFCsAndTrgOps::PackedEnumFCDA_SV, 1 superclasses=[EnumFCDA_SV] +2024-09-08 15:11:37,833 [main] TRACE UmlClass - created (2143) WG10 IEC61850 coded enumeration FCDA FCDAs::DpStatus_SV, 1 superclasses=[PackedEnumFCDA_SV] +2024-09-08 15:11:37,833 [main] TRACE UmlClass - created (2150) WG10 IEC61850 abstract class enumeration FCDA FCDAs::EnumDA_SV, 1 superclasses=[EnumFCDA_SV] +2024-09-08 15:11:37,833 [main] TRACE UmlClass - created (2130) WG10 IEC61850 FCDA FCDAs::BOOLEAN_SV, 1 superclasses=[FCDA_SV] +2024-09-08 15:11:37,833 [main] TRACE UmlClass - created (2193) WG10 IEC61850 FCDA FCDAs::Quality_SV, 1 superclasses=[FCDA_SV] +2024-09-08 15:11:37,833 [main] DEBUG UmlClass - unclassified 7-2 class: (1852) WG10 IEC61850 abstract class null MetaModel::DA, 1 superclasses=[NamedIEC61850Object] +2024-09-08 15:11:37,833 [main] TRACE UmlClass - created (1852) WG10 IEC61850 abstract class other 61850 MetaModel::DA, 1 superclasses=[NamedIEC61850Object] +2024-09-08 15:11:37,833 [main] TRACE UmlClass - created (1853) WG10 IEC61850 abstract class primitive DA MetaModel::PrimitiveDA, 1 superclasses=[DA] +2024-09-08 15:11:37,833 [main] TRACE UmlClass - created (1755) WG10 IEC61850 primitive DA BasicDAs::PHYCOMADDR, 1 superclasses=[PrimitiveDA] +2024-09-08 15:11:37,833 [main] TRACE UmlClass - created (1754) WG10 IEC61850 primitive DA BasicDAs::ObjectReference, 1 superclasses=[PrimitiveDA] +2024-09-08 15:11:37,833 [main] TRACE UmlClass - created (1752) WG10 IEC61850 primitive DA BasicDAs::VISIBLE_STRING255, 1 superclasses=[PrimitiveDA] +2024-09-08 15:11:37,833 [main] TRACE UmlSkipped - created (2166) WG10 IEC61850 note link VISIBLE_STRING255. - ? - ? +2024-09-08 15:11:37,833 [main] TRACE UmlClass - created (1751) WG10 IEC61850 primitive DA BasicDAs::UNICODE_STRING255, 1 superclasses=[PrimitiveDA] +2024-09-08 15:11:37,833 [main] TRACE UmlClass - created (1746) WG10 IEC61850 primitive DA BasicDAs::INT32U, 1 superclasses=[PrimitiveDA] +2024-09-08 15:11:37,833 [main] TRACE UmlClass - created (1745) WG10 IEC61850 primitive DA BasicDAs::INT32, 1 superclasses=[PrimitiveDA] +2024-09-08 15:11:37,833 [main] TRACE UmlClass - created (1743) WG10 IEC61850 primitive DA BasicDAs::INT16U, 1 superclasses=[PrimitiveDA] +2024-09-08 15:11:37,833 [main] TRACE UmlClass - created (1741) WG10 IEC61850 primitive DA BasicDAs::FLOAT32, 1 superclasses=[PrimitiveDA] +2024-09-08 15:11:37,833 [main] TRACE UmlSkipped - created (2168) WG10 IEC61850 note link FLOAT32. - ? - ? +2024-09-08 15:11:37,834 [main] TRACE UmlClass - created (1740) WG10 IEC61850 primitive DA BasicDAs::BOOLEAN, 1 superclasses=[PrimitiveDA] +2024-09-08 15:11:37,834 [main] TRACE UmlClass - created (1854) WG10 IEC61850 abstract class packed list DA MetaModel::PackedPrimitiveDA, 1 superclasses=[PrimitiveDA] +2024-09-08 15:11:37,834 [main] TRACE UmlClass - created (1757) WG10 IEC61850 packed list DA BasicDAs::TriggerConditions, 1 superclasses=[PackedPrimitiveDA] +2024-09-08 15:11:37,834 [main] TRACE UmlSkipped - created (1758) WG10 IEC61850 boundary TriggerConditions. +2024-09-08 15:11:37,834 [main] TRACE UmlDiagram - created (206) WG10 IEC61850 custom TriggerConditions.Relation between trigger conditions, applicable trigger options and reporting +2024-09-08 15:11:37,834 [main] TRACE UmlClass - created (1756) WG10 IEC61850 packed list DA BasicDAs::TimeStamp, 1 superclasses=[PackedPrimitiveDA] +2024-09-08 15:11:37,834 [main] TRACE UmlClass - created (2080) WG10 IEC61850 packed list DA ConstructedDAs::Quality, 1 superclasses=[PackedPrimitiveDA] +2024-09-08 15:11:37,834 [main] TRACE UmlSkipped - created (2081) WG10 IEC61850 state machine Quality.validityStateMachine +2024-09-08 15:11:37,834 [main] TRACE UmlDiagram - created (232) WG10 IEC61850 statechart Quality.Quality.validity +2024-09-08 15:11:37,834 [main] TRACE UmlClass - created (1855) WG10 IEC61850 abstract class enumeration DA MetaModel::EnumDA, 1 superclasses=[PrimitiveDA] +2024-09-08 15:11:37,834 [main] TRACE UmlClass - created (1856) WG10 IEC61850 abstract class coded enumeration DA MetaModel::PackedEnumDA, 1 superclasses=[EnumDA] +2024-09-08 15:11:37,834 [main] TRACE UmlClass - created (1760) WG10 IEC61850 coded enumeration DA BasicDAs::BsControl, 1 superclasses=[PackedEnumDA] +2024-09-08 15:11:37,834 [main] TRACE UmlClass - created (1759) WG10 IEC61850 coded enumeration DA BasicDAs::DpStatus, 1 superclasses=[PackedEnumDA] +2024-09-08 15:11:37,834 [main] TRACE UmlClass - created (2072) WG10 IEC61850 enumeration DA ImplicitDAs::SIUnit, 1 superclasses=[EnumDA] +2024-09-08 15:11:37,834 [main] TRACE UmlClass - created (2061) WG10 IEC61850 enumeration DA ImplicitDAs::Multiplier, 1 superclasses=[EnumDA] +2024-09-08 15:11:37,834 [main] TRACE UmlClass - created (2066) WG10 IEC61850 enumeration DA ImplicitDAs::PhaseFaultDirection, 1 superclasses=[EnumDA] +2024-09-08 15:11:37,834 [main] TRACE UmlClass - created (2065) WG10 IEC61850 enumeration DA ImplicitDAs::PhaseAngleReference, 1 superclasses=[EnumDA] +2024-09-08 15:11:37,834 [main] TRACE UmlClass - created (2622) WG10 IEC61850 enumeration DA DerivedDAs::BehaviourMode, 1 superclasses=[EnumDA] +2024-09-08 15:11:37,834 [main] TRACE UmlClass - created (2625) WG10 IEC61850 enumeration DA DerivedDAs::CalcMethod, 1 superclasses=[EnumDA] +2024-09-08 15:11:37,834 [main] TRACE UmlClass - created (2634) WG10 IEC61850 enumeration DA DerivedDAs::Health, 1 superclasses=[EnumDA] +2024-09-08 15:11:37,834 [main] TRACE UmlClass - created (3055) WG17 IEC61850 enumeration DA DerivedDAs_7_420::Material, 1 superclasses=[EnumDA] +2024-09-08 15:11:37,834 [main] TRACE UmlSkipped - created (3433) WG17 IEC61850 note link Material. - ? - ? +2024-09-08 15:11:37,834 [main] TRACE UmlClass - created (3088) WG17 IEC61850 enumeration DA DerivedDAs_7_420::Material_control, 1 superclasses=[EnumDA] +2024-09-08 15:11:37,834 [main] TRACE UmlSkipped - created (3474) WG17 IEC61850 note link Material_control. - ? - ? +2024-09-08 15:11:37,834 [main] TRACE UmlClass - created (3056) WG17 IEC61850 enumeration DA DerivedDAs_7_420::Other, 1 superclasses=[EnumDA] +2024-09-08 15:11:37,835 [main] TRACE UmlSkipped - created (3432) WG17 IEC61850 note link Other. - ? - ? +2024-09-08 15:11:37,835 [main] TRACE UmlClass - created (1857) WG10 IEC61850 abstract class composed DA MetaModel::ComposedDA, 1 superclasses=[DA] +2024-09-08 15:11:37,835 [main] TRACE UmlClass - created (2089) WG10 IEC61850 composed DA ConstructedDAs::AnalogueValue, 1 superclasses=[ComposedDA] +2024-09-08 15:11:37,835 [main] TRACE UmlSkipped - created (2152) WG10 IEC61850 note link AnalogueValue. - ? - ? +2024-09-08 15:11:37,835 [main] TRACE UmlSkipped - created (2158) WG10 IEC61850 note link AnalogueValue. - ? - ? +2024-09-08 15:11:37,835 [main] TRACE UmlSkipped - created (2169) WG10 IEC61850 note link AnalogueValue. - ? - ? +2024-09-08 15:11:37,835 [main] TRACE UmlClass - created (2091) WG10 IEC61850 composed DA ConstructedDAs::RangeConfig, 1 superclasses=[ComposedDA] +2024-09-08 15:11:37,835 [main] TRACE UmlDiagram - created (235) WG10 IEC61850 custom RangeConfig.Range configuration +2024-09-08 15:11:37,835 [main] TRACE UmlClass - created (2096) WG10 IEC61850 composed DA ConstructedDAs::Unit, 1 superclasses=[ComposedDA] +2024-09-08 15:11:37,835 [main] TRACE UmlClass - created (2098) WG10 IEC61850 composed DA ConstructedDAs::Point, 1 superclasses=[ComposedDA] +2024-09-08 15:11:37,835 [main] DEBUG UmlClass - unclassified 7-2 class: (1858) WG10 IEC61850 abstract class null MetaModel::DS, 1 superclasses=[NamedIEC61850Object] +2024-09-08 15:11:37,835 [main] TRACE UmlClass - created (1858) WG10 IEC61850 abstract class other 61850 MetaModel::DS, 1 superclasses=[NamedIEC61850Object] +2024-09-08 15:11:37,835 [main] DEBUG UmlClass - unclassified 7-2 class: (1859) WG10 IEC61850 abstract class null MetaModel::LNOwnedDS, 1 superclasses=[DS] +2024-09-08 15:11:37,835 [main] TRACE UmlClass - created (1859) WG10 IEC61850 abstract class other 61850 MetaModel::LNOwnedDS, 1 superclasses=[DS] +2024-09-08 15:11:37,835 [main] DEBUG UmlClass - unclassified 7-2 class: (1861) WG10 IEC61850 null MetaModel::ConfiguredDS, 1 superclasses=[LNOwnedDS] +2024-09-08 15:11:37,835 [main] TRACE UmlClass - created (1861) WG10 IEC61850 other 61850 MetaModel::ConfiguredDS, 1 superclasses=[LNOwnedDS] +2024-09-08 15:11:37,835 [main] DEBUG UmlClass - unclassified 7-2 class: (1862) WG10 IEC61850 null MetaModel::PersistentDS, 1 superclasses=[LNOwnedDS] +2024-09-08 15:11:37,835 [main] TRACE UmlClass - created (1862) WG10 IEC61850 other 61850 MetaModel::PersistentDS, 1 superclasses=[LNOwnedDS] +2024-09-08 15:11:37,836 [main] DEBUG UmlClass - unclassified 7-2 class: (1860) WG10 IEC61850 null MetaModel::NonPersistentDS, 1 superclasses=[DS] +2024-09-08 15:11:37,836 [main] TRACE UmlClass - created (1860) WG10 IEC61850 other 61850 MetaModel::NonPersistentDS, 1 superclasses=[DS] +2024-09-08 15:11:37,836 [main] DEBUG UmlClass - unclassified 7-2 class: (1864) WG10 IEC61850 abstract class null MetaModel::ControlBlock, 1 superclasses=[NamedIEC61850Object] +2024-09-08 15:11:37,836 [main] TRACE UmlClass - created (1864) WG10 IEC61850 abstract class other 61850 MetaModel::ControlBlock, 1 superclasses=[NamedIEC61850Object] +2024-09-08 15:11:37,836 [main] DEBUG UmlClass - unclassified 7-2 class: (1865) WG10 IEC61850 abstract class null MetaModel::RCB, 1 superclasses=[ControlBlock] +2024-09-08 15:11:37,836 [main] TRACE UmlClass - created (1865) WG10 IEC61850 abstract class other 61850 MetaModel::RCB, 1 superclasses=[ControlBlock] +2024-09-08 15:11:37,836 [main] DEBUG UmlClass - unclassified 7-2 class: (1866) WG10 IEC61850 abstract class null MetaModel::BRCB, 1 superclasses=[RCB] +2024-09-08 15:11:37,836 [main] TRACE UmlClass - created (1866) WG10 IEC61850 abstract class other 61850 MetaModel::BRCB, 1 superclasses=[RCB] +2024-09-08 15:11:37,836 [main] DEBUG UmlClass - unclassified 7-2 class: (1867) WG10 IEC61850 abstract class null MetaModel::URCB, 1 superclasses=[RCB] +2024-09-08 15:11:37,836 [main] TRACE UmlClass - created (1867) WG10 IEC61850 abstract class other 61850 MetaModel::URCB, 1 superclasses=[RCB] +2024-09-08 15:11:37,836 [main] DEBUG UmlClass - unclassified 7-2 class: (1868) WG10 IEC61850 null MetaModel::LCB, 1 superclasses=[ControlBlock] +2024-09-08 15:11:37,836 [main] TRACE UmlClass - created (1868) WG10 IEC61850 other 61850 MetaModel::LCB, 1 superclasses=[ControlBlock] +2024-09-08 15:11:37,836 [main] DEBUG UmlClass - unclassified 7-2 class: (1870) WG10 IEC61850 null MetaModel::GCB, 1 superclasses=[ControlBlock] +2024-09-08 15:11:37,836 [main] TRACE UmlClass - created (1870) WG10 IEC61850 other 61850 MetaModel::GCB, 1 superclasses=[ControlBlock] +2024-09-08 15:11:37,837 [main] DEBUG UmlClass - unclassified 7-2 class: (1871) WG10 IEC61850 abstract class null MetaModel::SVCB, 1 superclasses=[ControlBlock] +2024-09-08 15:11:37,837 [main] TRACE UmlClass - created (1871) WG10 IEC61850 abstract class other 61850 MetaModel::SVCB, 1 superclasses=[ControlBlock] +2024-09-08 15:11:37,837 [main] DEBUG UmlClass - unclassified 7-2 class: (1872) WG10 IEC61850 abstract class null MetaModel::MSVCB, 1 superclasses=[SVCB] +2024-09-08 15:11:37,837 [main] TRACE UmlClass - created (1872) WG10 IEC61850 abstract class other 61850 MetaModel::MSVCB, 1 superclasses=[SVCB] +2024-09-08 15:11:37,837 [main] DEBUG UmlClass - unclassified 7-2 class: (1873) WG10 IEC61850 abstract class null MetaModel::USVCB, 1 superclasses=[SVCB] +2024-09-08 15:11:37,837 [main] TRACE UmlClass - created (1873) WG10 IEC61850 abstract class other 61850 MetaModel::USVCB, 1 superclasses=[SVCB] +2024-09-08 15:11:37,837 [main] DEBUG UmlClass - unclassified 7-2 class: (1874) WG10 IEC61850 null MetaModel::SGCB, 1 superclasses=[ControlBlock] +2024-09-08 15:11:37,837 [main] TRACE UmlClass - created (1874) WG10 IEC61850 other 61850 MetaModel::SGCB, 1 superclasses=[ControlBlock] +2024-09-08 15:11:37,837 [main] DEBUG UmlClass - unclassified 7-2 class: (1869) WG10 IEC61850 null MetaModel::LOG, 1 superclasses=[NamedIEC61850Object] +2024-09-08 15:11:37,837 [main] TRACE UmlClass - created (1869) WG10 IEC61850 other 61850 MetaModel::LOG, 1 superclasses=[NamedIEC61850Object] +2024-09-08 15:11:37,837 [main] DEBUG UmlClass - unclassified 7-2 class: (1838) WG10 IEC61850 null MetaModel::IED, 1 superclasses=[HierarchyIEC61850Object] +2024-09-08 15:11:37,837 [main] TRACE UmlClass - created (1838) WG10 IEC61850 other 61850 MetaModel::IED, 1 superclasses=[HierarchyIEC61850Object] +2024-09-08 15:11:37,837 [main] DEBUG UmlClass - unclassified 7-2 class: (1839) WG10 IEC61850 null MetaModel::SERVER, 1 superclasses=[HierarchyIEC61850Object] +2024-09-08 15:11:37,837 [main] TRACE UmlClass - created (1839) WG10 IEC61850 other 61850 MetaModel::SERVER, 1 superclasses=[HierarchyIEC61850Object] +2024-09-08 15:11:37,837 [main] DEBUG UmlClass - unclassified 7-2 class: (1850) WG10 IEC61850 null MetaModel::FCD, 1 superclasses=[HierarchyIEC61850Object] +2024-09-08 15:11:37,837 [main] TRACE UmlClass - created (1850) WG10 IEC61850 other 61850 MetaModel::FCD, 1 superclasses=[HierarchyIEC61850Object] +2024-09-08 15:11:37,837 [main] DEBUG UmlClass - unclassified 7-2 class: (1877) WG10 IEC61850 null MetaModel::FILE, 1 superclasses=[HierarchyIEC61850Object] +2024-09-08 15:11:37,837 [main] TRACE UmlClass - created (1877) WG10 IEC61850 other 61850 MetaModel::FILE, 1 superclasses=[HierarchyIEC61850Object] +2024-09-08 15:11:37,837 [main] DEBUG UmlClass - unclassified 7-2 class: (1840) WG10 IEC61850 null MetaModel::TPAA, 1 superclasses=[IEC61850Object] +2024-09-08 15:11:37,837 [main] TRACE UmlClass - created (1840) WG10 IEC61850 other 61850 MetaModel::TPAA, 1 superclasses=[IEC61850Object] +2024-09-08 15:11:37,837 [main] DEBUG UmlClass - unclassified 7-2 class: (1841) WG10 IEC61850 null MetaModel::MCAA, 1 superclasses=[IEC61850Object] +2024-09-08 15:11:37,837 [main] TRACE UmlClass - created (1841) WG10 IEC61850 other 61850 MetaModel::MCAA, 1 superclasses=[IEC61850Object] +2024-09-08 15:11:37,837 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (2720) WG10 IEC61850 null DerivedCDCs::SPCTransient, 1 superclasses=[SPC] +2024-09-08 15:11:37,838 [main] TRACE UmlClass - created (2720) WG10 IEC61850 other 61850 DerivedCDCs::SPCTransient, 1 superclasses=[SPC] +2024-09-08 15:11:37,838 [main] TRACE UmlClass - created (3091) WG17 IEC61850 enumeration <> DOEnums_7_420::ExtBaseKind, 1 superclasses=[BaseKind] +2024-09-08 15:11:37,838 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,838 [main] TRACE UmlAttribute - created (6717) WG17 IEC61850 literal <> DOEnums_7_420::ExtBaseKind.ebk1 +2024-09-08 15:11:37,838 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,838 [main] TRACE UmlAttribute - created (6718) WG17 IEC61850 literal <> DOEnums_7_420::ExtBaseKind.ebk2 +2024-09-08 15:11:37,838 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,838 [main] TRACE UmlAttribute - created (6719) WG17 IEC61850 literal <> DOEnums_7_420::ExtBaseKind.ebk3 +2024-09-08 15:11:37,838 [main] TRACE UmlClass - created (1488) OTHER_CIM CIM class Ext1::Apple, 1 superclasses=[Fruit] +2024-09-08 15:11:37,838 [main] TRACE UmlSkipped - created (3458) OTHER_CIM CIM other Apple. - ? - ? +2024-09-08 15:11:37,838 [main] TRACE UmlSkipped - created (3459) OTHER_CIM CIM other Apple. - ? - ? +2024-09-08 15:11:37,838 [main] TRACE UmlClass - created (3035) OTHER_CIM CIM class Ext1::Strawberry, 1 superclasses=[Fruit] +2024-09-08 15:11:37,838 [main] TRACE UmlSkipped - created (3419) OTHER_CIM CIM note link Strawberry. - ? - ? +2024-09-08 15:11:37,838 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1492) OTHER_IEC61850 IEC61850 null Ext2::Dog, 1 superclasses=[Animal] +2024-09-08 15:11:37,839 [main] TRACE UmlClass - created (1492) OTHER_IEC61850 IEC61850 other 61850 Ext2::Dog, 1 superclasses=[Animal] +2024-09-08 15:11:37,839 [main] ERROR UmlClass - unclassified 7-4/7-3 class: (1493) OTHER_IEC61850 IEC61850 null Ext2::Horse, 1 superclasses=[Animal] +2024-09-08 15:11:37,839 [main] TRACE UmlClass - created (1493) OTHER_IEC61850 IEC61850 other 61850 Ext2::Horse, 1 superclasses=[Animal] +2024-09-08 15:11:37,839 [main] INFO EaModelBuilder - reordering in-memory classes in packages ... +2024-09-08 15:11:37,839 [main] INFO EaModelBuilder - creating in-memory class' attributes, operations and constraints ... +2024-09-08 15:11:37,839 [main] ERROR UmlAttribute - unclassified CIM attribute: (3284) OTHER_CIM CIM INF [0..1] null Informative::HasIllegalTypeForAttr.dummy: Core::Bay +2024-09-08 15:11:37,840 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,840 [main] TRACE UmlAttribute - created (3284) OTHER_CIM CIM INF [0..1] attribute Informative::HasIllegalTypeForAttr.dummy: Core::Bay +2024-09-08 15:11:37,840 [main] TRACE ValueRange - '20119-08-01' has no separator indicating range. +2024-09-08 15:11:37,840 [main] TRACE UmlAttribute - created (1271) WG13 CIM static const [0..1] CIMDatatype attribute IEC61970::IEC61970CIMVersion.date: Domain::AbsoluteDateTime = 20119-08-01 +2024-09-08 15:11:37,840 [main] TRACE ValueRange - 'IEC61970CIM14v12' has no separator indicating range. +2024-09-08 15:11:37,840 [main] TRACE UmlAttribute - created (1272) WG13 CIM static const [0..1] Primitive attribute IEC61970::IEC61970CIMVersion.version: Domain::String = IEC61970CIM14v12 +2024-09-08 15:11:37,840 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,840 [main] TRACE UmlAttribute - created (6709) WG13 CIM INF [1..1] Primitive attribute InformativeAndPrivate::InfClass2.isToto: Domain::Boolean +2024-09-08 15:11:37,840 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,840 [main] TRACE UmlAttribute - created (1440) WG13 CIM protected [2..5] Primitive attribute Domain::AbsoluteDateTime.protectedAttribute: Domain::String +2024-09-08 15:11:37,840 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,840 [main] TRACE UmlAttribute - created (1436) WG13 CIM [0..1] Primitive attribute <> Domain::ActivePower.value: Domain::Float +2024-09-08 15:11:37,840 [main] TRACE ValueRange - 'W' has no separator indicating range. +2024-09-08 15:11:37,840 [main] TRACE UmlAttribute - created (1435) WG13 CIM static const [0..1] enumeration attribute <> Domain::ActivePower.unit: Domain::UnitSymbol = W +2024-09-08 15:11:37,840 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,840 [main] TRACE UmlAttribute - created (1434) WG13 CIM [0..1] enumeration attribute <> Domain::ActivePower.multiplier: Domain::UnitMultiplier +2024-09-08 15:11:37,841 [main] ERROR UmlAttribute - unclassified CIM attribute: (1404) WG13 CIM [0..1] null Domain::ActivePowerChangeRate.value: NullCIM::NullCIM +2024-09-08 15:11:37,841 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,841 [main] TRACE UmlAttribute - created (1404) WG13 CIM [0..1] attribute Domain::ActivePowerChangeRate.value: NullCIM::NullCIM +2024-09-08 15:11:37,841 [main] TRACE ValueRange - 'W/s' has no separator indicating range. +2024-09-08 15:11:37,841 [main] TRACE UmlAttribute - created (1403) WG13 CIM static [0..1] enumeration attribute Domain::ActivePowerChangeRate.unit: Domain::UnitSymbol = W/s +2024-09-08 15:11:37,841 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,841 [main] TRACE UmlAttribute - created (1402) WG13 CIM [0..1] enumeration attribute Domain::ActivePowerChangeRate.multiplier: Domain::UnitMultiplier +2024-09-08 15:11:37,841 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,841 [main] TRACE UmlAttribute - created (1370) WG13 CIM [0..1] Primitive attribute Domain::ApparentPower.value: Domain::Float +2024-09-08 15:11:37,841 [main] TRACE ValueRange - 'VA' has no separator indicating range. +2024-09-08 15:11:37,841 [main] TRACE UmlAttribute - created (1369) WG13 CIM static const [0..1] enumeration attribute Domain::ApparentPower.unit: Domain::UnitSymbol = VA +2024-09-08 15:11:37,841 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,841 [main] TRACE UmlAttribute - created (1368) WG13 CIM [0..1] enumeration attribute Domain::ApparentPower.multiplier: Domain::UnitMultiplier +2024-09-08 15:11:37,841 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,842 [main] TRACE UmlAttribute - created (1325) WG13 CIM [0..1] Primitive attribute Domain::Money.value: Domain::Float +2024-09-08 15:11:37,842 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,842 [main] TRACE UmlAttribute - created (1324) WG13 CIM [0..1] enumeration attribute Domain::Money.unit: Domain::Currency +2024-09-08 15:11:37,842 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,842 [main] TRACE UmlAttribute - created (1323) WG13 CIM [0..1] enumeration attribute Domain::Money.multiplier: Domain::UnitMultiplier +2024-09-08 15:11:37,842 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,842 [main] TRACE UmlAttribute - created (1367) WG13 CIM [0..1] Primitive attribute Domain::PerCent.value: Domain::Float +2024-09-08 15:11:37,842 [main] TRACE ValueRange - 'none' has no separator indicating range. +2024-09-08 15:11:37,842 [main] TRACE UmlAttribute - created (1366) WG13 CIM static const [0..1] enumeration attribute Domain::PerCent.unit: Domain::UnitSymbol = none +2024-09-08 15:11:37,842 [main] TRACE ValueRange - 'none' has no separator indicating range. +2024-09-08 15:11:37,842 [main] TRACE UmlAttribute - created (1365) WG13 CIM static const [0..1] enumeration attribute Domain::PerCent.multiplier: Domain::UnitMultiplier = none +2024-09-08 15:11:37,842 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,842 [main] TRACE UmlAttribute - created (1379) WG13 CIM [0..1] Primitive attribute Domain::Seconds.value: Domain::Float +2024-09-08 15:11:37,842 [main] TRACE ValueRange - 's' has no separator indicating range. +2024-09-08 15:11:37,842 [main] TRACE UmlAttribute - created (1378) WG13 CIM static const [0..1] enumeration attribute Domain::Seconds.unit: Domain::UnitSymbol = s +2024-09-08 15:11:37,842 [main] TRACE ValueRange - 'none' has no separator indicating range. +2024-09-08 15:11:37,842 [main] TRACE UmlAttribute - created (1377) WG13 CIM static const [0..1] enumeration attribute Domain::Seconds.multiplier: Domain::UnitMultiplier = none +2024-09-08 15:11:37,842 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,842 [main] TRACE UmlAttribute - created (1306) WG13 CIM [0..1] Primitive attribute Domain::Voltage.value: Domain::Float +2024-09-08 15:11:37,842 [main] TRACE ValueRange - 'V' has no separator indicating range. +2024-09-08 15:11:37,842 [main] TRACE UmlAttribute - created (1305) WG13 CIM static const [0..1] enumeration attribute Domain::Voltage.unit: Domain::UnitSymbol = V +2024-09-08 15:11:37,842 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,842 [main] TRACE UmlAttribute - created (1304) WG13 CIM [0..1] enumeration attribute Domain::Voltage.multiplier: Domain::UnitMultiplier +2024-09-08 15:11:37,843 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,843 [main] TRACE UmlAttribute - created (2100) WG13 CIM [0..1] CIMDatatype attribute Core::BasePower.basePower: Domain::ApparentPower +2024-09-08 15:11:37,843 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,843 [main] TRACE UmlAttribute - created (3317) WG13 CIM private [0..1] Primitive attribute Core::BaseVoltage.privateDummy: Domain::Boolean +2024-09-08 15:11:37,843 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,843 [main] TRACE UmlAttribute - created (2981) WG13 CIM package [0..1] Primitive attribute Core::BaseVoltage.packagePrivateIsDC: Domain::Boolean +2024-09-08 15:11:37,843 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,843 [main] TRACE UmlAttribute - created (2053) WG13 CIM protected [0..1] CIMDatatype attribute Core::BaseVoltage.protectedNominalVoltage: Domain::Voltage +2024-09-08 15:11:37,843 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,843 [main] TRACE UmlAttribute - created (3249) WG13 CIM [0..1] Primitive attribute Core::BaseVoltage.basePower: Domain::Boolean +2024-09-08 15:11:37,843 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,843 [main] TRACE UmlAttribute - created (2077) WG13 CIM [0..1] Primitive attribute Core::Bay.bayEnergyMeasFlag: Domain::Boolean +2024-09-08 15:11:37,843 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,843 [main] TRACE UmlAttribute - created (2078) WG13 CIM [0..1] Primitive attribute Core::Bay.bayPowerMeasFlag: Domain::Boolean +2024-09-08 15:11:37,843 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,843 [main] TRACE UmlAttribute - created (2079) WG13 CIM [0..1] enumeration attribute Core::Bay.breakerConfiguration: Core::BreakerConfiguration +2024-09-08 15:11:37,843 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,843 [main] TRACE UmlAttribute - created (2080) WG13 CIM [0..1] enumeration attribute Core::Bay.busBarConfiguration: Core::BusbarConfiguration +2024-09-08 15:11:37,843 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,844 [main] TRACE UmlAttribute - created (3301) WG13 CIM [0..1] enumeration attribute Core::Bay.TestYesNo1: Domain::YesNo +2024-09-08 15:11:37,844 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,844 [main] TRACE UmlAttribute - created (3302) WG13 CIM [0..1] enumeration attribute Core::Bay.testYesNo2: Domain::YesNo +2024-09-08 15:11:37,844 [main] TRACE UmlConstraint - created class attributes constraint Core::BreakerConfiguration {ConstraintOnEnum = [text]} +2024-09-08 15:11:37,844 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,844 [main] TRACE UmlAttribute - created (2091) WG13 CIM [0..1] enumeration attribute Core::ConductingEquipment.phases: Core::PhaseCode +2024-09-08 15:11:37,844 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,844 [main] TRACE UmlAttribute - created (2117) WG13 CIM [0..1] Primitive attribute Core::Equipment.normaIlyInService: Domain::Boolean +2024-09-08 15:11:37,844 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,844 [main] TRACE UmlAttribute - created (2109) WG13 CIM [0..1] CIMDatatype attribute Core::OperatingShare.percentage: Domain::PerCent +2024-09-08 15:11:37,844 [main] TRACE UmlConstraint - created attribute index constraint Core::OperatingShare.percentage {constraintProcess = constraint description} +2024-09-08 15:11:37,844 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,844 [main] TRACE UmlAttribute - created (6708) WG13 CIM [0..1] Primitive attribute <> Core::PowerSystemResource.attr: Domain::String +2024-09-08 15:11:37,844 [main] TRACE UmlConstraint - created class attributes constraint Core::PowerSystemResource {R.1.2.3 PSR process constraint = [Here the text for process constraint.]} +2024-09-08 15:11:37,844 [main] TRACE UmlConstraint - created class attributes constraint Core::PowerSystemResource {ruleAsInQoCDC = [text only]} +2024-09-08 15:11:37,844 [main] TRACE UmlConstraint - created class attributes constraint Core::PowerSystemResource {anotherOclRule = [{ocl]} +2024-09-08 15:11:37,853 [main] TRACE UmlOperation - created (1) WG13 CIM Core::PowerSystemResource operation abstract public NullCIM[] GetWhatevers() +2024-09-08 15:11:37,861 [main] TRACE UmlParameter - created <> null(...<> BasePower[] multiples...) +2024-09-08 15:11:37,861 [main] TRACE UmlOperation - created (2) WG13 CIM Core::PowerSystemResource operation <> public void setSomething() +2024-09-08 15:11:37,861 [main] TRACE UmlParameter - created null(... String name...) +2024-09-08 15:11:37,861 [main] TRACE UmlOperation - created (5) WG13 CIM Core::PowerSystemResource operation <> public NullCIM bar() +2024-09-08 15:11:37,861 [main] TRACE UmlParameter - created null(... NullCIM par3...) +2024-09-08 15:11:37,861 [main] TRACE UmlParameter - created null(... Float par2...) +2024-09-08 15:11:37,861 [main] TRACE UmlParameter - created null(... NullCIM par...) +2024-09-08 15:11:37,861 [main] TRACE UmlOperation - created (4) WG13 CIM Core::PowerSystemResource operation public NullCIM foo() +2024-09-08 15:11:37,861 [main] TRACE UmlParameter - created null(... NullCIM par3...) +2024-09-08 15:11:37,861 [main] TRACE UmlParameter - created <> null(...<> Float par2...) +2024-09-08 15:11:37,861 [main] TRACE UmlParameter - created null(... NullCIM par...) +2024-09-08 15:11:37,861 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,861 [main] TRACE UmlAttribute - created (3125) WG13 CIM [0..1] Primitive attribute Core::Terminal.connected: Domain::Boolean +2024-09-08 15:11:37,861 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,861 [main] TRACE UmlAttribute - created (3188) WG13 CIM [0..1] Primitive attribute Core::Terminal.sequenceNumber: Domain::Integer +2024-09-08 15:11:37,861 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,861 [main] TRACE UmlAttribute - created (2106) WG13 CIM [0..1] CIMDatatype attribute Core::VoltageLevel.highVoltageLimit: Domain::Voltage +2024-09-08 15:11:37,861 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,861 [main] TRACE UmlAttribute - created (2107) WG13 CIM [0..1] CIMDatatype attribute Core::VoltageLevel.lowVoltageLimit: Domain::Voltage +2024-09-08 15:11:37,861 [main] TRACE UmlOperation - created (3) WG13 CIM Core::VoltageLevel operation public Voltage getVoltage() +2024-09-08 15:11:37,862 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,862 [main] TRACE UmlAttribute - created (6646) WG13 CIM [0..1] Primitive attribute Core::IdentifiedObject.aliasName: Domain::String +2024-09-08 15:11:37,862 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,862 [main] TRACE UmlAttribute - created (6647) WG13 CIM [0..1] Primitive attribute Core::IdentifiedObject.mRID: Domain::String +2024-09-08 15:11:37,862 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,862 [main] TRACE UmlAttribute - created (6648) WG13 CIM [0..1] Primitive attribute Core::IdentifiedObject.name: Domain::String +2024-09-08 15:11:37,862 [main] WARN AbstractUmlObject - Primitive attribute ({870F033B-EDA6-4a32-A5AD-47DCBBFE2997}) Core::IdentifiedObject.name already in Core::IdentifiedObject. +2024-09-08 15:11:37,862 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,862 [main] TRACE UmlAttribute - created (3250) WG13 CIM [0..1] Primitive attribute Topology::BusNameMarker.constrained1: Domain::Integer +2024-09-08 15:11:37,862 [main] TRACE UmlConstraint - created attribute index constraint Topology::BusNameMarker.constrained1 {maxIdx = count+1} +2024-09-08 15:11:37,862 [main] TRACE UmlConstraint - created attribute index constraint Topology::BusNameMarker.constrained1 {minIdx = 0} +2024-09-08 15:11:37,862 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,862 [main] TRACE UmlAttribute - created (3251) WG13 CIM [0..1] Primitive attribute Topology::BusNameMarker.constrained2: Domain::Integer +2024-09-08 15:11:37,862 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,862 [main] TRACE UmlAttribute - created (3252) WG13 CIM [0..1] Primitive attribute Topology::BusNameMarker.constrained3: Domain::Integer +2024-09-08 15:11:37,862 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,862 [main] TRACE UmlAttribute - created (3253) WG13 CIM [0..1] Primitive attribute Topology::BusNameMarker.constrained4: Domain::Integer +2024-09-08 15:11:37,862 [main] TRACE UmlConstraint - created class attributes constraint Topology::BusNameMarker {C2_1 = [constrained1, constrained2]} +2024-09-08 15:11:37,862 [main] TRACE UmlConstraint - created class attributes constraint Topology::BusNameMarker {C2_2 = [constrained3, constrained4]} +2024-09-08 15:11:37,862 [main] TRACE UmlConstraint - created class attributes constraint Topology::BusNameMarker {C2_3 = [constrained1, constrained4]} +2024-09-08 15:11:37,863 [main] TRACE UmlConstraint - created class attributes constraint Topology::BusNameMarker {EMPTY = []} +2024-09-08 15:11:37,863 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,863 [main] TRACE UmlAttribute - created (3254) WG13 CIM [0..1] Primitive attribute Topology::TopologicalIsland.constrained5: Domain::Integer +2024-09-08 15:11:37,863 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,863 [main] TRACE UmlAttribute - created (3255) WG13 CIM [0..1] Primitive attribute Topology::TopologicalIsland.nonConstrained: Domain::Integer +2024-09-08 15:11:37,863 [main] TRACE UmlConstraint - created class attributes constraint Topology::TopologicalIsland {PICS_SUBST = [constrained5]} +2024-09-08 15:11:37,863 [main] TRACE ValueRange - '2010-05-07' has no separator indicating range. +2024-09-08 15:11:37,863 [main] TRACE UmlAttribute - created (3256) WG14 CIM static const [0..1] CIMDatatype attribute IEC61968::IEC61968Version.date: Domain::AbsoluteDateTime = 2010-05-07 +2024-09-08 15:11:37,863 [main] TRACE ValueRange - 'IEC62325CIM01v02' has no separator indicating range. +2024-09-08 15:11:37,863 [main] TRACE UmlAttribute - created (3257) WG14 CIM static const [0..1] Primitive attribute IEC61968::IEC61968Version.version: Domain::String = IEC62325CIM01v02 +2024-09-08 15:11:37,863 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,863 [main] TRACE UmlAttribute - created (3263) WG14 CIM [0..1] Primitive attribute Other::MyClass.value: Domain::Float +2024-09-08 15:11:37,863 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,863 [main] TRACE UmlAttribute - created (3264) WG14 CIM [0..1] Primitive attribute Other::MyClass.normaIlyInService: Domain::Boolean +2024-09-08 15:11:37,863 [main] ERROR UmlAttribute - unclassified CIM attribute: (3265) WG14 CIM [0..1] null Other::MyClass.curveStyle: NullCIM::NullCIM +2024-09-08 15:11:37,863 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,864 [main] TRACE UmlAttribute - created (3265) WG14 CIM [0..1] attribute Other::MyClass.curveStyle: NullCIM::NullCIM +2024-09-08 15:11:37,864 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,864 [main] TRACE UmlAttribute - created (3261) WG14 CIM [0..1] CIMDatatype attribute Other::BadDatatypes.value: Other::BadDatatypes +2024-09-08 15:11:37,864 [main] TRACE ValueRange - 'badEnumVal' has no separator indicating range. +2024-09-08 15:11:37,864 [main] TRACE UmlAttribute - created (3268) WG14 CIM [0..1] enumeration attribute Other::BadDatatypes.unit: Domain::UnitSymbol = badEnumVal +2024-09-08 15:11:37,864 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,864 [main] TRACE UmlAttribute - created (6707) WG14 CIM [0..1] Primitive attribute Other::Equipment.myExtension: Domain::Integer +2024-09-08 15:11:37,864 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,864 [main] TRACE UmlAttribute - created (3303) WG14 CIM [0..1] enumeration attribute Other::Equipment.testYesNo1: Domain::YesNo +2024-09-08 15:11:37,864 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,864 [main] TRACE UmlAttribute - created (3262) WG14 CIM [0..1] Primitive attribute Other::NonEmptyPrimitive.value: Domain::Float +2024-09-08 15:11:37,864 [main] ERROR UmlAttribute - unclassified CIM attribute: (3266) WG14 CIM [0..1] null Other::AttrDuplication.curveStyle: NullCIM::NullCIM +2024-09-08 15:11:37,864 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,864 [main] TRACE UmlAttribute - created (3266) WG14 CIM [0..1] attribute Other::AttrDuplication.curveStyle: NullCIM::NullCIM +2024-09-08 15:11:37,864 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,864 [main] TRACE UmlAttribute - created (3267) WG14 CIM [0..1] Primitive attribute Other::AttrDuplication.normaIlyInService: Domain::Boolean +2024-09-08 15:11:37,864 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,864 [main] TRACE UmlAttribute - created (3296) WG14 CIM [0..1] enumeration attribute Other::AnotherBadDatatype.value: Domain::UnitSymbol +2024-09-08 15:11:37,864 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,864 [main] TRACE UmlAttribute - created (3297) WG14 CIM [0..1] Primitive attribute <> Other::AnotherBadDatatype.unit: Domain::Integer +2024-09-08 15:11:37,864 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,865 [main] TRACE UmlAttribute - created (3298) WG14 CIM const [0..1] Compound attribute Other::AnotherBadDatatype.multiplier: Other::EmptyCompound +2024-09-08 15:11:37,865 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3318) WG10 IEC61850 static const [1..1] null WG10::WG10UMLVersion.version: NullIEC61850::NullIEC61850 = IEC61850UML02v07 +2024-09-08 15:11:37,865 [main] TRACE ValueRange - 'IEC61850UML02v07' has no separator indicating range. +2024-09-08 15:11:37,865 [main] TRACE UmlAttribute - created (3318) WG10 IEC61850 static const [1..1] attribute WG10::WG10UMLVersion.version: NullIEC61850::NullIEC61850 = IEC61850UML02v07 +2024-09-08 15:11:37,865 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3319) WG10 IEC61850 static const [1..1] null WG10::WG10UMLVersion.date: NullIEC61850::NullIEC61850 = 2011-07-02 +2024-09-08 15:11:37,865 [main] TRACE ValueRange - '2011-07-02' has no separator indicating range. +2024-09-08 15:11:37,865 [main] TRACE UmlAttribute - created (3319) WG10 IEC61850 static const [1..1] attribute WG10::WG10UMLVersion.date: NullIEC61850::NullIEC61850 = 2011-07-02 +2024-09-08 15:11:37,865 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3320) WG10 IEC61850 [0..*] null GenericModel::AccessPoint.Address: GenericModel::CommAddress +2024-09-08 15:11:37,865 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,865 [main] TRACE UmlAttribute - created (3320) WG10 IEC61850 [0..*] attribute GenericModel::AccessPoint.Address: GenericModel::CommAddress +2024-09-08 15:11:37,865 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3321) WG10 IEC61850 [1..1] null GenericModel::GenCommonDataClass.CDC-ID: GenericModel::GenObjectName +2024-09-08 15:11:37,866 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,866 [main] TRACE UmlAttribute - created (3321) WG10 IEC61850 [1..1] attribute GenericModel::GenCommonDataClass.CDC-ID: GenericModel::GenObjectName +2024-09-08 15:11:37,866 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3322) WG10 IEC61850 [1..1] null GenericModel::GenConstructedType.DA-ID: GenericModel::GenObjectName +2024-09-08 15:11:37,866 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,866 [main] TRACE UmlAttribute - created (3322) WG10 IEC61850 [1..1] attribute GenericModel::GenConstructedType.DA-ID: GenericModel::GenObjectName +2024-09-08 15:11:37,866 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3323) WG10 IEC61850 [1..1] null GenericModel::GenDataAttribute.DAName: GenericModel::GenObjectName +2024-09-08 15:11:37,866 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,866 [main] TRACE UmlAttribute - created (3323) WG10 IEC61850 [1..1] attribute GenericModel::GenDataAttribute.DAName: GenericModel::GenObjectName +2024-09-08 15:11:37,866 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3324) WG10 IEC61850 [1..1] null GenericModel::GenDataAttribute.DARef: GenericModel::GenObjRef +2024-09-08 15:11:37,866 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,866 [main] TRACE UmlAttribute - created (3324) WG10 IEC61850 [1..1] attribute GenericModel::GenDataAttribute.DARef: GenericModel::GenObjRef +2024-09-08 15:11:37,866 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,866 [main] TRACE UmlAttribute - created (3325) WG10 IEC61850 [1..1] enumeration attribute GenericModel::GenDataAttribute.FC: GenericModel::GenFC +2024-09-08 15:11:37,866 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3326) WG10 IEC61850 [1..1] null GenericModel::GenDataAttribute.TrgOp: GenericModel::GenTriggerConditions +2024-09-08 15:11:37,867 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,867 [main] TRACE UmlAttribute - created (3326) WG10 IEC61850 [1..1] attribute GenericModel::GenDataAttribute.TrgOp: GenericModel::GenTriggerConditions +2024-09-08 15:11:37,867 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,867 [main] TRACE UmlAttribute - created (3327) WG10 IEC61850 [1..1] enumeration attribute GenericModel::GenDataAttribute.Presence: GenericModel::GenPresenceConditions +2024-09-08 15:11:37,867 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3328) WG10 IEC61850 [0..1] null GenericModel::GenDataAttribute.Index: GenericModel::GenINT32U +2024-09-08 15:11:37,867 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,867 [main] TRACE UmlAttribute - created (3328) WG10 IEC61850 [0..1] attribute GenericModel::GenDataAttribute.Index: GenericModel::GenINT32U +2024-09-08 15:11:37,867 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3329) WG10 IEC61850 [1..1] null GenericModel::GenDataObject.DOName: GenericModel::GenObjectName +2024-09-08 15:11:37,867 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,867 [main] TRACE UmlAttribute - created (3329) WG10 IEC61850 [1..1] attribute GenericModel::GenDataObject.DOName: GenericModel::GenObjectName +2024-09-08 15:11:37,867 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3330) WG10 IEC61850 [1..1] null GenericModel::GenDataObject.DORef: GenericModel::GenObjRef +2024-09-08 15:11:37,867 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,867 [main] TRACE UmlAttribute - created (3330) WG10 IEC61850 [1..1] attribute GenericModel::GenDataObject.DORef: GenericModel::GenObjRef +2024-09-08 15:11:37,867 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3331) WG10 IEC61850 [1..1] null GenericModel::GenDataObject.Transient: GenericModel::GenBOOLEAN +2024-09-08 15:11:37,867 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,867 [main] TRACE UmlAttribute - created (3331) WG10 IEC61850 [1..1] attribute GenericModel::GenDataObject.Transient: GenericModel::GenBOOLEAN +2024-09-08 15:11:37,868 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,868 [main] TRACE UmlAttribute - created (3332) WG10 IEC61850 [1..1] enumeration attribute GenericModel::GenDataObject.Presence: GenericModel::GenPresenceConditions +2024-09-08 15:11:37,868 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3333) WG10 IEC61850 [1..1] null GenericModel::GenDataSet.DSName: GenericModel::GenObjectName +2024-09-08 15:11:37,868 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,868 [main] TRACE UmlAttribute - created (3333) WG10 IEC61850 [1..1] attribute GenericModel::GenDataSet.DSName: GenericModel::GenObjectName +2024-09-08 15:11:37,868 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,868 [main] TRACE UmlAttribute - created (3334) WG10 IEC61850 [1..1] enumeration attribute GenericModel::GenFCD.FC: GenericModel::GenFC +2024-09-08 15:11:37,868 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,868 [main] TRACE UmlAttribute - created (3335) WG10 IEC61850 [1..1] enumeration attribute GenericModel::GenFCDA.FC: GenericModel::GenFC +2024-09-08 15:11:37,877 [main] WARN PresenceCondition - presence condition literal not found, or invalid class constraint name format (should be 'name(arguments)'): WG10 IEC61850 class attributes constraint GenericModel::GenFCDA {FCConstraint = [inv]} +2024-09-08 15:11:37,877 [main] TRACE UmlConstraint - created class attributes constraint GenericModel::GenFCDA {FCConstraint = [inv]} (null) +2024-09-08 15:11:37,877 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3336) WG10 IEC61850 [1..1] null GenericModel::GenFile.FileRef: GenericModel::GenVisString255 +2024-09-08 15:11:37,877 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,877 [main] TRACE UmlAttribute - created (3336) WG10 IEC61850 [1..1] attribute GenericModel::GenFile.FileRef: GenericModel::GenVisString255 +2024-09-08 15:11:37,878 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3337) WG10 IEC61850 [1..1] null GenericModel::GenFile.FileSize: GenericModel::GenINT32U +2024-09-08 15:11:37,878 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,878 [main] TRACE UmlAttribute - created (3337) WG10 IEC61850 [1..1] attribute GenericModel::GenFile.FileSize: GenericModel::GenINT32U +2024-09-08 15:11:37,878 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3338) WG10 IEC61850 [1..1] null GenericModel::GenFile.LastModified: GenericModel::GenTimeStamp +2024-09-08 15:11:37,878 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,878 [main] TRACE UmlAttribute - created (3338) WG10 IEC61850 [1..1] attribute GenericModel::GenFile.LastModified: GenericModel::GenTimeStamp +2024-09-08 15:11:37,878 [main] WARN PresenceCondition - presence condition literal not found, or invalid class constraint name format (should be 'name(arguments)'): WG10 IEC61850 class attributes constraint GenericModel::GenLN0 {inv: self.LNName = "LLN0" = []} +2024-09-08 15:11:37,878 [main] TRACE UmlConstraint - created class attributes constraint GenericModel::GenLN0 {inv: self.LNName = "LLN0" = []} (null) +2024-09-08 15:11:37,878 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3339) WG10 IEC61850 [1..1] null GenericModel::GenLogicalDevice.LDName: GenericModel::GenObjectName +2024-09-08 15:11:37,878 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,878 [main] TRACE UmlAttribute - created (3339) WG10 IEC61850 [1..1] attribute GenericModel::GenLogicalDevice.LDName: GenericModel::GenObjectName +2024-09-08 15:11:37,878 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3340) WG10 IEC61850 [1..1] null GenericModel::GenLogicalNode.LNName: GenericModel::GenObjectName +2024-09-08 15:11:37,879 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,879 [main] TRACE UmlAttribute - created (3340) WG10 IEC61850 [1..1] attribute GenericModel::GenLogicalNode.LNName: GenericModel::GenObjectName +2024-09-08 15:11:37,879 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3341) WG10 IEC61850 [1..1] null GenericModel::GenLogicalNode.LNRef: GenericModel::GenObjRef +2024-09-08 15:11:37,879 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,879 [main] TRACE UmlAttribute - created (3341) WG10 IEC61850 [1..1] attribute GenericModel::GenLogicalNode.LNRef: GenericModel::GenObjRef +2024-09-08 15:11:37,879 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3342) WG10 IEC61850 [1..1] null GenericModel::GenSubDataAttribute.SubDAName: GenericModel::GenObjectName +2024-09-08 15:11:37,879 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,879 [main] TRACE UmlAttribute - created (3342) WG10 IEC61850 [1..1] attribute GenericModel::GenSubDataAttribute.SubDAName: GenericModel::GenObjectName +2024-09-08 15:11:37,879 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3343) WG10 IEC61850 [1..1] null GenericModel::GenSubDataAttribute.SubDARef: GenericModel::GenObjRef +2024-09-08 15:11:37,879 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,879 [main] TRACE UmlAttribute - created (3343) WG10 IEC61850 [1..1] attribute GenericModel::GenSubDataAttribute.SubDARef: GenericModel::GenObjRef +2024-09-08 15:11:37,879 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,879 [main] TRACE UmlAttribute - created (3344) WG10 IEC61850 [1..1] enumeration attribute GenericModel::GenSubDataAttribute.FC: GenericModel::GenFC +2024-09-08 15:11:37,880 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,880 [main] TRACE UmlAttribute - created (3345) WG10 IEC61850 [1..1] enumeration attribute GenericModel::GenSubDataAttribute.Presence: GenericModel::GenPresenceConditions +2024-09-08 15:11:37,880 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3346) WG10 IEC61850 [0..1] null GenericModel::GenSubDataAttribute.Index: GenericModel::GenINT32U +2024-09-08 15:11:37,880 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,880 [main] TRACE UmlAttribute - created (3346) WG10 IEC61850 [0..1] attribute GenericModel::GenSubDataAttribute.Index: GenericModel::GenINT32U +2024-09-08 15:11:37,880 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3347) WG10 IEC61850 [1..1] null GenericModel::GenSubDataObject.SDOName: GenericModel::GenObjectName +2024-09-08 15:11:37,880 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,880 [main] TRACE UmlAttribute - created (3347) WG10 IEC61850 [1..1] attribute GenericModel::GenSubDataObject.SDOName: GenericModel::GenObjectName +2024-09-08 15:11:37,880 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3348) WG10 IEC61850 [1..1] null GenericModel::GenSubDataObject.SDORef: GenericModel::GenObjRef +2024-09-08 15:11:37,881 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,881 [main] TRACE UmlAttribute - created (3348) WG10 IEC61850 [1..1] attribute GenericModel::GenSubDataObject.SDORef: GenericModel::GenObjRef +2024-09-08 15:11:37,881 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,881 [main] TRACE UmlAttribute - created (3349) WG10 IEC61850 [1..1] enumeration attribute GenericModel::GenSubDataObject.Presence: GenericModel::GenPresenceConditions +2024-09-08 15:11:37,881 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3350) WG10 IEC61850 [0..1] null GenericModel::GenSubDataObject.Index: GenericModel::GenINT32U +2024-09-08 15:11:37,881 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,881 [main] TRACE UmlAttribute - created (3350) WG10 IEC61850 [0..1] attribute GenericModel::GenSubDataObject.Index: GenericModel::GenINT32U +2024-09-08 15:11:37,881 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3351) WG10 IEC61850 [1..1] null GenericModel::GenTPAA.AssociationId: GenericModel::GenAssociationID +2024-09-08 15:11:37,881 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,881 [main] TRACE UmlAttribute - created (3351) WG10 IEC61850 [1..1] attribute GenericModel::GenTPAA.AssociationId: GenericModel::GenAssociationID +2024-09-08 15:11:37,881 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3305) WG10 IEC61850 [1..1] null IEC61850_7_2::IEC61850_7_2Namespace.id: NullIEC61850::NullIEC61850 = IEC61850-7-2 +2024-09-08 15:11:37,881 [main] TRACE ValueRange - 'IEC61850-7-2' has no separator indicating range. +2024-09-08 15:11:37,881 [main] TRACE UmlAttribute - created (3305) WG10 IEC61850 [1..1] attribute IEC61850_7_2::IEC61850_7_2Namespace.id: NullIEC61850::NullIEC61850 = IEC61850-7-2 +2024-09-08 15:11:37,881 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3306) WG10 IEC61850 [1..1] null IEC61850_7_2::IEC61850_7_2Namespace.version: NullIEC61850::NullIEC61850 = 2007 +2024-09-08 15:11:37,882 [main] TRACE ValueRange - '2007' has no separator indicating range. +2024-09-08 15:11:37,882 [main] TRACE UmlAttribute - created (3306) WG10 IEC61850 [1..1] attribute IEC61850_7_2::IEC61850_7_2Namespace.version: NullIEC61850::NullIEC61850 = 2007 +2024-09-08 15:11:37,882 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3307) WG10 IEC61850 [1..1] null IEC61850_7_2::IEC61850_7_2Namespace.revision: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,882 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,882 [main] TRACE UmlAttribute - created (3307) WG10 IEC61850 [1..1] attribute IEC61850_7_2::IEC61850_7_2Namespace.revision: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,882 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3308) WG10 IEC61850 [1..1] null IEC61850_7_2::IEC61850_7_2Namespace.date: NullIEC61850::NullIEC61850 = 2011-08-01 +2024-09-08 15:11:37,882 [main] TRACE ValueRange - '2011-08-01' has no separator indicating range. +2024-09-08 15:11:37,882 [main] TRACE UmlAttribute - created (3308) WG10 IEC61850 [1..1] attribute IEC61850_7_2::IEC61850_7_2Namespace.date: NullIEC61850::NullIEC61850 = 2011-08-01 +2024-09-08 15:11:37,882 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (6701) WG10 IEC61850 [1..1] null IEC61850_7_2::IEC61850_7_2Namespace.name: NullIEC61850::NullIEC61850 = IEC61850-7-2:2007 +2024-09-08 15:11:37,882 [main] TRACE ValueRange - 'IEC61850-7-2:2007' has no separator indicating range. +2024-09-08 15:11:37,882 [main] TRACE UmlAttribute - created (6701) WG10 IEC61850 [1..1] attribute IEC61850_7_2::IEC61850_7_2Namespace.name: NullIEC61850::NullIEC61850 = IEC61850-7-2:2007 +2024-09-08 15:11:37,882 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3381) WG10 IEC61850 private [1..1] null CoreTypes::ObjectName.val: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,882 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,882 [main] TRACE UmlAttribute - created (3381) WG10 IEC61850 private [1..1] attribute CoreTypes::ObjectName.val: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,882 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3382) WG10 IEC61850 private [1..1] null CoreTypes::P_ObjectReference.val: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,882 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,882 [main] TRACE UmlAttribute - created (3382) WG10 IEC61850 private [1..1] attribute CoreTypes::P_ObjectReference.val: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,882 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,882 [main] TRACE UmlAttribute - created (3383) WG10 IEC61850 [1..1] basic attribute CoreTypes::P_TimeStamp.SecondSinceEpoch: CoreTypes::P_INT32 +2024-09-08 15:11:37,882 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3384) WG10 IEC61850 [1..1] null CoreTypes::P_TimeStamp.FractionOfSecond: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,882 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,883 [main] TRACE UmlAttribute - created (3384) WG10 IEC61850 [1..1] attribute CoreTypes::P_TimeStamp.FractionOfSecond: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,883 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,883 [main] TRACE UmlAttribute - created (3385) WG10 IEC61850 [1..1] packed attribute CoreTypes::P_TimeStamp.TimeQuality: CoreTypes::TimeQuality +2024-09-08 15:11:37,883 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,883 [main] TRACE UmlAttribute - created (3386) WG10 IEC61850 [1..1] basic attribute CoreTypes::TimeQuality.LeapSecondsKnown: CoreTypes::P_BOOLEAN +2024-09-08 15:11:37,883 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,883 [main] TRACE UmlAttribute - created (3387) WG10 IEC61850 [1..1] basic attribute CoreTypes::TimeQuality.ClockFailure: CoreTypes::P_BOOLEAN +2024-09-08 15:11:37,883 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,883 [main] TRACE UmlAttribute - created (3388) WG10 IEC61850 [1..1] basic attribute CoreTypes::TimeQuality.ClockNotSynchronized: CoreTypes::P_BOOLEAN +2024-09-08 15:11:37,883 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,883 [main] TRACE UmlAttribute - created (3389) WG10 IEC61850 [1..1] packed,enumeration attribute CoreTypes::TimeQuality.TimeAccuracy: CoreTypes::TimeAccuracyKind +2024-09-08 15:11:37,883 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,883 [main] TRACE UmlAttribute - created (3397) WG10 IEC61850 [1..1] basic attribute CoreTypes::P_TriggerConditions.data-change: CoreTypes::P_BOOLEAN +2024-09-08 15:11:37,883 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,883 [main] TRACE UmlAttribute - created (3398) WG10 IEC61850 [1..1] basic attribute CoreTypes::P_TriggerConditions.quality-change: CoreTypes::P_BOOLEAN +2024-09-08 15:11:37,883 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,883 [main] TRACE UmlAttribute - created (3399) WG10 IEC61850 [1..1] basic attribute CoreTypes::P_TriggerConditions.data-update: CoreTypes::P_BOOLEAN +2024-09-08 15:11:37,883 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,883 [main] TRACE UmlAttribute - created (3400) WG10 IEC61850 [1..1] basic attribute CoreTypes::P_TriggerConditions.integrity: CoreTypes::P_BOOLEAN +2024-09-08 15:11:37,883 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,883 [main] TRACE UmlAttribute - created (3401) WG10 IEC61850 [1..1] basic attribute CoreTypes::P_TriggerConditions.general-interrogation: CoreTypes::P_BOOLEAN +2024-09-08 15:11:37,883 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3402) WG10 IEC61850 [1..1] null ObjectReferences::FILEReference.FileRef: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,883 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,883 [main] TRACE UmlAttribute - created (3402) WG10 IEC61850 [1..1] attribute ObjectReferences::FILEReference.FileRef: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,883 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3403) WG10 IEC61850 [0..1] null ObjectReferences::FILEReference.FileName: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,883 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,883 [main] TRACE UmlAttribute - created (3403) WG10 IEC61850 [0..1] attribute ObjectReferences::FILEReference.FileName: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,884 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3404) WG10 IEC61850 [1..1] null ObjectReferences::LDReference.LDRef: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,884 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,884 [main] TRACE UmlAttribute - created (3404) WG10 IEC61850 [1..1] attribute ObjectReferences::LDReference.LDRef: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,884 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,884 [main] TRACE UmlAttribute - created (3405) WG10 IEC61850 [0..1] basic attribute ObjectReferences::LDReference.LDName: CoreTypes::ObjectName +2024-09-08 15:11:37,884 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3406) WG10 IEC61850 [1..1] null ObjectReferences::NonPersistentDSReference.DSRef: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,884 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,884 [main] TRACE UmlAttribute - created (3406) WG10 IEC61850 [1..1] attribute ObjectReferences::NonPersistentDSReference.DSRef: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,884 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,884 [main] TRACE UmlAttribute - created (3407) WG10 IEC61850 [0..1] basic attribute ObjectReferences::NonPersistentDSReference.DSName: CoreTypes::ObjectName +2024-09-08 15:11:37,884 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3408) WG10 IEC61850 [1..1] null ObjectReferences::LNReference.LNRef: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,884 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,884 [main] TRACE UmlAttribute - created (3408) WG10 IEC61850 [1..1] attribute ObjectReferences::LNReference.LNRef: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,884 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,884 [main] TRACE UmlAttribute - created (3409) WG10 IEC61850 [0..1] basic attribute ObjectReferences::LNReference.LNName: CoreTypes::ObjectName +2024-09-08 15:11:37,884 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3410) WG10 IEC61850 [1..1] null ObjectReferences::CDCReference.DataRef: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,884 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,884 [main] TRACE UmlAttribute - created (3410) WG10 IEC61850 [1..1] attribute ObjectReferences::CDCReference.DataRef: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,884 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,884 [main] TRACE UmlAttribute - created (3411) WG10 IEC61850 [0..1] basic attribute ObjectReferences::CDCReference.DataName: CoreTypes::ObjectName +2024-09-08 15:11:37,884 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,884 [main] TRACE UmlAttribute - created (3412) WG10 IEC61850 [0..1] basic attribute ObjectReferences::CDCReference.SubDataName: CoreTypes::ObjectName +2024-09-08 15:11:37,884 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3413) WG10 IEC61850 [1..1] null ObjectReferences::CBReference.CBRef: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,884 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,884 [main] TRACE UmlAttribute - created (3413) WG10 IEC61850 [1..1] attribute ObjectReferences::CBReference.CBRef: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,884 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,884 [main] TRACE UmlAttribute - created (3414) WG10 IEC61850 [0..1] basic attribute ObjectReferences::CBReference.CBName: CoreTypes::ObjectName +2024-09-08 15:11:37,884 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,884 [main] TRACE UmlAttribute - created (3415) WG10 IEC61850 [0..1] enumeration attribute ObjectReferences::CBReference.FC: ObjectReferences::ServiceFcKind +2024-09-08 15:11:37,885 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3424) WG10 IEC61850 [1..1] null ObjectReferences::LOGReference.LogRef: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,885 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,885 [main] TRACE UmlAttribute - created (3424) WG10 IEC61850 [1..1] attribute ObjectReferences::LOGReference.LogRef: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,885 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,885 [main] TRACE UmlAttribute - created (3425) WG10 IEC61850 [0..1] basic attribute ObjectReferences::LOGReference.LogName: CoreTypes::ObjectName +2024-09-08 15:11:37,885 [main] TRACE ValueRange - 'LG' has no separator indicating range. +2024-09-08 15:11:37,885 [main] TRACE UmlAttribute - created (3426) WG10 IEC61850 static const [0..1] enumeration attribute ObjectReferences::LOGReference.FC: ObjectReferences::ServiceFcKind = LG +2024-09-08 15:11:37,885 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3427) WG10 IEC61850 [1..1] null ObjectReferences::LNOwnedDSReference.DSRef: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,885 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,885 [main] TRACE UmlAttribute - created (3427) WG10 IEC61850 [1..1] attribute ObjectReferences::LNOwnedDSReference.DSRef: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,885 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,885 [main] TRACE UmlAttribute - created (3428) WG10 IEC61850 [0..1] basic attribute ObjectReferences::LNOwnedDSReference.DSName: CoreTypes::ObjectName +2024-09-08 15:11:37,885 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3429) WG10 IEC61850 [1..1] null ObjectReferences::FCDReference.FCDRef: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,885 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,885 [main] TRACE UmlAttribute - created (3429) WG10 IEC61850 [1..1] attribute ObjectReferences::FCDReference.FCDRef: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,885 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3430) WG10 IEC61850 [0..1] null ObjectReferences::FCDReference.FCDRefWithoutFC: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,885 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,885 [main] TRACE UmlAttribute - created (3430) WG10 IEC61850 [0..1] attribute ObjectReferences::FCDReference.FCDRefWithoutFC: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,885 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,885 [main] TRACE UmlAttribute - created (3431) WG10 IEC61850 [0..1] enumeration attribute ObjectReferences::FCDReference.FC: FunctionalConstraints::FcKind +2024-09-08 15:11:37,885 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3432) WG10 IEC61850 [1..1] null ObjectReferences::FCDAReference.FCDARef: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,885 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,885 [main] TRACE UmlAttribute - created (3432) WG10 IEC61850 [1..1] attribute ObjectReferences::FCDAReference.FCDARef: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,885 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,885 [main] TRACE UmlAttribute - created (3433) WG10 IEC61850 [0..1] basic attribute ObjectReferences::FCDAReference.FCDARefWithoutFC: CoreTypes::P_VISIBLE_STRING255 +2024-09-08 15:11:37,885 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,885 [main] TRACE UmlAttribute - created (3434) WG10 IEC61850 [0..1] basic attribute ObjectReferences::FCDAReference.LeafAttrName: CoreTypes::ObjectName +2024-09-08 15:11:37,885 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,885 [main] TRACE UmlAttribute - created (3435) WG10 IEC61850 [0..1] basic attribute ObjectReferences::FCDAReference.NumArrayElement: CoreTypes::P_INT32U +2024-09-08 15:11:37,886 [main] TRACE UmlOperation - created (7) WG10 IEC61850 AttrValues::AttrValue operation abstract public AttrValueKind getType() +2024-09-08 15:11:37,886 [main] TRACE UmlOperation - created (46) WG10 IEC61850 AttrValues::AttrDefinition operation public FCDAReference getFcdaRef() +2024-09-08 15:11:37,886 [main] TRACE UmlOperation - created (47) WG10 IEC61850 AttrValues::AttrDefinition operation public AttrValueKind getValType() +2024-09-08 15:11:37,886 [main] TRACE UmlOperation - created (48) WG10 IEC61850 AttrValues::NamedAttrValue operation public FCDAReference getFcdaRef() +2024-09-08 15:11:37,886 [main] TRACE UmlOperation - created (49) WG10 IEC61850 AttrValues::NamedAttrValue operation public AttrValue getVal() +2024-09-08 15:11:37,886 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,886 [main] TRACE UmlAttribute - created (3455) WG10 IEC61850 private [1..1] basic attribute BasicDAs::BOOLEAN.val: CoreTypes::P_BOOLEAN +2024-09-08 15:11:37,886 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,886 [main] TRACE UmlAttribute - created (3458) WG10 IEC61850 private [1..1] basic attribute BasicDAs::INT16U.val: CoreTypes::P_INT16U +2024-09-08 15:11:37,886 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,886 [main] TRACE UmlAttribute - created (3460) WG10 IEC61850 private [1..1] basic attribute BasicDAs::INT32.val: CoreTypes::P_INT32 +2024-09-08 15:11:37,886 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,886 [main] TRACE UmlAttribute - created (3461) WG10 IEC61850 private [1..1] basic attribute BasicDAs::INT32U.val: CoreTypes::P_INT32U +2024-09-08 15:11:37,886 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,886 [main] TRACE UmlAttribute - created (3456) WG10 IEC61850 private [1..1] basic attribute BasicDAs::FLOAT32.val: CoreTypes::P_FLOAT32 +2024-09-08 15:11:37,886 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,886 [main] TRACE UmlAttribute - created (3466) WG10 IEC61850 private [1..1] basic attribute BasicDAs::UNICODE_STRING255.val: CoreTypes::P_UNICODE_STRING255 +2024-09-08 15:11:37,886 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,886 [main] TRACE UmlAttribute - created (3467) WG10 IEC61850 private [1..1] basic attribute BasicDAs::VISIBLE_STRING255.val: CoreTypes::P_VISIBLE_STRING255 +2024-09-08 15:11:37,886 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,886 [main] TRACE UmlAttribute - created (3469) WG10 IEC61850 private [1..1] basic attribute BasicDAs::ObjectReference.val: CoreTypes::P_ObjectReference +2024-09-08 15:11:37,886 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,886 [main] TRACE UmlAttribute - created (3470) WG10 IEC61850 private [1..1] basic attribute BasicDAs::PHYCOMADDR.val: CoreTypes::P_PHYCOMADDR +2024-09-08 15:11:37,886 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,886 [main] TRACE UmlAttribute - created (3471) WG10 IEC61850 private [1..1] packed attribute BasicDAs::TimeStamp.val: CoreTypes::P_TimeStamp +2024-09-08 15:11:37,886 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,886 [main] TRACE UmlAttribute - created (3472) WG10 IEC61850 private [1..1] packed attribute BasicDAs::TriggerConditions.val: CoreTypes::P_TriggerConditions +2024-09-08 15:11:37,886 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,887 [main] TRACE UmlAttribute - created (3473) WG10 IEC61850 private [1..1] packed,enumeration attribute BasicDAs::DpStatus.val: ACSIEnums::DpStatusKind +2024-09-08 15:11:37,887 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,887 [main] TRACE UmlAttribute - created (3474) WG10 IEC61850 private [1..1] packed,enumeration attribute BasicDAs::BsControl.val: ACSIEnums::BsControlKind +2024-09-08 15:11:37,887 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3475) WG10 IEC61850 [1..1] null CommonAcsiTypes::IPAddress.address: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,887 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,887 [main] TRACE UmlAttribute - created (3475) WG10 IEC61850 [1..1] attribute CommonAcsiTypes::IPAddress.address: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,887 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3476) WG10 IEC61850 [1..1] null CommonAcsiTypes::MulticastAddress.address: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,887 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,887 [main] TRACE UmlAttribute - created (3476) WG10 IEC61850 [1..1] attribute CommonAcsiTypes::MulticastAddress.address: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,887 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3477) WG10 IEC61850 [1..1] null CommonAcsiTypes::MulticastAddress.priority: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,887 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,887 [main] TRACE UmlAttribute - created (3477) WG10 IEC61850 [1..1] attribute CommonAcsiTypes::MulticastAddress.priority: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,887 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,887 [main] TRACE UmlAttribute - created (3478) WG10 IEC61850 [1..1] basic attribute CommonAcsiTypes::MulticastAddress.vid: CoreTypes::P_INT16U +2024-09-08 15:11:37,887 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,887 [main] TRACE UmlAttribute - created (3479) WG10 IEC61850 [1..1] basic attribute CommonAcsiTypes::MulticastAddress.appid: CoreTypes::P_INT16U +2024-09-08 15:11:37,887 [main] TRACE UmlOperation - created (50) WG10 IEC61850 CommonAcsiTypes::Authentication operation public NullIEC61850 getPassword() +2024-09-08 15:11:37,887 [main] TRACE UmlOperation - created (51) WG10 IEC61850 CommonAcsiTypes::Authentication operation public NullIEC61850 geUserID() +2024-09-08 15:11:37,887 [main] TRACE UmlOperation - created (52) WG10 IEC61850 CommonAcsiTypes::Authentication operation public AccessView[] getViews() +2024-09-08 15:11:37,887 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3480) WG10 IEC61850 private [1..1] null CommonAcsiTypes::ReportID.val: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,887 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,887 [main] TRACE UmlAttribute - created (3480) WG10 IEC61850 private [1..1] attribute CommonAcsiTypes::ReportID.val: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,887 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,887 [main] TRACE UmlAttribute - created (3481) WG10 IEC61850 private [1..1] basic attribute CommonAcsiTypes::EntryID.val: CommonAcsiTypes::P_OCTET_STRING +2024-09-08 15:11:37,887 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3584) WG10 IEC61850 [1..1] null MetaModel::HierarchyIEC61850Object.parent: MetaModel::IEC61850Object +2024-09-08 15:11:37,887 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,887 [main] TRACE UmlAttribute - created (3584) WG10 IEC61850 [1..1] attribute MetaModel::HierarchyIEC61850Object.parent: MetaModel::IEC61850Object +2024-09-08 15:11:37,887 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,888 [main] TRACE UmlAttribute - created (3585) WG10 IEC61850 [1..1] basic attribute MetaModel::NamedIEC61850Object.objName: CoreTypes::ObjectName +2024-09-08 15:11:37,888 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3586) WG10 IEC61850 [1..1] null MetaModel::IED.name: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,888 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,888 [main] TRACE UmlAttribute - created (3586) WG10 IEC61850 [1..1] attribute MetaModel::IED.name: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,888 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3587) WG10 IEC61850 [1..1] null MetaModel::SERVER.name: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,888 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,888 [main] TRACE UmlAttribute - created (3587) WG10 IEC61850 [1..1] attribute MetaModel::SERVER.name: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,888 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3588) WG10 IEC61850 [1..*] null MetaModel::SERVER.serviceAccessPoints: CommonAcsiTypes::IPAddress +2024-09-08 15:11:37,888 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,888 [main] TRACE UmlAttribute - created (3588) WG10 IEC61850 [1..*] attribute MetaModel::SERVER.serviceAccessPoints: CommonAcsiTypes::IPAddress +2024-09-08 15:11:37,888 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3589) WG10 IEC61850 [1..1] null MetaModel::LD.objRef: ObjectReferences::LDReference +2024-09-08 15:11:37,888 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,888 [main] TRACE UmlAttribute - created (3589) WG10 IEC61850 [1..1] attribute MetaModel::LD.objRef: ObjectReferences::LDReference +2024-09-08 15:11:37,888 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3590) WG10 IEC61850 [1..1] null MetaModel::LN.objRef: ObjectReferences::LNReference +2024-09-08 15:11:37,888 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,888 [main] TRACE UmlAttribute - created (3590) WG10 IEC61850 [1..1] attribute MetaModel::LN.objRef: ObjectReferences::LNReference +2024-09-08 15:11:37,888 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3591) WG10 IEC61850 [1..1] null MetaModel::CDC.objRef: ObjectReferences::CDCReference +2024-09-08 15:11:37,888 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,888 [main] TRACE UmlAttribute - created (3591) WG10 IEC61850 [1..1] attribute MetaModel::CDC.objRef: ObjectReferences::CDCReference +2024-09-08 15:11:37,888 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3592) WG10 IEC61850 [1..1] null MetaModel::FCD.objRef: ObjectReferences::FCDReference +2024-09-08 15:11:37,888 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,888 [main] TRACE UmlAttribute - created (3592) WG10 IEC61850 [1..1] attribute MetaModel::FCD.objRef: ObjectReferences::FCDReference +2024-09-08 15:11:37,888 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,888 [main] TRACE UmlAttribute - created (3593) WG10 IEC61850 [1..1] enumeration attribute MetaModel::FCD.fc: FunctionalConstraints::FcKind +2024-09-08 15:11:37,888 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3594) WG10 IEC61850 [1..1] null MetaModel::FCDA.objRef: ObjectReferences::FCDAReference +2024-09-08 15:11:37,888 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,888 [main] TRACE UmlAttribute - created (3594) WG10 IEC61850 [1..1] attribute MetaModel::FCDA.objRef: ObjectReferences::FCDAReference +2024-09-08 15:11:37,888 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3595) WG10 IEC61850 [1..1] null MetaModel::DA.objRef: ObjectReferences::FCDAReference +2024-09-08 15:11:37,888 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,888 [main] TRACE UmlAttribute - created (3595) WG10 IEC61850 [1..1] attribute MetaModel::DA.objRef: ObjectReferences::FCDAReference +2024-09-08 15:11:37,889 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3596) WG10 IEC61850 [1..1] null MetaModel::PrimitiveDA.attrVal: AttrValues::AttrValue +2024-09-08 15:11:37,889 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,889 [main] TRACE UmlAttribute - created (3596) WG10 IEC61850 [1..1] attribute MetaModel::PrimitiveDA.attrVal: AttrValues::AttrValue +2024-09-08 15:11:37,889 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3597) WG10 IEC61850 [1..1] null MetaModel::LNOwnedDS.objRef: ObjectReferences::LNOwnedDSReference +2024-09-08 15:11:37,889 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,889 [main] TRACE UmlAttribute - created (3597) WG10 IEC61850 [1..1] attribute MetaModel::LNOwnedDS.objRef: ObjectReferences::LNOwnedDSReference +2024-09-08 15:11:37,889 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,889 [main] TRACE UmlAttribute - created (3598) WG10 IEC61850 [1..1] basic attribute MetaModel::NonPersistentDS.isReferenced: CoreTypes::P_BOOLEAN +2024-09-08 15:11:37,890 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3599) WG10 IEC61850 [1..1] null MetaModel::NonPersistentDS.objRef: ObjectReferences::NonPersistentDSReference +2024-09-08 15:11:37,890 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,890 [main] TRACE UmlAttribute - created (3599) WG10 IEC61850 [1..1] attribute MetaModel::NonPersistentDS.objRef: ObjectReferences::NonPersistentDSReference +2024-09-08 15:11:37,890 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,890 [main] TRACE UmlAttribute - created (3600) WG10 IEC61850 [1..1] basic attribute MetaModel::PersistentDS.isReferenced: CoreTypes::P_BOOLEAN +2024-09-08 15:11:37,890 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3601) WG10 IEC61850 [1..1] null MetaModel::ControlBlock.objRef: ObjectReferences::CBReference +2024-09-08 15:11:37,890 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,890 [main] TRACE UmlAttribute - created (3601) WG10 IEC61850 [1..1] attribute MetaModel::ControlBlock.objRef: ObjectReferences::CBReference +2024-09-08 15:11:37,890 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3602) WG10 IEC61850 [1..1] null MetaModel::BRCB.clientAddress: CommonAcsiTypes::IPAddress +2024-09-08 15:11:37,890 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,890 [main] TRACE UmlAttribute - created (3602) WG10 IEC61850 [1..1] attribute MetaModel::BRCB.clientAddress: CommonAcsiTypes::IPAddress +2024-09-08 15:11:37,890 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3603) WG10 IEC61850 [1..1] null MetaModel::URCB.clientAddress: CommonAcsiTypes::IPAddress +2024-09-08 15:11:37,890 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,890 [main] TRACE UmlAttribute - created (3603) WG10 IEC61850 [1..1] attribute MetaModel::URCB.clientAddress: CommonAcsiTypes::IPAddress +2024-09-08 15:11:37,890 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3604) WG10 IEC61850 [1..1] null MetaModel::LOG.objRef: ObjectReferences::LOGReference +2024-09-08 15:11:37,890 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,890 [main] TRACE UmlAttribute - created (3604) WG10 IEC61850 [1..1] attribute MetaModel::LOG.objRef: ObjectReferences::LOGReference +2024-09-08 15:11:37,890 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3605) WG10 IEC61850 [1..1] null MetaModel::GCB.destinationAddress: CommonAcsiTypes::MulticastAddress +2024-09-08 15:11:37,890 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,890 [main] TRACE UmlAttribute - created (3605) WG10 IEC61850 [1..1] attribute MetaModel::GCB.destinationAddress: CommonAcsiTypes::MulticastAddress +2024-09-08 15:11:37,890 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3606) WG10 IEC61850 [1..1] null MetaModel::MSVCB.destinationAddress: CommonAcsiTypes::MulticastAddress +2024-09-08 15:11:37,890 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,890 [main] TRACE UmlAttribute - created (3606) WG10 IEC61850 [1..1] attribute MetaModel::MSVCB.destinationAddress: CommonAcsiTypes::MulticastAddress +2024-09-08 15:11:37,890 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3607) WG10 IEC61850 [1..1] null MetaModel::USVCB.clientAddress: CommonAcsiTypes::IPAddress +2024-09-08 15:11:37,890 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,890 [main] TRACE UmlAttribute - created (3607) WG10 IEC61850 [1..1] attribute MetaModel::USVCB.clientAddress: CommonAcsiTypes::IPAddress +2024-09-08 15:11:37,890 [main] DEBUG UmlAttribute - unclassified 7-2 attribute: (3608) WG10 IEC61850 [1..1] null MetaModel::FILE.objRef: ObjectReferences::FILEReference +2024-09-08 15:11:37,890 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,890 [main] TRACE UmlAttribute - created (3608) WG10 IEC61850 [1..1] attribute MetaModel::FILE.objRef: ObjectReferences::FILEReference +2024-09-08 15:11:37,891 [main] TRACE ValueRange - 'BL' has no separator indicating range. +2024-09-08 15:11:37,891 [main] TRACE UmlAttribute - created (3609) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_BL.fc: FunctionalConstraints::FcKind = BL +2024-09-08 15:11:37,891 [main] TRACE ValueRange - 'CF' has no separator indicating range. +2024-09-08 15:11:37,891 [main] TRACE UmlAttribute - created (3610) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_CF.fc: FunctionalConstraints::FcKind = CF +2024-09-08 15:11:37,891 [main] TRACE ValueRange - 'dchg' has no separator indicating range. +2024-09-08 15:11:37,891 [main] TRACE UmlAttribute - created (3611) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_CF_dchg.trgOp: TriggerOptions::TrgOpKind = dchg +2024-09-08 15:11:37,891 [main] TRACE ValueRange - 'DC' has no separator indicating range. +2024-09-08 15:11:37,891 [main] TRACE UmlAttribute - created (3612) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_DC.fc: FunctionalConstraints::FcKind = DC +2024-09-08 15:11:37,891 [main] TRACE ValueRange - 'EX' has no separator indicating range. +2024-09-08 15:11:37,891 [main] TRACE UmlAttribute - created (3613) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_EX.fc: FunctionalConstraints::FcKind = EX +2024-09-08 15:11:37,891 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-08 15:11:37,891 [main] TRACE UmlAttribute - created (3614) WG10 IEC61850 static const [1..1] basic attribute MetaModelFCsAndTrgOps::FCDA_EX.isWritable: CoreTypes::P_BOOLEAN = false +2024-09-08 15:11:37,891 [main] TRACE ValueRange - 'MX' has no separator indicating range. +2024-09-08 15:11:37,891 [main] TRACE UmlAttribute - created (3615) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_MX.fc: FunctionalConstraints::FcKind = MX +2024-09-08 15:11:37,891 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-08 15:11:37,891 [main] TRACE UmlAttribute - created (3616) WG10 IEC61850 static const [1..1] basic attribute MetaModelFCsAndTrgOps::FCDA_MX.isWritable: CoreTypes::P_BOOLEAN = false +2024-09-08 15:11:37,891 [main] TRACE ValueRange - 'dchg' has no separator indicating range. +2024-09-08 15:11:37,891 [main] TRACE UmlAttribute - created (3617) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_MX_dchg.trgOp: TriggerOptions::TrgOpKind = dchg +2024-09-08 15:11:37,891 [main] TRACE ValueRange - 'dchg, dupd' has no separator indicating range. +2024-09-08 15:11:37,891 [main] TRACE UmlAttribute - created (3618) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_MX_dchg_dupd.trgOp: TriggerOptions::TrgOpKind = dchg, dupd +2024-09-08 15:11:37,891 [main] TRACE ValueRange - 'qchg' has no separator indicating range. +2024-09-08 15:11:37,891 [main] TRACE UmlAttribute - created (3619) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_MX_qchg.trgOp: TriggerOptions::TrgOpKind = qchg +2024-09-08 15:11:37,891 [main] TRACE ValueRange - 'OR' has no separator indicating range. +2024-09-08 15:11:37,891 [main] TRACE UmlAttribute - created (3620) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_OR.fc: FunctionalConstraints::FcKind = OR +2024-09-08 15:11:37,891 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-08 15:11:37,891 [main] TRACE UmlAttribute - created (3621) WG10 IEC61850 static const [1..1] basic attribute MetaModelFCsAndTrgOps::FCDA_OR.isWritable: CoreTypes::P_BOOLEAN = false +2024-09-08 15:11:37,891 [main] TRACE ValueRange - 'dchg' has no separator indicating range. +2024-09-08 15:11:37,892 [main] TRACE UmlAttribute - created (3622) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_OR_dchg.trgOp: TriggerOptions::TrgOpKind = dchg +2024-09-08 15:11:37,892 [main] TRACE ValueRange - 'SE' has no separator indicating range. +2024-09-08 15:11:37,892 [main] TRACE UmlAttribute - created (3623) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_SE.fc: FunctionalConstraints::FcKind = SE +2024-09-08 15:11:37,892 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-08 15:11:37,892 [main] TRACE UmlAttribute - created (3624) WG10 IEC61850 static const [1..1] basic attribute MetaModelFCsAndTrgOps::FCDA_SE.isReadable: CoreTypes::P_BOOLEAN = false +2024-09-08 15:11:37,892 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-08 15:11:37,892 [main] TRACE UmlAttribute - created (3625) WG10 IEC61850 static const [1..1] basic attribute MetaModelFCsAndTrgOps::FCDA_SE.isWritable: CoreTypes::P_BOOLEAN = false +2024-09-08 15:11:37,892 [main] TRACE ValueRange - 'dchg' has no separator indicating range. +2024-09-08 15:11:37,892 [main] TRACE UmlAttribute - created (3626) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_SE_dchg.trgOp: TriggerOptions::TrgOpKind = dchg +2024-09-08 15:11:37,892 [main] TRACE ValueRange - 'SG' has no separator indicating range. +2024-09-08 15:11:37,892 [main] TRACE UmlAttribute - created (3627) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_SG.fc: FunctionalConstraints::FcKind = SG +2024-09-08 15:11:37,892 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-08 15:11:37,892 [main] TRACE UmlAttribute - created (3628) WG10 IEC61850 static const [1..1] basic attribute MetaModelFCsAndTrgOps::FCDA_SG.isWritable: CoreTypes::P_BOOLEAN = false +2024-09-08 15:11:37,892 [main] TRACE ValueRange - 'dchg' has no separator indicating range. +2024-09-08 15:11:37,892 [main] TRACE UmlAttribute - created (3629) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_SG_dchg.trgOp: TriggerOptions::TrgOpKind = dchg +2024-09-08 15:11:37,892 [main] TRACE ValueRange - 'SP' has no separator indicating range. +2024-09-08 15:11:37,892 [main] TRACE UmlAttribute - created (3630) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_SP.fc: FunctionalConstraints::FcKind = SP +2024-09-08 15:11:37,892 [main] TRACE ValueRange - 'dchg' has no separator indicating range. +2024-09-08 15:11:37,892 [main] TRACE UmlAttribute - created (3631) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_SP_dchg.trgOp: TriggerOptions::TrgOpKind = dchg +2024-09-08 15:11:37,892 [main] TRACE ValueRange - 'ST' has no separator indicating range. +2024-09-08 15:11:37,892 [main] TRACE UmlAttribute - created (3632) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_ST.fc: FunctionalConstraints::FcKind = ST +2024-09-08 15:11:37,892 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-08 15:11:37,892 [main] TRACE UmlAttribute - created (3633) WG10 IEC61850 static const [1..1] basic attribute MetaModelFCsAndTrgOps::FCDA_ST.isWritable: CoreTypes::P_BOOLEAN = false +2024-09-08 15:11:37,892 [main] TRACE ValueRange - 'dchg' has no separator indicating range. +2024-09-08 15:11:37,892 [main] TRACE UmlAttribute - created (3634) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_ST_dchg.trgOp: TriggerOptions::TrgOpKind = dchg +2024-09-08 15:11:37,892 [main] TRACE ValueRange - 'dchg, dupd' has no separator indicating range. +2024-09-08 15:11:37,892 [main] TRACE UmlAttribute - created (3635) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_ST_dchg_dupd.trgOp: TriggerOptions::TrgOpKind = dchg, dupd +2024-09-08 15:11:37,892 [main] TRACE ValueRange - 'dupd' has no separator indicating range. +2024-09-08 15:11:37,893 [main] TRACE UmlAttribute - created (3636) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_ST_dupd.trgOp: TriggerOptions::TrgOpKind = dupd +2024-09-08 15:11:37,893 [main] TRACE ValueRange - 'qchg' has no separator indicating range. +2024-09-08 15:11:37,893 [main] TRACE UmlAttribute - created (3637) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_ST_qchg.trgOp: TriggerOptions::TrgOpKind = qchg +2024-09-08 15:11:37,893 [main] TRACE ValueRange - 'SV' has no separator indicating range. +2024-09-08 15:11:37,893 [main] TRACE UmlAttribute - created (3638) WG10 IEC61850 static const [1..1] enumeration attribute MetaModelFCsAndTrgOps::FCDA_SV.fc: FunctionalConstraints::FcKind = SV +2024-09-08 15:11:37,893 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3309) WG10 IEC61850 [1..1] null IEC61850_7_3::IEC61850_7_3Namespace.id: NullIEC61850::NullIEC61850 = IEC61850-7-3 +2024-09-08 15:11:37,893 [main] TRACE ValueRange - 'IEC61850-7-3' has no separator indicating range. +2024-09-08 15:11:37,893 [main] TRACE UmlAttribute - created (3309) WG10 IEC61850 [1..1] attribute IEC61850_7_3::IEC61850_7_3Namespace.id: NullIEC61850::NullIEC61850 = IEC61850-7-3 +2024-09-08 15:11:37,893 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3310) WG10 IEC61850 [1..1] null IEC61850_7_3::IEC61850_7_3Namespace.version: NullIEC61850::NullIEC61850 = 2011 +2024-09-08 15:11:37,894 [main] TRACE ValueRange - '2011' has no separator indicating range. +2024-09-08 15:11:37,894 [main] TRACE UmlAttribute - created (3310) WG10 IEC61850 [1..1] attribute IEC61850_7_3::IEC61850_7_3Namespace.version: NullIEC61850::NullIEC61850 = 2011 +2024-09-08 15:11:37,894 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3311) WG10 IEC61850 [1..1] null IEC61850_7_3::IEC61850_7_3Namespace.revision: NullIEC61850::NullIEC61850 = B +2024-09-08 15:11:37,894 [main] TRACE ValueRange - 'B' has no separator indicating range. +2024-09-08 15:11:37,894 [main] TRACE UmlAttribute - created (3311) WG10 IEC61850 [1..1] attribute IEC61850_7_3::IEC61850_7_3Namespace.revision: NullIEC61850::NullIEC61850 = B +2024-09-08 15:11:37,894 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3312) WG10 IEC61850 [1..1] null IEC61850_7_3::IEC61850_7_3Namespace.date: NullIEC61850::NullIEC61850 = 2011-08-01 +2024-09-08 15:11:37,894 [main] TRACE ValueRange - '2011-08-01' has no separator indicating range. +2024-09-08 15:11:37,894 [main] TRACE UmlAttribute - created (3312) WG10 IEC61850 [1..1] attribute IEC61850_7_3::IEC61850_7_3Namespace.date: NullIEC61850::NullIEC61850 = 2011-08-01 +2024-09-08 15:11:37,894 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (6703) WG10 IEC61850 [1..1] null IEC61850_7_3::IEC61850_7_3Namespace.name: NullIEC61850::NullIEC61850 = IEC61850-7-3 B 2011 +2024-09-08 15:11:37,894 [main] TRACE ValueRange - 'IEC61850-7-3 B 2011' has no separator indicating range. +2024-09-08 15:11:37,894 [main] TRACE UmlAttribute - created (6703) WG10 IEC61850 [1..1] attribute IEC61850_7_3::IEC61850_7_3Namespace.name: NullIEC61850::NullIEC61850 = IEC61850-7-3 B 2011 +2024-09-08 15:11:37,894 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,894 [main] TRACE UmlAttribute - created (4088) WG10 IEC61850 private [1..1] enumeration attribute ImplicitDAs::SIUnit.val: DAEnums::SIUnitKind +2024-09-08 15:11:37,894 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,894 [main] TRACE UmlAttribute - created (4077) WG10 IEC61850 private [1..1] enumeration attribute ImplicitDAs::Multiplier.val: DAEnums::MultiplierKind +2024-09-08 15:11:37,894 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,895 [main] TRACE UmlAttribute - created (4082) WG10 IEC61850 private [1..1] enumeration attribute ImplicitDAs::PhaseFaultDirection.val: DAEnums::PhaseFaultDirectionKind +2024-09-08 15:11:37,895 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,895 [main] TRACE UmlAttribute - created (4081) WG10 IEC61850 private [1..1] enumeration attribute ImplicitDAs::PhaseAngleReference.val: DAEnums::PhaseAngleReferenceKind +2024-09-08 15:11:37,895 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,895 [main] TRACE UmlAttribute - created (4089) WG10 IEC61850 [1..1] packed,enumeration attribute ConstructedDAs::Quality.validity: ConstructedDAs::ValidityKind +2024-09-08 15:11:37,895 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,895 [main] TRACE UmlAttribute - created (4090) WG10 IEC61850 [1..1] packed attribute ConstructedDAs::Quality.detailQual: ConstructedDAs::DetailQual +2024-09-08 15:11:37,895 [main] TRACE ValueRange - 'process' has no separator indicating range. +2024-09-08 15:11:37,895 [main] TRACE UmlAttribute - created (4091) WG10 IEC61850 [1..1] packed,enumeration attribute ConstructedDAs::Quality.source: ConstructedDAs::SourceKind = process +2024-09-08 15:11:37,895 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-08 15:11:37,895 [main] TRACE UmlAttribute - created (4092) WG10 IEC61850 [1..1] basic attribute ConstructedDAs::Quality.test: CoreTypes::P_BOOLEAN = false +2024-09-08 15:11:37,895 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-08 15:11:37,895 [main] TRACE UmlAttribute - created (4093) WG10 IEC61850 [1..1] basic attribute ConstructedDAs::Quality.operatorBlocked: CoreTypes::P_BOOLEAN = false +2024-09-08 15:11:37,895 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-08 15:11:37,895 [main] TRACE UmlAttribute - created (4098) WG10 IEC61850 [1..1] basic attribute ConstructedDAs::DetailQual.overflow: CoreTypes::P_BOOLEAN = false +2024-09-08 15:11:37,895 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-08 15:11:37,895 [main] TRACE UmlAttribute - created (4099) WG10 IEC61850 [1..1] basic attribute ConstructedDAs::DetailQual.outOfRange: CoreTypes::P_BOOLEAN = false +2024-09-08 15:11:37,895 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-08 15:11:37,895 [main] TRACE UmlAttribute - created (4100) WG10 IEC61850 [1..1] basic attribute ConstructedDAs::DetailQual.badReference: CoreTypes::P_BOOLEAN = false +2024-09-08 15:11:37,895 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-08 15:11:37,895 [main] TRACE UmlAttribute - created (4101) WG10 IEC61850 [1..1] basic attribute ConstructedDAs::DetailQual.oscillatory: CoreTypes::P_BOOLEAN = false +2024-09-08 15:11:37,895 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-08 15:11:37,895 [main] TRACE UmlAttribute - created (4102) WG10 IEC61850 [1..1] basic attribute ConstructedDAs::DetailQual.failure: CoreTypes::P_BOOLEAN = false +2024-09-08 15:11:37,895 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-08 15:11:37,895 [main] TRACE UmlAttribute - created (4103) WG10 IEC61850 [1..1] basic attribute ConstructedDAs::DetailQual.oldData: CoreTypes::P_BOOLEAN = false +2024-09-08 15:11:37,895 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-08 15:11:37,895 [main] TRACE UmlAttribute - created (4104) WG10 IEC61850 [1..1] basic attribute ConstructedDAs::DetailQual.inconsistent: CoreTypes::P_BOOLEAN = false +2024-09-08 15:11:37,895 [main] TRACE ValueRange - 'false' has no separator indicating range. +2024-09-08 15:11:37,896 [main] TRACE UmlAttribute - created (4105) WG10 IEC61850 [1..1] basic attribute ConstructedDAs::DetailQual.inaccurate: CoreTypes::P_BOOLEAN = false +2024-09-08 15:11:37,896 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,896 [main] TRACE UmlAttribute - created (4108) WG10 IEC61850 [0..1] PrimitiveDA attribute ConstructedDAs::AnalogueValue.i: BasicDAs::INT32 +2024-09-08 15:11:37,896 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,896 [main] TRACE UmlAttribute - created (4109) WG10 IEC61850 [0..1] PrimitiveDA attribute ConstructedDAs::AnalogueValue.f: BasicDAs::FLOAT32 +2024-09-08 15:11:37,896 [main] WARN PresenceCondition - presence condition literal not found, or invalid class constraint name format (should be 'name(arguments)'): WG10 IEC61850 class attributes constraint ConstructedDAs::AnalogueValue {AtLeastOne = [i, f]} +2024-09-08 15:11:37,896 [main] TRACE UmlConstraint - created class attributes constraint ConstructedDAs::AnalogueValue {AtLeastOne = [i, f]} (null) +2024-09-08 15:11:37,897 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,897 [main] TRACE UmlAttribute - created (4112) WG10 IEC61850 [1..1] ComposedDA attribute ConstructedDAs::RangeConfig.hhLim: ConstructedDAs::AnalogueValue +2024-09-08 15:11:37,897 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,897 [main] TRACE UmlAttribute - created (4113) WG10 IEC61850 [1..1] ComposedDA attribute ConstructedDAs::RangeConfig.hLim: ConstructedDAs::AnalogueValue +2024-09-08 15:11:37,897 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,897 [main] TRACE UmlAttribute - created (4114) WG10 IEC61850 [1..1] ComposedDA attribute ConstructedDAs::RangeConfig.lLim: ConstructedDAs::AnalogueValue +2024-09-08 15:11:37,897 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,897 [main] TRACE UmlAttribute - created (4115) WG10 IEC61850 [1..1] ComposedDA attribute ConstructedDAs::RangeConfig.llLim: ConstructedDAs::AnalogueValue +2024-09-08 15:11:37,901 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,901 [main] TRACE UmlAttribute - created (4116) WG10 IEC61850 [1..1] ComposedDA attribute ConstructedDAs::RangeConfig.min: ConstructedDAs::AnalogueValue +2024-09-08 15:11:37,902 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,902 [main] TRACE UmlAttribute - created (4117) WG10 IEC61850 [1..1] ComposedDA attribute ConstructedDAs::RangeConfig.max: ConstructedDAs::AnalogueValue +2024-09-08 15:11:37,902 [main] TRACE UmlAttribute - created (4118) WG10 IEC61850 [0..1] PrimitiveDA attribute ConstructedDAs::RangeConfig.limDb: BasicDAs::INT32U = 0...100000 +2024-09-08 15:11:37,902 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,902 [main] TRACE UmlAttribute - created (4127) WG10 IEC61850 [1..1] EnumDA attribute ConstructedDAs::Unit.SIUnit: ImplicitDAs::SIUnit +2024-09-08 15:11:37,902 [main] TRACE ValueRange - 'none' has no separator indicating range. +2024-09-08 15:11:37,902 [main] TRACE UmlAttribute - created (4128) WG10 IEC61850 [0..1] EnumDA attribute ConstructedDAs::Unit.multiplier: ImplicitDAs::Multiplier = none +2024-09-08 15:11:37,902 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,902 [main] TRACE UmlAttribute - created (4131) WG10 IEC61850 [1..1] PrimitiveDA attribute ConstructedDAs::Point.xVal: BasicDAs::FLOAT32 +2024-09-08 15:11:37,902 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,902 [main] TRACE UmlAttribute - created (4132) WG10 IEC61850 [1..1] PrimitiveDA attribute ConstructedDAs::Point.yVal: BasicDAs::FLOAT32 +2024-09-08 15:11:37,902 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,902 [main] TRACE UmlAttribute - created (4133) WG10 IEC61850 [0..1] PrimitiveDA attribute ConstructedDAs::Point.zVal: BasicDAs::FLOAT32 +2024-09-08 15:11:37,902 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,902 [main] TRACE UmlAttribute - created (4148) WG10 IEC61850 private [1..1] ComposedDA attribute FCDAs::AnalogueValue_MX.attr: ConstructedDAs::AnalogueValue +2024-09-08 15:11:37,902 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,902 [main] TRACE UmlAttribute - created (4149) WG10 IEC61850 private [1..1] ComposedDA attribute FCDAs::AnalogueValue_MX_dchg.attr: ConstructedDAs::AnalogueValue +2024-09-08 15:11:37,902 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,902 [main] TRACE UmlAttribute - created (4150) WG10 IEC61850 private [1..1] ComposedDA attribute FCDAs::AnalogueValue_MX_dchg_dupd.attr: ConstructedDAs::AnalogueValue +2024-09-08 15:11:37,902 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,902 [main] TRACE UmlAttribute - created (4155) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::BOOLEAN_BL.attr: BasicDAs::BOOLEAN +2024-09-08 15:11:37,903 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,903 [main] TRACE UmlAttribute - created (4156) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::BOOLEAN_CF_dchg.attr: BasicDAs::BOOLEAN +2024-09-08 15:11:37,903 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,903 [main] TRACE UmlAttribute - created (4157) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::BOOLEAN_MX_dchg.attr: BasicDAs::BOOLEAN +2024-09-08 15:11:37,903 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,903 [main] TRACE UmlAttribute - created (4158) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::BOOLEAN_OR_dchg.attr: BasicDAs::BOOLEAN +2024-09-08 15:11:37,903 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,903 [main] TRACE UmlAttribute - created (4159) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::BOOLEAN_SE.attr: BasicDAs::BOOLEAN +2024-09-08 15:11:37,903 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,903 [main] TRACE UmlAttribute - created (4160) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::BOOLEAN_SG.attr: BasicDAs::BOOLEAN +2024-09-08 15:11:37,903 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,903 [main] TRACE UmlAttribute - created (4161) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::BOOLEAN_SP_dchg.attr: BasicDAs::BOOLEAN +2024-09-08 15:11:37,903 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,903 [main] TRACE UmlAttribute - created (4162) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::BOOLEAN_ST_dchg.attr: BasicDAs::BOOLEAN +2024-09-08 15:11:37,903 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,903 [main] TRACE UmlAttribute - created (4163) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::BOOLEAN_SV.attr: BasicDAs::BOOLEAN +2024-09-08 15:11:37,903 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,903 [main] TRACE UmlAttribute - created (4175) WG10 IEC61850 private [1..1] PackedEnumDA attribute FCDAs::DpStatus_ST_dchg.attr: BasicDAs::DpStatus +2024-09-08 15:11:37,903 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,903 [main] TRACE UmlAttribute - created (4176) WG10 IEC61850 private [1..1] PackedEnumDA attribute FCDAs::DpStatus_SV.attr: BasicDAs::DpStatus +2024-09-08 15:11:37,903 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,903 [main] TRACE UmlAttribute - created (4177) WG10 IEC61850 private [1..1] EnumDA attribute FCDAs::EnumDA_CF_dchg.attr: MetaModel::EnumDA +2024-09-08 15:11:37,903 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,903 [main] TRACE UmlAttribute - created (4181) WG10 IEC61850 private [1..1] EnumDA attribute FCDAs::EnumDA_ST_dchg.attr: MetaModel::EnumDA +2024-09-08 15:11:37,903 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,903 [main] TRACE UmlAttribute - created (4182) WG10 IEC61850 private [1..1] EnumDA attribute FCDAs::EnumDA_ST_dchg_dupd.attr: MetaModel::EnumDA +2024-09-08 15:11:37,903 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,903 [main] TRACE UmlAttribute - created (4183) WG10 IEC61850 private [1..1] EnumDA attribute FCDAs::EnumDA_SV.attr: MetaModel::EnumDA +2024-09-08 15:11:37,903 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,903 [main] TRACE UmlAttribute - created (4192) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::INT16U_CF.attr: BasicDAs::INT16U +2024-09-08 15:11:37,903 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,903 [main] TRACE UmlAttribute - created (4193) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::INT16U_CF_dchg.attr: BasicDAs::INT16U +2024-09-08 15:11:37,904 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,904 [main] TRACE UmlAttribute - created (4198) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::INT32U_CF_dchg.attr: BasicDAs::INT32U +2024-09-08 15:11:37,904 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,904 [main] TRACE UmlAttribute - created (4200) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::INT32_CF_dchg.attr: BasicDAs::INT32 +2024-09-08 15:11:37,904 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,904 [main] TRACE UmlAttribute - created (4204) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::INT32_ST_dchg.attr: BasicDAs::INT32 +2024-09-08 15:11:37,904 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,904 [main] TRACE UmlAttribute - created (4205) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::INT32_ST_dchg_dupd.attr: BasicDAs::INT32 +2024-09-08 15:11:37,904 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,904 [main] TRACE UmlAttribute - created (4216) WG10 IEC61850 private [1..1] EnumDA attribute FCDAs::PhaseAngleReference_CF_dchg.attr: ImplicitDAs::PhaseAngleReference +2024-09-08 15:11:37,904 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,904 [main] TRACE UmlAttribute - created (4217) WG10 IEC61850 private [1..1] EnumDA attribute FCDAs::PhaseFaultDirection_ST_dchg.attr: ImplicitDAs::PhaseFaultDirection +2024-09-08 15:11:37,904 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,904 [main] TRACE UmlAttribute - created (4219) WG10 IEC61850 private [1..1] ComposedDA attribute FCDAs::Point_DC.attr: ConstructedDAs::Point +2024-09-08 15:11:37,904 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,904 [main] TRACE UmlAttribute - created (4220) WG10 IEC61850 private [1..1] ComposedDA attribute FCDAs::Point_SE.attr: ConstructedDAs::Point +2024-09-08 15:11:37,904 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,904 [main] TRACE UmlAttribute - created (4221) WG10 IEC61850 private [1..1] ComposedDA attribute FCDAs::Point_SG.attr: ConstructedDAs::Point +2024-09-08 15:11:37,904 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,904 [main] TRACE UmlAttribute - created (4222) WG10 IEC61850 private [1..1] ComposedDA attribute FCDAs::Point_SP.attr: ConstructedDAs::Point +2024-09-08 15:11:37,904 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,904 [main] TRACE UmlAttribute - created (4224) WG10 IEC61850 private [1..1] PackedPrimitiveDA attribute FCDAs::Quality_MX_qchg.attr: ConstructedDAs::Quality +2024-09-08 15:11:37,904 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,904 [main] TRACE UmlAttribute - created (4225) WG10 IEC61850 private [1..1] PackedPrimitiveDA attribute FCDAs::Quality_ST_qchg.attr: ConstructedDAs::Quality +2024-09-08 15:11:37,904 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,904 [main] TRACE UmlAttribute - created (4226) WG10 IEC61850 private [1..1] PackedPrimitiveDA attribute FCDAs::Quality_SV.attr: ConstructedDAs::Quality +2024-09-08 15:11:37,904 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,904 [main] TRACE UmlAttribute - created (4227) WG10 IEC61850 private [1..1] ComposedDA attribute FCDAs::RangeConfig_CF_dchg.attr: ConstructedDAs::RangeConfig +2024-09-08 15:11:37,904 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,905 [main] TRACE UmlAttribute - created (4239) WG10 IEC61850 private [1..1] PackedPrimitiveDA attribute FCDAs::TimeStamp_ST.attr: BasicDAs::TimeStamp +2024-09-08 15:11:37,905 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,905 [main] TRACE UmlAttribute - created (4240) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::UNICODE_STRING255_DC.attr: BasicDAs::UNICODE_STRING255 +2024-09-08 15:11:37,905 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,905 [main] TRACE UmlAttribute - created (4250) WG10 IEC61850 private [1..1] PrimitiveDA attribute FCDAs::VISIBLE_STRING255_EX.attr: BasicDAs::VISIBLE_STRING255 +2024-09-08 15:11:37,905 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,905 [main] TRACE UmlAttribute - created (4259) WG10 IEC61850 [0..1] FCDA attribute CommonDataClasses::BasePrimitiveCDC.dU: FCDAs::UNICODE_STRING255_DC +2024-09-08 15:11:37,905 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,905 [main] TRACE UmlAttribute - created (4260) WG10 IEC61850 [0..1] FCDA attribute CommonDataClasses::BasePrimitiveCDC.cdcNs: FCDAs::VISIBLE_STRING255_EX +2024-09-08 15:11:37,905 [main] TRACE UmlConstraint - created class attributes constraint CommonDataClasses::BasePrimitiveCDC {MOcdcNs = [cdcNs, cdcName]} (MOcdcNs) +2024-09-08 15:11:37,905 [main] TRACE UmlConstraint - created class attributes constraint CommonDataClasses::BasePrimitiveCDC {MOdataNs = [dataNs]} (MOdataNs) +2024-09-08 15:11:37,905 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,905 [main] TRACE UmlAttribute - created (4264) WG10 IEC61850 [0..1] FCDA attribute CommonDataClasses::BaseComposedCDC.dU: FCDAs::UNICODE_STRING255_DC +2024-09-08 15:11:37,905 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,905 [main] TRACE UmlAttribute - created (4265) WG10 IEC61850 [0..1] FCDA attribute CommonDataClasses::BaseComposedCDC.cdcNs: FCDAs::VISIBLE_STRING255_EX +2024-09-08 15:11:37,905 [main] TRACE UmlConstraint - created class attributes constraint CommonDataClasses::BaseComposedCDC {MOcdcNs = [cdcNs, cdcName]} (MOcdcNs) +2024-09-08 15:11:37,906 [main] TRACE UmlConstraint - created class attributes constraint CommonDataClasses::BaseComposedCDC {MOdataNs = [dataNs]} (MOdataNs) +2024-09-08 15:11:37,906 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,906 [main] TRACE UmlAttribute - created (4268) WG10 IEC61850 [0..1] FCDA attribute CommonDataClasses::SubstitutionCDC.subEna: FCDAs::BOOLEAN_SV +2024-09-08 15:11:37,906 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,906 [main] TRACE UmlAttribute - created (4269) WG10 IEC61850 [0..1] FCDA attribute CommonDataClasses::SubstitutionCDC.subQ: FCDAs::Quality_SV +2024-09-08 15:11:37,906 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,906 [main] TRACE UmlAttribute - created (4271) WG10 IEC61850 [0..1] FCDA attribute CommonDataClasses::SubstitutionCDC.blkEna: FCDAs::BOOLEAN_BL +2024-09-08 15:11:37,906 [main] TRACE UmlConstraint - created class attributes constraint CommonDataClasses::SubstitutionCDC {MFsubst = [subEna, subQ, subID]} (MFsubst) +2024-09-08 15:11:37,906 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,906 [main] TRACE UmlAttribute - created (4276) WG10 IEC61850 [1..1] PackedEnumFCDA attribute CDCStatusInfo::DPS.stVal: FCDAs::DpStatus_ST_dchg +2024-09-08 15:11:37,906 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,906 [main] TRACE UmlAttribute - created (4277) WG10 IEC61850 [1..1] FCDA attribute CDCStatusInfo::DPS.q: FCDAs::Quality_ST_qchg +2024-09-08 15:11:37,906 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,906 [main] TRACE UmlAttribute - created (4278) WG10 IEC61850 [1..1] FCDA attribute CDCStatusInfo::DPS.t: FCDAs::TimeStamp_ST +2024-09-08 15:11:37,906 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,906 [main] TRACE UmlAttribute - created (4279) WG10 IEC61850 [0..1] PackedEnumFCDA attribute CDCStatusInfo::DPS.subVal: FCDAs::DpStatus_SV +2024-09-08 15:11:37,906 [main] TRACE UmlConstraint - created class attributes constraint CDCStatusInfo::DPS {MFsubst = [subVal]} (MFsubst) +2024-09-08 15:11:37,906 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,906 [main] TRACE UmlAttribute - created (4285) WG10 IEC61850 [1..1] EnumFCDA attribute CDCStatusInfo::ENS.stVal: FCDAs::EnumDA_ST_dchg_dupd +2024-09-08 15:11:37,906 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,906 [main] TRACE UmlAttribute - created (4286) WG10 IEC61850 [1..1] FCDA attribute CDCStatusInfo::ENS.q: FCDAs::Quality_ST_qchg +2024-09-08 15:11:37,906 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,906 [main] TRACE UmlAttribute - created (4287) WG10 IEC61850 [1..1] FCDA attribute CDCStatusInfo::ENS.t: FCDAs::TimeStamp_ST +2024-09-08 15:11:37,906 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,906 [main] TRACE UmlAttribute - created (4288) WG10 IEC61850 [0..1] EnumFCDA attribute CDCStatusInfo::ENS.subVal: FCDAs::EnumDA_SV +2024-09-08 15:11:37,906 [main] TRACE UmlConstraint - created class attributes constraint CDCStatusInfo::ENS {MFsubst = [subVal]} (MFsubst) +2024-09-08 15:11:37,906 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,907 [main] TRACE UmlAttribute - created (6653) WG10 IEC61850 [1..1] EnumFCDA attribute CDCStatusInfo::EXY.stVal: FCDAs::EnumDA_ST_dchg_dupd +2024-09-08 15:11:37,907 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,907 [main] TRACE UmlAttribute - created (6654) WG10 IEC61850 [1..1] FCDA attribute CDCStatusInfo::EXY.q: FCDAs::Quality_ST_qchg +2024-09-08 15:11:37,907 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,907 [main] TRACE UmlAttribute - created (6655) WG10 IEC61850 [1..1] FCDA attribute CDCStatusInfo::EXY.t: FCDAs::TimeStamp_ST +2024-09-08 15:11:37,907 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (4301) WG10 IEC61850 [1..1] null CDCStatusInfo::ACD.dirGeneral: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,907 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,907 [main] TRACE UmlAttribute - created (4301) WG10 IEC61850 [1..1] attribute CDCStatusInfo::ACD.dirGeneral: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,907 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,907 [main] TRACE UmlAttribute - created (4302) WG10 IEC61850 [0..1] FCDA attribute CDCStatusInfo::ACD.phsA: FCDAs::BOOLEAN_ST_dchg +2024-09-08 15:11:37,907 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,907 [main] TRACE UmlAttribute - created (4304) WG10 IEC61850 [0..1] FCDA attribute CDCStatusInfo::ACD.phsB: FCDAs::BOOLEAN_ST_dchg +2024-09-08 15:11:37,907 [main] TRACE UmlConstraint - created class attributes constraint CDCStatusInfo::ACD {AllOrNonePerGroup(1) = [phsA, dirPhsA]} (AllOrNonePerGroup(n)) +2024-09-08 15:11:37,907 [main] TRACE UmlConstraint - created class attributes constraint CDCStatusInfo::ACD {AllOrNonePerGroup(2) = [phsB, dirPhsB]} (AllOrNonePerGroup(n)) +2024-09-08 15:11:37,907 [main] TRACE UmlConstraint - created class attributes constraint CDCStatusInfo::ACD {AllOrNonePerGroup(3) = [phsC, dirPhsC]} (AllOrNonePerGroup(n)) +2024-09-08 15:11:37,907 [main] TRACE UmlConstraint - created class attributes constraint CDCStatusInfo::ACD {AllOrNonePerGroup(4) = [neut, dirNeut]} (AllOrNonePerGroup(n)) +2024-09-08 15:11:37,907 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,908 [main] TRACE UmlAttribute - created (4328) WG10 IEC61850 [1..*] FCDA attribute CDCStatusInfo::HST.hstVal: FCDAs::INT32_ST_dchg_dupd +2024-09-08 15:11:37,908 [main] TRACE UmlConstraint - created attribute index constraint CDCStatusInfo::HST.hstVal {maxIdx = maxPts-1} +2024-09-08 15:11:37,908 [main] TRACE UmlAttribute - created (4331) WG10 IEC61850 [1..1] FCDA attribute CDCStatusInfo::HST.numPts: FCDAs::INT16U_CF = 1...maxPts +2024-09-08 15:11:37,908 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,908 [main] TRACE UmlAttribute - created (4346) WG10 IEC61850 [1..1] FCDA attribute CDCAnalogueInfo::HarmonicMeasurandCDC.evalTm: FCDAs::INT16U_CF_dchg +2024-09-08 15:11:37,908 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,908 [main] TRACE UmlAttribute - created (4347) WG10 IEC61850 [0..1] FCDA attribute CDCAnalogueInfo::HarmonicMeasurandCDC.smpRate: FCDAs::INT32U_CF_dchg +2024-09-08 15:11:37,908 [main] TRACE UmlConstraint - created class attributes constraint CDCAnalogueInfo::HarmonicMeasurandCDC {MFrms = [rmsCyc]} (MFrms) +2024-09-08 15:11:37,908 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (4363) WG10 IEC61850 [0..1] null CDCAnalogueInfo::CMV.instCVal: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,908 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,908 [main] TRACE UmlAttribute - created (4363) WG10 IEC61850 [0..1] attribute CDCAnalogueInfo::CMV.instCVal: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,908 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (4369) WG10 IEC61850 [0..1] null CDCAnalogueInfo::CMV.subCVal: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,908 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,908 [main] TRACE UmlAttribute - created (4369) WG10 IEC61850 [0..1] attribute CDCAnalogueInfo::CMV.subCVal: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,908 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,909 [main] TRACE UmlAttribute - created (4374) WG10 IEC61850 [0..1] FCDA attribute CDCAnalogueInfo::CMV.rangeC: FCDAs::RangeConfig_CF_dchg +2024-09-08 15:11:37,909 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,909 [main] TRACE UmlAttribute - created (4375) WG10 IEC61850 [0..1] FCDA attribute CDCAnalogueInfo::CMV.rangeAngC: FCDAs::RangeConfig_CF_dchg +2024-09-08 15:11:37,909 [main] TRACE UmlConstraint - created class attributes constraint CDCAnalogueInfo::CMV {MF(range) = [rangeC]} (MF(sibling)) +2024-09-08 15:11:37,909 [main] TRACE UmlConstraint - created class attributes constraint CDCAnalogueInfo::CMV {MF(rangeAng) = [rangeAngC]} (MF(sibling)) +2024-09-08 15:11:37,909 [main] TRACE UmlConstraint - created class attributes constraint CDCAnalogueInfo::CMV {MFscaledAngV = [angSVC]} (MFscaledAngV) +2024-09-08 15:11:37,909 [main] TRACE UmlConstraint - created class attributes constraint CDCAnalogueInfo::CMV {MFscaledMagV = [magSVC]} (MFscaledMagV) +2024-09-08 15:11:37,909 [main] TRACE UmlConstraint - created class attributes constraint CDCAnalogueInfo::CMV {MFsubst = [subCVal]} (MFsubst) +2024-09-08 15:11:37,909 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,909 [main] TRACE UmlAttribute - created (4405) WG10 IEC61850 [1..*] sub-data object CDCAnalogueInfo::HWYE.phsAHar: CDCAnalogueInfo::CMV +2024-09-08 15:11:37,909 [main] TRACE UmlConstraint - created attribute index constraint CDCAnalogueInfo::HWYE.phsAHar {maxIdx = numHar} +2024-09-08 15:11:37,909 [main] TRACE UmlConstraint - created attribute index constraint CDCAnalogueInfo::HWYE.phsAHar {minIdx = 0} +2024-09-08 15:11:37,909 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,909 [main] TRACE UmlAttribute - created (4411) WG10 IEC61850 [0..1] EnumFCDA attribute CDCAnalogueInfo::HWYE.angRef: FCDAs::PhaseAngleReference_CF_dchg +2024-09-08 15:11:37,910 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,910 [main] TRACE UmlAttribute - created (4417) WG10 IEC61850 [0..1] FCDA attribute CDCControl::ControllableCDC.opOk: FCDAs::BOOLEAN_OR_dchg +2024-09-08 15:11:37,910 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,910 [main] TRACE UmlAttribute - created (4463) WG10 IEC61850 [1..1] EnumFCDA attribute CDCControl::ENC.stVal: FCDAs::EnumDA_ST_dchg +2024-09-08 15:11:37,910 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,910 [main] TRACE UmlAttribute - created (4467) WG10 IEC61850 [0..1] EnumFCDA attribute CDCControl::ENC.subVal: FCDAs::EnumDA_SV +2024-09-08 15:11:37,910 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,910 [main] TRACE UmlAttribute - created (4472) WG10 IEC61850 [1..1] EnumDA attribute CDCControl::ENC.ctlVal: MetaModel::EnumDA +2024-09-08 15:11:37,910 [main] TRACE UmlConstraint - created class attributes constraint CDCControl::ENC {MFsubst = [subVal]} (MFsubst) +2024-09-08 15:11:37,910 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,910 [main] TRACE UmlAttribute - created (4522) WG10 IEC61850 [0..1] FCDA attribute CDCControl::BAC.mxVal: FCDAs::AnalogueValue_MX_dchg +2024-09-08 15:11:37,910 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (4526) WG10 IEC61850 [0..1] null CDCControl::BAC.subVal: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,910 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,910 [main] TRACE UmlAttribute - created (4526) WG10 IEC61850 [0..1] attribute CDCControl::BAC.subVal: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,910 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,910 [main] TRACE UmlAttribute - created (4538) WG10 IEC61850 [1..1] PackedEnumDA attribute CDCControl::BAC.ctlVal: BasicDAs::BsControl +2024-09-08 15:11:37,910 [main] TRACE UmlConstraint - created class attributes constraint CDCControl::BAC {AllOrNonePerGroup(1) = [mxVal, q, t]} (AllOrNonePerGroup(n)) +2024-09-08 15:11:37,911 [main] TRACE UmlConstraint - created class attributes constraint CDCControl::BAC {MFscaledAV = [sVC]} (MFscaledAV) +2024-09-08 15:11:37,911 [main] TRACE UmlConstraint - created class attributes constraint CDCControl::BAC {MFsubst = [subVal]} (MFsubst) +2024-09-08 15:11:37,911 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (4549) WG10 IEC61850 [0..1] null CDCStatusSet::ENG.setVal: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,911 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,911 [main] TRACE UmlAttribute - created (4549) WG10 IEC61850 [0..1] attribute CDCStatusSet::ENG.setVal: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,911 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (4550) WG10 IEC61850 [0..1] null CDCStatusSet::ENG._setVal: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,911 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,911 [main] TRACE UmlAttribute - created (4550) WG10 IEC61850 [0..1] attribute CDCStatusSet::ENG._setVal: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,911 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (4551) WG10 IEC61850 [0..1] null CDCStatusSet::ENG.__setVal: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,911 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,911 [main] TRACE UmlAttribute - created (4551) WG10 IEC61850 [0..1] attribute CDCStatusSet::ENG.__setVal: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,911 [main] TRACE UmlConstraint - created class attributes constraint CDCStatusSet::ENG {MFnsg = [setVal]} (MFnsg) +2024-09-08 15:11:37,911 [main] TRACE UmlConstraint - created class attributes constraint CDCStatusSet::ENG {MFsg = [_setVal, __setVal]} (MFsg) +2024-09-08 15:11:37,911 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,911 [main] TRACE UmlAttribute - created (4639) WG10 IEC61850 [0..1] FCDA attribute CDCDescription::LPL.ldNs: FCDAs::VISIBLE_STRING255_EX +2024-09-08 15:11:37,911 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,912 [main] TRACE UmlAttribute - created (4640) WG10 IEC61850 [0..1] FCDA attribute CDCDescription::LPL.lnNs: FCDAs::VISIBLE_STRING255_EX +2024-09-08 15:11:37,912 [main] TRACE UmlConstraint - created class attributes constraint CDCDescription::LPL {MFln0 = [ldNs]} (MFln0) +2024-09-08 15:11:37,912 [main] TRACE UmlConstraint - created class attributes constraint CDCDescription::LPL {MOln0 = [configRev]} (MOln0) +2024-09-08 15:11:37,912 [main] TRACE UmlConstraint - created class attributes constraint CDCDescription::LPL {MOlnNs = [lnNs]} (MOlnNs) +2024-09-08 15:11:37,912 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3313) WG10 IEC61850 [1..1] null IEC61850_7_4::IEC61850_7_4Namespace.id: NullIEC61850::NullIEC61850 = IEC61850-7-4 +2024-09-08 15:11:37,912 [main] TRACE ValueRange - 'IEC61850-7-4' has no separator indicating range. +2024-09-08 15:11:37,912 [main] TRACE UmlAttribute - created (3313) WG10 IEC61850 [1..1] attribute IEC61850_7_4::IEC61850_7_4Namespace.id: NullIEC61850::NullIEC61850 = IEC61850-7-4 +2024-09-08 15:11:37,912 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3314) WG10 IEC61850 [1..1] null IEC61850_7_4::IEC61850_7_4Namespace.version: NullIEC61850::NullIEC61850 = 2009 +2024-09-08 15:11:37,912 [main] TRACE ValueRange - '2009' has no separator indicating range. +2024-09-08 15:11:37,912 [main] TRACE UmlAttribute - created (3314) WG10 IEC61850 [1..1] attribute IEC61850_7_4::IEC61850_7_4Namespace.version: NullIEC61850::NullIEC61850 = 2009 +2024-09-08 15:11:37,912 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3315) WG10 IEC61850 [1..1] null IEC61850_7_4::IEC61850_7_4Namespace.revision: NullIEC61850::NullIEC61850 = A +2024-09-08 15:11:37,912 [main] TRACE ValueRange - 'A' has no separator indicating range. +2024-09-08 15:11:37,912 [main] TRACE UmlAttribute - created (3315) WG10 IEC61850 [1..1] attribute IEC61850_7_4::IEC61850_7_4Namespace.revision: NullIEC61850::NullIEC61850 = A +2024-09-08 15:11:37,912 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (3316) WG10 IEC61850 [1..1] null IEC61850_7_4::IEC61850_7_4Namespace.date: NullIEC61850::NullIEC61850 = 2011-08-01 +2024-09-08 15:11:37,913 [main] TRACE ValueRange - '2011-08-01' has no separator indicating range. +2024-09-08 15:11:37,913 [main] TRACE UmlAttribute - created (3316) WG10 IEC61850 [1..1] attribute IEC61850_7_4::IEC61850_7_4Namespace.date: NullIEC61850::NullIEC61850 = 2011-08-01 +2024-09-08 15:11:37,913 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (6702) WG10 IEC61850 [1..1] null IEC61850_7_4::IEC61850_7_4Namespace.name: NullIEC61850::NullIEC61850 = IEC61850-7-4:2009A +2024-09-08 15:11:37,913 [main] TRACE ValueRange - 'IEC61850-7-4:2009A' has no separator indicating range. +2024-09-08 15:11:37,914 [main] TRACE UmlAttribute - created (6702) WG10 IEC61850 [1..1] attribute IEC61850_7_4::IEC61850_7_4Namespace.name: NullIEC61850::NullIEC61850 = IEC61850-7-4:2009A +2024-09-08 15:11:37,914 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,914 [main] TRACE UmlAttribute - created (5360) WG10 IEC61850 private [1..1] enumeration attribute DerivedDAs::BehaviourMode.val: DOEnums::BehaviourModeKind +2024-09-08 15:11:37,914 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,914 [main] TRACE UmlAttribute - created (5363) WG10 IEC61850 private [1..1] enumeration attribute DerivedDAs::CalcMethod.val: DOEnums::CalcMethodKind +2024-09-08 15:11:37,914 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,914 [main] TRACE UmlAttribute - created (5372) WG10 IEC61850 private [1..1] enumeration attribute DerivedDAs::Health.val: DOEnums::HealthKind +2024-09-08 15:11:37,914 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,914 [main] TRACE UmlAttribute - created (5404) WG10 IEC61850 [0..1] data object LogicalNodes::DomainLN.NamPlt: CDCDescription::LPL +2024-09-08 15:11:37,914 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,914 [main] TRACE UmlAttribute - created (5406) WG10 IEC61850 [0..1] enumerated DO LogicalNodes::DomainLN.Health: DerivedCDCs::ENSHealth +2024-09-08 15:11:37,914 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,914 [main] TRACE UmlAttribute - created (5408) WG10 IEC61850 [0..1] enumerated DO LogicalNodes::DomainLN.Mod: DerivedCDCs::ENCBehaviourMode +2024-09-08 15:11:37,914 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,914 [main] TRACE UmlAttribute - created (6644) WG10 IEC61850 [0..1] data object LogicalNodes::DomainLN.CntRs: CDCAnalogueInfo::CMV +2024-09-08 15:11:37,914 [main] TRACE UmlConstraint - created class attributes constraint LogicalNodes::DomainLN {MOcond(1) = [CntRs]} (MOcond(condID)) +2024-09-08 15:11:37,914 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (5411) WG10 IEC61850 [0..1] null LogicalNodes::StatisticsLN.ClcExp: DerivedCDCs::SPSTransient +2024-09-08 15:11:37,914 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,914 [main] TRACE UmlAttribute - created (5411) WG10 IEC61850 [0..1] attribute LogicalNodes::StatisticsLN.ClcExp: DerivedCDCs::SPSTransient +2024-09-08 15:11:37,914 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,915 [main] TRACE UmlAttribute - created (5413) WG10 IEC61850 [0..1] enumerated DO LogicalNodes::StatisticsLN.ClcMth: DerivedCDCs::ENGCalcMethod +2024-09-08 15:11:37,915 [main] TRACE UmlConstraint - created class attributes constraint LogicalNodes::StatisticsLN {MF(ClcMth) = [ClcExp, ClcMod, ClcIntvPer, ClcIntvTyp]} (MF(sibling)) +2024-09-08 15:11:37,915 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,915 [main] TRACE UmlAttribute - created (5423) WG10 IEC61850 [0..1] enumerated DO LogicalNodes::EquipmentInterfaceLN.EEHealthAlmClc: DerivedCDCs::ENSHealth +2024-09-08 15:11:37,915 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,915 [main] TRACE UmlAttribute - created (6662) WG10 IEC61850 [0..1] data object LNGroupL::KXYZ.aDummyAlm: CDCAnalogueInfo::CMV +2024-09-08 15:11:37,915 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,915 [main] TRACE UmlAttribute - created (6643) WG10 IEC61850 [0..1] data object LNGroupL::KXYZ.TotW: CDCAnalogueInfo::CMV +2024-09-08 15:11:37,915 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,915 [main] TRACE UmlAttribute - created (6705) WG10 IEC61850 [0..1] enumerated DO LNGroupL::KXYZ.WrongA: CDCStatusInfo::ENS +2024-09-08 15:11:37,915 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,915 [main] TRACE UmlAttribute - created (6706) WG10 IEC61850 [0..1] enumerated DO LNGroupL::KXYZ.CorrectA: DerivedCDCs::ENSEnumDA +2024-09-08 15:11:37,915 [main] TRACE UmlConstraint - created class attributes constraint LNGroupL::KXYZ {MOcond(2) = [TotW]} (MOcond(condID)) +2024-09-08 15:11:37,915 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,915 [main] TRACE UmlAttribute - created (5434) WG10 IEC61850 [1..1] enumerated DO LNGroupL::LPHD.PhyHealth: DerivedCDCs::ENSHealth +2024-09-08 15:11:37,915 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (5445) WG10 IEC61850 [0..1] null LNGroupL::LPHD.RsStatAlmMthClc: DerivedCDCs::SPCTransient +2024-09-08 15:11:37,915 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,915 [main] TRACE UmlAttribute - created (5445) WG10 IEC61850 [0..1] attribute LNGroupL::LPHD.RsStatAlmMthClc: DerivedCDCs::SPCTransient +2024-09-08 15:11:37,916 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (6704) WG10 IEC61850 [0..1] null LNGroupL::LPHD.StatAlmMthClc: DerivedCDCs::SPSTransient +2024-09-08 15:11:37,916 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,916 [main] TRACE UmlAttribute - created (6704) WG10 IEC61850 [0..1] attribute LNGroupL::LPHD.StatAlmMthClc: DerivedCDCs::SPSTransient +2024-09-08 15:11:37,916 [main] TRACE UmlConstraint - created class attributes constraint LNGroupL::LPHD {MF(2) = [RsstatAlmMthClc]} (MF(condID)) +2024-09-08 15:11:37,916 [main] TRACE UmlConstraint - created class attributes constraint LNGroupL::LPHD {MOcond(1) = [PhyHealth]} (MOcond(condID)) +2024-09-08 15:11:37,916 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,916 [main] TRACE UmlAttribute - created (5447) WG10 IEC61850 [0..1] data object LNGroupL::LLN0.NamPlt: CDCDescription::LPL +2024-09-08 15:11:37,916 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,916 [main] TRACE UmlAttribute - created (5448) WG10 IEC61850 [1..1] enumerated DO LNGroupL::LLN0.Beh: DerivedCDCs::ENSBehaviourMode +2024-09-08 15:11:37,916 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,916 [main] TRACE UmlAttribute - created (5449) WG10 IEC61850 [0..1] enumerated DO LNGroupL::LLN0.Health: DerivedCDCs::ENSHealth +2024-09-08 15:11:37,916 [main] TRACE UmlConstraint - created class attributes constraint LNGroupL::LLN0 {MOcond(1) = [NamPlt, Beh]} (MOcond(condID)) +2024-09-08 15:11:37,917 [main] TRACE UmlConstraint - created class attributes constraint LNGroupL::LLN0 {MOrootLD = [Mod, Health, NamPlt]} (MOrootLD) +2024-09-08 15:11:37,917 [main] TRACE UmlConstraint - created class attributes constraint LNGroupL::LLN0 {Omulti = [InRef]} (Omulti) +2024-09-08 15:11:37,917 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,917 [main] TRACE UmlAttribute - created (5599) WG10 IEC61850 [1..1] data object LNGroupC::CALH.GrAlm: CDCStatusInfo::DPS +2024-09-08 15:11:37,917 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,917 [main] TRACE UmlAttribute - created (5600) WG10 IEC61850 [0..1] data object LNGroupC::CALH.GrWrn: CDCStatusInfo::DPS +2024-09-08 15:11:37,917 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,917 [main] TRACE UmlAttribute - created (6657) WG10 IEC61850 [0..1] data object LNGroupC::CALH.ModBeh: DerivedCDCs::EXYBehaviourMode +2024-09-08 15:11:37,917 [main] TRACE UmlConstraint - created class attributes constraint LNGroupC::CALH {AtLeastOne(1) = [GrAlm, GrWrn, GrInd]} (AtLeastOne(n)) +2024-09-08 15:11:37,917 [main] TRACE UmlConstraint - created class attributes constraint LNGroupC::CALH {AtLeastOne(2) = [CntRs]} (AtLeastOne(n)) +2024-09-08 15:11:37,917 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,917 [main] TRACE UmlAttribute - created (5775) WG10 IEC61850 [0..1] enumerated DO LNGroupG::GGIO.EEHealth: DerivedCDCs::ENSHealth +2024-09-08 15:11:37,917 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,917 [main] TRACE UmlAttribute - created (5782) WG10 IEC61850 [0..1] data object LNGroupG::GGIO.AnIn: CDCAnalogueInfo::CMV +2024-09-08 15:11:37,917 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (5788) WG10 IEC61850 [0..1] null LNGroupG::GGIO.DPCSO: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,917 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,918 [main] TRACE UmlAttribute - created (5788) WG10 IEC61850 [0..1] attribute LNGroupG::GGIO.DPCSO: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,918 [main] TRACE UmlConstraint - created class attributes constraint LNGroupG::GGIO {Omulti = [AnIn, AnOut, DPCSO]} (Omulti) +2024-09-08 15:11:37,918 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,918 [main] TRACE UmlAttribute - created (6044) WG10 IEC61850 [0..1] data object LNGroupM::MMXU.A: CDCAnalogueInfo::HWYE +2024-09-08 15:11:37,918 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,918 [main] TRACE UmlAttribute - created (6036) WG10 IEC61850 [0..1] data object LNGroupM::MMXU.TotW: CDCAnalogueInfo::CMV +2024-09-08 15:11:37,918 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,918 [main] TRACE UmlAttribute - created (6645) WG10 IEC61850 [0..1] data object LNGroupM::MMXU.Desc: CDCStatusInfo::HST +2024-09-08 15:11:37,918 [main] TRACE UmlConstraint - created class attributes constraint LNGroupM::MMXU {MO(1) = [TotW]} (MOcond(condID)) +2024-09-08 15:11:37,918 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (6089) WG10 IEC61850 [0..1] null LNGroupP::ProtectionLN.OpCntRs: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,918 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,918 [main] TRACE UmlAttribute - created (6089) WG10 IEC61850 [0..1] attribute LNGroupP::ProtectionLN.OpCntRs: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,918 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,918 [main] TRACE UmlAttribute - created (6139) WG10 IEC61850 [0..1] data object LNGroupP::PDIF.Str: CDCStatusInfo::ACD +2024-09-08 15:11:37,918 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (6140) WG10 IEC61850 [1..1] null LNGroupP::PDIF.Op: DerivedCDCs::ACTTransient +2024-09-08 15:11:37,918 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,918 [main] TRACE UmlAttribute - created (6140) WG10 IEC61850 [1..1] attribute LNGroupP::PDIF.Op: DerivedCDCs::ACTTransient +2024-09-08 15:11:37,919 [main] TRACE UmlConstraint - created class attributes constraint LNGroupP::PDIF {AtMostOne = [LoSet, HiSet]} (AtMostOne) +2024-09-08 15:11:37,919 [main] TRACE UmlConstraint - created class attributes constraint LNGroupP::PDIF {OmultiRange(33, 48) = [Str]} (OmultiRange(min, max)) +2024-09-08 15:11:37,919 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,919 [main] TRACE UmlAttribute - created (6156) WG10 IEC61850 [1..1] data object LNGroupP::PDIS.Str: CDCStatusInfo::ACD +2024-09-08 15:11:37,919 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (6157) WG10 IEC61850 [1..1] null LNGroupP::PDIS.Op: DerivedCDCs::ACTTransient +2024-09-08 15:11:37,919 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,919 [main] TRACE UmlAttribute - created (6157) WG10 IEC61850 [1..1] attribute LNGroupP::PDIS.Op: DerivedCDCs::ACTTransient +2024-09-08 15:11:37,919 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,919 [main] TRACE UmlAttribute - created (6339) WG10 IEC61850 [1..1] data object LNGroupR::RDIR.Dir: CDCStatusInfo::ACD +2024-09-08 15:11:37,919 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (6658) WG10 IEC61850 [0..1] null LNGroupR::RDIR.TotW: DerivedCDCs::SPSTransient +2024-09-08 15:11:37,920 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,920 [main] TRACE UmlAttribute - created (6658) WG10 IEC61850 [0..1] attribute LNGroupR::RDIR.TotW: DerivedCDCs::SPSTransient +2024-09-08 15:11:37,920 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,920 [main] TRACE UmlAttribute - created (6638) WG10 IEC61850 [0..1] data object LNGroupZ::ZAXN.Vol: CDCAnalogueInfo::CMV +2024-09-08 15:11:37,920 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (6639) WG10 IEC61850 [0..1] null LNGroupZ::ZAXN.Amp: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,920 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,920 [main] TRACE UmlAttribute - created (6639) WG10 IEC61850 [0..1] attribute LNGroupZ::ZAXN.Amp: NullIEC61850::NullIEC61850 +2024-09-08 15:11:37,920 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,920 [main] TRACE UmlAttribute - created (6691) WG10 IEC61850 [1..1] enumerated DO LNGroupZ::ZAXN.Mat: DerivedCDCs_7_420::ENSMaterial +2024-09-08 15:11:37,920 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,920 [main] TRACE UmlAttribute - created (6692) WG10 IEC61850 [1..1] enumerated DO LNGroupZ::ZAXN.MatCtl: DerivedCDCs_7_420::ENCMaterial +2024-09-08 15:11:37,920 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,920 [main] TRACE UmlAttribute - created (6693) WG10 IEC61850 [1..1] enumerated DO LNGroupZ::ZAXN.Oth: DerivedCDCs_7_420::ENSOther +2024-09-08 15:11:37,920 [main] TRACE UmlConstraint - created class attributes constraint LNGroupZ::ZAXN {MOcond(condID) = [Vol]} (MOcond(condID)) +2024-09-08 15:11:37,920 [main] TRACE UmlConstraint - created class attributes constraint LNGroupZ::ZAXN {AtLeastOne(n) = [Amp]} (AtLeastOne(n)) +2024-09-08 15:11:37,920 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (6699) WG17 IEC61850 static const [1..1] null WG17::WG17UMLVersion.version: NullIEC61850::NullIEC61850 = IEC61850UML02v07 +2024-09-08 15:11:37,920 [main] TRACE ValueRange - 'IEC61850UML02v07' has no separator indicating range. +2024-09-08 15:11:37,921 [main] TRACE UmlAttribute - created (6699) WG17 IEC61850 static const [1..1] attribute WG17::WG17UMLVersion.version: NullIEC61850::NullIEC61850 = IEC61850UML02v07 +2024-09-08 15:11:37,921 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (6700) WG17 IEC61850 static const [1..1] null WG17::WG17UMLVersion.date: NullIEC61850::NullIEC61850 = 2011-07-02 +2024-09-08 15:11:37,921 [main] TRACE ValueRange - '2011-07-02' has no separator indicating range. +2024-09-08 15:11:37,922 [main] TRACE UmlAttribute - created (6700) WG17 IEC61850 static const [1..1] attribute WG17::WG17UMLVersion.date: NullIEC61850::NullIEC61850 = 2011-07-02 +2024-09-08 15:11:37,922 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (6694) WG17 IEC61850 [1..1] null IEC51850_7_420::IEC61850_7_420Namespace.id: NullIEC61850::NullIEC61850 = IEC61850-7-4 +2024-09-08 15:11:37,922 [main] TRACE ValueRange - 'IEC61850-7-4' has no separator indicating range. +2024-09-08 15:11:37,922 [main] TRACE UmlAttribute - created (6694) WG17 IEC61850 [1..1] attribute IEC51850_7_420::IEC61850_7_420Namespace.id: NullIEC61850::NullIEC61850 = IEC61850-7-4 +2024-09-08 15:11:37,922 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (6695) WG17 IEC61850 [1..1] null IEC51850_7_420::IEC61850_7_420Namespace.version: NullIEC61850::NullIEC61850 = 2009 +2024-09-08 15:11:37,922 [main] TRACE ValueRange - '2009' has no separator indicating range. +2024-09-08 15:11:37,922 [main] TRACE UmlAttribute - created (6695) WG17 IEC61850 [1..1] attribute IEC51850_7_420::IEC61850_7_420Namespace.version: NullIEC61850::NullIEC61850 = 2009 +2024-09-08 15:11:37,922 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (6696) WG17 IEC61850 [1..1] null IEC51850_7_420::IEC61850_7_420Namespace.revision: NullIEC61850::NullIEC61850 = A +2024-09-08 15:11:37,922 [main] TRACE ValueRange - 'A' has no separator indicating range. +2024-09-08 15:11:37,922 [main] TRACE UmlAttribute - created (6696) WG17 IEC61850 [1..1] attribute IEC51850_7_420::IEC61850_7_420Namespace.revision: NullIEC61850::NullIEC61850 = A +2024-09-08 15:11:37,922 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (6697) WG17 IEC61850 [1..1] null IEC51850_7_420::IEC61850_7_420Namespace.date: NullIEC61850::NullIEC61850 = 2011-08-01 +2024-09-08 15:11:37,922 [main] TRACE ValueRange - '2011-08-01' has no separator indicating range. +2024-09-08 15:11:37,922 [main] TRACE UmlAttribute - created (6697) WG17 IEC61850 [1..1] attribute IEC51850_7_420::IEC61850_7_420Namespace.date: NullIEC61850::NullIEC61850 = 2011-08-01 +2024-09-08 15:11:37,923 [main] ERROR UmlAttribute - unclassified 7-4/7-3 attribute: (6698) WG17 IEC61850 [1..1] null IEC51850_7_420::IEC61850_7_420Namespace.tissuesApplied: NullIEC61850::NullIEC61850 = 1,2, 3, 127,200 +2024-09-08 15:11:37,923 [main] TRACE ValueRange - '1,2, 3, 127,200' has no separator indicating range. +2024-09-08 15:11:37,923 [main] TRACE UmlAttribute - created (6698) WG17 IEC61850 [1..1] attribute IEC51850_7_420::IEC61850_7_420Namespace.tissuesApplied: NullIEC61850::NullIEC61850 = 1,2, 3, 127,200 +2024-09-08 15:11:37,923 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,923 [main] TRACE UmlAttribute - created (6689) WG17 IEC61850 private [1..1] enumeration attribute DerivedDAs_7_420::Material.val: DOEnums_7_420::MaterialKind +2024-09-08 15:11:37,923 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,923 [main] TRACE UmlAttribute - created (6713) WG17 IEC61850 private [1..1] enumeration attribute DerivedDAs_7_420::Material_control.ctlVal: DOEnums_7_420::MaterialTransitionKind +2024-09-08 15:11:37,923 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,923 [main] TRACE UmlAttribute - created (6690) WG17 IEC61850 [1..1] enumeration attribute DerivedDAs_7_420::Other.val: DOEnums_7_420::OtherKind +2024-09-08 15:11:37,923 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,923 [main] TRACE UmlAttribute - created (3286) OTHER_CIM CIM private [1..1] Primitive attribute <> Ext1::Apple.shouldNotBeEnum: Domain::Integer +2024-09-08 15:11:37,923 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,923 [main] TRACE UmlAttribute - created (3287) OTHER_CIM CIM INF [0..1] Compound attribute <> Ext1::Pear.typeIsInformative: Informative::SomeSimpleType +2024-09-08 15:11:37,923 [main] TRACE ValueRange - '' has no values. +2024-09-08 15:11:37,923 [main] TRACE UmlAttribute - created (3304) OTHER_CIM CIM [0..1] CIMDatatype attribute Package with space::My class._attr: Domain::AbsoluteDateTime +2024-09-08 15:11:37,923 [main] TRACE UmlConstraint - created attribute index constraint Package with space::My class._attr { attr-constraint = lala} +2024-09-08 15:11:37,923 [main] TRACE UmlOperation - created (6) OTHER_CIM CIM Package with space::My class operation public void ope-ration() +2024-09-08 15:11:37,924 [main] TRACE UmlParameter - created null(... Boolean other param...) +2024-09-08 15:11:37,924 [main] TRACE UmlParameter - created null(... ApparentPower _par...) +2024-09-08 15:11:37,924 [main] INFO EaModelBuilder - creating in-memory associations ... +2024-09-08 15:11:37,933 [main] TRACE UmlAssociationEnd - created null [1..1] null.MyClass +2024-09-08 15:11:37,933 [main] TRACE UmlAssociationEnd - created null [0..1] null.Class1 +2024-09-08 15:11:37,947 [main] TRACE UmlAssociation - created (2130) OTHER_CIM CIM association, qname='MyClass.Class1 - Class1.MyClass', endAsSrc: myEnd: OTHER_CIM [1..1] Class1.MyClass; otherEnd: OTHER_CIM [0..1] MyClass.Class1, endAsTgt: myEnd: OTHER_CIM [0..1] MyClass.Class1; otherEnd: OTHER_CIM [1..1] Class1.MyClass +2024-09-08 15:11:37,947 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> +2024-09-08 15:11:37,947 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> +2024-09-08 15:11:37,948 [main] TRACE UmlAssociation - created (2133) OTHER_CIM CIM association, qname='End1ForAssocClass.<> - End2ForAssocClass.<>', endAsSrc: myEnd: OTHER_CIM [?..?] End2ForAssocClass.<>; otherEnd: OTHER_CIM [?..?] End1ForAssocClass.<>, endAsTgt: myEnd: OTHER_CIM [?..?] End1ForAssocClass.<>; otherEnd: OTHER_CIM [?..?] End2ForAssocClass.<> +2024-09-08 15:11:37,948 [main] TRACE UmlAssociationEnd - created null [0..1] null.C1 +2024-09-08 15:11:37,948 [main] TRACE UmlAssociationEnd - created null [0..1] null.C2 +2024-09-08 15:11:37,948 [main] TRACE UmlAssociation - created (2096) WG13 CIM association, qname='InfClassContainingEmbeddedClass.C2 - InfClass2.C1', endAsSrc: myEnd: WG13 [0..1] InfClass2.C1; tags={srcTag=a2}; otherEnd: WG13 [0..1] InfClassContainingEmbeddedClass.C2, endAsTgt: myEnd: WG13 [0..1] InfClassContainingEmbeddedClass.C2; otherEnd: WG13 [0..1] InfClass2.C1; tags={srcTag=a2} +2024-09-08 15:11:37,948 [main] TRACE UmlAssociationEnd - created null [0..*] null.VoltageLevel +2024-09-08 15:11:37,948 [main] TRACE UmlAssociationEnd - created null [1..1] null.BaseVoltage +2024-09-08 15:11:37,948 [main] TRACE UmlAssociation - created (120) WG13 CIM association <>, qname='VoltageLevel.BaseVoltage - BaseVoltage.VoltageLevel', endAsSrc: myEnd: WG13 [0..*] BaseVoltage.VoltageLevel; otherEnd: WG13 [1..1] VoltageLevel.BaseVoltage, endAsTgt: myEnd: WG13 [1..1] VoltageLevel.BaseVoltage; otherEnd: WG13 [0..*] BaseVoltage.VoltageLevel +2024-09-08 15:11:37,948 [main] TRACE UmlAssociationEnd - created null (protected) [0..1] null.ProtectedBaseVoltage +2024-09-08 15:11:37,948 [main] TRACE UmlAssociationEnd - created null [0..*] null.ConductingEquipment +2024-09-08 15:11:37,948 [main] TRACE UmlAssociation - created (121) WG13 CIM association <>, qname='BaseVoltage.ConductingEquipment - ConductingEquipment.ProtectedBaseVoltage', endAsSrc: myEnd: WG13 (protected) [0..1] ConductingEquipment.ProtectedBaseVoltage; otherEnd: WG13 [0..*] BaseVoltage.ConductingEquipment, endAsTgt: myEnd: WG13 [0..*] BaseVoltage.ConductingEquipment; otherEnd: WG13 (protected) [0..1] ConductingEquipment.ProtectedBaseVoltage +2024-09-08 15:11:37,948 [main] TRACE UmlAssociationEnd - created null [0..*] null.TopologicalNode +2024-09-08 15:11:37,948 [main] TRACE UmlAssociationEnd - created null [0..1] null.BaseVoltage +2024-09-08 15:11:37,948 [main] TRACE UmlAssociation - created (2092) WG13 CIM association, qname='TopologicalNode.BaseVoltage - BaseVoltage.TopologicalNode', endAsSrc: myEnd: WG13 [0..*] BaseVoltage.TopologicalNode; otherEnd: WG13 [0..1] TopologicalNode.BaseVoltage, endAsTgt: myEnd: WG13 [0..1] TopologicalNode.BaseVoltage; otherEnd: WG13 [0..*] BaseVoltage.TopologicalNode +2024-09-08 15:11:37,948 [main] TRACE UmlAssociationEnd - created null <> [0..1] null.VoltageLevel +2024-09-08 15:11:37,948 [main] TRACE UmlAssociationEnd - created null <> [0..*] null.Bays +2024-09-08 15:11:37,948 [main] TRACE UmlAssociation - created (115) WG13 CIM aggregation, qname='VoltageLevel.Bays - Bay.VoltageLevel', endAsSrc: myEnd: WG13 <> [0..1] Bay.VoltageLevel; otherEnd: WG13 <> [0..*] VoltageLevel.Bays, endAsTgt: myEnd: WG13 <> [0..*] VoltageLevel.Bays; otherEnd: WG13 <> [0..1] Bay.VoltageLevel +2024-09-08 15:11:37,948 [main] TRACE UmlAssociationEnd - created null [0..*] null.bays (navigable) +2024-09-08 15:11:37,948 [main] TRACE UmlAssociationEnd - created null [0..1] null.Substation (navigable) +2024-09-08 15:11:37,948 [main] TRACE UmlAssociation - created (116) WG13 CIM aggregation <>, qname='Bay.Substation - Substation.bays', endAsSrc: myEnd: WG13 [0..*] Substation.bays (navigable); otherEnd: WG13 [0..1] Bay.Substation (navigable), endAsTgt: myEnd: WG13 [0..1] Bay.Substation (navigable); otherEnd: WG13 [0..*] Substation.bays (navigable) +2024-09-08 15:11:37,948 [main] TRACE UmlAssociationEnd - created null [0..*] null.Terminals +2024-09-08 15:11:37,948 [main] TRACE UmlAssociationEnd - created null [1..1] null.ConductingEquipment +2024-09-08 15:11:37,948 [main] TRACE UmlAssociation - created (123) WG13 CIM association NamedWithTagsEverywhere, qname='Terminal.ConductingEquipment - ConductingEquipment.Terminals', endAsSrc: myEnd: WG13 [0..*] ConductingEquipment.Terminals; tags={Role1=abc}; otherEnd: WG13 [1..1] Terminal.ConductingEquipment; tags={AnotherRole2=abc, targetEndTag=blah, Role2=xyz}, endAsTgt: myEnd: WG13 [1..1] Terminal.ConductingEquipment; tags={AnotherRole2=abc, targetEndTag=blah, Role2=xyz}; otherEnd: WG13 [0..*] ConductingEquipment.Terminals; tags={Role1=abc} +2024-09-08 15:11:37,948 [main] TRACE UmlAssociationEnd - created null [0..*] null.ConnectivityNodes +2024-09-08 15:11:37,948 [main] TRACE UmlAssociationEnd - created null [1..1] null.ConnectivityNodeContainer +2024-09-08 15:11:37,948 [main] TRACE UmlAssociation - created (234) WG13 CIM association, qname='ConnectivityNode.ConnectivityNodeContainer - ConnectivityNodeContainer.ConnectivityNodes', endAsSrc: myEnd: WG13 [0..*] ConnectivityNodeContainer.ConnectivityNodes; otherEnd: WG13 [1..1] ConnectivityNode.ConnectivityNodeContainer, endAsTgt: myEnd: WG13 [1..1] ConnectivityNode.ConnectivityNodeContainer; otherEnd: WG13 [0..*] ConnectivityNodeContainer.ConnectivityNodes +2024-09-08 15:11:37,948 [main] TRACE UmlAssociationEnd - created null [0..*] null.TopologicalNode +2024-09-08 15:11:37,948 [main] TRACE UmlAssociationEnd - created null [0..1] null.ConnectivityNodeContainer +2024-09-08 15:11:37,948 [main] TRACE UmlAssociation - created (1974) WG13 CIM association, qname='TopologicalNode.ConnectivityNodeContainer - ConnectivityNodeContainer.TopologicalNode', endAsSrc: myEnd: WG13 [0..*] ConnectivityNodeContainer.TopologicalNode; otherEnd: WG13 [0..1] TopologicalNode.ConnectivityNodeContainer, endAsTgt: myEnd: WG13 [0..1] TopologicalNode.ConnectivityNodeContainer; otherEnd: WG13 [0..*] ConnectivityNodeContainer.TopologicalNode +2024-09-08 15:11:37,949 [main] TRACE UmlAssociationEnd - created null [0..1] null.EquipmentContainer +2024-09-08 15:11:37,949 [main] TRACE UmlAssociationEnd - created null [0..*] null.Equipments +2024-09-08 15:11:37,949 [main] TRACE UmlAssociation - created (88) WG13 CIM aggregation <>, qname='EquipmentContainer.Equipments - Equipment.EquipmentContainer', endAsSrc: myEnd: WG13 [0..1] Equipment.EquipmentContainer; otherEnd: WG13 [0..*] EquipmentContainer.Equipments, endAsTgt: myEnd: WG13 [0..*] EquipmentContainer.Equipments; otherEnd: WG13 [0..1] Equipment.EquipmentContainer +2024-09-08 15:11:37,949 [main] TRACE UmlAssociationEnd - created null [0..1] null.Region +2024-09-08 15:11:37,949 [main] TRACE UmlAssociationEnd - created null [0..*] null.Regions +2024-09-08 15:11:37,949 [main] TRACE UmlAssociation - created (90) WG13 CIM aggregation, qname='geographicalRegion.Regions - SubGeographicalRegion.Region', endAsSrc: myEnd: WG13 [0..1] SubGeographicalRegion.Region; otherEnd: WG13 [0..*] geographicalRegion.Regions, endAsTgt: myEnd: WG13 [0..*] geographicalRegion.Regions; otherEnd: WG13 [0..1] SubGeographicalRegion.Region +2024-09-08 15:11:37,949 [main] TRACE UmlAssociationEnd - created null [0..*] null.OperatingShare +2024-09-08 15:11:37,949 [main] TRACE UmlAssociationEnd - created null [1..1] null.OperatingParticipant +2024-09-08 15:11:37,949 [main] TRACE UmlAssociation - created (157) WG13 CIM association, qname='OperatingShare.OperatingParticipant - OperatingParticipant.OperatingShare', endAsSrc: myEnd: WG13 [0..*] OperatingParticipant.OperatingShare; otherEnd: WG13 [1..1] OperatingShare.OperatingParticipant, endAsTgt: myEnd: WG13 [1..1] OperatingShare.OperatingParticipant; otherEnd: WG13 [0..*] OperatingParticipant.OperatingShare +2024-09-08 15:11:37,949 [main] TRACE UmlAssociationEnd - created null [0..*] null.OperatingShare +2024-09-08 15:11:37,949 [main] TRACE UmlAssociationEnd - created null [1..1] null.PowerSystemResource +2024-09-08 15:11:37,949 [main] TRACE UmlAssociation - created (163) WG13 CIM association, qname='OperatingShare.PowerSystemResource - PowerSystemResource.OperatingShare', endAsSrc: myEnd: WG13 [0..*] PowerSystemResource.OperatingShare; otherEnd: WG13 [1..1] OperatingShare.PowerSystemResource, endAsTgt: myEnd: WG13 [1..1] OperatingShare.PowerSystemResource; otherEnd: WG13 [0..*] PowerSystemResource.OperatingShare +2024-09-08 15:11:37,949 [main] TRACE UmlAssociationEnd - created null [0..*] null.AssetInfos +2024-09-08 15:11:37,949 [main] TRACE UmlAssociationEnd - created null [0..*] null.PSRs +2024-09-08 15:11:37,949 [main] TRACE UmlAssociation - created (2148) WG14 CIM association, qname='AssetInfo.PSRs - PowerSystemResource.AssetInfos', endAsSrc: myEnd: WG14 [0..*] PowerSystemResource.AssetInfos; otherEnd: WG14 [0..*] AssetInfo.PSRs, endAsTgt: myEnd: WG14 [0..*] AssetInfo.PSRs; otherEnd: WG14 [0..*] PowerSystemResource.AssetInfos +2024-09-08 15:11:37,949 [main] TRACE UmlAssociationEnd - created null [0..1] null.PSR (navigable) +2024-09-08 15:11:37,949 [main] TRACE UmlAssociationEnd - created null [0..1] null.Terminal +2024-09-08 15:11:37,949 [main] TRACE UmlAssociation - created (3463) WG13 CIM association <>, qname='PowerSystemResource.Terminal - Terminal.PSR', endAsSrc: myEnd: WG13 [0..1] Terminal.PSR (navigable); otherEnd: WG13 [0..1] PowerSystemResource.Terminal, endAsTgt: myEnd: WG13 [0..1] PowerSystemResource.Terminal; otherEnd: WG13 [0..1] Terminal.PSR (navigable) +2024-09-08 15:11:37,949 [main] TRACE UmlAssociationEnd - created null [0..1] null.Region +2024-09-08 15:11:37,949 [main] TRACE UmlAssociationEnd - created null [0..*] null.Substations +2024-09-08 15:11:37,949 [main] TRACE UmlAssociation - created (91) WG13 CIM aggregation, qname='SubGeographicalRegion.Substations - Substation.Region', endAsSrc: myEnd: WG13 [0..1] Substation.Region; otherEnd: WG13 [0..*] SubGeographicalRegion.Substations, endAsTgt: myEnd: WG13 [0..*] SubGeographicalRegion.Substations; otherEnd: WG13 [0..1] Substation.Region +2024-09-08 15:11:37,949 [main] TRACE UmlAssociationEnd - created null [1..1] null.Substation +2024-09-08 15:11:37,949 [main] TRACE UmlAssociationEnd - created null [0..*] null.VoltageLevels +2024-09-08 15:11:37,949 [main] TRACE UmlAssociation - created (94) WG13 CIM aggregation, qname='Substation.VoltageLevels - VoltageLevel.Substation', endAsSrc: myEnd: WG13 [1..1] VoltageLevel.Substation; otherEnd: WG13 [0..*] Substation.VoltageLevels, endAsTgt: myEnd: WG13 [0..*] Substation.VoltageLevels; otherEnd: WG13 [1..1] VoltageLevel.Substation +2024-09-08 15:11:37,949 [main] TRACE UmlAssociationEnd - created null [0..*] null.Terminals +2024-09-08 15:11:37,949 [main] TRACE UmlAssociationEnd - created null [0..1] null.ConnectivityNode +2024-09-08 15:11:37,949 [main] TRACE UmlAssociation - created (229) WG13 CIM association, qname='Terminal.ConnectivityNode - ConnectivityNode.Terminals', endAsSrc: myEnd: WG13 [0..*] ConnectivityNode.Terminals; otherEnd: WG13 [0..1] Terminal.ConnectivityNode, endAsTgt: myEnd: WG13 [0..1] Terminal.ConnectivityNode; otherEnd: WG13 [0..*] ConnectivityNode.Terminals +2024-09-08 15:11:37,949 [main] TRACE UmlAssociationEnd - created null [0..*] null.Terminal +2024-09-08 15:11:37,949 [main] TRACE UmlAssociationEnd - created null [0..1] null.TopologicalNode +2024-09-08 15:11:37,949 [main] TRACE UmlAssociation - created (1961) WG13 CIM aggregation, qname='Terminal.TopologicalNode - TopologicalNode.Terminal', endAsSrc: myEnd: WG13 [0..*] TopologicalNode.Terminal; otherEnd: WG13 [0..1] Terminal.TopologicalNode, endAsTgt: myEnd: WG13 [0..1] Terminal.TopologicalNode; otherEnd: WG13 [0..*] TopologicalNode.Terminal +2024-09-08 15:11:37,949 [main] TRACE UmlAssociationEnd - created null <> [0..1] null.BusNameMarker +2024-09-08 15:11:37,949 [main] TRACE UmlAssociationEnd - created null (private) <> [0..*] null.PrivateConnectivityNode +2024-09-08 15:11:37,949 [main] TRACE UmlAssociation - created (228) WG13 CIM association <>, qname='BusNameMarker.PrivateConnectivityNode - ConnectivityNode.BusNameMarker', endAsSrc: myEnd: WG13 <> [0..1] ConnectivityNode.BusNameMarker; tags={srcTag=valueSrcTag}; otherEnd: WG13 (private) <> [0..*] BusNameMarker.PrivateConnectivityNode; tags={endTag=valueEndTag}, endAsTgt: myEnd: WG13 (private) <> [0..*] BusNameMarker.PrivateConnectivityNode; tags={endTag=valueEndTag}; otherEnd: WG13 <> [0..1] ConnectivityNode.BusNameMarker; tags={srcTag=valueSrcTag} +2024-09-08 15:11:37,950 [main] TRACE UmlAssociationEnd - created null [0..*] null.ConnectivityNodes +2024-09-08 15:11:37,950 [main] TRACE UmlAssociationEnd - created null [0..1] null.TopologicalNode +2024-09-08 15:11:37,950 [main] TRACE UmlAssociation - created (235) WG13 CIM aggregation, qname='ConnectivityNode.TopologicalNode - TopologicalNode.ConnectivityNodes', endAsSrc: myEnd: WG13 [0..*] TopologicalNode.ConnectivityNodes; otherEnd: WG13 [0..1] ConnectivityNode.TopologicalNode, endAsTgt: myEnd: WG13 [0..1] ConnectivityNode.TopologicalNode; otherEnd: WG13 [0..*] TopologicalNode.ConnectivityNodes +2024-09-08 15:11:37,950 [main] TRACE UmlAssociationEnd - created null [?..?] null.TopologicalNodes +2024-09-08 15:11:37,950 [main] TRACE UmlAssociationEnd - created null [1..1] null.TopologicalIsland +2024-09-08 15:11:37,950 [main] TRACE UmlAssociation - created (237) WG13 CIM aggregation, qname='TopologicalNode.TopologicalIsland - TopologicalIsland.TopologicalNodes', endAsSrc: myEnd: WG13 [?..?] TopologicalIsland.TopologicalNodes; otherEnd: WG13 [1..1] TopologicalNode.TopologicalIsland, endAsTgt: myEnd: WG13 [1..1] TopologicalNode.TopologicalIsland; otherEnd: WG13 [?..?] TopologicalIsland.TopologicalNodes +2024-09-08 15:11:37,950 [main] TRACE UmlAssociationEnd - created null [0..1] null.AngleRef_TopologicalIsland +2024-09-08 15:11:37,950 [main] TRACE UmlAssociationEnd - created null [0..1] null.AngleRef_TopologicalNode +2024-09-08 15:11:37,950 [main] TRACE UmlAssociation - created (1947) WG13 CIM association, qname='TopologicalIsland.AngleRef_TopologicalNode - TopologicalNode.AngleRef_TopologicalIsland', endAsSrc: myEnd: WG13 [0..1] TopologicalNode.AngleRef_TopologicalIsland; otherEnd: WG13 [0..1] TopologicalIsland.AngleRef_TopologicalNode, endAsTgt: myEnd: WG13 [0..1] TopologicalIsland.AngleRef_TopologicalNode; otherEnd: WG13 [0..1] TopologicalNode.AngleRef_TopologicalIsland +2024-09-08 15:11:37,950 [main] TRACE UmlAssociationEnd - created null [0..1] null.T1 +2024-09-08 15:11:37,950 [main] TRACE UmlAssociationEnd - created null [0..1] null.T2 +2024-09-08 15:11:37,950 [main] TRACE UmlAssociation - created (2110) WG14 CIM association, qname='BadDatatypes.T2 - MyClass.T1', endAsSrc: myEnd: WG14 [0..1] MyClass.T1; otherEnd: WG14 [0..1] BadDatatypes.T2, endAsTgt: myEnd: WG14 [0..1] BadDatatypes.T2; otherEnd: WG14 [0..1] MyClass.T1 +2024-09-08 15:11:37,950 [main] TRACE UmlAssociationEnd - created null [0..1] null.From +2024-09-08 15:11:37,950 [main] TRACE UmlAssociationEnd - created null [0..1] null.To +2024-09-08 15:11:37,950 [main] TRACE UmlAssociation - created (2124) WG14 CIM association, qname='MyClass.To - MyClass.From', endAsSrc: myEnd: WG14 [0..1] MyClass.From; otherEnd: WG14 [0..1] MyClass.To, endAsTgt: myEnd: WG14 [0..1] MyClass.To; otherEnd: WG14 [0..1] MyClass.From +2024-09-08 15:11:37,950 [main] TRACE UmlAssociationEnd - created null [0..1] null.Something (non-navigable) +2024-09-08 15:11:37,950 [main] TRACE UmlAssociationEnd - created null [0..1] null.T1 +2024-09-08 15:11:37,950 [main] TRACE UmlAssociation - created (2122) WG14 CIM association, qname='AttrDuplication.T1 - BadDatatypes.Something', endAsSrc: myEnd: WG14 [0..1] BadDatatypes.Something (non-navigable); otherEnd: WG14 [0..1] AttrDuplication.T1, endAsTgt: myEnd: WG14 [0..1] AttrDuplication.T1; otherEnd: WG14 [0..1] BadDatatypes.Something (non-navigable) +2024-09-08 15:11:37,950 [main] TRACE UmlAssociationEnd - created null [0..1] null.From +2024-09-08 15:11:37,950 [main] TRACE UmlAssociationEnd - created null [0..1] null.To +2024-09-08 15:11:37,950 [main] TRACE UmlAssociation - created (2123) WG14 CIM association, qname='AttrDuplication.To - AttrDuplication.From', endAsSrc: myEnd: WG14 [0..1] AttrDuplication.From; otherEnd: WG14 [0..1] AttrDuplication.To, endAsTgt: myEnd: WG14 [0..1] AttrDuplication.To; otherEnd: WG14 [0..1] AttrDuplication.From +2024-09-08 15:11:37,950 [main] TRACE UmlAssociationEnd - created null [0..1] null.From +2024-09-08 15:11:37,950 [main] TRACE UmlAssociationEnd - created null [0..1] null.To +2024-09-08 15:11:37,950 [main] TRACE UmlAssociation - created (2125) WG14 CIM association, qname='AttrDuplication.To - AttrDuplication.From', endAsSrc: myEnd: WG14 [0..1] AttrDuplication.From; otherEnd: WG14 [0..1] AttrDuplication.To, endAsTgt: myEnd: WG14 [0..1] AttrDuplication.To; otherEnd: WG14 [0..1] AttrDuplication.From +2024-09-08 15:11:37,950 [main] TRACE UmlAssociationEnd - created null [0..1] null.IED +2024-09-08 15:11:37,950 [main] TRACE UmlAssociationEnd - created null [1..*] null.AP +2024-09-08 15:11:37,950 [main] TRACE UmlAssociation - created (3400) WG10 IEC61850 association, qname='GenIED.AP - AccessPoint.IED', endAsSrc: myEnd: WG10 [0..1] AccessPoint.IED; otherEnd: WG10 [1..*] GenIED.AP, endAsTgt: myEnd: WG10 [1..*] GenIED.AP; otherEnd: WG10 [0..1] AccessPoint.IED +2024-09-08 15:11:37,950 [main] TRACE UmlAssociationEnd - created null [1..1] null.Server +2024-09-08 15:11:37,950 [main] TRACE UmlAssociationEnd - created null [0..1] null.FileSystem +2024-09-08 15:11:37,950 [main] TRACE UmlAssociation - created (3398) WG10 IEC61850 association, qname='GenServer.FileSystem - FileSystem.Server', endAsSrc: myEnd: WG10 [1..1] FileSystem.Server; otherEnd: WG10 [0..1] GenServer.FileSystem, endAsTgt: myEnd: WG10 [0..1] GenServer.FileSystem; otherEnd: WG10 [1..1] FileSystem.Server +2024-09-08 15:11:37,950 [main] TRACE UmlAssociationEnd - created null [1..1] null.FileSystem +2024-09-08 15:11:37,950 [main] TRACE UmlAssociationEnd - created null [0..*] null.Files +2024-09-08 15:11:37,950 [main] TRACE UmlAssociation - created (3399) WG10 IEC61850 association, qname='FileSystem.Files - GenFile.FileSystem', endAsSrc: myEnd: WG10 [1..1] GenFile.FileSystem; otherEnd: WG10 [0..*] FileSystem.Files, endAsTgt: myEnd: WG10 [0..*] FileSystem.Files; otherEnd: WG10 [1..1] GenFile.FileSystem +2024-09-08 15:11:37,951 [main] TRACE UmlAssociationEnd - created null [1..1] null.CommonDataClass +2024-09-08 15:11:37,951 [main] TRACE UmlAssociationEnd - created null [1..*] null.DataAttribute +2024-09-08 15:11:37,951 [main] TRACE UmlAssociation - created (3396) WG10 IEC61850 association, qname='GenCommonDataClass.DataAttribute - GenDataAttribute.CommonDataClass', endAsSrc: myEnd: WG10 [1..1] GenDataAttribute.CommonDataClass; otherEnd: WG10 [1..*] GenCommonDataClass.DataAttribute, endAsTgt: myEnd: WG10 [1..*] GenCommonDataClass.DataAttribute; otherEnd: WG10 [1..1] GenDataAttribute.CommonDataClass +2024-09-08 15:11:37,951 [main] TRACE UmlAssociationEnd - created null [1..1] null.CommonDataClass +2024-09-08 15:11:37,951 [main] TRACE UmlAssociationEnd - created null [0..*] null.SubDataObject +2024-09-08 15:11:37,951 [main] TRACE UmlAssociation - created (3397) WG10 IEC61850 association, qname='GenCommonDataClass.SubDataObject - GenSubDataObject.CommonDataClass', endAsSrc: myEnd: WG10 [1..1] GenSubDataObject.CommonDataClass; otherEnd: WG10 [0..*] GenCommonDataClass.SubDataObject, endAsTgt: myEnd: WG10 [0..*] GenCommonDataClass.SubDataObject; otherEnd: WG10 [1..1] GenSubDataObject.CommonDataClass +2024-09-08 15:11:37,951 [main] TRACE UmlAssociationEnd - created null [1..1] null.DataAttribute +2024-09-08 15:11:37,951 [main] TRACE UmlAssociationEnd - created null [1..*] null.SubDataAttribute +2024-09-08 15:11:37,951 [main] TRACE UmlAssociation - created (3395) WG10 IEC61850 association, qname='GenConstructedType.SubDataAttribute - GenSubDataAttribute.DataAttribute', endAsSrc: myEnd: WG10 [1..1] GenSubDataAttribute.DataAttribute; otherEnd: WG10 [1..*] GenConstructedType.SubDataAttribute, endAsTgt: myEnd: WG10 [1..*] GenConstructedType.SubDataAttribute; otherEnd: WG10 [1..1] GenSubDataAttribute.DataAttribute +2024-09-08 15:11:37,951 [main] TRACE UmlAssociationEnd - created null [0..*] null.FCDA +2024-09-08 15:11:37,951 [main] TRACE UmlAssociationEnd - created null [1..1] null.DataAttribute +2024-09-08 15:11:37,951 [main] TRACE UmlAssociation - created (3391) WG10 IEC61850 association, qname='GenFCDA.DataAttribute - GenDataAttribute.FCDA', endAsSrc: myEnd: WG10 [0..*] GenDataAttribute.FCDA; otherEnd: WG10 [1..1] GenFCDA.DataAttribute, endAsTgt: myEnd: WG10 [1..1] GenFCDA.DataAttribute; otherEnd: WG10 [0..*] GenDataAttribute.FCDA +2024-09-08 15:11:37,951 [main] TRACE UmlAssociationEnd - created null [1..1] null.LogicalNode +2024-09-08 15:11:37,951 [main] TRACE UmlAssociationEnd - created null [1..*] null.DataObject +2024-09-08 15:11:37,951 [main] TRACE UmlAssociation - created (3388) WG10 IEC61850 association, qname='GenLogicalNode.DataObject - GenDataObject.LogicalNode', endAsSrc: myEnd: WG10 [1..1] GenDataObject.LogicalNode; otherEnd: WG10 [1..*] GenLogicalNode.DataObject, endAsTgt: myEnd: WG10 [1..*] GenLogicalNode.DataObject; otherEnd: WG10 [1..1] GenDataObject.LogicalNode +2024-09-08 15:11:37,951 [main] TRACE UmlAssociationEnd - created null [0..*] null.FCD +2024-09-08 15:11:37,951 [main] TRACE UmlAssociationEnd - created null [1..1] null.DataObject +2024-09-08 15:11:37,951 [main] TRACE UmlAssociation - created (3389) WG10 IEC61850 association, qname='GenFCD.DataObject - GenDataObject.FCD', endAsSrc: myEnd: WG10 [0..*] GenDataObject.FCD; otherEnd: WG10 [1..1] GenFCD.DataObject, endAsTgt: myEnd: WG10 [1..1] GenFCD.DataObject; otherEnd: WG10 [0..*] GenDataObject.FCD +2024-09-08 15:11:37,951 [main] TRACE UmlAssociationEnd - created null [0..*] null.DataSet +2024-09-08 15:11:37,951 [main] TRACE UmlAssociationEnd - created null [0..*] null.FCDMember +2024-09-08 15:11:37,951 [main] TRACE UmlAssociation - created (3386) WG10 IEC61850 association, qname='GenDataSet.FCDMember - GenFCD.DataSet', endAsSrc: myEnd: WG10 [0..*] GenFCD.DataSet; otherEnd: WG10 [0..*] GenDataSet.FCDMember, endAsTgt: myEnd: WG10 [0..*] GenDataSet.FCDMember; otherEnd: WG10 [0..*] GenFCD.DataSet +2024-09-08 15:11:37,951 [main] TRACE UmlAssociationEnd - created null [0..*] null.DataSet +2024-09-08 15:11:37,951 [main] TRACE UmlAssociationEnd - created null [0..*] null.FCDAMember +2024-09-08 15:11:37,951 [main] TRACE UmlAssociation - created (3387) WG10 IEC61850 association, qname='GenDataSet.FCDAMember - GenFCDA.DataSet', endAsSrc: myEnd: WG10 [0..*] GenFCDA.DataSet; otherEnd: WG10 [0..*] GenDataSet.FCDAMember, endAsTgt: myEnd: WG10 [0..*] GenDataSet.FCDAMember; otherEnd: WG10 [0..*] GenFCDA.DataSet +2024-09-08 15:11:37,951 [main] TRACE UmlAssociationEnd - created null [0..*] null.FCD +2024-09-08 15:11:37,951 [main] TRACE UmlAssociationEnd - created null [1..1] null.SubDataObject +2024-09-08 15:11:37,951 [main] TRACE UmlAssociation - created (3385) WG10 IEC61850 association, qname='GenFCD.SubDataObject - GenSubDataObject.FCD', endAsSrc: myEnd: WG10 [0..*] GenSubDataObject.FCD; otherEnd: WG10 [1..1] GenFCD.SubDataObject, endAsTgt: myEnd: WG10 [1..1] GenFCD.SubDataObject; otherEnd: WG10 [0..*] GenSubDataObject.FCD +2024-09-08 15:11:37,951 [main] TRACE UmlAssociationEnd - created null [0..*] null.FCDA +2024-09-08 15:11:37,951 [main] TRACE UmlAssociationEnd - created null [1..1] null.SubDataAttribute +2024-09-08 15:11:37,951 [main] TRACE UmlAssociation - created (3384) WG10 IEC61850 association, qname='GenFCDA.SubDataAttribute - GenSubDataAttribute.FCDA', endAsSrc: myEnd: WG10 [0..*] GenSubDataAttribute.FCDA; otherEnd: WG10 [1..1] GenFCDA.SubDataAttribute, endAsTgt: myEnd: WG10 [1..1] GenFCDA.SubDataAttribute; otherEnd: WG10 [0..*] GenSubDataAttribute.FCDA +2024-09-08 15:11:37,951 [main] TRACE UmlAssociationEnd - created null [1..1] null.LogicalDevice +2024-09-08 15:11:37,951 [main] TRACE UmlAssociationEnd - created null [1..1] null.LN0 +2024-09-08 15:11:37,951 [main] TRACE UmlAssociation - created (3382) WG10 IEC61850 association, qname='GenLogicalDevice.LN0 - GenLN0.LogicalDevice', endAsSrc: myEnd: WG10 [1..1] GenLN0.LogicalDevice; otherEnd: WG10 [1..1] GenLogicalDevice.LN0, endAsTgt: myEnd: WG10 [1..1] GenLogicalDevice.LN0; otherEnd: WG10 [1..1] GenLN0.LogicalDevice +2024-09-08 15:11:37,951 [main] TRACE UmlAssociationEnd - created null [0..1] null.Server +2024-09-08 15:11:37,952 [main] TRACE UmlAssociationEnd - created null [1..*] null.LogicalDevice +2024-09-08 15:11:37,952 [main] TRACE UmlAssociation - created (3379) WG10 IEC61850 association, qname='GenServer.LogicalDevice - GenLogicalDevice.Server', endAsSrc: myEnd: WG10 [0..1] GenLogicalDevice.Server; otherEnd: WG10 [1..*] GenServer.LogicalDevice, endAsTgt: myEnd: WG10 [1..*] GenServer.LogicalDevice; otherEnd: WG10 [0..1] GenLogicalDevice.Server +2024-09-08 15:11:37,952 [main] TRACE UmlAssociationEnd - created null [1..1] null.LogicalDevice +2024-09-08 15:11:37,952 [main] TRACE UmlAssociationEnd - created null [0..*] null.LogicalNode +2024-09-08 15:11:37,952 [main] TRACE UmlAssociation - created (3380) WG10 IEC61850 association, qname='GenLogicalDevice.LogicalNode - GenLogicalNode.LogicalDevice', endAsSrc: myEnd: WG10 [1..1] GenLogicalNode.LogicalDevice; otherEnd: WG10 [0..*] GenLogicalDevice.LogicalNode, endAsTgt: myEnd: WG10 [0..*] GenLogicalDevice.LogicalNode; otherEnd: WG10 [1..1] GenLogicalNode.LogicalDevice +2024-09-08 15:11:37,952 [main] TRACE UmlAssociationEnd - created null [0..1] null.ParentLogicalDevice +2024-09-08 15:11:37,952 [main] TRACE UmlAssociationEnd - created null [0..*] null.ChildLogicalDevice +2024-09-08 15:11:37,952 [main] TRACE UmlAssociation - created (3381) WG10 IEC61850 association, qname='GenLogicalDevice.ChildLogicalDevice - GenLogicalDevice.ParentLogicalDevice', endAsSrc: myEnd: WG10 [0..1] GenLogicalDevice.ParentLogicalDevice; otherEnd: WG10 [0..*] GenLogicalDevice.ChildLogicalDevice, endAsTgt: myEnd: WG10 [0..*] GenLogicalDevice.ChildLogicalDevice; otherEnd: WG10 [0..1] GenLogicalDevice.ParentLogicalDevice +2024-09-08 15:11:37,952 [main] TRACE UmlAssociationEnd - created null [1..1] null.Server +2024-09-08 15:11:37,952 [main] TRACE UmlAssociationEnd - created null [0..*] null.MCAppAssociation +2024-09-08 15:11:37,952 [main] TRACE UmlAssociation - created (3378) WG10 IEC61850 association, qname='GenServer.MCAppAssociation - GenMCAA.Server', endAsSrc: myEnd: WG10 [1..1] GenMCAA.Server; otherEnd: WG10 [0..*] GenServer.MCAppAssociation, endAsTgt: myEnd: WG10 [0..*] GenServer.MCAppAssociation; otherEnd: WG10 [1..1] GenMCAA.Server +2024-09-08 15:11:37,952 [main] TRACE UmlAssociationEnd - created null [1..*] null.SAP +2024-09-08 15:11:37,952 [main] TRACE UmlAssociationEnd - created null [0..*] null.Server +2024-09-08 15:11:37,952 [main] TRACE UmlAssociation - created (3376) WG10 IEC61850 association, qname='ServiceAccessPoint.Server - GenServer.SAP', endAsSrc: myEnd: WG10 [1..*] GenServer.SAP; otherEnd: WG10 [0..*] ServiceAccessPoint.Server, endAsTgt: myEnd: WG10 [0..*] ServiceAccessPoint.Server; otherEnd: WG10 [1..*] GenServer.SAP +2024-09-08 15:11:37,953 [main] TRACE UmlAssociationEnd - created null [1..1] null.Server +2024-09-08 15:11:37,953 [main] TRACE UmlAssociationEnd - created null [0..*] null.TPAppAssociation +2024-09-08 15:11:37,953 [main] TRACE UmlAssociation - created (3377) WG10 IEC61850 association, qname='GenServer.TPAppAssociation - GenTPAA.Server', endAsSrc: myEnd: WG10 [1..1] GenTPAA.Server; otherEnd: WG10 [0..*] GenServer.TPAppAssociation, endAsTgt: myEnd: WG10 [0..*] GenServer.TPAppAssociation; otherEnd: WG10 [1..1] GenTPAA.Server +2024-09-08 15:11:37,953 [main] TRACE UmlAssociationEnd - created null (private) [0..*] null.<> +2024-09-08 15:11:37,953 [main] TRACE UmlAssociationEnd - created null (private) [1..1] null.<> +2024-09-08 15:11:37,953 [main] TRACE UmlAssociation - created (3289) WG10 IEC61850 association, qname='MCAA.<> - Authentication.<>', endAsSrc: myEnd: WG10 (private) [0..*] Authentication.<>; otherEnd: WG10 (private) [1..1] MCAA.<>, endAsTgt: myEnd: WG10 (private) [1..1] MCAA.<>; otherEnd: WG10 (private) [0..*] Authentication.<> +2024-09-08 15:11:37,953 [main] TRACE UmlAssociationEnd - created null (private) [0..*] null.<> +2024-09-08 15:11:37,953 [main] TRACE UmlAssociationEnd - created null (private) [1..1] null.<> +2024-09-08 15:11:37,953 [main] TRACE UmlAssociation - created (3290) WG10 IEC61850 association, qname='TPAA.<> - Authentication.<>', endAsSrc: myEnd: WG10 (private) [0..*] Authentication.<>; otherEnd: WG10 (private) [1..1] TPAA.<>, endAsTgt: myEnd: WG10 (private) [1..1] TPAA.<>; otherEnd: WG10 (private) [0..*] Authentication.<> +2024-09-08 15:11:37,953 [main] TRACE UmlAssociationEnd - created null (private) [?..?] null.<> (non-navigable) +2024-09-08 15:11:37,953 [main] TRACE UmlAssociationEnd - created null (private) [1..*] null.<> (navigable) +2024-09-08 15:11:37,953 [main] TRACE UmlAssociation - created (3291) WG10 IEC61850 association, qname='Authentication.<> - AccessView.<>', endAsSrc: myEnd: WG10 (private) [?..?] AccessView.<> (non-navigable); otherEnd: WG10 (private) [1..*] Authentication.<> (navigable), endAsTgt: myEnd: WG10 (private) [1..*] Authentication.<> (navigable); otherEnd: WG10 (private) [?..?] AccessView.<> (non-navigable) +2024-09-08 15:11:37,953 [main] TRACE UmlAssociationEnd - created null (private) [?..?] null.privateAuth +2024-09-08 15:11:37,953 [main] TRACE UmlAssociationEnd - created null [?..?] null.<> +2024-09-08 15:11:37,953 [main] TRACE UmlAssociation - created (3422) WG10 IEC61850 association, qname='Authentication.<> - ReportID.privateAuth', endAsSrc: myEnd: WG10 (private) [?..?] ReportID.privateAuth; otherEnd: WG10 [?..?] Authentication.<>, endAsTgt: myEnd: WG10 [?..?] Authentication.<>; otherEnd: WG10 (private) [?..?] ReportID.privateAuth +2024-09-08 15:11:37,953 [main] TRACE UmlAssociationEnd - created null [?..?] null.publicAuth +2024-09-08 15:11:37,953 [main] TRACE UmlAssociationEnd - created null [?..?] null.publicEntryID +2024-09-08 15:11:37,953 [main] TRACE UmlAssociation - created (3423) WG10 IEC61850 association, qname='Authentication.publicEntryID - EntryID.publicAuth', endAsSrc: myEnd: WG10 [?..?] EntryID.publicAuth; otherEnd: WG10 [?..?] Authentication.publicEntryID, endAsTgt: myEnd: WG10 [?..?] Authentication.publicEntryID; otherEnd: WG10 [?..?] EntryID.publicAuth +2024-09-08 15:11:37,953 [main] TRACE UmlAssociationEnd - created null [0..1] null.IED +2024-09-08 15:11:37,953 [main] TRACE UmlAssociationEnd - created null [1..*] null.SERVERs +2024-09-08 15:11:37,953 [main] TRACE UmlAssociation - created (3249) WG10 IEC61850 composition, qname='IED.SERVERs - SERVER.IED', endAsSrc: myEnd: WG10 [0..1] SERVER.IED; otherEnd: WG10 [1..*] IED.SERVERs, endAsTgt: myEnd: WG10 [1..*] IED.SERVERs; otherEnd: WG10 [0..1] SERVER.IED +2024-09-08 15:11:37,953 [main] TRACE UmlAssociationEnd - created null (private) [0..1] null.<> +2024-09-08 15:11:37,954 [main] TRACE UmlAssociationEnd - created null [0..*] null.MCAAs +2024-09-08 15:11:37,954 [main] TRACE UmlAssociation - created (3244) WG10 IEC61850 composition, qname='SERVER.MCAAs - MCAA.<>', endAsSrc: myEnd: WG10 (private) [0..1] MCAA.<>; otherEnd: WG10 [0..*] SERVER.MCAAs, endAsTgt: myEnd: WG10 [0..*] SERVER.MCAAs; otherEnd: WG10 (private) [0..1] MCAA.<> +2024-09-08 15:11:37,954 [main] TRACE UmlAssociationEnd - created null (private) [0..1] null.<> +2024-09-08 15:11:37,954 [main] TRACE UmlAssociationEnd - created null [0..*] null.FILEs +2024-09-08 15:11:37,954 [main] TRACE UmlAssociation - created (3245) WG10 IEC61850 composition, qname='SERVER.FILEs - FILE.<>', endAsSrc: myEnd: WG10 (private) [0..1] FILE.<>; otherEnd: WG10 [0..*] SERVER.FILEs, endAsTgt: myEnd: WG10 [0..*] SERVER.FILEs; otherEnd: WG10 (private) [0..1] FILE.<> +2024-09-08 15:11:37,954 [main] TRACE UmlAssociationEnd - created null (private) [0..1] null.<> +2024-09-08 15:11:37,954 [main] TRACE UmlAssociationEnd - created null [0..*] null.TPAAs +2024-09-08 15:11:37,954 [main] TRACE UmlAssociation - created (3246) WG10 IEC61850 composition, qname='SERVER.TPAAs - TPAA.<>', endAsSrc: myEnd: WG10 (private) [0..1] TPAA.<>; otherEnd: WG10 [0..*] SERVER.TPAAs, endAsTgt: myEnd: WG10 [0..*] SERVER.TPAAs; otherEnd: WG10 (private) [0..1] TPAA.<> +2024-09-08 15:11:37,954 [main] TRACE UmlAssociationEnd - created null [0..1] null.SERVER +2024-09-08 15:11:37,954 [main] TRACE UmlAssociationEnd - created null [1..*] null.LDs +2024-09-08 15:11:37,954 [main] TRACE UmlAssociation - created (3247) WG10 IEC61850 composition, qname='SERVER.LDs - LD.SERVER', endAsSrc: myEnd: WG10 [0..1] LD.SERVER; otherEnd: WG10 [1..*] SERVER.LDs, endAsTgt: myEnd: WG10 [1..*] SERVER.LDs; otherEnd: WG10 [0..1] LD.SERVER +2024-09-08 15:11:37,954 [main] TRACE UmlAssociationEnd - created null [0..1] null.TPAA +2024-09-08 15:11:37,954 [main] TRACE UmlAssociationEnd - created null [0..*] null.NonPersistentDSs +2024-09-08 15:11:37,954 [main] TRACE UmlAssociation - created (3242) WG10 IEC61850 composition, qname='TPAA.NonPersistentDSs - NonPersistentDS.TPAA', endAsSrc: myEnd: WG10 [0..1] NonPersistentDS.TPAA; otherEnd: WG10 [0..*] TPAA.NonPersistentDSs, endAsTgt: myEnd: WG10 [0..*] TPAA.NonPersistentDSs; otherEnd: WG10 [0..1] NonPersistentDS.TPAA +2024-09-08 15:11:37,954 [main] TRACE UmlAssociationEnd - created null [0..1] null.LD +2024-09-08 15:11:37,954 [main] TRACE UmlAssociationEnd - created null [0..*] null.LNDOMs +2024-09-08 15:11:37,954 [main] TRACE UmlAssociation - created (3237) WG10 IEC61850 composition, qname='LD.LNDOMs - LNDOM.LD', endAsSrc: myEnd: WG10 [0..1] LNDOM.LD; otherEnd: WG10 [0..*] LD.LNDOMs, endAsTgt: myEnd: WG10 [0..*] LD.LNDOMs; otherEnd: WG10 [0..1] LNDOM.LD +2024-09-08 15:11:37,954 [main] TRACE UmlAssociationEnd - created null [0..1] null.LD +2024-09-08 15:11:37,954 [main] TRACE UmlAssociationEnd - created null [1..1] null.LN0 +2024-09-08 15:11:37,954 [main] TRACE UmlAssociation - created (3238) WG10 IEC61850 composition, qname='LD.LN0 - LN0.LD', endAsSrc: myEnd: WG10 [0..1] LN0.LD; otherEnd: WG10 [1..1] LD.LN0, endAsTgt: myEnd: WG10 [1..1] LD.LN0; otherEnd: WG10 [0..1] LN0.LD +2024-09-08 15:11:37,954 [main] TRACE UmlAssociationEnd - created null [0..1] null.LD +2024-09-08 15:11:37,954 [main] TRACE UmlAssociationEnd - created null [1..1] null.LNPHD +2024-09-08 15:11:37,954 [main] TRACE UmlAssociation - created (3239) WG10 IEC61850 composition, qname='LD.LNPHD - LNPHD.LD', endAsSrc: myEnd: WG10 [0..1] LNPHD.LD; otherEnd: WG10 [1..1] LD.LNPHD, endAsTgt: myEnd: WG10 [1..1] LD.LNPHD; otherEnd: WG10 [0..1] LNPHD.LD +2024-09-08 15:11:37,954 [main] TRACE UmlAssociationEnd - created null [0..1] null.LN +2024-09-08 15:11:37,954 [main] TRACE UmlAssociationEnd - created null [1..*] null.CDCs +2024-09-08 15:11:37,954 [main] TRACE UmlAssociation - created (3230) WG10 IEC61850 composition, qname='LN.CDCs - CDC.LN', endAsSrc: myEnd: WG10 [0..1] CDC.LN; otherEnd: WG10 [1..*] LN.CDCs, endAsTgt: myEnd: WG10 [1..*] LN.CDCs; otherEnd: WG10 [0..1] CDC.LN +2024-09-08 15:11:37,954 [main] TRACE UmlAssociationEnd - created null [?..?] null.LN +2024-09-08 15:11:37,954 [main] TRACE UmlAssociationEnd - created null [0..*] null.LNOwnedDSs +2024-09-08 15:11:37,954 [main] TRACE UmlAssociation - created (3231) WG10 IEC61850 association, qname='LN.LNOwnedDSs - LNOwnedDS.LN', endAsSrc: myEnd: WG10 [?..?] LNOwnedDS.LN; otherEnd: WG10 [0..*] LN.LNOwnedDSs, endAsTgt: myEnd: WG10 [0..*] LN.LNOwnedDSs; otherEnd: WG10 [?..?] LNOwnedDS.LN +2024-09-08 15:11:37,954 [main] TRACE UmlAssociationEnd - created null [?..?] null.LN +2024-09-08 15:11:37,954 [main] TRACE UmlAssociationEnd - created null [0..*] null.LOGs +2024-09-08 15:11:37,954 [main] TRACE UmlAssociation - created (3232) WG10 IEC61850 association, qname='LN.LOGs - LOG.LN', endAsSrc: myEnd: WG10 [?..?] LOG.LN; otherEnd: WG10 [0..*] LN.LOGs, endAsTgt: myEnd: WG10 [0..*] LN.LOGs; otherEnd: WG10 [?..?] LOG.LN +2024-09-08 15:11:37,954 [main] TRACE UmlAssociationEnd - created null [?..?] null.LN +2024-09-08 15:11:37,954 [main] TRACE UmlAssociationEnd - created null [0..*] null.LCBs +2024-09-08 15:11:37,955 [main] TRACE UmlAssociation - created (3233) WG10 IEC61850 association, qname='LN.LCBs - LCB.LN', endAsSrc: myEnd: WG10 [?..?] LCB.LN; otherEnd: WG10 [0..*] LN.LCBs, endAsTgt: myEnd: WG10 [0..*] LN.LCBs; otherEnd: WG10 [?..?] LCB.LN +2024-09-08 15:11:37,955 [main] TRACE UmlAssociationEnd - created null [0..1] null.LN +2024-09-08 15:11:37,955 [main] TRACE UmlAssociationEnd - created null [0..*] null.URCBs +2024-09-08 15:11:37,955 [main] TRACE UmlAssociation - created (3234) WG10 IEC61850 composition, qname='LN.URCBs - URCB.LN', endAsSrc: myEnd: WG10 [0..1] URCB.LN; otherEnd: WG10 [0..*] LN.URCBs, endAsTgt: myEnd: WG10 [0..*] LN.URCBs; otherEnd: WG10 [0..1] URCB.LN +2024-09-08 15:11:37,955 [main] TRACE UmlAssociationEnd - created null [0..1] null.LN +2024-09-08 15:11:37,955 [main] TRACE UmlAssociationEnd - created null [0..*] null.BRCBs +2024-09-08 15:11:37,955 [main] TRACE UmlAssociation - created (3235) WG10 IEC61850 composition, qname='LN.BRCBs - BRCB.LN', endAsSrc: myEnd: WG10 [0..1] BRCB.LN; otherEnd: WG10 [0..*] LN.BRCBs, endAsTgt: myEnd: WG10 [0..*] LN.BRCBs; otherEnd: WG10 [0..1] BRCB.LN +2024-09-08 15:11:37,955 [main] TRACE UmlAssociationEnd - created null [?..?] null.LN0 +2024-09-08 15:11:37,955 [main] TRACE UmlAssociationEnd - created null [0..*] null.USVCBs +2024-09-08 15:11:37,955 [main] TRACE UmlAssociation - created (3224) WG10 IEC61850 association, qname='LN0.USVCBs - USVCB.LN0', endAsSrc: myEnd: WG10 [?..?] USVCB.LN0; otherEnd: WG10 [0..*] LN0.USVCBs, endAsTgt: myEnd: WG10 [0..*] LN0.USVCBs; otherEnd: WG10 [?..?] USVCB.LN0 +2024-09-08 15:11:37,955 [main] TRACE UmlAssociationEnd - created null [?..?] null.LN0 +2024-09-08 15:11:37,955 [main] TRACE UmlAssociationEnd - created null [0..*] null.GCBs +2024-09-08 15:11:37,955 [main] TRACE UmlAssociation - created (3225) WG10 IEC61850 association, qname='LN0.GCBs - GCB.LN0', endAsSrc: myEnd: WG10 [?..?] GCB.LN0; otherEnd: WG10 [0..*] LN0.GCBs, endAsTgt: myEnd: WG10 [0..*] LN0.GCBs; otherEnd: WG10 [?..?] GCB.LN0 +2024-09-08 15:11:37,955 [main] TRACE UmlAssociationEnd - created null [?..?] null.LN0 +2024-09-08 15:11:37,955 [main] TRACE UmlAssociationEnd - created null [0..*] null.MSVCBs +2024-09-08 15:11:37,955 [main] TRACE UmlAssociation - created (3226) WG10 IEC61850 association, qname='LN0.MSVCBs - MSVCB.LN0', endAsSrc: myEnd: WG10 [?..?] MSVCB.LN0; otherEnd: WG10 [0..*] LN0.MSVCBs, endAsTgt: myEnd: WG10 [0..*] LN0.MSVCBs; otherEnd: WG10 [?..?] MSVCB.LN0 +2024-09-08 15:11:37,955 [main] TRACE UmlAssociationEnd - created null [?..?] null.LN0 +2024-09-08 15:11:37,955 [main] TRACE UmlAssociationEnd - created null [0..1] null.SGCB +2024-09-08 15:11:37,955 [main] TRACE UmlAssociation - created (3227) WG10 IEC61850 association, qname='LN0.SGCB - SGCB.LN0', endAsSrc: myEnd: WG10 [?..?] SGCB.LN0; otherEnd: WG10 [0..1] LN0.SGCB, endAsTgt: myEnd: WG10 [0..1] LN0.SGCB; otherEnd: WG10 [?..?] SGCB.LN0 +2024-09-08 15:11:37,955 [main] TRACE UmlAssociationEnd - created null [0..1] null.CDC +2024-09-08 15:11:37,955 [main] TRACE UmlAssociationEnd - created null [1..*] null.FCDAs +2024-09-08 15:11:37,955 [main] TRACE UmlAssociation - created (3220) WG10 IEC61850 composition, qname='CDC.FCDAs - FCDA.CDC', endAsSrc: myEnd: WG10 [0..1] FCDA.CDC; otherEnd: WG10 [1..*] CDC.FCDAs, endAsTgt: myEnd: WG10 [1..*] CDC.FCDAs; otherEnd: WG10 [0..1] FCDA.CDC +2024-09-08 15:11:37,955 [main] TRACE UmlAssociationEnd - created null [0..1] null.CDC +2024-09-08 15:11:37,955 [main] TRACE UmlAssociationEnd - created null [1..*] null.FCDs +2024-09-08 15:11:37,955 [main] TRACE UmlAssociation - created (3221) WG10 IEC61850 composition, qname='CDC.FCDs - FCD.CDC', endAsSrc: myEnd: WG10 [0..1] FCD.CDC; otherEnd: WG10 [1..*] CDC.FCDs, endAsTgt: myEnd: WG10 [1..*] CDC.FCDs; otherEnd: WG10 [0..1] FCD.CDC +2024-09-08 15:11:37,955 [main] TRACE UmlAssociationEnd - created null [0..1] null.ComposedCDC +2024-09-08 15:11:37,955 [main] TRACE UmlAssociationEnd - created null [1..*] null.PrimitiveCDCs +2024-09-08 15:11:37,955 [main] TRACE UmlAssociation - created (3217) WG10 IEC61850 composition, qname='ComposedCDC.PrimitiveCDCs - PrimitiveCDC.ComposedCDC', endAsSrc: myEnd: WG10 [0..1] PrimitiveCDC.ComposedCDC; otherEnd: WG10 [1..*] ComposedCDC.PrimitiveCDCs, endAsTgt: myEnd: WG10 [1..*] ComposedCDC.PrimitiveCDCs; otherEnd: WG10 [0..1] PrimitiveCDC.ComposedCDC +2024-09-08 15:11:37,955 [main] TRACE UmlAssociationEnd - created null [0..1] null.ControlCDC +2024-09-08 15:11:37,955 [main] TRACE UmlAssociationEnd - created null [0..1] null.ServiceParameter +2024-09-08 15:11:37,955 [main] TRACE UmlAssociation - created (3218) WG10 IEC61850 composition, qname='PrimitiveCDC.ServiceParameter - PrimitiveDA.ControlCDC', endAsSrc: myEnd: WG10 [0..1] PrimitiveDA.ControlCDC; otherEnd: WG10 [0..1] PrimitiveCDC.ServiceParameter, endAsTgt: myEnd: WG10 [0..1] PrimitiveCDC.ServiceParameter; otherEnd: WG10 [0..1] PrimitiveDA.ControlCDC +2024-09-08 15:11:37,955 [main] TRACE UmlAssociationEnd - created null [0..*] null.DataSetFCDMember +2024-09-08 15:11:37,955 [main] TRACE UmlAssociationEnd - created null [0..*] null.DSs +2024-09-08 15:11:37,955 [main] TRACE UmlAssociation - created (3213) WG10 IEC61850 association, qname='FCD.DSs - DS.DataSetFCDMember', endAsSrc: myEnd: WG10 [0..*] DS.DataSetFCDMember; otherEnd: WG10 [0..*] FCD.DSs, endAsTgt: myEnd: WG10 [0..*] FCD.DSs; otherEnd: WG10 [0..*] DS.DataSetFCDMember +2024-09-08 15:11:37,956 [main] TRACE UmlAssociationEnd - created null [1..1] null.FCD +2024-09-08 15:11:37,956 [main] TRACE UmlAssociationEnd - created null [1..*] null.FCDAs +2024-09-08 15:11:37,956 [main] TRACE UmlAssociation - created (3214) WG10 IEC61850 association, qname='FCD.FCDAs - FCDA.FCD', endAsSrc: myEnd: WG10 [1..1] FCDA.FCD; otherEnd: WG10 [1..*] FCD.FCDAs, endAsTgt: myEnd: WG10 [1..*] FCD.FCDAs; otherEnd: WG10 [1..1] FCDA.FCD +2024-09-08 15:11:37,956 [main] TRACE UmlAssociationEnd - created null [0..1] null.FCDA +2024-09-08 15:11:37,956 [main] TRACE UmlAssociationEnd - created null [1..1] null.DA +2024-09-08 15:11:37,956 [main] TRACE UmlAssociation - created (3210) WG10 IEC61850 composition, qname='FCDA.DA - DA.FCDA', endAsSrc: myEnd: WG10 [0..1] DA.FCDA; otherEnd: WG10 [1..1] FCDA.DA, endAsTgt: myEnd: WG10 [1..1] FCDA.DA; otherEnd: WG10 [0..1] DA.FCDA +2024-09-08 15:11:37,956 [main] TRACE UmlAssociationEnd - created null [0..*] null.DataSetFCDAMember +2024-09-08 15:11:37,956 [main] TRACE UmlAssociationEnd - created null [0..*] null.DSs +2024-09-08 15:11:37,956 [main] TRACE UmlAssociation - created (3211) WG10 IEC61850 association, qname='FCDA.DSs - DS.DataSetFCDAMember', endAsSrc: myEnd: WG10 [0..*] DS.DataSetFCDAMember; otherEnd: WG10 [0..*] FCDA.DSs, endAsTgt: myEnd: WG10 [0..*] FCDA.DSs; otherEnd: WG10 [0..*] DS.DataSetFCDAMember +2024-09-08 15:11:37,956 [main] TRACE UmlAssociationEnd - created null [0..1] null.ComposedDA +2024-09-08 15:11:37,956 [main] TRACE UmlAssociationEnd - created null [1..*] null.DAs +2024-09-08 15:11:37,956 [main] TRACE UmlAssociation - created (3208) WG10 IEC61850 composition, qname='ComposedDA.DAs - DA.ComposedDA', endAsSrc: myEnd: WG10 [0..1] DA.ComposedDA; otherEnd: WG10 [1..*] ComposedDA.DAs, endAsTgt: myEnd: WG10 [1..*] ComposedDA.DAs; otherEnd: WG10 [0..1] DA.ComposedDA +2024-09-08 15:11:37,956 [main] TRACE UmlAssociationEnd - created null (private) [0..*] null.<> +2024-09-08 15:11:37,956 [main] TRACE UmlAssociationEnd - created null [0..1] null.DS +2024-09-08 15:11:37,956 [main] TRACE UmlAssociation - created (3200) WG10 IEC61850 association, qname='URCB.DS - DS.<>', endAsSrc: myEnd: WG10 (private) [0..*] DS.<>; otherEnd: WG10 [0..1] URCB.DS, endAsTgt: myEnd: WG10 [0..1] URCB.DS; otherEnd: WG10 (private) [0..*] DS.<> +2024-09-08 15:11:37,956 [main] TRACE UmlAssociationEnd - created null (private) [0..*] null.<> +2024-09-08 15:11:37,956 [main] TRACE UmlAssociationEnd - created null [0..1] null.DS +2024-09-08 15:11:37,956 [main] TRACE UmlAssociation - created (3201) WG10 IEC61850 association, qname='USVCB.DS - DS.<>', endAsSrc: myEnd: WG10 (private) [0..*] DS.<>; otherEnd: WG10 [0..1] USVCB.DS, endAsTgt: myEnd: WG10 [0..1] USVCB.DS; otherEnd: WG10 (private) [0..*] DS.<> +2024-09-08 15:11:37,956 [main] TRACE UmlAssociationEnd - created null (private) [0..*] null.<> +2024-09-08 15:11:37,956 [main] TRACE UmlAssociationEnd - created null [0..1] null.LNOwnedDS +2024-09-08 15:11:37,956 [main] TRACE UmlAssociation - created (3195) WG10 IEC61850 association, qname='MSVCB.LNOwnedDS - LNOwnedDS.<>', endAsSrc: myEnd: WG10 (private) [0..*] LNOwnedDS.<>; otherEnd: WG10 [0..1] MSVCB.LNOwnedDS, endAsTgt: myEnd: WG10 [0..1] MSVCB.LNOwnedDS; otherEnd: WG10 (private) [0..*] LNOwnedDS.<> +2024-09-08 15:11:37,956 [main] TRACE UmlAssociationEnd - created null (private) [0..*] null.<> +2024-09-08 15:11:37,956 [main] TRACE UmlAssociationEnd - created null [0..1] null.LNOwnedDS +2024-09-08 15:11:37,956 [main] TRACE UmlAssociation - created (3196) WG10 IEC61850 association, qname='LCB.LNOwnedDS - LNOwnedDS.<>', endAsSrc: myEnd: WG10 (private) [0..*] LNOwnedDS.<>; otherEnd: WG10 [0..1] LCB.LNOwnedDS, endAsTgt: myEnd: WG10 [0..1] LCB.LNOwnedDS; otherEnd: WG10 (private) [0..*] LNOwnedDS.<> +2024-09-08 15:11:37,956 [main] TRACE UmlAssociationEnd - created null (private) [0..*] null.<> +2024-09-08 15:11:37,956 [main] TRACE UmlAssociationEnd - created null [0..1] null.LNOwnedDS +2024-09-08 15:11:37,956 [main] TRACE UmlAssociation - created (3197) WG10 IEC61850 association, qname='BRCB.LNOwnedDS - LNOwnedDS.<>', endAsSrc: myEnd: WG10 (private) [0..*] LNOwnedDS.<>; otherEnd: WG10 [0..1] BRCB.LNOwnedDS, endAsTgt: myEnd: WG10 [0..1] BRCB.LNOwnedDS; otherEnd: WG10 (private) [0..*] LNOwnedDS.<> +2024-09-08 15:11:37,956 [main] TRACE UmlAssociationEnd - created null (private) [0..*] null.<> +2024-09-08 15:11:37,956 [main] TRACE UmlAssociationEnd - created null [0..1] null.LNOwnedDS +2024-09-08 15:11:37,956 [main] TRACE UmlAssociation - created (3198) WG10 IEC61850 association, qname='GCB.LNOwnedDS - LNOwnedDS.<>', endAsSrc: myEnd: WG10 (private) [0..*] LNOwnedDS.<>; otherEnd: WG10 [0..1] GCB.LNOwnedDS, endAsTgt: myEnd: WG10 [0..1] GCB.LNOwnedDS; otherEnd: WG10 (private) [0..*] LNOwnedDS.<> +2024-09-08 15:11:37,956 [main] TRACE UmlAssociationEnd - created null (private) [0..*] null.<> +2024-09-08 15:11:37,956 [main] TRACE UmlAssociationEnd - created null [1..1] null.LOG +2024-09-08 15:11:37,956 [main] TRACE UmlAssociation - created (3186) WG10 IEC61850 association, qname='LCB.LOG - LOG.<>', endAsSrc: myEnd: WG10 (private) [0..*] LOG.<>; otherEnd: WG10 [1..1] LCB.LOG, endAsTgt: myEnd: WG10 [1..1] LCB.LOG; otherEnd: WG10 (private) [0..*] LOG.<> +2024-09-08 15:11:37,956 [main] TRACE UmlAssociationEnd - created null (private) [0..*] null.<> +2024-09-08 15:11:37,957 [main] TRACE UmlAssociationEnd - created null [1..*] null.ActiveFCDAs +2024-09-08 15:11:37,957 [main] TRACE UmlAssociation - created (3178) WG10 IEC61850 association, qname='SGCB.ActiveFCDAs - FCDA_SG.<>', endAsSrc: myEnd: WG10 (private) [0..*] FCDA_SG.<>; otherEnd: WG10 [1..*] SGCB.ActiveFCDAs, endAsTgt: myEnd: WG10 [1..*] SGCB.ActiveFCDAs; otherEnd: WG10 (private) [0..*] FCDA_SG.<> +2024-09-08 15:11:37,957 [main] TRACE UmlAssociationEnd - created null (private) [0..*] null.<> +2024-09-08 15:11:37,957 [main] TRACE UmlAssociationEnd - created null [1..*] null.EditFCDAs +2024-09-08 15:11:37,957 [main] TRACE UmlAssociation - created (3179) WG10 IEC61850 association, qname='SGCB.EditFCDAs - FCDA_SE.<>', endAsSrc: myEnd: WG10 (private) [0..*] FCDA_SE.<>; otherEnd: WG10 [1..*] SGCB.EditFCDAs, endAsTgt: myEnd: WG10 [1..*] SGCB.EditFCDAs; otherEnd: WG10 (private) [0..*] FCDA_SE.<> +2024-09-08 15:11:37,957 [main] TRACE UmlAssociationEnd - created null [0..1] null.SelfFromApple +2024-09-08 15:11:37,957 [main] TRACE UmlAssociationEnd - created null [0..*] null.SelfToApples +2024-09-08 15:11:37,957 [main] TRACE UmlAssociation - created (2140) OTHER_CIM CIM association, qname='Apple.SelfToApples - Apple.SelfFromApple', endAsSrc: myEnd: OTHER_CIM [0..1] Apple.SelfFromApple; otherEnd: OTHER_CIM [0..*] Apple.SelfToApples, endAsTgt: myEnd: OTHER_CIM [0..*] Apple.SelfToApples; otherEnd: OTHER_CIM [0..1] Apple.SelfFromApple +2024-09-08 15:11:37,957 [main] TRACE UmlAssociationEnd - created null [0..1] null.Pear +2024-09-08 15:11:37,957 [main] TRACE UmlAssociationEnd - created null [0..*] null.Apple +2024-09-08 15:11:37,957 [main] TRACE UmlAssociation - created (2141) OTHER_CIM CIM association <>, qname='Pear.Apple - Apple.Pear', endAsSrc: myEnd: OTHER_CIM [0..1] Apple.Pear; tags={assocEndTag=value}; otherEnd: OTHER_CIM [0..*] Pear.Apple; tags={targetEndTag=value2}, endAsTgt: myEnd: OTHER_CIM [0..*] Pear.Apple; tags={targetEndTag=value2}; otherEnd: OTHER_CIM [0..1] Apple.Pear; tags={assocEndTag=value} +2024-09-08 15:11:37,957 [main] TRACE UmlAssociationEnd - created null <> [0..1] null.SecondPear +2024-09-08 15:11:37,957 [main] TRACE UmlAssociationEnd - created null <> [1..1] null.SecondApple +2024-09-08 15:11:37,957 [main] TRACE UmlAssociation - created (2142) OTHER_CIM CIM association, qname='Pear.SecondApple - Apple.SecondPear', endAsSrc: myEnd: OTHER_CIM <> [0..1] Apple.SecondPear; otherEnd: OTHER_CIM <> [1..1] Pear.SecondApple, endAsTgt: myEnd: OTHER_CIM <> [1..1] Pear.SecondApple; otherEnd: OTHER_CIM <> [0..1] Apple.SecondPear +2024-09-08 15:11:37,957 [main] TRACE UmlAssociationEnd - created null [0..1] null.Animal +2024-09-08 15:11:37,957 [main] TRACE UmlAssociationEnd - created null [0..*] null.Fruit +2024-09-08 15:11:37,957 [main] TRACE UmlAssociation - created (2143) OTHER_IEC61850 IEC61850 association, qname='Animal.Fruit - Fruit.Animal', endAsSrc: myEnd: OTHER_IEC61850 [0..1] Fruit.Animal; otherEnd: OTHER_IEC61850 [0..*] Animal.Fruit, endAsTgt: myEnd: OTHER_IEC61850 [0..*] Animal.Fruit; otherEnd: OTHER_IEC61850 [0..1] Fruit.Animal +2024-09-08 15:11:37,957 [main] TRACE UmlAssociationEnd - created null [1..*] null.SecondAnimal +2024-09-08 15:11:37,957 [main] TRACE UmlAssociationEnd - created null [1..1] null.SecondFruit +2024-09-08 15:11:37,957 [main] TRACE UmlAssociation - created (2144) OTHER_IEC61850 IEC61850 association, qname='Animal.SecondFruit - Fruit.SecondAnimal', endAsSrc: myEnd: OTHER_IEC61850 [1..*] Fruit.SecondAnimal; otherEnd: OTHER_IEC61850 [1..1] Animal.SecondFruit, endAsTgt: myEnd: OTHER_IEC61850 [1..1] Animal.SecondFruit; otherEnd: OTHER_IEC61850 [1..*] Fruit.SecondAnimal +2024-09-08 15:11:37,957 [main] TRACE UmlAssociationEnd - created null [0..1] null.Vilage +2024-09-08 15:11:37,957 [main] TRACE UmlAssociationEnd - created null [0..*] null.Strawberries +2024-09-08 15:11:37,957 [main] TRACE UmlAssociation - created (3418) OTHER_CIM CIM association, qname='Village.Strawberries - Strawberry.Vilage', endAsSrc: myEnd: OTHER_CIM [0..1] Strawberry.Vilage; otherEnd: OTHER_CIM [0..*] Village.Strawberries, endAsTgt: myEnd: OTHER_CIM [0..*] Village.Strawberries; otherEnd: OTHER_CIM [0..1] Strawberry.Vilage +2024-09-08 15:11:37,957 [main] TRACE UmlAssociationEnd - created null [0..1] null.Role 1 +2024-09-08 15:11:37,957 [main] TRACE UmlAssociationEnd - created null [0..1] null._role 2&x +2024-09-08 15:11:37,957 [main] TRACE UmlAssociation - created (2147) OTHER_CIM CIM association <>, qname='My class._role 2&x - Other-with_invalid name.Role 1', endAsSrc: myEnd: OTHER_CIM [0..1] Other-with_invalid name.Role 1; otherEnd: OTHER_CIM [0..1] My class._role 2&x, endAsTgt: myEnd: OTHER_CIM [0..1] My class._role 2&x; otherEnd: OTHER_CIM [0..1] Other-with_invalid name.Role 1 +2024-09-08 15:11:37,957 [main] INFO EaModelBuilder - creating in-memory dependencies ... +2024-09-08 15:11:37,965 [main] TRACE UmlDependency - created (3446) WG14 CIM interPackage dependency= IEC61968::Other -> TC57CIM::IEC61970 +2024-09-08 15:11:37,965 [main] TRACE UmlDependency - created (3447) WG14 CIM interPackage dependency= TC57CIM::IEC61968 -> TC57CIM::IEC61970 +2024-09-08 15:11:37,965 [main] TRACE UmlDependency - created (3449) WG16 CIM interPackage dependency= TC57CIM::IEC62325 -> TC57CIM::IEC61970 +2024-09-08 15:11:37,966 [main] TRACE UmlDependency - created (485) WG13 CIM interPackage dependency <>= IEC61970::Core -> IEC61970::Domain +2024-09-08 15:11:37,966 [main] TRACE UmlDependency - created (480) WG13 CIM interPackage dependency= IEC61970::Topology -> IEC61970::Core +2024-09-08 15:11:37,966 [main] TRACE UmlDependency - created (2132) WG13 CIM interPackage dependency= IEC61970::Topology -> IEC61968::Other +2024-09-08 15:11:37,966 [main] TRACE UmlDependency - created (3448) WG16 CIM interPackage dependency= TC57CIM::IEC62325 -> TC57CIM::IEC61968 +2024-09-08 15:11:37,966 [main] TRACE UmlDependency - created (2111) WG14 CIM interClass dependency= Other::BadDatatypes -> Other::MyClass +2024-09-08 15:11:37,966 [main] TRACE UmlDependency - created (3375) WG10 IEC61850 interClass dependency <>= GenericModel::GenSubDataAttribute -> GenericModel::GenAtomicType +2024-09-08 15:11:37,966 [main] TRACE UmlDependency - created (3393) WG10 IEC61850 interClass dependency <>= GenericModel::GenDataAttribute -> GenericModel::GenAtomicType +2024-09-08 15:11:37,966 [main] TRACE UmlDependency - created (3372) WG10 IEC61850 interClass dependency <>= GenericModel::GenSubDataObject -> GenericModel::GenCommonDataClass +2024-09-08 15:11:37,966 [main] TRACE UmlDependency - created (3390) WG10 IEC61850 interClass dependency <>= GenericModel::GenDataObject -> GenericModel::GenCommonDataClass +2024-09-08 15:11:37,966 [main] TRACE UmlDependency - created (3374) WG10 IEC61850 interClass dependency <>= GenericModel::GenSubDataAttribute -> GenericModel::GenCompactType +2024-09-08 15:11:37,966 [main] TRACE UmlDependency - created (3394) WG10 IEC61850 interClass dependency <>= GenericModel::GenDataAttribute -> GenericModel::GenCompactType +2024-09-08 15:11:37,966 [main] TRACE UmlDependency - created (3373) WG10 IEC61850 interClass dependency <>= GenericModel::GenSubDataAttribute -> GenericModel::GenConstructedType +2024-09-08 15:11:37,966 [main] TRACE UmlDependency - created (3392) WG10 IEC61850 interClass dependency <>= GenericModel::GenDataAttribute -> GenericModel::GenConstructedType +2024-09-08 15:11:37,966 [main] TRACE UmlDependency - created (2896) WG10 IEC61850 interPackage dependency= WG10::IEC61850_7_4 -> WG10::IEC61850_7_2 +2024-09-08 15:11:37,966 [main] TRACE UmlDependency - created (3104) WG10 IEC61850 interPackage dependency= WG10::IEC61850_7_3 -> WG10::IEC61850_7_2 +2024-09-08 15:11:37,966 [main] TRACE UmlDependency - created (3175) WG10 IEC61850 interPackage dependency= IEC61850_7_2::MetaModel -> IEC61850_7_2::FunctionalConstraints +2024-09-08 15:11:37,966 [main] TRACE UmlDependency - created (3173) WG10 IEC61850 interPackage dependency= IEC61850_7_2::MetaModel -> IEC61850_7_2::TriggerOptions +2024-09-08 15:11:37,966 [main] TRACE UmlDependency - created (3298) WG10 IEC61850 interPackage dependency= IEC61850_7_2::BasicDAs -> IEC61850_7_2::ACSIEnums +2024-09-08 15:11:37,966 [main] TRACE UmlDependency - created (3064) WG10 IEC61850 interPackage dependency= IEC61850_7_3::ConstructedDAs -> IEC61850_7_2::CoreTypes +2024-09-08 15:11:37,966 [main] TRACE UmlDependency - created (3174) WG10 IEC61850 interPackage dependency= IEC61850_7_2::MetaModel -> IEC61850_7_2::CoreTypes +2024-09-08 15:11:37,966 [main] TRACE UmlDependency - created (3288) WG10 IEC61850 interPackage dependency= AcsiTypes::CommonAcsiTypes -> IEC61850_7_2::CoreTypes +2024-09-08 15:11:37,966 [main] TRACE UmlDependency - created (3297) WG10 IEC61850 interPackage dependency= IEC61850_7_2::AcsiTypes -> IEC61850_7_2::CoreTypes +2024-09-08 15:11:37,966 [main] TRACE UmlDependency - created (3301) WG10 IEC61850 interPackage dependency= IEC61850_7_2::BasicDAs -> IEC61850_7_2::CoreTypes +2024-09-08 15:11:37,966 [main] TRACE UmlDependency - created (3322) WG10 IEC61850 interPackage dependency= IEC61850_7_2::AttrValues -> IEC61850_7_2::CoreTypes +2024-09-08 15:11:37,966 [main] TRACE UmlDependency - created (3347) WG10 IEC61850 interPackage dependency= IEC61850_7_2::ObjectReferences -> IEC61850_7_2::CoreTypes +2024-09-08 15:11:37,966 [main] TRACE UmlDependency - created (3172) WG10 IEC61850 interPackage dependency= IEC61850_7_2::MetaModel -> IEC61850_7_2::ObjectReferences +2024-09-08 15:11:37,966 [main] TRACE UmlDependency - created (3323) WG10 IEC61850 interPackage dependency= IEC61850_7_2::AttrValues -> IEC61850_7_2::ObjectReferences +2024-09-08 15:11:37,967 [main] TRACE UmlDependency - created (3171) WG10 IEC61850 interPackage dependency= IEC61850_7_2::MetaModel -> IEC61850_7_2::AttrValues +2024-09-08 15:11:37,967 [main] TRACE UmlDependency - created (3300) WG10 IEC61850 interPackage dependency= IEC61850_7_2::BasicDAs -> IEC61850_7_2::AttrValues +2024-09-08 15:11:37,967 [main] TRACE UmlDependency - created (2947) WG10 IEC61850 interPackage dependency= IEC61850_7_3::FCDAs -> IEC61850_7_2::BasicDAs +2024-09-08 15:11:37,967 [main] TRACE UmlDependency - created (3063) WG10 IEC61850 interPackage dependency= IEC61850_7_3::ConstructedDAs -> IEC61850_7_2::BasicDAs +2024-09-08 15:11:37,967 [main] TRACE UmlDependency - created (3299) WG10 IEC61850 interPackage dependency= IEC61850_7_2::BasicDAs -> IEC61850_7_2::MetaModel +2024-09-08 15:11:37,967 [main] TRACE UmlDependency - created (3176) WG10 IEC61850 interPackage dependency= IEC61850_7_2::MetaModel -> IEC61850_7_2::AcsiTypes +2024-09-08 15:11:37,967 [main] TRACE UmlDependency - created (3424) WG10 IEC61850 interClass dependency= CommonAcsiTypes::MulticastAddress -> CommonAcsiTypes::P_OCTET_STRING +2024-09-08 15:11:37,967 [main] TRACE UmlDependency - created (2549) WG10 IEC61850 interPackage dependency= IEC61850_7_4::LogicalNodes -> IEC61850_7_2::MetaModel +2024-09-08 15:11:37,967 [main] TRACE UmlDependency - created (2612) WG10 IEC61850 interPackage dependency= IEC61850_7_4::DerivedDAs -> IEC61850_7_2::MetaModel +2024-09-08 15:11:37,967 [main] TRACE UmlDependency - created (2940) WG10 IEC61850 interPackage dependency= IEC61850_7_3::CommonDataClasses -> IEC61850_7_2::MetaModel +2024-09-08 15:11:37,967 [main] TRACE UmlDependency - created (2948) WG10 IEC61850 interPackage dependency= IEC61850_7_3::FCDAs -> IEC61850_7_2::MetaModel +2024-09-08 15:11:37,967 [main] TRACE UmlDependency - created (3061) WG10 IEC61850 interPackage dependency= IEC61850_7_3::ConstructedDAs -> IEC61850_7_2::MetaModel +2024-09-08 15:11:37,967 [main] TRACE UmlDependency - created (3105) WG10 IEC61850 interPackage dependency= IEC61850_7_2::CDCServiceTracking -> IEC61850_7_3::CommonDataClasses +2024-09-08 15:11:37,967 [main] TRACE UmlDependency - created (2897) WG10 IEC61850 interPackage dependency= WG10::IEC61850_7_4 -> WG10::IEC61850_7_3 +2024-09-08 15:11:37,967 [main] TRACE UmlDependency - created (3445) WG10 IEC61850 interPackage dependency= WG10::IEC61850_7_3 -> WG10::IEC61850_7_4 +2024-09-08 15:11:37,967 [main] TRACE UmlDependency - created (2558) WG10 IEC61850 interPackage dependency= IEC61850_7_4::DerivedCDCs -> IEC61850_7_3::DAEnums +2024-09-08 15:11:37,967 [main] TRACE UmlDependency - created (3082) WG10 IEC61850 interPackage dependency= IEC61850_7_3::ImplicitDAs -> IEC61850_7_3::DAEnums +2024-09-08 15:11:37,967 [main] TRACE UmlDependency - created (2945) WG10 IEC61850 interPackage dependency= IEC61850_7_3::FCDAs -> IEC61850_7_3::ImplicitDAs +2024-09-08 15:11:37,967 [main] TRACE UmlDependency - created (3062) WG10 IEC61850 interPackage dependency= IEC61850_7_3::ConstructedDAs -> IEC61850_7_3::ImplicitDAs +2024-09-08 15:11:37,967 [main] TRACE UmlDependency - created (2946) WG10 IEC61850 interPackage dependency= IEC61850_7_3::FCDAs -> IEC61850_7_3::ConstructedDAs +2024-09-08 15:11:37,967 [main] TRACE UmlDependency - created (2941) WG10 IEC61850 interPackage dependency= IEC61850_7_3::CommonDataClasses -> IEC61850_7_3::FCDAs +2024-09-08 15:11:37,967 [main] TRACE UmlDependency - created (2550) WG10 IEC61850 interPackage dependency= IEC61850_7_4::LogicalNodes -> IEC61850_7_3::CommonDataClasses +2024-09-08 15:11:37,967 [main] TRACE UmlDependency - created (2557) WG10 IEC61850 interPackage dependency= IEC61850_7_4::DerivedCDCs -> IEC61850_7_3::CommonDataClasses +2024-09-08 15:11:37,967 [main] TRACE UmlDependency - created (3452) WG10 IEC61850 interClass dependency= CDCControl::SPC -> CDCControl::ControllableCDC +2024-09-08 15:11:37,967 [main] TRACE UmlDependency - created (3439) WG17 IEC61850 interPackage dependency= IEC61850Domain::WG17 -> WG10::IEC61850_7_4 +2024-09-08 15:11:37,967 [main] TRACE UmlDependency - created (3451) WG10 IEC61850 interPackage dependency= WG10::IEC61850_7_4 -> WG17::IEC51850_7_420 +2024-09-08 15:11:37,968 [main] TRACE UmlDependency - created (2796) WG10 IEC61850 interPackage dependency= Functions::ProtectionEq -> LogicalNodes::LNGroupP +2024-09-08 15:11:37,968 [main] TRACE UmlDependency - created (2797) WG10 IEC61850 interPackage dependency= Functions::ProtectionEq -> LogicalNodes::LNGroupR +2024-09-08 15:11:37,968 [main] TRACE UmlDependency - created (2888) WG10 IEC61850 interClass dependency= ProtectionEq::BusbarProt -> LNGroupP::PDIF +2024-09-08 15:11:37,968 [main] TRACE UmlDependency - created (2876) WG10 IEC61850 interClass dependency= ProtectionEq::DirectionalProt -> LNGroupR::RDIR +2024-09-08 15:11:37,968 [main] TRACE UmlDependency - created (3401) WG10 IEC61850 interClass dependency= ProtectionEq::DirectionalProt -> LNGroupP::PDIS +2024-09-08 15:11:37,968 [main] TRACE UmlDependency - created (2872) WG10 IEC61850 interClass dependency= ProtectionEq::DirectionalPowerProt -> LNGroupR::RDIR +2024-09-08 15:11:37,968 [main] TRACE UmlDependency - created (2849) WG10 IEC61850 interClass dependency= ProtectionEq::LineDifferentialProt -> LNGroupP::PDIF +2024-09-08 15:11:37,968 [main] TRACE UmlDependency - created (2780) WG10 IEC61850 interPackage dependency= Functions::ControlEq -> LogicalNodes::LNGroupG +2024-09-08 15:11:37,968 [main] TRACE UmlDependency - created (2781) WG10 IEC61850 interPackage dependency= Functions::ControlEq -> LogicalNodes::LNGroupP +2024-09-08 15:11:37,968 [main] TRACE UmlDependency - created (2782) WG10 IEC61850 interPackage dependency= Functions::ControlEq -> LogicalNodes::LNGroupC +2024-09-08 15:11:37,969 [main] TRACE UmlDependency - created (2795) WG10 IEC61850 interClass dependency= ControlEq::AlarmHandler -> LNGroupC::CALH +2024-09-08 15:11:37,969 [main] TRACE UmlDependency - created (2742) WG10 IEC61850 interPackage dependency= Functions::MeasurementsAndMetering -> LogicalNodes::LNGroupM +2024-09-08 15:11:37,969 [main] TRACE UmlDependency - created (2748) WG10 IEC61850 interClass dependency= MeasurementsAndMetering::ThreePhaseMeasurement -> LNGroupM::MMXU +2024-09-08 15:11:37,969 [main] TRACE UmlDependency - created (2730) WG10 IEC61850 interPackage dependency= Functions::SystemWide -> LogicalNodes::LNGroupL +2024-09-08 15:11:37,969 [main] TRACE UmlDependency - created (2731) WG10 IEC61850 interPackage dependency= Functions::SystemWide -> LogicalNodes::LNGroupG +2024-09-08 15:11:37,969 [main] TRACE UmlDependency - created (2738) WG10 IEC61850 interClass dependency= SystemWide::LogicalDeviceData -> LNGroupL::LLN0 +2024-09-08 15:11:37,969 [main] TRACE UmlDependency - created (2735) WG10 IEC61850 interClass dependency= SystemWide::PhysicalDeviceData -> LNGroupL::LPHD +2024-09-08 15:11:37,969 [main] TRACE UmlDependency - created (2665) WG10 IEC61850 interPackage dependency= Functions::PrimaryEq -> LogicalNodes::LNGroupG +2024-09-08 15:11:37,969 [main] TRACE UmlDependency - created (2670) WG10 IEC61850 interPackage dependency= Functions::PrimaryEq -> LogicalNodes::LNGroupZ +2024-09-08 15:11:37,969 [main] TRACE UmlDependency - created (2727) WG10 IEC61850 interClass dependency= PrimaryEq::AuxiliaryNetwork -> LNGroupZ::ZAXN +2024-09-08 15:11:37,969 [main] TRACE UmlDependency - created (2713) WG10 IEC61850 interClass dependency= PrimaryEq::GenericIO -> LNGroupG::GGIO +2024-09-08 15:11:37,969 [main] TRACE UmlDependency - created (2611) WG10 IEC61850 interPackage dependency= IEC61850_7_4::DerivedDAs -> IEC61850_7_4::DOEnums +2024-09-08 15:11:37,969 [main] TRACE UmlDependency - created (2559) WG10 IEC61850 interPackage dependency= IEC61850_7_4::DerivedCDCs -> IEC61850_7_4::DerivedDAs +2024-09-08 15:11:37,969 [main] TRACE UmlDependency - created (2548) WG10 IEC61850 interPackage dependency= IEC61850_7_4::LogicalNodes -> IEC61850_7_4::DerivedCDCs +2024-09-08 15:11:37,969 [main] TRACE UmlDependency - created (2447) WG10 IEC61850 interClass dependency= LNGroupP::PDIS -> LNGroupR::RDIR +2024-09-08 15:11:37,969 [main] INFO Util - time=[0:00:01.701] created in-memory model and exported normative diagrams +2024-09-08 15:11:37,969 [main] INFO Util - +2024-09-08 15:11:37,969 [main] INFO Util - +2024-09-08 15:11:37,969 [main] INFO Util - ------------------------------------------------ +2024-09-08 15:11:37,969 [main] INFO Util - closing EA file 'C:\Users\gigi\git\jCleanCim\input\base-small.eap'... +2024-09-08 15:11:37,970 [main] INFO Util - time=[0:00:00.000] closed EA file. +2024-09-08 15:11:37,970 [main] INFO Util - +2024-09-08 15:11:37,970 [main] INFO Util - time=[0:00:03.315] built model from 'TC57CIMProfiles (CIM), TC57CIM (CIM), IEC61850Domain (IEC61850), MyCimExtensions (CIM), My61850Extensions (IEC61850), NewNature (CIM)' +2024-09-08 15:11:37,971 [main] INFO Util - +2024-09-08 15:11:37,971 [main] INFO Util - +2024-09-08 15:11:37,971 [main] INFO Util - ================================================ +2024-09-08 15:11:37,971 [main] INFO Util - validating packages [WG13, WG14, WG16, OTHER_CIM, WG10, WG17, WG18, JWG25, WG19, OTHER_IEC61850]... +2024-09-08 15:11:37,971 [main] INFO Util - ================================================ +2024-09-08 15:11:38,484 [main] INFO Util - Creating backup of existing file: C:\Users\gigi\git\jCleanCim\output\problemsReport-base-small.csv.100174157521400 +2024-09-08 15:11:38,486 [main] INFO ModelValidator - Model validation - below are all available rules: +2024-09-08 15:11:38,486 [main] INFO ModelValidator - Available rules in PackageValidator = [PackageUnexpectedElements, PackageUnexpectedConnectors, PackagesWithSelfDependency, PackagesWithUnallowedStereotype, PackagesTopLevelWithoutVersionClass, Iec61850PackagesThatShouldHaveAliasAsTitle, PackagesWithUnallowedTagNames, PackagesMissingDoc, PackagesWithBadDocStart, PackagesWithBadDocEnd, PackagesWithBadCharacterInName, PackagesWithSameName] +2024-09-08 15:11:38,486 [main] INFO ModelValidator - Available rules in ClassValidator = [CimClassesWithUnexpectedElements, ClassesWithUnexpectedConnectors, EnumClassesWithNoLiterals, CimCompoundClassesWithNoAttributes, EnumClassesWithSingleLiteral, EnumClassesWithTwoLiterals, EnumClassesWithBadName, CimPrimitiveClassesWithAttributes, CimPrimitiveClassesWithIllegalOwner, ClassesWithDuplicateInheritedAttributeNames, ClassesWithDuplicateOwnOrInheritedAssociationEndNames, ClassesWithSelfInheritance, ClassesWithSelfDependency, ClassesWithLeafPropSet, ClassesWithRootPropSet, ClassesWithPersistentPropSet, ClassesWithMultipleSuperclasses, ClassesWithSuperclassesFromUnallowedOwner, ClassesThatShouldNotBeAssociationClass, ClassesWithUnallowedStereotype, CimClassesWithOldDatatypeStereotype, CimClassesUsedForAttributesButHaveAssociations, CimClassesUsedForAttributesButHaveSubclasses, CimClassesUsedForAttributesButHaveSuperclasses, CimClassesThatShouldNotBeAbstract, CimClassesThatShouldNotHaveOperations, CimClassesThatShouldNotHaveExplicitDependencies, ClassesThatShouldNotHaveNestingThroughAttribute, Iec61850ClassesThatShouldHaveAliasAsTitle, Iec61850ClassesThatShouldHaveTaggedValuesForDocgen, CimClassesNeverUsedInRelationships, ClassesWithUnallowedTagNames, Iec61850ClassesWithInvalidConstraints, Iec61850LNClassesWithSuperfluousConstraints, Iec61850ClassesWithMissingCondIDTextInConstraints, CimDatatypeClassesWithInvalidAttributes, ClassesMissingDoc, ClassesWithBadDocStart, ClassesWithBadDocEnd, ClassesWithBadCharacterInName, CimClassesNameStartingWithLowerCase, CimClassesNameShouldBeSingular, Iec61850LNClassesInWrongGroup, Iec61850LNClassesMalformedName, EnumClassesWithSomeCodesMissing, EnumClassesWithDuplicateCodes, ClassesWithSameName, CimClassesNeverUsedAsTypeForAttribute] +2024-09-08 15:11:38,487 [main] INFO ModelValidator - Available rules in AttributeValidator = [EnumLiteralsWithSuperfluousType, EnumLiteralsWithoutEnumStereotype, AttributesWithInvalidMultiplicity, CimAttributesThatShouldBeOptional, AttributesWithInvalidTypeNull, AttributesWithInvalidTypeString, AttributesWithTypeIdMismatch, CimAttributesThatShouldBePublic, AttributesThatAreStaticButNotConst, CimAttributesThatAreNotStaticNonConstWithInitVal, AttributesThatAreConstNonStatic, AttributesWithUnallowedStereotype, AttributesThatAreEnumsInNonEnumeratedClass, CimAttributesThatShouldBeReplacedWithAssociation, AttributesWhoseTypeIsInformative, AttributesWithUnallowedTagNames, Iec61850AttributesWithInexistingSibling, CimAttributesWithFlagInName, AttributesMissingDoc, AttributesWithBadDocStart, AttributesWithBadDocEnd, CimAttributesWithBadCharacterInName, Iec61850AttributesWithBadCharacterInName, Iec61850DOAttributesWithTooLongName, Iec61850FCDAAttributesWithMissingConstraint, AttributesWithInexistingEnumLiteralAsInitValue, Iec61850DOAttributesWithNameMissingAbbreviation, CimAttributesNameStartingWithUpperCase, CimAttributesNameShouldBeSingular, CimAttributesNameShouldNotStartWithClassName, Iec61850AbbreviationLiteralsNameStartingWithLowerCase, Iec61850DOAttributesNameStartingWithLowerCase, AttributesWithTypeFromUnallowedOwner, Iec61850DOAbbreviationLiteralsDuplicateName, Iec61850DOAbbreviationLiteralsDuplicateDescription, Iec61850DOAbbreviationLiteralsNeverUsedInDOName, Iec61850DOAttributesWithSameNameDifferentType, Iec61850ConditionLiteralsNeverUsedAsConstraints] +2024-09-08 15:11:38,487 [main] INFO ModelValidator - Available rules in OperationValidator = [OperationsWithUpperCaseName, OperationsWithUnallowedStereotype, OperationParametersWithUnallowedStereotype, OperationsWithInvalidReturnTypeNull, OperationsWithInvalidArgTypeNull, OperationsWithInvalidExcTypeNull, OperationsWithUnallowedTagNames, OperationParametersWithUnallowedTagNames, OperationsMissingDoc, OperationParametersMissingDoc, OperationsWithBadDocStart, OperationParametersWithBadDocStart, OperationsWithBadDocEnd, OperationParametersWithBadDocEnd, OperationsWithBadCharacterInName, OperationParametersWithBadCharacterInName] +2024-09-08 15:11:38,487 [main] INFO ModelValidator - Available rules in AssociationValidator = [AssociationsWithExplicitDirection, AssociationsWithRoleBadDirection, AssociationsWithDoc, AssociationsWithSameDocOnBothEnds, AssociationsWithName, AssociationsWithUnallowedStereotype, AssociationEndsWithUnallowedStereotype, AssociationsMissingInformativeStereotype, AssociationsWithUnallowedTagNames, AssociationEndsWithUnallowedTagNames, AssociationsWithNoMultiplicity, AssociationsWithWrongSource, Iec61850AssociationsThatShouldBePrivate, Iec61850AssociationsWithDifferentEndVisibility, AssociationEndsMissingDoc, AssociationEndsWithBadDocStart, AssociationEndsWithBadDocEnd, AssociationEndsWithBadCharacterInName, CimAssociationEndsNameStartingWithLowerCase, CimAssociationEndsNameShouldBePlural, CimAssociationEndsNameShouldBeSingular] +2024-09-08 15:11:38,487 [main] INFO ModelValidator - Available rules in DependencyValidator = [DependenciesWithUnallowedStereotype, DependenciesWithUnallowedDirection, DependenciesWithUnallowedTagNames] +2024-09-08 15:11:38,487 [main] INFO ModelValidator - Available rules in DiagramValidator = [DiagramsWithBadOrientation, DiagramsWithUnallowedStereotype, DiagramsMissingDoc, DiagramsWithBadDocStart, DiagramsWithBadDocEnd, DiagramsWithBadCharacterInName] +2024-09-08 15:11:38,487 [main] INFO ModelValidator - +2024-09-08 15:11:38,491 [main] DEBUG ModelValidator - Available rules per nature: + for CIM: + Available rules for CIM in PackageValidator (category, severity): + PackageUnexpectedElements (modellingRule, medium) + PackageUnexpectedConnectors (modellingRule, medium) + PackagesWithSelfDependency (permissiveTool, high) + PackagesWithUnallowedStereotype (modellingRule, high) + PackagesTopLevelWithoutVersionClass (modellingRule, high) + PackagesWithUnallowedTagNames (modellingRule, high) + PackagesMissingDoc (documentationRule, medium) + PackagesWithBadDocStart (documentationRule, low) + PackagesWithBadDocEnd (documentationRule, low) + PackagesWithBadCharacterInName (namingRule, high) + PackagesWithSameName (modellingRule, high) + Available rules for CIM in ClassValidator (category, severity): + CimClassesWithUnexpectedElements (permissiveTool, high) + ClassesWithUnexpectedConnectors (permissiveTool, high) + EnumClassesWithNoLiterals (modellingRule, high) + CimCompoundClassesWithNoAttributes (modellingRule, high) + EnumClassesWithSingleLiteral (modellingRule, medium) + EnumClassesWithTwoLiterals (modellingRule, low) + EnumClassesWithBadName (modellingRule, high) + CimPrimitiveClassesWithAttributes (modellingRule, high) + CimPrimitiveClassesWithIllegalOwner (modellingRule, high) + ClassesWithDuplicateInheritedAttributeNames (modellingRule, high) + ClassesWithDuplicateOwnOrInheritedAssociationEndNames (modellingRule, high) + ClassesWithSelfInheritance (permissiveTool, high) + ClassesWithSelfDependency (permissiveTool, high) + ClassesWithLeafPropSet (modellingRule, high) + ClassesWithRootPropSet (modellingRule, high) + ClassesWithPersistentPropSet (modellingRule, high) + ClassesWithMultipleSuperclasses (modellingRule, high) + ClassesWithSuperclassesFromUnallowedOwner (modellingRule, high) + ClassesThatShouldNotBeAssociationClass (modellingRule, high) + ClassesWithUnallowedStereotype (modellingRule, high) + CimClassesWithOldDatatypeStereotype (modellingRule, medium) + CimClassesUsedForAttributesButHaveAssociations (modellingRule, high) + CimClassesUsedForAttributesButHaveSubclasses (modellingRule, high) + CimClassesUsedForAttributesButHaveSuperclasses (modellingRule, high) + CimClassesThatShouldNotBeAbstract (modellingRule, high) + CimClassesThatShouldNotHaveOperations (modellingRule, high) + CimClassesThatShouldNotHaveExplicitDependencies (modellingRule, high) + ClassesThatShouldNotHaveNestingThroughAttribute (modellingRule, high) + CimClassesNeverUsedInRelationships (modellingRule, high) + ClassesWithUnallowedTagNames (modellingRule, high) + CimDatatypeClassesWithInvalidAttributes (modellingRule, high) + ClassesMissingDoc (documentationRule, medium) + ClassesWithBadDocStart (documentationRule, low) + ClassesWithBadDocEnd (documentationRule, low) + ClassesWithBadCharacterInName (namingRule, high) + CimClassesNameStartingWithLowerCase (namingRule, high) + CimClassesNameShouldBeSingular (namingRule, high) + EnumClassesWithSomeCodesMissing (modellingRule, high) + EnumClassesWithDuplicateCodes (modellingRule, high) + ClassesWithSameName (modellingRule, high) + CimClassesNeverUsedAsTypeForAttribute (modellingRule, high) + Available rules for CIM in AttributeValidator (category, severity): + EnumLiteralsWithSuperfluousType (modellingRule, high) + EnumLiteralsWithoutEnumStereotype (modellingRule, high) + AttributesWithInvalidMultiplicity (modellingRule, high) + CimAttributesThatShouldBeOptional (modellingRule, high) + AttributesWithInvalidTypeNull (modellingRule, high) + AttributesWithInvalidTypeString (modellingRule, high) + AttributesWithTypeIdMismatch (modellingRule, high) + CimAttributesThatShouldBePublic (modellingRule, high) + AttributesThatAreStaticButNotConst (modellingRule, high) + CimAttributesThatAreNotStaticNonConstWithInitVal (modellingRule, high) + AttributesThatAreConstNonStatic (modellingRule, high) + AttributesWithUnallowedStereotype (modellingRule, high) + AttributesThatAreEnumsInNonEnumeratedClass (modellingRule, high) + CimAttributesThatShouldBeReplacedWithAssociation (modellingRule, high) + AttributesWhoseTypeIsInformative (modellingRule, high) + AttributesWithUnallowedTagNames (modellingRule, high) + CimAttributesWithFlagInName (namingRule, medium) + AttributesMissingDoc (documentationRule, medium) + AttributesWithBadDocStart (documentationRule, low) + AttributesWithBadDocEnd (documentationRule, low) + CimAttributesWithBadCharacterInName (namingRule, high) + AttributesWithInexistingEnumLiteralAsInitValue (permissiveTool, high) + CimAttributesNameStartingWithUpperCase (namingRule, high) + CimAttributesNameShouldBeSingular (namingRule, high) + CimAttributesNameShouldNotStartWithClassName (namingRule, medium) + AttributesWithTypeFromUnallowedOwner (modellingRule, high) + Available rules for CIM in OperationValidator (category, severity): + OperationsWithUpperCaseName (namingRule, medium) + OperationsWithUnallowedStereotype (modellingRule, high) + OperationParametersWithUnallowedStereotype (modellingRule, high) + OperationsWithInvalidReturnTypeNull (modellingRule, high) + OperationsWithInvalidArgTypeNull (modellingRule, high) + OperationsWithInvalidExcTypeNull (modellingRule, high) + OperationsWithUnallowedTagNames (modellingRule, high) + OperationParametersWithUnallowedTagNames (modellingRule, high) + OperationsMissingDoc (documentationRule, medium) + OperationParametersMissingDoc (documentationRule, medium) + OperationsWithBadDocStart (documentationRule, low) + OperationParametersWithBadDocStart (documentationRule, low) + OperationsWithBadDocEnd (documentationRule, low) + OperationParametersWithBadDocEnd (documentationRule, low) + OperationsWithBadCharacterInName (namingRule, high) + OperationParametersWithBadCharacterInName (namingRule, high) + Available rules for CIM in AssociationValidator (category, severity): + AssociationsWithExplicitDirection (modellingRule, high) + AssociationsWithRoleBadDirection (modellingRule, high) + AssociationsWithDoc (documentationRule, low) + AssociationsWithSameDocOnBothEnds (documentationRule, medium) + AssociationsWithName (namingRule, medium) + AssociationsWithUnallowedStereotype (modellingRule, high) + AssociationEndsWithUnallowedStereotype (modellingRule, high) + AssociationsMissingInformativeStereotype (modellingRule, high) + AssociationsWithUnallowedTagNames (modellingRule, high) + AssociationEndsWithUnallowedTagNames (modellingRule, high) + AssociationsWithNoMultiplicity (modellingRule, high) + AssociationsWithWrongSource (modellingRule, high) + AssociationEndsMissingDoc (documentationRule, medium) + AssociationEndsWithBadDocStart (documentationRule, low) + AssociationEndsWithBadDocEnd (documentationRule, low) + AssociationEndsWithBadCharacterInName (namingRule, high) + CimAssociationEndsNameStartingWithLowerCase (namingRule, high) + CimAssociationEndsNameShouldBePlural (namingRule, high) + CimAssociationEndsNameShouldBeSingular (namingRule, high) + Available rules for CIM in DependencyValidator (category, severity): + DependenciesWithUnallowedStereotype (modellingRule, high) + DependenciesWithUnallowedDirection (modellingRule, high) + DependenciesWithUnallowedTagNames (modellingRule, high) + Available rules for CIM in DiagramValidator (category, severity): + DiagramsWithBadOrientation (formatting, low) + DiagramsWithUnallowedStereotype (modellingRule, high) + DiagramsMissingDoc (documentationRule, medium) + DiagramsWithBadDocStart (documentationRule, low) + DiagramsWithBadDocEnd (documentationRule, low) + DiagramsWithBadCharacterInName (namingRule, high) + for IEC61850: + Available rules for IEC61850 in PackageValidator (category, severity): + PackageUnexpectedElements (modellingRule, medium) + PackageUnexpectedConnectors (modellingRule, medium) + PackagesWithSelfDependency (permissiveTool, high) + PackagesWithUnallowedStereotype (modellingRule, high) + PackagesTopLevelWithoutVersionClass (modellingRule, high) + Iec61850PackagesThatShouldHaveAliasAsTitle (modellingRule, high) + PackagesWithUnallowedTagNames (modellingRule, high) + PackagesMissingDoc (documentationRule, medium) + PackagesWithBadDocStart (documentationRule, low) + PackagesWithBadDocEnd (documentationRule, low) + PackagesWithBadCharacterInName (namingRule, high) + PackagesWithSameName (modellingRule, high) + Available rules for IEC61850 in ClassValidator (category, severity): + ClassesWithUnexpectedConnectors (permissiveTool, high) + EnumClassesWithNoLiterals (modellingRule, high) + EnumClassesWithSingleLiteral (modellingRule, medium) + EnumClassesWithTwoLiterals (modellingRule, low) + EnumClassesWithBadName (modellingRule, high) + ClassesWithDuplicateInheritedAttributeNames (modellingRule, high) + ClassesWithDuplicateOwnOrInheritedAssociationEndNames (modellingRule, high) + ClassesWithSelfInheritance (permissiveTool, high) + ClassesWithSelfDependency (permissiveTool, high) + ClassesWithLeafPropSet (modellingRule, high) + ClassesWithRootPropSet (modellingRule, high) + ClassesWithPersistentPropSet (modellingRule, high) + ClassesWithMultipleSuperclasses (modellingRule, high) + ClassesWithSuperclassesFromUnallowedOwner (modellingRule, high) + ClassesThatShouldNotBeAssociationClass (modellingRule, high) + ClassesWithUnallowedStereotype (modellingRule, high) + ClassesThatShouldNotHaveNestingThroughAttribute (modellingRule, high) + Iec61850ClassesThatShouldHaveAliasAsTitle (modellingRule, high) + Iec61850ClassesThatShouldHaveTaggedValuesForDocgen (modellingRule, high) + ClassesWithUnallowedTagNames (modellingRule, high) + Iec61850ClassesWithInvalidConstraints (modellingRule, high) + Iec61850LNClassesWithSuperfluousConstraints (modellingRule, high) + Iec61850ClassesWithMissingCondIDTextInConstraints (modellingRule, high) + ClassesMissingDoc (documentationRule, medium) + ClassesWithBadDocStart (documentationRule, low) + ClassesWithBadDocEnd (documentationRule, low) + ClassesWithBadCharacterInName (namingRule, high) + Iec61850LNClassesInWrongGroup (namingRule, medium) + Iec61850LNClassesMalformedName (namingRule, high) + EnumClassesWithSomeCodesMissing (modellingRule, high) + EnumClassesWithDuplicateCodes (modellingRule, high) + ClassesWithSameName (modellingRule, high) + Available rules for IEC61850 in AttributeValidator (category, severity): + EnumLiteralsWithSuperfluousType (modellingRule, high) + EnumLiteralsWithoutEnumStereotype (modellingRule, high) + AttributesWithInvalidMultiplicity (modellingRule, high) + AttributesWithInvalidTypeNull (modellingRule, high) + AttributesWithInvalidTypeString (modellingRule, high) + AttributesWithTypeIdMismatch (modellingRule, high) + AttributesThatAreStaticButNotConst (modellingRule, high) + AttributesThatAreConstNonStatic (modellingRule, high) + AttributesWithUnallowedStereotype (modellingRule, high) + AttributesThatAreEnumsInNonEnumeratedClass (modellingRule, high) + AttributesWhoseTypeIsInformative (modellingRule, high) + AttributesWithUnallowedTagNames (modellingRule, high) + Iec61850AttributesWithInexistingSibling (modellingRule, high) + AttributesMissingDoc (documentationRule, medium) + AttributesWithBadDocStart (documentationRule, low) + AttributesWithBadDocEnd (documentationRule, low) + Iec61850AttributesWithBadCharacterInName (namingRule, high) + Iec61850DOAttributesWithTooLongName (namingRule, high) + Iec61850FCDAAttributesWithMissingConstraint (modellingRule, high) + AttributesWithInexistingEnumLiteralAsInitValue (permissiveTool, high) + Iec61850DOAttributesWithNameMissingAbbreviation (modellingRule, high) + Iec61850AbbreviationLiteralsNameStartingWithLowerCase (namingRule, high) + Iec61850DOAttributesNameStartingWithLowerCase (namingRule, high) + AttributesWithTypeFromUnallowedOwner (modellingRule, high) + Iec61850DOAbbreviationLiteralsDuplicateName (modellingRule, high) + Iec61850DOAbbreviationLiteralsDuplicateDescription (modellingRule, high) + Iec61850DOAbbreviationLiteralsNeverUsedInDOName (modellingRule, high) + Iec61850DOAttributesWithSameNameDifferentType (modellingRule, high) + Iec61850ConditionLiteralsNeverUsedAsConstraints (modellingRule, high) + Available rules for IEC61850 in OperationValidator (category, severity): + OperationsWithUpperCaseName (namingRule, medium) + OperationsWithUnallowedStereotype (modellingRule, high) + OperationParametersWithUnallowedStereotype (modellingRule, high) + OperationsWithInvalidReturnTypeNull (modellingRule, high) + OperationsWithInvalidArgTypeNull (modellingRule, high) + OperationsWithInvalidExcTypeNull (modellingRule, high) + OperationsWithUnallowedTagNames (modellingRule, high) + OperationParametersWithUnallowedTagNames (modellingRule, high) + OperationsMissingDoc (documentationRule, medium) + OperationParametersMissingDoc (documentationRule, medium) + OperationsWithBadDocStart (documentationRule, low) + OperationParametersWithBadDocStart (documentationRule, low) + OperationsWithBadDocEnd (documentationRule, low) + OperationParametersWithBadDocEnd (documentationRule, low) + OperationsWithBadCharacterInName (namingRule, high) + OperationParametersWithBadCharacterInName (namingRule, high) + Available rules for IEC61850 in AssociationValidator (category, severity): + AssociationsWithExplicitDirection (modellingRule, high) + AssociationsWithRoleBadDirection (modellingRule, high) + AssociationsWithDoc (documentationRule, low) + AssociationsWithSameDocOnBothEnds (documentationRule, medium) + AssociationsWithName (namingRule, medium) + AssociationsWithUnallowedStereotype (modellingRule, high) + AssociationEndsWithUnallowedStereotype (modellingRule, high) + AssociationsMissingInformativeStereotype (modellingRule, high) + AssociationsWithUnallowedTagNames (modellingRule, high) + AssociationEndsWithUnallowedTagNames (modellingRule, high) + AssociationsWithNoMultiplicity (modellingRule, high) + AssociationsWithWrongSource (modellingRule, high) + Iec61850AssociationsThatShouldBePrivate (modellingRule, high) + Iec61850AssociationsWithDifferentEndVisibility (modellingRule, high) + AssociationEndsMissingDoc (documentationRule, medium) + AssociationEndsWithBadDocStart (documentationRule, low) + AssociationEndsWithBadDocEnd (documentationRule, low) + AssociationEndsWithBadCharacterInName (namingRule, high) + Available rules for IEC61850 in DependencyValidator (category, severity): + DependenciesWithUnallowedStereotype (modellingRule, high) + DependenciesWithUnallowedDirection (modellingRule, high) + DependenciesWithUnallowedTagNames (modellingRule, high) + Available rules for IEC61850 in DiagramValidator (category, severity): + DiagramsWithBadOrientation (formatting, low) + DiagramsWithUnallowedStereotype (modellingRule, high) + DiagramsMissingDoc (documentationRule, medium) + DiagramsWithBadDocStart (documentationRule, low) + DiagramsWithBadDocEnd (documentationRule, low) + DiagramsWithBadCharacterInName (namingRule, high) + +Available rules - all: + Available rules in PackageValidator (category, severity): + PackageUnexpectedElements (modellingRule, medium) + PackageUnexpectedConnectors (modellingRule, medium) + PackagesWithSelfDependency (permissiveTool, high) + PackagesWithUnallowedStereotype (modellingRule, high) + PackagesTopLevelWithoutVersionClass (modellingRule, high) + Iec61850PackagesThatShouldHaveAliasAsTitle (modellingRule, high) + PackagesWithUnallowedTagNames (modellingRule, high) + PackagesMissingDoc (documentationRule, medium) + PackagesWithBadDocStart (documentationRule, low) + PackagesWithBadDocEnd (documentationRule, low) + PackagesWithBadCharacterInName (namingRule, high) + PackagesWithSameName (modellingRule, high) + Available rules in ClassValidator (category, severity): + CimClassesWithUnexpectedElements (permissiveTool, high) + ClassesWithUnexpectedConnectors (permissiveTool, high) + EnumClassesWithNoLiterals (modellingRule, high) + CimCompoundClassesWithNoAttributes (modellingRule, high) + EnumClassesWithSingleLiteral (modellingRule, medium) + EnumClassesWithTwoLiterals (modellingRule, low) + EnumClassesWithBadName (modellingRule, high) + CimPrimitiveClassesWithAttributes (modellingRule, high) + CimPrimitiveClassesWithIllegalOwner (modellingRule, high) + ClassesWithDuplicateInheritedAttributeNames (modellingRule, high) + ClassesWithDuplicateOwnOrInheritedAssociationEndNames (modellingRule, high) + ClassesWithSelfInheritance (permissiveTool, high) + ClassesWithSelfDependency (permissiveTool, high) + ClassesWithLeafPropSet (modellingRule, high) + ClassesWithRootPropSet (modellingRule, high) + ClassesWithPersistentPropSet (modellingRule, high) + ClassesWithMultipleSuperclasses (modellingRule, high) + ClassesWithSuperclassesFromUnallowedOwner (modellingRule, high) + ClassesThatShouldNotBeAssociationClass (modellingRule, high) + ClassesWithUnallowedStereotype (modellingRule, high) + CimClassesWithOldDatatypeStereotype (modellingRule, medium) + CimClassesUsedForAttributesButHaveAssociations (modellingRule, high) + CimClassesUsedForAttributesButHaveSubclasses (modellingRule, high) + CimClassesUsedForAttributesButHaveSuperclasses (modellingRule, high) + CimClassesThatShouldNotBeAbstract (modellingRule, high) + CimClassesThatShouldNotHaveOperations (modellingRule, high) + CimClassesThatShouldNotHaveExplicitDependencies (modellingRule, high) + ClassesThatShouldNotHaveNestingThroughAttribute (modellingRule, high) + Iec61850ClassesThatShouldHaveAliasAsTitle (modellingRule, high) + Iec61850ClassesThatShouldHaveTaggedValuesForDocgen (modellingRule, high) + CimClassesNeverUsedInRelationships (modellingRule, high) + ClassesWithUnallowedTagNames (modellingRule, high) + Iec61850ClassesWithInvalidConstraints (modellingRule, high) + Iec61850LNClassesWithSuperfluousConstraints (modellingRule, high) + Iec61850ClassesWithMissingCondIDTextInConstraints (modellingRule, high) + CimDatatypeClassesWithInvalidAttributes (modellingRule, high) + ClassesMissingDoc (documentationRule, medium) + ClassesWithBadDocStart (documentationRule, low) + ClassesWithBadDocEnd (documentationRule, low) + ClassesWithBadCharacterInName (namingRule, high) + CimClassesNameStartingWithLowerCase (namingRule, high) + CimClassesNameShouldBeSingular (namingRule, high) + Iec61850LNClassesInWrongGroup (namingRule, medium) + Iec61850LNClassesMalformedName (namingRule, high) + EnumClassesWithSomeCodesMissing (modellingRule, high) + EnumClassesWithDuplicateCodes (modellingRule, high) + ClassesWithSameName (modellingRule, high) + CimClassesNeverUsedAsTypeForAttribute (modellingRule, high) + Available rules in AttributeValidator (category, severity): + EnumLiteralsWithSuperfluousType (modellingRule, high) + EnumLiteralsWithoutEnumStereotype (modellingRule, high) + AttributesWithInvalidMultiplicity (modellingRule, high) + CimAttributesThatShouldBeOptional (modellingRule, high) + AttributesWithInvalidTypeNull (modellingRule, high) + AttributesWithInvalidTypeString (modellingRule, high) + AttributesWithTypeIdMismatch (modellingRule, high) + CimAttributesThatShouldBePublic (modellingRule, high) + AttributesThatAreStaticButNotConst (modellingRule, high) + CimAttributesThatAreNotStaticNonConstWithInitVal (modellingRule, high) + AttributesThatAreConstNonStatic (modellingRule, high) + AttributesWithUnallowedStereotype (modellingRule, high) + AttributesThatAreEnumsInNonEnumeratedClass (modellingRule, high) + CimAttributesThatShouldBeReplacedWithAssociation (modellingRule, high) + AttributesWhoseTypeIsInformative (modellingRule, high) + AttributesWithUnallowedTagNames (modellingRule, high) + Iec61850AttributesWithInexistingSibling (modellingRule, high) + CimAttributesWithFlagInName (namingRule, medium) + AttributesMissingDoc (documentationRule, medium) + AttributesWithBadDocStart (documentationRule, low) + AttributesWithBadDocEnd (documentationRule, low) + CimAttributesWithBadCharacterInName (namingRule, high) + Iec61850AttributesWithBadCharacterInName (namingRule, high) + Iec61850DOAttributesWithTooLongName (namingRule, high) + Iec61850FCDAAttributesWithMissingConstraint (modellingRule, high) + AttributesWithInexistingEnumLiteralAsInitValue (permissiveTool, high) + Iec61850DOAttributesWithNameMissingAbbreviation (modellingRule, high) + CimAttributesNameStartingWithUpperCase (namingRule, high) + CimAttributesNameShouldBeSingular (namingRule, high) + CimAttributesNameShouldNotStartWithClassName (namingRule, medium) + Iec61850AbbreviationLiteralsNameStartingWithLowerCase (namingRule, high) + Iec61850DOAttributesNameStartingWithLowerCase (namingRule, high) + AttributesWithTypeFromUnallowedOwner (modellingRule, high) + Iec61850DOAbbreviationLiteralsDuplicateName (modellingRule, high) + Iec61850DOAbbreviationLiteralsDuplicateDescription (modellingRule, high) + Iec61850DOAbbreviationLiteralsNeverUsedInDOName (modellingRule, high) + Iec61850DOAttributesWithSameNameDifferentType (modellingRule, high) + Iec61850ConditionLiteralsNeverUsedAsConstraints (modellingRule, high) + Available rules in OperationValidator (category, severity): + OperationsWithUpperCaseName (namingRule, medium) + OperationsWithUnallowedStereotype (modellingRule, high) + OperationParametersWithUnallowedStereotype (modellingRule, high) + OperationsWithInvalidReturnTypeNull (modellingRule, high) + OperationsWithInvalidArgTypeNull (modellingRule, high) + OperationsWithInvalidExcTypeNull (modellingRule, high) + OperationsWithUnallowedTagNames (modellingRule, high) + OperationParametersWithUnallowedTagNames (modellingRule, high) + OperationsMissingDoc (documentationRule, medium) + OperationParametersMissingDoc (documentationRule, medium) + OperationsWithBadDocStart (documentationRule, low) + OperationParametersWithBadDocStart (documentationRule, low) + OperationsWithBadDocEnd (documentationRule, low) + OperationParametersWithBadDocEnd (documentationRule, low) + OperationsWithBadCharacterInName (namingRule, high) + OperationParametersWithBadCharacterInName (namingRule, high) + Available rules in AssociationValidator (category, severity): + AssociationsWithExplicitDirection (modellingRule, high) + AssociationsWithRoleBadDirection (modellingRule, high) + AssociationsWithDoc (documentationRule, low) + AssociationsWithSameDocOnBothEnds (documentationRule, medium) + AssociationsWithName (namingRule, medium) + AssociationsWithUnallowedStereotype (modellingRule, high) + AssociationEndsWithUnallowedStereotype (modellingRule, high) + AssociationsMissingInformativeStereotype (modellingRule, high) + AssociationsWithUnallowedTagNames (modellingRule, high) + AssociationEndsWithUnallowedTagNames (modellingRule, high) + AssociationsWithNoMultiplicity (modellingRule, high) + AssociationsWithWrongSource (modellingRule, high) + Iec61850AssociationsThatShouldBePrivate (modellingRule, high) + Iec61850AssociationsWithDifferentEndVisibility (modellingRule, high) + AssociationEndsMissingDoc (documentationRule, medium) + AssociationEndsWithBadDocStart (documentationRule, low) + AssociationEndsWithBadDocEnd (documentationRule, low) + AssociationEndsWithBadCharacterInName (namingRule, high) + CimAssociationEndsNameStartingWithLowerCase (namingRule, high) + CimAssociationEndsNameShouldBePlural (namingRule, high) + CimAssociationEndsNameShouldBeSingular (namingRule, high) + Available rules in DependencyValidator (category, severity): + DependenciesWithUnallowedStereotype (modellingRule, high) + DependenciesWithUnallowedDirection (modellingRule, high) + DependenciesWithUnallowedTagNames (modellingRule, high) + Available rules in DiagramValidator (category, severity): + DiagramsWithBadOrientation (formatting, low) + DiagramsWithUnallowedStereotype (modellingRule, high) + DiagramsMissingDoc (documentationRule, medium) + DiagramsWithBadDocStart (documentationRule, low) + DiagramsWithBadDocEnd (documentationRule, low) + DiagramsWithBadCharacterInName (namingRule, high) + +2024-09-08 15:11:38,491 [main] DEBUG ModelValidator - +2024-09-08 15:11:38,491 [main] INFO AbstractValidator - +2024-09-08 15:11:38,491 [main] INFO AbstractValidator - ====== Validating 83 (of 83) packages: +2024-09-08 15:11:38,503 [main] WARN PackageValidator - Found 4 packages with unexpected embedded elements (they are present in the model repository, but not kept in the in-memory model) - remove unexpected embedded elements: +2024-09-08 15:11:38,503 [main] WARN PackageValidator - WG13 CIM top package TC57CIM::IEC61970 : [(1497) WG13 CIM state IEC61970::StateInPackage] +2024-09-08 15:11:38,503 [main] WARN PackageValidator - WG14 CIM package IEC61968::Assets : [(3064) WG14 CIM other Assets::Object1] +2024-09-08 15:11:38,503 [main] WARN PackageValidator - WG10 IEC61850 package NewIEC61850_7_2::GenericModel : [(1618) WG10 IEC61850 other <> GenericModel::, (1619) WG10 IEC61850 other <> GenericModel::, (1620) WG10 IEC61850 other <> GenericModel::, (1621) WG10 IEC61850 other <> GenericModel::] +2024-09-08 15:11:38,503 [main] WARN PackageValidator - OTHER_CIM CIM model package /MyCimExtensions : [(3076) OTHER_CIM CIM other <> MyCimExtensions::DFD_Process1] +2024-09-08 15:11:38,503 [main] WARN PackageValidator - Found 4 packages with unexpected embedded connectors (they are present in the model repository, but not kept in the in-memory model) - remove unexpected embedded elements: +2024-09-08 15:11:38,503 [main] WARN PackageValidator - WG13 CIM INF private package IEC61970::InformativeAndPrivate : [(2102) WG13 CIM INF other InformativeAndPrivate:: - Package 'Other'] +2024-09-08 15:11:38,503 [main] WARN PackageValidator - WG14 CIM package IEC61968::Other : [(2102) WG14 CIM other Other:: - Package 'InformativeAndPrivate'] +2024-09-08 15:11:38,503 [main] WARN PackageValidator - OTHER_CIM CIM top package <> MyCimExtensions::Ext1 : [(3458) OTHER_CIM CIM other Ext1:: - Class 'Apple', (3460) OTHER_CIM CIM other Ext1:: - Activity 'DFD_Process1'] +2024-09-08 15:11:38,503 [main] WARN PackageValidator - OTHER_CIM CIM top package MyCimExtensions::Package with space : [(3461) OTHER_CIM CIM other Package with space:: - Class 'DFD_DataStore1', (3462) OTHER_CIM CIM other Package with space:: - Class 'DFD_External1'] +2024-09-08 15:11:38,503 [main] ERROR PackageValidator - Found 3 packages with self-dependency (UML tool allows to create such links, but they are not kept in the the in-memory model - remove self-dependency: +2024-09-08 15:11:38,503 [main] ERROR PackageValidator - WG14 CIM package IEC61968::Other +2024-09-08 15:11:38,504 [main] ERROR PackageValidator - WG10 IEC61850 package WG10::IEC61850_7_3 +2024-09-08 15:11:38,504 [main] ERROR PackageValidator - WG10 IEC61850 package WG10::IEC61850_7_4 +2024-09-08 15:11:38,504 [main] ERROR PackageValidator - Found 3 packages with unallowed stereotype(s) - remove offending stereotype(s) OR use one or more of {CIM=[deprecated, informative], IEC61850=[deprecated, informative]}: +2024-09-08 15:11:38,504 [main] ERROR PackageValidator - OTHER_CIM CIM INF top package <> TC57CIM::Informative : offending stereotypes = [TempPckStereo, SecondPckStereo] +2024-09-08 15:11:38,504 [main] ERROR PackageValidator - WG13 CIM package <> IEC61970::Domain : offending stereotypes = [Global] +2024-09-08 15:11:38,504 [main] ERROR PackageValidator - OTHER_CIM CIM top package <> MyCimExtensions::Ext1 : offending stereotypes = [European] +2024-09-08 15:11:38,504 [main] ERROR PackageValidator - Found 8 top level packages without version class - add Version class: +2024-09-08 15:11:38,504 [main] ERROR PackageValidator - OTHER_CIM CIM INF top package <> TC57CIM::Informative : missing class 'InformativeCIMVersion' +2024-09-08 15:11:38,504 [main] ERROR PackageValidator - WG14 CIM top package TC57CIM::IEC61968 : missing class 'IEC61968CIMVersion' +2024-09-08 15:11:38,504 [main] ERROR PackageValidator - WG16 CIM top package TC57CIM::IEC62325 : missing class 'IEC62325CIMVersion' +2024-09-08 15:11:38,504 [main] ERROR PackageValidator - WG18 IEC61850 top package IEC61850Domain::WG18 : missing class 'WG18UMLVersion' +2024-09-08 15:11:38,504 [main] ERROR PackageValidator - JWG25 IEC61850 top package IEC61850Domain::JWG25 : missing class 'JWG25UMLVersion' +2024-09-08 15:11:38,505 [main] ERROR PackageValidator - OTHER_CIM CIM top package <> MyCimExtensions::Ext1 : missing class 'Ext1CIMVersion' +2024-09-08 15:11:38,505 [main] ERROR PackageValidator - OTHER_CIM CIM top package MyCimExtensions::Package with space : missing class 'Package with spaceCIMVersion' +2024-09-08 15:11:38,505 [main] ERROR PackageValidator - OTHER_IEC61850 IEC61850 top package My61850Extensions::Ext2 : missing class 'Ext2UMLVersion' +2024-09-08 15:11:38,505 [main] ERROR PackageValidator - Found 2 IEC61850 packages used for generating parts 7-3 or 7-4 that are missing alias - add UML alias that will be used for clause heading in auto-generated documents: +2024-09-08 15:11:38,505 [main] ERROR PackageValidator - WG10 IEC61850 package IEC61850_7_4::DOEnums +2024-09-08 15:11:38,505 [main] ERROR PackageValidator - WG17 IEC61850 package IEC51850_7_420::DOEnums_7_420 +2024-09-08 15:11:38,505 [main] ERROR PackageValidator - Found 1 packages with unallowed tag names - remove tags: +2024-09-08 15:11:38,505 [main] ERROR PackageValidator - WG10 IEC61850 package IEC61850_7_4::DOEnums : [dummyPackageTag] +2024-09-08 15:11:38,505 [main] WARN PackageValidator - Found 25 packages missing documentation - add documentation: +2024-09-08 15:11:38,505 [main] WARN PackageValidator - OTHER_CIM CIM model package /TC57CIMProfiles +2024-09-08 15:11:38,505 [main] WARN PackageValidator - OTHER_CIM CIM model package /TC57CIM +2024-09-08 15:11:38,506 [main] WARN PackageValidator - WG13 CIM top package TC57CIM::IEC61970 +2024-09-08 15:11:38,506 [main] WARN PackageValidator - WG13 CIM package Topology::TestEnums +2024-09-08 15:11:38,506 [main] WARN PackageValidator - WG14 CIM package IEC61968::EmbeddedExtension +2024-09-08 15:11:38,506 [main] WARN PackageValidator - WG14 CIM package IEC61968::Assets +2024-09-08 15:11:38,506 [main] WARN PackageValidator - WG14 CIM package IEC61968::Core +2024-09-08 15:11:38,506 [main] WARN PackageValidator - WG14 CIM package IEC61968::Other +2024-09-08 15:11:38,506 [main] WARN PackageValidator - WG14 CIM package IEC61968::Other +2024-09-08 15:11:38,506 [main] WARN PackageValidator - WG16 CIM top package TC57CIM::IEC62325 +2024-09-08 15:11:38,506 [main] WARN PackageValidator - OTHER_IEC61850 IEC61850 model package /IEC61850Domain +2024-09-08 15:11:38,506 [main] WARN PackageValidator - WG10 IEC61850 package WG10::NewIEC61850_7_2 +2024-09-08 15:11:38,506 [main] WARN PackageValidator - WG10 IEC61850 package NewIEC61850_7_2::GenericModel +2024-09-08 15:11:38,506 [main] WARN PackageValidator - WG17 IEC61850 top package IEC61850Domain::WG17 +2024-09-08 15:11:38,507 [main] WARN PackageValidator - WG17 IEC61850 package WG17::IEC51850_7_420 +2024-09-08 15:11:38,507 [main] WARN PackageValidator - WG17 IEC61850 package IEC51850_7_420::DOEnums_7_420 +2024-09-08 15:11:38,507 [main] WARN PackageValidator - WG17 IEC61850 package IEC51850_7_420::DerivedDAs_7_420 +2024-09-08 15:11:38,507 [main] WARN PackageValidator - WG17 IEC61850 package IEC51850_7_420::DerivedCDCs_7_420 +2024-09-08 15:11:38,507 [main] WARN PackageValidator - WG18 IEC61850 top package IEC61850Domain::WG18 +2024-09-08 15:11:38,507 [main] WARN PackageValidator - WG18 IEC61850 package WG18::Abbreviations_410 +2024-09-08 15:11:38,507 [main] WARN PackageValidator - JWG25 IEC61850 top package IEC61850Domain::JWG25 +2024-09-08 15:11:38,507 [main] WARN PackageValidator - OTHER_CIM CIM model package /MyCimExtensions +2024-09-08 15:11:38,507 [main] WARN PackageValidator - OTHER_IEC61850 IEC61850 model package /My61850Extensions +2024-09-08 15:11:38,507 [main] WARN PackageValidator - OTHER_IEC61850 IEC61850 top package My61850Extensions::Ext2 +2024-09-08 15:11:38,507 [main] WARN PackageValidator - OTHER_CIM CIM model package /NewNature +2024-09-08 15:11:38,507 [main] WARN PackageValidator - Found 1 packages whose documentation starts with unallowed character - fix the first character: valid ones are any upper case letter or punctuation marks [', ", (]: +2024-09-08 15:11:38,507 [main] WARN PackageValidator - WG13 CIM package <> IEC61970::Domain : doc='the domain package is a data d...' +2024-09-08 15:11:38,508 [main] WARN PackageValidator - Found 1 packages whose documentation does not end with a dot ('.') - fix the last character: add a dot: +2024-09-08 15:11:38,508 [main] WARN PackageValidator - WG14 CIM top package TC57CIM::IEC61968 : doc='Blah (not ending with ".")' +2024-09-08 15:11:38,508 [main] ERROR PackageValidator - Found 1 packages whose name contains illegal character(s) - rename by removing invalid character(s): +2024-09-08 15:11:38,508 [main] ERROR PackageValidator - OTHER_CIM CIM top package MyCimExtensions::Package with space : invalid characters = [ , ] +2024-09-08 15:11:38,508 [main] ERROR PackageValidator - Found 4 packages that have non-unique name - rename packages to have unique names within model: +2024-09-08 15:11:38,508 [main] ERROR PackageValidator - 1 WG13 CIM package IEC61970::Core : all with the same name = [WG13 IEC61970::Core, WG14 IEC61968::Core] +2024-09-08 15:11:38,508 [main] ERROR PackageValidator - 1 WG14 CIM package IEC61968::Core : all with the same name = [WG13 IEC61970::Core, WG14 IEC61968::Core] +2024-09-08 15:11:38,508 [main] ERROR PackageValidator - 2 WG14 CIM package IEC61968::Other : all with the same name = [WG14 IEC61968::Other, WG14 IEC61968::Other] +2024-09-08 15:11:38,508 [main] ERROR PackageValidator - 2 WG14 CIM package IEC61968::Other : all with the same name = [WG14 IEC61968::Other, WG14 IEC61968::Other] +2024-09-08 15:11:38,508 [main] INFO AbstractValidator - +2024-09-08 15:11:38,508 [main] INFO AbstractValidator - ====== Validating 386 (of 386) classes: +2024-09-08 15:11:38,557 [main] WARN ClassValidator - Found 3 classes with unexpected embedded elements (present in the model repository, but not kept in the in-memory model) - remove embedded elements, or move them out of class: +2024-09-08 15:11:38,557 [main] WARN ClassValidator - WG13 CIM INF root class InformativeAndPrivate::InfClassContainingEmbeddedClass : [(1496) WG13 CIM INF other InfClassContainingEmbeddedClass.EmbeddedClass] +2024-09-08 15:11:38,557 [main] WARN ClassValidator - OTHER_CIM CIM enumeration <> Ext1::FruitBinKind : [(3035) OTHER_CIM CIM other FruitBinKind.Strawberry] +2024-09-08 15:11:38,557 [main] WARN ClassValidator - WG13 CIM class Core::PowerSystemResource : [(1444) WG13 CIM state PowerSystemResource.DummyState] +2024-09-08 15:11:38,557 [main] WARN ClassValidator - Found 3 classes with unexpected embedded connectors (present in the model repository, but not kept in the in-memory model) - remove embedded connectors, or move them out of class: +2024-09-08 15:11:38,557 [main] WARN ClassValidator - OTHER_CIM CIM root class <> MyCimExtensions::DFD_External1 : [(3462) OTHER_CIM CIM other DFD_External1. - ?] +2024-09-08 15:11:38,557 [main] WARN ClassValidator - OTHER_CIM CIM root class <> MyCimExtensions::DFD_DataStore1 : [(3461) OTHER_CIM CIM other DFD_DataStore1. - ?] +2024-09-08 15:11:38,557 [main] WARN ClassValidator - OTHER_CIM CIM class Ext1::Apple : [(3458) OTHER_CIM CIM other Apple. - ?, (3459) OTHER_CIM CIM other Apple. - ?] +2024-09-08 15:11:38,558 [main] ERROR ClassValidator - Found 3 enumeration classes with no literals. Attributes with that type can only be null - add some literals OR remove enumeration class (ensure to change type of attributes that potentially use it): +2024-09-08 15:11:38,558 [main] ERROR ClassValidator - WG14 CIM enumeration <> Other::EmptyEnum : used by [] +2024-09-08 15:11:38,558 [main] ERROR ClassValidator - WG10 IEC61850 enumeration <> GenericModel::GenFC : used by [WG10 GenericModel::GenDataAttribute.FC, WG10 GenericModel::GenFCD.FC, WG10 GenericModel::GenFCDA.FC, WG10 GenericModel::GenSubDataAttribute.FC] +2024-09-08 15:11:38,558 [main] ERROR ClassValidator - WG10 IEC61850 enumeration <> GenericModel::GenPresenceConditions : used by [WG10 GenericModel::GenDataAttribute.Presence, WG10 GenericModel::GenDataObject.Presence, WG10 GenericModel::GenSubDataAttribute.Presence, WG10 GenericModel::GenSubDataObject.Presence] +2024-09-08 15:11:38,558 [main] ERROR ClassValidator - Found 3 CIM compound classes with no attributes. Attributes with that type can only be null - add some attributes OR remove coumpound class (ensure to change type of attributes that potentially use it): +2024-09-08 15:11:38,558 [main] ERROR ClassValidator - OTHER_CIM CIM INF compound <> Informative::SomeSimpleType : used by [OTHER_CIM Ext1::Pear.typeIsInformative] +2024-09-08 15:11:38,558 [main] ERROR ClassValidator - WG14 CIM compound <> Other::EmptyCompound : used by [WG14 Other::AnotherBadDatatype.multiplier] +2024-09-08 15:11:38,558 [main] ERROR ClassValidator - WG13 CIM compound <> Core::OperatingParticipant : used by [] +2024-09-08 15:11:38,558 [main] WARN ClassValidator - Found 1 enumeration classes with single literal. Does it make sense to keep the enumerated type with a single literal? - add some literals OR remove enumeration class (ensure to change type of attributes that potentially use it): +2024-09-08 15:11:38,558 [main] WARN ClassValidator - WG13 CIM enumeration <> Domain::WithSingleLiteral : used by [] +2024-09-08 15:11:38,559 [main] WARN ClassValidator - Found 3 enumeration classes with two literals. Could Boolean be used as type for attributes? - consider using Boolean instead (then remove the enumeration class): +2024-09-08 15:11:38,559 [main] WARN ClassValidator - WG13 CIM enumeration <> Domain::YesNo : used by [WG13 Core::Bay.TestYesNo1, WG13 Core::Bay.testYesNo2, WG14 Other::Equipment.testYesNo1] +2024-09-08 15:11:38,559 [main] WARN ClassValidator - WG13 CIM enumeration <> Topology::TestEnum : used by [] +2024-09-08 15:11:38,559 [main] WARN ClassValidator - WG10 IEC61850 coded enumeration <> ConstructedDAs::SourceKind : used by [WG10 ConstructedDAs::Quality.source] +2024-09-08 15:11:38,559 [main] ERROR ClassValidator - Found 15 enumeration classes with bad name: name should not contain 'type' and/or 'enum', and should end with 'Kind' - rename the enumeration class: +2024-09-08 15:11:38,559 [main] ERROR ClassValidator - WG13 CIM enumeration <> Domain::Currency +2024-09-08 15:11:38,560 [main] ERROR ClassValidator - WG13 CIM enumeration <> Domain::UnitMultiplier +2024-09-08 15:11:38,560 [main] ERROR ClassValidator - WG13 CIM enumeration <> Domain::UnitSymbol +2024-09-08 15:11:38,560 [main] ERROR ClassValidator - WG13 CIM enumeration <> Domain::WithSingleLiteral +2024-09-08 15:11:38,560 [main] ERROR ClassValidator - WG13 CIM enumeration <> Domain::YesNo +2024-09-08 15:11:38,560 [main] ERROR ClassValidator - WG13 CIM private enumeration <> Core::BreakerConfiguration +2024-09-08 15:11:38,560 [main] ERROR ClassValidator - WG13 CIM protected enumeration <> Core::BusbarConfiguration +2024-09-08 15:11:38,560 [main] ERROR ClassValidator - WG13 CIM enumeration <> Core::PhaseCode +2024-09-08 15:11:38,560 [main] ERROR ClassValidator - WG13 CIM enumeration <> Topology::TestEnum +2024-09-08 15:11:38,560 [main] ERROR ClassValidator - WG13 CIM enumeration <> TestEnums::EnumWithSomeIntCodes +2024-09-08 15:11:38,560 [main] ERROR ClassValidator - WG13 CIM enumeration <> TestEnums::EnumWithStringCodes +2024-09-08 15:11:38,560 [main] ERROR ClassValidator - WG13 CIM enumeration <> TestEnums::EnumWithNonUniqueCodes +2024-09-08 15:11:38,560 [main] ERROR ClassValidator - WG14 CIM enumeration <> Other::EmptyEnum +2024-09-08 15:11:38,560 [main] ERROR ClassValidator - WG10 IEC61850 enumeration <> GenericModel::GenFC +2024-09-08 15:11:38,560 [main] ERROR ClassValidator - WG10 IEC61850 enumeration <> GenericModel::GenPresenceConditions +2024-09-08 15:11:38,560 [main] ERROR ClassValidator - Found 1 CIM primitive classes that should, by definition, have no attributes - remove attributes if the class is primitive OR remove Primitivestereotype if attributes are needed: +2024-09-08 15:11:38,560 [main] ERROR ClassValidator - WG14 CIM primitive <> Other::NonEmptyPrimitive +2024-09-08 15:11:38,561 [main] ERROR ClassValidator - Found 1 CIM primitive classes that should belong to WG13, according to TC57 rules - move class to a WG13 package: +2024-09-08 15:11:38,561 [main] ERROR ClassValidator - WG14 CIM primitive <> Other::NonEmptyPrimitive +2024-09-08 15:11:38,561 [main] ERROR ClassValidator - Found 2 classes that have duplicate inherited attribute names - rename offending native attribute(s): +2024-09-08 15:11:38,561 [main] ERROR ClassValidator - WG14 CIM class <> Other::MyClass : duplicate attributes = [[WG14 Other::MyClass.value, WG14 Other::BadDatatypes.value]] +2024-09-08 15:11:38,562 [main] ERROR ClassValidator - WG14 CIM class Other::AttrDuplication : duplicate attributes = [[WG14 Other::AttrDuplication.normaIlyInService, WG14 Other::MyClass.normaIlyInService], [WG14 Other::AttrDuplication.curveStyle, WG14 Other::MyClass.curveStyle], [WG14 Other::MyClass.value, WG14 Other::BadDatatypes.value]] +2024-09-08 15:11:38,562 [main] ERROR ClassValidator - Found 2 classes that have duplicate own or inherited association end names - rename offending native association end(s): +2024-09-08 15:11:38,562 [main] ERROR ClassValidator - WG14 CIM class Other::AttrDuplication : duplicate association ends = [[WG14 AttrDuplication.To, WG14 AttrDuplication.To, WG14 MyClass.To], [WG14 AttrDuplication.From, WG14 AttrDuplication.From, WG14 MyClass.From], [WG14 AttrDuplication.T1, WG14 MyClass.T1]] +2024-09-08 15:11:38,562 [main] ERROR ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenLN0 : duplicate association ends = [[WG10 GenLN0.LogicalDevice, WG10 GenLogicalNode.LogicalDevice]] +2024-09-08 15:11:38,562 [main] DEBUG ClassValidator - Found 0 classes with self-inheritance; model repository allows to create such links, but they are not kept in the the in-memory model - remove self-inheritance connector. +2024-09-08 15:11:38,562 [main] DEBUG ClassValidator - Found 0 classes with self-dependency (UML tool allows to create such links, but they are not kept in the the in-memory model - remove self-dependency. +2024-09-08 15:11:38,563 [main] DEBUG ClassValidator - Found 0 classes with leaf property - remove the leaf property in EA class property editor->advanced. +2024-09-08 15:11:38,563 [main] ERROR ClassValidator - Found 20 classes with root property - remove the root property in EA class property editor->advanced: +2024-09-08 15:11:38,563 [main] ERROR ClassValidator - WG13 CIM root class IEC61970::IEC61970CIMVersion +2024-09-08 15:11:38,563 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::AbsoluteDateTime +2024-09-08 15:11:38,563 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::ActivePower +2024-09-08 15:11:38,563 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::ActivePowerChangeRate +2024-09-08 15:11:38,563 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::ApparentPower +2024-09-08 15:11:38,563 [main] ERROR ClassValidator - WG13 CIM primitive <> Domain::Boolean +2024-09-08 15:11:38,563 [main] ERROR ClassValidator - WG13 CIM enumeration <> Domain::Currency +2024-09-08 15:11:38,563 [main] ERROR ClassValidator - WG13 CIM primitive <> Domain::Float +2024-09-08 15:11:38,564 [main] ERROR ClassValidator - WG13 CIM primitive <> Domain::Integer +2024-09-08 15:11:38,564 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::Money +2024-09-08 15:11:38,564 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::PerCent +2024-09-08 15:11:38,564 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::Seconds +2024-09-08 15:11:38,564 [main] ERROR ClassValidator - WG13 CIM primitive <> Domain::String +2024-09-08 15:11:38,564 [main] ERROR ClassValidator - WG13 CIM enumeration <> Domain::UnitMultiplier +2024-09-08 15:11:38,564 [main] ERROR ClassValidator - WG13 CIM enumeration <> Domain::UnitSymbol +2024-09-08 15:11:38,564 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::Voltage +2024-09-08 15:11:38,564 [main] ERROR ClassValidator - WG13 CIM private enumeration <> Core::BreakerConfiguration +2024-09-08 15:11:38,564 [main] ERROR ClassValidator - WG13 CIM protected enumeration <> Core::BusbarConfiguration +2024-09-08 15:11:38,564 [main] ERROR ClassValidator - WG13 CIM enumeration <> Core::PhaseCode +2024-09-08 15:11:38,564 [main] ERROR ClassValidator - WG14 CIM root class IEC61968::IEC61968Version +2024-09-08 15:11:38,564 [main] DEBUG ClassValidator - Found 0 classes with persistence property - remove the persistence property in EA class property editor. +2024-09-08 15:11:38,564 [main] ERROR ClassValidator - Found 3 classes with multiple superclasses - multiple inheritance is prohibited in standard IEC TC57 - keep only one superclass: +2024-09-08 15:11:38,564 [main] ERROR ClassValidator - WG13 CIM class <> Topology::BusNameMarker : all superclasses = [Core::IdentifiedObject, InformativeAndPrivate::InfClass2] +2024-09-08 15:11:38,564 [main] ERROR ClassValidator - WG13 CIM class Core::BaseVoltage : all superclasses = [Core::IdentifiedObject, Other::BadDatatypes] +2024-09-08 15:11:38,564 [main] ERROR ClassValidator - WG13 CIM class Core::EquipmentContainer : all superclasses = [Core::ConnectivityNodeContainer, Ext1::Pear] +2024-09-08 15:11:38,565 [main] ERROR ClassValidator - Found 2 classes inheriting from classes of prohibited owner according to standard IEC TC57 rules (wrong direction for dependency) - remove inheritance OR move the class to that owner: +2024-09-08 15:11:38,565 [main] ERROR ClassValidator - WG13 CIM class Core::BaseVoltage : offending superclass(es) = [WG14 Other::BadDatatypes] +2024-09-08 15:11:38,565 [main] ERROR ClassValidator - WG13 CIM class Core::EquipmentContainer : offending superclass(es) = [OTHER_CIM Ext1::Pear] +2024-09-08 15:11:38,565 [main] ERROR ClassValidator - Found 1 association classes - transform into a regular class with two explicit associations: +2024-09-08 15:11:38,565 [main] ERROR ClassValidator - OTHER_CIM CIM INF root class Informative::AssocClass +2024-09-08 15:11:38,565 [main] ERROR ClassValidator - Found 11 classes with unallowed stereotype(s) - remove offending stereotype(s) OR use one or more of {CIM=[Primitive, CIMDatatype, deprecated, informative, Compound, enumeration, Datatype], IEC61850=[deprecated, structured, admin, informative, enumeration, interface, packed, basic, cond, abbr, statistics]}: +2024-09-08 15:11:38,565 [main] ERROR ClassValidator - OTHER_CIM CIM INF root class <> Informative::Class1 : offending stereotypes = [TmpInformative] +2024-09-08 15:11:38,565 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::ActivePower : offending stereotypes = [invalid, European, custom] +2024-09-08 15:11:38,565 [main] ERROR ClassValidator - WG13 CIM root class <> Core::OperatingShare : offending stereotypes = [WorkInProgress] +2024-09-08 15:11:38,565 [main] ERROR ClassValidator - WG10 IEC61850 unknown 61850 <> GenericModel::CommAddress : offending stereotypes = [compact] +2024-09-08 15:11:38,565 [main] ERROR ClassValidator - WG10 IEC61850 unknown 61850 <> GenericModel::GenAssociationID : offending stereotypes = [compact] +2024-09-08 15:11:38,566 [main] ERROR ClassValidator - WG10 IEC61850 unknown 61850 <> GenericModel::GenTimeStamp : offending stereotypes = [compact] +2024-09-08 15:11:38,566 [main] ERROR ClassValidator - OTHER_CIM CIM root class <> MyCimExtensions::DFD_External1 : offending stereotypes = [DFD_External] +2024-09-08 15:11:38,566 [main] ERROR ClassValidator - OTHER_CIM CIM root class <> MyCimExtensions::DFD_DataStore1 : offending stereotypes = [DFD_DataStore] +2024-09-08 15:11:38,566 [main] ERROR ClassValidator - OTHER_CIM CIM enumeration <> Ext1::FruitBinKind : offending stereotypes = [European] +2024-09-08 15:11:38,566 [main] ERROR ClassValidator - OTHER_CIM CIM class <> Ext1::Pear : offending stereotypes = [European] +2024-09-08 15:11:38,566 [main] ERROR ClassValidator - WG14 CIM class <> Other::MyClass : offending stereotypes = [packed] +2024-09-08 15:11:38,566 [main] WARN ClassValidator - Found 1 CIM classes with old (pre-CIM15) datatype stereotype 'Datatype' - change stereotype to 'CIMDatatype': +2024-09-08 15:11:38,566 [main] WARN ClassValidator - WG13 CIM datatype <> Domain::Seconds +2024-09-08 15:11:38,566 [main] ERROR ClassValidator - Found 2 CIM classes that should be used as type for attributes, but have associations - replace associations with attributes OR remove stereotype from this class: +2024-09-08 15:11:38,567 [main] ERROR ClassValidator - WG14 CIM datatype <> Other::BadDatatypes +2024-09-08 15:11:38,567 [main] ERROR ClassValidator - WG13 CIM compound <> Core::OperatingParticipant +2024-09-08 15:11:38,567 [main] ERROR ClassValidator - Found 1 CIM classes that should not participate in inheritance but have subclasses - remove inheritance links OR remove stereotype from this class: +2024-09-08 15:11:38,567 [main] ERROR ClassValidator - WG14 CIM datatype <> Other::BadDatatypes : offending subclass(es) = [WG13 Core::BaseVoltage, WG14 Other::MyClass] +2024-09-08 15:11:38,567 [main] ERROR ClassValidator - Found 1 CIM classes that should not participate in inheritance but have superclasses - remove inheritance links OR remove stereotype from this class: +2024-09-08 15:11:38,567 [main] ERROR ClassValidator - WG13 CIM compound <> Core::OperatingParticipant : offending superclass(es) = [WG13 Core::IdentifiedObject] +2024-09-08 15:11:38,567 [main] ERROR ClassValidator - Found 1 CIM classes that are abstract - in standard CIM, no classes should be abstract - edit class properties in EA and unselect 'abstract': +2024-09-08 15:11:38,567 [main] ERROR ClassValidator - WG14 CIM class <> Other::MyClass +2024-09-08 15:11:38,567 [main] ERROR ClassValidator - Found 3 CIM classes that have operations - in standard CIM, no classes should have operations - remove operations from the class: +2024-09-08 15:11:38,567 [main] ERROR ClassValidator - OTHER_CIM CIM root class Package with space::My class +2024-09-08 15:11:38,567 [main] ERROR ClassValidator - WG13 CIM class Core::PowerSystemResource +2024-09-08 15:11:38,568 [main] ERROR ClassValidator - WG13 CIM class Core::VoltageLevel +2024-09-08 15:11:38,568 [main] ERROR ClassValidator - Found 1 CIM classes that have explicit UML dependencies on other classes - in standard CIM, no classes should have explicit dependencies - remove inter-class UML dependencies: +2024-09-08 15:11:38,568 [main] ERROR ClassValidator - WG14 CIM class <> Other::MyClass +2024-09-08 15:11:38,568 [main] ERROR ClassValidator - Found 1 classes that use themselves as type for their attribute - nesting (recursion) through attributes is not allowed - change type for those attributes that has the same type as their containing class: +2024-09-08 15:11:38,568 [main] ERROR ClassValidator - WG14 CIM datatype <> Other::BadDatatypes +2024-09-08 15:11:38,568 [main] ERROR ClassValidator - Found 4 classes used for generating IEC61850 parts 7-3 or 7-4 that are missing alias - needed as title in the doc - add alias, otherwise the title in the doc will be odd: +2024-09-08 15:11:38,568 [main] ERROR ClassValidator - WG10 IEC61850 enumeration <> TriggerOptions::TrgOpKind +2024-09-08 15:11:38,568 [main] ERROR ClassValidator - WG10 IEC61850 coded enumeration <> CoreTypes::TimeAccuracyKind +2024-09-08 15:11:38,568 [main] ERROR ClassValidator - WG10 IEC61850 other 61850 CDCControl::SPC +2024-09-08 15:11:38,568 [main] ERROR ClassValidator - WG10 IEC61850 primitive CDC CDCStatusInfo::EXY +2024-09-08 15:11:38,568 [main] DEBUG ClassValidator - Found 0 classes used for generating LN mappings between IEC 61850-5 and IEC 61850-7-4 that are missing tagged values needed for doc geneneration - add required tagged values. +2024-09-08 15:11:38,569 [main] ERROR ClassValidator - Found 7 CIM classes never used in any association or inheritance - should this class be removed?: +2024-09-08 15:11:38,569 [main] ERROR ClassValidator - OTHER_CIM CIM INF root class Informative::AssocClass +2024-09-08 15:11:38,569 [main] ERROR ClassValidator - OTHER_CIM CIM INF root class Informative::HasIllegalTypeForAttr +2024-09-08 15:11:38,569 [main] ERROR ClassValidator - WG13 CIM INF root class InformativeAndPrivate::EmbeddedClass +2024-09-08 15:11:38,569 [main] ERROR ClassValidator - WG14 CIM root class IEC61968::IEC61968Version +2024-09-08 15:11:38,569 [main] ERROR ClassValidator - WG14 CIM root class Other::Equipment +2024-09-08 15:11:38,569 [main] ERROR ClassValidator - OTHER_CIM CIM root class <> MyCimExtensions::DFD_External1 +2024-09-08 15:11:38,569 [main] ERROR ClassValidator - OTHER_CIM CIM root class <> MyCimExtensions::DFD_DataStore1 +2024-09-08 15:11:38,569 [main] ERROR ClassValidator - Found 8 class with unallowed tag names - remove tags: +2024-09-08 15:11:38,569 [main] ERROR ClassValidator - WG10 IEC61850 enumeration <> DAEnums::SIUnitKind : [scl] +2024-09-08 15:11:38,569 [main] ERROR ClassValidator - WG10 IEC61850 enumeration <> DAEnums::MultiplierKind : [scl] +2024-09-08 15:11:38,569 [main] ERROR ClassValidator - WG10 IEC61850 enumeration <> DAEnums::PhaseAngleReferenceKind : [scl] +2024-09-08 15:11:38,569 [main] ERROR ClassValidator - WG10 IEC61850 enumeration <> DOEnums::HealthKind : [scl] +2024-09-08 15:11:38,570 [main] ERROR ClassValidator - WG10 IEC61850 enumeration <> DOEnums::BehaviourModeKind : [scl] +2024-09-08 15:11:38,570 [main] ERROR ClassValidator - WG10 IEC61850 enumeration <> DOEnums::CalcMethodKind : [scl] +2024-09-08 15:11:38,570 [main] ERROR ClassValidator - WG13 CIM class Core::Terminal : [dummyCimTag] +2024-09-08 15:11:38,570 [main] ERROR ClassValidator - WG13 CIM compound <> Core::OperatingParticipant : [dummyCimTag] +2024-09-08 15:11:38,570 [main] ERROR ClassValidator - Found 3 IEC61850 classes that have constraints not defined as literals - fix constraint(s) name OR add new presence condition: +2024-09-08 15:11:38,570 [main] ERROR ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenFCDA : offending constraints = [FCConstraint] +2024-09-08 15:11:38,570 [main] ERROR ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenLN0 : offending constraints = [inv: self.LNName = "LLN0"] +2024-09-08 15:11:38,570 [main] ERROR ClassValidator - WG10 IEC61850 composed DA ConstructedDAs::AnalogueValue : offending constraints = [AtLeastOne] +2024-09-08 15:11:38,570 [main] ERROR ClassValidator - Found 15 IEC61850 classes that have constraints with siblings that do not exist - fix constraint(s) argument OR add DO matching the argument OR remove constraint: +2024-09-08 15:11:38,570 [main] ERROR ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenFCDA : [constraint 'FCConstraint' for inexisting 'inv'] +2024-09-08 15:11:38,570 [main] ERROR ClassValidator - WG10 IEC61850 LN LNGroupL::LPHD : [constraint 'MF(2)' for inexisting 'RsstatAlmMthClc'] +2024-09-08 15:11:38,570 [main] ERROR ClassValidator - WG10 IEC61850 LN LNGroupL::LLN0 : [constraint 'MOrootLD' for inexisting 'Mod'][constraint 'Omulti' for inexisting 'InRef'] +2024-09-08 15:11:38,570 [main] ERROR ClassValidator - WG10 IEC61850 LN <> LogicalNodes::StatisticsLN : [constraint 'MF(ClcMth)' for inexisting 'ClcMod,ClcIntvPer,ClcIntvTyp'] +2024-09-08 15:11:38,570 [main] ERROR ClassValidator - WG10 IEC61850 LN LNGroupG::GGIO : [constraint 'Omulti' for inexisting 'AnOut'] +2024-09-08 15:11:38,571 [main] ERROR ClassValidator - WG10 IEC61850 LN LNGroupC::CALH : [constraint 'AtLeastOne(1)' for inexisting 'GrInd'] +2024-09-08 15:11:38,571 [main] ERROR ClassValidator - WG10 IEC61850 LN LNGroupP::PDIF : [constraint 'AtMostOne' for inexisting 'LoSet,HiSet'] +2024-09-08 15:11:38,571 [main] ERROR ClassValidator - WG10 IEC61850 primitive CDC CommonDataClasses::BasePrimitiveCDC : [constraint 'MOcdcNs' for inexisting 'cdcName'][constraint 'MOdataNs' for inexisting 'dataNs'] +2024-09-08 15:11:38,571 [main] ERROR ClassValidator - WG10 IEC61850 primitive CDC CommonDataClasses::SubstitutionCDC : [constraint 'MFsubst' for inexisting 'subID'] +2024-09-08 15:11:38,571 [main] ERROR ClassValidator - WG10 IEC61850 primitive CDC <> CDCAnalogueInfo::CMV : [constraint 'MFscaledAngV' for inexisting 'angSVC'][constraint 'MFscaledMagV' for inexisting 'magSVC'] +2024-09-08 15:11:38,571 [main] ERROR ClassValidator - WG10 IEC61850 primitive CDC <> CDCControl::BAC : [constraint 'AllOrNonePerGroup(1)' for inexisting 'q,t'][constraint 'MFscaledAV' for inexisting 'sVC'] +2024-09-08 15:11:38,571 [main] ERROR ClassValidator - WG10 IEC61850 primitive CDC CDCStatusInfo::ACD : [constraint 'AllOrNonePerGroup(1)' for inexisting 'dirPhsA'][constraint 'AllOrNonePerGroup(2)' for inexisting 'dirPhsB'][constraint 'AllOrNonePerGroup(3)' for inexisting 'phsC,dirPhsC'][constraint 'AllOrNonePerGroup(4)' for inexisting 'neut,dirNeut'] +2024-09-08 15:11:38,572 [main] ERROR ClassValidator - WG10 IEC61850 primitive CDC CDCDescription::LPL : [constraint 'MOln0' for inexisting 'configRev'] +2024-09-08 15:11:38,572 [main] ERROR ClassValidator - WG10 IEC61850 composed CDC CommonDataClasses::BaseComposedCDC : [constraint 'MOcdcNs' for inexisting 'cdcName'][constraint 'MOdataNs' for inexisting 'dataNs'] +2024-09-08 15:11:38,572 [main] ERROR ClassValidator - WG10 IEC61850 composed CDC <> CDCAnalogueInfo::HarmonicMeasurandCDC : [constraint 'MFrms' for inexisting 'rmsCyc'] +2024-09-08 15:11:38,572 [main] ERROR ClassValidator - Found 1 IEC61850 classes that have constraints with 'condID' argument, but no text associated with it - add text to constraint(s) note OR use presence condition that does not require 'condID': +2024-09-08 15:11:38,572 [main] ERROR ClassValidator - WG10 IEC61850 LN LNGroupL::LLN0 : offending constraints = [MOcond(1)] +2024-09-08 15:11:38,572 [main] ERROR ClassValidator - Found 4 CIM datatype classes that should have at least attributes with type kinds {value=PRIM, unit=ENUM, multiplier=ENUM} - remove stereotype OR add missing attributes: +2024-09-08 15:11:38,572 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::AbsoluteDateTime : [missing 'value'] [missing 'unit'] [missing 'multiplier'] +2024-09-08 15:11:38,572 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::ActivePowerChangeRate : [wrong kind 'NULL_CIM' for type of 'value'] +2024-09-08 15:11:38,572 [main] ERROR ClassValidator - WG14 CIM datatype <> Other::BadDatatypes : [wrong kind 'DT' for type of 'value'][missing 'multiplier'] +2024-09-08 15:11:38,572 [main] ERROR ClassValidator - WG14 CIM datatype <> Other::AnotherBadDatatype : [wrong kind 'ENUM' for type of 'value'][wrong kind 'PRIM' for type of 'unit'][wrong kind 'COMP' for type of 'multiplier'] +2024-09-08 15:11:38,572 [main] WARN ClassValidator - Found 134 classes missing documentation - add documentation: +2024-09-08 15:11:38,572 [main] WARN ClassValidator - WG13 CIM datatype <> Domain::ActivePowerChangeRate +2024-09-08 15:11:38,573 [main] WARN ClassValidator - WG13 CIM enumeration <> Domain::WithSingleLiteral +2024-09-08 15:11:38,573 [main] WARN ClassValidator - WG13 CIM enumeration <> Domain::YesNo +2024-09-08 15:11:38,573 [main] WARN ClassValidator - WG13 CIM enumeration <> TestEnums::EnumWithSomeIntCodes +2024-09-08 15:11:38,573 [main] WARN ClassValidator - WG13 CIM enumeration <> TestEnums::EnumWithStringCodes +2024-09-08 15:11:38,573 [main] WARN ClassValidator - WG13 CIM enumeration <> TestEnums::EnumWithNonUniqueCodes +2024-09-08 15:11:38,573 [main] WARN ClassValidator - WG14 CIM root class Assets::AssetInfo +2024-09-08 15:11:38,573 [main] WARN ClassValidator - WG14 CIM datatype <> Other::BadDatatypes +2024-09-08 15:11:38,573 [main] WARN ClassValidator - WG14 CIM root class Other::MyClass +2024-09-08 15:11:38,573 [main] WARN ClassValidator - WG14 CIM enumeration <> Other::EmptyEnum +2024-09-08 15:11:38,573 [main] WARN ClassValidator - WG14 CIM primitive <> Other::NonEmptyPrimitive +2024-09-08 15:11:38,574 [main] WARN ClassValidator - WG14 CIM datatype <> Other::AnotherBadDatatype +2024-09-08 15:11:38,574 [main] WARN ClassValidator - WG14 CIM compound <> Other::EmptyCompound +2024-09-08 15:11:38,574 [main] WARN ClassValidator - WG10 IEC61850 enumeration <> GenericModel::GenFC +2024-09-08 15:11:38,574 [main] WARN ClassValidator - WG10 IEC61850 enumeration <> GenericModel::GenPresenceConditions +2024-09-08 15:11:38,574 [main] WARN ClassValidator - WG10 IEC61850 unknown 61850 <> GenericModel::GenTimeStamp +2024-09-08 15:11:38,574 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::AccessPoint +2024-09-08 15:11:38,574 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::FileSystem +2024-09-08 15:11:38,574 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenBOOLEAN +2024-09-08 15:11:38,574 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenCommonDataClass +2024-09-08 15:11:38,574 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenConstructedType +2024-09-08 15:11:38,574 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenDataAttribute +2024-09-08 15:11:38,574 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenDataObject +2024-09-08 15:11:38,574 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenDataSet +2024-09-08 15:11:38,574 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenFCD +2024-09-08 15:11:38,575 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenFile +2024-09-08 15:11:38,575 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenIED +2024-09-08 15:11:38,575 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenINT32U +2024-09-08 15:11:38,575 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenLogicalDevice +2024-09-08 15:11:38,575 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenLogicalNode +2024-09-08 15:11:38,575 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenMCAA +2024-09-08 15:11:38,575 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenObjRef +2024-09-08 15:11:38,575 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenObjectName +2024-09-08 15:11:38,575 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenServer +2024-09-08 15:11:38,575 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenSubDataAttribute +2024-09-08 15:11:38,575 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenSubDataObject +2024-09-08 15:11:38,575 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenTPAA +2024-09-08 15:11:38,575 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenTriggerConditions +2024-09-08 15:11:38,575 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenVisString255 +2024-09-08 15:11:38,575 [main] WARN ClassValidator - WG10 IEC61850 other 61850 IEC61850_7_2::IEC61850_7_2Namespace +2024-09-08 15:11:38,576 [main] WARN ClassValidator - WG10 IEC61850 other 61850 IEC61850_7_3::IEC61850_7_3Namespace +2024-09-08 15:11:38,576 [main] WARN ClassValidator - WG10 IEC61850 enumeration <> DAEnums::PhaseFaultDirectionKind +2024-09-08 15:11:38,576 [main] WARN ClassValidator - WG10 IEC61850 enumeration <> DAEnums::PhaseAngleReferenceKind +2024-09-08 15:11:38,576 [main] WARN ClassValidator - WG10 IEC61850 other 61850 CDCControl::SPC +2024-09-08 15:11:38,576 [main] WARN ClassValidator - WG10 IEC61850 other 61850 IEC61850_7_4::IEC61850_7_4Namespace +2024-09-08 15:11:38,576 [main] WARN ClassValidator - WG10 IEC61850 enumeration <> DOEnums::BaseKind +2024-09-08 15:11:38,576 [main] WARN ClassValidator - WG17 IEC61850 other 61850 IEC51850_7_420::IEC61850_7_420Namespace +2024-09-08 15:11:38,576 [main] WARN ClassValidator - WG17 IEC61850 enumeration <> DOEnums_7_420::MaterialTransitionKind +2024-09-08 15:11:38,576 [main] WARN ClassValidator - OTHER_CIM CIM root class <> MyCimExtensions::DFD_External1 +2024-09-08 15:11:38,576 [main] WARN ClassValidator - OTHER_CIM CIM root class <> MyCimExtensions::DFD_DataStore1 +2024-09-08 15:11:38,576 [main] WARN ClassValidator - OTHER_CIM CIM root class Ext1::Fruit +2024-09-08 15:11:38,576 [main] WARN ClassValidator - OTHER_CIM CIM enumeration <> Ext1::FruitBinKind +2024-09-08 15:11:38,576 [main] WARN ClassValidator - OTHER_CIM CIM root class Ext1::Village +2024-09-08 15:11:38,576 [main] WARN ClassValidator - OTHER_CIM CIM root class Package with space::My class +2024-09-08 15:11:38,576 [main] WARN ClassValidator - OTHER_CIM CIM root class Package with space::Other-with_invalid name +2024-09-08 15:11:38,577 [main] WARN ClassValidator - OTHER_IEC61850 IEC61850 other 61850 Ext2::Animal +2024-09-08 15:11:38,577 [main] WARN ClassValidator - OTHER_CIM CIM class <> Ext1::Pear +2024-09-08 15:11:38,577 [main] WARN ClassValidator - WG14 CIM class <> Other::MyClass +2024-09-08 15:11:38,577 [main] WARN ClassValidator - WG14 CIM class Other::AttrDuplication +2024-09-08 15:11:38,577 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::ServiceAccessPoint +2024-09-08 15:11:38,577 [main] WARN ClassValidator - WG10 IEC61850 other 61850 GenericModel::GenLN0 +2024-09-08 15:11:38,577 [main] WARN ClassValidator - WG10 IEC61850 LN LNGroupL::KXYZ +2024-09-08 15:11:38,577 [main] WARN ClassValidator - WG10 IEC61850 primitive CDC CDCServiceTracking::BTS +2024-09-08 15:11:38,577 [main] WARN ClassValidator - WG10 IEC61850 control tracking CDC CDCServiceTracking::CTS +2024-09-08 15:11:38,577 [main] WARN ClassValidator - WG10 IEC61850 primitive CDC CDCServiceTracking::GTS +2024-09-08 15:11:38,577 [main] WARN ClassValidator - WG10 IEC61850 primitive CDC CDCServiceTracking::LTS +2024-09-08 15:11:38,577 [main] WARN ClassValidator - WG10 IEC61850 primitive CDC CDCServiceTracking::MTS +2024-09-08 15:11:38,578 [main] WARN ClassValidator - WG10 IEC61850 primitive CDC CDCServiceTracking::NTS +2024-09-08 15:11:38,578 [main] WARN ClassValidator - WG10 IEC61850 primitive CDC CDCServiceTracking::OTS +2024-09-08 15:11:38,578 [main] WARN ClassValidator - WG10 IEC61850 primitive CDC CDCServiceTracking::STS +2024-09-08 15:11:38,578 [main] WARN ClassValidator - WG10 IEC61850 primitive CDC CDCServiceTracking::UTS +2024-09-08 15:11:38,578 [main] WARN ClassValidator - WG10 IEC61850 enumeration CDC DerivedCDCs::ENSEnumDA +2024-09-08 15:11:38,578 [main] WARN ClassValidator - WG10 IEC61850 primitive CDC CDCStatusInfo::EXY +2024-09-08 15:11:38,578 [main] WARN ClassValidator - WG10 IEC61850 primitive CDC DerivedCDCs::EXYBehaviourMode +2024-09-08 15:11:38,578 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::BOOLEAN_BL +2024-09-08 15:11:38,578 [main] WARN ClassValidator - WG10 IEC61850 enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_CF +2024-09-08 15:11:38,578 [main] WARN ClassValidator - WG10 IEC61850 enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_CF_dchg +2024-09-08 15:11:38,578 [main] WARN ClassValidator - WG10 IEC61850 enumeration FCDA FCDAs::EnumDA_CF_dchg +2024-09-08 15:11:38,578 [main] WARN ClassValidator - WG10 IEC61850 enumeration FCDA FCDAs::PhaseAngleReference_CF_dchg +2024-09-08 15:11:38,578 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::BOOLEAN_CF_dchg +2024-09-08 15:11:38,578 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::INT16U_CF_dchg +2024-09-08 15:11:38,578 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::INT32U_CF_dchg +2024-09-08 15:11:38,578 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::INT32_CF_dchg +2024-09-08 15:11:38,578 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::RangeConfig_CF_dchg +2024-09-08 15:11:38,579 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::INT16U_CF +2024-09-08 15:11:38,579 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::Point_DC +2024-09-08 15:11:38,579 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::UNICODE_STRING255_DC +2024-09-08 15:11:38,579 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::VISIBLE_STRING255_EX +2024-09-08 15:11:38,579 [main] WARN ClassValidator - WG10 IEC61850 enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_MX +2024-09-08 15:11:38,579 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::AnalogueValue_MX_dchg +2024-09-08 15:11:38,579 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::BOOLEAN_MX_dchg +2024-09-08 15:11:38,579 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::AnalogueValue_MX_dchg_dupd +2024-09-08 15:11:38,579 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::Quality_MX_qchg +2024-09-08 15:11:38,579 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::AnalogueValue_MX +2024-09-08 15:11:38,579 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::BOOLEAN_OR_dchg +2024-09-08 15:11:38,579 [main] WARN ClassValidator - WG10 IEC61850 FCDA MetaModelFCsAndTrgOps::FCDA_SE_dchg +2024-09-08 15:11:38,579 [main] WARN ClassValidator - WG10 IEC61850 enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_SE_dchg +2024-09-08 15:11:38,579 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::BOOLEAN_SE +2024-09-08 15:11:38,579 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::Point_SE +2024-09-08 15:11:38,579 [main] WARN ClassValidator - WG10 IEC61850 FCDA MetaModelFCsAndTrgOps::FCDA_SG_dchg +2024-09-08 15:11:38,580 [main] WARN ClassValidator - WG10 IEC61850 enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_SG_dchg +2024-09-08 15:11:38,580 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::BOOLEAN_SG +2024-09-08 15:11:38,580 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::Point_SG +2024-09-08 15:11:38,580 [main] WARN ClassValidator - WG10 IEC61850 FCDA MetaModelFCsAndTrgOps::FCDA_SP_dchg +2024-09-08 15:11:38,580 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::BOOLEAN_SP_dchg +2024-09-08 15:11:38,580 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::Point_SP +2024-09-08 15:11:38,580 [main] WARN ClassValidator - WG10 IEC61850 enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_ST +2024-09-08 15:11:38,580 [main] WARN ClassValidator - WG10 IEC61850 enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_ST_dchg +2024-09-08 15:11:38,580 [main] WARN ClassValidator - WG10 IEC61850 coded enumeration FCDA MetaModelFCsAndTrgOps::PackedEnumFCDA_SP_dchg +2024-09-08 15:11:38,580 [main] WARN ClassValidator - WG10 IEC61850 coded enumeration FCDA FCDAs::DpStatus_ST_dchg +2024-09-08 15:11:38,580 [main] WARN ClassValidator - WG10 IEC61850 enumeration FCDA FCDAs::EnumDA_ST_dchg +2024-09-08 15:11:38,580 [main] WARN ClassValidator - WG10 IEC61850 enumeration FCDA FCDAs::PhaseFaultDirection_ST_dchg +2024-09-08 15:11:38,580 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::BOOLEAN_ST_dchg +2024-09-08 15:11:38,580 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::INT32_ST_dchg +2024-09-08 15:11:38,580 [main] WARN ClassValidator - WG10 IEC61850 FCDA MetaModelFCsAndTrgOps::FCDA_ST_dchg_dupd +2024-09-08 15:11:38,580 [main] WARN ClassValidator - WG10 IEC61850 enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_ST_dchg_dupd +2024-09-08 15:11:38,581 [main] WARN ClassValidator - WG10 IEC61850 enumeration FCDA FCDAs::EnumDA_ST_dchg_dupd +2024-09-08 15:11:38,581 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::INT32_ST_dchg_dupd +2024-09-08 15:11:38,581 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::Quality_ST_qchg +2024-09-08 15:11:38,581 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::TimeStamp_ST +2024-09-08 15:11:38,581 [main] WARN ClassValidator - WG10 IEC61850 enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_SV +2024-09-08 15:11:38,581 [main] WARN ClassValidator - WG10 IEC61850 coded enumeration FCDA MetaModelFCsAndTrgOps::PackedEnumFCDA_SV +2024-09-08 15:11:38,581 [main] WARN ClassValidator - WG10 IEC61850 coded enumeration FCDA FCDAs::DpStatus_SV +2024-09-08 15:11:38,581 [main] WARN ClassValidator - WG10 IEC61850 enumeration FCDA FCDAs::EnumDA_SV +2024-09-08 15:11:38,581 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::BOOLEAN_SV +2024-09-08 15:11:38,581 [main] WARN ClassValidator - WG10 IEC61850 FCDA FCDAs::Quality_SV +2024-09-08 15:11:38,581 [main] WARN ClassValidator - WG10 IEC61850 packed list DA MetaModel::PackedPrimitiveDA +2024-09-08 15:11:38,581 [main] WARN ClassValidator - WG10 IEC61850 coded enumeration DA MetaModel::PackedEnumDA +2024-09-08 15:11:38,581 [main] WARN ClassValidator - WG17 IEC61850 enumeration DA DerivedDAs_7_420::Material_control +2024-09-08 15:11:38,581 [main] WARN ClassValidator - WG17 IEC61850 enumeration <> DOEnums_7_420::ExtBaseKind +2024-09-08 15:11:38,581 [main] WARN ClassValidator - OTHER_CIM CIM class Ext1::Apple +2024-09-08 15:11:38,581 [main] WARN ClassValidator - OTHER_CIM CIM class Ext1::Strawberry +2024-09-08 15:11:38,582 [main] WARN ClassValidator - OTHER_IEC61850 IEC61850 other 61850 Ext2::Dog +2024-09-08 15:11:38,582 [main] WARN ClassValidator - OTHER_IEC61850 IEC61850 other 61850 Ext2::Horse +2024-09-08 15:11:38,582 [main] WARN ClassValidator - Found 27 classes whose documentation starts with unallowed character - fix the first character: valid ones are any upper case letter or punctuation marks [', ", (]: +2024-09-08 15:11:38,582 [main] WARN ClassValidator - WG14 CIM root class Other::Equipment : doc='doc' +2024-09-08 15:11:38,582 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::SUBSTITUTION : doc='part 7-2, sec. 12 +Original do...' +2024-09-08 15:11:38,582 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::CONTROL : doc='part 7-2, sec. 17 +Original do...' +2024-09-08 15:11:38,582 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::TIME : doc='part 7-2, sec. 18 +Original do...' +2024-09-08 15:11:38,582 [main] WARN ClassValidator - WG13 CIM class Core::BasePower : doc='the BasePower class defines th...' +2024-09-08 15:11:38,582 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::LD : doc='part 7-2, sec. 8 +Original doc...' +2024-09-08 15:11:38,582 [main] WARN ClassValidator - WG10 IEC61850 LN MetaModel::LN : doc='part 7-2, sec. 9 +Original doc...' +2024-09-08 15:11:38,582 [main] WARN ClassValidator - WG10 IEC61850 LN MetaModel::LNPHD : doc='part 7-2, section 8.1.2.3 +Not...' +2024-09-08 15:11:38,582 [main] WARN ClassValidator - WG10 IEC61850 LN MetaModel::LN0 : doc='part 7-2, sec. 9 +IEC 61850-7-...' +2024-09-08 15:11:38,582 [main] WARN ClassValidator - WG10 IEC61850 LN MetaModel::LNDOM : doc='part 7-2, section 8.1.2.3 +Not...' +2024-09-08 15:11:38,582 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::CDC : doc='part 7-2, tab. 16 (DATA class)...' +2024-09-08 15:11:38,582 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::DA : doc='part 7-2, sec. 5.5.1 and tab. ...' +2024-09-08 15:11:38,583 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::DS : doc='part 7-2, sec. 11 +Original do...' +2024-09-08 15:11:38,583 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::RCB : doc='part 7-2, sec. 14 +Original do...' +2024-09-08 15:11:38,583 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::BRCB : doc='part 7-2, sec. 14 +Original do...' +2024-09-08 15:11:38,583 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::URCB : doc='part 7-2, sec. 14 +Original do...' +2024-09-08 15:11:38,583 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::LCB : doc='part 7-2, sec. 14 +Original do...' +2024-09-08 15:11:38,583 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::GCB : doc='part 7-2, sec. 15 +Original do...' +2024-09-08 15:11:38,583 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::SVCB : doc='part 7-2, sec. 16 +Original do...' +2024-09-08 15:11:38,583 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::MSVCB : doc='part 7-2, sec. 16' +2024-09-08 15:11:38,583 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::USVCB : doc='part 7-2, sec. 16' +2024-09-08 15:11:38,583 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::SGCB : doc='part 7-2, sec. 13 +Original do...' +2024-09-08 15:11:38,583 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::LOG : doc='part 7-2, sec. 14 +Original do...' +2024-09-08 15:11:38,583 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::SERVER : doc='part 7-2, sec. 6 +Original doc...' +2024-09-08 15:11:38,583 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::FILE : doc='part 7-2, sec. 20 +Original do...' +2024-09-08 15:11:38,583 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::TPAA : doc='part 7-2, sec. 7 +Original doc...' +2024-09-08 15:11:38,583 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::MCAA : doc='part 7-2, sec. 7 +Original doc...' +2024-09-08 15:11:38,584 [main] WARN ClassValidator - Found 15 classes whose documentation does not end with a dot ('.') - fix the last character: add a dot: +2024-09-08 15:11:38,584 [main] WARN ClassValidator - WG13 CIM datatype <> Domain::ActivePower : doc='...phase component of the current' +2024-09-08 15:11:38,584 [main] WARN ClassValidator - WG13 CIM datatype <> Domain::ApparentPower : doc='...d the RMS value of the current' +2024-09-08 15:11:38,584 [main] WARN ClassValidator - WG13 CIM datatype <> Domain::Money : doc='Amount of money' +2024-09-08 15:11:38,584 [main] WARN ClassValidator - WG13 CIM datatype <> Domain::PerCent : doc='...ally 0 - 100 on a defined base' +2024-09-08 15:11:38,584 [main] WARN ClassValidator - WG13 CIM datatype <> Domain::Seconds : doc='Time, in seconds' +2024-09-08 15:11:38,584 [main] WARN ClassValidator - WG13 CIM enumeration <> Domain::UnitMultiplier : doc='...ultipliers defined for the CIM' +2024-09-08 15:11:38,584 [main] WARN ClassValidator - WG13 CIM enumeration <> Domain::UnitSymbol : doc='...s defiend for usage in the CIM' +2024-09-08 15:11:38,584 [main] WARN ClassValidator - WG13 CIM enumeration <> Topology::TestEnum : doc='...pty paragraphs below.(paraEnd)' +2024-09-08 15:11:38,584 [main] WARN ClassValidator - WG14 CIM root class Other::Equipment : doc='doc' +2024-09-08 15:11:38,584 [main] WARN ClassValidator - WG10 IEC61850 other 61850 CommonAcsiTypes::Authentication : doc='... encrypted. How to model that?' +2024-09-08 15:11:38,584 [main] WARN ClassValidator - WG10 IEC61850 protected other 61850 CommonAcsiTypes::AccessView : doc='...ossible values for AccessView?' +2024-09-08 15:11:38,584 [main] WARN ClassValidator - WG13 CIM class Core::EquipmentContainer : doc='...lass for all Equipment classes' +2024-09-08 15:11:38,584 [main] WARN ClassValidator - WG13 CIM class Core::Equipment : doc='...ices, electronic or mechanical' +2024-09-08 15:11:38,585 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::MSVCB : doc='part 7-2, sec. 16' +2024-09-08 15:11:38,585 [main] WARN ClassValidator - WG10 IEC61850 other 61850 MetaModel::USVCB : doc='part 7-2, sec. 16' +2024-09-08 15:11:38,585 [main] ERROR ClassValidator - Found 4 classes whose name contains illegal character(s) - rename by removing invalid character(s): +2024-09-08 15:11:38,585 [main] ERROR ClassValidator - OTHER_CIM CIM root class <> MyCimExtensions::DFD_External1 : invalid characters = [_] +2024-09-08 15:11:38,585 [main] ERROR ClassValidator - OTHER_CIM CIM root class <> MyCimExtensions::DFD_DataStore1 : invalid characters = [_] +2024-09-08 15:11:38,585 [main] ERROR ClassValidator - OTHER_CIM CIM root class Package with space::My class : invalid characters = [ ] +2024-09-08 15:11:38,585 [main] ERROR ClassValidator - OTHER_CIM CIM root class Package with space::Other-with_invalid name : invalid characters = [-, _, ] +2024-09-08 15:11:38,585 [main] ERROR ClassValidator - Found 1 CIM classes whose name starts with a lower case letter - rename class(es) to start with upper case letter: +2024-09-08 15:11:38,585 [main] ERROR ClassValidator - WG13 CIM class Core::geographicalRegion +2024-09-08 15:11:38,585 [main] ERROR ClassValidator - Found 5 CIM classes that should be singular - rename class to singular: +2024-09-08 15:11:38,585 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::Seconds +2024-09-08 15:11:38,585 [main] ERROR ClassValidator - WG13 CIM enumeration <> TestEnums::EnumWithSomeIntCodes +2024-09-08 15:11:38,585 [main] ERROR ClassValidator - WG13 CIM enumeration <> TestEnums::EnumWithStringCodes +2024-09-08 15:11:38,585 [main] ERROR ClassValidator - WG13 CIM enumeration <> TestEnums::EnumWithNonUniqueCodes +2024-09-08 15:11:38,585 [main] ERROR ClassValidator - WG14 CIM datatype <> Other::BadDatatypes +2024-09-08 15:11:38,586 [main] ERROR ClassValidator - Found 1 IEC61850 concrete LN classes that, according to the first letter in the name, should be in another LN group - rename the LN OR move it to corresponding LN group: +2024-09-08 15:11:38,586 [main] ERROR ClassValidator - WG10 IEC61850 LN LNGroupL::KXYZ : expected to be in package 'LNGroupK' +2024-09-08 15:11:38,586 [main] ERROR ClassValidator - Found 2 IEC61850 concrete LN classes with name different than 4 upper case letters - rename the LN to 4 upper case letters: +2024-09-08 15:11:38,586 [main] ERROR ClassValidator - WG10 IEC61850 LN LNGroupP::PDISExt +2024-09-08 15:11:38,586 [main] ERROR ClassValidator - WG10 IEC61850 LN LNGroupP::PDF2 +2024-09-08 15:11:38,586 [main] ERROR ClassValidator - Found 2 enum classes that have some codes, but not for all literals - add missing code(s); alternatively, remove all codes: +2024-09-08 15:11:38,586 [main] ERROR ClassValidator - WG13 CIM enumeration <> TestEnums::EnumWithSomeIntCodes : literals missing code = [lit20noCode, lit60noCode] +2024-09-08 15:11:38,586 [main] ERROR ClassValidator - WG13 CIM enumeration <> TestEnums::EnumWithStringCodes : literals missing code = [str3noCode] +2024-09-08 15:11:38,586 [main] ERROR ClassValidator - Found 1 enum classes that have duplicate codes for some literals - change codes so as to have them unique: +2024-09-08 15:11:38,586 [main] ERROR ClassValidator - WG13 CIM enumeration <> TestEnums::EnumWithNonUniqueCodes : duplicate codes = {1=[[c1, c2, c5]], 4=[[c4, c7]]}; codes in use = [1, 3, 4, 6, 8], so pick some unused code to fix the problem +2024-09-08 15:11:38,586 [main] ERROR ClassValidator - Found 4 classes that have non-unique name - rename classes to have unique names within model: +2024-09-08 15:11:38,586 [main] ERROR ClassValidator - 1 WG14 CIM root class Other::Equipment : all with the same name = [WG14 Other::Equipment, WG13 Core::Equipment] +2024-09-08 15:11:38,587 [main] ERROR ClassValidator - 1 WG13 CIM class Core::Equipment : all with the same name = [WG14 Other::Equipment, WG13 Core::Equipment] +2024-09-08 15:11:38,587 [main] ERROR ClassValidator - 2 WG14 CIM root class Other::MyClass : all with the same name = [WG14 Other::MyClass, WG14 Other::MyClass] +2024-09-08 15:11:38,587 [main] ERROR ClassValidator - 2 WG14 CIM class <> Other::MyClass : all with the same name = [WG14 Other::MyClass, WG14 Other::MyClass] +2024-09-08 15:11:38,587 [main] ERROR ClassValidator - Found 14 CIM classes never used as type for attributes - if also not used in the larger scope: move class(es) to an informative package (if you anticipate future use) OR simply remove: +2024-09-08 15:11:38,587 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::ActivePower +2024-09-08 15:11:38,587 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::ActivePowerChangeRate +2024-09-08 15:11:38,587 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::Money +2024-09-08 15:11:38,587 [main] ERROR ClassValidator - WG13 CIM datatype <> Domain::Seconds +2024-09-08 15:11:38,587 [main] ERROR ClassValidator - WG13 CIM enumeration <> Domain::WithSingleLiteral +2024-09-08 15:11:38,587 [main] ERROR ClassValidator - WG13 CIM enumeration <> Topology::TestEnum +2024-09-08 15:11:38,587 [main] ERROR ClassValidator - WG13 CIM enumeration <> TestEnums::EnumWithSomeIntCodes +2024-09-08 15:11:38,587 [main] ERROR ClassValidator - WG13 CIM enumeration <> TestEnums::EnumWithStringCodes +2024-09-08 15:11:38,587 [main] ERROR ClassValidator - WG13 CIM enumeration <> TestEnums::EnumWithNonUniqueCodes +2024-09-08 15:11:38,587 [main] ERROR ClassValidator - WG14 CIM enumeration <> Other::EmptyEnum +2024-09-08 15:11:38,587 [main] ERROR ClassValidator - WG14 CIM primitive <> Other::NonEmptyPrimitive +2024-09-08 15:11:38,587 [main] ERROR ClassValidator - WG14 CIM datatype <> Other::AnotherBadDatatype +2024-09-08 15:11:38,588 [main] ERROR ClassValidator - OTHER_CIM CIM enumeration <> Ext1::FruitBinKind +2024-09-08 15:11:38,588 [main] ERROR ClassValidator - WG13 CIM compound <> Core::OperatingParticipant +2024-09-08 15:11:38,588 [main] INFO AbstractValidator - +2024-09-08 15:11:38,588 [main] INFO AbstractValidator - ====== Validating 761 (of 761) attributes: +2024-09-08 15:11:38,632 [main] ERROR AttributeValidator - Found 1 enum literals that should have no type - remove type: +2024-09-08 15:11:38,632 [main] ERROR AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.VAh : type = +2024-09-08 15:11:38,632 [main] ERROR AttributeValidator - Found 4 enum literals that are missing <> stereotype - add <> stereotype: +2024-09-08 15:11:38,632 [main] ERROR AttributeValidator - WG13 CIM literal Domain::UnitSymbol.Wh : stereotype = +2024-09-08 15:11:38,632 [main] ERROR AttributeValidator - WG17 IEC61850 literal DOEnums_7_420::MaterialTransitionKind.trans1 : stereotype = +2024-09-08 15:11:38,632 [main] ERROR AttributeValidator - WG17 IEC61850 literal DOEnums_7_420::MaterialTransitionKind.trans2 : stereotype = +2024-09-08 15:11:38,632 [main] ERROR AttributeValidator - WG17 IEC61850 literal DOEnums_7_420::MaterialTransitionKind.trans3 : stereotype = +2024-09-08 15:11:38,632 [main] ERROR AttributeValidator - Found 1 attributes that use custom multiplicity format - change bounds to [0..1]: +2024-09-08 15:11:38,632 [main] ERROR AttributeValidator - WG13 CIM protected Primitive attribute Domain::AbsoluteDateTime.protectedAttribute : multiplicity = [2..5] +2024-09-08 15:11:38,632 [main] ERROR AttributeValidator - Found 3 CIM attributes that should be optional - set multiplicity lower bound to 0: +2024-09-08 15:11:38,632 [main] ERROR AttributeValidator - WG13 CIM INF Primitive attribute InformativeAndPrivate::InfClass2.isToto : multiplicity = [1..1] +2024-09-08 15:11:38,632 [main] ERROR AttributeValidator - WG13 CIM protected Primitive attribute Domain::AbsoluteDateTime.protectedAttribute : multiplicity = [2..5] +2024-09-08 15:11:38,632 [main] ERROR AttributeValidator - OTHER_CIM CIM private Primitive attribute <> Ext1::Apple.shouldNotBeEnum : multiplicity = [1..1] +2024-09-08 15:11:38,632 [main] ERROR AttributeValidator - Found 1 attributes that have as type class not in the model, or the class that may be in the model, but EA interprets the classifierID of the attribute as 0 - locate class in the model from attribute's 'Type' combo-box: +2024-09-08 15:11:38,633 [main] ERROR AttributeValidator - WG13 CIM attribute Domain::ActivePowerChangeRate.value : EA info for attr type ('dummy' (id=0)) +2024-09-08 15:11:38,633 [main] ERROR AttributeValidator - Found 57 attributes that have as type class from the model, but retained in EA as string - locate class in the model from attribute's 'Type' combo-box: +2024-09-08 15:11:38,633 [main] ERROR AttributeValidator - WG14 CIM attribute Other::MyClass.curveStyle : EA info for attr type ('CurveStyle' (id=857)) +2024-09-08 15:11:38,633 [main] ERROR AttributeValidator - WG14 CIM attribute Other::AttrDuplication.curveStyle : EA info for attr type ('CurveStyle' (id=857)) +2024-09-08 15:11:38,633 [main] ERROR AttributeValidator - WG10 IEC61850 attribute WG10::WG10UMLVersion.version : EA info for attr type ('P_VISIBLE_STRING64' (id=1665)) +2024-09-08 15:11:38,633 [main] ERROR AttributeValidator - WG10 IEC61850 attribute WG10::WG10UMLVersion.date : EA info for attr type ('P_VISIBLE_STRING64' (id=1665)) +2024-09-08 15:11:38,633 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_2::IEC61850_7_2Namespace.id : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-08 15:11:38,633 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_2::IEC61850_7_2Namespace.version : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-08 15:11:38,633 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_2::IEC61850_7_2Namespace.revision : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-08 15:11:38,633 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_2::IEC61850_7_2Namespace.date : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-08 15:11:38,633 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_2::IEC61850_7_2Namespace.name : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-08 15:11:38,633 [main] ERROR AttributeValidator - WG10 IEC61850 private attribute CoreTypes::ObjectName.val : EA info for attr type ('P_VISIBLE_STRING64' (id=1665)) +2024-09-08 15:11:38,634 [main] ERROR AttributeValidator - WG10 IEC61850 private attribute CoreTypes::P_ObjectReference.val : EA info for attr type ('P_VISIBLE_STRING129' (id=1666)) +2024-09-08 15:11:38,634 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CoreTypes::P_TimeStamp.FractionOfSecond : EA info for attr type ('P_INT24U' (id=1660)) +2024-09-08 15:11:38,634 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::FILEReference.FileRef : EA info for attr type ('P_VISIBLE_STRING129' (id=1666)) +2024-09-08 15:11:38,634 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::FILEReference.FileName : EA info for attr type ('P_VISIBLE_STRING129' (id=1666)) +2024-09-08 15:11:38,634 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::LDReference.LDRef : EA info for attr type ('P_VISIBLE_STRING129' (id=1666)) +2024-09-08 15:11:38,634 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::NonPersistentDSReference.DSRef : EA info for attr type ('P_VISIBLE_STRING129' (id=1666)) +2024-09-08 15:11:38,634 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::LNReference.LNRef : EA info for attr type ('P_VISIBLE_STRING129' (id=1666)) +2024-09-08 15:11:38,634 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::CDCReference.DataRef : EA info for attr type ('P_VISIBLE_STRING129' (id=1666)) +2024-09-08 15:11:38,634 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::CBReference.CBRef : EA info for attr type ('P_VISIBLE_STRING129' (id=1666)) +2024-09-08 15:11:38,634 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::LOGReference.LogRef : EA info for attr type ('P_VISIBLE_STRING129' (id=1666)) +2024-09-08 15:11:38,634 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::LNOwnedDSReference.DSRef : EA info for attr type ('P_VISIBLE_STRING129' (id=1666)) +2024-09-08 15:11:38,634 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::FCDReference.FCDRef : EA info for attr type ('P_VISIBLE_STRING129' (id=1666)) +2024-09-08 15:11:38,634 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::FCDReference.FCDRefWithoutFC : EA info for attr type ('P_VISIBLE_STRING129' (id=1666)) +2024-09-08 15:11:38,635 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::FCDAReference.FCDARef : EA info for attr type ('P_VISIBLE_STRING129' (id=1666)) +2024-09-08 15:11:38,635 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CommonAcsiTypes::IPAddress.address : EA info for attr type ('P_VISIBLE_STRING64' (id=1665)) +2024-09-08 15:11:38,635 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CommonAcsiTypes::MulticastAddress.address : EA info for attr type ('P_VISIBLE_STRING64' (id=1665)) +2024-09-08 15:11:38,635 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CommonAcsiTypes::MulticastAddress.priority : EA info for attr type ('P_INT8U' (id=1658)) +2024-09-08 15:11:38,635 [main] ERROR AttributeValidator - WG10 IEC61850 private attribute CommonAcsiTypes::ReportID.val : EA info for attr type ('P_VISIBLE_STRING129' (id=1666)) +2024-09-08 15:11:38,635 [main] ERROR AttributeValidator - WG10 IEC61850 attribute MetaModel::IED.name : EA info for attr type ('P_VISIBLE_STRING64' (id=1665)) +2024-09-08 15:11:38,635 [main] ERROR AttributeValidator - WG10 IEC61850 attribute MetaModel::SERVER.name : EA info for attr type ('P_VISIBLE_STRING64' (id=1665)) +2024-09-08 15:11:38,635 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_3::IEC61850_7_3Namespace.id : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-08 15:11:38,635 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_3::IEC61850_7_3Namespace.version : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-08 15:11:38,635 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_3::IEC61850_7_3Namespace.revision : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-08 15:11:38,635 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_3::IEC61850_7_3Namespace.date : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-08 15:11:38,635 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_3::IEC61850_7_3Namespace.name : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-08 15:11:38,636 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CDCStatusInfo::ACD.dirGeneral : EA info for attr type ('FaultDirection_ST_dchg' (id=2151)) +2024-09-08 15:11:38,636 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CDCAnalogueInfo::CMV.instCVal : EA info for attr type ('Vector_MX' (id=2213)) +2024-09-08 15:11:38,636 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CDCAnalogueInfo::CMV.subCVal : EA info for attr type ('Vector_SV' (id=2215)) +2024-09-08 15:11:38,636 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CDCControl::BAC.subVal : EA info for attr type ('AnalogueValue_SV' (id=2121)) +2024-09-08 15:11:38,636 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CDCStatusSet::ENG.setVal : EA info for attr type ('EnumDA_SP_dchg' (id=2147)) +2024-09-08 15:11:38,636 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CDCStatusSet::ENG._setVal : EA info for attr type ('EnumDA_SG' (id=2146)) +2024-09-08 15:11:38,636 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CDCStatusSet::ENG.__setVal : EA info for attr type ('EnumDA_SE' (id=2145)) +2024-09-08 15:11:38,636 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_4::IEC61850_7_4Namespace.id : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-08 15:11:38,636 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_4::IEC61850_7_4Namespace.version : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-08 15:11:38,636 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_4::IEC61850_7_4Namespace.revision : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-08 15:11:38,636 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_4::IEC61850_7_4Namespace.date : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-08 15:11:38,636 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_4::IEC61850_7_4Namespace.name : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-08 15:11:38,636 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LNGroupG::GGIO.DPCSO : EA info for attr type ('DPC' (id=2281)) +2024-09-08 15:11:38,637 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LNGroupP::ProtectionLN.OpCntRs : EA info for attr type ('INC' (id=2282)) +2024-09-08 15:11:38,637 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LNGroupZ::ZAXN.Amp : EA info for attr type ('MV' (id=2264)) +2024-09-08 15:11:38,637 [main] ERROR AttributeValidator - WG17 IEC61850 attribute WG17::WG17UMLVersion.version : EA info for attr type ('P_VISIBLE_STRING64' (id=1665)) +2024-09-08 15:11:38,637 [main] ERROR AttributeValidator - WG17 IEC61850 attribute WG17::WG17UMLVersion.date : EA info for attr type ('P_VISIBLE_STRING64' (id=1665)) +2024-09-08 15:11:38,637 [main] ERROR AttributeValidator - WG17 IEC61850 attribute IEC51850_7_420::IEC61850_7_420Namespace.id : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-08 15:11:38,637 [main] ERROR AttributeValidator - WG17 IEC61850 attribute IEC51850_7_420::IEC61850_7_420Namespace.version : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-08 15:11:38,637 [main] ERROR AttributeValidator - WG17 IEC61850 attribute IEC51850_7_420::IEC61850_7_420Namespace.revision : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-08 15:11:38,637 [main] ERROR AttributeValidator - WG17 IEC61850 attribute IEC51850_7_420::IEC61850_7_420Namespace.date : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-08 15:11:38,637 [main] ERROR AttributeValidator - WG17 IEC61850 attribute IEC51850_7_420::IEC61850_7_420Namespace.tissuesApplied : EA info for attr type ('P_VISIBLE_STRING64' (id=1549)) +2024-09-08 15:11:38,637 [main] ERROR AttributeValidator - Found 1 attributes that have a type ID with the class from the model, but the displayed string (type name) is not the name of that class - locate class in the model from attribute's 'Type' combo-box: +2024-09-08 15:11:38,637 [main] ERROR AttributeValidator - WG10 IEC61850 data object LNGroupC::CALH.ModBeh : EA info for attr type ('ERYBehaviourMode' (id=3039)); ID-based info for attr type ((3039) WG10 IEC61850 primitive CDC DerivedCDCs::EXYBehaviourMode) +2024-09-08 15:11:38,637 [main] ERROR AttributeValidator - Found 5 CIM attributes that should be public - CIM attributes that should be public: +2024-09-08 15:11:38,637 [main] ERROR AttributeValidator - WG13 CIM protected Primitive attribute Domain::AbsoluteDateTime.protectedAttribute +2024-09-08 15:11:38,637 [main] ERROR AttributeValidator - WG13 CIM private Primitive attribute Core::BaseVoltage.privateDummy +2024-09-08 15:11:38,637 [main] ERROR AttributeValidator - WG13 CIM package Primitive attribute Core::BaseVoltage.packagePrivateIsDC +2024-09-08 15:11:38,638 [main] ERROR AttributeValidator - WG13 CIM protected CIMDatatype attribute Core::BaseVoltage.protectedNominalVoltage +2024-09-08 15:11:38,638 [main] ERROR AttributeValidator - OTHER_CIM CIM private Primitive attribute <> Ext1::Apple.shouldNotBeEnum +2024-09-08 15:11:38,638 [main] ERROR AttributeValidator - Found 1 attributes that are static but not const (i.e., undefined value for all instances of the class) - make attribute const: +2024-09-08 15:11:38,638 [main] ERROR AttributeValidator - WG13 CIM enumeration attribute Domain::ActivePowerChangeRate.unit +2024-09-08 15:11:38,638 [main] ERROR AttributeValidator - Found 1 CIM attributes that are not 'static const' but have init value - remove init value OR make the attribute static const: +2024-09-08 15:11:38,638 [main] ERROR AttributeValidator - WG14 CIM enumeration attribute Other::BadDatatypes.unit +2024-09-08 15:11:38,638 [main] ERROR AttributeValidator - Found 1 attributes that are const but not static (i.e., each instance of the class has same const value) - remove const qualifier OR make attribute static: +2024-09-08 15:11:38,638 [main] ERROR AttributeValidator - WG14 CIM Compound attribute Other::AnotherBadDatatype.multiplier +2024-09-08 15:11:38,638 [main] ERROR AttributeValidator - Found 6 attributes with unallowed stereotype(s) - remove offending stereotype(s) OR use one or more of {CIM=[deprecated, informative, enum], IEC61850=[deprecated, informative, enum]}: +2024-09-08 15:11:38,638 [main] ERROR AttributeValidator - WG13 CIM literal <> Core::BreakerConfiguration.noBreaker : offending stereotypes = [European] +2024-09-08 15:11:38,638 [main] ERROR AttributeValidator - OTHER_CIM CIM literal <> Ext1::FruitBinKind.plastic : offending stereotypes = [European] +2024-09-08 15:11:38,638 [main] ERROR AttributeValidator - WG13 CIM Primitive attribute <> Domain::ActivePower.value : offending stereotypes = [custom, invalid, European] +2024-09-08 15:11:38,638 [main] ERROR AttributeValidator - WG13 CIM enumeration attribute <> Domain::ActivePower.multiplier : offending stereotypes = [European] +2024-09-08 15:11:38,638 [main] ERROR AttributeValidator - WG14 CIM Primitive attribute <> Other::AnotherBadDatatype.unit : offending stereotypes = [unallowed] +2024-09-08 15:11:38,639 [main] ERROR AttributeValidator - OTHER_CIM CIM INF Compound attribute <> Ext1::Pear.typeIsInformative : offending stereotypes = [European] +2024-09-08 15:11:38,639 [main] ERROR AttributeValidator - Found 1 attributes that have enum stereotype, but belong to a class that is not an enumerated type - remove enum stereotype: +2024-09-08 15:11:38,639 [main] ERROR AttributeValidator - OTHER_CIM CIM private Primitive attribute <> Ext1::Apple.shouldNotBeEnum +2024-09-08 15:11:38,639 [main] ERROR AttributeValidator - Found 1 CIM attributes whose type is wrongly used as type for attribute - replace attribute with association, or change type for attribute: +2024-09-08 15:11:38,639 [main] ERROR AttributeValidator - OTHER_CIM CIM INF attribute Informative::HasIllegalTypeForAttr.dummy +2024-09-08 15:11:38,639 [main] DEBUG AttributeValidator - Found 0 normative attributes whose type is an informative class - promote class to normative or make attribute informative. +2024-09-08 15:11:38,639 [main] ERROR AttributeValidator - Found 2 attribute with unallowed tag names - remove tags: +2024-09-08 15:11:38,639 [main] ERROR AttributeValidator - WG13 CIM Primitive attribute Domain::ApparentPower.value : [tag] +2024-09-08 15:11:38,639 [main] ERROR AttributeValidator - WG10 IEC61850 PackedEnumFCDA attribute CDCStatusInfo::DPS.subVal : [secondTagName] +2024-09-08 15:11:38,639 [main] ERROR AttributeValidator - Found 1 IEC61850-7-3 (FCDA) attributes that have moveAfter tag, but its value is the name of inexisting sibling attribute - set value of moveAfter tag, to an inexisting sibling attribute: +2024-09-08 15:11:38,639 [main] ERROR AttributeValidator - WG10 IEC61850 PackedEnumFCDA attribute CDCStatusInfo::DPS.subVal : inexisting sibling 'wrongsubEna', use one of [stVal, q, t, subEna, subQ, blkEna, dU, cdcNs, objRef, objName, parent] +2024-09-08 15:11:38,639 [main] WARN AttributeValidator - Found 2 attributes that have word 'flag'. - rename (by removing word 'flag') and if they are not already Boolean, change their type: +2024-09-08 15:11:38,639 [main] WARN AttributeValidator - WG13 CIM Primitive attribute Core::Bay.bayEnergyMeasFlag +2024-09-08 15:11:38,640 [main] WARN AttributeValidator - WG13 CIM Primitive attribute Core::Bay.bayPowerMeasFlag +2024-09-08 15:11:38,640 [main] WARN AttributeValidator - Found 111 attributes missing documentation - add documentation: +2024-09-08 15:11:38,640 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitMultiplier.none +2024-09-08 15:11:38,640 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::WithSingleLiteral.singleLiteral +2024-09-08 15:11:38,640 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::YesNo.Yes +2024-09-08 15:11:38,640 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::YesNo.No +2024-09-08 15:11:38,640 [main] WARN AttributeValidator - WG13 CIM literal <> Core::BreakerConfiguration.singleBreaker +2024-09-08 15:11:38,640 [main] WARN AttributeValidator - WG13 CIM literal <> Core::BreakerConfiguration.breakerAndAHalf +2024-09-08 15:11:38,640 [main] WARN AttributeValidator - WG13 CIM literal <> Core::BreakerConfiguration.doubleBreaker +2024-09-08 15:11:38,640 [main] WARN AttributeValidator - WG13 CIM literal <> Core::BreakerConfiguration.noBreaker +2024-09-08 15:11:38,640 [main] WARN AttributeValidator - WG13 CIM literal <> Core::BusbarConfiguration.singleBus +2024-09-08 15:11:38,640 [main] WARN AttributeValidator - WG13 CIM literal <> Core::BusbarConfiguration.doubleBus +2024-09-08 15:11:38,640 [main] WARN AttributeValidator - WG13 CIM literal <> Core::BusbarConfiguration.mainWithTransfer +2024-09-08 15:11:38,640 [main] WARN AttributeValidator - WG13 CIM literal <> Core::BusbarConfiguration.ringBus +2024-09-08 15:11:38,641 [main] WARN AttributeValidator - WG13 CIM literal <> Core::PhaseCode.ABCN +2024-09-08 15:11:38,641 [main] WARN AttributeValidator - WG13 CIM literal <> Core::PhaseCode.ABC +2024-09-08 15:11:38,641 [main] WARN AttributeValidator - WG13 CIM literal <> Core::PhaseCode.ABN +2024-09-08 15:11:38,641 [main] WARN AttributeValidator - WG13 CIM literal <> Core::PhaseCode.ACN +2024-09-08 15:11:38,641 [main] WARN AttributeValidator - WG13 CIM literal <> Core::PhaseCode.BCN +2024-09-08 15:11:38,641 [main] WARN AttributeValidator - WG13 CIM literal <> Core::PhaseCode.AB +2024-09-08 15:11:38,641 [main] WARN AttributeValidator - WG13 CIM literal <> Core::PhaseCode.AC +2024-09-08 15:11:38,641 [main] WARN AttributeValidator - WG13 CIM literal <> Core::PhaseCode.BC +2024-09-08 15:11:38,641 [main] WARN AttributeValidator - WG13 CIM literal <> Core::PhaseCode.AN +2024-09-08 15:11:38,641 [main] WARN AttributeValidator - WG13 CIM literal <> Core::PhaseCode.BN +2024-09-08 15:11:38,641 [main] WARN AttributeValidator - WG13 CIM literal <> Core::PhaseCode.CN +2024-09-08 15:11:38,641 [main] WARN AttributeValidator - WG13 CIM literal <> Core::PhaseCode.A +2024-09-08 15:11:38,641 [main] WARN AttributeValidator - WG13 CIM literal <> Core::PhaseCode.B +2024-09-08 15:11:38,641 [main] WARN AttributeValidator - WG13 CIM literal <> Core::PhaseCode.C +2024-09-08 15:11:38,641 [main] WARN AttributeValidator - WG13 CIM literal <> Core::PhaseCode.N +2024-09-08 15:11:38,642 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithSomeIntCodes.lit10 +2024-09-08 15:11:38,642 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithSomeIntCodes.lit20noCode +2024-09-08 15:11:38,642 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithSomeIntCodes.lit30 +2024-09-08 15:11:38,642 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithSomeIntCodes.lit40 +2024-09-08 15:11:38,642 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithSomeIntCodes.lit50 +2024-09-08 15:11:38,642 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithSomeIntCodes.lit60noCode +2024-09-08 15:11:38,642 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithSomeIntCodes.lit70 +2024-09-08 15:11:38,642 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithStringCodes.str1 +2024-09-08 15:11:38,642 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithStringCodes.str2 +2024-09-08 15:11:38,642 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithStringCodes.str3noCode +2024-09-08 15:11:38,642 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithStringCodes.str4 +2024-09-08 15:11:38,642 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithStringCodes.str5 +2024-09-08 15:11:38,642 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c1 +2024-09-08 15:11:38,643 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c2 +2024-09-08 15:11:38,643 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c3 +2024-09-08 15:11:38,643 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c4 +2024-09-08 15:11:38,643 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c5 +2024-09-08 15:11:38,643 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c6 +2024-09-08 15:11:38,643 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c7 +2024-09-08 15:11:38,643 [main] WARN AttributeValidator - WG13 CIM literal <> TestEnums::EnumWithNonUniqueCodes.c8 +2024-09-08 15:11:38,643 [main] WARN AttributeValidator - OTHER_CIM CIM literal <> Ext1::FruitBinKind.plastic +2024-09-08 15:11:38,643 [main] WARN AttributeValidator - OTHER_CIM CIM literal <> Ext1::FruitBinKind.straw +2024-09-08 15:11:38,643 [main] WARN AttributeValidator - OTHER_CIM CIM literal <> Ext1::FruitBinKind.glass +2024-09-08 15:11:38,643 [main] WARN AttributeValidator - WG13 CIM Primitive attribute Topology::TopologicalIsland.constrained5 +2024-09-08 15:11:38,643 [main] WARN AttributeValidator - WG13 CIM Primitive attribute Topology::TopologicalIsland.nonConstrained +2024-09-08 15:11:38,643 [main] WARN AttributeValidator - WG14 CIM Primitive attribute Other::MyClass.value +2024-09-08 15:11:38,644 [main] WARN AttributeValidator - WG14 CIM Primitive attribute Other::Equipment.myExtension +2024-09-08 15:11:38,644 [main] WARN AttributeValidator - WG14 CIM Primitive attribute Other::NonEmptyPrimitive.value +2024-09-08 15:11:38,644 [main] WARN AttributeValidator - WG10 IEC61850 attribute WG10::WG10UMLVersion.version +2024-09-08 15:11:38,644 [main] WARN AttributeValidator - WG10 IEC61850 attribute WG10::WG10UMLVersion.date +2024-09-08 15:11:38,644 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenCommonDataClass.CDC-ID +2024-09-08 15:11:38,644 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenConstructedType.DA-ID +2024-09-08 15:11:38,644 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenDataAttribute.DAName +2024-09-08 15:11:38,644 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenDataAttribute.DARef +2024-09-08 15:11:38,644 [main] WARN AttributeValidator - WG10 IEC61850 enumeration attribute GenericModel::GenDataAttribute.FC +2024-09-08 15:11:38,644 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenDataAttribute.TrgOp +2024-09-08 15:11:38,644 [main] WARN AttributeValidator - WG10 IEC61850 enumeration attribute GenericModel::GenDataAttribute.Presence +2024-09-08 15:11:38,644 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenDataObject.DOName +2024-09-08 15:11:38,645 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenDataObject.DORef +2024-09-08 15:11:38,645 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenDataObject.Transient +2024-09-08 15:11:38,645 [main] WARN AttributeValidator - WG10 IEC61850 enumeration attribute GenericModel::GenDataObject.Presence +2024-09-08 15:11:38,645 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenDataSet.DSName +2024-09-08 15:11:38,645 [main] WARN AttributeValidator - WG10 IEC61850 enumeration attribute GenericModel::GenFCD.FC +2024-09-08 15:11:38,645 [main] WARN AttributeValidator - WG10 IEC61850 enumeration attribute GenericModel::GenFCDA.FC +2024-09-08 15:11:38,645 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenFile.FileRef +2024-09-08 15:11:38,645 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenFile.FileSize +2024-09-08 15:11:38,645 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenFile.LastModified +2024-09-08 15:11:38,645 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenLogicalDevice.LDName +2024-09-08 15:11:38,645 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenLogicalNode.LNName +2024-09-08 15:11:38,645 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenLogicalNode.LNRef +2024-09-08 15:11:38,645 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenSubDataAttribute.SubDAName +2024-09-08 15:11:38,646 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenSubDataAttribute.SubDARef +2024-09-08 15:11:38,646 [main] WARN AttributeValidator - WG10 IEC61850 enumeration attribute GenericModel::GenSubDataAttribute.FC +2024-09-08 15:11:38,646 [main] WARN AttributeValidator - WG10 IEC61850 enumeration attribute GenericModel::GenSubDataAttribute.Presence +2024-09-08 15:11:38,646 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenSubDataObject.SDOName +2024-09-08 15:11:38,646 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenSubDataObject.SDORef +2024-09-08 15:11:38,646 [main] WARN AttributeValidator - WG10 IEC61850 enumeration attribute GenericModel::GenSubDataObject.Presence +2024-09-08 15:11:38,646 [main] WARN AttributeValidator - WG10 IEC61850 attribute GenericModel::GenTPAA.AssociationId +2024-09-08 15:11:38,646 [main] WARN AttributeValidator - WG10 IEC61850 attribute IEC61850_7_2::IEC61850_7_2Namespace.id +2024-09-08 15:11:38,646 [main] WARN AttributeValidator - WG10 IEC61850 attribute IEC61850_7_2::IEC61850_7_2Namespace.version +2024-09-08 15:11:38,646 [main] WARN AttributeValidator - WG10 IEC61850 attribute IEC61850_7_2::IEC61850_7_2Namespace.revision +2024-09-08 15:11:38,646 [main] WARN AttributeValidator - WG10 IEC61850 attribute IEC61850_7_2::IEC61850_7_2Namespace.date +2024-09-08 15:11:38,646 [main] WARN AttributeValidator - WG10 IEC61850 attribute IEC61850_7_2::IEC61850_7_2Namespace.name +2024-09-08 15:11:38,646 [main] WARN AttributeValidator - WG10 IEC61850 enumeration attribute ObjectReferences::LOGReference.FC +2024-09-08 15:11:38,646 [main] WARN AttributeValidator - WG10 IEC61850 attribute IEC61850_7_3::IEC61850_7_3Namespace.id +2024-09-08 15:11:38,646 [main] WARN AttributeValidator - WG10 IEC61850 attribute IEC61850_7_3::IEC61850_7_3Namespace.version +2024-09-08 15:11:38,646 [main] WARN AttributeValidator - WG10 IEC61850 attribute IEC61850_7_3::IEC61850_7_3Namespace.revision +2024-09-08 15:11:38,646 [main] WARN AttributeValidator - WG10 IEC61850 attribute IEC61850_7_3::IEC61850_7_3Namespace.date +2024-09-08 15:11:38,646 [main] WARN AttributeValidator - WG10 IEC61850 attribute IEC61850_7_4::IEC61850_7_4Namespace.id +2024-09-08 15:11:38,647 [main] WARN AttributeValidator - WG10 IEC61850 attribute IEC61850_7_4::IEC61850_7_4Namespace.version +2024-09-08 15:11:38,647 [main] WARN AttributeValidator - WG10 IEC61850 attribute IEC61850_7_4::IEC61850_7_4Namespace.revision +2024-09-08 15:11:38,647 [main] WARN AttributeValidator - WG10 IEC61850 attribute IEC61850_7_4::IEC61850_7_4Namespace.date +2024-09-08 15:11:38,647 [main] WARN AttributeValidator - WG10 IEC61850 attribute IEC61850_7_4::IEC61850_7_4Namespace.name +2024-09-08 15:11:38,647 [main] WARN AttributeValidator - WG10 IEC61850 enumerated DO LNGroupL::LLN0.Beh +2024-09-08 15:11:38,647 [main] WARN AttributeValidator - WG17 IEC61850 attribute WG17::WG17UMLVersion.version +2024-09-08 15:11:38,647 [main] WARN AttributeValidator - WG17 IEC61850 attribute WG17::WG17UMLVersion.date +2024-09-08 15:11:38,647 [main] WARN AttributeValidator - WG17 IEC61850 attribute IEC51850_7_420::IEC61850_7_420Namespace.id +2024-09-08 15:11:38,647 [main] WARN AttributeValidator - WG17 IEC61850 attribute IEC51850_7_420::IEC61850_7_420Namespace.version +2024-09-08 15:11:38,647 [main] WARN AttributeValidator - WG17 IEC61850 attribute IEC51850_7_420::IEC61850_7_420Namespace.revision +2024-09-08 15:11:38,647 [main] WARN AttributeValidator - WG17 IEC61850 attribute IEC51850_7_420::IEC61850_7_420Namespace.date +2024-09-08 15:11:38,647 [main] WARN AttributeValidator - WG17 IEC61850 attribute IEC51850_7_420::IEC61850_7_420Namespace.tissuesApplied +2024-09-08 15:11:38,647 [main] WARN AttributeValidator - WG17 IEC61850 enumeration attribute DerivedDAs_7_420::Other.val +2024-09-08 15:11:38,647 [main] WARN AttributeValidator - OTHER_CIM CIM private Primitive attribute <> Ext1::Apple.shouldNotBeEnum +2024-09-08 15:11:38,647 [main] WARN AttributeValidator - OTHER_CIM CIM CIMDatatype attribute Package with space::My class._attr +2024-09-08 15:11:38,647 [main] WARN AttributeValidator - Found 5 attributes whose documentation starts with unallowed character - fix the first character: valid ones are any upper case letter or punctuation marks [', ", (]: +2024-09-08 15:11:38,648 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.s-1 : doc='per second' +2024-09-08 15:11:38,648 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.Hz-1 : doc='per Hertz' +2024-09-08 15:11:38,648 [main] WARN AttributeValidator - WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.ppm : doc='ppm' +2024-09-08 15:11:38,648 [main] WARN AttributeValidator - WG13 CIM CIMDatatype attribute Core::BasePower.basePower : doc='definition of base power.' +2024-09-08 15:11:38,648 [main] WARN AttributeValidator - WG10 IEC61850 attribute ObjectReferences::FILEReference.FileName : doc='name of a FILE instance, unamb...' +2024-09-08 15:11:38,648 [main] WARN AttributeValidator - Found 62 attributes whose documentation does not end with a dot ('.') - fix the last character: add a dot: +2024-09-08 15:11:38,648 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::Currency.USD : doc='US dollar' +2024-09-08 15:11:38,648 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::Currency.EUR : doc='European euro' +2024-09-08 15:11:38,648 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::Currency.AUD : doc='Australian dollar' +2024-09-08 15:11:38,648 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::Currency.CAD : doc='Canadian dollar' +2024-09-08 15:11:38,648 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::Currency.CHF : doc='Swiss francs' +2024-09-08 15:11:38,648 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::Currency.CNY : doc='Chinese yuan renminbi' +2024-09-08 15:11:38,648 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::Currency.DKK : doc='Danish crown' +2024-09-08 15:11:38,648 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::Currency.GBP : doc='British pound' +2024-09-08 15:11:38,649 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::Currency.JPY : doc='Japanese yen' +2024-09-08 15:11:38,649 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::Currency.NOK : doc='Norwegian crown' +2024-09-08 15:11:38,649 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::Currency.RUR : doc='Russian ruble' +2024-09-08 15:11:38,649 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::Currency.SEK : doc='Swedish crown' +2024-09-08 15:11:38,649 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::Currency.INR : doc='India rupees' +2024-09-08 15:11:38,649 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitMultiplier.p : doc='Pico 10-12' +2024-09-08 15:11:38,649 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitMultiplier.n : doc='Nano 10-9' +2024-09-08 15:11:38,649 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitMultiplier.micro : doc='Micro 10**-6' +2024-09-08 15:11:38,649 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitMultiplier.m : doc='Milli 10**-3' +2024-09-08 15:11:38,649 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitMultiplier.c : doc='Centi 10**-2' +2024-09-08 15:11:38,649 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitMultiplier.d : doc='Deci 10**-1' +2024-09-08 15:11:38,649 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitMultiplier.k : doc='Kilo 10**3' +2024-09-08 15:11:38,649 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitMultiplier.M : doc='Mega 10**6' +2024-09-08 15:11:38,649 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitMultiplier.G : doc='Giga 10**9' +2024-09-08 15:11:38,649 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitMultiplier.T : doc='Tera 10**12' +2024-09-08 15:11:38,650 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.VA : doc='Apparent power in volt ampere' +2024-09-08 15:11:38,650 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.W : doc='Active power in watt' +2024-09-08 15:11:38,650 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.VAr : doc='... power in volt ampere reactive' +2024-09-08 15:11:38,650 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.VAh : doc='...nt energy in volt ampere hours' +2024-09-08 15:11:38,650 [main] WARN AttributeValidator - WG13 CIM literal Domain::UnitSymbol.Wh : doc='Real energy in what hours' +2024-09-08 15:11:38,650 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.VArh : doc='... in volt ampere reactive hours' +2024-09-08 15:11:38,650 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.V : doc='Voltage in volt' +2024-09-08 15:11:38,650 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.ohm : doc='Resistance in ohm' +2024-09-08 15:11:38,650 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.A : doc='Current in ampere' +2024-09-08 15:11:38,650 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.F : doc='Capacitance in farad' +2024-09-08 15:11:38,650 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.H : doc='Inductance in henry' +2024-09-08 15:11:38,650 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.ºC : doc='...temperature in degrees Celsius' +2024-09-08 15:11:38,650 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.s : doc='Time in seconds' +2024-09-08 15:11:38,651 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.min : doc='Time in minutes' +2024-09-08 15:11:38,651 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.h : doc='Time in hours' +2024-09-08 15:11:38,651 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.deg : doc='Plane angle in degrees' +2024-09-08 15:11:38,651 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.rad : doc='Plane angle in radians' +2024-09-08 15:11:38,651 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.J : doc='Energy in joule' +2024-09-08 15:11:38,651 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.N : doc='Force in newton' +2024-09-08 15:11:38,651 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.S : doc='Conductance in siemens' +2024-09-08 15:11:38,651 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.Hz : doc='Frequency in hertz' +2024-09-08 15:11:38,651 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.g : doc='Mass in gram' +2024-09-08 15:11:38,651 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.Pa : doc='Pressure in pascal (n/m2)' +2024-09-08 15:11:38,651 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.m : doc='Length in meter' +2024-09-08 15:11:38,651 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.m2 : doc='Area in square meters' +2024-09-08 15:11:38,652 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.m3 : doc='Volume in cubic meters' +2024-09-08 15:11:38,652 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.V/VAr : doc='Volt per volt ampere reactive' +2024-09-08 15:11:38,652 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.W/Hz : doc='Watt per hertz' +2024-09-08 15:11:38,652 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.J/s : doc='Joule per second' +2024-09-08 15:11:38,652 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.s-1 : doc='per second' +2024-09-08 15:11:38,652 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.kg/J : doc='Mass per energy' +2024-09-08 15:11:38,652 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.W/s : doc='Watt per second' +2024-09-08 15:11:38,652 [main] WARN AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.Hz-1 : doc='per Hertz' +2024-09-08 15:11:38,652 [main] WARN AttributeValidator - WG13 CIM literal <> Topology::TestEnum.µ : doc='(note) bold µ' +2024-09-08 15:11:38,652 [main] WARN AttributeValidator - WG13 CIM Primitive attribute Core::Terminal.connected : doc='... other aspect of the algorithm' +2024-09-08 15:11:38,652 [main] WARN AttributeValidator - WG13 CIM CIMDatatype attribute Core::VoltageLevel.highVoltageLimit : doc='...e bus bar's high voltage limit' +2024-09-08 15:11:38,652 [main] WARN AttributeValidator - WG13 CIM CIMDatatype attribute Core::VoltageLevel.lowVoltageLimit : doc='...he bus bar's low voltage limit' +2024-09-08 15:11:38,652 [main] WARN AttributeValidator - WG14 CIM CIMDatatype attribute IEC61968::IEC61968Version.date : doc='...09-01-05 (not ending with dot)' +2024-09-08 15:11:38,652 [main] WARN AttributeValidator - WG10 IEC61850 basic attribute ObjectReferences::FCDAReference.NumArrayElement : doc='...AttributeName(NumArrayElement)' +2024-09-08 15:11:38,652 [main] ERROR AttributeValidator - Found 11 CIM attributes whose name contains illegal character(s) - rename by removing invalid character(s): +2024-09-08 15:11:38,652 [main] ERROR AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.ºC : invalid characters = [º] +2024-09-08 15:11:38,653 [main] ERROR AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.V/VAr : invalid characters = [/] +2024-09-08 15:11:38,653 [main] ERROR AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.W/Hz : invalid characters = [/] +2024-09-08 15:11:38,653 [main] ERROR AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.J/s : invalid characters = [/] +2024-09-08 15:11:38,653 [main] ERROR AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.s-1 : invalid characters = [-] +2024-09-08 15:11:38,653 [main] ERROR AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.kg/J : invalid characters = [/] +2024-09-08 15:11:38,653 [main] ERROR AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.W/s : invalid characters = [/] +2024-09-08 15:11:38,653 [main] ERROR AttributeValidator - WG13 CIM literal <> Domain::UnitSymbol.Hz-1 : invalid characters = [-] +2024-09-08 15:11:38,653 [main] ERROR AttributeValidator - WG13 CIM literal <> Topology::TestEnum.J/m² : invalid characters = [/, ²] +2024-09-08 15:11:38,653 [main] ERROR AttributeValidator - WG13 CIM literal <> Topology::TestEnum.µ : invalid characters = [µ] +2024-09-08 15:11:38,653 [main] ERROR AttributeValidator - OTHER_CIM CIM CIMDatatype attribute Package with space::My class._attr : invalid characters = [_] +2024-09-08 15:11:38,653 [main] DEBUG AttributeValidator - Found 0 IEC61850 attributes whose name contains illegal character(s) - rename by removing invalid character(s). +2024-09-08 15:11:38,653 [main] ERROR AttributeValidator - Found 3 IEC61850-7-4xx attributes (DO) that have too long name - rename the DO: +2024-09-08 15:11:38,653 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LogicalNodes::EquipmentInterfaceLN.EEHealthAlmClc : (+2) +2024-09-08 15:11:38,653 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LNGroupL::LPHD.RsStatAlmMthClc : (+3) +2024-09-08 15:11:38,653 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LNGroupL::LPHD.StatAlmMthClc : (+1) +2024-09-08 15:11:38,654 [main] ERROR AttributeValidator - Found 1 IEC61850-7-3 (FCDA) multi-valued attributes that are missing minIdx and/or maxIdx constraint(s) - add the missing attribute constraint(s): +2024-09-08 15:11:38,654 [main] ERROR AttributeValidator - WG10 IEC61850 FCDA attribute CDCStatusInfo::HST.hstVal : missing minIdx +2024-09-08 15:11:38,654 [main] ERROR AttributeValidator - Found 1 attributes (whose type is enumerated type) that use an inexisting enum literal as initial value - change initial value to an existing enum literal: +2024-09-08 15:11:38,654 [main] ERROR AttributeValidator - WG14 CIM enumeration attribute Other::BadDatatypes.unit : valid literals = [VA, W, VAr, VAh, Wh, VArh, V, ohm, A, F, H, ºC, s, min, h, deg, rad, J, N, S, none, Hz, g, Pa, m, m2, m3, V/VAr, W/Hz, J/s, s-1, kg/J, W/s, Hz-1] +2024-09-08 15:11:38,654 [main] ERROR AttributeValidator - Found 35 (GROUP 1) IEC61850-7-4xx (DO) attributes with names containing undefined abbreviations - add missing abbreviation OR rename the DO (and create a Tissue): +2024-09-08 15:11:38,654 [main] ERROR AttributeValidator - WG10 IEC61850 data object LogicalNodes::DomainLN.NamPlt : [{NamPlt=?}] +2024-09-08 15:11:38,654 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LogicalNodes::DomainLN.Health : [{Health=?}] +2024-09-08 15:11:38,654 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LogicalNodes::DomainLN.Mod : [{Mod=?}] +2024-09-08 15:11:38,654 [main] ERROR AttributeValidator - WG10 IEC61850 data object LogicalNodes::DomainLN.CntRs : [{CntRs=?}] +2024-09-08 15:11:38,654 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LogicalNodes::StatisticsLN.ClcExp : [{ClcExp=?}] +2024-09-08 15:11:38,654 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LogicalNodes::StatisticsLN.ClcMth : [{ClcMth=?}] +2024-09-08 15:11:38,654 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LogicalNodes::EquipmentInterfaceLN.EEHealthAlmClc : [{EEHealth=?}, {Alm=Alarm}, {Clc=?}] +2024-09-08 15:11:38,654 [main] ERROR AttributeValidator - WG10 IEC61850 data object LNGroupL::KXYZ.TotW : [{TotW=?}] +2024-09-08 15:11:38,654 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LNGroupL::KXYZ.WrongA : [{Wrong=?}, {A=Current}] +2024-09-08 15:11:38,654 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LNGroupL::KXYZ.CorrectA : [{Correct=?}, {A=Current}] +2024-09-08 15:11:38,655 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LNGroupL::LPHD.PhyHealth : [{PhyHealth=?}] +2024-09-08 15:11:38,655 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LNGroupL::LPHD.RsStatAlmMthClc : [{RsStat=?}, {Alm=Alarm}, {MthClc=?}] +2024-09-08 15:11:38,655 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LNGroupL::LPHD.StatAlmMthClc : [{Stat=?}, {Alm=Alarm}, {MthClc=?}] +2024-09-08 15:11:38,655 [main] ERROR AttributeValidator - WG10 IEC61850 data object LNGroupL::LLN0.NamPlt : [{NamPlt=?}] +2024-09-08 15:11:38,655 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LNGroupL::LLN0.Beh : [{Beh=?}] +2024-09-08 15:11:38,656 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LNGroupL::LLN0.Health : [{Health=?}] +2024-09-08 15:11:38,656 [main] ERROR AttributeValidator - WG10 IEC61850 data object LNGroupC::CALH.GrAlm : [{Gr=?}, {Alm=Alarm}] +2024-09-08 15:11:38,656 [main] ERROR AttributeValidator - WG10 IEC61850 data object LNGroupC::CALH.GrWrn : [{GrWrn=?}] +2024-09-08 15:11:38,656 [main] ERROR AttributeValidator - WG10 IEC61850 data object LNGroupC::CALH.ModBeh : [{ModBeh=?}] +2024-09-08 15:11:38,656 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LNGroupG::GGIO.EEHealth : [{EEHealth=?}] +2024-09-08 15:11:38,656 [main] ERROR AttributeValidator - WG10 IEC61850 data object LNGroupG::GGIO.AnIn : [{A=Current}, {nIn=?}] +2024-09-08 15:11:38,656 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LNGroupG::GGIO.DPCSO : [{DPCSO=?}] +2024-09-08 15:11:38,656 [main] ERROR AttributeValidator - WG10 IEC61850 data object LNGroupM::MMXU.TotW : [{TotW=?}] +2024-09-08 15:11:38,656 [main] ERROR AttributeValidator - WG10 IEC61850 data object LNGroupM::MMXU.Desc : [{Desc=?}] +2024-09-08 15:11:38,656 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LNGroupP::ProtectionLN.OpCntRs : [{OpCntRs=?}] +2024-09-08 15:11:38,656 [main] ERROR AttributeValidator - WG10 IEC61850 data object LNGroupP::PDIF.Str : [{Str=?}] +2024-09-08 15:11:38,656 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LNGroupP::PDIF.Op : [{Op=?}] +2024-09-08 15:11:38,656 [main] ERROR AttributeValidator - WG10 IEC61850 data object LNGroupP::PDIS.Str : [{Str=?}] +2024-09-08 15:11:38,656 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LNGroupP::PDIS.Op : [{Op=?}] +2024-09-08 15:11:38,656 [main] ERROR AttributeValidator - WG10 IEC61850 data object LNGroupR::RDIR.Dir : [{Dir=?}] +2024-09-08 15:11:38,656 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LNGroupR::RDIR.TotW : [{TotW=?}] +2024-09-08 15:11:38,656 [main] ERROR AttributeValidator - WG10 IEC61850 data object LNGroupZ::ZAXN.Vol : [{Vol=?}] +2024-09-08 15:11:38,657 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LNGroupZ::ZAXN.Mat : [{Mat=?}] +2024-09-08 15:11:38,657 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LNGroupZ::ZAXN.MatCtl : [{MatCtl=?}] +2024-09-08 15:11:38,657 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LNGroupZ::ZAXN.Oth : [{Oth=?}] +2024-09-08 15:11:38,657 [main] ERROR AttributeValidator - Found 4 CIM attributes whose name starts with an upper case letter - rename attribute(s) to start with lower case letter: +2024-09-08 15:11:38,657 [main] ERROR AttributeValidator - WG13 CIM literal <> Domain::YesNo.Yes +2024-09-08 15:11:38,657 [main] ERROR AttributeValidator - WG13 CIM literal <> Domain::YesNo.No +2024-09-08 15:11:38,657 [main] ERROR AttributeValidator - WG13 CIM literal <> Topology::TestEnum.J/m² +2024-09-08 15:11:38,657 [main] ERROR AttributeValidator - WG13 CIM enumeration attribute Core::Bay.TestYesNo1 +2024-09-08 15:11:38,657 [main] ERROR AttributeValidator - Found 2 CIM attributes that should be singular - rename attribute to singular: +2024-09-08 15:11:38,657 [main] ERROR AttributeValidator - WG13 CIM literal <> Domain::YesNo.Yes +2024-09-08 15:11:38,658 [main] ERROR AttributeValidator - WG13 CIM enumeration attribute Core::ConductingEquipment.phases +2024-09-08 15:11:38,658 [main] WARN AttributeValidator - Found 3 CIM attributes whose name starts with the name of containing class - this is considered redundant, rename attribute by removing the containing class name at the start: +2024-09-08 15:11:38,658 [main] WARN AttributeValidator - WG13 CIM CIMDatatype attribute Core::BasePower.basePower +2024-09-08 15:11:38,658 [main] WARN AttributeValidator - WG13 CIM Primitive attribute Core::Bay.bayEnergyMeasFlag +2024-09-08 15:11:38,658 [main] WARN AttributeValidator - WG13 CIM Primitive attribute Core::Bay.bayPowerMeasFlag +2024-09-08 15:11:38,658 [main] ERROR AttributeValidator - Found 3 abbreviation terms starting with lower case letter; cannot be used as first term in DO name - rename it to start with upper case letter: +2024-09-08 15:11:38,658 [main] ERROR AttributeValidator - WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.aDummy +2024-09-08 15:11:38,658 [main] ERROR AttributeValidator - WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.ppm +2024-09-08 15:11:38,658 [main] ERROR AttributeValidator - WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.km +2024-09-08 15:11:38,658 [main] ERROR AttributeValidator - Found 1 IEC61850-7-4xx (DO) attributes with name starting with lower case letter - rename it to start with upper case letter: +2024-09-08 15:11:38,658 [main] ERROR AttributeValidator - WG10 IEC61850 data object LNGroupL::KXYZ.aDummyAlm +2024-09-08 15:11:38,659 [main] ERROR AttributeValidator - Found 61 attributes with type from prohibited owner according to standard IEC TC57 rules (wrong direction for dependency) - change attribute type OR move the containing class to that owner: +2024-09-08 15:11:38,659 [main] ERROR AttributeValidator - WG13 CIM attribute Domain::ActivePowerChangeRate.value : offending type = NullCIM::NullCIM +2024-09-08 15:11:38,659 [main] ERROR AttributeValidator - WG14 CIM attribute Other::MyClass.curveStyle : offending type = NullCIM::NullCIM +2024-09-08 15:11:38,659 [main] ERROR AttributeValidator - WG14 CIM attribute Other::AttrDuplication.curveStyle : offending type = NullCIM::NullCIM +2024-09-08 15:11:38,659 [main] ERROR AttributeValidator - WG10 IEC61850 attribute WG10::WG10UMLVersion.version : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,659 [main] ERROR AttributeValidator - WG10 IEC61850 attribute WG10::WG10UMLVersion.date : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,659 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_2::IEC61850_7_2Namespace.id : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,659 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_2::IEC61850_7_2Namespace.version : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,659 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_2::IEC61850_7_2Namespace.revision : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,659 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_2::IEC61850_7_2Namespace.date : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,659 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_2::IEC61850_7_2Namespace.name : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,659 [main] ERROR AttributeValidator - WG10 IEC61850 private attribute CoreTypes::ObjectName.val : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,659 [main] ERROR AttributeValidator - WG10 IEC61850 private attribute CoreTypes::P_ObjectReference.val : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,659 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CoreTypes::P_TimeStamp.FractionOfSecond : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,660 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::FILEReference.FileRef : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,660 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::FILEReference.FileName : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,660 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::LDReference.LDRef : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,660 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::NonPersistentDSReference.DSRef : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,660 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::LNReference.LNRef : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,660 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::CDCReference.DataRef : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,660 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::CBReference.CBRef : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,660 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::LOGReference.LogRef : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,660 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::LNOwnedDSReference.DSRef : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,660 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::FCDReference.FCDRef : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,660 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::FCDReference.FCDRefWithoutFC : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,660 [main] ERROR AttributeValidator - WG10 IEC61850 attribute ObjectReferences::FCDAReference.FCDARef : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,660 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CommonAcsiTypes::IPAddress.address : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,660 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CommonAcsiTypes::MulticastAddress.address : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,661 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CommonAcsiTypes::MulticastAddress.priority : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,661 [main] ERROR AttributeValidator - WG10 IEC61850 private attribute CommonAcsiTypes::ReportID.val : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,661 [main] ERROR AttributeValidator - WG10 IEC61850 attribute MetaModel::IED.name : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,661 [main] ERROR AttributeValidator - WG10 IEC61850 attribute MetaModel::SERVER.name : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,661 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_3::IEC61850_7_3Namespace.id : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,661 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_3::IEC61850_7_3Namespace.version : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,661 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_3::IEC61850_7_3Namespace.revision : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,661 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_3::IEC61850_7_3Namespace.date : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,661 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_3::IEC61850_7_3Namespace.name : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,661 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CDCStatusInfo::ACD.dirGeneral : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,661 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CDCAnalogueInfo::CMV.instCVal : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,661 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CDCAnalogueInfo::CMV.subCVal : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,661 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CDCControl::BAC.subVal : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,661 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CDCStatusSet::ENG.setVal : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,661 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CDCStatusSet::ENG._setVal : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,662 [main] ERROR AttributeValidator - WG10 IEC61850 attribute CDCStatusSet::ENG.__setVal : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,662 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_4::IEC61850_7_4Namespace.id : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,662 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_4::IEC61850_7_4Namespace.version : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,662 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_4::IEC61850_7_4Namespace.revision : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,662 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_4::IEC61850_7_4Namespace.date : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,662 [main] ERROR AttributeValidator - WG10 IEC61850 attribute IEC61850_7_4::IEC61850_7_4Namespace.name : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,662 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LNGroupG::GGIO.DPCSO : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,662 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LNGroupP::ProtectionLN.OpCntRs : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,662 [main] ERROR AttributeValidator - WG10 IEC61850 attribute LNGroupZ::ZAXN.Amp : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,662 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LNGroupZ::ZAXN.Mat : offending type = DerivedCDCs_7_420::ENSMaterial +2024-09-08 15:11:38,662 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LNGroupZ::ZAXN.MatCtl : offending type = DerivedCDCs_7_420::ENCMaterial +2024-09-08 15:11:38,662 [main] ERROR AttributeValidator - WG10 IEC61850 enumerated DO LNGroupZ::ZAXN.Oth : offending type = DerivedCDCs_7_420::ENSOther +2024-09-08 15:11:38,662 [main] ERROR AttributeValidator - WG17 IEC61850 attribute WG17::WG17UMLVersion.version : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,662 [main] ERROR AttributeValidator - WG17 IEC61850 attribute WG17::WG17UMLVersion.date : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,662 [main] ERROR AttributeValidator - WG17 IEC61850 attribute IEC51850_7_420::IEC61850_7_420Namespace.id : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,663 [main] ERROR AttributeValidator - WG17 IEC61850 attribute IEC51850_7_420::IEC61850_7_420Namespace.version : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,663 [main] ERROR AttributeValidator - WG17 IEC61850 attribute IEC51850_7_420::IEC61850_7_420Namespace.revision : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,663 [main] ERROR AttributeValidator - WG17 IEC61850 attribute IEC51850_7_420::IEC61850_7_420Namespace.date : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,663 [main] ERROR AttributeValidator - WG17 IEC61850 attribute IEC51850_7_420::IEC61850_7_420Namespace.tissuesApplied : offending type = NullIEC61850::NullIEC61850 +2024-09-08 15:11:38,663 [main] ERROR AttributeValidator - Found 2 (GROUP 2) IEC61850-7-4xx abbreviations present more than once - consolidate all definitions into one abbreviation OR create new abbreviation if definitions differ: +2024-09-08 15:11:38,663 [main] ERROR AttributeValidator - 1 WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.Amp : all definitions for the same name = [{WG10: Current non-phase-related}, {WG18: Duplicated definition: Current non-phase-related}] +2024-09-08 15:11:38,663 [main] ERROR AttributeValidator - 1 WG18 IEC61850 abbreviated term <> Abbreviations_410::AbbrTermA.Amp : all definitions for the same name = [{WG10: Current non-phase-related}, {WG18: Duplicated definition: Current non-phase-related}] +2024-09-08 15:11:38,663 [main] ERROR AttributeValidator - Found 2 (GROUP 5) IEC61850-7-4xx abbreviations with same definition - consolidate all definitions into one abbreviation OR create new abbreviation if definitions differ: +2024-09-08 15:11:38,663 [main] ERROR AttributeValidator - 1 Alarm : all terms for the same definition = [{WG10: Alm}, {WG18: Alm2}] +2024-09-08 15:11:38,663 [main] ERROR AttributeValidator - 1 Alarm : all terms for the same definition = [{WG10: Alm}, {WG18: Alm2}] +2024-09-08 15:11:38,663 [main] ERROR AttributeValidator - Found 8 (GROUP 3) IEC61850-7-4xx abbreviations never used (in name of DO attributes for the chosen scope) - remove unused abbreviations: +2024-09-08 15:11:38,663 [main] ERROR AttributeValidator - WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.Z +2024-09-08 15:11:38,664 [main] ERROR AttributeValidator - WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.Z1 +2024-09-08 15:11:38,664 [main] ERROR AttributeValidator - WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.ppm +2024-09-08 15:11:38,664 [main] ERROR AttributeValidator - WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermAny.km +2024-09-08 15:11:38,664 [main] ERROR AttributeValidator - WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermZ.Z0 +2024-09-08 15:11:38,664 [main] ERROR AttributeValidator - WG10 IEC61850 abbreviated term <> Abbreviations::AbbrTermZ.Zro +2024-09-08 15:11:38,664 [main] ERROR AttributeValidator - WG18 IEC61850 abbreviated term <> Abbreviations_410::AbbrTermA.Abc +2024-09-08 15:11:38,664 [main] ERROR AttributeValidator - WG18 IEC61850 abbreviated term <> Abbreviations_410::AbbrTermA.Alm2 +2024-09-08 15:11:38,664 [main] ERROR AttributeValidator - Found 3 IEC61850-7-4xx (DO) attributes with same names but different type (CDC) - rename (DO) attribute OR change its type (CDC): +2024-09-08 15:11:38,664 [main] ERROR AttributeValidator - 1 TotW : [[WG10 LNGroupL::KXYZ.TotW, WG10 LNGroupM::MMXU.TotW] are CMV, [WG10 LNGroupR::RDIR.TotW] is SPSTransient] +2024-09-08 15:11:38,664 [main] ERROR AttributeValidator - 1 TotW : [[WG10 LNGroupL::KXYZ.TotW, WG10 LNGroupM::MMXU.TotW] are CMV, [WG10 LNGroupR::RDIR.TotW] is SPSTransient] +2024-09-08 15:11:38,664 [main] ERROR AttributeValidator - 1 TotW : [[WG10 LNGroupL::KXYZ.TotW, WG10 LNGroupM::MMXU.TotW] are CMV, [WG10 LNGroupR::RDIR.TotW] is SPSTransient] +2024-09-08 15:11:38,664 [main] ERROR AttributeValidator - Found 7 IEC61850 presence condition literals never used as class constraints - if also not used in the larger scope: remove unused presence condition literals: +2024-09-08 15:11:38,664 [main] ERROR AttributeValidator - WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.AllOnlyOneGroup(n) +2024-09-08 15:11:38,664 [main] ERROR AttributeValidator - WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.OFsg +2024-09-08 15:11:38,664 [main] ERROR AttributeValidator - WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MFsgAtLeastOne +2024-09-08 15:11:38,664 [main] ERROR AttributeValidator - WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.OFnsg +2024-09-08 15:11:38,665 [main] ERROR AttributeValidator - WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.MFnsgAtLeastOne +2024-09-08 15:11:38,665 [main] ERROR AttributeValidator - WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.Mmulti +2024-09-08 15:11:38,665 [main] ERROR AttributeValidator - WG10 IEC61850 presence condition <> PresenceConditions::PresenceCondition.OF(condID) +2024-09-08 15:11:38,665 [main] INFO AbstractValidator - +2024-09-08 15:11:38,665 [main] INFO AbstractValidator - ====== Validating 14 (of 14) operations: +2024-09-08 15:11:38,667 [main] WARN OperationValidator - Found 1 operations that should have name starting with lower case - operations that should have name starting with lower case: +2024-09-08 15:11:38,667 [main] WARN OperationValidator - WG13 CIM operation PowerSystemResource.GetWhatevers +2024-09-08 15:11:38,667 [main] ERROR OperationValidator - Found 1 operations with unallowed stereotype(s) - remove offending stereotype(s) OR use one or more of {CIM=[deprecated, informative, event], IEC61850=[deprecated, informative, event]}: +2024-09-08 15:11:38,667 [main] ERROR OperationValidator - WG13 CIM operation <> PowerSystemResource.setSomething : offending stereotypes = [someStereotype] +2024-09-08 15:11:38,667 [main] ERROR OperationValidator - Found 1 operation parameters with unallowed stereotype(s) - remove offending stereotype(s) OR use one or more of {CIM=[deprecated, informative], IEC61850=[deprecated, informative]}: +2024-09-08 15:11:38,667 [main] ERROR OperationValidator - WG13 CIM array <> PowerSystemResource.GetWhatevers(...BasePower[] multiples...) : offending stereotypes = [parStereo1, parStereo2] +2024-09-08 15:11:38,667 [main] ERROR OperationValidator - Found 5 operations that have as return type the class not present in the model - locate class in the model from the combo-box on operation return type: +2024-09-08 15:11:38,667 [main] ERROR OperationValidator - WG13 CIM operation PowerSystemResource.GetWhatevers : return type is inexisting class ''void' (id=0)' +2024-09-08 15:11:38,668 [main] ERROR OperationValidator - WG13 CIM operation <> PowerSystemResource.bar : return type is inexisting class ''Dumb' (id=0)' +2024-09-08 15:11:38,668 [main] ERROR OperationValidator - WG13 CIM operation PowerSystemResource.foo : return type is inexisting class ''Dumb' (id=0)' +2024-09-08 15:11:38,668 [main] ERROR OperationValidator - WG10 IEC61850 operation Authentication.getPassword : return type is inexisting class ''P_VISIBLE_STRING64' (id=1665)' +2024-09-08 15:11:38,668 [main] ERROR OperationValidator - WG10 IEC61850 operation Authentication.geUserID : return type is inexisting class ''P_VISIBLE_STRING64' (id=1665)' +2024-09-08 15:11:38,668 [main] ERROR OperationValidator - Found 2 operations that have parameters that use for their type classes not present in the model - locate class(es) in the model from the combo-box on operation parameter: +2024-09-08 15:11:38,668 [main] ERROR OperationValidator - (5) WG13 CIM Core::PowerSystemResource operation <> public NullCIM bar(NullCIM par3, Float par2, NullCIM par); tags={someTag=value} : inexisting class(es) = '['NonExisting' (id=0) used as type in parameter 'par3' (0), 'Par' (id=0) used as type in parameter 'par' (2)] +2024-09-08 15:11:38,668 [main] ERROR OperationValidator - (4) WG13 CIM Core::PowerSystemResource operation public NullCIM foo(NullCIM par3, Float par2, NullCIM par); tags={someTag=value} : inexisting class(es) = '['NonExisting' (id=0) used as type in parameter 'par3' (0), 'Par' (id=0) used as type in parameter 'par' (2)] +2024-09-08 15:11:38,668 [main] ERROR OperationValidator - Found 1 operations that have exceptions not present in the model - ensure that values in throws tag correspond to classes present in the model: +2024-09-08 15:11:38,668 [main] ERROR OperationValidator - (1) WG13 CIM Core::PowerSystemResource operation abstract public NullCIM[] GetWhatevers(BasePower[] multiples) throws Dummy,PSRType,Dummy2; tags={throws=Dummy,PSRType,Dummy2, dummyCimTag=on operation} : inexisting class(es) = '['Dummy', 'PSRType', 'Dummy2'] +2024-09-08 15:11:38,668 [main] ERROR OperationValidator - Found 3 operations with unallowed tag names - remove tags: +2024-09-08 15:11:38,668 [main] ERROR OperationValidator - WG13 CIM operation PowerSystemResource.GetWhatevers : [dummyCimTag] +2024-09-08 15:11:38,668 [main] ERROR OperationValidator - WG13 CIM operation <> PowerSystemResource.bar : [someTag] +2024-09-08 15:11:38,668 [main] ERROR OperationValidator - WG13 CIM operation PowerSystemResource.foo : [someTag] +2024-09-08 15:11:38,668 [main] DEBUG OperationValidator - Found 0 operation parameters with unallowed tag names - remove tags. +2024-09-08 15:11:38,668 [main] WARN OperationValidator - Found 5 operations missing documentation - add documentation: +2024-09-08 15:11:38,668 [main] WARN OperationValidator - WG13 CIM operation <> PowerSystemResource.bar +2024-09-08 15:11:38,669 [main] WARN OperationValidator - WG10 IEC61850 operation Authentication.getPassword +2024-09-08 15:11:38,669 [main] WARN OperationValidator - WG10 IEC61850 operation Authentication.geUserID +2024-09-08 15:11:38,669 [main] WARN OperationValidator - WG10 IEC61850 operation Authentication.getViews +2024-09-08 15:11:38,669 [main] WARN OperationValidator - OTHER_CIM CIM operation My class.ope-ration +2024-09-08 15:11:38,669 [main] WARN OperationValidator - Found 6 operation parameters missing documentation - add documentation: +2024-09-08 15:11:38,669 [main] WARN OperationValidator - WG13 CIM simple PowerSystemResource.setSomething(...String name...) +2024-09-08 15:11:38,669 [main] WARN OperationValidator - WG13 CIM simple PowerSystemResource.bar(...NullCIM par3...) +2024-09-08 15:11:38,669 [main] WARN OperationValidator - WG13 CIM simple PowerSystemResource.bar(...NullCIM par...) +2024-09-08 15:11:38,669 [main] WARN OperationValidator - WG10 IEC61850 operation Authentication.getPassword +2024-09-08 15:11:38,669 [main] WARN OperationValidator - WG10 IEC61850 operation Authentication.geUserID +2024-09-08 15:11:38,669 [main] WARN OperationValidator - WG10 IEC61850 operation Authentication.getViews +2024-09-08 15:11:38,669 [main] WARN OperationValidator - Found 1 operations whose documentation starts with unallowed character - fix the first character: valid ones are any upper case letter or punctuation marks [', ", (]: +2024-09-08 15:11:38,669 [main] WARN OperationValidator - WG13 CIM operation PowerSystemResource.GetWhatevers : doc='dummy operation - will be inhe...' +2024-09-08 15:11:38,670 [main] WARN OperationValidator - Found 2 operation parameters whose documentation starts with unallowed character - fix the first character: valid ones are any upper case letter or punctuation marks [', ", (]: +2024-09-08 15:11:38,670 [main] WARN OperationValidator - WG13 CIM simple PowerSystemResource.bar(...Float par2...) : doc='starting with lower case, miss...' +2024-09-08 15:11:38,670 [main] WARN OperationValidator - OTHER_CIM CIM simple My class.ope-ration(...ApparentPower _par...) : doc='doc' +2024-09-08 15:11:38,670 [main] WARN OperationValidator - Found 1 operations whose documentation does not end with a dot ('.') - fix the last character: add a dot: +2024-09-08 15:11:38,670 [main] WARN OperationValidator - WG13 CIM operation PowerSystemResource.GetWhatevers : doc='... end and starts with lowe case' +2024-09-08 15:11:38,670 [main] WARN OperationValidator - Found 3 operation parameters whose documentation does not end with a dot ('.') - fix the last character: add a dot: +2024-09-08 15:11:38,670 [main] WARN OperationValidator - WG13 CIM array <> PowerSystemResource.GetWhatevers(...BasePower[] multiples...) : doc='...nt (but does not end with ".")' +2024-09-08 15:11:38,670 [main] WARN OperationValidator - WG13 CIM simple PowerSystemResource.bar(...Float par2...) : doc='...r case, missing "." at the end' +2024-09-08 15:11:38,670 [main] WARN OperationValidator - OTHER_CIM CIM simple My class.ope-ration(...ApparentPower _par...) : doc='doc' +2024-09-08 15:11:38,670 [main] ERROR OperationValidator - Found 1 operations whose name contains illegal character(s) - rename by removing invalid character(s): +2024-09-08 15:11:38,670 [main] ERROR OperationValidator - OTHER_CIM CIM operation My class.ope-ration : invalid characters = [-] +2024-09-08 15:11:38,670 [main] ERROR OperationValidator - Found 2 operation parameters whose name contains illegal character(s) - rename by removing invalid character(s): +2024-09-08 15:11:38,671 [main] ERROR OperationValidator - OTHER_CIM CIM simple My class.ope-ration(...Boolean other param...) : invalid characters = [ ] +2024-09-08 15:11:38,671 [main] ERROR OperationValidator - OTHER_CIM CIM simple My class.ope-ration(...ApparentPower _par...) : invalid characters = [_] +2024-09-08 15:11:38,671 [main] INFO AbstractValidator - +2024-09-08 15:11:38,671 [main] INFO AbstractValidator - ====== Validating 99 (of 99) associations: +2024-09-08 15:11:38,676 [main] ERROR AssociationValidator - Found 2 associations that should have direction 'unspecified' - change associations direction to 'unspecified': +2024-09-08 15:11:38,676 [main] ERROR AssociationValidator - (116) WG13 CIM aggregation <>, qname='Bay.Substation - Substation.bays', endAsSrc: myEnd: WG13 [0..*] Substation.bays (navigable); otherEnd: WG13 [0..1] Bay.Substation (navigable), endAsTgt: myEnd: WG13 [0..1] Bay.Substation (navigable); otherEnd: WG13 [0..*] Substation.bays (navigable) : direction = 'biDirectional' +2024-09-08 15:11:38,676 [main] ERROR AssociationValidator - (3463) WG13 CIM association <>, qname='PowerSystemResource.Terminal - Terminal.PSR', endAsSrc: myEnd: WG13 [0..1] Terminal.PSR (navigable); otherEnd: WG13 [0..1] PowerSystemResource.Terminal, endAsTgt: myEnd: WG13 [0..1] PowerSystemResource.Terminal; otherEnd: WG13 [0..1] Terminal.PSR (navigable) : direction = 'directed' +2024-09-08 15:11:38,676 [main] ERROR AssociationValidator - Found 1 association ends that should have direction 'Unspecified' - change association end direction to 'Unspecified': +2024-09-08 15:11:38,676 [main] ERROR AssociationValidator - (2122) WG14 CIM association, qname='AttrDuplication.T1 - BadDatatypes.Something', endAsSrc: myEnd: WG14 [0..1] BadDatatypes.Something (non-navigable); otherEnd: WG14 [0..1] AttrDuplication.T1, endAsTgt: myEnd: WG14 [0..1] AttrDuplication.T1; otherEnd: WG14 [0..1] BadDatatypes.Something (non-navigable) : srcNavig='no', targetNavig='unspecified' +2024-09-08 15:11:38,676 [main] WARN AssociationValidator - Found 11 associations that should have empty doc (we document association ends, not association itself) - delete doc of association: +2024-09-08 15:11:38,676 [main] WARN AssociationValidator - (121) WG13 CIM association <>, qname='BaseVoltage.ConductingEquipment - ConductingEquipment.ProtectedBaseVoltage', endAsSrc: myEnd: WG13 (protected) [0..1] ConductingEquipment.ProtectedBaseVoltage; otherEnd: WG13 [0..*] BaseVoltage.ConductingEquipment, endAsTgt: myEnd: WG13 [0..*] BaseVoltage.ConductingEquipment; otherEnd: WG13 (protected) [0..1] ConductingEquipment.ProtectedBaseVoltage : Use association to ConductingE... +2024-09-08 15:11:38,677 [main] WARN AssociationValidator - (115) WG13 CIM aggregation, qname='VoltageLevel.Bays - Bay.VoltageLevel', endAsSrc: myEnd: WG13 <> [0..1] Bay.VoltageLevel; otherEnd: WG13 <> [0..*] VoltageLevel.Bays, endAsTgt: myEnd: WG13 <> [0..*] VoltageLevel.Bays; otherEnd: WG13 <> [0..1] Bay.VoltageLevel : The association is used in the... +2024-09-08 15:11:38,677 [main] WARN AssociationValidator - (116) WG13 CIM aggregation <>, qname='Bay.Substation - Substation.bays', endAsSrc: myEnd: WG13 [0..*] Substation.bays (navigable); otherEnd: WG13 [0..1] Bay.Substation (navigable), endAsTgt: myEnd: WG13 [0..1] Bay.Substation (navigable); otherEnd: WG13 [0..*] Substation.bays (navigable) : The association is used in the... +2024-09-08 15:11:38,677 [main] WARN AssociationValidator - (123) WG13 CIM association NamedWithTagsEverywhere, qname='Terminal.ConductingEquipment - ConductingEquipment.Terminals', tags={CE-TermAssoc=1, MoreAssoc=}, endAsSrc: myEnd: WG13 [0..*] ConductingEquipment.Terminals; tags={Role1=abc}; otherEnd: WG13 [1..1] Terminal.ConductingEquipment; tags={AnotherRole2=abc, targetEndTag=blah, Role2=xyz}, endAsTgt: myEnd: WG13 [1..1] Terminal.ConductingEquipment; tags={AnotherRole2=abc, targetEndTag=blah, Role2=xyz}; otherEnd: WG13 [0..*] ConductingEquipment.Terminals; tags={Role1=abc} : ConductingEquipment has 1 or 2... +2024-09-08 15:11:38,677 [main] WARN AssociationValidator - (88) WG13 CIM aggregation <>, qname='EquipmentContainer.Equipments - Equipment.EquipmentContainer', endAsSrc: myEnd: WG13 [0..1] Equipment.EquipmentContainer; otherEnd: WG13 [0..*] EquipmentContainer.Equipments, endAsTgt: myEnd: WG13 [0..*] EquipmentContainer.Equipments; otherEnd: WG13 [0..1] Equipment.EquipmentContainer : The association is used in the... +2024-09-08 15:11:38,677 [main] WARN AssociationValidator - (90) WG13 CIM aggregation, qname='geographicalRegion.Regions - SubGeographicalRegion.Region', endAsSrc: myEnd: WG13 [0..1] SubGeographicalRegion.Region; otherEnd: WG13 [0..*] geographicalRegion.Regions, endAsTgt: myEnd: WG13 [0..*] geographicalRegion.Regions; otherEnd: WG13 [0..1] SubGeographicalRegion.Region : The association is used in the... +2024-09-08 15:11:38,677 [main] WARN AssociationValidator - (91) WG13 CIM aggregation, qname='SubGeographicalRegion.Substations - Substation.Region', endAsSrc: myEnd: WG13 [0..1] Substation.Region; otherEnd: WG13 [0..*] SubGeographicalRegion.Substations, endAsTgt: myEnd: WG13 [0..*] SubGeographicalRegion.Substations; otherEnd: WG13 [0..1] Substation.Region : The association is used in the... +2024-09-08 15:11:38,677 [main] WARN AssociationValidator - (94) WG13 CIM aggregation, qname='Substation.VoltageLevels - VoltageLevel.Substation', endAsSrc: myEnd: WG13 [1..1] VoltageLevel.Substation; otherEnd: WG13 [0..*] Substation.VoltageLevels, endAsTgt: myEnd: WG13 [0..*] Substation.VoltageLevels; otherEnd: WG13 [1..1] VoltageLevel.Substation : The association is used in the... +2024-09-08 15:11:38,677 [main] WARN AssociationValidator - (229) WG13 CIM association, qname='Terminal.ConnectivityNode - ConnectivityNode.Terminals', endAsSrc: myEnd: WG13 [0..*] ConnectivityNode.Terminals; otherEnd: WG13 [0..1] Terminal.ConnectivityNode, endAsTgt: myEnd: WG13 [0..1] Terminal.ConnectivityNode; otherEnd: WG13 [0..*] ConnectivityNode.Terminals : Terminals interconnect with ze... +2024-09-08 15:11:38,677 [main] WARN AssociationValidator - (235) WG13 CIM aggregation, qname='ConnectivityNode.TopologicalNode - TopologicalNode.ConnectivityNodes', endAsSrc: myEnd: WG13 [0..*] TopologicalNode.ConnectivityNodes; otherEnd: WG13 [0..1] ConnectivityNode.TopologicalNode, endAsTgt: myEnd: WG13 [0..1] ConnectivityNode.TopologicalNode; otherEnd: WG13 [0..*] TopologicalNode.ConnectivityNodes : Several ConnectivityNode(s) ma... +2024-09-08 15:11:38,678 [main] WARN AssociationValidator - (237) WG13 CIM aggregation, qname='TopologicalNode.TopologicalIsland - TopologicalIsland.TopologicalNodes', endAsSrc: myEnd: WG13 [?..?] TopologicalIsland.TopologicalNodes; otherEnd: WG13 [1..1] TopologicalNode.TopologicalIsland, endAsTgt: myEnd: WG13 [1..1] TopologicalNode.TopologicalIsland; otherEnd: WG13 [?..?] TopologicalIsland.TopologicalNodes : A topological node belongs to ... +2024-09-08 15:11:38,680 [main] WARN AssociationValidator - Found 12 associations that have same documentation for both association ends - one side has the wrong focus - change documentation for one association end: +2024-09-08 15:11:38,680 [main] WARN AssociationValidator - (121) WG13 CIM association <>, qname='BaseVoltage.ConductingEquipment - ConductingEquipment.ProtectedBaseVoltage', endAsSrc: myEnd: WG13 (protected) [0..1] ConductingEquipment.ProtectedBaseVoltage; otherEnd: WG13 [0..*] BaseVoltage.ConductingEquipment, endAsTgt: myEnd: WG13 [0..*] BaseVoltage.ConductingEquipment; otherEnd: WG13 (protected) [0..1] ConductingEquipment.ProtectedBaseVoltage : Use association to ConductingE... +2024-09-08 15:11:38,680 [main] WARN AssociationValidator - (115) WG13 CIM aggregation, qname='VoltageLevel.Bays - Bay.VoltageLevel', endAsSrc: myEnd: WG13 <> [0..1] Bay.VoltageLevel; otherEnd: WG13 <> [0..*] VoltageLevel.Bays, endAsTgt: myEnd: WG13 <> [0..*] VoltageLevel.Bays; otherEnd: WG13 <> [0..1] Bay.VoltageLevel : The association is used in the... +2024-09-08 15:11:38,681 [main] WARN AssociationValidator - (116) WG13 CIM aggregation <>, qname='Bay.Substation - Substation.bays', endAsSrc: myEnd: WG13 [0..*] Substation.bays (navigable); otherEnd: WG13 [0..1] Bay.Substation (navigable), endAsTgt: myEnd: WG13 [0..1] Bay.Substation (navigable); otherEnd: WG13 [0..*] Substation.bays (navigable) : The association is used in the... +2024-09-08 15:11:38,681 [main] WARN AssociationValidator - (123) WG13 CIM association NamedWithTagsEverywhere, qname='Terminal.ConductingEquipment - ConductingEquipment.Terminals', tags={CE-TermAssoc=1, MoreAssoc=}, endAsSrc: myEnd: WG13 [0..*] ConductingEquipment.Terminals; tags={Role1=abc}; otherEnd: WG13 [1..1] Terminal.ConductingEquipment; tags={AnotherRole2=abc, targetEndTag=blah, Role2=xyz}, endAsTgt: myEnd: WG13 [1..1] Terminal.ConductingEquipment; tags={AnotherRole2=abc, targetEndTag=blah, Role2=xyz}; otherEnd: WG13 [0..*] ConductingEquipment.Terminals; tags={Role1=abc} : ConductingEquipment has 1 or 2... +2024-09-08 15:11:38,681 [main] WARN AssociationValidator - (88) WG13 CIM aggregation <>, qname='EquipmentContainer.Equipments - Equipment.EquipmentContainer', endAsSrc: myEnd: WG13 [0..1] Equipment.EquipmentContainer; otherEnd: WG13 [0..*] EquipmentContainer.Equipments, endAsTgt: myEnd: WG13 [0..*] EquipmentContainer.Equipments; otherEnd: WG13 [0..1] Equipment.EquipmentContainer : The association is used in the... +2024-09-08 15:11:38,681 [main] WARN AssociationValidator - (90) WG13 CIM aggregation, qname='geographicalRegion.Regions - SubGeographicalRegion.Region', endAsSrc: myEnd: WG13 [0..1] SubGeographicalRegion.Region; otherEnd: WG13 [0..*] geographicalRegion.Regions, endAsTgt: myEnd: WG13 [0..*] geographicalRegion.Regions; otherEnd: WG13 [0..1] SubGeographicalRegion.Region : The association is used in the... +2024-09-08 15:11:38,681 [main] WARN AssociationValidator - (91) WG13 CIM aggregation, qname='SubGeographicalRegion.Substations - Substation.Region', endAsSrc: myEnd: WG13 [0..1] Substation.Region; otherEnd: WG13 [0..*] SubGeographicalRegion.Substations, endAsTgt: myEnd: WG13 [0..*] SubGeographicalRegion.Substations; otherEnd: WG13 [0..1] Substation.Region : The association is used in the... +2024-09-08 15:11:38,681 [main] WARN AssociationValidator - (94) WG13 CIM aggregation, qname='Substation.VoltageLevels - VoltageLevel.Substation', endAsSrc: myEnd: WG13 [1..1] VoltageLevel.Substation; otherEnd: WG13 [0..*] Substation.VoltageLevels, endAsTgt: myEnd: WG13 [0..*] Substation.VoltageLevels; otherEnd: WG13 [1..1] VoltageLevel.Substation : The association is used in the... +2024-09-08 15:11:38,681 [main] WARN AssociationValidator - (229) WG13 CIM association, qname='Terminal.ConnectivityNode - ConnectivityNode.Terminals', endAsSrc: myEnd: WG13 [0..*] ConnectivityNode.Terminals; otherEnd: WG13 [0..1] Terminal.ConnectivityNode, endAsTgt: myEnd: WG13 [0..1] Terminal.ConnectivityNode; otherEnd: WG13 [0..*] ConnectivityNode.Terminals : Terminals interconnect with ze... +2024-09-08 15:11:38,681 [main] WARN AssociationValidator - (235) WG13 CIM aggregation, qname='ConnectivityNode.TopologicalNode - TopologicalNode.ConnectivityNodes', endAsSrc: myEnd: WG13 [0..*] TopologicalNode.ConnectivityNodes; otherEnd: WG13 [0..1] ConnectivityNode.TopologicalNode, endAsTgt: myEnd: WG13 [0..1] ConnectivityNode.TopologicalNode; otherEnd: WG13 [0..*] TopologicalNode.ConnectivityNodes : Several ConnectivityNode(s) ma... +2024-09-08 15:11:38,681 [main] WARN AssociationValidator - (237) WG13 CIM aggregation, qname='TopologicalNode.TopologicalIsland - TopologicalIsland.TopologicalNodes', endAsSrc: myEnd: WG13 [?..?] TopologicalIsland.TopologicalNodes; otherEnd: WG13 [1..1] TopologicalNode.TopologicalIsland, endAsTgt: myEnd: WG13 [1..1] TopologicalNode.TopologicalIsland; otherEnd: WG13 [?..?] TopologicalIsland.TopologicalNodes : A topological node belongs to ... +2024-09-08 15:11:38,681 [main] WARN AssociationValidator - (2122) WG14 CIM association, qname='AttrDuplication.T1 - BadDatatypes.Something', endAsSrc: myEnd: WG14 [0..1] BadDatatypes.Something (non-navigable); otherEnd: WG14 [0..1] AttrDuplication.T1, endAsTgt: myEnd: WG14 [0..1] AttrDuplication.T1; otherEnd: WG14 [0..1] BadDatatypes.Something (non-navigable) +2024-09-08 15:11:38,681 [main] ERROR AssociationValidator - Found 1 associations that should have empty name (we name association ends, not association itself) - remove association name: +2024-09-08 15:11:38,681 [main] ERROR AssociationValidator - WG13 CIM association Terminal.ConductingEquipment - ConductingEquipment.Terminals +2024-09-08 15:11:38,681 [main] ERROR AssociationValidator - Found 6 associations with unallowed stereotype(s) - remove offending stereotype(s) OR use one or more of {CIM=[deprecated, informative], IEC61850=[deprecated, informative]}: +2024-09-08 15:11:38,682 [main] ERROR AssociationValidator - WG13 CIM association <> BaseVoltage.ConductingEquipment - ConductingEquipment.ProtectedBaseVoltage : offending stereotypes = [builds] +2024-09-08 15:11:38,682 [main] ERROR AssociationValidator - WG13 CIM aggregation <> Bay.Substation - Substation.bays : offending stereotypes = [European] +2024-09-08 15:11:38,682 [main] ERROR AssociationValidator - WG13 CIM aggregation <> EquipmentContainer.Equipments - Equipment.EquipmentContainer : offending stereotypes = [European] +2024-09-08 15:11:38,682 [main] ERROR AssociationValidator - WG13 CIM association <> BusNameMarker.PrivateConnectivityNode - ConnectivityNode.BusNameMarker : offending stereotypes = [otherStereo] +2024-09-08 15:11:38,682 [main] ERROR AssociationValidator - OTHER_CIM CIM association <> Pear.Apple - Apple.Pear : offending stereotypes = [dumbStereotype, European] +2024-09-08 15:11:38,682 [main] ERROR AssociationValidator - OTHER_CIM CIM association <> My class._role 2&x - Other-with_invalid name.Role 1 : offending stereotypes = [European] +2024-09-08 15:11:38,682 [main] ERROR AssociationValidator - Found 6 association ends with unallowed stereotype(s) - remove offending stereotype(s) OR use one or more of {CIM=[deprecated, informative], IEC61850=[deprecated, informative]}: +2024-09-08 15:11:38,682 [main] ERROR AssociationValidator - WG13 CIM aggregation <> Bay.VoltageLevel : offending stereotypes = [endStereo1] +2024-09-08 15:11:38,682 [main] ERROR AssociationValidator - WG13 CIM association <> VoltageLevel.Bays : offending stereotypes = [endStereo2] +2024-09-08 15:11:38,682 [main] ERROR AssociationValidator - WG13 CIM association <> ConnectivityNode.BusNameMarker : offending stereotypes = [srcStereo1, srcStereo2] +2024-09-08 15:11:38,682 [main] ERROR AssociationValidator - WG13 CIM private association <> BusNameMarker.PrivateConnectivityNode : offending stereotypes = [endStereo1, endStereo2] +2024-09-08 15:11:38,682 [main] ERROR AssociationValidator - OTHER_CIM CIM association <> Apple.SecondPear : offending stereotypes = [sourceStereo] +2024-09-08 15:11:38,682 [main] ERROR AssociationValidator - OTHER_CIM CIM association <> Pear.SecondApple : offending stereotypes = [targetStereo, European] +2024-09-08 15:11:38,683 [main] ERROR AssociationValidator - Found 3 informative associations missing informative stereotype - add missing informative stereotype: +2024-09-08 15:11:38,683 [main] ERROR AssociationValidator - OTHER_CIM CIM association MyClass.Class1 - Class1.MyClass +2024-09-08 15:11:38,683 [main] ERROR AssociationValidator - OTHER_CIM CIM association End1ForAssocClass.<> - End2ForAssocClass.<> +2024-09-08 15:11:38,683 [main] ERROR AssociationValidator - WG13 CIM association InfClassContainingEmbeddedClass.C2 - InfClass2.C1 +2024-09-08 15:11:38,683 [main] ERROR AssociationValidator - Found 4 associations with unallowed tag names - remove tags: +2024-09-08 15:11:38,683 [main] ERROR AssociationValidator - WG13 CIM association InfClassContainingEmbeddedClass.C2 - InfClass2.C1 : [assocTag] +2024-09-08 15:11:38,683 [main] ERROR AssociationValidator - WG13 CIM association Terminal.ConductingEquipment - ConductingEquipment.Terminals : [CE-TermAssoc, MoreAssoc] +2024-09-08 15:11:38,683 [main] ERROR AssociationValidator - WG13 CIM association <> BusNameMarker.PrivateConnectivityNode - ConnectivityNode.BusNameMarker : [assocTag] +2024-09-08 15:11:38,683 [main] ERROR AssociationValidator - OTHER_CIM CIM association Pear.SecondApple - Apple.SecondPear : [assocTag] +2024-09-08 15:11:38,683 [main] ERROR AssociationValidator - Found 4 association ends with unallowed tag names - remove tags: +2024-09-08 15:11:38,684 [main] ERROR AssociationValidator - WG13 CIM association InfClassContainingEmbeddedClass.C2 - InfClass2.C1 : [assocTag] +2024-09-08 15:11:38,684 [main] ERROR AssociationValidator - WG13 CIM association Terminal.ConductingEquipment - ConductingEquipment.Terminals : [CE-TermAssoc, MoreAssoc] +2024-09-08 15:11:38,684 [main] ERROR AssociationValidator - WG13 CIM association <> BusNameMarker.PrivateConnectivityNode - ConnectivityNode.BusNameMarker : [assocTag] +2024-09-08 15:11:38,684 [main] ERROR AssociationValidator - OTHER_CIM CIM association Pear.SecondApple - Apple.SecondPear : [assocTag] +2024-09-08 15:11:38,684 [main] ERROR AssociationValidator - Found 10 associations missing multiplicity for named association ends - add multiplicity to the named association end(s): +2024-09-08 15:11:38,684 [main] ERROR AssociationValidator - WG13 CIM aggregation TopologicalNode.TopologicalIsland - TopologicalIsland.TopologicalNodes +2024-09-08 15:11:38,684 [main] ERROR AssociationValidator - WG10 IEC61850 association Authentication.<> - ReportID.privateAuth +2024-09-08 15:11:38,684 [main] ERROR AssociationValidator - WG10 IEC61850 association Authentication.publicEntryID - EntryID.publicAuth +2024-09-08 15:11:38,684 [main] ERROR AssociationValidator - WG10 IEC61850 association LN.LNOwnedDSs - LNOwnedDS.LN +2024-09-08 15:11:38,684 [main] ERROR AssociationValidator - WG10 IEC61850 association LN.LOGs - LOG.LN +2024-09-08 15:11:38,684 [main] ERROR AssociationValidator - WG10 IEC61850 association LN.LCBs - LCB.LN +2024-09-08 15:11:38,684 [main] ERROR AssociationValidator - WG10 IEC61850 association LN0.USVCBs - USVCB.LN0 +2024-09-08 15:11:38,684 [main] ERROR AssociationValidator - WG10 IEC61850 association LN0.GCBs - GCB.LN0 +2024-09-08 15:11:38,685 [main] ERROR AssociationValidator - WG10 IEC61850 association LN0.MSVCBs - MSVCB.LN0 +2024-09-08 15:11:38,685 [main] ERROR AssociationValidator - WG10 IEC61850 association LN0.SGCB - SGCB.LN0 +2024-09-08 15:11:38,685 [main] ERROR AssociationValidator - Found 1 associations that should have source and target swapped according to standard IEC TC57 rules (wrong direction for dependency) - swap source and target classes: +2024-09-08 15:11:38,685 [main] ERROR AssociationValidator - OTHER_CIM CIM association MyClass.Class1 - Class1.MyClass +2024-09-08 15:11:38,685 [main] DEBUG AssociationValidator - Found 0 IEC61850 associations that should have private ends - change visibility of association ends to private. +2024-09-08 15:11:38,685 [main] ERROR AssociationValidator - Found 1 IEC61850 associations that should have ends with the same visibility - change visibility on one association end: +2024-09-08 15:11:38,685 [main] ERROR AssociationValidator - WG10 IEC61850 association Authentication.<> - ReportID.privateAuth +2024-09-08 15:11:38,685 [main] WARN AssociationValidator - Found 61 association ends missing documentation - add documentation: +2024-09-08 15:11:38,685 [main] WARN AssociationValidator - WG14 CIM association MyClass.T1 +2024-09-08 15:11:38,685 [main] WARN AssociationValidator - WG14 CIM association BadDatatypes.T2 +2024-09-08 15:11:38,685 [main] WARN AssociationValidator - WG14 CIM association MyClass.From +2024-09-08 15:11:38,685 [main] WARN AssociationValidator - WG14 CIM association MyClass.To +2024-09-08 15:11:38,686 [main] WARN AssociationValidator - WG14 CIM association AttrDuplication.To +2024-09-08 15:11:38,686 [main] WARN AssociationValidator - WG14 CIM association AttrDuplication.From +2024-09-08 15:11:38,686 [main] WARN AssociationValidator - WG14 CIM association AttrDuplication.To +2024-09-08 15:11:38,686 [main] WARN AssociationValidator - WG10 IEC61850 association AccessPoint.IED +2024-09-08 15:11:38,686 [main] WARN AssociationValidator - WG10 IEC61850 association GenIED.AP +2024-09-08 15:11:38,686 [main] WARN AssociationValidator - WG10 IEC61850 association FileSystem.Server +2024-09-08 15:11:38,686 [main] WARN AssociationValidator - WG10 IEC61850 association GenServer.FileSystem +2024-09-08 15:11:38,686 [main] WARN AssociationValidator - WG10 IEC61850 association GenFile.FileSystem +2024-09-08 15:11:38,686 [main] WARN AssociationValidator - WG10 IEC61850 association FileSystem.Files +2024-09-08 15:11:38,686 [main] WARN AssociationValidator - WG10 IEC61850 association GenDataAttribute.CommonDataClass +2024-09-08 15:11:38,686 [main] WARN AssociationValidator - WG10 IEC61850 association GenCommonDataClass.DataAttribute +2024-09-08 15:11:38,687 [main] WARN AssociationValidator - WG10 IEC61850 association GenSubDataObject.CommonDataClass +2024-09-08 15:11:38,687 [main] WARN AssociationValidator - WG10 IEC61850 association GenCommonDataClass.SubDataObject +2024-09-08 15:11:38,687 [main] WARN AssociationValidator - WG10 IEC61850 association GenSubDataAttribute.DataAttribute +2024-09-08 15:11:38,687 [main] WARN AssociationValidator - WG10 IEC61850 association GenConstructedType.SubDataAttribute +2024-09-08 15:11:38,687 [main] WARN AssociationValidator - WG10 IEC61850 association GenDataAttribute.FCDA +2024-09-08 15:11:38,687 [main] WARN AssociationValidator - WG10 IEC61850 association GenFCDA.DataAttribute +2024-09-08 15:11:38,687 [main] WARN AssociationValidator - WG10 IEC61850 association GenDataObject.LogicalNode +2024-09-08 15:11:38,687 [main] WARN AssociationValidator - WG10 IEC61850 association GenLogicalNode.DataObject +2024-09-08 15:11:38,687 [main] WARN AssociationValidator - WG10 IEC61850 association GenDataObject.FCD +2024-09-08 15:11:38,688 [main] WARN AssociationValidator - WG10 IEC61850 association GenFCD.DataObject +2024-09-08 15:11:38,688 [main] WARN AssociationValidator - WG10 IEC61850 association GenFCD.DataSet +2024-09-08 15:11:38,688 [main] WARN AssociationValidator - WG10 IEC61850 association GenDataSet.FCDMember +2024-09-08 15:11:38,688 [main] WARN AssociationValidator - WG10 IEC61850 association GenFCDA.DataSet +2024-09-08 15:11:38,688 [main] WARN AssociationValidator - WG10 IEC61850 association GenDataSet.FCDAMember +2024-09-08 15:11:38,688 [main] WARN AssociationValidator - WG10 IEC61850 association GenSubDataObject.FCD +2024-09-08 15:11:38,688 [main] WARN AssociationValidator - WG10 IEC61850 association GenFCD.SubDataObject +2024-09-08 15:11:38,688 [main] WARN AssociationValidator - WG10 IEC61850 association GenSubDataAttribute.FCDA +2024-09-08 15:11:38,688 [main] WARN AssociationValidator - WG10 IEC61850 association GenFCDA.SubDataAttribute +2024-09-08 15:11:38,688 [main] WARN AssociationValidator - WG10 IEC61850 association GenLN0.LogicalDevice +2024-09-08 15:11:38,688 [main] WARN AssociationValidator - WG10 IEC61850 association GenLogicalDevice.LN0 +2024-09-08 15:11:38,688 [main] WARN AssociationValidator - WG10 IEC61850 association GenLogicalDevice.Server +2024-09-08 15:11:38,688 [main] WARN AssociationValidator - WG10 IEC61850 association GenServer.LogicalDevice +2024-09-08 15:11:38,688 [main] WARN AssociationValidator - WG10 IEC61850 association GenLogicalNode.LogicalDevice +2024-09-08 15:11:38,688 [main] WARN AssociationValidator - WG10 IEC61850 association GenLogicalDevice.LogicalNode +2024-09-08 15:11:38,688 [main] WARN AssociationValidator - WG10 IEC61850 association GenLogicalDevice.ParentLogicalDevice +2024-09-08 15:11:38,688 [main] WARN AssociationValidator - WG10 IEC61850 association GenLogicalDevice.ChildLogicalDevice +2024-09-08 15:11:38,688 [main] WARN AssociationValidator - WG10 IEC61850 association GenMCAA.Server +2024-09-08 15:11:38,689 [main] WARN AssociationValidator - WG10 IEC61850 association GenServer.MCAppAssociation +2024-09-08 15:11:38,689 [main] WARN AssociationValidator - WG10 IEC61850 association GenServer.SAP +2024-09-08 15:11:38,689 [main] WARN AssociationValidator - WG10 IEC61850 association ServiceAccessPoint.Server +2024-09-08 15:11:38,689 [main] WARN AssociationValidator - WG10 IEC61850 association GenTPAA.Server +2024-09-08 15:11:38,689 [main] WARN AssociationValidator - WG10 IEC61850 association GenServer.TPAppAssociation +2024-09-08 15:11:38,689 [main] WARN AssociationValidator - WG10 IEC61850 association EntryID.publicAuth +2024-09-08 15:11:38,689 [main] WARN AssociationValidator - WG10 IEC61850 association Authentication.publicEntryID +2024-09-08 15:11:38,689 [main] WARN AssociationValidator - OTHER_CIM CIM association Apple.SelfFromApple +2024-09-08 15:11:38,689 [main] WARN AssociationValidator - OTHER_CIM CIM association Apple.SelfToApples +2024-09-08 15:11:38,689 [main] WARN AssociationValidator - OTHER_CIM CIM association Apple.Pear +2024-09-08 15:11:38,689 [main] WARN AssociationValidator - OTHER_CIM CIM association Pear.Apple +2024-09-08 15:11:38,689 [main] WARN AssociationValidator - OTHER_CIM CIM association <> Apple.SecondPear +2024-09-08 15:11:38,689 [main] WARN AssociationValidator - OTHER_CIM CIM association <> Pear.SecondApple +2024-09-08 15:11:38,689 [main] WARN AssociationValidator - OTHER_IEC61850 IEC61850 association Fruit.Animal +2024-09-08 15:11:38,689 [main] WARN AssociationValidator - OTHER_IEC61850 CIM association Animal.Fruit +2024-09-08 15:11:38,689 [main] WARN AssociationValidator - OTHER_IEC61850 IEC61850 association Fruit.SecondAnimal +2024-09-08 15:11:38,689 [main] WARN AssociationValidator - OTHER_IEC61850 CIM association Animal.SecondFruit +2024-09-08 15:11:38,690 [main] WARN AssociationValidator - OTHER_CIM CIM association Other-with_invalid name.Role 1 +2024-09-08 15:11:38,690 [main] WARN AssociationValidator - OTHER_CIM CIM association My class._role 2&x +2024-09-08 15:11:38,690 [main] WARN AssociationValidator - Found 1 association ends whose documentation starts with unallowed character - fix the first character: valid ones are any upper case letter or punctuation marks [', ", (]: +2024-09-08 15:11:38,690 [main] WARN AssociationValidator - WG13 CIM association OperatingParticipant.OperatingShare : doc='the operating shares of an ope...' +2024-09-08 15:11:38,690 [main] WARN AssociationValidator - Found 8 association ends whose documentation does not end with a dot ('.') - fix the last character: add a dot: +2024-09-08 15:11:38,690 [main] WARN AssociationValidator - WG13 CIM association ConductingEquipment.Terminals : doc='...erminals via ConnectivityNodes' +2024-09-08 15:11:38,690 [main] WARN AssociationValidator - WG13 CIM association Terminal.ConductingEquipment : doc='...erminals via ConnectivityNodes' +2024-09-08 15:11:38,690 [main] WARN AssociationValidator - WG13 CIM association OperatingParticipant.OperatingShare : doc='...reused for any number of PSR's' +2024-09-08 15:11:38,690 [main] WARN AssociationValidator - WG14 CIM association PowerSystemResource.AssetInfos : doc='FooBar' +2024-09-08 15:11:38,690 [main] WARN AssociationValidator - WG14 CIM association AssetInfo.PSRs : doc='Blah' +2024-09-08 15:11:38,690 [main] WARN AssociationValidator - WG13 CIM association TopologicalIsland.TopologicalNodes : doc='...elongs to a topological island' +2024-09-08 15:11:38,690 [main] WARN AssociationValidator - WG13 CIM aggregation TopologicalNode.TopologicalIsland : doc='...elongs to a topological island' +2024-09-08 15:11:38,690 [main] WARN AssociationValidator - WG14 CIM association AttrDuplication.From : doc='Doc (not ending with ".")' +2024-09-08 15:11:38,691 [main] ERROR AssociationValidator - Found 4 association ends whose name contains illegal character(s) - rename by removing invalid character(s): +2024-09-08 15:11:38,691 [main] ERROR AssociationValidator - WG13 CIM association TopologicalNode.AngleRef_TopologicalIsland : invalid characters = [_] +2024-09-08 15:11:38,691 [main] ERROR AssociationValidator - WG13 CIM association TopologicalIsland.AngleRef_TopologicalNode : invalid characters = [_] +2024-09-08 15:11:38,691 [main] ERROR AssociationValidator - OTHER_CIM CIM association Other-with_invalid name.Role 1 : invalid characters = [ ] +2024-09-08 15:11:38,691 [main] ERROR AssociationValidator - OTHER_CIM CIM association My class._role 2&x : invalid characters = [_, , &] +2024-09-08 15:11:38,691 [main] ERROR AssociationValidator - Found 1 CIM association ends whose name starts with a lower case letter - rename association end(s) to start with upper case letter: +2024-09-08 15:11:38,691 [main] ERROR AssociationValidator - WG13 [0..*] Substation.bays (navigable) +2024-09-08 15:11:38,691 [main] ERROR AssociationValidator - Found 10 CIM association ends that should be plural according to multiplicity - rename association end(s) to plural: +2024-09-08 15:11:38,691 [main] ERROR AssociationValidator - WG13 [0..*] BaseVoltage.VoltageLevel +2024-09-08 15:11:38,691 [main] ERROR AssociationValidator - WG13 [0..*] BaseVoltage.ConductingEquipment +2024-09-08 15:11:38,691 [main] ERROR AssociationValidator - WG13 [0..*] BaseVoltage.TopologicalNode +2024-09-08 15:11:38,691 [main] ERROR AssociationValidator - WG13 [0..*] ConnectivityNodeContainer.TopologicalNode +2024-09-08 15:11:38,692 [main] ERROR AssociationValidator - WG13 [0..*] OperatingParticipant.OperatingShare +2024-09-08 15:11:38,692 [main] ERROR AssociationValidator - WG13 [0..*] PowerSystemResource.OperatingShare +2024-09-08 15:11:38,692 [main] ERROR AssociationValidator - WG13 [0..*] TopologicalNode.Terminal +2024-09-08 15:11:38,692 [main] ERROR AssociationValidator - WG13 (private) <> [0..*] BusNameMarker.PrivateConnectivityNode; tags={endTag=valueEndTag} +2024-09-08 15:11:38,692 [main] ERROR AssociationValidator - OTHER_CIM [0..*] Pear.Apple; tags={targetEndTag=value2} +2024-09-08 15:11:38,692 [main] ERROR AssociationValidator - OTHER_IEC61850 [0..*] Animal.Fruit +2024-09-08 15:11:38,692 [main] ERROR AssociationValidator - Found 1 CIM association ends that should be singular according to multiplicity - rename association end(s) to singular: +2024-09-08 15:11:38,692 [main] ERROR AssociationValidator - WG13 [?..?] TopologicalIsland.TopologicalNodes +2024-09-08 15:11:38,692 [main] INFO AbstractValidator - +2024-09-08 15:11:38,692 [main] INFO AbstractValidator - ====== Validating 81 (of 81) dependencies: +2024-09-08 15:11:38,693 [main] ERROR DependencyValidator - Found 8 dependencies with unallowed stereotype(s) - remove offending stereotype(s) OR use one or more of {CIM=[import, deprecated, IsBasedOn], IEC61850=[deprecated]}: +2024-09-08 15:11:38,693 [main] ERROR DependencyValidator - WG10 IEC61850 interClass dependency <> GenericModel::GenSubDataAttribute -> GenericModel::GenAtomicType : offending stereotypes = [typeOf] +2024-09-08 15:11:38,693 [main] ERROR DependencyValidator - WG10 IEC61850 interClass dependency <> GenericModel::GenDataAttribute -> GenericModel::GenAtomicType : offending stereotypes = [typeOf] +2024-09-08 15:11:38,693 [main] ERROR DependencyValidator - WG10 IEC61850 interClass dependency <> GenericModel::GenSubDataObject -> GenericModel::GenCommonDataClass : offending stereotypes = [typeOf] +2024-09-08 15:11:38,694 [main] ERROR DependencyValidator - WG10 IEC61850 interClass dependency <> GenericModel::GenDataObject -> GenericModel::GenCommonDataClass : offending stereotypes = [typeOf] +2024-09-08 15:11:38,694 [main] ERROR DependencyValidator - WG10 IEC61850 interClass dependency <> GenericModel::GenSubDataAttribute -> GenericModel::GenCompactType : offending stereotypes = [typeOf] +2024-09-08 15:11:38,694 [main] ERROR DependencyValidator - WG10 IEC61850 interClass dependency <> GenericModel::GenDataAttribute -> GenericModel::GenCompactType : offending stereotypes = [typeOf] +2024-09-08 15:11:38,694 [main] ERROR DependencyValidator - WG10 IEC61850 interClass dependency <> GenericModel::GenSubDataAttribute -> GenericModel::GenConstructedType : offending stereotypes = [typeOf] +2024-09-08 15:11:38,695 [main] ERROR DependencyValidator - WG10 IEC61850 interClass dependency <> GenericModel::GenDataAttribute -> GenericModel::GenConstructedType : offending stereotypes = [typeOf] +2024-09-08 15:11:38,695 [main] ERROR DependencyValidator - Found 2 dependencies on unallowed package according to standard IEC TC57 rules - remove dependency or reverse its direction: +2024-09-08 15:11:38,695 [main] ERROR DependencyValidator - WG13 CIM interPackage dependency IEC61970::Topology -> IEC61968::Other +2024-09-08 15:11:38,695 [main] ERROR DependencyValidator - WG10 IEC61850 interPackage dependency WG10::IEC61850_7_4 -> WG17::IEC51850_7_420 +2024-09-08 15:11:38,695 [main] DEBUG DependencyValidator - Found 0 dependencies with unallowed tag names - remove tags. +2024-09-08 15:11:38,695 [main] INFO AbstractValidator - +2024-09-08 15:11:38,695 [main] INFO AbstractValidator - ====== Validating 104 (of 104) diagrams: +2024-09-08 15:11:38,697 [main] WARN DiagramValidator - Found 1 diagrams with bad orientation, content may be unreadable when printed on A4 page - change orientation to potrait: +2024-09-08 15:11:38,697 [main] WARN DiagramValidator - WG13 CIM class IEC61970::Main +2024-09-08 15:11:38,697 [main] ERROR DiagramValidator - Found 5 diagrams with unallowed stereotype(s) - remove offending stereotype(s) OR use one or more of {CIM=[deprecated, informative], IEC61850=[deprecated, informative]}: +2024-09-08 15:11:38,697 [main] ERROR DiagramValidator - OTHER_CIM CIM class <> TC57CIM::Main : offending stereotypes = [diagStereotype, oneMoreDiagStereo] +2024-09-08 15:11:38,697 [main] ERROR DiagramValidator - WG13 CIM class <> Domain::BasicDatatypes : offending stereotypes = [oneDiaStero, secondDiaStereo] +2024-09-08 15:11:38,697 [main] ERROR DiagramValidator - WG13 CIM class <> Domain::TimeDatatypes : offending stereotypes = [docStero] +2024-09-08 15:11:38,698 [main] ERROR DiagramValidator - WG13 CIM class <> Core::Ownership : offending stereotypes = [Deprecated] +2024-09-08 15:11:38,698 [main] ERROR DiagramValidator - OTHER_CIM CIM class <> MyCimExtensions::MyCimExtensions : offending stereotypes = [European] +2024-09-08 15:11:38,698 [main] WARN DiagramValidator - Found 28 diagrams missing documentation - add documentation: +2024-09-08 15:11:38,698 [main] WARN DiagramValidator - OTHER_CIM CIM package TC57CIMProfiles::TC57CIMProfiles +2024-09-08 15:11:38,698 [main] WARN DiagramValidator - WG13 CIM class Topology::DiagramWithoutComment +2024-09-08 15:11:38,698 [main] WARN DiagramValidator - WG13 CIM class TestEnums::TestEnums +2024-09-08 15:11:38,698 [main] WARN DiagramValidator - WG14 CIM class IEC61968::IEC61968 +2024-09-08 15:11:38,698 [main] WARN DiagramValidator - WG14 CIM package EmbeddedExtension::EmbeddedExtension +2024-09-08 15:11:38,698 [main] WARN DiagramValidator - WG14 CIM class Assets::Assets +2024-09-08 15:11:38,698 [main] WARN DiagramValidator - WG14 CIM object Assets::AssetsObjDia +2024-09-08 15:11:38,698 [main] WARN DiagramValidator - WG14 CIM class Other::Other +2024-09-08 15:11:38,698 [main] WARN DiagramValidator - WG16 CIM class IEC62325::IEC62325 +2024-09-08 15:11:38,698 [main] WARN DiagramValidator - OTHER_IEC61850 IEC61850 class IEC61850Domain::IEC61850Domain +2024-09-08 15:11:38,698 [main] WARN DiagramValidator - WG10 IEC61850 package NewIEC61850_7_2::NewIEC61850_7_2 +2024-09-08 15:11:38,698 [main] WARN DiagramValidator - WG10 IEC61850 class GenericModel::GenericModel +2024-09-08 15:11:38,698 [main] WARN DiagramValidator - WG10 IEC61850 class GenericModel::GenericModelTypes +2024-09-08 15:11:38,699 [main] WARN DiagramValidator - WG10 IEC61850 class IEC61850_7_2::IEC61850_7_2ModellingNotes +2024-09-08 15:11:38,699 [main] WARN DiagramValidator - WG17 IEC61850 class WG17::WG17 +2024-09-08 15:11:38,699 [main] WARN DiagramValidator - WG17 IEC61850 package IEC51850_7_420::IEC51850_7_420 +2024-09-08 15:11:38,699 [main] WARN DiagramValidator - WG17 IEC61850 class DOEnums_7_420::DOEnums_7_420 +2024-09-08 15:11:38,699 [main] WARN DiagramValidator - WG17 IEC61850 class DerivedDAs_7_420::DerivedDAs_7_420 +2024-09-08 15:11:38,699 [main] WARN DiagramValidator - WG17 IEC61850 class DerivedCDCs_7_420::DerivedCDCs_7_420 +2024-09-08 15:11:38,699 [main] WARN DiagramValidator - WG18 IEC61850 class WG18::WG18 +2024-09-08 15:11:38,699 [main] WARN DiagramValidator - WG18 IEC61850 class Abbreviations_410::Abbreviations_410 +2024-09-08 15:11:38,699 [main] WARN DiagramValidator - JWG25 IEC61850 class JWG25::JWG25 +2024-09-08 15:11:38,699 [main] WARN DiagramValidator - OTHER_CIM CIM class <> MyCimExtensions::MyCimExtensions +2024-09-08 15:11:38,700 [main] WARN DiagramValidator - OTHER_CIM CIM class Ext1::Ext1 +2024-09-08 15:11:38,700 [main] WARN DiagramValidator - OTHER_IEC61850 IEC61850 package My61850Extensions::My61850Extensions +2024-09-08 15:11:38,700 [main] WARN DiagramValidator - OTHER_IEC61850 IEC61850 class Ext2::Ext2 +2024-09-08 15:11:38,700 [main] WARN DiagramValidator - OTHER_CIM CIM package NewNature::NewNature +2024-09-08 15:11:38,700 [main] WARN DiagramValidator - WG10 IEC61850 statechart DomainLN.Beh +2024-09-08 15:11:38,700 [main] WARN DiagramValidator - Found 1 diagrams whose documentation starts with unallowed character - fix the first character: valid ones are any upper case letter or punctuation marks [', ", (]: +2024-09-08 15:11:38,700 [main] WARN DiagramValidator - WG13 CIM class <> Core::Ownership : doc='doc present (but missing "." a...' +2024-09-08 15:11:38,700 [main] WARN DiagramValidator - Found 3 diagrams whose documentation does not end with a dot ('.') - fix the last character: add a dot: +2024-09-08 15:11:38,700 [main] WARN DiagramValidator - WG13 CIM class <> Domain::TimeDatatypes : doc='...m show time related data types' +2024-09-08 15:11:38,700 [main] WARN DiagramValidator - WG13 CIM class <> Core::Ownership : doc='...tarting with lower case letter' +2024-09-08 15:11:38,700 [main] WARN DiagramValidator - WG10 IEC61850 INF class DetailedDiagrams::ImplementationNotes-ComposedCDCs : doc='(no doc)' +2024-09-08 15:11:38,700 [main] ERROR DiagramValidator - Found 3 diagrams whose name contains illegal character(s) - rename by removing invalid character(s): +2024-09-08 15:11:38,700 [main] ERROR DiagramValidator - OTHER_CIM CIM class Package with space::Package with space : invalid characters = [ , ] +2024-09-08 15:11:38,700 [main] ERROR DiagramValidator - WG13 CIM statechart PowerSystemResource.PSR-statechart : invalid characters = [-] +2024-09-08 15:11:38,700 [main] ERROR DiagramValidator - WG10 IEC61850 statechart Quality.Quality.validity : invalid characters = [.] +2024-09-08 15:11:38,700 [main] INFO ModelValidator - +2024-09-08 15:11:38,701 [main] INFO ModelValidator - Saving report to file: C:\Users\gigi\git\jCleanCim\output\problemsReport-base-small.csv +2024-09-08 15:11:38,721 [main] INFO Util - time=[0:00:00.750] validated packages [WG13, WG14, WG16, OTHER_CIM, WG10, WG17, WG18, JWG25, WG19, OTHER_IEC61850]. +2024-09-08 15:11:38,721 [main] INFO Util - +2024-09-08 15:11:38,721 [main] INFO Util - +2024-09-08 15:11:38,721 [main] INFO Util - ================================================ +2024-09-08 15:11:38,721 [main] INFO Util - collecting statistics for packages [WG13, WG14, WG16, OTHER_CIM, WG10, WG17, WG18, JWG25, WG19, OTHER_IEC61850]... +2024-09-08 15:11:38,721 [main] INFO Util - ================================================ +2024-09-08 15:11:38,740 [main] INFO ModelStats - +2024-09-08 15:11:38,740 [main] INFO ModelStats - ====== Stats per nature and per owner for 83 packages (of 83): +2024-09-08 15:11:38,741 [main] INFO ModelStats - ------ CIM statistics: +2024-09-08 15:11:38,741 [main] INFO ModelStats - [WG13] +2024-09-08 15:11:38,741 [main] INFO ModelStats - 7 packages (83/83) - 2 informative: +2024-09-08 15:11:38,741 [main] INFO ModelStats - 1 top package (per WG) +2024-09-08 15:11:38,741 [main] INFO ModelStats - 6 sub-package (any below top) +2024-09-08 15:11:38,741 [main] INFO ModelStats - 49 classes (386/386) - 3 informative: +2024-09-08 15:11:38,741 [main] INFO ModelStats - 4 primitive class +2024-09-08 15:11:38,741 [main] INFO ModelStats - 12 enumeration class +2024-09-08 15:11:38,741 [main] INFO ModelStats - 8 CIM datatype class +2024-09-08 15:11:38,741 [main] INFO ModelStats - 1 compound class +2024-09-08 15:11:38,741 [main] INFO ModelStats - 6 root class +2024-09-08 15:11:38,741 [main] INFO ModelStats - 18 class +2024-09-08 15:11:38,742 [main] INFO ModelStats - 163 attributes (761/761) - 1 informative: +2024-09-08 15:11:38,742 [main] INFO ModelStats - 27 primitive attribute +2024-09-08 15:11:38,742 [main] INFO ModelStats - 6 CIM datatype attribute +2024-09-08 15:11:38,742 [main] INFO ModelStats - 19 enumerated attribute +2024-09-08 15:11:38,742 [main] INFO ModelStats - 110 other enumeration literal +2024-09-08 15:11:38,742 [main] INFO ModelStats - 1 other attribute +2024-09-08 15:11:38,742 [main] INFO ModelStats - 22 associations (99/99): +2024-09-08 15:11:38,742 [main] INFO ModelStats - 9 aggregation +2024-09-08 15:11:38,742 [main] INFO ModelStats - 13 simple association +2024-09-08 15:11:38,742 [main] INFO ModelStats - 5 operations (14/14): +2024-09-08 15:11:38,742 [main] INFO ModelStats - 1 void op() +2024-09-08 15:11:38,742 [main] INFO ModelStats - 1 T[] op() +2024-09-08 15:11:38,742 [main] INFO ModelStats - 3 T op() +2024-09-08 15:11:38,742 [main] INFO ModelStats - 3 dependencies (81/81): +2024-09-08 15:11:38,742 [main] INFO ModelStats - 3 interPackage dependency +2024-09-08 15:11:38,743 [main] INFO ModelStats - 11 diagrams (104/104) - 2 informative: +2024-09-08 15:11:38,743 [main] INFO ModelStats - 10 class diagram +2024-09-08 15:11:38,743 [main] INFO ModelStats - 1 statechart diagram +2024-09-08 15:11:38,743 [main] INFO ModelStats - 13 tag names (24/24): +2024-09-08 15:11:38,743 [main] INFO ModelStats - 3 dummyCimTag +2024-09-08 15:11:38,743 [main] INFO ModelStats - 1 tag +2024-09-08 15:11:38,743 [main] INFO ModelStats - 2 assocTag +2024-09-08 15:11:38,743 [main] INFO ModelStats - 2 srcTag +2024-09-08 15:11:38,743 [main] INFO ModelStats - 1 CE-TermAssoc +2024-09-08 15:11:38,744 [main] INFO ModelStats - 1 MoreAssoc +2024-09-08 15:11:38,744 [main] INFO ModelStats - 1 Role1 +2024-09-08 15:11:38,744 [main] INFO ModelStats - 1 AnotherRole2 +2024-09-08 15:11:38,744 [main] INFO ModelStats - 1 targetEndTag +2024-09-08 15:11:38,744 [main] INFO ModelStats - 1 Role2 +2024-09-08 15:11:38,745 [main] INFO ModelStats - 1 endTag +2024-09-08 15:11:38,745 [main] INFO ModelStats - 2 throws +2024-09-08 15:11:38,745 [main] INFO ModelStats - 2 someTag +2024-09-08 15:11:38,745 [main] INFO ModelStats - +2024-09-08 15:11:38,745 [main] INFO ModelStats - [WG14] +2024-09-08 15:11:38,745 [main] INFO ModelStats - 6 packages (83/83): +2024-09-08 15:11:38,745 [main] INFO ModelStats - 1 top package (per WG) +2024-09-08 15:11:38,745 [main] INFO ModelStats - 5 sub-package (any below top) +2024-09-08 15:11:38,745 [main] INFO ModelStats - 11 classes (386/386): +2024-09-08 15:11:38,745 [main] INFO ModelStats - 1 primitive class +2024-09-08 15:11:38,745 [main] INFO ModelStats - 1 enumeration class +2024-09-08 15:11:38,745 [main] INFO ModelStats - 2 CIM datatype class +2024-09-08 15:11:38,745 [main] INFO ModelStats - 1 compound class +2024-09-08 15:11:38,746 [main] INFO ModelStats - 4 root class +2024-09-08 15:11:38,746 [main] INFO ModelStats - 2 class +2024-09-08 15:11:38,746 [main] INFO ModelStats - 15 attributes (761/761): +2024-09-08 15:11:38,746 [main] INFO ModelStats - 7 primitive attribute +2024-09-08 15:11:38,746 [main] INFO ModelStats - 2 CIM datatype attribute +2024-09-08 15:11:38,746 [main] INFO ModelStats - 1 compound attribute +2024-09-08 15:11:38,746 [main] INFO ModelStats - 3 enumerated attribute +2024-09-08 15:11:38,746 [main] INFO ModelStats - 2 other attribute +2024-09-08 15:11:38,746 [main] INFO ModelStats - 6 associations (99/99): +2024-09-08 15:11:38,746 [main] INFO ModelStats - 6 simple association +2024-09-08 15:11:38,746 [main] INFO ModelStats - 0 operations (14/14): +2024-09-08 15:11:38,747 [main] INFO ModelStats - 3 dependencies (81/81): +2024-09-08 15:11:38,747 [main] INFO ModelStats - 2 interPackage dependency +2024-09-08 15:11:38,747 [main] INFO ModelStats - 1 interClass dependency +2024-09-08 15:11:38,747 [main] INFO ModelStats - 5 diagrams (104/104): +2024-09-08 15:11:38,747 [main] INFO ModelStats - 3 class diagram +2024-09-08 15:11:38,747 [main] INFO ModelStats - 1 package diagram +2024-09-08 15:11:38,747 [main] INFO ModelStats - 1 object diagram +2024-09-08 15:11:38,747 [main] INFO ModelStats - 2 tag names (24/24): +2024-09-08 15:11:38,747 [main] INFO ModelStats - 3 nsprefix +2024-09-08 15:11:38,747 [main] INFO ModelStats - 3 nsuri +2024-09-08 15:11:38,747 [main] INFO ModelStats - +2024-09-08 15:11:38,748 [main] INFO ModelStats - [WG16] +2024-09-08 15:11:38,748 [main] INFO ModelStats - 1 packages (83/83): +2024-09-08 15:11:38,748 [main] INFO ModelStats - 1 top package (per WG) +2024-09-08 15:11:38,748 [main] INFO ModelStats - 0 classes (386/386): +2024-09-08 15:11:38,748 [main] INFO ModelStats - 0 attributes (761/761): +2024-09-08 15:11:38,748 [main] INFO ModelStats - 0 associations (99/99): +2024-09-08 15:11:38,748 [main] INFO ModelStats - 0 operations (14/14): +2024-09-08 15:11:38,748 [main] INFO ModelStats - 2 dependencies (81/81): +2024-09-08 15:11:38,748 [main] INFO ModelStats - 2 interPackage dependency +2024-09-08 15:11:38,748 [main] INFO ModelStats - 1 diagrams (104/104): +2024-09-08 15:11:38,748 [main] INFO ModelStats - 1 class diagram +2024-09-08 15:11:38,748 [main] INFO ModelStats - 0 tag names (24/24): +2024-09-08 15:11:38,748 [main] INFO ModelStats - +2024-09-08 15:11:38,748 [main] INFO ModelStats - [OTHER_CIM] +2024-09-08 15:11:38,748 [main] INFO ModelStats - 7 packages (83/83) - 1 informative: +2024-09-08 15:11:38,748 [main] INFO ModelStats - 4 model package (with nature) +2024-09-08 15:11:38,748 [main] INFO ModelStats - 3 top package (per WG) +2024-09-08 15:11:38,748 [main] INFO ModelStats - 16 classes (386/386) - 6 informative: +2024-09-08 15:11:38,748 [main] INFO ModelStats - 1 enumeration class +2024-09-08 15:11:38,748 [main] INFO ModelStats - 1 compound class +2024-09-08 15:11:38,749 [main] INFO ModelStats - 11 root class +2024-09-08 15:11:38,749 [main] INFO ModelStats - 3 class +2024-09-08 15:11:38,749 [main] INFO ModelStats - 7 attributes (761/761) - 2 informative: +2024-09-08 15:11:38,749 [main] INFO ModelStats - 1 primitive attribute +2024-09-08 15:11:38,749 [main] INFO ModelStats - 1 CIM datatype attribute +2024-09-08 15:11:38,749 [main] INFO ModelStats - 1 compound attribute +2024-09-08 15:11:38,749 [main] INFO ModelStats - 3 other enumeration literal +2024-09-08 15:11:38,749 [main] INFO ModelStats - 1 other attribute +2024-09-08 15:11:38,749 [main] INFO ModelStats - 7 associations (99/99): +2024-09-08 15:11:38,749 [main] INFO ModelStats - 7 simple association +2024-09-08 15:11:38,749 [main] INFO ModelStats - 1 operations (14/14): +2024-09-08 15:11:38,749 [main] INFO ModelStats - 1 void op() +2024-09-08 15:11:38,749 [main] INFO ModelStats - 0 dependencies (81/81): +2024-09-08 15:11:38,749 [main] INFO ModelStats - 7 diagrams (104/104) - 1 informative: +2024-09-08 15:11:38,749 [main] INFO ModelStats - 5 class diagram +2024-09-08 15:11:38,750 [main] INFO ModelStats - 2 package diagram +2024-09-08 15:11:38,750 [main] INFO ModelStats - 5 tag names (24/24): +2024-09-08 15:11:38,750 [main] INFO ModelStats - 2 nsprefix +2024-09-08 15:11:38,750 [main] INFO ModelStats - 2 nsuri +2024-09-08 15:11:38,750 [main] INFO ModelStats - 1 assocEndTag +2024-09-08 15:11:38,750 [main] INFO ModelStats - 1 targetEndTag +2024-09-08 15:11:38,750 [main] INFO ModelStats - 1 assocTag +2024-09-08 15:11:38,750 [main] INFO ModelStats - +2024-09-08 15:11:38,750 [main] INFO ModelStats - +2024-09-08 15:11:38,750 [main] INFO ModelStats - ------ IEC61850 statistics: +2024-09-08 15:11:38,750 [main] INFO ModelStats - [WG10] +2024-09-08 15:11:38,750 [main] INFO ModelStats - 51 packages (83/83) - 3 informative: +2024-09-08 15:11:38,750 [main] INFO ModelStats - 1 top package (per WG) +2024-09-08 15:11:38,750 [main] INFO ModelStats - 50 sub-package (any below top) +2024-09-08 15:11:38,750 [main] INFO ModelStats - 294 classes (386/386): +2024-09-08 15:11:38,750 [main] INFO ModelStats - 14 basic class +2024-09-08 15:11:38,750 [main] INFO ModelStats - 4 packed class +2024-09-08 15:11:38,750 [main] INFO ModelStats - 14 enumeration class +2024-09-08 15:11:38,750 [main] INFO ModelStats - 5 coded enumeration class +2024-09-08 15:11:38,751 [main] INFO ModelStats - 2 abbreviation enumeration class +2024-09-08 15:11:38,751 [main] INFO ModelStats - 1 presence condition enumeration class +2024-09-08 15:11:38,751 [main] INFO ModelStats - 3 coded enumeration DA class +2024-09-08 15:11:38,751 [main] INFO ModelStats - 8 enumeration DA class +2024-09-08 15:11:38,751 [main] INFO ModelStats - 4 packed list DA class +2024-09-08 15:11:38,751 [main] INFO ModelStats - 10 primitive DA class +2024-09-08 15:11:38,751 [main] INFO ModelStats - 5 composed DA class +2024-09-08 15:11:38,751 [main] INFO ModelStats - 4 coded enumeration FCDA class +2024-09-08 15:11:38,751 [main] INFO ModelStats - 15 enumeration FCDA class +2024-09-08 15:11:38,751 [main] INFO ModelStats - 53 FCDA class +2024-09-08 15:11:38,751 [main] INFO ModelStats - 1 control tracking CDC class (derived) +2024-09-08 15:11:38,751 [main] INFO ModelStats - 8 enumeration CDC class (derived) +2024-09-08 15:11:38,752 [main] INFO ModelStats - 21 primitive CDC class +2024-09-08 15:11:38,752 [main] INFO ModelStats - 4 composed CDC class +2024-09-08 15:11:38,752 [main] INFO ModelStats - 20 LN class +2024-09-08 15:11:38,752 [main] INFO ModelStats - 11 function (61850-5) class +2024-09-08 15:11:38,752 [main] INFO ModelStats - 84 other 61850 class +2024-09-08 15:11:38,752 [main] INFO ModelStats - 3 unknown 61850 class +2024-09-08 15:11:38,752 [main] INFO ModelStats - 551 attributes (761/761): +2024-09-08 15:11:38,752 [main] INFO ModelStats - 174 other enumeration literal +2024-09-08 15:11:38,752 [main] INFO ModelStats - 97 other attribute +2024-09-08 15:11:38,752 [main] INFO ModelStats - 10 abbreviation enumeration literal +2024-09-08 15:11:38,752 [main] INFO ModelStats - 30 presence condition enumeration literal +2024-09-08 15:11:38,752 [main] INFO ModelStats - 21 coded enumeration literal +2024-09-08 15:11:38,752 [main] INFO ModelStats - 52 basic attribute +2024-09-08 15:11:38,752 [main] INFO ModelStats - 4 packed attribute +2024-09-08 15:11:38,752 [main] INFO ModelStats - 42 (61850) enumeration literal +2024-09-08 15:11:38,752 [main] INFO ModelStats - 5 coded enumeration literal +2024-09-08 15:11:38,752 [main] INFO ModelStats - 3 coded enumeration DA attribute +2024-09-08 15:11:38,752 [main] INFO ModelStats - 9 enumeration DA attribute +2024-09-08 15:11:38,753 [main] INFO ModelStats - 4 packed list DA class +2024-09-08 15:11:38,753 [main] INFO ModelStats - 23 attribute on any DA whose type is primitive +2024-09-08 15:11:38,753 [main] INFO ModelStats - 14 attribute on composed DA whose type is another compoased DA +2024-09-08 15:11:38,753 [main] INFO ModelStats - 2 coded enumeration FCDA attribute +2024-09-08 15:11:38,753 [main] INFO ModelStats - 6 enumeration FCDA attribute +2024-09-08 15:11:38,753 [main] INFO ModelStats - 25 FCDA attribute +2024-09-08 15:11:38,753 [main] INFO ModelStats - 1 sub-data object (attribute on composed CDC whose type is another CDC) +2024-09-08 15:11:38,753 [main] INFO ModelStats - 13 enumerated DO (derived) +2024-09-08 15:11:38,753 [main] INFO ModelStats - 16 data object (attribute on LN) +2024-09-08 15:11:38,753 [main] INFO ModelStats - 62 associations (99/99): +2024-09-08 15:11:38,753 [main] INFO ModelStats - 18 composition +2024-09-08 15:11:38,753 [main] INFO ModelStats - 44 simple association +2024-09-08 15:11:38,753 [main] INFO ModelStats - 8 operations (14/14): +2024-09-08 15:11:38,753 [main] INFO ModelStats - 1 T[] op() +2024-09-08 15:11:38,753 [main] INFO ModelStats - 7 T op() +2024-09-08 15:11:38,753 [main] INFO ModelStats - 72 dependencies (81/81): +2024-09-08 15:11:38,753 [main] INFO ModelStats - 50 interPackage dependency +2024-09-08 15:11:38,753 [main] INFO ModelStats - 22 interClass dependency +2024-09-08 15:11:38,753 [main] INFO ModelStats - 69 diagrams (104/104) - 4 informative: +2024-09-08 15:11:38,753 [main] INFO ModelStats - 7 custom diagram +2024-09-08 15:11:38,754 [main] INFO ModelStats - 53 class diagram +2024-09-08 15:11:38,754 [main] INFO ModelStats - 3 statechart diagram +2024-09-08 15:11:38,754 [main] INFO ModelStats - 6 package diagram +2024-09-08 15:11:38,754 [main] INFO ModelStats - 8 tag names (24/24): +2024-09-08 15:11:38,754 [main] INFO ModelStats - 1 dummyPackageTag +2024-09-08 15:11:38,754 [main] INFO ModelStats - 6 scl +2024-09-08 15:11:38,754 [main] INFO ModelStats - 11 iecRef +2024-09-08 15:11:38,754 [main] INFO ModelStats - 11 ieeeRef +2024-09-08 15:11:38,754 [main] INFO ModelStats - 11 rsName +2024-09-08 15:11:38,754 [main] INFO ModelStats - 2 scl:emptyValue +2024-09-08 15:11:38,754 [main] INFO ModelStats - 6 moveAfter +2024-09-08 15:11:38,754 [main] INFO ModelStats - 1 secondTagName +2024-09-08 15:11:38,754 [main] INFO ModelStats - +2024-09-08 15:11:38,754 [main] INFO ModelStats - [WG17] +2024-09-08 15:11:38,754 [main] INFO ModelStats - 5 packages (83/83): +2024-09-08 15:11:38,754 [main] INFO ModelStats - 1 top package (per WG) +2024-09-08 15:11:38,754 [main] INFO ModelStats - 4 sub-package (any below top) +2024-09-08 15:11:38,754 [main] INFO ModelStats - 12 classes (386/386): +2024-09-08 15:11:38,754 [main] INFO ModelStats - 4 enumeration class +2024-09-08 15:11:38,754 [main] INFO ModelStats - 3 enumeration DA class +2024-09-08 15:11:38,755 [main] INFO ModelStats - 3 enumeration CDC class (derived) +2024-09-08 15:11:38,755 [main] INFO ModelStats - 2 other 61850 class +2024-09-08 15:11:38,755 [main] INFO ModelStats - 22 attributes (761/761): +2024-09-08 15:11:38,755 [main] INFO ModelStats - 12 other enumeration literal +2024-09-08 15:11:38,755 [main] INFO ModelStats - 7 other attribute +2024-09-08 15:11:38,755 [main] INFO ModelStats - 3 (61850) enumeration literal +2024-09-08 15:11:38,755 [main] INFO ModelStats - 0 associations (99/99): +2024-09-08 15:11:38,755 [main] INFO ModelStats - 0 operations (14/14): +2024-09-08 15:11:38,755 [main] INFO ModelStats - 1 dependencies (81/81): +2024-09-08 15:11:38,755 [main] INFO ModelStats - 1 interPackage dependency +2024-09-08 15:11:38,755 [main] INFO ModelStats - 5 diagrams (104/104): +2024-09-08 15:11:38,755 [main] INFO ModelStats - 4 class diagram +2024-09-08 15:11:38,755 [main] INFO ModelStats - 1 package diagram +2024-09-08 15:11:38,755 [main] INFO ModelStats - 0 tag names (24/24): +2024-09-08 15:11:38,755 [main] INFO ModelStats - +2024-09-08 15:11:38,755 [main] INFO ModelStats - [WG18] +2024-09-08 15:11:38,755 [main] INFO ModelStats - 2 packages (83/83): +2024-09-08 15:11:38,755 [main] INFO ModelStats - 1 top package (per WG) +2024-09-08 15:11:38,755 [main] INFO ModelStats - 1 sub-package (any below top) +2024-09-08 15:11:38,756 [main] INFO ModelStats - 1 classes (386/386): +2024-09-08 15:11:38,756 [main] INFO ModelStats - 1 abbreviation enumeration class +2024-09-08 15:11:38,756 [main] INFO ModelStats - 3 attributes (761/761): +2024-09-08 15:11:38,756 [main] INFO ModelStats - 3 abbreviation enumeration literal +2024-09-08 15:11:38,756 [main] INFO ModelStats - 0 associations (99/99): +2024-09-08 15:11:38,756 [main] INFO ModelStats - 0 operations (14/14): +2024-09-08 15:11:38,756 [main] INFO ModelStats - 0 dependencies (81/81): +2024-09-08 15:11:38,756 [main] INFO ModelStats - 2 diagrams (104/104): +2024-09-08 15:11:38,756 [main] INFO ModelStats - 2 class diagram +2024-09-08 15:11:38,756 [main] INFO ModelStats - 0 tag names (24/24): +2024-09-08 15:11:38,756 [main] INFO ModelStats - +2024-09-08 15:11:38,756 [main] INFO ModelStats - [JWG25] +2024-09-08 15:11:38,756 [main] INFO ModelStats - 1 packages (83/83): +2024-09-08 15:11:38,756 [main] INFO ModelStats - 1 top package (per WG) +2024-09-08 15:11:38,756 [main] INFO ModelStats - 0 classes (386/386): +2024-09-08 15:11:38,757 [main] INFO ModelStats - 0 attributes (761/761): +2024-09-08 15:11:38,757 [main] INFO ModelStats - 0 associations (99/99): +2024-09-08 15:11:38,757 [main] INFO ModelStats - 0 operations (14/14): +2024-09-08 15:11:38,757 [main] INFO ModelStats - 0 dependencies (81/81): +2024-09-08 15:11:38,757 [main] INFO ModelStats - 1 diagrams (104/104): +2024-09-08 15:11:38,757 [main] INFO ModelStats - 1 class diagram +2024-09-08 15:11:38,757 [main] INFO ModelStats - 0 tag names (24/24): +2024-09-08 15:11:38,757 [main] INFO ModelStats - +2024-09-08 15:11:38,757 [main] INFO ModelStats - [OTHER_IEC61850] +2024-09-08 15:11:38,757 [main] INFO ModelStats - 3 packages (83/83): +2024-09-08 15:11:38,757 [main] INFO ModelStats - 2 model package (with nature) +2024-09-08 15:11:38,757 [main] INFO ModelStats - 1 top package (per WG) +2024-09-08 15:11:38,757 [main] INFO ModelStats - 3 classes (386/386): +2024-09-08 15:11:38,757 [main] INFO ModelStats - 3 other 61850 class +2024-09-08 15:11:38,758 [main] INFO ModelStats - 0 attributes (761/761): +2024-09-08 15:11:38,758 [main] INFO ModelStats - 2 associations (99/99): +2024-09-08 15:11:38,758 [main] INFO ModelStats - 2 simple association +2024-09-08 15:11:38,758 [main] INFO ModelStats - 0 operations (14/14): +2024-09-08 15:11:38,758 [main] INFO ModelStats - 0 dependencies (81/81): +2024-09-08 15:11:38,758 [main] INFO ModelStats - 3 diagrams (104/104): +2024-09-08 15:11:38,758 [main] INFO ModelStats - 2 class diagram +2024-09-08 15:11:38,758 [main] INFO ModelStats - 1 package diagram +2024-09-08 15:11:38,758 [main] INFO ModelStats - 0 tag names (24/24): +2024-09-08 15:11:38,758 [main] INFO ModelStats - +2024-09-08 15:11:38,758 [main] INFO ModelStats - +2024-09-08 15:11:38,769 [main] INFO CrossPackageStats - +2024-09-08 15:11:38,769 [main] INFO CrossPackageStats - ====== Cross-package stats for 83 packages (of 83): +2024-09-08 15:11:38,770 [main] INFO CrossPackageStats - Cross-owner links: +2024-09-08 15:11:38,770 [main] INFO CrossPackageStats - 9 class inheritance: +2024-09-08 15:11:38,770 [main] INFO CrossPackageStats - (excluded inheritance from IdentifiedObject) +2024-09-08 15:11:38,771 [main] INFO CrossPackageStats - [WG13 Core::BaseVoltage, WG14 Other::BadDatatypes] +2024-09-08 15:11:38,771 [main] INFO CrossPackageStats - [WG13 Core::EquipmentContainer, OTHER_CIM Ext1::Pear] +2024-09-08 15:11:38,771 [main] INFO CrossPackageStats - [WG17 DerivedCDCs_7_420::ENSMaterial, WG10 CDCStatusInfo::ENS] +2024-09-08 15:11:38,771 [main] INFO CrossPackageStats - [WG17 DerivedCDCs_7_420::ENSOther, WG10 CDCStatusInfo::ENS] +2024-09-08 15:11:38,771 [main] INFO CrossPackageStats - [WG17 DerivedCDCs_7_420::ENCMaterial, WG10 CDCControl::ENC] +2024-09-08 15:11:38,771 [main] INFO CrossPackageStats - [WG17 DerivedDAs_7_420::Material, WG10 MetaModel::EnumDA] +2024-09-08 15:11:38,771 [main] INFO CrossPackageStats - [WG17 DerivedDAs_7_420::Material_control, WG10 MetaModel::EnumDA] +2024-09-08 15:11:38,772 [main] INFO CrossPackageStats - [WG17 DerivedDAs_7_420::Other, WG10 MetaModel::EnumDA] +2024-09-08 15:11:38,772 [main] INFO CrossPackageStats - [WG17 DOEnums_7_420::ExtBaseKind, WG10 DOEnums::BaseKind] +2024-09-08 15:11:38,772 [main] INFO CrossPackageStats - 38 class's attribute types: +2024-09-08 15:11:38,772 [main] INFO CrossPackageStats - (excluded types from Domain package) +2024-09-08 15:11:38,772 [main] INFO CrossPackageStats - [OTHER_CIM Informative::HasIllegalTypeForAttr, WG13 Core::Bay] +2024-09-08 15:11:38,772 [main] INFO CrossPackageStats - [WG13 Domain::ActivePowerChangeRate, OTHER_CIM NullCIM::NullCIM] +2024-09-08 15:11:38,772 [main] INFO CrossPackageStats - [WG10 WG10::WG10UMLVersion, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:11:38,772 [main] INFO CrossPackageStats - [WG10 IEC61850_7_2::IEC61850_7_2Namespace, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:11:38,773 [main] INFO CrossPackageStats - [WG10 CoreTypes::ObjectName, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:11:38,773 [main] INFO CrossPackageStats - [WG10 CoreTypes::P_ObjectReference, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:11:38,773 [main] INFO CrossPackageStats - [WG10 CoreTypes::P_TimeStamp, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:11:38,773 [main] INFO CrossPackageStats - [WG10 CommonAcsiTypes::IPAddress, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:11:38,773 [main] INFO CrossPackageStats - [WG10 CommonAcsiTypes::MulticastAddress, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:11:38,773 [main] INFO CrossPackageStats - [WG10 CommonAcsiTypes::ReportID, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:11:38,773 [main] INFO CrossPackageStats - [WG10 IEC61850_7_3::IEC61850_7_3Namespace, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:11:38,773 [main] INFO CrossPackageStats - [WG10 IEC61850_7_4::IEC61850_7_4Namespace, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:11:38,773 [main] INFO CrossPackageStats - [WG17 WG17::WG17UMLVersion, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:11:38,773 [main] INFO CrossPackageStats - [WG17 IEC51850_7_420::IEC61850_7_420Namespace, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:11:38,773 [main] INFO CrossPackageStats - [WG14 Other::MyClass, OTHER_CIM NullCIM::NullCIM] +2024-09-08 15:11:38,773 [main] INFO CrossPackageStats - [WG14 Other::AttrDuplication, OTHER_CIM NullCIM::NullCIM] +2024-09-08 15:11:38,773 [main] INFO CrossPackageStats - [WG10 ObjectReferences::FILEReference, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:11:38,773 [main] INFO CrossPackageStats - [WG10 ObjectReferences::LDReference, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:11:38,773 [main] INFO CrossPackageStats - [WG10 ObjectReferences::LNReference, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:11:38,773 [main] INFO CrossPackageStats - [WG10 ObjectReferences::CDCReference, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:11:38,773 [main] INFO CrossPackageStats - [WG10 ObjectReferences::FCDReference, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:11:38,774 [main] INFO CrossPackageStats - [WG10 ObjectReferences::FCDAReference, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:11:38,774 [main] INFO CrossPackageStats - [WG10 ObjectReferences::CBReference, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:11:38,774 [main] INFO CrossPackageStats - [WG10 ObjectReferences::LOGReference, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:11:38,774 [main] INFO CrossPackageStats - [WG10 ObjectReferences::LNOwnedDSReference, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:11:38,774 [main] INFO CrossPackageStats - [WG10 ObjectReferences::NonPersistentDSReference, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:11:38,774 [main] INFO CrossPackageStats - [WG10 LNGroupG::GGIO, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:11:38,774 [main] INFO CrossPackageStats - [WG10 LNGroupZ::ZAXN, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:11:38,774 [main] INFO CrossPackageStats - [WG10 LNGroupZ::ZAXN, WG17 DerivedCDCs_7_420::ENSMaterial] +2024-09-08 15:11:38,774 [main] INFO CrossPackageStats - [WG10 LNGroupZ::ZAXN, WG17 DerivedCDCs_7_420::ENCMaterial] +2024-09-08 15:11:38,774 [main] INFO CrossPackageStats - [WG10 LNGroupZ::ZAXN, WG17 DerivedCDCs_7_420::ENSOther] +2024-09-08 15:11:38,774 [main] INFO CrossPackageStats - [WG10 LNGroupP::ProtectionLN, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:11:38,774 [main] INFO CrossPackageStats - [WG10 CDCAnalogueInfo::CMV, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:11:38,774 [main] INFO CrossPackageStats - [WG10 CDCControl::BAC, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:11:38,774 [main] INFO CrossPackageStats - [WG10 CDCStatusInfo::ACD, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:11:38,774 [main] INFO CrossPackageStats - [WG10 CDCStatusSet::ENG, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:11:38,774 [main] INFO CrossPackageStats - [WG10 MetaModel::IED, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:11:38,774 [main] INFO CrossPackageStats - [WG10 MetaModel::SERVER, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:11:38,775 [main] INFO CrossPackageStats - 2 class's operation parameters and exceptions: +2024-09-08 15:11:38,775 [main] INFO CrossPackageStats - [WG10 CommonAcsiTypes::Authentication, OTHER_IEC61850 NullIEC61850::NullIEC61850] +2024-09-08 15:11:38,775 [main] INFO CrossPackageStats - [WG13 Core::PowerSystemResource, OTHER_CIM NullCIM::NullCIM] +2024-09-08 15:11:38,775 [main] INFO CrossPackageStats - 0 class-to-class (hand-drawn) dependency: +2024-09-08 15:11:38,775 [main] INFO CrossPackageStats - 4 class-to-class associations: +2024-09-08 15:11:38,775 [main] INFO CrossPackageStats - [WG14 Other::MyClass, OTHER_CIM Informative::Class1] +2024-09-08 15:11:38,775 [main] INFO CrossPackageStats - [WG14 Assets::AssetInfo, WG13 Core::PowerSystemResource] +2024-09-08 15:11:38,775 [main] INFO CrossPackageStats - [OTHER_IEC61850 Ext2::Animal, OTHER_CIM Ext1::Fruit] +2024-09-08 15:11:38,775 [main] INFO CrossPackageStats - [OTHER_IEC61850 Ext2::Animal, OTHER_CIM Ext1::Fruit] +2024-09-08 15:11:38,775 [main] INFO CrossPackageStats - 7 package-to-package (hand-drawn) dependency: +2024-09-08 15:11:38,775 [main] INFO CrossPackageStats - [WG13 TC57CIM::IEC61970, WG14 IEC61968::Other] +2024-09-08 15:11:38,775 [main] INFO CrossPackageStats - [WG13 TC57CIM::IEC61970, WG14 TC57CIM::IEC61968] +2024-09-08 15:11:38,776 [main] INFO CrossPackageStats - [WG13 TC57CIM::IEC61970, WG16 TC57CIM::IEC62325] +2024-09-08 15:11:38,776 [main] INFO CrossPackageStats - [WG13 IEC61970::Topology, WG14 IEC61968::Other] +2024-09-08 15:11:38,776 [main] INFO CrossPackageStats - [WG16 TC57CIM::IEC62325, WG14 TC57CIM::IEC61968] +2024-09-08 15:11:38,776 [main] INFO CrossPackageStats - [WG17 IEC61850Domain::WG17, WG10 WG10::IEC61850_7_4] +2024-09-08 15:11:38,776 [main] INFO CrossPackageStats - [WG10 WG10::IEC61850_7_4, WG17 WG17::IEC51850_7_420] +2024-09-08 15:11:38,779 [main] TRACE CrossPackageStats - Cross-package links (within same owner): +2024-09-08 15:11:38,779 [main] TRACE CrossPackageStats - 108 class inheritance: +2024-09-08 15:11:38,779 [main] TRACE CrossPackageStats - (excluded inheritance from IdentifiedObject) +2024-09-08 15:11:38,779 [main] TRACE CrossPackageStats - [WG13 Topology::BusNameMarker, WG13 InformativeAndPrivate::InfClass2] +2024-09-08 15:11:38,779 [main] TRACE CrossPackageStats - [WG13 Topology::DumbSubterminal, WG13 Core::Terminal] +2024-09-08 15:11:38,779 [main] TRACE CrossPackageStats - [WG10 ObjectReferences::FILEReference, WG10 CoreTypes::P_ObjectReference] +2024-09-08 15:11:38,779 [main] TRACE CrossPackageStats - [WG10 ObjectReferences::LDReference, WG10 CoreTypes::P_ObjectReference] +2024-09-08 15:11:38,779 [main] TRACE CrossPackageStats - [WG10 ObjectReferences::NonPersistentDSReference, WG10 CoreTypes::P_ObjectReference] +2024-09-08 15:11:38,779 [main] TRACE CrossPackageStats - [WG10 LNGroupL::LPHD, WG10 MetaModel::LNPHD] +2024-09-08 15:11:38,779 [main] TRACE CrossPackageStats - [WG10 LNGroupL::LLN0, WG10 MetaModel::LN0] +2024-09-08 15:11:38,779 [main] TRACE CrossPackageStats - [WG10 LogicalNodes::DomainLN, WG10 MetaModel::LNDOM] +2024-09-08 15:11:38,779 [main] TRACE CrossPackageStats - [WG10 LNGroupG::GGIO, WG10 LogicalNodes::StatisticsLN] +2024-09-08 15:11:38,779 [main] TRACE CrossPackageStats - [WG10 LNGroupM::MMXU, WG10 LogicalNodes::StatisticsLN] +2024-09-08 15:11:38,779 [main] TRACE CrossPackageStats - [WG10 LNGroupZ::ZAXN, WG10 LogicalNodes::EquipmentInterfaceLN] +2024-09-08 15:11:38,780 [main] TRACE CrossPackageStats - [WG10 LNGroupL::KXYZ, WG10 LogicalNodes::DomainLN] +2024-09-08 15:11:38,780 [main] TRACE CrossPackageStats - [WG10 LNGroupC::CALH, WG10 LogicalNodes::DomainLN] +2024-09-08 15:11:38,780 [main] TRACE CrossPackageStats - [WG10 LNGroupP::ProtectionLN, WG10 LogicalNodes::DomainLN] +2024-09-08 15:11:38,780 [main] TRACE CrossPackageStats - [WG10 LNGroupR::RDIR, WG10 LogicalNodes::DomainLN] +2024-09-08 15:11:38,780 [main] TRACE CrossPackageStats - [WG10 CommonDataClasses::BasePrimitiveCDC, WG10 MetaModel::PrimitiveCDC] +2024-09-08 15:11:38,780 [main] TRACE CrossPackageStats - [WG10 CDCServiceTracking::CST, WG10 CommonDataClasses::BasePrimitiveCDC] +2024-09-08 15:11:38,780 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::DPS, WG10 CommonDataClasses::SubstitutionCDC] +2024-09-08 15:11:38,780 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::ENS, WG10 CommonDataClasses::SubstitutionCDC] +2024-09-08 15:11:38,780 [main] TRACE CrossPackageStats - [WG10 DerivedCDCs::ENSBehaviourMode, WG10 CDCStatusInfo::ENS] +2024-09-08 15:11:38,780 [main] TRACE CrossPackageStats - [WG10 DerivedCDCs::ENSHealth, WG10 CDCStatusInfo::ENS] +2024-09-08 15:11:38,780 [main] TRACE CrossPackageStats - [WG10 DerivedCDCs::ENSEnumDA, WG10 CDCStatusInfo::ENS] +2024-09-08 15:11:38,780 [main] TRACE CrossPackageStats - [WG10 CDCAnalogueInfo::CMV, WG10 CommonDataClasses::SubstitutionCDC] +2024-09-08 15:11:38,780 [main] TRACE CrossPackageStats - [WG10 CDCControl::ControllableCDC, WG10 CommonDataClasses::SubstitutionCDC] +2024-09-08 15:11:38,780 [main] TRACE CrossPackageStats - [WG10 DerivedCDCs::ENCBehaviourMode, WG10 CDCControl::ENC] +2024-09-08 15:11:38,780 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::EXY, WG10 CommonDataClasses::BasePrimitiveCDC] +2024-09-08 15:11:38,780 [main] TRACE CrossPackageStats - [WG10 DerivedCDCs::EXYBehaviourMode, WG10 CDCStatusInfo::EXY] +2024-09-08 15:11:38,780 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::ACD, WG10 CommonDataClasses::BasePrimitiveCDC] +2024-09-08 15:11:38,780 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::HST, WG10 CommonDataClasses::BasePrimitiveCDC] +2024-09-08 15:11:38,780 [main] TRACE CrossPackageStats - [WG10 CDCStatusSet::ENG, WG10 CommonDataClasses::BasePrimitiveCDC] +2024-09-08 15:11:38,780 [main] TRACE CrossPackageStats - [WG10 DerivedCDCs::ENGCalcMethod, WG10 CDCStatusSet::ENG] +2024-09-08 15:11:38,780 [main] TRACE CrossPackageStats - [WG10 CDCDescription::LPL, WG10 CommonDataClasses::BasePrimitiveCDC] +2024-09-08 15:11:38,780 [main] TRACE CrossPackageStats - [WG10 CommonDataClasses::BaseComposedCDC, WG10 MetaModel::ComposedCDC] +2024-09-08 15:11:38,780 [main] TRACE CrossPackageStats - [WG10 CDCAnalogueInfo::HarmonicMeasurandCDC, WG10 CommonDataClasses::BaseComposedCDC] +2024-09-08 15:11:38,780 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_BL, WG10 MetaModel::FCDA] +2024-09-08 15:11:38,780 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_BL, WG10 MetaModelFCsAndTrgOps::FCDA_BL] +2024-09-08 15:11:38,780 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_CF, WG10 MetaModel::FCDA] +2024-09-08 15:11:38,780 [main] TRACE CrossPackageStats - [WG10 FCDAs::EnumDA_CF_dchg, WG10 MetaModelFCsAndTrgOps::EnumFCDA_CF_dchg] +2024-09-08 15:11:38,780 [main] TRACE CrossPackageStats - [WG10 FCDAs::PhaseAngleReference_CF_dchg, WG10 MetaModelFCsAndTrgOps::EnumFCDA_CF_dchg] +2024-09-08 15:11:38,780 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_CF_dchg, WG10 MetaModelFCsAndTrgOps::FCDA_CF_dchg] +2024-09-08 15:11:38,780 [main] TRACE CrossPackageStats - [WG10 FCDAs::INT16U_CF_dchg, WG10 MetaModelFCsAndTrgOps::FCDA_CF_dchg] +2024-09-08 15:11:38,780 [main] TRACE CrossPackageStats - [WG10 FCDAs::INT32U_CF_dchg, WG10 MetaModelFCsAndTrgOps::FCDA_CF_dchg] +2024-09-08 15:11:38,780 [main] TRACE CrossPackageStats - [WG10 FCDAs::INT32_CF_dchg, WG10 MetaModelFCsAndTrgOps::FCDA_CF_dchg] +2024-09-08 15:11:38,780 [main] TRACE CrossPackageStats - [WG10 FCDAs::RangeConfig_CF_dchg, WG10 MetaModelFCsAndTrgOps::FCDA_CF_dchg] +2024-09-08 15:11:38,780 [main] TRACE CrossPackageStats - [WG10 FCDAs::INT16U_CF, WG10 MetaModelFCsAndTrgOps::FCDA_CF] +2024-09-08 15:11:38,780 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_DC, WG10 MetaModel::FCDA] +2024-09-08 15:11:38,780 [main] TRACE CrossPackageStats - [WG10 FCDAs::Point_DC, WG10 MetaModelFCsAndTrgOps::FCDA_DC] +2024-09-08 15:11:38,780 [main] TRACE CrossPackageStats - [WG10 FCDAs::UNICODE_STRING255_DC, WG10 MetaModelFCsAndTrgOps::FCDA_DC] +2024-09-08 15:11:38,780 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_EX, WG10 MetaModel::FCDA] +2024-09-08 15:11:38,780 [main] TRACE CrossPackageStats - [WG10 FCDAs::VISIBLE_STRING255_EX, WG10 MetaModelFCsAndTrgOps::FCDA_EX] +2024-09-08 15:11:38,780 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_MX, WG10 MetaModel::FCDA] +2024-09-08 15:11:38,780 [main] TRACE CrossPackageStats - [WG10 FCDAs::AnalogueValue_MX_dchg, WG10 MetaModelFCsAndTrgOps::FCDA_MX_dchg] +2024-09-08 15:11:38,780 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_MX_dchg, WG10 MetaModelFCsAndTrgOps::FCDA_MX_dchg] +2024-09-08 15:11:38,780 [main] TRACE CrossPackageStats - [WG10 FCDAs::AnalogueValue_MX_dchg_dupd, WG10 MetaModelFCsAndTrgOps::FCDA_MX_dchg_dupd] +2024-09-08 15:11:38,780 [main] TRACE CrossPackageStats - [WG10 FCDAs::Quality_MX_qchg, WG10 MetaModelFCsAndTrgOps::FCDA_MX_qchg] +2024-09-08 15:11:38,780 [main] TRACE CrossPackageStats - [WG10 FCDAs::AnalogueValue_MX, WG10 MetaModelFCsAndTrgOps::FCDA_MX] +2024-09-08 15:11:38,782 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_OR, WG10 MetaModel::FCDA] +2024-09-08 15:11:38,782 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_OR_dchg, WG10 MetaModelFCsAndTrgOps::FCDA_OR_dchg] +2024-09-08 15:11:38,782 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_SE, WG10 MetaModel::FCDA] +2024-09-08 15:11:38,782 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_SE, WG10 MetaModelFCsAndTrgOps::FCDA_SE] +2024-09-08 15:11:38,783 [main] TRACE CrossPackageStats - [WG10 FCDAs::Point_SE, WG10 MetaModelFCsAndTrgOps::FCDA_SE] +2024-09-08 15:11:38,783 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_SG, WG10 MetaModel::FCDA] +2024-09-08 15:11:38,783 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_SG, WG10 MetaModelFCsAndTrgOps::FCDA_SG] +2024-09-08 15:11:38,783 [main] TRACE CrossPackageStats - [WG10 FCDAs::Point_SG, WG10 MetaModelFCsAndTrgOps::FCDA_SG] +2024-09-08 15:11:38,783 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_SP, WG10 MetaModel::FCDA] +2024-09-08 15:11:38,783 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_SP_dchg, WG10 MetaModelFCsAndTrgOps::FCDA_SP_dchg] +2024-09-08 15:11:38,783 [main] TRACE CrossPackageStats - [WG10 FCDAs::Point_SP, WG10 MetaModelFCsAndTrgOps::FCDA_SP] +2024-09-08 15:11:38,783 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_ST, WG10 MetaModel::FCDA] +2024-09-08 15:11:38,783 [main] TRACE CrossPackageStats - [WG10 FCDAs::DpStatus_ST_dchg, WG10 MetaModelFCsAndTrgOps::PackedEnumFCDA_SP_dchg] +2024-09-08 15:11:38,783 [main] TRACE CrossPackageStats - [WG10 FCDAs::EnumDA_ST_dchg, WG10 MetaModelFCsAndTrgOps::EnumFCDA_ST_dchg] +2024-09-08 15:11:38,783 [main] TRACE CrossPackageStats - [WG10 FCDAs::PhaseFaultDirection_ST_dchg, WG10 MetaModelFCsAndTrgOps::EnumFCDA_ST_dchg] +2024-09-08 15:11:38,783 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_ST_dchg, WG10 MetaModelFCsAndTrgOps::FCDA_ST_dchg] +2024-09-08 15:11:38,783 [main] TRACE CrossPackageStats - [WG10 FCDAs::INT32_ST_dchg, WG10 MetaModelFCsAndTrgOps::FCDA_ST_dchg] +2024-09-08 15:11:38,783 [main] TRACE CrossPackageStats - [WG10 FCDAs::EnumDA_ST_dchg_dupd, WG10 MetaModelFCsAndTrgOps::EnumFCDA_ST_dchg_dupd] +2024-09-08 15:11:38,783 [main] TRACE CrossPackageStats - [WG10 FCDAs::INT32_ST_dchg_dupd, WG10 MetaModelFCsAndTrgOps::FCDA_ST_dchg_dupd] +2024-09-08 15:11:38,783 [main] TRACE CrossPackageStats - [WG10 FCDAs::Quality_ST_qchg, WG10 MetaModelFCsAndTrgOps::FCDA_ST_qchg] +2024-09-08 15:11:38,783 [main] TRACE CrossPackageStats - [WG10 FCDAs::TimeStamp_ST, WG10 MetaModelFCsAndTrgOps::FCDA_ST] +2024-09-08 15:11:38,783 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_SV, WG10 MetaModel::FCDA] +2024-09-08 15:11:38,783 [main] TRACE CrossPackageStats - [WG10 FCDAs::DpStatus_SV, WG10 MetaModelFCsAndTrgOps::PackedEnumFCDA_SV] +2024-09-08 15:11:38,783 [main] TRACE CrossPackageStats - [WG10 FCDAs::EnumDA_SV, WG10 MetaModelFCsAndTrgOps::EnumFCDA_SV] +2024-09-08 15:11:38,783 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_SV, WG10 MetaModelFCsAndTrgOps::FCDA_SV] +2024-09-08 15:11:38,783 [main] TRACE CrossPackageStats - [WG10 FCDAs::Quality_SV, WG10 MetaModelFCsAndTrgOps::FCDA_SV] +2024-09-08 15:11:38,783 [main] TRACE CrossPackageStats - [WG10 BasicDAs::PHYCOMADDR, WG10 MetaModel::PrimitiveDA] +2024-09-08 15:11:38,783 [main] TRACE CrossPackageStats - [WG10 BasicDAs::ObjectReference, WG10 MetaModel::PrimitiveDA] +2024-09-08 15:11:38,783 [main] TRACE CrossPackageStats - [WG10 BasicDAs::VISIBLE_STRING255, WG10 MetaModel::PrimitiveDA] +2024-09-08 15:11:38,783 [main] TRACE CrossPackageStats - [WG10 BasicDAs::UNICODE_STRING255, WG10 MetaModel::PrimitiveDA] +2024-09-08 15:11:38,783 [main] TRACE CrossPackageStats - [WG10 BasicDAs::INT32U, WG10 MetaModel::PrimitiveDA] +2024-09-08 15:11:38,783 [main] TRACE CrossPackageStats - [WG10 BasicDAs::INT32, WG10 MetaModel::PrimitiveDA] +2024-09-08 15:11:38,784 [main] TRACE CrossPackageStats - [WG10 BasicDAs::INT16U, WG10 MetaModel::PrimitiveDA] +2024-09-08 15:11:38,784 [main] TRACE CrossPackageStats - [WG10 BasicDAs::FLOAT32, WG10 MetaModel::PrimitiveDA] +2024-09-08 15:11:38,784 [main] TRACE CrossPackageStats - [WG10 BasicDAs::BOOLEAN, WG10 MetaModel::PrimitiveDA] +2024-09-08 15:11:38,784 [main] TRACE CrossPackageStats - [WG10 BasicDAs::TriggerConditions, WG10 MetaModel::PackedPrimitiveDA] +2024-09-08 15:11:38,784 [main] TRACE CrossPackageStats - [WG10 BasicDAs::TimeStamp, WG10 MetaModel::PackedPrimitiveDA] +2024-09-08 15:11:38,784 [main] TRACE CrossPackageStats - [WG10 ConstructedDAs::Quality, WG10 MetaModel::PackedPrimitiveDA] +2024-09-08 15:11:38,784 [main] TRACE CrossPackageStats - [WG10 BasicDAs::BsControl, WG10 MetaModel::PackedEnumDA] +2024-09-08 15:11:38,784 [main] TRACE CrossPackageStats - [WG10 BasicDAs::DpStatus, WG10 MetaModel::PackedEnumDA] +2024-09-08 15:11:38,784 [main] TRACE CrossPackageStats - [WG10 ImplicitDAs::SIUnit, WG10 MetaModel::EnumDA] +2024-09-08 15:11:38,784 [main] TRACE CrossPackageStats - [WG10 ImplicitDAs::Multiplier, WG10 MetaModel::EnumDA] +2024-09-08 15:11:38,784 [main] TRACE CrossPackageStats - [WG10 ImplicitDAs::PhaseFaultDirection, WG10 MetaModel::EnumDA] +2024-09-08 15:11:38,784 [main] TRACE CrossPackageStats - [WG10 ImplicitDAs::PhaseAngleReference, WG10 MetaModel::EnumDA] +2024-09-08 15:11:38,784 [main] TRACE CrossPackageStats - [WG10 DerivedDAs::BehaviourMode, WG10 MetaModel::EnumDA] +2024-09-08 15:11:38,784 [main] TRACE CrossPackageStats - [WG10 DerivedDAs::CalcMethod, WG10 MetaModel::EnumDA] +2024-09-08 15:11:38,784 [main] TRACE CrossPackageStats - [WG10 DerivedDAs::Health, WG10 MetaModel::EnumDA] +2024-09-08 15:11:38,784 [main] TRACE CrossPackageStats - [WG10 ConstructedDAs::AnalogueValue, WG10 MetaModel::ComposedDA] +2024-09-08 15:11:38,784 [main] TRACE CrossPackageStats - [WG10 ConstructedDAs::RangeConfig, WG10 MetaModel::ComposedDA] +2024-09-08 15:11:38,784 [main] TRACE CrossPackageStats - [WG10 ConstructedDAs::Unit, WG10 MetaModel::ComposedDA] +2024-09-08 15:11:38,784 [main] TRACE CrossPackageStats - [WG10 ConstructedDAs::Point, WG10 MetaModel::ComposedDA] +2024-09-08 15:11:38,784 [main] TRACE CrossPackageStats - [WG10 DerivedCDCs::SPCTransient, WG10 CDCControl::SPC] +2024-09-08 15:11:38,784 [main] TRACE CrossPackageStats - 194 class's attribute types: +2024-09-08 15:11:38,784 [main] TRACE CrossPackageStats - (excluded types from Domain package) +2024-09-08 15:11:38,784 [main] TRACE CrossPackageStats - [WG10 CommonAcsiTypes::MulticastAddress, WG10 CoreTypes::P_INT16U] +2024-09-08 15:11:38,784 [main] TRACE CrossPackageStats - [WG10 ConstructedDAs::DetailQual, WG10 CoreTypes::P_BOOLEAN] +2024-09-08 15:11:38,784 [main] TRACE CrossPackageStats - [OTHER_CIM Ext1::Pear, OTHER_CIM Informative::SomeSimpleType] +2024-09-08 15:11:38,784 [main] TRACE CrossPackageStats - [WG10 ObjectReferences::LDReference, WG10 CoreTypes::ObjectName] +2024-09-08 15:11:38,784 [main] TRACE CrossPackageStats - [WG10 ObjectReferences::LNReference, WG10 CoreTypes::ObjectName] +2024-09-08 15:11:38,784 [main] TRACE CrossPackageStats - [WG10 ObjectReferences::CDCReference, WG10 CoreTypes::ObjectName] +2024-09-08 15:11:38,784 [main] TRACE CrossPackageStats - [WG10 ObjectReferences::FCDReference, WG10 FunctionalConstraints::FcKind] +2024-09-08 15:11:38,784 [main] TRACE CrossPackageStats - [WG10 ObjectReferences::FCDAReference, WG10 CoreTypes::P_VISIBLE_STRING255] +2024-09-08 15:11:38,784 [main] TRACE CrossPackageStats - [WG10 ObjectReferences::FCDAReference, WG10 CoreTypes::ObjectName] +2024-09-08 15:11:38,785 [main] TRACE CrossPackageStats - [WG10 ObjectReferences::FCDAReference, WG10 CoreTypes::P_INT32U] +2024-09-08 15:11:38,785 [main] TRACE CrossPackageStats - [WG10 ObjectReferences::CBReference, WG10 CoreTypes::ObjectName] +2024-09-08 15:11:38,785 [main] TRACE CrossPackageStats - [WG10 ObjectReferences::LOGReference, WG10 CoreTypes::ObjectName] +2024-09-08 15:11:38,785 [main] TRACE CrossPackageStats - [WG10 ObjectReferences::LNOwnedDSReference, WG10 CoreTypes::ObjectName] +2024-09-08 15:11:38,785 [main] TRACE CrossPackageStats - [WG10 ObjectReferences::NonPersistentDSReference, WG10 CoreTypes::ObjectName] +2024-09-08 15:11:38,785 [main] TRACE CrossPackageStats - [WG10 MetaModel::NamedIEC61850Object, WG10 CoreTypes::ObjectName] +2024-09-08 15:11:38,785 [main] TRACE CrossPackageStats - [WG10 MetaModel::LD, WG10 ObjectReferences::LDReference] +2024-09-08 15:11:38,785 [main] TRACE CrossPackageStats - [WG10 MetaModel::LN, WG10 ObjectReferences::LNReference] +2024-09-08 15:11:38,785 [main] TRACE CrossPackageStats - [WG10 LNGroupL::LPHD, WG10 DerivedCDCs::ENSHealth] +2024-09-08 15:11:38,785 [main] TRACE CrossPackageStats - [WG10 LNGroupL::LPHD, WG10 DerivedCDCs::SPCTransient] +2024-09-08 15:11:38,785 [main] TRACE CrossPackageStats - [WG10 LNGroupL::LPHD, WG10 DerivedCDCs::SPSTransient] +2024-09-08 15:11:38,785 [main] TRACE CrossPackageStats - [WG10 LNGroupL::LLN0, WG10 CDCDescription::LPL] +2024-09-08 15:11:38,785 [main] TRACE CrossPackageStats - [WG10 LNGroupL::LLN0, WG10 DerivedCDCs::ENSBehaviourMode] +2024-09-08 15:11:38,785 [main] TRACE CrossPackageStats - [WG10 LNGroupL::LLN0, WG10 DerivedCDCs::ENSHealth] +2024-09-08 15:11:38,785 [main] TRACE CrossPackageStats - [WG10 LogicalNodes::DomainLN, WG10 CDCDescription::LPL] +2024-09-08 15:11:38,785 [main] TRACE CrossPackageStats - [WG10 LogicalNodes::DomainLN, WG10 DerivedCDCs::ENSHealth] +2024-09-08 15:11:38,785 [main] TRACE CrossPackageStats - [WG10 LogicalNodes::DomainLN, WG10 DerivedCDCs::ENCBehaviourMode] +2024-09-08 15:11:38,785 [main] TRACE CrossPackageStats - [WG10 LogicalNodes::DomainLN, WG10 CDCAnalogueInfo::CMV] +2024-09-08 15:11:38,785 [main] TRACE CrossPackageStats - [WG10 LogicalNodes::StatisticsLN, WG10 DerivedCDCs::SPSTransient] +2024-09-08 15:11:38,785 [main] TRACE CrossPackageStats - [WG10 LogicalNodes::StatisticsLN, WG10 DerivedCDCs::ENGCalcMethod] +2024-09-08 15:11:38,785 [main] TRACE CrossPackageStats - [WG10 LNGroupG::GGIO, WG10 DerivedCDCs::ENSHealth] +2024-09-08 15:11:38,785 [main] TRACE CrossPackageStats - [WG10 LNGroupG::GGIO, WG10 CDCAnalogueInfo::CMV] +2024-09-08 15:11:38,785 [main] TRACE CrossPackageStats - [WG10 LNGroupM::MMXU, WG10 CDCAnalogueInfo::HWYE] +2024-09-08 15:11:38,785 [main] TRACE CrossPackageStats - [WG10 LNGroupM::MMXU, WG10 CDCAnalogueInfo::CMV] +2024-09-08 15:11:38,785 [main] TRACE CrossPackageStats - [WG10 LNGroupM::MMXU, WG10 CDCStatusInfo::HST] +2024-09-08 15:11:38,785 [main] TRACE CrossPackageStats - [WG10 LogicalNodes::EquipmentInterfaceLN, WG10 DerivedCDCs::ENSHealth] +2024-09-08 15:11:38,785 [main] TRACE CrossPackageStats - [WG10 LNGroupZ::ZAXN, WG10 CDCAnalogueInfo::CMV] +2024-09-08 15:11:38,785 [main] TRACE CrossPackageStats - [WG10 LNGroupL::KXYZ, WG10 CDCAnalogueInfo::CMV] +2024-09-08 15:11:38,785 [main] TRACE CrossPackageStats - [WG10 LNGroupL::KXYZ, WG10 CDCStatusInfo::ENS] +2024-09-08 15:11:38,785 [main] TRACE CrossPackageStats - [WG10 LNGroupL::KXYZ, WG10 DerivedCDCs::ENSEnumDA] +2024-09-08 15:11:38,785 [main] TRACE CrossPackageStats - [WG10 LNGroupC::CALH, WG10 CDCStatusInfo::DPS] +2024-09-08 15:11:38,785 [main] TRACE CrossPackageStats - [WG10 LNGroupC::CALH, WG10 DerivedCDCs::EXYBehaviourMode] +2024-09-08 15:11:38,785 [main] TRACE CrossPackageStats - [WG10 LNGroupP::PDIF, WG10 CDCStatusInfo::ACD] +2024-09-08 15:11:38,785 [main] TRACE CrossPackageStats - [WG10 LNGroupP::PDIF, WG10 DerivedCDCs::ACTTransient] +2024-09-08 15:11:38,785 [main] TRACE CrossPackageStats - [WG10 LNGroupP::PDIS, WG10 CDCStatusInfo::ACD] +2024-09-08 15:11:38,785 [main] TRACE CrossPackageStats - [WG10 LNGroupP::PDIS, WG10 DerivedCDCs::ACTTransient] +2024-09-08 15:11:38,785 [main] TRACE CrossPackageStats - [WG10 LNGroupR::RDIR, WG10 CDCStatusInfo::ACD] +2024-09-08 15:11:38,785 [main] TRACE CrossPackageStats - [WG10 LNGroupR::RDIR, WG10 DerivedCDCs::SPSTransient] +2024-09-08 15:11:38,785 [main] TRACE CrossPackageStats - [WG10 MetaModel::CDC, WG10 ObjectReferences::CDCReference] +2024-09-08 15:11:38,785 [main] TRACE CrossPackageStats - [WG10 CommonDataClasses::BasePrimitiveCDC, WG10 FCDAs::UNICODE_STRING255_DC] +2024-09-08 15:11:38,785 [main] TRACE CrossPackageStats - [WG10 CommonDataClasses::BasePrimitiveCDC, WG10 FCDAs::VISIBLE_STRING255_EX] +2024-09-08 15:11:38,785 [main] TRACE CrossPackageStats - [WG10 CommonDataClasses::SubstitutionCDC, WG10 FCDAs::BOOLEAN_SV] +2024-09-08 15:11:38,785 [main] TRACE CrossPackageStats - [WG10 CommonDataClasses::SubstitutionCDC, WG10 FCDAs::Quality_SV] +2024-09-08 15:11:38,785 [main] TRACE CrossPackageStats - [WG10 CommonDataClasses::SubstitutionCDC, WG10 FCDAs::BOOLEAN_BL] +2024-09-08 15:11:38,785 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::DPS, WG10 FCDAs::DpStatus_ST_dchg] +2024-09-08 15:11:38,785 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::DPS, WG10 FCDAs::Quality_ST_qchg] +2024-09-08 15:11:38,786 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::DPS, WG10 FCDAs::TimeStamp_ST] +2024-09-08 15:11:38,786 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::DPS, WG10 FCDAs::DpStatus_SV] +2024-09-08 15:11:38,786 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::ENS, WG10 FCDAs::EnumDA_ST_dchg_dupd] +2024-09-08 15:11:38,786 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::ENS, WG10 FCDAs::Quality_ST_qchg] +2024-09-08 15:11:38,786 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::ENS, WG10 FCDAs::TimeStamp_ST] +2024-09-08 15:11:38,786 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::ENS, WG10 FCDAs::EnumDA_SV] +2024-09-08 15:11:38,786 [main] TRACE CrossPackageStats - [WG10 CDCAnalogueInfo::CMV, WG10 FCDAs::RangeConfig_CF_dchg] +2024-09-08 15:11:38,786 [main] TRACE CrossPackageStats - [WG10 CDCControl::ControllableCDC, WG10 FCDAs::BOOLEAN_OR_dchg] +2024-09-08 15:11:38,786 [main] TRACE CrossPackageStats - [WG10 CDCControl::ENC, WG10 FCDAs::EnumDA_ST_dchg] +2024-09-08 15:11:38,786 [main] TRACE CrossPackageStats - [WG10 CDCControl::ENC, WG10 FCDAs::EnumDA_SV] +2024-09-08 15:11:38,786 [main] TRACE CrossPackageStats - [WG10 CDCControl::ENC, WG10 MetaModel::EnumDA] +2024-09-08 15:11:38,786 [main] TRACE CrossPackageStats - [WG10 CDCControl::BAC, WG10 FCDAs::AnalogueValue_MX_dchg] +2024-09-08 15:11:38,786 [main] TRACE CrossPackageStats - [WG10 CDCControl::BAC, WG10 BasicDAs::BsControl] +2024-09-08 15:11:38,786 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::EXY, WG10 FCDAs::EnumDA_ST_dchg_dupd] +2024-09-08 15:11:38,786 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::EXY, WG10 FCDAs::Quality_ST_qchg] +2024-09-08 15:11:38,786 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::EXY, WG10 FCDAs::TimeStamp_ST] +2024-09-08 15:11:38,786 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::ACD, WG10 FCDAs::BOOLEAN_ST_dchg] +2024-09-08 15:11:38,786 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::HST, WG10 FCDAs::INT32_ST_dchg_dupd] +2024-09-08 15:11:38,786 [main] TRACE CrossPackageStats - [WG10 CDCStatusInfo::HST, WG10 FCDAs::INT16U_CF] +2024-09-08 15:11:38,786 [main] TRACE CrossPackageStats - [WG10 CDCDescription::LPL, WG10 FCDAs::VISIBLE_STRING255_EX] +2024-09-08 15:11:38,786 [main] TRACE CrossPackageStats - [WG10 CommonDataClasses::BaseComposedCDC, WG10 FCDAs::UNICODE_STRING255_DC] +2024-09-08 15:11:38,786 [main] TRACE CrossPackageStats - [WG10 CommonDataClasses::BaseComposedCDC, WG10 FCDAs::VISIBLE_STRING255_EX] +2024-09-08 15:11:38,786 [main] TRACE CrossPackageStats - [WG10 CDCAnalogueInfo::HarmonicMeasurandCDC, WG10 FCDAs::INT16U_CF_dchg] +2024-09-08 15:11:38,786 [main] TRACE CrossPackageStats - [WG10 CDCAnalogueInfo::HarmonicMeasurandCDC, WG10 FCDAs::INT32U_CF_dchg] +2024-09-08 15:11:38,786 [main] TRACE CrossPackageStats - [WG10 CDCAnalogueInfo::HWYE, WG10 FCDAs::PhaseAngleReference_CF_dchg] +2024-09-08 15:11:38,786 [main] TRACE CrossPackageStats - [WG10 MetaModel::FCDA, WG10 ObjectReferences::FCDAReference] +2024-09-08 15:11:38,786 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_BL, WG10 FunctionalConstraints::FcKind] +2024-09-08 15:11:38,786 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_BL, WG10 BasicDAs::BOOLEAN] +2024-09-08 15:11:38,786 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_CF, WG10 FunctionalConstraints::FcKind] +2024-09-08 15:11:38,786 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_CF_dchg, WG10 TriggerOptions::TrgOpKind] +2024-09-08 15:11:38,786 [main] TRACE CrossPackageStats - [WG10 FCDAs::EnumDA_CF_dchg, WG10 MetaModel::EnumDA] +2024-09-08 15:11:38,786 [main] TRACE CrossPackageStats - [WG10 FCDAs::PhaseAngleReference_CF_dchg, WG10 ImplicitDAs::PhaseAngleReference] +2024-09-08 15:11:38,786 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_CF_dchg, WG10 BasicDAs::BOOLEAN] +2024-09-08 15:11:38,786 [main] TRACE CrossPackageStats - [WG10 FCDAs::INT16U_CF_dchg, WG10 BasicDAs::INT16U] +2024-09-08 15:11:38,786 [main] TRACE CrossPackageStats - [WG10 FCDAs::INT32U_CF_dchg, WG10 BasicDAs::INT32U] +2024-09-08 15:11:38,786 [main] TRACE CrossPackageStats - [WG10 FCDAs::INT32_CF_dchg, WG10 BasicDAs::INT32] +2024-09-08 15:11:38,786 [main] TRACE CrossPackageStats - [WG10 FCDAs::RangeConfig_CF_dchg, WG10 ConstructedDAs::RangeConfig] +2024-09-08 15:11:38,786 [main] TRACE CrossPackageStats - [WG10 FCDAs::INT16U_CF, WG10 BasicDAs::INT16U] +2024-09-08 15:11:38,786 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_DC, WG10 FunctionalConstraints::FcKind] +2024-09-08 15:11:38,786 [main] TRACE CrossPackageStats - [WG10 FCDAs::Point_DC, WG10 ConstructedDAs::Point] +2024-09-08 15:11:38,786 [main] TRACE CrossPackageStats - [WG10 FCDAs::UNICODE_STRING255_DC, WG10 BasicDAs::UNICODE_STRING255] +2024-09-08 15:11:38,786 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_EX, WG10 FunctionalConstraints::FcKind] +2024-09-08 15:11:38,786 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_EX, WG10 CoreTypes::P_BOOLEAN] +2024-09-08 15:11:38,786 [main] TRACE CrossPackageStats - [WG10 FCDAs::VISIBLE_STRING255_EX, WG10 BasicDAs::VISIBLE_STRING255] +2024-09-08 15:11:38,786 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_MX, WG10 FunctionalConstraints::FcKind] +2024-09-08 15:11:38,786 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_MX, WG10 CoreTypes::P_BOOLEAN] +2024-09-08 15:11:38,786 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_MX_dchg, WG10 TriggerOptions::TrgOpKind] +2024-09-08 15:11:38,787 [main] TRACE CrossPackageStats - [WG10 FCDAs::AnalogueValue_MX_dchg, WG10 ConstructedDAs::AnalogueValue] +2024-09-08 15:11:38,787 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_MX_dchg, WG10 BasicDAs::BOOLEAN] +2024-09-08 15:11:38,787 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_MX_dchg_dupd, WG10 TriggerOptions::TrgOpKind] +2024-09-08 15:11:38,787 [main] TRACE CrossPackageStats - [WG10 FCDAs::AnalogueValue_MX_dchg_dupd, WG10 ConstructedDAs::AnalogueValue] +2024-09-08 15:11:38,787 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_MX_qchg, WG10 TriggerOptions::TrgOpKind] +2024-09-08 15:11:38,787 [main] TRACE CrossPackageStats - [WG10 FCDAs::Quality_MX_qchg, WG10 ConstructedDAs::Quality] +2024-09-08 15:11:38,787 [main] TRACE CrossPackageStats - [WG10 FCDAs::AnalogueValue_MX, WG10 ConstructedDAs::AnalogueValue] +2024-09-08 15:11:38,787 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_OR, WG10 FunctionalConstraints::FcKind] +2024-09-08 15:11:38,787 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_OR, WG10 CoreTypes::P_BOOLEAN] +2024-09-08 15:11:38,787 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_OR_dchg, WG10 TriggerOptions::TrgOpKind] +2024-09-08 15:11:38,787 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_OR_dchg, WG10 BasicDAs::BOOLEAN] +2024-09-08 15:11:38,787 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_SE, WG10 FunctionalConstraints::FcKind] +2024-09-08 15:11:38,787 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_SE, WG10 CoreTypes::P_BOOLEAN] +2024-09-08 15:11:38,787 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_SE_dchg, WG10 TriggerOptions::TrgOpKind] +2024-09-08 15:11:38,787 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_SE, WG10 BasicDAs::BOOLEAN] +2024-09-08 15:11:38,787 [main] TRACE CrossPackageStats - [WG10 FCDAs::Point_SE, WG10 ConstructedDAs::Point] +2024-09-08 15:11:38,787 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_SG, WG10 FunctionalConstraints::FcKind] +2024-09-08 15:11:38,787 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_SG, WG10 CoreTypes::P_BOOLEAN] +2024-09-08 15:11:38,787 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_SG_dchg, WG10 TriggerOptions::TrgOpKind] +2024-09-08 15:11:38,787 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_SG, WG10 BasicDAs::BOOLEAN] +2024-09-08 15:11:38,787 [main] TRACE CrossPackageStats - [WG10 FCDAs::Point_SG, WG10 ConstructedDAs::Point] +2024-09-08 15:11:38,787 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_SP, WG10 FunctionalConstraints::FcKind] +2024-09-08 15:11:38,787 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_SP_dchg, WG10 TriggerOptions::TrgOpKind] +2024-09-08 15:11:38,787 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_SP_dchg, WG10 BasicDAs::BOOLEAN] +2024-09-08 15:11:38,787 [main] TRACE CrossPackageStats - [WG10 FCDAs::Point_SP, WG10 ConstructedDAs::Point] +2024-09-08 15:11:38,787 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_ST, WG10 FunctionalConstraints::FcKind] +2024-09-08 15:11:38,787 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_ST, WG10 CoreTypes::P_BOOLEAN] +2024-09-08 15:11:38,787 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_ST_dchg, WG10 TriggerOptions::TrgOpKind] +2024-09-08 15:11:38,787 [main] TRACE CrossPackageStats - [WG10 FCDAs::DpStatus_ST_dchg, WG10 BasicDAs::DpStatus] +2024-09-08 15:11:38,787 [main] TRACE CrossPackageStats - [WG10 FCDAs::EnumDA_ST_dchg, WG10 MetaModel::EnumDA] +2024-09-08 15:11:38,787 [main] TRACE CrossPackageStats - [WG10 FCDAs::PhaseFaultDirection_ST_dchg, WG10 ImplicitDAs::PhaseFaultDirection] +2024-09-08 15:11:38,787 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_ST_dchg, WG10 BasicDAs::BOOLEAN] +2024-09-08 15:11:38,787 [main] TRACE CrossPackageStats - [WG10 FCDAs::INT32_ST_dchg, WG10 BasicDAs::INT32] +2024-09-08 15:11:38,787 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_ST_dchg_dupd, WG10 TriggerOptions::TrgOpKind] +2024-09-08 15:11:38,787 [main] TRACE CrossPackageStats - [WG10 FCDAs::EnumDA_ST_dchg_dupd, WG10 MetaModel::EnumDA] +2024-09-08 15:11:38,787 [main] TRACE CrossPackageStats - [WG10 FCDAs::INT32_ST_dchg_dupd, WG10 BasicDAs::INT32] +2024-09-08 15:11:38,787 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_ST_dupd, WG10 TriggerOptions::TrgOpKind] +2024-09-08 15:11:38,787 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_ST_qchg, WG10 TriggerOptions::TrgOpKind] +2024-09-08 15:11:38,787 [main] TRACE CrossPackageStats - [WG10 FCDAs::Quality_ST_qchg, WG10 ConstructedDAs::Quality] +2024-09-08 15:11:38,787 [main] TRACE CrossPackageStats - [WG10 FCDAs::TimeStamp_ST, WG10 BasicDAs::TimeStamp] +2024-09-08 15:11:38,787 [main] TRACE CrossPackageStats - [WG10 MetaModelFCsAndTrgOps::FCDA_SV, WG10 FunctionalConstraints::FcKind] +2024-09-08 15:11:38,787 [main] TRACE CrossPackageStats - [WG10 FCDAs::DpStatus_SV, WG10 BasicDAs::DpStatus] +2024-09-08 15:11:38,787 [main] TRACE CrossPackageStats - [WG10 FCDAs::EnumDA_SV, WG10 MetaModel::EnumDA] +2024-09-08 15:11:38,787 [main] TRACE CrossPackageStats - [WG10 FCDAs::BOOLEAN_SV, WG10 BasicDAs::BOOLEAN] +2024-09-08 15:11:38,787 [main] TRACE CrossPackageStats - [WG10 FCDAs::Quality_SV, WG10 ConstructedDAs::Quality] +2024-09-08 15:11:38,787 [main] TRACE CrossPackageStats - [WG10 MetaModel::DA, WG10 ObjectReferences::FCDAReference] +2024-09-08 15:11:38,787 [main] TRACE CrossPackageStats - [WG10 MetaModel::PrimitiveDA, WG10 AttrValues::AttrValue] +2024-09-08 15:11:38,788 [main] TRACE CrossPackageStats - [WG10 BasicDAs::PHYCOMADDR, WG10 CoreTypes::P_PHYCOMADDR] +2024-09-08 15:11:38,788 [main] TRACE CrossPackageStats - [WG10 BasicDAs::ObjectReference, WG10 CoreTypes::P_ObjectReference] +2024-09-08 15:11:38,788 [main] TRACE CrossPackageStats - [WG10 BasicDAs::VISIBLE_STRING255, WG10 CoreTypes::P_VISIBLE_STRING255] +2024-09-08 15:11:38,788 [main] TRACE CrossPackageStats - [WG10 BasicDAs::UNICODE_STRING255, WG10 CoreTypes::P_UNICODE_STRING255] +2024-09-08 15:11:38,788 [main] TRACE CrossPackageStats - [WG10 BasicDAs::INT32U, WG10 CoreTypes::P_INT32U] +2024-09-08 15:11:38,788 [main] TRACE CrossPackageStats - [WG10 BasicDAs::INT32, WG10 CoreTypes::P_INT32] +2024-09-08 15:11:38,788 [main] TRACE CrossPackageStats - [WG10 BasicDAs::INT16U, WG10 CoreTypes::P_INT16U] +2024-09-08 15:11:38,788 [main] TRACE CrossPackageStats - [WG10 BasicDAs::FLOAT32, WG10 CoreTypes::P_FLOAT32] +2024-09-08 15:11:38,788 [main] TRACE CrossPackageStats - [WG10 BasicDAs::BOOLEAN, WG10 CoreTypes::P_BOOLEAN] +2024-09-08 15:11:38,788 [main] TRACE CrossPackageStats - [WG10 BasicDAs::TriggerConditions, WG10 CoreTypes::P_TriggerConditions] +2024-09-08 15:11:38,788 [main] TRACE CrossPackageStats - [WG10 BasicDAs::TimeStamp, WG10 CoreTypes::P_TimeStamp] +2024-09-08 15:11:38,788 [main] TRACE CrossPackageStats - [WG10 ConstructedDAs::Quality, WG10 CoreTypes::P_BOOLEAN] +2024-09-08 15:11:38,788 [main] TRACE CrossPackageStats - [WG10 BasicDAs::BsControl, WG10 ACSIEnums::BsControlKind] +2024-09-08 15:11:38,788 [main] TRACE CrossPackageStats - [WG10 BasicDAs::DpStatus, WG10 ACSIEnums::DpStatusKind] +2024-09-08 15:11:38,788 [main] TRACE CrossPackageStats - [WG10 ImplicitDAs::SIUnit, WG10 DAEnums::SIUnitKind] +2024-09-08 15:11:38,788 [main] TRACE CrossPackageStats - [WG10 ImplicitDAs::Multiplier, WG10 DAEnums::MultiplierKind] +2024-09-08 15:11:38,788 [main] TRACE CrossPackageStats - [WG10 ImplicitDAs::PhaseFaultDirection, WG10 DAEnums::PhaseFaultDirectionKind] +2024-09-08 15:11:38,788 [main] TRACE CrossPackageStats - [WG10 ImplicitDAs::PhaseAngleReference, WG10 DAEnums::PhaseAngleReferenceKind] +2024-09-08 15:11:38,788 [main] TRACE CrossPackageStats - [WG10 DerivedDAs::BehaviourMode, WG10 DOEnums::BehaviourModeKind] +2024-09-08 15:11:38,788 [main] TRACE CrossPackageStats - [WG10 DerivedDAs::CalcMethod, WG10 DOEnums::CalcMethodKind] +2024-09-08 15:11:38,788 [main] TRACE CrossPackageStats - [WG10 DerivedDAs::Health, WG10 DOEnums::HealthKind] +2024-09-08 15:11:38,788 [main] TRACE CrossPackageStats - [WG17 DerivedDAs_7_420::Material, WG17 DOEnums_7_420::MaterialKind] +2024-09-08 15:11:38,788 [main] TRACE CrossPackageStats - [WG17 DerivedDAs_7_420::Material_control, WG17 DOEnums_7_420::MaterialTransitionKind] +2024-09-08 15:11:38,788 [main] TRACE CrossPackageStats - [WG17 DerivedDAs_7_420::Other, WG17 DOEnums_7_420::OtherKind] +2024-09-08 15:11:38,788 [main] TRACE CrossPackageStats - [WG10 ConstructedDAs::AnalogueValue, WG10 BasicDAs::INT32] +2024-09-08 15:11:38,788 [main] TRACE CrossPackageStats - [WG10 ConstructedDAs::AnalogueValue, WG10 BasicDAs::FLOAT32] +2024-09-08 15:11:38,788 [main] TRACE CrossPackageStats - [WG10 ConstructedDAs::RangeConfig, WG10 BasicDAs::INT32U] +2024-09-08 15:11:38,788 [main] TRACE CrossPackageStats - [WG10 ConstructedDAs::Unit, WG10 ImplicitDAs::SIUnit] +2024-09-08 15:11:38,788 [main] TRACE CrossPackageStats - [WG10 ConstructedDAs::Unit, WG10 ImplicitDAs::Multiplier] +2024-09-08 15:11:38,788 [main] TRACE CrossPackageStats - [WG10 ConstructedDAs::Point, WG10 BasicDAs::FLOAT32] +2024-09-08 15:11:38,788 [main] TRACE CrossPackageStats - [WG10 MetaModel::LNOwnedDS, WG10 ObjectReferences::LNOwnedDSReference] +2024-09-08 15:11:38,788 [main] TRACE CrossPackageStats - [WG10 MetaModel::PersistentDS, WG10 CoreTypes::P_BOOLEAN] +2024-09-08 15:11:38,788 [main] TRACE CrossPackageStats - [WG10 MetaModel::NonPersistentDS, WG10 CoreTypes::P_BOOLEAN] +2024-09-08 15:11:38,788 [main] TRACE CrossPackageStats - [WG10 MetaModel::NonPersistentDS, WG10 ObjectReferences::NonPersistentDSReference] +2024-09-08 15:11:38,788 [main] TRACE CrossPackageStats - [WG10 MetaModel::ControlBlock, WG10 ObjectReferences::CBReference] +2024-09-08 15:11:38,788 [main] TRACE CrossPackageStats - [WG10 MetaModel::BRCB, WG10 CommonAcsiTypes::IPAddress] +2024-09-08 15:11:38,788 [main] TRACE CrossPackageStats - [WG10 MetaModel::URCB, WG10 CommonAcsiTypes::IPAddress] +2024-09-08 15:11:38,788 [main] TRACE CrossPackageStats - [WG10 MetaModel::GCB, WG10 CommonAcsiTypes::MulticastAddress] +2024-09-08 15:11:38,788 [main] TRACE CrossPackageStats - [WG10 MetaModel::MSVCB, WG10 CommonAcsiTypes::MulticastAddress] +2024-09-08 15:11:38,788 [main] TRACE CrossPackageStats - [WG10 MetaModel::USVCB, WG10 CommonAcsiTypes::IPAddress] +2024-09-08 15:11:38,788 [main] TRACE CrossPackageStats - [WG10 MetaModel::LOG, WG10 ObjectReferences::LOGReference] +2024-09-08 15:11:38,788 [main] TRACE CrossPackageStats - [WG10 MetaModel::SERVER, WG10 CommonAcsiTypes::IPAddress] +2024-09-08 15:11:38,788 [main] TRACE CrossPackageStats - [WG10 MetaModel::FCD, WG10 ObjectReferences::FCDReference] +2024-09-08 15:11:38,788 [main] TRACE CrossPackageStats - [WG10 MetaModel::FCD, WG10 FunctionalConstraints::FcKind] +2024-09-08 15:11:38,788 [main] TRACE CrossPackageStats - [WG10 MetaModel::FILE, WG10 ObjectReferences::FILEReference] +2024-09-08 15:11:38,788 [main] TRACE CrossPackageStats - 3 class's operation parameters and exceptions: +2024-09-08 15:11:38,788 [main] TRACE CrossPackageStats - [WG10 AttrValues::AttrDefinition, WG10 ObjectReferences::FCDAReference] +2024-09-08 15:11:38,789 [main] TRACE CrossPackageStats - [WG10 AttrValues::NamedAttrValue, WG10 ObjectReferences::FCDAReference] +2024-09-08 15:11:38,789 [main] TRACE CrossPackageStats - [WG13 Core::VoltageLevel, WG13 Domain::Voltage] +2024-09-08 15:11:38,789 [main] TRACE CrossPackageStats - 12 class-to-class (hand-drawn) dependency: +2024-09-08 15:11:38,789 [main] TRACE CrossPackageStats - [WG10 ProtectionEq::BusbarProt, WG10 LNGroupP::PDIF] +2024-09-08 15:11:38,789 [main] TRACE CrossPackageStats - [WG10 ProtectionEq::DirectionalProt, WG10 LNGroupR::RDIR] +2024-09-08 15:11:38,789 [main] TRACE CrossPackageStats - [WG10 ProtectionEq::DirectionalProt, WG10 LNGroupP::PDIS] +2024-09-08 15:11:38,789 [main] TRACE CrossPackageStats - [WG10 ProtectionEq::DirectionalPowerProt, WG10 LNGroupR::RDIR] +2024-09-08 15:11:38,789 [main] TRACE CrossPackageStats - [WG10 ProtectionEq::LineDifferentialProt, WG10 LNGroupP::PDIF] +2024-09-08 15:11:38,789 [main] TRACE CrossPackageStats - [WG10 ControlEq::AlarmHandler, WG10 LNGroupC::CALH] +2024-09-08 15:11:38,789 [main] TRACE CrossPackageStats - [WG10 MeasurementsAndMetering::ThreePhaseMeasurement, WG10 LNGroupM::MMXU] +2024-09-08 15:11:38,789 [main] TRACE CrossPackageStats - [WG10 SystemWide::LogicalDeviceData, WG10 LNGroupL::LLN0] +2024-09-08 15:11:38,789 [main] TRACE CrossPackageStats - [WG10 SystemWide::PhysicalDeviceData, WG10 LNGroupL::LPHD] +2024-09-08 15:11:38,789 [main] TRACE CrossPackageStats - [WG10 PrimaryEq::AuxiliaryNetwork, WG10 LNGroupZ::ZAXN] +2024-09-08 15:11:38,789 [main] TRACE CrossPackageStats - [WG10 PrimaryEq::GenericIO, WG10 LNGroupG::GGIO] +2024-09-08 15:11:38,789 [main] TRACE CrossPackageStats - [WG10 LNGroupP::PDIS, WG10 LNGroupR::RDIR] +2024-09-08 15:11:38,789 [main] TRACE CrossPackageStats - 9 class-to-class associations: +2024-09-08 15:11:38,789 [main] TRACE CrossPackageStats - [WG13 Topology::TopologicalNode, WG13 Core::BaseVoltage] +2024-09-08 15:11:38,789 [main] TRACE CrossPackageStats - [WG13 Topology::ConnectivityNode, WG13 Core::ConnectivityNodeContainer] +2024-09-08 15:11:38,789 [main] TRACE CrossPackageStats - [WG13 Topology::TopologicalNode, WG13 Core::ConnectivityNodeContainer] +2024-09-08 15:11:38,789 [main] TRACE CrossPackageStats - [WG13 Core::Terminal, WG13 Topology::ConnectivityNode] +2024-09-08 15:11:38,789 [main] TRACE CrossPackageStats - [WG13 Core::Terminal, WG13 Topology::TopologicalNode] +2024-09-08 15:11:38,789 [main] TRACE CrossPackageStats - [WG10 MetaModel::MCAA, WG10 CommonAcsiTypes::Authentication] +2024-09-08 15:11:38,789 [main] TRACE CrossPackageStats - [WG10 MetaModel::TPAA, WG10 CommonAcsiTypes::Authentication] +2024-09-08 15:11:38,789 [main] TRACE CrossPackageStats - [WG10 MetaModel::SGCB, WG10 MetaModelFCsAndTrgOps::FCDA_SG] +2024-09-08 15:11:38,789 [main] TRACE CrossPackageStats - [WG10 MetaModel::SGCB, WG10 MetaModelFCsAndTrgOps::FCDA_SE] +2024-09-08 15:11:38,789 [main] TRACE CrossPackageStats - 50 package-to-package (hand-drawn) dependency: +2024-09-08 15:11:38,789 [main] TRACE CrossPackageStats - [WG13 IEC61970::Core, WG13 IEC61970::Domain] +2024-09-08 15:11:38,789 [main] TRACE CrossPackageStats - [WG13 IEC61970::Core, WG13 IEC61970::Topology] +2024-09-08 15:11:38,789 [main] TRACE CrossPackageStats - [WG10 WG10::IEC61850_7_4, WG10 WG10::IEC61850_7_2] +2024-09-08 15:11:38,789 [main] TRACE CrossPackageStats - [WG10 WG10::IEC61850_7_3, WG10 WG10::IEC61850_7_2] +2024-09-08 15:11:38,789 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::MetaModel, WG10 IEC61850_7_2::FunctionalConstraints] +2024-09-08 15:11:38,789 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::MetaModel, WG10 IEC61850_7_2::TriggerOptions] +2024-09-08 15:11:38,789 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::ACSIEnums, WG10 IEC61850_7_2::BasicDAs] +2024-09-08 15:11:38,789 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::CoreTypes, WG10 IEC61850_7_3::ConstructedDAs] +2024-09-08 15:11:38,789 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::CoreTypes, WG10 IEC61850_7_2::MetaModel] +2024-09-08 15:11:38,789 [main] TRACE CrossPackageStats - [WG10 AcsiTypes::CommonAcsiTypes, WG10 IEC61850_7_2::CoreTypes] +2024-09-08 15:11:38,789 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::AcsiTypes, WG10 IEC61850_7_2::CoreTypes] +2024-09-08 15:11:38,789 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::CoreTypes, WG10 IEC61850_7_2::BasicDAs] +2024-09-08 15:11:38,789 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::AttrValues, WG10 IEC61850_7_2::CoreTypes] +2024-09-08 15:11:38,789 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::CoreTypes, WG10 IEC61850_7_2::ObjectReferences] +2024-09-08 15:11:38,789 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::MetaModel, WG10 IEC61850_7_2::ObjectReferences] +2024-09-08 15:11:38,789 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::AttrValues, WG10 IEC61850_7_2::ObjectReferences] +2024-09-08 15:11:38,789 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::AttrValues, WG10 IEC61850_7_2::MetaModel] +2024-09-08 15:11:38,789 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::AttrValues, WG10 IEC61850_7_2::BasicDAs] +2024-09-08 15:11:38,789 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::BasicDAs, WG10 IEC61850_7_3::FCDAs] +2024-09-08 15:11:38,790 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_3::ConstructedDAs, WG10 IEC61850_7_2::BasicDAs] +2024-09-08 15:11:38,790 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::MetaModel, WG10 IEC61850_7_2::BasicDAs] +2024-09-08 15:11:38,790 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::AcsiTypes, WG10 IEC61850_7_2::MetaModel] +2024-09-08 15:11:38,790 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_4::LogicalNodes, WG10 IEC61850_7_2::MetaModel] +2024-09-08 15:11:38,790 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::MetaModel, WG10 IEC61850_7_4::DerivedDAs] +2024-09-08 15:11:38,790 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::MetaModel, WG10 IEC61850_7_3::CommonDataClasses] +2024-09-08 15:11:38,790 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::MetaModel, WG10 IEC61850_7_3::FCDAs] +2024-09-08 15:11:38,790 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_3::ConstructedDAs, WG10 IEC61850_7_2::MetaModel] +2024-09-08 15:11:38,790 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_2::CDCServiceTracking, WG10 IEC61850_7_3::CommonDataClasses] +2024-09-08 15:11:38,790 [main] TRACE CrossPackageStats - [WG10 WG10::IEC61850_7_3, WG10 WG10::IEC61850_7_4] +2024-09-08 15:11:38,790 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_3::DAEnums, WG10 IEC61850_7_4::DerivedCDCs] +2024-09-08 15:11:38,790 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_3::DAEnums, WG10 IEC61850_7_3::ImplicitDAs] +2024-09-08 15:11:38,790 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_3::ImplicitDAs, WG10 IEC61850_7_3::FCDAs] +2024-09-08 15:11:38,790 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_3::ConstructedDAs, WG10 IEC61850_7_3::ImplicitDAs] +2024-09-08 15:11:38,790 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_3::ConstructedDAs, WG10 IEC61850_7_3::FCDAs] +2024-09-08 15:11:38,790 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_3::CommonDataClasses, WG10 IEC61850_7_3::FCDAs] +2024-09-08 15:11:38,790 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_4::LogicalNodes, WG10 IEC61850_7_3::CommonDataClasses] +2024-09-08 15:11:38,790 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_4::DerivedCDCs, WG10 IEC61850_7_3::CommonDataClasses] +2024-09-08 15:11:38,790 [main] TRACE CrossPackageStats - [WG10 LogicalNodes::LNGroupP, WG10 Functions::ProtectionEq] +2024-09-08 15:11:38,790 [main] TRACE CrossPackageStats - [WG10 LogicalNodes::LNGroupR, WG10 Functions::ProtectionEq] +2024-09-08 15:11:38,790 [main] TRACE CrossPackageStats - [WG10 Functions::ControlEq, WG10 LogicalNodes::LNGroupG] +2024-09-08 15:11:38,790 [main] TRACE CrossPackageStats - [WG10 Functions::ControlEq, WG10 LogicalNodes::LNGroupP] +2024-09-08 15:11:38,790 [main] TRACE CrossPackageStats - [WG10 Functions::ControlEq, WG10 LogicalNodes::LNGroupC] +2024-09-08 15:11:38,790 [main] TRACE CrossPackageStats - [WG10 LogicalNodes::LNGroupM, WG10 Functions::MeasurementsAndMetering] +2024-09-08 15:11:38,790 [main] TRACE CrossPackageStats - [WG10 Functions::SystemWide, WG10 LogicalNodes::LNGroupL] +2024-09-08 15:11:38,790 [main] TRACE CrossPackageStats - [WG10 Functions::SystemWide, WG10 LogicalNodes::LNGroupG] +2024-09-08 15:11:38,790 [main] TRACE CrossPackageStats - [WG10 Functions::PrimaryEq, WG10 LogicalNodes::LNGroupG] +2024-09-08 15:11:38,790 [main] TRACE CrossPackageStats - [WG10 Functions::PrimaryEq, WG10 LogicalNodes::LNGroupZ] +2024-09-08 15:11:38,790 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_4::DOEnums, WG10 IEC61850_7_4::DerivedDAs] +2024-09-08 15:11:38,790 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_4::DerivedCDCs, WG10 IEC61850_7_4::DerivedDAs] +2024-09-08 15:11:38,790 [main] TRACE CrossPackageStats - [WG10 IEC61850_7_4::LogicalNodes, WG10 IEC61850_7_4::DerivedCDCs] +2024-09-08 15:11:38,790 [main] DEBUG Util - +2024-09-08 15:11:38,790 [main] DEBUG Util - ======= 83 packages: ======== +2024-09-08 15:11:38,790 [main] DEBUG Util - (177) OTHER_CIM CIM model package /TC57CIMProfiles: 1 diagrams, 0 classes, 0 packages +2024-09-08 15:11:38,790 [main] DEBUG Util - (2) OTHER_CIM CIM model package /TC57CIM: 1 diagrams, 0 classes, 4 packages, ; tags={nsprefix=cim, nsuri=http://cim123} +2024-09-08 15:11:38,791 [main] DEBUG Util - (71) OTHER_CIM CIM INF top package <> TC57CIM::Informative: 1 diagrams, 6 classes, 0 packages +2024-09-08 15:11:38,791 [main] DEBUG UmlPackage - deduceAndFillNamespaceInfoDependencies for TC57CIM::IEC61970, targetPackages = [] +2024-09-08 15:11:38,791 [main] DEBUG Util - (39) WG13 CIM top package TC57CIM::IEC61970 (version={IEC61970CIM14v12, 20119-08-01}) (namespace IEC61970CIM14v12:2011, 20119-08-01; UML version 2011): 1 diagrams, 1 classes, 5 packages +2024-09-08 15:11:38,791 [main] DEBUG Util - (55) WG13 CIM INF private package IEC61970::InformativeAndPrivate: 1 diagrams, 2 classes, 0 packages +2024-09-08 15:11:38,791 [main] DEBUG Util - (166) WG13 CIM INF package IEC61970::DocIEC61970: 1 diagrams, 0 classes, 0 packages +2024-09-08 15:11:38,791 [main] DEBUG Util - (41) WG13 CIM package <> IEC61970::Domain: 2 diagrams, 17 classes, 0 packages +2024-09-08 15:11:38,791 [main] DEBUG Util - (54) WG13 CIM package IEC61970::Core: 2 diagrams, 19 classes, 0 packages, efferent=[Domain], afferent=[Domain] +2024-09-08 15:11:38,791 [main] DEBUG Util - (52) WG13 CIM package <> IEC61970::Topology: 2 diagrams, 6 classes, 1 packages, efferent=[Core, Other], afferent=[Core, Other] +2024-09-08 15:11:38,791 [main] DEBUG Util - (168) WG13 CIM package Topology::TestEnums: 1 diagrams, 3 classes, 0 packages +2024-09-08 15:11:38,791 [main] DEBUG Util - (56) WG14 CIM top package TC57CIM::IEC61968: 1 diagrams, 1 classes, 5 packages, efferent=[IEC61970], afferent=[IEC61970], ; tags={nsprefix=n14, nsuri=http://wg14/customNamespace} +2024-09-08 15:11:38,791 [main] DEBUG Util - (173) WG14 CIM package IEC61968::EmbeddedExtension: 1 diagrams, 0 classes, 0 packages, ; tags={nsuri=http://embeddedExt, nsprefix=eext} +2024-09-08 15:11:38,791 [main] DEBUG Util - (83) WG14 CIM package IEC61968::Assets: 2 diagrams, 1 classes, 0 packages +2024-09-08 15:11:38,791 [main] DEBUG Util - (67) WG14 CIM package IEC61968::Core: 0 diagrams, 0 classes, 0 packages +2024-09-08 15:11:38,791 [main] DEBUG Util - (66) WG14 CIM package IEC61968::Other: 0 diagrams, 0 classes, 0 packages +2024-09-08 15:11:38,791 [main] DEBUG Util - (57) WG14 CIM package IEC61968::Other: 1 diagrams, 9 classes, 0 packages, efferent=[IEC61970], afferent=[IEC61970] +2024-09-08 15:11:38,791 [main] DEBUG Util - (82) WG16 CIM top package TC57CIM::IEC62325: 1 diagrams, 0 classes, 0 packages, efferent=[IEC61970, IEC61968], afferent=[IEC61970, IEC61968] +2024-09-08 15:11:38,791 [main] DEBUG Util - (58) OTHER_IEC61850 IEC61850 model package /IEC61850Domain: 1 diagrams, 0 classes, 4 packages +2024-09-08 15:11:38,791 [main] DEBUG Util - (85) WG10 IEC61850 top package IEC61850Domain::WG10 (version={IEC61850UML02v07, 2011-07-02}): 3 diagrams, 1 classes, 4 packages +2024-09-08 15:11:38,791 [main] DEBUG Util - (86) WG10 IEC61850 package WG10::NewIEC61850_7_2: 1 diagrams, 0 classes, 1 packages +2024-09-08 15:11:38,791 [main] DEBUG Util - (87) WG10 IEC61850 package NewIEC61850_7_2::GenericModel: 2 diagrams, 33 classes, 0 packages +2024-09-08 15:11:38,792 [main] ERROR NamespaceInfo - Unexpected attribute 'name' in namespace class 'IEC61850_7_2Namespace'. +2024-09-08 15:11:38,792 [main] DEBUG UmlPackage - deduceAndFillNamespaceInfoDependencies for WG10::IEC61850_7_2, targetPackages = [] +2024-09-08 15:11:38,792 [main] DEBUG Util - (88) WG10 IEC61850 package WG10::IEC61850_7_2 (namespace IEC61850-7-2:2007, 2011-08-01; UML version IEC61850UML02v07): 2 diagrams, 1 classes, 10 packages +2024-09-08 15:11:38,792 [main] DEBUG Util - (90) WG10 IEC61850 package IEC61850_7_2::FunctionalConstraints: 1 diagrams, 1 classes, 0 packages +2024-09-08 15:11:38,792 [main] DEBUG Util - (91) WG10 IEC61850 package IEC61850_7_2::TriggerOptions: 1 diagrams, 1 classes, 0 packages +2024-09-08 15:11:38,792 [main] DEBUG Util - (92) WG10 IEC61850 package IEC61850_7_2::ACSIEnums: 1 diagrams, 2 classes, 0 packages +2024-09-08 15:11:38,792 [main] DEBUG Util - (93) WG10 IEC61850 package IEC61850_7_2::CoreTypes: 1 diagrams, 14 classes, 0 packages +2024-09-08 15:11:38,792 [main] DEBUG Util - (95) WG10 IEC61850 package IEC61850_7_2::ObjectReferences: 1 diagrams, 11 classes, 1 packages, efferent=[CoreTypes], afferent=[CoreTypes] +2024-09-08 15:11:38,792 [main] DEBUG Util - (96) WG10 IEC61850 INF package ObjectReferences::DetailedDiagrams: 1 diagrams, 0 classes, 0 packages +2024-09-08 15:11:38,792 [main] DEBUG Util - (97) WG10 IEC61850 package IEC61850_7_2::AttrValues: 1 diagrams, 4 classes, 0 packages, efferent=[CoreTypes, ObjectReferences], afferent=[CoreTypes, ObjectReferences] +2024-09-08 15:11:38,792 [main] DEBUG Util - (98) WG10 IEC61850 package IEC61850_7_2::BasicDAs: 1 diagrams, 13 classes, 0 packages, efferent=[ACSIEnums, CoreTypes, AttrValues, MetaModel], afferent=[ACSIEnums, CoreTypes, AttrValues, MetaModel] +2024-09-08 15:11:38,792 [main] DEBUG Util - (99) WG10 IEC61850 package IEC61850_7_2::AcsiTypes: 1 diagrams, 0 classes, 1 packages, efferent=[CoreTypes], afferent=[CoreTypes] +2024-09-08 15:11:38,792 [main] DEBUG Util - (100) WG10 IEC61850 package AcsiTypes::CommonAcsiTypes: 1 diagrams, 8 classes, 0 packages, efferent=[CoreTypes], afferent=[CoreTypes] +2024-09-08 15:11:38,792 [main] DEBUG Util - (109) WG10 IEC61850 package IEC61850_7_2::MetaModel: 5 diagrams, 43 classes, 1 packages, efferent=[FunctionalConstraints, TriggerOptions, CoreTypes, ObjectReferences, AttrValues, AcsiTypes], afferent=[FunctionalConstraints, TriggerOptions, CoreTypes, ObjectReferences, AttrValues, AcsiTypes] +2024-09-08 15:11:38,792 [main] DEBUG Util - (110) WG10 IEC61850 package MetaModel::MetaModelFCsAndTrgOps: 1 diagrams, 34 classes, 0 packages +2024-09-08 15:11:38,792 [main] DEBUG Util - (112) WG10 IEC61850 package IEC61850_7_2::CDCServiceTracking: 1 diagrams, 10 classes, 0 packages, efferent=[CommonDataClasses], afferent=[CommonDataClasses] +2024-09-08 15:11:38,792 [main] ERROR NamespaceInfo - Unexpected attribute 'name' in namespace class 'IEC61850_7_3Namespace'. +2024-09-08 15:11:38,792 [main] DEBUG UmlPackage - deduceAndFillNamespaceInfoDependencies for WG10::IEC61850_7_3, targetPackages = [] +2024-09-08 15:11:38,792 [main] DEBUG Util - (113) WG10 IEC61850 package WG10::IEC61850_7_3 (namespace IEC61850-7-3:2011B, 2011-08-01; UML version IEC61850UML02v07): 1 diagrams, 1 classes, 6 packages, efferent=[IEC61850_7_2, IEC61850_7_4], afferent=[IEC61850_7_2, IEC61850_7_4] +2024-09-08 15:11:38,792 [main] DEBUG Util - (114) WG10 IEC61850 package IEC61850_7_3::PresenceConditions: 1 diagrams, 1 classes, 0 packages +2024-09-08 15:11:38,792 [main] DEBUG Util - (115) WG10 IEC61850 package IEC61850_7_3::DAEnums: 1 diagrams, 4 classes, 0 packages +2024-09-08 15:11:38,793 [main] DEBUG Util - (116) WG10 IEC61850 package IEC61850_7_3::ImplicitDAs: 1 diagrams, 4 classes, 0 packages, efferent=[DAEnums], afferent=[DAEnums] +2024-09-08 15:11:38,793 [main] DEBUG Util - (117) WG10 IEC61850 package IEC61850_7_3::ConstructedDAs: 1 diagrams, 8 classes, 0 packages, efferent=[CoreTypes, BasicDAs, MetaModel, ImplicitDAs], afferent=[CoreTypes, BasicDAs, MetaModel, ImplicitDAs] +2024-09-08 15:11:38,793 [main] DEBUG Util - (118) WG10 IEC61850 package IEC61850_7_3::FCDAs: 1 diagrams, 37 classes, 0 packages, efferent=[BasicDAs, MetaModel, ImplicitDAs, ConstructedDAs], afferent=[BasicDAs, MetaModel, ImplicitDAs, ConstructedDAs] +2024-09-08 15:11:38,793 [main] DEBUG Util - (119) WG10 IEC61850 package IEC61850_7_3::CommonDataClasses: 2 diagrams, 3 classes, 6 packages, efferent=[MetaModel, FCDAs], afferent=[MetaModel, FCDAs] +2024-09-08 15:11:38,793 [main] DEBUG Util - (121) WG10 IEC61850 package CommonDataClasses::CDCStatusInfo: 1 diagrams, 5 classes, 0 packages +2024-09-08 15:11:38,793 [main] DEBUG Util - (122) WG10 IEC61850 package CommonDataClasses::CDCAnalogueInfo: 1 diagrams, 3 classes, 0 packages +2024-09-08 15:11:38,793 [main] DEBUG Util - (123) WG10 IEC61850 package CommonDataClasses::CDCControl: 1 diagrams, 4 classes, 0 packages +2024-09-08 15:11:38,793 [main] DEBUG Util - (124) WG10 IEC61850 package CommonDataClasses::CDCStatusSet: 1 diagrams, 1 classes, 0 packages +2024-09-08 15:11:38,793 [main] DEBUG Util - (125) WG10 IEC61850 package CommonDataClasses::CDCAnalogueSet: 1 diagrams, 0 classes, 0 packages +2024-09-08 15:11:38,793 [main] DEBUG Util - (126) WG10 IEC61850 package CommonDataClasses::CDCDescription: 1 diagrams, 1 classes, 0 packages +2024-09-08 15:11:38,793 [main] ERROR NamespaceInfo - Unexpected attribute 'name' in namespace class 'IEC61850_7_4Namespace'. +2024-09-08 15:11:38,793 [main] DEBUG UmlPackage - deduceAndFillNamespaceInfoDependencies for WG10::IEC61850_7_4, targetPackages = [] +2024-09-08 15:11:38,793 [main] DEBUG Util - (127) WG10 IEC61850 package WG10::IEC61850_7_4 (namespace IEC61850-7-4:2009A, 2011-08-01; UML version IEC61850UML02v07): 1 diagrams, 1 classes, 6 packages, efferent=[IEC61850_7_2, IEC61850_7_3, IEC51850_7_420], afferent=[IEC61850_7_2, IEC61850_7_3, IEC51850_7_420] +2024-09-08 15:11:38,793 [main] DEBUG Util - (131) WG10 IEC61850 package IEC61850_7_4::Abbreviations: 0 diagrams, 2 classes, 1 packages +2024-09-08 15:11:38,793 [main] DEBUG Util - (167) WG10 IEC61850 INF package Abbreviations::DetailedDiagrams: 1 diagrams, 0 classes, 0 packages +2024-09-08 15:11:38,793 [main] DEBUG Util - (132) WG10 IEC61850 package IEC61850_7_4::Functions: 0 diagrams, 0 classes, 5 packages +2024-09-08 15:11:38,793 [main] DEBUG Util - (133) WG10 IEC61850 package Functions::ProtectionEq: 1 diagrams, 5 classes, 0 packages, efferent=[LNGroupP, LNGroupR], afferent=[LNGroupP, LNGroupR] +2024-09-08 15:11:38,793 [main] DEBUG Util - (134) WG10 IEC61850 package Functions::ControlEq: 1 diagrams, 1 classes, 0 packages, efferent=[LNGroupG, LNGroupP, LNGroupC], afferent=[LNGroupG, LNGroupP, LNGroupC] +2024-09-08 15:11:38,793 [main] DEBUG Util - (137) WG10 IEC61850 package Functions::MeasurementsAndMetering: 1 diagrams, 1 classes, 0 packages, efferent=[LNGroupM], afferent=[LNGroupM] +2024-09-08 15:11:38,793 [main] DEBUG Util - (138) WG10 IEC61850 package Functions::SystemWide: 1 diagrams, 2 classes, 0 packages, efferent=[LNGroupL, LNGroupG], afferent=[LNGroupL, LNGroupG] +2024-09-08 15:11:38,793 [main] DEBUG Util - (139) WG10 IEC61850 package Functions::PrimaryEq: 1 diagrams, 2 classes, 0 packages, efferent=[LNGroupG, LNGroupZ], afferent=[LNGroupG, LNGroupZ] +2024-09-08 15:11:38,793 [main] DEBUG Util - (141) WG10 IEC61850 package IEC61850_7_4::DOEnums: 1 diagrams, 4 classes, 0 packages, ; tags={dummyPackageTag=tagValue} +2024-09-08 15:11:38,793 [main] DEBUG Util - (142) WG10 IEC61850 package IEC61850_7_4::DerivedDAs: 1 diagrams, 3 classes, 0 packages, efferent=[MetaModel, DOEnums], afferent=[MetaModel, DOEnums] +2024-09-08 15:11:38,794 [main] DEBUG Util - (143) WG10 IEC61850 package IEC61850_7_4::DerivedCDCs: 1 diagrams, 9 classes, 0 packages, efferent=[DAEnums, CommonDataClasses, DerivedDAs], afferent=[DAEnums, CommonDataClasses, DerivedDAs] +2024-09-08 15:11:38,794 [main] DEBUG Util - (144) WG10 IEC61850 package IEC61850_7_4::LogicalNodes: 2 diagrams, 3 classes, 8 packages, efferent=[MetaModel, CommonDataClasses, DerivedCDCs], afferent=[MetaModel, CommonDataClasses, DerivedCDCs] +2024-09-08 15:11:38,794 [main] DEBUG Util - (145) WG10 IEC61850 INF package LogicalNodes::DocLogicalNodes: 2 diagrams, 0 classes, 0 packages +2024-09-08 15:11:38,794 [main] DEBUG Util - (146) WG10 IEC61850 package LogicalNodes::LNGroupL: 1 diagrams, 3 classes, 0 packages +2024-09-08 15:11:38,794 [main] DEBUG Util - (148) WG10 IEC61850 package LogicalNodes::LNGroupC: 1 diagrams, 1 classes, 0 packages +2024-09-08 15:11:38,794 [main] DEBUG Util - (150) WG10 IEC61850 package LogicalNodes::LNGroupG: 1 diagrams, 1 classes, 0 packages +2024-09-08 15:11:38,794 [main] DEBUG Util - (153) WG10 IEC61850 package LogicalNodes::LNGroupM: 1 diagrams, 1 classes, 0 packages +2024-09-08 15:11:38,794 [main] DEBUG Util - (154) WG10 IEC61850 package LogicalNodes::LNGroupP: 1 diagrams, 5 classes, 0 packages +2024-09-08 15:11:38,794 [main] DEBUG Util - (156) WG10 IEC61850 package LogicalNodes::LNGroupR: 1 diagrams, 1 classes, 0 packages +2024-09-08 15:11:38,794 [main] DEBUG Util - (161) WG10 IEC61850 package LogicalNodes::LNGroupZ: 1 diagrams, 1 classes, 0 packages +2024-09-08 15:11:38,794 [main] DEBUG Util - (163) WG17 IEC61850 top package IEC61850Domain::WG17 (version={IEC61850UML02v07, 2011-07-02}): 1 diagrams, 1 classes, 1 packages, efferent=[IEC61850_7_4], afferent=[IEC61850_7_4] +2024-09-08 15:11:38,795 [main] DEBUG Util - (172) WG17 IEC61850 package WG17::IEC51850_7_420: 1 diagrams, 1 classes, 3 packages +2024-09-08 15:11:38,795 [main] DEBUG Util - (169) WG17 IEC61850 package IEC51850_7_420::DOEnums_7_420: 1 diagrams, 4 classes, 0 packages +2024-09-08 15:11:38,795 [main] DEBUG Util - (170) WG17 IEC61850 package IEC51850_7_420::DerivedDAs_7_420: 1 diagrams, 3 classes, 0 packages +2024-09-08 15:11:38,795 [main] DEBUG Util - (171) WG17 IEC61850 package IEC51850_7_420::DerivedCDCs_7_420: 1 diagrams, 3 classes, 0 packages +2024-09-08 15:11:38,795 [main] DEBUG Util - (164) WG18 IEC61850 top package IEC61850Domain::WG18: 1 diagrams, 0 classes, 1 packages +2024-09-08 15:11:38,795 [main] DEBUG Util - (165) WG18 IEC61850 package WG18::Abbreviations_410: 1 diagrams, 1 classes, 0 packages +2024-09-08 15:11:38,795 [main] DEBUG Util - (162) JWG25 IEC61850 top package IEC61850Domain::JWG25: 1 diagrams, 0 classes, 0 packages +2024-09-08 15:11:38,795 [main] DEBUG Util - (68) OTHER_CIM CIM model package /MyCimExtensions: 1 diagrams, 2 classes, 2 packages +2024-09-08 15:11:38,795 [main] DEBUG Util - (69) OTHER_CIM CIM top package <> MyCimExtensions::Ext1: 1 diagrams, 5 classes, 0 packages, ; tags={nsuri=http://toto, nsprefix=ext2} +2024-09-08 15:11:38,795 [main] DEBUG Util - (81) OTHER_CIM CIM top package MyCimExtensions::Package with space: 1 diagrams, 2 classes, 0 packages +2024-09-08 15:11:38,795 [main] DEBUG Util - (72) OTHER_IEC61850 IEC61850 model package /My61850Extensions: 1 diagrams, 0 classes, 1 packages +2024-09-08 15:11:38,795 [main] DEBUG Util - (70) OTHER_IEC61850 IEC61850 top package My61850Extensions::Ext2: 1 diagrams, 3 classes, 0 packages +2024-09-08 15:11:38,795 [main] DEBUG Util - (174) OTHER_CIM CIM model package /NewNature: 1 diagrams, 0 classes, 0 packages +2024-09-08 15:11:38,795 [main] DEBUG Util - +2024-09-08 15:11:38,796 [main] DEBUG Util - ======= 386 classes: ======== +2024-09-08 15:11:38,796 [main] DEBUG Util - (1495) OTHER_CIM CIM INF root class <> Informative::Class1, 1 associations; associated classes (bi-directional): asTarget=[Other::MyClass] +2024-09-08 15:11:38,796 [main] DEBUG Util - (1514) OTHER_CIM CIM INF root class Informative::End1ForAssocClass, 1 associations; associated classes (bi-directional): asSource=[Informative::End2ForAssocClass] +2024-09-08 15:11:38,796 [main] DEBUG Util - (1515) OTHER_CIM CIM INF root class Informative::End2ForAssocClass, 1 associations; associated classes (bi-directional): asTarget=[Informative::End1ForAssocClass] +2024-09-08 15:11:38,796 [main] DEBUG Util - (1517) OTHER_CIM CIM INF root class Informative::AssocClass +2024-09-08 15:11:38,796 [main] DEBUG Util - (1518) OTHER_CIM CIM INF root class Informative::HasIllegalTypeForAttr, 1 attributes; efferent classes: byAttr=[Bay] +2024-09-08 15:11:38,796 [main] DEBUG Util - (1532) OTHER_CIM CIM INF compound <> Informative::SomeSimpleType; afferent classes: byAttr=[Pear]; +2024-09-08 15:11:38,796 [main] DEBUG Util - (572) WG13 CIM root class IEC61970::IEC61970CIMVersion, 2 attributes; efferent classes: byAttr=[AbsoluteDateTime, String] +2024-09-08 15:11:38,796 [main] DEBUG Util - (1450) WG13 CIM INF root class InformativeAndPrivate::InfClass2, 1 subclasses=[BusNameMarker], 1 attributes, 1 associations; efferent classes: byAttr=[Boolean]; associated classes (bi-directional): asTarget=[InformativeAndPrivate::InfClassContainingEmbeddedClass] +2024-09-08 15:11:38,796 [main] DEBUG Util - (1449) WG13 CIM INF root class InformativeAndPrivate::InfClassContainingEmbeddedClass, 1 associations; associated classes (bi-directional): asSource=[InformativeAndPrivate::InfClass2] +2024-09-08 15:11:38,796 [main] DEBUG Util - (1496) WG13 CIM INF root class InformativeAndPrivate::EmbeddedClass +2024-09-08 15:11:38,796 [main] DEBUG Util - (640) WG13 CIM datatype <> Domain::AbsoluteDateTime, 1 attributes; afferent classes: byAttr=[IEC61970CIMVersion, IEC61968Version, My class];; efferent classes: byAttr=[String] +2024-09-08 15:11:38,796 [main] DEBUG Util - (638) WG13 CIM datatype <> Domain::ActivePower, 3 attributes; efferent classes: byAttr=[Float, UnitSymbol, UnitMultiplier] +2024-09-08 15:11:38,796 [main] DEBUG Util - (629) WG13 CIM datatype <> Domain::ActivePowerChangeRate, 3 attributes; efferent classes: byAttr=[NullCIM, UnitSymbol, UnitMultiplier] +2024-09-08 15:11:38,796 [main] DEBUG Util - (616) WG13 CIM datatype <> Domain::ApparentPower, 3 attributes; afferent classes: byAttr=[BasePower];; efferent classes: byAttr=[Float, UnitSymbol, UnitMultiplier] +2024-09-08 15:11:38,796 [main] DEBUG Util - (619) WG13 CIM primitive <> Domain::Boolean; afferent classes: byAttr=[InfClass2, BaseVoltage, Bay, Equipment, Terminal, MyClass, AttrDuplication]; +2024-09-08 15:11:38,796 [main] DEBUG Util - (600) WG13 CIM enumeration <> Domain::Currency, 14 enum literals; afferent classes: byAttr=[Money]; +2024-09-08 15:11:38,796 [main] DEBUG Util - (615) WG13 CIM primitive <> Domain::Float; afferent classes: byAttr=[ActivePower, ApparentPower, Money, PerCent, Seconds, Voltage, MyClass, NonEmptyPrimitive]; +2024-09-08 15:11:38,796 [main] DEBUG Util - (610) WG13 CIM primitive <> Domain::Integer; afferent classes: byAttr=[Terminal, BusNameMarker, TopologicalIsland, Equipment, AnotherBadDatatype, Apple]; +2024-09-08 15:11:38,796 [main] DEBUG Util - (609) WG13 CIM datatype <> Domain::Money, 3 attributes; efferent classes: byAttr=[Float, Currency, UnitMultiplier] +2024-09-08 15:11:38,796 [main] DEBUG Util - (614) WG13 CIM datatype <> Domain::PerCent, 3 attributes; afferent classes: byAttr=[OperatingShare];; efferent classes: byAttr=[Float, UnitSymbol, UnitMultiplier] +2024-09-08 15:11:38,796 [main] DEBUG Util - (620) WG13 CIM datatype <> Domain::Seconds, 3 attributes; efferent classes: byAttr=[Float, UnitSymbol, UnitMultiplier] +2024-09-08 15:11:38,796 [main] DEBUG Util - (637) WG13 CIM primitive <> Domain::String; afferent classes: byAttr=[IEC61970CIMVersion, AbsoluteDateTime, PowerSystemResource, IdentifiedObject, IEC61968Version]; +2024-09-08 15:11:38,796 [main] DEBUG Util - (634) WG13 CIM enumeration <> Domain::UnitMultiplier, 11 enum literals; afferent classes: byAttr=[ActivePower, ActivePowerChangeRate, ApparentPower, Money, PerCent, Seconds, Voltage]; +2024-09-08 15:11:38,796 [main] DEBUG Util - (613) WG13 CIM enumeration <> Domain::UnitSymbol, 34 enum literals; afferent classes: byAttr=[ActivePower, ActivePowerChangeRate, ApparentPower, PerCent, Seconds, Voltage, BadDatatypes, AnotherBadDatatype]; +2024-09-08 15:11:38,796 [main] DEBUG Util - (602) WG13 CIM datatype <> Domain::Voltage, 3 attributes; afferent classes: byAttr=[BaseVoltage, VoltageLevel] byOp=[VoltageLevel];; efferent classes: byAttr=[Float, UnitSymbol, UnitMultiplier] +2024-09-08 15:11:38,797 [main] DEBUG Util - (1533) WG13 CIM enumeration <> Domain::WithSingleLiteral, 1 enum literals +2024-09-08 15:11:38,797 [main] DEBUG Util - (1540) WG13 CIM enumeration <> Domain::YesNo, 2 enum literals; afferent classes: byAttr=[Bay, Equipment]; +2024-09-08 15:11:38,797 [main] DEBUG Util - (858) WG13 CIM private enumeration <> Core::BreakerConfiguration, 4 enum literals; afferent classes: byAttr=[Bay];,1 constraints: class attributes constraint Core::BreakerConfiguration {ConstraintOnEnum = [text]} +2024-09-08 15:11:38,797 [main] DEBUG Util - (878) WG13 CIM protected enumeration <> Core::BusbarConfiguration, 4 enum literals; afferent classes: byAttr=[Bay]; +2024-09-08 15:11:38,797 [main] DEBUG Util - (876) WG13 CIM root class <> Core::OperatingShare, 1 attributes, 2 associations; efferent classes: byAttr=[PerCent]; associated classes (bi-directional): asSource=[Core::OperatingParticipant, Core::PowerSystemResource] +2024-09-08 15:11:38,797 [main] DEBUG Util - (856) WG13 CIM enumeration <> Core::PhaseCode, 18 enum literals; afferent classes: byAttr=[ConductingEquipment]; +2024-09-08 15:11:38,797 [main] DEBUG Util - (851) WG13 CIM root class Core::IdentifiedObject, 11 subclasses=[BusNameMarker, Terminal, BaseVoltage, BasePower, SubGeographicalRegion, geographicalRegion, OperatingParticipant, PowerSystemResource, ConnectivityNode, TopologicalIsland, TopologicalNode], 3 attributes; efferent classes: byAttr=[String] +2024-09-08 15:11:38,797 [main] DEBUG Util - (1513) WG13 CIM enumeration <> Topology::TestEnum, 2 enum literals (codes used=[initial J/m², initial µ]) +2024-09-08 15:11:38,797 [main] DEBUG Util - (3045) WG13 CIM enumeration <> TestEnums::EnumWithSomeIntCodes, 7 enum literals (codes used=[, 1, 10, 2, 3, 4]) +2024-09-08 15:11:38,797 [main] DEBUG Util - (3047) WG13 CIM enumeration <> TestEnums::EnumWithStringCodes, 5 enum literals (codes used=[, 1, 3.14, another string, some string]) +2024-09-08 15:11:38,797 [main] DEBUG Util - (3049) WG13 CIM enumeration <> TestEnums::EnumWithNonUniqueCodes, 8 enum literals (codes used=[1, 3, 4, 6, 8]) +2024-09-08 15:11:38,797 [main] DEBUG Util - (1452) WG14 CIM root class IEC61968::IEC61968Version, 2 attributes; efferent classes: byAttr=[AbsoluteDateTime, String] +2024-09-08 15:11:38,797 [main] DEBUG Util - (1546) WG14 CIM root class Assets::AssetInfo, 1 associations; associated classes (bi-directional): asSource=[Core::PowerSystemResource] +2024-09-08 15:11:38,797 [main] DEBUG Util - (1467) WG14 CIM datatype <> Other::BadDatatypes, 2 subclasses=[BaseVoltage, MyClass], 2 attributes, 2 associations; afferent classes: byAttr=[BadDatatypes];; efferent classes: byDep=[MyClass] byAttr=[BadDatatypes, UnitSymbol]; associated classes (bi-directional): asTarget=[Other::AttrDuplication] asSource=[Other::MyClass] +2024-09-08 15:11:38,797 [main] DEBUG Util - (1472) WG14 CIM root class Other::Equipment, 2 attributes; efferent classes: byAttr=[Integer, YesNo] +2024-09-08 15:11:38,797 [main] DEBUG Util - (1474) WG14 CIM root class Other::MyClass, 1 associations; associated classes (bi-directional): asSource=[Informative::Class1] +2024-09-08 15:11:38,797 [main] DEBUG Util - (1480) WG14 CIM enumeration <> Other::EmptyEnum +2024-09-08 15:11:38,797 [main] DEBUG Util - (1481) WG14 CIM primitive <> Other::NonEmptyPrimitive, 1 attributes; efferent classes: byAttr=[Float] +2024-09-08 15:11:38,797 [main] DEBUG Util - (1537) WG14 CIM datatype <> Other::AnotherBadDatatype, 3 attributes; efferent classes: byAttr=[UnitSymbol, Integer, EmptyCompound] +2024-09-08 15:11:38,797 [main] DEBUG Util - (1538) WG14 CIM compound <> Other::EmptyCompound; afferent classes: byAttr=[AnotherBadDatatype]; +2024-09-08 15:11:38,797 [main] DEBUG Util - (1555) WG10 IEC61850 other 61850 WG10::WG10UMLVersion, 2 attributes; efferent classes: byAttr=[NullIEC61850] +2024-09-08 15:11:38,797 [main] DEBUG Util - (1586) WG10 IEC61850 unknown 61850 <> GenericModel::CommAddress; afferent classes: byAttr=[AccessPoint]; +2024-09-08 15:11:38,797 [main] DEBUG Util - (1588) WG10 IEC61850 unknown 61850 <> GenericModel::GenAssociationID; afferent classes: byAttr=[GenTPAA]; +2024-09-08 15:11:38,797 [main] DEBUG Util - (1597) WG10 IEC61850 enumeration <> GenericModel::GenFC; afferent classes: byAttr=[GenDataAttribute, GenFCD, GenFCDA, GenSubDataAttribute]; +2024-09-08 15:11:38,797 [main] DEBUG Util - (1609) WG10 IEC61850 enumeration <> GenericModel::GenPresenceConditions; afferent classes: byAttr=[GenDataAttribute, GenDataObject, GenSubDataAttribute, GenSubDataObject]; +2024-09-08 15:11:38,797 [main] DEBUG Util - (1614) WG10 IEC61850 unknown 61850 <> GenericModel::GenTimeStamp; afferent classes: byAttr=[GenFile]; +2024-09-08 15:11:38,797 [main] DEBUG Util - (1585) WG10 IEC61850 other 61850 GenericModel::AccessPoint, 1 subclasses=[ServiceAccessPoint], 1 attributes, 1 associations; efferent classes: byAttr=[CommAddress]; associated classes (bi-directional): asTarget=[GenericModel::GenIED] +2024-09-08 15:11:38,797 [main] DEBUG Util - (1587) WG10 IEC61850 other 61850 GenericModel::FileSystem, 2 associations; associated classes (bi-directional): asTarget=[GenericModel::GenServer] asSource=[GenericModel::GenFile] +2024-09-08 15:11:38,797 [main] DEBUG Util - (1589) WG10 IEC61850 other 61850 GenericModel::GenAtomicType; afferent classes: byDep=[GenSubDataAttribute, GenDataAttribute]; +2024-09-08 15:11:38,797 [main] DEBUG Util - (1590) WG10 IEC61850 other 61850 GenericModel::GenBOOLEAN; afferent classes: byAttr=[GenDataObject]; +2024-09-08 15:11:38,797 [main] DEBUG Util - (1591) WG10 IEC61850 other 61850 GenericModel::GenCommonDataClass, 1 attributes, 2 associations; afferent classes: byDep=[GenSubDataObject, GenDataObject];; efferent classes: byAttr=[GenObjectName]; associated classes (bi-directional): asSource=[GenericModel::GenDataAttribute, GenericModel::GenSubDataObject] +2024-09-08 15:11:38,797 [main] DEBUG Util - (1592) WG10 IEC61850 other 61850 GenericModel::GenCompactType; afferent classes: byDep=[GenSubDataAttribute, GenDataAttribute]; +2024-09-08 15:11:38,798 [main] DEBUG Util - (1593) WG10 IEC61850 other 61850 GenericModel::GenConstructedType, 1 attributes, 1 associations; afferent classes: byDep=[GenSubDataAttribute, GenDataAttribute];; efferent classes: byAttr=[GenObjectName]; associated classes (bi-directional): asSource=[GenericModel::GenSubDataAttribute] +2024-09-08 15:11:38,798 [main] DEBUG Util - (1594) WG10 IEC61850 other 61850 GenericModel::GenDataAttribute, 6 attributes, 2 associations; efferent classes: byDep=[GenAtomicType, GenCompactType, GenConstructedType] byAttr=[GenObjectName, GenObjRef, GenFC, GenTriggerConditions, GenPresenceConditions, GenINT32U]; associated classes (bi-directional): asTarget=[GenericModel::GenCommonDataClass, GenericModel::GenFCDA] +2024-09-08 15:11:38,798 [main] DEBUG Util - (1595) WG10 IEC61850 other 61850 GenericModel::GenDataObject, 4 attributes, 2 associations; efferent classes: byDep=[GenCommonDataClass] byAttr=[GenObjectName, GenObjRef, GenBOOLEAN, GenPresenceConditions]; associated classes (bi-directional): asTarget=[GenericModel::GenLogicalNode, GenericModel::GenFCD] +2024-09-08 15:11:38,798 [main] DEBUG Util - (1596) WG10 IEC61850 other 61850 GenericModel::GenDataSet, 1 attributes, 2 associations; efferent classes: byAttr=[GenObjectName]; associated classes (bi-directional): asSource=[GenericModel::GenFCD, GenericModel::GenFCDA] +2024-09-08 15:11:38,798 [main] DEBUG Util - (1598) WG10 IEC61850 other 61850 GenericModel::GenFCD, 1 attributes, 3 associations; efferent classes: byAttr=[GenFC]; associated classes (bi-directional): asTarget=[GenericModel::GenDataSet] asSource=[GenericModel::GenDataObject, GenericModel::GenSubDataObject] +2024-09-08 15:11:38,798 [main] DEBUG Util - (1599) WG10 IEC61850 other 61850 GenericModel::GenFCDA, 1 attributes, 3 associations; efferent classes: byAttr=[GenFC]; associated classes (bi-directional): asTarget=[GenericModel::GenDataSet] asSource=[GenericModel::GenDataAttribute, GenericModel::GenSubDataAttribute],1 constraints: class attributes constraint GenericModel::GenFCDA {FCConstraint = [inv]} (null) +2024-09-08 15:11:38,798 [main] DEBUG Util - (1600) WG10 IEC61850 other 61850 GenericModel::GenFile, 3 attributes, 1 associations; efferent classes: byAttr=[GenVisString255, GenINT32U, GenTimeStamp]; associated classes (bi-directional): asTarget=[GenericModel::FileSystem] +2024-09-08 15:11:38,798 [main] DEBUG Util - (1601) WG10 IEC61850 other 61850 GenericModel::GenIED, 1 associations; associated classes (bi-directional): asSource=[GenericModel::AccessPoint] +2024-09-08 15:11:38,798 [main] DEBUG Util - (1602) WG10 IEC61850 other 61850 GenericModel::GenINT32U; afferent classes: byAttr=[GenDataAttribute, GenFile, GenSubDataAttribute, GenSubDataObject]; +2024-09-08 15:11:38,798 [main] DEBUG Util - (1604) WG10 IEC61850 other 61850 GenericModel::GenLogicalDevice, 1 attributes, 4 associations; efferent classes: byAttr=[GenObjectName]; associated classes (bi-directional): asTarget=[GenericModel::GenServer, GenericModel::GenLogicalDevice] asSource=[GenericModel::GenLN0, GenericModel::GenLogicalNode, GenericModel::GenLogicalDevice] +2024-09-08 15:11:38,798 [main] DEBUG Util - (1605) WG10 IEC61850 other 61850 GenericModel::GenLogicalNode, 1 subclasses=[GenLN0], 2 attributes, 2 associations; efferent classes: byAttr=[GenObjectName, GenObjRef]; associated classes (bi-directional): asTarget=[GenericModel::GenLogicalDevice] asSource=[GenericModel::GenDataObject] +2024-09-08 15:11:38,798 [main] DEBUG Util - (1606) WG10 IEC61850 other 61850 GenericModel::GenMCAA, 1 associations; associated classes (bi-directional): asTarget=[GenericModel::GenServer] +2024-09-08 15:11:38,798 [main] DEBUG Util - (1607) WG10 IEC61850 other 61850 GenericModel::GenObjRef; afferent classes: byAttr=[GenDataAttribute, GenDataObject, GenLogicalNode, GenSubDataAttribute, GenSubDataObject]; +2024-09-08 15:11:38,798 [main] DEBUG Util - (1608) WG10 IEC61850 other 61850 GenericModel::GenObjectName; afferent classes: byAttr=[GenCommonDataClass, GenConstructedType, GenDataAttribute, GenDataObject, GenDataSet, GenLogicalDevice, GenLogicalNode, GenSubDataAttribute, GenSubDataObject]; +2024-09-08 15:11:38,798 [main] DEBUG Util - (1610) WG10 IEC61850 other 61850 GenericModel::GenServer, 5 associations; associated classes (bi-directional): asTarget=[GenericModel::ServiceAccessPoint] asSource=[GenericModel::FileSystem, GenericModel::GenLogicalDevice, GenericModel::GenMCAA, GenericModel::GenTPAA] +2024-09-08 15:11:38,798 [main] DEBUG Util - (1611) WG10 IEC61850 other 61850 GenericModel::GenSubDataAttribute, 5 attributes, 2 associations; efferent classes: byDep=[GenAtomicType, GenCompactType, GenConstructedType] byAttr=[GenObjectName, GenObjRef, GenFC, GenPresenceConditions, GenINT32U]; associated classes (bi-directional): asTarget=[GenericModel::GenConstructedType, GenericModel::GenFCDA] +2024-09-08 15:11:38,798 [main] DEBUG Util - (1612) WG10 IEC61850 other 61850 GenericModel::GenSubDataObject, 4 attributes, 2 associations; efferent classes: byDep=[GenCommonDataClass] byAttr=[GenObjectName, GenObjRef, GenPresenceConditions, GenINT32U]; associated classes (bi-directional): asTarget=[GenericModel::GenCommonDataClass, GenericModel::GenFCD] +2024-09-08 15:11:38,798 [main] DEBUG Util - (1613) WG10 IEC61850 other 61850 GenericModel::GenTPAA, 1 attributes, 1 associations; efferent classes: byAttr=[GenAssociationID]; associated classes (bi-directional): asTarget=[GenericModel::GenServer] +2024-09-08 15:11:38,798 [main] DEBUG Util - (1615) WG10 IEC61850 other 61850 GenericModel::GenTriggerConditions; afferent classes: byAttr=[GenDataAttribute]; +2024-09-08 15:11:38,798 [main] DEBUG Util - (1616) WG10 IEC61850 other 61850 GenericModel::GenVisString255; afferent classes: byAttr=[GenFile]; +2024-09-08 15:11:38,798 [main] DEBUG Util - (1547) WG10 IEC61850 other 61850 IEC61850_7_2::IEC61850_7_2Namespace, 5 attributes; efferent classes: byAttr=[NullIEC61850] +2024-09-08 15:11:38,798 [main] DEBUG Util - (1631) WG10 IEC61850 enumeration <> FunctionalConstraints::FcKind, 13 enum literals; afferent classes: byAttr=[FCDReference, FCD, FCDA_BL, FCDA_CF, FCDA_DC, FCDA_EX, FCDA_MX, FCDA_OR, FCDA_SE, FCDA_SG, FCDA_SP, FCDA_ST, FCDA_SV]; +2024-09-08 15:11:38,798 [main] DEBUG Util - (1633) WG10 IEC61850 enumeration <> TriggerOptions::TrgOpKind, 4 enum literals; afferent classes: byAttr=[FCDA_CF_dchg, FCDA_MX_dchg, FCDA_MX_dchg_dupd, FCDA_MX_qchg, FCDA_OR_dchg, FCDA_SE_dchg, FCDA_SG_dchg, FCDA_SP_dchg, FCDA_ST_dchg, FCDA_ST_dchg_dupd, FCDA_ST_dupd, FCDA_ST_qchg]; +2024-09-08 15:11:38,799 [main] DEBUG Util - (1635) WG10 IEC61850 coded enumeration <> ACSIEnums::BsControlKind, 4 attributes; afferent classes: byAttr=[BsControl]; +2024-09-08 15:11:38,799 [main] DEBUG Util - (1636) WG10 IEC61850 coded enumeration <> ACSIEnums::DpStatusKind, 4 attributes; afferent classes: byAttr=[DpStatus]; +2024-09-08 15:11:38,799 [main] DEBUG Util - (1653) WG10 IEC61850 basic <> CoreTypes::P_BOOLEAN; afferent classes: byAttr=[TimeQuality, P_TriggerConditions, BOOLEAN, NonPersistentDS, PersistentDS, FCDA_EX, FCDA_MX, FCDA_OR, FCDA_SE, FCDA_SG, FCDA_ST, Quality, DetailQual]; +2024-09-08 15:11:38,799 [main] DEBUG Util - (1659) WG10 IEC61850 basic <> CoreTypes::P_INT16U; afferent classes: byAttr=[INT16U, MulticastAddress]; +2024-09-08 15:11:38,799 [main] DEBUG Util - (1656) WG10 IEC61850 basic <> CoreTypes::P_INT32; afferent classes: byAttr=[P_TimeStamp, INT32]; +2024-09-08 15:11:38,799 [main] DEBUG Util - (1661) WG10 IEC61850 basic <> CoreTypes::P_INT32U; afferent classes: byAttr=[FCDAReference, INT32U]; +2024-09-08 15:11:38,799 [main] DEBUG Util - (1662) WG10 IEC61850 basic <> CoreTypes::P_FLOAT32; afferent classes: byAttr=[FLOAT32]; +2024-09-08 15:11:38,799 [main] DEBUG Util - (1663) WG10 IEC61850 basic <> CoreTypes::P_UNICODE_STRING255; afferent classes: byAttr=[UNICODE_STRING255]; +2024-09-08 15:11:38,799 [main] DEBUG Util - (1667) WG10 IEC61850 basic <> CoreTypes::P_VISIBLE_STRING255; afferent classes: byAttr=[FCDAReference, VISIBLE_STRING255]; +2024-09-08 15:11:38,799 [main] DEBUG Util - (1668) WG10 IEC61850 basic <> CoreTypes::ObjectName, 1 attributes; afferent classes: byAttr=[LDReference, NonPersistentDSReference, LNReference, CDCReference, CBReference, LOGReference, LNOwnedDSReference, FCDAReference, NamedIEC61850Object];; efferent classes: byAttr=[NullIEC61850] +2024-09-08 15:11:38,799 [main] DEBUG Util - (1669) WG10 IEC61850 abstract class basic <> CoreTypes::P_ObjectReference, 3 subclasses=[FILEReference, LDReference, NonPersistentDSReference], 1 attributes; afferent classes: byAttr=[ObjectReference];; efferent classes: byAttr=[NullIEC61850] +2024-09-08 15:11:38,799 [main] DEBUG Util - (1670) WG10 IEC61850 basic <> CoreTypes::P_PHYCOMADDR; afferent classes: byAttr=[PHYCOMADDR]; +2024-09-08 15:11:38,799 [main] DEBUG Util - (1671) WG10 IEC61850 packed list <> CoreTypes::P_TimeStamp, 3 attributes; afferent classes: byAttr=[TimeStamp];; efferent classes: byAttr=[P_INT32, NullIEC61850, TimeQuality] +2024-09-08 15:11:38,799 [main] DEBUG Util - (1672) WG10 IEC61850 packed list <> CoreTypes::TimeQuality, 4 attributes; afferent classes: byAttr=[P_TimeStamp];; efferent classes: byAttr=[P_BOOLEAN, TimeAccuracyKind] +2024-09-08 15:11:38,799 [main] DEBUG Util - (1673) WG10 IEC61850 coded enumeration <> CoreTypes::TimeAccuracyKind, 7 attributes; afferent classes: byAttr=[TimeQuality]; +2024-09-08 15:11:38,799 [main] DEBUG Util - (1674) WG10 IEC61850 packed list <> CoreTypes::P_TriggerConditions, 5 attributes; afferent classes: byAttr=[TriggerConditions];; efferent classes: byAttr=[P_BOOLEAN] +2024-09-08 15:11:38,799 [main] DEBUG Util - (1699) WG10 IEC61850 enumeration <> ObjectReferences::ServiceFcKind, 8 enum literals; afferent classes: byAttr=[CBReference, LOGReference]; +2024-09-08 15:11:38,799 [main] DEBUG Util - (1714) WG10 IEC61850 enumeration <> AttrValues::AttrValueKind, 19 enum literals; afferent classes: byOp=[AttrValue, AttrDefinition]; +2024-09-08 15:11:38,799 [main] DEBUG Util - (1715) WG10 IEC61850 abstract class other 61850 AttrValues::AttrValue, 1 operations; afferent classes: byAttr=[PrimitiveDA] byOp=[NamedAttrValue];; efferent classes: byOp=[AttrValueKind] +2024-09-08 15:11:38,799 [main] DEBUG Util - (1735) WG10 IEC61850 other 61850 AttrValues::AttrDefinition, 2 operations; efferent classes: byOp=[FCDAReference, AttrValueKind] +2024-09-08 15:11:38,799 [main] DEBUG Util - (1736) WG10 IEC61850 other 61850 AttrValues::NamedAttrValue, 2 operations; efferent classes: byOp=[FCDAReference, AttrValue] +2024-09-08 15:11:38,799 [main] DEBUG Util - (1770) WG10 IEC61850 basic <> CommonAcsiTypes::P_OCTET_STRING; afferent classes: byDep=[MulticastAddress] byAttr=[EntryID]; +2024-09-08 15:11:38,799 [main] DEBUG Util - (1771) WG10 IEC61850 other 61850 CommonAcsiTypes::IPAddress, 1 attributes; afferent classes: byAttr=[SERVER, BRCB, URCB, USVCB];; efferent classes: byAttr=[NullIEC61850] +2024-09-08 15:11:38,799 [main] DEBUG Util - (1772) WG10 IEC61850 other 61850 CommonAcsiTypes::MulticastAddress, 4 attributes; afferent classes: byAttr=[GCB, MSVCB];; efferent classes: byDep=[P_OCTET_STRING] byAttr=[NullIEC61850, P_INT16U] +2024-09-08 15:11:38,799 [main] DEBUG Util - (1773) WG10 IEC61850 other 61850 CommonAcsiTypes::Authentication, 3 operations, 5 associations; efferent classes: byOp=[NullIEC61850, AccessView]; associated classes (bi-directional): asTarget=[MetaModel::MCAA, MetaModel::TPAA] asSource=[CommonAcsiTypes::AccessView, CommonAcsiTypes::ReportID, CommonAcsiTypes::EntryID] +2024-09-08 15:11:38,799 [main] DEBUG Util - (1774) WG10 IEC61850 protected other 61850 CommonAcsiTypes::AccessView, 1 associations; afferent classes: byOp=[Authentication];; associated classes (bi-directional): asTarget=[CommonAcsiTypes::Authentication] +2024-09-08 15:11:38,799 [main] DEBUG Util - (1775) WG10 IEC61850 basic <> CommonAcsiTypes::ReportID, 1 attributes, 1 associations; efferent classes: byAttr=[NullIEC61850]; associated classes (bi-directional): asTarget=[CommonAcsiTypes::Authentication] +2024-09-08 15:11:38,799 [main] DEBUG Util - (1776) WG10 IEC61850 basic <> CommonAcsiTypes::EntryID, 1 attributes, 1 associations; efferent classes: byAttr=[P_OCTET_STRING]; associated classes (bi-directional): asTarget=[CommonAcsiTypes::Authentication] +2024-09-08 15:11:38,799 [main] DEBUG Util - (1777) WG10 IEC61850 basic <> CommonAcsiTypes::EntryTime +2024-09-08 15:11:38,799 [main] DEBUG Util - (1835) WG10 IEC61850 abstract class other 61850 MetaModel::IEC61850Object, 3 subclasses=[HierarchyIEC61850Object, TPAA, MCAA]; afferent classes: byAttr=[HierarchyIEC61850Object]; +2024-09-08 15:11:38,799 [main] DEBUG Util - (1863) WG10 IEC61850 abstract class other 61850 MetaModel::SUBSTITUTION +2024-09-08 15:11:38,800 [main] DEBUG Util - (1875) WG10 IEC61850 abstract class other 61850 MetaModel::CONTROL +2024-09-08 15:11:38,800 [main] DEBUG Util - (1876) WG10 IEC61850 other 61850 MetaModel::TIME +2024-09-08 15:11:38,800 [main] DEBUG Util - (1550) WG10 IEC61850 other 61850 IEC61850_7_3::IEC61850_7_3Namespace, 5 attributes; efferent classes: byAttr=[NullIEC61850] +2024-09-08 15:11:38,800 [main] DEBUG Util - (2011) WG10 IEC61850 presence condition enumeration <> PresenceConditions::PresenceCondition, 30 attributes +2024-09-08 15:11:38,800 [main] DEBUG Util - (2045) WG10 IEC61850 enumeration <> DAEnums::SIUnitKind, 73 enum literals (codes used=[1, 10, 11, 2, 21, 22, 23, 24, 25, 26, 27, 28, 29, 3, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 4, 41, 42, 43, 44, 45, 46, 47, 48, 49, 5, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 6, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 7, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 8, 80, 81, 82, 83, 9]); afferent classes: byAttr=[SIUnit];, tags={scl=SIUnit} +2024-09-08 15:11:38,800 [main] DEBUG Util - (2044) WG10 IEC61850 enumeration <> DAEnums::MultiplierKind, 21 enum literals (codes used=[-1, -12, -15, -18, -2, -21, -24, -3, -6, -9, 0, 1, 12, 15, 18, 2, 21, 24, 3, 6, 9]); afferent classes: byAttr=[Multiplier];, tags={scl=multiplier} +2024-09-08 15:11:38,800 [main] DEBUG Util - (2035) WG10 IEC61850 enumeration <> DAEnums::PhaseFaultDirectionKind, 3 enum literals (codes used=[0, 1, 2]); afferent classes: byAttr=[PhaseFaultDirection]; +2024-09-08 15:11:38,800 [main] DEBUG Util - (2039) WG10 IEC61850 enumeration <> DAEnums::PhaseAngleReferenceKind, 12 enum literals (codes used=[0, 1, 10, 11, 2, 3, 4, 5, 6, 7, 8, 9]); afferent classes: byAttr=[PhaseAngleReference];, tags={scl=angRef, angid} +2024-09-08 15:11:38,800 [main] DEBUG Util - (2086) WG10 IEC61850 coded enumeration <> ConstructedDAs::ValidityKind, 4 attributes; afferent classes: byAttr=[Quality]; +2024-09-08 15:11:38,800 [main] DEBUG Util - (2087) WG10 IEC61850 packed list <> ConstructedDAs::DetailQual, 8 attributes; afferent classes: byAttr=[Quality];; efferent classes: byAttr=[P_BOOLEAN] +2024-09-08 15:11:38,800 [main] DEBUG Util - (2088) WG10 IEC61850 coded enumeration <> ConstructedDAs::SourceKind, 2 attributes; afferent classes: byAttr=[Quality]; +2024-09-08 15:11:38,800 [main] DEBUG Util - (3071) WG10 IEC61850 other 61850 CDCControl::SPC, 1 subclasses=[SPCTransient]; efferent classes: byDep=[ControllableCDC] +2024-09-08 15:11:38,800 [main] DEBUG Util - (1551) WG10 IEC61850 other 61850 IEC61850_7_4::IEC61850_7_4Namespace, 5 attributes; efferent classes: byAttr=[NullIEC61850] +2024-09-08 15:11:38,800 [main] DEBUG Util - (2335) WG10 IEC61850 abbreviation enumeration <> Abbreviations::AbbrTermAny, 8 attributes +2024-09-08 15:11:38,800 [main] DEBUG Util - (2359) WG10 IEC61850 abbreviation enumeration <> Abbreviations::AbbrTermZ, 2 attributes +2024-09-08 15:11:38,800 [main] DEBUG Util - (2368) WG10 IEC61850 function ProtectionEq::BusbarProt; efferent classes: byDep=[PDIF], tags={iecRef=, ieeeRef=87B, rsName=PBDF} +2024-09-08 15:11:38,800 [main] DEBUG Util - (2374) WG10 IEC61850 function ProtectionEq::DirectionalProt; efferent classes: byDep=[RDIR, PDIS], tags={iecRef=, ieeeRef=87B, rsName=PDIR} +2024-09-08 15:11:38,800 [main] DEBUG Util - (2375) WG10 IEC61850 function ProtectionEq::DirectionalPowerProt; efferent classes: byDep=[RDIR], tags={iecRef=P>, ieeeRef=32, rsName=PDPR} +2024-09-08 15:11:38,800 [main] DEBUG Util - (2385) WG10 IEC61850 function ProtectionEq::LineDifferentialProt; efferent classes: byDep=[PDIF], tags={iecRef=, ieeeRef=87L, rsName=PLDF} +2024-09-08 15:11:38,800 [main] DEBUG Util - (2394) WG10 IEC61850 function ProtectionEq::PowerFactorProt, tags={iecRef=cos\u03C6>, cos\u03C6<, ieeeRef=55, rsName=PPFR} +2024-09-08 15:11:38,800 [main] DEBUG Util - (2420) WG10 IEC61850 function ControlEq::AlarmHandler; efferent classes: byDep=[CALH], tags={iecRef=, ieeeRef=, rsName=CALH} +2024-09-08 15:11:38,800 [main] DEBUG Util - (2465) WG10 IEC61850 function MeasurementsAndMetering::ThreePhaseMeasurement; efferent classes: byDep=[MMXU], tags={iecRef=, ieeeRef=, rsName=MMXU} +2024-09-08 15:11:38,800 [main] DEBUG Util - (2475) WG10 IEC61850 function SystemWide::LogicalDeviceData; efferent classes: byDep=[LLN0], tags={iecRef=, ieeeRef=, rsName=LLN0} +2024-09-08 15:11:38,800 [main] DEBUG Util - (2477) WG10 IEC61850 function SystemWide::PhysicalDeviceData; efferent classes: byDep=[LPHD], tags={iecRef=, ieeeRef=, rsName=LPHD} +2024-09-08 15:11:38,800 [main] DEBUG Util - (2487) WG10 IEC61850 function PrimaryEq::AuxiliaryNetwork; efferent classes: byDep=[ZAXN], tags={iecRef=, ieeeRef=, rsName=ZAXN} +2024-09-08 15:11:38,801 [main] DEBUG Util - (2501) WG10 IEC61850 function PrimaryEq::GenericIO; efferent classes: byDep=[GGIO], tags={iecRef=, ieeeRef=, rsName=GGIO} +2024-09-08 15:11:38,801 [main] DEBUG Util - (2568) WG10 IEC61850 enumeration <> DOEnums::HealthKind, 3 enum literals (codes used=[1, 2, 3]); afferent classes: byAttr=[Health];, tags={scl=EEHealth,Health,MechHealth,PhyHealth} +2024-09-08 15:11:38,801 [main] DEBUG Util - (2564) WG10 IEC61850 enumeration <> DOEnums::BehaviourModeKind, 5 enum literals (codes used=[1, 2, 3, 4, 5]); afferent classes: byAttr=[BehaviourMode];, tags={scl=Beh,Mod} +2024-09-08 15:11:38,801 [main] DEBUG Util - (2567) WG10 IEC61850 enumeration <> DOEnums::CalcMethodKind, 10 enum literals (codes used=[1, 10, 2, 3, 4, 5, 6, 7, 8, 9]); afferent classes: byAttr=[CalcMethod];, tags={scl=ClcMth} +2024-09-08 15:11:38,801 [main] DEBUG Util - (3090) WG10 IEC61850 enumeration <> DOEnums::BaseKind, 1 subclasses=[ExtBaseKind], 3 enum literals +2024-09-08 15:11:38,801 [main] DEBUG Util - (2671) WG10 IEC61850 other 61850 DerivedCDCs::ACTTransient; afferent classes: byAttr=[PDIF, PDIS]; +2024-09-08 15:11:38,801 [main] DEBUG Util - (2721) WG10 IEC61850 other 61850 DerivedCDCs::SPSTransient; afferent classes: byAttr=[StatisticsLN, LPHD, RDIR]; +2024-09-08 15:11:38,801 [main] DEBUG Util - (3070) WG17 IEC61850 other 61850 WG17::WG17UMLVersion, 2 attributes; efferent classes: byAttr=[NullIEC61850] +2024-09-08 15:11:38,801 [main] DEBUG Util - (3067) WG17 IEC61850 other 61850 IEC51850_7_420::IEC61850_7_420Namespace, 5 attributes; efferent classes: byAttr=[NullIEC61850] +2024-09-08 15:11:38,801 [main] DEBUG Util - (3053) WG17 IEC61850 enumeration <> DOEnums_7_420::MaterialKind, 3 enum literals (codes used=[1, 2, 3]); afferent classes: byAttr=[Material]; +2024-09-08 15:11:38,801 [main] DEBUG Util - (3087) WG17 IEC61850 enumeration <> DOEnums_7_420::MaterialTransitionKind, 3 enum literals; afferent classes: byAttr=[Material_control]; +2024-09-08 15:11:38,801 [main] DEBUG Util - (3054) WG17 IEC61850 enumeration <> DOEnums_7_420::OtherKind, 3 enum literals (codes used=[1, 2, 3]); afferent classes: byAttr=[Other]; +2024-09-08 15:11:38,801 [main] DEBUG Util - (3026) WG18 IEC61850 abbreviation enumeration <> Abbreviations_410::AbbrTermA, 3 attributes +2024-09-08 15:11:38,801 [main] DEBUG Util - (3077) OTHER_CIM CIM root class <> MyCimExtensions::DFD_External1 +2024-09-08 15:11:38,801 [main] DEBUG Util - (3078) OTHER_CIM CIM root class <> MyCimExtensions::DFD_DataStore1 +2024-09-08 15:11:38,801 [main] DEBUG Util - (1489) OTHER_CIM CIM root class Ext1::Fruit, 3 subclasses=[Pear, Apple, Strawberry], 2 associations; associated classes (bi-directional): asTarget=[Ext2::Animal, Ext2::Animal] +2024-09-08 15:11:38,801 [main] DEBUG Util - (3034) OTHER_CIM CIM enumeration <> Ext1::FruitBinKind, 3 enum literals +2024-09-08 15:11:38,801 [main] DEBUG Util - (3036) OTHER_CIM CIM root class Ext1::Village, 1 associations; associated classes (bi-directional): asSource=[Ext1::Strawberry] +2024-09-08 15:11:38,801 [main] DEBUG Util - (1542) OTHER_CIM CIM root class Package with space::My class, 1 attributes, 1 operations, 1 associations; efferent classes: byAttr=[AbsoluteDateTime]; associated classes (bi-directional): asSource=[Package with space::Other-with_invalid name] +2024-09-08 15:11:38,801 [main] DEBUG Util - (1543) OTHER_CIM CIM root class Package with space::Other-with_invalid name, 1 associations; associated classes (bi-directional): asTarget=[Package with space::My class] +2024-09-08 15:11:38,801 [main] DEBUG Util - (1491) OTHER_IEC61850 IEC61850 other 61850 Ext2::Animal, 2 subclasses=[Dog, Horse], 2 associations; associated classes (bi-directional): asSource=[Ext1::Fruit, Ext1::Fruit] +2024-09-08 15:11:38,801 [main] DEBUG Util - (797) WG13 CIM class <> Topology::BusNameMarker, 2 superclasses=[IdentifiedObject, InfClass2], 4 attributes, 1 associations; efferent classes: byAttr=[Integer]; associated classes (bi-directional): asSource=[Topology::ConnectivityNode],4 constraints: class attributes constraint Topology::BusNameMarker {C2_1 = [constrained1, constrained2]} class attributes constraint Topology::BusNameMarker {C2_2 = [constrained3, constrained4]} class attributes constraint Topology::BusNameMarker {C2_3 = [constrained1, constrained4]} class attributes constraint Topology::BusNameMarker {EMPTY = []} +2024-09-08 15:11:38,801 [main] DEBUG Util - (853) WG13 CIM class Core::Terminal, 1 superclasses=[IdentifiedObject], 1 subclasses=[DumbSubterminal], 2 attributes, 4 associations; efferent classes: byAttr=[Boolean, Integer]; associated classes (bi-directional): asTarget=[Core::PowerSystemResource] asSource=[Core::ConductingEquipment, Topology::ConnectivityNode, Topology::TopologicalNode], tags={dummyCimTag=on terminal} +2024-09-08 15:11:38,802 [main] DEBUG Util - (3080) WG13 CIM class Topology::DumbSubterminal, 1 superclasses=[Terminal] +2024-09-08 15:11:38,802 [main] DEBUG Util - (855) WG13 CIM class Core::BaseVoltage, 2 superclasses=[IdentifiedObject, BadDatatypes], 4 attributes, 3 associations; efferent classes: byAttr=[Boolean, Voltage]; associated classes (bi-directional): asTarget=[Core::VoltageLevel, Topology::TopologicalNode] asSource=[Core::ConductingEquipment] +2024-09-08 15:11:38,802 [main] DEBUG Util - (867) WG13 CIM class Core::BasePower, 1 superclasses=[IdentifiedObject], 1 attributes; efferent classes: byAttr=[ApparentPower] +2024-09-08 15:11:38,802 [main] DEBUG Util - (875) WG13 CIM class Core::SubGeographicalRegion, 1 superclasses=[IdentifiedObject], 2 associations; associated classes (bi-directional): asTarget=[Core::geographicalRegion] asSource=[Core::Substation] +2024-09-08 15:11:38,802 [main] DEBUG Util - (883) WG13 CIM class Core::geographicalRegion, 1 superclasses=[IdentifiedObject], 1 associations; associated classes (bi-directional): asSource=[Core::SubGeographicalRegion] +2024-09-08 15:11:38,802 [main] DEBUG Util - (850) WG13 CIM compound <> Core::OperatingParticipant, 1 superclasses=[IdentifiedObject], 1 associations; associated classes (bi-directional): asTarget=[Core::OperatingShare], tags={dummyCimTag=value} +2024-09-08 15:11:38,802 [main] DEBUG Util - (849) WG13 CIM class Core::PowerSystemResource, 1 superclasses=[IdentifiedObject], 2 subclasses=[ConnectivityNodeContainer, Equipment], 1 attributes, 4 operations, 1 diagrams, 3 associations; efferent classes: byAttr=[String] byOp=[NullCIM]; associated classes (bi-directional): asTarget=[Core::OperatingShare, Assets::AssetInfo] asSource=[Core::Terminal],3 constraints: class attributes constraint Core::PowerSystemResource {R.1.2.3 PSR process constraint = [Here the text for process constraint.]} class attributes constraint Core::PowerSystemResource {ruleAsInQoCDC = [text only]} class attributes constraint Core::PowerSystemResource {anotherOclRule = [{ocl]} +2024-09-08 15:11:38,802 [main] DEBUG Util - (871) WG13 CIM class Core::ConnectivityNodeContainer, 1 superclasses=[PowerSystemResource], 1 subclasses=[EquipmentContainer], 2 associations; associated classes (bi-directional): asTarget=[Topology::ConnectivityNode, Topology::TopologicalNode] +2024-09-08 15:11:38,802 [main] DEBUG Util - (1490) OTHER_CIM CIM class <> Ext1::Pear, 1 superclasses=[Fruit], 1 subclasses=[EquipmentContainer], 1 attributes, 2 associations; efferent classes: byAttr=[SomeSimpleType]; associated classes (bi-directional): asSource=[Ext1::Apple, Ext1::Apple] +2024-09-08 15:11:38,802 [main] DEBUG Util - (881) WG13 CIM class Core::EquipmentContainer, 2 superclasses=[ConnectivityNodeContainer, Pear], 3 subclasses=[Bay, Substation, VoltageLevel], 1 associations; associated classes (bi-directional): asSource=[Core::Equipment] +2024-09-08 15:11:38,802 [main] DEBUG Util - (860) WG13 CIM class Core::Bay, 1 superclasses=[EquipmentContainer], 6 attributes, 2 associations; afferent classes: byAttr=[HasIllegalTypeForAttr];; efferent classes: byAttr=[Boolean, BreakerConfiguration, BusbarConfiguration, YesNo]; associated classes (bi-directional): asTarget=[Core::VoltageLevel] asSource=[Core::Substation] +2024-09-08 15:11:38,802 [main] DEBUG Util - (877) WG13 CIM class Core::Substation, 1 superclasses=[EquipmentContainer], 3 associations; associated classes (bi-directional): asTarget=[Core::Bay, Core::SubGeographicalRegion] asSource=[Core::VoltageLevel] +2024-09-08 15:11:38,802 [main] DEBUG Util - (870) WG13 CIM class Core::VoltageLevel, 1 superclasses=[EquipmentContainer], 2 attributes, 1 operations, 3 associations; efferent classes: byAttr=[Voltage] byOp=[Voltage]; associated classes (bi-directional): asTarget=[Core::Substation] asSource=[Core::BaseVoltage, Core::Bay] +2024-09-08 15:11:38,802 [main] DEBUG Util - (882) WG13 CIM class Core::Equipment, 1 superclasses=[PowerSystemResource], 1 subclasses=[ConductingEquipment], 1 attributes, 1 associations; efferent classes: byAttr=[Boolean]; associated classes (bi-directional): asTarget=[Core::EquipmentContainer] +2024-09-08 15:11:38,802 [main] DEBUG Util - (864) WG13 CIM class Core::ConductingEquipment, 1 superclasses=[Equipment], 1 attributes, 2 associations; efferent classes: byAttr=[PhaseCode]; associated classes (bi-directional): asTarget=[Core::BaseVoltage, Core::Terminal] +2024-09-08 15:11:38,802 [main] DEBUG Util - (796) WG13 CIM class Topology::ConnectivityNode, 1 superclasses=[IdentifiedObject], 4 associations; associated classes (bi-directional): asTarget=[Core::Terminal, Topology::BusNameMarker] asSource=[Core::ConnectivityNodeContainer, Topology::TopologicalNode] +2024-09-08 15:11:38,802 [main] DEBUG Util - (794) WG13 CIM class Topology::TopologicalIsland, 1 superclasses=[IdentifiedObject], 2 attributes, 2 associations; efferent classes: byAttr=[Integer]; associated classes (bi-directional): asTarget=[Topology::TopologicalNode] asSource=[Topology::TopologicalNode],1 constraints: class attributes constraint Topology::TopologicalIsland {PICS_SUBST = [constrained5]} +2024-09-08 15:11:38,802 [main] DEBUG Util - (795) WG13 CIM class Topology::TopologicalNode, 1 superclasses=[IdentifiedObject], 6 associations; associated classes (bi-directional): asTarget=[Core::Terminal, Topology::ConnectivityNode, Topology::TopologicalIsland] asSource=[Core::BaseVoltage, Core::ConnectivityNodeContainer, Topology::TopologicalIsland] +2024-09-08 15:11:38,802 [main] DEBUG Util - (1454) WG14 CIM abstract class class <> Other::MyClass, 1 superclasses=[BadDatatypes], 1 subclasses=[AttrDuplication], 3 attributes, 2 associations; afferent classes: byDep=[BadDatatypes];; efferent classes: byAttr=[Float, Boolean, NullCIM]; associated classes (bi-directional): asTarget=[Other::BadDatatypes, Other::MyClass] asSource=[Other::MyClass] +2024-09-08 15:11:38,802 [main] DEBUG Util - (1482) WG14 CIM class Other::AttrDuplication, 1 superclasses=[MyClass], 2 attributes, 3 associations; efferent classes: byAttr=[NullCIM, Boolean]; associated classes (bi-directional): asTarget=[Other::AttrDuplication, Other::AttrDuplication] asSource=[Other::BadDatatypes, Other::AttrDuplication, Other::AttrDuplication] +2024-09-08 15:11:38,802 [main] DEBUG Util - (1617) WG10 IEC61850 other 61850 GenericModel::ServiceAccessPoint, 1 superclasses=[AccessPoint], 1 associations; associated classes (bi-directional): asSource=[GenericModel::GenServer] +2024-09-08 15:11:38,802 [main] DEBUG Util - (1603) WG10 IEC61850 other 61850 GenericModel::GenLN0, 1 superclasses=[GenLogicalNode], 1 associations; associated classes (bi-directional): asTarget=[GenericModel::GenLogicalDevice],1 constraints: class attributes constraint GenericModel::GenLN0 {inv: self.LNName = "LLN0" = []} (null) +2024-09-08 15:11:38,802 [main] DEBUG Util - (1693) WG10 IEC61850 other 61850 ObjectReferences::FILEReference, 1 superclasses=[P_ObjectReference], 2 attributes; afferent classes: byAttr=[FILE];; efferent classes: byAttr=[NullIEC61850] +2024-09-08 15:11:38,802 [main] DEBUG Util - (1694) WG10 IEC61850 other 61850 ObjectReferences::LDReference, 1 superclasses=[P_ObjectReference], 1 subclasses=[LNReference], 2 attributes; afferent classes: byAttr=[LD];; efferent classes: byAttr=[NullIEC61850, ObjectName] +2024-09-08 15:11:38,802 [main] DEBUG Util - (1696) WG10 IEC61850 other 61850 ObjectReferences::LNReference, 1 superclasses=[LDReference], 4 subclasses=[CDCReference, CBReference, LOGReference, LNOwnedDSReference], 2 attributes; afferent classes: byAttr=[LN];; efferent classes: byAttr=[NullIEC61850, ObjectName] +2024-09-08 15:11:38,802 [main] DEBUG Util - (1697) WG10 IEC61850 other 61850 ObjectReferences::CDCReference, 1 superclasses=[LNReference], 1 subclasses=[FCDReference], 3 attributes; afferent classes: byAttr=[CDC];; efferent classes: byAttr=[NullIEC61850, ObjectName] +2024-09-08 15:11:38,802 [main] DEBUG Util - (1702) WG10 IEC61850 other 61850 ObjectReferences::FCDReference, 1 superclasses=[CDCReference], 1 subclasses=[FCDAReference], 3 attributes; afferent classes: byAttr=[FCD];; efferent classes: byAttr=[NullIEC61850, FcKind] +2024-09-08 15:11:38,802 [main] DEBUG Util - (1703) WG10 IEC61850 other 61850 ObjectReferences::FCDAReference, 1 superclasses=[FCDReference], 4 attributes; afferent classes: byAttr=[FCDA, DA] byOp=[AttrDefinition, NamedAttrValue];; efferent classes: byAttr=[NullIEC61850, P_VISIBLE_STRING255, ObjectName, P_INT32U] +2024-09-08 15:11:38,802 [main] DEBUG Util - (1698) WG10 IEC61850 other 61850 ObjectReferences::CBReference, 1 superclasses=[LNReference], 3 attributes; afferent classes: byAttr=[ControlBlock];; efferent classes: byAttr=[NullIEC61850, ObjectName, ServiceFcKind] +2024-09-08 15:11:38,802 [main] DEBUG Util - (1700) WG10 IEC61850 other 61850 ObjectReferences::LOGReference, 1 superclasses=[LNReference], 3 attributes; afferent classes: byAttr=[LOG];; efferent classes: byAttr=[NullIEC61850, ObjectName, ServiceFcKind] +2024-09-08 15:11:38,802 [main] DEBUG Util - (1701) WG10 IEC61850 other 61850 ObjectReferences::LNOwnedDSReference, 1 superclasses=[LNReference], 2 attributes; afferent classes: byAttr=[LNOwnedDS];; efferent classes: byAttr=[NullIEC61850, ObjectName] +2024-09-08 15:11:38,802 [main] DEBUG Util - (1695) WG10 IEC61850 other 61850 ObjectReferences::NonPersistentDSReference, 1 superclasses=[P_ObjectReference], 2 attributes; afferent classes: byAttr=[NonPersistentDS];; efferent classes: byAttr=[NullIEC61850, ObjectName] +2024-09-08 15:11:38,802 [main] DEBUG Util - (1836) WG10 IEC61850 abstract class other 61850 MetaModel::HierarchyIEC61850Object, 1 superclasses=[IEC61850Object], 5 subclasses=[NamedIEC61850Object, IED, SERVER, FCD, FILE], 1 attributes; efferent classes: byAttr=[IEC61850Object] +2024-09-08 15:11:38,802 [main] DEBUG Util - (1837) WG10 IEC61850 abstract class other 61850 MetaModel::NamedIEC61850Object, 1 superclasses=[HierarchyIEC61850Object], 8 subclasses=[LD, LN, CDC, FCDA, DA, DS, ControlBlock, LOG], 1 attributes; efferent classes: byAttr=[ObjectName] +2024-09-08 15:11:38,803 [main] DEBUG Util - (1842) WG10 IEC61850 other 61850 MetaModel::LD, 1 superclasses=[NamedIEC61850Object], 1 attributes, 4 associations; efferent classes: byAttr=[LDReference]; associated classes (bi-directional): asTarget=[MetaModel::SERVER] asSource=[MetaModel::LNDOM, MetaModel::LN0, MetaModel::LNPHD] +2024-09-08 15:11:38,803 [main] DEBUG Util - (1843) WG10 IEC61850 abstract class LN MetaModel::LN, 1 superclasses=[NamedIEC61850Object], 3 subclasses=[LNPHD, LN0, LNDOM], 1 attributes, 6 associations; efferent classes: byAttr=[LNReference]; associated classes (bi-directional): asSource=[MetaModel::CDC, MetaModel::LNOwnedDS, MetaModel::LOG, MetaModel::LCB, MetaModel::URCB, MetaModel::BRCB] +2024-09-08 15:11:38,803 [main] DEBUG Util - (1844) WG10 IEC61850 abstract class LN MetaModel::LNPHD, 1 superclasses=[LN], 1 subclasses=[LPHD], 1 associations; associated classes (bi-directional): asTarget=[MetaModel::LD] +2024-09-08 15:11:38,803 [main] DEBUG Util - (2764) WG10 IEC61850 LN LNGroupL::LPHD, 1 superclasses=[LNPHD], 3 attributes; afferent classes: byDep=[PhysicalDeviceData];; efferent classes: byAttr=[ENSHealth, SPCTransient, SPSTransient],2 constraints: class attributes constraint LNGroupL::LPHD {MF(2) = [RsstatAlmMthClc]} (MF(condID))class attributes constraint LNGroupL::LPHD {MOcond(1) = [PhyHealth]} (MOcond(condID)) +2024-09-08 15:11:38,803 [main] DEBUG Util - (1845) WG10 IEC61850 abstract class LN MetaModel::LN0, 1 superclasses=[LN], 1 subclasses=[LLN0], 5 associations; associated classes (bi-directional): asTarget=[MetaModel::LD] asSource=[MetaModel::USVCB, MetaModel::GCB, MetaModel::MSVCB, MetaModel::SGCB] +2024-09-08 15:11:38,803 [main] DEBUG Util - (2765) WG10 IEC61850 LN LNGroupL::LLN0, 1 superclasses=[LN0], 3 attributes; afferent classes: byDep=[LogicalDeviceData];; efferent classes: byAttr=[LPL, ENSBehaviourMode, ENSHealth],3 constraints: class attributes constraint LNGroupL::LLN0 {MOcond(1) = [NamPlt, Beh]} (MOcond(condID))class attributes constraint LNGroupL::LLN0 {MOrootLD = [Mod, Health, NamPlt]} (MOrootLD)class attributes constraint LNGroupL::LLN0 {Omulti = [InRef]} (Omulti) +2024-09-08 15:11:38,803 [main] DEBUG Util - (1846) WG10 IEC61850 abstract class LN MetaModel::LNDOM, 1 superclasses=[LN], 1 subclasses=[DomainLN], 1 associations; associated classes (bi-directional): asTarget=[MetaModel::LD] +2024-09-08 15:11:38,803 [main] DEBUG Util - (2728) WG10 IEC61850 abstract class LN <> LogicalNodes::DomainLN, 1 superclasses=[LNDOM], 6 subclasses=[StatisticsLN, EquipmentInterfaceLN, KXYZ, CALH, ProtectionLN, RDIR], 4 attributes, 1 diagrams; efferent classes: byAttr=[LPL, ENSHealth, ENCBehaviourMode, CMV],1 constraints: class attributes constraint LogicalNodes::DomainLN {MOcond(1) = [CntRs]} (MOcond(condID)) +2024-09-08 15:11:38,803 [main] DEBUG Util - (2735) WG10 IEC61850 abstract class LN <> LogicalNodes::StatisticsLN, 1 superclasses=[DomainLN], 2 subclasses=[GGIO, MMXU], 2 attributes; efferent classes: byAttr=[SPSTransient, ENGCalcMethod],1 constraints: class attributes constraint LogicalNodes::StatisticsLN {MF(ClcMth) = [ClcExp, ClcMod, ClcIntvPer, ClcIntvTyp]} (MF(sibling)) +2024-09-08 15:11:38,803 [main] DEBUG Util - (2815) WG10 IEC61850 LN LNGroupG::GGIO, 1 superclasses=[StatisticsLN], 3 attributes; afferent classes: byDep=[GenericIO];; efferent classes: byAttr=[ENSHealth, CMV, NullIEC61850],1 constraints: class attributes constraint LNGroupG::GGIO {Omulti = [AnIn, AnOut, DPCSO]} (Omulti) +2024-09-08 15:11:38,803 [main] DEBUG Util - (2856) WG10 IEC61850 LN LNGroupM::MMXU, 1 superclasses=[StatisticsLN], 3 attributes; afferent classes: byDep=[ThreePhaseMeasurement];; efferent classes: byAttr=[HWYE, CMV, HST],1 constraints: class attributes constraint LNGroupM::MMXU {MO(1) = [TotW]} (MOcond(condID)) +2024-09-08 15:11:38,803 [main] DEBUG Util - (2736) WG10 IEC61850 abstract class LN LogicalNodes::EquipmentInterfaceLN, 1 superclasses=[DomainLN], 1 subclasses=[ZAXN], 1 attributes; efferent classes: byAttr=[ENSHealth] +2024-09-08 15:11:38,803 [main] DEBUG Util - (3021) WG10 IEC61850 LN LNGroupZ::ZAXN, 1 superclasses=[EquipmentInterfaceLN], 5 attributes; afferent classes: byDep=[AuxiliaryNetwork];; efferent classes: byAttr=[CMV, NullIEC61850, ENSMaterial, ENCMaterial, ENSOther],2 constraints: class attributes constraint LNGroupZ::ZAXN {MOcond(condID) = [Vol]} (MOcond(condID))class attributes constraint LNGroupZ::ZAXN {AtLeastOne(n) = [Amp]} (AtLeastOne(n)) +2024-09-08 15:11:38,803 [main] DEBUG Util - (3030) WG10 IEC61850 LN LNGroupL::KXYZ, 1 superclasses=[DomainLN], 4 attributes; efferent classes: byAttr=[CMV, ENS, ENSEnumDA],1 constraints: class attributes constraint LNGroupL::KXYZ {MOcond(2) = [TotW]} (MOcond(condID)) +2024-09-08 15:11:38,803 [main] DEBUG Util - (2788) WG10 IEC61850 LN LNGroupC::CALH, 1 superclasses=[DomainLN], 3 attributes; afferent classes: byDep=[AlarmHandler];; efferent classes: byAttr=[DPS, EXYBehaviourMode],2 constraints: class attributes constraint LNGroupC::CALH {AtLeastOne(1) = [GrAlm, GrWrn, GrInd]} (AtLeastOne(n))class attributes constraint LNGroupC::CALH {AtLeastOne(2) = [CntRs]} (AtLeastOne(n)) +2024-09-08 15:11:38,803 [main] DEBUG Util - (2872) WG10 IEC61850 abstract class LN LNGroupP::ProtectionLN, 1 superclasses=[DomainLN], 3 subclasses=[PDIF, PDIS, PDF2], 1 attributes; efferent classes: byAttr=[NullIEC61850] +2024-09-08 15:11:38,803 [main] DEBUG Util - (2881) WG10 IEC61850 LN LNGroupP::PDIF, 1 superclasses=[ProtectionLN], 2 attributes; afferent classes: byDep=[BusbarProt, LineDifferentialProt];; efferent classes: byAttr=[ACD, ACTTransient],2 constraints: class attributes constraint LNGroupP::PDIF {AtMostOne = [LoSet, HiSet]} (AtMostOne)class attributes constraint LNGroupP::PDIF {OmultiRange(33, 48) = [Str]} (OmultiRange(min, max)) +2024-09-08 15:11:38,803 [main] DEBUG Util - (2883) WG10 IEC61850 LN LNGroupP::PDIS, 1 superclasses=[ProtectionLN], 1 subclasses=[PDISExt], 2 attributes, 1 diagrams; afferent classes: byDep=[DirectionalProt];; efferent classes: byDep=[RDIR] byAttr=[ACD, ACTTransient] +2024-09-08 15:11:38,803 [main] DEBUG Util - (3041) WG10 IEC61850 LN LNGroupP::PDISExt, 1 superclasses=[PDIS] +2024-09-08 15:11:38,803 [main] DEBUG Util - (3042) WG10 IEC61850 LN LNGroupP::PDF2, 1 superclasses=[ProtectionLN] +2024-09-08 15:11:38,803 [main] DEBUG Util - (2938) WG10 IEC61850 LN LNGroupR::RDIR, 1 superclasses=[DomainLN], 2 attributes; afferent classes: byDep=[DirectionalProt, DirectionalPowerProt, PDIS];; efferent classes: byAttr=[ACD, SPSTransient] +2024-09-08 15:11:38,803 [main] DEBUG Util - (1847) WG10 IEC61850 abstract class other 61850 MetaModel::CDC, 1 superclasses=[NamedIEC61850Object], 2 subclasses=[PrimitiveCDC, ComposedCDC], 1 attributes, 3 associations; efferent classes: byAttr=[CDCReference]; associated classes (bi-directional): asTarget=[MetaModel::LN] asSource=[MetaModel::FCDA, MetaModel::FCD] +2024-09-08 15:11:38,803 [main] DEBUG Util - (1848) WG10 IEC61850 abstract class primitive CDC MetaModel::PrimitiveCDC, 1 superclasses=[CDC], 1 subclasses=[BasePrimitiveCDC], 2 associations; associated classes (bi-directional): asTarget=[MetaModel::ComposedCDC] asSource=[MetaModel::PrimitiveDA] +2024-09-08 15:11:38,803 [main] DEBUG Util - (2234) WG10 IEC61850 abstract class primitive CDC CommonDataClasses::BasePrimitiveCDC, 1 superclasses=[PrimitiveCDC], 7 subclasses=[CST, SubstitutionCDC, EXY, ACD, HST, ENG, LPL], 2 attributes; efferent classes: byAttr=[UNICODE_STRING255_DC, VISIBLE_STRING255_EX],2 constraints: class attributes constraint CommonDataClasses::BasePrimitiveCDC {MOcdcNs = [cdcNs, cdcName]} (MOcdcNs)class attributes constraint CommonDataClasses::BasePrimitiveCDC {MOdataNs = [dataNs]} (MOdataNs) +2024-09-08 15:11:38,803 [main] DEBUG Util - (1995) WG10 IEC61850 abstract class primitive CDC CDCServiceTracking::CST, 1 superclasses=[BasePrimitiveCDC], 9 subclasses=[BTS, CTS, GTS, LTS, MTS, NTS, OTS, STS, UTS] +2024-09-08 15:11:38,803 [main] DEBUG Util - (1996) WG10 IEC61850 primitive CDC CDCServiceTracking::BTS, 1 superclasses=[CST] +2024-09-08 15:11:38,803 [main] DEBUG Util - (1997) WG10 IEC61850 control tracking CDC CDCServiceTracking::CTS, 1 superclasses=[CST] +2024-09-08 15:11:38,803 [main] DEBUG Util - (1998) WG10 IEC61850 primitive CDC CDCServiceTracking::GTS, 1 superclasses=[CST] +2024-09-08 15:11:38,803 [main] DEBUG Util - (1999) WG10 IEC61850 primitive CDC CDCServiceTracking::LTS, 1 superclasses=[CST] +2024-09-08 15:11:38,803 [main] DEBUG Util - (2000) WG10 IEC61850 primitive CDC CDCServiceTracking::MTS, 1 superclasses=[CST] +2024-09-08 15:11:38,803 [main] DEBUG Util - (2001) WG10 IEC61850 primitive CDC CDCServiceTracking::NTS, 1 superclasses=[CST] +2024-09-08 15:11:38,803 [main] DEBUG Util - (2002) WG10 IEC61850 primitive CDC CDCServiceTracking::OTS, 1 superclasses=[CST] +2024-09-08 15:11:38,803 [main] DEBUG Util - (2003) WG10 IEC61850 primitive CDC CDCServiceTracking::STS, 1 superclasses=[CST] +2024-09-08 15:11:38,804 [main] DEBUG Util - (2004) WG10 IEC61850 primitive CDC CDCServiceTracking::UTS, 1 superclasses=[CST] +2024-09-08 15:11:38,804 [main] DEBUG Util - (2236) WG10 IEC61850 abstract class primitive CDC CommonDataClasses::SubstitutionCDC, 1 superclasses=[BasePrimitiveCDC], 4 subclasses=[DPS, ENS, CMV, ControllableCDC], 3 attributes, 1 diagrams; efferent classes: byAttr=[BOOLEAN_SV, Quality_SV, BOOLEAN_BL],1 constraints: class attributes constraint CommonDataClasses::SubstitutionCDC {MFsubst = [subEna, subQ, subID]} (MFsubst) +2024-09-08 15:11:38,804 [main] DEBUG Util - (2248) WG10 IEC61850 primitive CDC CDCStatusInfo::DPS, 1 superclasses=[SubstitutionCDC], 4 attributes; afferent classes: byAttr=[CALH];; efferent classes: byAttr=[DpStatus_ST_dchg, Quality_ST_qchg, TimeStamp_ST, DpStatus_SV],1 constraints: class attributes constraint CDCStatusInfo::DPS {MFsubst = [subVal]} (MFsubst) +2024-09-08 15:11:38,804 [main] DEBUG Util - (2250) WG10 IEC61850 abstract class enumeration CDC CDCStatusInfo::ENS, 1 superclasses=[SubstitutionCDC], 5 subclasses=[ENSBehaviourMode, ENSHealth, ENSEnumDA, ENSMaterial, ENSOther], 4 attributes; afferent classes: byAttr=[KXYZ];; efferent classes: byAttr=[EnumDA_ST_dchg_dupd, Quality_ST_qchg, TimeStamp_ST, EnumDA_SV],1 constraints: class attributes constraint CDCStatusInfo::ENS {MFsubst = [subVal]} (MFsubst) +2024-09-08 15:11:38,804 [main] DEBUG Util - (2707) WG10 IEC61850 enumeration CDC DerivedCDCs::ENSBehaviourMode, 1 superclasses=[ENS]; afferent classes: byAttr=[LLN0]; +2024-09-08 15:11:38,804 [main] DEBUG Util - (2712) WG10 IEC61850 enumeration CDC DerivedCDCs::ENSHealth, 1 superclasses=[ENS]; afferent classes: byAttr=[DomainLN, EquipmentInterfaceLN, LPHD, LLN0, GGIO]; +2024-09-08 15:11:38,804 [main] DEBUG Util - (3073) WG10 IEC61850 abstract class enumeration CDC DerivedCDCs::ENSEnumDA, 1 superclasses=[ENS]; afferent classes: byAttr=[KXYZ]; +2024-09-08 15:11:38,804 [main] DEBUG Util - (3060) WG17 IEC61850 enumeration CDC DerivedCDCs_7_420::ENSMaterial, 1 superclasses=[ENS]; afferent classes: byAttr=[ZAXN]; +2024-09-08 15:11:38,804 [main] DEBUG Util - (3062) WG17 IEC61850 enumeration CDC DerivedCDCs_7_420::ENSOther, 1 superclasses=[ENS]; afferent classes: byAttr=[ZAXN]; +2024-09-08 15:11:38,804 [main] DEBUG Util - (2266) WG10 IEC61850 primitive CDC <> CDCAnalogueInfo::CMV, 1 superclasses=[SubstitutionCDC], 4 attributes; afferent classes: byAttr=[HWYE, DomainLN, KXYZ, GGIO, MMXU, ZAXN];; efferent classes: byAttr=[NullIEC61850, RangeConfig_CF_dchg],5 constraints: class attributes constraint CDCAnalogueInfo::CMV {MF(range) = [rangeC]} (MF(sibling))class attributes constraint CDCAnalogueInfo::CMV {MF(rangeAng) = [rangeAngC]} (MF(sibling))class attributes constraint CDCAnalogueInfo::CMV {MFscaledAngV = [angSVC]} (MFscaledAngV)class attributes constraint CDCAnalogueInfo::CMV {MFscaledMagV = [magSVC]} (MFscaledMagV)class attributes constraint CDCAnalogueInfo::CMV {MFsubst = [subCVal]} (MFsubst) +2024-09-08 15:11:38,804 [main] DEBUG Util - (2278) WG10 IEC61850 abstract class primitive CDC CDCControl::ControllableCDC, 1 superclasses=[SubstitutionCDC], 2 subclasses=[ENC, BAC], 1 attributes, 1 diagrams; afferent classes: byDep=[SPC];; efferent classes: byAttr=[BOOLEAN_OR_dchg] +2024-09-08 15:11:38,804 [main] DEBUG Util - (2283) WG10 IEC61850 abstract class enumeration CDC CDCControl::ENC, 1 superclasses=[ControllableCDC], 2 subclasses=[ENCBehaviourMode, ENCMaterial], 3 attributes; efferent classes: byAttr=[EnumDA_ST_dchg, EnumDA_SV, EnumDA],1 constraints: class attributes constraint CDCControl::ENC {MFsubst = [subVal]} (MFsubst) +2024-09-08 15:11:38,804 [main] DEBUG Util - (2673) WG10 IEC61850 enumeration CDC DerivedCDCs::ENCBehaviourMode, 1 superclasses=[ENC]; afferent classes: byAttr=[DomainLN]; +2024-09-08 15:11:38,804 [main] DEBUG Util - (3059) WG17 IEC61850 enumeration CDC DerivedCDCs_7_420::ENCMaterial, 1 superclasses=[ENC]; afferent classes: byAttr=[ZAXN]; +2024-09-08 15:11:38,804 [main] DEBUG Util - (2287) WG10 IEC61850 primitive CDC <> CDCControl::BAC, 1 superclasses=[ControllableCDC], 3 attributes; efferent classes: byAttr=[AnalogueValue_MX_dchg, NullIEC61850, BsControl],3 constraints: class attributes constraint CDCControl::BAC {AllOrNonePerGroup(1) = [mxVal, q, t]} (AllOrNonePerGroup(n))class attributes constraint CDCControl::BAC {MFscaledAV = [sVC]} (MFscaledAV)class attributes constraint CDCControl::BAC {MFsubst = [subVal]} (MFsubst) +2024-09-08 15:11:38,804 [main] DEBUG Util - (3038) WG10 IEC61850 primitive CDC CDCStatusInfo::EXY, 1 superclasses=[BasePrimitiveCDC], 1 subclasses=[EXYBehaviourMode], 3 attributes; efferent classes: byAttr=[EnumDA_ST_dchg_dupd, Quality_ST_qchg, TimeStamp_ST] +2024-09-08 15:11:38,804 [main] DEBUG Util - (3039) WG10 IEC61850 primitive CDC DerivedCDCs::EXYBehaviourMode, 1 superclasses=[EXY]; afferent classes: byAttr=[CALH]; +2024-09-08 15:11:38,804 [main] DEBUG Util - (2252) WG10 IEC61850 primitive CDC CDCStatusInfo::ACD, 1 superclasses=[BasePrimitiveCDC], 3 attributes; afferent classes: byAttr=[PDIF, PDIS, RDIR];; efferent classes: byAttr=[NullIEC61850, BOOLEAN_ST_dchg],4 constraints: class attributes constraint CDCStatusInfo::ACD {AllOrNonePerGroup(1) = [phsA, dirPhsA]} (AllOrNonePerGroup(n))class attributes constraint CDCStatusInfo::ACD {AllOrNonePerGroup(2) = [phsB, dirPhsB]} (AllOrNonePerGroup(n))class attributes constraint CDCStatusInfo::ACD {AllOrNonePerGroup(3) = [phsC, dirPhsC]} (AllOrNonePerGroup(n))class attributes constraint CDCStatusInfo::ACD {AllOrNonePerGroup(4) = [neut, dirNeut]} (AllOrNonePerGroup(n)) +2024-09-08 15:11:38,804 [main] DEBUG Util - (2255) WG10 IEC61850 primitive CDC CDCStatusInfo::HST, 1 superclasses=[BasePrimitiveCDC], 2 attributes, 2 diagrams; afferent classes: byAttr=[MMXU];; efferent classes: byAttr=[INT32_ST_dchg_dupd, INT16U_CF] +2024-09-08 15:11:38,804 [main] DEBUG Util - (2295) WG10 IEC61850 abstract class enumeration CDC CDCStatusSet::ENG, 1 superclasses=[BasePrimitiveCDC], 1 subclasses=[ENGCalcMethod], 3 attributes; efferent classes: byAttr=[NullIEC61850],2 constraints: class attributes constraint CDCStatusSet::ENG {MFnsg = [setVal]} (MFnsg)class attributes constraint CDCStatusSet::ENG {MFsg = [_setVal, __setVal]} (MFsg) +2024-09-08 15:11:38,804 [main] DEBUG Util - (2677) WG10 IEC61850 enumeration CDC DerivedCDCs::ENGCalcMethod, 1 superclasses=[ENG]; afferent classes: byAttr=[StatisticsLN]; +2024-09-08 15:11:38,804 [main] DEBUG Util - (2314) WG10 IEC61850 primitive CDC CDCDescription::LPL, 1 superclasses=[BasePrimitiveCDC], 2 attributes; afferent classes: byAttr=[DomainLN, LLN0];; efferent classes: byAttr=[VISIBLE_STRING255_EX],3 constraints: class attributes constraint CDCDescription::LPL {MFln0 = [ldNs]} (MFln0)class attributes constraint CDCDescription::LPL {MOln0 = [configRev]} (MOln0)class attributes constraint CDCDescription::LPL {MOlnNs = [lnNs]} (MOlnNs) +2024-09-08 15:11:38,804 [main] DEBUG Util - (1849) WG10 IEC61850 abstract class composed CDC MetaModel::ComposedCDC, 1 superclasses=[CDC], 1 subclasses=[BaseComposedCDC], 1 associations; associated classes (bi-directional): asSource=[MetaModel::PrimitiveCDC] +2024-09-08 15:11:38,804 [main] DEBUG Util - (2235) WG10 IEC61850 abstract class composed CDC CommonDataClasses::BaseComposedCDC, 1 superclasses=[ComposedCDC], 1 subclasses=[HarmonicMeasurandCDC], 2 attributes; efferent classes: byAttr=[UNICODE_STRING255_DC, VISIBLE_STRING255_EX],2 constraints: class attributes constraint CommonDataClasses::BaseComposedCDC {MOcdcNs = [cdcNs, cdcName]} (MOcdcNs)class attributes constraint CommonDataClasses::BaseComposedCDC {MOdataNs = [dataNs]} (MOdataNs) +2024-09-08 15:11:38,804 [main] DEBUG Util - (2263) WG10 IEC61850 abstract class composed CDC <> CDCAnalogueInfo::HarmonicMeasurandCDC, 1 superclasses=[BaseComposedCDC], 1 subclasses=[HWYE], 2 attributes; efferent classes: byAttr=[INT16U_CF_dchg, INT32U_CF_dchg],1 constraints: class attributes constraint CDCAnalogueInfo::HarmonicMeasurandCDC {MFrms = [rmsCyc]} (MFrms) +2024-09-08 15:11:38,804 [main] DEBUG Util - (2273) WG10 IEC61850 composed CDC CDCAnalogueInfo::HWYE, 1 superclasses=[HarmonicMeasurandCDC], 2 attributes; afferent classes: byAttr=[MMXU];; efferent classes: byAttr=[CMV, PhaseAngleReference_CF_dchg] +2024-09-08 15:11:38,804 [main] DEBUG Util - (1851) WG10 IEC61850 abstract class FCDA MetaModel::FCDA, 1 superclasses=[NamedIEC61850Object], 11 subclasses=[FCDA_BL, FCDA_CF, FCDA_DC, FCDA_EX, FCDA_MX, FCDA_OR, FCDA_SE, FCDA_SG, FCDA_SP, FCDA_ST, FCDA_SV], 1 attributes, 4 associations; efferent classes: byAttr=[FCDAReference]; associated classes (bi-directional): asTarget=[MetaModel::CDC, MetaModel::FCD] asSource=[MetaModel::DA, MetaModel::DS] +2024-09-08 15:11:38,804 [main] DEBUG Util - (1916) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_BL, 1 superclasses=[FCDA], 1 subclasses=[BOOLEAN_BL], 1 attributes; efferent classes: byAttr=[FcKind] +2024-09-08 15:11:38,804 [main] DEBUG Util - (2122) WG10 IEC61850 FCDA FCDAs::BOOLEAN_BL, 1 superclasses=[FCDA_BL], 1 attributes; afferent classes: byAttr=[SubstitutionCDC];; efferent classes: byAttr=[BOOLEAN] +2024-09-08 15:11:38,804 [main] DEBUG Util - (1917) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_CF, 1 superclasses=[FCDA], 3 subclasses=[EnumFCDA_CF, FCDA_CF_dchg, INT16U_CF], 1 attributes; efferent classes: byAttr=[FcKind] +2024-09-08 15:11:38,804 [main] DEBUG Util - (1903) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_CF, 1 superclasses=[FCDA_CF] +2024-09-08 15:11:38,805 [main] DEBUG Util - (1918) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_CF_dchg, 1 superclasses=[FCDA_CF], 6 subclasses=[EnumFCDA_CF_dchg, BOOLEAN_CF_dchg, INT16U_CF_dchg, INT32U_CF_dchg, INT32_CF_dchg, RangeConfig_CF_dchg], 1 attributes; efferent classes: byAttr=[TrgOpKind] +2024-09-08 15:11:38,805 [main] DEBUG Util - (1904) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_CF_dchg, 1 superclasses=[FCDA_CF_dchg], 2 subclasses=[EnumDA_CF_dchg, PhaseAngleReference_CF_dchg] +2024-09-08 15:11:38,805 [main] DEBUG Util - (2144) WG10 IEC61850 abstract class enumeration FCDA FCDAs::EnumDA_CF_dchg, 1 superclasses=[EnumFCDA_CF_dchg], 1 attributes; efferent classes: byAttr=[EnumDA] +2024-09-08 15:11:38,805 [main] DEBUG Util - (2183) WG10 IEC61850 enumeration FCDA FCDAs::PhaseAngleReference_CF_dchg, 1 superclasses=[EnumFCDA_CF_dchg], 1 attributes; afferent classes: byAttr=[HWYE];; efferent classes: byAttr=[PhaseAngleReference] +2024-09-08 15:11:38,805 [main] DEBUG Util - (2123) WG10 IEC61850 FCDA FCDAs::BOOLEAN_CF_dchg, 1 superclasses=[FCDA_CF_dchg], 1 attributes; efferent classes: byAttr=[BOOLEAN] +2024-09-08 15:11:38,805 [main] DEBUG Util - (2160) WG10 IEC61850 FCDA FCDAs::INT16U_CF_dchg, 1 superclasses=[FCDA_CF_dchg], 1 attributes; afferent classes: byAttr=[HarmonicMeasurandCDC];; efferent classes: byAttr=[INT16U] +2024-09-08 15:11:38,805 [main] DEBUG Util - (2165) WG10 IEC61850 FCDA FCDAs::INT32U_CF_dchg, 1 superclasses=[FCDA_CF_dchg], 1 attributes; afferent classes: byAttr=[HarmonicMeasurandCDC];; efferent classes: byAttr=[INT32U] +2024-09-08 15:11:38,805 [main] DEBUG Util - (2167) WG10 IEC61850 FCDA FCDAs::INT32_CF_dchg, 1 superclasses=[FCDA_CF_dchg], 1 attributes; efferent classes: byAttr=[INT32] +2024-09-08 15:11:38,805 [main] DEBUG Util - (2194) WG10 IEC61850 FCDA FCDAs::RangeConfig_CF_dchg, 1 superclasses=[FCDA_CF_dchg], 1 attributes; afferent classes: byAttr=[CMV];; efferent classes: byAttr=[RangeConfig] +2024-09-08 15:11:38,805 [main] DEBUG Util - (2159) WG10 IEC61850 FCDA FCDAs::INT16U_CF, 1 superclasses=[FCDA_CF], 1 attributes; afferent classes: byAttr=[HST];; efferent classes: byAttr=[INT16U] +2024-09-08 15:11:38,805 [main] DEBUG Util - (1919) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_DC, 1 superclasses=[FCDA], 2 subclasses=[Point_DC, UNICODE_STRING255_DC], 1 attributes; efferent classes: byAttr=[FcKind] +2024-09-08 15:11:38,805 [main] DEBUG Util - (2186) WG10 IEC61850 FCDA FCDAs::Point_DC, 1 superclasses=[FCDA_DC], 1 attributes; efferent classes: byAttr=[Point] +2024-09-08 15:11:38,805 [main] DEBUG Util - (2207) WG10 IEC61850 FCDA FCDAs::UNICODE_STRING255_DC, 1 superclasses=[FCDA_DC], 1 attributes; afferent classes: byAttr=[BasePrimitiveCDC, BaseComposedCDC];; efferent classes: byAttr=[UNICODE_STRING255] +2024-09-08 15:11:38,805 [main] DEBUG Util - (1920) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_EX, 1 superclasses=[FCDA], 1 subclasses=[VISIBLE_STRING255_EX], 2 attributes; efferent classes: byAttr=[FcKind, P_BOOLEAN] +2024-09-08 15:11:38,805 [main] DEBUG Util - (2217) WG10 IEC61850 FCDA FCDAs::VISIBLE_STRING255_EX, 1 superclasses=[FCDA_EX], 1 attributes; afferent classes: byAttr=[BasePrimitiveCDC, BaseComposedCDC, LPL];; efferent classes: byAttr=[VISIBLE_STRING255] +2024-09-08 15:11:38,805 [main] DEBUG Util - (1921) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_MX, 1 superclasses=[FCDA], 5 subclasses=[EnumFCDA_MX, FCDA_MX_dchg, FCDA_MX_dchg_dupd, FCDA_MX_qchg, AnalogueValue_MX], 2 attributes; efferent classes: byAttr=[FcKind, P_BOOLEAN] +2024-09-08 15:11:38,805 [main] DEBUG Util - (1905) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_MX, 1 superclasses=[FCDA_MX] +2024-09-08 15:11:38,805 [main] DEBUG Util - (1922) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_MX_dchg, 1 superclasses=[FCDA_MX], 2 subclasses=[AnalogueValue_MX_dchg, BOOLEAN_MX_dchg], 1 attributes; efferent classes: byAttr=[TrgOpKind] +2024-09-08 15:11:38,805 [main] DEBUG Util - (2116) WG10 IEC61850 FCDA FCDAs::AnalogueValue_MX_dchg, 1 superclasses=[FCDA_MX_dchg], 1 attributes; afferent classes: byAttr=[BAC];; efferent classes: byAttr=[AnalogueValue] +2024-09-08 15:11:38,805 [main] DEBUG Util - (2124) WG10 IEC61850 FCDA FCDAs::BOOLEAN_MX_dchg, 1 superclasses=[FCDA_MX_dchg], 1 attributes; efferent classes: byAttr=[BOOLEAN] +2024-09-08 15:11:38,805 [main] DEBUG Util - (1923) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_MX_dchg_dupd, 1 superclasses=[FCDA_MX], 1 subclasses=[AnalogueValue_MX_dchg_dupd], 1 attributes; efferent classes: byAttr=[TrgOpKind] +2024-09-08 15:11:38,805 [main] DEBUG Util - (2117) WG10 IEC61850 FCDA FCDAs::AnalogueValue_MX_dchg_dupd, 1 superclasses=[FCDA_MX_dchg_dupd], 1 attributes; efferent classes: byAttr=[AnalogueValue] +2024-09-08 15:11:38,805 [main] DEBUG Util - (1924) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_MX_qchg, 1 superclasses=[FCDA_MX], 1 subclasses=[Quality_MX_qchg], 1 attributes; efferent classes: byAttr=[TrgOpKind] +2024-09-08 15:11:38,805 [main] DEBUG Util - (2191) WG10 IEC61850 FCDA FCDAs::Quality_MX_qchg, 1 superclasses=[FCDA_MX_qchg], 1 attributes; efferent classes: byAttr=[Quality] +2024-09-08 15:11:38,805 [main] DEBUG Util - (2115) WG10 IEC61850 FCDA FCDAs::AnalogueValue_MX, 1 superclasses=[FCDA_MX], 1 attributes; efferent classes: byAttr=[AnalogueValue] +2024-09-08 15:11:38,805 [main] DEBUG Util - (1925) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_OR, 1 superclasses=[FCDA], 1 subclasses=[FCDA_OR_dchg], 2 attributes; efferent classes: byAttr=[FcKind, P_BOOLEAN] +2024-09-08 15:11:38,805 [main] DEBUG Util - (1926) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_OR_dchg, 1 superclasses=[FCDA_OR], 1 subclasses=[BOOLEAN_OR_dchg], 1 attributes; efferent classes: byAttr=[TrgOpKind] +2024-09-08 15:11:38,805 [main] DEBUG Util - (2125) WG10 IEC61850 FCDA FCDAs::BOOLEAN_OR_dchg, 1 superclasses=[FCDA_OR_dchg], 1 attributes; afferent classes: byAttr=[ControllableCDC];; efferent classes: byAttr=[BOOLEAN] +2024-09-08 15:11:38,805 [main] DEBUG Util - (1927) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_SE, 1 superclasses=[FCDA], 3 subclasses=[FCDA_SE_dchg, BOOLEAN_SE, Point_SE], 3 attributes, 1 associations; efferent classes: byAttr=[FcKind, P_BOOLEAN]; associated classes (bi-directional): asTarget=[MetaModel::SGCB] +2024-09-08 15:11:38,805 [main] DEBUG Util - (1928) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_SE_dchg, 1 superclasses=[FCDA_SE], 1 subclasses=[EnumFCDA_SE_dchg], 1 attributes; efferent classes: byAttr=[TrgOpKind] +2024-09-08 15:11:38,805 [main] DEBUG Util - (1908) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_SE_dchg, 1 superclasses=[FCDA_SE_dchg] +2024-09-08 15:11:38,805 [main] DEBUG Util - (2126) WG10 IEC61850 FCDA FCDAs::BOOLEAN_SE, 1 superclasses=[FCDA_SE], 1 attributes; efferent classes: byAttr=[BOOLEAN] +2024-09-08 15:11:38,805 [main] DEBUG Util - (2187) WG10 IEC61850 FCDA FCDAs::Point_SE, 1 superclasses=[FCDA_SE], 1 attributes; efferent classes: byAttr=[Point] +2024-09-08 15:11:38,805 [main] DEBUG Util - (1929) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_SG, 1 superclasses=[FCDA], 3 subclasses=[FCDA_SG_dchg, BOOLEAN_SG, Point_SG], 2 attributes, 1 associations; efferent classes: byAttr=[FcKind, P_BOOLEAN]; associated classes (bi-directional): asTarget=[MetaModel::SGCB] +2024-09-08 15:11:38,805 [main] DEBUG Util - (1930) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_SG_dchg, 1 superclasses=[FCDA_SG], 1 subclasses=[EnumFCDA_SG_dchg], 1 attributes; efferent classes: byAttr=[TrgOpKind] +2024-09-08 15:11:38,805 [main] DEBUG Util - (1910) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_SG_dchg, 1 superclasses=[FCDA_SG_dchg] +2024-09-08 15:11:38,805 [main] DEBUG Util - (2127) WG10 IEC61850 FCDA FCDAs::BOOLEAN_SG, 1 superclasses=[FCDA_SG], 1 attributes; efferent classes: byAttr=[BOOLEAN] +2024-09-08 15:11:38,805 [main] DEBUG Util - (2188) WG10 IEC61850 FCDA FCDAs::Point_SG, 1 superclasses=[FCDA_SG], 1 attributes; efferent classes: byAttr=[Point] +2024-09-08 15:11:38,805 [main] DEBUG Util - (1931) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_SP, 1 superclasses=[FCDA], 2 subclasses=[FCDA_SP_dchg, Point_SP], 1 attributes; efferent classes: byAttr=[FcKind] +2024-09-08 15:11:38,805 [main] DEBUG Util - (1932) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_SP_dchg, 1 superclasses=[FCDA_SP], 1 subclasses=[BOOLEAN_SP_dchg], 1 attributes; efferent classes: byAttr=[TrgOpKind] +2024-09-08 15:11:38,806 [main] DEBUG Util - (2128) WG10 IEC61850 FCDA FCDAs::BOOLEAN_SP_dchg, 1 superclasses=[FCDA_SP_dchg], 1 attributes; efferent classes: byAttr=[BOOLEAN] +2024-09-08 15:11:38,806 [main] DEBUG Util - (2189) WG10 IEC61850 FCDA FCDAs::Point_SP, 1 superclasses=[FCDA_SP], 1 attributes; efferent classes: byAttr=[Point] +2024-09-08 15:11:38,806 [main] DEBUG Util - (1933) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_ST, 1 superclasses=[FCDA], 6 subclasses=[EnumFCDA_ST, FCDA_ST_dchg, FCDA_ST_dchg_dupd, FCDA_ST_dupd, FCDA_ST_qchg, TimeStamp_ST], 2 attributes; efferent classes: byAttr=[FcKind, P_BOOLEAN] +2024-09-08 15:11:38,806 [main] DEBUG Util - (1912) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_ST, 1 superclasses=[FCDA_ST] +2024-09-08 15:11:38,806 [main] DEBUG Util - (1934) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_ST_dchg, 1 superclasses=[FCDA_ST], 3 subclasses=[EnumFCDA_ST_dchg, BOOLEAN_ST_dchg, INT32_ST_dchg], 1 attributes; efferent classes: byAttr=[TrgOpKind] +2024-09-08 15:11:38,806 [main] DEBUG Util - (1913) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_ST_dchg, 1 superclasses=[FCDA_ST_dchg], 3 subclasses=[PackedEnumFCDA_SP_dchg, EnumDA_ST_dchg, PhaseFaultDirection_ST_dchg] +2024-09-08 15:11:38,806 [main] DEBUG Util - (1939) WG10 IEC61850 abstract class coded enumeration FCDA MetaModelFCsAndTrgOps::PackedEnumFCDA_SP_dchg, 1 superclasses=[EnumFCDA_ST_dchg], 1 subclasses=[DpStatus_ST_dchg] +2024-09-08 15:11:38,806 [main] DEBUG Util - (2142) WG10 IEC61850 coded enumeration FCDA FCDAs::DpStatus_ST_dchg, 1 superclasses=[PackedEnumFCDA_SP_dchg], 1 attributes; afferent classes: byAttr=[DPS];; efferent classes: byAttr=[DpStatus] +2024-09-08 15:11:38,806 [main] DEBUG Util - (2148) WG10 IEC61850 abstract class enumeration FCDA FCDAs::EnumDA_ST_dchg, 1 superclasses=[EnumFCDA_ST_dchg], 1 attributes; afferent classes: byAttr=[ENC];; efferent classes: byAttr=[EnumDA] +2024-09-08 15:11:38,806 [main] DEBUG Util - (2184) WG10 IEC61850 enumeration FCDA FCDAs::PhaseFaultDirection_ST_dchg, 1 superclasses=[EnumFCDA_ST_dchg], 1 attributes; efferent classes: byAttr=[PhaseFaultDirection] +2024-09-08 15:11:38,806 [main] DEBUG Util - (2129) WG10 IEC61850 FCDA FCDAs::BOOLEAN_ST_dchg, 1 superclasses=[FCDA_ST_dchg], 1 attributes; afferent classes: byAttr=[ACD];; efferent classes: byAttr=[BOOLEAN] +2024-09-08 15:11:38,806 [main] DEBUG Util - (2171) WG10 IEC61850 FCDA FCDAs::INT32_ST_dchg, 1 superclasses=[FCDA_ST_dchg], 1 attributes; efferent classes: byAttr=[INT32] +2024-09-08 15:11:38,806 [main] DEBUG Util - (1935) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_ST_dchg_dupd, 1 superclasses=[FCDA_ST], 2 subclasses=[EnumFCDA_ST_dchg_dupd, INT32_ST_dchg_dupd], 1 attributes; efferent classes: byAttr=[TrgOpKind] +2024-09-08 15:11:38,806 [main] DEBUG Util - (1914) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_ST_dchg_dupd, 1 superclasses=[FCDA_ST_dchg_dupd], 1 subclasses=[EnumDA_ST_dchg_dupd] +2024-09-08 15:11:38,806 [main] DEBUG Util - (2149) WG10 IEC61850 abstract class enumeration FCDA FCDAs::EnumDA_ST_dchg_dupd, 1 superclasses=[EnumFCDA_ST_dchg_dupd], 1 attributes; afferent classes: byAttr=[ENS, EXY];; efferent classes: byAttr=[EnumDA] +2024-09-08 15:11:38,806 [main] DEBUG Util - (2172) WG10 IEC61850 FCDA FCDAs::INT32_ST_dchg_dupd, 1 superclasses=[FCDA_ST_dchg_dupd], 1 attributes; afferent classes: byAttr=[HST];; efferent classes: byAttr=[INT32] +2024-09-08 15:11:38,806 [main] DEBUG Util - (1936) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_ST_dupd, 1 superclasses=[FCDA_ST], 1 attributes; efferent classes: byAttr=[TrgOpKind] +2024-09-08 15:11:38,806 [main] DEBUG Util - (1937) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_ST_qchg, 1 superclasses=[FCDA_ST], 1 subclasses=[Quality_ST_qchg], 1 attributes; efferent classes: byAttr=[TrgOpKind] +2024-09-08 15:11:38,806 [main] DEBUG Util - (2192) WG10 IEC61850 FCDA FCDAs::Quality_ST_qchg, 1 superclasses=[FCDA_ST_qchg], 1 attributes; afferent classes: byAttr=[DPS, ENS, EXY];; efferent classes: byAttr=[Quality] +2024-09-08 15:11:38,806 [main] DEBUG Util - (2206) WG10 IEC61850 FCDA FCDAs::TimeStamp_ST, 1 superclasses=[FCDA_ST], 1 attributes; afferent classes: byAttr=[DPS, ENS, EXY];; efferent classes: byAttr=[TimeStamp] +2024-09-08 15:11:38,806 [main] DEBUG Util - (1938) WG10 IEC61850 abstract class FCDA MetaModelFCsAndTrgOps::FCDA_SV, 1 superclasses=[FCDA], 3 subclasses=[EnumFCDA_SV, BOOLEAN_SV, Quality_SV], 1 attributes; efferent classes: byAttr=[FcKind] +2024-09-08 15:11:38,806 [main] DEBUG Util - (1915) WG10 IEC61850 abstract class enumeration FCDA MetaModelFCsAndTrgOps::EnumFCDA_SV, 1 superclasses=[FCDA_SV], 2 subclasses=[PackedEnumFCDA_SV, EnumDA_SV] +2024-09-08 15:11:38,806 [main] DEBUG Util - (1940) WG10 IEC61850 abstract class coded enumeration FCDA MetaModelFCsAndTrgOps::PackedEnumFCDA_SV, 1 superclasses=[EnumFCDA_SV], 1 subclasses=[DpStatus_SV] +2024-09-08 15:11:38,806 [main] DEBUG Util - (2143) WG10 IEC61850 coded enumeration FCDA FCDAs::DpStatus_SV, 1 superclasses=[PackedEnumFCDA_SV], 1 attributes; afferent classes: byAttr=[DPS];; efferent classes: byAttr=[DpStatus] +2024-09-08 15:11:38,806 [main] DEBUG Util - (2150) WG10 IEC61850 abstract class enumeration FCDA FCDAs::EnumDA_SV, 1 superclasses=[EnumFCDA_SV], 1 attributes; afferent classes: byAttr=[ENS, ENC];; efferent classes: byAttr=[EnumDA] +2024-09-08 15:11:38,806 [main] DEBUG Util - (2130) WG10 IEC61850 FCDA FCDAs::BOOLEAN_SV, 1 superclasses=[FCDA_SV], 1 attributes; afferent classes: byAttr=[SubstitutionCDC];; efferent classes: byAttr=[BOOLEAN] +2024-09-08 15:11:38,806 [main] DEBUG Util - (2193) WG10 IEC61850 FCDA FCDAs::Quality_SV, 1 superclasses=[FCDA_SV], 1 attributes; afferent classes: byAttr=[SubstitutionCDC];; efferent classes: byAttr=[Quality] +2024-09-08 15:11:38,806 [main] DEBUG Util - (1852) WG10 IEC61850 abstract class other 61850 MetaModel::DA, 1 superclasses=[NamedIEC61850Object], 2 subclasses=[PrimitiveDA, ComposedDA], 1 attributes, 2 associations; efferent classes: byAttr=[FCDAReference]; associated classes (bi-directional): asTarget=[MetaModel::FCDA, MetaModel::ComposedDA] +2024-09-08 15:11:38,806 [main] DEBUG Util - (1853) WG10 IEC61850 abstract class primitive DA MetaModel::PrimitiveDA, 1 superclasses=[DA], 11 subclasses=[PHYCOMADDR, ObjectReference, VISIBLE_STRING255, UNICODE_STRING255, INT32U, INT32, INT16U, FLOAT32, BOOLEAN, PackedPrimitiveDA, EnumDA], 1 attributes, 1 associations; efferent classes: byAttr=[AttrValue]; associated classes (bi-directional): asTarget=[MetaModel::PrimitiveCDC] +2024-09-08 15:11:38,806 [main] DEBUG Util - (1755) WG10 IEC61850 primitive DA BasicDAs::PHYCOMADDR, 1 superclasses=[PrimitiveDA], 1 attributes; efferent classes: byAttr=[P_PHYCOMADDR] +2024-09-08 15:11:38,806 [main] DEBUG Util - (1754) WG10 IEC61850 primitive DA BasicDAs::ObjectReference, 1 superclasses=[PrimitiveDA], 1 attributes; efferent classes: byAttr=[P_ObjectReference] +2024-09-08 15:11:38,806 [main] DEBUG Util - (1752) WG10 IEC61850 primitive DA BasicDAs::VISIBLE_STRING255, 1 superclasses=[PrimitiveDA], 1 attributes; afferent classes: byAttr=[VISIBLE_STRING255_EX];; efferent classes: byAttr=[P_VISIBLE_STRING255] +2024-09-08 15:11:38,807 [main] DEBUG Util - (1751) WG10 IEC61850 primitive DA BasicDAs::UNICODE_STRING255, 1 superclasses=[PrimitiveDA], 1 attributes; afferent classes: byAttr=[UNICODE_STRING255_DC];; efferent classes: byAttr=[P_UNICODE_STRING255] +2024-09-08 15:11:38,807 [main] DEBUG Util - (1746) WG10 IEC61850 primitive DA BasicDAs::INT32U, 1 superclasses=[PrimitiveDA], 1 attributes; afferent classes: byAttr=[RangeConfig, INT32U_CF_dchg];; efferent classes: byAttr=[P_INT32U] +2024-09-08 15:11:38,807 [main] DEBUG Util - (1745) WG10 IEC61850 primitive DA BasicDAs::INT32, 1 superclasses=[PrimitiveDA], 1 attributes; afferent classes: byAttr=[AnalogueValue, INT32_CF_dchg, INT32_ST_dchg, INT32_ST_dchg_dupd];; efferent classes: byAttr=[P_INT32] +2024-09-08 15:11:38,807 [main] DEBUG Util - (1743) WG10 IEC61850 primitive DA BasicDAs::INT16U, 1 superclasses=[PrimitiveDA], 1 attributes; afferent classes: byAttr=[INT16U_CF, INT16U_CF_dchg];; efferent classes: byAttr=[P_INT16U] +2024-09-08 15:11:38,807 [main] DEBUG Util - (1741) WG10 IEC61850 primitive DA BasicDAs::FLOAT32, 1 superclasses=[PrimitiveDA], 1 attributes; afferent classes: byAttr=[AnalogueValue, Point];; efferent classes: byAttr=[P_FLOAT32] +2024-09-08 15:11:38,807 [main] DEBUG Util - (1740) WG10 IEC61850 primitive DA BasicDAs::BOOLEAN, 1 superclasses=[PrimitiveDA], 1 attributes; afferent classes: byAttr=[BOOLEAN_BL, BOOLEAN_CF_dchg, BOOLEAN_MX_dchg, BOOLEAN_OR_dchg, BOOLEAN_SE, BOOLEAN_SG, BOOLEAN_SP_dchg, BOOLEAN_ST_dchg, BOOLEAN_SV];; efferent classes: byAttr=[P_BOOLEAN] +2024-09-08 15:11:38,807 [main] DEBUG Util - (1854) WG10 IEC61850 abstract class packed list DA MetaModel::PackedPrimitiveDA, 1 superclasses=[PrimitiveDA], 3 subclasses=[TriggerConditions, TimeStamp, Quality] +2024-09-08 15:11:38,807 [main] DEBUG Util - (1757) WG10 IEC61850 packed list DA BasicDAs::TriggerConditions, 1 superclasses=[PackedPrimitiveDA], 1 attributes, 1 diagrams; efferent classes: byAttr=[P_TriggerConditions] +2024-09-08 15:11:38,807 [main] DEBUG Util - (1756) WG10 IEC61850 packed list DA BasicDAs::TimeStamp, 1 superclasses=[PackedPrimitiveDA], 1 attributes; afferent classes: byAttr=[TimeStamp_ST];; efferent classes: byAttr=[P_TimeStamp] +2024-09-08 15:11:38,807 [main] DEBUG Util - (2080) WG10 IEC61850 packed list DA ConstructedDAs::Quality, 1 superclasses=[PackedPrimitiveDA], 5 attributes, 1 diagrams; afferent classes: byAttr=[Quality_MX_qchg, Quality_ST_qchg, Quality_SV];; efferent classes: byAttr=[ValidityKind, DetailQual, SourceKind, P_BOOLEAN] +2024-09-08 15:11:38,807 [main] DEBUG Util - (1855) WG10 IEC61850 abstract class enumeration DA MetaModel::EnumDA, 1 superclasses=[PrimitiveDA], 11 subclasses=[PackedEnumDA, SIUnit, Multiplier, PhaseFaultDirection, PhaseAngleReference, BehaviourMode, CalcMethod, Health, Material, Material_control, Other]; afferent classes: byAttr=[EnumDA_CF_dchg, EnumDA_ST_dchg, EnumDA_ST_dchg_dupd, EnumDA_SV, ENC]; +2024-09-08 15:11:38,807 [main] DEBUG Util - (1856) WG10 IEC61850 abstract class coded enumeration DA MetaModel::PackedEnumDA, 1 superclasses=[EnumDA], 2 subclasses=[BsControl, DpStatus] +2024-09-08 15:11:38,807 [main] DEBUG Util - (1760) WG10 IEC61850 coded enumeration DA BasicDAs::BsControl, 1 superclasses=[PackedEnumDA], 1 attributes; afferent classes: byAttr=[BAC];; efferent classes: byAttr=[BsControlKind] +2024-09-08 15:11:38,807 [main] DEBUG Util - (1759) WG10 IEC61850 coded enumeration DA BasicDAs::DpStatus, 1 superclasses=[PackedEnumDA], 1 attributes; afferent classes: byAttr=[DpStatus_ST_dchg, DpStatus_SV];; efferent classes: byAttr=[DpStatusKind] +2024-09-08 15:11:38,807 [main] DEBUG Util - (2072) WG10 IEC61850 enumeration DA ImplicitDAs::SIUnit, 1 superclasses=[EnumDA], 1 attributes; afferent classes: byAttr=[Unit];; efferent classes: byAttr=[SIUnitKind] +2024-09-08 15:11:38,807 [main] DEBUG Util - (2061) WG10 IEC61850 enumeration DA ImplicitDAs::Multiplier, 1 superclasses=[EnumDA], 1 attributes; afferent classes: byAttr=[Unit];; efferent classes: byAttr=[MultiplierKind] +2024-09-08 15:11:38,807 [main] DEBUG Util - (2066) WG10 IEC61850 enumeration DA ImplicitDAs::PhaseFaultDirection, 1 superclasses=[EnumDA], 1 attributes; afferent classes: byAttr=[PhaseFaultDirection_ST_dchg];; efferent classes: byAttr=[PhaseFaultDirectionKind] +2024-09-08 15:11:38,807 [main] DEBUG Util - (2065) WG10 IEC61850 enumeration DA ImplicitDAs::PhaseAngleReference, 1 superclasses=[EnumDA], 1 attributes; afferent classes: byAttr=[PhaseAngleReference_CF_dchg];; efferent classes: byAttr=[PhaseAngleReferenceKind] +2024-09-08 15:11:38,807 [main] DEBUG Util - (2622) WG10 IEC61850 enumeration DA DerivedDAs::BehaviourMode, 1 superclasses=[EnumDA], 1 attributes; efferent classes: byAttr=[BehaviourModeKind] +2024-09-08 15:11:38,807 [main] DEBUG Util - (2625) WG10 IEC61850 enumeration DA DerivedDAs::CalcMethod, 1 superclasses=[EnumDA], 1 attributes; efferent classes: byAttr=[CalcMethodKind] +2024-09-08 15:11:38,807 [main] DEBUG Util - (2634) WG10 IEC61850 enumeration DA DerivedDAs::Health, 1 superclasses=[EnumDA], 1 attributes; efferent classes: byAttr=[HealthKind] +2024-09-08 15:11:38,807 [main] DEBUG Util - (3055) WG17 IEC61850 enumeration DA DerivedDAs_7_420::Material, 1 superclasses=[EnumDA], 1 attributes; efferent classes: byAttr=[MaterialKind] +2024-09-08 15:11:38,807 [main] DEBUG Util - (3088) WG17 IEC61850 enumeration DA DerivedDAs_7_420::Material_control, 1 superclasses=[EnumDA], 1 attributes; efferent classes: byAttr=[MaterialTransitionKind] +2024-09-08 15:11:38,808 [main] DEBUG Util - (3056) WG17 IEC61850 enumeration DA DerivedDAs_7_420::Other, 1 superclasses=[EnumDA], 1 attributes; efferent classes: byAttr=[OtherKind] +2024-09-08 15:11:38,808 [main] DEBUG Util - (1857) WG10 IEC61850 abstract class composed DA MetaModel::ComposedDA, 1 superclasses=[DA], 4 subclasses=[AnalogueValue, RangeConfig, Unit, Point], 1 associations; associated classes (bi-directional): asSource=[MetaModel::DA] +2024-09-08 15:11:38,808 [main] DEBUG Util - (2089) WG10 IEC61850 composed DA ConstructedDAs::AnalogueValue, 1 superclasses=[ComposedDA], 2 attributes; afferent classes: byAttr=[RangeConfig, AnalogueValue_MX, AnalogueValue_MX_dchg, AnalogueValue_MX_dchg_dupd];; efferent classes: byAttr=[INT32, FLOAT32],1 constraints: class attributes constraint ConstructedDAs::AnalogueValue {AtLeastOne = [i, f]} (null) +2024-09-08 15:11:38,808 [main] DEBUG Util - (2091) WG10 IEC61850 composed DA ConstructedDAs::RangeConfig, 1 superclasses=[ComposedDA], 7 attributes, 1 diagrams; afferent classes: byAttr=[RangeConfig_CF_dchg];; efferent classes: byAttr=[AnalogueValue, INT32U] +2024-09-08 15:11:38,808 [main] DEBUG Util - (2096) WG10 IEC61850 composed DA ConstructedDAs::Unit, 1 superclasses=[ComposedDA], 2 attributes; efferent classes: byAttr=[SIUnit, Multiplier] +2024-09-08 15:11:38,808 [main] DEBUG Util - (2098) WG10 IEC61850 composed DA ConstructedDAs::Point, 1 superclasses=[ComposedDA], 3 attributes; afferent classes: byAttr=[Point_DC, Point_SE, Point_SG, Point_SP];; efferent classes: byAttr=[FLOAT32] +2024-09-08 15:11:38,808 [main] DEBUG Util - (1858) WG10 IEC61850 abstract class other 61850 MetaModel::DS, 1 superclasses=[NamedIEC61850Object], 2 subclasses=[LNOwnedDS, NonPersistentDS], 4 associations; associated classes (bi-directional): asTarget=[MetaModel::FCD, MetaModel::FCDA, MetaModel::URCB, MetaModel::USVCB] +2024-09-08 15:11:38,808 [main] DEBUG Util - (1859) WG10 IEC61850 abstract class other 61850 MetaModel::LNOwnedDS, 1 superclasses=[DS], 2 subclasses=[ConfiguredDS, PersistentDS], 1 attributes, 5 associations; efferent classes: byAttr=[LNOwnedDSReference]; associated classes (bi-directional): asTarget=[MetaModel::LN, MetaModel::MSVCB, MetaModel::LCB, MetaModel::BRCB, MetaModel::GCB] +2024-09-08 15:11:38,808 [main] DEBUG Util - (1861) WG10 IEC61850 other 61850 MetaModel::ConfiguredDS, 1 superclasses=[LNOwnedDS] +2024-09-08 15:11:38,808 [main] DEBUG Util - (1862) WG10 IEC61850 other 61850 MetaModel::PersistentDS, 1 superclasses=[LNOwnedDS], 1 attributes; efferent classes: byAttr=[P_BOOLEAN] +2024-09-08 15:11:38,808 [main] DEBUG Util - (1860) WG10 IEC61850 other 61850 MetaModel::NonPersistentDS, 1 superclasses=[DS], 2 attributes, 1 associations; efferent classes: byAttr=[P_BOOLEAN, NonPersistentDSReference]; associated classes (bi-directional): asTarget=[MetaModel::TPAA] +2024-09-08 15:11:38,808 [main] DEBUG Util - (1864) WG10 IEC61850 abstract class other 61850 MetaModel::ControlBlock, 1 superclasses=[NamedIEC61850Object], 5 subclasses=[RCB, LCB, GCB, SVCB, SGCB], 1 attributes; efferent classes: byAttr=[CBReference] +2024-09-08 15:11:38,808 [main] DEBUG Util - (1865) WG10 IEC61850 abstract class other 61850 MetaModel::RCB, 1 superclasses=[ControlBlock], 2 subclasses=[BRCB, URCB] +2024-09-08 15:11:38,808 [main] DEBUG Util - (1866) WG10 IEC61850 abstract class other 61850 MetaModel::BRCB, 1 superclasses=[RCB], 1 attributes, 2 associations; efferent classes: byAttr=[IPAddress]; associated classes (bi-directional): asTarget=[MetaModel::LN] asSource=[MetaModel::LNOwnedDS] +2024-09-08 15:11:38,808 [main] DEBUG Util - (1867) WG10 IEC61850 abstract class other 61850 MetaModel::URCB, 1 superclasses=[RCB], 1 attributes, 2 associations; efferent classes: byAttr=[IPAddress]; associated classes (bi-directional): asTarget=[MetaModel::LN] asSource=[MetaModel::DS] +2024-09-08 15:11:38,808 [main] DEBUG Util - (1868) WG10 IEC61850 other 61850 MetaModel::LCB, 1 superclasses=[ControlBlock], 3 associations; associated classes (bi-directional): asTarget=[MetaModel::LN] asSource=[MetaModel::LNOwnedDS, MetaModel::LOG] +2024-09-08 15:11:38,808 [main] DEBUG Util - (1870) WG10 IEC61850 other 61850 MetaModel::GCB, 1 superclasses=[ControlBlock], 1 attributes, 2 associations; efferent classes: byAttr=[MulticastAddress]; associated classes (bi-directional): asTarget=[MetaModel::LN0] asSource=[MetaModel::LNOwnedDS] +2024-09-08 15:11:38,808 [main] DEBUG Util - (1871) WG10 IEC61850 abstract class other 61850 MetaModel::SVCB, 1 superclasses=[ControlBlock], 2 subclasses=[MSVCB, USVCB] +2024-09-08 15:11:38,808 [main] DEBUG Util - (1872) WG10 IEC61850 abstract class other 61850 MetaModel::MSVCB, 1 superclasses=[SVCB], 1 attributes, 2 associations; efferent classes: byAttr=[MulticastAddress]; associated classes (bi-directional): asTarget=[MetaModel::LN0] asSource=[MetaModel::LNOwnedDS] +2024-09-08 15:11:38,808 [main] DEBUG Util - (1873) WG10 IEC61850 abstract class other 61850 MetaModel::USVCB, 1 superclasses=[SVCB], 1 attributes, 2 associations; efferent classes: byAttr=[IPAddress]; associated classes (bi-directional): asTarget=[MetaModel::LN0] asSource=[MetaModel::DS] +2024-09-08 15:11:38,808 [main] DEBUG Util - (1874) WG10 IEC61850 other 61850 MetaModel::SGCB, 1 superclasses=[ControlBlock], 3 associations; associated classes (bi-directional): asTarget=[MetaModel::LN0] asSource=[MetaModelFCsAndTrgOps::FCDA_SG, MetaModelFCsAndTrgOps::FCDA_SE] +2024-09-08 15:11:38,808 [main] DEBUG Util - (1869) WG10 IEC61850 other 61850 MetaModel::LOG, 1 superclasses=[NamedIEC61850Object], 1 attributes, 2 associations; efferent classes: byAttr=[LOGReference]; associated classes (bi-directional): asTarget=[MetaModel::LN, MetaModel::LCB] +2024-09-08 15:11:38,808 [main] DEBUG Util - (1838) WG10 IEC61850 other 61850 MetaModel::IED, 1 superclasses=[HierarchyIEC61850Object], 1 attributes, 1 associations; efferent classes: byAttr=[NullIEC61850]; associated classes (bi-directional): asSource=[MetaModel::SERVER] +2024-09-08 15:11:38,808 [main] DEBUG Util - (1839) WG10 IEC61850 other 61850 MetaModel::SERVER, 1 superclasses=[HierarchyIEC61850Object], 2 attributes, 5 associations; efferent classes: byAttr=[NullIEC61850, IPAddress]; associated classes (bi-directional): asTarget=[MetaModel::IED] asSource=[MetaModel::MCAA, MetaModel::FILE, MetaModel::TPAA, MetaModel::LD] +2024-09-08 15:11:38,808 [main] DEBUG Util - (1850) WG10 IEC61850 other 61850 MetaModel::FCD, 1 superclasses=[HierarchyIEC61850Object], 2 attributes, 3 associations; efferent classes: byAttr=[FCDReference, FcKind]; associated classes (bi-directional): asTarget=[MetaModel::CDC] asSource=[MetaModel::DS, MetaModel::FCDA] +2024-09-08 15:11:38,809 [main] DEBUG Util - (1877) WG10 IEC61850 other 61850 MetaModel::FILE, 1 superclasses=[HierarchyIEC61850Object], 1 attributes, 1 associations; efferent classes: byAttr=[FILEReference]; associated classes (bi-directional): asTarget=[MetaModel::SERVER] +2024-09-08 15:11:38,809 [main] DEBUG Util - (1840) WG10 IEC61850 other 61850 MetaModel::TPAA, 1 superclasses=[IEC61850Object], 3 associations; associated classes (bi-directional): asTarget=[MetaModel::SERVER] asSource=[CommonAcsiTypes::Authentication, MetaModel::NonPersistentDS] +2024-09-08 15:11:38,809 [main] DEBUG Util - (1841) WG10 IEC61850 other 61850 MetaModel::MCAA, 1 superclasses=[IEC61850Object], 2 associations; associated classes (bi-directional): asTarget=[MetaModel::SERVER] asSource=[CommonAcsiTypes::Authentication] +2024-09-08 15:11:38,809 [main] DEBUG Util - (2720) WG10 IEC61850 other 61850 DerivedCDCs::SPCTransient, 1 superclasses=[SPC]; afferent classes: byAttr=[LPHD]; +2024-09-08 15:11:38,809 [main] DEBUG Util - (3091) WG17 IEC61850 enumeration <> DOEnums_7_420::ExtBaseKind, 1 superclasses=[BaseKind], 3 enum literals +2024-09-08 15:11:38,809 [main] DEBUG Util - (1488) OTHER_CIM CIM class Ext1::Apple, 1 superclasses=[Fruit], 1 attributes, 3 associations; efferent classes: byAttr=[Integer]; associated classes (bi-directional): asTarget=[Ext1::Pear, Ext1::Pear, Ext1::Apple] asSource=[Ext1::Apple] +2024-09-08 15:11:38,809 [main] DEBUG Util - (3035) OTHER_CIM CIM class Ext1::Strawberry, 1 superclasses=[Fruit], 1 associations; associated classes (bi-directional): asTarget=[Ext1::Village] +2024-09-08 15:11:38,809 [main] DEBUG Util - (1492) OTHER_IEC61850 IEC61850 other 61850 Ext2::Dog, 1 superclasses=[Animal] +2024-09-08 15:11:38,809 [main] DEBUG Util - (1493) OTHER_IEC61850 IEC61850 other 61850 Ext2::Horse, 1 superclasses=[Animal] +2024-09-08 15:11:38,809 [main] DEBUG Util - +2024-09-08 15:11:38,809 [main] DEBUG Util - ======= 14 operations: ======== +2024-09-08 15:11:38,809 [main] DEBUG Util - (1) WG13 CIM Core::PowerSystemResource operation abstract public NullCIM[] GetWhatevers(BasePower[] multiples) throws Dummy,PSRType,Dummy2; tags={throws=Dummy,PSRType,Dummy2, dummyCimTag=on operation} +2024-09-08 15:11:38,809 [main] DEBUG Util - (2) WG13 CIM Core::PowerSystemResource operation <> public void setSomething(String name) throws Unit; tags={throws=Unit} +2024-09-08 15:11:38,809 [main] DEBUG Util - (5) WG13 CIM Core::PowerSystemResource operation <> public NullCIM bar(NullCIM par3, Float par2, NullCIM par); tags={someTag=value} +2024-09-08 15:11:38,809 [main] DEBUG Util - (4) WG13 CIM Core::PowerSystemResource operation public NullCIM foo(NullCIM par3, Float par2, NullCIM par); tags={someTag=value} +2024-09-08 15:11:38,809 [main] DEBUG Util - (3) WG13 CIM Core::VoltageLevel operation public Voltage getVoltage() +2024-09-08 15:11:38,809 [main] DEBUG Util - (7) WG10 IEC61850 AttrValues::AttrValue operation abstract public AttrValueKind getType() +2024-09-08 15:11:38,809 [main] DEBUG Util - (46) WG10 IEC61850 AttrValues::AttrDefinition operation public FCDAReference getFcdaRef() +2024-09-08 15:11:38,809 [main] DEBUG Util - (47) WG10 IEC61850 AttrValues::AttrDefinition operation public AttrValueKind getValType() +2024-09-08 15:11:38,809 [main] DEBUG Util - (48) WG10 IEC61850 AttrValues::NamedAttrValue operation public FCDAReference getFcdaRef() +2024-09-08 15:11:38,809 [main] DEBUG Util - (49) WG10 IEC61850 AttrValues::NamedAttrValue operation public AttrValue getVal() +2024-09-08 15:11:38,809 [main] DEBUG Util - (50) WG10 IEC61850 CommonAcsiTypes::Authentication operation public NullIEC61850 getPassword() +2024-09-08 15:11:38,809 [main] DEBUG Util - (51) WG10 IEC61850 CommonAcsiTypes::Authentication operation public NullIEC61850 geUserID() +2024-09-08 15:11:38,809 [main] DEBUG Util - (52) WG10 IEC61850 CommonAcsiTypes::Authentication operation public AccessView[] getViews() +2024-09-08 15:11:38,809 [main] DEBUG Util - (6) OTHER_CIM CIM Package with space::My class operation public void ope-ration(Boolean other param, ApparentPower _par) +2024-09-08 15:11:38,810 [main] INFO Util - +2024-09-08 15:11:38,810 [main] INFO Util - ======= 2 associations between CIM and nonCIM packages: ======== +2024-09-08 15:11:38,810 [main] INFO Util - (2143) OTHER_IEC61850 IEC61850 association, qname='Animal.Fruit - Fruit.Animal', endAsSrc: myEnd: OTHER_IEC61850 [0..1] Fruit.Animal; otherEnd: OTHER_IEC61850 [0..*] Animal.Fruit, endAsTgt: myEnd: OTHER_IEC61850 [0..*] Animal.Fruit; otherEnd: OTHER_IEC61850 [0..1] Fruit.Animal +2024-09-08 15:11:38,811 [main] INFO Util - (2144) OTHER_IEC61850 IEC61850 association, qname='Animal.SecondFruit - Fruit.SecondAnimal', endAsSrc: myEnd: OTHER_IEC61850 [1..*] Fruit.SecondAnimal; otherEnd: OTHER_IEC61850 [1..1] Animal.SecondFruit, endAsTgt: myEnd: OTHER_IEC61850 [1..1] Animal.SecondFruit; otherEnd: OTHER_IEC61850 [1..*] Fruit.SecondAnimal +2024-09-08 15:11:38,811 [main] INFO Util - +2024-09-08 15:11:38,812 [main] INFO Util - ======= 29 classes with constraints: ======== +2024-09-08 15:11:38,812 [main] INFO Util - (858) WG13 CIM private enumeration <> Core::BreakerConfiguration, 4 enum literals; afferent classes: byAttr=[Bay];,1 constraints: class attributes constraint Core::BreakerConfiguration {ConstraintOnEnum = [text]} +2024-09-08 15:11:38,812 [main] INFO Util - (1599) WG10 IEC61850 other 61850 GenericModel::GenFCDA, 1 attributes, 3 associations; efferent classes: byAttr=[GenFC]; associated classes (bi-directional): asTarget=[GenericModel::GenDataSet] asSource=[GenericModel::GenDataAttribute, GenericModel::GenSubDataAttribute],1 constraints: class attributes constraint GenericModel::GenFCDA {FCConstraint = [inv]} (null) +2024-09-08 15:11:38,812 [main] INFO Util - (797) WG13 CIM class <> Topology::BusNameMarker, 2 superclasses=[IdentifiedObject, InfClass2], 4 attributes, 1 associations; efferent classes: byAttr=[Integer]; associated classes (bi-directional): asSource=[Topology::ConnectivityNode],4 constraints: class attributes constraint Topology::BusNameMarker {C2_1 = [constrained1, constrained2]} class attributes constraint Topology::BusNameMarker {C2_2 = [constrained3, constrained4]} class attributes constraint Topology::BusNameMarker {C2_3 = [constrained1, constrained4]} class attributes constraint Topology::BusNameMarker {EMPTY = []} +2024-09-08 15:11:38,812 [main] INFO Util - (849) WG13 CIM class Core::PowerSystemResource, 1 superclasses=[IdentifiedObject], 2 subclasses=[ConnectivityNodeContainer, Equipment], 1 attributes, 4 operations, 1 diagrams, 3 associations; efferent classes: byAttr=[String] byOp=[NullCIM]; associated classes (bi-directional): asTarget=[Core::OperatingShare, Assets::AssetInfo] asSource=[Core::Terminal],3 constraints: class attributes constraint Core::PowerSystemResource {R.1.2.3 PSR process constraint = [Here the text for process constraint.]} class attributes constraint Core::PowerSystemResource {ruleAsInQoCDC = [text only]} class attributes constraint Core::PowerSystemResource {anotherOclRule = [{ocl]} +2024-09-08 15:11:38,812 [main] INFO Util - (794) WG13 CIM class Topology::TopologicalIsland, 1 superclasses=[IdentifiedObject], 2 attributes, 2 associations; efferent classes: byAttr=[Integer]; associated classes (bi-directional): asTarget=[Topology::TopologicalNode] asSource=[Topology::TopologicalNode],1 constraints: class attributes constraint Topology::TopologicalIsland {PICS_SUBST = [constrained5]} +2024-09-08 15:11:38,813 [main] INFO Util - (1603) WG10 IEC61850 other 61850 GenericModel::GenLN0, 1 superclasses=[GenLogicalNode], 1 associations; associated classes (bi-directional): asTarget=[GenericModel::GenLogicalDevice],1 constraints: class attributes constraint GenericModel::GenLN0 {inv: self.LNName = "LLN0" = []} (null) +2024-09-08 15:11:38,813 [main] INFO Util - (2764) WG10 IEC61850 LN LNGroupL::LPHD, 1 superclasses=[LNPHD], 3 attributes; afferent classes: byDep=[PhysicalDeviceData];; efferent classes: byAttr=[ENSHealth, SPCTransient, SPSTransient],2 constraints: class attributes constraint LNGroupL::LPHD {MF(2) = [RsstatAlmMthClc]} (MF(condID))class attributes constraint LNGroupL::LPHD {MOcond(1) = [PhyHealth]} (MOcond(condID)) +2024-09-08 15:11:38,813 [main] INFO Util - (2765) WG10 IEC61850 LN LNGroupL::LLN0, 1 superclasses=[LN0], 3 attributes; afferent classes: byDep=[LogicalDeviceData];; efferent classes: byAttr=[LPL, ENSBehaviourMode, ENSHealth],3 constraints: class attributes constraint LNGroupL::LLN0 {MOcond(1) = [NamPlt, Beh]} (MOcond(condID))class attributes constraint LNGroupL::LLN0 {MOrootLD = [Mod, Health, NamPlt]} (MOrootLD)class attributes constraint LNGroupL::LLN0 {Omulti = [InRef]} (Omulti) +2024-09-08 15:11:38,813 [main] INFO Util - (2728) WG10 IEC61850 abstract class LN <> LogicalNodes::DomainLN, 1 superclasses=[LNDOM], 6 subclasses=[StatisticsLN, EquipmentInterfaceLN, KXYZ, CALH, ProtectionLN, RDIR], 4 attributes, 1 diagrams; efferent classes: byAttr=[LPL, ENSHealth, ENCBehaviourMode, CMV],1 constraints: class attributes constraint LogicalNodes::DomainLN {MOcond(1) = [CntRs]} (MOcond(condID)) +2024-09-08 15:11:38,813 [main] INFO Util - (2735) WG10 IEC61850 abstract class LN <> LogicalNodes::StatisticsLN, 1 superclasses=[DomainLN], 2 subclasses=[GGIO, MMXU], 2 attributes; efferent classes: byAttr=[SPSTransient, ENGCalcMethod],1 constraints: class attributes constraint LogicalNodes::StatisticsLN {MF(ClcMth) = [ClcExp, ClcMod, ClcIntvPer, ClcIntvTyp]} (MF(sibling)) +2024-09-08 15:11:38,813 [main] INFO Util - (2815) WG10 IEC61850 LN LNGroupG::GGIO, 1 superclasses=[StatisticsLN], 3 attributes; afferent classes: byDep=[GenericIO];; efferent classes: byAttr=[ENSHealth, CMV, NullIEC61850],1 constraints: class attributes constraint LNGroupG::GGIO {Omulti = [AnIn, AnOut, DPCSO]} (Omulti) +2024-09-08 15:11:38,813 [main] INFO Util - (2856) WG10 IEC61850 LN LNGroupM::MMXU, 1 superclasses=[StatisticsLN], 3 attributes; afferent classes: byDep=[ThreePhaseMeasurement];; efferent classes: byAttr=[HWYE, CMV, HST],1 constraints: class attributes constraint LNGroupM::MMXU {MO(1) = [TotW]} (MOcond(condID)) +2024-09-08 15:11:38,814 [main] INFO Util - (3021) WG10 IEC61850 LN LNGroupZ::ZAXN, 1 superclasses=[EquipmentInterfaceLN], 5 attributes; afferent classes: byDep=[AuxiliaryNetwork];; efferent classes: byAttr=[CMV, NullIEC61850, ENSMaterial, ENCMaterial, ENSOther],2 constraints: class attributes constraint LNGroupZ::ZAXN {MOcond(condID) = [Vol]} (MOcond(condID))class attributes constraint LNGroupZ::ZAXN {AtLeastOne(n) = [Amp]} (AtLeastOne(n)) +2024-09-08 15:11:38,814 [main] INFO Util - (3030) WG10 IEC61850 LN LNGroupL::KXYZ, 1 superclasses=[DomainLN], 4 attributes; efferent classes: byAttr=[CMV, ENS, ENSEnumDA],1 constraints: class attributes constraint LNGroupL::KXYZ {MOcond(2) = [TotW]} (MOcond(condID)) +2024-09-08 15:11:38,814 [main] INFO Util - (2788) WG10 IEC61850 LN LNGroupC::CALH, 1 superclasses=[DomainLN], 3 attributes; afferent classes: byDep=[AlarmHandler];; efferent classes: byAttr=[DPS, EXYBehaviourMode],2 constraints: class attributes constraint LNGroupC::CALH {AtLeastOne(1) = [GrAlm, GrWrn, GrInd]} (AtLeastOne(n))class attributes constraint LNGroupC::CALH {AtLeastOne(2) = [CntRs]} (AtLeastOne(n)) +2024-09-08 15:11:38,814 [main] INFO Util - (2881) WG10 IEC61850 LN LNGroupP::PDIF, 1 superclasses=[ProtectionLN], 2 attributes; afferent classes: byDep=[BusbarProt, LineDifferentialProt];; efferent classes: byAttr=[ACD, ACTTransient],2 constraints: class attributes constraint LNGroupP::PDIF {AtMostOne = [LoSet, HiSet]} (AtMostOne)class attributes constraint LNGroupP::PDIF {OmultiRange(33, 48) = [Str]} (OmultiRange(min, max)) +2024-09-08 15:11:38,815 [main] INFO Util - (2234) WG10 IEC61850 abstract class primitive CDC CommonDataClasses::BasePrimitiveCDC, 1 superclasses=[PrimitiveCDC], 7 subclasses=[CST, SubstitutionCDC, EXY, ACD, HST, ENG, LPL], 2 attributes; efferent classes: byAttr=[UNICODE_STRING255_DC, VISIBLE_STRING255_EX],2 constraints: class attributes constraint CommonDataClasses::BasePrimitiveCDC {MOcdcNs = [cdcNs, cdcName]} (MOcdcNs)class attributes constraint CommonDataClasses::BasePrimitiveCDC {MOdataNs = [dataNs]} (MOdataNs) +2024-09-08 15:11:38,815 [main] INFO Util - (2236) WG10 IEC61850 abstract class primitive CDC CommonDataClasses::SubstitutionCDC, 1 superclasses=[BasePrimitiveCDC], 4 subclasses=[DPS, ENS, CMV, ControllableCDC], 3 attributes, 1 diagrams; efferent classes: byAttr=[BOOLEAN_SV, Quality_SV, BOOLEAN_BL],1 constraints: class attributes constraint CommonDataClasses::SubstitutionCDC {MFsubst = [subEna, subQ, subID]} (MFsubst) +2024-09-08 15:11:38,815 [main] INFO Util - (2248) WG10 IEC61850 primitive CDC CDCStatusInfo::DPS, 1 superclasses=[SubstitutionCDC], 4 attributes; afferent classes: byAttr=[CALH];; efferent classes: byAttr=[DpStatus_ST_dchg, Quality_ST_qchg, TimeStamp_ST, DpStatus_SV],1 constraints: class attributes constraint CDCStatusInfo::DPS {MFsubst = [subVal]} (MFsubst) +2024-09-08 15:11:38,815 [main] INFO Util - (2250) WG10 IEC61850 abstract class enumeration CDC CDCStatusInfo::ENS, 1 superclasses=[SubstitutionCDC], 5 subclasses=[ENSBehaviourMode, ENSHealth, ENSEnumDA, ENSMaterial, ENSOther], 4 attributes; afferent classes: byAttr=[KXYZ];; efferent classes: byAttr=[EnumDA_ST_dchg_dupd, Quality_ST_qchg, TimeStamp_ST, EnumDA_SV],1 constraints: class attributes constraint CDCStatusInfo::ENS {MFsubst = [subVal]} (MFsubst) +2024-09-08 15:11:38,815 [main] INFO Util - (2266) WG10 IEC61850 primitive CDC <> CDCAnalogueInfo::CMV, 1 superclasses=[SubstitutionCDC], 4 attributes; afferent classes: byAttr=[HWYE, DomainLN, KXYZ, GGIO, MMXU, ZAXN];; efferent classes: byAttr=[NullIEC61850, RangeConfig_CF_dchg],5 constraints: class attributes constraint CDCAnalogueInfo::CMV {MF(range) = [rangeC]} (MF(sibling))class attributes constraint CDCAnalogueInfo::CMV {MF(rangeAng) = [rangeAngC]} (MF(sibling))class attributes constraint CDCAnalogueInfo::CMV {MFscaledAngV = [angSVC]} (MFscaledAngV)class attributes constraint CDCAnalogueInfo::CMV {MFscaledMagV = [magSVC]} (MFscaledMagV)class attributes constraint CDCAnalogueInfo::CMV {MFsubst = [subCVal]} (MFsubst) +2024-09-08 15:11:38,815 [main] INFO Util - (2283) WG10 IEC61850 abstract class enumeration CDC CDCControl::ENC, 1 superclasses=[ControllableCDC], 2 subclasses=[ENCBehaviourMode, ENCMaterial], 3 attributes; efferent classes: byAttr=[EnumDA_ST_dchg, EnumDA_SV, EnumDA],1 constraints: class attributes constraint CDCControl::ENC {MFsubst = [subVal]} (MFsubst) +2024-09-08 15:11:38,815 [main] INFO Util - (2287) WG10 IEC61850 primitive CDC <> CDCControl::BAC, 1 superclasses=[ControllableCDC], 3 attributes; efferent classes: byAttr=[AnalogueValue_MX_dchg, NullIEC61850, BsControl],3 constraints: class attributes constraint CDCControl::BAC {AllOrNonePerGroup(1) = [mxVal, q, t]} (AllOrNonePerGroup(n))class attributes constraint CDCControl::BAC {MFscaledAV = [sVC]} (MFscaledAV)class attributes constraint CDCControl::BAC {MFsubst = [subVal]} (MFsubst) +2024-09-08 15:11:38,815 [main] INFO Util - (2252) WG10 IEC61850 primitive CDC CDCStatusInfo::ACD, 1 superclasses=[BasePrimitiveCDC], 3 attributes; afferent classes: byAttr=[PDIF, PDIS, RDIR];; efferent classes: byAttr=[NullIEC61850, BOOLEAN_ST_dchg],4 constraints: class attributes constraint CDCStatusInfo::ACD {AllOrNonePerGroup(1) = [phsA, dirPhsA]} (AllOrNonePerGroup(n))class attributes constraint CDCStatusInfo::ACD {AllOrNonePerGroup(2) = [phsB, dirPhsB]} (AllOrNonePerGroup(n))class attributes constraint CDCStatusInfo::ACD {AllOrNonePerGroup(3) = [phsC, dirPhsC]} (AllOrNonePerGroup(n))class attributes constraint CDCStatusInfo::ACD {AllOrNonePerGroup(4) = [neut, dirNeut]} (AllOrNonePerGroup(n)) +2024-09-08 15:11:38,816 [main] INFO Util - (2295) WG10 IEC61850 abstract class enumeration CDC CDCStatusSet::ENG, 1 superclasses=[BasePrimitiveCDC], 1 subclasses=[ENGCalcMethod], 3 attributes; efferent classes: byAttr=[NullIEC61850],2 constraints: class attributes constraint CDCStatusSet::ENG {MFnsg = [setVal]} (MFnsg)class attributes constraint CDCStatusSet::ENG {MFsg = [_setVal, __setVal]} (MFsg) +2024-09-08 15:11:38,816 [main] INFO Util - (2314) WG10 IEC61850 primitive CDC CDCDescription::LPL, 1 superclasses=[BasePrimitiveCDC], 2 attributes; afferent classes: byAttr=[DomainLN, LLN0];; efferent classes: byAttr=[VISIBLE_STRING255_EX],3 constraints: class attributes constraint CDCDescription::LPL {MFln0 = [ldNs]} (MFln0)class attributes constraint CDCDescription::LPL {MOln0 = [configRev]} (MOln0)class attributes constraint CDCDescription::LPL {MOlnNs = [lnNs]} (MOlnNs) +2024-09-08 15:11:38,816 [main] INFO Util - (2235) WG10 IEC61850 abstract class composed CDC CommonDataClasses::BaseComposedCDC, 1 superclasses=[ComposedCDC], 1 subclasses=[HarmonicMeasurandCDC], 2 attributes; efferent classes: byAttr=[UNICODE_STRING255_DC, VISIBLE_STRING255_EX],2 constraints: class attributes constraint CommonDataClasses::BaseComposedCDC {MOcdcNs = [cdcNs, cdcName]} (MOcdcNs)class attributes constraint CommonDataClasses::BaseComposedCDC {MOdataNs = [dataNs]} (MOdataNs) +2024-09-08 15:11:38,816 [main] INFO Util - (2263) WG10 IEC61850 abstract class composed CDC <> CDCAnalogueInfo::HarmonicMeasurandCDC, 1 superclasses=[BaseComposedCDC], 1 subclasses=[HWYE], 2 attributes; efferent classes: byAttr=[INT16U_CF_dchg, INT32U_CF_dchg],1 constraints: class attributes constraint CDCAnalogueInfo::HarmonicMeasurandCDC {MFrms = [rmsCyc]} (MFrms) +2024-09-08 15:11:38,816 [main] INFO Util - (2089) WG10 IEC61850 composed DA ConstructedDAs::AnalogueValue, 1 superclasses=[ComposedDA], 2 attributes; afferent classes: byAttr=[RangeConfig, AnalogueValue_MX, AnalogueValue_MX_dchg, AnalogueValue_MX_dchg_dupd];; efferent classes: byAttr=[INT32, FLOAT32],1 constraints: class attributes constraint ConstructedDAs::AnalogueValue {AtLeastOne = [i, f]} (null) +2024-09-08 15:11:38,817 [main] INFO Util - +2024-09-08 15:11:38,817 [main] INFO Util - ======= 46 attributes with constraints: ======== +2024-09-08 15:11:38,818 [main] INFO Util - (2073) WG13 CIM literal <> Core::BreakerConfiguration.singleBreaker +2024-09-08 15:11:38,818 [main] INFO Util - (2109) WG13 CIM [0..1] CIMDatatype attribute Core::OperatingShare.percentage: Domain::PerCent +2024-09-08 15:11:38,818 [main] INFO Util - (3250) WG13 CIM [0..1] Primitive attribute Topology::BusNameMarker.constrained1: Domain::Integer, presence conditions=[C2_1, C2_3], array bounds=0...count+1 +2024-09-08 15:11:38,818 [main] INFO Util - (3251) WG13 CIM [0..1] Primitive attribute Topology::BusNameMarker.constrained2: Domain::Integer, presence conditions=[C2_1] +2024-09-08 15:11:38,818 [main] INFO Util - (3252) WG13 CIM [0..1] Primitive attribute Topology::BusNameMarker.constrained3: Domain::Integer, presence conditions=[C2_2] +2024-09-08 15:11:38,818 [main] INFO Util - (3253) WG13 CIM [0..1] Primitive attribute Topology::BusNameMarker.constrained4: Domain::Integer, presence conditions=[C2_2, C2_3] +2024-09-08 15:11:38,818 [main] INFO Util - (3254) WG13 CIM [0..1] Primitive attribute Topology::TopologicalIsland.constrained5: Domain::Integer, presence conditions=[PICS_SUBST] +2024-09-08 15:11:38,819 [main] INFO Util - (4108) WG10 IEC61850 [0..1] PrimitiveDA attribute ConstructedDAs::AnalogueValue.i: BasicDAs::INT32, presence conditions=[AtLeastOne] +2024-09-08 15:11:38,819 [main] INFO Util - (4109) WG10 IEC61850 [0..1] PrimitiveDA attribute ConstructedDAs::AnalogueValue.f: BasicDAs::FLOAT32, presence conditions=[AtLeastOne] +2024-09-08 15:11:38,819 [main] INFO Util - (4260) WG10 IEC61850 [0..1] FCDA attribute CommonDataClasses::BasePrimitiveCDC.cdcNs: FCDAs::VISIBLE_STRING255_EX, presence conditions=[MOcdcNs] +2024-09-08 15:11:38,819 [main] INFO Util - (4265) WG10 IEC61850 [0..1] FCDA attribute CommonDataClasses::BaseComposedCDC.cdcNs: FCDAs::VISIBLE_STRING255_EX, presence conditions=[MOcdcNs] +2024-09-08 15:11:38,819 [main] INFO Util - (4268) WG10 IEC61850 [0..1] FCDA attribute CommonDataClasses::SubstitutionCDC.subEna: FCDAs::BOOLEAN_SV, presence conditions=[MFsubst] +2024-09-08 15:11:38,819 [main] INFO Util - (4269) WG10 IEC61850 [0..1] FCDA attribute CommonDataClasses::SubstitutionCDC.subQ: FCDAs::Quality_SV, presence conditions=[MFsubst] +2024-09-08 15:11:38,819 [main] INFO Util - (4279) WG10 IEC61850 [0..1] PackedEnumFCDA attribute CDCStatusInfo::DPS.subVal: FCDAs::DpStatus_SV, presence conditions=[MFsubst], tags={moveAfter=wrongsubEna, secondTagName=secondTagValue} +2024-09-08 15:11:38,819 [main] INFO Util - (4288) WG10 IEC61850 [0..1] EnumFCDA attribute CDCStatusInfo::ENS.subVal: FCDAs::EnumDA_SV, presence conditions=[MFsubst], tags={moveAfter=subEna} +2024-09-08 15:11:38,819 [main] INFO Util - (4302) WG10 IEC61850 [0..1] FCDA attribute CDCStatusInfo::ACD.phsA: FCDAs::BOOLEAN_ST_dchg, presence conditions=[AllOrNonePerGroup(1)] +2024-09-08 15:11:38,819 [main] INFO Util - (4304) WG10 IEC61850 [0..1] FCDA attribute CDCStatusInfo::ACD.phsB: FCDAs::BOOLEAN_ST_dchg, presence conditions=[AllOrNonePerGroup(2)] +2024-09-08 15:11:38,820 [main] INFO Util - (4328) WG10 IEC61850 [1..*] FCDA attribute CDCStatusInfo::HST.hstVal: FCDAs::INT32_ST_dchg_dupd, array bounds=...maxPts-1 +2024-09-08 15:11:38,820 [main] INFO Util - (4369) WG10 IEC61850 [0..1] attribute CDCAnalogueInfo::CMV.subCVal: NullIEC61850::NullIEC61850, presence conditions=[MFsubst], tags={moveAfter=subEna} +2024-09-08 15:11:38,820 [main] INFO Util - (4374) WG10 IEC61850 [0..1] FCDA attribute CDCAnalogueInfo::CMV.rangeC: FCDAs::RangeConfig_CF_dchg, presence conditions=[MF(range)] +2024-09-08 15:11:38,820 [main] INFO Util - (4375) WG10 IEC61850 [0..1] FCDA attribute CDCAnalogueInfo::CMV.rangeAngC: FCDAs::RangeConfig_CF_dchg, presence conditions=[MF(rangeAng)] +2024-09-08 15:11:38,820 [main] INFO Util - (4405) WG10 IEC61850 [1..*] sub-data object CDCAnalogueInfo::HWYE.phsAHar: CDCAnalogueInfo::CMV, array bounds=0...numHar +2024-09-08 15:11:38,820 [main] INFO Util - (4467) WG10 IEC61850 [0..1] EnumFCDA attribute CDCControl::ENC.subVal: FCDAs::EnumDA_SV, presence conditions=[MFsubst], tags={moveAfter=subEna} +2024-09-08 15:11:38,820 [main] INFO Util - (4522) WG10 IEC61850 [0..1] FCDA attribute CDCControl::BAC.mxVal: FCDAs::AnalogueValue_MX_dchg, presence conditions=[AllOrNonePerGroup(1)] +2024-09-08 15:11:38,820 [main] INFO Util - (4526) WG10 IEC61850 [0..1] attribute CDCControl::BAC.subVal: NullIEC61850::NullIEC61850, presence conditions=[MFsubst], tags={moveAfter=subEna} +2024-09-08 15:11:38,820 [main] INFO Util - (4549) WG10 IEC61850 [0..1] attribute CDCStatusSet::ENG.setVal: NullIEC61850::NullIEC61850, presence conditions=[MFnsg] +2024-09-08 15:11:38,820 [main] INFO Util - (4550) WG10 IEC61850 [0..1] attribute CDCStatusSet::ENG._setVal: NullIEC61850::NullIEC61850, presence conditions=[MFsg] +2024-09-08 15:11:38,820 [main] INFO Util - (4551) WG10 IEC61850 [0..1] attribute CDCStatusSet::ENG.__setVal: NullIEC61850::NullIEC61850, presence conditions=[MFsg] +2024-09-08 15:11:38,820 [main] INFO Util - (4639) WG10 IEC61850 [0..1] FCDA attribute CDCDescription::LPL.ldNs: FCDAs::VISIBLE_STRING255_EX, presence conditions=[MFln0] +2024-09-08 15:11:38,820 [main] INFO Util - (4640) WG10 IEC61850 [0..1] FCDA attribute CDCDescription::LPL.lnNs: FCDAs::VISIBLE_STRING255_EX, presence conditions=[MOlnNs] +2024-09-08 15:11:38,821 [main] INFO Util - (6644) WG10 IEC61850 [0..1] data object LogicalNodes::DomainLN.CntRs: CDCAnalogueInfo::CMV, presence conditions=[MOcond(1)] +2024-09-08 15:11:38,821 [main] INFO Util - (5411) WG10 IEC61850 [0..1] attribute LogicalNodes::StatisticsLN.ClcExp: DerivedCDCs::SPSTransient, presence conditions=[MF(ClcMth)] +2024-09-08 15:11:38,821 [main] INFO Util - (6643) WG10 IEC61850 [0..1] data object LNGroupL::KXYZ.TotW: CDCAnalogueInfo::CMV, presence conditions=[MOcond(2)] +2024-09-08 15:11:38,821 [main] INFO Util - (5434) WG10 IEC61850 [1..1] enumerated DO LNGroupL::LPHD.PhyHealth: DerivedCDCs::ENSHealth, presence conditions=[MOcond(1)] +2024-09-08 15:11:38,821 [main] INFO Util - (5447) WG10 IEC61850 [0..1] data object LNGroupL::LLN0.NamPlt: CDCDescription::LPL, presence conditions=[MOcond(1), MOrootLD] +2024-09-08 15:11:38,821 [main] INFO Util - (5448) WG10 IEC61850 [1..1] enumerated DO LNGroupL::LLN0.Beh: DerivedCDCs::ENSBehaviourMode, presence conditions=[MOcond(1)] +2024-09-08 15:11:38,821 [main] INFO Util - (5449) WG10 IEC61850 [0..1] enumerated DO LNGroupL::LLN0.Health: DerivedCDCs::ENSHealth, presence conditions=[MOrootLD] +2024-09-08 15:11:38,821 [main] INFO Util - (5599) WG10 IEC61850 [1..1] data object LNGroupC::CALH.GrAlm: CDCStatusInfo::DPS, presence conditions=[AtLeastOne(1)] +2024-09-08 15:11:38,821 [main] INFO Util - (5600) WG10 IEC61850 [0..1] data object LNGroupC::CALH.GrWrn: CDCStatusInfo::DPS, presence conditions=[AtLeastOne(1)] +2024-09-08 15:11:38,821 [main] INFO Util - (5782) WG10 IEC61850 [0..1] data object LNGroupG::GGIO.AnIn: CDCAnalogueInfo::CMV, presence conditions=[Omulti] +2024-09-08 15:11:38,821 [main] INFO Util - (5788) WG10 IEC61850 [0..1] attribute LNGroupG::GGIO.DPCSO: NullIEC61850::NullIEC61850, presence conditions=[Omulti] +2024-09-08 15:11:38,821 [main] INFO Util - (6036) WG10 IEC61850 [0..1] data object LNGroupM::MMXU.TotW: CDCAnalogueInfo::CMV, presence conditions=[MO(1)] +2024-09-08 15:11:38,821 [main] INFO Util - (6139) WG10 IEC61850 [0..1] data object LNGroupP::PDIF.Str: CDCStatusInfo::ACD, presence conditions=[OmultiRange(33, 48)] +2024-09-08 15:11:38,821 [main] INFO Util - (6638) WG10 IEC61850 [0..1] data object LNGroupZ::ZAXN.Vol: CDCAnalogueInfo::CMV, presence conditions=[MOcond(condID)] +2024-09-08 15:11:38,822 [main] INFO Util - (6639) WG10 IEC61850 [0..1] attribute LNGroupZ::ZAXN.Amp: NullIEC61850::NullIEC61850, presence conditions=[AtLeastOne(n)] +2024-09-08 15:11:38,822 [main] INFO Util - (3304) OTHER_CIM CIM [0..1] CIMDatatype attribute Package with space::My class._attr: Domain::AbsoluteDateTime +2024-09-08 15:11:38,822 [main] INFO Util - +2024-09-08 15:11:38,822 [main] INFO Util - ======= 5 multi-valued attributes: ======== +2024-09-08 15:11:38,822 [main] INFO Util - (1440) WG13 CIM protected [2..5] Primitive attribute Domain::AbsoluteDateTime.protectedAttribute: Domain::String +2024-09-08 15:11:38,822 [main] INFO Util - (3320) WG10 IEC61850 [0..*] attribute GenericModel::AccessPoint.Address: GenericModel::CommAddress +2024-09-08 15:11:38,822 [main] INFO Util - (3588) WG10 IEC61850 [1..*] attribute MetaModel::SERVER.serviceAccessPoints: CommonAcsiTypes::IPAddress +2024-09-08 15:11:38,823 [main] INFO Util - (4328) WG10 IEC61850 [1..*] FCDA attribute CDCStatusInfo::HST.hstVal: FCDAs::INT32_ST_dchg_dupd, array bounds=...maxPts-1 +2024-09-08 15:11:38,823 [main] INFO Util - (4405) WG10 IEC61850 [1..*] sub-data object CDCAnalogueInfo::HWYE.phsAHar: CDCAnalogueInfo::CMV, array bounds=0...numHar +2024-09-08 15:11:38,823 [main] INFO Util - +2024-09-08 15:11:38,823 [main] INFO Util - ======= 4 name spaces: ======== +2024-09-08 15:11:38,823 [main] INFO Util - namespace IEC61970CIM14v12:2011, 20119-08-01; UML version 2011 +2024-09-08 15:11:38,823 [main] INFO Util - namespace IEC61850-7-2:2007, 2011-08-01; UML version IEC61850UML02v07 +2024-09-08 15:11:38,823 [main] INFO Util - namespace IEC61850-7-3:2011B, 2011-08-01; UML version IEC61850UML02v07 +2024-09-08 15:11:38,823 [main] INFO Util - namespace IEC61850-7-4:2009A, 2011-08-01; UML version IEC61850UML02v07 +2024-09-08 15:11:38,824 [main] INFO Util - +2024-09-08 15:11:38,824 [main] INFO Util - ======= 3 versions: ======== +2024-09-08 15:11:38,824 [main] INFO Util - version={IEC61970CIM14v12, 20119-08-01} +2024-09-08 15:11:38,824 [main] INFO Util - version={IEC61850UML02v07, 2011-07-02} +2024-09-08 15:11:38,824 [main] INFO Util - version={IEC61850UML02v07, 2011-07-02} +2024-09-08 15:11:38,824 [main] INFO Util - +2024-09-08 15:11:38,824 [main] INFO Util - ======= 25 tag names (not listed objects using GUIDBasedOn): ======== +2024-09-08 15:11:38,824 [main] INFO Util - MoreAssoc: +2024-09-08 15:11:38,824 [main] INFO Util - (123) WG13 CIM association NamedWithTagsEverywhere, qname='Terminal.ConductingEquipment - ConductingEquipment.Terminals', tags={CE-TermAssoc=1, MoreAssoc=}, endAsSrc: myEnd: WG13 [0..*] ConductingEquipment.Terminals; tags={Role1=abc}; otherEnd: WG13 [1..1] Terminal.ConductingEquipment; tags={AnotherRole2=abc, targetEndTag=blah, Role2=xyz}, endAsTgt: myEnd: WG13 [1..1] Terminal.ConductingEquipment; tags={AnotherRole2=abc, targetEndTag=blah, Role2=xyz}; otherEnd: WG13 [0..*] ConductingEquipment.Terminals; tags={Role1=abc} +2024-09-08 15:11:38,824 [main] INFO Util - nsuri: +2024-09-08 15:11:38,824 [main] INFO Util - (2) OTHER_CIM CIM model package /TC57CIM: 1 diagrams, 0 classes, 4 packages, ; tags={nsprefix=cim, nsuri=http://cim123} +2024-09-08 15:11:38,825 [main] INFO Util - (56) WG14 CIM top package TC57CIM::IEC61968: 1 diagrams, 1 classes, 5 packages, efferent=[IEC61970], afferent=[IEC61970], ; tags={nsprefix=n14, nsuri=http://wg14/customNamespace} +2024-09-08 15:11:38,825 [main] INFO Util - (173) WG14 CIM package IEC61968::EmbeddedExtension: 1 diagrams, 0 classes, 0 packages, ; tags={nsuri=http://embeddedExt, nsprefix=eext} +2024-09-08 15:11:38,825 [main] INFO Util - (69) OTHER_CIM CIM top package <> MyCimExtensions::Ext1: 1 diagrams, 5 classes, 0 packages, ; tags={nsuri=http://toto, nsprefix=ext2} +2024-09-08 15:11:38,825 [main] INFO Util - (6707) WG14 CIM [0..1] Primitive attribute Other::Equipment.myExtension: Domain::Integer, tags={nsuri=http://extensions, nsprefix=eext} +2024-09-08 15:11:38,825 [main] INFO Util - assocTag: +2024-09-08 15:11:38,825 [main] INFO Util - (2096) WG13 CIM association, qname='InfClassContainingEmbeddedClass.C2 - InfClass2.C1', tags={assocTag=a1}, endAsSrc: myEnd: WG13 [0..1] InfClass2.C1; tags={srcTag=a2}; otherEnd: WG13 [0..1] InfClassContainingEmbeddedClass.C2, endAsTgt: myEnd: WG13 [0..1] InfClassContainingEmbeddedClass.C2; otherEnd: WG13 [0..1] InfClass2.C1; tags={srcTag=a2} +2024-09-08 15:11:38,825 [main] INFO Util - (228) WG13 CIM association <>, qname='BusNameMarker.PrivateConnectivityNode - ConnectivityNode.BusNameMarker', tags={assocTag=val}, endAsSrc: myEnd: WG13 <> [0..1] ConnectivityNode.BusNameMarker; tags={srcTag=valueSrcTag}; otherEnd: WG13 (private) <> [0..*] BusNameMarker.PrivateConnectivityNode; tags={endTag=valueEndTag}, endAsTgt: myEnd: WG13 (private) <> [0..*] BusNameMarker.PrivateConnectivityNode; tags={endTag=valueEndTag}; otherEnd: WG13 <> [0..1] ConnectivityNode.BusNameMarker; tags={srcTag=valueSrcTag} +2024-09-08 15:11:38,825 [main] INFO Util - (2142) OTHER_CIM CIM association, qname='Pear.SecondApple - Apple.SecondPear', tags={assocTag=value0}, endAsSrc: myEnd: OTHER_CIM <> [0..1] Apple.SecondPear; otherEnd: OTHER_CIM <> [1..1] Pear.SecondApple, endAsTgt: myEnd: OTHER_CIM <> [1..1] Pear.SecondApple; otherEnd: OTHER_CIM <> [0..1] Apple.SecondPear +2024-09-08 15:11:38,825 [main] INFO Util - someTag: +2024-09-08 15:11:38,825 [main] INFO Util - (5) WG13 CIM Core::PowerSystemResource operation <> public NullCIM bar(NullCIM par3, Float par2, NullCIM par); tags={someTag=value} +2024-09-08 15:11:38,825 [main] INFO Util - (4) WG13 CIM Core::PowerSystemResource operation public NullCIM foo(NullCIM par3, Float par2, NullCIM par); tags={someTag=value} +2024-09-08 15:11:38,825 [main] INFO Util - moveAfter: +2024-09-08 15:11:38,826 [main] INFO Util - (4279) WG10 IEC61850 [0..1] PackedEnumFCDA attribute CDCStatusInfo::DPS.subVal: FCDAs::DpStatus_SV, presence conditions=[MFsubst], tags={moveAfter=wrongsubEna, secondTagName=secondTagValue} +2024-09-08 15:11:38,826 [main] INFO Util - (4288) WG10 IEC61850 [0..1] EnumFCDA attribute CDCStatusInfo::ENS.subVal: FCDAs::EnumDA_SV, presence conditions=[MFsubst], tags={moveAfter=subEna} +2024-09-08 15:11:38,826 [main] INFO Util - (4369) WG10 IEC61850 [0..1] attribute CDCAnalogueInfo::CMV.subCVal: NullIEC61850::NullIEC61850, presence conditions=[MFsubst], tags={moveAfter=subEna} +2024-09-08 15:11:38,826 [main] INFO Util - (4411) WG10 IEC61850 [0..1] EnumFCDA attribute CDCAnalogueInfo::HWYE.angRef: FCDAs::PhaseAngleReference_CF_dchg, tags={moveAfter=evalTm} +2024-09-08 15:11:38,826 [main] INFO Util - (4467) WG10 IEC61850 [0..1] EnumFCDA attribute CDCControl::ENC.subVal: FCDAs::EnumDA_SV, presence conditions=[MFsubst], tags={moveAfter=subEna} +2024-09-08 15:11:38,826 [main] INFO Util - (4526) WG10 IEC61850 [0..1] attribute CDCControl::BAC.subVal: NullIEC61850::NullIEC61850, presence conditions=[MFsubst], tags={moveAfter=subEna} +2024-09-08 15:11:38,826 [main] INFO Util - secondTagName: +2024-09-08 15:11:38,826 [main] INFO Util - (4279) WG10 IEC61850 [0..1] PackedEnumFCDA attribute CDCStatusInfo::DPS.subVal: FCDAs::DpStatus_SV, presence conditions=[MFsubst], tags={moveAfter=wrongsubEna, secondTagName=secondTagValue} +2024-09-08 15:11:38,826 [main] INFO Util - dummyCimTag: +2024-09-08 15:11:38,826 [main] INFO Util - (853) WG13 CIM class Core::Terminal, 1 superclasses=[IdentifiedObject], 1 subclasses=[DumbSubterminal], 2 attributes, 4 associations; efferent classes: byAttr=[Boolean, Integer]; associated classes (bi-directional): asTarget=[Core::PowerSystemResource] asSource=[Core::ConductingEquipment, Topology::ConnectivityNode, Topology::TopologicalNode], tags={dummyCimTag=on terminal} +2024-09-08 15:11:38,826 [main] INFO Util - (850) WG13 CIM compound <> Core::OperatingParticipant, 1 superclasses=[IdentifiedObject], 1 associations; associated classes (bi-directional): asTarget=[Core::OperatingShare], tags={dummyCimTag=value} +2024-09-08 15:11:38,826 [main] INFO Util - (1) WG13 CIM Core::PowerSystemResource operation abstract public NullCIM[] GetWhatevers(BasePower[] multiples) throws Dummy,PSRType,Dummy2; tags={throws=Dummy,PSRType,Dummy2, dummyCimTag=on operation} +2024-09-08 15:11:38,826 [main] INFO Util - AnotherRole2: +2024-09-08 15:11:38,826 [main] INFO Util - WG13 [1..1] Terminal.ConductingEquipment; tags={AnotherRole2=abc, targetEndTag=blah, Role2=xyz} +2024-09-08 15:11:38,826 [main] INFO Util - nsprefix: +2024-09-08 15:11:38,827 [main] INFO Util - (2) OTHER_CIM CIM model package /TC57CIM: 1 diagrams, 0 classes, 4 packages, ; tags={nsprefix=cim, nsuri=http://cim123} +2024-09-08 15:11:38,827 [main] INFO Util - (56) WG14 CIM top package TC57CIM::IEC61968: 1 diagrams, 1 classes, 5 packages, efferent=[IEC61970], afferent=[IEC61970], ; tags={nsprefix=n14, nsuri=http://wg14/customNamespace} +2024-09-08 15:11:38,827 [main] INFO Util - (173) WG14 CIM package IEC61968::EmbeddedExtension: 1 diagrams, 0 classes, 0 packages, ; tags={nsuri=http://embeddedExt, nsprefix=eext} +2024-09-08 15:11:38,827 [main] INFO Util - (69) OTHER_CIM CIM top package <> MyCimExtensions::Ext1: 1 diagrams, 5 classes, 0 packages, ; tags={nsuri=http://toto, nsprefix=ext2} +2024-09-08 15:11:38,827 [main] INFO Util - (6707) WG14 CIM [0..1] Primitive attribute Other::Equipment.myExtension: Domain::Integer, tags={nsuri=http://extensions, nsprefix=eext} +2024-09-08 15:11:38,827 [main] INFO Util - dummyPackageTag: +2024-09-08 15:11:38,828 [main] INFO Util - (141) WG10 IEC61850 package IEC61850_7_4::DOEnums: 1 diagrams, 4 classes, 0 packages, ; tags={dummyPackageTag=tagValue} +2024-09-08 15:11:38,828 [main] INFO Util - CE-TermAssoc: +2024-09-08 15:11:38,828 [main] INFO Util - (123) WG13 CIM association NamedWithTagsEverywhere, qname='Terminal.ConductingEquipment - ConductingEquipment.Terminals', tags={CE-TermAssoc=1, MoreAssoc=}, endAsSrc: myEnd: WG13 [0..*] ConductingEquipment.Terminals; tags={Role1=abc}; otherEnd: WG13 [1..1] Terminal.ConductingEquipment; tags={AnotherRole2=abc, targetEndTag=blah, Role2=xyz}, endAsTgt: myEnd: WG13 [1..1] Terminal.ConductingEquipment; tags={AnotherRole2=abc, targetEndTag=blah, Role2=xyz}; otherEnd: WG13 [0..*] ConductingEquipment.Terminals; tags={Role1=abc} +2024-09-08 15:11:38,828 [main] INFO Util - tag: +2024-09-08 15:11:38,828 [main] INFO Util - (1370) WG13 CIM [0..1] Primitive attribute Domain::ApparentPower.value: Domain::Float, tags={tag=val} +2024-09-08 15:11:38,828 [main] INFO Util - scl: +2024-09-08 15:11:38,829 [main] INFO Util - (2045) WG10 IEC61850 enumeration <> DAEnums::SIUnitKind, 73 enum literals (codes used=[1, 10, 11, 2, 21, 22, 23, 24, 25, 26, 27, 28, 29, 3, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 4, 41, 42, 43, 44, 45, 46, 47, 48, 49, 5, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 6, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 7, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 8, 80, 81, 82, 83, 9]); afferent classes: byAttr=[SIUnit];, tags={scl=SIUnit} +2024-09-08 15:11:38,829 [main] INFO Util - (2044) WG10 IEC61850 enumeration <> DAEnums::MultiplierKind, 21 enum literals (codes used=[-1, -12, -15, -18, -2, -21, -24, -3, -6, -9, 0, 1, 12, 15, 18, 2, 21, 24, 3, 6, 9]); afferent classes: byAttr=[Multiplier];, tags={scl=multiplier} +2024-09-08 15:11:38,829 [main] INFO Util - (2039) WG10 IEC61850 enumeration <> DAEnums::PhaseAngleReferenceKind, 12 enum literals (codes used=[0, 1, 10, 11, 2, 3, 4, 5, 6, 7, 8, 9]); afferent classes: byAttr=[PhaseAngleReference];, tags={scl=angRef, angid} +2024-09-08 15:11:38,829 [main] INFO Util - (2568) WG10 IEC61850 enumeration <> DOEnums::HealthKind, 3 enum literals (codes used=[1, 2, 3]); afferent classes: byAttr=[Health];, tags={scl=EEHealth,Health,MechHealth,PhyHealth} +2024-09-08 15:11:38,829 [main] INFO Util - (2564) WG10 IEC61850 enumeration <> DOEnums::BehaviourModeKind, 5 enum literals (codes used=[1, 2, 3, 4, 5]); afferent classes: byAttr=[BehaviourMode];, tags={scl=Beh,Mod} +2024-09-08 15:11:38,829 [main] INFO Util - (2567) WG10 IEC61850 enumeration <> DOEnums::CalcMethodKind, 10 enum literals (codes used=[1, 10, 2, 3, 4, 5, 6, 7, 8, 9]); afferent classes: byAttr=[CalcMethod];, tags={scl=ClcMth} +2024-09-08 15:11:38,829 [main] INFO Util - GUIDBasedOn: +2024-09-08 15:11:38,829 [main] INFO Util - scl:emptyValue: +2024-09-08 15:11:38,829 [main] INFO Util - (3834) WG10 IEC61850 literal <> DAEnums::SIUnitKind.none = 1, tags={scl:emptyValue=} +2024-09-08 15:11:38,830 [main] INFO Util - (3823) WG10 IEC61850 literal <> DAEnums::MultiplierKind.none = 0, tags={scl:emptyValue=} +2024-09-08 15:11:38,830 [main] INFO Util - srcTag: +2024-09-08 15:11:38,830 [main] INFO Util - WG13 [0..1] InfClass2.C1; tags={srcTag=a2} +2024-09-08 15:11:38,830 [main] INFO Util - WG13 <> [0..1] ConnectivityNode.BusNameMarker; tags={srcTag=valueSrcTag} +2024-09-08 15:11:38,830 [main] INFO Util - iecRef: +2024-09-08 15:11:38,830 [main] INFO Util - (2368) WG10 IEC61850 function ProtectionEq::BusbarProt; efferent classes: byDep=[PDIF], tags={iecRef=, ieeeRef=87B, rsName=PBDF} +2024-09-08 15:11:38,830 [main] INFO Util - (2374) WG10 IEC61850 function ProtectionEq::DirectionalProt; efferent classes: byDep=[RDIR, PDIS], tags={iecRef=, ieeeRef=87B, rsName=PDIR} +2024-09-08 15:11:38,830 [main] INFO Util - (2375) WG10 IEC61850 function ProtectionEq::DirectionalPowerProt; efferent classes: byDep=[RDIR], tags={iecRef=P>, ieeeRef=32, rsName=PDPR} +2024-09-08 15:11:38,831 [main] INFO Util - (2385) WG10 IEC61850 function ProtectionEq::LineDifferentialProt; efferent classes: byDep=[PDIF], tags={iecRef=, ieeeRef=87L, rsName=PLDF} +2024-09-08 15:11:38,831 [main] INFO Util - (2394) WG10 IEC61850 function ProtectionEq::PowerFactorProt, tags={iecRef=cos\u03C6>, cos\u03C6<, ieeeRef=55, rsName=PPFR} +2024-09-08 15:11:38,831 [main] INFO Util - (2420) WG10 IEC61850 function ControlEq::AlarmHandler; efferent classes: byDep=[CALH], tags={iecRef=, ieeeRef=, rsName=CALH} +2024-09-08 15:11:38,831 [main] INFO Util - (2465) WG10 IEC61850 function MeasurementsAndMetering::ThreePhaseMeasurement; efferent classes: byDep=[MMXU], tags={iecRef=, ieeeRef=, rsName=MMXU} +2024-09-08 15:11:38,831 [main] INFO Util - (2475) WG10 IEC61850 function SystemWide::LogicalDeviceData; efferent classes: byDep=[LLN0], tags={iecRef=, ieeeRef=, rsName=LLN0} +2024-09-08 15:11:38,831 [main] INFO Util - (2477) WG10 IEC61850 function SystemWide::PhysicalDeviceData; efferent classes: byDep=[LPHD], tags={iecRef=, ieeeRef=, rsName=LPHD} +2024-09-08 15:11:38,831 [main] INFO Util - (2487) WG10 IEC61850 function PrimaryEq::AuxiliaryNetwork; efferent classes: byDep=[ZAXN], tags={iecRef=, ieeeRef=, rsName=ZAXN} +2024-09-08 15:11:38,831 [main] INFO Util - (2501) WG10 IEC61850 function PrimaryEq::GenericIO; efferent classes: byDep=[GGIO], tags={iecRef=, ieeeRef=, rsName=GGIO} +2024-09-08 15:11:38,832 [main] INFO Util - endTag: +2024-09-08 15:11:38,832 [main] INFO Util - WG13 (private) <> [0..*] BusNameMarker.PrivateConnectivityNode; tags={endTag=valueEndTag} +2024-09-08 15:11:38,832 [main] INFO Util - Role2: +2024-09-08 15:11:38,832 [main] INFO Util - WG13 [1..1] Terminal.ConductingEquipment; tags={AnotherRole2=abc, targetEndTag=blah, Role2=xyz} +2024-09-08 15:11:38,832 [main] INFO Util - Role1: +2024-09-08 15:11:38,832 [main] INFO Util - WG13 [0..*] ConductingEquipment.Terminals; tags={Role1=abc} +2024-09-08 15:11:38,832 [main] INFO Util - throws: +2024-09-08 15:11:38,832 [main] INFO Util - (1) WG13 CIM Core::PowerSystemResource operation abstract public NullCIM[] GetWhatevers(BasePower[] multiples) throws Dummy,PSRType,Dummy2; tags={throws=Dummy,PSRType,Dummy2, dummyCimTag=on operation} +2024-09-08 15:11:38,832 [main] INFO Util - (2) WG13 CIM Core::PowerSystemResource operation <> public void setSomething(String name) throws Unit; tags={throws=Unit} +2024-09-08 15:11:38,833 [main] INFO Util - rsName: +2024-09-08 15:11:38,833 [main] INFO Util - (2368) WG10 IEC61850 function ProtectionEq::BusbarProt; efferent classes: byDep=[PDIF], tags={iecRef=, ieeeRef=87B, rsName=PBDF} +2024-09-08 15:11:38,833 [main] INFO Util - (2374) WG10 IEC61850 function ProtectionEq::DirectionalProt; efferent classes: byDep=[RDIR, PDIS], tags={iecRef=, ieeeRef=87B, rsName=PDIR} +2024-09-08 15:11:38,833 [main] INFO Util - (2375) WG10 IEC61850 function ProtectionEq::DirectionalPowerProt; efferent classes: byDep=[RDIR], tags={iecRef=P>, ieeeRef=32, rsName=PDPR} +2024-09-08 15:11:38,833 [main] INFO Util - (2385) WG10 IEC61850 function ProtectionEq::LineDifferentialProt; efferent classes: byDep=[PDIF], tags={iecRef=, ieeeRef=87L, rsName=PLDF} +2024-09-08 15:11:38,835 [main] INFO Util - (2394) WG10 IEC61850 function ProtectionEq::PowerFactorProt, tags={iecRef=cos\u03C6>, cos\u03C6<, ieeeRef=55, rsName=PPFR} +2024-09-08 15:11:38,835 [main] INFO Util - (2420) WG10 IEC61850 function ControlEq::AlarmHandler; efferent classes: byDep=[CALH], tags={iecRef=, ieeeRef=, rsName=CALH} +2024-09-08 15:11:38,835 [main] INFO Util - (2465) WG10 IEC61850 function MeasurementsAndMetering::ThreePhaseMeasurement; efferent classes: byDep=[MMXU], tags={iecRef=, ieeeRef=, rsName=MMXU} +2024-09-08 15:11:38,835 [main] INFO Util - (2475) WG10 IEC61850 function SystemWide::LogicalDeviceData; efferent classes: byDep=[LLN0], tags={iecRef=, ieeeRef=, rsName=LLN0} +2024-09-08 15:11:38,835 [main] INFO Util - (2477) WG10 IEC61850 function SystemWide::PhysicalDeviceData; efferent classes: byDep=[LPHD], tags={iecRef=, ieeeRef=, rsName=LPHD} +2024-09-08 15:11:38,835 [main] INFO Util - (2487) WG10 IEC61850 function PrimaryEq::AuxiliaryNetwork; efferent classes: byDep=[ZAXN], tags={iecRef=, ieeeRef=, rsName=ZAXN} +2024-09-08 15:11:38,835 [main] INFO Util - (2501) WG10 IEC61850 function PrimaryEq::GenericIO; efferent classes: byDep=[GGIO], tags={iecRef=, ieeeRef=, rsName=GGIO} +2024-09-08 15:11:38,835 [main] INFO Util - ieeeRef: +2024-09-08 15:11:38,836 [main] INFO Util - (2368) WG10 IEC61850 function ProtectionEq::BusbarProt; efferent classes: byDep=[PDIF], tags={iecRef=, ieeeRef=87B, rsName=PBDF} +2024-09-08 15:11:38,836 [main] INFO Util - (2374) WG10 IEC61850 function ProtectionEq::DirectionalProt; efferent classes: byDep=[RDIR, PDIS], tags={iecRef=, ieeeRef=87B, rsName=PDIR} +2024-09-08 15:11:38,836 [main] INFO Util - (2375) WG10 IEC61850 function ProtectionEq::DirectionalPowerProt; efferent classes: byDep=[RDIR], tags={iecRef=P>, ieeeRef=32, rsName=PDPR} +2024-09-08 15:11:38,836 [main] INFO Util - (2385) WG10 IEC61850 function ProtectionEq::LineDifferentialProt; efferent classes: byDep=[PDIF], tags={iecRef=, ieeeRef=87L, rsName=PLDF} +2024-09-08 15:11:38,836 [main] INFO Util - (2394) WG10 IEC61850 function ProtectionEq::PowerFactorProt, tags={iecRef=cos\u03C6>, cos\u03C6<, ieeeRef=55, rsName=PPFR} +2024-09-08 15:11:38,836 [main] INFO Util - (2420) WG10 IEC61850 function ControlEq::AlarmHandler; efferent classes: byDep=[CALH], tags={iecRef=, ieeeRef=, rsName=CALH} +2024-09-08 15:11:38,836 [main] INFO Util - (2465) WG10 IEC61850 function MeasurementsAndMetering::ThreePhaseMeasurement; efferent classes: byDep=[MMXU], tags={iecRef=, ieeeRef=, rsName=MMXU} +2024-09-08 15:11:38,836 [main] INFO Util - (2475) WG10 IEC61850 function SystemWide::LogicalDeviceData; efferent classes: byDep=[LLN0], tags={iecRef=, ieeeRef=, rsName=LLN0} +2024-09-08 15:11:38,836 [main] INFO Util - (2477) WG10 IEC61850 function SystemWide::PhysicalDeviceData; efferent classes: byDep=[LPHD], tags={iecRef=, ieeeRef=, rsName=LPHD} +2024-09-08 15:11:38,836 [main] INFO Util - (2487) WG10 IEC61850 function PrimaryEq::AuxiliaryNetwork; efferent classes: byDep=[ZAXN], tags={iecRef=, ieeeRef=, rsName=ZAXN} +2024-09-08 15:11:38,837 [main] INFO Util - (2501) WG10 IEC61850 function PrimaryEq::GenericIO; efferent classes: byDep=[GGIO], tags={iecRef=, ieeeRef=, rsName=GGIO} +2024-09-08 15:11:38,837 [main] INFO Util - targetEndTag: +2024-09-08 15:11:38,837 [main] INFO Util - WG13 [1..1] Terminal.ConductingEquipment; tags={AnotherRole2=abc, targetEndTag=blah, Role2=xyz} +2024-09-08 15:11:38,837 [main] INFO Util - OTHER_CIM [0..*] Pear.Apple; tags={targetEndTag=value2} +2024-09-08 15:11:38,837 [main] INFO Util - assocEndTag: +2024-09-08 15:11:38,837 [main] INFO Util - OTHER_CIM [0..1] Apple.Pear; tags={assocEndTag=value} +2024-09-08 15:11:38,838 [main] INFO Util - +2024-09-08 15:11:38,838 [main] INFO Util - ======= 38 DO name decompositions: ======== +2024-09-08 15:11:38,838 [main] INFO Util - WG10 LogicalNodes::DomainLN.NamPlt ("Name plate of the logical node."): NamPlt = [{NamPlt=?}] +2024-09-08 15:11:38,838 [main] INFO Util - WG10 LogicalNodes::DomainLN.Health ("'Health.stVal' reflects the state of the logical node related hardware and softw..."): Health = [{Health=?}] +2024-09-08 15:11:38,838 [main] INFO Util - WG10 LogicalNodes::DomainLN.Mod ("'DomainLN.Mod.ctlVal' is used by operator to initiate the change in the operatin..."): Mod = [{Mod=?}] +2024-09-08 15:11:38,838 [main] INFO Util - WG10 LogicalNodes::DomainLN.CntRs ("Dumb DO, of type CMV for testing inheriting statistics-derived presence conditio..."): CntRs = [{CntRs=?}] +2024-09-08 15:11:38,838 [main] INFO Util - WG10 LogicalNodes::StatisticsLN.ClcExp ("If 'ClcExp.stVal=true', the calculation period of a statistical logical node has..."): ClcExp = [{ClcExp=?}] +2024-09-08 15:11:38,838 [main] INFO Util - WG10 LogicalNodes::StatisticsLN.ClcMth ("'ClcMth.setVal' is the kind of statistical calculation, specifying how the data ..."): ClcMth = [{ClcMth=?}] +2024-09-08 15:11:38,838 [main] INFO Util - WG10 LogicalNodes::EquipmentInterfaceLN.EEHealthAlmClc ("(too long name) State of external (electrical, mechanical or communication) equi..."): EEHealthAlmClc = [{EEHealth=?}, {Alm=Alarm}, {Clc=?}] +2024-09-08 15:11:38,838 [main] INFO Util - WG10 LNGroupL::KXYZ.aDummyAlm ("Whatever (testing lower case DO name)."): aDummyAlm = [{aDummy=Dummy lower-case term.}, {Alm=Alarm}] +2024-09-08 15:11:38,838 [main] INFO Util - WG10 LNGroupL::KXYZ.TotW ("'TotW.mag.f' is the total real power in a three-phase circuit [W]."): TotW = [{TotW=?}] +2024-09-08 15:11:38,839 [main] INFO Util - WG10 LNGroupL::KXYZ.WrongA ("Misused ENS (or ENG or ENC). Use derived CDC instead."): WrongA = [{Wrong=?}, {A=Current}] +2024-09-08 15:11:38,839 [main] INFO Util - WG10 LNGroupL::KXYZ.CorrectA ("Correctly using derived CDC for enums."): CorrectA = [{Correct=?}, {A=Current}] +2024-09-08 15:11:38,839 [main] INFO Util - WG10 LNGroupL::LPHD.PhyHealth ("'PhyHealth.stVal' reflects the state of the physical device related hardware and..."): PhyHealth = [{PhyHealth=?}] +2024-09-08 15:11:38,839 [main] INFO Util - WG10 LNGroupL::LPHD.RsStatAlmMthClc ("(too long name) 'RsStat.ctlVal=true' initiates the resetting of the IED statisti..."): RsStatAlmMthClc = [{RsStat=?}, {Alm=Alarm}, {MthClc=?}] +2024-09-08 15:11:38,839 [main] INFO Util - WG10 LNGroupL::LPHD.StatAlmMthClc ("(too long name) 'RsStat.ctlVal=true' initiates the resetting of the IED statisti..."): StatAlmMthClc = [{Stat=?}, {Alm=Alarm}, {MthClc=?}] +2024-09-08 15:11:38,839 [main] INFO Util - WG10 LNGroupL::LLN0.NamPlt ("Name plate of the logical device."): NamPlt = [{NamPlt=?}] +2024-09-08 15:11:38,839 [main] INFO Util - WG10 LNGroupL::LLN0.Beh (""): Beh = [{Beh=?}] +2024-09-08 15:11:38,839 [main] INFO Util - WG10 LNGroupL::LLN0.Health ("'Health.stVal' reflects the state of the logical device related hardware and sof..."): Health = [{Health=?}] +2024-09-08 15:11:38,839 [main] INFO Util - WG10 LNGroupC::CALH.GrAlm ("If 'GrAlm.stVal=true', a new group alarm has been activated by one of individual..."): GrAlm = [{Gr=?}, {Alm=Alarm}] +2024-09-08 15:11:38,839 [main] INFO Util - WG10 LNGroupC::CALH.GrWrn ("If 'GrWrn.stVal=true', a new group warning has been activated by one of individu..."): GrWrn = [{GrWrn=?}] +2024-09-08 15:11:38,839 [main] INFO Util - WG10 LNGroupC::CALH.ModBeh ("If 'GrWrn.stVal=true', a new group warning has been activated by one of individu..."): ModBeh = [{ModBeh=?}] +2024-09-08 15:11:38,839 [main] INFO Util - WG10 LNGroupG::GGIO.EEHealth ("'EEHealth.stVal' reflects the state of external (primary) equipment to which the..."): EEHealth = [{EEHealth=?}] +2024-09-08 15:11:38,839 [main] INFO Util - WG10 LNGroupG::GGIO.AnIn ("'AnIn.mag.f' is the generic analogue input n."): AnIn = [{A=Current}, {nIn=?}] +2024-09-08 15:11:38,839 [main] INFO Util - WG10 LNGroupG::GGIO.DPCSO ("'DPCSO.ctlVal=true' or 'DPCSO.ctlVal=false' controls the generic double point co..."): DPCSO = [{DPCSO=?}] +2024-09-08 15:11:38,839 [main] INFO Util - WG10 LNGroupM::MMXU.A ("'A' holds the currents for three phases."): A = [{A=Current}] +2024-09-08 15:11:38,839 [main] INFO Util - WG10 LNGroupM::MMXU.TotW ("'TotW.mag.f' is the total real power in a three-phase circuit [W]."): TotW = [{TotW=?}] +2024-09-08 15:11:38,839 [main] INFO Util - WG10 LNGroupM::MMXU.Desc ("Dummy native DO of non-statistical type."): Desc = [{Desc=?}] +2024-09-08 15:11:38,839 [main] INFO Util - WG10 LNGroupP::ProtectionLN.OpCntRs ("'OpCntRs.stVal' is the count of operations. It can be reset from remote, with th..."): OpCntRs = [{OpCntRs=?}] +2024-09-08 15:11:38,840 [main] INFO Util - WG10 LNGroupP::PDIF.Str ("If 'Str.general=true', a fault has been detected."): Str = [{Str=?}] +2024-09-08 15:11:38,840 [main] INFO Util - WG10 LNGroupP::PDIF.Op ("If 'Op.general=true', the function decided to trip. The trip itself is issued by..."): Op = [{Op=?}] +2024-09-08 15:11:38,840 [main] INFO Util - WG10 LNGroupP::PDIS.Str ("If 'Str.general=true', a distance fault has been detected."): Str = [{Str=?}] +2024-09-08 15:11:38,840 [main] INFO Util - WG10 LNGroupP::PDIS.Op ("If 'Op.general=true', the function decided to trip due to distance fault. The tr..."): Op = [{Op=?}] +2024-09-08 15:11:38,840 [main] INFO Util - WG10 LNGroupR::RDIR.Dir ("If 'Dir.general=true', a fault has been detected. 'Dir.dirGeneral' is the direct..."): Dir = [{Dir=?}] +2024-09-08 15:11:38,840 [main] INFO Util - WG10 LNGroupR::RDIR.TotW ("'TotW.mag.f' is the total real power in a three-phase circuit [W]."): TotW = [{TotW=?}] +2024-09-08 15:11:38,840 [main] INFO Util - WG10 LNGroupZ::ZAXN.Vol ("'Vol.mag.f' is the non-phase-related or DC voltage of the auxiliary network."): Vol = [{Vol=?}] +2024-09-08 15:11:38,840 [main] INFO Util - WG10 LNGroupZ::ZAXN.Amp ("'Amp.mag.f' is the non-phase-related current of the auxiliary network."): Amp = [{Amp=Current non-phase-related/Duplicated definition: Current non-phase-related}] +2024-09-08 15:11:38,840 [main] INFO Util - WG10 LNGroupZ::ZAXN.Mat ("For testing usage of class from other namespace."): Mat = [{Mat=?}] +2024-09-08 15:11:38,840 [main] INFO Util - WG10 LNGroupZ::ZAXN.MatCtl ("One more, for testing usage of class from other namespace."): MatCtl = [{MatCtl=?}] +2024-09-08 15:11:38,840 [main] INFO Util - WG10 LNGroupZ::ZAXN.Oth ("One more, for testing usage of class from other namespace and also underlying ty..."): Oth = [{Oth=?}] +2024-09-08 15:11:38,840 [main] INFO Util - +2024-09-08 15:11:38,841 [main] INFO Util - ======= 12 Abbreviated terms usage: ======== +2024-09-08 15:11:38,841 [main] INFO Util - A: +2024-09-08 15:11:38,841 [main] INFO Util - WG10 LNGroupL::KXYZ.WrongA +2024-09-08 15:11:38,841 [main] INFO Util - WG10 LNGroupL::KXYZ.CorrectA +2024-09-08 15:11:38,841 [main] INFO Util - WG10 LNGroupG::GGIO.AnIn +2024-09-08 15:11:38,841 [main] INFO Util - WG10 LNGroupM::MMXU.A +2024-09-08 15:11:38,841 [main] INFO Util - Abc: +2024-09-08 15:11:38,841 [main] INFO Util - Alm: +2024-09-08 15:11:38,841 [main] INFO Util - WG10 LogicalNodes::EquipmentInterfaceLN.EEHealthAlmClc +2024-09-08 15:11:38,841 [main] INFO Util - WG10 LNGroupL::KXYZ.aDummyAlm +2024-09-08 15:11:38,841 [main] INFO Util - WG10 LNGroupL::LPHD.RsStatAlmMthClc +2024-09-08 15:11:38,841 [main] INFO Util - WG10 LNGroupL::LPHD.StatAlmMthClc +2024-09-08 15:11:38,841 [main] INFO Util - WG10 LNGroupC::CALH.GrAlm +2024-09-08 15:11:38,841 [main] INFO Util - Alm2: +2024-09-08 15:11:38,841 [main] INFO Util - Amp: +2024-09-08 15:11:38,841 [main] INFO Util - WG10 LNGroupZ::ZAXN.Amp +2024-09-08 15:11:38,842 [main] INFO Util - Z: +2024-09-08 15:11:38,842 [main] INFO Util - Z0: +2024-09-08 15:11:38,842 [main] INFO Util - Z1: +2024-09-08 15:11:38,842 [main] INFO Util - Zro: +2024-09-08 15:11:38,842 [main] INFO Util - aDummy: +2024-09-08 15:11:38,842 [main] INFO Util - WG10 LNGroupL::KXYZ.aDummyAlm +2024-09-08 15:11:38,842 [main] INFO Util - km: +2024-09-08 15:11:38,842 [main] INFO Util - ppm: +2024-09-08 15:11:38,842 [main] INFO Util - time=[0:00:00.121] collected statistics for [WG13, WG14, WG16, OTHER_CIM, WG10, WG17, WG18, JWG25, WG19, OTHER_IEC61850] packages. +2024-09-08 15:11:38,842 [main] INFO Util - +2024-09-08 15:11:38,842 [main] INFO Util - +2024-09-08 15:11:38,842 [main] INFO Util - ================================================ +2024-09-08 15:11:38,842 [main] INFO Util - generating doc from TC57CIMProfiles (CIM), TC57CIM (CIM), IEC61850Domain (IEC61850), MyCimExtensions (CIM), My61850Extensions (IEC61850), NewNature (CIM) +2024-09-08 15:11:38,842 [main] INFO Util - ================================================ +2024-09-08 15:11:38,842 [main] INFO Util - +2024-09-08 15:11:38,842 [main] INFO Util - ------------------------------------------------ +2024-09-08 15:11:38,843 [main] INFO Util - collecting documentation content ... +2024-09-08 15:11:38,857 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Informative::Class1': UML1 +2024-09-08 15:11:38,857 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Informative::End1ForAssocClass': UML2 +2024-09-08 15:11:38,857 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Informative::End2ForAssocClass': UML3 +2024-09-08 15:11:38,857 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Informative::AssocClass': UML4 +2024-09-08 15:11:38,857 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Informative::HasIllegalTypeForAttr': UML5 +2024-09-08 15:11:38,857 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Informative::SomeSimpleType': UML6 +2024-09-08 15:11:38,857 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEC61970::IEC61970CIMVersion': UML7 +2024-09-08 15:11:38,857 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'InformativeAndPrivate::InfClass2': UML8 +2024-09-08 15:11:38,857 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'InformativeAndPrivate::InfClassContainingEmbeddedClass': UML9 +2024-09-08 15:11:38,857 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'InformativeAndPrivate::EmbeddedClass': UML10 +2024-09-08 15:11:38,857 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::AbsoluteDateTime': UML11 +2024-09-08 15:11:38,857 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::ActivePower': UML12 +2024-09-08 15:11:38,857 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::ActivePowerChangeRate': UML13 +2024-09-08 15:11:38,857 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::ApparentPower': UML14 +2024-09-08 15:11:38,857 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Boolean': UML15 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Currency': UML16 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Float': UML17 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Integer': UML18 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Money': UML19 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::PerCent': UML20 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Seconds': UML21 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::String': UML22 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitMultiplier': UML23 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol': UML24 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Voltage': UML25 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::WithSingleLiteral': UML26 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::YesNo': UML27 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::BreakerConfiguration': UML28 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::BusbarConfiguration': UML29 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::OperatingShare': UML30 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode': UML31 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::IdentifiedObject': UML32 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Topology::TestEnum': UML33 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithSomeIntCodes': UML34 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithStringCodes': UML35 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithNonUniqueCodes': UML36 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEC61968::IEC61968Version': UML37 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Assets::AssetInfo': UML38 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Other::BadDatatypes': UML39 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Other::Equipment': UML40 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Other::MyClass': UML41 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Other::EmptyEnum': UML42 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Other::NonEmptyPrimitive': UML43 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Other::AnotherBadDatatype': UML44 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Other::EmptyCompound': UML45 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'WG10::WG10UMLVersion': UML46 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::CommAddress': UML47 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenAssociationID': UML48 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenFC': UML49 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenPresenceConditions': UML50 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenTimeStamp': UML51 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::AccessPoint': UML52 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::FileSystem': UML53 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenAtomicType': UML54 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenBOOLEAN': UML55 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenCommonDataClass': UML56 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenCompactType': UML57 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenConstructedType': UML58 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenDataAttribute': UML59 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenDataObject': UML60 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenDataSet': UML61 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenFCD': UML62 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenFCDA': UML63 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenFile': UML64 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenIED': UML65 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenINT32U': UML66 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenLogicalDevice': UML67 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenLogicalNode': UML68 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenMCAA': UML69 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenObjRef': UML70 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenObjectName': UML71 +2024-09-08 15:11:38,858 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenServer': UML72 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenSubDataAttribute': UML73 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenSubDataObject': UML74 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenTPAA': UML75 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenTriggerConditions': UML76 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenVisString255': UML77 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEC61850_7_2::IEC61850_7_2Namespace': UML78 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FunctionalConstraints::FcKind': UML79 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TriggerOptions::TrgOpKind': UML80 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ACSIEnums::BsControlKind': UML81 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ACSIEnums::DpStatusKind': UML82 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::P_BOOLEAN': UML83 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::P_INT16U': UML84 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::P_INT32': UML85 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::P_INT32U': UML86 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::P_FLOAT32': UML87 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::P_UNICODE_STRING255': UML88 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::P_VISIBLE_STRING255': UML89 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::ObjectName': UML90 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::P_ObjectReference': UML91 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::P_PHYCOMADDR': UML92 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::P_TimeStamp': UML93 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::TimeQuality': UML94 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::TimeAccuracyKind': UML95 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::P_TriggerConditions': UML96 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::ServiceFcKind': UML97 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind': UML98 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValue': UML99 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrDefinition': UML100 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::NamedAttrValue': UML101 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CommonAcsiTypes::P_OCTET_STRING': UML102 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CommonAcsiTypes::IPAddress': UML103 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CommonAcsiTypes::MulticastAddress': UML104 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CommonAcsiTypes::Authentication': UML105 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CommonAcsiTypes::AccessView': UML106 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CommonAcsiTypes::ReportID': UML107 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CommonAcsiTypes::EntryID': UML108 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CommonAcsiTypes::EntryTime': UML109 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::IEC61850Object': UML110 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::SUBSTITUTION': UML111 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::CONTROL': UML112 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::TIME': UML113 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEC61850_7_3::IEC61850_7_3Namespace': UML114 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition': UML115 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind': UML116 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind': UML117 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseFaultDirectionKind': UML118 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseAngleReferenceKind': UML119 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ConstructedDAs::ValidityKind': UML120 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ConstructedDAs::DetailQual': UML121 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ConstructedDAs::SourceKind': UML122 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCControl::SPC': UML123 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEC61850_7_4::IEC61850_7_4Namespace': UML124 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations::AbbrTermAny': UML125 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations::AbbrTermZ': UML126 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ProtectionEq::BusbarProt': UML127 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ProtectionEq::DirectionalProt': UML128 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ProtectionEq::DirectionalPowerProt': UML129 +2024-09-08 15:11:38,859 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ProtectionEq::LineDifferentialProt': UML130 +2024-09-08 15:11:38,860 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ProtectionEq::PowerFactorProt': UML131 +2024-09-08 15:11:38,860 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ControlEq::AlarmHandler': UML132 +2024-09-08 15:11:38,860 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MeasurementsAndMetering::ThreePhaseMeasurement': UML133 +2024-09-08 15:11:38,860 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'SystemWide::LogicalDeviceData': UML134 +2024-09-08 15:11:38,860 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'SystemWide::PhysicalDeviceData': UML135 +2024-09-08 15:11:38,860 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PrimaryEq::AuxiliaryNetwork': UML136 +2024-09-08 15:11:38,860 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PrimaryEq::GenericIO': UML137 +2024-09-08 15:11:38,860 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::HealthKind': UML138 +2024-09-08 15:11:38,860 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::BehaviourModeKind': UML139 +2024-09-08 15:11:38,860 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::CalcMethodKind': UML140 +2024-09-08 15:11:38,860 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::BaseKind': UML141 +2024-09-08 15:11:38,860 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedCDCs::ACTTransient': UML142 +2024-09-08 15:11:38,860 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedCDCs::SPSTransient': UML143 +2024-09-08 15:11:38,860 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'WG17::WG17UMLVersion': UML144 +2024-09-08 15:11:38,860 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'IEC51850_7_420::IEC61850_7_420Namespace': UML145 +2024-09-08 15:11:38,860 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::MaterialKind': UML146 +2024-09-08 15:11:38,860 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::MaterialTransitionKind': UML147 +2024-09-08 15:11:38,860 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::OtherKind': UML148 +2024-09-08 15:11:38,860 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations_410::AbbrTermA': UML149 +2024-09-08 15:11:38,860 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MyCimExtensions::DFD_External1': UML150 +2024-09-08 15:11:38,860 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MyCimExtensions::DFD_DataStore1': UML151 +2024-09-08 15:11:38,860 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Ext1::Fruit': UML152 +2024-09-08 15:11:38,860 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Ext1::FruitBinKind': UML153 +2024-09-08 15:11:38,860 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Ext1::Village': UML154 +2024-09-08 15:11:38,860 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Package with space::My class': UML155 +2024-09-08 15:11:38,860 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Package with space::Other-with_invalid name': UML156 +2024-09-08 15:11:38,860 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Ext2::Animal': UML157 +2024-09-08 15:11:38,861 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Topology::BusNameMarker': UML158 +2024-09-08 15:11:38,861 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::Terminal': UML159 +2024-09-08 15:11:38,861 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Topology::DumbSubterminal': UML160 +2024-09-08 15:11:38,861 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::BaseVoltage': UML161 +2024-09-08 15:11:38,861 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::BasePower': UML162 +2024-09-08 15:11:38,861 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::SubGeographicalRegion': UML163 +2024-09-08 15:11:38,861 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::geographicalRegion': UML164 +2024-09-08 15:11:38,861 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::OperatingParticipant': UML165 +2024-09-08 15:11:38,861 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PowerSystemResource': UML166 +2024-09-08 15:11:38,861 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::ConnectivityNodeContainer': UML167 +2024-09-08 15:11:38,861 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Ext1::Pear': UML168 +2024-09-08 15:11:38,861 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::EquipmentContainer': UML169 +2024-09-08 15:11:38,861 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::Bay': UML170 +2024-09-08 15:11:38,861 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::Substation': UML171 +2024-09-08 15:11:38,861 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::VoltageLevel': UML172 +2024-09-08 15:11:38,861 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::Equipment': UML173 +2024-09-08 15:11:38,861 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::ConductingEquipment': UML174 +2024-09-08 15:11:38,861 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Topology::ConnectivityNode': UML175 +2024-09-08 15:11:38,861 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Topology::TopologicalIsland': UML176 +2024-09-08 15:11:38,861 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Topology::TopologicalNode': UML177 +2024-09-08 15:11:38,861 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Other::MyClass': UML178 +2024-09-08 15:11:38,861 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Other::AttrDuplication': UML179 +2024-09-08 15:11:38,861 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::ServiceAccessPoint': UML180 +2024-09-08 15:11:38,862 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'GenericModel::GenLN0': UML181 +2024-09-08 15:11:38,862 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::FILEReference': UML182 +2024-09-08 15:11:38,862 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::LDReference': UML183 +2024-09-08 15:11:38,862 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::LNReference': UML184 +2024-09-08 15:11:38,862 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::CDCReference': UML185 +2024-09-08 15:11:38,862 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::FCDReference': UML186 +2024-09-08 15:11:38,862 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::FCDAReference': UML187 +2024-09-08 15:11:38,862 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::CBReference': UML188 +2024-09-08 15:11:38,862 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::LOGReference': UML189 +2024-09-08 15:11:38,862 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::LNOwnedDSReference': UML190 +2024-09-08 15:11:38,862 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::NonPersistentDSReference': UML191 +2024-09-08 15:11:38,862 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::HierarchyIEC61850Object': UML192 +2024-09-08 15:11:38,862 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::NamedIEC61850Object': UML193 +2024-09-08 15:11:38,862 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::LD': UML194 +2024-09-08 15:11:38,862 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::LN': UML195 +2024-09-08 15:11:38,862 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::LNPHD': UML196 +2024-09-08 15:11:38,862 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LNGroupL::LPHD': UML197 +2024-09-08 15:11:38,862 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::LN0': UML198 +2024-09-08 15:11:38,862 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LNGroupL::LLN0': UML199 +2024-09-08 15:11:38,862 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::LNDOM': UML200 +2024-09-08 15:11:38,862 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LogicalNodes::DomainLN': UML201 +2024-09-08 15:11:38,862 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LogicalNodes::StatisticsLN': UML202 +2024-09-08 15:11:38,862 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LNGroupG::GGIO': UML203 +2024-09-08 15:11:38,862 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LNGroupM::MMXU': UML204 +2024-09-08 15:11:38,862 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LogicalNodes::EquipmentInterfaceLN': UML205 +2024-09-08 15:11:38,862 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LNGroupZ::ZAXN': UML206 +2024-09-08 15:11:38,862 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LNGroupL::KXYZ': UML207 +2024-09-08 15:11:38,862 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LNGroupC::CALH': UML208 +2024-09-08 15:11:38,862 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LNGroupP::ProtectionLN': UML209 +2024-09-08 15:11:38,862 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LNGroupP::PDIF': UML210 +2024-09-08 15:11:38,862 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LNGroupP::PDIS': UML211 +2024-09-08 15:11:38,862 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LNGroupP::PDISExt': UML212 +2024-09-08 15:11:38,862 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LNGroupP::PDF2': UML213 +2024-09-08 15:11:38,862 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'LNGroupR::RDIR': UML214 +2024-09-08 15:11:38,862 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::CDC': UML215 +2024-09-08 15:11:38,862 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::PrimitiveCDC': UML216 +2024-09-08 15:11:38,862 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CommonDataClasses::BasePrimitiveCDC': UML217 +2024-09-08 15:11:38,862 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCServiceTracking::CST': UML218 +2024-09-08 15:11:38,862 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCServiceTracking::BTS': UML219 +2024-09-08 15:11:38,862 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCServiceTracking::CTS': UML220 +2024-09-08 15:11:38,862 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCServiceTracking::GTS': UML221 +2024-09-08 15:11:38,862 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCServiceTracking::LTS': UML222 +2024-09-08 15:11:38,862 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCServiceTracking::MTS': UML223 +2024-09-08 15:11:38,862 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCServiceTracking::NTS': UML224 +2024-09-08 15:11:38,862 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCServiceTracking::OTS': UML225 +2024-09-08 15:11:38,862 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCServiceTracking::STS': UML226 +2024-09-08 15:11:38,862 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCServiceTracking::UTS': UML227 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CommonDataClasses::SubstitutionCDC': UML228 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCStatusInfo::DPS': UML229 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCStatusInfo::ENS': UML230 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedCDCs::ENSBehaviourMode': UML231 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedCDCs::ENSHealth': UML232 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedCDCs::ENSEnumDA': UML233 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedCDCs_7_420::ENSMaterial': UML234 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedCDCs_7_420::ENSOther': UML235 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCAnalogueInfo::CMV': UML236 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCControl::ControllableCDC': UML237 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCControl::ENC': UML238 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedCDCs::ENCBehaviourMode': UML239 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedCDCs_7_420::ENCMaterial': UML240 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCControl::BAC': UML241 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCStatusInfo::EXY': UML242 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedCDCs::EXYBehaviourMode': UML243 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCStatusInfo::ACD': UML244 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCStatusInfo::HST': UML245 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCStatusSet::ENG': UML246 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedCDCs::ENGCalcMethod': UML247 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCDescription::LPL': UML248 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::ComposedCDC': UML249 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CommonDataClasses::BaseComposedCDC': UML250 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCAnalogueInfo::HarmonicMeasurandCDC': UML251 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CDCAnalogueInfo::HWYE': UML252 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::FCDA': UML253 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_BL': UML254 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::BOOLEAN_BL': UML255 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_CF': UML256 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::EnumFCDA_CF': UML257 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_CF_dchg': UML258 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::EnumFCDA_CF_dchg': UML259 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::EnumDA_CF_dchg': UML260 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::PhaseAngleReference_CF_dchg': UML261 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::BOOLEAN_CF_dchg': UML262 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::INT16U_CF_dchg': UML263 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::INT32U_CF_dchg': UML264 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::INT32_CF_dchg': UML265 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::RangeConfig_CF_dchg': UML266 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::INT16U_CF': UML267 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_DC': UML268 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::Point_DC': UML269 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::UNICODE_STRING255_DC': UML270 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_EX': UML271 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::VISIBLE_STRING255_EX': UML272 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_MX': UML273 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::EnumFCDA_MX': UML274 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_MX_dchg': UML275 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::AnalogueValue_MX_dchg': UML276 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::BOOLEAN_MX_dchg': UML277 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_MX_dchg_dupd': UML278 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::AnalogueValue_MX_dchg_dupd': UML279 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_MX_qchg': UML280 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::Quality_MX_qchg': UML281 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::AnalogueValue_MX': UML282 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_OR': UML283 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_OR_dchg': UML284 +2024-09-08 15:11:38,863 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::BOOLEAN_OR_dchg': UML285 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_SE': UML286 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_SE_dchg': UML287 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::EnumFCDA_SE_dchg': UML288 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::BOOLEAN_SE': UML289 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::Point_SE': UML290 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_SG': UML291 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_SG_dchg': UML292 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::EnumFCDA_SG_dchg': UML293 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::BOOLEAN_SG': UML294 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::Point_SG': UML295 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_SP': UML296 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_SP_dchg': UML297 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::BOOLEAN_SP_dchg': UML298 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::Point_SP': UML299 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_ST': UML300 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::EnumFCDA_ST': UML301 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_ST_dchg': UML302 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::EnumFCDA_ST_dchg': UML303 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::PackedEnumFCDA_SP_dchg': UML304 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::DpStatus_ST_dchg': UML305 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::EnumDA_ST_dchg': UML306 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::PhaseFaultDirection_ST_dchg': UML307 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::BOOLEAN_ST_dchg': UML308 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::INT32_ST_dchg': UML309 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_ST_dchg_dupd': UML310 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::EnumFCDA_ST_dchg_dupd': UML311 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::EnumDA_ST_dchg_dupd': UML312 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::INT32_ST_dchg_dupd': UML313 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_ST_dupd': UML314 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_ST_qchg': UML315 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::Quality_ST_qchg': UML316 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::TimeStamp_ST': UML317 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::FCDA_SV': UML318 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::EnumFCDA_SV': UML319 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModelFCsAndTrgOps::PackedEnumFCDA_SV': UML320 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::DpStatus_SV': UML321 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::EnumDA_SV': UML322 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::BOOLEAN_SV': UML323 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FCDAs::Quality_SV': UML324 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::DA': UML325 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::PrimitiveDA': UML326 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BasicDAs::PHYCOMADDR': UML327 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BasicDAs::ObjectReference': UML328 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BasicDAs::VISIBLE_STRING255': UML329 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BasicDAs::UNICODE_STRING255': UML330 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BasicDAs::INT32U': UML331 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BasicDAs::INT32': UML332 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BasicDAs::INT16U': UML333 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BasicDAs::FLOAT32': UML334 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BasicDAs::BOOLEAN': UML335 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::PackedPrimitiveDA': UML336 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BasicDAs::TriggerConditions': UML337 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BasicDAs::TimeStamp': UML338 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ConstructedDAs::Quality': UML339 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::EnumDA': UML340 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::PackedEnumDA': UML341 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BasicDAs::BsControl': UML342 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'BasicDAs::DpStatus': UML343 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ImplicitDAs::SIUnit': UML344 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ImplicitDAs::Multiplier': UML345 +2024-09-08 15:11:38,864 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ImplicitDAs::PhaseFaultDirection': UML346 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ImplicitDAs::PhaseAngleReference': UML347 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedDAs::BehaviourMode': UML348 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedDAs::CalcMethod': UML349 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedDAs::Health': UML350 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedDAs_7_420::Material': UML351 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedDAs_7_420::Material_control': UML352 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedDAs_7_420::Other': UML353 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::ComposedDA': UML354 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ConstructedDAs::AnalogueValue': UML355 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ConstructedDAs::RangeConfig': UML356 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ConstructedDAs::Unit': UML357 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ConstructedDAs::Point': UML358 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::DS': UML359 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::LNOwnedDS': UML360 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::ConfiguredDS': UML361 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::PersistentDS': UML362 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::NonPersistentDS': UML363 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::ControlBlock': UML364 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::RCB': UML365 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::BRCB': UML366 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::URCB': UML367 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::LCB': UML368 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::GCB': UML369 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::SVCB': UML370 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::MSVCB': UML371 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::USVCB': UML372 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::SGCB': UML373 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::LOG': UML374 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::IED': UML375 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::SERVER': UML376 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::FCD': UML377 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::FILE': UML378 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::TPAA': UML379 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'MetaModel::MCAA': UML380 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DerivedCDCs::SPCTransient': UML381 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::ExtBaseKind': UML382 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Ext1::Apple': UML383 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Ext1::Strawberry': UML384 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Ext2::Dog': UML385 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Ext2::Horse': UML386 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Currency.USD': UML387 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Currency.EUR': UML388 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Currency.AUD': UML389 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Currency.CAD': UML390 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Currency.CHF': UML391 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Currency.CNY': UML392 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Currency.DKK': UML393 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Currency.GBP': UML394 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Currency.JPY': UML395 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Currency.NOK': UML396 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Currency.RUR': UML397 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Currency.SEK': UML398 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Currency.INR': UML399 +2024-09-08 15:11:38,865 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::Currency.other': UML400 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitMultiplier.p': UML401 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitMultiplier.n': UML402 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitMultiplier.micro': UML403 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitMultiplier.m': UML404 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitMultiplier.c': UML405 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitMultiplier.d': UML406 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitMultiplier.k': UML407 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitMultiplier.M': UML408 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitMultiplier.G': UML409 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitMultiplier.T': UML410 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitMultiplier.none': UML411 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.VA': UML412 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.W': UML413 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.VAr': UML414 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.VAh': UML415 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.Wh': UML416 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.VArh': UML417 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.V': UML418 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.ohm': UML419 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.A': UML420 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.F': UML421 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.H': UML422 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.ºC': UML423 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.s': UML424 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.min': UML425 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.h': UML426 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.deg': UML427 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.rad': UML428 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.J': UML429 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.N': UML430 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.S': UML431 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.none': UML432 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.Hz': UML433 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.g': UML434 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.Pa': UML435 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.m': UML436 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.m2': UML437 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.m3': UML438 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.V/VAr': UML439 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.W/Hz': UML440 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.J/s': UML441 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.s-1': UML442 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.kg/J': UML443 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.W/s': UML444 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::UnitSymbol.Hz-1': UML445 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::WithSingleLiteral.singleLiteral': UML446 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::YesNo.Yes': UML447 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Domain::YesNo.No': UML448 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::BreakerConfiguration.singleBreaker': UML449 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::BreakerConfiguration.breakerAndAHalf': UML450 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::BreakerConfiguration.doubleBreaker': UML451 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::BreakerConfiguration.noBreaker': UML452 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::BusbarConfiguration.singleBus': UML453 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::BusbarConfiguration.doubleBus': UML454 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::BusbarConfiguration.mainWithTransfer': UML455 +2024-09-08 15:11:38,866 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::BusbarConfiguration.ringBus': UML456 +2024-09-08 15:11:38,867 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.ABCN': UML457 +2024-09-08 15:11:38,867 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.ABC': UML458 +2024-09-08 15:11:38,867 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.ABN': UML459 +2024-09-08 15:11:38,867 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.ACN': UML460 +2024-09-08 15:11:38,867 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.BCN': UML461 +2024-09-08 15:11:38,867 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.AB': UML462 +2024-09-08 15:11:38,867 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.AC': UML463 +2024-09-08 15:11:38,867 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.BC': UML464 +2024-09-08 15:11:38,867 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.AN': UML465 +2024-09-08 15:11:38,867 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.BN': UML466 +2024-09-08 15:11:38,867 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.CN': UML467 +2024-09-08 15:11:38,867 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.A': UML468 +2024-09-08 15:11:38,867 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.B': UML469 +2024-09-08 15:11:38,867 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.C': UML470 +2024-09-08 15:11:38,867 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.N': UML471 +2024-09-08 15:11:38,867 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.splitSecondary1N': UML472 +2024-09-08 15:11:38,867 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.splitSecondary2N': UML473 +2024-09-08 15:11:38,867 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Core::PhaseCode.splitSecondary12N': UML474 +2024-09-08 15:11:38,867 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Topology::TestEnum.J/m²': UML475 +2024-09-08 15:11:38,867 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Topology::TestEnum.µ': UML476 +2024-09-08 15:11:38,867 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithSomeIntCodes.lit10': UML477 +2024-09-08 15:11:38,867 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithSomeIntCodes.lit20noCode': UML478 +2024-09-08 15:11:38,867 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithSomeIntCodes.lit30': UML479 +2024-09-08 15:11:38,867 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithSomeIntCodes.lit40': UML480 +2024-09-08 15:11:38,867 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithSomeIntCodes.lit50': UML481 +2024-09-08 15:11:38,867 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithSomeIntCodes.lit60noCode': UML482 +2024-09-08 15:11:38,867 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithSomeIntCodes.lit70': UML483 +2024-09-08 15:11:38,867 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithStringCodes.str1': UML484 +2024-09-08 15:11:38,867 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithStringCodes.str2': UML485 +2024-09-08 15:11:38,867 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithStringCodes.str3noCode': UML486 +2024-09-08 15:11:38,867 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithStringCodes.str4': UML487 +2024-09-08 15:11:38,867 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithStringCodes.str5': UML488 +2024-09-08 15:11:38,867 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithNonUniqueCodes.c1': UML489 +2024-09-08 15:11:38,867 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithNonUniqueCodes.c2': UML490 +2024-09-08 15:11:38,867 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithNonUniqueCodes.c3': UML491 +2024-09-08 15:11:38,867 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithNonUniqueCodes.c4': UML492 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithNonUniqueCodes.c5': UML493 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithNonUniqueCodes.c6': UML494 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithNonUniqueCodes.c7': UML495 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TestEnums::EnumWithNonUniqueCodes.c8': UML496 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FunctionalConstraints::FcKind.ST': UML497 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FunctionalConstraints::FcKind.MX': UML498 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FunctionalConstraints::FcKind.SP': UML499 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FunctionalConstraints::FcKind.SV': UML500 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FunctionalConstraints::FcKind.CF': UML501 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FunctionalConstraints::FcKind.DC': UML502 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FunctionalConstraints::FcKind.SG': UML503 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FunctionalConstraints::FcKind.SE': UML504 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FunctionalConstraints::FcKind.SR': UML505 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FunctionalConstraints::FcKind.OR': UML506 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FunctionalConstraints::FcKind.BL': UML507 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FunctionalConstraints::FcKind.EX': UML508 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'FunctionalConstraints::FcKind.XX': UML509 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TriggerOptions::TrgOpKind.dchg': UML510 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TriggerOptions::TrgOpKind.qchg': UML511 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TriggerOptions::TrgOpKind.dupd': UML512 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'TriggerOptions::TrgOpKind.dchg, dupd': UML513 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ACSIEnums::BsControlKind.stop': UML514 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ACSIEnums::BsControlKind.lower': UML515 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ACSIEnums::BsControlKind.higher': UML516 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ACSIEnums::BsControlKind.reserved': UML517 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ACSIEnums::DpStatusKind.intermediateState': UML518 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ACSIEnums::DpStatusKind.offOrFalse': UML519 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ACSIEnums::DpStatusKind.onOrTrue': UML520 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ACSIEnums::DpStatusKind.badState': UML521 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::TimeAccuracyKind.T0': UML522 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::TimeAccuracyKind.T1': UML523 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::TimeAccuracyKind.T2': UML524 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::TimeAccuracyKind.T3': UML525 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::TimeAccuracyKind.T4': UML526 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::TimeAccuracyKind.T5': UML527 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'CoreTypes::TimeAccuracyKind.unspecified': UML528 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::ServiceFcKind.SP': UML529 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::ServiceFcKind.BR': UML530 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::ServiceFcKind.RP': UML531 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::ServiceFcKind.LG': UML532 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::ServiceFcKind.GO': UML533 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::ServiceFcKind.MS': UML534 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::ServiceFcKind.US': UML535 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ObjectReferences::ServiceFcKind.XX': UML536 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_BOOLEAN': UML537 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_INT8': UML538 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_INT8U': UML539 +2024-09-08 15:11:38,868 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_INT16': UML540 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_INT16U': UML541 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_INT24U': UML542 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_INT32': UML543 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_INT32U': UML544 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_INT64': UML545 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_FLOAT32': UML546 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_OCTET_STRING64': UML547 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_VISIBLE_STRING64': UML548 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_VISIBLE_STRING255': UML549 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_UNICODE_STRING255': UML550 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_TimeStamp': UML551 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.Quality': UML552 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_ObjectReference': UML553 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_PHYCOMADDR': UML554 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'AttrValues::AttrValueKind.P_TriggerConditions': UML555 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.M': UML556 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.O': UML557 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MFsubst': UML558 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.AtLeastOne(n)': UML559 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.AllOrNonePerGroup(n)': UML560 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.AtMostOne': UML561 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MF(sibling)': UML562 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.AllOnlyOneGroup(n)': UML563 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MOln0': UML564 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MFln0': UML565 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MOlnNs': UML566 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MOdataNs': UML567 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MOcdcNs': UML568 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MFscaledAV': UML569 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MFscaledMagV': UML570 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MFscaledAngV': UML571 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MFsg': UML572 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.OFsg': UML573 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MFsgAtLeastOne': UML574 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MFnsg': UML575 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.OFnsg': UML576 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MFnsgAtLeastOne': UML577 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MFrms': UML578 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.Mmulti': UML579 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.Omulti': UML580 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.OmultiRange(min, max)': UML581 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MOcond(condID)': UML582 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MF(condID)': UML583 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.OF(condID)': UML584 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'PresenceConditions::PresenceCondition.MOrootLD': UML585 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.none': UML586 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.m': UML587 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.kg': UML588 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.s': UML589 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.A': UML590 +2024-09-08 15:11:38,869 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.K': UML591 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.mol': UML592 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.cd': UML593 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.deg': UML594 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.rad': UML595 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.sr': UML596 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.Gy': UML597 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.Bq': UML598 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.°C': UML599 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.Sv': UML600 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.F': UML601 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.C': UML602 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.S': UML603 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.H': UML604 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.V': UML605 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.ohm': UML606 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.J': UML607 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.N': UML608 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.Hz': UML609 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.lx': UML610 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.Lm': UML611 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.Wb': UML612 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.T': UML613 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.W': UML614 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.Pa': UML615 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.m²': UML616 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.m³': UML617 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.m/s': UML618 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.m/s²': UML619 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.m³/s': UML620 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.m/m³': UML621 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.M': UML622 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.kg/m³': UML623 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.m²/s': UML624 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.W/m K': UML625 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.J/K': UML626 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.ppm': UML627 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.1/s': UML628 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.rad/s': UML629 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.W/m²': UML630 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.J/m²': UML631 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.S/m': UML632 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.K/s': UML633 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.Pa/s': UML634 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.J/kg K': UML635 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.VA': UML636 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.Watts': UML637 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.VAr': UML638 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.phi': UML639 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.cos(phi)': UML640 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.Vs': UML641 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.V²': UML642 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.As': UML643 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.A²': UML644 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.A²t': UML645 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.VAh': UML646 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.Wh': UML647 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.VArh': UML648 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.V/Hz': UML649 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.Hz/s': UML650 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.char': UML651 +2024-09-08 15:11:38,870 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.char/s': UML652 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.kgm²': UML653 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.dB': UML654 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.J/Wh': UML655 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.W/s': UML656 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.l/s': UML657 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::SIUnitKind.dBm': UML658 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.y': UML659 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.z': UML660 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.a': UML661 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.f': UML662 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.p': UML663 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.n': UML664 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.µ': UML665 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.m': UML666 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.c': UML667 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.d': UML668 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.none': UML669 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.da': UML670 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.h': UML671 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.k': UML672 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.M': UML673 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.G': UML674 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.T': UML675 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.P': UML676 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.E': UML677 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.Z': UML678 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::MultiplierKind.Y': UML679 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseFaultDirectionKind.unknown': UML680 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseFaultDirectionKind.forward': UML681 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseFaultDirectionKind.backward': UML682 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseAngleReferenceKind.Va': UML683 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseAngleReferenceKind.Vb': UML684 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseAngleReferenceKind.Vc': UML685 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseAngleReferenceKind.Aa': UML686 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseAngleReferenceKind.Ab': UML687 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseAngleReferenceKind.Ac': UML688 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseAngleReferenceKind.Vab': UML689 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseAngleReferenceKind.Vbc': UML690 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseAngleReferenceKind.Vca': UML691 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseAngleReferenceKind.Vother': UML692 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseAngleReferenceKind.Aother': UML693 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DAEnums::PhaseAngleReferenceKind.Synchrophasor': UML694 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ConstructedDAs::ValidityKind.good': UML695 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ConstructedDAs::ValidityKind.invalid': UML696 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ConstructedDAs::ValidityKind.reserved': UML697 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ConstructedDAs::ValidityKind.questionable': UML698 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ConstructedDAs::SourceKind.process': UML699 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'ConstructedDAs::SourceKind.substituted': UML700 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations::AbbrTermAny.A': UML701 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations::AbbrTermAny.Z': UML702 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations::AbbrTermAny.aDummy': UML703 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations::AbbrTermAny.Alm': UML704 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations::AbbrTermAny.Z1': UML705 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations::AbbrTermAny.Amp': UML706 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations::AbbrTermAny.ppm': UML707 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations::AbbrTermAny.km': UML708 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations::AbbrTermZ.Z0': UML709 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations::AbbrTermZ.Zro': UML710 +2024-09-08 15:11:38,871 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::HealthKind.Ok': UML711 +2024-09-08 15:11:38,872 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::HealthKind.Warning': UML712 +2024-09-08 15:11:38,872 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::HealthKind.Alarm': UML713 +2024-09-08 15:11:38,872 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::BehaviourModeKind.on': UML714 +2024-09-08 15:11:38,872 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::BehaviourModeKind.on-blocked': UML715 +2024-09-08 15:11:38,872 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::BehaviourModeKind.test': UML716 +2024-09-08 15:11:38,872 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::BehaviourModeKind.test/blocked': UML717 +2024-09-08 15:11:38,872 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::BehaviourModeKind.off': UML718 +2024-09-08 15:11:38,872 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::CalcMethodKind.UNSPECIFIED': UML719 +2024-09-08 15:11:38,872 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::CalcMethodKind.TRUE_RMS': UML720 +2024-09-08 15:11:38,872 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::CalcMethodKind.PEAK_FUNDAMENTAL': UML721 +2024-09-08 15:11:38,872 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::CalcMethodKind.RMS_FUNDAMENTAL': UML722 +2024-09-08 15:11:38,872 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::CalcMethodKind.MIN': UML723 +2024-09-08 15:11:38,872 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::CalcMethodKind.MAX': UML724 +2024-09-08 15:11:38,872 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::CalcMethodKind.AVG': UML725 +2024-09-08 15:11:38,872 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::CalcMethodKind.SDV': UML726 +2024-09-08 15:11:38,872 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::CalcMethodKind.PREDICTION': UML727 +2024-09-08 15:11:38,872 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::CalcMethodKind.RATE': UML728 +2024-09-08 15:11:38,872 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::BaseKind.bk1': UML729 +2024-09-08 15:11:38,872 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::BaseKind.bk2': UML730 +2024-09-08 15:11:38,872 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums::BaseKind.bk3': UML731 +2024-09-08 15:11:38,872 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::MaterialKind.mat1': UML732 +2024-09-08 15:11:38,872 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::MaterialKind.mat2': UML733 +2024-09-08 15:11:38,872 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::MaterialKind.mat3': UML734 +2024-09-08 15:11:38,872 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::MaterialTransitionKind.trans1': UML735 +2024-09-08 15:11:38,872 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::MaterialTransitionKind.trans2': UML736 +2024-09-08 15:11:38,872 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::MaterialTransitionKind.trans3': UML737 +2024-09-08 15:11:38,872 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::OtherKind.mat1': UML738 +2024-09-08 15:11:38,872 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::OtherKind.mat2': UML739 +2024-09-08 15:11:38,872 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::OtherKind.mat3': UML740 +2024-09-08 15:11:38,872 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations_410::AbbrTermA.Abc': UML741 +2024-09-08 15:11:38,872 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations_410::AbbrTermA.Alm2': UML742 +2024-09-08 15:11:38,872 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Abbreviations_410::AbbrTermA.Amp': UML743 +2024-09-08 15:11:38,872 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Ext1::FruitBinKind.plastic': UML744 +2024-09-08 15:11:38,872 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Ext1::FruitBinKind.straw': UML745 +2024-09-08 15:11:38,872 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'Ext1::FruitBinKind.glass': UML746 +2024-09-08 15:11:38,872 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::ExtBaseKind.ebk1': UML747 +2024-09-08 15:11:38,872 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::ExtBaseKind.ebk2': UML748 +2024-09-08 15:11:38,872 [main] TRACE BookmarkRegistry - BR: added new bookmark ID for 'DOEnums_7_420::ExtBaseKind.ebk3': UML749 +2024-09-08 15:11:38,908 [main] INFO PackageDocImpl - collecting doc for package TC57CIMProfiles ... +2024-09-08 15:11:38,918 [main] INFO PackageDocImpl - collecting doc for package TC57CIM ... +2024-09-08 15:11:38,918 [main] INFO PackageDocImpl - collecting doc for package IEC61970 ... +2024-09-08 15:11:38,919 [main] INFO DocCollectorImpl - >> retained scoped CIM/IEC61970CIM14v12/IEC61970 +2024-09-08 15:11:38,958 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbsoluteDateTime, hphSpec = 'aaùAbsoluteDateTimeùUML11ùdd' +2024-09-08 15:11:38,959 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,966 [main] INFO PackageDocImpl - collecting doc for package Domain ... +2024-09-08 15:11:38,967 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Float, hphSpec = 'aaùFloatùUML17ùdd' +2024-09-08 15:11:38,967 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitSymbol, hphSpec = 'aaùUnitSymbolùUML24ùdd' +2024-09-08 15:11:38,967 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitMultiplier, hphSpec = 'aaùUnitMultiplierùUML23ùdd' +2024-09-08 15:11:38,968 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitSymbol, hphSpec = 'aaùUnitSymbolùUML24ùdd' +2024-09-08 15:11:38,968 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitMultiplier, hphSpec = 'aaùUnitMultiplierùUML23ùdd' +2024-09-08 15:11:38,968 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Float, hphSpec = 'aaùFloatùUML17ùdd' +2024-09-08 15:11:38,968 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitSymbol, hphSpec = 'aaùUnitSymbolùUML24ùdd' +2024-09-08 15:11:38,968 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitMultiplier, hphSpec = 'aaùUnitMultiplierùUML23ùdd' +2024-09-08 15:11:38,973 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Float, hphSpec = 'aaùFloatùUML17ùdd' +2024-09-08 15:11:38,973 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Currency, hphSpec = 'aaùCurrencyùUML16ùdd' +2024-09-08 15:11:38,973 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitMultiplier, hphSpec = 'aaùUnitMultiplierùUML23ùdd' +2024-09-08 15:11:38,974 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Float, hphSpec = 'aaùFloatùUML17ùdd' +2024-09-08 15:11:38,974 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitSymbol, hphSpec = 'aaùUnitSymbolùUML24ùdd' +2024-09-08 15:11:38,974 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitMultiplier, hphSpec = 'aaùUnitMultiplierùUML23ùdd' +2024-09-08 15:11:38,975 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Float, hphSpec = 'aaùFloatùUML17ùdd' +2024-09-08 15:11:38,975 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitSymbol, hphSpec = 'aaùUnitSymbolùUML24ùdd' +2024-09-08 15:11:38,975 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitMultiplier, hphSpec = 'aaùUnitMultiplierùUML23ùdd' +2024-09-08 15:11:38,978 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Float, hphSpec = 'aaùFloatùUML17ùdd' +2024-09-08 15:11:38,978 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitSymbol, hphSpec = 'aaùUnitSymbolùUML24ùdd' +2024-09-08 15:11:38,978 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitMultiplier, hphSpec = 'aaùUnitMultiplierùUML23ùdd' +2024-09-08 15:11:38,978 [main] INFO PackageDocImpl - collecting doc for package Core ... +2024-09-08 15:11:38,979 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,979 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ApparentPower, hphSpec = 'aaùApparentPowerùUML14ùdd' +2024-09-08 15:11:38,979 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,979 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,979 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,979 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,979 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,979 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,979 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,979 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-08 15:11:38,979 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-08 15:11:38,979 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,979 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,979 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,979 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,980 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,980 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,980 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-08 15:11:38,980 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-08 15:11:38,980 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitSymbol, hphSpec = 'aaùUnitSymbolùUML24ùdd' +2024-09-08 15:11:38,980 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-08 15:11:38,980 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConductingEquipment, hphSpec = 'aaùConductingEquipmentùUML174ùdd' +2024-09-08 15:11:38,980 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VoltageLevel, hphSpec = 'aaùVoltageLevelùUML172ùdd' +2024-09-08 15:11:38,980 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TopologicalNode, hphSpec = 'aaùTopologicalNodeùUML177ùdd' +2024-09-08 15:11:38,980 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MyClass, hphSpec = 'aaùMyClassùUML178ùdd' +2024-09-08 15:11:38,980 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-08 15:11:38,980 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AttrDuplication, hphSpec = 'aaùAttrDuplicationùUML179ùdd' +2024-09-08 15:11:38,980 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-08 15:11:38,980 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EquipmentContainer, hphSpec = 'aaùEquipmentContainerùUML169ùdd' +2024-09-08 15:11:38,980 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNodeContainer, hphSpec = 'aaùConnectivityNodeContainerùUML167ùdd' +2024-09-08 15:11:38,980 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,980 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,980 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Pear, hphSpec = 'aaùPearùUML168ùdd' +2024-09-08 15:11:38,980 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Fruit, hphSpec = 'aaùFruitùUML152ùdd' +2024-09-08 15:11:38,981 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-08 15:11:38,981 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-08 15:11:38,981 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BreakerConfiguration, hphSpec = 'aaùBreakerConfigurationùUML28ùdd' +2024-09-08 15:11:38,981 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BusbarConfiguration, hphSpec = 'aaùBusbarConfigurationùUML29ùdd' +2024-09-08 15:11:38,981 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = YesNo, hphSpec = 'aaùYesNoùUML27ùdd' +2024-09-08 15:11:38,981 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = YesNo, hphSpec = 'aaùYesNoùUML27ùdd' +2024-09-08 15:11:38,981 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,981 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,981 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,981 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,981 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,981 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,981 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,981 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,984 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Substation, hphSpec = 'aaùSubstationùUML171ùdd' +2024-09-08 15:11:38,984 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VoltageLevel, hphSpec = 'aaùVoltageLevelùUML172ùdd' +2024-09-08 15:11:38,984 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Equipment, hphSpec = 'aaùEquipmentùUML173ùdd' +2024-09-08 15:11:38,984 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EquipmentContainer, hphSpec = 'aaùEquipmentContainerùUML169ùdd' +2024-09-08 15:11:38,985 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNode, hphSpec = 'aaùConnectivityNodeùUML175ùdd' +2024-09-08 15:11:38,985 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNodeContainer, hphSpec = 'aaùConnectivityNodeContainerùUML167ùdd' +2024-09-08 15:11:38,985 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TopologicalNode, hphSpec = 'aaùTopologicalNodeùUML177ùdd' +2024-09-08 15:11:38,985 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNodeContainer, hphSpec = 'aaùConnectivityNodeContainerùUML167ùdd' +2024-09-08 15:11:38,985 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OperatingShare, hphSpec = 'aaùOperatingShareùUML30ùdd' +2024-09-08 15:11:38,985 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,985 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Apple, hphSpec = 'aaùAppleùUML383ùdd' +2024-09-08 15:11:38,985 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Pear, hphSpec = 'aaùPearùUML168ùdd' +2024-09-08 15:11:38,985 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Apple, hphSpec = 'aaùAppleùUML383ùdd' +2024-09-08 15:11:38,985 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Pear, hphSpec = 'aaùPearùUML168ùdd' +2024-09-08 15:11:38,985 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,985 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,985 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,985 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,985 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Equipment, hphSpec = 'aaùEquipmentùUML173ùdd' +2024-09-08 15:11:38,985 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,985 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,985 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PhaseCode, hphSpec = 'aaùPhaseCodeùUML31ùdd' +2024-09-08 15:11:38,985 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-08 15:11:38,986 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Equipment, hphSpec = 'aaùEquipmentùUML173ùdd' +2024-09-08 15:11:38,986 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,986 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,986 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,986 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,986 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,986 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,986 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,986 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,986 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Terminal, hphSpec = 'aaùTerminalùUML159ùdd' +2024-09-08 15:11:38,986 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EquipmentContainer, hphSpec = 'aaùEquipmentContainerùUML169ùdd' +2024-09-08 15:11:38,986 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Equipment, hphSpec = 'aaùEquipmentùUML173ùdd' +2024-09-08 15:11:38,986 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OperatingShare, hphSpec = 'aaùOperatingShareùUML30ùdd' +2024-09-08 15:11:38,986 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,986 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,986 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,986 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,986 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,986 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,986 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,986 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,986 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,986 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,986 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,986 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,987 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,987 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,987 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,987 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNode, hphSpec = 'aaùConnectivityNodeùUML175ùdd' +2024-09-08 15:11:38,987 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TopologicalNode, hphSpec = 'aaùTopologicalNodeùUML177ùdd' +2024-09-08 15:11:38,987 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OperatingShare, hphSpec = 'aaùOperatingShareùUML30ùdd' +2024-09-08 15:11:38,987 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,987 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,987 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,987 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,987 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,987 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,987 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,987 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-08 15:11:38,987 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,987 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,987 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,987 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,987 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,987 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,987 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,987 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,988 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EquipmentContainer, hphSpec = 'aaùEquipmentContainerùUML169ùdd' +2024-09-08 15:11:38,988 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OperatingShare, hphSpec = 'aaùOperatingShareùUML30ùdd' +2024-09-08 15:11:38,988 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,988 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,988 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,988 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,988 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,988 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNodeContainer, hphSpec = 'aaùConnectivityNodeContainerùUML167ùdd' +2024-09-08 15:11:38,988 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,988 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,988 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Pear, hphSpec = 'aaùPearùUML168ùdd' +2024-09-08 15:11:38,988 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Fruit, hphSpec = 'aaùFruitùUML152ùdd' +2024-09-08 15:11:38,988 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,988 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,988 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,988 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,988 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,988 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,988 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,988 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,988 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Equipment, hphSpec = 'aaùEquipmentùUML173ùdd' +2024-09-08 15:11:38,988 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNode, hphSpec = 'aaùConnectivityNodeùUML175ùdd' +2024-09-08 15:11:38,988 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNodeContainer, hphSpec = 'aaùConnectivityNodeContainerùUML167ùdd' +2024-09-08 15:11:38,988 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TopologicalNode, hphSpec = 'aaùTopologicalNodeùUML177ùdd' +2024-09-08 15:11:38,988 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNodeContainer, hphSpec = 'aaùConnectivityNodeContainerùUML167ùdd' +2024-09-08 15:11:38,989 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OperatingShare, hphSpec = 'aaùOperatingShareùUML30ùdd' +2024-09-08 15:11:38,989 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,989 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Apple, hphSpec = 'aaùAppleùUML383ùdd' +2024-09-08 15:11:38,989 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Pear, hphSpec = 'aaùPearùUML168ùdd' +2024-09-08 15:11:38,989 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Apple, hphSpec = 'aaùAppleùUML383ùdd' +2024-09-08 15:11:38,989 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Pear, hphSpec = 'aaùPearùUML168ùdd' +2024-09-08 15:11:38,989 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,989 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,989 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,989 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,989 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,989 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,989 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,989 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,989 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,989 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,989 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,989 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubGeographicalRegion, hphSpec = 'aaùSubGeographicalRegionùUML163ùdd' +2024-09-08 15:11:38,989 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,990 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,990 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,990 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,990 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,990 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,990 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,990 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OperatingShare, hphSpec = 'aaùOperatingShareùUML30ùdd' +2024-09-08 15:11:38,990 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PerCent, hphSpec = 'aaùPerCentùUML20ùdd' +2024-09-08 15:11:38,991 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OperatingParticipant, hphSpec = 'aaùOperatingParticipantùUML165ùdd' +2024-09-08 15:11:38,991 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,992 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,992 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,992 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,992 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,992 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,992 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,992 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,992 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,992 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OperatingShare, hphSpec = 'aaùOperatingShareùUML30ùdd' +2024-09-08 15:11:38,992 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,993 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,993 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,993 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,993 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,993 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,993 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,993 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Substation, hphSpec = 'aaùSubstationùUML171ùdd' +2024-09-08 15:11:38,993 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = geographicalRegion, hphSpec = 'aaùgeographicalRegionùUML164ùdd' +2024-09-08 15:11:38,993 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EquipmentContainer, hphSpec = 'aaùEquipmentContainerùUML169ùdd' +2024-09-08 15:11:38,993 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNodeContainer, hphSpec = 'aaùConnectivityNodeContainerùUML167ùdd' +2024-09-08 15:11:38,993 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,993 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,993 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Pear, hphSpec = 'aaùPearùUML168ùdd' +2024-09-08 15:11:38,993 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Fruit, hphSpec = 'aaùFruitùUML152ùdd' +2024-09-08 15:11:38,993 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,993 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,993 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,994 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,994 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,994 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,994 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,994 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,994 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VoltageLevel, hphSpec = 'aaùVoltageLevelùUML172ùdd' +2024-09-08 15:11:38,994 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Bay, hphSpec = 'aaùBayùUML170ùdd' +2024-09-08 15:11:38,994 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubGeographicalRegion, hphSpec = 'aaùSubGeographicalRegionùUML163ùdd' +2024-09-08 15:11:38,994 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Equipment, hphSpec = 'aaùEquipmentùUML173ùdd' +2024-09-08 15:11:38,994 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EquipmentContainer, hphSpec = 'aaùEquipmentContainerùUML169ùdd' +2024-09-08 15:11:38,994 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNode, hphSpec = 'aaùConnectivityNodeùUML175ùdd' +2024-09-08 15:11:38,994 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNodeContainer, hphSpec = 'aaùConnectivityNodeContainerùUML167ùdd' +2024-09-08 15:11:38,994 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TopologicalNode, hphSpec = 'aaùTopologicalNodeùUML177ùdd' +2024-09-08 15:11:38,994 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNodeContainer, hphSpec = 'aaùConnectivityNodeContainerùUML167ùdd' +2024-09-08 15:11:38,994 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OperatingShare, hphSpec = 'aaùOperatingShareùUML30ùdd' +2024-09-08 15:11:38,994 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,994 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Apple, hphSpec = 'aaùAppleùUML383ùdd' +2024-09-08 15:11:38,994 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Pear, hphSpec = 'aaùPearùUML168ùdd' +2024-09-08 15:11:38,994 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Apple, hphSpec = 'aaùAppleùUML383ùdd' +2024-09-08 15:11:38,994 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Pear, hphSpec = 'aaùPearùUML168ùdd' +2024-09-08 15:11:38,994 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,994 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,994 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,995 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,995 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,995 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-08 15:11:38,995 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML18ùdd' +2024-09-08 15:11:38,995 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,995 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,995 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,995 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,995 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,995 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,995 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConductingEquipment, hphSpec = 'aaùConductingEquipmentùUML174ùdd' +2024-09-08 15:11:38,995 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNode, hphSpec = 'aaùConnectivityNodeùUML175ùdd' +2024-09-08 15:11:38,995 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TopologicalNode, hphSpec = 'aaùTopologicalNodeùUML177ùdd' +2024-09-08 15:11:38,995 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,996 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EquipmentContainer, hphSpec = 'aaùEquipmentContainerùUML169ùdd' +2024-09-08 15:11:38,996 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNodeContainer, hphSpec = 'aaùConnectivityNodeContainerùUML167ùdd' +2024-09-08 15:11:38,996 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,996 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,996 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Pear, hphSpec = 'aaùPearùUML168ùdd' +2024-09-08 15:11:38,996 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Fruit, hphSpec = 'aaùFruitùUML152ùdd' +2024-09-08 15:11:38,996 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Voltage, hphSpec = 'aaùVoltageùUML25ùdd' +2024-09-08 15:11:38,996 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Voltage, hphSpec = 'aaùVoltageùUML25ùdd' +2024-09-08 15:11:38,996 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,996 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,996 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,996 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,996 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,996 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,996 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,996 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:38,996 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseVoltage, hphSpec = 'aaùBaseVoltageùUML161ùdd' +2024-09-08 15:11:38,996 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Bay, hphSpec = 'aaùBayùUML170ùdd' +2024-09-08 15:11:38,996 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Substation, hphSpec = 'aaùSubstationùUML171ùdd' +2024-09-08 15:11:38,996 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Equipment, hphSpec = 'aaùEquipmentùUML173ùdd' +2024-09-08 15:11:38,996 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EquipmentContainer, hphSpec = 'aaùEquipmentContainerùUML169ùdd' +2024-09-08 15:11:38,996 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNode, hphSpec = 'aaùConnectivityNodeùUML175ùdd' +2024-09-08 15:11:38,996 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNodeContainer, hphSpec = 'aaùConnectivityNodeContainerùUML167ùdd' +2024-09-08 15:11:38,996 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TopologicalNode, hphSpec = 'aaùTopologicalNodeùUML177ùdd' +2024-09-08 15:11:38,996 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNodeContainer, hphSpec = 'aaùConnectivityNodeContainerùUML167ùdd' +2024-09-08 15:11:38,996 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OperatingShare, hphSpec = 'aaùOperatingShareùUML30ùdd' +2024-09-08 15:11:38,997 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,997 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Apple, hphSpec = 'aaùAppleùUML383ùdd' +2024-09-08 15:11:38,997 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Pear, hphSpec = 'aaùPearùUML168ùdd' +2024-09-08 15:11:38,997 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Apple, hphSpec = 'aaùAppleùUML383ùdd' +2024-09-08 15:11:38,997 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Pear, hphSpec = 'aaùPearùUML168ùdd' +2024-09-08 15:11:38,997 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,997 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,997 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,997 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:38,997 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,997 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:38,997 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:39,005 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Bay, hphSpec = 'aaùBayùUML170ùdd' +2024-09-08 15:11:39,005 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = YesNo, hphSpec = 'aaùYesNoùUML27ùdd' +2024-09-08 15:11:39,005 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:39,005 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:39,005 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:39,005 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:39,005 [main] DEBUG DataIndexDoc - Attribute 'basePower' defined on multiple classes in and under 'Core' - may be possible to avoid duplication by using inheritance. +2024-09-08 15:11:39,005 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseVoltage, hphSpec = 'aaùBaseVoltageùUML161ùdd' +2024-09-08 15:11:39,005 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePower, hphSpec = 'aaùBasePowerùUML162ùdd' +2024-09-08 15:11:39,005 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-08 15:11:39,005 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ApparentPower, hphSpec = 'aaùApparentPowerùUML14ùdd' +2024-09-08 15:11:39,005 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Bay, hphSpec = 'aaùBayùUML170ùdd' +2024-09-08 15:11:39,006 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-08 15:11:39,006 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Bay, hphSpec = 'aaùBayùUML170ùdd' +2024-09-08 15:11:39,006 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-08 15:11:39,006 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Bay, hphSpec = 'aaùBayùUML170ùdd' +2024-09-08 15:11:39,006 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BreakerConfiguration, hphSpec = 'aaùBreakerConfigurationùUML28ùdd' +2024-09-08 15:11:39,006 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Bay, hphSpec = 'aaùBayùUML170ùdd' +2024-09-08 15:11:39,006 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BusbarConfiguration, hphSpec = 'aaùBusbarConfigurationùUML29ùdd' +2024-09-08 15:11:39,006 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Terminal, hphSpec = 'aaùTerminalùUML159ùdd' +2024-09-08 15:11:39,006 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-08 15:11:39,006 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VoltageLevel, hphSpec = 'aaùVoltageLevelùUML172ùdd' +2024-09-08 15:11:39,006 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Voltage, hphSpec = 'aaùVoltageùUML25ùdd' +2024-09-08 15:11:39,006 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VoltageLevel, hphSpec = 'aaùVoltageLevelùUML172ùdd' +2024-09-08 15:11:39,006 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Voltage, hphSpec = 'aaùVoltageùUML25ùdd' +2024-09-08 15:11:39,006 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:39,006 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:39,006 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:39,006 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:39,007 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Equipment, hphSpec = 'aaùEquipmentùUML173ùdd' +2024-09-08 15:11:39,007 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-08 15:11:39,007 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OperatingShare, hphSpec = 'aaùOperatingShareùUML30ùdd' +2024-09-08 15:11:39,007 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PerCent, hphSpec = 'aaùPerCentùUML20ùdd' +2024-09-08 15:11:39,007 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConductingEquipment, hphSpec = 'aaùConductingEquipmentùUML174ùdd' +2024-09-08 15:11:39,007 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PhaseCode, hphSpec = 'aaùPhaseCodeùUML31ùdd' +2024-09-08 15:11:39,007 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Terminal, hphSpec = 'aaùTerminalùUML159ùdd' +2024-09-08 15:11:39,007 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML18ùdd' +2024-09-08 15:11:39,007 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Bay, hphSpec = 'aaùBayùUML170ùdd' +2024-09-08 15:11:39,007 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = YesNo, hphSpec = 'aaùYesNoùUML27ùdd' +2024-09-08 15:11:39,007 [main] INFO PackageDocImpl - collected data index for Core ... +2024-09-08 15:11:39,007 [main] TRACE PackageDocImpl - org.tanjakostic.jcleancim.docgen.collector.impl.DataIndexDoc@1b7f657Data semantics + + shows all attributes defined on classes of Core package. +Attributes defined on classes of Core package +"Name" | "Type" | "(Used in) Description" +"TestYesNo1" | "aaùYesNoùUML27ùdd" | "(aaùBayùUML170ùdd) Indicates the presence/absence of energy measurements." +"aliasName" | "aaùStringùUML22ùdd" | "(aaùIdentifiedObjectùUML32ùdd) The aliasName is free text human readable name of the object alternative to IdentifiedObject.name. It may be non unique and may not correlate to a naming hierarchy. +The attribute aliasName is retained because of backwards compatibility between CIM relases. It is however recommended to replace aliasName with the Name class as aliasName is planned for retirement at a future time." +"attr" | "aaùStringùUML22ùdd" | "(aaùPowerSystemResourceùUML166ùdd) (deprecated) This is to test whether deprecated attribute gets its (deprecated) printed in Word." +"basePower" | "aaùBooleanùUML15ùdd, aaùApparentPowerùUML14ùdd" | "(aaùBaseVoltageùUML161ùdd) This is to test whether we print correctly multiple attributes of the same name (defined on different classes) within the data index table. +(aaùBasePowerùUML162ùdd) definition of base power." +"bayEnergyMeasFlag" | "aaùBooleanùUML15ùdd" | "(aaùBayùUML170ùdd) Indicates the presence/absence of energy measurements." +"bayPowerMeasFlag" | "aaùBooleanùUML15ùdd" | "(aaùBayùUML170ùdd) Indicates the presence/absence of active/reactive power measurements." +"breakerConfiguration" | "aaùBreakerConfigurationùUML28ùdd" | "(aaùBayùUML170ùdd) Breaker configuration." +"busBarConfiguration" | "aaùBusbarConfigurationùUML29ùdd" | "(aaùBayùUML170ùdd) Bus bar configuration." +"connected" | "aaùBooleanùUML15ùdd" | "(aaùTerminalùUML159ùdd) The terminal connection status. True implies the terminal is connected, and false implies the terminal is not connected. This is the result of topoplogical processing of a detailed Connectivity node and Switch model whether present in the model or not. A terminal that is not connected cannot support a current flow. A terminal that is connected may have flow. In general a multi-terminal device may simultaneously have connected and disconnected terminals. No other aspect of the algorithm" +"highVoltageLimit" | "aaùVoltageùUML25ùdd" | "(aaùVoltageLevelùUML172ùdd) The bus bar's high voltage limit" +"lowVoltageLimit" | "aaùVoltageùUML25ùdd" | "(aaùVoltageLevelùUML172ùdd) The bus bar's low voltage limit" +"mRID" | "aaùStringùUML22ùdd" | "(aaùIdentifiedObjectùUML32ùdd) Master resource identifier issued by a model authority. The mRID must semantically be a UUID as specified in RFC 4122. The mRID is globally unique. +For CIMXML data files in RDF syntax, the mRID is mapped to rdf:ID or rdf:about attributes that identify CIM object elements." +"name" | "aaùStringùUML22ùdd" | "(aaùIdentifiedObjectùUML32ùdd) The name is any free human readable and possibly non unique text naming the object." +"normaIlyInService" | "aaùBooleanùUML15ùdd" | "(aaùEquipmentùUML173ùdd) The equipment is normally in service." +"packagePrivateIsDC" | "" | "" +"percentage" | "aaùPerCentùUML20ùdd" | "(aaùOperatingShareùUML30ùdd) Percentage ownership for this device. The percentage indicates the percentage ownership of the PSROwner for the PowerSystemResource. The total percentage ownership for a PowerSystemResource should add to 100%." +"phases" | "aaùPhaseCodeùUML31ùdd" | "(aaùConductingEquipmentùUML174ùdd) Describes the phases carried by a conducting equipment." +"privateDummy" | "" | "" +"protectedNominalVoltage" | "" | "" +"sequenceNumber" | "aaùIntegerùUML18ùdd" | "(aaùTerminalùUML159ùdd) The orientation of the terminal connections for a multiple terminal conducting equipment. The sequence numbering starts with 1 and additional terminals should follow in increasing order. The first terminal is the "starting point" for a two terminal branch. In the case of class TransformerWinding only one terminal is used so its sequenceNumber must be 1." +"testYesNo2" | "aaùYesNoùUML27ùdd" | "(aaùBayùUML170ùdd) Indicates the presence/absence of energy measurements." + +2024-09-08 15:11:39,007 [main] INFO PackageDocImpl - collecting doc for package Topology ... +2024-09-08 15:11:39,008 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Terminal, hphSpec = 'aaùTerminalùUML159ùdd' +2024-09-08 15:11:39,008 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:39,008 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-08 15:11:39,008 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Terminal, hphSpec = 'aaùTerminalùUML159ùdd' +2024-09-08 15:11:39,008 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML18ùdd' +2024-09-08 15:11:39,008 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Terminal, hphSpec = 'aaùTerminalùUML159ùdd' +2024-09-08 15:11:39,008 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:39,008 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:39,008 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:39,008 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:39,008 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:39,008 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:39,008 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConductingEquipment, hphSpec = 'aaùConductingEquipmentùUML174ùdd' +2024-09-08 15:11:39,008 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Terminal, hphSpec = 'aaùTerminalùUML159ùdd' +2024-09-08 15:11:39,008 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNode, hphSpec = 'aaùConnectivityNodeùUML175ùdd' +2024-09-08 15:11:39,008 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Terminal, hphSpec = 'aaùTerminalùUML159ùdd' +2024-09-08 15:11:39,008 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TopologicalNode, hphSpec = 'aaùTopologicalNodeùUML177ùdd' +2024-09-08 15:11:39,008 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Terminal, hphSpec = 'aaùTerminalùUML159ùdd' +2024-09-08 15:11:39,008 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:39,008 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Terminal, hphSpec = 'aaùTerminalùUML159ùdd' +2024-09-08 15:11:39,008 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:39,009 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML18ùdd' +2024-09-08 15:11:39,009 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML18ùdd' +2024-09-08 15:11:39,009 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML18ùdd' +2024-09-08 15:11:39,009 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML18ùdd' +2024-09-08 15:11:39,009 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:39,009 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:39,009 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:39,009 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:39,009 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:39,009 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:39,009 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:39,009 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:39,009 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:39,009 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:39,009 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:39,009 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:39,009 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:39,009 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNodeContainer, hphSpec = 'aaùConnectivityNodeContainerùUML167ùdd' +2024-09-08 15:11:39,010 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TopologicalNode, hphSpec = 'aaùTopologicalNodeùUML177ùdd' +2024-09-08 15:11:39,010 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Terminal, hphSpec = 'aaùTerminalùUML159ùdd' +2024-09-08 15:11:39,010 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BusNameMarker, hphSpec = 'aaùBusNameMarkerùUML158ùdd' +2024-09-08 15:11:39,010 [main] INFO ClassDocImpl - ----------------------- in ClassDocImpl() ctor: +2024-09-08 15:11:39,010 [main] INFO ClassDocImpl - RAW: +(paraStart)Some intro - next 2 lines are empty.(paraEnd) +(paraStart)This is a (red) test class to exercise the "quasi" mark-up that EA java API returns from its various getNotes() methods. Using its provided method to return raw text is very slow.(paraEnd) +(paraStart)Here is the unordered list with two items:(paraEnd) +- list test +- bold list test +(paraStart)This the paragraph after a list.(paraEnd) +(paraStart)Follows the numbered list:(paraEnd) +1. first numbered item +2. italic numbered test +3. RTY-8-dws2=56 (RTY**-8-dws subscript 2=56 +(paraStart)Below we test one bulleted and one numbered item:(paraEnd) +- bulleted +1. numbered +(paraStart)And the inverse, with two numbered items (second is empty) and two bulleted items (first is empty):(paraEnd) +1. this one is numbered +2. +- +- and this one is bulleted +(paraStart)Last normal para test - there are two empty paragraphs below.(paraEnd) +2024-09-08 15:11:39,010 [main] INFO ClassDocImpl - ----------------------- +2024-09-08 15:11:39,011 [main] INFO ClassDocImpl - HTML: +

(paraStart)Some intro - next 2 lines are empty.(paraEnd)

(paraStart)This is a (red) test class to exercise the "quasi" mark-up that EA java API returns from its various getNotes() methods. Using its provided method to return raw text is very slow.(paraEnd)

(paraStart)Here is the unordered list with two items:(paraEnd)

  • list test
  • bold list test

(paraStart)This the paragraph after a list.(paraEnd)

(paraStart)Follows the numbered list:(paraEnd)

  1. first numbered item
  2. italic numbered test
  3. RTY-8-dws2=56 (RTY**-8-dws subscript 2=56

(paraStart)Below we test one bulleted and one numbered item:(paraEnd)

  • bulleted
  1. numbered

(paraStart)And the inverse, with two numbered items (second is empty) and two bulleted items (first is empty):(paraEnd)

  1. this one is numbered
  2.  
  •  
  • and this one is bulleted

(paraStart)Last normal para test - there are two empty paragraphs below.(paraEnd)

+2024-09-08 15:11:39,011 [main] INFO ClassDocImpl - ----------------------- +2024-09-08 15:11:39,011 [main] INFO ClassDocImpl - HTML unesc Java: +<p>(paraStart)Some intro - next 2 lines are empty.(paraEnd)</p><p>(paraStart)This is a <font color="#ff0000">(red)</font> test class to exercise the "quasi" mark-up that EA java API returns from its various getNotes() methods. Using its provided method to return raw text is very slow.(paraEnd)</p><p>(paraStart)Here is the unordered list with two items:(paraEnd)</p><ul><li>list test</li><li><b>bold</b> list test</li></ul><p>(paraStart)This the paragraph after a list.(paraEnd)</p><p>(paraStart)Follows the numbered list:(paraEnd)</p><ol><li>first numbered item</li><li><i>italic</i> numbered test</li><li><i>RTY</i><sup>-8</sup>-dws<i><sub>2</sub></i>=56 (RTY**-8-dws subscript 2=56</li></ol><p>(paraStart)Below we test one bulleted and one numbered item:(paraEnd)</p><ul><li>bulleted</li></ul><ol><li>numbered</li></ol><p>(paraStart)And the inverse, with two numbered items (second is empty) and two bulleted items (first is empty):(paraEnd)</p><ol><li>this one is numbered</li><li>&nbsp;</li></ol><ul><li>&nbsp;</li><li>and this one is bulleted</li></ul><p>(paraStart)Last <i><u>normal </u></i>para test - there are two empty paragraphs below.(paraEnd)</p> +2024-09-08 15:11:39,012 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:39,012 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML18ùdd' +2024-09-08 15:11:39,012 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML18ùdd' +2024-09-08 15:11:39,012 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:39,012 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:39,012 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:39,012 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:39,012 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:39,012 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:39,012 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TopologicalNode, hphSpec = 'aaùTopologicalNodeùUML177ùdd' +2024-09-08 15:11:39,012 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TopologicalNode, hphSpec = 'aaùTopologicalNodeùUML177ùdd' +2024-09-08 15:11:39,012 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:39,012 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:39,012 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:39,012 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:39,012 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:39,012 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:39,012 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:39,013 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseVoltage, hphSpec = 'aaùBaseVoltageùUML161ùdd' +2024-09-08 15:11:39,013 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNodeContainer, hphSpec = 'aaùConnectivityNodeContainerùUML167ùdd' +2024-09-08 15:11:39,013 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TopologicalIsland, hphSpec = 'aaùTopologicalIslandùUML176ùdd' +2024-09-08 15:11:39,013 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Terminal, hphSpec = 'aaùTerminalùUML159ùdd' +2024-09-08 15:11:39,013 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConnectivityNode, hphSpec = 'aaùConnectivityNodeùUML175ùdd' +2024-09-08 15:11:39,013 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TopologicalIsland, hphSpec = 'aaùTopologicalIslandùUML176ùdd' +2024-09-08 15:11:39,013 [main] INFO PackageDocImpl - collecting doc for package TestEnums ... +2024-09-08 15:11:39,015 [main] INFO PackageDocImpl - collecting doc for package IEC61968 ... +2024-09-08 15:11:39,015 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbsoluteDateTime, hphSpec = 'aaùAbsoluteDateTimeùUML11ùdd' +2024-09-08 15:11:39,015 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:39,015 [main] INFO PackageDocImpl - collecting doc for package EmbeddedExtension ... +2024-09-08 15:11:39,015 [main] INFO PackageDocImpl - collecting doc for package Assets ... +2024-09-08 15:11:39,016 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:39,016 [main] INFO PackageDocImpl - collecting doc for package Core ... +2024-09-08 15:11:39,016 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Bay, hphSpec = 'aaùBayùUML170ùdd' +2024-09-08 15:11:39,016 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = YesNo, hphSpec = 'aaùYesNoùUML27ùdd' +2024-09-08 15:11:39,016 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:39,016 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:39,016 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PowerSystemResource, hphSpec = 'aaùPowerSystemResourceùUML166ùdd' +2024-09-08 15:11:39,016 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:39,017 [main] DEBUG DataIndexDoc - Attribute 'basePower' defined on multiple classes in and under 'Core' - may be possible to avoid duplication by using inheritance. +2024-09-08 15:11:39,017 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseVoltage, hphSpec = 'aaùBaseVoltageùUML161ùdd' +2024-09-08 15:11:39,017 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePower, hphSpec = 'aaùBasePowerùUML162ùdd' +2024-09-08 15:11:39,017 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-08 15:11:39,017 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ApparentPower, hphSpec = 'aaùApparentPowerùUML14ùdd' +2024-09-08 15:11:39,017 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Bay, hphSpec = 'aaùBayùUML170ùdd' +2024-09-08 15:11:39,017 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-08 15:11:39,017 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Bay, hphSpec = 'aaùBayùUML170ùdd' +2024-09-08 15:11:39,017 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-08 15:11:39,017 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Bay, hphSpec = 'aaùBayùUML170ùdd' +2024-09-08 15:11:39,017 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BreakerConfiguration, hphSpec = 'aaùBreakerConfigurationùUML28ùdd' +2024-09-08 15:11:39,017 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Bay, hphSpec = 'aaùBayùUML170ùdd' +2024-09-08 15:11:39,017 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BusbarConfiguration, hphSpec = 'aaùBusbarConfigurationùUML29ùdd' +2024-09-08 15:11:39,017 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Terminal, hphSpec = 'aaùTerminalùUML159ùdd' +2024-09-08 15:11:39,017 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-08 15:11:39,017 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VoltageLevel, hphSpec = 'aaùVoltageLevelùUML172ùdd' +2024-09-08 15:11:39,017 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Voltage, hphSpec = 'aaùVoltageùUML25ùdd' +2024-09-08 15:11:39,017 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VoltageLevel, hphSpec = 'aaùVoltageLevelùUML172ùdd' +2024-09-08 15:11:39,017 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Voltage, hphSpec = 'aaùVoltageùUML25ùdd' +2024-09-08 15:11:39,017 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:39,018 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:39,018 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IdentifiedObject, hphSpec = 'aaùIdentifiedObjectùUML32ùdd' +2024-09-08 15:11:39,018 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = String, hphSpec = 'aaùStringùUML22ùdd' +2024-09-08 15:11:39,018 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Equipment, hphSpec = 'aaùEquipmentùUML173ùdd' +2024-09-08 15:11:39,018 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-08 15:11:39,018 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OperatingShare, hphSpec = 'aaùOperatingShareùUML30ùdd' +2024-09-08 15:11:39,018 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PerCent, hphSpec = 'aaùPerCentùUML20ùdd' +2024-09-08 15:11:39,018 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ConductingEquipment, hphSpec = 'aaùConductingEquipmentùUML174ùdd' +2024-09-08 15:11:39,018 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PhaseCode, hphSpec = 'aaùPhaseCodeùUML31ùdd' +2024-09-08 15:11:39,018 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Terminal, hphSpec = 'aaùTerminalùUML159ùdd' +2024-09-08 15:11:39,018 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML18ùdd' +2024-09-08 15:11:39,018 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Bay, hphSpec = 'aaùBayùUML170ùdd' +2024-09-08 15:11:39,018 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = YesNo, hphSpec = 'aaùYesNoùUML27ùdd' +2024-09-08 15:11:39,020 [main] INFO PackageDocImpl - collected data index for Core ... +2024-09-08 15:11:39,021 [main] TRACE PackageDocImpl - org.tanjakostic.jcleancim.docgen.collector.impl.DataIndexDoc@9c4eb1Data semantics + + shows all attributes defined on classes of Core package. +Attributes defined on classes of Core package +"Name" | "Type" | "(Used in) Description" +"TestYesNo1" | "aaùYesNoùUML27ùdd" | "(aaùBayùUML170ùdd) Indicates the presence/absence of energy measurements." +"aliasName" | "aaùStringùUML22ùdd" | "(aaùIdentifiedObjectùUML32ùdd) The aliasName is free text human readable name of the object alternative to IdentifiedObject.name. It may be non unique and may not correlate to a naming hierarchy. +The attribute aliasName is retained because of backwards compatibility between CIM relases. It is however recommended to replace aliasName with the Name class as aliasName is planned for retirement at a future time." +"attr" | "aaùStringùUML22ùdd" | "(aaùPowerSystemResourceùUML166ùdd) (deprecated) This is to test whether deprecated attribute gets its (deprecated) printed in Word." +"basePower" | "aaùBooleanùUML15ùdd, aaùApparentPowerùUML14ùdd" | "(aaùBaseVoltageùUML161ùdd) This is to test whether we print correctly multiple attributes of the same name (defined on different classes) within the data index table. +(aaùBasePowerùUML162ùdd) definition of base power." +"bayEnergyMeasFlag" | "aaùBooleanùUML15ùdd" | "(aaùBayùUML170ùdd) Indicates the presence/absence of energy measurements." +"bayPowerMeasFlag" | "aaùBooleanùUML15ùdd" | "(aaùBayùUML170ùdd) Indicates the presence/absence of active/reactive power measurements." +"breakerConfiguration" | "aaùBreakerConfigurationùUML28ùdd" | "(aaùBayùUML170ùdd) Breaker configuration." +"busBarConfiguration" | "aaùBusbarConfigurationùUML29ùdd" | "(aaùBayùUML170ùdd) Bus bar configuration." +"connected" | "aaùBooleanùUML15ùdd" | "(aaùTerminalùUML159ùdd) The terminal connection status. True implies the terminal is connected, and false implies the terminal is not connected. This is the result of topoplogical processing of a detailed Connectivity node and Switch model whether present in the model or not. A terminal that is not connected cannot support a current flow. A terminal that is connected may have flow. In general a multi-terminal device may simultaneously have connected and disconnected terminals. No other aspect of the algorithm" +"highVoltageLimit" | "aaùVoltageùUML25ùdd" | "(aaùVoltageLevelùUML172ùdd) The bus bar's high voltage limit" +"lowVoltageLimit" | "aaùVoltageùUML25ùdd" | "(aaùVoltageLevelùUML172ùdd) The bus bar's low voltage limit" +"mRID" | "aaùStringùUML22ùdd" | "(aaùIdentifiedObjectùUML32ùdd) Master resource identifier issued by a model authority. The mRID must semantically be a UUID as specified in RFC 4122. The mRID is globally unique. +For CIMXML data files in RDF syntax, the mRID is mapped to rdf:ID or rdf:about attributes that identify CIM object elements." +"name" | "aaùStringùUML22ùdd" | "(aaùIdentifiedObjectùUML32ùdd) The name is any free human readable and possibly non unique text naming the object." +"normaIlyInService" | "aaùBooleanùUML15ùdd" | "(aaùEquipmentùUML173ùdd) The equipment is normally in service." +"packagePrivateIsDC" | "" | "" +"percentage" | "aaùPerCentùUML20ùdd" | "(aaùOperatingShareùUML30ùdd) Percentage ownership for this device. The percentage indicates the percentage ownership of the PSROwner for the PowerSystemResource. The total percentage ownership for a PowerSystemResource should add to 100%." +"phases" | "aaùPhaseCodeùUML31ùdd" | "(aaùConductingEquipmentùUML174ùdd) Describes the phases carried by a conducting equipment." +"privateDummy" | "" | "" +"protectedNominalVoltage" | "" | "" +"sequenceNumber" | "aaùIntegerùUML18ùdd" | "(aaùTerminalùUML159ùdd) The orientation of the terminal connections for a multiple terminal conducting equipment. The sequence numbering starts with 1 and additional terminals should follow in increasing order. The first terminal is the "starting point" for a two terminal branch. In the case of class TransformerWinding only one terminal is used so its sequenceNumber must be 1." +"testYesNo2" | "aaùYesNoùUML27ùdd" | "(aaùBayùUML170ùdd) Indicates the presence/absence of energy measurements." + +2024-09-08 15:11:39,021 [main] INFO PackageDocImpl - collecting doc for package Other ... +2024-09-08 15:11:39,021 [main] INFO PackageDocImpl - collecting doc for package Other ... +2024-09-08 15:11:39,021 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-08 15:11:39,021 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Float, hphSpec = 'aaùFloatùUML17ùdd' +2024-09-08 15:11:39,021 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-08 15:11:39,021 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-08 15:11:39,021 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-08 15:11:39,021 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitSymbol, hphSpec = 'aaùUnitSymbolùUML24ùdd' +2024-09-08 15:11:39,021 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-08 15:11:39,022 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MyClass, hphSpec = 'aaùMyClassùUML178ùdd' +2024-09-08 15:11:39,022 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-08 15:11:39,022 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MyClass, hphSpec = 'aaùMyClassùUML178ùdd' +2024-09-08 15:11:39,022 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MyClass, hphSpec = 'aaùMyClassùUML178ùdd' +2024-09-08 15:11:39,022 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-08 15:11:39,022 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AttrDuplication, hphSpec = 'aaùAttrDuplicationùUML179ùdd' +2024-09-08 15:11:39,022 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-08 15:11:39,022 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-08 15:11:39,023 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitSymbol, hphSpec = 'aaùUnitSymbolùUML24ùdd' +2024-09-08 15:11:39,023 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MyClass, hphSpec = 'aaùMyClassùUML178ùdd' +2024-09-08 15:11:39,023 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AttrDuplication, hphSpec = 'aaùAttrDuplicationùUML179ùdd' +2024-09-08 15:11:39,023 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML18ùdd' +2024-09-08 15:11:39,023 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = YesNo, hphSpec = 'aaùYesNoùUML27ùdd' +2024-09-08 15:11:39,024 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Float, hphSpec = 'aaùFloatùUML17ùdd' +2024-09-08 15:11:39,024 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MyClass, hphSpec = 'aaùMyClassùUML178ùdd' +2024-09-08 15:11:39,025 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-08 15:11:39,025 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-08 15:11:39,025 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Float, hphSpec = 'aaùFloatùUML17ùdd' +2024-09-08 15:11:39,025 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MyClass, hphSpec = 'aaùMyClassùUML178ùdd' +2024-09-08 15:11:39,025 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Boolean, hphSpec = 'aaùBooleanùUML15ùdd' +2024-09-08 15:11:39,025 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MyClass, hphSpec = 'aaùMyClassùUML178ùdd' +2024-09-08 15:11:39,025 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MyClass, hphSpec = 'aaùMyClassùUML178ùdd' +2024-09-08 15:11:39,025 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-08 15:11:39,025 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-08 15:11:39,025 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitSymbol, hphSpec = 'aaùUnitSymbolùUML24ùdd' +2024-09-08 15:11:39,025 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-08 15:11:39,025 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-08 15:11:39,025 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AttrDuplication, hphSpec = 'aaùAttrDuplicationùUML179ùdd' +2024-09-08 15:11:39,025 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AttrDuplication, hphSpec = 'aaùAttrDuplicationùUML179ùdd' +2024-09-08 15:11:39,026 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AttrDuplication, hphSpec = 'aaùAttrDuplicationùUML179ùdd' +2024-09-08 15:11:39,026 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AttrDuplication, hphSpec = 'aaùAttrDuplicationùUML179ùdd' +2024-09-08 15:11:39,026 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MyClass, hphSpec = 'aaùMyClassùUML178ùdd' +2024-09-08 15:11:39,026 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MyClass, hphSpec = 'aaùMyClassùUML178ùdd' +2024-09-08 15:11:39,026 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-08 15:11:39,026 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MyClass, hphSpec = 'aaùMyClassùUML178ùdd' +2024-09-08 15:11:39,026 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MyClass, hphSpec = 'aaùMyClassùUML178ùdd' +2024-09-08 15:11:39,026 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MyClass, hphSpec = 'aaùMyClassùUML178ùdd' +2024-09-08 15:11:39,026 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MyClass, hphSpec = 'aaùMyClassùUML178ùdd' +2024-09-08 15:11:39,026 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-08 15:11:39,026 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AttrDuplication, hphSpec = 'aaùAttrDuplicationùUML179ùdd' +2024-09-08 15:11:39,026 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BadDatatypes, hphSpec = 'aaùBadDatatypesùUML39ùdd' +2024-09-08 15:11:39,026 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UnitSymbol, hphSpec = 'aaùUnitSymbolùUML24ùdd' +2024-09-08 15:11:39,026 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Integer, hphSpec = 'aaùIntegerùUML18ùdd' +2024-09-08 15:11:39,026 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EmptyCompound, hphSpec = 'aaùEmptyCompoundùUML45ùdd' +2024-09-08 15:11:39,027 [main] INFO PackageDocImpl - collecting doc for package IEC62325 ... +2024-09-08 15:11:39,028 [main] INFO PackageDocImpl - collecting doc for package IEC61850Domain ... +2024-09-08 15:11:39,028 [main] INFO PackageDocImpl - collecting doc for package WG10 ... +2024-09-08 15:11:39,043 [main] INFO PackageDocImpl - collecting doc for package NewIEC61850_7_2 ... +2024-09-08 15:11:39,044 [main] INFO PackageDocImpl - collecting doc for package GenericModel ... +2024-09-08 15:11:39,049 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommAddress, hphSpec = 'aaùCommAddressùUML47ùdd' +2024-09-08 15:11:39,049 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenIED, hphSpec = 'aaùGenIEDùUML65ùdd' +2024-09-08 15:11:39,050 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenFile, hphSpec = 'aaùGenFileùUML64ùdd' +2024-09-08 15:11:39,050 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenServer, hphSpec = 'aaùGenServerùUML72ùdd' +2024-09-08 15:11:39,050 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjectName, hphSpec = 'aaùGenObjectNameùUML71ùdd' +2024-09-08 15:11:39,050 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenDataAttribute, hphSpec = 'aaùGenDataAttributeùUML59ùdd' +2024-09-08 15:11:39,050 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenSubDataObject, hphSpec = 'aaùGenSubDataObjectùUML74ùdd' +2024-09-08 15:11:39,051 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjectName, hphSpec = 'aaùGenObjectNameùUML71ùdd' +2024-09-08 15:11:39,051 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenSubDataAttribute, hphSpec = 'aaùGenSubDataAttributeùUML73ùdd' +2024-09-08 15:11:39,051 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjectName, hphSpec = 'aaùGenObjectNameùUML71ùdd' +2024-09-08 15:11:39,051 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjRef, hphSpec = 'aaùGenObjRefùUML70ùdd' +2024-09-08 15:11:39,051 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenFC, hphSpec = 'aaùGenFCùUML49ùdd' +2024-09-08 15:11:39,051 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenTriggerConditions, hphSpec = 'aaùGenTriggerConditionsùUML76ùdd' +2024-09-08 15:11:39,051 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenPresenceConditions, hphSpec = 'aaùGenPresenceConditionsùUML50ùdd' +2024-09-08 15:11:39,051 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenINT32U, hphSpec = 'aaùGenINT32UùUML66ùdd' +2024-09-08 15:11:39,051 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenCommonDataClass, hphSpec = 'aaùGenCommonDataClassùUML56ùdd' +2024-09-08 15:11:39,051 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenFCDA, hphSpec = 'aaùGenFCDAùUML63ùdd' +2024-09-08 15:11:39,052 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjectName, hphSpec = 'aaùGenObjectNameùUML71ùdd' +2024-09-08 15:11:39,052 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjRef, hphSpec = 'aaùGenObjRefùUML70ùdd' +2024-09-08 15:11:39,052 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenBOOLEAN, hphSpec = 'aaùGenBOOLEANùUML55ùdd' +2024-09-08 15:11:39,052 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenPresenceConditions, hphSpec = 'aaùGenPresenceConditionsùUML50ùdd' +2024-09-08 15:11:39,052 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenLogicalNode, hphSpec = 'aaùGenLogicalNodeùUML68ùdd' +2024-09-08 15:11:39,052 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenFCD, hphSpec = 'aaùGenFCDùUML62ùdd' +2024-09-08 15:11:39,052 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjectName, hphSpec = 'aaùGenObjectNameùUML71ùdd' +2024-09-08 15:11:39,052 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenFCD, hphSpec = 'aaùGenFCDùUML62ùdd' +2024-09-08 15:11:39,052 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenFCDA, hphSpec = 'aaùGenFCDAùUML63ùdd' +2024-09-08 15:11:39,052 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenFC, hphSpec = 'aaùGenFCùUML49ùdd' +2024-09-08 15:11:39,052 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenDataObject, hphSpec = 'aaùGenDataObjectùUML60ùdd' +2024-09-08 15:11:39,052 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenSubDataObject, hphSpec = 'aaùGenSubDataObjectùUML74ùdd' +2024-09-08 15:11:39,052 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenDataSet, hphSpec = 'aaùGenDataSetùUML61ùdd' +2024-09-08 15:11:39,053 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenFC, hphSpec = 'aaùGenFCùUML49ùdd' +2024-09-08 15:11:39,053 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenDataAttribute, hphSpec = 'aaùGenDataAttributeùUML59ùdd' +2024-09-08 15:11:39,053 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenSubDataAttribute, hphSpec = 'aaùGenSubDataAttributeùUML73ùdd' +2024-09-08 15:11:39,053 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenDataSet, hphSpec = 'aaùGenDataSetùUML61ùdd' +2024-09-08 15:11:39,053 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenVisString255, hphSpec = 'aaùGenVisString255ùUML77ùdd' +2024-09-08 15:11:39,053 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenINT32U, hphSpec = 'aaùGenINT32UùUML66ùdd' +2024-09-08 15:11:39,053 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenTimeStamp, hphSpec = 'aaùGenTimeStampùUML51ùdd' +2024-09-08 15:11:39,053 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FileSystem, hphSpec = 'aaùFileSystemùUML53ùdd' +2024-09-08 15:11:39,053 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AccessPoint, hphSpec = 'aaùAccessPointùUML52ùdd' +2024-09-08 15:11:39,054 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenLogicalNode, hphSpec = 'aaùGenLogicalNodeùUML68ùdd' +2024-09-08 15:11:39,054 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenLogicalNode, hphSpec = 'aaùGenLogicalNodeùUML68ùdd' +2024-09-08 15:11:39,054 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjectName, hphSpec = 'aaùGenObjectNameùUML71ùdd' +2024-09-08 15:11:39,054 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenLogicalNode, hphSpec = 'aaùGenLogicalNodeùUML68ùdd' +2024-09-08 15:11:39,054 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjRef, hphSpec = 'aaùGenObjRefùUML70ùdd' +2024-09-08 15:11:39,054 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenLogicalDevice, hphSpec = 'aaùGenLogicalDeviceùUML67ùdd' +2024-09-08 15:11:39,054 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenDataObject, hphSpec = 'aaùGenDataObjectùUML60ùdd' +2024-09-08 15:11:39,054 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenLogicalNode, hphSpec = 'aaùGenLogicalNodeùUML68ùdd' +2024-09-08 15:11:39,054 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenLogicalDevice, hphSpec = 'aaùGenLogicalDeviceùUML67ùdd' +2024-09-08 15:11:39,054 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenLogicalNode, hphSpec = 'aaùGenLogicalNodeùUML68ùdd' +2024-09-08 15:11:39,054 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjectName, hphSpec = 'aaùGenObjectNameùUML71ùdd' +2024-09-08 15:11:39,054 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenLN0, hphSpec = 'aaùGenLN0ùUML181ùdd' +2024-09-08 15:11:39,055 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenLogicalNode, hphSpec = 'aaùGenLogicalNodeùUML68ùdd' +2024-09-08 15:11:39,055 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenLogicalDevice, hphSpec = 'aaùGenLogicalDeviceùUML67ùdd' +2024-09-08 15:11:39,055 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenServer, hphSpec = 'aaùGenServerùUML72ùdd' +2024-09-08 15:11:39,055 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenLogicalDevice, hphSpec = 'aaùGenLogicalDeviceùUML67ùdd' +2024-09-08 15:11:39,055 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjectName, hphSpec = 'aaùGenObjectNameùUML71ùdd' +2024-09-08 15:11:39,055 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjRef, hphSpec = 'aaùGenObjRefùUML70ùdd' +2024-09-08 15:11:39,055 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenDataObject, hphSpec = 'aaùGenDataObjectùUML60ùdd' +2024-09-08 15:11:39,055 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenLogicalDevice, hphSpec = 'aaùGenLogicalDeviceùUML67ùdd' +2024-09-08 15:11:39,055 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenServer, hphSpec = 'aaùGenServerùUML72ùdd' +2024-09-08 15:11:39,056 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FileSystem, hphSpec = 'aaùFileSystemùUML53ùdd' +2024-09-08 15:11:39,056 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenLogicalDevice, hphSpec = 'aaùGenLogicalDeviceùUML67ùdd' +2024-09-08 15:11:39,056 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenMCAA, hphSpec = 'aaùGenMCAAùUML69ùdd' +2024-09-08 15:11:39,056 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenTPAA, hphSpec = 'aaùGenTPAAùUML75ùdd' +2024-09-08 15:11:39,056 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ServiceAccessPoint, hphSpec = 'aaùServiceAccessPointùUML180ùdd' +2024-09-08 15:11:39,056 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjectName, hphSpec = 'aaùGenObjectNameùUML71ùdd' +2024-09-08 15:11:39,056 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjRef, hphSpec = 'aaùGenObjRefùUML70ùdd' +2024-09-08 15:11:39,056 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenFC, hphSpec = 'aaùGenFCùUML49ùdd' +2024-09-08 15:11:39,056 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenPresenceConditions, hphSpec = 'aaùGenPresenceConditionsùUML50ùdd' +2024-09-08 15:11:39,056 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenINT32U, hphSpec = 'aaùGenINT32UùUML66ùdd' +2024-09-08 15:11:39,056 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenConstructedType, hphSpec = 'aaùGenConstructedTypeùUML58ùdd' +2024-09-08 15:11:39,056 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenFCDA, hphSpec = 'aaùGenFCDAùUML63ùdd' +2024-09-08 15:11:39,057 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjectName, hphSpec = 'aaùGenObjectNameùUML71ùdd' +2024-09-08 15:11:39,057 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenObjRef, hphSpec = 'aaùGenObjRefùUML70ùdd' +2024-09-08 15:11:39,057 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenPresenceConditions, hphSpec = 'aaùGenPresenceConditionsùUML50ùdd' +2024-09-08 15:11:39,057 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenINT32U, hphSpec = 'aaùGenINT32UùUML66ùdd' +2024-09-08 15:11:39,057 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenCommonDataClass, hphSpec = 'aaùGenCommonDataClassùUML56ùdd' +2024-09-08 15:11:39,057 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenFCD, hphSpec = 'aaùGenFCDùUML62ùdd' +2024-09-08 15:11:39,057 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenAssociationID, hphSpec = 'aaùGenAssociationIDùUML48ùdd' +2024-09-08 15:11:39,057 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenServer, hphSpec = 'aaùGenServerùUML72ùdd' +2024-09-08 15:11:39,058 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AccessPoint, hphSpec = 'aaùAccessPointùUML52ùdd' +2024-09-08 15:11:39,058 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AccessPoint, hphSpec = 'aaùAccessPointùUML52ùdd' +2024-09-08 15:11:39,058 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CommAddress, hphSpec = 'aaùCommAddressùUML47ùdd' +2024-09-08 15:11:39,058 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenServer, hphSpec = 'aaùGenServerùUML72ùdd' +2024-09-08 15:11:39,058 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GenIED, hphSpec = 'aaùGenIEDùUML65ùdd' +2024-09-08 15:11:39,058 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AccessPoint, hphSpec = 'aaùAccessPointùUML52ùdd' +2024-09-08 15:11:39,058 [main] INFO PackageDocImpl - collecting doc for package IEC61850_7_2 ... +2024-09-08 15:11:39,058 [main] INFO PackageDocImpl - collecting doc for package FunctionalConstraints ... +2024-09-08 15:11:39,059 [main] INFO DocCollectorImpl - >> retained scoped IEC61850/IEC61850-7-2/FunctionalConstraints +2024-09-08 15:11:39,066 [main] INFO PackageDocImpl - collected functional constraints from FunctionalConstraints ... +2024-09-08 15:11:39,066 [main] TRACE PackageDocImpl - org.tanjakostic.jcleancim.docgen.collector.impl.FcPackageDoc@1898981Functional constraints +From an application point of view, the DataAttributes are classified according to their specific use. Some attributes are used for controlling, other for reporting and logging, or measurements or setting groups, or the description of a specific DataAttribute. +The functional constraint (FC) serves as a data filter in the sense of defining the services applicable to specific DataAttributes of CommonDataClasses (defined in part IEC 61850-7-3). +NOTE: The possibility to write an Attribute or a DataAttribute may be further constrained by a view or an implementation, as discussed in clause 7. +EXAMPLE: The CommonDataClass single point status (SPS) according to IEC 61850-7-3 has the following DataAttributes: stVal (status value), q (quality), and t (time stamp) with the functional constraint ST (status information). +shows all functional constraints. +Functional constraints +"Functional constraints" | "" | "" +"FC" | "Semantic" | "Description (services allowed, initial values, storage)" +"ST" | "Status information" | "DataAttribute shall represent status information whose value may be read, substituted, reported, and logged but shall not be writeable. +Initial value shall be taken from the process. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- if member of dataset, may be contained in the Report, GOOSEMessage and SVMessage." +"MX" | "Measurands (analogue values)" | "DataAttribute shall represent measurand information whose value may be read, substituted, reported, and logged but shall not be writeable. +Initial value shall be taken from the process. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- if member of dataset, may be contained in the Report, GOOSEMessage and SVMessage." +"SP" | "Setting (outside setting group)" | "DataAttribute shall represent setting parameter information whose value is read and may be written. Changes of values shall become effective immediately, and may be reported. +Initial value shall be as configured; value shall be non-volatile. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.setDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- if member of dataset, may be contained in the Report, GOOSEMessage." +"SV" | "Substitution" | "DataAttribute shall represent substitution information whose value may be written to substitute the value attribute and read. A value change may be reported. +If the value is volatile then the initial value shall be false, otherwise the value should be as set or configured. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.setDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- AcsiDS.setDataSetValues() +- if member of dataset, may be contained in the Report." +"CF" | "Configuration" | "DataAttribute shall represent configuration information whose value may be written and read. Values written may become effective immediately or deferred by reasons outside the scope of this standard. Value changes may be reported. +Initial value shall be as configured; value shall be non-volatile. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.setDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- AcsiDS.setDataSetValues() +- if member of dataset, may be contained in the Report." +"DC" | "Description" | "DataAttribute shall represent description information whose value may be written and read. +Initial value shall be as configured; value shall be non-volatile. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.setDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- AcsiDS.setDataSetValues() +- if member of dataset, may be contained in the Report." +"SG" | "Setting group" | "Logical devices that implement the SGCB class maintain multiple grouped values of all instances of DataAttributes with functional constraint SG. Each group contains one value for each DataAttribute. DataAttributes with functional constraint SG shall be the current active value. DataAttributes with FC=SG shall not be writeable. +Initial value shall be as configured; value shall be non-volatile. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- AcsiSGCB.getSGValues() +- if member of dataset, may be contained in the Report." +"SE" | "Setting group editable" | "DataAttribute that can be edited by SGCB services. Defines the edit buffer for the value sets belonging to attributes with FC=SG. +Value shall be as resulting from the chain of SGCB services: selectEditSG() -> setSGValues() -> confirmEditSGValues(). +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiSGCB.getSGValues() +- AcsiSGCB.setSGValues()" +"SR" | "Service response" | "DataAttribute shall represent data from different process objects with the same tracking object whose values can be used to be reported and logged; the values shall not be writeable. These attributes are used for service tracking (see 15.3.2). +Initial value of the DataAttribute are a private issue, e.g., all zero (except for times stamp). +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- if member of dataset, may be contained in the Report." +"OR" | "Operate received" | "DataAttribute shall represent the result of an Operate request at the data object receiving the Operate request, even if the execution of the Operate is blocked. +Initial value is irrelevant / arbitrary. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- if member of dataset, may be contained in the Report." +"BL" | "Blocking" | "DataAttribute is used for blocking value updates. +If the value of the DataAttribute is volatile then the initial value shall be false, otherwise the value should be as set or configured. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.setDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- AcsiDS.setDataSetValues() +- if member of dataset, may be contained in the Report." +"EX" | "Extended definition (application name space)" | "DataAttribute shall represent an application name space. Application name spaces are used to define the semantic definitions of LNs, data object class, and DataAttributes as specified in 61850-7-3 and IEC 61850-7-4. DataAttributes with FC=EX shall not be writeable, +Note that private extensions of control blocks may use the FC EX at SCSM level. +Value of the DataAttribute shall be as configured; value shall be non-volatile. +Modelling note: Applicable ACSI services: +- AcsiCDC.getDataValues() +- AcsiCDC.getDataDefinition() +- AcsiCDC.getDataDirectory() +- AcsiDS.getDataSetValues() +- if member of dataset, may be contained in the Report." +"XX" | "" | "Used as a wildcard in services only, with the semantics: representing DataAttributes of any functional constraint." + +2024-09-08 15:11:39,066 [main] INFO PackageDocImpl - collecting doc for package TriggerOptions ... +2024-09-08 15:11:39,066 [main] INFO DocCollectorImpl - >> retained scoped IEC61850/IEC61850-7-2/TriggerOptions +2024-09-08 15:11:39,071 [main] INFO PackageDocImpl - collected trigger options from TriggerOptions ... +2024-09-08 15:11:39,071 [main] TRACE PackageDocImpl - org.tanjakostic.jcleancim.docgen.collector.impl.TrgOpPackageDoc@f9390fTrigger options +To support reporting and logging control logic (see clause 17) related to process data changes, one of these values can be associated as a trigger option, TrgOp, to a data attribute within a data object or sub-data object. +shows all trigger options. +Trigger options +"Trigger options" | "" | "" +"TrgOp" | "Semantic" | "Description" +"dchg" | "data-change" | "The reason for report or log entry generation is the change of the value of a process-related data attribute with trigger option dchg." +"qchg" | "quality-change" | "The reason for report or log entry generation is the change of the value of a quality-related data attribute with trigger option qchg." +"dupd" | "data-update" | "The reason for report or log entry generation is an update of the value of a data attribute with trigger option dupd. The updated value may be the same as the old value. An example is freezing the value of a freezable data attribute updating the value of another data attribute, which could lead to the same value it already has." +"dchg, dupd" | "dchg or dupd" | "Either dchg or dupd." + +2024-09-08 15:11:39,071 [main] INFO PackageDocImpl - collecting doc for package ACSIEnums ... +2024-09-08 15:11:39,072 [main] INFO DocCollectorImpl - >> retained scoped IEC61850/IEC61850-7-2/ACSIEnums +2024-09-08 15:11:39,072 [main] INFO PackageDocImpl - collecting doc for package CoreTypes ... +2024-09-08 15:11:39,072 [main] INFO DocCollectorImpl - >> retained scoped IEC61850/IEC61850-7-2/CoreTypes +2024-09-08 15:11:39,075 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT32, hphSpec = 'aaùINT32ùUML85ùdd' +2024-09-08 15:11:39,075 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimeQuality, hphSpec = 'aaùTimeQualityùUML94ùdd' +2024-09-08 15:11:39,075 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,075 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,075 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,075 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimeAccuracyKind, hphSpec = 'aaùTimeAccuracyKindùUML95ùdd' +2024-09-08 15:11:39,076 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,076 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,076 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,076 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,076 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,077 [main] INFO PackageDocImpl - collecting doc for package ObjectReferences ... +2024-09-08 15:11:39,077 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = P_ObjectReference, hphSpec = 'aaùP_ObjectReferenceùUML91ùdd' +2024-09-08 15:11:39,077 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = P_ObjectReference, hphSpec = 'aaùP_ObjectReferenceùUML91ùdd' +2024-09-08 15:11:39,078 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = P_ObjectReference, hphSpec = 'aaùP_ObjectReferenceùUML91ùdd' +2024-09-08 15:11:39,078 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LDReference, hphSpec = 'aaùLDReferenceùUML183ùdd' +2024-09-08 15:11:39,078 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = P_ObjectReference, hphSpec = 'aaùP_ObjectReferenceùUML91ùdd' +2024-09-08 15:11:39,079 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNReference, hphSpec = 'aaùLNReferenceùUML184ùdd' +2024-09-08 15:11:39,079 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LDReference, hphSpec = 'aaùLDReferenceùUML183ùdd' +2024-09-08 15:11:39,079 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = P_ObjectReference, hphSpec = 'aaùP_ObjectReferenceùUML91ùdd' +2024-09-08 15:11:39,079 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNReference, hphSpec = 'aaùLNReferenceùUML184ùdd' +2024-09-08 15:11:39,079 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LDReference, hphSpec = 'aaùLDReferenceùUML183ùdd' +2024-09-08 15:11:39,079 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = P_ObjectReference, hphSpec = 'aaùP_ObjectReferenceùUML91ùdd' +2024-09-08 15:11:39,079 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ServiceFcKind, hphSpec = 'aaùServiceFcKindùUML97ùdd' +2024-09-08 15:11:39,080 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNReference, hphSpec = 'aaùLNReferenceùUML184ùdd' +2024-09-08 15:11:39,080 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LDReference, hphSpec = 'aaùLDReferenceùUML183ùdd' +2024-09-08 15:11:39,080 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = P_ObjectReference, hphSpec = 'aaùP_ObjectReferenceùUML91ùdd' +2024-09-08 15:11:39,080 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ServiceFcKind, hphSpec = 'aaùServiceFcKindùUML97ùdd' +2024-09-08 15:11:39,080 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNReference, hphSpec = 'aaùLNReferenceùUML184ùdd' +2024-09-08 15:11:39,080 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LDReference, hphSpec = 'aaùLDReferenceùUML183ùdd' +2024-09-08 15:11:39,080 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = P_ObjectReference, hphSpec = 'aaùP_ObjectReferenceùUML91ùdd' +2024-09-08 15:11:39,080 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDCReference, hphSpec = 'aaùCDCReferenceùUML185ùdd' +2024-09-08 15:11:39,080 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNReference, hphSpec = 'aaùLNReferenceùUML184ùdd' +2024-09-08 15:11:39,080 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LDReference, hphSpec = 'aaùLDReferenceùUML183ùdd' +2024-09-08 15:11:39,080 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = P_ObjectReference, hphSpec = 'aaùP_ObjectReferenceùUML91ùdd' +2024-09-08 15:11:39,081 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FcKind, hphSpec = 'aaùFcKindùUML79ùdd' +2024-09-08 15:11:39,081 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDReference, hphSpec = 'aaùFCDReferenceùUML186ùdd' +2024-09-08 15:11:39,081 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDCReference, hphSpec = 'aaùCDCReferenceùUML185ùdd' +2024-09-08 15:11:39,081 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNReference, hphSpec = 'aaùLNReferenceùUML184ùdd' +2024-09-08 15:11:39,081 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LDReference, hphSpec = 'aaùLDReferenceùUML183ùdd' +2024-09-08 15:11:39,081 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = P_ObjectReference, hphSpec = 'aaùP_ObjectReferenceùUML91ùdd' +2024-09-08 15:11:39,081 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:11:39,081 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT32U, hphSpec = 'aaùINT32UùUML86ùdd' +2024-09-08 15:11:39,081 [main] INFO PackageDocImpl - collecting doc for package AttrValues ... +2024-09-08 15:11:39,083 [main] INFO PackageDocImpl - collecting doc for package BasicDAs ... +2024-09-08 15:11:39,084 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:11:39,084 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:11:39,084 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,084 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,084 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,084 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:11:39,084 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:11:39,085 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,085 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,085 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,085 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:11:39,085 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:11:39,085 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,085 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,085 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,086 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:11:39,086 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:11:39,086 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,086 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,086 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,086 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:11:39,086 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:11:39,086 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,086 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,086 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,087 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:11:39,087 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:11:39,087 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,087 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,087 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,087 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:11:39,087 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:11:39,087 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,087 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,087 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,087 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:11:39,087 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:11:39,087 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,087 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,087 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,087 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:11:39,087 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:11:39,087 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,087 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,087 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,088 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PackedPrimitiveDA, hphSpec = 'aaùPackedPrimitiveDAùUML336ùdd' +2024-09-08 15:11:39,088 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:11:39,088 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:11:39,088 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,088 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,088 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,088 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PackedPrimitiveDA, hphSpec = 'aaùPackedPrimitiveDAùUML336ùdd' +2024-09-08 15:11:39,088 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:11:39,088 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:11:39,088 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,088 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,088 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,088 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PackedEnumDA, hphSpec = 'aaùPackedEnumDAùUML341ùdd' +2024-09-08 15:11:39,088 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:11:39,088 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:11:39,089 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:11:39,089 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,089 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,089 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,089 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PackedEnumDA, hphSpec = 'aaùPackedEnumDAùUML341ùdd' +2024-09-08 15:11:39,089 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:11:39,089 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:11:39,089 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:11:39,089 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,089 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,089 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,089 [main] INFO PackageDocImpl - collecting doc for package AcsiTypes ... +2024-09-08 15:11:39,112 [main] INFO PackageDocImpl - collecting doc for package CommonAcsiTypes ... +2024-09-08 15:11:39,112 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT16U, hphSpec = 'aaùINT16UùUML84ùdd' +2024-09-08 15:11:39,113 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT16U, hphSpec = 'aaùINT16UùUML84ùdd' +2024-09-08 15:11:39,113 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ReportID, hphSpec = 'aaùReportIDùUML107ùdd' +2024-09-08 15:11:39,113 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EntryID, hphSpec = 'aaùEntryIDùUML108ùdd' +2024-09-08 15:11:39,113 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Authentication, hphSpec = 'aaùAuthenticationùUML105ùdd' +2024-09-08 15:11:39,114 [main] INFO PackageDocImpl - collecting doc for package MetaModel ... +2024-09-08 15:11:39,114 [main] INFO DocCollectorImpl - >> retained scoped IEC61850/IEC61850-7-2/MetaModel +2024-09-08 15:11:39,114 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,114 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,114 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,114 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,115 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,115 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,115 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SERVER, hphSpec = 'aaùSERVERùUML376ùdd' +2024-09-08 15:11:39,115 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,115 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,115 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IPAddress, hphSpec = 'aaùIPAddressùUML103ùdd' +2024-09-08 15:11:39,115 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MCAA, hphSpec = 'aaùMCAAùUML380ùdd' +2024-09-08 15:11:39,115 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FILE, hphSpec = 'aaùFILEùUML378ùdd' +2024-09-08 15:11:39,115 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TPAA, hphSpec = 'aaùTPAAùUML379ùdd' +2024-09-08 15:11:39,115 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LD, hphSpec = 'aaùLDùUML194ùdd' +2024-09-08 15:11:39,115 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IED, hphSpec = 'aaùIEDùUML375ùdd' +2024-09-08 15:11:39,116 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,116 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NonPersistentDS, hphSpec = 'aaùNonPersistentDSùUML363ùdd' +2024-09-08 15:11:39,116 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,116 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,116 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,116 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,116 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LDReference, hphSpec = 'aaùLDReferenceùUML183ùdd' +2024-09-08 15:11:39,116 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNDOM, hphSpec = 'aaùLNDOMùUML200ùdd' +2024-09-08 15:11:39,116 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN0, hphSpec = 'aaùLN0ùUML198ùdd' +2024-09-08 15:11:39,116 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNPHD, hphSpec = 'aaùLNPHDùUML196ùdd' +2024-09-08 15:11:39,116 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SERVER, hphSpec = 'aaùSERVERùUML376ùdd' +2024-09-08 15:11:39,116 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,116 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,116 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,117 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNReference, hphSpec = 'aaùLNReferenceùUML184ùdd' +2024-09-08 15:11:39,117 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:11:39,117 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNOwnedDS, hphSpec = 'aaùLNOwnedDSùUML360ùdd' +2024-09-08 15:11:39,117 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LOG, hphSpec = 'aaùLOGùUML374ùdd' +2024-09-08 15:11:39,117 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LCB, hphSpec = 'aaùLCBùUML368ùdd' +2024-09-08 15:11:39,117 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = URCB, hphSpec = 'aaùURCBùUML367ùdd' +2024-09-08 15:11:39,117 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BRCB, hphSpec = 'aaùBRCBùUML366ùdd' +2024-09-08 15:11:39,117 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:11:39,117 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,117 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,117 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,117 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LD, hphSpec = 'aaùLDùUML194ùdd' +2024-09-08 15:11:39,117 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:11:39,117 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,117 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,117 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,118 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = USVCB, hphSpec = 'aaùUSVCBùUML372ùdd' +2024-09-08 15:11:39,118 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GCB, hphSpec = 'aaùGCBùUML369ùdd' +2024-09-08 15:11:39,118 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MSVCB, hphSpec = 'aaùMSVCBùUML371ùdd' +2024-09-08 15:11:39,118 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SGCB, hphSpec = 'aaùSGCBùUML373ùdd' +2024-09-08 15:11:39,118 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LD, hphSpec = 'aaùLDùUML194ùdd' +2024-09-08 15:11:39,118 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:11:39,118 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,118 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,118 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,118 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LD, hphSpec = 'aaùLDùUML194ùdd' +2024-09-08 15:11:39,119 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,119 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,119 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,131 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,131 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCD, hphSpec = 'aaùFCDùUML377ùdd' +2024-09-08 15:11:39,131 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:11:39,131 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:11:39,131 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,131 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,131 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,131 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:11:39,132 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ComposedCDC, hphSpec = 'aaùComposedCDCùUML249ùdd' +2024-09-08 15:11:39,132 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:11:39,132 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,132 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,132 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,132 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:11:39,132 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,132 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,132 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDReference, hphSpec = 'aaùFCDReferenceùUML186ùdd' +2024-09-08 15:11:39,132 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FcKind, hphSpec = 'aaùFcKindùUML79ùdd' +2024-09-08 15:11:39,132 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DS, hphSpec = 'aaùDSùUML359ùdd' +2024-09-08 15:11:39,132 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,132 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:11:39,132 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,132 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,132 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,133 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDAReference, hphSpec = 'aaùFCDAReferenceùUML187ùdd' +2024-09-08 15:11:39,133 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:11:39,133 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DS, hphSpec = 'aaùDSùUML359ùdd' +2024-09-08 15:11:39,133 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:11:39,133 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCD, hphSpec = 'aaùFCDùUML377ùdd' +2024-09-08 15:11:39,133 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,133 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,133 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,133 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDAReference, hphSpec = 'aaùFCDAReferenceùUML187ùdd' +2024-09-08 15:11:39,133 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,133 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ComposedDA, hphSpec = 'aaùComposedDAùUML354ùdd' +2024-09-08 15:11:39,133 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:11:39,133 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,133 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,133 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,133 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AttrValue, hphSpec = 'aaùAttrValueùUML99ùdd' +2024-09-08 15:11:39,134 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:11:39,134 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:11:39,134 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:11:39,134 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,134 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,134 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,134 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:11:39,134 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:11:39,134 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,135 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,135 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,135 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:11:39,135 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:11:39,135 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:11:39,135 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,135 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,135 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,135 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:11:39,135 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,135 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,135 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,135 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:11:39,135 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,135 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,135 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,136 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCD, hphSpec = 'aaùFCDùUML377ùdd' +2024-09-08 15:11:39,136 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,136 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DS, hphSpec = 'aaùDSùUML359ùdd' +2024-09-08 15:11:39,136 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,136 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,136 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,136 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNOwnedDSReference, hphSpec = 'aaùLNOwnedDSReferenceùUML190ùdd' +2024-09-08 15:11:39,136 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:11:39,136 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DS, hphSpec = 'aaùDSùUML359ùdd' +2024-09-08 15:11:39,136 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,136 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,136 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,136 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,136 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NonPersistentDSReference, hphSpec = 'aaùNonPersistentDSReferenceùUML191ùdd' +2024-09-08 15:11:39,136 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TPAA, hphSpec = 'aaùTPAAùUML379ùdd' +2024-09-08 15:11:39,136 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNOwnedDS, hphSpec = 'aaùLNOwnedDSùUML360ùdd' +2024-09-08 15:11:39,136 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DS, hphSpec = 'aaùDSùUML359ùdd' +2024-09-08 15:11:39,137 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,137 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,137 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,137 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNOwnedDS, hphSpec = 'aaùLNOwnedDSùUML360ùdd' +2024-09-08 15:11:39,137 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DS, hphSpec = 'aaùDSùUML359ùdd' +2024-09-08 15:11:39,137 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,137 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,137 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,137 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,137 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,137 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,137 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,137 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CBReference, hphSpec = 'aaùCBReferenceùUML188ùdd' +2024-09-08 15:11:39,138 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControlBlock, hphSpec = 'aaùControlBlockùUML364ùdd' +2024-09-08 15:11:39,138 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,138 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,138 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,138 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = RCB, hphSpec = 'aaùRCBùUML365ùdd' +2024-09-08 15:11:39,138 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControlBlock, hphSpec = 'aaùControlBlockùUML364ùdd' +2024-09-08 15:11:39,138 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,138 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,138 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,138 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IPAddress, hphSpec = 'aaùIPAddressùUML103ùdd' +2024-09-08 15:11:39,138 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNOwnedDS, hphSpec = 'aaùLNOwnedDSùUML360ùdd' +2024-09-08 15:11:39,138 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:11:39,138 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = RCB, hphSpec = 'aaùRCBùUML365ùdd' +2024-09-08 15:11:39,138 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControlBlock, hphSpec = 'aaùControlBlockùUML364ùdd' +2024-09-08 15:11:39,138 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,138 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,138 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,139 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IPAddress, hphSpec = 'aaùIPAddressùUML103ùdd' +2024-09-08 15:11:39,139 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DS, hphSpec = 'aaùDSùUML359ùdd' +2024-09-08 15:11:39,139 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:11:39,139 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControlBlock, hphSpec = 'aaùControlBlockùUML364ùdd' +2024-09-08 15:11:39,139 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,139 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,139 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,139 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNOwnedDS, hphSpec = 'aaùLNOwnedDSùUML360ùdd' +2024-09-08 15:11:39,139 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LOG, hphSpec = 'aaùLOGùUML374ùdd' +2024-09-08 15:11:39,139 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:11:39,139 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,139 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,139 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,139 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LOGReference, hphSpec = 'aaùLOGReferenceùUML189ùdd' +2024-09-08 15:11:39,140 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:11:39,140 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControlBlock, hphSpec = 'aaùControlBlockùUML364ùdd' +2024-09-08 15:11:39,140 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,140 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,140 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,140 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MulticastAddress, hphSpec = 'aaùMulticastAddressùUML104ùdd' +2024-09-08 15:11:39,140 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNOwnedDS, hphSpec = 'aaùLNOwnedDSùUML360ùdd' +2024-09-08 15:11:39,140 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN0, hphSpec = 'aaùLN0ùUML198ùdd' +2024-09-08 15:11:39,140 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControlBlock, hphSpec = 'aaùControlBlockùUML364ùdd' +2024-09-08 15:11:39,140 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,140 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,140 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,140 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SVCB, hphSpec = 'aaùSVCBùUML370ùdd' +2024-09-08 15:11:39,140 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControlBlock, hphSpec = 'aaùControlBlockùUML364ùdd' +2024-09-08 15:11:39,140 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,140 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,140 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,141 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MulticastAddress, hphSpec = 'aaùMulticastAddressùUML104ùdd' +2024-09-08 15:11:39,141 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNOwnedDS, hphSpec = 'aaùLNOwnedDSùUML360ùdd' +2024-09-08 15:11:39,141 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN0, hphSpec = 'aaùLN0ùUML198ùdd' +2024-09-08 15:11:39,141 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SVCB, hphSpec = 'aaùSVCBùUML370ùdd' +2024-09-08 15:11:39,141 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControlBlock, hphSpec = 'aaùControlBlockùUML364ùdd' +2024-09-08 15:11:39,141 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,141 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,141 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,141 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IPAddress, hphSpec = 'aaùIPAddressùUML103ùdd' +2024-09-08 15:11:39,141 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DS, hphSpec = 'aaùDSùUML359ùdd' +2024-09-08 15:11:39,141 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN0, hphSpec = 'aaùLN0ùUML198ùdd' +2024-09-08 15:11:39,141 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControlBlock, hphSpec = 'aaùControlBlockùUML364ùdd' +2024-09-08 15:11:39,141 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,141 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,141 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,141 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SG, hphSpec = 'aaùFCDA_SGùUML291ùdd' +2024-09-08 15:11:39,142 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SE, hphSpec = 'aaùFCDA_SEùUML286ùdd' +2024-09-08 15:11:39,142 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN0, hphSpec = 'aaùLN0ùUML198ùdd' +2024-09-08 15:11:39,142 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,142 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,142 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FILEReference, hphSpec = 'aaùFILEReferenceùUML182ùdd' +2024-09-08 15:11:39,144 [main] INFO PackageDocImpl - collecting doc for package MetaModelFCsAndTrgOps ... +2024-09-08 15:11:39,144 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF, hphSpec = 'aaùFCDA_CFùUML256ùdd' +2024-09-08 15:11:39,144 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,144 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,144 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,144 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,145 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF_dchg, hphSpec = 'aaùFCDA_CF_dchgùUML258ùdd' +2024-09-08 15:11:39,145 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF, hphSpec = 'aaùFCDA_CFùUML256ùdd' +2024-09-08 15:11:39,145 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,145 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,145 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,145 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,145 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_MX, hphSpec = 'aaùFCDA_MXùUML273ùdd' +2024-09-08 15:11:39,145 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,145 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,145 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,145 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,146 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SE_dchg, hphSpec = 'aaùFCDA_SE_dchgùUML287ùdd' +2024-09-08 15:11:39,146 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SE, hphSpec = 'aaùFCDA_SEùUML286ùdd' +2024-09-08 15:11:39,146 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,146 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,146 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,146 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,146 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SG_dchg, hphSpec = 'aaùFCDA_SG_dchgùUML292ùdd' +2024-09-08 15:11:39,146 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SG, hphSpec = 'aaùFCDA_SGùUML291ùdd' +2024-09-08 15:11:39,146 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,147 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,147 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,147 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,147 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-08 15:11:39,147 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,147 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,147 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,147 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,147 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST_dchg, hphSpec = 'aaùFCDA_ST_dchgùUML302ùdd' +2024-09-08 15:11:39,147 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-08 15:11:39,147 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,147 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,147 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,148 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,148 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST_dchg_dupd, hphSpec = 'aaùFCDA_ST_dchg_dupdùUML310ùdd' +2024-09-08 15:11:39,148 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-08 15:11:39,148 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,148 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,148 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,148 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,148 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SV, hphSpec = 'aaùFCDA_SVùUML318ùdd' +2024-09-08 15:11:39,148 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,148 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,148 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,148 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,149 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,149 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,149 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,149 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,149 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FcKind, hphSpec = 'aaùFcKindùUML79ùdd' +2024-09-08 15:11:39,149 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,149 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,149 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,149 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,149 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FcKind, hphSpec = 'aaùFcKindùUML79ùdd' +2024-09-08 15:11:39,149 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF, hphSpec = 'aaùFCDA_CFùUML256ùdd' +2024-09-08 15:11:39,149 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,150 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,150 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,150 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,150 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TrgOpKind, hphSpec = 'aaùTrgOpKindùUML80ùdd' +2024-09-08 15:11:39,150 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,150 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,150 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,150 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,150 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FcKind, hphSpec = 'aaùFcKindùUML79ùdd' +2024-09-08 15:11:39,150 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,150 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,150 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,150 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,150 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FcKind, hphSpec = 'aaùFcKindùUML79ùdd' +2024-09-08 15:11:39,150 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,151 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,151 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,151 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,151 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,151 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FcKind, hphSpec = 'aaùFcKindùUML79ùdd' +2024-09-08 15:11:39,151 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,151 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_MX, hphSpec = 'aaùFCDA_MXùUML273ùdd' +2024-09-08 15:11:39,151 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,151 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,151 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,151 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,151 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TrgOpKind, hphSpec = 'aaùTrgOpKindùUML80ùdd' +2024-09-08 15:11:39,151 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_MX, hphSpec = 'aaùFCDA_MXùUML273ùdd' +2024-09-08 15:11:39,151 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,151 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,151 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,151 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,151 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TrgOpKind, hphSpec = 'aaùTrgOpKindùUML80ùdd' +2024-09-08 15:11:39,152 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_MX, hphSpec = 'aaùFCDA_MXùUML273ùdd' +2024-09-08 15:11:39,152 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,152 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,152 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,152 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,152 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TrgOpKind, hphSpec = 'aaùTrgOpKindùUML80ùdd' +2024-09-08 15:11:39,152 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,152 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,152 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,152 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,152 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FcKind, hphSpec = 'aaùFcKindùUML79ùdd' +2024-09-08 15:11:39,152 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,152 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_OR, hphSpec = 'aaùFCDA_ORùUML283ùdd' +2024-09-08 15:11:39,152 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,152 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,152 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,152 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,152 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TrgOpKind, hphSpec = 'aaùTrgOpKindùUML80ùdd' +2024-09-08 15:11:39,153 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,153 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,153 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,153 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,153 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FcKind, hphSpec = 'aaùFcKindùUML79ùdd' +2024-09-08 15:11:39,153 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,153 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,153 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SE, hphSpec = 'aaùFCDA_SEùUML286ùdd' +2024-09-08 15:11:39,153 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,153 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,153 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,153 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,153 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TrgOpKind, hphSpec = 'aaùTrgOpKindùUML80ùdd' +2024-09-08 15:11:39,153 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,153 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,153 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,153 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,154 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FcKind, hphSpec = 'aaùFcKindùUML79ùdd' +2024-09-08 15:11:39,154 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,154 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SG, hphSpec = 'aaùFCDA_SGùUML291ùdd' +2024-09-08 15:11:39,154 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,154 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,154 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,154 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,154 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TrgOpKind, hphSpec = 'aaùTrgOpKindùUML80ùdd' +2024-09-08 15:11:39,154 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,154 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,154 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,154 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,154 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FcKind, hphSpec = 'aaùFcKindùUML79ùdd' +2024-09-08 15:11:39,154 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SP, hphSpec = 'aaùFCDA_SPùUML296ùdd' +2024-09-08 15:11:39,154 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,154 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,155 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,155 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,155 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TrgOpKind, hphSpec = 'aaùTrgOpKindùUML80ùdd' +2024-09-08 15:11:39,155 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,155 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,155 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,155 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,155 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FcKind, hphSpec = 'aaùFcKindùUML79ùdd' +2024-09-08 15:11:39,155 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,155 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-08 15:11:39,155 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,155 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,155 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,155 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,155 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TrgOpKind, hphSpec = 'aaùTrgOpKindùUML80ùdd' +2024-09-08 15:11:39,155 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-08 15:11:39,155 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,156 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,156 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,156 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,156 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TrgOpKind, hphSpec = 'aaùTrgOpKindùUML80ùdd' +2024-09-08 15:11:39,156 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-08 15:11:39,156 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,156 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,156 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,156 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,156 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TrgOpKind, hphSpec = 'aaùTrgOpKindùUML80ùdd' +2024-09-08 15:11:39,156 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-08 15:11:39,156 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,156 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,156 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,156 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,156 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TrgOpKind, hphSpec = 'aaùTrgOpKindùUML80ùdd' +2024-09-08 15:11:39,157 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,157 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,157 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,157 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,157 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FcKind, hphSpec = 'aaùFcKindùUML79ùdd' +2024-09-08 15:11:39,157 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumFCDA_ST_dchg, hphSpec = 'aaùEnumFCDA_ST_dchgùUML303ùdd' +2024-09-08 15:11:39,157 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST_dchg, hphSpec = 'aaùFCDA_ST_dchgùUML302ùdd' +2024-09-08 15:11:39,157 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-08 15:11:39,157 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,157 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,157 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,157 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,157 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumFCDA_SV, hphSpec = 'aaùEnumFCDA_SVùUML319ùdd' +2024-09-08 15:11:39,157 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SV, hphSpec = 'aaùFCDA_SVùUML318ùdd' +2024-09-08 15:11:39,157 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,157 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,157 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,157 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,157 [main] INFO PackageDocImpl - collecting doc for package CDCServiceTracking ... +2024-09-08 15:11:39,158 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,158 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:11:39,158 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:11:39,158 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,158 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,158 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,163 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:11:39,163 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,163 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:11:39,163 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:11:39,163 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,163 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CST, hphSpec = 'aaùCSTùUML218ùdd' +2024-09-08 15:11:39,163 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,164 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:11:39,164 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:11:39,164 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,164 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,164 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,164 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:11:39,164 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,164 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:11:39,164 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:11:39,164 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,164 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CST, hphSpec = 'aaùCSTùUML218ùdd' +2024-09-08 15:11:39,164 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,164 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:11:39,164 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:11:39,164 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,164 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,164 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,164 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:11:39,164 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,164 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:11:39,164 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:11:39,164 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,165 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CST, hphSpec = 'aaùCSTùUML218ùdd' +2024-09-08 15:11:39,165 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,165 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:11:39,165 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:11:39,165 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,165 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,165 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,165 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:11:39,165 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,165 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:11:39,165 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:11:39,165 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,166 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CST, hphSpec = 'aaùCSTùUML218ùdd' +2024-09-08 15:11:39,166 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,166 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:11:39,166 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:11:39,166 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,166 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,166 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,166 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:11:39,166 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,166 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:11:39,166 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:11:39,166 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,166 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CST, hphSpec = 'aaùCSTùUML218ùdd' +2024-09-08 15:11:39,166 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,166 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:11:39,166 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:11:39,166 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,166 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,166 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,166 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:11:39,166 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,166 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:11:39,167 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:11:39,167 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,167 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CST, hphSpec = 'aaùCSTùUML218ùdd' +2024-09-08 15:11:39,167 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,167 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:11:39,167 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:11:39,167 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,167 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,167 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,167 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:11:39,167 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,167 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:11:39,167 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:11:39,167 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,167 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CST, hphSpec = 'aaùCSTùUML218ùdd' +2024-09-08 15:11:39,167 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,167 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:11:39,167 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:11:39,167 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,167 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,167 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,168 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:11:39,168 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,168 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:11:39,168 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:11:39,168 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,168 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CST, hphSpec = 'aaùCSTùUML218ùdd' +2024-09-08 15:11:39,168 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,168 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:11:39,168 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:11:39,168 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,168 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,168 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,168 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:11:39,168 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,168 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:11:39,168 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:11:39,168 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,168 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CST, hphSpec = 'aaùCSTùUML218ùdd' +2024-09-08 15:11:39,168 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,168 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:11:39,168 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:11:39,169 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,169 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,169 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,171 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:11:39,171 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,171 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:11:39,171 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:11:39,171 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,171 [main] INFO PackageDocImpl - collecting doc for package IEC61850_7_3 ... +2024-09-08 15:11:39,172 [main] INFO PackageDocImpl - collecting doc for package PresenceConditions ... +2024-09-08 15:11:39,172 [main] INFO DocCollectorImpl - >> retained scoped IEC61850/IEC61850-7-3/PresenceConditions +2024-09-08 15:11:39,178 [main] INFO PackageDocImpl - collected presence conditions from PresenceConditions ... +2024-09-08 15:11:39,178 [main] TRACE PackageDocImpl - org.tanjakostic.jcleancim.docgen.collector.impl.PresCondPackageDoc@50b9f2Conditions for element inclusion +This clause introduces conditions that specify presence of elements in a given context (one LN, or one CDC, or one data object for dataNs). +shows presence conditions. +Conditions for presence of elements within a context +"Condition name" | "Definition" +"M" | "Element is mandatory." +"O" | "Element is optional." +"MFsubst" | "Element is mandatory if substitution is supported (for substitution, see IEC 61850-7-2), otherwise forbidden." +"AtLeastOne(n)" | "At least one of marked elements shall be present." +"AllOrNonePerGroup(n)" | "Parameter n: group number (>0). +All or none of the elements of a group n shall be present." +"AtMostOne" | "At most one of marked elements shall be present." +"MF(sibling)" | "Parameter sibling: sibling element name. +Mandatory if sibling element is present, otherwise forbidden." +"AllOnlyOneGroup(n)" | "Parameter n: group number (>0). +All elements of only one group n shall be present." +"MOln0" | "The element is mandatory in the context of LLN0; otherwise optional." +"MFln0" | "The element is mandatory in the context of LLN0; otherwise forbidden." +"MOlnNs" | "The element is mandatory if the name space of its logical node deviates from the name space of the containing logical device, otherwise optional. +Notes: +- The logical device name space is given in LLN0.NamPlt.ldNs. +- Applies to LPL.lnNs only." +"MOdataNs" | "The element is mandatory if the name space of its data object deviates from the name space of its logical node, otherwise optional. +Notes: +- The name space a logical node LN belongs to is given by: +- The data attribute NamPlt.lnNs if available, otherwise +- The containing logical device name space, i.e., the data attribute NamPlt.ldNs of the relevant LLN0. +- Applies to the data attribute dataNs of any CDC only." +"MOcdcNs" | "The element is mandatory if the name space of its CDC deviates from the name space of its data object, otherwise optional. +Notes: +- The name space a data object belongs to is given by: +- The data attribute dataNs in the same CDC if it exists, otherwise +- The containing logical node’s namespace, i.e., the attribute NamPlt.lnNs if it exist, otherwise +- The containing logical device name space, i.e., the data attribute NamPlt.ldNs of the relevant LLN0. +- Applies to data attributes 'cdcNs' and 'cdcName' only. +- From Ed. 2 on shall only be used for logical node definitions of other name spaces (e.g., Wind) to refer to the standardized CDC definitions." +"MFscaledAV" | "The element is mandatory if any sibling elements of type AnalogueValue include 'i' as a child, otherwise forbidden." +"MFscaledMagV" | "The element is mandatory if any sibling elements of type Vector include 'i' as a child of their 'mag' attribute, otherwise forbidden." +"MFscaledAngV" | "The element is mandatory if any sibling elements of type Vector include 'i' as a child of their 'ang' attribute, otherwise forbidden." +"MFsg" | "The element is mandatory if it is member of setting group, otherwise forbidden. +Note: MFsg, OFsg, and MFsgAtLeastOne always all apply or all do not apply in a given context." +"OFsg" | "The element is optional and may be used only if it is member of setting groups, otherwise forbidden. +Note: MFsg, OFsg, and MFsgAtLeastOne always all apply or all do not apply in a given context." +"MFsgAtLeastOne" | "At least one of the elements is mandatory if it is member of setting group (the others are optional). Otherwise, they are all forbidden. +Note: MFsg, OFsg, and MFsgAtLeastOne always all apply or all do not apply in a given context." +"MFnsg" | "The element is mandatory for settings outside setting groups, otherwise forbidden. +Note: MFnsg, OFnsg, and MFnsgAtLeastOne always all apply or all do not apply in a given context." +"OFnsg" | "The element is optional and may be used only for settings outside setting groups, otherwise forbidden. +Note: MFnsg, OFnsg, and MFnsgAtLeastOne always all apply or all do not apply in a given context." +"MFnsgAtLeastOne" | "At least one of the elements is mandatory for settings outside setting groups (the others are optional). Otherwise, they are all forbidden. +Note: MFnsg, OFnsg, and MFnsgAtLeastOne always all apply or all do not apply in a given context." +"MFrms" | "The element is mandatory if the harmonic values in the context are calculated as a ratio to RMS value (value of data attribute 'hvRef' is 'rms'), forbidden otherwise." +"Mmulti" | "At least one element shall be present; all instances have an instance number within range [1, 99] (see Part 7-1)." +"Omulti" | "Zero or more elements may be present; all instances have an instance number within range [1, 99] (see Part 7-1)." +"OmultiRange(min, max)" | "Parameters min, max: limits for instance number (>0). +Zero or more elements may be present; all instances have an instance number within range [min, max] (see Part 7-1)." +"MOcond(condID)" | "Parameter condID: condition number (>0). +Textual presence condition (non-machine processable) with reference condID to context specific text. If satisfied, the element is mandatory, otherwise optional." +"MF(condID)" | "Parameter condID: condition number (>0). +Textual presence condition (non-machine processable) with reference condID to context specific text. If satisfied, the element is mandatory, otherwise forbidden." +"OF(condID)" | "Parameter condID: condition number (>0). +Textual presence condition (non-machine processable) with reference condID to context specific text. If satisfied, the element is optional, otherwise forbidden." +"MOrootLD" | "The element is mandatory in the context of a root logical device; otherwise it is optional." + +2024-09-08 15:11:39,178 [main] INFO PackageDocImpl - collecting doc for package DAEnums ... +2024-09-08 15:11:39,178 [main] INFO DocCollectorImpl - >> retained scoped IEC61850/IEC61850-7-3/DAEnums +2024-09-08 15:11:39,184 [main] TRACE EnumsScl - ---- collecting XML doc for enums in DAEnums ... +2024-09-08 15:11:39,192 [main] INFO PackageDocImpl - collected SCL from DAEnums ... +2024-09-08 15:11:39,192 [main] TRACE PackageDocImpl - + + m + kg + s + A + K + mol + cd + deg + rad + sr + Gy + Bq + °C + Sv + F + C + S + H + V + ohm + J + N + Hz + lx + Lm + Wb + T + W + Pa + + + m/s + m/s² + m³/s + m/m³ + M + kg/m³ + m²/s + W/m K + J/K + ppm + 1/s + rad/s + W/m² + J/m² + S/m + K/s + Pa/s + J/kg K + VA + Watts + VAr + phi + cos(phi) + Vs + + As + + A²t + VAh + Wh + VArh + V/Hz + Hz/s + char + char/s + kgm² + dB + J/Wh + W/s + l/s + dBm + + + y + z + a + f + p + n + µ + m + c + d + + da + h + k + M + G + T + P + E + Z + Y + + + unknown + forward + backward + + + Va + Vb + Vc + Aa + Ab + Ac + Vab + Vbc + Vca + Vother + Aother + Synchrophasor + + + +2024-09-08 15:11:39,192 [main] INFO PackageDocImpl - collecting doc for package ImplicitDAs ... +2024-09-08 15:11:39,192 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:11:39,192 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:11:39,192 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:11:39,192 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,192 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,192 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,193 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:11:39,193 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:11:39,193 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:11:39,193 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,193 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,193 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,194 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:11:39,194 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:11:39,194 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:11:39,194 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,194 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,194 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,194 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:11:39,194 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:11:39,194 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:11:39,194 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,194 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,194 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,194 [main] INFO PackageDocImpl - collecting doc for package ConstructedDAs ... +2024-09-08 15:11:39,195 [main] INFO DocCollectorImpl - >> retained scoped IEC61850/IEC61850-7-3/ConstructedDAs +2024-09-08 15:11:39,195 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PackedPrimitiveDA, hphSpec = 'aaùPackedPrimitiveDAùUML336ùdd' +2024-09-08 15:11:39,195 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:11:39,195 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:11:39,195 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,195 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,195 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,195 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ValidityKind, hphSpec = 'aaùValidityKindùUML120ùdd' +2024-09-08 15:11:39,195 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DetailQual, hphSpec = 'aaùDetailQualùUML121ùdd' +2024-09-08 15:11:39,195 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SourceKind, hphSpec = 'aaùSourceKindùUML122ùdd' +2024-09-08 15:11:39,195 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,195 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,196 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,196 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,196 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,196 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,196 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,196 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,196 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,196 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,197 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ComposedDA, hphSpec = 'aaùComposedDAùUML354ùdd' +2024-09-08 15:11:39,197 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:11:39,197 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,197 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,197 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,197 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT32, hphSpec = 'aaùINT32ùUML85ùdd' +2024-09-08 15:11:39,197 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FLOAT32, hphSpec = 'aaùFLOAT32ùUML87ùdd' +2024-09-08 15:11:39,198 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ComposedDA, hphSpec = 'aaùComposedDAùUML354ùdd' +2024-09-08 15:11:39,198 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:11:39,198 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,198 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,198 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,198 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AnalogueValue, hphSpec = 'aaùAnalogueValueùUML355ùdd' +2024-09-08 15:11:39,198 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AnalogueValue, hphSpec = 'aaùAnalogueValueùUML355ùdd' +2024-09-08 15:11:39,198 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AnalogueValue, hphSpec = 'aaùAnalogueValueùUML355ùdd' +2024-09-08 15:11:39,198 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AnalogueValue, hphSpec = 'aaùAnalogueValueùUML355ùdd' +2024-09-08 15:11:39,198 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AnalogueValue, hphSpec = 'aaùAnalogueValueùUML355ùdd' +2024-09-08 15:11:39,198 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AnalogueValue, hphSpec = 'aaùAnalogueValueùUML355ùdd' +2024-09-08 15:11:39,198 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT32U, hphSpec = 'aaùINT32UùUML86ùdd' +2024-09-08 15:11:39,199 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ComposedDA, hphSpec = 'aaùComposedDAùUML354ùdd' +2024-09-08 15:11:39,199 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:11:39,199 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,199 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,199 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,199 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SIUnitKind, hphSpec = 'aaùSIUnitKindùUML116ùdd' +2024-09-08 15:11:39,199 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MultiplierKind, hphSpec = 'aaùMultiplierKindùUML117ùdd' +2024-09-08 15:11:39,199 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ComposedDA, hphSpec = 'aaùComposedDAùUML354ùdd' +2024-09-08 15:11:39,199 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:11:39,199 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,199 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,199 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,200 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FLOAT32, hphSpec = 'aaùFLOAT32ùUML87ùdd' +2024-09-08 15:11:39,200 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FLOAT32, hphSpec = 'aaùFLOAT32ùUML87ùdd' +2024-09-08 15:11:39,200 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FLOAT32, hphSpec = 'aaùFLOAT32ùUML87ùdd' +2024-09-08 15:11:39,200 [main] INFO PackageDocImpl - collecting doc for package FCDAs ... +2024-09-08 15:11:39,200 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_MX, hphSpec = 'aaùFCDA_MXùUML273ùdd' +2024-09-08 15:11:39,200 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,200 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,200 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,200 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,200 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_MX_dchg, hphSpec = 'aaùFCDA_MX_dchgùUML275ùdd' +2024-09-08 15:11:39,200 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_MX, hphSpec = 'aaùFCDA_MXùUML273ùdd' +2024-09-08 15:11:39,201 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,201 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,201 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,201 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,201 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_MX_dchg_dupd, hphSpec = 'aaùFCDA_MX_dchg_dupdùUML278ùdd' +2024-09-08 15:11:39,201 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_MX, hphSpec = 'aaùFCDA_MXùUML273ùdd' +2024-09-08 15:11:39,201 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,201 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,201 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,201 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,201 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_BL, hphSpec = 'aaùFCDA_BLùUML254ùdd' +2024-09-08 15:11:39,201 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,201 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,201 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,201 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,201 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF_dchg, hphSpec = 'aaùFCDA_CF_dchgùUML258ùdd' +2024-09-08 15:11:39,201 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF, hphSpec = 'aaùFCDA_CFùUML256ùdd' +2024-09-08 15:11:39,201 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,201 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,201 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,201 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,202 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_MX_dchg, hphSpec = 'aaùFCDA_MX_dchgùUML275ùdd' +2024-09-08 15:11:39,202 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_MX, hphSpec = 'aaùFCDA_MXùUML273ùdd' +2024-09-08 15:11:39,202 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,202 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,202 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,202 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,202 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_OR_dchg, hphSpec = 'aaùFCDA_OR_dchgùUML284ùdd' +2024-09-08 15:11:39,202 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_OR, hphSpec = 'aaùFCDA_ORùUML283ùdd' +2024-09-08 15:11:39,202 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,202 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,202 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,202 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,202 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SE, hphSpec = 'aaùFCDA_SEùUML286ùdd' +2024-09-08 15:11:39,202 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,202 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,203 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,203 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,203 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SG, hphSpec = 'aaùFCDA_SGùUML291ùdd' +2024-09-08 15:11:39,203 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,203 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,203 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,203 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,203 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SP_dchg, hphSpec = 'aaùFCDA_SP_dchgùUML297ùdd' +2024-09-08 15:11:39,203 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SP, hphSpec = 'aaùFCDA_SPùUML296ùdd' +2024-09-08 15:11:39,203 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,203 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,203 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,203 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,203 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST_dchg, hphSpec = 'aaùFCDA_ST_dchgùUML302ùdd' +2024-09-08 15:11:39,203 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-08 15:11:39,203 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,203 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,203 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,204 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,204 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SV, hphSpec = 'aaùFCDA_SVùUML318ùdd' +2024-09-08 15:11:39,204 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,204 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,204 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,204 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,204 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PackedEnumFCDA_SP_dchg, hphSpec = 'aaùPackedEnumFCDA_SP_dchgùUML304ùdd' +2024-09-08 15:11:39,204 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumFCDA_ST_dchg, hphSpec = 'aaùEnumFCDA_ST_dchgùUML303ùdd' +2024-09-08 15:11:39,204 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST_dchg, hphSpec = 'aaùFCDA_ST_dchgùUML302ùdd' +2024-09-08 15:11:39,204 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-08 15:11:39,204 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,204 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,204 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,204 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,206 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PackedEnumFCDA_SV, hphSpec = 'aaùPackedEnumFCDA_SVùUML320ùdd' +2024-09-08 15:11:39,206 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumFCDA_SV, hphSpec = 'aaùEnumFCDA_SVùUML319ùdd' +2024-09-08 15:11:39,206 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SV, hphSpec = 'aaùFCDA_SVùUML318ùdd' +2024-09-08 15:11:39,206 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,206 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,206 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,206 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,207 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumFCDA_CF_dchg, hphSpec = 'aaùEnumFCDA_CF_dchgùUML259ùdd' +2024-09-08 15:11:39,207 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF_dchg, hphSpec = 'aaùFCDA_CF_dchgùUML258ùdd' +2024-09-08 15:11:39,207 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF, hphSpec = 'aaùFCDA_CFùUML256ùdd' +2024-09-08 15:11:39,207 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,207 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,207 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,207 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,207 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumFCDA_ST_dchg, hphSpec = 'aaùEnumFCDA_ST_dchgùUML303ùdd' +2024-09-08 15:11:39,207 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST_dchg, hphSpec = 'aaùFCDA_ST_dchgùUML302ùdd' +2024-09-08 15:11:39,207 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-08 15:11:39,207 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,207 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,207 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,207 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,207 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumFCDA_ST_dchg_dupd, hphSpec = 'aaùEnumFCDA_ST_dchg_dupdùUML311ùdd' +2024-09-08 15:11:39,207 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST_dchg_dupd, hphSpec = 'aaùFCDA_ST_dchg_dupdùUML310ùdd' +2024-09-08 15:11:39,207 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-08 15:11:39,207 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,207 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,207 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,207 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,208 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumFCDA_SV, hphSpec = 'aaùEnumFCDA_SVùUML319ùdd' +2024-09-08 15:11:39,208 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SV, hphSpec = 'aaùFCDA_SVùUML318ùdd' +2024-09-08 15:11:39,208 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,208 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,208 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,208 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,208 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF, hphSpec = 'aaùFCDA_CFùUML256ùdd' +2024-09-08 15:11:39,208 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,208 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,208 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,208 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,208 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF_dchg, hphSpec = 'aaùFCDA_CF_dchgùUML258ùdd' +2024-09-08 15:11:39,208 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF, hphSpec = 'aaùFCDA_CFùUML256ùdd' +2024-09-08 15:11:39,208 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,208 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,208 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,208 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,209 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF_dchg, hphSpec = 'aaùFCDA_CF_dchgùUML258ùdd' +2024-09-08 15:11:39,209 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF, hphSpec = 'aaùFCDA_CFùUML256ùdd' +2024-09-08 15:11:39,209 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,209 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,209 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,209 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,209 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF_dchg, hphSpec = 'aaùFCDA_CF_dchgùUML258ùdd' +2024-09-08 15:11:39,209 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF, hphSpec = 'aaùFCDA_CFùUML256ùdd' +2024-09-08 15:11:39,209 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,209 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,209 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,209 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,209 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST_dchg, hphSpec = 'aaùFCDA_ST_dchgùUML302ùdd' +2024-09-08 15:11:39,209 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-08 15:11:39,209 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,209 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,209 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,209 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,210 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST_dchg_dupd, hphSpec = 'aaùFCDA_ST_dchg_dupdùUML310ùdd' +2024-09-08 15:11:39,210 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-08 15:11:39,210 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,210 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,210 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,210 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,210 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumFCDA_CF_dchg, hphSpec = 'aaùEnumFCDA_CF_dchgùUML259ùdd' +2024-09-08 15:11:39,211 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF_dchg, hphSpec = 'aaùFCDA_CF_dchgùUML258ùdd' +2024-09-08 15:11:39,211 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF, hphSpec = 'aaùFCDA_CFùUML256ùdd' +2024-09-08 15:11:39,211 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,211 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,211 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,211 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,211 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumFCDA_ST_dchg, hphSpec = 'aaùEnumFCDA_ST_dchgùUML303ùdd' +2024-09-08 15:11:39,211 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST_dchg, hphSpec = 'aaùFCDA_ST_dchgùUML302ùdd' +2024-09-08 15:11:39,211 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-08 15:11:39,211 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,211 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,211 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,211 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,211 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_DC, hphSpec = 'aaùFCDA_DCùUML268ùdd' +2024-09-08 15:11:39,211 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,211 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,211 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,211 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,211 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SE, hphSpec = 'aaùFCDA_SEùUML286ùdd' +2024-09-08 15:11:39,211 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,212 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,212 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,212 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,212 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SG, hphSpec = 'aaùFCDA_SGùUML291ùdd' +2024-09-08 15:11:39,212 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,212 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,212 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,212 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,212 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SP, hphSpec = 'aaùFCDA_SPùUML296ùdd' +2024-09-08 15:11:39,212 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,212 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,212 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,212 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,212 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_MX_qchg, hphSpec = 'aaùFCDA_MX_qchgùUML280ùdd' +2024-09-08 15:11:39,212 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_MX, hphSpec = 'aaùFCDA_MXùUML273ùdd' +2024-09-08 15:11:39,212 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,212 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,212 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,212 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,212 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST_qchg, hphSpec = 'aaùFCDA_ST_qchgùUML315ùdd' +2024-09-08 15:11:39,212 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-08 15:11:39,212 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,213 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,213 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,213 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,213 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_SV, hphSpec = 'aaùFCDA_SVùUML318ùdd' +2024-09-08 15:11:39,213 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,213 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,213 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,213 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,214 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF_dchg, hphSpec = 'aaùFCDA_CF_dchgùUML258ùdd' +2024-09-08 15:11:39,214 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_CF, hphSpec = 'aaùFCDA_CFùUML256ùdd' +2024-09-08 15:11:39,214 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,214 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,214 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,214 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,214 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_ST, hphSpec = 'aaùFCDA_STùUML300ùdd' +2024-09-08 15:11:39,214 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,214 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,214 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,214 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,214 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_DC, hphSpec = 'aaùFCDA_DCùUML268ùdd' +2024-09-08 15:11:39,214 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,214 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,214 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,214 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,214 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA_EX, hphSpec = 'aaùFCDA_EXùUML271ùdd' +2024-09-08 15:11:39,214 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = FCDA, hphSpec = 'aaùFCDAùUML253ùdd' +2024-09-08 15:11:39,214 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,214 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,214 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,215 [main] INFO PackageDocImpl - collecting doc for package CommonDataClasses ... +2024-09-08 15:11:39,215 [main] INFO DocCollectorImpl - >> retained scoped IEC61850/IEC61850-7-3/CommonDataClasses +2024-09-08 15:11:39,215 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:11:39,215 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:11:39,215 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,215 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,215 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,215 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:11:39,215 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:11:39,215 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:11:39,215 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ComposedCDC, hphSpec = 'aaùComposedCDCùUML249ùdd' +2024-09-08 15:11:39,215 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:11:39,215 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,215 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,215 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,216 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:11:39,216 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:11:39,216 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:11:39,216 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,216 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:11:39,216 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:11:39,216 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,216 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,216 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,216 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,216 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:11:39,216 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:11:39,217 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:11:39,217 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,217 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:11:39,217 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,217 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:11:39,217 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:11:39,217 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,217 [main] INFO PackageDocImpl - collecting doc for package CDCStatusInfo ... +2024-09-08 15:11:39,217 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,217 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,217 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:11:39,217 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:11:39,217 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,217 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,217 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,218 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DpStatusKind, hphSpec = 'aaùDpStatusKindùUML82ùdd' +2024-09-08 15:11:39,218 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:11:39,218 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimeStamp, hphSpec = 'aaùTimeStampùUML93ùdd' +2024-09-08 15:11:39,218 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DpStatusKind, hphSpec = 'aaùDpStatusKindùUML82ùdd' +2024-09-08 15:11:39,218 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:11:39,218 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,218 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:11:39,218 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,218 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:11:39,218 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:11:39,218 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,218 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,218 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,218 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:11:39,218 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,218 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:11:39,218 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:11:39,218 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,219 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,219 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,219 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:11:39,219 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:11:39,219 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,219 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,219 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,219 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:11:39,219 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:11:39,219 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimeStamp, hphSpec = 'aaùTimeStampùUML93ùdd' +2024-09-08 15:11:39,219 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:11:39,219 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:11:39,219 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,219 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:11:39,219 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,219 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:11:39,219 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:11:39,219 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,219 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,219 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,220 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:11:39,220 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,220 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:11:39,220 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:11:39,220 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,223 [main] INFO Reordering - adding reordering spec: MOVE "subVal" AFTER "subEna" +2024-09-08 15:11:39,223 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,223 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:11:39,223 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:11:39,223 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,223 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,223 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,224 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:11:39,224 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:11:39,224 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimeStamp, hphSpec = 'aaùTimeStampùUML93ùdd' +2024-09-08 15:11:39,224 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:11:39,224 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,224 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:11:39,224 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:11:39,224 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,224 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,224 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:11:39,224 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:11:39,224 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,224 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,224 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,225 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,225 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AllOrNonePerGroup(1), hphSpec = 'aaùAllOrNonePerGroup(1)ùUML560ùdd' +2024-09-08 15:11:39,225 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,225 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AllOrNonePerGroup(2), hphSpec = 'aaùAllOrNonePerGroup(2)ùUML560ùdd' +2024-09-08 15:11:39,225 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:11:39,225 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,225 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:11:39,225 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:11:39,225 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,225 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,225 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:11:39,225 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:11:39,225 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,225 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,225 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,225 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT32, hphSpec = 'aaùINT32ùUML85ùdd' +2024-09-08 15:11:39,226 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT16U, hphSpec = 'aaùINT16UùUML84ùdd' +2024-09-08 15:11:39,226 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:11:39,226 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,226 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:11:39,226 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:11:39,226 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,227 [main] INFO PackageDocImpl - collecting doc for package CDCAnalogueInfo ... +2024-09-08 15:11:39,227 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseComposedCDC, hphSpec = 'aaùBaseComposedCDCùUML250ùdd' +2024-09-08 15:11:39,227 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ComposedCDC, hphSpec = 'aaùComposedCDCùUML249ùdd' +2024-09-08 15:11:39,227 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:11:39,227 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,227 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,227 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,227 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT16U, hphSpec = 'aaùINT16UùUML84ùdd' +2024-09-08 15:11:39,227 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT32U, hphSpec = 'aaùINT32UùUML86ùdd' +2024-09-08 15:11:39,228 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:11:39,228 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseComposedCDC, hphSpec = 'aaùBaseComposedCDCùUML250ùdd' +2024-09-08 15:11:39,228 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:11:39,228 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:11:39,228 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseComposedCDC, hphSpec = 'aaùBaseComposedCDCùUML250ùdd' +2024-09-08 15:11:39,228 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,228 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,228 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:11:39,228 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:11:39,228 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,228 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,228 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,228 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,228 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:11:39,228 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,228 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:11:39,228 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:11:39,228 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,228 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,228 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,228 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = RangeConfig, hphSpec = 'aaùRangeConfigùUML356ùdd' +2024-09-08 15:11:39,228 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MF(range), hphSpec = 'aaùMF(range)ùUML562ùdd' +2024-09-08 15:11:39,229 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = RangeConfig, hphSpec = 'aaùRangeConfigùUML356ùdd' +2024-09-08 15:11:39,229 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MF(rangeAng), hphSpec = 'aaùMF(rangeAng)ùUML562ùdd' +2024-09-08 15:11:39,229 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:11:39,229 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,229 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:11:39,229 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:11:39,229 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,229 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HarmonicMeasurandCDC, hphSpec = 'aaùHarmonicMeasurandCDCùUML251ùdd' +2024-09-08 15:11:39,229 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseComposedCDC, hphSpec = 'aaùBaseComposedCDCùUML250ùdd' +2024-09-08 15:11:39,229 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ComposedCDC, hphSpec = 'aaùComposedCDCùUML249ùdd' +2024-09-08 15:11:39,230 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:11:39,230 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,230 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,230 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,230 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CMV, hphSpec = 'aaùCMVùUML236ùdd' +2024-09-08 15:11:39,230 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PhaseAngleReferenceKind, hphSpec = 'aaùPhaseAngleReferenceKindùUML119ùdd' +2024-09-08 15:11:39,230 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT16U, hphSpec = 'aaùINT16UùUML84ùdd' +2024-09-08 15:11:39,230 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HarmonicMeasurandCDC, hphSpec = 'aaùHarmonicMeasurandCDCùUML251ùdd' +2024-09-08 15:11:39,230 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT32U, hphSpec = 'aaùINT32UùUML86ùdd' +2024-09-08 15:11:39,230 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HarmonicMeasurandCDC, hphSpec = 'aaùHarmonicMeasurandCDCùUML251ùdd' +2024-09-08 15:11:39,230 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:11:39,230 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseComposedCDC, hphSpec = 'aaùBaseComposedCDCùUML250ùdd' +2024-09-08 15:11:39,230 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:11:39,231 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:11:39,231 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseComposedCDC, hphSpec = 'aaùBaseComposedCDCùUML250ùdd' +2024-09-08 15:11:39,231 [main] INFO Reordering - adding reordering spec: MOVE "angRef" AFTER "evalTm" +2024-09-08 15:11:39,231 [main] INFO PackageDocImpl - collecting doc for package CDCControl ... +2024-09-08 15:11:39,232 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,232 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,232 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:11:39,232 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:11:39,232 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,232 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,232 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,234 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,234 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,235 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:11:39,235 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,235 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:11:39,235 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:11:39,235 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,235 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,235 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,235 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:11:39,235 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,235 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:11:39,235 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:11:39,235 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,235 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControllableCDC, hphSpec = 'aaùControllableCDCùUML237ùdd' +2024-09-08 15:11:39,235 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,235 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,235 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:11:39,235 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:11:39,235 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,235 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,235 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,236 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:11:39,236 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,236 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControllableCDC, hphSpec = 'aaùControllableCDCùUML237ùdd' +2024-09-08 15:11:39,236 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:11:39,236 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:11:39,236 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,236 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:11:39,236 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,236 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:11:39,236 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:11:39,236 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,236 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,236 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,236 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:11:39,236 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,236 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:11:39,236 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:11:39,236 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,236 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:11:39,236 [main] INFO Reordering - adding reordering spec: MOVE "subVal" AFTER "subEna" +2024-09-08 15:11:39,237 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControllableCDC, hphSpec = 'aaùControllableCDCùUML237ùdd' +2024-09-08 15:11:39,237 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,237 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,237 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:11:39,237 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:11:39,237 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,237 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,237 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,237 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AnalogueValue, hphSpec = 'aaùAnalogueValueùUML355ùdd' +2024-09-08 15:11:39,237 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AllOrNonePerGroup(1), hphSpec = 'aaùAllOrNonePerGroup(1)ùUML560ùdd' +2024-09-08 15:11:39,237 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,237 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControllableCDC, hphSpec = 'aaùControllableCDCùUML237ùdd' +2024-09-08 15:11:39,237 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,237 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:11:39,237 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,237 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:11:39,237 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:11:39,237 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,237 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,237 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,237 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:11:39,237 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,238 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:11:39,238 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:11:39,238 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,238 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BsControlKind, hphSpec = 'aaùBsControlKindùUML81ùdd' +2024-09-08 15:11:39,238 [main] INFO PackageDocImpl - collecting doc for package CDCStatusSet ... +2024-09-08 15:11:39,239 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,239 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:11:39,239 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:11:39,239 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,239 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,239 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,239 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:11:39,239 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,239 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:11:39,239 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:11:39,239 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,239 [main] INFO PackageDocImpl - collecting doc for package CDCAnalogueSet ... +2024-09-08 15:11:39,240 [main] INFO PackageDocImpl - collecting doc for package CDCDescription ... +2024-09-08 15:11:39,240 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,240 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:11:39,240 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:11:39,240 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,240 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,240 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,240 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:11:39,240 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFln0, hphSpec = 'aaùMFln0ùUML565ùdd' +2024-09-08 15:11:39,240 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:11:39,240 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOlnNs, hphSpec = 'aaùMOlnNsùUML566ùdd' +2024-09-08 15:11:39,241 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:11:39,241 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,241 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:11:39,241 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:11:39,241 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,241 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENG, hphSpec = 'aaùENGùUML246ùdd' +2024-09-08 15:11:39,241 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENG, hphSpec = 'aaùENGùUML246ùdd' +2024-09-08 15:11:39,241 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HWYE, hphSpec = 'aaùHWYEùUML252ùdd' +2024-09-08 15:11:39,241 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PhaseAngleReferenceKind, hphSpec = 'aaùPhaseAngleReferenceKindùUML119ùdd' +2024-09-08 15:11:39,241 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,242 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,242 [main] DEBUG DataIndexDoc - Attribute 'cdcNs' defined on multiple classes in and under 'CommonDataClasses' - may be possible to avoid duplication by using inheritance. +2024-09-08 15:11:39,242 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,242 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseComposedCDC, hphSpec = 'aaùBaseComposedCDCùUML250ùdd' +2024-09-08 15:11:39,242 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:11:39,242 [main] DEBUG DataIndexDoc - Attribute 'ctlVal' defined on multiple classes in and under 'CommonDataClasses' - may be possible to avoid duplication by using inheritance. +2024-09-08 15:11:39,242 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:11:39,242 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BAC, hphSpec = 'aaùBACùUML241ùdd' +2024-09-08 15:11:39,242 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:11:39,242 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BsControlKind, hphSpec = 'aaùBsControlKindùUML81ùdd' +2024-09-08 15:11:39,242 [main] DEBUG DataIndexDoc - Attribute 'dU' defined on multiple classes in and under 'CommonDataClasses' - may be possible to avoid duplication by using inheritance. +2024-09-08 15:11:39,242 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,242 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseComposedCDC, hphSpec = 'aaùBaseComposedCDCùUML250ùdd' +2024-09-08 15:11:39,242 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:11:39,242 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ACD, hphSpec = 'aaùACDùUML244ùdd' +2024-09-08 15:11:39,242 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HarmonicMeasurandCDC, hphSpec = 'aaùHarmonicMeasurandCDCùUML251ùdd' +2024-09-08 15:11:39,242 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT16U, hphSpec = 'aaùINT16UùUML84ùdd' +2024-09-08 15:11:39,242 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HST, hphSpec = 'aaùHSTùUML245ùdd' +2024-09-08 15:11:39,242 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT32, hphSpec = 'aaùINT32ùUML85ùdd' +2024-09-08 15:11:39,242 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CMV, hphSpec = 'aaùCMVùUML236ùdd' +2024-09-08 15:11:39,242 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LPL, hphSpec = 'aaùLPLùUML248ùdd' +2024-09-08 15:11:39,242 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:11:39,242 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LPL, hphSpec = 'aaùLPLùUML248ùdd' +2024-09-08 15:11:39,243 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:11:39,243 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BAC, hphSpec = 'aaùBACùUML241ùdd' +2024-09-08 15:11:39,243 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AnalogueValue, hphSpec = 'aaùAnalogueValueùUML355ùdd' +2024-09-08 15:11:39,243 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HST, hphSpec = 'aaùHSTùUML245ùdd' +2024-09-08 15:11:39,243 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT16U, hphSpec = 'aaùINT16UùUML84ùdd' +2024-09-08 15:11:39,243 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControllableCDC, hphSpec = 'aaùControllableCDCùUML237ùdd' +2024-09-08 15:11:39,243 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,243 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ACD, hphSpec = 'aaùACDùUML244ùdd' +2024-09-08 15:11:39,243 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,243 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HWYE, hphSpec = 'aaùHWYEùUML252ùdd' +2024-09-08 15:11:39,243 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CMV, hphSpec = 'aaùCMVùUML236ùdd' +2024-09-08 15:11:39,243 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ACD, hphSpec = 'aaùACDùUML244ùdd' +2024-09-08 15:11:39,243 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,243 [main] DEBUG DataIndexDoc - Attribute 'q' defined on multiple classes in and under 'CommonDataClasses' - may be possible to avoid duplication by using inheritance. +2024-09-08 15:11:39,243 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DPS, hphSpec = 'aaùDPSùUML229ùdd' +2024-09-08 15:11:39,243 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,243 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EXY, hphSpec = 'aaùEXYùUML242ùdd' +2024-09-08 15:11:39,243 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:11:39,243 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CMV, hphSpec = 'aaùCMVùUML236ùdd' +2024-09-08 15:11:39,243 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = RangeConfig, hphSpec = 'aaùRangeConfigùUML356ùdd' +2024-09-08 15:11:39,243 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CMV, hphSpec = 'aaùCMVùUML236ùdd' +2024-09-08 15:11:39,243 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = RangeConfig, hphSpec = 'aaùRangeConfigùUML356ùdd' +2024-09-08 15:11:39,243 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENG, hphSpec = 'aaùENGùUML246ùdd' +2024-09-08 15:11:39,243 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HarmonicMeasurandCDC, hphSpec = 'aaùHarmonicMeasurandCDCùUML251ùdd' +2024-09-08 15:11:39,244 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = INT32U, hphSpec = 'aaùINT32UùUML86ùdd' +2024-09-08 15:11:39,244 [main] DEBUG DataIndexDoc - Attribute 'stVal' defined on multiple classes in and under 'CommonDataClasses' - may be possible to avoid duplication by using inheritance. +2024-09-08 15:11:39,244 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DPS, hphSpec = 'aaùDPSùUML229ùdd' +2024-09-08 15:11:39,244 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,244 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:11:39,244 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EXY, hphSpec = 'aaùEXYùUML242ùdd' +2024-09-08 15:11:39,244 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DpStatusKind, hphSpec = 'aaùDpStatusKindùUML82ùdd' +2024-09-08 15:11:39,244 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:11:39,244 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:11:39,244 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:11:39,244 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CMV, hphSpec = 'aaùCMVùUML236ùdd' +2024-09-08 15:11:39,244 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,244 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,244 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,244 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:11:39,244 [main] DEBUG DataIndexDoc - Attribute 'subVal' defined on multiple classes in and under 'CommonDataClasses' - may be possible to avoid duplication by using inheritance. +2024-09-08 15:11:39,244 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DPS, hphSpec = 'aaùDPSùUML229ùdd' +2024-09-08 15:11:39,244 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,244 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:11:39,244 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BAC, hphSpec = 'aaùBACùUML241ùdd' +2024-09-08 15:11:39,244 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DpStatusKind, hphSpec = 'aaùDpStatusKindùUML82ùdd' +2024-09-08 15:11:39,244 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:11:39,244 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:11:39,244 [main] DEBUG DataIndexDoc - Attribute 't' defined on multiple classes in and under 'CommonDataClasses' - may be possible to avoid duplication by using inheritance. +2024-09-08 15:11:39,244 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DPS, hphSpec = 'aaùDPSùUML229ùdd' +2024-09-08 15:11:39,244 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,244 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EXY, hphSpec = 'aaùEXYùUML242ùdd' +2024-09-08 15:11:39,244 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimeStamp, hphSpec = 'aaùTimeStampùUML93ùdd' +2024-09-08 15:11:39,244 [main] INFO PackageDocImpl - collected data index for CommonDataClasses ... +2024-09-08 15:11:39,245 [main] TRACE PackageDocImpl - org.tanjakostic.jcleancim.docgen.collector.impl.DataIndexDoc@19f6567Data semantics + + shows all attributes defined on classes of CommonDataClasses package. +Attributes defined on classes of CommonDataClasses package +"Name" | "Type" | "(Used in) Description" +"__setVal" | "NullIEC61850" | "(aaùENGùUML246ùdd) See 'setVal'." +"_setVal" | "NullIEC61850" | "(aaùENGùUML246ùdd) See 'setVal'." +"angRef" | "aaùPhaseAngleReferenceKindùUML119ùdd" | "(aaùHWYEùUML252ùdd) Angle reference, indicating the quantity that is used as reference for the phase angles {'phsAHar', 'phsBHar', 'phsCHar', 'neutHar', 'netHar', 'resHar'}[i].ang', instead of their own 'angRef'. For the indicated quantity, the fundamental frequency (index = 1) is used as reference by convention." +"blkEna" | "aaùBOOLEANùUML83ùdd" | "(aaùSubstitutionCDCùUML228ùdd) If true, 'q.operatorBlocked'=true, and the process value is no longer updated." +"cdcNs" | "aaùVISIBLE_STRING255ùUML89ùdd" | "(aaùBasePrimitiveCDCùUML217ùdd) Common data class name space. Scope of the standard specified with the attribute is CDC definition. For details see IEC 61850-7-1. +(aaùBaseComposedCDCùUML250ùdd) See 'BasePrimitiveCDC.cdcNs'." +"ctlVal" | "aaùEnumDAùUML340ùdd, aaùBsControlKindùUML81ùdd" | "(aaùENCùUML238ùdd) Service parameter that determines the control activity, containing the new value for 'stVal'. +(aaùBACùUML241ùdd) Service parameter that determines the control activity, containing the desired change for 'mxVal'. If 'persistent'=false, 'ctlVal'='higher'|'lower' refers to one step in 'mxVal'." +"dU" | "aaùUNICODE_STRING255ùUML88ùdd" | "(aaùBasePrimitiveCDCùUML217ùdd) Textual description of the data using unicode characters. In case of LPL, the description refers to the logical node. +(aaùBaseComposedCDCùUML250ùdd) See 'BasePrimitiveCDC.dU'." +"dirGeneral" | "NullIEC61850" | "(aaùACDùUML244ùdd) General direction of the fault. If the faults of individual phases have different directions, this attribute shall be set to 'dirGeneral'='both'." +"evalTm" | "aaùINT16UùUML84ùdd" | "(aaùHarmonicMeasurandCDCùUML251ùdd) Time window [ms] applied to interharmonic calculations. See 'numHar'." +"hstVal" | "aaùINT32ùUML85ùdd" | "(aaùHSTùUML245ùdd) Array of data values for the histogram entries." +"instCVal" | "NullIEC61850" | "(aaùCMVùUML236ùdd) Instantaneous complex (phasor) value, with magnitude and angle." +"ldNs" | "aaùVISIBLE_STRING255ùUML89ùdd" | "(aaùLPLùUML248ùdd) Logical device name space. Scope of the standard specified with the attribute is LN class definition (CDC definition by reference), for example "IEC 61850-7-4:2010". For details see IEC 61850-7-1." +"lnNs" | "aaùVISIBLE_STRING255ùUML89ùdd" | "(aaùLPLùUML248ùdd) Logical node name space. Scope of the standard specified with the attribute is LN class definition (CDC definition by reference). For details see IEC 61850-7-1." +"mxVal" | "aaùAnalogueValueùUML355ùdd" | "(aaùBACùUML241ùdd) See 'APC.mxVal'." +"numPts" | "aaùINT16UùUML84ùdd" | "(aaùHSTùUML245ùdd) Actual size of 'hstVal[]', 'hstRangeC[]'." +"opOk" | "aaùBOOLEANùUML83ùdd" | "(aaùControllableCDCùUML237ùdd) True indicates that an operate command for a controllable data object has been evaluated and accepted." +"phsA" | "aaùBOOLEANùUML83ùdd" | "(aaùACDùUML244ùdd) See 'ACT.phsA'." +"phsAHar" | "aaùCMVùUML236ùdd" | "(aaùHWYEùUML252ùdd) Array of harmonic and subharmonics, or interharmonic values related to phase A." +"phsB" | "aaùBOOLEANùUML83ùdd" | "(aaùACDùUML244ùdd) See 'ACT.phsB." +"q" | "aaùQualityùUML339ùdd" | "(aaùDPSùUML229ùdd) Quality of the data value 'stVal'. +(aaùENSùUML230ùdd) Quality of the data value 'stVal'. +(aaùEXYùUML242ùdd) Quality of the data value 'stVal'." +"rangeAngC" | "aaùRangeConfigùUML356ùdd" | "(aaùCMVùUML236ùdd) Configuration for 'rangeAng'." +"rangeC" | "aaùRangeConfigùUML356ùdd" | "(aaùCMVùUML236ùdd) Configuration for 'range'." +"setVal" | "NullIEC61850" | "(aaùENGùUML246ùdd) The value of the status setting." +"smpRate" | "aaùINT32UùUML86ùdd" | "(aaùHarmonicMeasurandCDCùUML251ùdd) Determines the highest possible harmonic or interharmonic detectable, according to the sampling theorem; the minimum value is 'smpRate'=2 * 'frequency'. 'smpRate' is the number of samples per nominal period. In the case of a dc system, it is number of samples per s." +"stVal" | "aaùDpStatusKindùUML82ùdd, aaùEnumDAùUML340ùdd, aaùEnumDAùUML340ùdd, aaùEnumDAùUML340ùdd" | "(aaùDPSùUML229ùdd) Status data value. +(aaùENSùUML230ùdd) Status data value. +(aaùENCùUML238ùdd) Status data value. +(aaùEXYùUML242ùdd) Status data value." +"subCVal" | "NullIEC61850" | "(aaùCMVùUML236ùdd) Value used to substitute 'instCVal'." +"subEna" | "aaùBOOLEANùUML83ùdd" | "(aaùSubstitutionCDCùUML228ùdd) Used to enable and disable substitution. If 'subEna'=true, the main data value and quality shall always be set to the same value as the attributes used to store the substitution data value and quality, as follows: +- for SPS, DPS, INS, ENS, SPC, DPC, INC, ENC: 'stVal' to 'subVal', 'q' to 'subQ'; +- for MV: 'instMag' to 'subMag', 'q' to 'subQ'; +- for CMV: 'instCVal' to 'subCVal', 'q' to 'subQ'; +- for BSC, ISC: 'valWTr' to 'subVal, 'q' to 'subQ'; and, +- for APC, BAC: 'mxVal' to 'subVal; 'q' to 'subQ'. +Otherwise, the data value shall be based on the process value." +"subQ" | "aaùQualityùUML339ùdd" | "(aaùSubstitutionCDCùUML228ùdd) Value used to substitute 'q'." +"subVal" | "aaùDpStatusKindùUML82ùdd, aaùEnumDAùUML340ùdd, aaùEnumDAùUML340ùdd, NullIEC61850" | "(aaùDPSùUML229ùdd) Value used to substitute 'stVal'. +(aaùENSùUML230ùdd) Value used to substitute 'stVal'. +(aaùENCùUML238ùdd) Value used to substitute 'stVal'. +(aaùBACùUML241ùdd) Value used to substitute 'mxVal'." +"t" | "aaùTimeStampùUML93ùdd" | "(aaùDPSùUML229ùdd) Timestamp of the last change of the data value 'stVal' or quality 'q'. +(aaùENSùUML230ùdd) Timestamp of the last change of the data value 'stVal' or quality 'q'. +(aaùEXYùUML242ùdd) Timestamp of the last change of the data value 'stVal' or quality 'q'." + +2024-09-08 15:11:39,245 [main] INFO PackageDocImpl - collecting doc for package IEC61850_7_4 ... +2024-09-08 15:11:39,246 [main] INFO PackageDocImpl - collecting doc for package Abbreviations ... +2024-09-08 15:11:39,246 [main] INFO DocCollectorImpl - >> retained scoped IEC61850/IEC61850-7-4/Abbreviations +2024-09-08 15:11:39,250 [main] INFO PackageDocImpl - collected abbreviations from Abbreviations ... +2024-09-08 15:11:39,250 [main] TRACE PackageDocImpl - org.tanjakostic.jcleancim.docgen.collector.impl.AbbrPackageDoc@17d2e85Abbreviated terms +The following terms are used to build concatenated data object names. For example, ChNum is constructed by using two terms "Ch" which stands for "Channel" and "Num" which stands for "Number". Thus the concatenated name represents a "channel number". + shows normative terms that are combined to create data object names. +Normative abbreviations for data object names +"Term" | "Description" +"A" | "Current" +"Alm" | "Alarm" +"Amp" | "Current non-phase-related" +"Z" | "Impedance" +"Z0" | "Zero sequence impedance" +"Z1" | "Positive sequence impedance" +"Zro" | "Zero sequence method" +"aDummy" | "Dummy lower-case term." +"km" | "Kilometer" +"ppm" | "ppm" + +2024-09-08 15:11:39,250 [main] INFO PackageDocImpl - collecting doc for package Functions ... +2024-09-08 15:11:39,251 [main] INFO DocCollectorImpl - >> retained scoped IEC61850/IEC61850-7-4/Functions +2024-09-08 15:11:39,251 [main] INFO PackageDocImpl - collecting doc for package ProtectionEq ... +2024-09-08 15:11:39,252 [main] INFO PackageDocImpl - collecting doc for package ControlEq ... +2024-09-08 15:11:39,253 [main] INFO PackageDocImpl - collecting doc for package MeasurementsAndMetering ... +2024-09-08 15:11:39,254 [main] INFO PackageDocImpl - collecting doc for package SystemWide ... +2024-09-08 15:11:39,255 [main] INFO PackageDocImpl - collecting doc for package PrimaryEq ... +2024-09-08 15:11:39,261 [main] INFO PackageDocImpl - collected LN mappings for Functions ... +2024-09-08 15:11:39,261 [main] TRACE PackageDocImpl - org.tanjakostic.jcleancim.docgen.collector.impl.LnMapPackageDoc@1fddc9aRelationship between this standard and IEC 61850-5 +This subclause presents the mappings between the logical nodes defined in IEC61850-5 (as functional requirements) and the concrete logical nodes in this IEC 61850-7-4, in form of table. +The meaning of the table columns is as follows: +- Functionality: Domain concept represented by the function. +- IEEE C37.2: Device function numbers and contact designations used in IEEE C37.2-2008, if applicable. Note that the reference to the IEEE device number does not mean the related device, but its core functionality in the context of the IEC 61850. Because of their device related definition there is not always a 1:1 relation to the function related definition of logical nodes. +- IEC 60617: Alphanumeric representation of graphical symbols according to IEC 60617, if applicable. +- LN IEC 61850-5: "requirements" logical node designation. +- LN IEC 61850-7-4: Standard (concrete) logical node designation. Note that mappings may not be one-to-one. +- Description: slightly modified description of the IEEE device number if applicable, or/and other descriptive text. + shows mappings between IEC 61850-5 and IEC 61850-7-4 logical nodes. +Logical nodes mappings +"Functionality" | "IEEE C37.2" | "IEC 60617" | "LN IEC 61850-5" | "LN IEC 61850-7-4" | "Description" +"PowerFactorProt" | "55" | "cos\u03C6>, cos\u03C6<" | "PPFR" | "" | "A function that operates when the power factor in an ac circuit rises above or falls below a predetermined value." +"AlarmHandler" | "" | "" | "CALH" | "CALH" | "Alarm handler, responsible for creating group alarms and group events. For the communication, there is no difference between alarms and events, if a time tag is added to any data transmitted. +If several events or alarms have to be combined to group alarms, a separate, configurable function is needed, which may be used to calculate new data out of individual data from different other functions. Remote acknowledgement with different priority and authority shall be possible. +The definition and handling of alarms is an engineering issue." +"GenericIO" | "" | "" | "GGIO" | "GGIO" | "Generic process IO, as seen by the substation automation system (i.e., group of I/Os), used to represent primary or auxiliary equipment non-predefined in groups X, Y or Z: (1) outputs such as analogue outputs, auxiliary relays, etc., (2) IOs representing devices such as horn, bell, target value etc., and (3) IOs from non-defined auxiliary devices." +"LogicalDeviceData" | "" | "" | "LLN0" | "LLN0" | "Logical device data, independent from all application function related functions, such as device identification/name plate, messages from device self-supervision, etc. It may be used also for actions common to all included functions (mode setting, settings, etc.) if applicable. It does not restrict the dedicated access to any single function by definition; Possible restrictions are a matter of implementation and engineering." +"PhysicalDeviceData" | "" | "" | "LPHD" | "LPHD" | "Models common features of physical device (IED)." +"ThreePhaseMeasurement" | "" | "" | "MMXU" | "MMXU" | "Acquires sampled values from CTs and VTs and calculates 3-phase measurands like rms values for current and voltage or power flows. These values are normally used for operational purposes like power flow supervision and management, screen displays, state estimation, etc. The requested accuracy for these functions has to be provided. +Note: The measuring procedures in the protection devices are part of the dedicated protection algorithm represented by the protection functions, and thus outside the scope of the communication standard. Therefore, measurement functions shall not be used as input for protection algorithms. Fault related data like fault peak value, etc. are always provided by the protection functions, and not measurement functions." +"BusbarProt" | "87B" | "" | "PBDF" | "PDIF" | "See DifferentialProt. The complexity of the busbar node with changing topology up to a split into two or more nodes needs special means like a dynamic busbar image. It has to be considered that at least a second busbar protection algorithm exists which is based on the direction comparison of the fault direction in all feeders. +NOTE The decentralized busbar protection consists of an instance of this function per bay with appropriate preprocessing and trip output, in addition to the central decision making instance." +"LineDifferentialProt" | "87L" | "" | "PLDF" | "PDIF" | "See DifferentialProt." +"DirectionalPowerProt" | "32" | "P>" | "PDPR" | "RDIR" | "A function that operates on a predetermined value of power flow in a given direction, such as reverse power flow resulting from the motoring of a generator upon loss of its prime mover." +"DirectionalProt" | "87B" | "" | "PDIR" | "RDIR, PDIS" | "A function that operates based on an agreement of the fault direction signals from all directional fault sensors (for example directional relays) surrounding the fault. The directional comparison for lines is made in combination with protection scheme (DistanceProt). +Note: In the comparison table provided in IEEE C37.2-2008 PDIR has the IEEE device number 87B associated." +"AuxiliaryNetwork" | "" | "" | "ZAXN" | "ZAXN" | "Generic auxiliary network (power supply), as seen by the substation automation system (i.e., group of IOs)." + +2024-09-08 15:11:39,261 [main] INFO PackageDocImpl - collecting doc for package DOEnums ... +2024-09-08 15:11:39,261 [main] INFO DocCollectorImpl - >> retained scoped IEC61850/IEC61850-7-4/DOEnums +2024-09-08 15:11:39,263 [main] TRACE EnumsScl - ---- collecting XML doc for enums in DOEnums ... +2024-09-08 15:11:39,263 [main] INFO PackageDocImpl - collected SCL from DOEnums ... +2024-09-08 15:11:39,263 [main] TRACE PackageDocImpl - + Ok + Warning + Alarm + + + on + on-blocked + test + test/blocked + off + + + UNSPECIFIED + TRUE_RMS + PEAK_FUNDAMENTAL + RMS_FUNDAMENTAL + MIN + MAX + AVG + SDV + PREDICTION + RATE + + + bk1 + bk2 + bk3 + + + +2024-09-08 15:11:39,263 [main] INFO PackageDocImpl - collecting doc for package DerivedDAs ... +2024-09-08 15:11:39,263 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:11:39,263 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:11:39,263 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:11:39,263 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,263 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,263 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,263 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:11:39,263 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:11:39,263 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:11:39,263 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,263 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,263 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,264 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:11:39,264 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:11:39,264 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:11:39,264 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,264 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,264 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,264 [main] INFO PackageDocImpl - collecting doc for package DerivedCDCs ... +2024-09-08 15:11:39,264 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:11:39,264 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControllableCDC, hphSpec = 'aaùControllableCDCùUML237ùdd' +2024-09-08 15:11:39,264 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,265 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,265 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:11:39,265 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:11:39,265 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,265 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,265 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,265 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:11:39,265 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:11:39,265 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,265 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControllableCDC, hphSpec = 'aaùControllableCDCùUML237ùdd' +2024-09-08 15:11:39,265 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:11:39,265 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:11:39,265 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:11:39,265 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,265 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:11:39,265 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,265 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:11:39,265 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:11:39,265 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,265 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,265 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,265 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:11:39,266 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,266 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:11:39,266 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:11:39,266 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,266 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:11:39,266 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:11:39,266 [main] INFO Reordering - adding reordering spec: MOVE "subVal" AFTER "subEna" +2024-09-08 15:11:39,266 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENG, hphSpec = 'aaùENGùUML246ùdd' +2024-09-08 15:11:39,266 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,266 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:11:39,266 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:11:39,266 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,266 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,266 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,268 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:11:39,268 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,269 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:11:39,269 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:11:39,269 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,269 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,269 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,269 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,269 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:11:39,269 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:11:39,269 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,269 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,269 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,269 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:11:39,270 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,270 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:11:39,270 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,270 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimeStamp, hphSpec = 'aaùTimeStampùUML93ùdd' +2024-09-08 15:11:39,270 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,270 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:11:39,270 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:11:39,270 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,270 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,270 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:11:39,270 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,270 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:11:39,270 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:11:39,270 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,270 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,270 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,270 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:11:39,270 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,270 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:11:39,270 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:11:39,270 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,270 [main] INFO Reordering - adding reordering spec: MOVE "subVal" AFTER "subEna" +2024-09-08 15:11:39,270 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,270 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,270 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,270 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:11:39,271 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:11:39,271 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,271 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,271 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,271 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:11:39,271 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,271 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:11:39,271 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,271 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimeStamp, hphSpec = 'aaùTimeStampùUML93ùdd' +2024-09-08 15:11:39,271 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,271 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:11:39,271 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:11:39,271 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,271 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,271 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:11:39,271 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,271 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:11:39,271 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:11:39,271 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,271 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,271 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,271 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:11:39,271 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,271 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:11:39,272 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:11:39,272 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,272 [main] INFO Reordering - adding reordering spec: MOVE "subVal" AFTER "subEna" +2024-09-08 15:11:39,272 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SPC, hphSpec = 'aaùSPCùUML123ùdd' +2024-09-08 15:11:39,272 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EXY, hphSpec = 'aaùEXYùUML242ùdd' +2024-09-08 15:11:39,272 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,272 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:11:39,272 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:11:39,272 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,273 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,273 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,273 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:11:39,273 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EXY, hphSpec = 'aaùEXYùUML242ùdd' +2024-09-08 15:11:39,273 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:11:39,273 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EXY, hphSpec = 'aaùEXYùUML242ùdd' +2024-09-08 15:11:39,273 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimeStamp, hphSpec = 'aaùTimeStampùUML93ùdd' +2024-09-08 15:11:39,273 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EXY, hphSpec = 'aaùEXYùUML242ùdd' +2024-09-08 15:11:39,273 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:11:39,273 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,273 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:11:39,273 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:11:39,273 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,273 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,273 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,273 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,273 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:11:39,273 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:11:39,273 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,273 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,273 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,274 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:11:39,274 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,274 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:11:39,274 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,274 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimeStamp, hphSpec = 'aaùTimeStampùUML93ùdd' +2024-09-08 15:11:39,274 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,274 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:11:39,274 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:11:39,274 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,274 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,274 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:11:39,274 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,274 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:11:39,274 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:11:39,274 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,274 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,274 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,274 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:11:39,274 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,274 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:11:39,274 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:11:39,274 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,274 [main] INFO Reordering - adding reordering spec: MOVE "subVal" AFTER "subEna" +2024-09-08 15:11:39,275 [main] INFO PackageDocImpl - collecting doc for package LogicalNodes ... +2024-09-08 15:11:39,275 [main] INFO DocCollectorImpl - >> retained scoped IEC61850/IEC61850-7-4/LogicalNodes +2024-09-08 15:11:39,275 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNDOM, hphSpec = 'aaùLNDOMùUML200ùdd' +2024-09-08 15:11:39,275 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:11:39,275 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,275 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,275 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,284 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,284 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-08 15:11:39,284 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-08 15:11:39,284 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-08 15:11:39,284 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:11:39,284 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-08 15:11:39,285 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,285 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNDOM, hphSpec = 'aaùLNDOMùUML200ùdd' +2024-09-08 15:11:39,285 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:11:39,285 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,285 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,285 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,285 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,285 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,285 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,285 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-08 15:11:39,285 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,285 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-08 15:11:39,285 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-08 15:11:39,285 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,285 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:11:39,285 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-08 15:11:39,285 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENG, hphSpec = 'aaùENGùUML246ùdd' +2024-09-08 15:11:39,285 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CalcMethodKind, hphSpec = 'aaùCalcMethodKindùUML140ùdd' +2024-09-08 15:11:39,285 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,285 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNDOM, hphSpec = 'aaùLNDOMùUML200ùdd' +2024-09-08 15:11:39,285 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:11:39,285 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,285 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,285 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,286 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,286 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,286 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-08 15:11:39,286 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,286 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,286 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-08 15:11:39,286 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,286 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-08 15:11:39,286 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,286 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:11:39,286 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-08 15:11:39,286 [main] INFO PackageDocImpl - collecting doc for package LNGroupL ... +2024-09-08 15:11:39,286 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,286 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNDOM, hphSpec = 'aaùLNDOMùUML200ùdd' +2024-09-08 15:11:39,287 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:11:39,287 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,287 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,287 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,287 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,287 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,287 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,288 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,288 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:11:39,288 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,288 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,288 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-08 15:11:39,288 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(2), hphSpec = 'aaùMOcond(2)ùUML582ùdd' +2024-09-08 15:11:39,288 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,288 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-08 15:11:39,288 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,288 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:11:39,288 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-08 15:11:39,289 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNPHD, hphSpec = 'aaùLNPHDùUML196ùdd' +2024-09-08 15:11:39,289 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:11:39,289 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,289 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,289 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,289 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,289 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-08 15:11:39,289 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-08 15:11:39,289 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN0, hphSpec = 'aaùLN0ùUML198ùdd' +2024-09-08 15:11:39,289 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:11:39,289 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,289 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,289 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,289 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-08 15:11:39,289 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,289 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-08 15:11:39,289 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-08 15:11:39,289 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,290 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-08 15:11:39,290 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOrootLD, hphSpec = 'aaùMOrootLDùUML585ùdd' +2024-09-08 15:11:39,290 [main] INFO PackageDocImpl - collecting doc for package LNGroupC ... +2024-09-08 15:11:39,290 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,290 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNDOM, hphSpec = 'aaùLNDOMùUML200ùdd' +2024-09-08 15:11:39,290 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:11:39,290 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,290 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,290 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,291 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,291 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AtLeastOne(1), hphSpec = 'aaùAtLeastOne(1)ùUML559ùdd' +2024-09-08 15:11:39,291 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AtLeastOne(1), hphSpec = 'aaùAtLeastOne(1)ùUML559ùdd' +2024-09-08 15:11:39,291 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,291 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,291 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-08 15:11:39,291 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,291 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-08 15:11:39,291 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,291 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:11:39,291 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-08 15:11:39,292 [main] INFO PackageDocImpl - collecting doc for package LNGroupG ... +2024-09-08 15:11:39,292 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = StatisticsLN, hphSpec = 'aaùStatisticsLNùUML202ùdd' +2024-09-08 15:11:39,292 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,292 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNDOM, hphSpec = 'aaùLNDOMùUML200ùdd' +2024-09-08 15:11:39,292 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:11:39,292 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,292 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,292 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,293 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,294 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,294 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-08 15:11:39,294 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,294 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,294 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-08 15:11:39,294 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Omulti, hphSpec = 'aaùOmultiùUML580ùdd' +2024-09-08 15:11:39,294 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,294 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-08 15:11:39,295 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-08 15:11:39,295 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,295 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:11:39,295 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-08 15:11:39,295 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = StatisticsLN, hphSpec = 'aaùStatisticsLNùUML202ùdd' +2024-09-08 15:11:39,295 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENG, hphSpec = 'aaùENGùUML246ùdd' +2024-09-08 15:11:39,295 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CalcMethodKind, hphSpec = 'aaùCalcMethodKindùUML140ùdd' +2024-09-08 15:11:39,295 [main] INFO PackageDocImpl - collecting doc for package LNGroupM ... +2024-09-08 15:11:39,296 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = StatisticsLN, hphSpec = 'aaùStatisticsLNùUML202ùdd' +2024-09-08 15:11:39,296 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,296 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNDOM, hphSpec = 'aaùLNDOMùUML200ùdd' +2024-09-08 15:11:39,296 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:11:39,296 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,296 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,296 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,296 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,296 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,296 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,297 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-08 15:11:39,297 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MO(1), hphSpec = 'aaùMO(1)ùUML582ùdd' +2024-09-08 15:11:39,297 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,297 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-08 15:11:39,297 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-08 15:11:39,297 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,297 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:11:39,297 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-08 15:11:39,297 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = StatisticsLN, hphSpec = 'aaùStatisticsLNùUML202ùdd' +2024-09-08 15:11:39,297 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENG, hphSpec = 'aaùENGùUML246ùdd' +2024-09-08 15:11:39,297 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CalcMethodKind, hphSpec = 'aaùCalcMethodKindùUML140ùdd' +2024-09-08 15:11:39,298 [main] INFO PackageDocImpl - collecting doc for package LNGroupP ... +2024-09-08 15:11:39,298 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PDIS, hphSpec = 'aaùPDISùUML211ùdd' +2024-09-08 15:11:39,298 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ProtectionLN, hphSpec = 'aaùProtectionLNùUML209ùdd' +2024-09-08 15:11:39,298 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,298 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNDOM, hphSpec = 'aaùLNDOMùUML200ùdd' +2024-09-08 15:11:39,298 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:11:39,298 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,298 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,298 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,298 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,298 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PDIS, hphSpec = 'aaùPDISùUML211ùdd' +2024-09-08 15:11:39,298 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,298 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,299 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-08 15:11:39,299 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,299 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-08 15:11:39,299 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,299 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:11:39,299 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-08 15:11:39,300 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,300 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNDOM, hphSpec = 'aaùLNDOMùUML200ùdd' +2024-09-08 15:11:39,300 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:11:39,300 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,300 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,300 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,300 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,300 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,300 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,300 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-08 15:11:39,300 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,300 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-08 15:11:39,300 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,300 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:11:39,300 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-08 15:11:39,301 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ProtectionLN, hphSpec = 'aaùProtectionLNùUML209ùdd' +2024-09-08 15:11:39,301 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,301 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNDOM, hphSpec = 'aaùLNDOMùUML200ùdd' +2024-09-08 15:11:39,301 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:11:39,301 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,301 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,301 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,301 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,301 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OmultiRange(33, 48), hphSpec = 'aaùOmultiRange(33, 48)ùUML581ùdd' +2024-09-08 15:11:39,301 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,301 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,301 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-08 15:11:39,301 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,301 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-08 15:11:39,301 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,301 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:11:39,301 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-08 15:11:39,301 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ProtectionLN, hphSpec = 'aaùProtectionLNùUML209ùdd' +2024-09-08 15:11:39,301 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,301 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNDOM, hphSpec = 'aaùLNDOMùUML200ùdd' +2024-09-08 15:11:39,301 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:11:39,302 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,302 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,302 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,302 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,302 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,302 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,302 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-08 15:11:39,302 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,302 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-08 15:11:39,302 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,302 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:11:39,302 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-08 15:11:39,302 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ProtectionLN, hphSpec = 'aaùProtectionLNùUML209ùdd' +2024-09-08 15:11:39,302 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,302 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNDOM, hphSpec = 'aaùLNDOMùUML200ùdd' +2024-09-08 15:11:39,302 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:11:39,302 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,302 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,302 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,302 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,302 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,302 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,303 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-08 15:11:39,303 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,303 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-08 15:11:39,303 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,303 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:11:39,303 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-08 15:11:39,303 [main] INFO PackageDocImpl - collecting doc for package LNGroupR ... +2024-09-08 15:11:39,303 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,303 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNDOM, hphSpec = 'aaùLNDOMùUML200ùdd' +2024-09-08 15:11:39,303 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:11:39,303 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,303 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,303 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,303 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,303 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,303 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,303 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-08 15:11:39,303 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,303 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-08 15:11:39,304 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,304 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:11:39,304 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-08 15:11:39,304 [main] INFO PackageDocImpl - collecting doc for package LNGroupZ ... +2024-09-08 15:11:39,304 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EquipmentInterfaceLN, hphSpec = 'aaùEquipmentInterfaceLNùUML205ùdd' +2024-09-08 15:11:39,304 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,304 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LNDOM, hphSpec = 'aaùLNDOMùUML200ùdd' +2024-09-08 15:11:39,304 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LN, hphSpec = 'aaùLNùUML195ùdd' +2024-09-08 15:11:39,304 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,304 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,304 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,304 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,304 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,304 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MaterialKind, hphSpec = 'aaùMaterialKindùUML146ùdd' +2024-09-08 15:11:39,304 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,304 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Other, hphSpec = 'aaùOtherùUML353ùdd' +2024-09-08 15:11:39,305 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EquipmentInterfaceLN, hphSpec = 'aaùEquipmentInterfaceLNùUML205ùdd' +2024-09-08 15:11:39,305 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,305 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-08 15:11:39,305 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,305 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,305 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-08 15:11:39,305 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(condID), hphSpec = 'aaùMOcond(condID)ùUML582ùdd' +2024-09-08 15:11:39,305 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,305 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcond(1), hphSpec = 'aaùMOcond(1)ùUML582ùdd' +2024-09-08 15:11:39,305 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:11:39,305 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MaterialKind, hphSpec = 'aaùMaterialKindùUML146ùdd' +2024-09-08 15:11:39,305 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MaterialTransitionKind, hphSpec = 'aaùMaterialTransitionKindùUML147ùdd' +2024-09-08 15:11:39,305 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,305 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:11:39,305 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-08 15:11:39,306 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMXU, hphSpec = 'aaùMMXUùUML204ùdd' +2024-09-08 15:11:39,306 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HWYE, hphSpec = 'aaùHWYEùUML252ùdd' +2024-09-08 15:11:39,306 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ZAXN, hphSpec = 'aaùZAXNùUML206ùdd' +2024-09-08 15:11:39,306 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GGIO, hphSpec = 'aaùGGIOùUML203ùdd' +2024-09-08 15:11:39,306 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CMV, hphSpec = 'aaùCMVùUML236ùdd' +2024-09-08 15:11:39,306 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LLN0, hphSpec = 'aaùLLN0ùUML199ùdd' +2024-09-08 15:11:39,306 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,306 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-08 15:11:39,306 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = StatisticsLN, hphSpec = 'aaùStatisticsLNùUML202ùdd' +2024-09-08 15:11:39,306 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SPSTransient, hphSpec = 'aaùSPSTransientùUML143ùdd' +2024-09-08 15:11:39,306 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = StatisticsLN, hphSpec = 'aaùStatisticsLNùUML202ùdd' +2024-09-08 15:11:39,306 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENG, hphSpec = 'aaùENGùUML246ùdd' +2024-09-08 15:11:39,306 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CalcMethodKind, hphSpec = 'aaùCalcMethodKindùUML140ùdd' +2024-09-08 15:11:39,306 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,306 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CMV, hphSpec = 'aaùCMVùUML236ùdd' +2024-09-08 15:11:39,306 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = KXYZ, hphSpec = 'aaùKXYZùUML207ùdd' +2024-09-08 15:11:39,306 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,306 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:11:39,306 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GGIO, hphSpec = 'aaùGGIOùUML203ùdd' +2024-09-08 15:11:39,306 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMXU, hphSpec = 'aaùMMXUùUML204ùdd' +2024-09-08 15:11:39,306 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HST, hphSpec = 'aaùHSTùUML245ùdd' +2024-09-08 15:11:39,306 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = RDIR, hphSpec = 'aaùRDIRùUML214ùdd' +2024-09-08 15:11:39,306 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ACD, hphSpec = 'aaùACDùUML244ùdd' +2024-09-08 15:11:39,306 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = GGIO, hphSpec = 'aaùGGIOùUML203ùdd' +2024-09-08 15:11:39,306 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,306 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-08 15:11:39,306 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EquipmentInterfaceLN, hphSpec = 'aaùEquipmentInterfaceLNùUML205ùdd' +2024-09-08 15:11:39,306 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,306 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-08 15:11:39,306 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CALH, hphSpec = 'aaùCALHùUML208ùdd' +2024-09-08 15:11:39,308 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DPS, hphSpec = 'aaùDPSùUML229ùdd' +2024-09-08 15:11:39,308 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CALH, hphSpec = 'aaùCALHùUML208ùdd' +2024-09-08 15:11:39,308 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DPS, hphSpec = 'aaùDPSùUML229ùdd' +2024-09-08 15:11:39,308 [main] DEBUG DataIndexDoc - Attribute 'Health' defined on multiple classes in and under 'LogicalNodes' - may be possible to avoid duplication by using inheritance. +2024-09-08 15:11:39,308 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LLN0, hphSpec = 'aaùLLN0ùUML199ùdd' +2024-09-08 15:11:39,308 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,308 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,309 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-08 15:11:39,309 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ZAXN, hphSpec = 'aaùZAXNùUML206ùdd' +2024-09-08 15:11:39,309 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,310 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MaterialKind, hphSpec = 'aaùMaterialKindùUML146ùdd' +2024-09-08 15:11:39,310 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ZAXN, hphSpec = 'aaùZAXNùUML206ùdd' +2024-09-08 15:11:39,310 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:11:39,310 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MaterialKind, hphSpec = 'aaùMaterialKindùUML146ùdd' +2024-09-08 15:11:39,310 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MaterialTransitionKind, hphSpec = 'aaùMaterialTransitionKindùUML147ùdd' +2024-09-08 15:11:39,310 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,310 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:11:39,310 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BehaviourModeKind, hphSpec = 'aaùBehaviourModeKindùUML139ùdd' +2024-09-08 15:11:39,310 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CALH, hphSpec = 'aaùCALHùUML208ùdd' +2024-09-08 15:11:39,310 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EXYBehaviourMode, hphSpec = 'aaùEXYBehaviourModeùUML243ùdd' +2024-09-08 15:11:39,310 [main] DEBUG DataIndexDoc - Attribute 'NamPlt' defined on multiple classes in and under 'LogicalNodes' - may be possible to avoid duplication by using inheritance. +2024-09-08 15:11:39,310 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LLN0, hphSpec = 'aaùLLN0ùUML199ùdd' +2024-09-08 15:11:39,310 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DomainLN, hphSpec = 'aaùDomainLNùUML201ùdd' +2024-09-08 15:11:39,310 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LPL, hphSpec = 'aaùLPLùUML248ùdd' +2024-09-08 15:11:39,310 [main] DEBUG DataIndexDoc - Attribute 'Op' defined on multiple classes in and under 'LogicalNodes' - may be possible to avoid duplication by using inheritance. +2024-09-08 15:11:39,310 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PDIF, hphSpec = 'aaùPDIFùUML210ùdd' +2024-09-08 15:11:39,310 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PDIS, hphSpec = 'aaùPDISùUML211ùdd' +2024-09-08 15:11:39,310 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ACTTransient, hphSpec = 'aaùACTTransientùUML142ùdd' +2024-09-08 15:11:39,311 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ProtectionLN, hphSpec = 'aaùProtectionLNùUML209ùdd' +2024-09-08 15:11:39,311 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ZAXN, hphSpec = 'aaùZAXNùUML206ùdd' +2024-09-08 15:11:39,311 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,311 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Other, hphSpec = 'aaùOtherùUML353ùdd' +2024-09-08 15:11:39,311 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LPHD, hphSpec = 'aaùLPHDùUML197ùdd' +2024-09-08 15:11:39,311 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,311 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HealthKind, hphSpec = 'aaùHealthKindùUML138ùdd' +2024-09-08 15:11:39,311 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LPHD, hphSpec = 'aaùLPHDùUML197ùdd' +2024-09-08 15:11:39,311 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SPCTransient, hphSpec = 'aaùSPCTransientùUML381ùdd' +2024-09-08 15:11:39,311 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = LPHD, hphSpec = 'aaùLPHDùUML197ùdd' +2024-09-08 15:11:39,311 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SPSTransient, hphSpec = 'aaùSPSTransientùUML143ùdd' +2024-09-08 15:11:39,311 [main] DEBUG DataIndexDoc - Attribute 'Str' defined on multiple classes in and under 'LogicalNodes' - may be possible to avoid duplication by using inheritance. +2024-09-08 15:11:39,311 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PDIF, hphSpec = 'aaùPDIFùUML210ùdd' +2024-09-08 15:11:39,311 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PDIS, hphSpec = 'aaùPDISùUML211ùdd' +2024-09-08 15:11:39,311 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ACD, hphSpec = 'aaùACDùUML244ùdd' +2024-09-08 15:11:39,311 [main] DEBUG DataIndexDoc - Attribute 'TotW' defined on multiple classes in and under 'LogicalNodes' - may be possible to avoid duplication by using inheritance. +2024-09-08 15:11:39,311 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MMXU, hphSpec = 'aaùMMXUùUML204ùdd' +2024-09-08 15:11:39,311 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = KXYZ, hphSpec = 'aaùKXYZùUML207ùdd' +2024-09-08 15:11:39,311 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = RDIR, hphSpec = 'aaùRDIRùUML214ùdd' +2024-09-08 15:11:39,311 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CMV, hphSpec = 'aaùCMVùUML236ùdd' +2024-09-08 15:11:39,311 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CMV, hphSpec = 'aaùCMVùUML236ùdd' +2024-09-08 15:11:39,311 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SPSTransient, hphSpec = 'aaùSPSTransientùUML143ùdd' +2024-09-08 15:11:39,311 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ZAXN, hphSpec = 'aaùZAXNùUML206ùdd' +2024-09-08 15:11:39,311 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CMV, hphSpec = 'aaùCMVùUML236ùdd' +2024-09-08 15:11:39,311 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = KXYZ, hphSpec = 'aaùKXYZùUML207ùdd' +2024-09-08 15:11:39,311 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,311 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,311 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = KXYZ, hphSpec = 'aaùKXYZùUML207ùdd' +2024-09-08 15:11:39,311 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CMV, hphSpec = 'aaùCMVùUML236ùdd' +2024-09-08 15:11:39,311 [main] INFO PackageDocImpl - collected data index for LogicalNodes ... +2024-09-08 15:11:39,312 [main] TRACE PackageDocImpl - org.tanjakostic.jcleancim.docgen.collector.impl.DataIndexDoc@118aa28Data semantics + + shows all attributes defined on classes of LogicalNodes package. +Attributes defined on classes of LogicalNodes package +"Name" | "Type" | "(Used in) Description" +"A" | "aaùHWYEùUML252ùdd" | "(aaùMMXUùUML204ùdd) 'A' holds the currents for three phases." +"Amp" | "NullIEC61850" | "(aaùZAXNùUML206ùdd) 'Amp.mag.f' is the non-phase-related current of the auxiliary network." +"AnIn" | "aaùCMVùUML236ùdd" | "(aaùGGIOùUML203ùdd) 'AnIn.mag.f' is the generic analogue input n." +"Beh" | "aaùENSùUML230ùdd (aaùBehaviourModeKindùUML139ùdd)" | "(aaùLLN0ùUML199ùdd)" +"ClcExp" | "aaùSPSTransientùUML143ùdd" | "(aaùStatisticsLNùUML202ùdd) If 'ClcExp.stVal=true', the calculation period of a statistical logical node has expired." +"ClcMth" | "aaùENGùUML246ùdd (aaùCalcMethodKindùUML140ùdd)" | "(aaùStatisticsLNùUML202ùdd) 'ClcMth.setVal' is the kind of statistical calculation, specifying how the data attributes that represent analogue values have been calculated. The calculation method shall be the same for all data objects of the logical node instance. +If the value is 'PEAK_FUNDAMENTAL', angle may be present in a data object of complex measured value type (CMV, such as in WYE, DEL, etc.), otherwise angle is not used (if ‘TRUE_RMS’ and ‘RMS_FUNDAMENTAL’). +The dependent data objects may be meaningless in case the value of 'ClcMth' is 'unspecified'." +"CntRs" | "aaùCMVùUML236ùdd" | "(aaùDomainLNùUML201ùdd) Dumb DO, of type CMV for testing inheriting statistics-derived presence conditions." +"CorrectA" | "aaùENSùUML230ùdd (aaùEnumDAùUML340ùdd)" | "(aaùKXYZùUML207ùdd) Correctly using derived CDC for enums." +"DPCSO" | "NullIEC61850" | "(aaùGGIOùUML203ùdd) 'DPCSO.ctlVal=true' or 'DPCSO.ctlVal=false' controls the generic double point controllable status output n. The resulting status is 'DPCSO.stVal'." +"Desc" | "aaùHSTùUML245ùdd" | "(aaùMMXUùUML204ùdd) Dummy native DO of non-statistical type." +"Dir" | "aaùACDùUML244ùdd" | "(aaùRDIRùUML214ùdd) If 'Dir.general=true', a fault has been detected. 'Dir.dirGeneral' is the direction of the fault." +"EEHealth" | "aaùENSùUML230ùdd (aaùHealthKindùUML138ùdd)" | "(aaùGGIOùUML203ùdd) 'EEHealth.stVal' reflects the state of external (primary) equipment to which the logical node is associated." +"EEHealthAlmClc" | "aaùENSùUML230ùdd (aaùHealthKindùUML138ùdd)" | "(aaùEquipmentInterfaceLNùUML205ùdd) (too long name) State of external (electrical, mechanical or communication) equipment to which the logical node is associated." +"GrAlm" | "aaùDPSùUML229ùdd" | "(aaùCALHùUML208ùdd) If 'GrAlm.stVal=true', a new group alarm has been activated by one of individual alarms. Group alarm summarises different alarms, as assigned via configuration." +"GrWrn" | "aaùDPSùUML229ùdd" | "(aaùCALHùUML208ùdd) If 'GrWrn.stVal=true', a new group warning has been activated by one of individual warnings. Group warning summarises different warnings, as assigned via configuration." +"Health" | "aaùENSùUML230ùdd (aaùHealthKindùUML138ùdd)" | "(aaùLLN0ùUML199ùdd) 'Health.stVal' reflects the state of the logical device related hardware and software. It is derived from the worst (most critical) value of the health attribute of all the domain logical nodes contained in the logical device: 'Health.stVal' = max('DomainLN[i].Health.stVal'). +(aaùDomainLNùUML201ùdd) 'Health.stVal' reflects the state of the logical node related hardware and software. More detailed information related to the source of the problem may be provided by specific attribute of the logical node." +"Mat" | "aaùENSùUML230ùdd (aaùMaterialKindùUML146ùdd)" | "(aaùZAXNùUML206ùdd) For testing usage of class from other namespace." +"MatCtl" | "aaùENCùUML238ùdd (aaùMaterialKindùUML146ùdd, aaùMaterialTransitionKindùUML147ùdd)" | "(aaùZAXNùUML206ùdd) One more, for testing usage of class from other namespace." +"Mod" | "aaùENCùUML238ùdd (aaùBehaviourModeKindùUML139ùdd)" | "(aaùDomainLNùUML201ùdd) 'DomainLN.Mod.ctlVal' is used by operator to initiate the change in the operating mode of the domain logical node. The resulting operating mode is 'DomainLN.Mod.stVal'. Processing of the quality status (q) of the received data is the prerequisite for correct interpretation of 'DomainLN.Mod.stVal'. See statechart diagram 'DomainLN.behStateMachine'." +"ModBeh" | "aaùEXYBehaviourModeùUML243ùdd" | "(aaùCALHùUML208ùdd) If 'GrWrn.stVal=true', a new group warning has been activated by one of individual warnings. Group warning summarises different warnings, as assigned via configuration." +"NamPlt" | "aaùLPLùUML248ùdd" | "(aaùLLN0ùUML199ùdd) Name plate of the logical device. +(aaùDomainLNùUML201ùdd) Name plate of the logical node." +"Op" | "aaùACTTransientùUML142ùdd" | "(aaùPDIFùUML210ùdd) If 'Op.general=true', the function decided to trip. The trip itself is issued by PTRC. +(aaùPDISùUML211ùdd) If 'Op.general=true', the function decided to trip due to distance fault. The trip itself is issued by PTRC." +"OpCntRs" | "NullIEC61850" | "(aaùProtectionLNùUML209ùdd) 'OpCntRs.stVal' is the count of operations. It can be reset from remote, with the specified new counter value 'OpCntRs.ctlVal', which may be other than 0." +"Oth" | "aaùENSùUML230ùdd (aaùOtherùUML353ùdd)" | "(aaùZAXNùUML206ùdd) One more, for testing usage of class from other namespace and also underlying type (where initially 'val' defined as public)." +"PhyHealth" | "aaùENSùUML230ùdd (aaùHealthKindùUML138ùdd)" | "(aaùLPHDùUML197ùdd) 'PhyHealth.stVal' reflects the state of the physical device related hardware and software." +"RsStatAlmMthClc" | "aaùSPCTransientùUML381ùdd" | "(aaùLPHDùUML197ùdd) (too long name) 'RsStat.ctlVal=true' initiates the resetting of the IED statistics." +"StatAlmMthClc" | "aaùSPSTransientùUML143ùdd" | "(aaùLPHDùUML197ùdd) (too long name) 'RsStat.ctlVal=true' initiates the resetting of the IED statistics." +"Str" | "aaùACDùUML244ùdd" | "(aaùPDIFùUML210ùdd) If 'Str.general=true', a fault has been detected. +(aaùPDISùUML211ùdd) If 'Str.general=true', a distance fault has been detected." +"TotW" | "aaùCMVùUML236ùdd, aaùCMVùUML236ùdd, aaùSPSTransientùUML143ùdd" | "(aaùMMXUùUML204ùdd) 'TotW.mag.f' is the total real power in a three-phase circuit [W]. +(aaùKXYZùUML207ùdd) 'TotW.mag.f' is the total real power in a three-phase circuit [W]. +(aaùRDIRùUML214ùdd) 'TotW.mag.f' is the total real power in a three-phase circuit [W]." +"Vol" | "aaùCMVùUML236ùdd" | "(aaùZAXNùUML206ùdd) 'Vol.mag.f' is the non-phase-related or DC voltage of the auxiliary network." +"WrongA" | "aaùSubstitutionCDCùUML228ùdd (aaùENSùUML230ùdd)" | "(aaùKXYZùUML207ùdd) Misused ENS (or ENG or ENC). Use derived CDC instead." +"aDummyAlm" | "aaùCMVùUML236ùdd" | "(aaùKXYZùUML207ùdd) Whatever (testing lower case DO name)." + +2024-09-08 15:11:39,312 [main] INFO PackageDocImpl - collecting doc for package WG17 ... +2024-09-08 15:11:39,312 [main] INFO PackageDocImpl - collecting doc for package IEC51850_7_420 ... +2024-09-08 15:11:39,313 [main] INFO PackageDocImpl - collecting doc for package DOEnums_7_420 ... +2024-09-08 15:11:39,313 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseKind, hphSpec = 'aaùBaseKindùUML141ùdd' +2024-09-08 15:11:39,313 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseKind, hphSpec = 'aaùBaseKindùUML141ùdd' +2024-09-08 15:11:39,313 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseKind, hphSpec = 'aaùBaseKindùUML141ùdd' +2024-09-08 15:11:39,313 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BaseKind, hphSpec = 'aaùBaseKindùUML141ùdd' +2024-09-08 15:11:39,314 [main] TRACE EnumsScl - ---- collecting XML doc for enums in DOEnums_7_420 ... +2024-09-08 15:11:39,314 [main] INFO PackageDocImpl - collected SCL from DOEnums_7_420 ... +2024-09-08 15:11:39,315 [main] TRACE PackageDocImpl - + ebk1 + ebk2 + ebk3 + + + mat1 + mat2 + mat3 + + + trans1 + trans2 + trans3 + + + mat1 + mat2 + mat3 + + + +2024-09-08 15:11:39,315 [main] INFO PackageDocImpl - collecting doc for package DerivedDAs_7_420 ... +2024-09-08 15:11:39,315 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:11:39,315 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:11:39,315 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:11:39,315 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,315 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,315 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,315 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:11:39,315 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:11:39,315 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:11:39,315 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,315 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,315 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,315 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:11:39,315 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveDA, hphSpec = 'aaùPrimitiveDAùUML326ùdd' +2024-09-08 15:11:39,315 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = DA, hphSpec = 'aaùDAùUML325ùdd' +2024-09-08 15:11:39,315 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,315 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,315 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,316 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = OtherKind, hphSpec = 'aaùOtherKindùUML148ùdd' +2024-09-08 15:11:39,316 [main] INFO PackageDocImpl - collecting doc for package DerivedCDCs_7_420 ... +2024-09-08 15:11:39,316 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:11:39,316 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControllableCDC, hphSpec = 'aaùControllableCDCùUML237ùdd' +2024-09-08 15:11:39,316 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,316 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,316 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:11:39,316 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:11:39,316 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,316 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,316 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,316 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:11:39,316 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:11:39,317 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,317 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ControllableCDC, hphSpec = 'aaùControllableCDCùUML237ùdd' +2024-09-08 15:11:39,317 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:11:39,317 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:11:39,317 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:11:39,317 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,317 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:11:39,317 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,317 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:11:39,317 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:11:39,317 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,317 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,317 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,317 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:11:39,317 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,317 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:11:39,317 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:11:39,317 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,317 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:11:39,317 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENC, hphSpec = 'aaùENCùUML238ùdd' +2024-09-08 15:11:39,317 [main] INFO Reordering - adding reordering spec: MOVE "subVal" AFTER "subEna" +2024-09-08 15:11:39,318 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,318 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,318 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,318 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:11:39,318 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:11:39,318 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,318 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,318 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,318 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:11:39,318 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,318 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:11:39,318 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,318 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimeStamp, hphSpec = 'aaùTimeStampùUML93ùdd' +2024-09-08 15:11:39,318 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,318 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:11:39,319 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:11:39,319 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,319 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,319 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:11:39,319 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,319 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:11:39,319 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:11:39,319 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,319 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,319 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,319 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:11:39,319 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,319 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:11:39,319 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:11:39,319 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,319 [main] INFO Reordering - adding reordering spec: MOVE "subVal" AFTER "subEna" +2024-09-08 15:11:39,320 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,320 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,320 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,320 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = PrimitiveCDC, hphSpec = 'aaùPrimitiveCDCùUML216ùdd' +2024-09-08 15:11:39,320 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = CDC, hphSpec = 'aaùCDCùUML215ùdd' +2024-09-08 15:11:39,320 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = NamedIEC61850Object, hphSpec = 'aaùNamedIEC61850ObjectùUML193ùdd' +2024-09-08 15:11:39,320 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = HierarchyIEC61850Object, hphSpec = 'aaùHierarchyIEC61850ObjectùUML192ùdd' +2024-09-08 15:11:39,320 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = IEC61850Object, hphSpec = 'aaùIEC61850ObjectùUML110ùdd' +2024-09-08 15:11:39,320 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:11:39,320 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,320 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:11:39,320 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,320 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = TimeStamp, hphSpec = 'aaùTimeStampùUML93ùdd' +2024-09-08 15:11:39,320 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,320 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = EnumDA, hphSpec = 'aaùEnumDAùUML340ùdd' +2024-09-08 15:11:39,320 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:11:39,320 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = ENS, hphSpec = 'aaùENSùUML230ùdd' +2024-09-08 15:11:39,321 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,321 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:11:39,321 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,321 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Quality, hphSpec = 'aaùQualityùUML339ùdd' +2024-09-08 15:11:39,321 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MFsubst, hphSpec = 'aaùMFsubstùUML558ùdd' +2024-09-08 15:11:39,321 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,321 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BOOLEAN, hphSpec = 'aaùBOOLEANùUML83ùdd' +2024-09-08 15:11:39,321 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = SubstitutionCDC, hphSpec = 'aaùSubstitutionCDCùUML228ùdd' +2024-09-08 15:11:39,321 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = UNICODE_STRING255, hphSpec = 'aaùUNICODE_STRING255ùUML88ùdd' +2024-09-08 15:11:39,321 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,321 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = VISIBLE_STRING255, hphSpec = 'aaùVISIBLE_STRING255ùUML89ùdd' +2024-09-08 15:11:39,321 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = MOcdcNs, hphSpec = 'aaùMOcdcNsùUML568ùdd' +2024-09-08 15:11:39,321 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = BasePrimitiveCDC, hphSpec = 'aaùBasePrimitiveCDCùUML217ùdd' +2024-09-08 15:11:39,321 [main] INFO Reordering - adding reordering spec: MOVE "subVal" AFTER "subEna" +2024-09-08 15:11:39,321 [main] INFO PackageDocImpl - collecting doc for package WG18 ... +2024-09-08 15:11:39,322 [main] INFO PackageDocImpl - collecting doc for package Abbreviations_410 ... +2024-09-08 15:11:39,322 [main] INFO PackageDocImpl - collecting doc for package JWG25 ... +2024-09-08 15:11:39,322 [main] INFO PackageDocImpl - collecting doc for package MyCimExtensions ... +2024-09-08 15:11:39,323 [main] INFO PackageDocImpl - collecting doc for package Ext1 ... +2024-09-08 15:11:39,323 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Fruit, hphSpec = 'aaùFruitùUML152ùdd' +2024-09-08 15:11:39,323 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Apple, hphSpec = 'aaùAppleùUML383ùdd' +2024-09-08 15:11:39,323 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Pear, hphSpec = 'aaùPearùUML168ùdd' +2024-09-08 15:11:39,323 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Pear, hphSpec = 'aaùPearùUML168ùdd' +2024-09-08 15:11:39,323 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Apple, hphSpec = 'aaùAppleùUML383ùdd' +2024-09-08 15:11:39,324 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Fruit, hphSpec = 'aaùFruitùUML152ùdd' +2024-09-08 15:11:39,324 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Apple, hphSpec = 'aaùAppleùUML383ùdd' +2024-09-08 15:11:39,324 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Apple, hphSpec = 'aaùAppleùUML383ùdd' +2024-09-08 15:11:39,325 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Strawberry, hphSpec = 'aaùStrawberryùUML384ùdd' +2024-09-08 15:11:39,325 [main] INFO PackageDocImpl - collecting doc for package Package with space ... +2024-09-08 15:11:39,325 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = AbsoluteDateTime, hphSpec = 'aaùAbsoluteDateTimeùUML11ùdd' +2024-09-08 15:11:39,325 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Other-with_invalid name, hphSpec = 'aaùOther-with_invalid nameùUML156ùdd' +2024-09-08 15:11:39,326 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = My class, hphSpec = 'aaùMy classùUML155ùdd' +2024-09-08 15:11:39,326 [main] INFO PackageDocImpl - collecting doc for package My61850Extensions ... +2024-09-08 15:11:39,326 [main] INFO PackageDocImpl - collecting doc for package Ext2 ... +2024-09-08 15:11:39,327 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Fruit, hphSpec = 'aaùFruitùUML152ùdd' +2024-09-08 15:11:39,327 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Fruit, hphSpec = 'aaùFruitùUML152ùdd' +2024-09-08 15:11:39,327 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Animal, hphSpec = 'aaùAnimalùUML157ùdd' +2024-09-08 15:11:39,327 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Fruit, hphSpec = 'aaùFruitùUML152ùdd' +2024-09-08 15:11:39,327 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Animal, hphSpec = 'aaùAnimalùUML157ùdd' +2024-09-08 15:11:39,327 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Fruit, hphSpec = 'aaùFruitùUML152ùdd' +2024-09-08 15:11:39,327 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Animal, hphSpec = 'aaùAnimalùUML157ùdd' +2024-09-08 15:11:39,327 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Animal, hphSpec = 'aaùAnimalùUML157ùdd' +2024-09-08 15:11:39,327 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Fruit, hphSpec = 'aaùFruitùUML152ùdd' +2024-09-08 15:11:39,328 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Animal, hphSpec = 'aaùAnimalùUML157ùdd' +2024-09-08 15:11:39,328 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Fruit, hphSpec = 'aaùFruitùUML152ùdd' +2024-09-08 15:11:39,328 [main] TRACE AbstractObjectDoc - +++ prepareForHyperlink, targetObj = Animal, hphSpec = 'aaùAnimalùUML157ùdd' +2024-09-08 15:11:39,328 [main] INFO PackageDocImpl - collecting doc for package NewNature ... +2024-09-08 15:11:39,328 [main] INFO Util - time=[0:00:00.486] collected documentation content for 'model packages=[TC57CIMProfiles, TC57CIM, IEC61850Domain, MyCimExtensions, My61850Extensions, NewNature]; retained=[TC57CIMProfiles, TC57CIM, IEC61970, Domain, Core, Topology, TestEnums, IEC61968, EmbeddedExtension, Assets, Other, IEC62325, IEC61850Domain, WG10, NewIEC61850_7_2, GenericModel, IEC61850_7_2, FunctionalConstraints, TriggerOptions, ACSIEnums, CoreTypes, ObjectReferences, AttrValues, BasicDAs, AcsiTypes, CommonAcsiTypes, MetaModel, MetaModelFCsAndTrgOps, CDCServiceTracking, IEC61850_7_3, PresenceConditions, DAEnums, ImplicitDAs, ConstructedDAs, FCDAs, CommonDataClasses, CDCStatusInfo, CDCAnalogueInfo, CDCControl, CDCStatusSet, CDCAnalogueSet, CDCDescription, IEC61850_7_4, Abbreviations, Functions, ProtectionEq, ControlEq, MeasurementsAndMetering, SystemWide, PrimaryEq, DOEnums, DerivedDAs, DerivedCDCs, LogicalNodes, LNGroupL, LNGroupC, LNGroupG, LNGroupM, LNGroupP, LNGroupR, LNGroupZ, WG17, IEC51850_7_420, DOEnums_7_420, DerivedDAs_7_420, DerivedCDCs_7_420, WG18, Abbreviations_410, JWG25, MyCimExtensions, Ext1, Package with space, My61850Extensions, Ext2, NewNature]; skipped=[TC57CIM::Informative, IEC61970::InformativeAndPrivate, IEC61970::DocIEC61970, ObjectReferences::DetailedDiagrams, Abbreviations::DetailedDiagrams, LogicalNodes::DocLogicalNodes]'. +2024-09-08 15:11:39,328 [main] INFO Util - +2024-09-08 15:11:39,328 [main] INFO Util - +2024-09-08 15:11:39,328 [main] INFO Util - ------------------------------------------------ +2024-09-08 15:11:39,328 [main] INFO Util - writing documentation ... +2024-09-08 15:11:39,338 [main] WARN DocCollectorImpl - Multiple packages with name 'Core' - retaining first one in case you use its placeholder. +2024-09-08 15:11:39,338 [main] WARN DocCollectorImpl - Multiple packages with name 'Other' - retaining first one in case you use its placeholder. +2024-09-08 15:11:39,338 [main] WARN DocCollectorImpl - Multiple classes with Qname 'startUmlClass.Other.MyClass.endUml' - retaining first one in case you use its placeholder. +2024-09-08 15:11:39,405 [main] INFO AbstractWriter - creating DocWordWriter +2024-09-08 15:11:39,410 [main] TRACE Style - === before para.addPreferredStyles([PARAGRAPH, Normal, Standard, Normal]): +Style.para=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:11:39,410 [main] TRACE Style - === after +Style.para=null; cfg-preferred names=[PARAGRAPH, Normal, Standard]; doc-usable styles={}; all recognised names=[PARAGRAPH, Standard, Normal] + +2024-09-08 15:11:39,410 [main] TRACE Style - === before fig.addPreferredStyles([FIGURE, Picture, Normal, Standard, Normal]): +Style.fig=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:11:39,410 [main] TRACE Style - === after +Style.fig=null; cfg-preferred names=[FIGURE, Picture, Normal, Standard]; doc-usable styles={}; all recognised names=[Picture, Standard, Normal, FIGURE] + +2024-09-08 15:11:39,410 [main] TRACE Style - === before tabhead.addPreferredStyles([TABLE-col-heading, Normal, Standard, Normal]): +Style.tabhead=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:11:39,410 [main] TRACE Style - === after +Style.tabhead=null; cfg-preferred names=[TABLE-col-heading, Normal, Standard]; doc-usable styles={}; all recognised names=[TABLE-col-heading, Standard, Normal] + +2024-09-08 15:11:39,410 [main] TRACE Style - === before tabcell.addPreferredStyles([TABLE-cell, Normal, Standard, Normal]): +Style.tabcell=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:11:39,410 [main] TRACE Style - === after +Style.tabcell=null; cfg-preferred names=[TABLE-cell, Normal, Standard]; doc-usable styles={}; all recognised names=[TABLE-cell, Standard, Normal] + +2024-09-08 15:11:39,410 [main] TRACE Style - === before figcapt.addPreferredStyles([FIGURE-title, Caption, Beschriftung, Légende]): +Style.figcapt=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:11:39,410 [main] TRACE Style - === after +Style.figcapt=null; cfg-preferred names=[FIGURE-title, Caption, Beschriftung, Légende]; doc-usable styles={}; all recognised names=[FIGURE-title, Beschriftung, Légende, Caption] + +2024-09-08 15:11:39,410 [main] TRACE Style - === before tabcapt.addPreferredStyles([TABLE-title, Caption, Beschriftung, Légende]): +Style.tabcapt=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:11:39,410 [main] TRACE Style - === after +Style.tabcapt=null; cfg-preferred names=[TABLE-title, Caption, Beschriftung, Légende]; doc-usable styles={}; all recognised names=[TABLE-title, Beschriftung, Légende, Caption] + +2024-09-08 15:11:39,410 [main] TRACE Style - === before toc1.addPreferredStyles([TOC]): +Style.toc1=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:11:39,410 [main] TRACE Style - === after +Style.toc1=null; cfg-preferred names=[TOC 1]; doc-usable styles={}; all recognised names=[TOC 1] + +2024-09-08 15:11:39,410 [main] TRACE Style - === before toc2.addPreferredStyles([TOC]): +Style.toc2=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:11:39,410 [main] TRACE Style - === after +Style.toc2=null; cfg-preferred names=[TOC 2]; doc-usable styles={}; all recognised names=[TOC 2] + +2024-09-08 15:11:39,410 [main] TRACE Style - === before toc3.addPreferredStyles([TOC]): +Style.toc3=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:11:39,410 [main] TRACE Style - === after +Style.toc3=null; cfg-preferred names=[TOC 3]; doc-usable styles={}; all recognised names=[TOC 3] + +2024-09-08 15:11:39,410 [main] TRACE Style - === before toc4.addPreferredStyles([TOC]): +Style.toc4=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:11:39,412 [main] TRACE Style - === after +Style.toc4=null; cfg-preferred names=[TOC 4]; doc-usable styles={}; all recognised names=[TOC 4] + +2024-09-08 15:11:39,412 [main] TRACE Style - === before toc5.addPreferredStyles([TOC]): +Style.toc5=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:11:39,412 [main] TRACE Style - === after +Style.toc5=null; cfg-preferred names=[TOC 5]; doc-usable styles={}; all recognised names=[TOC 5] + +2024-09-08 15:11:39,412 [main] TRACE Style - === before toc6.addPreferredStyles([TOC]): +Style.toc6=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:11:39,412 [main] TRACE Style - === after +Style.toc6=null; cfg-preferred names=[TOC 6]; doc-usable styles={}; all recognised names=[TOC 6] + +2024-09-08 15:11:39,412 [main] TRACE Style - === before toc7.addPreferredStyles([TOC]): +Style.toc7=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:11:39,412 [main] TRACE Style - === after +Style.toc7=null; cfg-preferred names=[TOC 7]; doc-usable styles={}; all recognised names=[TOC 7] + +2024-09-08 15:11:39,412 [main] TRACE Style - === before toc8.addPreferredStyles([TOC]): +Style.toc8=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:11:39,412 [main] TRACE Style - === after +Style.toc8=null; cfg-preferred names=[TOC 8]; doc-usable styles={}; all recognised names=[TOC 8] + +2024-09-08 15:11:39,412 [main] TRACE Style - === before toc9.addPreferredStyles([TOC]): +Style.toc9=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:11:39,412 [main] TRACE Style - === after +Style.toc9=null; cfg-preferred names=[TOC 9]; doc-usable styles={}; all recognised names=[TOC 9] + +2024-09-08 15:11:39,412 [main] TRACE Style - === before h1.addPreferredStyles([Heading]): +Style.h1=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:11:39,412 [main] TRACE Style - === after +Style.h1=null; cfg-preferred names=[Heading 1]; doc-usable styles={}; all recognised names=[Heading 1] + +2024-09-08 15:11:39,412 [main] TRACE Style - === before h2.addPreferredStyles([Heading]): +Style.h2=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:11:39,413 [main] TRACE Style - === after +Style.h2=null; cfg-preferred names=[Heading 2]; doc-usable styles={}; all recognised names=[Heading 2] + +2024-09-08 15:11:39,413 [main] TRACE Style - === before h3.addPreferredStyles([Heading]): +Style.h3=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:11:39,413 [main] TRACE Style - === after +Style.h3=null; cfg-preferred names=[Heading 3]; doc-usable styles={}; all recognised names=[Heading 3] + +2024-09-08 15:11:39,413 [main] TRACE Style - === before h4.addPreferredStyles([Heading]): +Style.h4=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:11:39,413 [main] TRACE Style - === after +Style.h4=null; cfg-preferred names=[Heading 4]; doc-usable styles={}; all recognised names=[Heading 4] + +2024-09-08 15:11:39,413 [main] TRACE Style - === before h5.addPreferredStyles([Heading]): +Style.h5=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:11:39,413 [main] TRACE Style - === after +Style.h5=null; cfg-preferred names=[Heading 5]; doc-usable styles={}; all recognised names=[Heading 5] + +2024-09-08 15:11:39,413 [main] TRACE Style - === before h6.addPreferredStyles([Heading]): +Style.h6=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:11:39,413 [main] TRACE Style - === after +Style.h6=null; cfg-preferred names=[Heading 6]; doc-usable styles={}; all recognised names=[Heading 6] + +2024-09-08 15:11:39,413 [main] TRACE Style - === before h7.addPreferredStyles([Heading]): +Style.h7=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:11:39,413 [main] TRACE Style - === after +Style.h7=null; cfg-preferred names=[Heading 7]; doc-usable styles={}; all recognised names=[Heading 7] + +2024-09-08 15:11:39,413 [main] TRACE Style - === before h8.addPreferredStyles([Heading]): +Style.h8=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:11:39,413 [main] TRACE Style - === after +Style.h8=null; cfg-preferred names=[Heading 8]; doc-usable styles={}; all recognised names=[Heading 8] + +2024-09-08 15:11:39,413 [main] TRACE Style - === before h9.addPreferredStyles([Heading]): +Style.h9=null; cfg-preferred names=[]; doc-usable styles={}; all recognised names=[] +2024-09-08 15:11:39,413 [main] TRACE Style - === after +Style.h9=null; cfg-preferred names=[Heading 9]; doc-usable styles={}; all recognised names=[Heading 9] + +2024-09-08 15:11:39,415 [main] INFO AbstractWordWriter - Created DocWordWriter. +2024-09-08 15:11:39,415 [main] INFO JCleanCim - from C:\Users\gigi\git\jCleanCim\input\base-small-template.docx +2024-09-08 15:11:39,415 [main] INFO JCleanCim - into C:\Users\gigi\git\jCleanCim\output\base-small-tool02v03.docx +2024-09-08 15:11:39,415 [main] INFO DocWordWriter - creating MSWord application +2024-09-08 15:11:42,600 [main] INFO DocWordWriter - opening MSWord file 'C:\Users\gigi\git\jCleanCim\output\base-small-tool02v03.docx' +2024-09-08 15:11:43,180 [main] INFO AbstractWordWriter - Microsoft Word version: 15.0 + +2024-09-08 15:11:43,356 [main] DEBUG DocWordWriter - original(_initialOptions): OptimOptions [viewId=3, normView=false, paginate=true, updFld=true, updScr=true, fastSave=false, spelling=false, grammar=false] +2024-09-08 15:11:43,371 [main] DEBUG DocWordWriter - setting existing custom property: uml = base-small.eap +2024-09-08 15:11:43,373 [main] INFO DocWordWriter - adding new custom property: jCleanCim = 02v03 +2024-09-08 15:11:43,376 [main] INFO OptimOptions - setting view to normal +2024-09-08 15:11:43,411 [main] INFO OptimOptions - disabling pagination +2024-09-08 15:11:43,562 [main] INFO OptimOptions - disabling field update +2024-09-08 15:11:43,614 [main] INFO OptimOptions - disabling screen updating +2024-09-08 15:11:43,622 [main] DEBUG DocWordWriter - current(_optimisedOptions): OptimOptions [viewId=1, normView=true, paginate=false, updFld=false, updScr=false, fastSave=false, spelling=false, grammar=false] +2024-09-08 15:11:43,622 [main] INFO Util - +2024-09-08 15:11:43,622 [main] INFO Util - ------------------------------------------------ +2024-09-08 15:11:43,622 [main] INFO Util - collecting existing and retaining usable styles from open MS Word document.... +2024-09-08 15:11:43,648 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Normal, id=-1, outline = 0, kind=normal +2024-09-08 15:11:43,657 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 1, id=-2, outline = 1, kind=heading +2024-09-08 15:11:43,665 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 2, id=-3, outline = 2, kind=heading +2024-09-08 15:11:43,671 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 3, id=-4, outline = 3, kind=heading +2024-09-08 15:11:43,676 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 4, id=-5, outline = 4, kind=heading +2024-09-08 15:11:43,682 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 5, id=-6, outline = 5, kind=heading +2024-09-08 15:11:43,687 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 6, id=-7, outline = 6, kind=heading +2024-09-08 15:11:43,691 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 7, id=-8, outline = 7, kind=heading +2024-09-08 15:11:43,695 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 8, id=-9, outline = 8, kind=heading +2024-09-08 15:11:43,698 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Heading 9, id=-10, outline = 9, kind=heading +2024-09-08 15:11:43,704 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 1, id=-20, outline = 1, kind=toc +2024-09-08 15:11:43,710 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 2, id=-21, outline = 2, kind=toc +2024-09-08 15:11:43,716 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 3, id=-22, outline = 3, kind=toc +2024-09-08 15:11:43,722 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 4, id=-23, outline = 4, kind=toc +2024-09-08 15:11:43,726 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 5, id=-24, outline = 5, kind=toc +2024-09-08 15:11:43,730 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 6, id=-25, outline = 6, kind=toc +2024-09-08 15:11:43,734 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 7, id=-26, outline = 7, kind=toc +2024-09-08 15:11:43,737 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 8, id=-27, outline = 8, kind=toc +2024-09-08 15:11:43,741 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=TOC 9, id=-28, outline = 9, kind=toc +2024-09-08 15:11:43,744 [main] TRACE DocWordWriter - ===== in DocWordWriter.initBuiltinStylesNameFromId(): initialised relevant built-in style: name=Caption, id=-35, outline = 0, kind=caption +2024-09-08 15:11:46,901 [main] INFO DocWordWriter - Caption (builtIn, id=-35: CAPT) +2024-09-08 15:11:46,901 [main] INFO DocWordWriter - FIGURE-title (custom, id=0: OTHER) +2024-09-08 15:11:46,902 [main] INFO DocWordWriter - Heading 1 (builtIn, id=-2: HEAD) +2024-09-08 15:11:46,902 [main] INFO DocWordWriter - Heading 2 (builtIn, id=-3: HEAD) +2024-09-08 15:11:46,902 [main] INFO DocWordWriter - Heading 3 (builtIn, id=-4: HEAD) +2024-09-08 15:11:46,902 [main] INFO DocWordWriter - Heading 4 (builtIn, id=-5: HEAD) +2024-09-08 15:11:46,902 [main] INFO DocWordWriter - Heading 5 (builtIn, id=-6: HEAD) +2024-09-08 15:11:46,902 [main] INFO DocWordWriter - Heading 6 (builtIn, id=-7: HEAD) +2024-09-08 15:11:46,902 [main] INFO DocWordWriter - Heading 7 (builtIn, id=-8: HEAD) +2024-09-08 15:11:46,902 [main] INFO DocWordWriter - Heading 8 (builtIn, id=-9: HEAD) +2024-09-08 15:11:46,902 [main] INFO DocWordWriter - Heading 9 (builtIn, id=-10: HEAD) +2024-09-08 15:11:46,902 [main] INFO DocWordWriter - Normal (builtIn, id=-1: NORM) +2024-09-08 15:11:46,902 [main] INFO DocWordWriter - Picture (custom, id=0: OTHER) +2024-09-08 15:11:46,902 [main] INFO DocWordWriter - TABLE-cell (custom, id=0: OTHER) +2024-09-08 15:11:46,903 [main] INFO DocWordWriter - TABLE-col-heading (custom, id=0: OTHER) +2024-09-08 15:11:46,903 [main] INFO DocWordWriter - TABLE-title (custom, id=0: OTHER) +2024-09-08 15:11:46,903 [main] INFO DocWordWriter - TOC 1 (builtIn, id=-20: TOC) +2024-09-08 15:11:46,903 [main] INFO DocWordWriter - TOC 2 (builtIn, id=-21: TOC) +2024-09-08 15:11:46,903 [main] INFO DocWordWriter - TOC 3 (builtIn, id=-22: TOC) +2024-09-08 15:11:46,903 [main] INFO DocWordWriter - TOC 4 (builtIn, id=-23: TOC) +2024-09-08 15:11:46,903 [main] INFO DocWordWriter - TOC 5 (builtIn, id=-24: TOC) +2024-09-08 15:11:46,903 [main] INFO DocWordWriter - TOC 6 (builtIn, id=-25: TOC) +2024-09-08 15:11:46,903 [main] INFO DocWordWriter - TOC 7 (builtIn, id=-26: TOC) +2024-09-08 15:11:46,903 [main] INFO DocWordWriter - TOC 8 (builtIn, id=-27: TOC) +2024-09-08 15:11:46,903 [main] INFO DocWordWriter - TOC 9 (builtIn, id=-28: TOC) +2024-09-08 15:11:46,903 [main] INFO Util - time=[0:00:03.281] collected existing and retained usable styles +2024-09-08 15:11:46,903 [main] INFO Util - +2024-09-08 15:11:46,904 [main] TRACE Style - === before para.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.para=null; cfg-preferred names=[PARAGRAPH, Normal, Standard]; doc-usable styles={}; all recognised names=[PARAGRAPH, Standard, Normal] +2024-09-08 15:11:46,904 [main] INFO Style - Assigned from preferred names [full match]: Style.para=Normal; cfg-preferred names=[PARAGRAPH, Normal, Standard] +2024-09-08 15:11:46,904 [main] TRACE Style - === after +Style.para=Normal; cfg-preferred names=[PARAGRAPH, Normal, Standard]; doc-usable styles={Normal=Normal (builtIn, id=-1: PARA)}; all recognised names=[PARAGRAPH, Standard, Normal] + +2024-09-08 15:11:46,904 [main] TRACE Style - === before fig.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.fig=null; cfg-preferred names=[FIGURE, Picture, Normal, Standard]; doc-usable styles={}; all recognised names=[Picture, Standard, Normal, FIGURE] +2024-09-08 15:11:46,904 [main] INFO Style - Assigned from preferred names [full match]: Style.fig=Picture; cfg-preferred names=[FIGURE, Picture, Normal, Standard] +2024-09-08 15:11:46,904 [main] TRACE Style - === after +Style.fig=Picture; cfg-preferred names=[FIGURE, Picture, Normal, Standard]; doc-usable styles={Picture=Picture (custom, id=0: FIG), Normal=Normal (builtIn, id=-1: PARA)}; all recognised names=[Picture, Standard, Normal, FIGURE] + +2024-09-08 15:11:46,904 [main] TRACE Style - === before tabhead.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.tabhead=null; cfg-preferred names=[TABLE-col-heading, Normal, Standard]; doc-usable styles={}; all recognised names=[TABLE-col-heading, Standard, Normal] +2024-09-08 15:11:46,904 [main] INFO Style - Assigned from preferred names [full match]: Style.tabhead=TABLE-col-heading; cfg-preferred names=[TABLE-col-heading, Normal, Standard] +2024-09-08 15:11:46,904 [main] TRACE Style - === after +Style.tabhead=TABLE-col-heading; cfg-preferred names=[TABLE-col-heading, Normal, Standard]; doc-usable styles={TABLE-col-heading=TABLE-col-heading (custom, id=0: TABHEAD), Normal=Normal (builtIn, id=-1: PARA)}; all recognised names=[TABLE-col-heading, Standard, Normal] + +2024-09-08 15:11:46,904 [main] TRACE Style - === before tabcell.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.tabcell=null; cfg-preferred names=[TABLE-cell, Normal, Standard]; doc-usable styles={}; all recognised names=[TABLE-cell, Standard, Normal] +2024-09-08 15:11:46,904 [main] INFO Style - Assigned from preferred names [full match]: Style.tabcell=TABLE-cell; cfg-preferred names=[TABLE-cell, Normal, Standard] +2024-09-08 15:11:46,904 [main] TRACE Style - === after +Style.tabcell=TABLE-cell; cfg-preferred names=[TABLE-cell, Normal, Standard]; doc-usable styles={TABLE-cell=TABLE-cell (custom, id=0: TABCELL), Normal=Normal (builtIn, id=-1: PARA)}; all recognised names=[TABLE-cell, Standard, Normal] + +2024-09-08 15:11:46,904 [main] TRACE Style - === before figcapt.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.figcapt=null; cfg-preferred names=[FIGURE-title, Caption, Beschriftung, Légende]; doc-usable styles={}; all recognised names=[FIGURE-title, Beschriftung, Légende, Caption] +2024-09-08 15:11:46,904 [main] INFO Style - Assigned from preferred names [full match]: Style.figcapt=FIGURE-title; cfg-preferred names=[FIGURE-title, Caption, Beschriftung, Légende] +2024-09-08 15:11:46,904 [main] TRACE Style - === after +Style.figcapt=FIGURE-title; cfg-preferred names=[FIGURE-title, Caption, Beschriftung, Légende]; doc-usable styles={FIGURE-title=FIGURE-title (custom, id=0: FIGCAPT), Caption=Caption (builtIn, id=-35: CAPT)}; all recognised names=[FIGURE-title, Beschriftung, Légende, Caption] + +2024-09-08 15:11:46,905 [main] TRACE Style - === before tabcapt.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.tabcapt=null; cfg-preferred names=[TABLE-title, Caption, Beschriftung, Légende]; doc-usable styles={}; all recognised names=[TABLE-title, Beschriftung, Légende, Caption] +2024-09-08 15:11:46,905 [main] INFO Style - Assigned from preferred names [full match]: Style.tabcapt=TABLE-title; cfg-preferred names=[TABLE-title, Caption, Beschriftung, Légende] +2024-09-08 15:11:46,905 [main] TRACE Style - === after +Style.tabcapt=TABLE-title; cfg-preferred names=[TABLE-title, Caption, Beschriftung, Légende]; doc-usable styles={TABLE-title=TABLE-title (custom, id=0: TABCAPT), Caption=Caption (builtIn, id=-35: CAPT)}; all recognised names=[TABLE-title, Beschriftung, Légende, Caption] + +2024-09-08 15:11:46,905 [main] TRACE Style - === before toc1.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.toc1=null; cfg-preferred names=[TOC 1]; doc-usable styles={}; all recognised names=[TOC 1] +2024-09-08 15:11:46,905 [main] INFO Style - Assigned from preferred names [full match]: Style.toc1=TOC 1; cfg-preferred names=[TOC 1] +2024-09-08 15:11:46,905 [main] TRACE Style - === after +Style.toc1=TOC 1; cfg-preferred names=[TOC 1]; doc-usable styles={TOC 1=TOC 1 (builtIn, id=-20: TOC)}; all recognised names=[TOC 1] + +2024-09-08 15:11:46,905 [main] TRACE Style - === before toc2.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.toc2=null; cfg-preferred names=[TOC 2]; doc-usable styles={}; all recognised names=[TOC 2] +2024-09-08 15:11:46,905 [main] INFO Style - Assigned from preferred names [full match]: Style.toc2=TOC 2; cfg-preferred names=[TOC 2] +2024-09-08 15:11:46,905 [main] TRACE Style - === after +Style.toc2=TOC 2; cfg-preferred names=[TOC 2]; doc-usable styles={TOC 2=TOC 2 (builtIn, id=-21: TOC)}; all recognised names=[TOC 2] + +2024-09-08 15:11:46,905 [main] TRACE Style - === before toc3.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.toc3=null; cfg-preferred names=[TOC 3]; doc-usable styles={}; all recognised names=[TOC 3] +2024-09-08 15:11:46,905 [main] INFO Style - Assigned from preferred names [full match]: Style.toc3=TOC 3; cfg-preferred names=[TOC 3] +2024-09-08 15:11:46,905 [main] TRACE Style - === after +Style.toc3=TOC 3; cfg-preferred names=[TOC 3]; doc-usable styles={TOC 3=TOC 3 (builtIn, id=-22: TOC)}; all recognised names=[TOC 3] + +2024-09-08 15:11:46,905 [main] TRACE Style - === before toc4.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.toc4=null; cfg-preferred names=[TOC 4]; doc-usable styles={}; all recognised names=[TOC 4] +2024-09-08 15:11:46,905 [main] INFO Style - Assigned from preferred names [full match]: Style.toc4=TOC 4; cfg-preferred names=[TOC 4] +2024-09-08 15:11:46,905 [main] TRACE Style - === after +Style.toc4=TOC 4; cfg-preferred names=[TOC 4]; doc-usable styles={TOC 4=TOC 4 (builtIn, id=-23: TOC)}; all recognised names=[TOC 4] + +2024-09-08 15:11:46,905 [main] TRACE Style - === before toc5.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.toc5=null; cfg-preferred names=[TOC 5]; doc-usable styles={}; all recognised names=[TOC 5] +2024-09-08 15:11:46,905 [main] INFO Style - Assigned from preferred names [full match]: Style.toc5=TOC 5; cfg-preferred names=[TOC 5] +2024-09-08 15:11:46,905 [main] TRACE Style - === after +Style.toc5=TOC 5; cfg-preferred names=[TOC 5]; doc-usable styles={TOC 5=TOC 5 (builtIn, id=-24: TOC)}; all recognised names=[TOC 5] + +2024-09-08 15:11:46,905 [main] TRACE Style - === before toc6.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.toc6=null; cfg-preferred names=[TOC 6]; doc-usable styles={}; all recognised names=[TOC 6] +2024-09-08 15:11:46,905 [main] INFO Style - Assigned from preferred names [full match]: Style.toc6=TOC 6; cfg-preferred names=[TOC 6] +2024-09-08 15:11:46,906 [main] TRACE Style - === after +Style.toc6=TOC 6; cfg-preferred names=[TOC 6]; doc-usable styles={TOC 6=TOC 6 (builtIn, id=-25: TOC)}; all recognised names=[TOC 6] + +2024-09-08 15:11:46,906 [main] TRACE Style - === before toc7.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.toc7=null; cfg-preferred names=[TOC 7]; doc-usable styles={}; all recognised names=[TOC 7] +2024-09-08 15:11:46,906 [main] INFO Style - Assigned from preferred names [full match]: Style.toc7=TOC 7; cfg-preferred names=[TOC 7] +2024-09-08 15:11:46,906 [main] TRACE Style - === after +Style.toc7=TOC 7; cfg-preferred names=[TOC 7]; doc-usable styles={TOC 7=TOC 7 (builtIn, id=-26: TOC)}; all recognised names=[TOC 7] + +2024-09-08 15:11:46,906 [main] TRACE Style - === before toc8.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.toc8=null; cfg-preferred names=[TOC 8]; doc-usable styles={}; all recognised names=[TOC 8] +2024-09-08 15:11:46,906 [main] INFO Style - Assigned from preferred names [full match]: Style.toc8=TOC 8; cfg-preferred names=[TOC 8] +2024-09-08 15:11:46,906 [main] TRACE Style - === after +Style.toc8=TOC 8; cfg-preferred names=[TOC 8]; doc-usable styles={TOC 8=TOC 8 (builtIn, id=-27: TOC)}; all recognised names=[TOC 8] + +2024-09-08 15:11:46,906 [main] TRACE Style - === before toc9.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.toc9=null; cfg-preferred names=[TOC 9]; doc-usable styles={}; all recognised names=[TOC 9] +2024-09-08 15:11:46,906 [main] INFO Style - Assigned from preferred names [full match]: Style.toc9=TOC 9; cfg-preferred names=[TOC 9] +2024-09-08 15:11:46,906 [main] TRACE Style - === after +Style.toc9=TOC 9; cfg-preferred names=[TOC 9]; doc-usable styles={TOC 9=TOC 9 (builtIn, id=-28: TOC)}; all recognised names=[TOC 9] + +2024-09-08 15:11:46,906 [main] TRACE Style - === before h1.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.h1=null; cfg-preferred names=[Heading 1]; doc-usable styles={}; all recognised names=[Heading 1] +2024-09-08 15:11:46,906 [main] INFO Style - Assigned from preferred names [full match]: Style.h1=Heading 1; cfg-preferred names=[Heading 1] +2024-09-08 15:11:46,906 [main] TRACE Style - === after +Style.h1=Heading 1; cfg-preferred names=[Heading 1]; doc-usable styles={Heading 1=Heading 1 (builtIn, id=-2: HEAD)}; all recognised names=[Heading 1] + +2024-09-08 15:11:46,906 [main] TRACE Style - === before h2.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.h2=null; cfg-preferred names=[Heading 2]; doc-usable styles={}; all recognised names=[Heading 2] +2024-09-08 15:11:46,906 [main] INFO Style - Assigned from preferred names [full match]: Style.h2=Heading 2; cfg-preferred names=[Heading 2] +2024-09-08 15:11:46,906 [main] TRACE Style - === after +Style.h2=Heading 2; cfg-preferred names=[Heading 2]; doc-usable styles={Heading 2=Heading 2 (builtIn, id=-3: HEAD)}; all recognised names=[Heading 2] + +2024-09-08 15:11:46,906 [main] TRACE Style - === before h3.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.h3=null; cfg-preferred names=[Heading 3]; doc-usable styles={}; all recognised names=[Heading 3] +2024-09-08 15:11:46,906 [main] INFO Style - Assigned from preferred names [full match]: Style.h3=Heading 3; cfg-preferred names=[Heading 3] +2024-09-08 15:11:46,906 [main] TRACE Style - === after +Style.h3=Heading 3; cfg-preferred names=[Heading 3]; doc-usable styles={Heading 3=Heading 3 (builtIn, id=-4: HEAD)}; all recognised names=[Heading 3] + +2024-09-08 15:11:46,906 [main] TRACE Style - === before h4.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.h4=null; cfg-preferred names=[Heading 4]; doc-usable styles={}; all recognised names=[Heading 4] +2024-09-08 15:11:46,906 [main] INFO Style - Assigned from preferred names [full match]: Style.h4=Heading 4; cfg-preferred names=[Heading 4] +2024-09-08 15:11:46,907 [main] TRACE Style - === after +Style.h4=Heading 4; cfg-preferred names=[Heading 4]; doc-usable styles={Heading 4=Heading 4 (builtIn, id=-5: HEAD)}; all recognised names=[Heading 4] + +2024-09-08 15:11:46,907 [main] TRACE Style - === before h5.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.h5=null; cfg-preferred names=[Heading 5]; doc-usable styles={}; all recognised names=[Heading 5] +2024-09-08 15:11:46,907 [main] INFO Style - Assigned from preferred names [full match]: Style.h5=Heading 5; cfg-preferred names=[Heading 5] +2024-09-08 15:11:46,907 [main] TRACE Style - === after +Style.h5=Heading 5; cfg-preferred names=[Heading 5]; doc-usable styles={Heading 5=Heading 5 (builtIn, id=-6: HEAD)}; all recognised names=[Heading 5] + +2024-09-08 15:11:46,907 [main] TRACE Style - === before h6.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.h6=null; cfg-preferred names=[Heading 6]; doc-usable styles={}; all recognised names=[Heading 6] +2024-09-08 15:11:46,907 [main] INFO Style - Assigned from preferred names [full match]: Style.h6=Heading 6; cfg-preferred names=[Heading 6] +2024-09-08 15:11:46,907 [main] TRACE Style - === after +Style.h6=Heading 6; cfg-preferred names=[Heading 6]; doc-usable styles={Heading 6=Heading 6 (builtIn, id=-7: HEAD)}; all recognised names=[Heading 6] + +2024-09-08 15:11:46,907 [main] TRACE Style - === before h7.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.h7=null; cfg-preferred names=[Heading 7]; doc-usable styles={}; all recognised names=[Heading 7] +2024-09-08 15:11:46,907 [main] INFO Style - Assigned from preferred names [full match]: Style.h7=Heading 7; cfg-preferred names=[Heading 7] +2024-09-08 15:11:46,907 [main] TRACE Style - === after +Style.h7=Heading 7; cfg-preferred names=[Heading 7]; doc-usable styles={Heading 7=Heading 7 (builtIn, id=-8: HEAD)}; all recognised names=[Heading 7] + +2024-09-08 15:11:46,907 [main] TRACE Style - === before h8.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.h8=null; cfg-preferred names=[Heading 8]; doc-usable styles={}; all recognised names=[Heading 8] +2024-09-08 15:11:46,907 [main] INFO Style - Assigned from preferred names [full match]: Style.h8=Heading 8; cfg-preferred names=[Heading 8] +2024-09-08 15:11:46,907 [main] TRACE Style - === after +Style.h8=Heading 8; cfg-preferred names=[Heading 8]; doc-usable styles={Heading 8=Heading 8 (builtIn, id=-9: HEAD)}; all recognised names=[Heading 8] + +2024-09-08 15:11:46,907 [main] TRACE Style - === before h9.assignTheStyleFromExistingAccordingToPreferred([Caption, FIGURE-title, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Heading 7, Heading 8, Heading 9, Normal, Picture, TABLE-cell, TABLE-col-heading, TABLE-title, TOC 1, TOC 2, TOC 3, TOC 4, TOC 5, TOC 6, TOC 7, TOC 8, TOC 9]): +Style.h9=null; cfg-preferred names=[Heading 9]; doc-usable styles={}; all recognised names=[Heading 9] +2024-09-08 15:11:46,907 [main] INFO Style - Assigned from preferred names [full match]: Style.h9=Heading 9; cfg-preferred names=[Heading 9] +2024-09-08 15:11:46,908 [main] TRACE Style - === after +Style.h9=Heading 9; cfg-preferred names=[Heading 9]; doc-usable styles={Heading 9=Heading 9 (builtIn, id=-10: HEAD)}; all recognised names=[Heading 9] + +2024-09-08 15:11:46,908 [main] INFO Util - +2024-09-08 15:11:46,908 [main] INFO Util - ------------------------------------------------ +2024-09-08 15:11:46,908 [main] INFO Util - collecting used existing figure/table caption ranges from template... +2024-09-08 15:11:47,571 [main] INFO DocWordWriter - found paragraph [Figure 1 – my first figure ] with caption style [FIGURE-title] +2024-09-08 15:11:47,605 [main] INFO DocWordWriter - found paragraph [Table 1 – my first test table ] with caption style [TABLE-title] +2024-09-08 15:11:47,708 [main] INFO DocWordWriter - found paragraph [Figure 2 – inexisting diagram ] with caption style [Caption] +2024-09-08 15:11:47,740 [main] INFO DocWordWriter - found paragraph [Table 2 - my second test table ] with caption style [Caption] +2024-09-08 15:11:47,914 [main] INFO DocWordWriter - found paragraph [Figure 3 – Diagram referenced in template, not printed in the regular package doc ] with caption style [Caption] +2024-09-08 15:11:48,439 [main] INFO Util - time=[0:00:01.531] collected used figure/table caption ranges from template. +2024-09-08 15:11:48,439 [main] INFO Util - +2024-09-08 15:11:48,439 [main] INFO Util - +2024-09-08 15:11:48,439 [main] INFO Util - ------------------------------------------------ +2024-09-08 15:11:48,439 [main] INFO Util - scanning placeholders... +2024-09-08 15:11:48,508 [main] INFO AbstractWordWriter - saved placeholder 'startUmlFile..endUml' FILE +2024-09-08 15:11:48,532 [main] INFO AbstractWordWriter - skipping TOC: startUmlPackage.Core.endUml +2024-09-08 15:11:48,556 [main] INFO AbstractWordWriter - skipping TOC: startUmlPackage.Dummy.endUml +2024-09-08 15:11:48,579 [main] INFO AbstractWordWriter - skipping TOC: startUmlPackage.InformativeAndPrivate.endUml +2024-09-08 15:11:48,608 [main] INFO AbstractWordWriter - skipping TOC: startUmlPackage.Domain.endUml +2024-09-08 15:11:48,641 [main] INFO AbstractWordWriter - skipping TOC: startUmlPackage.Ext1.endUml +2024-09-08 15:11:48,665 [main] INFO AbstractWordWriter - skipping TOC: startUmlDataIndex.Core.endUml +2024-09-08 15:11:48,689 [main] INFO AbstractWordWriter - skipping TOC: startUmlPresenceConditions.PresenceConditions.endUml +2024-09-08 15:11:48,713 [main] INFO AbstractWordWriter - skipping TOC: startUmlPackage.CDCAnalogueInfo.endUml +2024-09-08 15:11:48,737 [main] INFO AbstractWordWriter - skipping TOC: startUmlPackage.LogicalNodes.endUml +2024-09-08 15:11:48,759 [main] INFO AbstractWordWriter - skipping TOC: startUmlDataIndex.CommonDataClasses.endUml +2024-09-08 15:11:48,786 [main] INFO AbstractWordWriter - skipping TOC: startUmlPackage.DAEnums.endUml +2024-09-08 15:11:48,810 [main] INFO AbstractWordWriter - skipping TOC: startUmlSclEnums.DAEnums.endUml +2024-09-08 15:11:48,835 [main] INFO AbstractWordWriter - skipping TOC: startUmlDataIndex.LogicalNodes.endUml +2024-09-08 15:11:48,861 [main] INFO AbstractWordWriter - skipping TOC: startUmlClass.Core.BasePower.endUml +2024-09-08 15:11:48,886 [main] INFO AbstractWordWriter - skipping TOC: startUmlClass.CDCStatusInfo.DPS.endUml +2024-09-08 15:11:48,910 [main] INFO AbstractWordWriter - skipping TOC: startUmlClass.Domain.UnitSymbol.endUml +2024-09-08 15:11:48,937 [main] INFO AbstractWordWriter - skipping TOC: startUmlClass.Core.InexistingClassName.endUml +2024-09-08 15:11:48,963 [main] INFO AbstractWordWriter - skipping TOC: startUmlClass.ConstructedDAs.RangeConfig.endUml +2024-09-08 15:11:48,987 [main] INFO AbstractWordWriter - skipping TOC: startUmlClass.CDCStatusInfo.HST.endUml +2024-09-08 15:11:49,012 [main] INFO AbstractWordWriter - skipping TOC: startUmlClass.Core.ConnectivityNodeContainer.endUml +2024-09-08 15:11:49,035 [main] INFO AbstractWordWriter - skipping TOC: startUmlClass.Core.DumbSubterminal.endUml +2024-09-08 15:11:49,094 [main] INFO AbstractWordWriter - saved placeholder 'startUmlAttribute.IEC61970CIMVersion.version.endUml' ATTRIBUTE IEC61970CIMVersion, version +2024-09-08 15:11:49,148 [main] INFO AbstractWordWriter - saved placeholder 'startUmlAttribute.IEC61970CIMVersion.dummy.endUml' ATTRIBUTE IEC61970CIMVersion, dummy +2024-09-08 15:11:49,204 [main] INFO AbstractWordWriter - saved placeholder 'startUmlIec61850NsName.IEC61850_7_2Namespace.endUml' IEC61850_NSNAME IEC61850_7_2Namespace +2024-09-08 15:11:49,265 [main] INFO AbstractWordWriter - saved placeholder 'startUmlIec61850NsName.IEC61850_7_3Namespace.endUml' IEC61850_NSNAME IEC61850_7_3Namespace +2024-09-08 15:11:49,321 [main] INFO AbstractWordWriter - saved placeholder 'startUmlIec61850NsName.IEC61850_7_4Namespace.endUml' IEC61850_NSNAME IEC61850_7_4Namespace +2024-09-08 15:11:49,382 [main] INFO AbstractWordWriter - saved placeholder 'startUmlIec61850NsName.IEC61850_7_420Namespace.endUml' IEC61850_NSNAME IEC61850_7_420Namespace +2024-09-08 15:11:49,435 [main] INFO AbstractWordWriter - saved placeholder 'startUmlDiagram.IEC61970.Main.endUml' DIAGRAM IEC61970, Main +2024-09-08 15:11:49,493 [main] INFO AbstractWordWriter - saved placeholder 'startUmlDiagram.DummyPackage.DummyDiagram.endUml' DIAGRAM DummyPackage, DummyDiagram, figures (1 before ), tables (1 before ) +2024-09-08 15:11:49,541 [main] INFO AbstractWordWriter - saved placeholder 'startUmlDiagram.DocIEC61970.MyDocFigure.endUml' DIAGRAM DocIEC61970, MyDocFigure, figures (2 before ), tables (2 before ) +2024-09-08 15:11:49,584 [main] INFO AbstractWordWriter - saved placeholder 'startUmlFile..endUml' FILE, figures (3 before ), tables (2 before ) +2024-09-08 15:11:49,626 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.IEC61970.endUml' PACKAGE IEC61970, figures (3 before ), tables (2 before ) +2024-09-08 15:11:49,666 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.Dummy.endUml' PACKAGE Dummy, figures (3 before ), tables (2 before ) +2024-09-08 15:11:49,707 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.InformativeAndPrivate.endUml' PACKAGE InformativeAndPrivate, figures (3 before ), tables (2 before ) +2024-09-08 15:11:49,748 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.Domain.endUml' PACKAGE Domain, figures (3 before ), tables (2 before ) +2024-09-08 15:11:49,789 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.Ext1.endUml' PACKAGE Ext1, figures (3 before ), tables (2 before ) +2024-09-08 15:11:49,830 [main] INFO AbstractWordWriter - saved placeholder 'startUmlDataIndex.Core.endUml' DATA_INDEX Core, figures (3 before ), tables (2 before ) +2024-09-08 15:11:49,870 [main] INFO AbstractWordWriter - saved placeholder 'startUmlAbbreviations.Abbreviations.endUml' ABBREVIATIONS Abbreviations, figures (3 before ), tables (2 before ) +2024-09-08 15:11:49,911 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPresenceConditions.PresenceConditions.endUml' PRES_CONDITIONS PresenceConditions, figures (3 before ), tables (2 before ) +2024-09-08 15:11:49,950 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.CDCAnalogueInfo.endUml' PACKAGE CDCAnalogueInfo, figures (3 before ), tables (2 before ) +2024-09-08 15:11:49,991 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.LogicalNodes.endUml' PACKAGE LogicalNodes, figures (3 before ), tables (2 before ) +2024-09-08 15:11:50,031 [main] INFO AbstractWordWriter - saved placeholder 'startUmlDataIndex.CommonDataClasses.endUml' DATA_INDEX CommonDataClasses, figures (3 before ), tables (2 before ) +2024-09-08 15:11:50,073 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.DAEnums.endUml' PACKAGE DAEnums, figures (3 before ), tables (2 before ) +2024-09-08 15:11:50,112 [main] INFO AbstractWordWriter - saved placeholder 'startUmlSclEnums.DAEnums.endUml' SCL_ENUMS DAEnums, figures (3 before ), tables (2 before ) +2024-09-08 15:11:50,153 [main] INFO AbstractWordWriter - saved placeholder 'startUmlDataIndex.LogicalNodes.endUml' DATA_INDEX LogicalNodes, figures (3 before ), tables (2 before ) +2024-09-08 15:11:50,200 [main] INFO AbstractWordWriter - saved placeholder 'startUmlPackage.IEC51850_7_420.endUml' PACKAGE IEC51850_7_420, figures (3 before ), tables (2 before ) +2024-09-08 15:11:50,241 [main] INFO AbstractWordWriter - saved placeholder 'startUmlDiagNote.IEC61970.Main.endUml' DIAG_NOTE IEC61970, Main, figures (3 before ), tables (2 before ) +2024-09-08 15:11:50,281 [main] INFO AbstractWordWriter - saved placeholder 'startUmlDiagNote.IEC619_70.Main.endUml' DIAG_NOTE IEC619_70, Main, figures (3 before ), tables (2 before ) +2024-09-08 15:11:50,331 [main] INFO AbstractWordWriter - saved placeholder 'startUmlClass.Core.BasePower.endUml' CLASS Core, BasePower, figures (3 before ), tables (2 before ) +2024-09-08 15:11:50,374 [main] INFO AbstractWordWriter - saved placeholder 'startUmlClass.CDCStatusInfo.DPS.endUml' CLASS CDCStatusInfo, DPS, figures (3 before ), tables (2 before ) +2024-09-08 15:11:50,415 [main] INFO AbstractWordWriter - saved placeholder 'startUmlClass.Domain.UnitSymbol.endUml' CLASS Domain, UnitSymbol, figures (3 before ), tables (2 before ) +2024-09-08 15:11:50,457 [main] INFO AbstractWordWriter - saved placeholder 'startUmlClass.Core.InexistingClassName.endUml' CLASS Core, InexistingClassName, figures (3 before ), tables (2 before ) +2024-09-08 15:11:50,500 [main] INFO AbstractWordWriter - saved placeholder 'startUmlClass.ConstructedDAs.RangeConfig.endUml' CLASS ConstructedDAs, RangeConfig, figures (3 before ), tables (2 before ) +2024-09-08 15:11:50,539 [main] INFO AbstractWordWriter - saved placeholder 'startUmlClass.CDCStatusInfo.HST.endUml' CLASS CDCStatusInfo, HST, figures (3 before ), tables (2 before ) +2024-09-08 15:11:50,580 [main] INFO AbstractWordWriter - saved placeholder 'startUmlClass.Core.ConnectivityNodeContainer.endUml' CLASS Core, ConnectivityNodeContainer, figures (3 before ), tables (2 before ) +2024-09-08 15:11:50,621 [main] INFO AbstractWordWriter - saved placeholder 'startUmlClass.Core.DumbSubterminal.endUml' CLASS Core, DumbSubterminal, figures (3 before ), tables (2 before ) +2024-09-08 15:11:50,626 [main] INFO AbstractWordWriter - 36 placeholders found. +2024-09-08 15:11:50,626 [main] INFO Util - time=[0:00:02.187] scanned placeholders. +2024-09-08 15:11:50,626 [main] INFO Util - +2024-09-08 15:11:50,626 [main] INFO Util - +2024-09-08 15:11:50,626 [main] INFO Util - ------------------------------------------------ +2024-09-08 15:11:50,626 [main] INFO Util - inserting documentation into placeholders +2024-09-08 15:11:50,633 [main] INFO AbstractWordWriter - replacing [39 - 59] FILE... +2024-09-08 15:11:50,642 [main] INFO Util - time=[0:00:00.015] replaced [39 - 53] FILE... +2024-09-08 15:11:50,642 [main] INFO Util - +2024-09-08 15:11:50,646 [main] INFO AbstractWordWriter - replacing [4015 - 4066] ATTRIBUTE IEC61970CIMVersion, version... +2024-09-08 15:11:50,654 [main] INFO Util - time=[0:00:00.012] replaced [4015 - 4031] ATTRIBUTE IEC61970CIMVersion, version... +2024-09-08 15:11:50,654 [main] INFO Util - +2024-09-08 15:11:50,657 [main] INFO AbstractWordWriter - replacing [4055 - 4104] ATTRIBUTE IEC61970CIMVersion, dummy... +2024-09-08 15:11:50,665 [main] INFO Util - time=[0:00:00.011] replaced [4055 - 4117] $ERROR ATTRIBUTE IEC61970CIMVersion, dummy not found in model$... +2024-09-08 15:11:50,665 [main] INFO Util - +2024-09-08 15:11:50,669 [main] INFO AbstractWordWriter - replacing [4163 - 4214] IEC61850_NSNAME IEC61850_7_2Namespace... +2024-09-08 15:11:50,676 [main] INFO Util - time=[0:00:00.011] replaced [4163 - 4180] IEC61850_NSNAME IEC61850_7_2Namespace... +2024-09-08 15:11:50,677 [main] INFO Util - +2024-09-08 15:11:50,680 [main] INFO AbstractWordWriter - replacing [4208 - 4259] IEC61850_NSNAME IEC61850_7_3Namespace... +2024-09-08 15:11:50,688 [main] INFO Util - time=[0:00:00.011] replaced [4208 - 4226] IEC61850_NSNAME IEC61850_7_3Namespace... +2024-09-08 15:11:50,689 [main] INFO Util - +2024-09-08 15:11:50,692 [main] INFO AbstractWordWriter - replacing [4254 - 4305] IEC61850_NSNAME IEC61850_7_4Namespace... +2024-09-08 15:11:50,702 [main] INFO Util - time=[0:00:00.012] replaced [4254 - 4272] IEC61850_NSNAME IEC61850_7_4Namespace... +2024-09-08 15:11:50,702 [main] INFO Util - +2024-09-08 15:11:50,706 [main] INFO AbstractWordWriter - replacing [4300 - 4353] IEC61850_NSNAME IEC61850_7_420Namespace... +2024-09-08 15:11:50,713 [main] INFO Util - time=[0:00:00.011] replaced [4300 - 4366] $ERROR IEC61850_NSNAME IEC61850_7_420Namespace not found in model$... +2024-09-08 15:11:50,714 [main] INFO Util - +2024-09-08 15:11:50,718 [main] INFO AbstractWordWriter - replacing [4429 - 4465] DIAGRAM IEC61970, Main... +2024-09-08 15:11:50,747 [main] INFO Util - time=[0:00:00.033] replaced [4429 - 4430] DIAGRAM IEC61970, Main... +2024-09-08 15:11:50,747 [main] INFO Util - +2024-09-08 15:11:50,752 [main] INFO AbstractWordWriter - replacing [4688 - 4736] DIAGRAM DummyPackage, DummyDiagram, figures (1 before ), tables (1 before )... +2024-09-08 15:11:50,752 [main] WARN ModelFinderImpl - No diagram DummyPackage::DummyDiagram found - returning null. +2024-09-08 15:11:50,761 [main] INFO Util - time=[0:00:00.014] replaced [4688 - 4749] $ERROR DIAGRAM DummyPackage, DummyDiagram not found in model$... +2024-09-08 15:11:50,761 [main] INFO Util - +2024-09-08 15:11:50,765 [main] INFO AbstractWordWriter - replacing [5021 - 5067] DIAGRAM DocIEC61970, MyDocFigure, figures (2 before ), tables (2 before )... +2024-09-08 15:11:50,789 [main] INFO Util - time=[0:00:00.028] replaced [5021 - 5022] DIAGRAM DocIEC61970, MyDocFigure, figures (2 before ), tables (2 before )... +2024-09-08 15:11:50,789 [main] INFO Util - +2024-09-08 15:11:50,793 [main] INFO AbstractWordWriter - replacing [5207 - 5227] FILE, figures (3 before ), tables (2 before )... +2024-09-08 15:11:50,800 [main] INFO Util - time=[0:00:00.011] replaced [5207 - 5221] FILE, figures (3 before ), tables (2 before )... +2024-09-08 15:11:50,800 [main] INFO Util - +2024-09-08 15:11:50,804 [main] INFO AbstractWordWriter - replacing [5223 - 5254] PACKAGE IEC61970, figures (3 before ), tables (2 before )... +2024-09-08 15:11:50,822 [main] INFO AbstractWordWriter - writing doc for package IEC61970 ... +2024-09-08 15:11:50,897 [main] WARN AbstractWordWriter - ####### Caught exception - skipping: Invoke of: InsertCaption +Source: Microsoft Word +Description: Command failed + +2024-09-08 15:11:50,904 [main] INFO Util - time=[0:00:00.104] replaced [5253 - 5254] PACKAGE IEC61970, figures (3 before 1 mine), tables (2 before )... +2024-09-08 15:11:50,904 [main] INFO Util - +2024-09-08 15:11:50,908 [main] INFO AbstractWordWriter - replacing [5814 - 5842] PACKAGE Dummy, figures (4 before ), tables (2 before )... +2024-09-08 15:11:50,916 [main] INFO Util - time=[0:00:00.012] replaced [5814 - 5854] $ERROR PACKAGE Dummy not found in model$... +2024-09-08 15:11:50,917 [main] INFO Util - +2024-09-08 15:11:50,921 [main] INFO AbstractWordWriter - replacing [5855 - 5899] PACKAGE InformativeAndPrivate, figures (4 before ), tables (2 before )... +2024-09-08 15:11:50,928 [main] INFO Util - time=[0:00:00.011] replaced [5855 - 5911] $ERROR PACKAGE InformativeAndPrivate not found in model$... +2024-09-08 15:11:50,928 [main] INFO Util - +2024-09-08 15:11:50,933 [main] INFO AbstractWordWriter - replacing [5912 - 5941] PACKAGE Domain, figures (4 before ), tables (2 before )... +2024-09-08 15:11:50,950 [main] INFO AbstractWordWriter - writing doc for package Domain ... +2024-09-08 15:11:51,028 [main] WARN AbstractWordWriter - ####### Caught exception - skipping: Invoke of: InsertCaption +Source: Microsoft Word +Description: Command failed + +2024-09-08 15:11:51,037 [main] INFO Util - time=[0:00:00.109] replaced [6712 - 6713] PACKAGE Domain, figures (4 before 1 mine), tables (2 before )... +2024-09-08 15:11:51,037 [main] INFO Util - +2024-09-08 15:11:51,041 [main] INFO AbstractWordWriter - replacing [6714 - 6741] PACKAGE Ext1, figures (5 before ), tables (2 before )... +2024-09-08 15:11:51,059 [main] INFO AbstractWordWriter - writing doc for package Ext1 ... +2024-09-08 15:11:51,158 [main] WARN AbstractWordWriter - ####### Caught exception - skipping: Invoke of: InsertCaption +Source: Microsoft Word +Description: Command failed + +2024-09-08 15:11:51,166 [main] INFO Util - time=[0:00:00.129] replaced [6838 - 6839] PACKAGE Ext1, figures (5 before 1 mine), tables (2 before )... +2024-09-08 15:11:51,166 [main] INFO Util - +2024-09-08 15:11:51,170 [main] INFO AbstractWordWriter - replacing [7124 - 7153] DATA_INDEX Core, figures (6 before ), tables (2 before )... +2024-09-08 15:11:51,175 [main] INFO AbstractWordWriter - writing data index doc for package Core ... +2024-09-08 15:11:51,202 [main] INFO DocWordWriter - --- insertTable() 22 rows: Attributes defined on classes of Core package +2024-09-08 15:11:51,222 [main] DEBUG DocWordWriter - ... 20 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 15:11:51,233 [main] DEBUG DocWordWriter - ... 11 ms for createTable() +2024-09-08 15:11:51,533 [main] DEBUG DocWordWriter - ... 300 ms for fillValues() +2024-09-08 15:11:51,556 [main] DEBUG DocWordWriter - ... 23 ms for widths (table) +2024-09-08 15:11:51,627 [main] DEBUG DocWordWriter - ... 71 ms for widths (columns) +2024-09-08 15:11:51,645 [main] DEBUG DocWordWriter - ... 18 ms for shadding/merging/styling (rows) +2024-09-08 15:11:51,673 [main] DEBUG DocWordWriter - ... 28 ms for borders +2024-09-08 15:11:51,673 [main] DEBUG DocWordWriter - ... 140 ms for formatTable() +2024-09-08 15:11:51,680 [main] INFO DocWordWriter - ... 471 ms total for insertTable() +2024-09-08 15:11:51,692 [main] WARN AbstractWordWriter - ####### Caught exception - skipping: Invoke of: InsertCaption +Source: Microsoft Word +Description: Command failed + +2024-09-08 15:11:51,700 [main] INFO Util - time=[0:00:00.534] replaced [7196 - 10946] DATA_INDEX Core, figures (6 before ), tables (2 before 1 mine)... +2024-09-08 15:11:51,700 [main] INFO Util - +2024-09-08 15:11:51,704 [main] INFO AbstractWordWriter - replacing [11011 - 11053] ABBREVIATIONS Abbreviations, figures (6 before ), tables (3 before )... +2024-09-08 15:11:51,709 [main] INFO AbstractWordWriter - writing abbreviations from package Abbreviations ... +2024-09-08 15:11:51,734 [main] INFO DocWordWriter - --- insertTable() 11 rows: Normative abbreviations for data object names +2024-09-08 15:11:51,753 [main] DEBUG DocWordWriter - ... 19 ms for appendRawTextInNewParagraphWithStyle() +2024-09-08 15:11:51,763 [main] DEBUG DocWordWriter - ... 10 ms for createTable() +2024-09-08 15:11:51,876 [main] DEBUG DocWordWriter - ... 113 ms for fillValues() +2024-09-08 15:11:51,890 [main] DEBUG DocWordWriter - ... 14 ms for widths (table) +2024-09-08 15:11:51,928 [main] DEBUG DocWordWriter - ... 38 ms for widths (columns) +2024-09-08 15:11:51,961 [main] DEBUG DocWordWriter - ... 33 ms for shadding/merging/styling (rows) +2024-09-08 15:11:51,981 [main] DEBUG DocWordWriter - ... 20 ms for borders +2024-09-08 15:11:51,981 [main] DEBUG DocWordWriter - ... 105 ms for formatTable() +2024-09-08 15:11:51,989 [main] INFO DocWordWriter - ... 247 ms total for insertTable() +2024-09-08 15:11:52,002 [main] WARN AbstractWordWriter - ####### Caught exception - skipping: Invoke of: InsertCaption +Source: Microsoft Word +Description: Command failed + diff --git a/src/org/gigipugni/jcleancim/mibgen/MibGen.java b/src/org/gigipugni/jcleancim/mibgen/MibGen.java index 8300fb6..e55e722 100644 --- a/src/org/gigipugni/jcleancim/mibgen/MibGen.java +++ b/src/org/gigipugni/jcleancim/mibgen/MibGen.java @@ -54,6 +54,10 @@ public class MibGen { private boolean _isAgent; private boolean _isEntry; private boolean _isEnumeration; + + //v2 variables + private String _mibHeaderDescription; + private String _mibHeaderRevision; // package stack control private int _currentPackageLevel; @@ -134,6 +138,15 @@ private void collectMibPackage(UmlPackage p) { System.out.println("Package: " + p.getName() + ": " + p.getDepth()); +// v2 change start - collect header information + if (p.getTaggedValues().get("mibHeaderDescription") != null) { + _mibHeaderDescription = p.getTaggedValues().get("mibHeaderDescription"); + } + if (p.getTaggedValues().get("mibHeaderRevision") != null) { + _mibHeaderRevision = p.getTaggedValues().get("mibHeaderRevision"); + } +// v2 change end + if (p.getTaggedValues().get("objectIdentity") != null) { // first cleanup the upper stack if we are going down in hierarchy while (_currentPackageLevel > p.getDepth()) { @@ -198,9 +211,6 @@ private void collectMibPackage(UmlPackage p) { } if (p.getTaggedValues().get("mibName") != null) { - // close previous MIB - // if (_mibWriter.GetCurrentMibIdentity() != null) - // _mibWriter.CloseMib(_packageBranchIdCounter.peek()); // get new mib name _mibName = p.getTaggedValues().get("mibName"); if (p.getTaggedValues().get("mibIdentity") != null) { @@ -222,10 +232,11 @@ private void collectMibPackage(UmlPackage p) { } } - + // v2 change: added _mibHeaderDescription, _mibHeaderRevision _mibWriter.writeModuleHeader(_mibName, _mibIdentity, p.getDescription().toString(), p.getContainingPackage().getTaggedValues().get("objectIdentity"), - Integer.toString(_packageBranchIdCounter.peek()), _enumeratedTypesList); + Integer.toString(_packageBranchIdCounter.peek()), _enumeratedTypesList, + _mibHeaderDescription, _mibHeaderRevision); _agentBranchIdCounter = 1; } diff --git a/src/org/gigipugni/jcleancim/mibgen/MibTemplate.java b/src/org/gigipugni/jcleancim/mibgen/MibTemplate.java index 779b9b3..5fefca0 100644 --- a/src/org/gigipugni/jcleancim/mibgen/MibTemplate.java +++ b/src/org/gigipugni/jcleancim/mibgen/MibTemplate.java @@ -63,20 +63,15 @@ private String initHeader() { sb.append(" FROM INET-ADDRESS-MIB;").append(Util.NL); sb.append(" ").append(Util.NL); sb.append(" $modulename$ MODULE-IDENTITY").append(Util.NL); - sb.append(" LAST-UPDATED \"201706061000Z\"").append(Util.NL); + // v2024.09.07 change collect header information from UML model + sb.append(" LAST-UPDATED \"$mibheaderrevision$\"").append(Util.NL); sb.append(" ORGANIZATION \"IEC\"").append(Util.NL); sb.append(" CONTACT-INFO \"IEC TC57 WG15\"").append(Util.NL); - sb.append( - " DESCRIPTION \"Copyright (C) IEC. This version of this MIB module is part") - .append(Util.NL); - sb.append(" of IEC 57-62351-7-Ed1. ").append(Util.NL); - sb.append( - " See the IEC 57-62351-7-Ed1 for full legal notices. ") - .append(Util.NL); + sb.append(" DESCRIPTION \"$mibheaderdescription$").append(Util.NL); sb.append(" $description$\"").append(Util.NL); sb.append(Util.NL); - sb.append(" REVISION \"201706061000Z\"").append(Util.NL); - sb.append(" DESCRIPTION \"IEC 57-62351-7-Ed1\"").append(Util.NL); + sb.append(" REVISION \"$mibheaderrevision$\"").append(Util.NL); + sb.append(" DESCRIPTION \"Edition update\"").append(Util.NL); sb.append(Util.NL); sb.append(" ::= { $branch$ $branchid$ }").append(Util.NL); sb.append(Util.NL); @@ -178,7 +173,7 @@ private String initObjectGroup() { StringBuilder sb = new StringBuilder(); sb.append(" $name$ OBJECT-GROUP ").append(Util.NL); sb.append(" OBJECTS {").append(Util.NL); - sb.append(" $enumerations$").append(Util.NL); + sb.append("$enumerations$").append(Util.NL); sb.append(" }").append(Util.NL); sb.append(" STATUS $status$").append(Util.NL); sb.append(" DESCRIPTION \"$description$\"").append(Util.NL); @@ -192,8 +187,8 @@ private String initModuleCompliance() { sb.append(" $name$ MODULE-COMPLIANCE ").append(Util.NL); sb.append(" STATUS $status$").append(Util.NL); sb.append(" DESCRIPTION \"$description$\"").append(Util.NL); - sb.append(" MODULE").append(Util.NL); - sb.append(" $enumerations$").append(Util.NL); + sb.append(" MODULE").append(Util.NL); + sb.append(" $enumerations$").append(Util.NL); sb.append(" ::= { $branch$ $branchid$ }").append(Util.NL); sb.append(Util.NL); return sb.toString(); diff --git a/src/org/gigipugni/jcleancim/mibgen/MibWriter.java b/src/org/gigipugni/jcleancim/mibgen/MibWriter.java index 01269a1..5b376af 100644 --- a/src/org/gigipugni/jcleancim/mibgen/MibWriter.java +++ b/src/org/gigipugni/jcleancim/mibgen/MibWriter.java @@ -185,7 +185,21 @@ private String replaceDescription(String object, String description) { } return object; } + // v2 change added replaceHeaderDescription and replaceHeaderRevision methods + private String replaceHeaderDescription(String object, String description) { + if (description != null) { + return object.replace("$mibheaderdescription$", splitToMultipleLines(description, 29)); + } + return object; + } + private String replaceHeaderRevision(String object, String description) { + if (description != null) { + return object.replace("$mibheaderrevision$", splitToMultipleLines(description, 29)); + } + return object; + } + // v2 change end private String replaceEnumerations(String object, String enumerations) { if (enumerations != null) { return object.replace("$enumerations$", enumerations); @@ -294,10 +308,9 @@ public void writeObject(String mibprefix, String branch, UmlAttribute a) { } } - // FIXME: initialising _outPrint here - // FIXME: do null test within replace() method + // v2 change: added String mibHeaderDescription, String mibHeaderRevision parameters public void writeModuleHeader(String mibName, String moduleName, String description, - String branch, String branchid, String enums) { + String branch, String branchid, String enums, String mibHeaderDescription, String mibHeaderRevision) { String object = _HeaderTemplate; _mibName = mibName; _mibIdentity = moduleName; @@ -320,6 +333,10 @@ public void writeModuleHeader(String mibName, String moduleName, String descript object = replaceDescription(object, description); object = replaceBranch(object, branch); object = replaceBranchid(object, branchid); + // v2 change + object = replaceHeaderDescription(object, mibHeaderDescription); + object = replaceHeaderRevision(object, mibHeaderRevision); + // v2 change end if (enums != null) { object = object.replace("$enums$", splitToMultipleLines(enums, 4)); } @@ -439,26 +456,35 @@ public void closeMib(int branchId) { String groupComplianceList = ""; branchId++; - - if (!_mandatoryObjects.isEmpty()) { - writeObjectGroup(_mibIdentity + "Group", "current", - _mibIdentity + " mandatory objects group", _mibIdentity, - Integer.toString(branchId++), _mandatoryObjects); - _mandatoryObjects.clear(); - groupComplianceList = "MANDATORY-GROUPS" + Util.NL + "{" + _mibIdentity + "Group" + "}" - + Util.NL; - } - + + // 2024.09.07 change, write optional objects, before mandatory object to preserve object ID order with previous + // model version that didn't have mandatory objects, so swapped the two "if" sections + if (!_optionalObjects.isEmpty()) { writeObjectGroup(_mibIdentity + "GroupOptional", "current", _mibIdentity + " optional objects group", _mibIdentity, - Integer.toString(branchId++), _optionalObjects); + Integer.toString(branchId), _optionalObjects); _optionalObjects.clear(); } - - writeModuleCompliance(_mibIdentity + "Compliance", "current", _mibIdentity + " Compliance", - _mibIdentity, Integer.toString(branchId), groupComplianceList); - + + branchId++; + + if (!_mandatoryObjects.isEmpty()) { + // v2 change, module compliance only makes sense when we have mandatory groups, so, introduced check + groupComplianceList = "MANDATORY-GROUPS " + "{" + _mibIdentity + "Group" + "}" + + Util.NL; + writeModuleCompliance(_mibIdentity + "Compliance", "current", _mibIdentity + " Compliance", + _mibIdentity, Integer.toString(branchId++), groupComplianceList); + // v2 change end + writeObjectGroup(_mibIdentity + "Group", "current", + _mibIdentity + " mandatory objects group", _mibIdentity, + Integer.toString(branchId), _mandatoryObjects); + _mandatoryObjects.clear(); + + } + + // v2024.09.07 change end + // close MIB file ... very important! _outPrint.print(System.lineSeparator() + "END" + System.lineSeparator()); _outPrint.close(); diff --git a/src/org/tanjakostic/jcleancim/builder/ea/EaModelBuilder.java b/src/org/tanjakostic/jcleancim/builder/ea/EaModelBuilder.java index 8f0acb2..fa8b622 100644 --- a/src/org/tanjakostic/jcleancim/builder/ea/EaModelBuilder.java +++ b/src/org/tanjakostic/jcleancim/builder/ea/EaModelBuilder.java @@ -35,15 +35,13 @@ import org.tanjakostic.jcleancim.util.Util; /** - * Class that wraps the EA repository; currently supports a single root (in the EA project browser), - * i.e., if there are more than one roots, all but the first will be ignored. + * Class that wraps the EA repository; currently supports a single root (in the + * EA project browser), i.e., if there are more than one roots, all but the + * first will be ignored. *

* - * @param - *

- * Type for package data - * @param - * Type for element as source + * @param

Type for package data + * @param Type for element as source * @author tatjana.kostic@ieee.org * @version $Id: EaModelBuilder.java 21 2019-08-12 15:44:50Z dev978 $ */ @@ -77,20 +75,18 @@ protected EaModelBuilder(Config cfg) { Util.logSubtitle(Level.INFO, "initialising EA builder..."); long start = System.currentTimeMillis(); - String version = initRepoAndGetVersion(); + String version = initRepoAndGetVersion(getCfg().getModelFileAbsPath()); _logger.info(String.format("EA version: build %s", version)); - Util.logCompletion(Level.INFO, "initialised EA builder.", start, - getCfg().isAppSkipTiming()); + Util.logCompletion(Level.INFO, "initialised EA builder.", start, getCfg().isAppSkipTiming()); } - abstract protected String initRepoAndGetVersion(); + abstract protected String initRepoAndGetVersion(String modelFileAbsPath); // ----------------- repository lifecycle ----------------------- private void openModel() throws ApplicationException { - Util.logSubtitle(Level.INFO, - String.format("opening EA file '%s'...", getCfg().getModelFileAbsPath())); + Util.logSubtitle(Level.INFO, String.format("opening EA file '%s'...", getCfg().getModelFileAbsPath())); long start = System.currentTimeMillis(); openRepo(getCfg().getModelFileAbsPath()); @@ -103,8 +99,7 @@ private void openModel() throws ApplicationException { abstract protected void bulkLoad() throws ApplicationException; private void closeModel() throws ApplicationException { - Util.logSubtitle(Level.INFO, - String.format("closing EA file '%s'...", getCfg().getModelFileAbsPath())); + Util.logSubtitle(Level.INFO, String.format("closing EA file '%s'...", getCfg().getModelFileAbsPath())); long start = System.currentTimeMillis(); try { @@ -119,13 +114,14 @@ private void closeModel() throws ApplicationException { // --------------------------------- /** - * Creates the in-memory builders with the data from EA repository and returns the UUID of the - * model root (needed for XMI export, if enabled by configuration). + * Creates the in-memory builders with the data from EA repository and returns + * the UUID of the model root (needed for XMI export, if enabled by + * configuration). *

* Ensure you call {@link #linkBuilders()} after this one. * - * @throws ApplicationException - * if model file is empty, or if there is a root in the model but without packages. + * @throws ApplicationException if model file is empty, or if there is a root in + * the model but without packages. */ private String populateBuilders() throws ApplicationException { Util.logSubtitle(Level.INFO, getLogSubtitleStartPopulateBuilders()); @@ -154,8 +150,7 @@ private String populateBuilders() throws ApplicationException { } } - Util.logCompletion(Level.INFO, getLogSubtitleEndPopulateBuilders(), start, - getCfg().isAppSkipTiming()); + Util.logCompletion(Level.INFO, getLogSubtitleEndPopulateBuilders(), start, getCfg().isAppSkipTiming()); return rootUuid; } @@ -171,14 +166,12 @@ private String populateBuilders() throws ApplicationException { abstract protected List

getModels(P root); - protected static void assertModelNotEmptyWarnIfMultipleRoots(int count) - throws ApplicationException { + protected static void assertModelNotEmptyWarnIfMultipleRoots(int count) throws ApplicationException { if (count == 0) { throw new ApplicationException("EA repository contains no root."); } if (count > 1) { - _logger.warn(String.format( - "EA repository contains %d roots - all but the first will be ignored.", + _logger.warn(String.format("EA repository contains %d roots - all but the first will be ignored.", Integer.valueOf(count))); } } @@ -186,7 +179,8 @@ protected static void assertModelNotEmptyWarnIfMultipleRoots(int count) // ------------------- /** - * Below is what needs to be processed after all class and packages builders have been created. + * Below is what needs to be processed after all class and packages builders + * have been created. */ private void linkBuilders() { long start = System.currentTimeMillis(); @@ -274,14 +268,13 @@ private UmlModel createInMemoryModel(Config cfg) { } withDiagrams = getCfg().isDocgenModelOn() ? " and exported normative diagrams" : ""; - Util.logCompletion(Level.INFO, String.format("created in-memory model%s", withDiagrams), - start, getCfg().isAppSkipTiming()); + Util.logCompletion(Level.INFO, String.format("created in-memory model%s", withDiagrams), start, + getCfg().isAppSkipTiming()); return resultModel; } /** Recursive. */ - private void buildSubclasses(ClassBuilder cb, - Set> nonRoots) { + private void buildSubclasses(ClassBuilder cb, Set> nonRoots) { for (ClassBuilder sub : cb.getSubclasses()) { sub.build(); nonRoots.remove(sub); @@ -343,7 +336,8 @@ public boolean isEaElementPackage(Integer objId) { return PackageBuilder.isEaPackage(findElementType(objId)); } - // FIXME: (used for operations and their parameters) handle multiple classes found for name + // FIXME: (used for operations and their parameters) handle multiple classes + // found for name public final ClassBuilder findClass(String name) { for (ClassBuilder clazz : _classes.values()) { if (name.equals(clazz.getObjData().getName())) { @@ -380,13 +374,15 @@ public final void addOperation(OperationBuilder builder) { /** Returns tables resulting from the bulk initialisation (if applicable). */ abstract public EaTables getTables() throws UnsupportedOperationException; - // ===== Impl. of org.tanjakostic.jcleancim.builder.AbstractModelBuilder methods ===== + // ===== Impl. of org.tanjakostic.jcleancim.builder.AbstractModelBuilder methods + // ===== /** * {@inheritDoc} *

- * This implementation is mainly working with EA model files. opens the EA model file, reads in - * all it needs, closes the EA model file and creates the in-memory model. + * This implementation is mainly working with EA model files. opens the EA model + * file, reads in all it needs, closes the EA model file and creates the + * in-memory model. */ @Override public UmlModel build() throws ApplicationException { @@ -398,11 +394,16 @@ public UmlModel build() throws ApplicationException { getXMIExporter().exportToXMIs(rootGuid); } - // For a clean design, we were exporting diagrams in populateBuilders() above, but we were - // exporting more than necessary, because the builder does not have the logic to decide - // whether a package is informative or not. Desperate by the time it takes, we broke the - // clean design: now we postpone the diagram export, if applicable, to the actual building - // where we can use methods of already constructed UmlPackage, in createInMemoryModel(), and + // For a clean design, we were exporting diagrams in populateBuilders() above, + // but we were + // exporting more than necessary, because the builder does not have the logic to + // decide + // whether a package is informative or not. Desperate by the time it takes, we + // broke the + // clean design: now we postpone the diagram export, if applicable, to the + // actual building + // where we can use methods of already constructed UmlPackage, in + // createInMemoryModel(), and // we close the EA model immediately after that. if (!getCfg().isDocgenOn()) { closeModel(); // we don't need EA repository anymore diff --git a/src/org/tanjakostic/jcleancim/builder/ea/db/AbstractDbRepo.java b/src/org/tanjakostic/jcleancim/builder/ea/db/AbstractDbRepo.java new file mode 100644 index 0000000..8b53a47 --- /dev/null +++ b/src/org/tanjakostic/jcleancim/builder/ea/db/AbstractDbRepo.java @@ -0,0 +1,50 @@ +/** + * Copyright (C) 2009-2024 Tatjana (Tanja) Kostic + *

+ * This file belongs to jCleanCim, a tool supporting tasks of UML model managers for IEC TC57 CIM + * and 61850 models. + *

+ * This program is free software: you can redistribute it and/or modify it under the terms of the + * GNU Lesser General Public License version 3. + *

+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without + * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. You should have received a copy of the GNU Lesser + * General Public License along with this program. If not, see . + */ + +package org.tanjakostic.jcleancim.builder.ea.db; + +import java.io.File; + +/** + * The EapDbRepo is the fastest builder of our in-memory model from EA. It is + * based on the Jackcess open source library that allows reading MS Access file + * in an OS-independent way, and independently of EA API. + *

+ * Limitation: Note that with this implementation we don't have access to + * the EA repository (API) methods, so we cannot export diagrams or XMI - + * although we do provide "empty" exporters, so that this implementation can + * hook into the existing framework. + *

+ * This implementation should be used for very fast {edit UML - validate} + * cycles. When you need to produce a UML release (with XMI) and/or generate any + * kind of documentation with diagrams, ensure you swap this implementation with + * the one that can export XMI and diagrams. + * + * @author todd.viegut@gmail.com + * @version $Id: EapDbRepo.java 21 2024-04-21 15:44:50Z dev978 $ + */ +abstract class AbstractDbRepo implements DbRepo { + + protected File file; + + public AbstractDbRepo(String modelFileAbsPath) { + file = new File(modelFileAbsPath); + } + + public String getDbType() { + return file.getName().substring(file.getName().lastIndexOf(".") + 1).toUpperCase(); + } + +} diff --git a/src/org/tanjakostic/jcleancim/builder/ea/db/DbModelBuilder.java b/src/org/tanjakostic/jcleancim/builder/ea/db/DbModelBuilder.java index 6565940..957991d 100644 --- a/src/org/tanjakostic/jcleancim/builder/ea/db/DbModelBuilder.java +++ b/src/org/tanjakostic/jcleancim/builder/ea/db/DbModelBuilder.java @@ -63,14 +63,14 @@ public DbModelBuilder(Config cfg) { } @Override - protected String initRepoAndGetVersion() { - _repo = new DbRepo(); + protected String initRepoAndGetVersion(String modelFileAbsPath) { + _repo = DbRepo.create(modelFileAbsPath); return _repo.getVersion(); } @Override protected void openRepo(String modelFileAbsPath) throws ApplicationException { - _repo.open(modelFileAbsPath); + _repo.open(); } @Override @@ -102,12 +102,12 @@ protected List> getModels(Map rootPckRow) { @Override protected String getLogSubtitleStartPopulateBuilders() { - return "building model from EA tables (as Access DB)..."; + return "building model from EA tables (as " + _repo.getDbType() + " DB)..."; } @Override protected String getLogSubtitleEndPopulateBuilders() { - return "built model from EA tables (as Access DB)"; + return "built model from EA tables (as " + _repo.getDbType() + " DB)"; } @Override diff --git a/src/org/tanjakostic/jcleancim/builder/ea/db/DbRepo.java b/src/org/tanjakostic/jcleancim/builder/ea/db/DbRepo.java index 3d1d06b..2105203 100644 --- a/src/org/tanjakostic/jcleancim/builder/ea/db/DbRepo.java +++ b/src/org/tanjakostic/jcleancim/builder/ea/db/DbRepo.java @@ -1,5 +1,5 @@ /** - * Copyright (C) 2009-2019 Tatjana (Tanja) Kostic + * Copyright (C) 2009-2024 Tatjana (Tanja) Kostic *

* This file belongs to jCleanCim, a tool supporting tasks of UML model managers for IEC TC57 CIM * and 61850 models. @@ -16,58 +16,50 @@ package org.tanjakostic.jcleancim.builder.ea.db; import java.io.File; -import java.io.IOException; +import java.util.Map; import org.tanjakostic.jcleancim.util.ApplicationException; -import com.healthmarketscience.jackcess.Database; -import com.healthmarketscience.jackcess.DatabaseBuilder; -import com.healthmarketscience.jackcess.Table; - /** - * @author tatjana.kostic@ieee.org - * @version $Id: DbRepo.java 21 2019-08-12 15:44:50Z dev978 $ + * DbRepo defines the interface for all types of EA Project files. + *

+ * Limitation: Note that with this implementation we don't have access to the EA repository + * (API) methods, so we cannot export diagrams or XMI - although we do provide "empty" exporters, so + * that this implementation can hook into the existing framework. + *

+ * This implementation should be used for very fast {edit UML - validate} cycles. When you need to + * produce a UML release (with XMI) and/or generate any kind of documentation with diagrams, ensure + * you swap this implementation with the one that can export XMI and diagrams. + * + * @author todd.viegut@gmail.com + * @version $Id: DbModelBuilder.java 21 2024-04-21 15:44:50Z dev978 $ */ -class DbRepo { - - private Database _db; +interface DbRepo { - /** Constructor. */ - public DbRepo() { - // no-op - } + String getVersion(); + + String getDbType(); - public String getVersion() { - return "n/a"; - } + void open() throws ApplicationException; - public void open(String modelFileAbsPath) throws ApplicationException { - try { - DatabaseBuilder dbBuilder = new DatabaseBuilder().setReadOnly(true).setFile( - new File(modelFileAbsPath)); - _db = dbBuilder.open(); - } catch (Exception e) { - throw new ApplicationException("Failed to open Access file (EA repository) '" - + modelFileAbsPath + "'.", e); - } - } + void close() throws ApplicationException; - public void close() throws ApplicationException { - try { - _db.close(); - } catch (Exception e) { - throw new ApplicationException("Failed to close Access file (EA repository).", e); - } finally { - _db = null; - } - } + Iterable> getTable(String tableName) throws ApplicationException; + + // Simple static factory method. + static DbRepo create(String modelFileAbsPath) { + File file = new File(modelFileAbsPath); + String ext = file.getName().substring(file.getName().lastIndexOf(".") + 1).toLowerCase(); + switch (ext) { + case "eap": + case "eapx": + return new EapDbRepo(modelFileAbsPath); + case "qea": + case "qeax": + return new QeaDbRepo(modelFileAbsPath); + default: + throw new IllegalArgumentException("Unsupported EA project file type: " + ext); + } + } - public Table getTable(String tableName) throws ApplicationException { - try { - return _db.getTable(tableName); - } catch (IOException e) { - throw new ApplicationException("Cannot find table '" + tableName + "' in '" - + _db.getFile() + "'", e); - } - } -} +} \ No newline at end of file diff --git a/src/org/tanjakostic/jcleancim/builder/ea/db/DbSelector.java b/src/org/tanjakostic/jcleancim/builder/ea/db/DbSelector.java index 6be08ee..8ad189c 100644 --- a/src/org/tanjakostic/jcleancim/builder/ea/db/DbSelector.java +++ b/src/org/tanjakostic/jcleancim/builder/ea/db/DbSelector.java @@ -27,8 +27,6 @@ import org.tanjakostic.jcleancim.builder.ea.EaSelector; import org.tanjakostic.jcleancim.util.ApplicationException; -import com.healthmarketscience.jackcess.Table; - /** * EA repository supports a method to perform an SQL query and return the result set as XML. This * class is a wrapper to that EA functionality without dependency on EA. @@ -57,7 +55,7 @@ public List> select(String tableName, String[] columnNames, List> result = new ArrayList>(); Set tags = new HashSet(Arrays.asList(columnNames)); - Table table = _repo.getTable(tableName); + Iterable> table = _repo.getTable(tableName); for (Map dbRow : table) { Map row = new HashMap(); result.add(row); diff --git a/src/org/tanjakostic/jcleancim/builder/ea/db/EapDbRepo.java b/src/org/tanjakostic/jcleancim/builder/ea/db/EapDbRepo.java new file mode 100644 index 0000000..3d5c37a --- /dev/null +++ b/src/org/tanjakostic/jcleancim/builder/ea/db/EapDbRepo.java @@ -0,0 +1,97 @@ +/** + * Copyright (C) 2009-2024 Tatjana (Tanja) Kostic + *

+ * This file belongs to jCleanCim, a tool supporting tasks of UML model managers for IEC TC57 CIM + * and 61850 models. + *

+ * This program is free software: you can redistribute it and/or modify it under the terms of the + * GNU Lesser General Public License version 3. + *

+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without + * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. You should have received a copy of the GNU Lesser + * General Public License along with this program. If not, see . + */ + +package org.tanjakostic.jcleancim.builder.ea.db; + +import java.io.IOException; +import java.util.ArrayList; +import java.util.List; +import java.util.Map; + +import org.tanjakostic.jcleancim.util.ApplicationException; + +import com.healthmarketscience.jackcess.Database; +import com.healthmarketscience.jackcess.DatabaseBuilder; +import com.healthmarketscience.jackcess.Table; + +/** + * The EapDbRepo is the fastest builder of our in-memory model from EA. It is + * based on the Jackcess open source library that allows reading MS Access file + * in an OS-independent way, and independently of EA API. + *

+ * Limitation: Note that with this implementation we don't have access to + * the EA repository (API) methods, so we cannot export diagrams or XMI - + * although we do provide "empty" exporters, so that this implementation can + * hook into the existing framework. + *

+ * This implementation should be used for very fast {edit UML - validate} + * cycles. When you need to produce a UML release (with XMI) and/or generate any + * kind of documentation with diagrams, ensure you swap this implementation with + * the one that can export XMI and diagrams. + * + * @author tatjana.kostic@ieee.org + * @version $Id: EapDbRepo.java 21 2024-04-21 15:44:50Z dev978 $ + */ +class EapDbRepo extends AbstractDbRepo { + + private Database _db; + + public EapDbRepo(String modelFileAbsPath) { + super(modelFileAbsPath); + } + + @Override + public String getVersion() { + return "n/a"; + } + + @Override + public void open() throws ApplicationException { + try { + DatabaseBuilder dbBuilder = new DatabaseBuilder().setReadOnly(true).setFile(file); + _db = dbBuilder.open(); + } catch (Exception e) { + throw new ApplicationException( + "Failed to open Access file (EA repository) '" + file.getAbsolutePath() + "'.", e); + } + } + + @Override + public void close() throws ApplicationException { + try { + _db.close(); + } catch (Exception e) { + throw new ApplicationException("Failed to close Access file (EA repository).", e); + } finally { + _db = null; + } + } + + @Override + public Iterable> getTable(String tableName) throws ApplicationException { + try { + List> result = new ArrayList>(); + + Table table = _db.getTable(tableName); + for (Map dbRow : table) { + result.add(dbRow); + } + + return result; + } catch (IOException e) { + throw new ApplicationException("Cannot find table '" + tableName + "' in '" + _db.getFile() + "'", e); + } + } +} diff --git a/src/org/tanjakostic/jcleancim/builder/ea/db/QeaDbRepo.java b/src/org/tanjakostic/jcleancim/builder/ea/db/QeaDbRepo.java new file mode 100644 index 0000000..0173893 --- /dev/null +++ b/src/org/tanjakostic/jcleancim/builder/ea/db/QeaDbRepo.java @@ -0,0 +1,124 @@ +/** + * Copyright (C) 2009-2024 Tatjana (Tanja) Kostic + *

+ * This file belongs to jCleanCim, a tool supporting tasks of UML model managers for IEC TC57 CIM + * and 61850 models. + *

+ * This program is free software: you can redistribute it and/or modify it under the terms of the + * GNU Lesser General Public License version 3. + *

+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without + * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. You should have received a copy of the GNU Lesser + * General Public License along with this program. If not, see . + */ + +package org.tanjakostic.jcleancim.builder.ea.db; + +import java.sql.Connection; +import java.sql.DriverManager; +import java.sql.ResultSet; +import java.sql.ResultSetMetaData; +import java.sql.SQLException; +import java.sql.Statement; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +import org.tanjakostic.jcleancim.util.ApplicationException; + +/** + * The QeaDbRepo is the SQLite 64-bit implementation for reading in EA 16.x .QEA + * and QEAX files. It is the fastest builder of our in-memory model from EA. It + * is based on the open source library that allows reading MS Access file in an + * OS-independent way, and independently of EA API. + *

+ * Limitation: Note that with this implementation we don't have access to + * the EA repository (API) methods, so we cannot export diagrams or XMI - + * although we do provide "empty" exporters, so that this implementation can + * hook into the existing framework. + *

+ * This implementation should be used for very fast {edit UML - validate} + * cycles. When you need to produce a UML release (with XMI) and/or generate any + * kind of documentation with diagrams, ensure you swap this implementation with + * the one that can export XMI and diagrams. + * + * @author todd.viegut@gmail.com + * @version $Id: QeaDbRepo.java 21 2024-04-21 15:44:50Z dev978 $ + */ +class QeaDbRepo extends AbstractDbRepo { + + private Connection connection; + private Statement statement; + + public QeaDbRepo(String modelFileAbsPath) { + super(modelFileAbsPath); + } + + @Override + public String getVersion() { + return "n/a"; + } + + @Override + public void open() throws ApplicationException { + // NOTE: Connection and Statement are AutoClosable. Don't forget to close them + // both in order to avoid leaks. + try { + // create a database connection + connection = DriverManager.getConnection("jdbc:sqlite:" + file.getAbsolutePath()); + statement = connection.createStatement(); + if (statement != null) { + statement.setQueryTimeout(30); // set timeout to 60 sec. + } + } catch (SQLException e) { + // If the error message is "out of memory", it typically + // indicates the specified SQLite database file was not found + throw new ApplicationException( + "Failed to open SQLite file (EA repository) '" + file.getAbsolutePath() + "'.", e); + } + } + + @Override + public void close() throws ApplicationException { + try { + if (statement != null) + statement.close(); + if (connection != null) + connection.close(); + } catch (SQLException e) { + throw new ApplicationException("Failed to close SQLite file (EA repository).", e); + } + } + + @Override + public Iterable> getTable(String tableName) throws ApplicationException { + try { + List> result = new ArrayList>(); + Map row = null; + + String query = "select * from " + tableName; + ResultSet resultSet = statement.executeQuery(query); + + // Get ResultSet metadata + ResultSetMetaData metaData = resultSet.getMetaData(); + int columnCount = metaData.getColumnCount(); + + // Iterate over the ResultSet and retrieve metadata for each column + while (resultSet.next()) { + row = new HashMap(); + for (int i = 1; i <= columnCount; i++) { + String columnName = metaData.getColumnName(i); + Object columnValue = resultSet.getObject(i); + row.put(columnName, columnValue); + } + result.add(row); + } + return result; + } catch (SQLException e) { + throw new ApplicationException("Cannot find table '" + tableName + "' in '" + file.getAbsolutePath() + "'", + e); + } + } +} diff --git a/src/org/tanjakostic/jcleancim/builder/ea/japi/JapiModelBuilder.java b/src/org/tanjakostic/jcleancim/builder/ea/japi/JapiModelBuilder.java index fff5dd2..5665ffc 100644 --- a/src/org/tanjakostic/jcleancim/builder/ea/japi/JapiModelBuilder.java +++ b/src/org/tanjakostic/jcleancim/builder/ea/japi/JapiModelBuilder.java @@ -54,7 +54,7 @@ public JapiModelBuilder(Config cfg) { } @Override - protected String initRepoAndGetVersion() { + protected String initRepoAndGetVersion(String nodelFileAbsPath) { _repo = new JapiRepo(); return _repo.getVersion(); } diff --git a/src/org/tanjakostic/jcleancim/builder/ea/sqlxml/SqlXmlModelBuilder.java b/src/org/tanjakostic/jcleancim/builder/ea/sqlxml/SqlXmlModelBuilder.java index 5fe1fd1..42eee33 100644 --- a/src/org/tanjakostic/jcleancim/builder/ea/sqlxml/SqlXmlModelBuilder.java +++ b/src/org/tanjakostic/jcleancim/builder/ea/sqlxml/SqlXmlModelBuilder.java @@ -55,7 +55,7 @@ public SqlXmlModelBuilder(Config cfg) { } @Override - protected String initRepoAndGetVersion() { + protected String initRepoAndGetVersion(String nodelFileAbsPath) { _repo = new JapiRepo(); return _repo.getVersion(); } diff --git a/src/org/tanjakostic/jcleancim/docgen/collector/TableSpec.java b/src/org/tanjakostic/jcleancim/docgen/collector/TableSpec.java index cf128c7..b2c0b42 100644 --- a/src/org/tanjakostic/jcleancim/docgen/collector/TableSpec.java +++ b/src/org/tanjakostic/jcleancim/docgen/collector/TableSpec.java @@ -28,7 +28,8 @@ * Information required to describe a table and its columns for generating documentation. * * @author tatjana.kostic@ieee.org - * @version $Id: TableSpec.java 21 2019-08-12 15:44:50Z dev978 $ + * @author glpugni@gmail.com + * @version $Id: TableSpec.java 21 2023-09-15 15:44:50Z dev978 $ */ public class TableSpec { @@ -58,6 +59,9 @@ public class TableSpec { public static final TableSpec LITERALS = createLiteralsTable(Nature.CIM); public static final TableSpec ATTRS = createAttributesTable(Nature.CIM); + //the following: IEC62351-7 specific table format + public static final TableSpec IEC62351ATTRS = createIec62351AttributesTable(Nature.CIM); + public static final TableSpec ASSOC_ENDS = createAssocEndsTable(Nature.CIM); public static final TableSpec OPERATIONS = createOperationsTable("_", Nature.CIM); @@ -183,6 +187,17 @@ private static TableSpec createCustomAssociationEndsTable(Nature nature) { return createAndStoreTableSpec(WAX.E_AssociationEndsTable, cols, nature); } + // IEC 62351-7 specific table format + private static TableSpec createIec62351AttributesTable(Nature nature) { + List cols = new ArrayList(); + cols.add(ColumnSpec.createUnfmted(24, WAX.A_name, "attNameCol", "name")); + cols.add(ColumnSpec.createUnfmted(8, WAX.A_mult, "attMultCol", "M/O or mult")); //gigi??? was 7 + cols.add(ColumnSpec.createUnfmted(23, WAX.A_type, "attTypeCol", "type")); //gigi??? was 24 + cols.add(ColumnSpec.createFmted(45, WAX.A_descID, "attDescCol", "description")); + + return createAndStoreTableSpec(WAX.E_AttributesTable, cols, nature); + } + // --------------- default / CIM tables ------------- private static TableSpec createLiteralsTable(Nature nature) { @@ -197,13 +212,13 @@ private static TableSpec createLiteralsTable(Nature nature) { private static TableSpec createAttributesTable(Nature nature) { List cols = new ArrayList(); cols.add(ColumnSpec.createUnfmted(24, WAX.A_name, "attNameCol", "name")); - cols.add(ColumnSpec.createUnfmted(7, WAX.A_mult, "attMultCol", "mult")); - cols.add(ColumnSpec.createUnfmted(24, WAX.A_type, "attTypeCol", "type")); + cols.add(ColumnSpec.createUnfmted(7, WAX.A_mult, "attMultCol", "mult")); + cols.add(ColumnSpec.createUnfmted(24, WAX.A_type, "attTypeCol", "type")); cols.add(ColumnSpec.createFmted(45, WAX.A_descID, "attDescCol", "description")); return createAndStoreTableSpec(WAX.E_AttributesTable, cols, nature); } - + private static TableSpec createAssocEndsTable(Nature nature) { List cols = new ArrayList(); cols.add(ColumnSpec.createUnfmted(7, WAX.A_myMult, "aeMyMultCol", "mult from")); diff --git a/src/org/tanjakostic/jcleancim/docgen/collector/impl/ClassDocImpl.java b/src/org/tanjakostic/jcleancim/docgen/collector/impl/ClassDocImpl.java index 092b625..c028fe9 100644 --- a/src/org/tanjakostic/jcleancim/docgen/collector/impl/ClassDocImpl.java +++ b/src/org/tanjakostic/jcleancim/docgen/collector/impl/ClassDocImpl.java @@ -39,6 +39,8 @@ import org.tanjakostic.jcleancim.model.UmlClass; import org.tanjakostic.jcleancim.model.UmlConstraint; import org.tanjakostic.jcleancim.model.UmlDiagram; +import org.tanjakostic.jcleancim.model.UmlModel; +import org.tanjakostic.jcleancim.model.UmlPackage; import org.tanjakostic.jcleancim.model.UmlStereotype; import org.tanjakostic.jcleancim.util.Util; @@ -46,7 +48,8 @@ * Data required for documentation of classes. For the layout, see {@link ClassDoc}. * * @author tatjana.kostic@ieee.org - * @version $Id: ClassDocImpl.java 31 2019-12-08 01:19:54Z dev978 $ + * @author glpugni@gmail.com + * @version $Id: ClassDocImpl.java 31 2024-09-07 01:19:54Z dev978 $ */ class ClassDocImpl extends AbstractObjectDoc implements ClassDoc { private static final Logger _logger = Logger.getLogger(ClassDocImpl.class.getName()); @@ -253,11 +256,34 @@ private static PropertiesDoc createAttributesDoc(DocgenConfig docgenCfg, UmlClas return new DaAttributesDoc(docgenCfg, TableSpec.ODA_ATTRS, c, bmRegistry); } } - // defaults (regular UML, like for CIM): if (c.isEnumeratedType()) { return new DefaultLiteralsDoc(docgenCfg, c, bmRegistry); } + + // 2024.09.07 - automatic recognition of IEC62351-7 model, + // calling specific Attribute function "iec62351AttributesDoc" + + boolean iec62351 = false; + + UmlModel m = c.getModel(); + int level = 0; + + for (UmlPackage p : m.getPackages()) { + String n = p.getName(); + + if (level > 3) break; + + if (p.getName().equals("iec62351")) { + iec62351 = true; + return new iec62351AttributesDoc(docgenCfg, c, bmRegistry); + } + + log(_logger, "---- found iec62351 ..."); + } + + //2024.09.15 - end of change + return new DefaultAttributesDoc(docgenCfg, c, bmRegistry); } diff --git a/src/org/tanjakostic/jcleancim/docgen/collector/impl/DefaultAttributesDoc.java b/src/org/tanjakostic/jcleancim/docgen/collector/impl/DefaultAttributesDoc.java index 3145125..1384b9f 100644 --- a/src/org/tanjakostic/jcleancim/docgen/collector/impl/DefaultAttributesDoc.java +++ b/src/org/tanjakostic/jcleancim/docgen/collector/impl/DefaultAttributesDoc.java @@ -19,6 +19,7 @@ import java.util.Collection; import org.apache.log4j.Logger; +import org.tanjakostic.jcleancim.common.OwningWg; import org.tanjakostic.jcleancim.docgen.collector.BookmarkRegistry; import org.tanjakostic.jcleancim.docgen.collector.DocgenConfig; import org.tanjakostic.jcleancim.docgen.collector.TableSpec; @@ -49,8 +50,9 @@ public DefaultAttributesDoc(DocgenConfig docgenCfg, UmlClass c, BookmarkRegistry super(docgenCfg, c, "att", String.format(INTRO_FMT, c.getName()), String.format(CAPTION_FMT, c.getQualifiedName()), TableSpec.ATTRS, null, bmRegistry); + log(_logger, "---- collecting doc for attributes of " + c.getName() + " ..."); - + Collection retainedNatives = new ArrayList(); Collection retainedInheriteds = new ArrayList(); super.filterAttributes(c, retainedNatives, retainedInheriteds); @@ -66,8 +68,9 @@ public DefaultAttributesDoc(DocgenConfig docgenCfg, UmlClass c, BookmarkRegistry EntryDocImpl entry = EntryDocImpl.createData(bookmarkID, desc.formatInfo, a.getName(), a.getMultiplicity().getBounds(), typeName, desc.text); - addEntry(entry); + addEntry(entry); + //gigi??? (end // for xml: initRawData(entry, a); initAttributeRawData(entry, a); @@ -84,9 +87,13 @@ public DefaultAttributesDoc(DocgenConfig docgenCfg, UmlClass c, BookmarkRegistry TextDescription docInh = new TextDescription( INHERITED_FROM + prepareForHyperlink(a.getContainingClass())); CellText desc = deduceCellText(descPrefix, docInh, null, a); + + String st = c.getStereotype().value(); + String mandatory = a.getMultiplicity().getBounds(); EntryDocImpl entry = EntryDocImpl.createData(bookmarkID, null, a.getName(), - a.getMultiplicity().getBounds(), typeName, desc.text); + a.getMultiplicity().getBounds(), typeName, desc.text); + addEntry(entry); // for xml: diff --git a/src/org/tanjakostic/jcleancim/docgen/collector/impl/iec62351AttributesDoc.java b/src/org/tanjakostic/jcleancim/docgen/collector/impl/iec62351AttributesDoc.java new file mode 100644 index 0000000..d624be6 --- /dev/null +++ b/src/org/tanjakostic/jcleancim/docgen/collector/impl/iec62351AttributesDoc.java @@ -0,0 +1,135 @@ +/** + * Copyright (C) 2009-2019 Tatjana (Tanja) Kostic + *

+ * This file belongs to jCleanCim, a tool supporting tasks of UML model managers for IEC TC57 CIM + * and 61850 models. + *

+ * This program is free software: you can redistribute it and/or modify it under the terms of the + * GNU Lesser General Public License version 3. + *

+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without + * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. You should have received a copy of the GNU Lesser + * General Public License along with this program. If not, see . + */ + +package org.tanjakostic.jcleancim.docgen.collector.impl; + +import java.util.ArrayList; +import java.util.Collection; + +import org.apache.log4j.Logger; +import org.tanjakostic.jcleancim.common.OwningWg; +import org.tanjakostic.jcleancim.docgen.collector.BookmarkRegistry; +import org.tanjakostic.jcleancim.docgen.collector.DocgenConfig; +import org.tanjakostic.jcleancim.docgen.collector.TableSpec; +import org.tanjakostic.jcleancim.docgen.collector.WAX; +import org.tanjakostic.jcleancim.model.TextDescription; +import org.tanjakostic.jcleancim.model.UmlAttribute; +import org.tanjakostic.jcleancim.model.UmlClass; +import org.tanjakostic.jcleancim.model.UmlModel; // gigi +import org.tanjakostic.jcleancim.model.UmlPackage; // gigi +import org.tanjakostic.jcleancim.model.UmlStereotype; +import org.tanjakostic.jcleancim.util.Util; + +/** + * Documentation for attributes in simple format. + * + * @author tatjana.kostic@ieee.org + * @author laurent.guise@art-et-histoire.com + * @author glpugni@gmail.com + * @version $Id: iec62351AttributesDoc.java 27 2024-09-07 16:29:38Z dev978 $ + */ +class iec62351AttributesDoc extends AbstractPropertiesDoc { + private static final Logger _logger = Logger.getLogger(iec62351AttributesDoc.class.getName()); + + public static final String INTRO_FMT = " shows all attributes of %s."; + public static final String CAPTION_FMT = "Attributes of %s"; + + /** + * Constructor. + */ + public iec62351AttributesDoc(DocgenConfig docgenCfg, UmlClass c, BookmarkRegistry bmRegistry) { + super(docgenCfg, c, "att", String.format(INTRO_FMT, c.getName()), + String.format(CAPTION_FMT, c.getQualifiedName()), TableSpec.IEC62351ATTRS, null, + bmRegistry); + + log(_logger, "---- collecting doc for attributes of " + c.getName() + " ..."); + + Collection retainedNatives = new ArrayList(); + Collection retainedInheriteds = new ArrayList(); + super.filterAttributes(c, retainedNatives, retainedInheriteds); + + String bookmarkID = null; // we don't point from hyperlinks to any attribute here + + for (UmlAttribute a : retainedNatives) { + String qualifiersText = deduceQualifiersPrefix(a, UmlStereotype.getAttributeBuiltIns(), + docgenCfg.showCustomStereotypes, DEFAULT_PREFIX_FMT); + String descPrefix = qualifiersText + getInitValAsPrefix(a); + CellText desc = deduceCellText(descPrefix, a); + String typeName = prepareForHyperlink(a.getType()); + + String st = c.getStereotype().value(); + String mandatory = a.getMultiplicity().getBounds(); + //if (st.equals("nsmAgent") || st.equals("nsmEntry") || + // st.equals("nsmEvent") || st.equals("nsmCommon")) { + + String x = a.getMultiplicity().getBounds(); + if(a.getMultiplicity().getBounds().equals("1..1") ) + mandatory = "M"; + else if(a.getMultiplicity().getBounds().equals("0..1") ) + mandatory = "O"; + + EntryDocImpl entry = EntryDocImpl.createData(bookmarkID, desc.formatInfo, a.getName(), + mandatory, typeName, desc.text); + addEntry(entry); + + // for xml: + initRawData(entry, a); + initAttributeRawData(entry, a); + + if (Util.hasContent(descPrefix)) { + entry.putCell(WAX.A_desc, desc.text); + } + } + for (UmlAttribute a : retainedInheriteds) { + String qualifiersText = deduceQualifiersPrefix(a, UmlStereotype.getAttributeBuiltIns(), + docgenCfg.showCustomStereotypes, DEFAULT_PREFIX_FMT); + String descPrefix = qualifiersText; + String typeName = prepareForHyperlink(a.getType()); + TextDescription docInh = new TextDescription( + INHERITED_FROM + prepareForHyperlink(a.getContainingClass())); + CellText desc = deduceCellText(descPrefix, docInh, null, a); + + //gigi??? + String st = c.getStereotype().value(); + String mandatory = a.getMultiplicity().getBounds(); + //if (st.equals("nsmAgent") || st.equals("nsmEntry") || + // st.equals("nsmEvent") || st.equals("nsmCommon")) { + + String x = a.getMultiplicity().getBounds(); + if(a.getMultiplicity().getBounds().equals("1..1") ) + mandatory = "M"; + else if(a.getMultiplicity().getBounds().equals("0..1") ) + mandatory = "O"; + + + EntryDocImpl entry = EntryDocImpl.createData(bookmarkID, null, a.getName(), + mandatory, typeName, desc.text); + + addEntry(entry); + + // for xml: + initRawData(entry, a, a.getContainingClass().getName()); + initAttributeRawData(entry, a); + } + + log(_logger, ">>>>>> " + toString()); + } + + private static void initAttributeRawData(EntryDocImpl entry, UmlAttribute a) { + entry.putCell("mult", a.getMultiplicity().getBounds()); + entry.putCell(WAX.A_type, a.getType().getName()); + entry.putCell("defaultValue", a.getInitValue()); + } +}